{"version":"1.0","provider_name":"Registrar","provider_url":"https:\/\/legacy.registrarcorp.com\/zh\/","author_name":"Mason Grandusky","author_url":"https:\/\/legacy.registrarcorp.com\/zh\/author\/mgrandusky\/","title":"ACE\u7cfb\u7edf\u5411FDA\u62a5\u5173\uff1a\u5408\u89c4\u65e5\u671f\u548c\u5e38\u89c1\u9519\u8bef","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"TAPpt8NC7c\"><a href=\"https:\/\/legacy.registrarcorp.com\/zh\/filing-in-ace-for-fda-compliance-dates-and-common-errors\/\">ACE\u7cfb\u7edf\u5411FDA\u62a5\u5173\uff1a\u5408\u89c4\u65e5\u671f\u548c\u5e38\u89c1\u9519\u8bef<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/legacy.registrarcorp.com\/zh\/filing-in-ace-for-fda-compliance-dates-and-common-errors\/embed\/#?secret=TAPpt8NC7c\" width=\"600\" height=\"338\" title=\"&#8220;ACE\u7cfb\u7edf\u5411FDA\u62a5\u5173\uff1a\u5408\u89c4\u65e5\u671f\u548c\u5e38\u89c1\u9519\u8bef&#8221; &#8212; Registrar\" data-secret=\"TAPpt8NC7c\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n\/**\n * WordPress inline HTML embed\n *\n * @since 4.4.0\n * @output wp-includes\/js\/wp-embed.js\n *\n * Single line comments should not be used since they will break\n * the script when inlined in get_post_embed_html(), specifically\n * when the comments are not stripped out due to SCRIPT_DEBUG\n * being turned on.\n *\/\n(function ( window, document ) {\n\t'use strict';\n\n\t\/* Abort for ancient browsers. *\/\n\tif ( ! document.querySelector || ! window.addEventListener || typeof URL === 'undefined' ) {\n\t\treturn;\n\t}\n\n\t\/** @namespace wp *\/\n\twindow.wp = window.wp || {};\n\n\t\/* Abort if script was already executed. *\/\n\tif ( !! window.wp.receiveEmbedMessage ) {\n\t\treturn;\n\t}\n\n\t\/**\n\t * Receive embed message.\n\t *\n\t * @param {MessageEvent} e\n\t *\/\n\twindow.wp.receiveEmbedMessage = function( e ) {\n\t\tvar data = e.data;\n\n\t\t\/* Verify shape of message. *\/\n\t\tif (\n\t\t\t! ( data || data.secret || data.message || data.value ) ||\n\t\t\t\/[^a-zA-Z0-9]\/.test( data.secret )\n\t\t) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar iframes = document.querySelectorAll( 'iframe[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tblockquotes = document.querySelectorAll( 'blockquote[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tallowedProtocols = new RegExp( '^https?:$', 'i' ),\n\t\t\ti, source, height, sourceURL, targetURL;\n\n\t\tfor ( i = 0; i < blockquotes.length; i++ ) {\n\t\t\tblockquotes[ i ].style.display = 'none';\n\t\t}\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\tsource = iframes[ i ];\n\n\t\t\tif ( e.source !== source.contentWindow ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tsource.removeAttribute( 'style' );\n\n\t\t\tif ( 'height' === data.message ) {\n\t\t\t\t\/* Resize the iframe on request. *\/\n\t\t\t\theight = parseInt( data.value, 10 );\n\t\t\t\tif ( height > 1000 ) {\n\t\t\t\t\theight = 1000;\n\t\t\t\t} else if ( ~~height < 200 ) {\n\t\t\t\t\theight = 200;\n\t\t\t\t}\n\n\t\t\t\tsource.height = height;\n\t\t\t} else if ( 'link' === data.message ) {\n\t\t\t\t\/* Link to a specific URL on request. *\/\n\t\t\t\tsourceURL = new URL( source.getAttribute( 'src' ) );\n\t\t\t\ttargetURL = new URL( data.value );\n\n\t\t\t\tif (\n\t\t\t\t\tallowedProtocols.test( targetURL.protocol ) &&\n\t\t\t\t\ttargetURL.host === sourceURL.host &&\n\t\t\t\t\tdocument.activeElement === source\n\t\t\t\t) {\n\t\t\t\t\twindow.top.location.href = data.value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n\n\tfunction onLoad() {\n\t\tvar iframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),\n\t\t\ti, source, secret;\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\t\/** @var {IframeElement} *\/\n\t\t\tsource = iframes[ i ];\n\n\t\t\tsecret = source.getAttribute( 'data-secret' );\n\t\t\tif ( ! secret ) {\n\t\t\t\t\/* Add secret to iframe *\/\n\t\t\t\tsecret = Math.random().toString( 36 ).substring( 2, 12 );\n\t\t\t\tsource.src += '#?secret=' + secret;\n\t\t\t\tsource.setAttribute( 'data-secret', secret );\n\t\t\t}\n\n\t\t\t\/*\n\t\t\t * Let post embed window know that the parent is ready for receiving the height message, in case the iframe\n\t\t\t * loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the\n\t\t\t * window will then (re-)send the height message right away.\n\t\t\t *\/\n\t\t\tsource.contentWindow.postMessage( {\n\t\t\t\tmessage: 'ready',\n\t\t\t\tsecret: secret\n\t\t\t}, '*' );\n\t\t}\n\t}\n\n\twindow.addEventListener( 'message', window.wp.receiveEmbedMessage, false );\n\tdocument.addEventListener( 'DOMContentLoaded', onLoad, false );\n})( window, document );\n\/\/# sourceURL=https:\/\/legacy.registrarcorp.com\/wp-includes\/js\/wp-embed.js\n\/* ]]> *\/\n<\/script>\n","thumbnail_url":"https:\/\/legacy.registrarcorp.com\/wp-content\/uploads\/2019\/08\/press_release.jpg","thumbnail_width":1650,"thumbnail_height":500,"description":"2016\u5e746\u67089\u65e5\uff0c\u7f8e\u56fd\u6d77\u5173\u548c\u8fb9\u5883\u4fdd\u62a4\u5c40(\u7b80\u79f0\u201dCBP\u201d)\u4e3e\u884c\u5173\u4e8e\u901a\u8fc7\u81ea\u52a8\u5316\u5546\u4e1a\u73af\u5883\u7cfb\u7edf\u62a5\u5173\u7684\u7f51\u7edc\u4f1a\u8bae\u3002\u8be5\u4f1a\u8bae\u7531\u5168\u7f8e\u62a5\u5173\u884c\u548c\u4ee3\u8fd0\u4eba\u534f\u4f1a(\u7b80\u79f0\u201dNCBFAA\u201d)\u7ec4\u7ec7\u53ec\u5f00\u3002 \u4ec0\u4e48\u662fACE\uff1f \u62a5\u5173\u884c\u548c\u81ea\u884c\u62a5\u5173\u8fdb\u53e3\u5546\u5fc5\u987b\u6839\u636e\u4ea7\u54c1\u7c7b\u578b\u5411CBP\u548c\u5176\u4ed6\u673a\u6784\u9012\u4ea4\u4fe1\u606f\u3002CBP\u79f0ACP\u5373\u201c\u8d38\u6613\u4e1a\u754c\u62a5\u544a\u8fdb\u51fa\u53e3\u60c5\u51b5\u5e76\u7531\u653f\u5e9c\u4f5c\u51fa\u51c6\u5165\u51b3\u8bae\u7684\u521d\u7ea7\u7cfb\u7edf\u3002\u201dCBP\u3001FDA\u548c\u5176\u4ed646\u4e2a\u653f\u5e9c\u673a\u6784\u8054\u5408\u7ec4\u5efaACE\u5fc5\u8981\u4fe1\u606f\u4e13\u95e8\u9012\u4ea4\u901a\u9053\u3002ACE\u5c06\u53d6\u4ee3\u73b0\u6b63\u4f7f\u7528\u7684ACS\u7cfb\u7edf\uff0c\u8be5\u7cfb\u7edf\u901a\u8fc7CPB\u5411FDA\u9012\u4ea4\u5546\u4e1a\u4fe1\u606f\u3002 \u5408\u89c4\u65e5\u671f 2016\u5e746\u670815\u65e5\uff0cACE\u5c06\u6210\u4e3a\u4ee5\u4e0bFDA\u8fdb\u53e3\u7c7b\u522b\u4e13\u95e8\u7684\u9012\u4ea4\u7cfb\u7edf\uff1a 01 \u2013 \u6d88\u8017\u54c1 \u2013 \u514d\u7a0e\u548c\u5e94\u8bfe\u7a0e\u8d27\u54c1 03 \u2013 \u6d88\u8017\u54c1 \u2013 \u53cd\u503e\u9500\/\u53cd\u8865\u8d34\u7a0e 06 \u2013 \u6d88\u8017\u54c1 \u2013 \u5916\u8d38\u533a(\u7b80\u79f0\u201dFTZ\u201d) 11 \u2013 \u975e\u6b63\u5f0f\u5165\u5173 \u2013 \u514d\u7a0e\u548c\u5e94\u8bfe\u7a0e\u8d27\u54c1 23 \u2013 \u4e34\u65f6\u8fdb\u53e3\u4fdd\u7a0e (\u7b80\u79f0\u201dTIB\u201d) 51 \u2013 \u56fd\u9632\u5408\u540c\u7ba1\u7406\u670d\u52a1\u533a(\u7b80\u79f0\u201dDCASR\u201d) 52 \u2013 \u653f\u5e9c \u2013 \u5e94\u8bfe\u7a0e\u8d27\u54c1 \u867d\u71366\u670815\u65e5\u4e3a\u4ee5\u4e0a\u8fdb\u53e3\u7c7b\u578b\u7684\u5f3a\u5236\u9012\u4ea4\u65e5\u671f\uff0c\u4f46CBP\u5141\u8bb87\u670823\u65e5\u524d\u6709\u4e00\u6bb5\u9002\u5e94\u671f\uff0c6\u670815\u65e5\u540e\u901a\u8fc7ACS\u7cfb\u7edf\u62a5\u5173\u4e5f\u662f\u5141\u8bb8\u7684\u3002\u4f46\u540e\u679c\u8fd8\u5e94\u6839\u636e\u4e2a\u522b\u60c5\u51b5\u800c\u5b9a\uff0c\u62a5\u5173\u4eba\u4e5f\u53ef\u80fd\u4f1a\u6536\u5230\u8b66\u544a\u4fe1\u606f\u3002CBP\u4f1a\u8ddf\u8fdb\u65e0\u6cd5\u901a\u8fc7ACE\u7cfb\u7edf\u9012\u4ea4\u4fe1\u606f\u7684ACS\u4f7f\u7528\u8005\u60c5\u51b5\uff0c\u7136\u540e\u518d\u770b\u770b\u5982\u4f55\u5e2e\u52a9\u4ed6\u4eec\u8fdb\u884cACE\u7cfb\u7edf\u7684\u8f6c\u5316\u3002\u4e34\u8fd17\u670823\u65e5\uff0cACS\u5c06\u4e0d\u518d\u4f5c\u4e3a\u53ef\u9012\u4ea4\u901a\u9053\u3002 ACE\u7cfb\u7edf\u9012\u4ea4\u5e38\u89c1\u9519\u8bef \u4f1a\u8bae\u4e2d\uff0cFDA\u6307\u51fa\u4ee5\u4e0bACE\u7cfb\u7edf\u9012\u4ea4\u7684\u5e38\u89c1\u9519\u8bef\u548c\u62d2\u7edd\u62a5\u5173\u7684\u539f\u56e0 .\u62a5\u5173\u4eba\u9700\u63d0\u4f9b\u6709\u6548\u7684\u8d27\u7269\u9884\u5148\u7533\u62a5\u786e\u8ba4\u53f7\u7801\u3002\u62a5\u5173\u4eba\u5e94\u9012\u4ea4\u786e\u8ba4\u53f7\u7801\u800c\u975e\u5176\u4ed6FDA\u9884\u5148\u7533\u62a5\u4fe1\u606f\uff0c\u8bb8\u591a\u62a5\u5173\u4eba\u8fd8\u9012\u4ea4\u65e0\u6548\u7684\u9884\u5148\u7533\u62a5\u786e\u8ba4\u53f7\u7801\u3002 \u8bb8\u591a\u62a5\u5173\u4eba\u65e0\u6cd5\u63d0\u4f9b\u6709\u6548\u7684FDA\u6ce8\u518c\u53f7\u7801\u3002\uff08\u63d0\u793a\uff1aFDA\u8981\u6c42\u98df\u54c1\u4f01\u4e1a\u5728\u6bcf\u5076\u6570\u5e74\u768410\u67081\u65e5\u81f312\u670831\u65e5\u4e4b\u95f4\u66f4\u65b0FDA\u4f01\u4e1a\u6ce8\u518c\u3002\u4e0d\u6309\u8981\u6c42\u8fdb\u884c\u66f4\u65b0\u7684\u6ce8\u518c\u5c06\u88abFDA\u6ce8\u9500\u3002\uff09 \u8bb8\u591a\u62a5\u5173\u4eba\u56e0\u7f3a\u5c11\u6216\u63d0\u4f9b\u6709\u6548\u4ea7\u54c1\u4ee3\u7801\u3001\u6ce8\u518c\u53f7\u7801\u6216\u7528\u9014\u4ee3\u7801 \u8bb8\u591a\u9012\u4ea4\u4fe1\u606f\u4e2d\u8fdb\u53e3IDs\u4e0d\u5339\u914d\u3002\u4f8b\u5982\uff0c\u8fdb\u53e3\u52a0\u5de5\u98df\u54c1\u5fc5\u987b\u5217\u660e\u5de5\u5382\u4ee3\u7801\uff08\u4e0e\u79cd\u690d\u8005\u4ee3\u7801\u76f8\u5bf9\u5e94\uff09\u4f5c\u4e3a\u8fdb\u53e3ID\u3002 \u8bb8\u591a\u9012\u4ea4\u4fe1\u606f\u6df7\u6dc6\u6765\u6e90\u7c7b\u578b\u4ee3\u7801\u3002\u76f4\u63a5\u4ece\u519c\u573a\u6216\u96c6\u8fd0\u5546\u8fdb\u53e3\uff0c\u5fc5\u987b\u5217\u51fa\u79cd\u690d\u5730\u56fd\u5bb6\uff0c\u4ece\u52a0\u5de5\u98df\u54c1\u5382\u5546\u8fdb\u53e3\uff0c\u5fc5\u987b\u5217\u51fa\u751f\u4ea7\u56fd\u5bb6\u3002\u4e24\u79cd\u8fdb\u53e3\u7c7b\u578b\u90fd\u5fc5\u987b\u5217\u660e\u88c5\u8fd0\u56fd\u5bb6\u3002 \u8bb8\u591a\u62a5\u5173\u4eba\u5728\u975e\u98df\u54c1\u9009\u9879\u4e2d\u5c06\u56fd\u5bb6\u540d\u79f0\u5217\u4e3a\u6700\u7ec8\u6536\u8d27\u4eba\uff0c\u8fd9\u662f\u4e0d\u6b63\u786e\u7684\u3002\u6700\u7ec8\u6536\u8d27\u4eba\u4ee3\u8868\u4ea7\u54c1\u5728\u7f8e\u56fd\u5883\u5185\u8fd0\u8f93\u7684\u6700\u7ec8\u76ee\u7684\u5730\u3002 \u4ee5\u4e0a\u4ec5\u4ee3\u8868\u901a\u8fc7ACE\u7cfb\u7edf\u62a5\u5173\u7684\u5c11\u90e8\u5206\u9519\u8bef\u3002FDA\u90ae\u7bb1ACE_Support@fda.hhs.gov\u63d0\u4f9bACE\u7cfb\u7edf\u62a5\u5173\u89e3\u7b54\u670d\u52a1\u3002FDA \u5c06\u4e8e\u672c\u6708\u5f00\u59cb\u63d0\u4f9b7\u592924\u5c0f\u65f6ACE\u7cfb\u7edf\u534f\u52a9\u3002\u70b9\u51fb\u67e5\u770bFDA\u89c4\u7ba1\u4ea7\u54c1\u8fdb\u53e3\u5fc5\u8981\u4fe1\u606f\u5217\u8868\u3002 \u5982\u679c\u60a8\u7684ACE\u62a5\u5173\u4fe1\u606f\u6709\u9519\u8bef\uff0c\u60a8\u6700\u591a\u53ef\u4ee5\u5728\u8d27\u7269\u5230\u8fbe\u7f8e\u56fd\u76845\u5929\u524d\u9012\u4ea4\u4fee\u6539\u4fe1\u606f\u3002\u4e00\u65e6\u8d27\u7269\u9884\u8ba1\u57285\u5185\u5230\u8fbe\uff0c\u9664\u975eFDA\u62d2\u7edd\u62a5\u5173\uff0c\u60a8\u5c06\u65e0\u6cd5\u505a\u51fa\u4fee\u6539\u3002 \u52a0\u5feb\u8fdb\u53e3\u901f\u5ea6 ACE\u662f\u6700\u8fc5\u901f\u7684\u9012\u4ea4\u65b9\u5f0f\uff0c\u8c28\u614e\u8d77\u89c1\uff0c\u62a5\u5173\u884c\u548c\u8fdb\u53e3\u5546\u5e94\u5c3d\u65e9\u7740\u624bACE\u7cfb\u7edf\u3002\u76f8\u6bd4\u4e8eACS\u7cfb\u7edf\uff0cFDA\u66f4\u503e\u5411\u4e8e\u63a8\u8350ACE\u7cfb\u7edf\uff0cACE\u7cfb\u7edf\u62a5\u5173\u901f\u5ea6\u63d0\u9ad8\u4e86\u4e24\u500d\u3002FDA\u6307\u51fa\uff0c\u867d\u7136\u73b0\u5728\u5927\u591a\u6570\u4f01\u4e1a\u62a5\u5173\u4fe1\u606f\u4e0d\u88ab\u8981\u6c42\u63d0\u4f9b\u9093\u6c0f\u7f16\u7801\u548cFEI\u53f7\u7801\uff0c\u4f46\u9644\u52a0\u8fd9\u4e9b\u4fe1\u606f\u6709\u52a9\u4e8e\u52a0\u901f\u901a\u5173\u3002\u201c\u63d0\u4f9b\u9093\u767d\u6c0f\u53f7\u7801\u63d0\u9ad8\u4e86FDA\u67e5\u770b\u9012\u4ea4\u4fe1\u606f\u65f6\u7684\u4fe1\u4efb\u5ea6\u3002\u201dFDA\u5728\u8bba\u53ca\u786e\u8ba4\u4ea7\u5546\u540d\u79f0\u548c\u5730\u5740\u95ee\u9898\u65f6\u8bf4\u5230\u3002 Registrar Corp\u5982\u4f55\u63d0\u4f9b\u5e2e\u52a9 Registrar Corp\u63d0\u4f9b\u591a\u6837\u5316\u670d\u52a1\uff0c\u534f\u52a9\u62a5\u5173\u4eba\u83b7\u53d6ACE\u62a5\u5173\u7684\u4fe1\u606f\u3002Registrar"}