File size: 89,954 Bytes
0a09242 |
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 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 |
[
{
"start": 0.0,
"end": 6.12,
"text": " Est\u00e1 en el omoz, est\u00e1 desesperado, te fuiste de boca en los moz,"
},
{
"start": 6.2,
"end": 9.48,
"text": " controlate, que te van a llevar al fracaso,"
},
{
"start": 9.56,
"end": 12.6,
"text": " igual que esta derecha, llev\u00f3 al fracaso a todos los pol\u00edticos"
},
{
"start": 12.68,
"end": 17.2,
"text": " estadounidenses, en los moz, quien se mete conmigo, se seca,"
},
{
"start": 17.28,
"end": 21.28,
"text": " quien se mete con Venezuela, se seca en los moz."
},
{
"start": 21.36,
"end": 24.92,
"text": " Quiero estalea, vamos a darle el omoz, est\u00e1 listo,"
},
{
"start": 25.0,
"end": 29.76,
"text": " soy hijo de Bol\u00edvar y de Chave, no te tengo miedo en los moz."
},
{
"start": 29.76,
"end": 35.64,
"text": " Vamos a darlo, pues, donde quiera, como decimos en Caraca en los barrios,"
},
{
"start": 35.72,
"end": 38.92,
"text": " si t\u00fa quieres, yo quiero en los moz."
},
{
"start": 39.0,
"end": 41.120000000000005,
"text": " \u00bfD\u00ed d\u00f3nde?"
},
{
"start": 41.2,
"end": 43.0,
"text": " \u00bfQu\u00e9 es esto?"
},
{
"start": 43.08,
"end": 45.08,
"text": " \u00bfQu\u00e9 es esto?"
},
{
"start": 45.160000000000004,
"end": 46.68000000000001,
"text": " \u00bfQu\u00e9 es esto?"
},
{
"start": 46.760000000000005,
"end": 50.56,
"text": " El nombre de James, yo he estado trabajando durante las 14 a\u00f1os"
},
{
"start": 50.64,
"end": 54.32000000000001,
"text": " en la Marcarra del Plano y he tenido un lugar en la roba."
},
{
"start": 55.2,
"end": 58.32,
"text": " En la rada, empiezos y meards,"
},
{
"start": 58.4,
"end": 62.2,
"text": " min \u0432\u044b\u043f\u043e\u043b Pred moto y 1987 era eso,"
},
{
"start": 62.28,
"end": 65.68,
"text": " hay que hacer el red de el pointing a mano,"
},
{
"start": 65.76,
"end": 68.12,
"text": " donde que deb\u00eda para elelles,"
},
{
"start": 68.2,
"end": 71.24000000000001,
"text": " si no Britt Robita no scaled con Latorio,"
},
{
"start": 71.32,
"end": 73.84,
"text": " pues no sea conocer Su happily lo mejor."
},
{
"start": 73.92,
"end": 79.88,
"text": " El restaurants muerto al liby porque he sobretodo \ubd88\ufffdendo por un pasal de cruz finito?"
},
{
"start": 80.26,
"end": 83.44,
"text": " Me voy a\u043b\u0430\u0442urad la cavity del technol\u00f3gico bodya de Estado,"
},
{
"start": 83.44,
"end": 90.02,
"text": " la propiedad de italiansos gigantes aburgianos perteno con highlight \uc704\uc5d0 6,35 debe ser"
},
{
"start": 90.86,
"end": 95.67999999999999,
"text": "...'Revolution va no tidy, no por el mercado...\""
},
{
"start": 97.48,
"end": 98.5,
"text": " Histsorry"
},
{
"start": 113.44,
"end": 115.08,
"text": " si obtienas las cirugas de mungkin direction\u2026"
},
{
"start": 115.08,
"end": 115.96,
"text": " compete, evidentemente no destinamos a ver con cosas"
},
{
"start": 115.96,
"end": 118.14,
"text": " sino que no te phora,"
},
{
"start": 118.14,
"end": 120.03999999999999,
"text": " nos vamos a hacer,"
},
{
"start": 120.03999999999999,
"end": 121.64,
"text": " a partir de esa austeridad,"
},
{
"start": 121.64,
"end": 122.9,
"text": " lo tuckede\u0438\u043d de los babysavos,"
},
{
"start": 122.9,
"end": 125.66,
"text": " las cosas son el resultado de los inm \uc65c\ufffdigos,"
},
{
"start": 125.66,
"end": 127.92,
"text": " de asking de tr algumas factors\u2014"
},
{
"start": 127.92,
"end": 130.26,
"text": " y de acceso parFO capital de stitching 27."
},
{
"start": 131.22,
"end": 133.0,
"text": " Nos vamos a hacer que supongo que queda"
},
{
"start": 133.0,
"end": 136.62,
"text": " que dyeen el\ub124\uc694 de suinte cu \u043f\u0440\u043e\u0441fera puede sweeter para suicide,"
},
{
"start": 136.62,
"end": 138.62,
"text": " puede poder absolver a su victim,"
},
{
"start": 138.62,
"end": 140.48,
"text": " buat pleasantas permitidas,"
},
{
"start": 140.48,
"end": 142.26,
"text": " eso no se suena detalles del\u793e."
},
{
"start": 142.26,
"end": 150.16,
"text": " pero\u2026 \u00a1Es separado no se tempted media a\u00f1o tarde y countries espEs!"
},
{
"start": 172.26,
"end": 202.26,
"text": " No, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey"
},
{
"start": 202.26,
"end": 232.26,
"text": " me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me"
},
{
"start": 232.26,
"end": 262.26,
"text": ""
},
{
"start": 262.26,
"end": 283.74,
"text": " no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me"
},
{
"start": 284.9,
"end": 289.3,
"text": " no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, no, hey me, meu lePor su'"
},
{
"start": 292.26,
"end": 294.12,
"text": " ME SUSTRADEMI\u00d3N"
},
{
"start": 294.15999999999997,
"end": 295.46,
"text": " ME SUSTRADEMI\u00d3N"
},
{
"start": 295.48,
"end": 297.18,
"text": " MA exchanged"
},
{
"start": 315.7,
"end": 317.21999999999997,
"text": " esta pellet\u597d\u5403"
},
{
"start": 317.21999999999997,
"end": 318.28,
"text": " de Seoul"
},
{
"start": 318.28,
"end": 318.48,
"text": "\u0131\u011f\u0131"
},
{
"start": 318.48,
"end": 319.21999999999997,
"text": " de settlers"
},
{
"start": 319.21999999999997,
"end": 320.65999999999997,
"text": " en losisses"
},
{
"start": 320.66,
"end": 339.62,
"text": " \u00bfQu\u00e9 hago a Sherlock, Sherlock Nation"
},
{
"start": 340.5,
"end": 345.84000000000003,
"text": " \u00bfA amboseadendendo Oiente?"
},
{
"start": 346.52000000000004,
"end": 349.04,
"text": " Oiente te rompe de la segundaINTEL"
},
{
"start": 349.04,
"end": 352.40000000000003,
"text": " N-D-E-R-H-A-L fordi clockwise."
},
{
"start": 354.20000000000005,
"end": 355.56,
"text": "EX"
},
{
"start": 356.08000000000004,
"end": 364.84000000000003,
"text": " DUR centigrade,phones cord,"
},
{
"start": 364.92,
"end": 366.66,
"text": " EX seals."
},
{
"start": 367.72,
"end": 368.92,
"text": " H-A-L."
},
{
"start": 368.96000000000004,
"end": 373.92,
"text": " Realized Alawm parece que con 90000 subscribers"
},
{
"start": 374.48,
"end": 377.88,
"text": " Alawm quiere estar seni CD cuando los compras son raros bastantes"
},
{
"start": 377.88,
"end": 381.92,
"text": " La alter Mayor del rashano se ha changado de estagang PendTraaa"
},
{
"start": 381.92,
"end": 385.06,
"text": " Fegot\u00f3 por mi d\u00e9j\u00e0ely por ti"
},
{
"start": 385.15999999999997,
"end": 387.4,
"text": " Nobody believed me, no entiendo"
},
{
"start": 387.58,
"end": 388.86,
"text": " Ahora es m\u00e1ssiase a esta transgender"
},
{
"start": 388.86,
"end": 391.92,
"text": " De ver apostles y ahora laburger\u00eda"
},
{
"start": 392.02,
"end": 394.96,
"text": " me tambien era kalo detonado en mis reca time"
},
{
"start": 395.36,
"end": 397.28,
"text": " Tu mam\u00e1 \u05dc\u05d0 pastor por el huorno"
},
{
"start": 397.34,
"end": 398.46,
"text": " By war"
},
{
"start": 398.7,
"end": 401.32,
"text": " yo\u79d4io que me executive sa\u00edan"
},
{
"start": 401.6,
"end": 404.42,
"text": " Tu huro ha Bridge up, hay Gloria de Alis"
},
{
"start": 404.52,
"end": 407.12,
"text": " Es un normal"
},
{
"start": 407.12,
"end": 409.84000000000003,
"text": " m\u00edo y no he dimmitado de todo ese paro"
},
{
"start": 409.84000000000003,
"end": 414.18,
"text": " entonces, silhouette copiedigo"
},
{
"start": 414.18,
"end": 416.46,
"text": " se parece que ten\u00eda\u5426 decir"
},
{
"start": 416.46,
"end": 418.22,
"text": " ahora me darker colouredapa"
},
{
"start": 418.22,
"end": 420.76,
"text": " sigazuando instagram"
},
{
"start": 420.76,
"end": 423.24,
"text": "atique es que si la smell"
},
{
"start": 423.24,
"end": 428.82,
"text": " Opponent vamos a aprender"
},
{
"start": 428.82,
"end": 431.2,
"text": " founder una cosa"
},
{
"start": 431.2,
"end": 433.5,
"text": " es este dejar de improbwydd"
},
{
"start": 433.5,
"end": 436.28,
"text": " Es un tipo de quieto, pero, \u00bfme?"
},
{
"start": 436.28,
"end": 437.54,
"text": " Es una de sus..."
},
{
"start": 437.54,
"end": 439.62,
"text": " Es una de sus hijas, no hay drogas, es decir,"
},
{
"start": 439.62,
"end": 441.3,
"text": " allegedly, \u00a1Fuck allegedly!"
},
{
"start": 441.3,
"end": 443.78,
"text": " Ahora, este es Elon Musk,"
},
{
"start": 444.15999999999997,
"end": 446.96,
"text": " no existe pura un poco sonido, Les Arexico los\u0440\u0430\u0442\u044c\u00eda"
},
{
"start": 446.96,
"end": 449.2,
"text": " sino que la llamada Elon Musk estaba daar 2 a\u00f1os Bal osoby"
},
{
"start": 449.2,
"end": 450.38,
"text": " en luego"
},
{
"start": 451.41999999999996,
"end": 453.32,
"text": " 20 a\u00f1os, yo la dec\u00eda 10 a\u00f1os a Intarriver,"
},
{
"start": 453.32,
"end": 455.41999999999996,
"text": " ahora, un poco,"
},
{
"start": 455.41999999999996,
"end": 457.2,
"text": " Que el sost\u00e9n now, una entra\u00f1a podrisa este\uae08 despico"
},
{
"start": 457.2,
"end": 458.67999999999995,
"text": " No, no, no, no lo he preparad Woulde"
},
{
"start": 458.67999999999995,
"end": 466.41999999999996,
"text": " more Nein"
},
{
"start": 466.88,
"end": 468.94,
"text": " Ah\u00edMusic es a partir de turophy"
},
{
"start": 468.94,
"end": 472.29999999999995,
"text": " queIREGS SUND\u0142os y CONDY"
},
{
"start": 472.3,
"end": 491.5,
"text": " Para piarda que primero se"
},
{
"start": 491.5,
"end": 492.58000000000004,
"text": "quote"
},
{
"start": 492.58000000000004,
"end": 498.14,
"text": " \u00bfYa est\u00e1"
},
{
"start": 498.14,
"end": 499.1,
"text": " Laellel"
},
{
"start": 499.1,
"end": 504.1,
"text": " Ok, todos."
},
{
"start": 504.1,
"end": 509.1,
"text": " Estamos a la segmentura que estamos hablando de Elon Musk."
},
{
"start": 509.1,
"end": 511.1,
"text": " As\u00ed que lo que estoy haciendo es que estoy en el trabajo."
},
{
"start": 511.1,
"end": 513.1,
"text": " Estoy en el allies de vetta."
},
{
"start": 513.1,
"end": 516.1,
"text": " As\u00ed que creo que estoy en el balance de la fea."
},
{
"start": 516.1,
"end": 518.1,
"text": " Y estoy no s\u00e9 si es acerte de nadie."
},
{
"start": 518.1,
"end": 524.1,
"text": " Estoy en el valor de la Elon Musk."
},
{
"start": 524.1,
"end": 526.1,
"text": " Y con mi, de course, el valor de la fea."
},
{
"start": 526.6,
"end": 531.1,
"text": " No, estoy hydroafood de la experient nessa la gente me gusta mucho."
},
{
"start": 531.1,
"end": 532.58,
"text": "\u65b9 tribes."
},
{
"start": 532.58,
"end": 535.1,
"text": " Am\u00e9n, no se solo puede sanizarlo en la sociedad."
},
{
"start": 586.1,
"end": 591.1,
"text": " Y es algo hosecool handling estos d\u00edas"
},
{
"start": 591.1,
"end": 595.98,
"text": " Allen Juan\u0142 dir\u00eda que ayud\u3042\u3041"
},
{
"start": 595.98,
"end": 599.08,
"text": " aku te doblo va"
},
{
"start": 599.08,
"end": 599.7,
"text": " la gracias por todos\u00e4tt"
},
{
"start": 599.7,
"end": 604.4200000000001,
"text": " que dej\u00f3 en casa"
},
{
"start": 604.4200000000001,
"end": 609.4200000000001,
"text": " Guadalu\u00f1a"
},
{
"start": 612.22,
"end": 613.94,
"text": " Entanisha"
},
{
"start": 613.94,
"end": 614.2,
"text": " ribsil"
},
{
"start": 614.2,
"end": 630.0200000000001,
"text": " Ese muerto Ideally fue como un maj\u0105\u044e\u0441\u044cahah ear"
},
{
"start": 630.0200000000001,
"end": 631.94,
"text": " y cuando\u0435\u0432\u00eda el plu and Dohenman increasing"
},
{
"start": 631.94,
"end": 639.7800000000001,
"text": "i\u00f3 bombe."
},
{
"start": 645.22,
"end": 651.0400000000001,
"text": " una casa o una parasito"
},
{
"start": 651.04,
"end": 668.48,
"text": " social media en Brasil y troupe su misi\u00f3n ro"
},
{
"start": 668.48,
"end": 671.12,
"text": " era Brasil."
},
{
"start": 671.12,
"end": 677.62,
"text": " No me \uc0dd\uac01\u00f3 bien porque la m\u00fasica se relue a all\u00e1, \ud2b9\ud788 Twitter."
},
{
"start": 677.62,
"end": 682.1,
"text": " que ha optado ahora, default de esta grupo y neurologia..."
},
{
"start": 682.98,
"end": 685.22,
"text": " y esto no me neurons de \u0435\u0449\u0451 su 97 tan pressures semilego y est\u00e1 spikes pueden challenging"
},
{
"start": 687.38,
"end": 688.84,
"text": " rainizas, como bu almost no bienfig noticing el jusque attendiendo"
},
{
"start": 690.08,
"end": 693.74,
"text": " y que est\u00e1 BIENPREDOS para photographer hips"
},
{
"start": 693.78,
"end": 695.3,
"text": " otro peendo creer\u00eda deelia que alan Masele"
},
{
"start": 697.0,
"end": 698.82,
"text": " y ah\u00ed se survivoran sus hijasussianes"
},
{
"start": 698.82,
"end": 700.04,
"text": " para que engane en estas\u4ee5os"
},
{
"start": 701.48,
"end": 704.46,
"text": " y que comp severeven sus \ub8e8\ufffdossia"
},
{
"start": 704.46,
"end": 707.14,
"text": " que se esperen las ganas de threatening"
},
{
"start": 737.14,
"end": 744.14,
"text": " So he gave in to their demands and walked it back."
},
{
"start": 744.14,
"end": 748.14,
"text": " And Twitter is now coming back to Brazil,"
},
{
"start": 748.14,
"end": 751.14,
"text": " and surprisingly, after what, less than a month."
},
{
"start": 751.14,
"end": 754.14,
"text": " And on top of that, Elon is getting sued"
},
{
"start": 754.14,
"end": 756.14,
"text": " in multiple directions right now."
},
{
"start": 756.14,
"end": 762.14,
"text": " And on top of that, Elon is also seeing record, low profits"
},
{
"start": 762.14,
"end": 764.14,
"text": " from Tesla."
},
{
"start": 764.14,
"end": 767.14,
"text": " Like Tesla's hype is starting to fall out from 100."
},
{
"start": 767.14,
"end": 769.14,
"text": " Black of actual delivery."
},
{
"start": 769.14,
"end": 773.14,
"text": " All this new, there's new, new, new, it's new."
},
{
"start": 773.14,
"end": 775.14,
"text": " So I'm going to be my pass."
},
{
"start": 775.14,
"end": 778.14,
"text": " It's getting popular to attack Elon Musk."
},
{
"start": 778.14,
"end": 781.14,
"text": " So I'm watching out for people with hidden agendas."
},
{
"start": 781.14,
"end": 785.14,
"text": " Meaning is it Elon or is this political views?"
},
{
"start": 785.14,
"end": 792.14,
"text": " Is it him or is because the YMCA in WA have a beef with Elon"
},
{
"start": 792.14,
"end": 794.14,
"text": " because him and his daughter?"
},
{
"start": 794.14,
"end": 798.14,
"text": " I'm looking for a hidden agendas, and I'm going to reject them."
},
{
"start": 798.14,
"end": 802.14,
"text": " I'm only looking for solid, Elon Musk's focus reasons."
},
{
"start": 802.14,
"end": 806.14,
"text": " Because a lot of reasons, hey, anybody."
},
{
"start": 806.14,
"end": 809.14,
"text": " And when you have a hidden agenda and you pick a reason,"
},
{
"start": 809.14,
"end": 811.14,
"text": " I'm not down with that."
},
{
"start": 811.14,
"end": 812.14,
"text": " What does he want to say?"
},
{
"start": 812.14,
"end": 817.14,
"text": " Oh, so I have to be honest, like, as a, I have a hard time"
},
{
"start": 818.14,
"end": 825.14,
"text": " thinking Elon Musk is going to fail financially."
},
{
"start": 825.14,
"end": 829.14,
"text": " Like, if anyone, if any man on earth,"
},
{
"start": 829.14,
"end": 833.14,
"text": " you can't throw financial reasons why it's going to be over with."
},
{
"start": 833.14,
"end": 836.14,
"text": " I got to be the richest man in the world kind of get a pass."
},
{
"start": 836.14,
"end": 839.14,
"text": " And like, hey, the richest man in the world,"
},
{
"start": 839.14,
"end": 841.14,
"text": " it's a further known as the guy get a pass."
},
{
"start": 841.14,
"end": 846.14,
"text": " Because I would say Elon Musk falling off"
},
{
"start": 846.14,
"end": 849.14,
"text": " where people are laughing at him."
},
{
"start": 849.14,
"end": 854.14,
"text": " That looks to be around the $50 billion mark."
},
{
"start": 854.14,
"end": 857.14,
"text": " Again, like, as a, his failure,"
},
{
"start": 857.14,
"end": 863.14,
"text": " the levels he's playing on, Elon Musk failed if he's only worth $50 billion."
},
{
"start": 863.14,
"end": 868.14,
"text": " And then society will look at him as a failure with $50 billion."
},
{
"start": 868.14,
"end": 875.14,
"text": " So, I don't really like that angle because he's so high up on the financial spectrum."
},
{
"start": 876.14,
"end": 880.14,
"text": " Out of 80, you know, out of 8 billion people on earth,"
},
{
"start": 880.14,
"end": 883.14,
"text": " he might be number one, off and on number one."
},
{
"start": 883.14,
"end": 887.14,
"text": " So I really though, even if everything fails,"
},
{
"start": 887.14,
"end": 890.14,
"text": " it's just like, I just can't attest that to the world,"
},
{
"start": 890.14,
"end": 891.14,
"text": " richest man. Like, he's coming down."
},
{
"start": 891.14,
"end": 893.14,
"text": " You see this move, you see that move."
},
{
"start": 893.14,
"end": 897.14,
"text": " All his business is a good thing he's the richest man in the world."
},
{
"start": 897.14,
"end": 900.14,
"text": " So, yeah."
},
{
"start": 900.14,
"end": 904.14,
"text": " Please support this imaginary conversation with a subscription that helps me in real life."
},
{
"start": 904.14,
"end": 907.14,
"text": " Extra episodes, no commercials, no more watching my mouth."
},
{
"start": 907.14,
"end": 909.14,
"text": " For the people sponsored by the people."
},
{
"start": 909.14,
"end": 911.14,
"text": " I do what I can do, what I can do with."
},
{
"start": 911.14,
"end": 912.14,
"text": " Please do the same."
},
{
"start": 912.14,
"end": 916.14,
"text": " Now, back to the shit show."
},
{
"start": 916.14,
"end": 922.14,
"text": " On its promises and the lack of actually meeting the level of growth that it needed to sustain"
},
{
"start": 922.14,
"end": 927.14,
"text": " to continue being the kind of company that it's been for so long, it's fallen off."
},
{
"start": 927.14,
"end": 929.14,
"text": " They can't do it anymore."
},
{
"start": 929.14,
"end": 937.14,
"text": " Tesla and Elon Musk's other hyper-overvalued companies are losing that value,"
},
{
"start": 937.14,
"end": 940.14,
"text": " even in the eyes of those that overvalued them."
},
{
"start": 940.14,
"end": 944.14,
"text": " And so, he's in a bad spot right now, and it seems like he's getting desperate,"
},
{
"start": 944.14,
"end": 947.14,
"text": " even walking back some of his biggest promises, like..."
},
{
"start": 947.14,
"end": 950.14,
"text": " I still...no, he got a big gamble."
},
{
"start": 950.14,
"end": 954.14,
"text": " I think all he had, the one thing has to happen,"
},
{
"start": 954.14,
"end": 957.14,
"text": " that he's going to go even farther into the stratosphere."
},
{
"start": 957.14,
"end": 958.14,
"text": " This is one thing."
},
{
"start": 958.14,
"end": 959.14,
"text": " Come on, people."
},
{
"start": 959.14,
"end": 961.14,
"text": " Elon Musk's life is on the pause."
},
{
"start": 961.14,
"end": 965.14,
"text": " That's why this is the highest drug uses of all time right now."
},
{
"start": 965.14,
"end": 968.14,
"text": " Why?"
},
{
"start": 968.14,
"end": 974.14,
"text": " I think he can make $300 billion with a Trump administration."
},
{
"start": 974.14,
"end": 980.14,
"text": " This one thing has to go Elon Musk's way."
},
{
"start": 980.14,
"end": 984.14,
"text": " If Trump fuck around and win,"
},
{
"start": 984.14,
"end": 987.14,
"text": " I could actually see him reaching the trillion dollars."
},
{
"start": 987.14,
"end": 988.14,
"text": " What?"
},
{
"start": 988.14,
"end": 995.14,
"text": " Bro, bro, he got so much riding on Trump's victory, it's insane."
},
{
"start": 995.14,
"end": 1002.14,
"text": " And he's going to make more money off of Trump's presidency than Trump himself."
},
{
"start": 1002.14,
"end": 1007.14,
"text": " This guy is going to have the keys to look around America's regulations"
},
{
"start": 1007.14,
"end": 1009.14,
"text": " where we don't know nothing about."
},
{
"start": 1009.14,
"end": 1011.14,
"text": " The public don't know nothing about."
},
{
"start": 1011.14,
"end": 1014.14,
"text": " He's going to know which one to get rid of."
},
{
"start": 1014.14,
"end": 1016.14,
"text": " It's not going to be big news."
},
{
"start": 1016.14,
"end": 1022.14,
"text": " The ARP XYZ 1000 Amendment has been removed."
},
{
"start": 1022.14,
"end": 1027.1399999999999,
"text": " So now you can do this and stand on your head"
},
{
"start": 1027.1399999999999,
"end": 1030.1399999999999,
"text": " and say, Candyman, three times and you have a billion dollars,"
},
{
"start": 1030.1399999999999,
"end": 1035.1399999999999,
"text": " it will now give you $300 billion in tax credit and $100 billion."
},
{
"start": 1035.1399999999999,
"end": 1040.1399999999999,
"text": " It's going to be some crazy shit because he's going to have access"
},
{
"start": 1040.14,
"end": 1043.14,
"text": " to the wires of our country."
},
{
"start": 1043.14,
"end": 1047.14,
"text": " And he got to, hey, Trump, this some stuff you don't know about."
},
{
"start": 1047.14,
"end": 1050.14,
"text": " But this right here, can you give it to that for me?"
},
{
"start": 1050.14,
"end": 1051.14,
"text": " Yeah, yeah, yeah, yeah."
},
{
"start": 1051.14,
"end": 1055.14,
"text": " Give it to that one and this one, change this one to that one."
},
{
"start": 1055.14,
"end": 1058.14,
"text": " And I think we're going to fix a lot of things around here."
},
{
"start": 1058.14,
"end": 1065.14,
"text": " And it's going to go boom, $100 billion, another $100 billion."
},
{
"start": 1065.14,
"end": 1067.14,
"text": " It will be this."
},
{
"start": 1067.64,
"end": 1069.14,
"text": " Finally."
},
{
"start": 1076.5600000000002,
"end": 1079.16,
"text": " We're going to do another one below, really."
},
{
"start": 1079.16,
"end": 1083.14,
"text": " These things are a way of changing in mutual respect."
},
{
"start": 1083.14,
"end": 1085.14,
"text": " And so we're going to do."
},
{
"start": 1085.14,
"end": 1088.14,
"text": " There's going to be more and more."
},
{
"start": 1088.14,
"end": 1092.14,
"text": " So it's important to keep mouth shut once you've met this."
},
{
"start": 1092.14,
"end": 1094.14,
"text": " They don't have anything obvious."
},
{
"start": 1094.14,
"end": 1100.18,
"text": " no pregnantos en\ufffd\uc601 y lancons de ganzero electorario"
},
{
"start": 1101.24,
"end": 1105.22,
"text": " no es la produkti\u00f3n mas600"
},
{
"start": 1105.22,
"end": 1108.64,
"text": " as\u00ed que para ensinarla guerros"
},
{
"start": 1108.64,
"end": 1111.8000000000002,
"text": " no es as\u00ed algo SUPER"
},
{
"start": 1111.88,
"end": 1114.74,
"text": " itu es solo una importancia"
},
{
"start": 1117.14,
"end": 1118.92,
"text": " solo quedan\u044b\u0439"
},
{
"start": 1119.0400000000002,
"end": 1121.4,
"text": " enserjanos, melod\u00edas importante"
},
{
"start": 1121.4,
"end": 1126.5800000000002,
"text": " En el treated de \u0432\u0441\u0442\u0440\u0435\u0442i\u00f3n en Brasil Belle Carlo, la guerra depretad obeci\u00f3n\u798fius"
},
{
"start": 1126.5800000000002,
"end": 1148.76,
"text": " los estudios"
},
{
"start": 1148.76,
"end": 1152.64,
"text": " \u00e9spido previously as\u00ed como este"
},
{
"start": 1152.9,
"end": 1157.1,
"text": " ensorti\u0107dong coinc 1985"
},
{
"start": 1161.1,
"end": 1162.54,
"text": " de \u0420\u043e\u0441\u0441 crisis"
},
{
"start": 1168.84,
"end": 1171.6,
"text": " pero es Vergleichire"
},
{
"start": 1172.62,
"end": 1173.4,
"text": " para enrolled"
},
{
"start": 1174.3799999999999,
"end": 1174.46,
"text": " ya"
},
{
"start": 1175.42,
"end": 1175.72,
"text": " de"
},
{
"start": 1175.72,
"end": 1186.2,
"text": " suave la cleaneda para comer en la puta pesos de que slamse una porki"
},
{
"start": 1186.2,
"end": 1187.78,
"text": " Por emergency."
},
{
"start": 1187.78,
"end": 1190.02,
"text": " Pero todo esto hace dos a\u00f1os."
},
{
"start": 1190.02,
"end": 1191.44,
"text": " He\u76b4ada mi fou."
},
{
"start": 1191.44,
"end": 1194.38,
"text": " La\ufffd monopol\u00eda, pues ser\u00e1 to choque."
},
{
"start": 1194.38,
"end": 1196.02,
"text": " seems like otherwise I will die"
},
{
"start": 1196.02,
"end": 1197.28,
"text": " uh... super gambling."
},
{
"start": 1198.14,
"end": 1199.9,
"text": " El punto que hjey \u0432\u0435\u0441 kilo enacies"
},
{
"start": 1199.9,
"end": 1200.54,
"text": " Muzk,"
},
{
"start": 1200.54,
"end": 1202.0,
"text": " equipa BLOX since august,"
},
{
"start": 1202.0,
"end": 1203.48,
"text": " pero BEC Its team"
},
{
"start": 1203.48,
"end": 1204.7,
"text": " hope the courts will allow X"
},
{
"start": 1204.7,
"end": 1206.46,
"text": " open back up in Brazil."
},
{
"start": 1206.46,
"end": 1208.48,
"text": " La Sonido de Musk and having a bad enough weak"
},
{
"start": 1208.48,
"end": 1210.88,
"text": " le Zusando tiene que villeis"
},
{
"start": 1210.88,
"end": 1212.96,
"text": " combinar elaku con el espacio."
},
{
"start": 1213.1000000000001,
"end": 1214.14,
"text": " were\u041byman"
},
{
"start": 1214.14,
"end": 1215.14,
"text": " \u00bfNo te vas a dar una cosa?"
},
{
"start": 1215.14,
"end": 1221.14,
"text": " Pero yo creo que es muy bien, es muy bien, es muy bien, es muy bien, \u00bfpor qu\u00e9?"
},
{
"start": 1221.14,
"end": 1223.14,
"text": " \u00bfPor qu\u00e9?"
},
{
"start": 1223.14,
"end": 1226.14,
"text": " Porque Trump es un gran gran olio."
},
{
"start": 1226.14,
"end": 1230.14,
"text": " Es un gran gran olio, es un gran gran olio."
},
{
"start": 1230.14,
"end": 1236.14,
"text": " Y \u00e9l es el gran olio, un gran poder, \u00e9l quiere que se brinque,"
},
{
"start": 1236.14,
"end": 1238.74,
"text": " que se brinque, que se brinque, es gran gran."
},
{
"start": 1238.74,
"end": 1243.8400000000001,
"text": " Ellos quieren Trump que se brinque, el gran poder en la Am\u00e9rica."
},
{
"start": 1243.84,
"end": 1248.6599999999999,
"text": " Y ya mismo es en loco, pero Trump os tocases lo delas\ufffd."
},
{
"start": 1248.6599999999999,
"end": 1258.74,
"text": " El Birthmind va a spices de esas billanas, este \u0434\u043e\u043c, las l Cathores expertas engaged en un engrajo."
},
{
"start": 1261.4399999999998,
"end": 1265.28,
"text": " L'. applauds de \ufffdprozasIOzdocMachisS"
},
{
"start": 1265.28,
"end": 1272.0,
"text": " y \u00e9l es el gran Gerda con Charleston Electric Car"
},
{
"start": 1272.0,
"end": 1278.84,
"text": " So it's gonna be hard for Trump to please everybody"
},
{
"start": 1278.84,
"end": 1287.8,
"text": " And what you think I think Trump cares about the economy"
},
{
"start": 1287.8,
"end": 1294.12,
"text": " And him looking good more than Eli must become a trillionaire"
},
{
"start": 1294.12,
"end": 1300.44,
"text": " So if Eli is smart he will push things that's gonna make it's a"
},
{
"start": 1300.44,
"end": 1306.4,
"text": " economy number look better and I don't think he can do a better job than that"
},
{
"start": 1306.4,
"end": 1316.56,
"text": " Then big oil can really make really make the numbers go up because big oil"
},
{
"start": 1316.56,
"end": 1323.1200000000001,
"text": " say hey bring America back the American car industry needs help and that"
},
{
"start": 1323.12,
"end": 1330.56,
"text": " to do it in itself so yeah it's complicated it's complicated"
},
{
"start": 1330.56,
"end": 1334.9599999999998,
"text": " see this with a $15 million loss of the big companies they claim space X"
},
{
"start": 1334.9599999999998,
"end": 1340.8,
"text": " trespass on a parcel land on the US Mexico border that they purchased and"
},
{
"start": 1340.8,
"end": 1345.0,
"text": " say cards against humanity is suing Elon"
},
{
"start": 1350.52,
"end": 1355.52,
"text": " Like bro hey bro bro bro"
},
{
"start": 1355.52,
"end": 1362.04,
"text": " es suing Elon Musk for 15 million dollars I think I heard you say"
},
{
"start": 1362.04,
"end": 1372.28,
"text": " Elon Musk right now have I think approximately $200,000 million dollars"
},
{
"start": 1372.28,
"end": 1386.48,
"text": " I think Elon Musk has around $200,000 million dollars so if you gave each"
},
{
"start": 1386.48,
"end": 1392.2,
"text": " million that Elon Musk has a dollar worth you're almost dealing with a"
},
{
"start": 1392.2,
"end": 1397.2,
"text": " quarter million dollars as we speak right now I think I think he has I think"
},
{
"start": 1397.2,
"end": 1403.76,
"text": " that's right I think Elon Musk has $200,000 million right now and you talk about"
},
{
"start": 1403.76,
"end": 1414.64,
"text": " $15 million loss what did he do to cards against humanity what did he do to"
},
{
"start": 1414.64,
"end": 1436.64,
"text": " warrant the suit yeah it just it's I don't know what he did to cards against"
},
{
"start": 1436.64,
"end": 1442.8400000000001,
"text": " humanity to earn a lawsuit there but we'll see how that goes 2017 after Trump won"
},
{
"start": 1442.84,
"end": 1448.04,
"text": " plan to build his border wall cards against humanity crowdfunded a plan to"
},
{
"start": 1448.04,
"end": 1452.6,
"text": " for Trump's proposal they raised money for 150,000 subscribers to buy the land"
},
{
"start": 1452.6,
"end": 1457.1999999999998,
"text": " on the border and prevent the wall from being built now they are alleging that"
},
{
"start": 1457.1999999999998,
"end": 1462.4399999999998,
"text": " space X is encroaching on that land to house building materials for nearby"
},
{
"start": 1462.4399999999998,
"end": 1468.36,
"text": " project statement the games team wrote that after catching must that is"
},
{
"start": 1468.36,
"end": 1476.2199999999998,
"text": " amazing that cards against humanity raised money to buy a plan and prevent"
},
{
"start": 1476.2199999999998,
"end": 1480.1599999999999,
"text": " Trump from building border wall there and now Elon Musk is getting sued"
},
{
"start": 1480.1599999999999,
"end": 1486.84,
"text": " because he broke property law which is pretty serious like even for someone"
},
{
"start": 1486.84,
"end": 1491.84,
"text": " as wealthy as him not as easy to just buy his way out and lawyer his way out of"
},
{
"start": 1491.84,
"end": 1498.12,
"text": " trouble here I don't know I find it funny I think it's I think it's just very"
},
{
"start": 1498.12,
"end": 1502.6,
"text": " poetic it's a sooner for $15 million that's exactly what he can do"
},
{
"start": 1502.6,
"end": 1510.12,
"text": " face X on their turf must team quote gave us a 12-hour ultimate to accept a"
},
{
"start": 1510.12,
"end": 1514.24,
"text": " low-ball offer for less than half of the land's value we say go F yourself"
},
{
"start": 1514.24,
"end": 1520.0,
"text": " Elon Musk will see you in court so I know about the cards against humanity"
},
{
"start": 1520.0,
"end": 1525.72,
"text": " interesting of of I I just think they don't want the border wall built I guess"
},
{
"start": 1525.72,
"end": 1531.36,
"text": " not I don't want to do it is by the land I it's an option yeah what's the"
},
{
"start": 1531.36,
"end": 1534.2,
"text": " matter with that buddy I know that guy's conservative what's the matter with"
},
{
"start": 1534.2,
"end": 1538.4,
"text": " that though this is America I was under the impression that one of the greatest"
},
{
"start": 1538.4,
"end": 1544.6,
"text": " things about America is that you some random ass whoever can own land is that"
},
{
"start": 1544.6,
"end": 1552.6399999999999,
"text": " not like a big part of what makes America so dope you know that like anyone can"
},
{
"start": 1552.6399999999999,
"end": 1557.32,
"text": " buy land there was a time when that was like a huge privilege by the way like"
},
{
"start": 1557.32,
"end": 1562.06,
"text": " like a huge deal like like one of the big selling points of immigrating to"
},
{
"start": 1562.06,
"end": 1567.32,
"text": " America for example just straight up anyone can buy land there that was a rare"
},
{
"start": 1567.32,
"end": 1572.04,
"text": " thing in a certain time in history so I I just think it's funny that they're now"
},
{
"start": 1572.04,
"end": 1576.52,
"text": " talking about the process of buying land as though it's I don't know it's"
},
{
"start": 1576.52,
"end": 1580.12,
"text": " an implication there's something wrong with it in this scenario is just funny"
},
{
"start": 1580.12,
"end": 1583.6,
"text": " to me you know you're one of those fundamental American things out there be"
},
{
"start": 1583.6,
"end": 1587.6,
"text": " becoming a landowner somehow there's implied to be something wrong there if"
},
{
"start": 1587.6,
"end": 1591.04,
"text": " it's against the idea of building Trump's border wall I well I looked at it"
},
{
"start": 1591.04,
"end": 1596.0,
"text": " and that's incredible to me that they would think that was a good PR move is to"
},
{
"start": 1596.0,
"end": 1599.72,
"text": " stop the borders I mean it's like the number one issue in the country right"
},
{
"start": 1599.72,
"end": 1605.48,
"text": " now is Americans concerned about the situation I do love this by the way"
},
{
"start": 1605.48,
"end": 1609.6000000000001,
"text": " he's technically right this guy's a real content I can already tell I know I've"
},
{
"start": 1609.6000000000001,
"end": 1614.3600000000001,
"text": " seen this guy once and I already hate him that you can tell this guy is one of"
},
{
"start": 1614.3600000000001,
"end": 1621.92,
"text": " those like really smart like smooth talking slick back hair suit wearing like"
},
{
"start": 1621.92,
"end": 1628.32,
"text": " bullshit artists type conservative grifters you can tell he's using"
},
{
"start": 1628.32,
"end": 1633.2,
"text": " technically true statistics to push an incorrect position cards against"
},
{
"start": 1633.2,
"end": 1637.04,
"text": " humanity supposedly doing bad PR because the majority of Americans consider"
},
{
"start": 1637.04,
"end": 1642.04,
"text": " the border issue to be one of the most important issues on the ballot and so"
},
{
"start": 1642.04,
"end": 1647.9199999999998,
"text": " why would they be against the border wall if the border wall is so popular"
},
{
"start": 1647.9199999999998,
"end": 1652.6799999999998,
"text": " why did Trump lose in 2020 if you even this guy might not leave the Trump"
},
{
"start": 1652.6799999999998,
"end": 1657.4399999999998,
"text": " lost in 2020 why is he projected to lose this year why did he leave office"
},
{
"start": 1657.44,
"end": 1662.0800000000002,
"text": " with the lowest approval rating any president has had ever in history you"
},
{
"start": 1662.0800000000002,
"end": 1667.0,
"text": " guys know that right lower than Biden's approval rating ever got Trump had"
},
{
"start": 1667.0,
"end": 1673.72,
"text": " the lowest approval rating in presidential history leaving office just"
},
{
"start": 1673.72,
"end": 1680.64,
"text": " but I pointed out that this weird like technically true statistic about"
},
{
"start": 1680.64,
"end": 1686.48,
"text": " immigration what a hypocrite you want to talk about technically true would you"
},
{
"start": 1686.48,
"end": 1691.76,
"text": " just said was technically true but he's already out 350 million people he's"
},
{
"start": 1691.76,
"end": 1697.6,
"text": " in the top two again after having the worst that worst what they call it"
},
{
"start": 1697.6,
"end": 1702.16,
"text": " approval rating in American president history he's doing the same thing that"
},
{
"start": 1702.16,
"end": 1707.56,
"text": " he's cheating that other guy is you can't talk about how unpopular Trump is"
},
{
"start": 1708.36,
"end": 1715.6399999999999,
"text": " because he had the worst approval rating his president his you know his term"
},
{
"start": 1715.6399999999999,
"end": 1720.6,
"text": " and he's in the finals for we don't know who's gonna win whoever win they"
},
{
"start": 1720.6,
"end": 1725.28,
"text": " gonna barely win you can't then say that about the guy who's in the finals to"
},
{
"start": 1725.28,
"end": 1732.3999999999999,
"text": " rule the free world between the last the final two out of 350 million people"
},
{
"start": 1732.3999999999999,
"end": 1737.24,
"text": " with the world watching he's in the final two you can't use he was one of the"
},
{
"start": 1737.24,
"end": 1742.2,
"text": " most unpopular presidents when it's gonna be a coin toss for him to be"
},
{
"start": 1742.2,
"end": 1747.52,
"text": " president again so he's actually doing the same thing he claiming that guy is"
},
{
"start": 1747.52,
"end": 1754.92,
"text": " doing shouldn't being a high priority in the ballot and then abstracting that"
},
{
"start": 1754.92,
"end": 1759.84,
"text": " to being the majority of Americans must be in favor of border wall having"
},
{
"start": 1759.84,
"end": 1765.68,
"text": " immigration as a high concern on the ballot could mean your pro open borders"
},
{
"start": 1765.68,
"end": 1770.04,
"text": " and that's your number one concern that would mean that immigration would be"
},
{
"start": 1770.04,
"end": 1775.92,
"text": " one of your highest if not your highest ranking issue on the ballot Americans"
},
{
"start": 1775.92,
"end": 1780.8,
"text": " concerned about immigration does not automatically mean Americans anti-immigration"
},
{
"start": 1780.8,
"end": 1785.0800000000002,
"text": " otherwise Trump would have swept in 2020 and he wouldn't have had the"
},
{
"start": 1785.0800000000002,
"end": 1788.3600000000001,
"text": " lowest approval rating ever when he left office because he wouldn't have left"
},
{
"start": 1788.3600000000001,
"end": 1793.48,
"text": " office at the southern border and what was popular in 2017 was to make that"
},
{
"start": 1793.48,
"end": 1796.88,
"text": " effort more difficult but different times well the government instilled"
},
{
"start": 1796.88,
"end": 1801.08,
"text": " immigration conversation but the government can still build on on the edge of"
},
{
"start": 1801.08,
"end": 1803.96,
"text": " their land because they still have the rights to do that with that being said it"
},
{
"start": 1803.96,
"end": 1808.56,
"text": " is fascinating I wonder if there's a sale in cards against humanity given how"
},
{
"start": 1808.56,
"end": 1812.68,
"text": " much they're taking on Elon Musk so aggressively but listen I mean with"
},
{
"start": 1812.68,
"end": 1817.0,
"text": " what's happening in Brazil this is a huge market is this like that you on"
},
{
"start": 1817.0,
"end": 1823.48,
"text": " Musk fan hour like are that it rising has always been this like depraved"
},
{
"start": 1823.48,
"end": 1828.2,
"text": " attempted appearing centrist and balanced where you've got like the host"
},
{
"start": 1828.2,
"end": 1831.0,
"text": " that's supposedly left wing and the host that's supposedly left wing or"
},
{
"start": 1831.0,
"end": 1833.92,
"text": " right wing but the host that's right wing is a fascist and the host that's"
},
{
"start": 1833.92,
"end": 1840.8,
"text": " left wing is like at best a populist dump fuck or or sorry at best completely"
},
{
"start": 1840.8,
"end": 1845.36,
"text": " incapable of defending like populist progressive positions or such a"
},
{
"start": 1845.36,
"end": 1848.54,
"text": " populist that they're basically conservative it seems like that might be"
},
{
"start": 1848.54,
"end": 1853.36,
"text": " this lady right now what point is she making well you know cards against"
},
{
"start": 1853.36,
"end": 1857.1999999999998,
"text": " humanity must have a lot of money it must be doing really well right now if"
},
{
"start": 1857.1999999999998,
"end": 1860.24,
"text": " they're going against Elon Musk because you know he's really rich and powerful"
},
{
"start": 1860.24,
"end": 1866.1999999999998,
"text": " you know yeah that's literally the entire point it's just dick riding Elon"
},
{
"start": 1866.1999999999998,
"end": 1871.04,
"text": " yeah that's all she's doing so like oh my god going after Elon are you sure"
},
{
"start": 1871.04,
"end": 1879.6,
"text": " are you so rich and powerful but as a defense of him not as a attacker Elon Musk"
},
{
"start": 1879.6,
"end": 1885.3999999999999,
"text": " and he cried he had a fifth I'm sure his legal act the legal experts around"
},
{
"start": 1885.3999999999999,
"end": 1893.1599999999999,
"text": " him and his lawyers were advising him to not to not stand down okay maybe okay"
},
{
"start": 1893.1599999999999,
"end": 1897.72,
"text": " maybe she's not an Elon dick rider I don't know she might be trying to play"
},
{
"start": 1897.72,
"end": 1901.8,
"text": " the like centrist position usually they the like the non blatantly right wing"
},
{
"start": 1901.8,
"end": 1905.92,
"text": " host just ends up being more of a centrist than representative of progressive"
},
{
"start": 1905.92,
"end": 1912.56,
"text": " politics initially and here he is yeah I don't blame him for standing I mean"
},
{
"start": 1912.56,
"end": 1916.84,
"text": " it's not his it's the authoritarian governments fault like this is the same as"
},
{
"start": 1916.84,
"end": 1920.4,
"text": " when China says okay Google could be in China but you can't have any"
},
{
"start": 1920.4,
"end": 1924.48,
"text": " serve unfriendly search results for Xi Jinping and then the company says what do"
},
{
"start": 1924.48,
"end": 1928.08,
"text": " you about this and then finally say okay it is not the same thing Elon Musk"
},
{
"start": 1928.08,
"end": 1934.8,
"text": " literally bought Twitter while claiming that he will only apply Twitter's"
},
{
"start": 1934.8,
"end": 1941.04,
"text": " bands TOS and like shadow bands and stuff on people who break local laws so"
},
{
"start": 1941.04,
"end": 1946.92,
"text": " technically his like he could have followed through on what the Brazilian"
},
{
"start": 1946.92,
"end": 1951.28,
"text": " Supreme Court asked of him and not even have ended up walking back something"
},
{
"start": 1951.28,
"end": 1955.6,
"text": " that he claimed before because he never claimed that he wouldn't comply with"
},
{
"start": 1955.6,
"end": 1960.2,
"text": " legal requests if if something that's posted is against the law because he's"
},
{
"start": 1960.2,
"end": 1963.6399999999999,
"text": " always said at least I remember him saying that didn't that wasn't included"
},
{
"start": 1963.6399999999999,
"end": 1968.08,
"text": " free speech but he has been protecting CP posters famously with the Don"
},
{
"start": 1968.08,
"end": 1973.24,
"text": " Lucre guy and obviously in this case the content that Brazil won't remove was"
},
{
"start": 1973.24,
"end": 1979.52,
"text": " blatantly illegal violent speech like speech that was meant to encourage"
},
{
"start": 1979.52,
"end": 1985.48,
"text": " violence and Elon refused to because it wasn't about complying with law it was"
},
{
"start": 1985.48,
"end": 1992.44,
"text": " about appeasing the people who use free speech as a euphemism for hate speech"
},
{
"start": 1992.44,
"end": 1997.36,
"text": " that's all it was about they find like it's not it's bad it's not a company's"
},
{
"start": 1997.36,
"end": 2002.04,
"text": " fault what you do when an authoritarian government orders you do censorship"
},
{
"start": 2002.04,
"end": 2007.32,
"text": " or die like that's that's them that's their censorship or died going along with"
},
{
"start": 2007.32,
"end": 2010.72,
"text": " it in order to operate in these companies in these countries to some degree"
},
{
"start": 2010.72,
"end": 2014.36,
"text": " or saying no or throwing up their hands and we refuse either choice is morally"
},
{
"start": 2014.36,
"end": 2018.8999999999999,
"text": " valid it's just again to to but does this guy even believe it should be illegal"
},
{
"start": 2018.8999999999999,
"end": 2022.36,
"text": " to yell fire in a crowd of theater when there's no fire does this guy even"
},
{
"start": 2022.36,
"end": 2027.24,
"text": " believe in the concept of their being laws that restrict certain things that"
},
{
"start": 2027.24,
"end": 2030.84,
"text": " you can not even restrict the punish certain things you can say if after the"
},
{
"start": 2030.84,
"end": 2035.6399999999999,
"text": " fact a criminal court confined that there was malice and intended intent to"
},
{
"start": 2035.64,
"end": 2041.1000000000001,
"text": " commit a crime there because like that's how it works like you can't just go to"
},
{
"start": 2041.1000000000001,
"end": 2045.68,
"text": " jail for saying something no matter what like even if you go to jail for like"
},
{
"start": 2045.68,
"end": 2048.88,
"text": " credible threats they have to prove the threats were credible you had means"
},
{
"start": 2048.88,
"end": 2052.46,
"text": " you intended to actually follow through on them a bunch of other standards have"
},
{
"start": 2052.46,
"end": 2057.6800000000003,
"text": " been met to even like go after someone criminally for making death threats"
},
{
"start": 2057.6800000000003,
"end": 2063.0,
"text": " right like there's always been this extremely high standard for any speech to"
},
{
"start": 2063.0,
"end": 2067.2,
"text": " be found unlawful in the first place in America so it's just so weird to me"
},
{
"start": 2067.2,
"end": 2075.74,
"text": " that this guy is implying that America is to or Brazil even is to harsh when"
},
{
"start": 2075.74,
"end": 2079.14,
"text": " it comes to like legislator who cares from one sky I'm pretty sure is"
},
{
"start": 2079.14,
"end": 2083.6,
"text": " American what the fuck she care about Brazil's like freedom of speech I mean"
},
{
"start": 2083.6,
"end": 2088.48,
"text": " like like all seriousness here like what the fuck right does he have to be like"
},
{
"start": 2088.48,
"end": 2093.92,
"text": " oh Brazil how could they do this their people of Brazil should change their"
},
{
"start": 2093.92,
"end": 2097.76,
"text": " laws around speech so that this is legal or that's illegal or whatever it's like"
},
{
"start": 2097.76,
"end": 2104.0,
"text": " really you're an American pundit like this isn't your country like aren't you"
},
{
"start": 2104.0,
"end": 2107.56,
"text": " conservatives the ones always arguing that America needs to be more isolationist"
},
{
"start": 2107.56,
"end": 2110.68,
"text": " we do not get involved with wars not tell other countries they're what"
},
{
"start": 2110.68,
"end": 2114.36,
"text": " business they should be involved in like I just by"
},
{
"start": 2114.36,
"end": 2120.7200000000003,
"text": " Elon you motherfucker you smart motherfucker damn I never say what is"
},
{
"start": 2120.7200000000003,
"end": 2126.76,
"text": " genius bro this is different type of genius you motherfucker that the"
},
{
"start": 2126.76,
"end": 2132.2400000000002,
"text": " revolution is trying to be hijacked but I tell you why I tell you why Elon"
},
{
"start": 2132.2400000000002,
"end": 2137.32,
"text": " this I never say was this word you motherfuckin Elon got me now I have to"
},
{
"start": 2137.32,
"end": 2146.1200000000003,
"text": " vet the revolution for hidden agendas I know I know the resistance seem like"
},
{
"start": 2146.1200000000003,
"end": 2151.36,
"text": " is growing but these are murder I look around these are mercenaries being"
},
{
"start": 2151.36,
"end": 2161.1600000000003,
"text": " sent by other other kingdoms these are mercenaries I'm surrounded by enemy of"
},
{
"start": 2161.1600000000003,
"end": 2166.36,
"text": " mine of you know that thing you know that bullshit to say a friend of enemy"
},
{
"start": 2166.36,
"end": 2171.48,
"text": " thing friend of mine bullshit you motherfucker Elon please support this"
},
{
"start": 2171.48,
"end": 2174.92,
"text": " imaginary conversation with this description that helps me in real life extra"
},
{
"start": 2174.92,
"end": 2177.4,
"text": " episodes no commercials no more watching my mouth for the people's"
},
{
"start": 2177.4,
"end": 2181.36,
"text": " positive by the people I do what I can do what I can do it please do the same"
},
{
"start": 2181.36,
"end": 2186.48,
"text": " now back to the sugar honey ice t-shirt that's why we must stay on the case"
},
{
"start": 2186.48,
"end": 2196.0,
"text": " because we came for the failure of Elon Musk solely in a generic"
},
{
"start": 2196.0,
"end": 2201.6,
"text": " marching orders type of way so we came into this game this fight basically alone"
},
{
"start": 2201.6,
"end": 2209.52,
"text": " and we came with no hidden agendas so that's why Elon Musk fail rhetoric is"
},
{
"start": 2209.52,
"end": 2217.36,
"text": " important because I'm not speaking on behalf of something else of reason I"
},
{
"start": 2217.36,
"end": 2221.8,
"text": " have no hidden agendas I don't have another reason why I'm going after"
},
{
"start": 2221.8,
"end": 2228.16,
"text": " Elon so I look around the numbers are growing but they ain't about that life"
},
{
"start": 2228.16,
"end": 2232.32,
"text": " they ain't about that life they they all say so what's the real reason why you"
},
{
"start": 2232.32,
"end": 2236.64,
"text": " hear what's the real reason why here oh because you don't like gay people oh"
},
{
"start": 2237.04,
"end": 2241.7599999999998,
"text": " oh welcome well I guess welcome but yeah so why why are you here why are you here"
},
{
"start": 2241.7599999999998,
"end": 2250.16,
"text": " oh because you're a bleed heart liberal why why are you here why are you here or"
},
{
"start": 2250.16,
"end": 2261.52,
"text": " you're a scorned baby mama but it's not on accident I was chasing Elon Musk"
},
{
"start": 2262.24,
"end": 2277.28,
"text": " down before all these allies came and I'm saying this so I was on Elon Musk's heels before"
},
{
"start": 2277.28,
"end": 2284.08,
"text": " other people had hidden agendas why why they don't like Elon Musk but I'm here to tell you guys"
},
{
"start": 2284.88,
"end": 2292.7999999999997,
"text": " that's on purpose that's on purpose and Elon Musk is just a thief like he's easily just"
},
{
"start": 2292.7999999999997,
"end": 2299.12,
"text": " still other people shit other people I deals in concepts he's a steadier he's a critiquer of good"
},
{
"start": 2299.12,
"end": 2307.36,
"text": " shit he he's a scout he's a scout and listen to this dickhead talk about Elon Musk valid points"
},
{
"start": 2307.36,
"end": 2315.28,
"text": " why are you really here made me realize Elon Musk did this on purpose I was like where where"
},
{
"start": 2315.28,
"end": 2325.36,
"text": " did he get that from duh he got from Trump he got from Trump now roll with me on this one we wind"
},
{
"start": 2325.36,
"end": 2335.76,
"text": " the clock and detach Trump away from the Republican Party detach him from politics detach him from"
},
{
"start": 2336.1600000000003,
"end": 2345.36,
"text": " president detach him from red necks detach him from dixie flags detach him from politics at all"
},
{
"start": 2345.36,
"end": 2353.1200000000003,
"text": " that's a detachment he's alone he's out there alone and I know you guys you guys can't separate"
},
{
"start": 2353.1200000000003,
"end": 2359.28,
"text": " yourself from you loving Trump to understand what I'm about to say he might begin done like"
},
{
"start": 2359.36,
"end": 2369.6800000000003,
"text": " diddy right now if it wasn't for his gang wasn't for his gang he might be been done like diddy"
},
{
"start": 2371.44,
"end": 2379.0400000000004,
"text": " he turned into Teflon gone after he had the backing blind backing of half of America"
},
{
"start": 2379.52,
"end": 2389.68,
"text": " what you saying if pub daddy Donald Trump Donald Trump is pub daddy as Barack Obama"
},
{
"start": 2392.16,
"end": 2399.52,
"text": " so so Elon Musk is a per... Elon Musk is a scout he sees things and he replicates things and he"
},
{
"start": 2399.52,
"end": 2405.7599999999998,
"text": " takes credit for things so of course he's doing his military his his strategies the same thing"
},
{
"start": 2405.76,
"end": 2411.28,
"text": " he sees people do things to pull off things and he takes the concept and the the whole of blueprint"
},
{
"start": 2411.28,
"end": 2419.44,
"text": " of it and he applied because one thing Donald Trump has a common with Elon Musk"
},
{
"start": 2421.6800000000003,
"end": 2427.44,
"text": " right or wrong it's a lot of bumpy roads it's a lot of speculation a lot of things coming down"
},
{
"start": 2427.44,
"end": 2432.8,
"text": " the pipeline of I ain't saying right or wrong it's a lot of things that could that could ruin the"
},
{
"start": 2432.8,
"end": 2442.0,
"text": " motherfucker especially when you're all alone so what you saying I remember Elon Musk before he"
},
{
"start": 2442.0,
"end": 2449.44,
"text": " was mr. free speech mr. republican and I can tell you I can matter of fact I'm gonna"
},
{
"start": 2449.44,
"end": 2458.7200000000003,
"text": " Elon Musk hysterical I'm gonna Elon Musk hysterical I can point to the exact event where he"
},
{
"start": 2458.72,
"end": 2465.52,
"text": " deployed this weapon I can tell I know I'll see it crystal clear you want to know what it is"
},
{
"start": 2466.56,
"end": 2477.68,
"text": " what is it the exact moment where he employed this tactic of I call it the Donald Trump tactic"
},
{
"start": 2477.68,
"end": 2484.16,
"text": " meaning where he got back up he wouldn't get back up and half the country back and you up"
},
{
"start": 2484.24,
"end": 2489.68,
"text": " it's a motherfucker so while you look at Elon Musk like he's like I look at Elon Musk not be talking"
},
{
"start": 2489.68,
"end": 2495.68,
"text": " about Elon Musk he's fucking up he's fucking up why is he doing that why is he doing that so"
},
{
"start": 2495.68,
"end": 2502.16,
"text": " it was surely if you look at where he's taking me and distracting me and the bumping along I don't"
},
{
"start": 2502.16,
"end": 2507.04,
"text": " think Jewish people think I like them I don't think homie you know me like it's just getting confused"
},
{
"start": 2507.04,
"end": 2513.3599999999997,
"text": " and but it's not me it's on purpose he's running through a minefield and I'm saying why is this"
},
{
"start": 2513.36,
"end": 2521.84,
"text": " dickhead running through a minefield to blow up stuff that usually would take down not for him"
},
{
"start": 2521.84,
"end": 2528.96,
"text": " he's running through it so I can step on the line for protection I can tell you the exact event"
},
{
"start": 2528.96,
"end": 2535.44,
"text": " and he deployed it to tell you how how how how bother he can be he dropped the nuclear bomb"
},
{
"start": 2535.44,
"end": 2540.08,
"text": " on something that really wasn't a nuclear bomb and he brought out nuclear bomb which is when he"
},
{
"start": 2540.08,
"end": 2544.56,
"text": " turned into mr republican and the freedom of speech on something that I don't think"
},
{
"start": 2544.56,
"end": 2550.16,
"text": " what that big but he was so scared of it right when it was coming down on pipeline he he he"
},
{
"start": 2550.16,
"end": 2558.64,
"text": " he employed the Donald Trump I need backup hand job on that plane that horse for horse that hand"
},
{
"start": 2558.64,
"end": 2565.92,
"text": " job on that plane for horse he was too scared to take on that uh with that what they call it"
},
{
"start": 2566.2400000000002,
"end": 2576.2400000000002,
"text": " that scandal he didn't want to take on that that scandal uh by himself because he saw how much"
},
{
"start": 2576.2400000000002,
"end": 2581.28,
"text": " protection Donald Trump I ain't saying right or wrong how much protection Donald Trump has got"
},
{
"start": 2581.84,
"end": 2588.8,
"text": " for his scandals right or for his scandals if Donald Trump didn't have the support of half the"
},
{
"start": 2588.8,
"end": 2595.12,
"text": " country man good luck good luck out on your own you better ask what's the guy name Kevin Spacey"
},
{
"start": 2596.48,
"end": 2604.96,
"text": " right or wrong a good luck good luck but having half the country on your side you forever or hero"
},
{
"start": 2604.96,
"end": 2611.6800000000003,
"text": " the good the bad the ugly you forever you forever hero because wherever you go it might be somebody"
},
{
"start": 2611.6800000000003,
"end": 2617.6,
"text": " talking shit but it's the same amount of people that probably got your back so you never long so uh"
},
{
"start": 2618.08,
"end": 2624.48,
"text": " that right when that uh that scandal of him offering the horse for somebody to stroke his pony"
},
{
"start": 2625.44,
"end": 2630.88,
"text": " that was being like as in some like sometimes you could be too like and sometimes you could be too"
},
{
"start": 2630.88,
"end": 2640.32,
"text": " clean and then you lose your your edge you lose your edge like uh I walked away so much from the streets"
},
{
"start": 2640.32,
"end": 2646.96,
"text": " and the street mentality where almost turned me into a caron like now now I'm not even brave now"
},
{
"start": 2646.96,
"end": 2652.16,
"text": " I'm not even tough you know me now now I don't break any laws like what type of shit is that like"
},
{
"start": 2652.24,
"end": 2659.92,
"text": " like I was I was scared to drive after I smoke a joint and take a shot I used to drive around with a"
},
{
"start": 2659.92,
"end": 2667.04,
"text": " half a pint half okay I just drive around with a pint and the blood because like basically I'm saying"
},
{
"start": 2669.8399999999997,
"end": 2676.8799999999997,
"text": " he was almost trying to be mr clean they're having babies by his sister all this shit"
},
{
"start": 2676.96,
"end": 2686.0,
"text": " and that is magnetized when you're trying to be mr clean and when that when that pony that"
},
{
"start": 2686.0,
"end": 2691.52,
"text": " that that struck my pony for a horse scandal was coming he decided I need backup"
},
{
"start": 2692.7200000000003,
"end": 2699.92,
"text": " and he slowly rolled out or alt-right identity plan to hide behind"
},
{
"start": 2700.16,
"end": 2710.56,
"text": " and so what you saying I'm saying I have to my army seemed like it grew but it grew as a reaction"
},
{
"start": 2710.56,
"end": 2717.76,
"text": " to what Elon Musk did on purpose and the reason why he's a he's not the best businessman is"
},
{
"start": 2718.4,
"end": 2724.32,
"text": " he did allow these things for him and not for the betterment of his business the the master plan"
},
{
"start": 2725.28,
"end": 2732.48,
"text": " I'm focused around Elon Musk being okay so Elon Musk was trying to act holy or didn't"
},
{
"start": 2732.48,
"end": 2738.88,
"text": " thou and saving the world in a type of way where as in he's for everybody he's for the world he"
},
{
"start": 2738.88,
"end": 2745.1200000000003,
"text": " want the world's money personal things happen and he projected it's going to be a rough ride"
},
{
"start": 2746.0800000000004,
"end": 2751.92,
"text": " when you're when you're fucking multiple mid 20 year olds and you're almost 60 and you're"
},
{
"start": 2752.0,
"end": 2757.92,
"text": " giving them pregnant when you're fucking the secondary at the same time you're while your 20 mid 20"
},
{
"start": 2757.92,
"end": 2762.96,
"text": " year old wife is pregnant and they at the same hospital at the same time when your dad is"
},
{
"start": 2762.96,
"end": 2772.16,
"text": " fucking your sister and having kids with him when your granddad was a Nazi like it and then a"
},
{
"start": 2772.16,
"end": 2777.76,
"text": " scam some scandal like you you offering you want a girl to stroke your dick on the plane for you"
},
{
"start": 2777.76,
"end": 2784.8,
"text": " buy her horse like as it is almost like a switch it was like a cold switch and how darren"
},
{
"start": 2784.8,
"end": 2791.92,
"text": " trump got protected because of the army he he embraced he took over the like he got our army now"
},
{
"start": 2793.44,
"end": 2800.6400000000003,
"text": " Elon Musk is doing the same doing the same thing so once I'm getting somewhere with that and I'm"
},
{
"start": 2800.6400000000003,
"end": 2805.76,
"text": " not playing this shit we were out of here I want to ever say this point and make a point of"
},
{
"start": 2805.92,
"end": 2811.2000000000003,
"text": " the army is growing but everybody got hidden the genders everybody got everybody got hidden"
},
{
"start": 2811.2000000000003,
"end": 2815.36,
"text": " the genders and the cool thing about it is the reason why it's not all that bad least there"
},
{
"start": 2815.36,
"end": 2820.8,
"text": " searching around for true stuff so that's cool that's why that's why I'm not kicking them out the"
},
{
"start": 2820.8,
"end": 2826.4,
"text": " army because least there are searching so much stuff it's so much stuff to talk shit about"
},
{
"start": 2826.4,
"end": 2832.1600000000003,
"text": " Elon Musk so much stuff for valid reasons but I'm just being honest it's so they it's so many"
},
{
"start": 2832.16,
"end": 2837.3599999999997,
"text": " valid reasons they just come looking around for one and picking one but the bullets the shooting"
},
{
"start": 2837.3599999999997,
"end": 2842.08,
"text": " bullets fuck it let them shoot long they shoot in the right direction but they're not taking over"
},
{
"start": 2842.08,
"end": 2849.2,
"text": " this revolution and that's why I have to listen to people like this now that's that speaking facts"
},
{
"start": 2849.2,
"end": 2856.3199999999997,
"text": " but with hidden agendas because Elon Musk ran into that field for protection he ran into that"
},
{
"start": 2856.4,
"end": 2864.7200000000003,
"text": " field on purpose the reason why I got to talk about politics because Elon Musk is attempting to"
},
{
"start": 2864.7200000000003,
"end": 2868.48,
"text": " hide in the capital in the White House he's attempting to hide in the White House"
},
{
"start": 2871.52,
"end": 2880.48,
"text": " what the reason why the reason why I got a lot of homosexuals don't like Elon Musk"
},
{
"start": 2880.56,
"end": 2887.92,
"text": " because he took his he took aim at them because of his daughter"
},
{
"start": 2890.88,
"end": 2896.64,
"text": " because of his daughter so you might not think so but that's covering itself like"
},
{
"start": 2898.32,
"end": 2904.88,
"text": " I guess how my sense of humor is people might people might think I'm anti-homosexual I'm not they"
},
{
"start": 2904.96,
"end": 2912.7200000000003,
"text": " can't have a seat at the table just can't sit on my lap my official day but when you take certain"
},
{
"start": 2912.7200000000003,
"end": 2927.92,
"text": " stances you already have a nation behind you Elon Musk's anti gay rhetoric has given him has given"
},
{
"start": 2928.88,
"end": 2936.2400000000002,
"text": " millions and millions of millions of more followers that's using Elon Musk just like I said these"
},
{
"start": 2936.2400000000002,
"end": 2943.12,
"text": " guys are using why they don't like something else to join the revolution so when you do things"
},
{
"start": 2943.12,
"end": 2950.0,
"text": " like that you automatically have allies and backup and I'm dealing with all this shit is because"
},
{
"start": 2950.0,
"end": 2955.6800000000003,
"text": " Elon went to hide in these topics he went to hide there and I tell you one thing smart move"
},
{
"start": 2956.16,
"end": 2962.96,
"text": " a smart move because if Elon Musk was standing along but he gets far to shit that take down you need"
},
{
"start": 2962.96,
"end": 2969.04,
"text": " the army you need a you know you need the army and he got a digital one and he's joining these big"
},
{
"start": 2969.04,
"end": 2973.52,
"text": " groups making big moves and you might say man Elon you fucking up I'm just really not hitting"
},
{
"start": 2973.52,
"end": 2981.04,
"text": " fucking up he's hiding if you went from Republican Party and Mr. Free Speech"
},
{
"start": 2981.52,
"end": 2993.36,
"text": " and anti homosexual rhetoric and with the Mr. right wing that voted for Obama I think"
},
{
"start": 2993.36,
"end": 3004.96,
"text": " and Hillary that Mr. Votafor Obama that guy is wasn't for the right and anti homosexual I think"
},
{
"start": 3004.96,
"end": 3013.52,
"text": " he already be a weirdo I think I think he will already be a weirdo already you know what's"
},
{
"start": 3013.52,
"end": 3019.36,
"text": " crazy I think I think you're right I think Elon Musk standing along will already be weird"
},
{
"start": 3023.04,
"end": 3028.32,
"text": " so yeah we're out of here man no dudes make some good points but we're out of here"
},
{
"start": 3029.44,
"end": 3034.56,
"text": " I rather leave on that point like like I am vetting because put this way this is what I'm saying"
},
{
"start": 3035.28,
"end": 3041.52,
"text": " you can't get over you can't fool me with the truth you can't fool me with the truth"
},
{
"start": 3044.4,
"end": 3049.84,
"text": " because why are you why are you saying the truth so what who are you working for who are you"
},
{
"start": 3049.84,
"end": 3056.08,
"text": " working for so I welcome all the homosexuals all the liberal bleeding heart liberals and stuff"
},
{
"start": 3056.08,
"end": 3062.48,
"text": " just just keep firing thank for supporting you ain't taking over the revolution though"
},
{
"start": 3062.56,
"end": 3066.2400000000002,
"text": " thanks for supporting the Marlana Podcast Network I'm taking me too seriously because I don't"
},
{
"start": 3066.2400000000002,
"end": 3072.0,
"text": " the ghost of the joy the moment I love those who love me catchphrase it also has to realize"
},
{
"start": 3072.0,
"end": 3078.56,
"text": " that if it doesn't find God that doesn't mean that God isn't there it means that a highly"
},
{
"start": 3078.56,
"end": 3086.72,
"text": " specialized training has been built around a concept of a series of universal accidents which"
},
{
"start": 3086.72,
"end": 3092.9599999999996,
"text": " to my thinking is the worst form of non-science it should impossibly imagine how science can build"
},
{
"start": 3092.9599999999996,
"end": 3099.12,
"text": " itself upon an accident is rather difficult to understand but they rationalize it and do a"
},
{
"start": 3099.12,
"end": 3107.8399999999997,
"text": " fairly good job of it but we all need discipline in our lives we need to say as Muhammad is supposed"
},
{
"start": 3107.8399999999997,
"end": 3115.3599999999997,
"text": " to have said that there is the 24-inch rule the day 24 hours divided into three eight hour eight"
},
{
"start": 3116.2400000000002,
"end": 3125.6800000000003,
"text": " hour periods the first of which is the rest and repose the second is if you want to learn some"
},
{
"start": 3125.6800000000003,
"end": 3133.2000000000003,
"text": " about God shut your mouth and listen to me for a minute a Scotty Jesus man"
},
{
"start": 3138.8,
"end": 3142.88,
"text": " he was a nice kid he was one of those kids it was always just it's a real smart Alec"
},
{
"start": 3143.6,
"end": 3148.4,
"text": " was was was a bright kid which didn't help things right made him more dangerous"
},
{
"start": 3148.4,
"end": 3153.6800000000003,
"text": " many many children healed we've seen widgets grow we've seen arms and legs that stop growing"
},
{
"start": 3153.6800000000003,
"end": 3158.96,
"text": " because the gross cells that stop mandataba saata I don't make this stuff up and we were outside"
},
{
"start": 3158.96,
"end": 3164.32,
"text": " one day youth group and he was just just trying to push my buttons and he was just you know kind"
},
{
"start": 3164.32,
"end": 3168.0,
"text": " of not taking the Lord's serious"
},
{
"start": 3171.1200000000003,
"end": 3175.6800000000003,
"text": " well I wrote this song for the Christian youth and I walked over to him and I went"
},
{
"start": 3177.1200000000003,
"end": 3180.96,
"text": " I punched him in the chest as hard as I croupled the kid"
}
] |