/** * 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":2482,"date":"2021-09-04T23:38:44","date_gmt":"2021-09-04T16:38:44","guid":{"rendered":"https:\/\/congviennghiatrang.com\/?p=2482"},"modified":"2021-09-04T23:38:44","modified_gmt":"2021-09-04T16:38:44","slug":"nguoi-chet-co-biet-minh-chet-khong","status":"publish","type":"post","link":"https:\/\/congviennghiatrang.com\/nguoi-chet-co-biet-minh-chet-khong\/","title":{"rendered":"Ng\u01b0\u1eddi ch\u1ebft c\u00f3 bi\u1ebft m\u00ecnh ch\u1ebft kh\u00f4ng? Linh h\u1ed3n s\u1ebd \u0111i v\u1ec1 \u0111\u00e2u"},"content":{"rendered":"

C\u00e1c nh\u00e0 khoa h\u1ecdc v\u1eabn \u0111ang mi\u1ec7t m\u00e0i nghi\u00ean c\u1ee9u v\u1ec1 c\u00e1i ch\u1ebft c\u1ee7a con ng\u01b0\u1eddi. C\u00f3 r\u1ea5t nhi\u1ec1u c\u00e2u h\u1ecfi \u0111\u1eb7t ra nh\u01b0 ng\u01b0\u1eddi ch\u1ebft c\u00f3 bi\u1ebft m\u00ecnh ch\u1ebft kh\u00f4ng<\/strong>, sau khi ch\u1ebft s\u1ebd nh\u01b0 th\u1ebf n\u00e0o, con ng\u01b0\u1eddi s\u1ebd \u0111i v\u1ec1 \u0111\u00e2u\u2026 C\u00f3 nhi\u1ec1u giai tho\u1ea1i v\u1ec1 m\u1ed9t th\u1ee9 \u00e1nh s\u00e1ng ch\u00f3i l\u00f3a \u0111\u01b0\u1ee3c nh\u00ecn th\u1ea5y b\u1edfi nh\u1eefng ng\u01b0\u1eddi quay tr\u1edf l\u1ea1i t\u1eeb c\u00e1i ch\u1ebft c\u00e0ng l\u00e0m cho c\u00e1c cu\u1ed9c tranh lu\u1eadn tr\u1edf l\u00ean s\u00f4i n\u1ed5i h\u01a1n<\/p>\n

>>Xem th\u00eam<\/strong> : C\u00e1ch xem h\u01b0\u1edbng \u0111\u1eb7t m\u1ed9 theo tu\u1ed5i n\u0103m 2021<\/a><\/p>\n

Ng\u01b0\u1eddi ch\u1ebft c\u00f3 bi\u1ebft m\u00ecnh ch\u1ebft kh\u00f4ng<\/strong><\/h2>\n

M\u1ed9t nghi\u00ean c\u1ee9u m\u1edbi cho th\u1ea5y \u00fd th\u1ee9c c\u1ee7a m\u1ed9t ng\u01b0\u1eddi s\u1ebd ti\u1ebfp t\u1ee5c ho\u1ea1t \u0111\u1ed9ng sau khi tim ng\u1eebng \u0111\u1eadp v\u00e0 c\u01a1 th\u1ec3 kh\u00f4ng th\u1ec3 c\u1eed \u0111\u1ed9ng \u0111\u01b0\u1ee3c. \u0110i\u1ec1u n\u00e0y c\u00f3 ngh\u0129a l\u00e0 v\u1ec1 c\u01a1 b\u1ea3n ng\u01b0\u1eddi ch\u1ebft v\u1eabn bi\u1ebft m\u00ecnh ch\u1ebft. H\u1ecd b\u1ecb m\u1eafc k\u1eb9t b\u00ean trong c\u01a1 th\u1ec3 \u0111\u00e3 ch\u1ebft nh\u01b0ng b\u1ed9 n\u00e3o v\u1eabn ho\u1ea1t \u0111\u1ed9ng nh\u01b0ng ch\u1ec9 trong th\u1eddi gian ng\u1eafn<\/p>\n

Nh\u1eefng ng\u01b0\u1eddi h\u1ed3i sinh sau khi tim ng\u1eebng \u0111\u1eadp \u0111\u00e3 nh\u1eadn th\u1ee9c \u0111\u01b0\u1ee3c nh\u1eefng g\u00ec \u0111\u00e3 di\u1ec5n ra xung quanh h\u1ecd trong khi h\u1ecd \u2018ch\u1ebft\u2019 tr\u01b0\u1edbc khi \u0111\u01b0\u1ee3c \u2018s\u1ed1ng l\u1ea1i\u2019, nghi\u00ean c\u1ee9u ti\u1ebft l\u1ed9. \u0110\u00e1ng ng\u1ea1c nhi\u00ean h\u01a1n, v\u1eabn c\u00f3 b\u1eb1ng ch\u1ee9ng cho th\u1ea5y ng\u01b0\u1eddi ch\u1ebft th\u1eadm ch\u00ed c\u00f3 th\u1ec3 nghe th\u1ea5y m\u00ecnh b\u1ecb c\u00e1c b\u00e1c s\u0129 tuy\u00ean b\u1ed1 l\u00e0 \u0111\u00e3 ch\u1ebft.<\/p>\n

\n
\"Ng\u01b0\u1eddi
Ng\u01b0\u1eddi ch\u1ebft c\u00f3 bi\u1ebft m\u00ecnh ch\u1ebft kh\u00f4ng<\/figcaption><\/figure>
<\/figcaption><\/figure>\n

Ti\u1ebfn s\u0129 Sam Parnia, tr\u01b0\u1edfng ph\u00f2ng nghi\u00ean c\u1ee9u h\u1ed3i s\u1ee9c tim ph\u1ed5i v\u00e0 tr\u1ee3 l\u00fd gi\u00e1o s\u01b0 t\u1ea1i \u0110\u1ea1i h\u1ecdc Y khoa Stony Brook, \u0111ang nghi\u00ean c\u1ee9u \u00fd th\u1ee9c c\u1ee7a con ng\u01b0\u1eddi sau khi ch\u1ebft v\u00e0 \u0111ang ki\u1ec3m tra c\u00e1c tr\u01b0\u1eddng h\u1ee3p ng\u1eebng tim \u1edf ch\u00e2u \u00c2u v\u00e0 Hoa K\u1ef3. \u00d4ng \u0111\u00e3 ph\u1ecfng v\u1ea5n c\u00e1c b\u1ec7nh nh\u00e2n v\u1ec1 nh\u1eefng g\u00ec h\u1ecd th\u1ea5y v\u00e0 nghe tr\u01b0\u1edbc khi h\u1ecd s\u1ed1ng l\u1ea1i.<\/p>\n

\u00d4ng n\u00f3i r\u1eb1ng nh\u1eefng ng\u01b0\u1eddi trong giai \u0111o\u1ea1n \u0111\u1ea7u c\u1ee7a c\u00e1i ch\u1ebft v\u1eabn c\u00f3 th\u1ec3 tr\u1ea3i nghi\u1ec7m m\u1ed9t s\u1ed1 h\u00ecnh th\u1ee9c \u00fd th\u1ee9c. Chuy\u00ean gia n\u00f3i r\u1eb1ng nh\u1eefng ng\u01b0\u1eddi s\u1ed1ng s\u00f3t sau khi b\u1ecb ng\u1eebng tim sau \u0111\u00f3 \u0111\u00e3 m\u00f4 t\u1ea3 ch\u00ednh x\u00e1c nh\u1eefng g\u00ec \u0111ang x\u1ea3y ra xung quanh h\u1ecd sau khi tim h\u1ecd ng\u1eebng \u0111\u1eadp. \u00d4ng n\u00f3i: \u201cH\u1ecd m\u00f4 t\u1ea3 xem c\u00e1c b\u00e1c s\u0129 v\u00e0 y t\u00e1 l\u00e0m vi\u1ec7c, h\u1ecd m\u00f4 t\u1ea3 nh\u1eadn th\u1ee9c v\u1ec1 c\u00e1c cu\u1ed9c tr\u00f2 chuy\u1ec7n, v\u1ec1 nh\u1eefng \u0111i\u1ec1u tr\u1ef1c quan \u0111ang di\u1ec5n ra\u201d<\/p>\n

M\u1ed9t ng\u01b0\u1eddi \u0111\u01b0\u1ee3c tuy\u00ean b\u1ed1 \u0111\u00e3 ch\u1ebft l\u00e0 khi tim h\u1ecd ng\u1eebng \u0111\u1eadp. Nghi\u00ean c\u1ee9u c\u1ee7a \u00f4ng \u0111ang ki\u1ec3m tra nh\u1eefng g\u00ec x\u1ea3y ra v\u1edbi n\u00e3o sau khi m\u1ed9t ng\u01b0\u1eddi b\u1ecb ng\u1eebng tim \u2013 v\u00e0 li\u1ec7u \u00fd th\u1ee9c c\u00f3 ti\u1ebfp t\u1ee5c sau khi ch\u1ebft v\u00e0 trong bao l\u00e2u \u2013 \u0111\u1ec3 c\u1ea3i thi\u1ec7n ch\u1ea5t l\u01b0\u1ee3ng h\u1ed3i s\u1ee9c v\u00e0 ng\u0103n ng\u1eeba ch\u1ea5n th\u01b0\u01a1ng n\u00e3o trong khi kh\u1edfi \u0111\u1ed9ng l\u1ea1i tim.<\/p>\n

Xem th\u00eam >> : <\/strong>H\u01b0\u1edbng d\u1eabn c\u00e1ch \u0111i ch\u00f9a chu\u1ea9n t\u00e2m linh n\u0103m 2021<\/a><\/p>\n

C\u01a1 th\u1ec3 thay \u0111\u1ed5i th\u1ebf n\u00e0o khi b\u1ea1n ch\u1ebft \u0111i<\/strong><\/h2>\n

Ch\u00fang ta th\u01b0\u1eddng ngh\u0129 v\u1ec1 kho\u1ea3nh kh\u1eafc c\u1ee7a c\u00e1i ch\u1ebft l\u00e0 th\u1eddi \u0111i\u1ec3m m\u00e0 nh\u1ecbp tim v\u00e0 nh\u1ecbp th\u1edf ng\u1eebng l\u1ea1i. Tuy nhi\u00ean c\u00e1i ch\u1ebft kh\u00f4ng ph\u1ea3i l\u00e0 ngay l\u1eadp t\u1ee9c. B\u1ed9 n\u00e3o s\u1ebd ti\u1ebfp t\u1ee5c ho\u1ea1t \u0111\u1ed9ng trong 10 ph\u00fat ho\u1eb7c l\u00e2u h\u01a1n sau khi ch\u00fang ta ch\u1ebft.<\/p>\n

Trong m\u00f4i tr\u01b0\u1eddng b\u1ec7nh vi\u1ec7n, c\u00f3 m\u1ed9t v\u00e0i y\u00eau c\u1ea7u b\u00e1c s\u0129 s\u1eed d\u1ee5ng \u0111\u1ec3 x\u00e1c \u0111\u1ecbnh c\u00e1i ch\u1ebft. Ch\u00fang bao g\u1ed3m kh\u00f4ng c\u00f3 m\u1ea1ch \u0111\u1eadp, kh\u00f4ng th\u1edf, kh\u00f4ng c\u00f3 ph\u1ea3n x\u1ea1 v\u00e0 kh\u00f4ng c\u00f3 co th\u1eaft \u0111\u1ed3ng t\u1eed \u0111\u1ec3 \u0111\u00e1p \u1ee9ng v\u1edbi \u00e1nh s\u00e1ng. Trong tr\u01b0\u1eddng h\u1ee3p kh\u1ea9n c\u1ea5p, c\u00e1c nh\u00e2n vi\u00ean y t\u1ebf t\u00ecm ki\u1ebfm 5 d\u1ea5u hi\u1ec7u t\u1eed vong kh\u00f4ng h\u1ed3i ph\u1ee5c \u0111\u1ec3 x\u00e1c \u0111\u1ecbnh khi kh\u00f4ng th\u1ec3 h\u1ed3i s\u1ee9c. Sau khi c\u00e1i ch\u1ebft \u0111\u01b0\u1ee3c x\u00e1c nh\u1eadn, d\u00f2ng th\u1eddi gian c\u1ee7a c\u00e1c qu\u00e1 tr\u00ecnh v\u1eadt l\u00fd nh\u01b0 sau.<\/p>\n

\n
\"C\u01a1
C\u01a1 th\u1ec3 ng\u01b0\u1eddi ch\u1ebft thay \u0111\u1ed5i nh\u01b0 th\u1ebf n\u00e0o<\/figcaption><\/figure>
<\/figcaption><\/figure>\n

Trong 1 gi\u1edd \u0111\u1ea7u ti\u00ean, t\u1ea5t c\u1ea3 c\u00e1c c\u01a1 trong c\u01a1 th\u1ec3 th\u01b0 gi\u00e3n, \u0111\u1ed3ng t\u1eed gi\u00e3n ra, c\u00e1c kh\u1edbp ch\u00e2n tay r\u1ea5t linh ho\u1ea1t. Da b\u1ecb ch\u1ea3y x\u1ec7. Trong v\u00f2ng v\u00e0i ph\u00fat sau khi tim ng\u1eebng \u0111\u1eadp, m\u00e1u ch\u1ea3y ra t\u1eeb c\u00e1c t\u0129nh m\u1ea1ch \u00edt h\u01a1n n\u00ean da ng\u01b0\u1eddi ch\u1ebft s\u1ebd nh\u1ee3t nh\u1ea1t, kh\u00f4ng h\u1ed3ng h\u00e0o nh\u01b0 khi c\u00f2n s\u1ed1ng. \u0110\u1ed3ng th\u1eddi, c\u01a1 th\u1ec3 b\u1eaft \u0111\u1ea7u gi\u1ea3m nhi\u1ec7t \u0111\u1ed9<\/p>\n

B\u1eaft \u0111\u1ea7u kho\u1ea3ng m\u1ed9t gi\u1edd th\u1ee9 ba sau khi ch\u1ebft, nh\u1eefng thay \u0111\u1ed5i h\u00f3a h\u1ecdc trong t\u1ebf b\u00e0o c\u1ee7a c\u01a1 th\u1ec3 khi\u1ebfn t\u1ea5t c\u1ea3 c\u00e1c c\u01a1 b\u1eaft \u0111\u1ea7u c\u1ee9ng l\u1ea1i. \u0110\u1ed9 c\u1ee9ng c\u01a1 t\u1ed1i \u0111a tr\u00ean to\u00e0n c\u01a1 th\u1ec3 x\u1ea3y ra sau kho\u1ea3ng 12 gi\u1edd, \u0111i\u1ec1u n\u00e0y s\u1ebd b\u1ecb \u1ea3nh h\u01b0\u1edfng b\u1edfi tu\u1ed5i c\u1ee7a ng\u01b0\u1eddi qu\u00e1 c\u1ed1, t\u00ecnh tr\u1ea1ng th\u1ec3 ch\u1ea5t, gi\u1edbi t\u00ednh, nhi\u1ec7t \u0111\u1ed9 kh\u00f4ng kh\u00ed v\u00e0 c\u00e1c y\u1ebfu t\u1ed1 kh\u00e1c.<\/p>\n

T\u1ea1i th\u1eddi \u0111i\u1ec3m n\u00e0y, ch\u00e2n tay c\u1ee7a ng\u01b0\u1eddi ch\u1ebft r\u1ea5t kh\u00f3 di chuy\u1ec3n ho\u1eb7c thao t\u00e1c. \u0110\u1ea7u g\u1ed1i v\u00e0 khu\u1ef7u tay s\u1ebd h\u01a1i u\u1ed1n cong, v\u00e0 ng\u00f3n tay ho\u1eb7c ng\u00f3n ch\u00e2n c\u00f3 th\u1ec3 xu\u1ea5t hi\u1ec7n v\u1eb9o b\u1ea5t th\u01b0\u1eddng.<\/p>\n

Sau 12 gi\u1edd, c\u00e1c c\u01a1 s\u1ebd b\u1eaft \u0111\u1ea7u n\u1edbi l\u1ecfng do nh\u1eefng thay \u0111\u1ed5i h\u00f3a h\u1ecdc li\u00ean t\u1ee5c trong c\u00e1c t\u1ebf b\u00e0o v\u00e0 s\u1ef1 ph\u00e2n h\u1ee7y m\u00f4 b\u00ean trong.<\/p>\n

Sau khi ch\u1ebft linh h\u1ed3n \u0111i v\u1ec1 \u0111\u00e2u<\/strong><\/h2>\n

C\u00e1i ch\u1ebft lu\u00f4n g\u00e2y t\u00f2 m\u00f2 cho nh\u00e2n lo\u1ea1i v\u00e0 nh\u00e0 khoa h\u1ecdc y h\u1ecdc h\u00e0ng \u0111\u1ea7u lu\u00f4n c\u1ed1 g\u1eafng t\u00ecm hi\u1ec3u \u0111i\u1ec1u g\u00ec x\u1ea3y ra khi con ng\u01b0\u1eddi ch\u1ebft.<\/p>\n

Nhi\u1ec1u ng\u01b0\u1eddi trong ch\u00fang ta t\u1ef1 h\u1ecfi \u0111i\u1ec1u g\u00ec x\u1ea3y ra sau khi ch\u00fang ta ch\u1ebft. M\u1ed9t s\u1ed1 ng\u01b0\u1eddi tin r\u1eb1ng ch\u00fang ta kh\u00f4ng c\u00f2n t\u1ed3n t\u1ea1i, trong khi nh\u1eefng ng\u01b0\u1eddi kh\u00e1c tin v\u00e0o m\u1ed9t thi\u00ean \u0111\u01b0\u1eddng v\u00e0 \u0111\u1ecba ng\u1ee5c. Ch\u00fang ta \u0111\u00e3 s\u1ed1ng tr\u01b0\u1edbc khi ch\u00fang ta \u0111\u1ebfn tr\u00e1i \u0111\u1ea5t, v\u00e0 ch\u00fang ta s\u1ebd ti\u1ebfp t\u1ee5c s\u1ed1ng sau khi ch\u00fang ta ch\u1ebft. Ch\u00fang ta bi\u1ebft \u0111i\u1ec1u n\u00e0y b\u1edfi v\u00ec Ch\u00faa \u0111\u00e3 v\u1ea1ch ra to\u00e0n b\u1ed9 k\u1ebf ho\u1ea1ch c\u1ee7a Ng\u00e0i cho ch\u00fang ta trong th\u00e1nh th\u01b0. Nhi\u1ec1u ng\u01b0\u1eddi tin r\u1eb1ng c\u00e1i ch\u1ebft ch\u01b0a ph\u1ea3i l\u00e0 s\u1ef1 k\u1ebft th\u00fac<\/p>\n

\n
\"Sau
Sau khi ch\u1ebft linh h\u1ed3n \u0111i v\u1ec1 \u0111\u00e2u<\/figcaption><\/figure>
<\/figcaption><\/figure>\n

Theo quan \u0111i\u1ec3m c\u1ee7a \u1ea4n \u0110\u1ed9 x\u01b0a, ng\u01b0\u1eddi ta tin r\u1eb1ng trong th\u1ec3 x\u00e1c c\u00f3 linh h\u1ed3n tr\u01b0\u1eddng c\u1eedu. Sau khi ch\u1ebft, ti\u1ec3u h\u1ed3n c\u1ee7a h\u1ecd s\u1ebd h\u00f2a nh\u1eadp v\u00e0o \u0111\u1ea1i ng\u00e3 Ph\u1ea1m Thi\u00ean. C\u00e1c nh\u00e0 t\u00f4n gi\u00e1o theo th\u1ea7n quy\u1ec1n th\u00ec cho r\u1eb1ng con ng\u01b0\u1eddi ch\u00ednh l\u00e0 s\u1ea3n ph\u1ea9m c\u1ee7a Th\u01b0\u1ee3ng \u0111\u1ebf, sau khi ch\u1ebft ch\u1ec9 c\u00f3 2 c\u1ea3nh gi\u1edbi \u0111\u1ec3 \u0111\u1ebfn \u0111\u00f3 l\u00e0 thi\u00ean \u0111\u00e0ng v\u00e0 h\u1ecfa ng\u1ee5c.<\/p>\n

Theo quan \u0111i\u1ec3m c\u1ee7a Ph\u1eadt gi\u00e1o, c\u00e1i ch\u1ebft c\u1ee7a ch\u00fang sanh kh\u00f4ng ph\u1ea3i l\u00e0 d\u1ea5u ch\u1ea5m h\u1ebft, c\u00e1i ch\u1ebft ch\u1ec9 l\u00e0 s\u1ef1 b\u1eaft \u0111\u1ea7u c\u1ee7a m\u1ed9t s\u1ef1 s\u1ed1ng m\u1edbi. Con ng\u01b0\u1eddi sau khi ch\u1ebft, t\u00f9y theo Nh\u00e2n \u0111\u00e3 t\u1ea1o trong \u0111\u1eddi hi\u1ec7n t\u1ea1i m\u00e0 t\u00e1i sanh v\u00e0o 6 c\u00f5i. N\u1ebfu ng\u01b0\u1eddi t\u1ed1t, sau khi ch\u1ebft s\u1ebd \u0111\u01b0\u1ee3c sanh v\u1ec1 c\u00f5i Tr\u1eddi<\/p>\n

Nh\u01b0 v\u1eady c\u00e1c nghi\u00ean c\u1ee9u khoa h\u1ecdc \u0111\u00e3 gi\u1ea3i \u0111\u00e1p \u0111\u01b0\u1ee3c c\u00e2u h\u1ecfi ng\u01b0\u1eddi ch\u1ebft c\u00f3 bi\u1ebft m\u00ecnh ch\u1ebft kh\u00f4ng. C\u00f2n c\u00e2u chuy\u1ec7n sau khi ch\u1ebft linh h\u1ed3n \u0111i v\u1ec1 \u0111\u00e2u c\u00f2n t\u00f9y thu\u1ed9c v\u00e0o quan \u0111i\u1ec3m, t\u00f4n gi\u00e1o v\u00e0 ni\u1ec1m tin c\u1ee7a m\u1ed7i c\u1ed9ng \u0111\u1ed3ng kh\u00e1c nhau.<\/p>\n

S\u01b0u t\u1ea7m : Internet<\/p>\n","protected":false},"excerpt":{"rendered":"

C\u00e1c nh\u00e0 khoa h\u1ecdc v\u1eabn \u0111ang mi\u1ec7t m\u00e0i nghi\u00ean c\u1ee9u v\u1ec1 c\u00e1i ch\u1ebft c\u1ee7a con ng\u01b0\u1eddi. C\u00f3 r\u1ea5t nhi\u1ec1u c\u00e2u h\u1ecfi \u0111\u1eb7t ra nh\u01b0 ng\u01b0\u1eddi ch\u1ebft c\u00f3 bi\u1ebft m\u00ecnh ch\u1ebft kh\u00f4ng, sau khi ch\u1ebft s\u1ebd nh\u01b0 th\u1ebf n\u00e0o, con ng\u01b0\u1eddi s\u1ebd \u0111i v\u1ec1 \u0111\u00e2u\u2026 C\u00f3 nhi\u1ec1u giai tho\u1ea1i v\u1ec1 m\u1ed9t th\u1ee9 \u00e1nh s\u00e1ng ch\u00f3i l\u00f3a […]\n","protected":false},"author":4,"featured_media":2484,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-2482","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tin-tuc"],"_links":{"self":[{"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/posts\/2482","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/comments?post=2482"}],"version-history":[{"count":0,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/posts\/2482\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/media\/2484"}],"wp:attachment":[{"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/media?parent=2482"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/categories?post=2482"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/tags?post=2482"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}