{"version":"1.0","provider_name":"CELLINK Japan","provider_url":"https:\/\/www.cellink.com\/jp","author_name":"jesperlindahl","author_url":"https:\/\/www.cellink.com\/jp\/author\/jesperlindahl\/","title":"\u7814\u7a76\u8005\u304c\u4f5c\u88fd\u3057\u305f\u30d0\u30a4\u30aa\u30d7\u30ea\u30f3\u30c8\u809d\u81d3","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"Cz4dgMUISr\"><a href=\"https:\/\/www.cellink.com\/jp\/customer-spotlight\/bioprinted-liver-created-by-researchers\/\">\u7814\u7a76\u8005\u304c\u4f5c\u88fd\u3057\u305f\u30d0\u30a4\u30aa\u30d7\u30ea\u30f3\u30c8\u809d\u81d3<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.cellink.com\/jp\/customer-spotlight\/bioprinted-liver-created-by-researchers\/embed\/#?secret=Cz4dgMUISr\" width=\"600\" height=\"338\" title=\"&#8220;\u7814\u7a76\u8005\u304c\u4f5c\u88fd\u3057\u305f\u30d0\u30a4\u30aa\u30d7\u30ea\u30f3\u30c8\u809d\u81d3&#8221; &#8212; CELLINK Japan\" data-secret=\"Cz4dgMUISr\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe><script>\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:\/\/www.cellink.com\/jp\/wp-includes\/js\/wp-embed.js\n<\/script>\n","thumbnail_url":"https:\/\/www.cellink.com\/jp\/wp-content\/uploads\/sites\/21\/2020\/05\/80-researchersc.jpg","thumbnail_width":800,"thumbnail_height":480,"description":"\u5143\u306e\u8a18\u4e8b\u306f\u3053\u3061\u3089\u304b\u3089\u3054\u89a7\u304f\u3060\u3055\u3044 \u30d6\u30e9\u30b8\u30eb\u306e\u7814\u7a76\u8005\u30c1\u30fc\u30e0\u306f\u3001\u30d2\u30c8\u306e\u8840\u6db2\u7d30\u80de\u3092\u4f7f\u3063\u3066\u3001\u91cd\u8981\u306a\u30bf\u30f3\u30d1\u30af\u8cea\u306e\u751f\u7523\u3001\u30d3\u30bf\u30df\u30f3\u306e\u8caf\u8535\u3001\u80c6\u6c41\u306e\u5206\u6ccc\u306a\u3069\u3001\u809d\u81d3\u304c\u6301\u3064\u3059\u3079\u3066\u306e\u4e00\u822c\u7684\u306a\u6a5f\u80fd\u3092\u5099\u3048\u305f\u809d\u81d3\u30aa\u30eb\u30ac\u30ce\u30a4\u30c9\uff08\u300c\u30df\u30cb\u809d\u81d3\u300d\uff09\u306e\u958b\u767a\u306b\u6210\u529f\u3057\u307e\u3057\u305f\u3002\u3053\u306e\u6280\u8853\u9769\u65b0\u306b\u3088\u308a\u3001\u30e9\u30dc\u3067\u306e\u809d\u7d44\u7e54\u306e\u4f5c\u88fd\u306f\u308f\u305a\u304b90\u65e5\u9593\u3067\u53ef\u80fd\u3068\u306a\u308a\u3001\u5c06\u6765\u7684\u306b\u306f\u81d3\u5668\u79fb\u690d\u306e\u4ee3\u66ff\u3068\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002\u3053\u306e\u7814\u7a76\u306f\u30d2\u30c8\u30b2\u30ce\u30e0\u30fb\u5e79\u7d30\u80de\u7814\u7a76\u30bb\u30f3\u30bf\u30fc(HUG-CELL)\u3067\u5b9f\u65bd\u3055\u308c\u307e\u3057\u305f\u3002 \u672c\u7814\u7a76\u3067\u306f\u3001 \u7d30\u80de\u306e\u521d\u671f\u5316\u3084\u591a\u80fd\u6027\u5e79\u7d30\u80de\u306e\u57f9\u990a\u306a\u3069\u306e\u751f\u7269\u5de5\u5b66\u7684\u624b\u6cd5\u3068\u30013D\u30d0\u30a4\u30aa\u30d7\u30ea\u30f3\u30c6\u30a3\u30f3\u30b0\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u3044\u307e\u3059\u3002\u3053\u306e\u6226\u7565\u306b\u3088\u308a\u3001\u30d0\u30a4\u30aa\u30d7\u30ea\u30f3\u30bf\u3067\u4f5c\u3089\u308c\u305f\u7d44\u7e54\u306f\u3001\u4ed6\u306e\u30b0\u30eb\u30fc\u30d7\u306e\u904e\u53bb\u306e\u7814\u7a76\u5831\u544a\u3088\u308a\u3082\u9577\u304f\u809d\u6a5f\u80fd\u3092\u7dad\u6301\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3057\u305f\u3002 \u300c\u5b8c\u5168\u306a\u81d3\u5668\u3092\u5165\u624b\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308b\u307e\u3067\u306b\u3001\u307e\u3060\u591a\u304f\u306e\u6bb5\u968e\u304c\u3042\u308a\u307e\u3059\u304c\u3001\u975e\u5e38\u306b\u6709\u671b\u306a\u7d50\u679c\u306b\u5411\u304b\u3063\u3066\u9032\u3093\u3067\u3044\u307e\u3059\u3002\u8fd1\u3044\u5c06\u6765\u306b\u306f\u3001\u81d3\u5668\u79fb\u690d\u3092\u5f85\u3064\u4ee3\u308f\u308a\u306b\u3001\u60a3\u8005\u304b\u3089\u7d30\u80de\u3092\u63a1\u53d6\u3057\u3066\u521d\u671f\u5316\u3057\u3001\u30e9\u30dc\u3067\u65b0\u3057\u3044\u809d\u81d3\u3092\u4f5c\u308b\u3053\u3068\u304c\u53ef\u80fd\u306b\u306a\u308b\u304b\u3082\u3057\u308c\u307e\u305b\u3093\u3002\u3082\u30461\u3064\u306e\u91cd\u8981\u306a\u30e1\u30ea\u30c3\u30c8\u306f\u3001\u60a3\u8005\u304b\u3089\u63a1\u53d6\u3057\u305f\u7d30\u80de\u3067\u3042\u308b\u305f\u3081\u3001\u62d2\u7d76\u53cd\u5fdc\u306e\u53ef\u80fd\u6027\u304c\u30bc\u30ed\u3067\u3042\u308b\u3053\u3068\u3067\u3059\u300d\u3068HUG-CELL\u306e\u8cac\u4efb\u8005\u3067Biofabrication\u8a8c\u306b\u63b2\u8f09\u3055\u308c\u305f\u8ad6\u6587\u306e\u6700\u7d42\u8457\u8005\u3067\u3042\u308bMayana Zatz\u306f\u8a9e\u3063\u3066\u3044\u307e\u3059\u3002 \u3053\u306e\u7814\u7a76\u306e\u9769\u65b0\u7684\u306a\u70b9\u306f\u30013D\u30d7\u30ea\u30f3\u30bf\u3067\u7d44\u7e54\u3092\u4f5c\u308b\u305f\u3081\u306e\u30d0\u30a4\u30aa\u30a4\u30f3\u30af\u306b\u3001\u3069\u306e\u3088\u3046\u306b\u7d30\u80de\u3092\u542b\u307e\u305b\u308b\u304b\u3068\u3044\u3046\u70b9\u306b\u3042\u308a\u307e\u3059\u3002\u300c\u500b\u3005\u306e\u7d30\u80de\u3092\u30d7\u30ea\u30f3\u30c6\u30a3\u30f3\u30b0\u3059\u308b\u306e\u3067\u306f\u306a\u304f\u3001\u30d7\u30ea\u30f3\u30c6\u30a3\u30f3\u30b0\u524d\u306b\u7d30\u80de\u3092\u30b0\u30eb\u30fc\u30d7\u5316\u3059\u308b\u65b9\u6cd5\u3092\u958b\u767a\u3057\u307e\u3057\u305f\u3002\u3053\u308c\u3089\u306e\u7d30\u80de\u306e\u300c\u584a\u300d\uff08\u30b9\u30d5\u30a7\u30ed\u30a4\u30c9\uff09\u306f\u3001\u7d44\u7e54\u3092\u69cb\u6210\u3057\u3001\u6a5f\u80fd\u3092\u9577\u3044\u9593\u7dad\u6301\u3057\u307e\u3059\u300d\u3068\u30b5\u30f3\u30d1\u30a6\u30ed\u5927\u5b66\u751f\u7269\u79d1\u5b66\u7814\u7a76\u6240\u306e\u30dd\u30b9\u30c9\u30af\u3067\u8ad6\u6587\u306e\u7b46\u982d\u8457\u8005Ernesto Goulart\u306f\u8ff0\u3079\u3066\u3044\u307e\u3059\u3002 \u3053\u308c\u306b\u3088\u308a\u3001\u591a\u304f\u306e\u30d2\u30c8\u7d44\u7e54\u30d0\u30a4\u30aa\u30d7\u30ea\u30f3\u30c8\u6280\u8853\u304c\u62b1\u3048\u308b\u554f\u984c\u3001\u3059\u306a\u308f\u3061\u3001\u7d30\u80de\u9593\u306e\u63a5\u89e6\u304c\u5f90\u3005\u306b\u5931\u308f\u308c\u3001\u7d44\u7e54\u306e\u6a5f\u80fd\u304c\u5931\u308f\u308c\u308b\u3053\u3068\u3092\u56de\u907f\u3059\u308b\u3053\u3068\u304c\u53ef\u80fd\u306b\u306a\u308a\u307e\u3057\u305f\u3002 \u672c\u7814\u7a76\u306b\u304a\u3051\u308b\u30b9\u30d5\u30a7\u30ed\u30a4\u30c9\u5f62\u6210\u306f\u3001\u591a\u80fd\u6027\u7d30\u80de\u304c\u809d\u7d44\u7e54\u7d30\u80de\uff08\u809d\u7d30\u80de\u3001\u8840\u7ba1\u7d30\u80de\u3001\u9593\u8449\u7cfb\u7d30\u80de\uff09\u306b\u5206\u5316\u3059\u308b\u904e\u7a0b\u3067\u65e2\u306b\u767a\u751f\u3057\u3066\u3044\u307e\u3057\u305f\u3002\u300c\u79c1\u305f\u3061\u306f\u3059\u3067\u306b\u30b0\u30eb\u30fc\u30d7\u5316\u3055\u308c\u305f\u7d30\u80de\u584a\u304b\u3089\u5206\u5316\u904e\u7a0b\u3092\u958b\u59cb\u3057\u307e\u3057\u305f\u3002\u652a\u62cc\u57f9\u990a\u3057\u305f\u3068\u3053\u308d\u3001\u81ea\u767a\u7684\u306b\u30b0\u30eb\u30fc\u30d7\u304c\u5f62\u6210\u3055\u308c\u307e\u3057\u305f\u300d\u3068\u3001Goulart\u6c0f\u306fAg\u00eancia FAPESP\u306b\u8a9e\u308a\u307e\u3057\u305f\u3002 90\u65e5\u3067\u809d\u81d3\u3092\u4f5c\u88fd \u7814\u7a76\u8005\u306b\u3088\u308b\u3068\u3001\u60a3\u8005\u306e\u8840\u6db2\u63a1\u53d6\u304b\u3089\u6a5f\u80fd\u7684\u306a\u7d44\u7e54\u4f5c\u6210\u307e\u3067\u306e\u5b8c\u5168\u306a\u30d7\u30ed\u30bb\u30b9\uff08\u5206\u5316\u3001\u30d7\u30ea\u30f3\u30c6\u30a3\u30f3\u30b0\u3001\u6210\u719f\u306e3\u6bb5\u968e\u306b\u5206\u3051\u3089\u308c\u308b\uff09\u306b\u306f\u7d0490\u65e5\u304b\u304b\u308b\u3068\u8a00\u308f\u308c\u3066\u3044\u307e\u3059\u3002 \u307e\u305a\u521d\u3081\u306b\u3001\u8840\u6db2\u7d30\u80de\u3092\u30ea\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0\u3057\u3066\u3001\u5e79\u7d30\u80de\u306b\u7279\u5fb4\u7684\u306a\u591a\u80fd\u6027\u306e\u6bb5\u968e\u306b\u9000\u884c\u3055\u305b\u3001\u4eba\u5de5\u591a\u80fd\u6027\u5e79\u7d30\u80de\uff08iPS\u7d30\u80de\uff09\u306b\u3057\u307e\u3059\u3002\u3053\u306e\u6280\u8853\u3092\u958b\u767a\u3057\u305f\u65e5\u672c\u306e\u79d1\u5b66\u8005\u3001\u5c71\u4e2d\u4f38\u5f25\u6559\u6388\u306f\u30012012\u5e74\u306e\u30ce\u30fc\u30d9\u30eb\u533b\u5b66\u8cde\u3092\u53d7\u8cde\u3057\u3066\u3044\u307e\u3059\u3002 \u6b21\u306f\u3001\u809d\u7d30\u80de\u3078\u306e\u5206\u5316\u8a98\u5c0e\u3067\u3059\u3002\u305d\u306e\u5f8c\u3001\u30b9\u30d5\u30a7\u30ed\u30a4\u30c9\u3092\u30d0\u30a4\u30aa\u30a4\u30f3\u30af\uff08\u30cf\u30a4\u30c9\u30ed\u30b2\u30eb\u72b6\u306e\u6db2\u4f53\uff09\u3068\u6df7\u305c\u5408\u308f\u305b\u3001\u30d7\u30ea\u30f3\u30c8\u3057\u307e\u3059\u3002\u30d7\u30ea\u30f3\u30c8\u3057\u305f\u69cb\u9020\u7269\u3092\u300118\u65e5\u9593\u57f9\u990a\u3057\u6210\u719f\u3055\u305b\u307e\u3059\u3002 \u300c\u3053\u306e\u30d7\u30ea\u30f3\u30c6\u30a3\u30f3\u30b0\u30d7\u30ed\u30bb\u30b9\u3067\u306f\u30013\u8ef8\u306b\u6cbf\u3063\u3066\u30b9\u30d5\u30a7\u30ed\u30a4\u30c9\u3092\u7a4d\u307f\u91cd\u306d\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002\u3053\u308c\u306f\u6750\u6599\u306e\u4f53\u7a4d\u3092\u5897\u3084\u3057\u3001\u7d44\u7e54\u3092\u9069\u5207\u306b\u652f\u6301\u3059\u308b\u305f\u3081\u306b\u5fc5\u8981\u3067\u3059\u3002\u30b2\u30eb\u72b6\u306e\u30d0\u30a4\u30aa\u30a4\u30f3\u30af\u3092\u67b6\u6a4b\u3057\u3066\u69cb\u9020\u3092\u5f37\u56fa\u306b\u3059\u308b\u3053\u3068\u3067\u3001\u64cd\u4f5c\u3084\u7e2b\u5408\u3082\u53ef\u80fd\u3067\u3059\u300d\u3068Goulart\u6c0f\u306f\u8ff0\u3079\u3066\u3044\u307e\u3059\u3002 \u751f\u304d\u305f\u7d44\u7e54\u3092\u30d7\u30ea\u30f3\u30c6\u30a3\u30f3\u30b0\u3059\u308b\u305f\u3081\u306b\u5229\u7528\u3067\u304d\u308b\u65b9\u6cd5\u306e\u307b\u3068\u3093\u3069\u306f\u3001\u30cf\u30a4\u30c9\u30ed\u30b2\u30eb\u3078\u306e\u6d78\u6f2c\u3068\u7d30\u80de\u5206\u6563\u3092\u4f7f\u7528\u3057\u3066\u3001\u5fae\u5c0f\u74b0\u5883\u3092\u518d\u73fe\u3057\u3001\u7d44\u7e54\u306e\u6a5f\u80fd\u3092\u78ba\u4fdd\u3057\u3066\u3044\u307e\u3059\u3002\u305f\u3060\u3057\u3001\u5b9f\u9a13\u3067\u306f\u7d30\u80de\u3054\u3068\u306b\u5206\u6563\u3055\u305b\u308b\u3068\u3001\u7d30\u80de\u63a5\u89e6\u304c\u5931\u308f\u308c\u3001\u6a5f\u80fd\u304c\u55aa\u5931\u3059\u308b\u50be\u5411\u304c\u3042\u308b\u3053\u3068\u304c\u5206\u304b\u3063\u3066\u3044\u307e\u3059\u3002 \u300c\u3053\u308c\u306f\u7d30\u80de\u306b\u3068\u3063\u3066\u969c\u5bb3\u3068\u306a\u308b\u30d7\u30ed\u30bb\u30b9\u3067\u3042\u308a\u3001\u74b0\u5883\u306b\u6163\u308c\u3001\u6a5f\u80fd\u3092\u7372\u5f97\u3059\u308b\u305f\u3081\u306b\u306f\u6642\u9593\u304c\u5fc5\u8981\u3067\u3059\u3002\u3053\u306e\u6bb5\u968e\u3067\u3001\u307e\u3060\u7d30\u80de\u306f\u5206\u6563\u3057\u3066\u304a\u308a\u00a0\u7d44\u7e54\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u304c\u3001\u5f53\u7814\u7a76\u3067\u793a\u3055\u308c\u3066\u3044\u308b\u3088\u3046\u306b\u3001\u305d\u308c\u3089\u306f\u4f8b\u3048\u3070\u8840\u6db2\u4e2d\u306e\u6bd2\u7d20\u3092\u9664\u53bb\u3057\u3001\u30a2\u30eb\u30d6\u30df\u30f3\uff08\u809d\u81d3\u306e\u307f\u304c\u7523\u751f\u3059\u308b\u30bf\u30f3\u30d1\u30af\u8cea\uff09\u3092\u7523\u751f\u304a\u3088\u3073\u5206\u6ccc\u3059\u308b\u80fd\u529b\u304c\u3042\u308a\u307e\u3059\u300d\u3068Goulart\u6c0f\u306f\u8a9e\u3063\u3066\u3044\u307e\u3059\u3002 \u4eca\u56de\u30013\u540d\u306e\u30dc\u30e9\u30f3\u30c6\u30a3\u30a2\u306e\u8840\u6db2\u7d30\u80de\u3092\u539f\u6599\u3068\u3057\u3066\u30df\u30cb\u809d\u81d3\u3092\u958b\u767a\u3057\u3001\u7d30\u80de\u306e\u63a5\u89e6\u7dad\u6301\u3084\u30bf\u30f3\u30d1\u30af\u8cea\u306e\u7523\u751f\u30fb\u653e\u51fa\u306a\u3069\u3001\u6a5f\u80fd\u6027\u306b\u95a2\u308f\u308b\u30de\u30fc\u30ab\u30fc\u3092\u6bd4\u8f03\u691c\u8a0e\u3057\u307e\u3057\u305f\u3002\u300c\u3053\u306e\u30b9\u30d5\u30a7\u30ed\u30a4\u30c9\u306f\u3001\u5358\u7d30\u80de\u5206\u6563\u6db2\u304b\u3089\u5f97\u3089\u308c\u305f\u3082\u306e\u3088\u308a\u3082\u3001\u306f\u308b\u304b\u306b\u512a\u308c\u305f\u52b9\u679c\u3092\u767a\u63ee\u3057\u307e\u3057\u305f\u3002\u307e\u305f\u3001\u4e88\u60f3\u901a\u308a\u3001\u6210\u719f\u671f\u306b\u306f\u809d\u6a5f\u80fd\u306e\u30de\u30fc\u30ab\u30fc\u306f\u4f4e\u4e0b\u3057\u3066\u3044\u307e\u305b\u3093\u3067\u3057\u305f\u300d\u3068Goulart\u6c0f\u306f\u8ff0\u3079\u3066\u3044\u307e\u3059\u3002 \u4eca\u56de\u306e\u7814\u7a76\u306f\u30df\u30cb\u809d\u81d3\u306e\u4f5c\u88fd\u306b\u9650\u5b9a\u3055\u308c\u3066\u3044\u307e\u3057\u305f\u304c\u3001Goulart\u6c0f\u306b\u3088\u308b\u3068\u3001\u3053\u306e\u6280\u8853\u306f\u5c06\u6765\u7684\u306b\u306f\u79fb\u690d\u306b\u9069\u3057\u305f\u5b8c\u5168\u306a\u81d3\u5668\u3092\u4f5c\u88fd\u3059\u308b\u305f\u3081\u306b\u5229\u7528\u3067\u304d\u308b\u3068\u306e\u3053\u3068\u3067\u3059\u3002\u300c\u79c1\u305f\u3061\u306f\u5c0f\u898f\u6a21\u306b\u3053\u308c\u3092\u884c\u3044\u307e\u3057\u305f\u3002\u3057\u304b\u3057\u6295\u8cc7\u3084\u8208\u5473\u304c\u3042\u308c\u3070\u3001\u7c21\u5358\u306b\u30b9\u30b1\u30fc\u30eb\u30a2\u30c3\u30d7\u3067\u304d\u307e\u3059\u300d\u3068\u540c\u6c0f\u306f\u8a9e\u308a\u307e\u3059\u3002"}