{"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":"FDA\u5bf9\u6dfb\u52a0\u5242\u7684\u98df\u54c1\u6807\u7b7e\u8981\u6c42","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"Y6I5JFdSjy\"><a href=\"https:\/\/legacy.registrarcorp.com\/zh\/fda-food-labeling-requirements-for-additives\/\">FDA\u5bf9\u6dfb\u52a0\u5242\u7684\u98df\u54c1\u6807\u7b7e\u8981\u6c42<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/legacy.registrarcorp.com\/zh\/fda-food-labeling-requirements-for-additives\/embed\/#?secret=Y6I5JFdSjy\" width=\"600\" height=\"338\" title=\"&#8220;FDA\u5bf9\u6dfb\u52a0\u5242\u7684\u98df\u54c1\u6807\u7b7e\u8981\u6c42&#8221; &#8212; Registrar\" data-secret=\"Y6I5JFdSjy\" 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\/2022\/07\/high-angle-indian-spices-with-spoons-scaled-e1656705772940.jpg","thumbnail_width":2560,"thumbnail_height":1707,"description":"\u98df\u54c1\u6dfb\u52a0\u5242\u662f\u5728\u7f8e\u56fd\u9500\u552e\u7684\u98df\u54c1\u4e2d\u5e38\u89c1\u7684\u4e00\u79cd\u6210\u5206\u3002\u98df\u54c1\u5236\u9020\u5546\u901a\u5e38\u4f9d\u9760\u6dfb\u52a0\u5242\u4ee5\u5404\u79cd\u65b9\u5f0f\u6765\u63d0\u9ad8\u5176\u98df\u54c1\u8d28\u91cf\u3002\u8fd9\u4e9b\u6dfb\u52a0\u5242\u53ef\u7528\u6765\u8fbe\u5230\u7f8e\u89c2\u7684\u76ee\u7684\uff0c\u4e5f\u53ef\u4ee5\u662f\u529f\u80fd\u6027\u7684\uff0c\u4fdd\u6301\u4ea7\u54c1\u8d28\u91cf\u6216\u4f7f\u5176\u98df\u7528\u66f4\u5b89\u5168\u3002\u7f8e\u56fd\u98df\u54c1\u548c\u836f\u54c1\u76d1\u7763\u7ba1\u7406\u5c40(FDA)\u6839\u636e\u6dfb\u52a0\u5242\u7684\u7279\u6027\u53ca\u5176\u9884\u671f\u7528\u9014\u6765\u76d1\u7ba1\u98df\u54c1\u4e2d\u7684\u6dfb\u52a0\u5242\uff0c\u5305\u62ec\u5efa\u7acb\u548c\u6267\u884c\u6807\u7b7e\u8981\u6c42\u3002 \u4e00\u822c\u6765\u8bf4\uff0cFDA\u8981\u6c42\u98df\u54c1\u4e2d\u7684\u6240\u6709\u6210\u5206\u90fd\u8981\u6309\u7167\u4ece\u6700\u591a\u5230\u6700\u5c11\u7684\u987a\u5e8f\u5217\u5728\u6807\u7b7e\u4e0a\u3002\u9664\u4e86\u8fd9\u4e00\u89c4\u5b9a\u4e4b\u5916\uff0c\u4e00\u4e9b\u6dfb\u52a0\u5242\u8fd8\u9700\u8981\u9075\u5b88\u5176\u4ed6\u7684\u6807\u7b7e\u8981\u6c42\uff0c\u800c\u5176\u4ed6\u7684\u5219\u53ef\u4ee5\u8c41\u514d\u3002 \u83b7\u5f97FDA\u5408\u89c4\u65b9\u9762\u7684\u5e2e\u52a9\u3002 Registrar Corp\u7684\u6cd5\u89c4\u4e13\u5bb6\u53ef\u4ee5\u5e2e\u52a9\u5ba1\u6838\u60a8\u7684\u4ea7\u54c1\u6807\u7b7e\u662f\u5426\u7b26\u5408FDA\u7684\u8981\u6c42\u3002 \u6b32\u4e86\u89e3\u66f4\u591a\u4fe1\u606f\uff0c\u8bf7\u81f4\u7535+1-757-224-0177\uff0c\u53d1\u9001\u7535\u5b50\u90ae\u4ef6\u81f3info@registrarcorp.com\u8054\u7cfb\u6211\u4eec\uff0c\u6216\u901a\u8fc7regstaging.wpengine.com\/livechat\u4e0e\u6211\u4eec\u5168\u5929\u5019\u5728\u7ebf\u7684\u6cd5\u89c4\u987e\u95ee\u5373\u65f6\u8054\u7cfb\u3002 \u83b7\u5f97\u5e2e\u52a9 \u76f4\u63a5\u6dfb\u52a0\u5242 \u5f53\u98df\u54c1\u4f01\u4e1a\u5728\u98df\u54c1\u4e2d\u52a0\u5165\u4e00\u79cd\u6dfb\u52a0\u5242\u4ee5\u8fbe\u5230\u67d0\u79cd\u76ee\u7684\u65f6\uff0c\u8be5\u7269\u8d28\u5c31\u662f\u4e00\u79cd\u76f4\u63a5\u6dfb\u52a0\u5242\u3002\u4f8b\u5982\uff0c\u5361\u62c9\u80f6\u7ecf\u5e38\u88ab\u7528\u4e8e\u674f\u4ec1\u5976\u3001\u677e\u8f6f\u5e72\u916a\u3001\u51b0\u6dc7\u6dcb\u3001\u5496\u5561\u5976\u7cbe\u548c\u7d20\u98df\u5976\u916a\u7b49\u4ea7\u54c1\u4e2d\uff0c\u4ee5\u8fbe\u5230\u4e0d\u540c\u7684\u76ee\u7684\u3002 \u6709\u65f6\uff0c\u76f4\u63a5\u6dfb\u52a0\u5242\u53ef\u4ee5\u4f5c\u4e3a\u9632\u8150\u5242\u6765\u4fdd\u6301\u6216\u63d0\u9ad8\u5b89\u5168\u6027\u548c\u65b0\u9c9c\u5ea6\u3002\u7531\u4e8e\u4ea7\u54c1\u53ef\u80fd\u4f1a\u56e0\u9709\u83cc\u3001\u7a7a\u6c14\u3001\u7ec6\u83cc\u3001\u771f\u83cc\u6216\u9175\u6bcd\u800c\u8fc5\u901f\u53d8\u8d28\uff0c\u9632\u8150\u5242\u53ef\u4ee5\u51cf\u7f13\u53d8\u8d28\u5e76\u5e2e\u52a9\u63a7\u5236\u53ef\u80fd\u5bfc\u81f4\u98df\u6e90\u6027\u75be\u75c5\u7684\u6c61\u67d3\u3002\u751f\u4ea7\u4e73\u5236\u54c1\u7684\u98df\u54c1\u5de5\u5382\u53ef\u80fd\u4f1a\u5728\u4ea7\u54c1\u4e2d\u6dfb\u52a0\u5361\u62c9\u80f6\u4f5c\u4e3a\u9632\u8150\u5242\u3002 \u76f4\u63a5\u6dfb\u52a0\u5242\u4e5f\u88ab\u7528\u6765\u6539\u5584\u98df\u7269\u7684\u5473\u9053\u3001\u8d28\u5730\u548c\u5916\u89c2\u3002\u5361\u62c9\u80f6\u4e0d\u4ec5\u53ef\u4ee5\u7528\u4f5c\u9632\u8150\u5242\uff0c\u8fd8\u53ef\u4ee5\u4f5c\u4e3a\u589e\u7a20\u5242\u6dfb\u52a0\u5230\u5496\u5561\u5976\u7cbe\u548c\u51b0\u6dc7\u6dcb\u7b49\u4ea7\u54c1\u4e2d\uff0c\u4ee5\u5e2e\u52a9\u83b7\u5f97\u66f4\u597d\u7684\u8d28\u5730\u3002\u5176\u4ed6\u76f4\u63a5\u6dfb\u52a0\u5242\u7684\u4f8b\u5b50\u6709\u4e3a\u4e86\u6539\u5584\u53e3\u611f\u800c\u52a0\u5165\u98df\u54c1\u4e2d\u7684\u5929\u7136\u7684\u548c\u4eba\u9020\u7684\u9999\u6599\u3001\u8c03\u5473\u6599\u548c\u751c\u5473\u5242\u3002 \u76f4\u63a5\u6dfb\u52a0\u5242\u4e5f\u53ef\u7528\u4e8e\u63d0\u9ad8\u6216\u4fdd\u6301\u8425\u517b\u4ef7\u503c\u3002\u98df\u54c1\u53ef\u80fd\u542b\u6709\u6dfb\u52a0\u7684\u7ef4\u751f\u7d20\u548c\u77ff\u7269\u8d28\uff0c\u4ee5\u589e\u52a0\u6d88\u8d39\u8005\u7684\u8425\u517b\u6d88\u8017\uff0c\u62b5\u6d88\u90a3\u4e9b\u5929\u7136\u5b58\u5728\u4f46\u5728\u52a0\u5de5\u8fc7\u7a0b\u4e2d\u635f\u5931\u7684\u7269\u8d28\uff0c\u6216\u521b\u9020\u4e00\u79cd\u8425\u517b\u66f4\u4e30\u5bcc\u7684\u4ea7\u54c1\u3002 \u6839\u636eFDA\u5bf9\u98df\u54c1\u6210\u5206\u7684\u4e00\u822c\u6807\u7b7e\u8981\u6c42\uff0c\u6240\u6709\u76f4\u63a5\u6dfb\u52a0\u5242\u90fd\u5fc5\u987b\u5728\u6807\u7b7e\u4e0a\u9002\u5f53\u6807\u8bc6\u3002 \u5316\u5b66\u9632\u8150\u5242 \u7f8e\u56fd\u98df\u54c1\u548c\u836f\u7269\u7ba1\u7406\u5c40\u5c06\u5316\u5b66\u9632\u8150\u5242\u5b9a\u4e49\u4e3a\u201c\u4efb\u4f55\u6dfb\u52a0\u5230\u98df\u54c1\u4e2d\u53ef\u9632\u6b62\u6216\u5ef6\u7f13\u5176\u53d8\u8d28\u7684\u5316\u5b66\u54c1\uff0c\u4f46\u4e0d\u5305\u62ec\u98df\u76d0\u3001\u7cd6\u3001\u918b\u3001\u9999\u6599\u6216\u4ece\u9999\u6599\u4e2d\u63d0\u53d6\u7684\u6cb9\u3001\u901a\u8fc7\u76f4\u63a5\u66b4\u9732\u4e8e\u6728\u6750\u70df\u96fe\u800c\u6dfb\u52a0\u5230\u98df\u54c1\u4e2d\u7684\u7269\u8d28\uff0c\u6216\u56e0\u5176\u6740\u866b\u6216\u9664\u8349\u7279\u6027\u800c\u5e94\u7528\u7684\u5316\u5b66\u54c1(21CFR 101.22(a)(5))\u3002 \u5f53\u6807\u7b7e\u4e0a\u6709\u5316\u5b66\u9632\u8150\u5242\u65f6\uff0c\u6e05\u5355\u4e0a\u5fc5\u987b\u6807\u660e\u8be5\u5316\u5b66\u54c1\u7684\u666e\u901a\u6216\u5e38\u7528\u540d\u79f0\uff0c\u4ee5\u53ca\u5b83\u662f\u4e00\u79cd\u9632\u8150\u5242\u7684\u63cf\u8ff0\uff0c\u5982:\u201c(\u9632\u8150\u5242)\u201d\u6216\u540c\u65f6\u8868\u660e\u529f\u80fd\u7684\u58f0\u660e\uff0c\u5982\u201c________\u4ee5\u4fc3\u8fdb\u989c\u8272\u4fdd\u6301\u201d\u3002 \u5076\u7136\u7684\u6dfb\u52a0\u5242 \u5076\u7136\u7684\u6dfb\u52a0\u5242\u662f\u6307\u90a3\u4e9b\u5bf9\u6210\u54c1\u98df\u54c1\u6ca1\u6709\u6280\u672f\u6216\u529f\u80fd\u5f71\u54cd\u7684\u6dfb\u52a0\u5242\uff0c\u5176\u542b\u91cf\u5fae\u4e0d\u8db3\u9053\u3002\u54c1\u98df\u54c1\u6ca1\u6709\u6280\u672f\u6216\u529f\u80fd\u5f71\u54cd\u7684\u6dfb\u52a0\u5242\uff0c\u5176\u542b\u91cf\u5fae\u4e0d\u8db3\u9053\u3002\u5b83\u4eec\u7684\u5b58\u5728\u901a\u5e38\u662f\u7531\u4e8e\u5b83\u4eec\u66fe\u662f\u98df\u54c1\u4e2d\u4f7f\u7528\u7684\u6210\u5206\u4e2d\u7684\u67d0\u4e2a\u6210\u5206\uff08\u5728\u8be5\u6210\u5206\u4e2d\u5b83\u4eec\u786e\u5b9e\u5177\u6709\u6280\u672f\u6216\u529f\u80fd\u6548\u679c\uff09\uff0c\u6216\u8005\u662f\u56e0\u4e3a\u5b83\u4eec\u7528\u4f5c\u52a0\u5de5\u52a9\u5242\u3002 \u52a0\u5de5\u52a9\u5242\u7684\u5b9a\u4e49\u662f:1)\u5728\u98df\u54c1\u52a0\u5de5\u8fc7\u7a0b\u4e2d\u6dfb\u52a0\u5230\u98df\u54c1\u4e2d\u7684\u7269\u8d28\uff0c\u4f46\u5728\u5305\u88c5\u6210\u6210\u54c1\u4e4b\u524d\u4ee5\u67d0\u79cd\u65b9\u5f0f\u4ece\u98df\u54c1\u4e2d\u9664\u53bb\uff1b2)\u5728\u52a0\u5de5\u8fc7\u7a0b\u4e2d\u6dfb\u52a0\u5230\u98df\u54c1\u4e2d\u7684\u7269\u8d28\uff0c\u8fd9\u4e9b\u7269\u8d28\u88ab\u8f6c\u5316\u4e3a\u901a\u5e38\u5b58\u5728\u4e8e\u98df\u54c1\u4e2d\u7684\u6210\u5206\uff0c\u5e76\u4e14\u4e0d\u4f1a\u663e\u8457\u589e\u52a0\u98df\u54c1\u4e2d\u5929\u7136\u6210\u5206\u7684\u542b\u91cf\uff1b\u62163)\u5728\u52a0\u5de5\u8fc7\u7a0b\u4e2d\u56e0\u5176\u6280\u672f\u6216\u529f\u80fd\u6548\u679c\u800c\u6dfb\u52a0\u5230\u98df\u54c1\u4e2d\u7684\u7269\u8d28\uff0c\u4f46\u5728\u6210\u54c1\u98df\u54c1\u4e2d\u7684\u542b\u91cf\u5f88\u4f4e\uff0c\u5e76\u4e14\u5728\u8be5\u98df\u54c1\u4e2d\u6ca1\u6709\u4efb\u4f55\u6280\u672f\u6216\u529f\u80fd\u6548\u679c(21 CFR 101.100(a)(3))\u3002 \u4efb\u4f55\u7b26\u5408\u8fd9\u4e9b\u5b9a\u4e49\u7684\u7269\u8d28\u90fd\u53ef\u4ee5\u514d\u4e8e\u5728\u4ea7\u54c1\u6807\u7b7e\u7684\u6210\u5206\u8868\u4e2d\u58f0\u660e\u3002 \u989c\u8272\u6dfb\u52a0\u5242 \u989c\u8272\u6dfb\u52a0\u5242\u662f\u6307\u201c\u4efb\u4f55\u67d3\u6599\u3001\u8272\u7d20\u6216\u7269\u8d28\uff0c\u5f53\u52a0\u5165\u6216\u5e94\u7528\u4e8e\u98df\u54c1\u3001\u836f\u7269\u6216\u5316\u5986\u54c1\u6216\u4eba\u4f53\u65f6\uff0c\u80fd\u591f(\u5355\u72ec\u6216\u901a\u8fc7\u4e0e\u5176\u4ed6\u7269\u8d28\u53cd\u5e94)\u8d4b\u4e88\u989c\u8272\u3002\u201d \u989c\u8272\u6dfb\u52a0\u5242\u53ef\u7528\u4e8e\u98df\u54c1\u4e2d\uff0c\u4ee5\u62b5\u6d88\u989c\u8272\u635f\u5931\uff0c\u7ea0\u6b63\u989c\u8272\u7684\u81ea\u7136\u53d8\u5316\uff0c\u589e\u5f3a\u81ea\u7136\u51fa\u73b0\u7684\u989c\u8272\uff0c\u6216\u4e3a\u65e0\u8272\u98df\u54c1\u63d0\u4f9b\u989c\u8272\u3002 &#8220;\u7ecf\u8fc7\u8ba4\u8bc1\u7684 &#8220;\u989c\u8272\u6dfb\u52a0\u5242\u662f\u5408\u6210\u8272\u7d20\uff0c\u6bcf\u6b21\u751f\u4ea7\u65b0\u6279\u6b21\u65f6\u90fd\u9700\u8981\u8fdb\u884c\u6279\u6b21\u8ba4\u8bc1\u3002&#8221;\u8c41\u514d\u7684 &#8220;\u989c\u8272\u6dfb\u52a0\u5242\u5305\u62ec\u6765\u81ea\u5929\u7136\u6765\u6e90\u7684\u989c\u6599\uff0c\u5982\u852c\u83dc\u3001\u77ff\u7269\u8d28\u6216\u52a8\u7269\u3002\u8c41\u514d\u7684\u989c\u8272\u4e0d\u53d7\u6279\u6b21\u8ba4\u8bc1\u8981\u6c42\u7684\u9650\u5236\u3002 \u4e00\u4e9b\u514d\u4e8e\u8ba4\u8bc1\u7684\u8272\u7d20\u6dfb\u52a0\u5242\u53ef\u4ee5\u88ab\u7edf\u79f0\u4e3a\u201c\u4eba\u9020\u8272\u7d20\u201d\u3001\u201c\u6dfb\u52a0\u7684\u4eba\u9020\u8272\u7d20\u201d\u3001\u201c\u6dfb\u52a0\u7684\u8272\u7d20\u201d\u3001\u201c\u9999\u6599\u201d\u6216\u7c7b\u4f3c\u7684\u63cf\u8ff0\uff0c\u800c\u4e0d\u9700\u8981\u5206\u522b\u547d\u540d\u3002\u5b83\u4eec\u4e5f\u53ef\u4ee5\u6309\u540d\u79f0\u7533\u62a5\uff0c\u5e76\u5e26\u6709\u8bf8\u5982\u201c\u7528___\u7740\u8272\u201d\u6216\u201c__\u8272\u201d\u4e4b\u7c7b\u7684\u8bf4\u660e\u4f46\u662f\uff0c\u67d0\u4e9b\u8fc7\u654f\u8272\u7d20\u6dfb\u52a0\u5242\uff0c\u5982\u80ed\u8102\u7ea2\/\u80ed\u8102\u866b\u7ea2\u63d0\u53d6\u7269\uff0c\u5fc5\u987b\u5728\u98df\u54c1\u6807\u7b7e\u4e0a\u6807\u660e\u540d\u79f0\u3002\u5df2\u7ecf\u83b7\u5f97\u6279\u91cf\u8ba4\u8bc1\u7684\u989c\u8272\u5fc5\u987b\u4f7f\u7528\u6307\u5b9a\u7ed9\u8be5\u7279\u5b9a\u989c\u8272\u7684\u8ba4\u8bc1\u7248\u672c\u7684\u201cFD&amp;C\u201d\u524d\u7f00\u8fdb\u884c\u547d\u540d\u58f0\u660e\uff0c\u4f8b\u5982FD&amp;C\u7ea2\u827240\u53f7\u3002 \u83b7\u5f97FDA\u5408\u89c4\u65b9\u9762\u7684\u5e2e\u52a9\u3002 Registrar Corp\u7684\u6cd5\u89c4\u4e13\u5bb6\u53ef\u4ee5\u5e2e\u52a9\u5ba1\u6838\u60a8\u7684\u4ea7\u54c1\u6807\u7b7e\u662f\u5426\u7b26\u5408FDA\u7684\u8981\u6c42\u3002 \u6b32\u4e86\u89e3\u66f4\u591a\u4fe1\u606f\uff0c\u8bf7\u81f4\u7535+1-757-224-0177\uff0c\u53d1\u9001\u7535\u5b50\u90ae\u4ef6\u81f3info@registrarcorp.com\u8054\u7cfb\u6211\u4eec\uff0c\u6216\u901a\u8fc7regstaging.wpengine.com\/livechat\u4e0e\u6211\u4eec\u5168\u5929\u5019\u5728\u7ebf\u7684\u6cd5\u89c4\u987e\u95ee\u5373\u65f6\u8054\u7cfb\u3002 \u83b7\u5f97\u5e2e\u52a9"}