/** * Observe how the user enters content into the comment form in order to determine whether it's a bot or not. * * Note that no actual input is being saved here, only counts and timings between events. */ ( function() { // Passive event listeners are guaranteed to never call e.preventDefault(), // but they're not supported in all browsers. Use this feature detection // to determine whether they're available for use. var supportsPassive = false; try { var opts = Object.defineProperty( {}, 'passive', { get : function() { supportsPassive = true; } } ); window.addEventListener( 'testPassive', null, opts ); window.removeEventListener( 'testPassive', null, opts ); } catch ( e ) {} function init() { var input_begin = ''; var keydowns = {}; var lastKeyup = null; var lastKeydown = null; var keypresses = []; var modifierKeys = []; var correctionKeys = []; var lastMouseup = null; var lastMousedown = null; var mouseclicks = []; var mousemoveTimer = null; var lastMousemoveX = null; var lastMousemoveY = null; var mousemoveStart = null; var mousemoves = []; var touchmoveCountTimer = null; var touchmoveCount = 0; var lastTouchEnd = null; var lastTouchStart = null; var touchEvents = []; var scrollCountTimer = null; var scrollCount = 0; var correctionKeyCodes = [ 'Backspace', 'Delete', 'ArrowUp', 'ArrowDown', 'ArrowLeft', 'ArrowRight', 'Home', 'End', 'PageUp', 'PageDown' ]; var modifierKeyCodes = [ 'Shift', 'CapsLock' ]; var forms = document.querySelectorAll( 'form[method=post]' ); for ( var i = 0; i < forms.length; i++ ) { var form = forms[i]; var formAction = form.getAttribute( 'action' ); // Ignore forms that POST directly to other domains; these could be things like payment forms. if ( formAction ) { // Check that the form is posting to an external URL, not a path. if ( formAction.indexOf( 'http://' ) == 0 || formAction.indexOf( 'https://' ) == 0 ) { if ( formAction.indexOf( 'http://' + window.location.hostname + '/' ) != 0 && formAction.indexOf( 'https://' + window.location.hostname + '/' ) != 0 ) { continue; } } } form.addEventListener( 'submit', function () { var ak_bkp = prepare_timestamp_array_for_request( keypresses ); var ak_bmc = prepare_timestamp_array_for_request( mouseclicks ); var ak_bte = prepare_timestamp_array_for_request( touchEvents ); var ak_bmm = prepare_timestamp_array_for_request( mousemoves ); var input_fields = { // When did the user begin entering any input? 'bib': input_begin, // When was the form submitted? 'bfs': Date.now(), // How many keypresses did they make? 'bkpc': keypresses.length, // How quickly did they press a sample of keys, and how long between them? 'bkp': ak_bkp, // How quickly did they click the mouse, and how long between clicks? 'bmc': ak_bmc, // How many mouseclicks did they make? 'bmcc': mouseclicks.length, // When did they press modifier keys (like Shift or Capslock)? 'bmk': modifierKeys.join( ';' ), // When did they correct themselves? e.g., press Backspace, or use the arrow keys to move the cursor back 'bck': correctionKeys.join( ';' ), // How many times did they move the mouse? 'bmmc': mousemoves.length, // How many times did they move around using a touchscreen? 'btmc': touchmoveCount, // How many times did they scroll? 'bsc': scrollCount, // How quickly did they perform touch events, and how long between them? 'bte': ak_bte, // How many touch events were there? 'btec' : touchEvents.length, // How quickly did they move the mouse, and how long between moves? 'bmm' : ak_bmm }; var akismet_field_prefix = 'ak_'; if ( this.getElementsByClassName ) { // Check to see if we've used an alternate field name prefix. We store this as an attribute of the container around some of the Akismet fields. var possible_akismet_containers = this.getElementsByClassName( 'akismet-fields-container' ); for ( var containerIndex = 0; containerIndex < possible_akismet_containers.length; containerIndex++ ) { var container = possible_akismet_containers.item( containerIndex ); if ( container.getAttribute( 'data-prefix' ) ) { akismet_field_prefix = container.getAttribute( 'data-prefix' ); break; } } } for ( var field_name in input_fields ) { var field = document.createElement( 'input' ); field.setAttribute( 'type', 'hidden' ); field.setAttribute( 'name', akismet_field_prefix + field_name ); field.setAttribute( 'value', input_fields[ field_name ] ); this.appendChild( field ); } }, supportsPassive ? { passive: true } : false ); form.addEventListener( 'keydown', function ( e ) { // If you hold a key down, some browsers send multiple keydown events in a row. // Ignore any keydown events for a key that hasn't come back up yet. if ( e.key in keydowns ) { return; } var keydownTime = ( new Date() ).getTime(); keydowns[ e.key ] = [ keydownTime ]; if ( ! input_begin ) { input_begin = keydownTime; } // In some situations, we don't want to record an interval since the last keypress -- for example, // on the first keypress, or on a keypress after focus has changed to another element. Normally, // we want to record the time between the last keyup and this keydown. But if they press a // key while already pressing a key, we want to record the time between the two keydowns. var lastKeyEvent = Math.max( lastKeydown, lastKeyup ); if ( lastKeyEvent ) { keydowns[ e.key ].push( keydownTime - lastKeyEvent ); } lastKeydown = keydownTime; }, supportsPassive ? { passive: true } : false ); form.addEventListener( 'keyup', function ( e ) { if ( ! ( e.key in keydowns ) ) { // This key was pressed before this script was loaded, or a mouseclick happened during the keypress, or... return; } var keyupTime = ( new Date() ).getTime(); if ( 'TEXTAREA' === e.target.nodeName || 'INPUT' === e.target.nodeName ) { if ( -1 !== modifierKeyCodes.indexOf( e.key ) ) { modifierKeys.push( keypresses.length - 1 ); } else if ( -1 !== correctionKeyCodes.indexOf( e.key ) ) { correctionKeys.push( keypresses.length - 1 ); } else { // ^ Don't record timings for keys like Shift or backspace, since they // typically get held down for longer than regular typing. var keydownTime = keydowns[ e.key ][0]; var keypress = []; // Keypress duration. keypress.push( keyupTime - keydownTime ); // Amount of time between this keypress and the previous keypress. if ( keydowns[ e.key ].length > 1 ) { keypress.push( keydowns[ e.key ][1] ); } keypresses.push( keypress ); } } delete keydowns[ e.key ]; lastKeyup = keyupTime; }, supportsPassive ? { passive: true } : false ); form.addEventListener( "focusin", function ( e ) { lastKeydown = null; lastKeyup = null; keydowns = {}; }, supportsPassive ? { passive: true } : false ); form.addEventListener( "focusout", function ( e ) { lastKeydown = null; lastKeyup = null; keydowns = {}; }, supportsPassive ? { passive: true } : false ); } document.addEventListener( 'mousedown', function ( e ) { lastMousedown = ( new Date() ).getTime(); }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'mouseup', function ( e ) { if ( ! lastMousedown ) { // If the mousedown happened before this script was loaded, but the mouseup happened after... return; } var now = ( new Date() ).getTime(); var mouseclick = []; mouseclick.push( now - lastMousedown ); if ( lastMouseup ) { mouseclick.push( lastMousedown - lastMouseup ); } mouseclicks.push( mouseclick ); lastMouseup = now; // If the mouse has been clicked, don't record this time as an interval between keypresses. lastKeydown = null; lastKeyup = null; keydowns = {}; }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'mousemove', function ( e ) { if ( mousemoveTimer ) { clearTimeout( mousemoveTimer ); mousemoveTimer = null; } else { mousemoveStart = ( new Date() ).getTime(); lastMousemoveX = e.offsetX; lastMousemoveY = e.offsetY; } mousemoveTimer = setTimeout( function ( theEvent, originalMousemoveStart ) { var now = ( new Date() ).getTime() - 500; // To account for the timer delay. var mousemove = []; mousemove.push( now - originalMousemoveStart ); mousemove.push( Math.round( Math.sqrt( Math.pow( theEvent.offsetX - lastMousemoveX, 2 ) + Math.pow( theEvent.offsetY - lastMousemoveY, 2 ) ) ) ); if ( mousemove[1] > 0 ) { // If there was no measurable distance, then it wasn't really a move. mousemoves.push( mousemove ); } mousemoveStart = null; mousemoveTimer = null; }, 500, e, mousemoveStart ); }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'touchmove', function ( e ) { if ( touchmoveCountTimer ) { clearTimeout( touchmoveCountTimer ); } touchmoveCountTimer = setTimeout( function () { touchmoveCount++; }, 500 ); }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'touchstart', function ( e ) { lastTouchStart = ( new Date() ).getTime(); }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'touchend', function ( e ) { if ( ! lastTouchStart ) { // If the touchstart happened before this script was loaded, but the touchend happened after... return; } var now = ( new Date() ).getTime(); var touchEvent = []; touchEvent.push( now - lastTouchStart ); if ( lastTouchEnd ) { touchEvent.push( lastTouchStart - lastTouchEnd ); } touchEvents.push( touchEvent ); lastTouchEnd = now; // Don't record this time as an interval between keypresses. lastKeydown = null; lastKeyup = null; keydowns = {}; }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'scroll', function ( e ) { if ( scrollCountTimer ) { clearTimeout( scrollCountTimer ); } scrollCountTimer = setTimeout( function () { scrollCount++; }, 500 ); }, supportsPassive ? { passive: true } : false ); } /** * For the timestamp data that is collected, don't send more than `limit` data points in the request. * Choose a random slice and send those. */ function prepare_timestamp_array_for_request( a, limit ) { if ( ! limit ) { limit = 100; } var rv = ''; if ( a.length > 0 ) { var random_starting_point = Math.max( 0, Math.floor( Math.random() * a.length - limit ) ); for ( var i = 0; i < limit && i < a.length; i++ ) { rv += a[ random_starting_point + i ][0]; if ( a[ random_starting_point + i ].length >= 2 ) { rv += "," + a[ random_starting_point + i ][1]; } rv += ";"; } } return rv; } if ( document.readyState !== 'loading' ) { init(); } else { document.addEventListener( 'DOMContentLoaded', init ); } })();{"id":786,"date":"2021-05-27T06:05:02","date_gmt":"2021-05-26T23:05:02","guid":{"rendered":"https:\/\/congviennghiatrang.com\/?p=786"},"modified":"2021-08-30T16:51:12","modified_gmt":"2021-08-30T09:51:12","slug":"nghia-trang-doi-coc","status":"publish","type":"post","link":"https:\/\/congviennghiatrang.com\/nghia-trang-doi-coc\/","title":{"rendered":"\u0110\u00f4i n\u00e9t v\u1ec1 ngh\u0129a trang \u0111\u1ed3i c\u1ed1c S\u00f3c S\u01a1n (thai nhi) – H\u00e0 N\u1ed9i"},"content":{"rendered":"

Nhi\u1ec1u \u0111\u1ee9a b\u00e9 sinh ra k\u00e9m may m\u1eafn ph\u1ea3i n\u00f3i l\u1eddi t\u1eeb bi\u1ec7t d\u01b0\u01a1ng th\u1ebf s\u1edbm. C\u00f3 nh\u1eefng tr\u01b0\u1eddng h\u1ee3p b\u1ecb b\u1ecf r\u01a1i, c\u00f3 nh\u1eefng tr\u01b0\u1eddng kh\u00f4ng may g\u1eb7p nh\u1eefng c\u0103n b\u1ec7nh qu\u00e1i \u00e1c ngay t\u1eeb trong b\u1ee5ng m\u1eb9. Ngh\u0129a trang thai nhi \u0110\u1ed3i C\u1ed1c<\/strong> ch\u00ednh l\u00e0 n\u01a1i l\u01b0u gi\u1eef nh\u1eefng sinh linh b\u00e9 nh\u1ecf ch\u01b0a k\u1ecbp h\u01b0\u1edfng tr\u1ecdn v\u1eb9n ni\u1ec1m vui khi ch\u00e0o \u0111\u1eddi. C\u00f9ng Bandatnghiatrang<\/a> t\u00ecm hi\u1ec3u ngay nh\u00e9<\/em><\/p>\n

Ngh\u0129a trang \u0111\u1ed3i c\u1ed1c \u2013 ngh\u0129a trang thai nhi t\u1ea1i H\u00e0 N\u1ed9i<\/strong><\/h2>\n

Ngh\u0129a trang \u0110\u1ed3i C\u1ed1c n\u1eb1m ngay t\u1ea1i con \u0111\u01b0\u1eddng d\u1eabn v\u00e0o th\u00f4n B\u1ebfn C\u1ed1c, x\u00e3 Thanh S\u01a1n, H. S\u00f3c S\u01a1n, TP H\u00e0 N\u1ed9i. Nh\u1eefng ng\u01b0\u1eddi d\u00e2n s\u1ed1ng \u1edf l\u00e0ng B\u1ebfn C\u1ed1c th\u1ea5y x\u00f3t th\u01b0\u01a1ng cho nh\u1eefng \u0111\u1ee9a tr\u1ebb b\u1ecb b\u1ecf r\u01a1i n\u00ean l\u1eb7ng l\u1ebd \u0111em nh\u1eefng sinh linh n\u00e0y ch\u00f4n c\u1ea5t t\u1ea1i ngh\u0129a trang. \u0110\u00e2y l\u00e0 ngh\u0129a trang d\u00e0nh cho thai nhi \u0111\u00e3 \u0111\u01b0\u1ee3c h\u00ecnh th\u00e0nh 11 n\u0103m.<\/p>\n

Ngh\u0129a trang \u0110\u1ed3i C\u1ed1c t\u00ednh \u0111\u1ebfn b\u00e2y gi\u1edd \u0111\u00e3 c\u00f3 30.000 sinh linh ch\u00e0o \u0111\u1eddi nh\u01b0ng kh\u00f4ng \u0111\u01b0\u1ee3c c\u00f3 cu\u1ed9c \u0111\u1eddi tr\u1ecdn v\u1eb9n. N\u01a1i \u0111\u00e2y ch\u1ee9ng ki\u1ebfn nhi\u1ec1u tr\u01b0\u1eddng h\u1ee3p b\u00e0 m\u1eb9 \u0111\u1ebfn v\u1ee9t con t\u1ea1i \u0111\u00e2y r\u1ed3i v\u1ec1. C\u0169ng c\u00f3 nhi\u1ec1u tr\u01b0\u1eddng h\u1ee3p c\u1ee7a c\u00e1c b\u1ea1n tr\u1ebb y\u00eau nhau v\u00e0 l\u1ee1 c\u00f3 thai nh\u01b0ng kh\u00f4ng th\u1ec3 g\u00e1nh v\u00e1c tr\u00ean vai tr\u1ecdng tr\u00e1ch l\u00e0m cha m\u1eb9 n\u00ean \u0111\u00e3 t\u1eeb b\u1ecf nh\u1eefng sinh linh b\u00e9 nh\u1ecf \u1ea5y. Ngo\u00e0i ra c\u00f2n c\u00f3 nh\u1eefng sinh linh \u0111\u1ec1u mang v\u1ec1 t\u1eeb nh\u1eefng b\u1ec7nh vi\u1ec7n, c\u00e1c ph\u00f2ng d\u1ecbch v\u1ee5 n\u1ea1o ph\u00e1 thai.<\/p>\n

\"ngh\u0129a
Ngh\u0129a trang thai nhi \u0111\u1ed3i c\u1ed1c<\/figcaption><\/figure>\n

Th\u00f4ng th\u01b0\u1eddng nh\u1eefng \u0111\u1ee9a tr\u1ebb \u1edf \u0111\u00e2y khi b\u1ecb b\u1ecf r\u01a1i s\u1ebd \u0111\u01b0\u1ee3c ng\u01b0\u1eddi d\u00e2n \u1edf \u0111\u00e2y mai t\u00e1ng. C\u1ee9 m\u1ed7i tu\u1ea7n ng\u01b0\u1eddi d\u00e2n \u1edf \u0111\u00e2y c\u00f9ng c\u00e1c sinh vi\u00ean t\u00ecnh nguy\u1ec7n t\u1eeb m\u1ed9t s\u1ed1 tr\u01b0\u1eddng \u0111\u1ea1i h\u1ecdc \u0111\u1ebfn \u0111\u00e2y gi\u00fap ch\u00f4n c\u1ea5t nh\u1eefng sinh linh b\u00e9 b\u1ecfng n\u00e0y. V\u00ec khu\u00f4n vi\u00ean \u1edf \u0111\u00e2y kh\u00f4ng \u0111\u01b0\u1ee3c r\u1ed9ng n\u00ean di\u1ec7n t\u00edch mai t\u00e1ng cho c\u00e1c \u0111\u1ee9a b\u00e9 c\u0169ng r\u1ea5t h\u1ea1n h\u1eb9p.<\/p>\n

>>> C\u00f3 th\u1ec3 b\u1ea1n quan t\u00e2m:<\/strong> B\u1ea3ng gi\u00e1 ngh\u0129a trang L\u1ea1c H\u1ed3ng Vi\u00ean r\u1ebb nh\u1ea5t th\u1ecb tr\u01b0\u1eddng (n\u0103m 2021)<\/em><\/a><\/p>\n

N\u01a1i ch\u00f4n c\u1ea5t thai nhi t\u1ea1i H\u00e0 N\u1ed9i – Ngh\u0129a trang thai nhi \u0110\u1ed3i C\u1ed1c<\/strong><\/h2>\n

\u1ede ngh\u0129a trang \u0110\u1ed3i C\u1ed1c \u0111\u00e3 c\u00f3 r\u1ea5t nhi\u1ec1u sinh linh b\u00e9 nh\u1ecf \u0111\u01b0\u1ee3c ch\u00f4n c\u1ea5t. Tuy nhi\u00ean v\u1ec1 l\u00e2u d\u00e0i s\u1ebd kh\u00f4ng th\u1ec3 \u0111\u00e1p \u1ee9ng \u0111\u01b0\u1ee3c v\u00e0 c\u00f3 th\u1ec3 s\u1ebd g\u00e2y \u00f4 nhi\u1ec5m m\u00f4i tr\u01b0\u1eddng. \u0110\u00e2y c\u0169ng l\u00e0 l\u00fd do m\u00e0 n\u0103m 2008 Ngh\u1ecb \u0111\u1ecbnh 35 c\u1ee7a ch\u00ednh ph\u1ee7 v\u1ec1 vi\u1ec7c x\u00e3 h\u1ed9i h\u00f3a ngh\u0129a trang kh\u1eb3ng \u0111\u1ecbnh: \u0110\u00e3 \u0111\u1ebfn l\u00fac ch\u00ednh ph\u1ee7 c\u1ea7n chung ta g\u00f3p s\u1ee9c c\u1ee7a c\u00e1c doanh nghi\u1ec7p x\u00e2y d\u1ef1ng nh\u1eefng khu ngh\u0129a trang hi\u1ec7n \u0111\u1ea1i h\u01a1n cho nh\u1eefng \u0111\u1ee9a b\u00e9.<\/p>\n

T\u00ecm hi\u1ec3u th\u00eam ngh\u0129a trang \u0111\u1eb9p g\u1ea7n H\u00e0 N\u1ed9i<\/strong><\/h2>\n

C\u00f4ng vi\u00ean ngh\u0129a trang H\u00f2a B\u00ecnh ra \u0111\u1eddi t\u1eeb ch\u00ednh nhu c\u1ea7u c\u1ee7a ng\u01b0\u1eddi d\u00e2n, t\u1eeb nhu c\u1ea7u l\u1edbn c\u1ee7a x\u00e3 h\u1ed9i, t\u1eeb tr\u00e1i tim lu\u00f4n \u0111\u1eadp c\u00f9ng nh\u1ecbp v\u1edbi h\u01a1i th\u1edf m\u1edbi c\u1ee7a th\u1eddi \u0111\u1ea1i \u0111\u1ec3 xoa d\u1ecbu nh\u1eefng m\u1ea3nh \u0111\u1eddi \u0111\u00e1ng th\u01b0\u01a1ng c\u1ee7a c\u00e1c \u0111\u1ee9a b\u00e9. V\u1edbi nh\u1eefng g\u00ec m\u00e0 ngh\u0129a trang L\u1ea1c H\u1ed3ng Vi\u00ean \u0111\u00e3 v\u00e0 \u0111ang c\u00f3 th\u00ec c\u00f3 l\u1ebd \u0111\u00f3 l\u00e0 quy\u1ebft \u0111\u1ecbnh \u0111\u00fang \u0111\u1eafn v\u00e0 ch\u00ednh x\u00e1c nh\u1ea5t c\u1ee7a nh\u1eefng ng\u01b0\u1eddi \u0111\u00e3 t\u1ea1o n\u00ean n\u00f3. M\u1ed9t ph\u1ea7n n\u00e0o \u0111\u00f3 t\u1ea1o ra m\u1ed9t kh\u00f4ng gian y\u00ean ngh\u1ec9 cu\u1ed1i c\u00f9ng cho nh\u1eefng h\u00e0i nhi x\u1ea5u s\u1ed1.<\/p>\n

\"\"<\/p>\n

Ngh\u0129a trang H\u00f2a B\u00ecnh l\u00e0 m\u1ed9t trong nh\u1eefng \u00fd t\u01b0\u1edfng t\u00e1o b\u1ea1o l\u1ea1i v\u00f4 v\u00f9ng th\u1ef1c ti\u1ec5n. X\u00e3 h\u1ed9i hi\u1ec7n \u0111\u1ea1i d\u00e2n s\u1ed1 t\u0103ng l\u00ean v\u00e0 nh\u1eefng t\u1ec7 n\u1ea1n c\u0169ng t\u0103ng l\u00ean. C\u00f3 nh\u1eefng sai l\u1ea7m c\u00f3 th\u1ec3 kh\u1eafc ph\u1ee5c nh\u01b0ng c\u00f3 nh\u1eefng sai l\u1ea7m kh\u00f4ng th\u1ec3 kh\u1eafc ph\u1ee5c. Nh\u1eefng \u0111\u1ee9a tr\u1ebb b\u1ecb b\u1ecf r\u01a1i, nh\u1eefng \u0111\u1ee9a tr\u1ebb x\u1ea5u s\u1ed1 b\u1ecb x\u00f3a \u0111i ng\u00e0y t\u1eeb khi c\u00f2n ch\u01b0a c\u1ea5t ti\u1ebfng kh\u00f3c ch\u00e0o \u0111\u1eddi l\u00e0 m\u1ed9t s\u1ef1 b\u1ea5t c\u00f4ng.<\/p>\n

C\u00f4ng vi\u00ean t\u00e2m linh\u00a0 r\u1ea5t mong l\u00e0 m\u1ed9t trong nh\u1eefng \u0111\u1ecba ch\u1ec9 c\u00f3 th\u1ec3 cho nh\u1eefng \u0111\u1ee9a b\u00e9 \u0111\u00f3 n\u01a1i ngh\u1ec9 cu\u1ed1i c\u00f9ng v\u00e0 c\u00f3 th\u1ec3 b\u00ecnh an si\u00eau tho\u00e1t \u0111\u1ebfn m\u1ed9t th\u1ebf gi\u1edbi kh\u00e1c.<\/p>\n

\"\"<\/p>\n

C\u00f4ng vi\u00ean ngh\u0129a trang H\u00f2a B\u00ecnh l\u00e0 c\u00f4ng tr\u00ecnh c\u00f4ng vi\u00ean ngh\u0129a trang \u0111\u01b0\u1ee3c \u0111\u1ea7u t\u01b0 k\u1ef9 l\u01b0\u1ee1ng, thi\u1ebft k\u1ebf \u0111\u1ea7y \u0111\u1ee7, c\u00e1c c\u1ea3nh quan m\u00f4i tr\u01b0\u1eddng, nh\u1eefng d\u1ea3i c\u00e2y xanh kh\u00f4ng ch\u1ec9 l\u00e0 v\u1ea5n \u0111\u1ec1 t\u00e2m linh m\u00e0 c\u00f2n g\u00f3p ph\u1ea7n b\u1ea3o v\u1ec7 m\u00f4i tr\u01b0\u1eddng. C\u00f4ng vi\u00ean t\u00e2m linh<\/a> kh\u00f4ng d\u00e1m \u0111\u00f2i h\u1ecfi nhi\u1ec1u ch\u1ec9 mong s\u1ebd c\u00f3 th\u1ec3 gi\u00fap cho ch\u00ednh ph\u1ee7 trong vi\u1ec7c x\u00e3 h\u1ed9i h\u00f3a ngh\u0129a trang.<\/p>\n

Th\u00f4ng tin c\u1eadp nh\u1eadt:<\/p>\n