{"version":"1.0","provider_name":"Prefeitura Municipal de Ferraz de Vasconcelos","provider_url":"https:\/\/ferrazdevasconcelos.sp.gov.br\/web","author_name":"secom","author_url":"https:\/\/ferrazdevasconcelos.sp.gov.br\/web\/author\/secomferraz\/","title":"Ferraz realiza a\u00e7\u00e3o alusiva ao \u201cJaneiro Branco\u201d - Prefeitura Municipal de Ferraz de Vasconcelos","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"VLK6ur6kVF\"><a href=\"https:\/\/ferrazdevasconcelos.sp.gov.br\/web\/saude\/ferraz-realiza-acao-alusiva-ao-janeiro-branco\/\">Ferraz realiza a\u00e7\u00e3o alusiva ao \u201cJaneiro Branco\u201d<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/ferrazdevasconcelos.sp.gov.br\/web\/saude\/ferraz-realiza-acao-alusiva-ao-janeiro-branco\/embed\/#?secret=VLK6ur6kVF\" width=\"600\" height=\"338\" title=\"&#8220;Ferraz realiza a\u00e7\u00e3o alusiva ao \u201cJaneiro Branco\u201d&#8221; &#8212; Prefeitura Municipal de Ferraz de Vasconcelos\" data-secret=\"VLK6ur6kVF\" 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:\/\/ferrazdevasconcelos.sp.gov.br\/web\/wp-includes\/js\/wp-embed.js\n<\/script>\n","thumbnail_url":"https:\/\/ferrazdevasconcelos.sp.gov.br\/web\/wp-content\/uploads\/2018\/07\/Julien-Pereira.jpeg","thumbnail_width":1280,"thumbnail_height":853,"description":"Em\u00a0alus\u00e3o\u00a0ao\u00a0\u201cJaneiro\u00a0Branco\u201d,\u00a0m\u00eas\u00a0dedicado\u00a0aos\u00a0cuidados\u00a0com\u00a0a\u00a0sa\u00fade\u00a0mental,\u00a0a\u00a0Prefeitura\u00a0de\u00a0Ferraz\u00a0de\u00a0Vasconcelos,\u00a0por\u00a0meio\u00a0da\u00a0Secretaria\u00a0Municipal\u00a0de\u00a0Sa\u00fade,\u00a0promover\u00e1\u00a0amanh\u00e3,\u00a023\u00a0de\u00a0janeiro,\u00a0um\u00a0aul\u00e3o\u00a0de\u00a0educa\u00e7\u00e3o\u00a0f\u00edsica\u00a0na\u00a0Unidade\u00a0B\u00e1sica\u00a0de\u00a0Sa\u00fade\u00a0(UBS)\u00a0da\u00a0Vila\u00a0Jamil.\u00a0A\u00a0a\u00e7\u00e3o\u00a0ocorrer\u00e1\u00a0a\u00a0partir\u00a0das\u00a08\u00a0horas\u00a0e\u00a0tem\u00a0como\u00a0objetivo\u00a0prevenir\u00a0e\u00a0promover\u00a0sa\u00fade\u00a0mental. No\u00a0\u00faltimo\u00a0dia\u00a08,\u00a0tamb\u00e9m\u00a0para\u00a0lembrar\u00a0o\u00a0tema,\u00a0a\u00a0pasta\u00a0realizou\u00a0um\u00a0passeio\u00a0ao\u00a0Parque\u00a0Ecol\u00f3gico\u00a0do\u00a0Tiet\u00ea\u00a0com\u00a0dez\u00a0adolescentes\u00a0que\u00a0s\u00e3o\u00a0atendidos\u00a0no\u00a0Ambulat\u00f3rio\u00a0de\u00a0Sa\u00fade\u00a0Mental\u00a0da\u00a0cidade.\u00a0Agora\u00a0ser\u00e1\u00a0a\u00a0vez\u00a0dos\u00a0usu\u00e1rios\u00a0do\u00a0posto\u00a0da\u00a0Vila\u00a0Jamil\u00a0promoverem\u00a0esta\u00a0conscientiza\u00e7\u00e3o. \u201cDessa\u00a0forma,\u00a0al\u00e9m\u00a0de\u00a0ressaltar\u00a0a\u00a0import\u00e2ncia\u00a0de\u00a0falar\u00a0sobre\u00a0o\u00a0assunto,\u00a0tamb\u00e9m\u00a0abrimos\u00a0espa\u00e7o\u00a0para\u00a0a\u00a0discuss\u00e3o\u00a0de\u00a0desejos,\u00a0medos,\u00a0ang\u00fastia,\u00a0planos\u00a0e\u00a0at\u00e9\u00a0qualidade\u00a0de\u00a0vida.\u00a0Ser\u00e1\u00a0a\u00a0parceria\u00a0do\u00a0f\u00edsico\u00a0com\u00a0o\u00a0intelecto\u201d,\u00a0explicou\u00a0sobre\u00a0os\u00a0benef\u00edcios\u00a0da\u00a0a\u00e7\u00e3o\u00a0a\u00a0coordenadora\u00a0da\u00a0Sa\u00fade\u00a0Mental\u00a0em\u00a0Ferraz,\u00a0Cla\u00fadia\u00a0C\u00e1ssia\u00a0Medeiros\u00a0Santos. Vale\u00a0destacar\u00a0que\u00a0os\u00a0servi\u00e7os\u00a0de\u00a0Sa\u00fade\u00a0Mental\u00a0no\u00a0munic\u00edpio\u00a0realizam\u00a0atividades\u00a0no\u00a0decorrer\u00a0do\u00a0ano,\u00a0todas\u00a0voltadas\u00a0\u00e0\u00a0preven\u00e7\u00e3o\u00a0e\u00a0promo\u00e7\u00e3o\u00a0da\u00a0sa\u00fade\u00a0mental. TEXTO:\u00a0Leticia Riente FOTOS:\u00a0 Julien Pereira"}