Instructions to use Shawon16/VideoMAE_wlasl__codeCheck with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Shawon16/VideoMAE_wlasl__codeCheck with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("video-classification", model="Shawon16/VideoMAE_wlasl__codeCheck")# Load model directly from transformers import AutoImageProcessor, AutoModelForVideoClassification processor = AutoImageProcessor.from_pretrained("Shawon16/VideoMAE_wlasl__codeCheck") model = AutoModelForVideoClassification.from_pretrained("Shawon16/VideoMAE_wlasl__codeCheck", device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 376,203 Bytes
92ef510 f8e9546 | 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 | class,accuracy,precision,recall,f1,macro_accuracy,macro_precision,macro_recall,macro_f1,top1_accuracy,top5_accuracy,top10_accuracy,spearman_r,spearman_p
canoe,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
microphone,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
earthquake,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hello,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
deodorant,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
revenge,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
desert,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
art,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
g,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
duty,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
o,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
know,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
reveal,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
perfect,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
homework,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
lion,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
down,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
illegal,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
reduce,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
basement,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
asl,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
role,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
angel,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
leaf,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
instead,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
lamp,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
calculate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
invest,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
popcorn,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
window,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
mainstream,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
ill,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
help,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
question,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
boxing,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
somewhere,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
brag,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
butterfly,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tan,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
grass,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
curious,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
piano,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
drama,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
let,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
like,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bear,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
ugly,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sometimes,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
grandmother,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
award,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cabbage,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
procrastinate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hope,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hide,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
present,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
all day,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sorry,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
world,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cake,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
taste,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
text,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dollar,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dvd,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
grow up,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
price,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
travel,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
senior,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
repeat,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
college,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
service,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
personality,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
then,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
physics,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
send,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
heaven,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tobacco,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
gloves,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
five,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
destroy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
ceiling,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
weather,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
excuse,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
robber,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
engineer,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
numerous,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
gymnastics,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
single,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
committee,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
first,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
resist,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
french,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
age,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pregnant,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
surgeon,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
last week,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
when,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
picture,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pride,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
caption,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
motorcycle,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
explode,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
stepfather,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
grapes,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
roar,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
forever,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
support,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
later,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
activity,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
horse,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
progress,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bird,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bath,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dye,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
necessary,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
certificate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
wander,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hair,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
glass,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
retire,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
test,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tournament,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
legal,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dull,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
accept,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
boots,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bowling,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bar,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
shout,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hard,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
create,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
they,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
professional,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
snake,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
fake,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
neutral,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
and,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
appointment,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
suggest,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
brief,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
eyeglasses,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
character,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
walk,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
surgery,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
offer,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
toilet paper,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
humble,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
friendly,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
whatever,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
shampoo,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
wear,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
establish,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
company,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
grab,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
middle,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sew,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
same,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
politics,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
nation,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
find,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
culture,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
experiment,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
goodbye,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
confused,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
adjust,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
lipstick,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tower,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cup,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bless,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
appreciate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
human,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
theory,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
salad,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
neck,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
verb,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
every,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
student,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
curtain,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
anatomy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
stir,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
east,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
delay,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
nun,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
skirt,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
environment,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
recent,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
weekend,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
chat,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
battery,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sheep,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
karate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
divorce,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
work,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
headache,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pocket,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tease,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
apartment,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
embarrass,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pity,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
clever,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
ticket,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hurt,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
ago,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
transform,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sore throat,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
she,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
wonder,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
your,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
paragraph,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bracelet,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
opposite,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bully,1.0,0.0022775584573337384,1.0,0.004544765944553855,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
interpreter,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
director,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
suspect,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
baseball,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
shrimp,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sentence,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
if,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
strawberry,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
author,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
advantage,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
trip,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
rent,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
quarrel,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
crab,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
festival,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pig,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dissolve,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
plant,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
food,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
attract,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
trophy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
together,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
home,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
rest,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
local,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
leak,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
feel,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
mean,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
nothing,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
rake,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
expand,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
q,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
contact,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
geometry,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
can,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
visitor,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
climb,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
valley,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
division,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
kid,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
king,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
vacant,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
clear,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
influence,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
morning,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
saw,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
welcome,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
believe,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
develop,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
murder,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
protect,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
care,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
large,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sing,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
experience,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
terrible,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
six,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
alphabet,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
ireland,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
box,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
presentation,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
search,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
demonstrate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
familiar,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
kindergarten,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
gallaudet,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
please,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
disturb,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
moose,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
visit,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
rude,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
deer,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
necklace,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
theater,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tall,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
garage,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
my,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
rescue,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
volunteer,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
language,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
loud,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
network,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
than,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
u,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
green,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
win,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
joke,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
polar bear,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
shoot,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
enjoy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
result,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
discover,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
poverty,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
envelope,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
devil,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
alligator,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
this,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tissue,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
vote,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
party,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
heart,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
j,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sofa,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
july,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
fingerspell,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
vacation,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
serious,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
february,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
prove,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
stomach,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
knock,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
phrase,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
color,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cook,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
vlog,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
institute,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
metal,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
apart,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
history,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
drink,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
either,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
spread,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
final,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
manage,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
england,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
unique,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
purple,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
kitchen,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
resign,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
big,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
less,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
iran,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
wednesday,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
smooth,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
calculus,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
thirsty,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pack,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
gray,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
snack,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sandwich,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
nineteen,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
think,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
adapt,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pilot,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hawaii,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
where,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
wife,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
defeat,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sweep,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
benefit,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
france,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
electricity,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
her,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
exhibit,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
university,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
everyday,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
operate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dormitory,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
difficult,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
behavior,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
obsess,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
religion,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
europe,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
chemical,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
confront,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
independent,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
amazing,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bald,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
action,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
america,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
every tuesday,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
major,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
maybe,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bell,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
yesterday,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
stay,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
octopus,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dorm,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
fancy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
deduct,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
lose,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
important,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
soda,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
black,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
fool,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
english,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sticky,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
butter,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
towel,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
engine,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
but,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
gamble,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
awkward,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
arrive,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
witness,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
swim,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tired,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cough,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
many,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
deposit,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
fine,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
their,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
card,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sprint,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dive,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
odd,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
earn,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
flower,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tender,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sketch,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
next,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
lesson,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
catholic,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
secretary,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
rain,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
vague,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
take turns,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
suspend,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
voice,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tie,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
deaf,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
asia,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
funeral,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hot dog,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
n,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
summer,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
strange,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cloud,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
add,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
poor,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
small,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dice,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
size,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
berry,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
e,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
challenge,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
clumsy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
liability,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
year,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
interesting,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
commit,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
orange,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
key,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
adopt,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
candy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
california,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
happy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dark,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
behind,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
counsel,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
emotion,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bed,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
people,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
alone,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cheerleader,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
organize,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
backpack,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
biology,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
stare,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
responsible,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
child,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
town,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cost,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
willing,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
blood,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
wash face,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
without,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
half,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
principle,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tent,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
crown,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
put,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
wait,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
stadium,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
nurse,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
giraffe,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
skin,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
steel,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
general,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
background,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
ride,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
except,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pizza,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
ready,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
plate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
take,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
period,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
police,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cigarette,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
famous,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
firefighter,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
alcohol,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
country,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
discount,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
paint,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
scared,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
objective,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
understand,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
heart attack,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
jewelry,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
spring,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bread,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
feed,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
each,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sympathy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
great,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
mistake,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
answer,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
stop,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
helicopter,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
thailand,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
debate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
mom,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
stubborn,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pure,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
up,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
we,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
complain,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hearing aid,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
shy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
for,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
determine,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
innocent,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
scan,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
book,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
army,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
finally,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sculpture,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
israel,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
nose,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
happen,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
descend,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hat,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bridge,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cow,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
ignore,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
turn,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sneeze,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
audiologist,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pants,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cheat,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
t,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
lemon,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
relief,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
eye,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
japan,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
odor,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
grateful,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
also,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
drum,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
collect,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bored,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
mushroom,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
reply,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dad,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
awake,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
camping,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
break,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
nervous,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
real,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sunday,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
balloon,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
address,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
form,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
a,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bring,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
positive,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
shopping,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
music,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
common,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
empty,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
all,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
wood,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
braid,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
beside,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
predict,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
lightning,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sea,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
exaggerate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bookstore,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
concern,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
why,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
story,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
washington,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
court,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tiptoe,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
project,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
flatter,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
event,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sleepy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
favorite,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
agenda,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
day,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
patient,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
prevent,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
deep,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
discuss,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
highway,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
india,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sit,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
uncle,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
near,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
build,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
man,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
leader,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
depressed,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
publish,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
give,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
turtle,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
fork,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
yellow,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
peanut butter,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
them,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
haircut,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
gather,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pear,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
come,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
champion,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
drunk,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tomato,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
umbrella,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tutor,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
onion,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sick,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
choice,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
myself,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
exchange,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
compete,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
strong,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bookshelf,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
expert,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bible,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
able,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
side,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
engage,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
august,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sunshine,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
permit,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
algebra,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
interpret,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
agreement,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
rise,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pressure,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
slave,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tomorrow,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
none,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
excited,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
coffee,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
proud,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
nephew,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
beard,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
commute,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
head,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
both,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
fourth,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
body,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tradition,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
specific,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
report,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
spider,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
email,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
wow,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
beg,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
receive,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
waste,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
mouth,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
wet,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cool,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
will,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sensitive,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
traffic,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
high,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
satisfy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tolerate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
shave,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
flexible,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tough,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
lunch,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hippopotamus,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
friday,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
table,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
lonely,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
left,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sugar,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
construct,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
concentrate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
earth,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
rabbit,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
right,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
grandfather,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
way,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
blanket,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
listen,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
that,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
thick,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dinner,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
forget,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
point,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
drug,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
neighbor,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
trust,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
march,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
potato,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
review,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cold,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
special,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
chemistry,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
wrap,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
christian,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
include,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
within,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
jealous,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
noon,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
parade,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
v,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
auction,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
shovel,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
gum,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
roof,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
basic,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
silly,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
apple,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
weird,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dentist,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sausage,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
insect,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
stitch,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
weigh,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
future,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
easy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
mix,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
greece,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
see,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
release,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
approve,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
lecture,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
electrician,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
because,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
smile,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
precipitation,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
door,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
television,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
intersection,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
preacher,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
maximum,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
customer,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
serve,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
generation,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
thrill,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
counselor,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
spirit,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
monday,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
boss,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
freeze,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cookie,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
suppose,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
magazine,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
lady,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
silver,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
boyfriend,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
doubt,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
car,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
drop,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
therefore,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
plan,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
letter,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
divide,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
arrogant,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
leave,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
blend,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dolphin,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
night,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
photographer,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
salute,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
deny,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
die,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
interest,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
stand,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
quote,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
breakfast,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
jump,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
rich,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
act,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
downstairs,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
graduation,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
ocean,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
soul,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
improve,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
spell,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hearing,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
polite,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
farm,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
exercise,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
which,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
husband,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
broke,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tuesday,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
farmer,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
not,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cute,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
label,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
arm,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
measure,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
someone,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
skeleton,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
niece,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
show,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
breeze,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
replace,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
shop,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bark,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
reason,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
conquer,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dangerous,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
respect,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
piece,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
our,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
doll,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cut,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
go,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
trouble,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hill,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pass,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
really,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
expect,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
preschool,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
watch,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
percent,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
ridiculous,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
area,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
melt,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
clown,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
free,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
skill,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
workshop,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
most,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
position,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
early,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cat,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
society,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
worry,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
flag,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
transfer,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
flood,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
word,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tennis,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
subtract,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
aim,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
match,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
goat,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
throw,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
full,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
person,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
ring,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
doctor,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
fall in love,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
something,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
girlfriend,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
science,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
depend,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
or,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
fun,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
oral,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cracker,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
psychologist,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
quarter,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
function,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sweater,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
crush,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
peaceful,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dog,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
family,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tv,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
save,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
breathe,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
announce,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
restroom,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
yes,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hot,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
friend,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
follow,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
standard,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
research,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
mad,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
elevator,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
rose,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
order,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
island,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
use,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
provide,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
rather,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bike,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
notice,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
teach,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
museum,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
recover,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
decrease,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
prefer,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
siren,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
united states,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
today,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
evening,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
adverb,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
brown,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
shame,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cheese,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
touch,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
barely,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
fear,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
argue,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
corn,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
active,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
how,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
wallet,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dime,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
lip,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
wall,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
halloween,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
soft,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cousin,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
article,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
propaganda,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
referee,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
grandma,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
gay,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
telephone,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
new,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
recommend,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
basketball,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
between,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
punish,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
blind,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
after,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
ghost,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
son,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
i,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
shoes,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
soap,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
deliver,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
express,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
remove,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
worm,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
problem,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
buy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
lawyer,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
attention,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
plenty,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
young,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
consume,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
baby,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bite,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
physician,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
lobster,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
circle,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
africa,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
prepare,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cheap,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
swallow,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cereal,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
conversation,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
kill,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
building,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
selfish,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
ten,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hug,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
score,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
situation,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
line,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
popular,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
binoculars,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
song,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
underwear,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
principal,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
wedding,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
occur,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bye,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
mention,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
yourself,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
brain,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
print,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
library,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hospital,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
land,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
fly,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
far,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
president,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
holy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
describe,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
choir,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
third,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
scotland,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sign,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
disappear,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
candidate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
austria,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
father,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
thursday,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
surprise,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
count,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
drawer,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
investigate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
conflict,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
danger,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cafeteria,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
gone,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
meaning,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
weak,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
require,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
path,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
balance,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
read,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
fault,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pray,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
borrow,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
painter,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sister,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
available,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
interrupt,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
priority,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
appear,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hurricane,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
furniture,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
baptize,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
post,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
printer,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dumb,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dry,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
department,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
children,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pink,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pick,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
button,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
china,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
camp,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
expensive,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
practice,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
look for,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
change,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
keep,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
water,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
scissors,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
roommate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
busy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
gorilla,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
relationship,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
elephant,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
b,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
enough,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
every monday,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
control,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
snow,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hour,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
crocodile,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sauce,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
lord,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
rubber,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
approach,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dictionary,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sure,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
group,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
upstairs,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
meet,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
blame,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bug,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
fight,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
give up,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tree,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
responsibility,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
purchase,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
spill,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
normal,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
store,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
fairy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
live,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
across,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
weekly,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
carry,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
settle,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
evaluate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
potential,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dessert,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
moon,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
allergy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
couch,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
freeway,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dismiss,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
switzerland,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
olympics,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cop,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
floor,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
scientist,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
design,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
motor,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
wish,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
drive,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
computer,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
wrench,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
rule,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
snowman,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
straw,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
opinion,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
caterpillar,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
delicious,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
gas,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
ask,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
rehearse,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
must,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dig,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
football,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
audience,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
diaper,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
white,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
room,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
quality,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sweetheart,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
process,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pause,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
choose,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
mock,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bright,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
past,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pursue,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sequence,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
similar,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
identify,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sound,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
boy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
salt,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
emergency,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
constitution,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
themselves,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
burp,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
play,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
program,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
spit,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
november,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
rock,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
come here,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
below,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
mirror,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
truck,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
month,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
curriculum,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
kick,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
gun,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
stress,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
brother,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
done,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
chair,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
laptop,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
soup,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
banana,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
journey,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
almost,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
phone,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tell,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
little bit,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
international,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
stupid,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
close,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
insurance,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
flirt,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
square,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
from now on,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
penalty,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
german,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sour,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
comb,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tempt,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
eagle,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
celebrate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
squeeze,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bush,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
former,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
encourage,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
newspaper,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
smell,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
run,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
need,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
house,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pennsylvania,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
magic,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
thankful,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bee,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
finish,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
geography,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hold,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
superman,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
health,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
careless,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
economy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
iron,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
woman,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
afraid,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
appetite,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
assist,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
make,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
stuck,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
winter,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
proper,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bus,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
toast,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
copy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
secret,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
apostrophe,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dawn,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
rough,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
mature,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
surface,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
god,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
want,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tonight,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
old,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
canada,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cherry,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
seldom,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
money,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
skinny,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
democrat,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
diamond,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
clean,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
infection,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
connect,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
decide,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
golf,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
angry,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
lettuce,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pillow,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
public,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
center,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
kiss,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
steal,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dirt,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
statistics,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
total,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
his,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
obtain,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
authority,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
involve,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
try,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
helmet,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
laugh,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bottom,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bitter,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
aware,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
carnival,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
war,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
attorney,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
classroom,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pencil,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dining room,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
funny,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
afternoon,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
october,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
testify,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
structure,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sue,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bribe,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
rainbow,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
calculator,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cruel,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
stairs,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
socks,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
coat,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
always,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
whale,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
triangle,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
warn,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
monthly,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
owl,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
call,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
quiet,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
fruit,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
manager,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
shelf,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
schedule,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
enter,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
fox,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pour,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
wolf,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
put off,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
draw,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tend,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
paper,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pay,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
camel,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
plus,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hanukkah,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
inside,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
amputate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
habit,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
jail,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
front,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
honor,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
quick,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
say,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
three,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
rob,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
ok,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bra,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
there,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
title,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
midnight,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
continue,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hamburger,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
admire,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
soccer,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
negative,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pepper,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
aunt,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
miss,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
another,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
part,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
engagement,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
brush,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
late,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
inspect,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
h,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
get,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
jacket,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
have,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
member,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
lock,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
debt,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
april,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
become,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
eat,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
due,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
last,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
squirrel,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
during,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
loan,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
gasoline,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
interview,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sin,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
candle,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
overcome,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
race,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
waterfall,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
actor,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
light,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
document,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
analyze,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
eraser,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
policeman,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
write,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
impossible,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
gift,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
slice,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
goal,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
team,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
chain,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
linguistics,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
crazy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
government,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
volleyball,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
glasses,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
safe,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
you,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hammer,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
start,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
raccoon,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
muscle,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
information,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
waiter,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cent,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
slow,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
archery,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
possible,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
image,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hurry,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
f,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
aid,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
calm,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
defend,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
ball,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bad,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
viewpoint,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hop,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
mechanic,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
honey,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
senate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
private,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pay attention,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
coach,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
check,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
grow,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
a lot,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
smart,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
drag,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
finance,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
one,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
w,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
accent,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
jesus,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
idea,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
peel,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
time,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
seem,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
upset,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
airplane,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
closet,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
concept,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dream,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
vomit,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
professor,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
telescope,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bedroom,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
battle,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
prince,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
ski,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
from,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
other,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
shower,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
temple,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
affect,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
nut,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
fence,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
salary,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
second,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
should,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
brave,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
better,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
milk,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pumpkin,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
consider,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
crave,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
fast,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
fish,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
melody,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
assistant,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
under,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tale,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
effort,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
over,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
refuse,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
artist,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
to,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bull,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
restaurant,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
remote control,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
brochure,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
look at,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
thing,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
graduate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
congress,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
rat,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
nickel,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
laundry,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
out,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
birthday,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
take up,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
guitar,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
lend,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
solid,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
wheelchair,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
true,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
straight,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
never,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
erase,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
overlook,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bother,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
awful,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sunset,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
road,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
regular,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
talent,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
eyes,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
ahead,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
boat,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
very,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tooth,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
fire,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
summon,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
west,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
detach,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
forgive,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
trade,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
september,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
florida,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
clock,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
talk,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
thin,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dead,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
convince,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
some,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
lousy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
chance,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
accountant,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
recliner,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
scream,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
ice cream,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
lead,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
curse,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
contest,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
promise,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pickle,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
spoon,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
preach,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
promote,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
faculty,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cemetery,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
river,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
reject,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cause,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
guilty,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cuba,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
through,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
away,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
autumn,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
advanced,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tornado,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
singer,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
abdomen,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
proof,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
eight,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
example,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
wake up,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
perspective,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
compare,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
machine,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
negotiate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
wide,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
keyboard,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
last year,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
community,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
energy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
beginning,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
psychology,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cry,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
precise,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
philadelphia,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
annoy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bacon,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
boil,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
kangaroo,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
breakdown,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
what,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
simple,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tranquil,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
priest,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
everything,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pretty,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
lie,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
name,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tiger,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
thousand,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
anyway,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tea,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bank,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
detective,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
contribute,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
limit,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
snob,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
prostitute,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
coconut,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
love,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
profit,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
eternity,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
mexico,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
spin,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
chapter,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
south america,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
violin,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
visualize,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
south,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
mouse,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
city,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
overwhelm,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
careful,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
forbid,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
p,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
evidence,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
no,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dragon,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
mine,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
carrot,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
kneel,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
swing,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cannot,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
wine,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
attend,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
back,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
subway,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bathroom,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
staff,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
belief,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
four,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
separate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
diarrhea,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
worse,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hang up,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
ruin,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
about,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
stamp,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
not yet,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
screwdriver,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
click,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
license,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
audiology,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
soon,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
class,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
worker,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
someday,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
push,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
s,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
gold,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
vice president,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
meeting,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dizzy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
comma,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
lesbian,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
honest,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
short,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
russia,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
fishing,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
already,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
north,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
worthless,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
peace,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
babysitter,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
perfume,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
elementary,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
thermometer,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
spray,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
earring,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
princess,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
business,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
clothes,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
law,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
wind,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
chase,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
tongue,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
represent,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
speech,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
comment,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
northwest,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
fat,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pull,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sixteen,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
relax,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
face,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
symbol,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
convert,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dancer,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
owe,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
m,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
heavy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
internet,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
daily,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
still,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cabinet,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
two,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
game,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
postpone,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
topic,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
adult,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
appropriate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
clueless,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
complete,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
league,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dance,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
quit,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
grey,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
again,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
movie,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
category,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
fail,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hear,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
lazy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
disagree,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
judge,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
fold,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
increase,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
diabetes,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
relate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
long,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
precious,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
solve,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
disgust,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sweden,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
best,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
shirt,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
monster,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
surrender,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
belt,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
church,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
only,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
different,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dinosaur,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
minus,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
decorate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
chocolate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
host,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
medicine,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
toothbrush,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
type,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
request,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
seven,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
allow,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
toilet,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
command,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
mind,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pound,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cover,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dusk,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
exact,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
policy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
animal,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
mother,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
peach,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
joy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hard of hearing,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
once,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hungry,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pet,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sad,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
praise,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bone,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bowl,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
congratulations,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
compromise,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
strict,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
egg,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
marry,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
page,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
thank you,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
diploma,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
common sense,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
saturday,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
blow,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pneumonia,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
narrow,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
captain,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
join,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
swimming,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
impact,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
before,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
good,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
eighteen,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
explain,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
wonderful,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
now,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
discipline,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
since,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
parallel,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
ear,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
forest,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
technology,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
slip,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
adjective,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
struggle,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
misunderstand,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
any,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
much,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
shock,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pain,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
parachute,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
assume,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cross,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
wrong,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
week,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
arrest,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
girl,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
australia,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
speed,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
christmas,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
high school,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
radio,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
several,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
suffer,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
temperature,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
meat,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
spanish,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
mosquito,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
education,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
accomplish,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
parents,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
player,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
street,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
torture,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
translate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
accident,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
christ,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hunt,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
texas,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hit,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
germany,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
contract,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cooperate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
prison,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
whistle,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
double,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
chicken,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
often,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
skunk,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
date,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
arizona,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
around,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
shape,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
star,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
boast,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
value,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
don't want,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
few,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
against,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
speak,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
wash,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
twin,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
rooster,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
death,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
rely,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cancel,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
math,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
truth,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
skate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
inform,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
admit,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
average,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
robot,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
shine,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
enormous,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sign language,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
watermelon,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
with,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sky,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
poop,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
therapy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bottle,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
learn,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
beer,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
lucky,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
more,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
on,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
angle,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
disconnect,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sweet,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
motivate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
comfortable,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
escape,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
desk,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
rope,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
memorize,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
philosophy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
spain,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
crash,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bicycle,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
here,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
soldier,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
duck,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
herself,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
fact,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
january,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
recognize,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
reputation,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
inspire,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
frog,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
correct,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
december,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
multiply,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
microwave,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
heap,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
turkey,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
else,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
anniversary,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
alarm,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
warm,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
silent,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
jewish,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cards,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
damage,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
gang,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
rage,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sell,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
who,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
top,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
fix,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
off,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
mountain,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
egypt,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bet,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
nine,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
microscope,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
demand,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
move,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
stretch,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
stink,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
pie,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
napkin,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
while,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
message,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
corner,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
queen,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
outside,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
in,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
throat,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
catch,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
new york,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
power,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
chop,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
get up,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
teeth,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
blue,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
list,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
mustache,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
share,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
skip,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
cochlear implant,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
minute,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
attitude,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
buffalo,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
grammar,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
teacher,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
bake,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
train,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
educate,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
feedback,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
guess,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
weight,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
avoid,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sting,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
purpose,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
rush,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
puzzled,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
theme,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
individual,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
office,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
smoking,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
vampire,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
guide,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
end,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
above,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
zero,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
degree,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
k,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
retreat,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
disgusted,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
scold,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
study,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
shoulder,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dirty,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
wristwatch,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
red,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
camera,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
monkey,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
military,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
daughter,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
open,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
vegetable,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
dress,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
introduce,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
realize,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
number,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
agree,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
refer,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
me,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
d,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
librarian,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
knife,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
june,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
penny,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sun,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
flute,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
school,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
vocabulary,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sunrise,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
beautiful,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
swimsuit,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
remember,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
federal,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
place,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
nice,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
lift,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
r,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
easter,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
gossip,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
invite,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
chicago,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
thanksgiving,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
hockey,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
sleep,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
italy,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
choke,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
until,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
complex,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
french fries,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
birth,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
equal,0.0,0.0,0.0,0.0,0.0005,1.1387792286668693e-06,0.0005,2.272382972276928e-06,0.0020995171110644553,0.0074882776961298905,0.013506893414514661,-0.025522221420896125,0.2539278979562602
|