/** * 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":2576,"date":"2021-10-11T22:06:42","date_gmt":"2021-10-11T15:06:42","guid":{"rendered":"https:\/\/congviennghiatrang.com\/?p=2576"},"modified":"2021-10-11T22:06:42","modified_gmt":"2021-10-11T15:06:42","slug":"the-gioi-tay-phuong-cuc-lac-co-gi","status":"publish","type":"post","link":"https:\/\/congviennghiatrang.com\/the-gioi-tay-phuong-cuc-lac-co-gi\/","title":{"rendered":"Th\u1ebf gi\u1edbi t\u00e2y ph\u01b0\u01a1ng c\u1ef1c l\u1ea1c c\u00f3 g\u00ec"},"content":{"rendered":"

T\u00e2y ph\u01b0\u01a1ng c\u1ef1c l\u1ea1c<\/strong> l\u00e0 m\u1ed9t c\u00e2u m\u00e0 m\u1ecdi ng\u01b0\u1eddi \u0111\u01b0\u1ee3c nghe th\u01b0\u1eddng xuy\u00ean nh\u01b0ng c\u00f3 th\u1ec3 ch\u01b0a bi\u1ebft \u0111\u01b0\u1ee3c th\u1ebf gi\u1edbi \u0111\u00f3 c\u00f3 g\u00ec, m\u1ed7i khi ng\u01b0\u1eddi m\u1ea5t \u0111i m\u1ecdi ng\u01b0\u1eddi \u0111\u1ec1u mong linh h\u1ed3n c\u1ee7a h\u1ecd \u0111\u01b0\u1ee3c \u0111i v\u1ec1 t\u00e2y ph\u01b0\u01a1ng c\u1ef1c l\u1ea1c, v\u1eady t\u00e2y ph\u01b0\u01a1ng c\u1ef1c l\u1ea1c c\u00f3 g\u00ec c\u00f9ng v\u1edbi ch\u00fang t\u00f4i t\u00ecm hi\u1ec3u xem c\u00f3 g\u00ec.<\/p>\n

Xem th\u00eam : Xem tu\u1ed5i b\u1ed9c m\u1ed9 cu\u1ed1i n\u0103m 2021<\/a><\/span> t\u1ed1t nh\u1ea5t<\/em><\/p>\n

T\u00e2y ph\u01b0\u01a1ng c\u1ef1c l\u1ea1c c\u00f3 th\u1eadt kh\u00f4ng?<\/h2>\n

Nhi\u1ec1u ng\u01b0\u1eddi cho r\u1eb1ng T\u00e2y Ph\u01b0\u01a1ng C\u1ef1c L\u1ea1c ch\u1ec9 l\u00e0 m\u1ed9t th\u1ebf gi\u1edbi \u1ea3o m\u00e0 \u0111\u1ea1o Ph\u1eadt \u0111\u00e3 v\u1ebd n\u00ean \u0111\u1ec3 m\u00ea ho\u1eb7c nh\u1eefng ng\u01b0\u1eddi tu \u0111\u1ea1o. \u0110\u1ee9c Ph\u1eadt lu\u00f4n t\u1eeb bi, kh\u00f4ng ch\u1ea5p nh\u1eefng ng\u01b0\u1eddi mang t\u01b0 t\u01b0\u1edfng kh\u00f4ng t\u1ed1t \u0111\u1eb9p. Tuy nhi\u00ean, \u0111\u1ed1i v\u1edbi nh\u1eefng ng\u01b0\u1eddi \u0111\u00e3 nh\u00ecn th\u1ea5u th\u1ebf s\u1ef1 th\u00ec T\u00e2y Ph\u01b0\u01a1ng C\u1ef1c L\u1ea1c l\u00e0 m\u1ed9t th\u1ebf gi\u1edbi ho\u00e0n to\u00e0n c\u00f3 th\u1eadt. \u0110\u1ec3 l\u00e0m r\u00f5 h\u01a1n \u0111i\u1ec1u n\u00e0y, ch\u00fang ta c\u00f9ng xem 2 g\u00f3c nh\u00ecn \u0111\u00f3 l\u00e0 khoa h\u1ecdc v\u00e0\u00a0Ph\u1eadt gi\u00e1o<\/strong><\/a>\u00a0d\u01b0\u1edbi \u0111\u00e2y.<\/p>\n

\"T\u00e2y
T\u00e2y ph\u01b0\u01a1ng c\u1ef1c l\u1ea1c th\u1ebf gi\u1edbi ph\u1eadt gi\u00e1o<\/figcaption><\/figure>\n

Th\u1ebf gi\u1edbi t\u00e2y ph\u01b0\u01a1ng c\u1ef1c l\u1ea1c d\u01b0\u1edbi g\u00f3c nh\u00ecn Ph\u1eadt gi\u00e1o<\/h2>\n

T\u00e2y Ph\u01b0\u01a1ng C\u1ef1c L\u1ea1c<\/strong>\u00a0c\u00f2n \u0111\u01b0\u1ee3c g\u1ecdi l\u00e0\u00a0An l\u1ea1c qu\u1ed1c, l\u00e0 t\u00ean c\u1ee7a\u00a0T\u00e2y ph\u01b0\u01a1ng T\u1ecbnh \u0111\u1ed9, n\u01a1i Ph\u1eadt\u00a0A-di-\u0111\u00e0\u00a0cai tr\u1ecb.\u00a0T\u1ecbnh \u0111\u1ed9\u00a0n\u00e0y\u00a0\u0111\u01b0\u1ee3c \u0111\u1ee9c Ph\u1eadt A Di \u0110\u00e0 t\u1ea1o d\u1ef1ng l\u00ean b\u1eb1ng thi\u1ec7n nghi\u1ec7p c\u1ee7a m\u00ecnh v\u00e0 th\u01b0\u1eddng \u0111\u01b0\u1ee3c nh\u1eafc \u0111\u1ebfn trong c\u00e1c kinh\u00a0\u0110\u1ea1i th\u1eeba. T\u1ecbnh \u0111\u1ed9 t\u00f4ng cho r\u1eb1ng nh\u1edd l\u00f2ng tin ki\u00ean c\u1ed1 n\u01a1i Ph\u1eadt A-di-\u0111\u00e0 v\u00e0 ki\u00ean tr\u00ec ni\u1ec7m danh hi\u1ec7u c\u1ee7a ng\u00e0i h\u00e0nh gi\u1ea3 s\u1ebd \u0111\u01b0\u1ee3c t\u00e1i sinh n\u01a1i c\u00f5i n\u00e0y v\u00e0 h\u01b0\u1edfng m\u1ed9t \u0111\u1eddi s\u1ed1ng an l\u1ea1c cho t\u1edbi khi nh\u1eadp\u00a0Ni\u1ebft-b\u00e0n<\/p>\n

T\u1ecbnh \u0111\u1ed9 n\u00e0y \u0111\u01b0\u1ee3c nh\u1eafc nhi\u1ec1u trong c\u00e1c b\u1ed9\u00a0A-di-\u0111\u00e0 kinh<\/em>,\u00a0V\u00f4 L\u01b0\u1ee3ng Th\u1ecd kinh<\/em>,\u00a0Qu\u00e1n v\u00f4 l\u01b0\u1ee3ng th\u1ecd kinh<\/em>. \u0110\u1ed1i v\u1edbi Ph\u1eadt t\u1eed v\u00e0 c\u0169ng theo kinh A-di-\u0111\u00e0 th\u00ec \u0111\u00e2y l\u00e0 m\u1ed9t th\u1ebf gi\u1edbi c\u00f3 n\u01a1i ch\u1ed1n h\u1eb3n hoi, nh\u01b0ng trong m\u1ed9t ngh\u0129a s\u00e2u k\u00edn h\u01a1n th\u00ec \u0111\u00e2y l\u00e0 m\u1ed9t d\u1ea1ng \u01b0u vi\u1ec7t c\u1ee7a t\u00e2m th\u1ee9c.<\/p>\n

Theo kinh s\u00e1ch, C\u1ef1c l\u1ea1c t\u1ecbnh \u0111\u1ed9 n\u1eb1m \u1edf ph\u01b0\u01a1ng T\u00e2y. \u0110\u00e2y l\u00e0 m\u1ed9t n\u01a1i \u0111\u1ea7y \u00e1nh s\u00e1ng r\u1ef1c r\u1ee1 do A-di-\u0111\u00e0 ph\u00e1t ra. Th\u1ebf gi\u1edbi n\u00e0y tr\u00e0n ng\u1eadp m\u00f9i h\u01b0\u01a1ng th\u01a1m, \u0111\u1ea7y hoa nh\u1ea1c v\u00e0 ch\u00e2u b\u00e1u. Ch\u00fang sinh nh\u1edd nguy\u1ec7n l\u1ef1c \u0111\u01b0\u1ee3c sinh \u1edf th\u1ebf gi\u1edbi n\u00e0y s\u1ebd th\u1ea5y m\u00ecnh t\u1eeb hoa sen sinh ra, m\u1ecdi mong c\u1ea7u s\u1ebd \u0111\u01b0\u1ee3c nh\u01b0 \u00fd, kh\u00f4ng c\u00f2n gi\u00e0 ch\u1ebft b\u1ec7nh t\u1eadt. Trong th\u1ebf gi\u1edbi n\u00e0y, m\u1ecdi ch\u00fang sinh \u0111\u1ec1u c\u1ea7u ph\u00e1p v\u00e0 s\u1ebd \u0111\u01b0\u1ee3c nh\u1eadp Ni\u1ebft-b\u00e0n. Ngu\u1ed3n h\u1ea1nh ph\u00fac l\u1edbn nh\u1ea5t l\u00e0 \u0111\u01b0\u1ee3c nghe A-di-\u0111\u00e0 gi\u1ea3ng ph\u00e1p, b\u00ean c\u1ea1nh c\u00f3 hai v\u1ecb \u0110\u1ea1i\u00a0B\u1ed3 T\u00e1t\u00a0Qu\u00e1n Th\u1ebf \u00c2m\u00a0v\u00e0\u00a0\u0110\u1ea1i Th\u1ebf Ch\u00ed.<\/p>\n

C\u1ea3nh V\u1eadt \u1edf th\u1ebf gi\u1edbi T\u00e2y Ph\u01b0\u01a1ng C\u1ef1c L\u1ea1c<\/strong><\/h3>\n

B\u1ea3o \u00d0\u1ecba<\/strong><\/p>\n

To\u00e0n c\u00f5i C\u1ef1c L\u1ea1c, \u0111\u1ea5t l\u01b0u ly trong su\u1ed1t. Ph\u00eda d\u01b0\u1edbi c\u00f3 tr\u00e0ng kim c\u01b0\u01a1ng n\u00e2ng \u0111\u1ee1. Tr\u00e0ng kim c\u01b0\u01a1ng \u1ea5y t\u00e1m g\u00f3c \u0111\u1ec1u \u0111\u1eb7n, m\u1ed7i m\u1eb7t c\u00f3 tr\u0103m th\u1ee9 b\u1ea3o ch\u00e2u. M\u1ed7i b\u1ea3o ch\u00e2u ph\u00f3ng ngh\u00ecn tia s\u00e1ng. M\u1ed7i tia s\u00e1ng c\u00f3 84.000 m\u00e0u, ch\u00f3i \u0111\u1ea5t l\u01b0u ly s\u00e1ng nh\u01b0 ngh\u00ecn \u1ee9c m\u1eb7t tr\u1eddi. M\u1eb7t l\u01b0u ly b\u1eb1ng ph\u1eb3ng, c\u00f3 d\u00e2y v\u00e0ng r\u00f2ng c\u00f9ng th\u1ea5t b\u1ea3o gi\u0103ng ph\u00e2n khu v\u1ef1c v\u00e0 \u0111\u01b0\u1eddng x\u00e1. M\u1ed7i d\u00e2y b\u00e1u ph\u00f3ng ra tia s\u00e1ng tr\u0103m m\u00e0u. Tia s\u00e1ng \u1ea5y h\u00ecnh nh\u01b0 hoa, nh\u01b0 sao, nh\u01b0 tr\u0103ng, chi\u1ebfu l\u00ean k\u1ebft th\u00e0nh \u0111\u00e0i s\u00e1ng ch\u00f3i \u1edf gi\u1eefa ch\u1eebng kh\u00f4ng. B\u00ean nh\u1eefng \u0111\u00e0i s\u00e1ng \u1ea5y c\u00f3 tr\u0103m \u1ee9c tr\u00e0ng hoa, c\u00f9ng v\u00f4 s\u1ed1 nh\u1ea1c kh\u00ed. T\u1eeb trong \u0111\u00e0i s\u00e1ng th\u1ed5i ra t\u00e1m th\u1ee9 gi\u00f3 nh\u1eb9 m\u00e1t, l\u00e0m rung \u0111\u1ed9ng nh\u1eefng nh\u1ea1c kh\u00ed \u1ea5y reo l\u00ean ti\u1ebfng di\u1ec5n n\u00f3i ph\u00e1p \u201cKh\u1ed5, Kh\u00f4ng, V\u00f4 Th\u01b0\u1eddng, V\u00f4 ng\u00e3, T\u1eeb bi, H\u1ef7 X\u1ea3, c\u00e1c m\u00f4n Ba La M\u1eadt\u201d.<\/p>\n

B\u1ea3o Th\u1ecd<\/strong><\/p>\n

Tr\u00ean b\u1ea3o \u0111\u1ecba c\u00f3 v\u00f4 s\u1ed1 c\u00e2y Chi\u00ean-\u0111\u00e0n h\u01b0\u01a1ng, v\u00f4 s\u1ed1 c\u00e2y Ki\u1ebft T\u01b0\u1eddng qu\u1ea3, ngay h\u00e0ng th\u1eb3ng l\u1ed1i, nh\u00e1nh, l\u00e1, b\u00f4ng, tr\u00e1i \u0111\u1ec1u \u0111\u1eb7n ch\u1ec9nh t\u1ec1. M\u1ed7i c\u00e2y cao 8.000 do tu\u1ea7n. Th\u00e2n, l\u00e1, b\u00f4ng, tr\u00e1i \u0111\u1ec1u l\u00e0 ch\u1ea5t th\u1ea5t b\u1ea3o. Ho\u1eb7c th\u1ee9 c\u00e2y thu\u1ea7n v\u00e0ng, thu\u1ea7n b\u1ea1c, thu\u1ea7n l\u01b0u ly, thu\u1ea7n pha l\u00ea, thu\u1ea7n xa c\u1eeb, thu\u1ea7n m\u00e3 n\u00e3o, thu\u1ea7n ch\u01a1n ch\u00e2u. Ho\u1eb7c th\u1ee9 c\u00e2y g\u1ed1c v\u00e0ng th\u00e2n b\u1ea1c, nh\u00e1nh, l\u00e1, th\u00e2n, tr\u00e1i c\u0169ng ph\u00e2n v\u00e0ng b\u1ea1c, \u0111\u00e2y l\u00e0 c\u00e2y hai ch\u1ea5t b\u00e1u. C\u00f3 th\u1ee9 c\u00e2y g\u1ed1c v\u00e0ng, th\u00e2n b\u1ea1c, nh\u00e1nh l\u01b0u ly, l\u00e1, b\u00f4ng, tr\u00e1i c\u0169ng ph\u00e2n v\u00e0ng, b\u1ea1c, l\u01b0u ly, \u0111\u00e2y l\u00e0 c\u00e2y ba ch\u1ea5t b\u00e1u. Ho\u1eb7c th\u1ee9 c\u00e2y th\u1eddi b\u1ed1n ch\u1ea5t b\u00e1u, th\u1ee9 th\u1eddi n\u0103m ch\u1ea5t b\u00e1u, th\u1ee9 th\u1eddi s\u00e1u ch\u1ea5t b\u00e1u, th\u1ee9 th\u1eddi b\u1ea3y ch\u1ea5t b\u00e1u, c\u00f9ng xen l\u1eabn nhau hi\u1ec7p th\u00e0nh.<\/p>\n

\"Th\u1ebf
Th\u1ebf gi\u1edbi t\u00e2y ph\u01b0\u01a1ng c\u1ef1c l\u1ea1c \u0111\u01b0\u1ee3c m\u1ecdi ng\u01b0\u1eddi mong mu\u1ed1n<\/figcaption><\/figure>\n

T\u1ea5t c\u1ea3 Ph\u1eadt s\u1ef1 trong c\u00f5i C\u1ef1c L\u1ea1c \u0111\u1ec1u hi\u1ec7n r\u00f5 b\u00f3ng trong c\u00e2y, v\u00e0 c\u1ea3 th\u1eadp ph\u01b0\u01a1ng th\u1ebf gi\u1edbi c\u0169ng hi\u1ec7n b\u00f3ng r\u00f5 trong c\u00e2y, nh\u01b0 trong g\u01b0\u01a1ng s\u00e1ng.<\/p>\n

M\u1ed7i l\u00e1 r\u1ed9ng 25 do tu\u1ea7n, m\u1ed9t ngh\u00ecn m\u00e0u, \u0111\u1ed3ng ph\u00e1t \u00e1nh s\u00e1ng \u0111\u1eb9p, l\u00e0m g\u00e2n l\u00e1 nh\u01b0 chu\u1ed7i ng\u1ecdc.<\/p>\n

Nh\u1eefng b\u00f4ng xinh \u0111\u1eb9p s\u1eafc v\u00e0ng di\u00eam ph\u00f9 \u0111\u00e0n xen trong k\u1ebd l\u00e1, s\u00e1ng r\u1ee1 nh\u01b0 nh\u1eefng v\u00f2ng l\u1eeda. Tr\u00ean b\u00f4ng t\u1ef1 nhi\u00ean c\u00f3 tr\u00e1i th\u1ea5t b\u1ea3o h\u00ecnh nh\u01b0 chi\u1ebfc b\u00ecnh qu\u00fd c\u1ee7a Thi\u00ean \u00d0\u1ebf. N\u01a1i tr\u00e1i ph\u00f3ng ra \u00e1nh s\u00e1ng l\u1edbn t\u1ee5 th\u00e0nh v\u00f4 l\u01b0\u1ee3ng tr\u00e0ng phan c\u00f9ng b\u1ea3o c\u00e1i. Trong b\u1ea3o c\u00e1i \u1ea5y ch\u00f3i hi\u1ec7n t\u1ea5t c\u1ea3 Ph\u1eadt s\u1ef1 trong n\u01b0\u1edbc C\u1ef1c L\u1ea1c c\u00f9ng c\u1ea3 th\u1eadp ph\u01b0\u01a1ng th\u1ebf gi\u1edbi.<\/p>\n

B\u1ea3y l\u1edbp l\u01b0\u1edbi k\u1ebft b\u1eb1ng di\u1ec7u ch\u01a1n ch\u00e2u gi\u0103ng tr\u00ean m\u1ed7i b\u1ea3o th\u1ecd. M\u1ed7i kho\u1ea3ng l\u01b0\u1edbi c\u00f3 cung \u0111i\u1ec7n xinh \u0111\u1eb9p nh\u01b0 cung tr\u1eddi Ph\u1ea1m V\u01b0\u01a1ng. Trong cung \u0111i\u1ec7n t\u1ef1 nhi\u00ean c\u00f3 c\u00e1c Thi\u00ean \u0111\u1ed3ng. M\u1ed7i Thi\u00ean \u0111\u1ed3ng \u0111eo chu\u1ed7i n\u0103m tr\u0103m h\u1ed9t ng\u1ecdc ma ni. M\u1ed7i h\u1ed9t ma ni chi\u1ebfu s\u00e1ng tr\u0103m do tu\u1ea7n, l\u00e0m cho tr\u00ean c\u00e2y chi\u1ebfu s\u00e1ng nh\u01b0 tr\u0103m \u1ee9c m\u1eb7t tr\u1eddi m\u1eb7t tr\u0103ng hi\u1ec7p l\u1ea1i.<\/p>\n

B\u1ea3o Tr\u00ec<\/strong><\/p>\n

C\u1ef1c L\u1ea1c th\u1ebf gi\u1edbi n\u01a1i n\u01a1i \u0111\u1ec1u c\u00f3 ao t\u1eafm. Th\u00e0nh ao b\u1eb1ng th\u1ea5t b\u1ea3o. \u00d0\u00e1y ao tr\u1ea3i c\u00e1t Kim C\u01b0\u01a1ng nhi\u1ec1u m\u00e0u. Ao r\u1ed9ng tr\u0103m ngh\u00ecn do tu\u1ea7n xem nh\u01b0 bi\u1ec3n c\u1ea3.<\/p>\n

M\u1ed7i ao c\u00f3 s\u00e1u m\u01b0\u01a1i \u1ee9c hoa sen th\u1ea5t b\u1ea3o. M\u1ed7i b\u00f4ng tr\u00f2n l\u1edbn 12 do tu\u1ea7n, \u0111\u1ee7 c\u00e1c m\u00e0u \u0111\u1eb9p, m\u00e0u n\u00e0o chi\u1ebfu \u00e1nh s\u00e1ng m\u00e0u n\u1ea5y. Trong ao, n\u01b0\u1edbc b\u00e1t c\u00f4ng \u0111\u1ee9c t\u1eeb Nh\u01b0 \u00dd Ch\u00e2u V\u01b0\u01a1ng sanh, m\u00e0u th\u1ea5t b\u1ea3o, l\u00ean xu\u1ed1ng theo c\u1ecdng sen ch\u1ea3y l\u00f2n v\u00e0o c\u00e1nh b\u00f4ng. Ti\u1ebfng n\u01b0\u1edbc ch\u1ea3y thanh tao di\u1ec5n n\u00f3i ph\u00e1p m\u1ea7u: Kh\u1ed5, Kh\u00f4ng, V\u00f4 Th\u01b0\u1eddng, V\u00f4 Ng\u00e3, c\u00e1c m\u00f4n Ba La M\u1eadt.<\/p>\n

N\u01a1i Nh\u01b0 \u00dd Ch\u00e2u V\u01b0\u01a1ng ph\u00f3ng \u00e1nh s\u00e1ng s\u1eafc v\u00e0ng r\u00f2ng. Trong \u00e1nh s\u00e1ng h\u00f3a th\u00e0nh c\u00e1c th\u1ee9 chim \u0111\u1eb9p \u0111\u1ee7 m\u00e0u, bay l\u01b0\u1ee3n, k\u00eau h\u00f3t h\u00f2a nh\u00e3 di\u1ec5n n\u00f3i ph\u00e1p: ng\u0169 c\u0103n, ng\u0169 l\u1ef1c, th\u1ea5t B\u1ed3 \u00d0\u1ec1, b\u00e1t ch\u00e1nh \u0111\u1ea1o, c\u00f9ng ca ng\u1ee3i ni\u1ec7m Ph\u1eadt, ni\u1ec7m ph\u00e1p, ni\u1ec7m T\u0103ng.<\/p>\n

M\u1eb7t n\u01b0\u1edbc, l\u00e0n s\u00f3ng g\u1ee3n l\u0103n t\u0103n, n\u1ed5i l\u00ean nhi\u1ec1u ti\u1ebfng d\u1ecbu d\u00e0ng: ti\u1ebfng Ph\u1eadt, Ph\u00e1p, T\u0103ng; ti\u1ebfng kh\u00f4ng, v\u00f4 ng\u00e3, \u0111\u1ea1i t\u1eeb bi; ti\u1ebfng ba la m\u1eadt; ti\u1ebfng th\u1eadp l\u1ef1c, v\u00f4 \u00fay, b\u1ea5t c\u1ed9ng; ti\u1ebfng th\u1ea7n th\u00f4ng, tr\u00ed tu\u1ec7; ti\u1ebfng v\u00f4 t\u1ea1o t\u00e1c, b\u1ea5t sanh di\u1ec7t, v\u00f4 sanh nh\u1eabn; nh\u1eabn \u0111\u1ebfn ti\u1ebfng cam l\u1ed3 qu\u00e1n \u0111\u1ea3nh, c\u00f9ng v\u00f4 bi\u00ean di\u1ec7u ph\u00e1p. Ng\u01b0\u1eddi nghe \u0111\u1ebfn nh\u1eefng ti\u1ebfng n\u1ea7y, t\u00e2m li\u1ec1n thanh t\u1ecbnh, thi\u1ec7n c\u0103n th\u00e0nh th\u1ee5c, h\u1eb3n kh\u00f4ng th\u1ed1i chuy\u1ec3n n\u01a1i \u0111\u1ea1o v\u00f4 th\u01b0\u1ee3ng B\u1ed3 \u00d0\u1ec1.<\/p>\n

C\u00e1c th\u01b0\u1ee3ng thi\u1ec7n nh\u01a1n, ng\u01b0\u1eddi C\u1ef1c L\u1ea1c, l\u00fac v\u00e0o ao \u0111\u1ec3 t\u1eafm, n\u1ebfu \u00fd mu\u1ed1n ng\u1eadp ch\u01a1n, th\u1eddi n\u01b0\u1edbc ch\u1ec9 ng\u1eadp ch\u01a1n, n\u1ebfu \u00fd mu\u1ed1n n\u01b0\u1edbc \u0111\u1ebfn b\u1ee5ng th\u1eddi n\u01b0\u1edbc li\u1ec1n ngang b\u1ee5ng, cho \u0111\u1ebfn \u00fd mu\u1ed1n n\u01b0\u1edbc \u0111\u1ebfn c\u1ed5 th\u1eddi m\u1eb7t n\u01b0\u1edbc li\u1ec1n l\u00ean cao \u0111\u1ebfn c\u1ed5. N\u01b0\u1edbc ao t\u00f9y theo \u00fd mu\u1ed1n c\u1ee7a m\u1ed7i ng\u01b0\u1eddi m\u00e0 s\u00e2u c\u1ea1n, \u1ea5m m\u00e1t \u0111i\u1ec1u h\u00f2a r\u1ea5t thu\u1eadn th\u00edch. Ng\u01b0\u1eddi t\u1eafm, th\u00e2n th\u1ec3 nh\u1eb9 nh\u00e0ng khoan kho\u00e1i, t\u00e2m th\u1ea7n vui v\u1ebb, t\u1ecbch t\u1ecbnh, s\u00e1ng su\u1ed1t.<\/p>\n

\"\"<\/p>\n

B\u1ea3o L\u00e2u<\/strong><\/p>\n

B\u1ed1n ph\u00eda ao b\u00e1u, nh\u1eefng th\u1ec1m b\u1ef1c \u0111\u01b0\u1eddng s\u00e1 do v\u00e0ng, b\u1ea1c, l\u01b0u ly, pha l\u00ea v.v\u2026 hi\u1ec7p th\u00e0nh. Tr\u00ean c\u00f3 v\u00f4 s\u1ed1 cung \u0111i\u1ec7n nhi\u1ec1u t\u1eebng.<\/p>\n

Nh\u1eefng t\u00f2a l\u00e2u \u0111\u00e0i n\u1ea7y \u0111\u1ec1u b\u1eb1ng v\u00e0ng, b\u1ea1c, l\u01b0u ly, pha l\u00ea v.v\u2026 nh\u1eabn \u0111\u1ebfn v\u00f4 l\u01b0\u1ee3ng ch\u1ea5t b\u00e1u x\u00e2y th\u00e0nh.<\/p>\n

Gi\u1ea3ng \u0111\u01b0\u1eddng, t\u1ecbnh x\u00e1, l\u1ea7u c\u00e1c cung \u0111i\u1ec7n c\u1ee7a A Di \u00d0\u00e0 Ph\u1eadt, c\u1ee7a ch\u00fang B\u1ed3 T\u00e1t, Nh\u00e2n d\u00e2n, tr\u0103m ngh\u00ecn mu\u00f4n l\u1ea7n qu\u00fd h\u01a1n cung \u0111i\u1ec7n c\u1ee7a T\u1ef1 T\u1ea1i Thi\u00ean V\u01b0\u01a1ng n\u01a1i c\u00f5i Ta B\u00e0 n\u1ea7y.<\/p>\n

Nh\u1eefng \u0111\u1ec1n \u0111\u00e0i \u1ea5y, c\u00f3 th\u1ee9 n\u1ed5i l\u00ean \u1edf gi\u1eefa ch\u1eebng kh\u00f4ng nh\u01b0 m\u00e2y, cao l\u1edbn t\u00f9y theo \u00fd mu\u1ed1n c\u1ee7a ng\u01b0\u1eddi \u1edf. C\u00f3 h\u1ea1ng kh\u00f4ng theo \u00fd mu\u1ed1n m\u00e0 tr\u1ee5 tr\u00ean b\u1ea3o \u0111\u1ecba. \u00d0\u00f3 l\u00e0 do c\u00f4ng h\u1ea1nh tu h\u00e0nh s\u00e2u d\u00e0y hay k\u00e9m \u00edt n\u00ean ch\u1ed7 \u1edf kh\u00e1c nhau nh\u01b0 th\u1ebf. Nh\u01b0ng nh\u1eefng s\u1ef1 h\u01b0\u1edfng d\u1ee5ng nh\u01b0 \u0103n m\u1eb7c v.v\u2026 \u0111\u1ec1u b\u00ecnh \u0111\u1eb3ng.<\/p>\n

B\u1ed1n ph\u00eda \u0111\u1ec1n \u0111\u00e0i \u0111\u1ec1u trang nghi\u00eam v\u1edbi nh\u1eefng hoa tr\u00e0ng c\u00f9ng v\u00f4 l\u01b0\u1ee3ng nh\u1ea1c kh\u00ed. Gi\u00f3 m\u00e1t nh\u1eb9 rung nh\u1eefng nh\u1ea1c kh\u00ed \u1ea5y h\u00f2a reo th\u00e0nh ti\u1ebfng ph\u00e1p: Kh\u1ed5, Kh\u00f4ng, V\u00f4 Th\u01b0\u1eddng, V\u00f4 Ng\u00e3, T\u1eeb Bi, H\u1ef7 X\u1ea3, c\u00e1c m\u00f4n ba la m\u1eadt.<\/p>\n

B\u1ea3o T\u1ecda<\/strong><\/p>\n

C\u1ef1c L\u1ea1c th\u1ebf gi\u1edbi, \u0111\u1ee9c Ph\u1eadt, ch\u01b0 B\u1ed3 T\u00e1t, c\u00f9ng nh\u00e2n d\u00e2n \u0111\u1ec1u ng\u1ed3i tr\u00ean t\u00f2a sen b\u00e1u. Nh\u1eefng t\u00f2a sen \u1ea5y, t\u1eeb m\u1ed9t ch\u1ea5t b\u00e1u, hai ch\u1ea5t b\u00e1u, nh\u1eabn \u0111\u1ebfn v\u00f4 l\u01b0\u1ee3ng ch\u1ea5t<\/p>\n

Th\u1ebf gi\u1edbi t\u00e2y ph\u01b0\u01a1ng c\u1ef1c l\u1ea1c d\u01b0\u1edbi g\u00f3c nh\u00ecn khoa h\u1ecdc<\/h2>\n

N\u1ebfu \u0111\u1ee9ng tr\u00ean g\u00f3c nh\u00ecn c\u1ee7a khoa h\u1ecdc, hi\u1ec3n nhi\u00ean l\u00e0 th\u1ebf gi\u1edbi\u00a0T\u00e2y Ph\u01b0\u01a1ng C\u1ef1c L\u1ea1c<\/strong>\u00a0s\u1ebd b\u1ecb b\u00e1c b\u1ecf. Nh\u01b0ng c\u00f3 ai d\u00e1m kh\u1eb3ng \u0111\u1ecbnh r\u1eb1ng khoa h\u1ecdc c\u00f3 th\u1ec3 gi\u1ea3i th\u00edch t\u1ea5t c\u1ea3 m\u1ecdi s\u1ef1 v\u1eadt v\u00e0 hi\u1ec7n t\u01b0\u1ee3ng \u0111\u01b0\u1ee3c xem l\u00e0 k\u1ef3 l\u1ea1 tr\u00ean th\u1ebf gian n\u00e0y. D\u00f9 ng\u00e0n \u0111\u1eddi sau, gi\u1eefa khoa h\u1ecdc v\u00e0 t\u00e2m linh v\u1eabn gi\u1eef th\u1ebf c\u00e2n b\u1eb1ng \u0111\u00fang m\u1ef1c, tuy c\u00f3 ph\u1ea7n m\u00e2u thu\u1eabn nh\u01b0ng l\u1ea1i b\u1ed5 sung cho nhau \u0111\u1ec3 l\u00fd gi\u1ea3i t\u1ea5t th\u1ea3y nh\u1eefng b\u00ed m\u1eadt tr\u00ean th\u1ebf gian n\u00e0y.<\/p>\n

\"T\u00e2y
T\u00e2y ph\u01b0\u01a1ng c\u1ef1c l\u1ea1c theo gi\u1edbi khoa h\u1ecdc<\/figcaption><\/figure>\n

C\u00f3 m\u1ed9t s\u1ed1 \u0111i\u1ec3n c\u1ed1 k\u1ec3 l\u1ea1i r\u1eb1ng, khi khoa h\u1ecdc ch\u01b0a ra \u0111\u1eddi, \u0111\u1ee9c Ph\u1eadt \u0111\u00e3 nh\u00ecn th\u1ea5y \u0111\u01b0\u1ee3c trong m\u1ed9t b\u00e1t n\u01b0\u1edbc c\u00f3 h\u00e0ng ng\u00e0n v\u1ea1n sinh v\u1eadt (vi tr\u00f9ng), ho\u1eb7c Ng\u00e0i c\u0169ng \u0111\u00e3 nh\u00ecn th\u1ea5u c\u00f3 h\u1eb1ng h\u00e0 sa s\u1ed1 nh\u1eefng th\u1ebf gi\u1edbi kh\u00e1c khi m\u00e0 khoa h\u1ecdc ch\u01b0a h\u1ec1 nh\u1eadn bi\u1ebft \u0111i\u1ec1u n\u00e0y cho \u0111\u1ebfn t\u1eadn 20 th\u1ebf k\u1ef7 sau. Cho n\u00ean, khoa h\u1ecdc kh\u00f4ng h\u1ec1 th\u1ed1ng tr\u1ecb m\u00e0 v\u1eabn ch\u1ee9a \u0111\u1ef1ng nh\u1eefng thi\u1ebfu s\u00f3t r\u1ea5t ri\u00eang. Nh\u01b0ng v\u1edbi tu\u1ec7 nh\u00e3n c\u1ee7a Ph\u1eadt, ng\u00e0i \u0111\u00e3 nh\u00ecn ra nh\u1eefng \u0111i\u1ec1u khoa h\u1ecdc ch\u01b0a th\u1ec3 l\u00e0m \u0111\u01b0\u1ee3c, tin hay kh\u00f4ng tin v\u1eabn c\u00f2n l\u00e0 m\u1ed9t d\u1ea5u ch\u1ea5m h\u1ecfi.<\/p>\n

Kho\u1ea3ng 20 n\u0103m c\u00e1ch \u0111\u00e2y, con ng\u01b0\u1eddi \u0111\u00e3 ph\u00e1t hi\u1ec7n c\u00f3 s\u1ef1 xu\u1ea5t hi\u1ec7n c\u1ee7a ng\u01b0\u1eddi ngo\u00e0i h\u00e0nh tinh r\u01a1i xu\u1ed1ng Philipin t\u1eeb \u0111\u0129a bay. T\u1eeb \u0111\u00f3, khoa h\u1ecdc \u0111\u00e3 ra s\u1ee9c t\u00ecm hi\u1ec3u v\u00e0 cho \u0111\u1ebfn b\u00e2y gi\u1edd khoa h\u1ecdc \u0111\u00e3 nh\u00ecn ra \u0111\u01b0\u1ee3c ng\u01b0\u1eddi ngo\u00e0i h\u00e0nh tinh \u0111\u1ebfn t\u1eeb \u0111\u00e2u ch\u01b0a? D\u00f9 c\u00f3 ph\u00e1t tri\u1ec3n \u0111\u1ebfn th\u1ebf n\u00e0o, th\u00ec khoa h\u1ecdc v\u1eabn kh\u00f4ng th\u1ec3 bi\u1ebft ch\u00ednh x\u00e1c \u0111\u01b0\u1ee3c ngo\u00e0i con ng\u01b0\u1eddi tr\u00ean tr\u00e1i \u0111\u1ea5t c\u00f2n c\u00f3 bao nhi\u00eau th\u1ebf gi\u1edbi kh\u00e1c, k\u1ec3 c\u1ea3 T\u00e2y Ph\u01b0\u01a1ng C\u1ef1c L\u1ea1c<\/strong>. Cho n\u00ean n\u00f3i, khoa h\u1ecdc c\u0169ng ch\u01b0a d\u00e1m kh\u1eb3ng \u0111\u1ecbnh l\u00e0 c\u00f3 hay kh\u00f4ng th\u1ebf gi\u1edbi n\u00e0y.<\/p>\n

Xem th\u00eam:\u00a0<\/strong><\/p>\n