File size: 64,396 Bytes
eb06b3b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 |
[
{
"start": 2.8,
"end": 5.5,
"text": " Dạ chắc là nó quên nên chưa nhắn cho bác ý thôi",
"cut_off_in_the_middle": false
},
{
"start": 7.6,
"end": 9.0,
"text": " Vâng, bác yên tâm ạ",
"cut_off_in_the_middle": false
},
{
"start": 9.0,
"end": 10.5,
"text": " Cháu sẽ bảo nó",
"cut_off_in_the_middle": false
},
{
"start": 11.0,
"end": 12.3,
"text": " Cháu nhất định sẽ để ý hả?",
"cut_off_in_the_middle": false
},
{
"start": 13.3,
"end": 14.100000000000001,
"text": " Dạ dạ",
"cut_off_in_the_middle": false
},
{
"start": 16.5,
"end": 18.3,
"text": " Sao mình lại có thể quên được nhờ?",
"cut_off_in_the_middle": false
},
{
"start": 19.1,
"end": 20.200000000000003,
"text": " Nó đi đâu?",
"cut_off_in_the_middle": false
},
{
"start": 25.0,
"end": 26.52,
"text": " Cảm ơn rồi, cậu đây rồi",
"cut_off_in_the_middle": false
},
{
"start": 26.52,
"end": 28.04,
"text": " Gì thế? Có chuyện gì à?",
"cut_off_in_the_middle": false
},
{
"start": 28.04,
"end": 29.2,
"text": " Hả?",
"cut_off_in_the_middle": false
},
{
"start": 29.5,
"end": 30.1,
"text": " À",
"cut_off_in_the_middle": false
},
{
"start": 30.5,
"end": 30.96,
"text": " Có chuyện gì?",
"cut_off_in_the_middle": false
},
{
"start": 31.6,
"end": 33.7,
"text": " Sợ cậu đi nắng quá thôi",
"cut_off_in_the_middle": false
},
{
"start": 34.7,
"end": 35.5,
"text": " Tình hình như thế nào",
"cut_off_in_the_middle": false
},
{
"start": 37.9,
"end": 41.199999999999996,
"text": " thì vẫn hết cả miệng xin xóa khức nợ chứ sao",
"cut_off_in_the_middle": false
},
{
"start": 41.4,
"end": 44.199999999999996,
"text": " Thật sự là tao chán cái cảnh này lắm rồi",
"cut_off_in_the_middle": false
},
{
"start": 44.7,
"end": 48.2,
"text": " Bây giờ hả, chị ước có một cái hợp đồng bự thật bự, rơi xuống đầu.",
"cut_off_in_the_middle": false
},
{
"start": 48.2,
"end": 51.7,
"text": " Lúc đó, ta sẽ giải quyết hết tất cả mọi sự khói của mình.",
"cut_off_in_the_middle": false
},
{
"start": 55.5,
"end": 56.2,
"text": " Gì đây?",
"cut_off_in_the_middle": false
},
{
"start": 57.3,
"end": 59.3,
"text": " Mày với tay cảnh sát đó cái nào?",
"cut_off_in_the_middle": false
},
{
"start": 59.6,
"end": 60.4,
"text": " Không!",
"cut_off_in_the_middle": false
},
{
"start": 60.8,
"end": 61.599999999999994,
"text": " có",
"cut_off_in_the_middle": false
},
{
"start": 63.5,
"end": 66.7,
"text": " Cái lão máu lạnh đấy tuyết còi đuổi mình đi chứ.",
"cut_off_in_the_middle": false
},
{
"start": 67.2,
"end": 68.0,
"text": " Mình hận",
"cut_off_in_the_middle": false
},
{
"start": 68.4,
"end": 69.12,
"text": " Mình hận quá cơ",
"cut_off_in_the_middle": false
},
{
"start": 69.12,
"end": 70.92,
"text": " Cố lên đi",
"cut_off_in_the_middle": false
},
{
"start": 70.92,
"end": 74.12,
"text": " Hôm nay ta cũng cố gắng cười méo cả miệng với mẹ anh Nam",
"cut_off_in_the_middle": false
},
{
"start": 75.3,
"end": 76.96,
"text": " Cái phần không được yêu nó khổ thế đấy",
"cut_off_in_the_middle": false
},
{
"start": 76.96,
"end": 78.46,
"text": " Ờ không chứ",
"cut_off_in_the_middle": false
},
{
"start": 78.46,
"end": 79.64,
"text": " Trời ơi",
"cut_off_in_the_middle": false
},
{
"start": 79.64,
"end": 82.46,
"text": " Tao sẽ biến mình trở thành một người phụ nữ được yêu",
"cut_off_in_the_middle": false
},
{
"start": 82.46,
"end": 83.84,
"text": " Tay đứt đấy à",
"cut_off_in_the_middle": false
},
{
"start": 83.84,
"end": 85.64,
"text": " Sẽ phải thảm dưới chân tao",
"cut_off_in_the_middle": false
},
{
"start": 85.64,
"end": 86.7,
"text": " Cà phê hay au",
"cut_off_in_the_middle": false
},
{
"start": 86.7,
"end": 88.1,
"text": " Chả lộn chứ ta",
"cut_off_in_the_middle": false
},
{
"start": 88.6,
"end": 89.69999999999999,
"text": " Phải trả đi chứ",
"cut_off_in_the_middle": false
},
{
"start": 90.1,
"end": 92.1,
"text": " Trả được một góc tiền trả được cây cắn nữa",
"cut_off_in_the_middle": false
},
{
"start": 92.1,
"end": 94.1,
"text": " Hôm nay là ngày bao nhiêu vậy?",
"cut_off_in_the_middle": false
},
{
"start": 94.3,
"end": 96.3,
"text": " Phải đợi mới được, hết tiền rồi",
"cut_off_in_the_middle": false
},
{
"start": 109.7,
"end": 111.7,
"text": " Đầu đường có quán lẩu riêu cua mới mở đấy",
"cut_off_in_the_middle": false
},
{
"start": 111.7,
"end": 113.5,
"text": " Tối đi thử tay nghề không?",
"cut_off_in_the_middle": false
},
{
"start": 115.2,
"end": 116.10000000000001,
"text": " Để xem đã",
"cut_off_in_the_middle": false
},
{
"start": 117.3,
"end": 118.8,
"text": " Tao chẳng sợ nào hết á",
"cut_off_in_the_middle": false
},
{
"start": 120.4,
"end": 122.9,
"text": " Mình chào bác ạ",
"cut_off_in_the_middle": false
},
{
"start": 128.7,
"end": 130.29999999999998,
"text": " Còn gọi tôi bằng mẹ sao?",
"cut_off_in_the_middle": false
},
{
"start": 132.2,
"end": 134.7,
"text": " Ai mà mẹ nhắn tin không thèm trả lời là gì?",
"cut_off_in_the_middle": false
},
{
"start": 135.5,
"end": 136.46,
"text": " Tin nhắn của mẹ",
"cut_off_in_the_middle": false
},
{
"start": 136.46,
"end": 138.46,
"text": " Ngoài chuyện đòi nợ với lại tính lãi ra",
"cut_off_in_the_middle": false
},
{
"start": 138.46,
"end": 140.4,
"text": " Đâu có yêu thương gì đâu",
"cut_off_in_the_middle": false
},
{
"start": 141.2,
"end": 143.28,
"text": " Muốn đòi được yêu thương",
"cut_off_in_the_middle": false
},
{
"start": 143.28,
"end": 145.5,
"text": " thì phải xứng đáng được yêu thương chứ.",
"cut_off_in_the_middle": false
},
{
"start": 146.5,
"end": 147.5,
"text": " Còn nữa",
"cut_off_in_the_middle": false
},
{
"start": 147.9,
"end": 153.5,
"text": " Khi trả nợ thì phải nhẫn nại và biết ơn như lúc mới mượn nợ hiểu chưa?",
"cut_off_in_the_middle": false
},
{
"start": 155.6,
"end": 157.1,
"text": " Mẹ",
"cut_off_in_the_middle": false
},
{
"start": 157.8,
"end": 158.70000000000002,
"text": " Từng cô khóc",
"cut_off_in_the_middle": false
},
{
"start": 159.3,
"end": 160.60000000000002,
"text": " Phi nước mắt lắm",
"cut_off_in_the_middle": false
},
{
"start": 161.4,
"end": 164.12,
"text": " Khi mà tôi chưa nhận được tiền mặt và chuyển khoản",
"cut_off_in_the_middle": false
},
{
"start": 164.12,
"end": 166.84,
"text": " Thì dâu có khóc mấy chậu nước mắt rước tôi đi chăng nữa",
"cut_off_in_the_middle": false
},
{
"start": 166.84,
"end": 168.70000000000002,
"text": " Cũng vô hiệu thôi",
"cut_off_in_the_middle": false
},
{
"start": 169.1,
"end": 171.84,
"text": " Thế khi nào con có hợp đồng mới con sẽ trả cho mẹ",
"cut_off_in_the_middle": false
},
{
"start": 171.84,
"end": 173.4,
"text": " Trời ơi",
"cut_off_in_the_middle": false
},
{
"start": 174.3,
"end": 175.86,
"text": " Vẫn có năng khiếu",
"cut_off_in_the_middle": false
},
{
"start": 175.86,
"end": 178.74,
"text": " Có một câu nói đi nói lại mà không biết ngượng miệng",
"cut_off_in_the_middle": false
},
{
"start": 178.74,
"end": 180.46,
"text": " Nghe câu này 100 lần rồi đó",
"cut_off_in_the_middle": false
},
{
"start": 180.46,
"end": 182.20000000000002,
"text": " Chứ bây giờ mẹ muốn con nói làm sao?",
"cut_off_in_the_middle": false
},
{
"start": 182.20000000000002,
"end": 183.84,
"text": " Hay là con nói mẹ",
"cut_off_in_the_middle": false
},
{
"start": 183.84,
"end": 185.20000000000002,
"text": " Con xua tiền lại nha",
"cut_off_in_the_middle": false
},
{
"start": 185.7,
"end": 186.6,
"text": " Dán không?",
"cut_off_in_the_middle": false
},
{
"start": 186.9,
"end": 187.76000000000002,
"text": " Dám xù tiền không?",
"cut_off_in_the_middle": false
},
{
"start": 188.42000000000002,
"end": 189.1,
"text": " Thử xù đi",
"cut_off_in_the_middle": false
},
{
"start": 189.1,
"end": 190.16,
"text": " Rồi thấy cái cảnh",
"cut_off_in_the_middle": false
},
{
"start": 190.16,
"end": 193.0,
"text": " Có còn nhớ tôi nhận cái đầu cô vô trường heo đó",
"cut_off_in_the_middle": false
},
{
"start": 193.6,
"end": 195.6,
"text": " Rồi lúa cái mông ra tôi quất đúng ba chục cái",
"cut_off_in_the_middle": false
},
{
"start": 196.7,
"end": 198.0,
"text": " Bây giờ nè con sức đó",
"cut_off_in_the_middle": false
},
{
"start": 199.3,
"end": 201.04000000000002,
"text": " Chưa kể công nghệ bây giờ rất là hiện đại",
"cut_off_in_the_middle": false
},
{
"start": 201.04000000000002,
"end": 202.8,
"text": " Tôi sẽ khuyến mãi cho cô một cái clip",
"cut_off_in_the_middle": false
},
{
"start": 203.2,
"end": 205.0,
"text": " vừa chân thực vừa sống động nữa",
"cut_off_in_the_middle": false
},
{
"start": 206.1,
"end": 206.9,
"text": " Được không?",
"cut_off_in_the_middle": false
},
{
"start": 208.7,
"end": 210.79999999999998,
"text": " Dạ...com...",
"cut_off_in_the_middle": false
},
{
"start": 214.5,
"end": 215.8,
"text": " Còn với cái",
"cut_off_in_the_middle": false
},
{
"start": 216.3,
"end": 217.70000000000002,
"text": " Thằng Nam mới sáng sớm gọi điện",
"cut_off_in_the_middle": false
},
{
"start": 217.70000000000002,
"end": 219.4,
"text": " Chúc mừng ngày của mẹ rồi",
"cut_off_in_the_middle": false
},
{
"start": 220.1,
"end": 221.1,
"text": " Còn cô đó",
"cut_off_in_the_middle": false
},
{
"start": 221.8,
"end": 223.4,
"text": " Con gái tuổi sanh ra",
"cut_off_in_the_middle": false
},
{
"start": 223.8,
"end": 227.70000000000002,
"text": " Con ruột của tôi đó mang nặng đẻ đau đó mà đối xử với tôi tệ bạc gì đó",
"cut_off_in_the_middle": false
},
{
"start": 230.3,
"end": 233.60000000000002,
"text": " Thì con cũng phải qua nhà anh Nam chúc tụi mày ảnh mà",
"cut_off_in_the_middle": false
},
{
"start": 234.2,
"end": 238.5,
"text": " Tưởng chút Tụng nghe kì sao",
"cut_off_in_the_middle": false
},
{
"start": 240.0,
"end": 241.4,
"text": " Rồi hôm nay có đi chung với tôi không?",
"cut_off_in_the_middle": false
},
{
"start": 243.2,
"end": 243.89999999999998,
"text": " Dạ không",
"cut_off_in_the_middle": false
},
{
"start": 246.1,
"end": 246.7,
"text": " Con à",
"cut_off_in_the_middle": false
},
{
"start": 247.3,
"end": 248.54000000000002,
"text": " Bữa nay con trưởng thành rồi đó",
"cut_off_in_the_middle": false
},
{
"start": 248.54000000000002,
"end": 251.10000000000002,
"text": " Làm ơn cư xử như người lớn đi",
"cut_off_in_the_middle": false
},
{
"start": 252.0,
"end": 253.1,
"text": " Con không đi đâu hết á",
"cut_off_in_the_middle": false
},
{
"start": 260.1,
"end": 260.76000000000005,
"text": " Tụi bác đi đây",
"cut_off_in_the_middle": false
},
{
"start": 260.76000000000005,
"end": 261.8,
"text": " Dạ",
"cut_off_in_the_middle": false
},
{
"start": 262.3,
"end": 262.8,
"text": " Nè",
"cut_off_in_the_middle": false
},
{
"start": 262.8,
"end": 263.3,
"text": " Dạ",
"cut_off_in_the_middle": false
},
{
"start": 263.3,
"end": 265.7,
"text": " Lần sau đóng tiền nhà gửi thẳng cho bác nha",
"cut_off_in_the_middle": false
},
{
"start": 265.7,
"end": 266.8,
"text": " Dạ",
"cut_off_in_the_middle": false
},
{
"start": 267.4,
"end": 270.2,
"text": " Đừng có đưa cho nó, đưa rồi mắc công nó trả nợ hết",
"cut_off_in_the_middle": false
},
{
"start": 270.2,
"end": 271.79999999999995,
"text": " Dạ con nhớ rồi ạ",
"cut_off_in_the_middle": false
},
{
"start": 271.79999999999995,
"end": 273.2,
"text": " Bác về ạ",
"cut_off_in_the_middle": false
},
{
"start": 275.2,
"end": 276.09999999999997,
"text": " Này",
"cut_off_in_the_middle": false
},
{
"start": 281.4,
"end": 282.9,
"text": " Cứ tới những dịp như thế này",
"cut_off_in_the_middle": false
},
{
"start": 283.5,
"end": 284.8,
"text": " Cô ấy đều như vậy hết",
"cut_off_in_the_middle": false
},
{
"start": 285.2,
"end": 285.5,
"text": " Ừ",
"cut_off_in_the_middle": false
},
{
"start": 285.9,
"end": 287.4,
"text": " Sao anh không biết trời tăng gì hết?",
"cut_off_in_the_middle": false
},
{
"start": 291.1,
"end": 292.20000000000005,
"text": " Ai đừng",
"cut_off_in_the_middle": false
},
{
"start": 292.7,
"end": 294.26,
"text": " Hầm lộn điện thoại của người khác rồi",
"cut_off_in_the_middle": false
},
{
"start": 294.26,
"end": 295.59999999999997,
"text": " Anh gọi không được đâu",
"cut_off_in_the_middle": false
},
{
"start": 297.8,
"end": 298.5,
"text": " Nếu vậy",
"cut_off_in_the_middle": false
},
{
"start": 298.9,
"end": 300.4,
"text": " Để tôi vào chỗ cô ấy nha",
"cut_off_in_the_middle": false
},
{
"start": 300.4,
"end": 301.59999999999997,
"text": " Thôi khỏi đi",
"cut_off_in_the_middle": false
},
{
"start": 301.8,
"end": 303.8,
"text": " Sao anh vừa báo Hà đang ở xưởng",
"cut_off_in_the_middle": false
},
{
"start": 303.8,
"end": 305.24,
"text": " Có sao nói đó rồi",
"cut_off_in_the_middle": false
},
{
"start": 305.24,
"end": 307.2,
"text": " Hà sai như thế nào cũng không sao đâu",
"cut_off_in_the_middle": false
},
{
"start": 307.6,
"end": 309.6,
"text": " Con bé kì quái lắm",
"cut_off_in_the_middle": false
},
{
"start": 309.6,
"end": 310.70000000000005,
"text": " Mỗi việc này",
"cut_off_in_the_middle": false
},
{
"start": 311.9,
"end": 312.59999999999997,
"text": " Đóng đi một mình",
"cut_off_in_the_middle": false
},
{
"start": 313.6,
"end": 314.40000000000003,
"text": " Cho ai làm phiền hết",
"cut_off_in_the_middle": false
},
{
"start": 337.5,
"end": 337.78,
"text": " Hãy subscribe cho kênh Ghiền Mì Gõ Để không bỏ lỡ những video hấp dẫn",
"cut_off_in_the_middle": false
},
{
"start": 340.2,
"end": 341.0,
"text": " Không cần đâu",
"cut_off_in_the_middle": false
},
{
"start": 341.6,
"end": 342.8,
"text": " Tao làm được rồi",
"cut_off_in_the_middle": false
},
{
"start": 343.4,
"end": 345.2,
"text": " Sao mày không làm nó kẹo sắt đi?",
"cut_off_in_the_middle": false
},
{
"start": 346.7,
"end": 348.7,
"text": " Ra đây với mày cho nó vui thì sao?",
"cut_off_in_the_middle": false
},
{
"start": 351.5,
"end": 352.0,
"text": " Này",
"cut_off_in_the_middle": false
},
{
"start": 352.4,
"end": 354.7,
"text": " Chừng nào mới đổi lại điện thoại với ông Tùng đấy hả?",
"cut_off_in_the_middle": false
},
{
"start": 355.9,
"end": 356.4,
"text": " Ờ",
"cut_off_in_the_middle": false
},
{
"start": 356.4,
"end": 357.5,
"text": " Nhắc mới nhớ",
"cut_off_in_the_middle": false
},
{
"start": 358.1,
"end": 360.0,
"text": " Tao còn tắt truyền thoại của ổng cơ",
"cut_off_in_the_middle": false
},
{
"start": 360.2,
"end": 361.3,
"text": " để mở ra",
"cut_off_in_the_middle": false
},
{
"start": 362.6,
"end": 363.1,
"text": " Ừ",
"cut_off_in_the_middle": false
},
{
"start": 363.8,
"end": 364.8,
"text": " Rừng thế",
"cut_off_in_the_middle": false
},
{
"start": 365.8,
"end": 366.18,
"text": " Hẹn gặp lại các bạn trong những video tiếp theo.",
"cut_off_in_the_middle": false
},
{
"start": 367.1,
"end": 368.1,
"text": " Alo",
"cut_off_in_the_middle": false
},
{
"start": 370.3,
"end": 371.2,
"text": " 8 giờ",
"cut_off_in_the_middle": false
},
{
"start": 371.9,
"end": 374.52,
"text": " Lúc đó tôi sẽ nhắn địa chỉ cho anh",
"cut_off_in_the_middle": false
},
{
"start": 374.52,
"end": 375.59999999999997,
"text": " Ok?",
"cut_off_in_the_middle": false
},
{
"start": 379.3,
"end": 380.6,
"text": " Này",
"cut_off_in_the_middle": false
},
{
"start": 381.8,
"end": 383.98,
"text": " Kể chuyện của tao với lão cảnh phát giao thông cho mày nghe chưa",
"cut_off_in_the_middle": false
},
{
"start": 383.98,
"end": 387.2,
"text": " Mày thì ngày nào cũng có chuyện mà",
"cut_off_in_the_middle": false
},
{
"start": 389.4,
"end": 391.79999999999995,
"text": " Mình đã thương tình nắng nôi đứng ngoài đường",
"cut_off_in_the_middle": false
},
{
"start": 391.79999999999995,
"end": 393.4,
"text": " Ở lại buôn chuyện",
"cut_off_in_the_middle": false
},
{
"start": 393.4,
"end": 395.64,
"text": " Lại còn rủ chơi cả trò chơi đố vui nhá",
"cut_off_in_the_middle": false
},
{
"start": 395.64,
"end": 398.2,
"text": " Mày biết tao đố lão ta câu gì không?",
"cut_off_in_the_middle": false
},
{
"start": 398.7,
"end": 399.7,
"text": " Đúng không chị?",
"cut_off_in_the_middle": false
},
{
"start": 400.6,
"end": 401.6,
"text": " Tao đố lão ta là",
"cut_off_in_the_middle": false
},
{
"start": 402.0,
"end": 404.6,
"text": " Vì sao 3 con sâu lại không có màu đen?",
"cut_off_in_the_middle": false
},
{
"start": 404.9,
"end": 407.15999999999997,
"text": " Ờ, nghe xong ngửa mặt lên trời im lặng",
"cut_off_in_the_middle": false
},
{
"start": 407.15999999999997,
"end": 408.29999999999995,
"text": " Im lặng",
"cut_off_in_the_middle": false
},
{
"start": 413.6,
"end": 418.0,
"text": " Mày đã chạm phải với thần kinh ngượng ngủng gõng rồi đó nghe",
"cut_off_in_the_middle": false
},
{
"start": 418.66,
"end": 420.96000000000004,
"text": " Thì chính vì lão ấy ngượng hết phần của tao",
"cut_off_in_the_middle": false
},
{
"start": 420.96000000000004,
"end": 422.46000000000004,
"text": " Thế nên tao mới phải giải thích là",
"cut_off_in_the_middle": false
},
{
"start": 422.96000000000004,
"end": 424.72,
"text": " Sở dĩ nó không có màu đen",
"cut_off_in_the_middle": false
},
{
"start": 425.06,
"end": 428.28000000000003,
"text": " Là bởi vì màu đen sẽ khiến cho tất cả mọi thứ trở nên",
"cut_off_in_the_middle": false
},
{
"start": 429.06,
"end": 429.72,
"text": " Gầy đi",
"cut_off_in_the_middle": false
},
{
"start": 429.72,
"end": 430.22,
"text": " Ê",
"cut_off_in_the_middle": false
},
{
"start": 430.54,
"end": 432.5,
"text": " Mình đã giải thích cạn kẽ như thế rồi",
"cut_off_in_the_middle": false
},
{
"start": 432.9,
"end": 435.09999999999997,
"text": " Không cảm ơn lại còn chỉ rùi cui vào mặt mình",
"cut_off_in_the_middle": false
},
{
"start": 435.09999999999997,
"end": 436.28,
"text": " Tích còi đuổi đi chứ",
"cut_off_in_the_middle": false
},
{
"start": 436.28,
"end": 437.96,
"text": " Đúng là cái đồ khùng điên",
"cut_off_in_the_middle": false
},
{
"start": 437.96,
"end": 441.03999999999996,
"text": " Trời ơi",
"cut_off_in_the_middle": false
},
{
"start": 441.03999999999996,
"end": 442.29999999999995,
"text": " Sao không",
"cut_off_in_the_middle": false
},
{
"start": 442.6,
"end": 446.54,
"text": " Mày đã làm cho tất cả phụ nữ trên thế giới này hãnh diện vì mày",
"cut_off_in_the_middle": false
},
{
"start": 446.54,
"end": 448.90000000000003,
"text": " Đấy một cái câu như vậy mà cũng hỏi được hả?",
"cut_off_in_the_middle": false
},
{
"start": 448.90000000000003,
"end": 449.70000000000005,
"text": " Ừ",
"cut_off_in_the_middle": false
},
{
"start": 454.0,
"end": 454.7,
"text": " Dạ",
"cut_off_in_the_middle": false
},
{
"start": 455.0,
"end": 455.8,
"text": " Con đây",
"cut_off_in_the_middle": false
},
{
"start": 457.8,
"end": 459.40000000000003,
"text": " Dạ bây giờ con qua liền nè",
"cut_off_in_the_middle": false
},
{
"start": 474.1,
"end": 475.0,
"text": " Sao?",
"cut_off_in_the_middle": false
},
{
"start": 477.1,
"end": 477.48,
"text": " Hãy subscribe cho kênh Ghiền Mì Gõ Để không bỏ lỡ những video hấp dẫn",
"cut_off_in_the_middle": false
},
{
"start": 480.0,
"end": 480.6,
"text": " Ờ...",
"cut_off_in_the_middle": false
},
{
"start": 481.0,
"end": 482.8,
"text": " Thở ai nữa trách nó",
"cut_off_in_the_middle": false
},
{
"start": 483.3,
"end": 484.0,
"text": " Đau bụng quá",
"cut_off_in_the_middle": false
},
{
"start": 484.8,
"end": 485.3,
"text": " Hổ",
"cut_off_in_the_middle": false
},
{
"start": 547.6,
"end": 548.2,
"text": " Con gái",
"cut_off_in_the_middle": false
},
{
"start": 548.6,
"end": 548.88,
"text": " Cảm ơn các bạn đã theo dõi và hẹn gặp lại.",
"cut_off_in_the_middle": false
},
{
"start": 550.9,
"end": 551.6999999999999,
"text": " Tại sao hôm nay",
"cut_off_in_the_middle": false
},
{
"start": 552.5,
"end": 562.0,
"text": " Hãy subscribe cho kênh Ghiền Mì Gõ Để không bỏ lỡ những video hấp dẫn",
"cut_off_in_the_middle": false
},
{
"start": 562.7,
"end": 563.7,
"text": " Ờ, yên tâm đi",
"cut_off_in_the_middle": false
},
{
"start": 563.7,
"end": 566.7,
"text": " Mà bớt xong mà con rảnh là con sẽ về thăm ba đi hả?",
"cut_off_in_the_middle": false
},
{
"start": 566.7,
"end": 567.7,
"text": " Thì không đó",
"cut_off_in_the_middle": false
},
{
"start": 567.7,
"end": 569.7,
"text": " Thiệt, thương mà lắm luôn á",
"cut_off_in_the_middle": false
},
{
"start": 569.7,
"end": 571.1,
"text": " Thương mà lắm luôn á",
"cut_off_in_the_middle": false
},
{
"start": 571.6,
"end": 576.6,
"text": " Cô giả sử dụng bài hát để tìm hiểu những gì cô có nghĩ về.",
"cut_off_in_the_middle": false
},
{
"start": 607.5,
"end": 609.5,
"text": " Cho em chai rượu nữa đi",
"cut_off_in_the_middle": false
},
{
"start": 609.5,
"end": 612.9,
"text": " Uống vừa thôi cô nương ơi",
"cut_off_in_the_middle": false
},
{
"start": 614.7,
"end": 615.3000000000001,
"text": " Dạy",
"cut_off_in_the_middle": false
},
{
"start": 616.2,
"end": 617.7,
"text": " Em mới phát hiện ra",
"cut_off_in_the_middle": false
},
{
"start": 618.3,
"end": 620.5,
"text": " Trên đời này có 2 loại người",
"cut_off_in_the_middle": false
},
{
"start": 621.0,
"end": 621.9,
"text": " Một",
"cut_off_in_the_middle": false
},
{
"start": 622.4,
"end": 625.4,
"text": " Là loại em nợ tiền",
"cut_off_in_the_middle": false
},
{
"start": 625.9,
"end": 626.8,
"text": " Dạ hai",
"cut_off_in_the_middle": false
},
{
"start": 627.1,
"end": 628.5,
"text": " Là lại cho em vay tiền",
"cut_off_in_the_middle": false
},
{
"start": 629.78,
"end": 630.82,
"text": " Thôi cô Nương ơi",
"cut_off_in_the_middle": false
},
{
"start": 631.5400000000001,
"end": 633.78,
"text": " Tôi thì tôi không có quan tâm mấy cái vụ đó đâu",
"cut_off_in_the_middle": false
},
{
"start": 634.26,
"end": 635.7,
"text": " Tôi tôi quan tâm",
"cut_off_in_the_middle": false
},
{
"start": 636.2,
"end": 639.2,
"text": " Cô có trả nợ được cho tôi hay không kìa",
"cut_off_in_the_middle": false
},
{
"start": 642.8,
"end": 643.9,
"text": " Cảm ơn",
"cut_off_in_the_middle": false
},
{
"start": 645.3,
"end": 646.0999999999999,
"text": " Bộ...",
"cut_off_in_the_middle": false
},
{
"start": 647.6,
"end": 649.0,
"text": " Có bao giờ mà",
"cut_off_in_the_middle": false
},
{
"start": 649.7,
"end": 651.2,
"text": " Chị thấy khủng hoảng lắm",
"cut_off_in_the_middle": false
},
{
"start": 652.7,
"end": 654.1,
"text": " Thế giới này",
"cut_off_in_the_middle": false
},
{
"start": 654.5,
"end": 656.5,
"text": " Có mấy tỷ người",
"cut_off_in_the_middle": false
},
{
"start": 656.5,
"end": 657.5,
"text": " mà",
"cut_off_in_the_middle": false
},
{
"start": 657.7,
"end": 658.7,
"text": " Mình nè",
"cut_off_in_the_middle": false
},
{
"start": 659.3,
"end": 660.1999999999999,
"text": " Có mẹ nè",
"cut_off_in_the_middle": false
},
{
"start": 661.4,
"end": 662.6,
"text": " Có người yêu này",
"cut_off_in_the_middle": false
},
{
"start": 663.0,
"end": 664.1,
"text": " Có bạn bè nè",
"cut_off_in_the_middle": false
},
{
"start": 666.1,
"end": 667.9,
"text": " Nhưng mà đôi khi",
"cut_off_in_the_middle": false
},
{
"start": 669.2,
"end": 670.8000000000001,
"text": " Chị thấy cô đơn lắm",
"cut_off_in_the_middle": false
},
{
"start": 671.2,
"end": 672.7,
"text": " Cô đưa vải ra",
"cut_off_in_the_middle": false
},
{
"start": 674.4,
"end": 676.3,
"text": " Thì ra là sợ cô đơn",
"cut_off_in_the_middle": false
},
{
"start": 676.6,
"end": 678.86,
"text": " Sợ cô đơn thì em cưới đi",
"cut_off_in_the_middle": false
},
{
"start": 678.86,
"end": 680.86,
"text": " Có người yêu em để đó làm cái gì",
"cut_off_in_the_middle": false
},
{
"start": 682.44,
"end": 683.4200000000001,
"text": " Cưới hả?",
"cut_off_in_the_middle": false
},
{
"start": 683.4200000000001,
"end": 685.4200000000001,
"text": " Trời ơi sao còn cưới được",
"cut_off_in_the_middle": false
},
{
"start": 685.4200000000001,
"end": 686.7,
"text": " Chỉ biết là em",
"cut_off_in_the_middle": false
},
{
"start": 687.0,
"end": 688.04,
"text": " Nhiều tiền mà",
"cut_off_in_the_middle": false
},
{
"start": 688.04,
"end": 689.88,
"text": " Sau cái vụ mà em bị lừa",
"cut_off_in_the_middle": false
},
{
"start": 689.88,
"end": 692.8,
"text": " Giờ không trả hết đâu",
"cut_off_in_the_middle": false
},
{
"start": 693.8,
"end": 696.9,
"text": " Lỗi mẹ để lỗi con",
"cut_off_in_the_middle": false
},
{
"start": 697.2,
"end": 699.1,
"text": " Yêu quá gì cũng tỉ cái trơn á",
"cut_off_in_the_middle": false
},
{
"start": 700.4,
"end": 701.1,
"text": " Và...",
"cut_off_in_the_middle": false
},
{
"start": 702.9,
"end": 704.8,
"text": " Không cưới thì không yên tâm",
"cut_off_in_the_middle": false
},
{
"start": 705.1,
"end": 707.0,
"text": " Mà sao em không yên tâm",
"cut_off_in_the_middle": false
},
{
"start": 707.7,
"end": 708.9000000000001,
"text": " Mẹ rồi",
"cut_off_in_the_middle": false
},
{
"start": 710.0,
"end": 712.0,
"text": " Một lúc trên thị trường hôn nhân",
"cut_off_in_the_middle": false
},
{
"start": 712.0,
"end": 714.1,
"text": " Càng mất giá",
"cut_off_in_the_middle": false
},
{
"start": 714.5,
"end": 718.32,
"text": " Mà anh người yêu em tốt đẹp lắm",
"cut_off_in_the_middle": false
},
{
"start": 718.32,
"end": 720.2,
"text": " Tốt mà",
"cut_off_in_the_middle": false
},
{
"start": 720.6,
"end": 724.72,
"text": " Không muốn ảnh dính vô mấy cái chuyện nợ nừng vớ vã vấn phận này đâu",
"cut_off_in_the_middle": false
},
{
"start": 724.72,
"end": 726.96,
"text": " Nhỏ này ngu dễ sợ luôn á",
"cut_off_in_the_middle": false
},
{
"start": 726.96,
"end": 729.2,
"text": " Có nguyên cái mỏ mà không biết đào",
"cut_off_in_the_middle": false
},
{
"start": 729.7,
"end": 730.7,
"text": " Đi",
"cut_off_in_the_middle": false
},
{
"start": 730.8000000000001,
"end": 731.8000000000001,
"text": " Ai làm vậy",
"cut_off_in_the_middle": false
},
{
"start": 732.7,
"end": 733.7,
"text": " Em hả?",
"cut_off_in_the_middle": false
},
{
"start": 734.0,
"end": 735.7,
"text": " Yếu đương rồi, yếu đương",
"cut_off_in_the_middle": false
},
{
"start": 736.0,
"end": 737.8,
"text": " N-A thì người đó trả",
"cut_off_in_the_middle": false
},
{
"start": 740.4,
"end": 741.0,
"text": " Ngoài",
"cut_off_in_the_middle": false
},
{
"start": 741.7,
"end": 743.7,
"text": " Anh không có biết là em nợ như chú chỗm đâu",
"cut_off_in_the_middle": false
},
{
"start": 745.7,
"end": 746.2,
"text": " Cho nên",
"cut_off_in_the_middle": false
},
{
"start": 746.88,
"end": 748.1,
"text": " Trước khi mà",
"cut_off_in_the_middle": false
},
{
"start": 748.8,
"end": 752.8,
"text": " Trước khi mà anh thay lòng đổi giả là em phải tóm anh",
"cut_off_in_the_middle": false
},
{
"start": 753.4,
"end": 754.5,
"text": " Trước khi tóm ảnh",
"cut_off_in_the_middle": false
},
{
"start": 756.2,
"end": 757.3000000000001,
"text": " Trả hết nợ",
"cut_off_in_the_middle": false
},
{
"start": 757.8,
"end": 760.3199999999999,
"text": " Thôi cô nương, mày đặt bị bệnh sĩ nữa",
"cut_off_in_the_middle": false
},
{
"start": 760.3199999999999,
"end": 762.8599999999999,
"text": " Theo như chị á, mà là em á nha",
"cut_off_in_the_middle": false
},
{
"start": 762.8599999999999,
"end": 764.6999999999999,
"text": " Nè, phải nói thẳng với cậu ta",
"cut_off_in_the_middle": false
},
{
"start": 765.5,
"end": 767.8,
"text": " Em nghèo lắm, em đang thiếu nợ",
"cut_off_in_the_middle": false
},
{
"start": 768.5,
"end": 770.96,
"text": " Nếu mà cậu ta yêu em thật sự ở nhà nè",
"cut_off_in_the_middle": false
},
{
"start": 770.96,
"end": 772.96,
"text": " Là phải bên em những lúc khó khăn như vậy á",
"cut_off_in_the_middle": false
},
{
"start": 772.96,
"end": 774.26,
"text": " Mà giúp đỡ mình á",
"cut_off_in_the_middle": false
},
{
"start": 774.26,
"end": 776.64,
"text": " Đó mới gọi là tình yêu đích thực",
"cut_off_in_the_middle": false
},
{
"start": 776.64,
"end": 777.54,
"text": " Hiểu không?",
"cut_off_in_the_middle": false
},
{
"start": 777.54,
"end": 778.8,
"text": " Biết chưa?",
"cut_off_in_the_middle": false
},
{
"start": 780.1,
"end": 782.5,
"text": " Vô nấu đồ ăn cho bán tiếp nè",
"cut_off_in_the_middle": false
},
{
"start": 783.9,
"end": 784.28,
"text": " Hãy subscribe cho kênh Ghiền Mì Gõ Để không bỏ lỡ những video hấp dẫn",
"cut_off_in_the_middle": false
},
{
"start": 787.4,
"end": 788.1,
"text": " Cái người",
"cut_off_in_the_middle": false
},
{
"start": 790.4,
"end": 792.9,
"text": " mà mình không sợ mất mặt",
"cut_off_in_the_middle": false
},
{
"start": 794.0,
"end": 795.2,
"text": " Người",
"cut_off_in_the_middle": false
},
{
"start": 796.4,
"end": 799.3,
"text": " Mà chị quá gì cũng kể được hết",
"cut_off_in_the_middle": false
},
{
"start": 801.8,
"end": 802.5,
"text": " Đi mất rồi",
"cut_off_in_the_middle": false
},
{
"start": 804.3,
"end": 807.1999999999999,
"text": " Bỏ đi trước ngày sinh nhật mới ghê chứ",
"cut_off_in_the_middle": false
},
{
"start": 819.3,
"end": 821.8399999999999,
"text": " Cô nói là 8 giờ chúng ta gặp nhau đổi điện thoại mà",
"cut_off_in_the_middle": false
},
{
"start": 821.8399999999999,
"end": 823.1999999999999,
"text": " Đâu có tiêu rồi",
"cut_off_in_the_middle": false
},
{
"start": 824.8,
"end": 825.3,
"text": " Ờ...",
"cut_off_in_the_middle": false
},
{
"start": 825.6,
"end": 826.64,
"text": " Quên mất",
"cut_off_in_the_middle": false
},
{
"start": 826.64,
"end": 827.8000000000001,
"text": " Sorry",
"cut_off_in_the_middle": false
},
{
"start": 828.5,
"end": 831.7,
"text": " Bây giờ thì đang ở quán ốc á",
"cut_off_in_the_middle": false
},
{
"start": 832.3,
"end": 833.3,
"text": " Lạnh thì qua đây",
"cut_off_in_the_middle": false
},
{
"start": 834.1,
"end": 835.3000000000001,
"text": " Cô đã uống đồ hả?",
"cut_off_in_the_middle": false
},
{
"start": 836.1,
"end": 837.4,
"text": " Đang xét chân nữa hả?",
"cut_off_in_the_middle": false
},
{
"start": 845.0,
"end": 846.5,
"text": " Dậy đi",
"cut_off_in_the_middle": false
},
{
"start": 846.5,
"end": 848.3,
"text": " Nè dậy",
"cut_off_in_the_middle": false
},
{
"start": 849.5,
"end": 850.4,
"text": " Chạy đi!",
"cut_off_in_the_middle": false
},
{
"start": 853.8,
"end": 854.1999999999999,
"text": " Ê",
"cut_off_in_the_middle": false
},
{
"start": 854.5,
"end": 855.94,
"text": " Bộ em tính làm mổ ở ngoài đường luôn hả?",
"cut_off_in_the_middle": false
},
{
"start": 855.94,
"end": 856.74,
"text": " Hả?",
"cut_off_in_the_middle": false
},
{
"start": 856.74,
"end": 857.98,
"text": " Người ta dòm kìa",
"cut_off_in_the_middle": false
},
{
"start": 857.98,
"end": 859.42,
"text": " Không xấu hổ hả?",
"cut_off_in_the_middle": false
},
{
"start": 859.42,
"end": 860.94,
"text": " Con gái con đứa gì",
"cut_off_in_the_middle": false
},
{
"start": 860.94,
"end": 862.9,
"text": " Điện thoại ở đây đâu? Trong này phải không?",
"cut_off_in_the_middle": false
},
{
"start": 864.4,
"end": 865.4,
"text": " Thả cái điện thoại đây",
"cut_off_in_the_middle": false
},
{
"start": 870.8,
"end": 871.18,
"text": " Hãy subscribe cho kênh Ghiền Mì Gõ Để không bỏ lỡ những video hấp dẫn",
"cut_off_in_the_middle": false
},
{
"start": 874.6,
"end": 876.6,
"text": " Người yêu gọi nè, nghe đi",
"cut_off_in_the_middle": false
},
{
"start": 877.0,
"end": 877.8,
"text": " Nèo!",
"cut_off_in_the_middle": false
},
{
"start": 878.2,
"end": 879.0,
"text": " Ngươi yêu",
"cut_off_in_the_middle": false
},
{
"start": 881.4,
"end": 883.06,
"text": " Ê, cái điện thoại hết pin nha",
"cut_off_in_the_middle": false
},
{
"start": 883.3199999999999,
"end": 883.8199999999999,
"text": " Đã",
"cut_off_in_the_middle": false
},
{
"start": 884.66,
"end": 885.98,
"text": " Điện thoại hết pin đó, đừng đổ thừa nha",
"cut_off_in_the_middle": false
},
{
"start": 886.34,
"end": 887.9,
"text": " Biết rồi",
"cut_off_in_the_middle": false
},
{
"start": 888.6,
"end": 889.9,
"text": " Ừ, mình đổi tốt",
"cut_off_in_the_middle": false
},
{
"start": 890.8,
"end": 892.3599999999999,
"text": " Để anh đưa điện thoại cho em",
"cut_off_in_the_middle": false
},
{
"start": 892.3599999999999,
"end": 893.68,
"text": " Để anh đưa điện thoại cho em",
"cut_off_in_the_middle": false
},
{
"start": 893.68,
"end": 894.8,
"text": " Bọn bà vô duyên có làm kìa",
"cut_off_in_the_middle": false
},
{
"start": 902.6,
"end": 903.1,
"text": " Ơ",
"cut_off_in_the_middle": false
},
{
"start": 903.4,
"end": 904.6,
"text": " Cô mượn rượu nha",
"cut_off_in_the_middle": false
},
{
"start": 905.0,
"end": 906.4,
"text": " Hư lắm á",
"cut_off_in_the_middle": false
},
{
"start": 910.9,
"end": 911.4,
"text": " Ờ",
"cut_off_in_the_middle": false
},
{
"start": 912.5,
"end": 913.7,
"text": " Ui da!",
"cut_off_in_the_middle": false
},
{
"start": 917.1,
"end": 918.6,
"text": " Ê",
"cut_off_in_the_middle": false
},
{
"start": 919.0,
"end": 920.0,
"text": " Ủa?",
"cut_off_in_the_middle": false
},
{
"start": 922.5,
"end": 923.1,
"text": " Được rồi",
"cut_off_in_the_middle": false
},
{
"start": 928.7,
"end": 929.7,
"text": " Ừ",
"cut_off_in_the_middle": false
},
{
"start": 930.2,
"end": 931.3000000000001,
"text": " Chạy đâu vậy?",
"cut_off_in_the_middle": false
},
{
"start": 941.2,
"end": 945.6,
"text": " Thưa bác quý khách vừa gọi, hiện không liên lạc được. Xin vui lòng...",
"cut_off_in_the_middle": false
},
{
"start": 951.8,
"end": 953.3,
"text": " Ở ngoài đó",
"cut_off_in_the_middle": false
},
{
"start": 954.4,
"end": 955.3,
"text": " À",
"cut_off_in_the_middle": false
},
{
"start": 959.2,
"end": 960.24,
"text": " Thưa quý",
"cut_off_in_the_middle": false
},
{
"start": 960.24,
"end": 960.8000000000001,
"text": " Nè bỏ nó xuống đi",
"cut_off_in_the_middle": false
},
{
"start": 961.3,
"end": 962.4,
"text": " Hỏi nó xuống đi",
"cut_off_in_the_middle": false
},
{
"start": 963.4,
"end": 964.4,
"text": " Dạ",
"cut_off_in_the_middle": false
},
{
"start": 964.8,
"end": 966.8,
"text": " Chắc ở ngoài đường này dễ bệnh lắm đó",
"cut_off_in_the_middle": false
},
{
"start": 967.8,
"end": 968.4,
"text": " Cảm ơn",
"cut_off_in_the_middle": false
},
{
"start": 968.8,
"end": 969.8,
"text": " Để",
"cut_off_in_the_middle": false
},
{
"start": 969.8,
"end": 970.8,
"text": " Điên đó đi",
"cut_off_in_the_middle": false
},
{
"start": 970.8,
"end": 972.8,
"text": " Nó ngoan quá rồi mà",
"cut_off_in_the_middle": false
},
{
"start": 972.8,
"end": 973.8,
"text": " Nè",
"cut_off_in_the_middle": false
},
{
"start": 973.8,
"end": 975.3,
"text": " Ê",
"cut_off_in_the_middle": false
},
{
"start": 979.4,
"end": 980.4,
"text": " Sợ không sợ không sợ không?",
"cut_off_in_the_middle": false
},
{
"start": 981.4,
"end": 982.4,
"text": " Sợ không sợ không sợ không?",
"cut_off_in_the_middle": false
},
{
"start": 996.9,
"end": 997.28,
"text": " Hãy subscribe cho kênh Ghiền Mì Gõ Để không bỏ lỡ những video hấp dẫn",
"cut_off_in_the_middle": false
},
{
"start": 998.4,
"end": 999.8,
"text": " Ngo",
"cut_off_in_the_middle": false
},
{
"start": 1000.3,
"end": 1001.6999999999999,
"text": " Ừ, không ai",
"cut_off_in_the_middle": false
},
{
"start": 1002.8,
"end": 1004.8,
"text": " Mơ thì mới gặp anh ta rồi",
"cut_off_in_the_middle": false
},
{
"start": 1005.6999999999999,
"end": 1007.6999999999999,
"text": " Mơ cái gì mà mơ hả?",
"cut_off_in_the_middle": false
},
{
"start": 1008.4,
"end": 1012.1,
"text": " Em chưa bao giờ xuất hiện trong giấc mơ của tôi hết đó biết chưa?",
"cut_off_in_the_middle": false
},
{
"start": 1013.3,
"end": 1015.3,
"text": " Còn dám nhìn tôi với ánh mắt vô tội hả",
"cut_off_in_the_middle": false
},
{
"start": 1015.6,
"end": 1016.6,
"text": " Con người của em",
"cut_off_in_the_middle": false
},
{
"start": 1017.24,
"end": 1019.5,
"text": " Tim gan phèo phổi của em có cảm xúc không hả?",
"cut_off_in_the_middle": false
},
{
"start": 1020.9,
"end": 1023.0,
"text": " Em có biết là những lúc tôi nhớ em",
"cut_off_in_the_middle": false
},
{
"start": 1023.4,
"end": 1024.5,
"text": " Tôi đã cầu nguyện",
"cut_off_in_the_middle": false
},
{
"start": 1025.9,
"end": 1027.7,
"text": " Tôi còn nguyện nhiều lần lắm",
"cut_off_in_the_middle": false
},
{
"start": 1028.7,
"end": 1030.8,
"text": " Chưa bao giờ em xuất hiện trong giấc mơ của tôi hết",
"cut_off_in_the_middle": false
},
{
"start": 1033.0,
"end": 1034.1,
"text": " Chưa bao giờ",
"cut_off_in_the_middle": false
},
{
"start": 1035.0,
"end": 1035.4,
"text": " Cảm ơn",
"cut_off_in_the_middle": false
},
{
"start": 1038.3,
"end": 1039.62,
"text": " Chị Kim bớ",
"cut_off_in_the_middle": false
},
{
"start": 1039.62,
"end": 1042.58,
"text": " Chị bớ nghe người ta nói những lời vậy thôi",
"cut_off_in_the_middle": false
},
{
"start": 1046.0,
"end": 1047.7,
"text": " Điện cho bình thường tôi nói gì hả?",
"cut_off_in_the_middle": false
},
{
"start": 1050.1,
"end": 1051.0,
"text": " Anh ơi",
"cut_off_in_the_middle": false
},
{
"start": 1052.8,
"end": 1053.5,
"text": " Ờ",
"cut_off_in_the_middle": false
},
{
"start": 1054.5,
"end": 1057.3,
"text": " Lúc nào cũng khiến tôi một mình hết",
"cut_off_in_the_middle": false
},
{
"start": 1058.5,
"end": 1059.5,
"text": " Lúc nào",
"cut_off_in_the_middle": false
},
{
"start": 1060.0,
"end": 1062.0,
"text": " Những mắt tôi phải chờ đợi",
"cut_off_in_the_middle": false
},
{
"start": 1063.4,
"end": 1064.1000000000001,
"text": " Anh...",
"cut_off_in_the_middle": false
},
{
"start": 1065.6,
"end": 1067.5,
"text": " Tỷ thứ quan trọng",
"cut_off_in_the_middle": false
},
{
"start": 1069.7,
"end": 1070.9,
"text": " Mà tôi...",
"cut_off_in_the_middle": false
},
{
"start": 1073.0,
"end": 1073.48,
"text": " Hãy subscribe cho kênh Ghiền Mì Gõ Để không bỏ lỡ những video hấp dẫn",
"cut_off_in_the_middle": false
},
{
"start": 1075.2,
"end": 1076.2,
"text": " Lúc hồi...",
"cut_off_in_the_middle": false
},
{
"start": 1076.6,
"end": 1078.3,
"text": " Về chị bé",
"cut_off_in_the_middle": false
},
{
"start": 1079.0,
"end": 1079.6,
"text": " Chúng tức",
"cut_off_in_the_middle": false
},
{
"start": 1080.8,
"end": 1082.8,
"text": " Đừng có làm gì cho em",
"cut_off_in_the_middle": false
},
{
"start": 1085.1,
"end": 1086.6999999999998,
"text": " Anh làm tôi...",
"cut_off_in_the_middle": false
},
{
"start": 1087.7,
"end": 1088.1000000000001,
"text": " Vâng",
"cut_off_in_the_middle": false
},
{
"start": 1089.5,
"end": 1090.4,
"text": " Nói chồng",
"cut_off_in_the_middle": false
},
{
"start": 1091.2,
"end": 1092.3,
"text": " Rồi rồi",
"cut_off_in_the_middle": false
},
{
"start": 1100.5,
"end": 1100.8,
"text": " Chào",
"cut_off_in_the_middle": false
},
{
"start": 1102.9,
"end": 1105.2,
"text": " Bạn nói gì vậy ta?",
"cut_off_in_the_middle": false
},
{
"start": 1105.8,
"end": 1108.6,
"text": " Chú ạ",
"cut_off_in_the_middle": false
},
{
"start": 1109.3,
"end": 1110.44,
"text": " Ờ lúc đó nghe hả",
"cut_off_in_the_middle": false
},
{
"start": 1110.44,
"end": 1111.7,
"text": " Mình đi về nha",
"cut_off_in_the_middle": false
},
{
"start": 1112.2,
"end": 1115.64,
"text": " Còn tôi đưa về không hả?",
"cut_off_in_the_middle": false
},
{
"start": 1116.44,
"end": 1116.8,
"text": " Không",
"cut_off_in_the_middle": false
},
{
"start": 1118.0,
"end": 1119.6,
"text": " Có cần tôi đưa về không?",
"cut_off_in_the_middle": false
},
{
"start": 1128.3,
"end": 1129.1,
"text": " Thấy rồi.",
"cut_off_in_the_middle": false
},
{
"start": 1129.7,
"end": 1131.2,
"text": " Muốn tôi đưa về đúng không?",
"cut_off_in_the_middle": false
},
{
"start": 1131.4,
"end": 1132.4,
"text": " Ồ",
"cut_off_in_the_middle": false
},
{
"start": 1132.8,
"end": 1135.3999999999999,
"text": " Ông lên dạ sân nào",
"cut_off_in_the_middle": false
},
{
"start": 1136.0,
"end": 1136.6,
"text": " Cảm ơn.",
"cut_off_in_the_middle": false
},
{
"start": 1145.5,
"end": 1147.5,
"text": " Lắp vô bất cứ một tòa nhà nào được không?",
"cut_off_in_the_middle": false
},
{
"start": 1151.26,
"end": 1153.26,
"text": " Ông tự chọn của cô đem đi ăn nhậu hết rồi hả?",
"cut_off_in_the_middle": false
},
{
"start": 1153.26,
"end": 1155.26,
"text": " Đáng nhìn xíu đi",
"cut_off_in_the_middle": false
},
{
"start": 1155.26,
"end": 1157.26,
"text": " Tự chọn của con khỉ",
"cut_off_in_the_middle": false
},
{
"start": 1157.26,
"end": 1158.6,
"text": " Anh đi lẹ lẹ giùm tôi đi",
"cut_off_in_the_middle": false
},
{
"start": 1221.4,
"end": 1222.4,
"text": " Dô đi",
"cut_off_in_the_middle": false
},
{
"start": 1225.8,
"end": 1227.7,
"text": " Tao lại bật này",
"cut_off_in_the_middle": false
},
{
"start": 1228.3,
"end": 1229.4199999999998,
"text": " Anh đi, anh đi, anh đi.",
"cut_off_in_the_middle": false
},
{
"start": 1229.4199999999998,
"end": 1229.9199999999998,
"text": " Nè!",
"cut_off_in_the_middle": false
},
{
"start": 1230.5,
"end": 1232.0,
"text": " Ê!",
"cut_off_in_the_middle": false
},
{
"start": 1244.7,
"end": 1245.3,
"text": " À",
"cut_off_in_the_middle": false
},
{
"start": 1247.0,
"end": 1249.6,
"text": " Hãy em lụm nó về thì em có trách nhiệm với cuộc đời nó đi",
"cut_off_in_the_middle": false
},
{
"start": 1249.6,
"end": 1251.16,
"text": " Bắt dậy nuôi đi",
"cut_off_in_the_middle": false
},
{
"start": 1251.16,
"end": 1252.2,
"text": " À",
"cut_off_in_the_middle": false
},
{
"start": 1253.2,
"end": 1255.2,
"text": " Bây giờ làm sao em ơi, bây giờ...",
"cut_off_in_the_middle": false
},
{
"start": 1255.2,
"end": 1256.1000000000001,
"text": " Hả?",
"cut_off_in_the_middle": false
},
{
"start": 1256.1000000000001,
"end": 1257.3,
"text": " Làm sao bây giờ?",
"cut_off_in_the_middle": false
},
{
"start": 1257.6,
"end": 1259.6,
"text": " Cô Sao không có thích nuôi",
"cut_off_in_the_middle": false
},
{
"start": 1259.6,
"end": 1262.6,
"text": " Cô bị giỡn với các loại lông đó",
"cut_off_in_the_middle": false
},
{
"start": 1263.3,
"end": 1268.3,
"text": " Trước có một con cuốn dễ thương lắm á, anh đua mang về cũng phải mang đi mà",
"cut_off_in_the_middle": false
},
{
"start": 1269.0,
"end": 1270.64,
"text": " Ủa nói vậy là ba người đang ở cùng nhau hả?",
"cut_off_in_the_middle": false
},
{
"start": 1270.64,
"end": 1272.16,
"text": " Đúng rồi",
"cut_off_in_the_middle": false
},
{
"start": 1272.16,
"end": 1273.88,
"text": " Ba người ở chung với nhau á",
"cut_off_in_the_middle": false
},
{
"start": 1273.88,
"end": 1274.46,
"text": " Thì...",
"cut_off_in_the_middle": false
},
{
"start": 1274.46,
"end": 1278.22,
"text": " Thì cô mới có tiền trả tiền thuê nhà chứ hề",
"cut_off_in_the_middle": false
},
{
"start": 1278.22,
"end": 1279.7,
"text": " Nói thì cô không cần biết đâu",
"cut_off_in_the_middle": false
},
{
"start": 1280.3,
"end": 1281.86,
"text": " Em bắt về nuôi đi nha",
"cut_off_in_the_middle": false
},
{
"start": 1281.86,
"end": 1284.1,
"text": " Cái con này bắt ngoài đường về coi chừng bệnh tật",
"cut_off_in_the_middle": false
},
{
"start": 1284.6,
"end": 1287.0,
"text": " Anh mang ra ngoài phòng khám thu y luôn mà",
"cut_off_in_the_middle": false
},
{
"start": 1287.0,
"end": 1287.5,
"text": " Ha",
"cut_off_in_the_middle": false
},
{
"start": 1287.5,
"end": 1288.1999999999998,
"text": " Phiền phức quá",
"cut_off_in_the_middle": false
},
{
"start": 1288.6,
"end": 1290.8999999999999,
"text": " Thời gian của tôi không đủ để làm việc nữa kìa",
"cut_off_in_the_middle": false
},
{
"start": 1290.8999999999999,
"end": 1291.8999999999999,
"text": " Nó bắt về nuôi",
"cut_off_in_the_middle": false
},
{
"start": 1292.6999999999998,
"end": 1295.3,
"text": " Anh ta nói vậy là anh ta nhận nuôi mày á",
"cut_off_in_the_middle": false
},
{
"start": 1295.3,
"end": 1295.6,
"text": " Chúc mừng",
"cut_off_in_the_middle": false
},
{
"start": 1295.6,
"end": 1296.3999999999999,
"text": " Nè",
"cut_off_in_the_middle": false
},
{
"start": 1296.8,
"end": 1298.98,
"text": " Trình độ nghe nói tiếng Việt của em bây giờ đặc lây bồ gì rồi hả?",
"cut_off_in_the_middle": false
},
{
"start": 1298.98,
"end": 1301.1599999999999,
"text": " Tôi nói là tôi không có nuôi nó nghe rõ chưa?",
"cut_off_in_the_middle": false
},
{
"start": 1301.1599999999999,
"end": 1302.22,
"text": " Ông nhỏ là mày dơ hông?",
"cut_off_in_the_middle": false
},
{
"start": 1302.22,
"end": 1302.8999999999999,
"text": " Đại ông nhỏ",
"cut_off_in_the_middle": false
},
{
"start": 1303.8,
"end": 1304.6,
"text": " Lâu hả?",
"cut_off_in_the_middle": false
},
{
"start": 1304.9,
"end": 1306.1000000000001,
"text": " Phải đi tắm nữa nó",
"cut_off_in_the_middle": false
},
{
"start": 1306.8,
"end": 1307.2,
"text": " Đã",
"cut_off_in_the_middle": false
},
{
"start": 1310.9,
"end": 1314.5400000000002,
"text": " Một số lượng lớn các loài vật hên ngang đi lại trong rừng mưa nhiệt đới sậm dạp",
"cut_off_in_the_middle": false
},
{
"start": 1314.5400000000002,
"end": 1318.0,
"text": " và di chuyển liên tục dưới làng nước tối tăm.",
"cut_off_in_the_middle": false
},
{
"start": 1318.8,
"end": 1320.6,
"text": " Ui giời ơi",
"cut_off_in_the_middle": false
},
{
"start": 1321.1,
"end": 1321.9199999999998,
"text": " Đâu rồi cũng biết",
"cut_off_in_the_middle": false
},
{
"start": 1321.9199999999998,
"end": 1324.8799999999999,
"text": " Sơn",
"cut_off_in_the_middle": false
},
{
"start": 1324.8799999999999,
"end": 1326.12,
"text": " Hạ nó về chưa",
"cut_off_in_the_middle": false
},
{
"start": 1326.12,
"end": 1326.5,
"text": " Chưa",
"cut_off_in_the_middle": false
},
{
"start": 1326.5,
"end": 1327.0,
"text": " Không",
"cut_off_in_the_middle": false
}
] |