/** * 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":2239,"date":"2021-08-03T12:13:28","date_gmt":"2021-08-03T05:13:28","guid":{"rendered":"https:\/\/congviennghiatrang.com\/?p=2239"},"modified":"2021-08-30T18:03:57","modified_gmt":"2021-08-30T11:03:57","slug":"3-bai-van-khan-ngay-ram-thang-bay","status":"publish","type":"post","link":"https:\/\/congviennghiatrang.com\/3-bai-van-khan-ngay-ram-thang-bay\/","title":{"rendered":"#3 B\u00e0i v\u0103n kh\u1ea5n ng\u00e0y r\u1eb1m th\u00e1ng b\u1ea3y chu\u1ea9n t\u00e2m linh"},"content":{"rendered":"

R\u1eb1m th\u00e1ng B\u1ea3y theo t\u1eadp t\u1ee5c l\u00e0 ng\u00e0y l\u1ec5 c\u00fang b\u00e1i l\u1edbn<\/strong> t\u1ea1i Vi\u1ec7t Nam. Ng\u00e0y n\u00e0y l\u00e0 ng\u00e0y X\u00e1 t\u1ed9i vong nh\u00e2n c\u00f9ng v\u1edbi \u0111\u00f3 l\u00e0 L\u1ec5 Vu Lan b\u00e1o hi\u1ebfu<\/strong>. V\u00e0o ng\u00e0y 15\/7 \u00c2m L\u1ecbch, h\u1ea7u h\u1ebft c\u00e1c gia \u0111\u00ecnh t\u1ea1i Vi\u1ec7t Nam \u0111\u1ec1u c\u00f3 m\u1ed9t m\u00e2m c\u01a1m th\u1ecbnh so\u1ea1n \u0111\u1ec3 c\u00fang t\u1ed5 ti\u00ean, nh\u1eefng ng\u01b0\u1eddi th\u00e2n \u0111\u00e3 khu\u1ea5t, \u0111\u1ed1t v\u00e0ng m\u00e3 g\u1eedi cho ng\u01b0\u1eddi th\u00e2n d\u01b0\u1edbi \u00e2m ti. Ngo\u00e0i ra, nhi\u1ec1u gia \u0111\u00ecnh c\u00f2n c\u00f3 th\u00eam ho\u1ea1t \u0111\u1ed9ng c\u00fang ch\u00fang sinh, \u0111\u1ec3 nh\u1eefng vong h\u1ed3n lang thang \u0111\u1ee1 \u0111\u00f3i kh\u00e1t, c\u00f3 c\u00e1i \u0103n c\u00e1i m\u1eb7c v\u00e0o ng\u00e0y n\u00e0y.<\/p>\n

\u0110\u00e2y c\u0169ng l\u00e0 ng\u00e0y c\u1eeda \u0111\u1ecba ng\u1ee5c m\u1edf, \u0111\u1ec3 vong h\u1ed3n ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t c\u00f3 th\u1ec3 tr\u1edf v\u1ec1 d\u01b0\u01a1ng gian, th\u0103m con ch\u00e1u. Trong ng\u00e0y r\u1eb1m th\u00e1ng b\u1ea3y, ngo\u00e0i vi\u1ec7c chu\u1ea9n b\u1ecb \u0111\u1ed3 c\u00fang, b\u1ea1n c\u0169ng n\u00ean tham kh\u1ea3o c\u00e1c\u00a0b\u00e0i v\u0103n kh\u1ea5n ng\u00e0y r\u1eb1m th\u00e1ng b\u1ea3y<\/strong><\/em>\u00a0chu\u1ea9n t\u00e2m linh, \u0111\u1ec3 vi\u1ec7c c\u00fang b\u00e1i \u0111\u01b0\u1ee3c \u0111\u00fang nghi th\u1ee9c nh\u1ea5t.<\/p>\n

\"#3<\/picture>
#3 B\u00e0i v\u0103n kh\u1ea5n ng\u00e0y r\u1eb1m th\u00e1ng b\u1ea3y chu\u1ea9n t\u00e2m linh<\/figcaption><\/figure>\n

B\u00e0i v\u0103n kh\u1ea5n ng\u00e0y r\u1eb1m th\u00e1ng b\u1ea3y chu\u1ea9n t\u00e2m linh s\u1ed1 1<\/b><\/h2>\n

Nam m\u00f4 A Di \u0110\u00e0 Ph\u1eadt (3 l\u1ea7n)<\/p>\n

Con l\u1ea1y ch\u00edn ph\u01b0\u01a1ng tr\u1eddi, m\u01b0\u1eddi ph\u01b0\u01a1ng ch\u01b0 ph\u1eadt, ch\u01b0 ph\u1eadt m\u01b0\u1eddi ph\u01b0\u01a1ng.<\/p>\n

Con k\u00ednh l\u1ea1y \u0110\u1ee9c \u0110\u1ecba T\u1ea1ng V\u01b0\u01a1ng B\u1ed3 T\u00e1t, \u0110\u1ee9c M\u1ee5c Ki\u1ec1n Li\u00ean T\u00f4n Gi\u1ea3.<\/p>\n

H\u00f4m nay l\u00e0 ng\u00e0y r\u1eb1m th\u00e1ng B\u1ea3y\u2026\u2026.<\/p>\n

T\u00edn ch\u1ee7 ch\u00fang con l\u00e0\u2026..<\/p>\n

Ng\u1ee5 t\u1ea1i\u2026\u2026.<\/p>\n

Th\u00e0nh t\u00e2m s\u1eeda bi\u1ec7n h\u01b0\u01a1ng hoa, l\u1ec5 v\u1eadt v\u00e0 c\u00e1c th\u1ee9 c\u00fang d\u00e2ng, b\u00e0y l\u00ean tr\u01b0\u1edbc \u00e1n.<\/p>\n

Ch\u00fang con th\u00e0nh t\u00e2m k\u00ednh m\u1edbi ng\u00e0i \u0110\u1ee9c \u0110\u1ecba T\u1ea1ng V\u01b0\u01a1ng B\u1ed3 T\u00e1t, \u0110\u1ee9c M\u1ee5c Ki\u1ec1n Li\u00ean T\u00f4n Gi\u1ea3.<\/p>\n

Ch\u00fang con th\u00e0nh t\u00e2m k\u00ednh m\u1eddi ng\u00e0i Kim Ni\u00ean \u0110\u01b0\u01a1ng cai Th\u00e1i Tu\u1ebf ch\u00ed \u0111\u1ee9c T\u00f4n th\u1ea7n, ng\u00e0i B\u1ea3n c\u1ea3nh Th\u00e0nh ho\u00e0ng Ch\u01b0 v\u1ecb \u0110\u1ea1i V\u01b0\u01a1ng, ng\u00e0i B\u1ea3n x\u1ee9 th\u1ea7n linh Th\u1ed5 \u0111\u1ecba, ng\u00e0i B\u1ea3n gia T\u00e1o qu\u00e2n v\u00e0 t\u1ea5t c\u1ea3 c\u00e1c v\u1ecb th\u1ea7n linh cai qu\u1ea3n trong khu v\u1ef1c n\u00e0y.<\/p>\n

C\u00fai xin c\u00e1c ng\u00e0i gi\u00e1ng l\u00e2m \u00e1n t\u1ecda, x\u00e9t soi ch\u1ee9ng gi\u00e1m.<\/p>\n

Nay g\u1eb7p ti\u1ebft Vu Lan, ng\u00e0y vong nh\u00e2n \u0111\u01b0\u1ee3c x\u00e1 t\u1ed9i. Ch\u00fang con \u0111\u1ed9i \u01a1n Tam B\u1ea3o, Ph\u1eadt tr\u1eddi ph\u00f9 h\u1ed9, th\u1ea7n linh c\u00e1c \u0111\u1ea5ng che ch\u1edf, c\u00f4ng \u0111\u1ee9c l\u1edbn lao nay kh\u00f4ng bi\u1ebft l\u1ea5y g\u00ec \u0111\u1ec1n b\u00e1o.<\/p>\n

Do v\u1eady k\u00ednh d\u00e2ng l\u1ec5 b\u1ea1c, gi\u00e3i t\u1ecf l\u00f2ng th\u00e0nh, nguy\u1ec7n mong n\u1ea1p th\u1ee5. Ph\u00f9 h\u1ed9 \u0111\u1ed9 tr\u00ec cho ch\u00fang con v\u00e0 c\u1ea3 gia \u0111\u00ecnh lu\u00f4n m\u1ea1nh kh\u1ecfe, gi\u00e0 tr\u1ebb b\u00ecnh an, m\u1ed9t l\u00f2ng h\u01b0\u1edbng v\u1ec1 ch\u00ednh \u0111\u1ea1o, l\u1ed9c t\u00e0i v\u01b0\u1ee3ng ti\u1ebfn, gia \u0111\u1ea1o h\u01b0ng long.<\/p>\n

Gi\u00e3i t\u1ea5m l\u00f2ng th\u00e0nh, c\u00fai xin ch\u1ee9ng gi\u00e1m!<\/p>\n

Nam m\u00f4 A Di \u0110\u00e0 Ph\u1eadt (3 l\u1ea7n).<\/p>\n

B\u00e0i v\u0103n kh\u1ea5n ng\u00e0y r\u1eb1m th\u00e1ng b\u1ea3y chu\u1ea9n t\u00e2m linh s\u1ed1 2<\/b><\/h2>\n
\"\"
Tham kh\u1ea3o b\u00e0i v\u0103n kh\u1ea5n ng\u00e0y r\u1eb1m th\u00e1ng b\u1ea3y chu\u1ea9n t\u00e2m linh<\/figcaption><\/figure>\n

Nam m\u00f4 A Di \u0110\u00e0 Ph\u1eadt (3 l\u1ea7n)<\/p>\n

Con l\u1ea1y ch\u00edn ph\u01b0\u01a1ng tr\u1eddi, m\u01b0\u1eddi ph\u01b0\u01a1ng ch\u01b0 ph\u1eadt, ch\u01b0 ph\u1eadt m\u01b0\u1eddi ph\u01b0\u01a1ng.<\/p>\n

Con k\u00ednh l\u1ea1y t\u1ed5 ti\u00ean n\u1ed9i ngo\u1ea1i v\u00e0 ch\u01b0 v\u1ecb H\u01b0\u01a1ng linh.<\/p>\n

T\u00edn ch\u1ee7 ch\u00fang con l\u00e0\u2026.<\/p>\n

Ng\u1ee5 t\u1ea1i\u2026.<\/p>\n

H\u00f4m nay l\u00e0 ng\u00e0y R\u1eb1m th\u00e1ng B\u1ea3y n\u0103m\u2026. Nh\u00e2n g\u1eb7p ti\u1ebft Vu Lan v\u00e0o d\u1ecbp Trung Nguy\u00ean, ch\u00fang con nh\u1edb \u0111\u1ebfn t\u1ed5 ti\u00ean \u00f4ng b\u00e0 cha m\u1eb9 \u0111\u00e3 sinh th\u00e0nh ra ch\u00fang con g\u00e2y d\u1ef1ng c\u01a1 nghi\u1ec7p, x\u00e2y \u0111\u1eafp n\u1ec1n nh\u00e2n, khi\u1ebfn nay ch\u00fang con \u0111\u01b0\u1ee3c h\u01b0\u1edfng \u00e2m \u0111\u1ee9c.<\/p>\n

Ch\u00fang con c\u1ea3m ngh\u0129 \u01a1n \u0111\u1ee9c c\u00f9 lao kh\u00f4n b\u00e1o, c\u1ea3m c\u00f4ng tr\u1eddi bi\u1ec3n kh\u00f3 \u0111\u1ec1n n\u00ean t\u00edn ch\u1ee7 con s\u1eeda sang l\u1ec5 v\u1eadt, h\u01b0\u01a1ng hoa, tr\u00e0 qu\u1ea3, kim ng\u00e2n v\u00e0ng b\u1ea1c, th\u1eafp n\u00e9n t\u00e2m h\u01b0\u01a1ng, th\u00e0nh k\u00ednh l\u00ean c\u00e1c c\u1ee5 Cao T\u1eb1ng T\u1ed5 Kh\u1ea3o, Cao t\u1eb1ng T\u1ed5 T\u1ef7, B\u00e1 Th\u00fac \u0110\u1ec7 Huynh, C\u00f4 Di, T\u1ef7 Mu\u1ed9i v\u00e0 t\u1ea5t c\u1ea3 c\u00e1c h\u01b0\u01a1ng h\u1ed3n trong n\u1ed9i t\u1ed9c, ngo\u1ea1i t\u1ed9c c\u1ee7a h\u1ecd\u2026.<\/p>\n

C\u00fai xin c\u00e1c v\u1ecb th\u01b0\u01a1ng x\u00f3t ch\u00e1u con, linh thi\u00eang hi\u1ec7n v\u1ec1, ch\u1ee9ng gi\u00e1m l\u00f2ng th\u00e0nh, th\u1ee5 h\u01b0\u1edfng l\u1ec5 v\u1eadt, ph\u00f9 h\u1ed9 cho con ch\u00e1u kh\u1ecfe m\u1ea1nh b\u00ecnh an, l\u1ed9c t\u00e0i v\u01b0\u1ee3ng ti\u1ebfn, v\u1ea1n s\u1ef1 t\u1ed1t l\u00e0nh, gia \u0111\u1ea1o h\u01b0ng long, h\u01b0\u1edbng v\u1ec1 ch\u00ednh gi\u00e1o.<\/p>\n

Ch\u00fang con l\u1ec5 b\u1ea1c t\u00e2m th\u00e0nh, tr\u01b0\u1edbc \u00e1n l\u1ec5, c\u00fai xin \u0111\u01b0\u1ee3c ph\u00f9 h\u1ed9 \u0111\u1ed9 tr\u00ec.<\/p>\n

Nam m\u00f4 A Di \u0110\u00e0 Ph\u1eadt ( 3 l\u1ea7n)<\/p>\n

B\u00e0i v\u0103n kh\u1ea5n ng\u00e0y r\u1eb1m th\u00e1ng b\u1ea3y chu\u1ea9n t\u00e2m linh s\u1ed1 3<\/b><\/h2>\n
\"\"<\/figure>\n

Nam m\u00f4 A Di \u0110\u00e0 Ph\u1eadt (3 l\u1ea7n).<\/p>\n

Con l\u1ea1y ch\u00edn ph\u01b0\u01a1ng tr\u1eddi, m\u01b0\u1eddi ph\u01b0\u01a1ng ch\u01b0 ph\u1eadt, ch\u01b0 ph\u1eadt m\u01b0\u1eddi ph\u01b0\u01a1ng.<\/p>\n

Con l\u1ea1y \u0110\u1ee9c Ph\u1eadt Di \u0110\u00e0<\/p>\n

Con l\u1ea1y B\u1ed3 T\u00e1t Quan \u00c2m.<\/p>\n

Con l\u1ea1y T\u00e1o Ph\u1ee7 Th\u1ea7n qu\u00e2n Chinh th\u1ea7n.<\/p>\n

Ti\u1ebft th\u00e1ng 7 s\u1eafp thu ph\u00e2n<\/p>\n

Ng\u00e0y R\u1eb1m x\u00e1 t\u1ed9i vong nh\u00e2n h\u1ea3i h\u00e0<\/p>\n

\u00c2m cung m\u1edf c\u1eeda ng\u1ee5c ra<\/p>\n

Vong linh kh\u00f4ng c\u1eeda kh\u00f4ng nh\u00e0<\/p>\n

\u0110\u1ea1i Th\u00e1nh Kh\u1ea3o gi\u00e1o \u2013 A Nan \u0110\u00e0 T\u00f4n gi\u1ea3<\/p>\n

Ti\u1ebfp ch\u00fang sinh kh\u00f4ng m\u1ea3, kh\u00f4ng m\u1ed3 b\u1ed1n ph\u01b0\u01a1ng<\/p>\n

G\u1ed1c c\u00e2y x\u00f3 ch\u1ee3 \u0111\u1ea7u \u0111\u01b0\u1eddng<\/p>\n

Kh\u00f4ng n\u01a1i n\u01b0\u01a1ng t\u1ef1a \u0111\u00eam ng\u00e0y lang thang<\/p>\n

Quanh n\u0103m \u0111\u00f3i r\u00e9t c\u01a1 h\u00e0n<\/p>\n

Kh\u00f4ng manh \u00e1o m\u1ecfng \u2013 che l\u00e0n heo may<\/p>\n

C\u00f4 h\u1ed3n n\u0103m b\u1eafc \u0111\u00f4ng t\u00e2y<\/p>\n

Tr\u1ebb gi\u00e0 trai g\u00e1i v\u1ec1 \u0111\u00e2y h\u1ee3p \u0111o\u00e0n<\/p>\n

Nay nghe t\u00edn ch\u1ee7 th\u1ec9nh m\u1eddi<\/p>\n

Lai l\u00e2m nh\u1eadn h\u01b0\u1edfng m\u1ecdi l\u1eddi tr\u01b0\u1edbc sau<\/p>\n

C\u01a1m canh ch\u00e1o n\u1ebb tr\u1ea7u cau<\/p>\n

Ti\u1ec1n v\u00e0ng qu\u1ea7n \u00e1o \u0111\u1ee7 m\u00e0u \u0111\u1ecf xanh<\/p>\n

G\u1ea1o mu\u1ed1i qu\u1ea3 th\u1ef1c hoa \u0111\u0103ng<\/p>\n

Mang theo m\u1ed9t ch\u00fat \u0111\u1ec3 d\u00e0nh ng\u00e0y mai<\/p>\n

Ph\u00f9 h\u1ed9 t\u00edn ch\u1ee7 l\u1ed9c t\u00e0i<\/p>\n

An khang th\u1ecbnh v\u01b0\u1ee3ng h\u00f2a h\u00e0i gia trung<\/p>\n

Nh\u1edb ng\u00e0y x\u00e1 t\u1ed9i vong nh\u00e2n<\/p>\n

L\u1ea1i v\u1ec1 t\u00edn ch\u1ee7 th\u00e0nh t\u00e2m th\u1ec9nh m\u1eddi<\/p>\n

B\u00e2y gi\u1edd nh\u1eadn h\u01b0\u1edfng xong r\u1ed3i<\/p>\n

D\u1eaft nhau gi\u00e0 tr\u1ebb v\u1ec1 n\u01a1i \u00e2m ph\u1ea7n<\/p>\n

T\u00edn ch\u1ee7 thi\u00eau h\u00f3a kim ng\u00e2n<\/p>\n

C\u00f9ng v\u1edbi qu\u1ea7n \u00e1o \u0111\u00e3 \u0111\u01b0\u1ee3c ph\u00e2n chia<\/p>\n

K\u00ednh c\u00e1o T\u00f4n th\u1ea7n<\/p>\n

Ch\u1ee9ng minh c\u00f4ng \u0111\u1ee9c<\/p>\n

Cho t\u00edn ch\u1ee7 con<\/p>\n

T\u00ean l\u00e0:\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026<\/p>\n

V\u1ee3\/Ch\u1ed3ng:\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026<\/p>\n

Con trai:\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026<\/p>\n

Con g\u00e1i:\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.<\/p>\n

Ng\u1ee5 t\u1ea1i:\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..<\/p>\n

Tr\u00ean \u0111\u00e2y l\u00e0 #3 B\u00e0i v\u0103n kh\u1ea5n ng\u00e0y r\u1eb1m th\u00e1ng b\u1ea3y chu\u1ea9n t\u00e2m linh d\u00e0nh cho b\u1ea1n tham kh\u1ea3o. H\u00e3y \u0111\u1ecdc qua c\u00e1c b\u00e0i c\u00fang v\u00e0 th\u1ef1c hi\u1ec7n \u0111\u00fang th\u1ee7 t\u1ee5c \u0111\u1ec3 ng\u00e0y r\u1eb1m th\u00e1ng b\u1ea3y (ng\u00e0y l\u1ec5 Vu Lan) \u0111\u01b0\u1ee3c chu to\u00e0n nh\u1ea5t, th\u1ec3 hi\u1ec7n ni\u1ec1m th\u00e0nh k\u00ednh nh\u1ea5t \u0111\u1ed1i v\u1edbi c\u1ed9i ngu\u1ed3n, v\u1edbi t\u1ed5 ti\u00ean v\u00e0 gia t\u1ed9c b\u1ea1n nh\u00e9.<\/p>\n

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

B\u1ea3ng gi\u00e1 \u0111\u1ea5t ngh\u0129a trang L\u1ea1c H\u1ed3ng Vi\u00ean (C\u1eadp nh\u1eadt 2021)<\/a><\/p>\n

Nh\u1eefng th\u1ea7y phong th\u1ee7y n\u1ed5i ti\u1ebfng l\u00ean ch\u1ecdn \u0111\u1ea5t L\u1ea1c H\u1ed3ng Vi\u00ean<\/a><\/p>\n

C\u00d4NG VI\u00caN NGH\u0128A TRANG L\u1ea0C H\u1ed2NG VI\u00caN<\/strong><\/a><\/p>\n

Tr\u1ecdn M\u1ed9t Ch\u1eef T\u00ecnh !<\/strong><\/em><\/p>\n

* Hotline: 0878 32 4444<\/p>\n

* \u0110\u1ecba ch\u1ec9: X\u00e3 M\u00f4ng H\u00f3a, TP H\u00f2a B\u00ecnh, T\u1ec9nh H\u00f2a B\u00ecnh<\/p>\n

* V\u0103n Ph\u00f2ng Giao D\u1ecbch: T\u00f2a Nh\u00e0 S\u00f4ng \u0110\u00e0, \u0110\u01b0\u1eddng Ph\u1ea1m H\u00f9ng, M\u1ef9 \u0110\u00ecnh, Nam T\u1eeb Li\u00eam H\u00e0 N\u1ed9i<\/p>\n

* Website c\u1ee7a ch\u00f9ng t\u00f4i :<\/p>\n