File size: 84,967 Bytes
80f48c3 |
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 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 |
DETAILED OVERALL REPORT FOR THE SYSTEM: /scratch/project_465000836/ipoloka/huggingface_asr/experiments/baseline_ebranchformer_v2.3_fp32/predictions_librispeech_test.clean_wer3.58_hyp.trn
SENTENCE RECOGNITION PERFORMANCE
sentences 2816
with errors 32.7% ( 921)
with substitutions 31.4% ( 884)
with deletions 4.0% ( 114)
with insertions 5.9% ( 165)
WORD RECOGNITION PERFORMANCE
Percent Total Error = 3.6% (2044)
Percent Correct = 96.8% (55214)
Percent Substitution = 2.2% (1263)
Percent Deletions = 1.0% ( 588)
Percent Insertions = 0.3% ( 193)
Percent Word Accuracy = 96.4%
Ref. words = (57065)
Hyp. words = (56670)
Aligned words = (57258)
CONFUSION PAIRS Total (988)
With >= 1 occurrences (988)
1: 15 -> and ==> in
2: 14 -> a ==> the
3: 11 -> in ==> and
4: 8 -> rodolfo ==> rudolpho
5: 7 -> this ==> the
6: 6 -> anyone ==> one
7: 6 -> kaffar ==> kaffir
8: 6 -> man ==> men
9: 6 -> rodolfo ==> redolpho
10: 5 -> soames ==> solmes
11: 4 -> an ==> and
12: 4 -> color ==> colour
13: 4 -> colour ==> color
14: 4 -> is ==> as
15: 4 -> leocadia ==> leucadia
16: 4 -> meter ==> metre
17: 4 -> silvia ==> sylvia
18: 4 -> that ==> it
19: 4 -> that ==> the
20: 4 -> the ==> a
21: 4 -> towards ==> toward
22: 3 -> and ==> as
23: 3 -> has ==> as
24: 3 -> has ==> had
25: 3 -> he's ==> is
26: 3 -> her ==> the
27: 3 -> hollan ==> holland
28: 3 -> in ==> on
29: 3 -> madam ==> madame
30: 3 -> men ==> man
31: 3 -> one ==> won
32: 3 -> platonists ==> neoplanists
33: 3 -> practise ==> practice
34: 3 -> tabu ==> taboo
35: 3 -> theater ==> theatre
36: 3 -> their ==> the
37: 3 -> thel ==> thou
38: 3 -> to ==> two
39: 3 -> today ==> day
40: 3 -> valliere ==> valier
41: 3 -> was ==> is
42: 3 -> xavier ==> saviour
43: 2 -> abduction ==> adoption
44: 2 -> alexandra ==> alexander
45: 2 -> alluvion ==> eluvian
46: 2 -> am ==> i'm
47: 2 -> an ==> on
48: 2 -> and ==> an
49: 2 -> another ==> other
50: 2 -> as ==> a
51: 2 -> ass ==> ask
52: 2 -> assurances ==> as
53: 2 -> balaam's ==> baliam's
54: 2 -> bannister ==> banister
55: 2 -> beatitude ==> attitude
56: 2 -> befal ==> befall
57: 2 -> before ==> for
58: 2 -> blessings ==> blessing
59: 2 -> broken ==> heartbroken
60: 2 -> center ==> centre
61: 2 -> chaise ==> chase
62: 2 -> charente ==> chart
63: 2 -> check ==> cheque
64: 2 -> clew ==> clue
65: 2 -> colored ==> coloured
66: 2 -> composser ==> compossor
67: 2 -> conjurer ==> conjuror
68: 2 -> country's ==> country
69: 2 -> cozier ==> cosier
70: 2 -> cyn ==> sin
71: 2 -> de ==> the
72: 2 -> dedalus ==> daedalus
73: 2 -> discoloured ==> discolored
74: 2 -> dismayed ==> dismayedest
75: 2 -> dobryna ==> dobrina
76: 2 -> dona ==> don
77: 2 -> emil ==> amia
78: 2 -> entranced ==> transgressed
79: 2 -> estafania ==> affania
80: 2 -> estafania ==> estaffania
81: 2 -> estafania ==> estaphia
82: 2 -> everyone ==> one
83: 2 -> favor ==> favour
84: 2 -> felt ==> fell
85: 2 -> forwarded ==> voted
86: 2 -> friskily ==> friskly
87: 2 -> gamewell ==> well
88: 2 -> give ==> gave
89: 2 -> grey ==> gray
90: 2 -> guest ==> guests
91: 2 -> hallo ==> hello
92: 2 -> hangings ==> hanging
93: 2 -> have ==> half
94: 2 -> her ==> a
95: 2 -> hidalgo ==> algo
96: 2 -> hilda ==> helga
97: 2 -> him ==> em
98: 2 -> hit ==> hid
99: 2 -> honour ==> honor
100: 2 -> hurons ==> herons
101: 2 -> hymn ==> him
102: 2 -> i'm ==> am
103: 2 -> i've ==> have
104: 2 -> in ==> an
105: 2 -> interest ==> interests
106: 2 -> is ==> has
107: 2 -> is ==> there's
108: 2 -> kaffar's ==> kaffir's
109: 2 -> kaffar's ==> kaffirs
110: 2 -> lake ==> leak
111: 2 -> leavenworth ==> levenworth
112: 2 -> leocadi ==> luccadia
113: 2 -> leocadia ==> locatia
114: 2 -> leocadia ==> locidia
115: 2 -> leocadia ==> ocadia
116: 2 -> leocadia ==> so
117: 2 -> leocadia's ==> alieucadius
118: 2 -> leocadia's ==> leucadia's
119: 2 -> luis ==> louis
120: 2 -> mainhall ==> hall
121: 2 -> master's ==> masters
122: 2 -> mourn ==> mourned
123: 2 -> munny ==> money
124: 2 -> nearer ==> near
125: 2 -> not ==> naught
126: 2 -> o ==> of
127: 2 -> paper ==> papers
128: 2 -> parasites ==> parricides
129: 2 -> purposed ==> purpose
130: 2 -> rather ==> brother
131: 2 -> ravishing ==> ravishingly
132: 2 -> read ==> red
133: 2 -> remained ==> remaining
134: 2 -> remember ==> remembered
135: 2 -> resolved ==> resolve
136: 2 -> rodolfo's ==> rodolph's
137: 2 -> round ==> around
138: 2 -> scaroons ==> squaroons
139: 2 -> scent ==> sin
140: 2 -> senor ==> signor
141: 2 -> she's ==> is
142: 2 -> size ==> sighs
143: 2 -> solon ==> solomon
144: 2 -> someone ==> one
145: 2 -> sometime ==> time
146: 2 -> suppose ==> s'pose
147: 2 -> than ==> that
148: 2 -> thel ==> fell
149: 2 -> them ==> the
150: 2 -> they ==> may
151: 2 -> thorkel ==> torcle
152: 2 -> tonight ==> night
153: 2 -> tonnay ==> tony
154: 2 -> travelers ==> travellers
155: 2 -> two ==> to
156: 2 -> vanderpool ==> pool
157: 2 -> vapours ==> vapors
158: 2 -> voltaire ==> chair
159: 2 -> watry ==> watery
160: 2 -> we'll ==> will
161: 2 -> when ==> but
162: 2 -> whisk ==> whisked
163: 2 -> withes ==> widths
164: 2 -> worst ==> worse
165: 2 -> would ==> will
166: 2 -> yard ==> courtyard
167: 2 -> ye ==> you
168: 2 -> you're ==> are
169: 1 -> a ==> his
170: 1 -> a ==> up
171: 1 -> a ==> would
172: 1 -> abjectly ==> objectly
173: 1 -> abolitionists ==> abolitionist
174: 1 -> acknowledgement ==> acknowledgment
175: 1 -> adona ==> adonna
176: 1 -> affrightened ==> frightened
177: 1 -> aignan ==> annon
178: 1 -> air ==> hour
179: 1 -> an ==> doorstep
180: 1 -> anaxagoras ==> exaggerus
181: 1 -> and ==> away
182: 1 -> and ==> hawworth
183: 1 -> and ==> torian
184: 1 -> and ==> wherein
185: 1 -> andella ==> and
186: 1 -> andella ==> anddella
187: 1 -> andella ==> annedella
188: 1 -> andella ==> della
189: 1 -> anders ==> ander's
190: 1 -> anders ==> andrew
191: 1 -> anders ==> andrew's
192: 1 -> anders ==> andrews
193: 1 -> angels ==> angel
194: 1 -> answerd ==> answered
195: 1 -> antedating ==> endating
196: 1 -> anymore ==> more
197: 1 -> appealed ==> appeal
198: 1 -> apposition ==> opposition
199: 1 -> apprentice ==> apprenticed
200: 1 -> arc ==> ark
201: 1 -> ardle ==> macardo
202: 1 -> ardour ==> ardor
203: 1 -> are ==> or
204: 1 -> are ==> were
205: 1 -> argus ==> argos
206: 1 -> argyle ==> guile
207: 1 -> arrests ==> arrest
208: 1 -> arrondissement ==> arundissimo
209: 1 -> as ==> to
210: 1 -> ascendency ==> ascendancy
211: 1 -> at ==> of
212: 1 -> athenais ==> athenae
213: 1 -> athenais ==> ethne
214: 1 -> atholemen ==> men
215: 1 -> attendance ==> attendants
216: 1 -> attendants ==> attendance
217: 1 -> aunt ==> and
218: 1 -> aware ==> wear
219: 1 -> awhile ==> while
220: 1 -> ay ==> i
221: 1 -> aye ==> ay
222: 1 -> aye ==> i
223: 1 -> azure ==> zur
224: 1 -> babirusa ==> barbarosa
225: 1 -> badauderie ==> gree
226: 1 -> bartley ==> partley
227: 1 -> battleax ==> adelax
228: 1 -> beached ==> beeched
229: 1 -> beebe ==> b
230: 1 -> beeder ==> reader
231: 1 -> beehives ==> hives
232: 1 -> befell ==> befel
233: 1 -> beggar's ==> beggars
234: 1 -> behaviour ==> behavior
235: 1 -> bein ==> being
236: 1 -> belonged ==> belong
237: 1 -> bench ==> pen
238: 1 -> bend ==> been
239: 1 -> big ==> beer
240: 1 -> bill ==> campbell
241: 1 -> billygoat ==> goat
242: 1 -> bit ==> be
243: 1 -> bit ==> forbid
244: 1 -> blasts ==> blast
245: 1 -> boar ==> favorite
246: 1 -> bolls ==> bulls
247: 1 -> bond ==> bawn
248: 1 -> bookkeeper ==> keeper
249: 1 -> bout ==> pout
250: 1 -> boys ==> schoolboys
251: 1 -> bragelonne ==> alone
252: 1 -> brake ==> break
253: 1 -> branch ==> ranch
254: 1 -> branches ==> is
255: 1 -> breakfas ==> breakfast
256: 1 -> breastplate ==> plate
257: 1 -> bringing ==> ringing
258: 1 -> britannula ==> yulus
259: 1 -> britannulists ==> britannialists
260: 1 -> brown ==> browne
261: 1 -> budding ==> butting
262: 1 -> bul ==> bulboo
263: 1 -> bunnit ==> bonett
264: 1 -> burgoyne ==> and
265: 1 -> burn ==> burned
266: 1 -> but ==> do
267: 1 -> can ==> could
268: 1 -> canvass ==> canvas
269: 1 -> carl ==> karl
270: 1 -> carpaccio's ==> carpatios
271: 1 -> cat ==> hat
272: 1 -> caught ==> got
273: 1 -> ceasd ==> ceased
274: 1 -> cendenaries ==> sandyaries
275: 1 -> centred ==> centered
276: 1 -> charente ==> ant
277: 1 -> charente ==> schallemann
278: 1 -> charente ==> shawant
279: 1 -> chatterbox ==> box
280: 1 -> checker ==> chequer
281: 1 -> checks ==> cheques
282: 1 -> cheroot ==> troop
283: 1 -> chiaroscurist ==> curoscurus
284: 1 -> chiaroscurists ==> kioriscuerists
285: 1 -> chord ==> accord
286: 1 -> christain ==> christian
287: 1 -> cigarette ==> red
288: 1 -> citadelled ==> citadeld
289: 1 -> civet ==> savette
290: 1 -> clause ==> claw
291: 1 -> cloth ==> tablecloth
292: 1 -> clothes ==> clothed
293: 1 -> coal ==> co
294: 1 -> colorist ==> cholerist
295: 1 -> colorist ==> itself
296: 1 -> colorists ==> colourists
297: 1 -> colors ==> collars
298: 1 -> colors ==> colours
299: 1 -> combash ==> combats
300: 1 -> commandments ==> its
301: 1 -> commentators ==> teachers
302: 1 -> compulsive ==> composive
303: 1 -> concern ==> concert
304: 1 -> condense ==> condensed
305: 1 -> conquerin ==> conquering
306: 1 -> consid'ble ==> consid'able
307: 1 -> constantine ==> konstantin
308: 1 -> contained ==> containing
309: 1 -> conti ==> canti
310: 1 -> cook ==> cope
311: 1 -> costs ==> cost
312: 1 -> could ==> can
313: 1 -> couldn't ==> an
314: 1 -> counselled ==> counseled
315: 1 -> counsels ==> councils
316: 1 -> courant ==> kharant
317: 1 -> court's ==> courts
318: 1 -> covenanters ==> covenanter's
319: 1 -> crasweller ==> cressweller
320: 1 -> craswellers ==> cresswellers
321: 1 -> creighton ==> criton
322: 1 -> creighton ==> whom
323: 1 -> cresswell ==> cressewell
324: 1 -> cresswell ==> crestwell
325: 1 -> cresswell ==> crustwell
326: 1 -> cresswells ==> wells
327: 1 -> critias ==> criticis
328: 1 -> crosstrees ==> crosstrey's
329: 1 -> curved ==> carved
330: 1 -> cutters ==> woodcutters
331: 1 -> d'este ==> viladeste
332: 1 -> dawn's ==> dawns
333: 1 -> dedalos ==> deadlos
334: 1 -> define ==> defined
335: 1 -> define ==> find
336: 1 -> delia ==> dilia
337: 1 -> deliberative ==> deliberate
338: 1 -> dependent ==> dependant
339: 1 -> descent ==> dissent
340: 1 -> dew ==> do
341: 1 -> dias ==> dais
342: 1 -> differences ==> is
343: 1 -> disappointment ==> chase
344: 1 -> dishes ==> opportunity
345: 1 -> disk ==> disc
346: 1 -> districts ==> district
347: 1 -> doctress ==> doctors
348: 1 -> doll ==> dowl
349: 1 -> donatists ==> doneitists
350: 1 -> doves ==> dove's
351: 1 -> draws ==> drawles
352: 1 -> dripping ==> tripping
353: 1 -> dropidas ==> trophidus
354: 1 -> duerer ==> jura
355: 1 -> dumbfounded ==> dumfounded
356: 1 -> dunno ==> know
357: 1 -> dykes ==> dikes
358: 1 -> early ==> earthly
359: 1 -> ears ==> corneers
360: 1 -> ears ==> years
361: 1 -> economic ==> enomic
362: 1 -> edition ==> addition
363: 1 -> elcho ==> elcoe
364: 1 -> eleven ==> lavender
365: 1 -> elmo's ==> ogle's
366: 1 -> em ==> them
367: 1 -> emerg'd ==> emerged
368: 1 -> emigrant ==> immigrant
369: 1 -> emil ==> amiable
370: 1 -> emil ==> amyl
371: 1 -> endeavor ==> endeavour
372: 1 -> endeavoring ==> endeavouring
373: 1 -> endured ==> endued
374: 1 -> enough ==> nuff
375: 1 -> enquire ==> inquire
376: 1 -> enquired ==> inquired
377: 1 -> enquiries ==> inquiries
378: 1 -> enter ==> entered
379: 1 -> entrenched ==> intrenched
380: 1 -> entrusted ==> intrusted
381: 1 -> entrusting ==> intrusting
382: 1 -> equip ==> equipp
383: 1 -> er ==> a
384: 1 -> erring ==> airing
385: 1 -> escheated ==> asiated
386: 1 -> esprit ==> sprit
387: 1 -> eva ==> either
388: 1 -> evenin's ==> evenins
389: 1 -> evening ==> ev'ning
390: 1 -> ever ==> forever
391: 1 -> evolution ==> revolution
392: 1 -> exhort ==> exercising
393: 1 -> eye ==> i
394: 1 -> fallen ==> on
395: 1 -> fantasy ==> phantasy
396: 1 -> far ==> afar
397: 1 -> favorably ==> favourably
398: 1 -> feared ==> fear
399: 1 -> fearest ==> fear'st
400: 1 -> feeling ==> filling
401: 1 -> felt ==> felled
402: 1 -> fence ==> offence
403: 1 -> ferdinando ==> o
404: 1 -> ferdinando ==> o'
405: 1 -> fete ==> fight
406: 1 -> fine ==> find
407: 1 -> fingers ==> awaited
408: 1 -> fireball ==> ball
409: 1 -> firebugs ==> bugs
410: 1 -> fitzooth ==> ooth
411: 1 -> flap ==> flat
412: 1 -> flight ==> fight
413: 1 -> floyd's ==> fluid's
414: 1 -> fluffinose ==> flefnitney's
415: 1 -> footman ==> footmen
416: 1 -> forbes's ==> ford's
417: 1 -> forever ==> ever
418: 1 -> formally ==> formerly
419: 1 -> francs ==> franks
420: 1 -> fulness ==> fullness
421: 1 -> futuristic ==> futureistic
422: 1 -> galatians ==> anglottions
423: 1 -> galatians ==> relations
424: 1 -> galatians ==> undulations
425: 1 -> gamewell ==> camwell
426: 1 -> gates ==> seagates
427: 1 -> gayly ==> gaily
428: 1 -> gentleman ==> gentlemen
429: 1 -> gentlemen ==> gentleman
430: 1 -> geoffrey ==> jeffrey
431: 1 -> geoffrey's ==> jeffrey's
432: 1 -> gestation ==> justation
433: 1 -> giaours ==> guyors
434: 1 -> gier ==> gear
435: 1 -> gilchrist ==> chris
436: 1 -> gilchrist ==> gilgras
437: 1 -> gilchrist ==> gilkrist
438: 1 -> gilchrist's ==> gilker's
439: 1 -> gillikins ==> gilicans
440: 1 -> girard ==> gerard
441: 1 -> glue ==> blue
442: 1 -> goat ==> boat
443: 1 -> goat ==> gold
444: 1 -> goobers ==> gobbles
445: 1 -> governed ==> govern
446: 1 -> government ==> governor
447: 1 -> gradated ==> gredated
448: 1 -> gram ==> graham
449: 1 -> grand ==> great
450: 1 -> gray ==> grey
451: 1 -> greeing ==> green
452: 1 -> grey's ==> gray's
453: 1 -> grim ==> graham
454: 1 -> gringo ==> gringor
455: 1 -> guerrilla ==> guerilla
456: 1 -> guests ==> guest
457: 1 -> guise ==> skies
458: 1 -> had ==> at
459: 1 -> had ==> has
460: 1 -> had ==> have
461: 1 -> hakon ==> hawkin
462: 1 -> halloa ==> what
463: 1 -> ham ==> him
464: 1 -> hand ==> hands
465: 1 -> hanna ==> a
466: 1 -> happening ==> happened
467: 1 -> happiness ==> unhappiness
468: 1 -> haranguing ==> harangueing
469: 1 -> harboring ==> harbouring
470: 1 -> harkened ==> hearkened
471: 1 -> harmonized ==> harmonised
472: 1 -> harts ==> hearts
473: 1 -> has ==> is
474: 1 -> hawk ==> hook
475: 1 -> hawk ==> hulk
476: 1 -> hawtrey ==> hautrey
477: 1 -> hay ==> hey
478: 1 -> hazewrapped ==> wrapped
479: 1 -> he ==> we
480: 1 -> he ==> you
481: 1 -> he'd ==> he
482: 1 -> hear ==> to
483: 1 -> hearthstones ==> stones
484: 1 -> held ==> had
485: 1 -> hell ==> helle
486: 1 -> hello ==> hallo
487: 1 -> helped ==> help
488: 1 -> hen ==> hand
489: 1 -> henchmen ==> henchment
490: 1 -> henley ==> henry
491: 1 -> heracleitus ==> heraclitus
492: 1 -> here ==> chair
493: 1 -> here ==> there
494: 1 -> hermocrates ==> mocrities
495: 1 -> herself ==> sorrel
496: 1 -> hester ==> hesper
497: 1 -> hetty ==> hetty's
498: 1 -> hill ==> uphill
499: 1 -> him ==> handsome
500: 1 -> his ==> crosses
501: 1 -> holbein ==> holbin
502: 1 -> holbein ==> holbine
503: 1 -> holmes ==> homes
504: 1 -> hon ==> honourable
505: 1 -> honorable ==> hon
506: 1 -> honorable ==> honourable
507: 1 -> horace ==> horrence
508: 1 -> horseplay ==> play
509: 1 -> horton ==> wharton
510: 1 -> hotbed ==> bed
511: 1 -> hound ==> boarhound
512: 1 -> housecleaning ==> cleaning
513: 1 -> households ==> household's
514: 1 -> humor ==> stands
515: 1 -> i ==> i'd
516: 1 -> i ==> side
517: 1 -> i'd ==> had
518: 1 -> i'd ==> i
519: 1 -> i've ==> i
520: 1 -> ichthyosaurus ==> icyosaurus
521: 1 -> ichthyosaurus ==> ithiosaurus
522: 1 -> if ==> that
523: 1 -> ike ==> like
524: 1 -> ill ==> mary
525: 1 -> imagined ==> imagine
526: 1 -> impearled ==> imperilled
527: 1 -> impress'd ==> impressed
528: 1 -> impresses ==> impress
529: 1 -> in ==> a
530: 1 -> in ==> laden
531: 1 -> in ==> men
532: 1 -> in ==> of
533: 1 -> in ==> person
534: 1 -> in ==> took
535: 1 -> inaction ==> action
536: 1 -> incandescent ==> incandiscent
537: 1 -> incertainty ==> certainty
538: 1 -> inclosed ==> enclosed
539: 1 -> infants ==> infant's
540: 1 -> inference ==> efference
541: 1 -> injury ==> mind
542: 1 -> innerlochy ==> locki
543: 1 -> innerlochy ==> lockye
544: 1 -> insurrectionists ==> insurrections
545: 1 -> into ==> and
546: 1 -> intolerancy ==> intoleracy
547: 1 -> inventors ==> veneers
548: 1 -> irreparable ==> her
549: 1 -> is ==> choices
550: 1 -> is ==> christ's
551: 1 -> is ==> decencies
552: 1 -> is ==> he's
553: 1 -> is ==> his
554: 1 -> is ==> it
555: 1 -> is ==> was
556: 1 -> it ==> admitted
557: 1 -> it ==> and
558: 1 -> it ==> druid
559: 1 -> it ==> that
560: 1 -> it'll ==> it
561: 1 -> it's ==> short's
562: 1 -> itch ==> hitch
563: 1 -> its ==> it's
564: 1 -> jago ==> giogo
565: 1 -> jago ==> iago
566: 1 -> jago ==> jargon
567: 1 -> jail ==> trail
568: 1 -> james ==> guests
569: 1 -> jane's ==> james
570: 1 -> jasper ==> sir
571: 1 -> jeweler's ==> jewellers
572: 1 -> jus ==> jest
573: 1 -> keogh ==> kiov
574: 1 -> kingdoms ==> kingdom's
575: 1 -> kirtland ==> kirkland
576: 1 -> kneed ==> needed
577: 1 -> knife ==> jackknife
578: 1 -> l ==> carrie
579: 1 -> labour ==> labor
580: 1 -> lake ==> leek
581: 1 -> lake ==> link
582: 1 -> lallie ==> lily
583: 1 -> lambent ==> lament
584: 1 -> larder ==> louder
585: 1 -> larkspur ==> larch
586: 1 -> larkspur ==> larxbourg
587: 1 -> lattice ==> latticed
588: 1 -> leased ==> least
589: 1 -> leavenworth ==> leavinworth
590: 1 -> leavenworth ==> worth
591: 1 -> lecompte ==> lecomt
592: 1 -> lecompte ==> lecomte
593: 1 -> lecompton ==> compton
594: 1 -> lefrank ==> frank
595: 1 -> lesser ==> the
596: 1 -> lets ==> let's
597: 1 -> like ==> light
598: 1 -> lilburn ==> littleburn
599: 1 -> lilly ==> lily
600: 1 -> lillys ==> lily's
601: 1 -> line ==> in
602: 1 -> liter ==> leader
603: 1 -> live ==> leave
604: 1 -> lo ==> hallo
605: 1 -> lodging ==> launching
606: 1 -> logarithms ==> loggerisms
607: 1 -> lorne ==> lorn
608: 1 -> lotus ==> lotos
609: 1 -> lou's ==> loose
610: 1 -> louis ==> louise
611: 1 -> love's ==> loves
612: 1 -> lower ==> lowered
613: 1 -> luke ==> loup
614: 1 -> lulls ==> lolls
615: 1 -> madame's ==> madames
616: 1 -> mainhall ==> maithall
617: 1 -> mainhall ==> mayhall
618: 1 -> manifested ==> his
619: 1 -> manservant ==> servant
620: 1 -> marie ==> mari
621: 1 -> marivaux ==> maravaux
622: 1 -> marivaux ==> mariposa
623: 1 -> marshall ==> martial
624: 1 -> marshalled ==> martialed
625: 1 -> marvelous ==> marvellous
626: 1 -> masters ==> master
627: 1 -> mate ==> made
628: 1 -> meadowcroft ==> metacreph
629: 1 -> meadowcroft's ==> petitcroft's
630: 1 -> mealyback ==> back
631: 1 -> meet ==> met
632: 1 -> mer ==> bandemire
633: 1 -> merchiston ==> murchiston
634: 1 -> merganser ==> sir
635: 1 -> merry ==> married
636: 1 -> mersey ==> mercy
637: 1 -> miles ==> myles
638: 1 -> militated ==> mitigated
639: 1 -> mine ==> mind
640: 1 -> mint ==> men
641: 1 -> missourians ==> missouriians
642: 1 -> missus ==> never
643: 1 -> mister ==> miss
644: 1 -> mists ==> mist
645: 1 -> molded ==> moulded
646: 1 -> mombi ==> momby
647: 1 -> mongoose ==> mongus
648: 1 -> montfichet ==> game
649: 1 -> montmartre ==> martyr
650: 1 -> montmartre ==> montemarca
651: 1 -> more's ==> is
652: 1 -> mornin ==> mornin'
653: 1 -> mornin ==> mourning
654: 1 -> most ==> utmost
655: 1 -> mothers ==> mother's
656: 1 -> mounted ==> mountain
657: 1 -> mowed ==> moa
658: 1 -> n ==> e'en
659: 1 -> n ==> than
660: 1 -> naomi ==> be
661: 1 -> nares ==> owenneyer's
662: 1 -> ne'er ==> never
663: 1 -> nearer ==> her
664: 1 -> neighborhood ==> neighbourhood
665: 1 -> neighbors ==> neighbours
666: 1 -> nelly ==> nellie
667: 1 -> neverbend ==> been
668: 1 -> newcomer ==> comer
669: 1 -> nine ==> not
670: 1 -> nor ==> or
671: 1 -> northwards ==> northward
672: 1 -> northwest ==> west
673: 1 -> not ==> cannot
674: 1 -> nought ==> naught
675: 1 -> numidia ==> nemeda
676: 1 -> o ==> a
677: 1 -> o ==> oh
678: 1 -> o'er ==> in
679: 1 -> observed ==> observe
680: 1 -> occupants ==> occupant
681: 1 -> odors ==> odours
682: 1 -> of ==> a
683: 1 -> of ==> pointed
684: 1 -> offenses ==> offences
685: 1 -> officers ==> officer
686: 1 -> old ==> mole
687: 1 -> omelette ==> omelet
688: 1 -> one ==> everyone
689: 1 -> one ==> someone
690: 1 -> one ==> swung
691: 1 -> one ==> when
692: 1 -> onto ==> to
693: 1 -> ophelia ==> amelia
694: 1 -> or ==> for
695: 1 -> or ==> of
696: 1 -> organizations ==> perplexed
697: 1 -> osage ==> sage
698: 1 -> otherworldly ==> worldly
699: 1 -> ottley's ==> outlay's
700: 1 -> oughter ==> ordered
701: 1 -> our ==> a
702: 1 -> out ==> mount
703: 1 -> pain ==> haine
704: 1 -> pane ==> pain
705: 1 -> papal ==> papple
706: 1 -> parlor ==> parlour
707: 1 -> paroquet ==> parakee
708: 1 -> parsons ==> parson
709: 1 -> paschal ==> partial
710: 1 -> pasteboard ==> paceboard
711: 1 -> patience ==> patient
712: 1 -> patients ==> patience
713: 1 -> pearl's ==> pearls
714: 1 -> pease ==> these
715: 1 -> pegre ==> peg
716: 1 -> pegrenne ==> pegrine
717: 1 -> ph ==> h
718: 1 -> phaedrus ==> features
719: 1 -> philadelphian ==> philadelphia
720: 1 -> plaits ==> plates
721: 1 -> plant ==> plat
722: 1 -> pleasance ==> pleasants
723: 1 -> plesiosaurus ==> pleciosaurus
724: 1 -> plural ==> moral
725: 1 -> poison'd ==> poisoned
726: 1 -> pole ==> whole
727: 1 -> pond ==> upon
728: 1 -> poos ==> kickapoos
729: 1 -> popham ==> good
730: 1 -> portes ==> dusport
731: 1 -> possible ==> billows
732: 1 -> practice ==> practise
733: 1 -> precede ==> proceed
734: 1 -> precieuses ==> uses
735: 1 -> pretense ==> pretence
736: 1 -> prevent ==> present
737: 1 -> pride ==> bride
738: 1 -> priesthood ==> priested
739: 1 -> prior ==> prayer
740: 1 -> probably ==> prob'ly
741: 1 -> produced ==> produce
742: 1 -> purist ==> purest
743: 1 -> puttin ==> putting
744: 1 -> quart ==> court
745: 1 -> quasi ==> eyed
746: 1 -> raphael ==> rafael
747: 1 -> rated ==> raided
748: 1 -> re ==> ring
749: 1 -> realize ==> realise
750: 1 -> record ==> records
751: 1 -> reeder ==> reader
752: 1 -> reenforcements ==> reinforcements
753: 1 -> refused ==> refuse
754: 1 -> regulated ==> it
755: 1 -> reign ==> rain
756: 1 -> relies ==> realized
757: 1 -> remain ==> remained
758: 1 -> remark ==> remarked
759: 1 -> remov'd ==> removed
760: 1 -> resigned ==> resign
761: 1 -> reweighed ==> weighed
762: 1 -> rhone ==> roan
763: 1 -> robin's ==> robins
764: 1 -> roerer ==> roar
765: 1 -> rogers's ==> roger's
766: 1 -> roots ==> ruts
767: 1 -> rosseter ==> rassitur
768: 1 -> said ==> sit
769: 1 -> sail ==> sale
770: 1 -> sail ==> sill
771: 1 -> saild ==> sailed
772: 1 -> saline ==> sailing
773: 1 -> sang ==> saying
774: 1 -> sate ==> sat
775: 1 -> sauveur ==> saviour
776: 1 -> saved ==> see
777: 1 -> say ==> save
778: 1 -> scathe ==> scath
779: 1 -> sceura ==> skura
780: 1 -> scevra ==> skevra
781: 1 -> scouting ==> scout
782: 1 -> scrapbooks ==> books
783: 1 -> scummed ==> scumbed
784: 1 -> scuse ==> excuse
785: 1 -> scutcheon ==> stutchean
786: 1 -> seating ==> sitting
787: 1 -> see ==> hetty's
788: 1 -> seem ==> seemed
789: 1 -> seemed ==> seem'd
790: 1 -> seems ==> seemed
791: 1 -> seized ==> ceased
792: 1 -> semon's ==> symonds
793: 1 -> sence ==> since
794: 1 -> sent ==> set
795: 1 -> sentences ==> sentence
796: 1 -> servant ==> bondservants
797: 1 -> set ==> sat
798: 1 -> sewing ==> sowing
799: 1 -> shall ==> shalt
800: 1 -> shan't ==> sha'n't
801: 1 -> sharpest ==> sharper
802: 1 -> sharps ==> sharp's
803: 1 -> shewd ==> showed
804: 1 -> ship ==> generalship
805: 1 -> ship ==> merchantship
806: 1 -> ship ==> ship's
807: 1 -> shoddy ==> shottie
808: 1 -> should ==> shouldst
809: 1 -> should ==> would
810: 1 -> showring ==> showering
811: 1 -> shrewdly ==> rudely
812: 1 -> shrivelled ==> shriveled
813: 1 -> shutting ==> shedding
814: 1 -> sif ==> sift
815: 1 -> silent ==> side
816: 1 -> sin ==> in
817: 1 -> since ==> sense
818: 1 -> sir ==> her
819: 1 -> skillful ==> skilful
820: 1 -> slang ==> slain
821: 1 -> sleeve ==> steve
822: 1 -> slowly ==> solely
823: 1 -> smild ==> smiled
824: 1 -> socrates ==> critias
825: 1 -> solon ==> saul
826: 1 -> solon ==> sullen
827: 1 -> solon's ==> solons
828: 1 -> something ==> somethin
829: 1 -> sometimes ==> often
830: 1 -> sou ==> sous
831: 1 -> southbridge ==> bridge
832: 1 -> southey ==> salvie
833: 1 -> southey's ==> these
834: 1 -> special ==> especial
835: 1 -> specialised ==> specialized
836: 1 -> specialty ==> speciality
837: 1 -> spelled ==> sculled
838: 1 -> spinning ==> spitting
839: 1 -> splendet ==> splendid
840: 1 -> stage ==> steed
841: 1 -> stagecraft ==> craft
842: 1 -> staid ==> at
843: 1 -> stairs ==> downstairs
844: 1 -> stairs ==> upstairs
845: 1 -> starts ==> started
846: 1 -> starved ==> starving
847: 1 -> state's ==> states
848: 1 -> steel'd ==> steeled
849: 1 -> step ==> doorstep
850: 1 -> stephanos ==> stephano's
851: 1 -> stockbroker ==> broker
852: 1 -> stopped ==> stop
853: 1 -> stopped ==> stopp'd
854: 1 -> story's ==> stories
855: 1 -> strain ==> strean
856: 1 -> streamline ==> line
857: 1 -> stroller's ==> strollers
858: 1 -> summers ==> summer's
859: 1 -> surge ==> bewildered
860: 1 -> suspicions ==> suspicion
861: 1 -> swan ==> swain
862: 1 -> sweep ==> swept
863: 1 -> swoons ==> swoon
864: 1 -> symposium ==> symposian
865: 1 -> t ==> that
866: 1 -> talks ==> toc's
867: 1 -> tampering ==> tempering
868: 1 -> tea ==> t
869: 1 -> teachery ==> teacher
870: 1 -> technique ==> mink
871: 1 -> that ==> but
872: 1 -> that ==> than
873: 1 -> the ==> sifta
874: 1 -> the ==> their
875: 1 -> the ==> this
876: 1 -> thee ==> he
877: 1 -> thee ==> the
878: 1 -> thee's ==> they's
879: 1 -> them ==> him
880: 1 -> them ==> men
881: 1 -> then ==> and
882: 1 -> then ==> in
883: 1 -> then ==> than
884: 1 -> they ==> to
885: 1 -> thing ==> anything
886: 1 -> thinks ==> think
887: 1 -> this ==> as
888: 1 -> this ==> its
889: 1 -> this ==> spilly
890: 1 -> thor ==> afore
891: 1 -> thorkel ==> torchall
892: 1 -> thorleif ==> torely
893: 1 -> thousand ==> thousandth
894: 1 -> thro ==> through
895: 1 -> tibi ==> tibby
896: 1 -> timaeus ==> as
897: 1 -> timaeus ==> timieus
898: 1 -> time ==> sometime
899: 1 -> tintint ==> tintent
900: 1 -> tintoret ==> tintaret
901: 1 -> tis ==> is
902: 1 -> to ==> o
903: 1 -> to ==> of
904: 1 -> toilette ==> toilet
905: 1 -> tonnay ==> tenissiah
906: 1 -> tonnay ==> tonna
907: 1 -> tonnay ==> tournais
908: 1 -> tooms ==> tombs
909: 1 -> totty ==> toddy
910: 1 -> totty ==> tutty
911: 1 -> tould ==> did
912: 1 -> towelling ==> towelsing
913: 1 -> towne ==> town
914: 1 -> transient ==> transit
915: 1 -> traveler ==> traveller
916: 1 -> traveling ==> travelling
917: 1 -> tray ==> overtray
918: 1 -> treble ==> trouble
919: 1 -> trooper's ==> troopers
920: 1 -> tuppeny ==> tuppenny
921: 1 -> turns ==> turned
922: 1 -> twite ==> quite
923: 1 -> ud ==> had
924: 1 -> un ==> wearin
925: 1 -> unclenched ==> clenched
926: 1 -> underground ==> ground
927: 1 -> unwarily ==> warily
928: 1 -> upon ==> on
929: 1 -> upstairs ==> stairs
930: 1 -> uptown ==> town
931: 1 -> valor ==> valour
932: 1 -> van ==> man
933: 1 -> vanderpools ==> pools
934: 1 -> vanes ==> veins
935: 1 -> veiled ==> baled
936: 1 -> verse ==> first
937: 1 -> vexation ==> drives
938: 1 -> viking ==> fighting
939: 1 -> villeroy ==> i
940: 1 -> wander ==> wonder
941: 1 -> warrenton's ==> warrentons
942: 1 -> waste ==> wastes
943: 1 -> watermill ==> mill
944: 1 -> way ==> passageway
945: 1 -> we're ==> were
946: 1 -> wear ==> where
947: 1 -> weather ==> whether
948: 1 -> webs ==> whips
949: 1 -> weight ==> wait
950: 1 -> welcome ==> balcom
951: 1 -> welcomed ==> welcome
952: 1 -> were ==> are
953: 1 -> were ==> or
954: 1 -> were ==> where
955: 1 -> west ==> northwest
956: 1 -> westmere ==> westminster
957: 1 -> wet ==> white
958: 1 -> what's ==> is
959: 1 -> whatever ==> whatsoever
960: 1 -> whatsoever ==> whatever
961: 1 -> whether ==> whither
962: 1 -> whirlpool ==> pool
963: 1 -> whittaw ==> widow
964: 1 -> whittawd ==> widowed
965: 1 -> whittaws ==> awes
966: 1 -> whittaws ==> widows
967: 1 -> who ==> you
968: 1 -> who's ==> whose
969: 1 -> wholly ==> holy
970: 1 -> will ==> it'll
971: 1 -> winifred ==> winnifred
972: 1 -> witch ==> which
973: 1 -> with ==> which
974: 1 -> woman's ==> women's
975: 1 -> woodbegirt ==> begirt
976: 1 -> woods ==> wood
977: 1 -> wool ==> wall
978: 1 -> worn ==> warned
979: 1 -> yearning ==> yearnin
980: 1 -> yes ==> aus
981: 1 -> you ==> it
982: 1 -> you ==> who
983: 1 -> you ==> ye
984: 1 -> you'll ==> will
985: 1 -> you'll ==> you
986: 1 -> zora ==> sorre
987: 1 -> zora ==> zorry
988: 1 -> zora's ==> zurich
-------
1263
INSERTIONS Total (114)
With >= 1 occurrences (114)
1: 16 -> the
2: 10 -> a
3: 7 -> any
4: 7 -> to
5: 6 -> and
6: 5 -> i
7: 4 -> he
8: 4 -> some
9: 3 -> an
10: 3 -> bee
11: 3 -> der
12: 3 -> her
13: 3 -> in
14: 3 -> she
15: 3 -> van
16: 2 -> assurance
17: 2 -> every
18: 2 -> ferdinand
19: 2 -> fire
20: 2 -> for
21: 2 -> from
22: 2 -> head
23: 2 -> inner
24: 2 -> old
25: 2 -> on
26: 2 -> sia
27: 2 -> that
28: 2 -> up
29: 2 -> you
30: 1 -> anddela
31: 1 -> athol
32: 1 -> bad
33: 1 -> bit
34: 1 -> brag
35: 1 -> branch
36: 1 -> breast
37: 1 -> britain
38: 1 -> built
39: 1 -> burgo
40: 1 -> chap
41: 1 -> chatter
42: 1 -> coarse
43: 1 -> colour
44: 1 -> command
45: 1 -> common
46: 1 -> crust
47: 1 -> difference
48: 1 -> don't
49: 1 -> e
50: 1 -> fall
51: 1 -> fichet
52: 1 -> fifth
53: 1 -> game
54: 1 -> gil
55: 1 -> gilor
56: 1 -> guests
57: 1 -> had
58: 1 -> has
59: 1 -> hayes
60: 1 -> hearth
61: 1 -> hello
62: 1 -> horse
63: 1 -> hot
64: 1 -> house
65: 1 -> it
66: 1 -> it's
67: 1 -> la
68: 1 -> le
69: 1 -> less
70: 1 -> levin
71: 1 -> lie
72: 1 -> main
73: 1 -> maine
74: 1 -> man
75: 1 -> manifests
76: 1 -> me
77: 1 -> mealy
78: 1 -> merghan
79: 1 -> miss
80: 1 -> mon
81: 1 -> mount
82: 1 -> near
83: 1 -> new
84: 1 -> nor
85: 1 -> north
86: 1 -> now
87: 1 -> o
88: 1 -> of
89: 1 -> oh
90: 1 -> or
91: 1 -> other
92: 1 -> our
93: 1 -> p
94: 1 -> popple
95: 1 -> press
96: 1 -> re
97: 1 -> regulate
98: 1 -> said
99: 1 -> scrap
100: 1 -> sick
101: 1 -> so
102: 1 -> south
103: 1 -> stage
104: 1 -> stay
105: 1 -> stock
106: 1 -> stream
107: 1 -> t
108: 1 -> then
109: 1 -> type
110: 1 -> war
111: 1 -> water
112: 1 -> wit
113: 1 -> wood
114: 1 -> ye
-------
193
DELETIONS Total (316)
With >= 1 occurrences (316)
1: 42 -> the
2: 27 -> and
3: 26 -> a
4: 24 -> of
5: 18 -> to
6: 9 -> in
7: 8 -> who
8: 7 -> as
9: 7 -> be
10: 7 -> for
11: 6 -> had
12: 6 -> it
13: 6 -> on
14: 6 -> that
15: 6 -> those
16: 6 -> with
17: 5 -> would
18: 4 -> her
19: 4 -> i
20: 4 -> she
21: 4 -> which
22: 3 -> day
23: 3 -> friend
24: 3 -> great
25: 3 -> mentioned
26: 3 -> neo
27: 3 -> over
28: 3 -> some
29: 3 -> were
30: 2 -> after
31: 2 -> another
32: 2 -> any
33: 2 -> are
34: 2 -> at
35: 2 -> bad
36: 2 -> been
37: 2 -> being
38: 2 -> court
39: 2 -> defended
40: 2 -> down
41: 2 -> e
42: 2 -> encourage
43: 2 -> family
44: 2 -> from
45: 2 -> hardly
46: 2 -> have
47: 2 -> he
48: 2 -> head
49: 2 -> heart
50: 2 -> law
51: 2 -> like
52: 2 -> made
53: 2 -> man
54: 2 -> morrow
55: 2 -> much
56: 2 -> new
57: 2 -> or
58: 2 -> out
59: 2 -> outcry
60: 2 -> propensities
61: 2 -> rodolfo
62: 2 -> same
63: 2 -> small
64: 2 -> so
65: 2 -> stroll
66: 2 -> table
67: 2 -> their
68: 2 -> themselves
69: 2 -> there
70: 2 -> thought
71: 2 -> thus
72: 2 -> up
73: 2 -> was
74: 2 -> where
75: 1 -> about
76: 1 -> admit
77: 1 -> all
78: 1 -> allers
79: 1 -> altering
80: 1 -> although
81: 1 -> am
82: 1 -> among
83: 1 -> amphitheater
84: 1 -> an
85: 1 -> ante
86: 1 -> anxiety
87: 1 -> appeared
88: 1 -> area
89: 1 -> art
90: 1 -> article
91: 1 -> bains
92: 1 -> bare
93: 1 -> beasts
94: 1 -> beater
95: 1 -> beauty
96: 1 -> billed
97: 1 -> bleed
98: 1 -> blow
99: 1 -> blunt
100: 1 -> body
101: 1 -> bond
102: 1 -> branches
103: 1 -> brother
104: 1 -> bul
105: 1 -> but
106: 1 -> butterfly
107: 1 -> by
108: 1 -> can
109: 1 -> cap'n
110: 1 -> carey
111: 1 -> case
112: 1 -> chieftain
113: 1 -> choice
114: 1 -> christ
115: 1 -> city
116: 1 -> clerk
117: 1 -> clients
118: 1 -> closely
119: 1 -> concerting
120: 1 -> considerable
121: 1 -> continuously
122: 1 -> contrition
123: 1 -> corn
124: 1 -> corresponding
125: 1 -> cotton
126: 1 -> could
127: 1 -> course
128: 1 -> cracking
129: 1 -> creation
130: 1 -> crossed
131: 1 -> curse
132: 1 -> dared
133: 1 -> de
134: 1 -> deal
135: 1 -> decency
136: 1 -> decree
137: 1 -> deed
138: 1 -> degree
139: 1 -> delicate
140: 1 -> depend
141: 1 -> determined
142: 1 -> development
143: 1 -> diatribe
144: 1 -> differences
145: 1 -> distrust
146: 1 -> divert
147: 1 -> do
148: 1 -> doctor
149: 1 -> doing
150: 1 -> door
151: 1 -> douze
152: 1 -> drew
153: 1 -> drink
154: 1 -> ducks
155: 1 -> dwell
156: 1 -> earlier
157: 1 -> effect
158: 1 -> enough
159: 1 -> evening
160: 1 -> ever
161: 1 -> every
162: 1 -> excellent
163: 1 -> expected
164: 1 -> experience
165: 1 -> false
166: 1 -> fast
167: 1 -> favourite
168: 1 -> felt
169: 1 -> first
170: 1 -> founded
171: 1 -> general
172: 1 -> generally
173: 1 -> gentle
174: 1 -> getting
175: 1 -> gilded
176: 1 -> go
177: 1 -> going
178: 1 -> guests
179: 1 -> hal
180: 1 -> hands
181: 1 -> has
182: 1 -> hatred
183: 1 -> haworth
184: 1 -> heavens
185: 1 -> herself
186: 1 -> him
187: 1 -> holds
188: 1 -> holiness
189: 1 -> hostess
190: 1 -> hounded
191: 1 -> hours
192: 1 -> hunted
193: 1 -> i've
194: 1 -> individuals
195: 1 -> insignificant
196: 1 -> intelligent
197: 1 -> intents
198: 1 -> interests
199: 1 -> is
200: 1 -> jack
201: 1 -> jersey
202: 1 -> kick
203: 1 -> laid
204: 1 -> level
205: 1 -> likely
206: 1 -> long
207: 1 -> longing
208: 1 -> looked
209: 1 -> looking
210: 1 -> lopped
211: 1 -> lost
212: 1 -> love
213: 1 -> lowly
214: 1 -> mac
215: 1 -> many
216: 1 -> may
217: 1 -> meeting
218: 1 -> merchant
219: 1 -> military
220: 1 -> minds
221: 1 -> misfortune
222: 1 -> mo
223: 1 -> money
224: 1 -> more
225: 1 -> most
226: 1 -> mother
227: 1 -> my
228: 1 -> needed
229: 1 -> noise
230: 1 -> north
231: 1 -> not
232: 1 -> oak
233: 1 -> off
234: 1 -> office
235: 1 -> opportunity
236: 1 -> organizations
237: 1 -> otherwise
238: 1 -> owen
239: 1 -> own
240: 1 -> papers
241: 1 -> passage
242: 1 -> perches
243: 1 -> perhaps
244: 1 -> persevered
245: 1 -> pewter
246: 1 -> pleasing
247: 1 -> point
248: 1 -> polished
249: 1 -> position
250: 1 -> punishment
251: 1 -> purse
252: 1 -> rare
253: 1 -> receives
254: 1 -> recognised
255: 1 -> reflection
256: 1 -> reproof
257: 1 -> rich
258: 1 -> room
259: 1 -> round
260: 1 -> royal
261: 1 -> sacred
262: 1 -> say
263: 1 -> scarce
264: 1 -> school
265: 1 -> seats
266: 1 -> see
267: 1 -> seizing
268: 1 -> selection
269: 1 -> senator
270: 1 -> sense
271: 1 -> sharp'st
272: 1 -> sif
273: 1 -> site
274: 1 -> slanderer
275: 1 -> soul
276: 1 -> sounding
277: 1 -> spoken
278: 1 -> states
279: 1 -> stopped
280: 1 -> strong
281: 1 -> structure
282: 1 -> sure
283: 1 -> surfaces
284: 1 -> suspicion
285: 1 -> swell
286: 1 -> tan
287: 1 -> terraced
288: 1 -> than
289: 1 -> they
290: 1 -> things
291: 1 -> this
292: 1 -> tory
293: 1 -> trees
294: 1 -> true
295: 1 -> turned
296: 1 -> two
297: 1 -> united
298: 1 -> unknown
299: 1 -> usually
300: 1 -> vales
301: 1 -> vaudois
302: 1 -> very
303: 1 -> villa
304: 1 -> wandering
305: 1 -> weak
306: 1 -> welcome
307: 1 -> what
308: 1 -> while
309: 1 -> whom
310: 1 -> wife
311: 1 -> will
312: 1 -> wood
313: 1 -> world
314: 1 -> worth
315: 1 -> yet
316: 1 -> zeal
-------
588
SUBSTITUTIONS Total (838)
With >= 1 occurrences (838)
1: 24 -> and
2: 22 -> in
3: 17 -> a
4: 15 -> is
5: 14 -> rodolfo
6: 12 -> leocadia
7: 10 -> that
8: 10 -> this
9: 7 -> an
10: 7 -> has
11: 7 -> one
12: 7 -> the
13: 6 -> anyone
14: 6 -> estafania
15: 6 -> kaffar
16: 6 -> man
17: 5 -> charente
18: 5 -> her
19: 5 -> soames
20: 5 -> thel
21: 5 -> to
22: 5 -> tonnay
23: 4 -> andella
24: 4 -> anders
25: 4 -> color
26: 4 -> colour
27: 4 -> emil
28: 4 -> it
29: 4 -> kaffar's
30: 4 -> lake
31: 4 -> leavenworth
32: 4 -> leocadia's
33: 4 -> mainhall
34: 4 -> meter
35: 4 -> o
36: 4 -> silvia
37: 4 -> solon
38: 4 -> them
39: 4 -> towards
40: 3 -> as
41: 3 -> cresswell
42: 3 -> felt
43: 3 -> galatians
44: 3 -> gamewell
45: 3 -> gilchrist
46: 3 -> had
47: 3 -> he's
48: 3 -> him
49: 3 -> hollan
50: 3 -> i've
51: 3 -> jago
52: 3 -> madam
53: 3 -> men
54: 3 -> nearer
55: 3 -> not
56: 3 -> platonists
57: 3 -> practise
58: 3 -> ship
59: 3 -> tabu
60: 3 -> theater
61: 3 -> their
62: 3 -> then
63: 3 -> they
64: 3 -> thorkel
65: 3 -> today
66: 3 -> valliere
67: 3 -> was
68: 3 -> were
69: 3 -> xavier
70: 3 -> you
71: 2 -> abduction
72: 2 -> alexandra
73: 2 -> alluvion
74: 2 -> am
75: 2 -> another
76: 2 -> are
77: 2 -> ass
78: 2 -> assurances
79: 2 -> athenais
80: 2 -> aye
81: 2 -> balaam's
82: 2 -> bannister
83: 2 -> beatitude
84: 2 -> befal
85: 2 -> before
86: 2 -> bit
87: 2 -> blessings
88: 2 -> broken
89: 2 -> center
90: 2 -> chaise
91: 2 -> check
92: 2 -> clew
93: 2 -> colored
94: 2 -> colorist
95: 2 -> colors
96: 2 -> composser
97: 2 -> conjurer
98: 2 -> country's
99: 2 -> cozier
100: 2 -> creighton
101: 2 -> cyn
102: 2 -> de
103: 2 -> dedalus
104: 2 -> define
105: 2 -> discoloured
106: 2 -> dismayed
107: 2 -> dobryna
108: 2 -> dona
109: 2 -> ears
110: 2 -> entranced
111: 2 -> everyone
112: 2 -> favor
113: 2 -> ferdinando
114: 2 -> forwarded
115: 2 -> friskily
116: 2 -> give
117: 2 -> goat
118: 2 -> grey
119: 2 -> guest
120: 2 -> hallo
121: 2 -> hangings
122: 2 -> have
123: 2 -> hawk
124: 2 -> he
125: 2 -> here
126: 2 -> hidalgo
127: 2 -> hilda
128: 2 -> hit
129: 2 -> holbein
130: 2 -> honorable
131: 2 -> honour
132: 2 -> hurons
133: 2 -> hymn
134: 2 -> i
135: 2 -> i'd
136: 2 -> i'm
137: 2 -> ichthyosaurus
138: 2 -> innerlochy
139: 2 -> interest
140: 2 -> larkspur
141: 2 -> lecompte
142: 2 -> leocadi
143: 2 -> luis
144: 2 -> marivaux
145: 2 -> master's
146: 2 -> montmartre
147: 2 -> mornin
148: 2 -> mourn
149: 2 -> munny
150: 2 -> n
151: 2 -> of
152: 2 -> or
153: 2 -> paper
154: 2 -> parasites
155: 2 -> purposed
156: 2 -> rather
157: 2 -> ravishing
158: 2 -> read
159: 2 -> remained
160: 2 -> remember
161: 2 -> resolved
162: 2 -> rodolfo's
163: 2 -> round
164: 2 -> sail
165: 2 -> scaroons
166: 2 -> scent
167: 2 -> senor
168: 2 -> she's
169: 2 -> should
170: 2 -> size
171: 2 -> someone
172: 2 -> sometime
173: 2 -> stairs
174: 2 -> stopped
175: 2 -> suppose
176: 2 -> than
177: 2 -> thee
178: 2 -> timaeus
179: 2 -> tonight
180: 2 -> totty
181: 2 -> travelers
182: 2 -> two
183: 2 -> vanderpool
184: 2 -> vapours
185: 2 -> voltaire
186: 2 -> watry
187: 2 -> we'll
188: 2 -> when
189: 2 -> whisk
190: 2 -> whittaws
191: 2 -> withes
192: 2 -> worst
193: 2 -> would
194: 2 -> yard
195: 2 -> ye
196: 2 -> you'll
197: 2 -> you're
198: 2 -> zora
199: 1 -> abjectly
200: 1 -> abolitionists
201: 1 -> acknowledgement
202: 1 -> adona
203: 1 -> affrightened
204: 1 -> aignan
205: 1 -> air
206: 1 -> anaxagoras
207: 1 -> angels
208: 1 -> answerd
209: 1 -> antedating
210: 1 -> anymore
211: 1 -> appealed
212: 1 -> apposition
213: 1 -> apprentice
214: 1 -> arc
215: 1 -> ardle
216: 1 -> ardour
217: 1 -> argus
218: 1 -> argyle
219: 1 -> arrests
220: 1 -> arrondissement
221: 1 -> ascendency
222: 1 -> at
223: 1 -> atholemen
224: 1 -> attendance
225: 1 -> attendants
226: 1 -> aunt
227: 1 -> aware
228: 1 -> awhile
229: 1 -> ay
230: 1 -> azure
231: 1 -> babirusa
232: 1 -> badauderie
233: 1 -> bartley
234: 1 -> battleax
235: 1 -> beached
236: 1 -> beebe
237: 1 -> beeder
238: 1 -> beehives
239: 1 -> befell
240: 1 -> beggar's
241: 1 -> behaviour
242: 1 -> bein
243: 1 -> belonged
244: 1 -> bench
245: 1 -> bend
246: 1 -> big
247: 1 -> bill
248: 1 -> billygoat
249: 1 -> blasts
250: 1 -> boar
251: 1 -> bolls
252: 1 -> bond
253: 1 -> bookkeeper
254: 1 -> bout
255: 1 -> boys
256: 1 -> bragelonne
257: 1 -> brake
258: 1 -> branch
259: 1 -> branches
260: 1 -> breakfas
261: 1 -> breastplate
262: 1 -> bringing
263: 1 -> britannula
264: 1 -> britannulists
265: 1 -> brown
266: 1 -> budding
267: 1 -> bul
268: 1 -> bunnit
269: 1 -> burgoyne
270: 1 -> burn
271: 1 -> but
272: 1 -> can
273: 1 -> canvass
274: 1 -> carl
275: 1 -> carpaccio's
276: 1 -> cat
277: 1 -> caught
278: 1 -> ceasd
279: 1 -> cendenaries
280: 1 -> centred
281: 1 -> chatterbox
282: 1 -> checker
283: 1 -> checks
284: 1 -> cheroot
285: 1 -> chiaroscurist
286: 1 -> chiaroscurists
287: 1 -> chord
288: 1 -> christain
289: 1 -> cigarette
290: 1 -> citadelled
291: 1 -> civet
292: 1 -> clause
293: 1 -> cloth
294: 1 -> clothes
295: 1 -> coal
296: 1 -> colorists
297: 1 -> combash
298: 1 -> commandments
299: 1 -> commentators
300: 1 -> compulsive
301: 1 -> concern
302: 1 -> condense
303: 1 -> conquerin
304: 1 -> consid'ble
305: 1 -> constantine
306: 1 -> contained
307: 1 -> conti
308: 1 -> cook
309: 1 -> costs
310: 1 -> could
311: 1 -> couldn't
312: 1 -> counselled
313: 1 -> counsels
314: 1 -> courant
315: 1 -> court's
316: 1 -> covenanters
317: 1 -> crasweller
318: 1 -> craswellers
319: 1 -> cresswells
320: 1 -> critias
321: 1 -> crosstrees
322: 1 -> curved
323: 1 -> cutters
324: 1 -> d'este
325: 1 -> dawn's
326: 1 -> dedalos
327: 1 -> delia
328: 1 -> deliberative
329: 1 -> dependent
330: 1 -> descent
331: 1 -> dew
332: 1 -> dias
333: 1 -> differences
334: 1 -> disappointment
335: 1 -> dishes
336: 1 -> disk
337: 1 -> districts
338: 1 -> doctress
339: 1 -> doll
340: 1 -> donatists
341: 1 -> doves
342: 1 -> draws
343: 1 -> dripping
344: 1 -> dropidas
345: 1 -> duerer
346: 1 -> dumbfounded
347: 1 -> dunno
348: 1 -> dykes
349: 1 -> early
350: 1 -> economic
351: 1 -> edition
352: 1 -> elcho
353: 1 -> eleven
354: 1 -> elmo's
355: 1 -> em
356: 1 -> emerg'd
357: 1 -> emigrant
358: 1 -> endeavor
359: 1 -> endeavoring
360: 1 -> endured
361: 1 -> enough
362: 1 -> enquire
363: 1 -> enquired
364: 1 -> enquiries
365: 1 -> enter
366: 1 -> entrenched
367: 1 -> entrusted
368: 1 -> entrusting
369: 1 -> equip
370: 1 -> er
371: 1 -> erring
372: 1 -> escheated
373: 1 -> esprit
374: 1 -> eva
375: 1 -> evenin's
376: 1 -> evening
377: 1 -> ever
378: 1 -> evolution
379: 1 -> exhort
380: 1 -> eye
381: 1 -> fallen
382: 1 -> fantasy
383: 1 -> far
384: 1 -> favorably
385: 1 -> feared
386: 1 -> fearest
387: 1 -> feeling
388: 1 -> fence
389: 1 -> fete
390: 1 -> fine
391: 1 -> fingers
392: 1 -> fireball
393: 1 -> firebugs
394: 1 -> fitzooth
395: 1 -> flap
396: 1 -> flight
397: 1 -> floyd's
398: 1 -> fluffinose
399: 1 -> footman
400: 1 -> forbes's
401: 1 -> forever
402: 1 -> formally
403: 1 -> francs
404: 1 -> fulness
405: 1 -> futuristic
406: 1 -> gates
407: 1 -> gayly
408: 1 -> gentleman
409: 1 -> gentlemen
410: 1 -> geoffrey
411: 1 -> geoffrey's
412: 1 -> gestation
413: 1 -> giaours
414: 1 -> gier
415: 1 -> gilchrist's
416: 1 -> gillikins
417: 1 -> girard
418: 1 -> glue
419: 1 -> goobers
420: 1 -> governed
421: 1 -> government
422: 1 -> gradated
423: 1 -> gram
424: 1 -> grand
425: 1 -> gray
426: 1 -> greeing
427: 1 -> grey's
428: 1 -> grim
429: 1 -> gringo
430: 1 -> guerrilla
431: 1 -> guests
432: 1 -> guise
433: 1 -> hakon
434: 1 -> halloa
435: 1 -> ham
436: 1 -> hand
437: 1 -> hanna
438: 1 -> happening
439: 1 -> happiness
440: 1 -> haranguing
441: 1 -> harboring
442: 1 -> harkened
443: 1 -> harmonized
444: 1 -> harts
445: 1 -> hawtrey
446: 1 -> hay
447: 1 -> hazewrapped
448: 1 -> he'd
449: 1 -> hear
450: 1 -> hearthstones
451: 1 -> held
452: 1 -> hell
453: 1 -> hello
454: 1 -> helped
455: 1 -> hen
456: 1 -> henchmen
457: 1 -> henley
458: 1 -> heracleitus
459: 1 -> hermocrates
460: 1 -> herself
461: 1 -> hester
462: 1 -> hetty
463: 1 -> hill
464: 1 -> his
465: 1 -> holmes
466: 1 -> hon
467: 1 -> horace
468: 1 -> horseplay
469: 1 -> horton
470: 1 -> hotbed
471: 1 -> hound
472: 1 -> housecleaning
473: 1 -> households
474: 1 -> humor
475: 1 -> if
476: 1 -> ike
477: 1 -> ill
478: 1 -> imagined
479: 1 -> impearled
480: 1 -> impress'd
481: 1 -> impresses
482: 1 -> inaction
483: 1 -> incandescent
484: 1 -> incertainty
485: 1 -> inclosed
486: 1 -> infants
487: 1 -> inference
488: 1 -> injury
489: 1 -> insurrectionists
490: 1 -> into
491: 1 -> intolerancy
492: 1 -> inventors
493: 1 -> irreparable
494: 1 -> it'll
495: 1 -> it's
496: 1 -> itch
497: 1 -> its
498: 1 -> jail
499: 1 -> james
500: 1 -> jane's
501: 1 -> jasper
502: 1 -> jeweler's
503: 1 -> jus
504: 1 -> keogh
505: 1 -> kingdoms
506: 1 -> kirtland
507: 1 -> kneed
508: 1 -> knife
509: 1 -> l
510: 1 -> labour
511: 1 -> lallie
512: 1 -> lambent
513: 1 -> larder
514: 1 -> lattice
515: 1 -> leased
516: 1 -> lecompton
517: 1 -> lefrank
518: 1 -> lesser
519: 1 -> lets
520: 1 -> like
521: 1 -> lilburn
522: 1 -> lilly
523: 1 -> lillys
524: 1 -> line
525: 1 -> liter
526: 1 -> live
527: 1 -> lo
528: 1 -> lodging
529: 1 -> logarithms
530: 1 -> lorne
531: 1 -> lotus
532: 1 -> lou's
533: 1 -> louis
534: 1 -> love's
535: 1 -> lower
536: 1 -> luke
537: 1 -> lulls
538: 1 -> madame's
539: 1 -> manifested
540: 1 -> manservant
541: 1 -> marie
542: 1 -> marshall
543: 1 -> marshalled
544: 1 -> marvelous
545: 1 -> masters
546: 1 -> mate
547: 1 -> meadowcroft
548: 1 -> meadowcroft's
549: 1 -> mealyback
550: 1 -> meet
551: 1 -> mer
552: 1 -> merchiston
553: 1 -> merganser
554: 1 -> merry
555: 1 -> mersey
556: 1 -> miles
557: 1 -> militated
558: 1 -> mine
559: 1 -> mint
560: 1 -> missourians
561: 1 -> missus
562: 1 -> mister
563: 1 -> mists
564: 1 -> molded
565: 1 -> mombi
566: 1 -> mongoose
567: 1 -> montfichet
568: 1 -> more's
569: 1 -> most
570: 1 -> mothers
571: 1 -> mounted
572: 1 -> mowed
573: 1 -> naomi
574: 1 -> nares
575: 1 -> ne'er
576: 1 -> neighborhood
577: 1 -> neighbors
578: 1 -> nelly
579: 1 -> neverbend
580: 1 -> newcomer
581: 1 -> nine
582: 1 -> nor
583: 1 -> northwards
584: 1 -> northwest
585: 1 -> nought
586: 1 -> numidia
587: 1 -> o'er
588: 1 -> observed
589: 1 -> occupants
590: 1 -> odors
591: 1 -> offenses
592: 1 -> officers
593: 1 -> old
594: 1 -> omelette
595: 1 -> onto
596: 1 -> ophelia
597: 1 -> organizations
598: 1 -> osage
599: 1 -> otherworldly
600: 1 -> ottley's
601: 1 -> oughter
602: 1 -> our
603: 1 -> out
604: 1 -> pain
605: 1 -> pane
606: 1 -> papal
607: 1 -> parlor
608: 1 -> paroquet
609: 1 -> parsons
610: 1 -> paschal
611: 1 -> pasteboard
612: 1 -> patience
613: 1 -> patients
614: 1 -> pearl's
615: 1 -> pease
616: 1 -> pegre
617: 1 -> pegrenne
618: 1 -> ph
619: 1 -> phaedrus
620: 1 -> philadelphian
621: 1 -> plaits
622: 1 -> plant
623: 1 -> pleasance
624: 1 -> plesiosaurus
625: 1 -> plural
626: 1 -> poison'd
627: 1 -> pole
628: 1 -> pond
629: 1 -> poos
630: 1 -> popham
631: 1 -> portes
632: 1 -> possible
633: 1 -> practice
634: 1 -> precede
635: 1 -> precieuses
636: 1 -> pretense
637: 1 -> prevent
638: 1 -> pride
639: 1 -> priesthood
640: 1 -> prior
641: 1 -> probably
642: 1 -> produced
643: 1 -> purist
644: 1 -> puttin
645: 1 -> quart
646: 1 -> quasi
647: 1 -> raphael
648: 1 -> rated
649: 1 -> re
650: 1 -> realize
651: 1 -> record
652: 1 -> reeder
653: 1 -> reenforcements
654: 1 -> refused
655: 1 -> regulated
656: 1 -> reign
657: 1 -> relies
658: 1 -> remain
659: 1 -> remark
660: 1 -> remov'd
661: 1 -> resigned
662: 1 -> reweighed
663: 1 -> rhone
664: 1 -> robin's
665: 1 -> roerer
666: 1 -> rogers's
667: 1 -> roots
668: 1 -> rosseter
669: 1 -> said
670: 1 -> saild
671: 1 -> saline
672: 1 -> sang
673: 1 -> sate
674: 1 -> sauveur
675: 1 -> saved
676: 1 -> say
677: 1 -> scathe
678: 1 -> sceura
679: 1 -> scevra
680: 1 -> scouting
681: 1 -> scrapbooks
682: 1 -> scummed
683: 1 -> scuse
684: 1 -> scutcheon
685: 1 -> seating
686: 1 -> see
687: 1 -> seem
688: 1 -> seemed
689: 1 -> seems
690: 1 -> seized
691: 1 -> semon's
692: 1 -> sence
693: 1 -> sent
694: 1 -> sentences
695: 1 -> servant
696: 1 -> set
697: 1 -> sewing
698: 1 -> shall
699: 1 -> shan't
700: 1 -> sharpest
701: 1 -> sharps
702: 1 -> shewd
703: 1 -> shoddy
704: 1 -> showring
705: 1 -> shrewdly
706: 1 -> shrivelled
707: 1 -> shutting
708: 1 -> sif
709: 1 -> silent
710: 1 -> sin
711: 1 -> since
712: 1 -> sir
713: 1 -> skillful
714: 1 -> slang
715: 1 -> sleeve
716: 1 -> slowly
717: 1 -> smild
718: 1 -> socrates
719: 1 -> solon's
720: 1 -> something
721: 1 -> sometimes
722: 1 -> sou
723: 1 -> southbridge
724: 1 -> southey
725: 1 -> southey's
726: 1 -> special
727: 1 -> specialised
728: 1 -> specialty
729: 1 -> spelled
730: 1 -> spinning
731: 1 -> splendet
732: 1 -> stage
733: 1 -> stagecraft
734: 1 -> staid
735: 1 -> starts
736: 1 -> starved
737: 1 -> state's
738: 1 -> steel'd
739: 1 -> step
740: 1 -> stephanos
741: 1 -> stockbroker
742: 1 -> story's
743: 1 -> strain
744: 1 -> streamline
745: 1 -> stroller's
746: 1 -> summers
747: 1 -> surge
748: 1 -> suspicions
749: 1 -> swan
750: 1 -> sweep
751: 1 -> swoons
752: 1 -> symposium
753: 1 -> t
754: 1 -> talks
755: 1 -> tampering
756: 1 -> tea
757: 1 -> teachery
758: 1 -> technique
759: 1 -> thee's
760: 1 -> thing
761: 1 -> thinks
762: 1 -> thor
763: 1 -> thorleif
764: 1 -> thousand
765: 1 -> thro
766: 1 -> tibi
767: 1 -> time
768: 1 -> tintint
769: 1 -> tintoret
770: 1 -> tis
771: 1 -> toilette
772: 1 -> tooms
773: 1 -> tould
774: 1 -> towelling
775: 1 -> towne
776: 1 -> transient
777: 1 -> traveler
778: 1 -> traveling
779: 1 -> tray
780: 1 -> treble
781: 1 -> trooper's
782: 1 -> tuppeny
783: 1 -> turns
784: 1 -> twite
785: 1 -> ud
786: 1 -> un
787: 1 -> unclenched
788: 1 -> underground
789: 1 -> unwarily
790: 1 -> upon
791: 1 -> upstairs
792: 1 -> uptown
793: 1 -> valor
794: 1 -> van
795: 1 -> vanderpools
796: 1 -> vanes
797: 1 -> veiled
798: 1 -> verse
799: 1 -> vexation
800: 1 -> viking
801: 1 -> villeroy
802: 1 -> wander
803: 1 -> warrenton's
804: 1 -> waste
805: 1 -> watermill
806: 1 -> way
807: 1 -> we're
808: 1 -> wear
809: 1 -> weather
810: 1 -> webs
811: 1 -> weight
812: 1 -> welcome
813: 1 -> welcomed
814: 1 -> west
815: 1 -> westmere
816: 1 -> wet
817: 1 -> what's
818: 1 -> whatever
819: 1 -> whatsoever
820: 1 -> whether
821: 1 -> whirlpool
822: 1 -> whittaw
823: 1 -> whittawd
824: 1 -> who
825: 1 -> who's
826: 1 -> wholly
827: 1 -> will
828: 1 -> winifred
829: 1 -> witch
830: 1 -> with
831: 1 -> woman's
832: 1 -> woodbegirt
833: 1 -> woods
834: 1 -> wool
835: 1 -> worn
836: 1 -> yearning
837: 1 -> yes
838: 1 -> zora's
-------
1263
* NOTE: The 'Substitution' words are those reference words
for which the recognizer supplied an incorrect word.
FALSELY RECOGNIZED Total (855)
With >= 1 occurrences (855)
1: 37 -> the
2: 21 -> and
3: 19 -> in
4: 14 -> a
5: 14 -> as
6: 14 -> is
7: 10 -> men
8: 10 -> one
9: 8 -> it
10: 8 -> rudolpho
11: 7 -> on
12: 6 -> had
13: 6 -> i
14: 6 -> kaffir
15: 6 -> of
16: 6 -> redolpho
17: 6 -> to
18: 5 -> an
19: 5 -> solmes
20: 5 -> that
21: 5 -> will
22: 5 -> you
23: 4 -> color
24: 4 -> colour
25: 4 -> fell
26: 4 -> him
27: 4 -> leucadia
28: 4 -> man
29: 4 -> metre
30: 4 -> saviour
31: 4 -> sin
32: 4 -> sylvia
33: 4 -> toward
34: 3 -> are
35: 3 -> but
36: 3 -> chair
37: 3 -> chase
38: 3 -> day
39: 3 -> for
40: 3 -> guests
41: 3 -> has
42: 3 -> have
43: 3 -> her
44: 3 -> his
45: 3 -> holland
46: 3 -> madame
47: 3 -> naught
48: 3 -> neoplanists
49: 3 -> or
50: 3 -> pool
51: 3 -> practice
52: 3 -> red
53: 3 -> taboo
54: 3 -> than
55: 3 -> theatre
56: 3 -> thou
57: 3 -> two
58: 3 -> valier
59: 3 -> won
60: 2 -> adoption
61: 2 -> affania
62: 2 -> alexander
63: 2 -> algo
64: 2 -> alieucadius
65: 2 -> am
66: 2 -> amia
67: 2 -> around
68: 2 -> ask
69: 2 -> at
70: 2 -> attitude
71: 2 -> baliam's
72: 2 -> banister
73: 2 -> be
74: 2 -> been
75: 2 -> befall
76: 2 -> blessing
77: 2 -> brother
78: 2 -> ceased
79: 2 -> centre
80: 2 -> chart
81: 2 -> cheque
82: 2 -> clue
83: 2 -> coloured
84: 2 -> compossor
85: 2 -> conjuror
86: 2 -> cosier
87: 2 -> country
88: 2 -> courtyard
89: 2 -> daedalus
90: 2 -> discolored
91: 2 -> dismayedest
92: 2 -> do
93: 2 -> dobrina
94: 2 -> don
95: 2 -> doorstep
96: 2 -> eluvian
97: 2 -> em
98: 2 -> estaffania
99: 2 -> estaphia
100: 2 -> favour
101: 2 -> fight
102: 2 -> find
103: 2 -> friskly
104: 2 -> gave
105: 2 -> graham
106: 2 -> gray
107: 2 -> half
108: 2 -> hall
109: 2 -> hallo
110: 2 -> hanging
111: 2 -> he
112: 2 -> heartbroken
113: 2 -> helga
114: 2 -> hello
115: 2 -> herons
116: 2 -> hetty's
117: 2 -> hid
118: 2 -> honor
119: 2 -> honourable
120: 2 -> i'm
121: 2 -> interests
122: 2 -> its
123: 2 -> kaffir's
124: 2 -> kaffirs
125: 2 -> leak
126: 2 -> leucadia's
127: 2 -> levenworth
128: 2 -> lily
129: 2 -> locatia
130: 2 -> locidia
131: 2 -> louis
132: 2 -> luccadia
133: 2 -> masters
134: 2 -> may
135: 2 -> mind
136: 2 -> money
137: 2 -> mourned
138: 2 -> near
139: 2 -> never
140: 2 -> night
141: 2 -> o
142: 2 -> ocadia
143: 2 -> other
144: 2 -> papers
145: 2 -> parricides
146: 2 -> purpose
147: 2 -> ravishingly
148: 2 -> reader
149: 2 -> remaining
150: 2 -> remembered
151: 2 -> resolve
152: 2 -> rodolph's
153: 2 -> s'pose
154: 2 -> sat
155: 2 -> seemed
156: 2 -> side
157: 2 -> sighs
158: 2 -> signor
159: 2 -> sir
160: 2 -> so
161: 2 -> solomon
162: 2 -> squaroons
163: 2 -> there's
164: 2 -> these
165: 2 -> time
166: 2 -> tony
167: 2 -> torcle
168: 2 -> town
169: 2 -> transgressed
170: 2 -> travellers
171: 2 -> vapors
172: 2 -> voted
173: 2 -> watery
174: 2 -> well
175: 2 -> were
176: 2 -> where
177: 2 -> which
178: 2 -> whisked
179: 2 -> widths
180: 2 -> worse
181: 2 -> would
182: 1 -> abolitionist
183: 1 -> accord
184: 1 -> acknowledgment
185: 1 -> action
186: 1 -> addition
187: 1 -> adelax
188: 1 -> admitted
189: 1 -> adonna
190: 1 -> afar
191: 1 -> afore
192: 1 -> airing
193: 1 -> alone
194: 1 -> amelia
195: 1 -> amiable
196: 1 -> amyl
197: 1 -> anddella
198: 1 -> ander's
199: 1 -> andrew
200: 1 -> andrew's
201: 1 -> andrews
202: 1 -> angel
203: 1 -> anglottions
204: 1 -> annedella
205: 1 -> annon
206: 1 -> answered
207: 1 -> ant
208: 1 -> anything
209: 1 -> appeal
210: 1 -> apprenticed
211: 1 -> ardor
212: 1 -> argos
213: 1 -> ark
214: 1 -> arrest
215: 1 -> arundissimo
216: 1 -> ascendancy
217: 1 -> asiated
218: 1 -> athenae
219: 1 -> attendance
220: 1 -> attendants
221: 1 -> aus
222: 1 -> awaited
223: 1 -> away
224: 1 -> awes
225: 1 -> ay
226: 1 -> b
227: 1 -> back
228: 1 -> balcom
229: 1 -> baled
230: 1 -> ball
231: 1 -> bandemire
232: 1 -> barbarosa
233: 1 -> bawn
234: 1 -> bed
235: 1 -> beeched
236: 1 -> beer
237: 1 -> befel
238: 1 -> beggars
239: 1 -> begirt
240: 1 -> behavior
241: 1 -> being
242: 1 -> belong
243: 1 -> bewildered
244: 1 -> billows
245: 1 -> blast
246: 1 -> blue
247: 1 -> boarhound
248: 1 -> boat
249: 1 -> bondservants
250: 1 -> bonett
251: 1 -> books
252: 1 -> box
253: 1 -> break
254: 1 -> breakfast
255: 1 -> bride
256: 1 -> bridge
257: 1 -> britannialists
258: 1 -> broker
259: 1 -> browne
260: 1 -> bugs
261: 1 -> bulboo
262: 1 -> bulls
263: 1 -> burned
264: 1 -> butting
265: 1 -> campbell
266: 1 -> camwell
267: 1 -> can
268: 1 -> cannot
269: 1 -> canti
270: 1 -> canvas
271: 1 -> carpatios
272: 1 -> carrie
273: 1 -> carved
274: 1 -> centered
275: 1 -> certainty
276: 1 -> chequer
277: 1 -> cheques
278: 1 -> choices
279: 1 -> cholerist
280: 1 -> chris
281: 1 -> christ's
282: 1 -> christian
283: 1 -> citadeld
284: 1 -> claw
285: 1 -> cleaning
286: 1 -> clenched
287: 1 -> clothed
288: 1 -> co
289: 1 -> collars
290: 1 -> colourists
291: 1 -> colours
292: 1 -> combats
293: 1 -> comer
294: 1 -> composive
295: 1 -> compton
296: 1 -> concert
297: 1 -> condensed
298: 1 -> conquering
299: 1 -> consid'able
300: 1 -> containing
301: 1 -> cope
302: 1 -> corneers
303: 1 -> cost
304: 1 -> could
305: 1 -> councils
306: 1 -> counseled
307: 1 -> court
308: 1 -> courts
309: 1 -> covenanter's
310: 1 -> craft
311: 1 -> cressewell
312: 1 -> cressweller
313: 1 -> cresswellers
314: 1 -> crestwell
315: 1 -> critias
316: 1 -> criticis
317: 1 -> criton
318: 1 -> crosses
319: 1 -> crosstrey's
320: 1 -> crustwell
321: 1 -> curoscurus
322: 1 -> dais
323: 1 -> dawns
324: 1 -> deadlos
325: 1 -> decencies
326: 1 -> defined
327: 1 -> deliberate
328: 1 -> della
329: 1 -> dependant
330: 1 -> did
331: 1 -> dikes
332: 1 -> dilia
333: 1 -> disc
334: 1 -> dissent
335: 1 -> district
336: 1 -> doctors
337: 1 -> doneitists
338: 1 -> dove's
339: 1 -> dowl
340: 1 -> downstairs
341: 1 -> drawles
342: 1 -> drives
343: 1 -> druid
344: 1 -> dumfounded
345: 1 -> dusport
346: 1 -> e'en
347: 1 -> earthly
348: 1 -> efference
349: 1 -> either
350: 1 -> elcoe
351: 1 -> emerged
352: 1 -> enclosed
353: 1 -> endating
354: 1 -> endeavour
355: 1 -> endeavouring
356: 1 -> endued
357: 1 -> enomic
358: 1 -> entered
359: 1 -> equipp
360: 1 -> especial
361: 1 -> ethne
362: 1 -> ev'ning
363: 1 -> evenins
364: 1 -> ever
365: 1 -> everyone
366: 1 -> exaggerus
367: 1 -> excuse
368: 1 -> exercising
369: 1 -> eyed
370: 1 -> favorite
371: 1 -> favourably
372: 1 -> fear
373: 1 -> fear'st
374: 1 -> features
375: 1 -> felled
376: 1 -> fighting
377: 1 -> filling
378: 1 -> first
379: 1 -> flat
380: 1 -> flefnitney's
381: 1 -> fluid's
382: 1 -> footmen
383: 1 -> forbid
384: 1 -> ford's
385: 1 -> forever
386: 1 -> formerly
387: 1 -> frank
388: 1 -> franks
389: 1 -> frightened
390: 1 -> fullness
391: 1 -> futureistic
392: 1 -> gaily
393: 1 -> game
394: 1 -> gear
395: 1 -> generalship
396: 1 -> gentleman
397: 1 -> gentlemen
398: 1 -> gerard
399: 1 -> gilgras
400: 1 -> gilicans
401: 1 -> gilker's
402: 1 -> gilkrist
403: 1 -> giogo
404: 1 -> goat
405: 1 -> gobbles
406: 1 -> gold
407: 1 -> good
408: 1 -> got
409: 1 -> govern
410: 1 -> governor
411: 1 -> gray's
412: 1 -> great
413: 1 -> gredated
414: 1 -> gree
415: 1 -> green
416: 1 -> grey
417: 1 -> gringor
418: 1 -> ground
419: 1 -> guerilla
420: 1 -> guest
421: 1 -> guile
422: 1 -> guyors
423: 1 -> h
424: 1 -> haine
425: 1 -> hand
426: 1 -> hands
427: 1 -> handsome
428: 1 -> happened
429: 1 -> harangueing
430: 1 -> harbouring
431: 1 -> harmonised
432: 1 -> hat
433: 1 -> hautrey
434: 1 -> hawkin
435: 1 -> hawworth
436: 1 -> he's
437: 1 -> hearkened
438: 1 -> hearts
439: 1 -> helle
440: 1 -> help
441: 1 -> henchment
442: 1 -> henry
443: 1 -> heraclitus
444: 1 -> hesper
445: 1 -> hey
446: 1 -> hitch
447: 1 -> hives
448: 1 -> holbin
449: 1 -> holbine
450: 1 -> holy
451: 1 -> homes
452: 1 -> hon
453: 1 -> hook
454: 1 -> horrence
455: 1 -> hour
456: 1 -> household's
457: 1 -> hulk
458: 1 -> i'd
459: 1 -> iago
460: 1 -> icyosaurus
461: 1 -> imagine
462: 1 -> immigrant
463: 1 -> imperilled
464: 1 -> impress
465: 1 -> impressed
466: 1 -> incandiscent
467: 1 -> infant's
468: 1 -> inquire
469: 1 -> inquired
470: 1 -> inquiries
471: 1 -> insurrections
472: 1 -> intoleracy
473: 1 -> intrenched
474: 1 -> intrusted
475: 1 -> intrusting
476: 1 -> it'll
477: 1 -> it's
478: 1 -> ithiosaurus
479: 1 -> itself
480: 1 -> jackknife
481: 1 -> james
482: 1 -> jargon
483: 1 -> jeffrey
484: 1 -> jeffrey's
485: 1 -> jest
486: 1 -> jewellers
487: 1 -> jura
488: 1 -> justation
489: 1 -> karl
490: 1 -> keeper
491: 1 -> kharant
492: 1 -> kickapoos
493: 1 -> kingdom's
494: 1 -> kioriscuerists
495: 1 -> kiov
496: 1 -> kirkland
497: 1 -> know
498: 1 -> konstantin
499: 1 -> labor
500: 1 -> laden
501: 1 -> lament
502: 1 -> larch
503: 1 -> larxbourg
504: 1 -> latticed
505: 1 -> launching
506: 1 -> lavender
507: 1 -> leader
508: 1 -> least
509: 1 -> leave
510: 1 -> leavinworth
511: 1 -> lecomt
512: 1 -> lecomte
513: 1 -> leek
514: 1 -> let's
515: 1 -> light
516: 1 -> like
517: 1 -> lily's
518: 1 -> line
519: 1 -> link
520: 1 -> littleburn
521: 1 -> locki
522: 1 -> lockye
523: 1 -> loggerisms
524: 1 -> lolls
525: 1 -> loose
526: 1 -> lorn
527: 1 -> lotos
528: 1 -> louder
529: 1 -> louise
530: 1 -> loup
531: 1 -> loves
532: 1 -> lowered
533: 1 -> macardo
534: 1 -> madames
535: 1 -> made
536: 1 -> maithall
537: 1 -> maravaux
538: 1 -> mari
539: 1 -> mariposa
540: 1 -> married
541: 1 -> martial
542: 1 -> martialed
543: 1 -> martyr
544: 1 -> marvellous
545: 1 -> mary
546: 1 -> master
547: 1 -> mayhall
548: 1 -> merchantship
549: 1 -> mercy
550: 1 -> met
551: 1 -> metacreph
552: 1 -> mill
553: 1 -> mink
554: 1 -> miss
555: 1 -> missouriians
556: 1 -> mist
557: 1 -> mitigated
558: 1 -> moa
559: 1 -> mocrities
560: 1 -> mole
561: 1 -> momby
562: 1 -> mongus
563: 1 -> montemarca
564: 1 -> moral
565: 1 -> more
566: 1 -> mornin'
567: 1 -> mother's
568: 1 -> moulded
569: 1 -> mount
570: 1 -> mountain
571: 1 -> mourning
572: 1 -> murchiston
573: 1 -> myles
574: 1 -> needed
575: 1 -> neighbourhood
576: 1 -> neighbours
577: 1 -> nellie
578: 1 -> nemeda
579: 1 -> northward
580: 1 -> northwest
581: 1 -> not
582: 1 -> nuff
583: 1 -> o'
584: 1 -> objectly
585: 1 -> observe
586: 1 -> occupant
587: 1 -> odours
588: 1 -> offence
589: 1 -> offences
590: 1 -> officer
591: 1 -> often
592: 1 -> ogle's
593: 1 -> oh
594: 1 -> omelet
595: 1 -> ooth
596: 1 -> opportunity
597: 1 -> opposition
598: 1 -> ordered
599: 1 -> outlay's
600: 1 -> overtray
601: 1 -> owenneyer's
602: 1 -> paceboard
603: 1 -> pain
604: 1 -> papple
605: 1 -> parakee
606: 1 -> parlour
607: 1 -> parson
608: 1 -> partial
609: 1 -> partley
610: 1 -> passageway
611: 1 -> patience
612: 1 -> patient
613: 1 -> pearls
614: 1 -> peg
615: 1 -> pegrine
616: 1 -> pen
617: 1 -> perplexed
618: 1 -> person
619: 1 -> petitcroft's
620: 1 -> phantasy
621: 1 -> philadelphia
622: 1 -> plat
623: 1 -> plate
624: 1 -> plates
625: 1 -> play
626: 1 -> pleasants
627: 1 -> pleciosaurus
628: 1 -> pointed
629: 1 -> poisoned
630: 1 -> pools
631: 1 -> pout
632: 1 -> practise
633: 1 -> prayer
634: 1 -> present
635: 1 -> pretence
636: 1 -> priested
637: 1 -> prob'ly
638: 1 -> proceed
639: 1 -> produce
640: 1 -> purest
641: 1 -> putting
642: 1 -> quite
643: 1 -> rafael
644: 1 -> raided
645: 1 -> rain
646: 1 -> ranch
647: 1 -> rassitur
648: 1 -> realise
649: 1 -> realized
650: 1 -> records
651: 1 -> refuse
652: 1 -> reinforcements
653: 1 -> relations
654: 1 -> remained
655: 1 -> remarked
656: 1 -> removed
657: 1 -> resign
658: 1 -> revolution
659: 1 -> ring
660: 1 -> ringing
661: 1 -> roan
662: 1 -> roar
663: 1 -> robins
664: 1 -> roger's
665: 1 -> rudely
666: 1 -> ruts
667: 1 -> sage
668: 1 -> sailed
669: 1 -> sailing
670: 1 -> sale
671: 1 -> salvie
672: 1 -> sandyaries
673: 1 -> saul
674: 1 -> save
675: 1 -> savette
676: 1 -> saying
677: 1 -> scath
678: 1 -> schallemann
679: 1 -> schoolboys
680: 1 -> scout
681: 1 -> sculled
682: 1 -> scumbed
683: 1 -> seagates
684: 1 -> see
685: 1 -> seem'd
686: 1 -> sense
687: 1 -> sentence
688: 1 -> servant
689: 1 -> set
690: 1 -> sha'n't
691: 1 -> shalt
692: 1 -> sharp's
693: 1 -> sharper
694: 1 -> shawant
695: 1 -> shedding
696: 1 -> ship's
697: 1 -> short's
698: 1 -> shottie
699: 1 -> shouldst
700: 1 -> showed
701: 1 -> showering
702: 1 -> shriveled
703: 1 -> sift
704: 1 -> sifta
705: 1 -> sill
706: 1 -> since
707: 1 -> sit
708: 1 -> sitting
709: 1 -> skevra
710: 1 -> skies
711: 1 -> skilful
712: 1 -> skura
713: 1 -> slain
714: 1 -> smiled
715: 1 -> solely
716: 1 -> solons
717: 1 -> someone
718: 1 -> somethin
719: 1 -> sometime
720: 1 -> sorre
721: 1 -> sorrel
722: 1 -> sous
723: 1 -> sowing
724: 1 -> speciality
725: 1 -> specialized
726: 1 -> spilly
727: 1 -> spitting
728: 1 -> splendid
729: 1 -> sprit
730: 1 -> stairs
731: 1 -> stands
732: 1 -> started
733: 1 -> starving
734: 1 -> states
735: 1 -> steed
736: 1 -> steeled
737: 1 -> stephano's
738: 1 -> steve
739: 1 -> stones
740: 1 -> stop
741: 1 -> stopp'd
742: 1 -> stories
743: 1 -> strean
744: 1 -> strollers
745: 1 -> stutchean
746: 1 -> sullen
747: 1 -> summer's
748: 1 -> suspicion
749: 1 -> swain
750: 1 -> swept
751: 1 -> swoon
752: 1 -> swung
753: 1 -> symonds
754: 1 -> symposian
755: 1 -> t
756: 1 -> tablecloth
757: 1 -> teacher
758: 1 -> teachers
759: 1 -> tempering
760: 1 -> tenissiah
761: 1 -> their
762: 1 -> them
763: 1 -> there
764: 1 -> they's
765: 1 -> think
766: 1 -> this
767: 1 -> thousandth
768: 1 -> through
769: 1 -> tibby
770: 1 -> timieus
771: 1 -> tintaret
772: 1 -> tintent
773: 1 -> toc's
774: 1 -> toddy
775: 1 -> toilet
776: 1 -> tombs
777: 1 -> tonna
778: 1 -> took
779: 1 -> torchall
780: 1 -> torely
781: 1 -> torian
782: 1 -> tournais
783: 1 -> towelsing
784: 1 -> trail
785: 1 -> transit
786: 1 -> traveller
787: 1 -> travelling
788: 1 -> tripping
789: 1 -> troop
790: 1 -> troopers
791: 1 -> trophidus
792: 1 -> trouble
793: 1 -> tuppenny
794: 1 -> turned
795: 1 -> tutty
796: 1 -> undulations
797: 1 -> unhappiness
798: 1 -> up
799: 1 -> uphill
800: 1 -> upon
801: 1 -> upstairs
802: 1 -> uses
803: 1 -> utmost
804: 1 -> valour
805: 1 -> veins
806: 1 -> veneers
807: 1 -> viladeste
808: 1 -> wait
809: 1 -> wall
810: 1 -> warily
811: 1 -> warned
812: 1 -> warrentons
813: 1 -> was
814: 1 -> wastes
815: 1 -> we
816: 1 -> wear
817: 1 -> wearin
818: 1 -> weighed
819: 1 -> welcome
820: 1 -> wells
821: 1 -> west
822: 1 -> westminster
823: 1 -> wharton
824: 1 -> what
825: 1 -> whatever
826: 1 -> whatsoever
827: 1 -> when
828: 1 -> wherein
829: 1 -> whether
830: 1 -> while
831: 1 -> whips
832: 1 -> white
833: 1 -> whither
834: 1 -> who
835: 1 -> whole
836: 1 -> whom
837: 1 -> whose
838: 1 -> widow
839: 1 -> widowed
840: 1 -> widows
841: 1 -> winnifred
842: 1 -> women's
843: 1 -> wonder
844: 1 -> wood
845: 1 -> woodcutters
846: 1 -> worldly
847: 1 -> worth
848: 1 -> wrapped
849: 1 -> ye
850: 1 -> yearnin
851: 1 -> years
852: 1 -> yulus
853: 1 -> zorry
854: 1 -> zur
855: 1 -> zurich
-------
1263
* NOTE: The 'Falsely Recognized' words are those hypothesis words
which the recognizer incorrectly substituted for a reference word.
|