File size: 81,055 Bytes
45a9feb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 |
DETAILED OVERALL REPORT FOR THE SYSTEM: /scratch/project_465000836/ipoloka/huggingface_asr/experiments/baseline_ebranchformer_v2.2_fp32_gated/predictions_librispeech_test.clean_wer3.48_hyp.trn
SENTENCE RECOGNITION PERFORMANCE
sentences 2816
with errors 32.0% ( 900)
with substitutions 31.1% ( 876)
with deletions 4.1% ( 116)
with insertions 5.4% ( 151)
WORD RECOGNITION PERFORMANCE
Percent Total Error = 3.5% (1984)
Percent Correct = 96.8% (55264)
Percent Substitution = 2.1% (1219)
Percent Deletions = 1.0% ( 582)
Percent Insertions = 0.3% ( 183)
Percent Word Accuracy = 96.5%
Ref. words = (57065)
Hyp. words = (56666)
Aligned words = (57248)
CONFUSION PAIRS Total (936)
With >= 1 occurrences (936)
1: 18 -> a ==> the
2: 18 -> and ==> in
3: 14 -> rodolfo ==> rudolpho
4: 11 -> in ==> and
5: 10 -> this ==> the
6: 8 -> the ==> a
7: 7 -> bartley ==> bartly
8: 6 -> anyone ==> one
9: 6 -> kaffar ==> kaffir
10: 5 -> an ==> and
11: 5 -> soames ==> solmes
12: 5 -> that ==> it
13: 5 -> they ==> there
14: 4 -> battleax ==> axe
15: 4 -> colour ==> color
16: 4 -> estafania ==> estaffania
17: 4 -> kaffar's ==> kaffir's
18: 4 -> man ==> men
19: 4 -> o ==> of
20: 4 -> that ==> the
21: 4 -> the ==> this
22: 4 -> their ==> the
23: 4 -> towards ==> toward
24: 3 -> and ==> as
25: 3 -> anders ==> andrews
26: 3 -> center ==> centre
27: 3 -> everyone ==> one
28: 3 -> has ==> as
29: 3 -> has ==> had
30: 3 -> haven't ==> it
31: 3 -> he's ==> is
32: 3 -> her ==> the
33: 3 -> hollan ==> holland
34: 3 -> is ==> as
35: 3 -> leavenworth ==> levenworth
36: 3 -> madam ==> madame
37: 3 -> practise ==> practice
38: 3 -> silvia ==> sylvia
39: 3 -> someone ==> one
40: 3 -> tabu ==> taboo
41: 3 -> theater ==> theatre
42: 3 -> today ==> day
43: 2 -> abduction ==> adoption
44: 2 -> alluvion ==> alluvian
45: 2 -> am ==> i'm
46: 2 -> an ==> on
47: 2 -> and ==> an
48: 2 -> and ==> at
49: 2 -> and ==> on
50: 2 -> andella ==> anddela
51: 2 -> andella ==> andela
52: 2 -> anders ==> andrew's
53: 2 -> another ==> other
54: 2 -> as ==> a
55: 2 -> ass ==> asks
56: 2 -> at ==> had
57: 2 -> bannister ==> banister
58: 2 -> befal ==> befall
59: 2 -> before ==> for
60: 2 -> blessings ==> blessing
61: 2 -> brake ==> break
62: 2 -> carl ==> karl
63: 2 -> chaise ==> chase
64: 2 -> charente ==> tennysont
65: 2 -> clew ==> clue
66: 2 -> colored ==> coloured
67: 2 -> composser ==> composure
68: 2 -> conjurer ==> conjuror
69: 2 -> country's ==> country
70: 2 -> cozier ==> cosier
71: 2 -> cyn ==> sin
72: 2 -> cynthia ==> cynthias
73: 2 -> define ==> find
74: 2 -> discoloured ==> discolored
75: 2 -> dissent ==> descent
76: 2 -> emil ==> amyl
77: 2 -> entranced ==> chanced
78: 2 -> estafania ==> dismayedestafania
79: 2 -> everyday ==> day
80: 2 -> feeling ==> filling
81: 2 -> ferdinando ==> o'
82: 2 -> forever ==> ever
83: 2 -> friskily ==> friskly
84: 2 -> gilchrist ==> gilkers
85: 2 -> grey ==> gray
86: 2 -> hallo ==> hello
87: 2 -> hangings ==> hanging
88: 2 -> her ==> a
89: 2 -> holbein ==> holbine
90: 2 -> honour ==> honor
91: 2 -> honourable ==> honorable
92: 2 -> i'm ==> am
93: 2 -> i've ==> i
94: 2 -> in ==> an
95: 2 -> in ==> on
96: 2 -> is ==> there's
97: 2 -> lecompte ==> lecomte
98: 2 -> leocadi ==> leucadia
99: 2 -> leocadia ==> locadia
100: 2 -> leocadia ==> locaioca
101: 2 -> leocadia ==> us
102: 2 -> leocadia's ==> eucadius
103: 2 -> leocadia's ==> leucadius's
104: 2 -> luis ==> louis
105: 2 -> master's ==> masters
106: 2 -> men ==> man
107: 2 -> meter ==> metre
108: 2 -> munny ==> money
109: 2 -> nearer ==> near
110: 2 -> of ==> a
111: 2 -> one ==> anyone
112: 2 -> paper ==> papers
113: 2 -> parlor ==> parlour
114: 2 -> purposed ==> purpose
115: 2 -> rate ==> right
116: 2 -> rather ==> brother
117: 2 -> read ==> red
118: 2 -> remained ==> remaining
119: 2 -> remember ==> remembered
120: 2 -> rodolfo ==> redolpho
121: 2 -> rodolfo's ==> ridolpho's
122: 2 -> round ==> around
123: 2 -> scaroons ==> scouroons
124: 2 -> sif ==> sift
125: 2 -> solon ==> solemn
126: 2 -> solon ==> solomon
127: 2 -> sprague ==> brogue
128: 2 -> swoon ==> swoca
129: 2 -> than ==> that
130: 2 -> the ==> in
131: 2 -> thee ==> he
132: 2 -> thel ==> fell
133: 2 -> thel ==> thou
134: 2 -> them ==> him
135: 2 -> they ==> may
136: 2 -> tonight ==> night
137: 2 -> travelers ==> travellers
138: 2 -> uncasing ==> encasing
139: 2 -> valliere ==> valier
140: 2 -> vapours ==> vapors
141: 2 -> voltaire ==> wallcher
142: 2 -> was ==> is
143: 2 -> watry ==> watery
144: 2 -> when ==> but
145: 2 -> whisk ==> whisked
146: 2 -> whittaws ==> widows
147: 2 -> wholly ==> holy
148: 2 -> will ==> goodwill
149: 2 -> withes ==> widths
150: 2 -> yard ==> courtyard
151: 2 -> ye ==> you
152: 2 -> you're ==> are
153: 1 -> a ==> alarm
154: 1 -> a ==> at
155: 1 -> a ==> his
156: 1 -> a ==> up
157: 1 -> abbe ==> abbey
158: 1 -> abjectly ==> objectly
159: 1 -> abolitionists ==> abolitionist
160: 1 -> acknowledgement ==> acknowledgment
161: 1 -> across ==> cross
162: 1 -> affect ==> effect
163: 1 -> affrightened ==> frightened
164: 1 -> aid ==> aids
165: 1 -> aignan ==> annin
166: 1 -> albans ==> alban's
167: 1 -> alexandra ==> alexander
168: 1 -> amphitheater ==> amphitheatre
169: 1 -> anaxagoras ==> exaggeras
170: 1 -> and ==> em
171: 1 -> and ==> halworth
172: 1 -> and ==> toryan
173: 1 -> and ==> wherein
174: 1 -> anders ==> andres
175: 1 -> anders ==> andrew
176: 1 -> angels ==> angel
177: 1 -> answerd ==> answered
178: 1 -> anymore ==> more
179: 1 -> appealed ==> appeal
180: 1 -> apposition ==> opposition
181: 1 -> apprentice ==> apprenticed
182: 1 -> approves ==> proof
183: 1 -> arc ==> ark
184: 1 -> ardle ==> macardo
185: 1 -> ardour ==> ardor
186: 1 -> are ==> or
187: 1 -> arrests ==> arrest
188: 1 -> arrondissement ==> arundicemon
189: 1 -> artichokes ==> artochokes
190: 1 -> as ==> to
191: 1 -> ascendency ==> ascendancy
192: 1 -> astor ==> aster
193: 1 -> at ==> of
194: 1 -> at ==> that
195: 1 -> athenais ==> athenae
196: 1 -> athenais ==> athene
197: 1 -> athlete ==> adelaide
198: 1 -> atholemen ==> men
199: 1 -> attendance ==> attendants
200: 1 -> attendants ==> attendance
201: 1 -> aunt ==> and
202: 1 -> awhile ==> while
203: 1 -> ay ==> aye
204: 1 -> aye ==> i
205: 1 -> babirusa ==> barbarosa
206: 1 -> badauderie ==> greedy
207: 1 -> balmy ==> bombie
208: 1 -> barn ==> barnes
209: 1 -> bartley ==> bartlett
210: 1 -> bartley ==> partly
211: 1 -> beached ==> beeched
212: 1 -> bedford ==> betford
213: 1 -> bedimmed ==> dimmed
214: 1 -> beebe ==> b
215: 1 -> beeder ==> reader
216: 1 -> beehives ==> hives
217: 1 -> beg ==> begged
218: 1 -> beggar's ==> beggars
219: 1 -> behaviourist ==> behaviorist
220: 1 -> bein ==> being
221: 1 -> being ==> means
222: 1 -> bergson ==> bergsen
223: 1 -> bertie ==> burty
224: 1 -> bill ==> campbell
225: 1 -> billed ==> built
226: 1 -> billygoat ==> spilligoat
227: 1 -> blasts ==> blast
228: 1 -> bleed ==> weep
229: 1 -> boar ==> favorite
230: 1 -> bolls ==> bowls
231: 1 -> bond ==> blonde
232: 1 -> bookkeeper ==> keeper
233: 1 -> border ==> a
234: 1 -> bow ==> bough
235: 1 -> boys ==> schoolboys
236: 1 -> branch ==> ranch
237: 1 -> breakfas ==> breakfast
238: 1 -> bringing ==> ringing
239: 1 -> britannula ==> brittannula
240: 1 -> britannula ==> uller
241: 1 -> britannula ==> yulu
242: 1 -> britannulists ==> utists
243: 1 -> budding ==> butting
244: 1 -> bul ==> bulboo
245: 1 -> bunnit ==> bennet
246: 1 -> burgoyne ==> burgoin
247: 1 -> but ==> do
248: 1 -> caldwell ==> cauldwell
249: 1 -> can ==> could
250: 1 -> canvass ==> canvas
251: 1 -> capless ==> capitalist
252: 1 -> carey ==> carrie
253: 1 -> carpaccio's ==> carpatios
254: 1 -> cat ==> hat
255: 1 -> ceasd ==> ceased
256: 1 -> cendenaries ==> sandiaries
257: 1 -> centred ==> centered
258: 1 -> charente ==> cheron
259: 1 -> charente ==> tennysonte
260: 1 -> charente ==> tonnacharon
261: 1 -> chatterbox ==> box
262: 1 -> check ==> cheque
263: 1 -> checker ==> chequer
264: 1 -> checks ==> cheques
265: 1 -> cheroot ==> truce
266: 1 -> chiaroscurist ==> curoscurist
267: 1 -> chiaroscurists ==> chiaruscuists
268: 1 -> chord ==> accord
269: 1 -> christain ==> christian
270: 1 -> cigarette ==> red
271: 1 -> citadelled ==> citadel
272: 1 -> civet ==> savette
273: 1 -> clarified ==> clerified
274: 1 -> clause ==> class
275: 1 -> cloth ==> tablecloth
276: 1 -> coasts ==> coast
277: 1 -> coined ==> coigned
278: 1 -> colorist ==> colourist
279: 1 -> colorist ==> list
280: 1 -> colors ==> collars
281: 1 -> colors ==> colours
282: 1 -> coloured ==> colored
283: 1 -> colours ==> colors
284: 1 -> combash ==> combath
285: 1 -> commandments ==> its
286: 1 -> compulsive ==> composive
287: 1 -> condense ==> condensed
288: 1 -> conquerin ==> conquering
289: 1 -> consid'ble ==> considerable
290: 1 -> contained ==> containing
291: 1 -> conti ==> kanti
292: 1 -> cook ==> cope
293: 1 -> cost ==> caused
294: 1 -> costs ==> cost
295: 1 -> could ==> couldn't
296: 1 -> courant ==> coront
297: 1 -> court ==> corps
298: 1 -> court's ==> courts
299: 1 -> craned ==> crane
300: 1 -> craswellers ==> wellers
301: 1 -> cresswell ==> craswelle
302: 1 -> cresswell ==> crasweller
303: 1 -> cresswells ==> wells
304: 1 -> critias ==> chrysias
305: 1 -> critias ==> krydeus
306: 1 -> crosstrees ==> crossjay's
307: 1 -> curved ==> carved
308: 1 -> cutters ==> woodcutters
309: 1 -> d'este ==> vilidesta
310: 1 -> dawn's ==> dawns
311: 1 -> de ==> mista
312: 1 -> de ==> the
313: 1 -> de ==> whit
314: 1 -> dedalos ==> derlass
315: 1 -> dedalus ==> daedalus
316: 1 -> deliberative ==> deliberate
317: 1 -> depend ==> depends
318: 1 -> dew ==> do
319: 1 -> dias ==> dais
320: 1 -> diatribe ==> dietribe
321: 1 -> did ==> dead
322: 1 -> districts ==> district
323: 1 -> doctress ==> doctrus
324: 1 -> doll ==> staal
325: 1 -> doubtingly ==> undoubtedly
326: 1 -> douze ==> des
327: 1 -> doves ==> dove's
328: 1 -> drain ==> train
329: 1 -> draws ==> drawls
330: 1 -> dripping ==> tripping
331: 1 -> dropidas ==> trogadus
332: 1 -> due ==> dupe
333: 1 -> duerer ==> jura
334: 1 -> dumas ==> demois
335: 1 -> dunno ==> know
336: 1 -> dykes ==> dikes
337: 1 -> e ==> missy
338: 1 -> ears ==> corneas
339: 1 -> ears ==> years
340: 1 -> ease ==> heartsease
341: 1 -> economic ==> of
342: 1 -> edition ==> addition
343: 1 -> effected ==> affected
344: 1 -> effecting ==> affecting
345: 1 -> elcho ==> elco
346: 1 -> eleven ==> lab'n
347: 1 -> elmo's ==> elbl's
348: 1 -> elsinore ==> elzenor
349: 1 -> em ==> them
350: 1 -> emerg'd ==> emerged
351: 1 -> emigrant ==> immigrant
352: 1 -> emil ==> amiable
353: 1 -> emil ==> amil
354: 1 -> endeavor ==> endeavour
355: 1 -> endured ==> endued
356: 1 -> engineer ==> engineers
357: 1 -> ennis ==> ennas
358: 1 -> enquire ==> inquire
359: 1 -> enquired ==> inquired
360: 1 -> enquiries ==> inquiries
361: 1 -> ensure ==> insure
362: 1 -> enter ==> entered
363: 1 -> enter ==> incher
364: 1 -> enthralment ==> enthrallment
365: 1 -> entrenched ==> intrenched
366: 1 -> entrusted ==> intrusted
367: 1 -> entrusting ==> intrusting
368: 1 -> er ==> a
369: 1 -> err ==> air
370: 1 -> escheated ==> issiated
371: 1 -> esprit ==> spree
372: 1 -> estrangement ==> entrangement
373: 1 -> evenin's ==> evening's
374: 1 -> ever ==> forever
375: 1 -> evolution ==> revolution
376: 1 -> exist ==> coexist
377: 1 -> eyed ==> i
378: 1 -> fairview ==> view
379: 1 -> far ==> afar
380: 1 -> farthest ==> furthest
381: 1 -> fattened ==> and
382: 1 -> feared ==> fear
383: 1 -> feed ==> defeat
384: 1 -> feelin's ==> feelings
385: 1 -> felt ==> fell
386: 1 -> fete ==> fight
387: 1 -> finally ==> finely
388: 1 -> fireball ==> ball
389: 1 -> firebugs ==> bugs
390: 1 -> first ==> abruptly
391: 1 -> fluffinose ==> flaffano's
392: 1 -> followed ==> fouled
393: 1 -> for ==> from
394: 1 -> forbes's ==> ford's
395: 1 -> formally ==> formerly
396: 1 -> founded ==> it
397: 1 -> francs ==> franks
398: 1 -> fulness ==> fullness
399: 1 -> furiously ==> curiously
400: 1 -> further ==> the
401: 1 -> furthered ==> further
402: 1 -> galatians ==> galations
403: 1 -> galatians ==> ongellations
404: 1 -> galatians ==> ungulations
405: 1 -> gamewell ==> gainwell
406: 1 -> gamewell ==> well
407: 1 -> gentlemen ==> gentleman
408: 1 -> geoffrey ==> jeffrey
409: 1 -> geoffrey's ==> jeffrey's
410: 1 -> gestation ==> justation
411: 1 -> giaours ==> guyors
412: 1 -> gier ==> gear
413: 1 -> gilchrist ==> gilcrest
414: 1 -> gilchrist's ==> gilkir's
415: 1 -> girard ==> gerard
416: 1 -> give ==> gave
417: 1 -> glue ==> blue
418: 1 -> goat ==> boat
419: 1 -> goat's ==> goats
420: 1 -> goobers ==> googles
421: 1 -> gossip ==> gossips
422: 1 -> government ==> governor
423: 1 -> grades ==> greats
424: 1 -> gram ==> graham
425: 1 -> grand ==> great
426: 1 -> gray ==> to
427: 1 -> greeing ==> green
428: 1 -> grey's ==> gray's
429: 1 -> griefs ==> greeds
430: 1 -> gringo ==> gringa
431: 1 -> guest ==> guests
432: 1 -> guests ==> guess
433: 1 -> guise ==> skies
434: 1 -> had ==> at
435: 1 -> had ==> have
436: 1 -> hakon ==> hawkins
437: 1 -> halloa ==> what
438: 1 -> ham ==> him
439: 1 -> hamlet ==> handless
440: 1 -> hanna ==> a
441: 1 -> happiness ==> unhappiness
442: 1 -> haranguing ==> harangueing
443: 1 -> harboring ==> harbouring
444: 1 -> harkened ==> hearkened
445: 1 -> harmon ==> billharran
446: 1 -> harried ==> hurried
447: 1 -> harts ==> hearts
448: 1 -> has ==> hast
449: 1 -> has ==> is
450: 1 -> hawk ==> hook
451: 1 -> hawtrey ==> holtrey
452: 1 -> hay ==> hey
453: 1 -> hazewrapped ==> rapt
454: 1 -> he ==> harry
455: 1 -> he ==> we
456: 1 -> he'd ==> he
457: 1 -> headlongs ==> headlong's
458: 1 -> held ==> had
459: 1 -> hellenes ==> helenes
460: 1 -> helped ==> help
461: 1 -> hen ==> hand
462: 1 -> her ==> there
463: 1 -> heracleitus ==> heraclitus
464: 1 -> here ==> pensioner
465: 1 -> here ==> there
466: 1 -> hilda ==> helda
467: 1 -> hilda ==> hilden
468: 1 -> him ==> em
469: 1 -> him ==> streamlineham
470: 1 -> him ==> them
471: 1 -> his ==> a
472: 1 -> his ==> crosses
473: 1 -> hit ==> hid
474: 1 -> holmes ==> homes
475: 1 -> holocaust ==> holocost
476: 1 -> honorable ==> hon
477: 1 -> honorific ==> unerific
478: 1 -> horace ==> haunts
479: 1 -> horse ==> hoarse
480: 1 -> horseplay ==> play
481: 1 -> horton ==> wharton
482: 1 -> hotbed ==> bed
483: 1 -> hound ==> boarhound
484: 1 -> housecleaning ==> cleaning
485: 1 -> households ==> household's
486: 1 -> hussy ==> hussey
487: 1 -> hydras ==> hydra's
488: 1 -> i ==> i'd
489: 1 -> i ==> my
490: 1 -> i'd ==> had
491: 1 -> i'd ==> i
492: 1 -> i'm ==> i'll
493: 1 -> ichthyosaurus ==> ichiosaurus
494: 1 -> ichthyosaurus ==> ictiosaurus
495: 1 -> ichthyosaurus ==> ithiosaurus
496: 1 -> idiosyncratically ==> idiocyncratically
497: 1 -> if ==> that
498: 1 -> ike ==> like
499: 1 -> immediacy ==> immediately
500: 1 -> impearled ==> imperilled
501: 1 -> impress'd ==> impressed
502: 1 -> impressed ==> impress
503: 1 -> impresses ==> impress
504: 1 -> in ==> a
505: 1 -> in ==> bein
506: 1 -> in ==> lading
507: 1 -> in ==> morn
508: 1 -> in ==> of
509: 1 -> in ==> person
510: 1 -> inaction ==> action
511: 1 -> incandescent ==> incandiscent
512: 1 -> incertainty ==> uncertainty
513: 1 -> inclosed ==> enclosed
514: 1 -> infants ==> infant's
515: 1 -> innerlochy ==> lockey
516: 1 -> instancing ==> instancy
517: 1 -> insurrectionists ==> insurrectionous
518: 1 -> interest ==> interests
519: 1 -> intrenchment ==> entrenchment
520: 1 -> inventors ==> ventors
521: 1 -> iron's ==> earns
522: 1 -> is ==> choices
523: 1 -> is ==> decencies
524: 1 -> is ==> has
525: 1 -> is ==> his
526: 1 -> is ==> it
527: 1 -> is ==> voices
528: 1 -> is ==> was
529: 1 -> it ==> and
530: 1 -> it ==> sit
531: 1 -> it ==> that
532: 1 -> it's ==> its
533: 1 -> its ==> it's
534: 1 -> jago ==> geographer
535: 1 -> jago ==> jogo
536: 1 -> jago ==> johnnyiago
537: 1 -> jago ==> yago
538: 1 -> jail ==> drail
539: 1 -> jane's ==> jane
540: 1 -> jasper ==> sir
541: 1 -> jeweler's ==> jeweller's
542: 1 -> jus ==> just
543: 1 -> keogh ==> kiel
544: 1 -> kidnap ==> connect
545: 1 -> kirtland ==> curtland
546: 1 -> kneed ==> need
547: 1 -> la ==> the
548: 1 -> lake ==> leek
549: 1 -> lallie ==> laley
550: 1 -> lambent ==> at
551: 1 -> lanthorn ==> lantern
552: 1 -> larkspur ==> for
553: 1 -> larkspur ==> lurksburg
554: 1 -> laughed ==> left
555: 1 -> learn ==> learned
556: 1 -> leased ==> least
557: 1 -> leavenworth ==> worth
558: 1 -> lecompton ==> compton
559: 1 -> lefrank ==> lafring
560: 1 -> lilburn ==> littleburn
561: 1 -> lilly ==> lily
562: 1 -> lillys ==> lily's
563: 1 -> line ==> in
564: 1 -> link'd ==> linked
565: 1 -> liter ==> leader
566: 1 -> lo ==> hello
567: 1 -> logarithms ==> loggerems
568: 1 -> look ==> looks
569: 1 -> lord ==> landlord
570: 1 -> lotus ==> lotos
571: 1 -> lou's ==> loose
572: 1 -> louis ==> louise
573: 1 -> lower ==> lowered
574: 1 -> lulls ==> lolls
575: 1 -> mainhall ==> hall
576: 1 -> mainhall ==> mayhall
577: 1 -> manifested ==> his
578: 1 -> manservant ==> servant
579: 1 -> many ==> any
580: 1 -> marivaux ==> maravow
581: 1 -> marivaux ==> vau
582: 1 -> mastery ==> mystery
583: 1 -> mate ==> made
584: 1 -> meadowcroft ==> metacroft
585: 1 -> meadowcroft's ==> medicoff's
586: 1 -> mealyback ==> back
587: 1 -> meet ==> met
588: 1 -> mer ==> bandomire
589: 1 -> merchiston ==> murchiston
590: 1 -> merganser ==> migrantzer
591: 1 -> merry ==> married
592: 1 -> mersey ==> mercy
593: 1 -> militated ==> mitigated
594: 1 -> milligram ==> milligramme
595: 1 -> million'd ==> million
596: 1 -> mint ==> ment
597: 1 -> missourians ==> missouriians
598: 1 -> missus ==> never
599: 1 -> mist ==> miss
600: 1 -> mister ==> this
601: 1 -> mists ==> mist
602: 1 -> mombi ==> momby
603: 1 -> montmartre ==> march
604: 1 -> montrose's ==> montros's
605: 1 -> more's ==> is
606: 1 -> mormon ==> boccamoreman
607: 1 -> mornin ==> mornin'
608: 1 -> mornin ==> morning
609: 1 -> mothers ==> mother's
610: 1 -> mottled ==> modelled
611: 1 -> mounted ==> mountain
612: 1 -> mowed ==> mode
613: 1 -> n ==> een
614: 1 -> n ==> than
615: 1 -> naomi ==> aomi
616: 1 -> naomi ==> one
617: 1 -> ne'er ==> never
618: 1 -> neighborhood ==> neighbored
619: 1 -> nelly ==> nelli
620: 1 -> neverbend ==> been
621: 1 -> nine ==> not
622: 1 -> no ==> know
623: 1 -> nor ==> or
624: 1 -> northwards ==> northward
625: 1 -> northwest ==> west
626: 1 -> not ==> cannot
627: 1 -> not ==> nod
628: 1 -> nought ==> not
629: 1 -> o ==> a
630: 1 -> o ==> oh
631: 1 -> o'er ==> or
632: 1 -> oaks ==> yokes
633: 1 -> observed ==> observe
634: 1 -> oceanographer ==> ochinographer
635: 1 -> of ==> o
636: 1 -> of ==> pointed
637: 1 -> of ==> to
638: 1 -> offenses ==> offences
639: 1 -> oh ==> o
640: 1 -> old ==> mold
641: 1 -> olive's ==> its
642: 1 -> olive's ==> olives
643: 1 -> one ==> someone
644: 1 -> one ==> swung
645: 1 -> one ==> when
646: 1 -> or ==> a
647: 1 -> or ==> for
648: 1 -> or ==> of
649: 1 -> other ==> the
650: 1 -> other's ==> other
651: 1 -> otherworldly ==> worldly
652: 1 -> ottley's ==> outleigh's
653: 1 -> oughter ==> orders
654: 1 -> our ==> a
655: 1 -> overlean ==> overleam
656: 1 -> pane ==> pain
657: 1 -> paroquet ==> parakeet
658: 1 -> parsons ==> parson
659: 1 -> parsons ==> parson's
660: 1 -> partly ==> hardly
661: 1 -> paschal ==> of
662: 1 -> pasteboard ==> board
663: 1 -> patience ==> patient
664: 1 -> patients ==> patience
665: 1 -> peace ==> piece
666: 1 -> pearl ==> pearls
667: 1 -> pearl's ==> pearls
668: 1 -> pease ==> these
669: 1 -> pegre ==> peg
670: 1 -> pegrenne ==> paganel
671: 1 -> ph ==> h
672: 1 -> phaedrus ==> features
673: 1 -> philadelphian ==> philadelphia
674: 1 -> pierc'd ==> pierced
675: 1 -> plaits ==> plates
676: 1 -> pleasance ==> pleasants
677: 1 -> plural ==> pearl
678: 1 -> poison'd ==> poisoned
679: 1 -> pole ==> whole
680: 1 -> pond ==> upon
681: 1 -> poos ==> kickapoos
682: 1 -> portes ==> duportes
683: 1 -> posts ==> post
684: 1 -> power ==> bower
685: 1 -> precede ==> proceed
686: 1 -> precieuses ==> pressuses
687: 1 -> pretense ==> pretence
688: 1 -> prevent ==> present
689: 1 -> princesses ==> as
690: 1 -> prior ==> prayer
691: 1 -> prodigal ==> chronicle
692: 1 -> produced ==> produce
693: 1 -> provocation ==> provocations
694: 1 -> purist ==> purest
695: 1 -> puttin ==> putting
696: 1 -> pythagoreans ==> pythogorians
697: 1 -> quart ==> court
698: 1 -> quasi ==> corsair
699: 1 -> quinson ==> quinsant
700: 1 -> rated ==> raided
701: 1 -> re ==> ring
702: 1 -> realize ==> realise
703: 1 -> rebuk'd ==> rebuked
704: 1 -> reckon ==> racken
705: 1 -> record ==> records
706: 1 -> red ==> read
707: 1 -> redman's ==> redmond's
708: 1 -> reeder ==> reader
709: 1 -> reenforcements ==> reinforcements
710: 1 -> reflection ==> reflexion
711: 1 -> refused ==> refuse
712: 1 -> reign ==> rain
713: 1 -> remain ==> remained
714: 1 -> remark ==> remarked
715: 1 -> remov'd ==> removed
716: 1 -> remove ==> moved
717: 1 -> resigned ==> resign
718: 1 -> rest ==> arrest
719: 1 -> result ==> results
720: 1 -> reweighed ==> rewaded
721: 1 -> rhone ==> roan
722: 1 -> robin's ==> robins
723: 1 -> roerer ==> roarer
724: 1 -> rogers ==> rodders
725: 1 -> roi ==> lorroy
726: 1 -> rosseter ==> rossiter
727: 1 -> rust ==> rest
728: 1 -> said ==> sit
729: 1 -> saild ==> sailed
730: 1 -> sails ==> cells
731: 1 -> saline ==> sailing
732: 1 -> sang ==> saying
733: 1 -> sate ==> sat
734: 1 -> sauveur ==> souver
735: 1 -> saved ==> save
736: 1 -> saying ==> said
737: 1 -> scathe ==> scath
738: 1 -> sceura ==> scurra
739: 1 -> scevra ==> scavera
740: 1 -> school ==> in
741: 1 -> scouting ==> scout
742: 1 -> scrapbooks ==> books
743: 1 -> scuse ==> excuse
744: 1 -> scutcheon ==> and
745: 1 -> search ==> surge
746: 1 -> see ==> sea
747: 1 -> seem ==> seemed
748: 1 -> seems ==> seemed
749: 1 -> seized ==> ceased
750: 1 -> semon's ==> symonds
751: 1 -> sence ==> since
752: 1 -> sent ==> set
753: 1 -> sentences ==> sentence
754: 1 -> servant ==> servants
755: 1 -> shabata ==> shopata
756: 1 -> shall ==> shalt
757: 1 -> shan't ==> sha'n't
758: 1 -> sharpest ==> sharper
759: 1 -> sharps ==> sharp's
760: 1 -> she ==> he
761: 1 -> she's ==> is
762: 1 -> shewd ==> showed
763: 1 -> ship ==> generalship
764: 1 -> ship ==> ship's
765: 1 -> shoddy ==> shotty
766: 1 -> should ==> would
767: 1 -> showring ==> showering
768: 1 -> shrivelled ==> shriveled
769: 1 -> silence ==> signs
770: 1 -> silent ==> side
771: 1 -> sin ==> in
772: 1 -> since ==> sense
773: 1 -> sit ==> set
774: 1 -> sizzle ==> cizzle
775: 1 -> skillful ==> skilful
776: 1 -> slang ==> sling
777: 1 -> slavery ==> prostrate
778: 1 -> sleeve ==> steve
779: 1 -> slowly ==> solely
780: 1 -> smells ==> mills
781: 1 -> smild ==> smiled
782: 1 -> smith ==> criton
783: 1 -> socrates ==> socrites
784: 1 -> socratic ==> presocratic
785: 1 -> solon's ==> solomons
786: 1 -> sometime ==> time
787: 1 -> southey's ==> solvie's
788: 1 -> specialised ==> specialized
789: 1 -> specialty ==> speciality
790: 1 -> splendet ==> splendid
791: 1 -> stage ==> steeded
792: 1 -> staid ==> stay
793: 1 -> stairs ==> downstairs
794: 1 -> stairs ==> upstairs
795: 1 -> starts ==> stood
796: 1 -> starved ==> starve
797: 1 -> state's ==> states
798: 1 -> steel'd ==> steeled
799: 1 -> stephanos ==> stephano's
800: 1 -> stockbroker ==> broker
801: 1 -> stopped ==> stop
802: 1 -> story's ==> stories
803: 1 -> strain ==> strane
804: 1 -> stroller's ==> strollers
805: 1 -> such ==> sech
806: 1 -> summers ==> summer's
807: 1 -> summon ==> summoned
808: 1 -> surfaces ==> services
809: 1 -> swan ==> swain
810: 1 -> sweep ==> swept
811: 1 -> swoons ==> swoon
812: 1 -> t ==> that
813: 1 -> talkers ==> is
814: 1 -> tan ==> tan's
815: 1 -> tarantula ==> torrentula
816: 1 -> teachery ==> schoolteachery
817: 1 -> technique ==> ink
818: 1 -> tenability ==> nobility
819: 1 -> thank ==> think
820: 1 -> that ==> but
821: 1 -> that ==> than
822: 1 -> the ==> over
823: 1 -> the ==> their
824: 1 -> the ==> to
825: 1 -> thee ==> the
826: 1 -> thee's ==> these
827: 1 -> thel ==> fel
828: 1 -> then ==> and
829: 1 -> then ==> than
830: 1 -> there's ==> is
831: 1 -> thing ==> anything
832: 1 -> thorkel ==> terkol
833: 1 -> thorkel ==> torcho
834: 1 -> thorkel ==> turquol
835: 1 -> thorleif ==> leaf
836: 1 -> though ==> way
837: 1 -> thousand ==> thousandth
838: 1 -> thro ==> through
839: 1 -> tibi ==> tibby
840: 1 -> timaeus ==> a
841: 1 -> timaeus ==> as
842: 1 -> timaeus ==> teemeas
843: 1 -> time ==> sometime
844: 1 -> tintint ==> tintant
845: 1 -> tiresome ==> hiresome
846: 1 -> to ==> landa
847: 1 -> to ==> of
848: 1 -> to ==> too
849: 1 -> toilette ==> toilet
850: 1 -> tonnay ==> tournay
851: 1 -> too ==> two
852: 1 -> tooms ==> toomes
853: 1 -> topeka ==> a
854: 1 -> topmasts ==> masts
855: 1 -> totty ==> toddy
856: 1 -> tould ==> did
857: 1 -> towelling ==> towling
858: 1 -> towne ==> town
859: 1 -> transient ==> transit
860: 1 -> traveling ==> travelling
861: 1 -> treble ==> trouble
862: 1 -> treddleston ==> treadleston
863: 1 -> try ==> tried
864: 1 -> tuppeny ==> tuppenny
865: 1 -> turn ==> turned
866: 1 -> turns ==> turn
867: 1 -> twite ==> quite
868: 1 -> two ==> to
869: 1 -> un ==> raran
870: 1 -> unc ==> ok
871: 1 -> unclenched ==> clenched
872: 1 -> underground ==> ground
873: 1 -> uniform ==> uniformed
874: 1 -> untreated ==> untruted
875: 1 -> unwarily ==> warily
876: 1 -> upon ==> on
877: 1 -> used ==> use
878: 1 -> vales ==> veils
879: 1 -> valley ==> me
880: 1 -> valleyed ==> valleyd
881: 1 -> valliere ==> l'avalier
882: 1 -> van ==> man
883: 1 -> vanderpool ==> pool
884: 1 -> vanderpools ==> pools
885: 1 -> vanes ==> veins
886: 1 -> vaudois ==> fauduois
887: 1 -> veiled ==> baled
888: 1 -> verne's ==> vernon's
889: 1 -> verse ==> first
890: 1 -> viaduct ==> viaduc
891: 1 -> vignette ==> venet
892: 1 -> viking ==> fighting
893: 1 -> villeroy ==> were
894: 1 -> walks ==> each
895: 1 -> wander ==> wonder
896: 1 -> warrenton's ==> warrentons
897: 1 -> was ==> fairviews
898: 1 -> wasn't ==> twasn't
899: 1 -> watermill ==> mill
900: 1 -> way ==> away
901: 1 -> way ==> passageway
902: 1 -> we ==> be
903: 1 -> we're ==> were
904: 1 -> weakened ==> weaken
905: 1 -> webs ==> whips
906: 1 -> welcomed ==> welcome
907: 1 -> were ==> are
908: 1 -> were ==> where
909: 1 -> west ==> northwest
910: 1 -> westmere ==> westmine
911: 1 -> wet ==> white
912: 1 -> what's ==> is
913: 1 -> whatever ==> whatsoever
914: 1 -> whirlpool ==> pole
915: 1 -> whittawd ==> odd
916: 1 -> will ==> it'll
917: 1 -> will ==> would
918: 1 -> wills ==> will
919: 1 -> winter ==> her
920: 1 -> witch ==> which
921: 1 -> with ==> which
922: 1 -> wolf ==> warwolf
923: 1 -> woman's ==> women's
924: 1 -> woodbegirt ==> begirt
925: 1 -> woods ==> wood
926: 1 -> wool ==> wall
927: 1 -> worst ==> worse
928: 1 -> xavier ==> zavior
929: 1 -> xavier ==> zervier
930: 1 -> xavier ==> zevern
931: 1 -> yet ==> of
932: 1 -> you'll ==> will
933: 1 -> you'll ==> you
934: 1 -> zora ==> sora
935: 1 -> zora ==> zoor
936: 1 -> zora's ==> zorrah's
-------
1219
INSERTIONS Total (101)
With >= 1 occurrences (101)
1: 16 -> the
2: 11 -> to
3: 8 -> a
4: 7 -> any
5: 6 -> e
6: 6 -> of
7: 5 -> every
8: 5 -> for
9: 4 -> and
10: 4 -> he
11: 4 -> some
12: 3 -> battle
13: 3 -> have
14: 3 -> i
15: 2 -> an
16: 2 -> britain
17: 2 -> der
18: 2 -> ferdinand
19: 2 -> fire
20: 2 -> in
21: 2 -> located
22: 2 -> me
23: 2 -> on
24: 2 -> van
25: 2 -> you
26: 1 -> addel
27: 1 -> all
28: 1 -> are
29: 1 -> as
30: 1 -> athol
31: 1 -> bad
32: 1 -> be
33: 1 -> bee
34: 1 -> bit
35: 1 -> board
36: 1 -> briton
37: 1 -> chaps
38: 1 -> chatter
39: 1 -> color
40: 1 -> command
41: 1 -> crest
42: 1 -> crust
43: 1 -> de
44: 1 -> deal
45: 1 -> don't
46: 1 -> dutch
47: 1 -> effect
48: 1 -> effectual
49: 1 -> effectule
50: 1 -> fair
51: 1 -> fat
52: 1 -> found
53: 1 -> game
54: 1 -> grey
55: 1 -> had
56: 1 -> hallo
57: 1 -> has
58: 1 -> hays
59: 1 -> horse
60: 1 -> hot
61: 1 -> house
62: 1 -> inner
63: 1 -> is
64: 1 -> it
65: 1 -> la
66: 1 -> larks
67: 1 -> levin
68: 1 -> lie
69: 1 -> main
70: 1 -> man
71: 1 -> manifests
72: 1 -> marie
73: 1 -> mealy
74: 1 -> mount
75: 1 -> no
76: 1 -> nor
77: 1 -> north
78: 1 -> or
79: 1 -> other
80: 1 -> p
81: 1 -> pace
82: 1 -> patch
83: 1 -> princess
84: 1 -> scrap
85: 1 -> she
86: 1 -> sick
87: 1 -> stock
88: 1 -> that
89: 1 -> then
90: 1 -> there
91: 1 -> this
92: 1 -> top
93: 1 -> topic
94: 1 -> tore
95: 1 -> type
96: 1 -> war
97: 1 -> water
98: 1 -> what
99: 1 -> wheeler
100: 1 -> win
101: 1 -> would
-------
183
DELETIONS Total (322)
With >= 1 occurrences (322)
1: 34 -> and
2: 34 -> the
3: 17 -> to
4: 16 -> a
5: 16 -> of
6: 9 -> that
7: 7 -> who
8: 6 -> on
9: 5 -> for
10: 5 -> or
11: 5 -> those
12: 5 -> were
13: 5 -> which
14: 4 -> any
15: 4 -> be
16: 4 -> he
17: 4 -> his
18: 4 -> i
19: 4 -> is
20: 4 -> it
21: 4 -> this
22: 4 -> tonnay
23: 4 -> was
24: 4 -> with
25: 3 -> bad
26: 3 -> but
27: 3 -> good
28: 3 -> great
29: 3 -> her
30: 3 -> in
31: 3 -> mister
32: 3 -> one
33: 3 -> she
34: 3 -> some
35: 3 -> then
36: 3 -> they
37: 3 -> up
38: 3 -> where
39: 2 -> all
40: 2 -> always
41: 2 -> an
42: 2 -> as
43: 2 -> by
44: 2 -> conceive
45: 2 -> confess
46: 2 -> court
47: 2 -> creighton
48: 2 -> de
49: 2 -> defended
50: 2 -> design
51: 2 -> dismayed
52: 2 -> e
53: 2 -> encourage
54: 2 -> end
55: 2 -> family
56: 2 -> find
57: 2 -> from
58: 2 -> had
59: 2 -> has
60: 2 -> have
61: 2 -> here
62: 2 -> induced
63: 2 -> john
64: 2 -> law
65: 2 -> lost
66: 2 -> made
67: 2 -> miss
68: 2 -> more
69: 2 -> night
70: 2 -> not
71: 2 -> outcry
72: 2 -> parasites
73: 2 -> propensities
74: 2 -> ready
75: 2 -> same
76: 2 -> say
77: 2 -> sister
78: 2 -> sought
79: 2 -> summer's
80: 2 -> than
81: 2 -> their
82: 2 -> there
83: 2 -> thus
84: 2 -> wicked
85: 2 -> would
86: 2 -> your
87: 1 -> advantages
88: 1 -> advised
89: 1 -> after
90: 1 -> against
91: 1 -> alas
92: 1 -> also
93: 1 -> altering
94: 1 -> although
95: 1 -> am
96: 1 -> among
97: 1 -> ante
98: 1 -> appear
99: 1 -> area
100: 1 -> assumed
101: 1 -> at
102: 1 -> attained
103: 1 -> back
104: 1 -> bains
105: 1 -> been
106: 1 -> bench
107: 1 -> bill
108: 1 -> book
109: 1 -> branches
110: 1 -> broken
111: 1 -> bul
112: 1 -> butterfly
113: 1 -> can
114: 1 -> cap'n
115: 1 -> caused
116: 1 -> channel
117: 1 -> characteristic
118: 1 -> charles
119: 1 -> chieftain
120: 1 -> choice
121: 1 -> civilization
122: 1 -> clerk
123: 1 -> clients
124: 1 -> co
125: 1 -> column
126: 1 -> complicated
127: 1 -> composed
128: 1 -> conscience
129: 1 -> considerable
130: 1 -> continuously
131: 1 -> contrition
132: 1 -> corn
133: 1 -> could
134: 1 -> course
135: 1 -> cow
136: 1 -> cracking
137: 1 -> crawl
138: 1 -> cresswell
139: 1 -> crossed
140: 1 -> curse
141: 1 -> day
142: 1 -> days
143: 1 -> decency
144: 1 -> deed
145: 1 -> delicate
146: 1 -> devour
147: 1 -> disappointment
148: 1 -> dishes
149: 1 -> distinguish
150: 1 -> distrust
151: 1 -> divert
152: 1 -> do
153: 1 -> doctor
154: 1 -> does
155: 1 -> down
156: 1 -> election
157: 1 -> elements
158: 1 -> english
159: 1 -> ever
160: 1 -> every
161: 1 -> fairview
162: 1 -> fast
163: 1 -> favourite
164: 1 -> fearing
165: 1 -> felt
166: 1 -> field
167: 1 -> forces
168: 1 -> former
169: 1 -> friend
170: 1 -> general
171: 1 -> gilded
172: 1 -> grass
173: 1 -> green
174: 1 -> hal
175: 1 -> hand
176: 1 -> hardly
177: 1 -> harry
178: 1 -> hatred
179: 1 -> haworth
180: 1 -> head
181: 1 -> heart's
182: 1 -> heaven
183: 1 -> hen
184: 1 -> herself
185: 1 -> holiness
186: 1 -> hours
187: 1 -> however
188: 1 -> humble
189: 1 -> humor
190: 1 -> ideas
191: 1 -> ill
192: 1 -> individuals
193: 1 -> innerlochy
194: 1 -> intents
195: 1 -> into
196: 1 -> invariably
197: 1 -> jail
198: 1 -> kick
199: 1 -> la
200: 1 -> lady
201: 1 -> laid
202: 1 -> land
203: 1 -> lay
204: 1 -> le
205: 1 -> lighting
206: 1 -> like
207: 1 -> long
208: 1 -> longing
209: 1 -> looked
210: 1 -> lopped
211: 1 -> mac
212: 1 -> manufacturer
213: 1 -> may
214: 1 -> mell
215: 1 -> minds
216: 1 -> misfortune
217: 1 -> missus
218: 1 -> mo
219: 1 -> moss
220: 1 -> most
221: 1 -> mother
222: 1 -> much
223: 1 -> murderers
224: 1 -> my
225: 1 -> mystified
226: 1 -> needed
227: 1 -> new
228: 1 -> noise
229: 1 -> north
230: 1 -> nothin
231: 1 -> numbers
232: 1 -> o
233: 1 -> object
234: 1 -> off
235: 1 -> office
236: 1 -> operations
237: 1 -> organizations
238: 1 -> ornament
239: 1 -> otherwise
240: 1 -> over
241: 1 -> own
242: 1 -> parliament
243: 1 -> passage
244: 1 -> patch
245: 1 -> peace
246: 1 -> pell
247: 1 -> people
248: 1 -> perches
249: 1 -> perfection
250: 1 -> persevered
251: 1 -> pewter
252: 1 -> philip
253: 1 -> pleasure
254: 1 -> point
255: 1 -> pre
256: 1 -> prevailing
257: 1 -> pride
258: 1 -> pro
259: 1 -> purse
260: 1 -> rare
261: 1 -> rather
262: 1 -> recognised
263: 1 -> red
264: 1 -> reproach
265: 1 -> rich
266: 1 -> room
267: 1 -> round
268: 1 -> scarce
269: 1 -> school
270: 1 -> screen
271: 1 -> see
272: 1 -> settle
273: 1 -> sharp'st
274: 1 -> shed
275: 1 -> silliness
276: 1 -> smiles
277: 1 -> so
278: 1 -> something
279: 1 -> sometimes
280: 1 -> sounding
281: 1 -> spreads
282: 1 -> stopped
283: 1 -> streamline
284: 1 -> strong
285: 1 -> subject
286: 1 -> surge
287: 1 -> suspicion
288: 1 -> swell
289: 1 -> table
290: 1 -> taylor
291: 1 -> things
292: 1 -> thou
293: 1 -> thought
294: 1 -> tiles
295: 1 -> tory
296: 1 -> trees
297: 1 -> true
298: 1 -> truly
299: 1 -> turned
300: 1 -> two
301: 1 -> use
302: 1 -> usually
303: 1 -> vanderpool
304: 1 -> vertebral
305: 1 -> vexation
306: 1 -> villa
307: 1 -> visited
308: 1 -> vivid
309: 1 -> voice
310: 1 -> wandering
311: 1 -> war
312: 1 -> weak
313: 1 -> weather
314: 1 -> weep
315: 1 -> what
316: 1 -> why
317: 1 -> wonderful
318: 1 -> wood
319: 1 -> writing
320: 1 -> yet
321: 1 -> you
322: 1 -> zeal
-------
582
SUBSTITUTIONS Total (799)
With >= 1 occurrences (799)
1: 31 -> and
2: 22 -> a
3: 21 -> in
4: 17 -> the
5: 16 -> rodolfo
6: 12 -> is
7: 11 -> that
8: 10 -> this
9: 9 -> bartley
10: 8 -> has
11: 7 -> an
12: 7 -> anders
13: 7 -> they
14: 6 -> anyone
15: 6 -> estafania
16: 6 -> her
17: 6 -> kaffar
18: 6 -> leocadia
19: 6 -> o
20: 5 -> charente
21: 5 -> of
22: 5 -> one
23: 5 -> soames
24: 5 -> thel
25: 4 -> andella
26: 4 -> at
27: 4 -> battleax
28: 4 -> colour
29: 4 -> emil
30: 4 -> jago
31: 4 -> kaffar's
32: 4 -> leavenworth
33: 4 -> leocadia's
34: 4 -> man
35: 4 -> solon
36: 4 -> their
37: 4 -> towards
38: 4 -> will
39: 3 -> as
40: 3 -> britannula
41: 3 -> center
42: 3 -> de
43: 3 -> everyone
44: 3 -> galatians
45: 3 -> gilchrist
46: 3 -> haven't
47: 3 -> he's
48: 3 -> him
49: 3 -> hollan
50: 3 -> i'm
51: 3 -> ichthyosaurus
52: 3 -> it
53: 3 -> madam
54: 3 -> or
55: 3 -> practise
56: 3 -> silvia
57: 3 -> someone
58: 3 -> tabu
59: 3 -> theater
60: 3 -> thee
61: 3 -> thorkel
62: 3 -> timaeus
63: 3 -> to
64: 3 -> today
65: 3 -> valliere
66: 3 -> was
67: 3 -> xavier
68: 2 -> abduction
69: 2 -> alluvion
70: 2 -> am
71: 2 -> another
72: 2 -> ass
73: 2 -> athenais
74: 2 -> bannister
75: 2 -> befal
76: 2 -> before
77: 2 -> blessings
78: 2 -> brake
79: 2 -> carl
80: 2 -> chaise
81: 2 -> clew
82: 2 -> colored
83: 2 -> colorist
84: 2 -> colors
85: 2 -> composser
86: 2 -> conjurer
87: 2 -> country's
88: 2 -> cozier
89: 2 -> cresswell
90: 2 -> critias
91: 2 -> cyn
92: 2 -> cynthia
93: 2 -> define
94: 2 -> discoloured
95: 2 -> dissent
96: 2 -> ears
97: 2 -> enter
98: 2 -> entranced
99: 2 -> everyday
100: 2 -> feeling
101: 2 -> ferdinando
102: 2 -> forever
103: 2 -> friskily
104: 2 -> gamewell
105: 2 -> grey
106: 2 -> had
107: 2 -> hallo
108: 2 -> hangings
109: 2 -> he
110: 2 -> here
111: 2 -> hilda
112: 2 -> his
113: 2 -> holbein
114: 2 -> honour
115: 2 -> honourable
116: 2 -> i
117: 2 -> i'd
118: 2 -> i've
119: 2 -> larkspur
120: 2 -> lecompte
121: 2 -> leocadi
122: 2 -> luis
123: 2 -> mainhall
124: 2 -> marivaux
125: 2 -> master's
126: 2 -> men
127: 2 -> meter
128: 2 -> mornin
129: 2 -> munny
130: 2 -> n
131: 2 -> naomi
132: 2 -> nearer
133: 2 -> not
134: 2 -> olive's
135: 2 -> paper
136: 2 -> parlor
137: 2 -> parsons
138: 2 -> purposed
139: 2 -> rate
140: 2 -> rather
141: 2 -> read
142: 2 -> remained
143: 2 -> remember
144: 2 -> rodolfo's
145: 2 -> round
146: 2 -> scaroons
147: 2 -> ship
148: 2 -> sif
149: 2 -> sprague
150: 2 -> stairs
151: 2 -> swoon
152: 2 -> than
153: 2 -> them
154: 2 -> then
155: 2 -> tonight
156: 2 -> travelers
157: 2 -> uncasing
158: 2 -> vapours
159: 2 -> voltaire
160: 2 -> watry
161: 2 -> way
162: 2 -> were
163: 2 -> when
164: 2 -> whisk
165: 2 -> whittaws
166: 2 -> wholly
167: 2 -> withes
168: 2 -> yard
169: 2 -> ye
170: 2 -> you'll
171: 2 -> you're
172: 2 -> zora
173: 1 -> abbe
174: 1 -> abjectly
175: 1 -> abolitionists
176: 1 -> acknowledgement
177: 1 -> across
178: 1 -> affect
179: 1 -> affrightened
180: 1 -> aid
181: 1 -> aignan
182: 1 -> albans
183: 1 -> alexandra
184: 1 -> amphitheater
185: 1 -> anaxagoras
186: 1 -> angels
187: 1 -> answerd
188: 1 -> anymore
189: 1 -> appealed
190: 1 -> apposition
191: 1 -> apprentice
192: 1 -> approves
193: 1 -> arc
194: 1 -> ardle
195: 1 -> ardour
196: 1 -> are
197: 1 -> arrests
198: 1 -> arrondissement
199: 1 -> artichokes
200: 1 -> ascendency
201: 1 -> astor
202: 1 -> athlete
203: 1 -> atholemen
204: 1 -> attendance
205: 1 -> attendants
206: 1 -> aunt
207: 1 -> awhile
208: 1 -> ay
209: 1 -> aye
210: 1 -> babirusa
211: 1 -> badauderie
212: 1 -> balmy
213: 1 -> barn
214: 1 -> beached
215: 1 -> bedford
216: 1 -> bedimmed
217: 1 -> beebe
218: 1 -> beeder
219: 1 -> beehives
220: 1 -> beg
221: 1 -> beggar's
222: 1 -> behaviourist
223: 1 -> bein
224: 1 -> being
225: 1 -> bergson
226: 1 -> bertie
227: 1 -> bill
228: 1 -> billed
229: 1 -> billygoat
230: 1 -> blasts
231: 1 -> bleed
232: 1 -> boar
233: 1 -> bolls
234: 1 -> bond
235: 1 -> bookkeeper
236: 1 -> border
237: 1 -> bow
238: 1 -> boys
239: 1 -> branch
240: 1 -> breakfas
241: 1 -> bringing
242: 1 -> britannulists
243: 1 -> budding
244: 1 -> bul
245: 1 -> bunnit
246: 1 -> burgoyne
247: 1 -> but
248: 1 -> caldwell
249: 1 -> can
250: 1 -> canvass
251: 1 -> capless
252: 1 -> carey
253: 1 -> carpaccio's
254: 1 -> cat
255: 1 -> ceasd
256: 1 -> cendenaries
257: 1 -> centred
258: 1 -> chatterbox
259: 1 -> check
260: 1 -> checker
261: 1 -> checks
262: 1 -> cheroot
263: 1 -> chiaroscurist
264: 1 -> chiaroscurists
265: 1 -> chord
266: 1 -> christain
267: 1 -> cigarette
268: 1 -> citadelled
269: 1 -> civet
270: 1 -> clarified
271: 1 -> clause
272: 1 -> cloth
273: 1 -> coasts
274: 1 -> coined
275: 1 -> coloured
276: 1 -> colours
277: 1 -> combash
278: 1 -> commandments
279: 1 -> compulsive
280: 1 -> condense
281: 1 -> conquerin
282: 1 -> consid'ble
283: 1 -> contained
284: 1 -> conti
285: 1 -> cook
286: 1 -> cost
287: 1 -> costs
288: 1 -> could
289: 1 -> courant
290: 1 -> court
291: 1 -> court's
292: 1 -> craned
293: 1 -> craswellers
294: 1 -> cresswells
295: 1 -> crosstrees
296: 1 -> curved
297: 1 -> cutters
298: 1 -> d'este
299: 1 -> dawn's
300: 1 -> dedalos
301: 1 -> dedalus
302: 1 -> deliberative
303: 1 -> depend
304: 1 -> dew
305: 1 -> dias
306: 1 -> diatribe
307: 1 -> did
308: 1 -> districts
309: 1 -> doctress
310: 1 -> doll
311: 1 -> doubtingly
312: 1 -> douze
313: 1 -> doves
314: 1 -> drain
315: 1 -> draws
316: 1 -> dripping
317: 1 -> dropidas
318: 1 -> due
319: 1 -> duerer
320: 1 -> dumas
321: 1 -> dunno
322: 1 -> dykes
323: 1 -> e
324: 1 -> ease
325: 1 -> economic
326: 1 -> edition
327: 1 -> effected
328: 1 -> effecting
329: 1 -> elcho
330: 1 -> eleven
331: 1 -> elmo's
332: 1 -> elsinore
333: 1 -> em
334: 1 -> emerg'd
335: 1 -> emigrant
336: 1 -> endeavor
337: 1 -> endured
338: 1 -> engineer
339: 1 -> ennis
340: 1 -> enquire
341: 1 -> enquired
342: 1 -> enquiries
343: 1 -> ensure
344: 1 -> enthralment
345: 1 -> entrenched
346: 1 -> entrusted
347: 1 -> entrusting
348: 1 -> er
349: 1 -> err
350: 1 -> escheated
351: 1 -> esprit
352: 1 -> estrangement
353: 1 -> evenin's
354: 1 -> ever
355: 1 -> evolution
356: 1 -> exist
357: 1 -> eyed
358: 1 -> fairview
359: 1 -> far
360: 1 -> farthest
361: 1 -> fattened
362: 1 -> feared
363: 1 -> feed
364: 1 -> feelin's
365: 1 -> felt
366: 1 -> fete
367: 1 -> finally
368: 1 -> fireball
369: 1 -> firebugs
370: 1 -> first
371: 1 -> fluffinose
372: 1 -> followed
373: 1 -> for
374: 1 -> forbes's
375: 1 -> formally
376: 1 -> founded
377: 1 -> francs
378: 1 -> fulness
379: 1 -> furiously
380: 1 -> further
381: 1 -> furthered
382: 1 -> gentlemen
383: 1 -> geoffrey
384: 1 -> geoffrey's
385: 1 -> gestation
386: 1 -> giaours
387: 1 -> gier
388: 1 -> gilchrist's
389: 1 -> girard
390: 1 -> give
391: 1 -> glue
392: 1 -> goat
393: 1 -> goat's
394: 1 -> goobers
395: 1 -> gossip
396: 1 -> government
397: 1 -> grades
398: 1 -> gram
399: 1 -> grand
400: 1 -> gray
401: 1 -> greeing
402: 1 -> grey's
403: 1 -> griefs
404: 1 -> gringo
405: 1 -> guest
406: 1 -> guests
407: 1 -> guise
408: 1 -> hakon
409: 1 -> halloa
410: 1 -> ham
411: 1 -> hamlet
412: 1 -> hanna
413: 1 -> happiness
414: 1 -> haranguing
415: 1 -> harboring
416: 1 -> harkened
417: 1 -> harmon
418: 1 -> harried
419: 1 -> harts
420: 1 -> hawk
421: 1 -> hawtrey
422: 1 -> hay
423: 1 -> hazewrapped
424: 1 -> he'd
425: 1 -> headlongs
426: 1 -> held
427: 1 -> hellenes
428: 1 -> helped
429: 1 -> hen
430: 1 -> heracleitus
431: 1 -> hit
432: 1 -> holmes
433: 1 -> holocaust
434: 1 -> honorable
435: 1 -> honorific
436: 1 -> horace
437: 1 -> horse
438: 1 -> horseplay
439: 1 -> horton
440: 1 -> hotbed
441: 1 -> hound
442: 1 -> housecleaning
443: 1 -> households
444: 1 -> hussy
445: 1 -> hydras
446: 1 -> idiosyncratically
447: 1 -> if
448: 1 -> ike
449: 1 -> immediacy
450: 1 -> impearled
451: 1 -> impress'd
452: 1 -> impressed
453: 1 -> impresses
454: 1 -> inaction
455: 1 -> incandescent
456: 1 -> incertainty
457: 1 -> inclosed
458: 1 -> infants
459: 1 -> innerlochy
460: 1 -> instancing
461: 1 -> insurrectionists
462: 1 -> interest
463: 1 -> intrenchment
464: 1 -> inventors
465: 1 -> iron's
466: 1 -> it's
467: 1 -> its
468: 1 -> jail
469: 1 -> jane's
470: 1 -> jasper
471: 1 -> jeweler's
472: 1 -> jus
473: 1 -> keogh
474: 1 -> kidnap
475: 1 -> kirtland
476: 1 -> kneed
477: 1 -> la
478: 1 -> lake
479: 1 -> lallie
480: 1 -> lambent
481: 1 -> lanthorn
482: 1 -> laughed
483: 1 -> learn
484: 1 -> leased
485: 1 -> lecompton
486: 1 -> lefrank
487: 1 -> lilburn
488: 1 -> lilly
489: 1 -> lillys
490: 1 -> line
491: 1 -> link'd
492: 1 -> liter
493: 1 -> lo
494: 1 -> logarithms
495: 1 -> look
496: 1 -> lord
497: 1 -> lotus
498: 1 -> lou's
499: 1 -> louis
500: 1 -> lower
501: 1 -> lulls
502: 1 -> manifested
503: 1 -> manservant
504: 1 -> many
505: 1 -> mastery
506: 1 -> mate
507: 1 -> meadowcroft
508: 1 -> meadowcroft's
509: 1 -> mealyback
510: 1 -> meet
511: 1 -> mer
512: 1 -> merchiston
513: 1 -> merganser
514: 1 -> merry
515: 1 -> mersey
516: 1 -> militated
517: 1 -> milligram
518: 1 -> million'd
519: 1 -> mint
520: 1 -> missourians
521: 1 -> missus
522: 1 -> mist
523: 1 -> mister
524: 1 -> mists
525: 1 -> mombi
526: 1 -> montmartre
527: 1 -> montrose's
528: 1 -> more's
529: 1 -> mormon
530: 1 -> mothers
531: 1 -> mottled
532: 1 -> mounted
533: 1 -> mowed
534: 1 -> ne'er
535: 1 -> neighborhood
536: 1 -> nelly
537: 1 -> neverbend
538: 1 -> nine
539: 1 -> no
540: 1 -> nor
541: 1 -> northwards
542: 1 -> northwest
543: 1 -> nought
544: 1 -> o'er
545: 1 -> oaks
546: 1 -> observed
547: 1 -> oceanographer
548: 1 -> offenses
549: 1 -> oh
550: 1 -> old
551: 1 -> other
552: 1 -> other's
553: 1 -> otherworldly
554: 1 -> ottley's
555: 1 -> oughter
556: 1 -> our
557: 1 -> overlean
558: 1 -> pane
559: 1 -> paroquet
560: 1 -> partly
561: 1 -> paschal
562: 1 -> pasteboard
563: 1 -> patience
564: 1 -> patients
565: 1 -> peace
566: 1 -> pearl
567: 1 -> pearl's
568: 1 -> pease
569: 1 -> pegre
570: 1 -> pegrenne
571: 1 -> ph
572: 1 -> phaedrus
573: 1 -> philadelphian
574: 1 -> pierc'd
575: 1 -> plaits
576: 1 -> pleasance
577: 1 -> plural
578: 1 -> poison'd
579: 1 -> pole
580: 1 -> pond
581: 1 -> poos
582: 1 -> portes
583: 1 -> posts
584: 1 -> power
585: 1 -> precede
586: 1 -> precieuses
587: 1 -> pretense
588: 1 -> prevent
589: 1 -> princesses
590: 1 -> prior
591: 1 -> prodigal
592: 1 -> produced
593: 1 -> provocation
594: 1 -> purist
595: 1 -> puttin
596: 1 -> pythagoreans
597: 1 -> quart
598: 1 -> quasi
599: 1 -> quinson
600: 1 -> rated
601: 1 -> re
602: 1 -> realize
603: 1 -> rebuk'd
604: 1 -> reckon
605: 1 -> record
606: 1 -> red
607: 1 -> redman's
608: 1 -> reeder
609: 1 -> reenforcements
610: 1 -> reflection
611: 1 -> refused
612: 1 -> reign
613: 1 -> remain
614: 1 -> remark
615: 1 -> remov'd
616: 1 -> remove
617: 1 -> resigned
618: 1 -> rest
619: 1 -> result
620: 1 -> reweighed
621: 1 -> rhone
622: 1 -> robin's
623: 1 -> roerer
624: 1 -> rogers
625: 1 -> roi
626: 1 -> rosseter
627: 1 -> rust
628: 1 -> said
629: 1 -> saild
630: 1 -> sails
631: 1 -> saline
632: 1 -> sang
633: 1 -> sate
634: 1 -> sauveur
635: 1 -> saved
636: 1 -> saying
637: 1 -> scathe
638: 1 -> sceura
639: 1 -> scevra
640: 1 -> school
641: 1 -> scouting
642: 1 -> scrapbooks
643: 1 -> scuse
644: 1 -> scutcheon
645: 1 -> search
646: 1 -> see
647: 1 -> seem
648: 1 -> seems
649: 1 -> seized
650: 1 -> semon's
651: 1 -> sence
652: 1 -> sent
653: 1 -> sentences
654: 1 -> servant
655: 1 -> shabata
656: 1 -> shall
657: 1 -> shan't
658: 1 -> sharpest
659: 1 -> sharps
660: 1 -> she
661: 1 -> she's
662: 1 -> shewd
663: 1 -> shoddy
664: 1 -> should
665: 1 -> showring
666: 1 -> shrivelled
667: 1 -> silence
668: 1 -> silent
669: 1 -> sin
670: 1 -> since
671: 1 -> sit
672: 1 -> sizzle
673: 1 -> skillful
674: 1 -> slang
675: 1 -> slavery
676: 1 -> sleeve
677: 1 -> slowly
678: 1 -> smells
679: 1 -> smild
680: 1 -> smith
681: 1 -> socrates
682: 1 -> socratic
683: 1 -> solon's
684: 1 -> sometime
685: 1 -> southey's
686: 1 -> specialised
687: 1 -> specialty
688: 1 -> splendet
689: 1 -> stage
690: 1 -> staid
691: 1 -> starts
692: 1 -> starved
693: 1 -> state's
694: 1 -> steel'd
695: 1 -> stephanos
696: 1 -> stockbroker
697: 1 -> stopped
698: 1 -> story's
699: 1 -> strain
700: 1 -> stroller's
701: 1 -> such
702: 1 -> summers
703: 1 -> summon
704: 1 -> surfaces
705: 1 -> swan
706: 1 -> sweep
707: 1 -> swoons
708: 1 -> t
709: 1 -> talkers
710: 1 -> tan
711: 1 -> tarantula
712: 1 -> teachery
713: 1 -> technique
714: 1 -> tenability
715: 1 -> thank
716: 1 -> thee's
717: 1 -> there's
718: 1 -> thing
719: 1 -> thorleif
720: 1 -> though
721: 1 -> thousand
722: 1 -> thro
723: 1 -> tibi
724: 1 -> time
725: 1 -> tintint
726: 1 -> tiresome
727: 1 -> toilette
728: 1 -> tonnay
729: 1 -> too
730: 1 -> tooms
731: 1 -> topeka
732: 1 -> topmasts
733: 1 -> totty
734: 1 -> tould
735: 1 -> towelling
736: 1 -> towne
737: 1 -> transient
738: 1 -> traveling
739: 1 -> treble
740: 1 -> treddleston
741: 1 -> try
742: 1 -> tuppeny
743: 1 -> turn
744: 1 -> turns
745: 1 -> twite
746: 1 -> two
747: 1 -> un
748: 1 -> unc
749: 1 -> unclenched
750: 1 -> underground
751: 1 -> uniform
752: 1 -> untreated
753: 1 -> unwarily
754: 1 -> upon
755: 1 -> used
756: 1 -> vales
757: 1 -> valley
758: 1 -> valleyed
759: 1 -> van
760: 1 -> vanderpool
761: 1 -> vanderpools
762: 1 -> vanes
763: 1 -> vaudois
764: 1 -> veiled
765: 1 -> verne's
766: 1 -> verse
767: 1 -> viaduct
768: 1 -> vignette
769: 1 -> viking
770: 1 -> villeroy
771: 1 -> walks
772: 1 -> wander
773: 1 -> warrenton's
774: 1 -> wasn't
775: 1 -> watermill
776: 1 -> we
777: 1 -> we're
778: 1 -> weakened
779: 1 -> webs
780: 1 -> welcomed
781: 1 -> west
782: 1 -> westmere
783: 1 -> wet
784: 1 -> what's
785: 1 -> whatever
786: 1 -> whirlpool
787: 1 -> whittawd
788: 1 -> wills
789: 1 -> winter
790: 1 -> witch
791: 1 -> with
792: 1 -> wolf
793: 1 -> woman's
794: 1 -> woodbegirt
795: 1 -> woods
796: 1 -> wool
797: 1 -> worst
798: 1 -> yet
799: 1 -> zora's
-------
1219
* NOTE: The 'Substitution' words are those reference words
for which the recognizer supplied an incorrect word.
FALSELY RECOGNIZED Total (813)
With >= 1 occurrences (813)
1: 44 -> the
2: 24 -> a
3: 23 -> in
4: 21 -> and
5: 14 -> rudolpho
6: 13 -> one
7: 11 -> as
8: 11 -> is
9: 11 -> of
10: 10 -> it
11: 7 -> bartly
12: 7 -> had
13: 7 -> on
14: 7 -> there
15: 6 -> kaffir
16: 6 -> that
17: 5 -> at
18: 5 -> day
19: 5 -> i
20: 5 -> men
21: 5 -> solmes
22: 5 -> this
23: 5 -> to
24: 4 -> an
25: 4 -> axe
26: 4 -> color
27: 4 -> estaffania
28: 4 -> for
29: 4 -> he
30: 4 -> kaffir's
31: 4 -> toward
32: 3 -> andrews
33: 3 -> are
34: 3 -> but
35: 3 -> centre
36: 3 -> fell
37: 3 -> hello
38: 3 -> him
39: 3 -> his
40: 3 -> holland
41: 3 -> its
42: 3 -> levenworth
43: 3 -> madame
44: 3 -> man
45: 3 -> or
46: 3 -> other
47: 3 -> practice
48: 3 -> red
49: 3 -> sylvia
50: 3 -> taboo
51: 3 -> than
52: 3 -> theatre
53: 3 -> you
54: 2 -> adoption
55: 2 -> alluvian
56: 2 -> am
57: 2 -> amyl
58: 2 -> anddela
59: 2 -> andela
60: 2 -> andrew's
61: 2 -> anyone
62: 2 -> around
63: 2 -> arrest
64: 2 -> asks
65: 2 -> banister
66: 2 -> befall
67: 2 -> blessing
68: 2 -> break
69: 2 -> brogue
70: 2 -> brother
71: 2 -> ceased
72: 2 -> chanced
73: 2 -> chase
74: 2 -> clue
75: 2 -> coloured
76: 2 -> composure
77: 2 -> conjuror
78: 2 -> cosier
79: 2 -> country
80: 2 -> courtyard
81: 2 -> cynthias
82: 2 -> descent
83: 2 -> discolored
84: 2 -> dismayedestafania
85: 2 -> do
86: 2 -> em
87: 2 -> encasing
88: 2 -> eucadius
89: 2 -> ever
90: 2 -> filling
91: 2 -> find
92: 2 -> friskly
93: 2 -> gilkers
94: 2 -> goodwill
95: 2 -> gray
96: 2 -> hanging
97: 2 -> holbine
98: 2 -> holy
99: 2 -> honor
100: 2 -> honorable
101: 2 -> i'm
102: 2 -> impress
103: 2 -> karl
104: 2 -> know
105: 2 -> lecomte
106: 2 -> leucadia
107: 2 -> leucadius's
108: 2 -> locadia
109: 2 -> locaioca
110: 2 -> louis
111: 2 -> masters
112: 2 -> may
113: 2 -> metre
114: 2 -> money
115: 2 -> near
116: 2 -> never
117: 2 -> night
118: 2 -> not
119: 2 -> o
120: 2 -> o'
121: 2 -> papers
122: 2 -> parlour
123: 2 -> pearls
124: 2 -> purpose
125: 2 -> reader
126: 2 -> redolpho
127: 2 -> remaining
128: 2 -> remembered
129: 2 -> ridolpho's
130: 2 -> right
131: 2 -> scouroons
132: 2 -> seemed
133: 2 -> set
134: 2 -> sift
135: 2 -> sin
136: 2 -> sit
137: 2 -> solemn
138: 2 -> solomon
139: 2 -> swoca
140: 2 -> tennysont
141: 2 -> them
142: 2 -> there's
143: 2 -> these
144: 2 -> thou
145: 2 -> travellers
146: 2 -> us
147: 2 -> valier
148: 2 -> vapors
149: 2 -> wallcher
150: 2 -> watery
151: 2 -> were
152: 2 -> which
153: 2 -> whisked
154: 2 -> widows
155: 2 -> widths
156: 2 -> will
157: 2 -> would
158: 1 -> abbey
159: 1 -> abolitionist
160: 1 -> abruptly
161: 1 -> accord
162: 1 -> acknowledgment
163: 1 -> action
164: 1 -> addition
165: 1 -> adelaide
166: 1 -> afar
167: 1 -> affected
168: 1 -> affecting
169: 1 -> aids
170: 1 -> air
171: 1 -> alarm
172: 1 -> alban's
173: 1 -> alexander
174: 1 -> amiable
175: 1 -> amil
176: 1 -> amphitheatre
177: 1 -> andres
178: 1 -> andrew
179: 1 -> angel
180: 1 -> annin
181: 1 -> answered
182: 1 -> any
183: 1 -> anything
184: 1 -> aomi
185: 1 -> appeal
186: 1 -> apprenticed
187: 1 -> ardor
188: 1 -> ark
189: 1 -> artochokes
190: 1 -> arundicemon
191: 1 -> ascendancy
192: 1 -> aster
193: 1 -> athenae
194: 1 -> athene
195: 1 -> attendance
196: 1 -> attendants
197: 1 -> away
198: 1 -> aye
199: 1 -> b
200: 1 -> back
201: 1 -> baled
202: 1 -> ball
203: 1 -> bandomire
204: 1 -> barbarosa
205: 1 -> barnes
206: 1 -> bartlett
207: 1 -> be
208: 1 -> bed
209: 1 -> beeched
210: 1 -> been
211: 1 -> beggars
212: 1 -> begged
213: 1 -> begirt
214: 1 -> behaviorist
215: 1 -> bein
216: 1 -> being
217: 1 -> bennet
218: 1 -> bergsen
219: 1 -> betford
220: 1 -> billharran
221: 1 -> blast
222: 1 -> blonde
223: 1 -> blue
224: 1 -> board
225: 1 -> boarhound
226: 1 -> boat
227: 1 -> boccamoreman
228: 1 -> bombie
229: 1 -> books
230: 1 -> bough
231: 1 -> bower
232: 1 -> bowls
233: 1 -> box
234: 1 -> breakfast
235: 1 -> brittannula
236: 1 -> broker
237: 1 -> bugs
238: 1 -> built
239: 1 -> bulboo
240: 1 -> burgoin
241: 1 -> burty
242: 1 -> butting
243: 1 -> campbell
244: 1 -> cannot
245: 1 -> canvas
246: 1 -> capitalist
247: 1 -> carpatios
248: 1 -> carrie
249: 1 -> carved
250: 1 -> cauldwell
251: 1 -> caused
252: 1 -> cells
253: 1 -> centered
254: 1 -> cheque
255: 1 -> chequer
256: 1 -> cheques
257: 1 -> cheron
258: 1 -> chiaruscuists
259: 1 -> choices
260: 1 -> christian
261: 1 -> chronicle
262: 1 -> chrysias
263: 1 -> citadel
264: 1 -> cizzle
265: 1 -> class
266: 1 -> cleaning
267: 1 -> clenched
268: 1 -> clerified
269: 1 -> coast
270: 1 -> coexist
271: 1 -> coigned
272: 1 -> collars
273: 1 -> colored
274: 1 -> colors
275: 1 -> colourist
276: 1 -> colours
277: 1 -> combath
278: 1 -> composive
279: 1 -> compton
280: 1 -> condensed
281: 1 -> connect
282: 1 -> conquering
283: 1 -> considerable
284: 1 -> containing
285: 1 -> cope
286: 1 -> corneas
287: 1 -> coront
288: 1 -> corps
289: 1 -> corsair
290: 1 -> cost
291: 1 -> could
292: 1 -> couldn't
293: 1 -> court
294: 1 -> courts
295: 1 -> crane
296: 1 -> craswelle
297: 1 -> crasweller
298: 1 -> criton
299: 1 -> cross
300: 1 -> crosses
301: 1 -> crossjay's
302: 1 -> curiously
303: 1 -> curoscurist
304: 1 -> curtland
305: 1 -> daedalus
306: 1 -> dais
307: 1 -> dawns
308: 1 -> dead
309: 1 -> decencies
310: 1 -> defeat
311: 1 -> deliberate
312: 1 -> demois
313: 1 -> depends
314: 1 -> derlass
315: 1 -> des
316: 1 -> did
317: 1 -> dietribe
318: 1 -> dikes
319: 1 -> dimmed
320: 1 -> district
321: 1 -> doctrus
322: 1 -> dove's
323: 1 -> downstairs
324: 1 -> drail
325: 1 -> drawls
326: 1 -> dupe
327: 1 -> duportes
328: 1 -> each
329: 1 -> earns
330: 1 -> een
331: 1 -> effect
332: 1 -> elbl's
333: 1 -> elco
334: 1 -> elzenor
335: 1 -> emerged
336: 1 -> enclosed
337: 1 -> endeavour
338: 1 -> endued
339: 1 -> engineers
340: 1 -> ennas
341: 1 -> entered
342: 1 -> enthrallment
343: 1 -> entrangement
344: 1 -> entrenchment
345: 1 -> evening's
346: 1 -> exaggeras
347: 1 -> excuse
348: 1 -> fairviews
349: 1 -> fauduois
350: 1 -> favorite
351: 1 -> fear
352: 1 -> features
353: 1 -> feelings
354: 1 -> fel
355: 1 -> fight
356: 1 -> fighting
357: 1 -> finely
358: 1 -> first
359: 1 -> flaffano's
360: 1 -> ford's
361: 1 -> forever
362: 1 -> formerly
363: 1 -> fouled
364: 1 -> franks
365: 1 -> frightened
366: 1 -> from
367: 1 -> fullness
368: 1 -> further
369: 1 -> furthest
370: 1 -> gainwell
371: 1 -> galations
372: 1 -> gave
373: 1 -> gear
374: 1 -> generalship
375: 1 -> gentleman
376: 1 -> geographer
377: 1 -> gerard
378: 1 -> gilcrest
379: 1 -> gilkir's
380: 1 -> goats
381: 1 -> googles
382: 1 -> gossips
383: 1 -> governor
384: 1 -> graham
385: 1 -> gray's
386: 1 -> great
387: 1 -> greats
388: 1 -> greeds
389: 1 -> greedy
390: 1 -> green
391: 1 -> gringa
392: 1 -> ground
393: 1 -> guess
394: 1 -> guests
395: 1 -> guyors
396: 1 -> h
397: 1 -> hall
398: 1 -> halworth
399: 1 -> hand
400: 1 -> handless
401: 1 -> harangueing
402: 1 -> harbouring
403: 1 -> hardly
404: 1 -> harry
405: 1 -> has
406: 1 -> hast
407: 1 -> hat
408: 1 -> haunts
409: 1 -> have
410: 1 -> hawkins
411: 1 -> headlong's
412: 1 -> hearkened
413: 1 -> hearts
414: 1 -> heartsease
415: 1 -> helda
416: 1 -> helenes
417: 1 -> help
418: 1 -> her
419: 1 -> heraclitus
420: 1 -> hey
421: 1 -> hid
422: 1 -> hilden
423: 1 -> hiresome
424: 1 -> hives
425: 1 -> hoarse
426: 1 -> holocost
427: 1 -> holtrey
428: 1 -> homes
429: 1 -> hon
430: 1 -> hook
431: 1 -> household's
432: 1 -> hurried
433: 1 -> hussey
434: 1 -> hydra's
435: 1 -> i'd
436: 1 -> i'll
437: 1 -> ichiosaurus
438: 1 -> ictiosaurus
439: 1 -> idiocyncratically
440: 1 -> immediately
441: 1 -> immigrant
442: 1 -> imperilled
443: 1 -> impressed
444: 1 -> incandiscent
445: 1 -> incher
446: 1 -> infant's
447: 1 -> ink
448: 1 -> inquire
449: 1 -> inquired
450: 1 -> inquiries
451: 1 -> instancy
452: 1 -> insure
453: 1 -> insurrectionous
454: 1 -> interests
455: 1 -> intrenched
456: 1 -> intrusted
457: 1 -> intrusting
458: 1 -> issiated
459: 1 -> it'll
460: 1 -> it's
461: 1 -> ithiosaurus
462: 1 -> jane
463: 1 -> jeffrey
464: 1 -> jeffrey's
465: 1 -> jeweller's
466: 1 -> jogo
467: 1 -> johnnyiago
468: 1 -> jura
469: 1 -> just
470: 1 -> justation
471: 1 -> kanti
472: 1 -> keeper
473: 1 -> kickapoos
474: 1 -> kiel
475: 1 -> krydeus
476: 1 -> l'avalier
477: 1 -> lab'n
478: 1 -> lading
479: 1 -> lafring
480: 1 -> laley
481: 1 -> landa
482: 1 -> landlord
483: 1 -> lantern
484: 1 -> leader
485: 1 -> leaf
486: 1 -> learned
487: 1 -> least
488: 1 -> leek
489: 1 -> left
490: 1 -> like
491: 1 -> lily
492: 1 -> lily's
493: 1 -> linked
494: 1 -> list
495: 1 -> littleburn
496: 1 -> lockey
497: 1 -> loggerems
498: 1 -> lolls
499: 1 -> looks
500: 1 -> loose
501: 1 -> lorroy
502: 1 -> lotos
503: 1 -> louise
504: 1 -> lowered
505: 1 -> lurksburg
506: 1 -> macardo
507: 1 -> made
508: 1 -> maravow
509: 1 -> march
510: 1 -> married
511: 1 -> masts
512: 1 -> mayhall
513: 1 -> me
514: 1 -> means
515: 1 -> medicoff's
516: 1 -> ment
517: 1 -> mercy
518: 1 -> met
519: 1 -> metacroft
520: 1 -> migrantzer
521: 1 -> mill
522: 1 -> milligramme
523: 1 -> million
524: 1 -> mills
525: 1 -> miss
526: 1 -> missouriians
527: 1 -> missy
528: 1 -> mist
529: 1 -> mista
530: 1 -> mitigated
531: 1 -> mode
532: 1 -> modelled
533: 1 -> mold
534: 1 -> momby
535: 1 -> montros's
536: 1 -> more
537: 1 -> morn
538: 1 -> mornin'
539: 1 -> morning
540: 1 -> mother's
541: 1 -> mountain
542: 1 -> moved
543: 1 -> murchiston
544: 1 -> my
545: 1 -> mystery
546: 1 -> need
547: 1 -> neighbored
548: 1 -> nelli
549: 1 -> nobility
550: 1 -> nod
551: 1 -> northward
552: 1 -> northwest
553: 1 -> objectly
554: 1 -> observe
555: 1 -> ochinographer
556: 1 -> odd
557: 1 -> offences
558: 1 -> oh
559: 1 -> ok
560: 1 -> olives
561: 1 -> ongellations
562: 1 -> opposition
563: 1 -> orders
564: 1 -> outleigh's
565: 1 -> over
566: 1 -> overleam
567: 1 -> paganel
568: 1 -> pain
569: 1 -> parakeet
570: 1 -> parson
571: 1 -> parson's
572: 1 -> partly
573: 1 -> passageway
574: 1 -> patience
575: 1 -> patient
576: 1 -> pearl
577: 1 -> peg
578: 1 -> pensioner
579: 1 -> person
580: 1 -> philadelphia
581: 1 -> piece
582: 1 -> pierced
583: 1 -> plates
584: 1 -> play
585: 1 -> pleasants
586: 1 -> pointed
587: 1 -> poisoned
588: 1 -> pole
589: 1 -> pool
590: 1 -> pools
591: 1 -> post
592: 1 -> prayer
593: 1 -> present
594: 1 -> presocratic
595: 1 -> pressuses
596: 1 -> pretence
597: 1 -> proceed
598: 1 -> produce
599: 1 -> proof
600: 1 -> prostrate
601: 1 -> provocations
602: 1 -> purest
603: 1 -> putting
604: 1 -> pythogorians
605: 1 -> quinsant
606: 1 -> quite
607: 1 -> racken
608: 1 -> raided
609: 1 -> rain
610: 1 -> ranch
611: 1 -> rapt
612: 1 -> raran
613: 1 -> read
614: 1 -> realise
615: 1 -> rebuked
616: 1 -> records
617: 1 -> redmond's
618: 1 -> reflexion
619: 1 -> refuse
620: 1 -> reinforcements
621: 1 -> remained
622: 1 -> remarked
623: 1 -> removed
624: 1 -> resign
625: 1 -> rest
626: 1 -> results
627: 1 -> revolution
628: 1 -> rewaded
629: 1 -> ring
630: 1 -> ringing
631: 1 -> roan
632: 1 -> roarer
633: 1 -> robins
634: 1 -> rodders
635: 1 -> rossiter
636: 1 -> said
637: 1 -> sailed
638: 1 -> sailing
639: 1 -> sandiaries
640: 1 -> sat
641: 1 -> save
642: 1 -> savette
643: 1 -> saying
644: 1 -> scath
645: 1 -> scavera
646: 1 -> schoolboys
647: 1 -> schoolteachery
648: 1 -> scout
649: 1 -> scurra
650: 1 -> sea
651: 1 -> sech
652: 1 -> sense
653: 1 -> sentence
654: 1 -> servant
655: 1 -> servants
656: 1 -> services
657: 1 -> sha'n't
658: 1 -> shalt
659: 1 -> sharp's
660: 1 -> sharper
661: 1 -> ship's
662: 1 -> shopata
663: 1 -> shotty
664: 1 -> showed
665: 1 -> showering
666: 1 -> shriveled
667: 1 -> side
668: 1 -> signs
669: 1 -> since
670: 1 -> sir
671: 1 -> skies
672: 1 -> skilful
673: 1 -> sling
674: 1 -> smiled
675: 1 -> socrites
676: 1 -> solely
677: 1 -> solomons
678: 1 -> solvie's
679: 1 -> someone
680: 1 -> sometime
681: 1 -> sora
682: 1 -> souver
683: 1 -> speciality
684: 1 -> specialized
685: 1 -> spilligoat
686: 1 -> splendid
687: 1 -> spree
688: 1 -> staal
689: 1 -> starve
690: 1 -> states
691: 1 -> stay
692: 1 -> steeded
693: 1 -> steeled
694: 1 -> stephano's
695: 1 -> steve
696: 1 -> stood
697: 1 -> stop
698: 1 -> stories
699: 1 -> strane
700: 1 -> streamlineham
701: 1 -> strollers
702: 1 -> summer's
703: 1 -> summoned
704: 1 -> surge
705: 1 -> swain
706: 1 -> swept
707: 1 -> swoon
708: 1 -> swung
709: 1 -> symonds
710: 1 -> tablecloth
711: 1 -> tan's
712: 1 -> teemeas
713: 1 -> tennysonte
714: 1 -> terkol
715: 1 -> their
716: 1 -> think
717: 1 -> thousandth
718: 1 -> through
719: 1 -> tibby
720: 1 -> time
721: 1 -> tintant
722: 1 -> toddy
723: 1 -> toilet
724: 1 -> tonnacharon
725: 1 -> too
726: 1 -> toomes
727: 1 -> torcho
728: 1 -> torrentula
729: 1 -> toryan
730: 1 -> tournay
731: 1 -> towling
732: 1 -> town
733: 1 -> train
734: 1 -> transit
735: 1 -> travelling
736: 1 -> treadleston
737: 1 -> tried
738: 1 -> tripping
739: 1 -> trogadus
740: 1 -> trouble
741: 1 -> truce
742: 1 -> tuppenny
743: 1 -> turn
744: 1 -> turned
745: 1 -> turquol
746: 1 -> twasn't
747: 1 -> two
748: 1 -> uller
749: 1 -> uncertainty
750: 1 -> undoubtedly
751: 1 -> unerific
752: 1 -> ungulations
753: 1 -> unhappiness
754: 1 -> uniformed
755: 1 -> untruted
756: 1 -> up
757: 1 -> upon
758: 1 -> upstairs
759: 1 -> use
760: 1 -> utists
761: 1 -> valleyd
762: 1 -> vau
763: 1 -> veils
764: 1 -> veins
765: 1 -> venet
766: 1 -> ventors
767: 1 -> vernon's
768: 1 -> viaduc
769: 1 -> view
770: 1 -> vilidesta
771: 1 -> voices
772: 1 -> wall
773: 1 -> warily
774: 1 -> warrentons
775: 1 -> warwolf
776: 1 -> was
777: 1 -> way
778: 1 -> we
779: 1 -> weaken
780: 1 -> weep
781: 1 -> welcome
782: 1 -> well
783: 1 -> wellers
784: 1 -> wells
785: 1 -> west
786: 1 -> westmine
787: 1 -> wharton
788: 1 -> what
789: 1 -> whatsoever
790: 1 -> when
791: 1 -> where
792: 1 -> wherein
793: 1 -> while
794: 1 -> whips
795: 1 -> whit
796: 1 -> white
797: 1 -> whole
798: 1 -> women's
799: 1 -> wonder
800: 1 -> wood
801: 1 -> woodcutters
802: 1 -> worldly
803: 1 -> worse
804: 1 -> worth
805: 1 -> yago
806: 1 -> years
807: 1 -> yokes
808: 1 -> yulu
809: 1 -> zavior
810: 1 -> zervier
811: 1 -> zevern
812: 1 -> zoor
813: 1 -> zorrah's
-------
1219
* NOTE: The 'Falsely Recognized' words are those hypothesis words
which the recognizer incorrectly substituted for a reference word.
|