Instructions to use Deehan1866/PR-Pass-deberta-v3-base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Deehan1866/PR-Pass-deberta-v3-base with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="Deehan1866/PR-Pass-deberta-v3-base")# Load model directly from transformers import AutoTokenizer, AutoModelForQuestionAnswering tokenizer = AutoTokenizer.from_pretrained("Deehan1866/PR-Pass-deberta-v3-base") model = AutoModelForQuestionAnswering.from_pretrained("Deehan1866/PR-Pass-deberta-v3-base") - Notebooks
- Google Colab
- Kaggle
File size: 171,167 Bytes
cb1a90d d558750 cb1a90d | 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 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 | {
"537-2": " real opportunities",
"9460-1": " modern practice",
"6772-1": " official venue",
"7547-1": " Web crawlers",
"5859-1": " area size",
"3000-2": " Several group members",
"5898-1": " home intruders",
"2043-1": " business relationship",
"11102-1": " equivalent level",
"8016-2": " past few hundred years",
"11445-1": " perceived problem",
"8045-2": " Blind men",
"8420-2": " Racially motivated violence",
"10805-1": "special sort",
"9809-2": " human size",
"7035-1": " broad area",
"4010-2": " passive activities",
"5502-1": " regulating body",
"14458-1": " lightning strokes",
"14039-2": " largest role",
"3546-1": " next theater",
"12256-2": " great hunger",
"9705-2": " important spot",
"3460-1": " key data",
"840-2": " additional person",
"14634-1": " pack animal",
"11614-1": " continuing growth",
"11530-2": " good layout",
"13948-1": " current position",
"1927-2": " good piece",
"7674-1": " secure way",
"9610-1": " similar type",
"1537-1": " consent forms",
"340-2": " natural feeling",
"9444-1": " traditional view",
"5359-1": " Controlled Use",
"13976-1": " specialized form",
"12985-1": " usual picture",
"6896-2": " life-cycle cost",
"1190-2": " modern distribution system",
"556-1": " Korean man",
"1748-2": " architectural support",
"14571-2": " community hub",
"12060-2": " downward pressure",
"14024-2": " English version",
"14139-1": " real opportunity",
"1535-2": " intense conflict",
"4998-1": " last notes",
"8669-2": " 14-year run",
"9682-2": " principal interests",
"14301-1": " construction equipment",
"8475-2": " entire size",
"1067-1": " fast action",
"4628-1": " several key ways",
"4713-2": " local standards",
"28-2": " good illustration",
"9871-2": " horse carts",
"11794-1": " old condition",
"9942-2": " primary bridge",
"7700-2": " principal types",
"10204-1": " short part",
"7534-1": " normal value",
"8373-2": " much embarrassment",
"8509-2": " large geographic area",
"9555-2": " phone system",
"10112-1": " special quality",
"8271-2": " proper kind",
"7923-1": " consistent history",
"11798-2": " nearly every area",
"3463-1": " historical derivation",
"4299-1": " nearly every sport",
"14314-1": " financed construction",
"10130-1": " potential danger",
"6547-1": " universal rule",
"2209-1": " steady balance",
"11142-2": " second function",
"13406-1": " high end",
"1754-2": " last step",
"2188-1": " oldest part",
"11185-2": " One main feature",
"1186-2": " physical control",
"3054-1": " general service",
"12238-2": " far too willing",
"12781-2": " greater difference",
"14212-1": " night's ride",
"13065-2": " sweeping view",
"11331-1": " basic point",
"1163-1": " whole region",
"3102-1": "final position",
"2921-2": " stronger line",
"13584-2": " volunteer organisation",
"2699-1": " original Rock",
"12747-2": " pool games",
"5647-2": " short-distance travel",
"14276-2": " fine position",
"13125-2": " previous capacity",
"13252-2": " Account information",
"8067-1": " poor person",
"11831-2": " following wave",
"6942-2": " fire gate",
"7902-2": " political track",
"2999-2": " overall increase",
"3915-2": " substantial evidence",
"343-1": " poor rate",
"6217-1": " One notable case",
"3509-1": " school event",
"10882-2": " basic background",
"4416-2": " one published account",
"4589-2": " last version",
"2438-1": " grave threats",
"13490-2": " standard type",
"11712-2": " active center",
"10908-2": " equivalent word",
"2000-1": " fringe areas",
"14591-1": " familiar object",
"10355-1": " original post",
"2427-1": " natural rate",
"9002-1": " local elements",
"14351-1": " another international event",
"3869-2": " newer design",
"5785-1": " documentary evidence",
"13193-2": " common formation",
"2947-2": " main thread",
"7775-1": " performance assessments",
"7914-2": " following panel",
"2373-2": " appropriate quality",
"9556-1": " longer period",
"4821-1": " operating business",
"14101-1": " appropriate action",
"1643-1": " store's roof",
"10148-2": " single tool",
"333-1": " two people",
"10663-2": " later study",
"12943-2": " human good",
"1837-1": " domestic confidence",
"1288-1": " major place",
"5183-2": " one blue stripe",
"13421-1": " prime reason",
"11999-2": " 10-year plan",
"9309-2": " support base",
"2723-1": " specific history",
"26-2": " good possibility",
"13416-2": " basic sense",
"1021-2": " poor use",
"1061-1": " almost an hour",
"2380-1": " angel's voice",
"9665-1": " risk prevention",
"2869-2": " unusual formation",
"984-1": " exponential variety",
"5069-1": " rock candies",
"12925-1": " real savings",
"4540-1": " project site",
"1456-2": " second range",
"10901-2": " much voice acting",
"13472-1": " major bodies",
"715-2": " sudden drop",
"13277-2": " direct exposition",
"7132-1": " incontrovertible evidence",
"11109-2": " reasonable performance",
"14324-1": " predominant influence",
"13651-1": " theoretical value",
"4622-1": " organic life",
"12436-1": " specific craft",
"14630-1": " single component",
"2762-1": " additional texture",
"1260-2": " open mindedness",
"1217-2": " separate top",
"1325-1": " primary target group",
"13831-2": " adjoining piece",
"9731-2": " good plots",
"2262-2": " better track",
"4522-2": " great advantage",
"1215-1": " computer storage",
"9095-2": " lower half and upper half",
"9160-2": " one Member",
"13128-2": " sufficient sleep",
"11736-1": " successful man",
"12234-2": " survey report",
"6716-2": " moral probity",
"14157-1": " clothing construction",
"3527-1": " current military",
"12221-2": " desperate quest",
"1149-2": " better sense",
"11618-1": " previous bit",
"10522-1": " little occasion",
"8160-1": " household or communal basis",
"13105-1": " Price concerns",
"3166-2": " rapidly growing population",
"12299-2": " owner's residence",
"10010-2": " human consumption",
"9041-1": " intermediate difficulty",
"5548-2": " Silver Line",
"9503-2": " even a minor change",
"9791-1": " good exposure",
"11197-1": " fifth member",
"12996-2": " unfolding story",
"2182-1": " nearly one million people",
"1121-2": " minimal risk",
"6102-1": " faulty part",
"11568-1": " physician's office",
"11868-1": " creation",
"8408-2": " personnel safety",
"3024-1": " street children",
"7789-1": " whose performance",
"2133-1": " planned date",
"4653-1": " gaffer tape",
"6208-2": " emerging growth",
"1284-2": " 50 percent chance",
"10451-1": " security system",
"5545-2": " another race",
"7185-2": " autobiographical book",
"1878-2": " novelty value",
"3459-1": " 2010/11 campaign",
"2905-1": " sufficient capacity",
"11526-1": " roughly the same height",
"11343-1": " economic security",
"6553-2": " artificial origin",
"11189-1": " constant series",
"653-2": " clear disapproval",
"13242-1": " Life-Saving Device",
"4047-2": " bright spot",
"4507-1": " opposite sex",
"11854-2": " limited visibility",
"5534-2": " specific version",
"14332-2": " actual amount",
"4201-2": " prescribed manner",
"2039-2": " transferred power",
"9426-1": " regular rhythm",
"5879-2": " principal supports",
"4331-1": " high depression",
"1981-2": " exposed part",
"1187-2": " key portion",
"14233-2": " free area",
"14573-1": " prime spot",
"5827-2": " key items",
"13754-2": " genocidal campaign",
"11690-1": " one ensemble",
"4549-1": " detailed interpretation",
"8587-2": " modern restoration",
"10043-2": "primary control",
"1821-2": " early acquisition",
"9032-1": " group's birth",
"7095-2": " popular voice",
"13471-2": " initial point",
"14266-1": " almost complete series",
"5500-1": " support point",
"2052-2": " military professionals",
"5629-1": " emotional significance",
"12572-1": " resource distribution",
"11319-2": " normal population",
"1500-2": " smaller body",
"9382-1": " stock issue",
"7982-2": " Major Story",
"11154-2": " traditional sizes",
"5326-2": " deep connection",
"12884-2": " block purchase",
"12855-2": " sequence diversity",
"5970-1": " prior expression",
"9682-1": " key characteristics",
"8336-1": " business-like manner",
"13161-2": " reduced attention",
"14275-2": " warning noise",
"10126-1": " flooded river",
"5833-1": " Every Size",
"8394-2": " four times the rate",
"13958-1": " direct protection",
"8359-1": " social memory",
"11084-1": " new found power",
"14297-2": " significant pressure",
"14770-1": " manufactured housing industry",
"11578-1": " frequent presence",
"6093-1": " quick check",
"13841-1": " defensive importance",
"5790-1": " limited action",
"12611-1": " one recorded case",
"3805-1": " also history",
"10264-1": " slightly different form",
"12892-1": " similar protocol",
"2281-1": " obvious one",
"13821-2": " fine print",
"2480-2": " minimal cost",
"13050-1": " substantial presence",
"12185-1": " social place",
"6954-2": " sudden nature",
"8609-1": " UN program",
"2368-2": " right shape",
"9469-2": " special board",
"8600-2": " prime importance",
"11228-2": " last example",
"1361-1": " legal way",
"7660-2": " periodizing the history",
"14656-2": " extreme altitude",
"13394-2": " key intersection",
"3328-2": " lower scale",
"14451-1": " bleached blond hair",
"7557-1": " delivery teams",
"11588-2": " School land",
"5996-2": " known ability",
"14580-2": " legal way",
"7356-2": " general access",
"1410-1": " person's point",
"14884-1": " perceived role",
"9253-2": " Alternative Investment Fund",
"2900-2": " net contribution",
"2995-2": " identification cards",
"4286-1": " stomach illness",
"10940-1": " country's shift",
"8829-1": " usual order",
"9424-1": " corresponding range",
"10313-2": " cultural pride",
"6320-2": " greater visibility",
"295-2": " driving school",
"9266-2": " exceptional resistance",
"7134-1": " One distinct characteristic",
"9132-2": " One metric",
"6757-2": " governmental forces",
"798-1": " house headquarters",
"12470-1": " correct size",
"12833-1": " brave fight",
"583-1": " one hamlet",
"6910-1": " innate ability",
"11486-1": " cat-and-mouse game",
"14589-2": " legal department",
"8412-1": " Iranian GDP",
"9727-1": " twin turntables",
"1688-1": " one month's salary",
"12143-1": " high evaluation",
"8250-2": " Old Power",
"4385-1": " One specific example",
"1668-2": " exceptional first season",
"10760-2": " One document",
"10724-1": " basic thrust",
"1358-1": " typical system",
"5470-1": " later association",
"6795-2": " media manipulation",
"6773-1": " whole procedure",
"6298-1": " new clutch",
"1815-1": " whole place",
"5934-1": " uncontrolled increase",
"13420-2": " unusual way",
"13619-2": " maximum volume",
"2324-1": " training ground",
"12704-2": " major deciding factor",
"12238-1": "Overnight Angels",
"4694-1": " happening place",
"14202-2": " wildlife protection",
"1784-2": " smaller coverage",
"14470-2": " real interview",
"14563-2": " lower rim",
"988-2": " long-term response",
"7337-1": " general population",
"4694-2": " happening place",
"14471-1": " waste management",
"11276-1": " quality production",
"6482-2": " existing space",
"7022-2": " Perfect Day",
"994-1": " Benchmark Test",
"2882-2": " least one entry",
"7569-2": " star figure",
"11887-2": " essential contribution",
"4320-1": " final meeting",
"7942-2": " mid air",
"12124-2": " light fire",
"4282-1": " several key moments",
"10453-2": " human race",
"6073-1": " communication devices",
"3059-2": " basic understanding",
"5459-2": " major segment",
"12658-1": " prestigious form",
"9484-1": " big part",
"11207-1": " comparable scale",
"5978-1": " general principle",
"4362-2": " little function",
"10613-1": " valuable consideration",
"3911-1": " Core Sequence",
"4788-2": " given source",
"11559-2": " new place",
"13087-2": " unfamiliar material",
"8641-1": " initial life",
"258-2": " good possibility",
"14744-1": " zigzagging path",
"13154-1": " stronger power",
"14168-1": " real spending",
"1725-1": " unbalanced number",
"10285-2": " close relationship",
"8298-1": " highest strength",
"8064-1": " paternoster lift",
"4271-2": " textbook definition",
"1932-1": " powerful tool",
"1447-2": " nearly every respect",
"10253-2": " Enterprise Class",
"5125-1": " highest cost",
"4455-2": " given calendar year",
"927-1": " gas bill",
"1038-2": " Major occurrences",
"275-2": " collection agency",
"8243-2": " emerging consensus",
"12604-1": " typical approach",
"8627-1": " first map",
"12741-2": " victorious side",
"7811-2": " quick solution",
"2031-1": " hat box",
"9149-1": " quick reaction",
"286-2": " typical person",
"12687-1": " newest form",
"8718-2": " US practice",
"13858-2": " aesthetic appearance",
"2386-2": " match scores",
"1254-1": " every unit",
"13611-1": " massive group",
"14905-2": " correct application",
"14663-1": " well-documented history",
"12839-1": " successful capture",
"4370-1": " significant difference",
"4477-1": " welcome development",
"4656-1": " either side",
"1921-1": " initial solution",
"13186-2": " true understanding",
"13515-2": " elaborate model",
"7618-2": " local farm",
"8682-2": " whole organ",
"7981-1": " better production",
"3895-2": " 4 series",
"11505-2": " heat distribution",
"11306-2": " major divisions",
"14341-1": " price advantage",
"5034-1": " integral component",
"2311-1": " possibly a result",
"6853-2": " current set",
"14501-2": " natural limit",
"5389-2": " base leg",
"6955-2": " clearer weather",
"11532-2": " overall colony",
"321-2": " official compilation",
"768-1": " warrior character",
"8334-2": " public opposition",
"1281-1": " appropriate set",
"451-1": " particular record",
"3108-2": " Another theory",
"10810-2": " narrow passage",
"14750-1": " efficient production",
"13816-2": " scientific light",
"3920-2": "whole bunch",
"4589-1": " last version",
"8956-1": " objective basis",
"4558-2": " poor people",
"8146-2": " sufficient quality",
"393-1": " effective rate",
"9039-2": " new frame",
"8103-2": " Immediate comparison",
"3458-2": " infamous character",
"10903-2": " excellent review",
"11122-1": "Sumptuous design",
"9754-1": " linguistic support",
"6692-1": " panel judges",
"6203-2": " long standing",
"9319-2": " visible indication",
"10360-1": " generally accepted practice",
"11830-2": " normal mixture",
"6653-1": " formal letter",
"6666-1": " permanent base",
"6888-1": " easiest part",
"6259-2": " innate ability",
"6808-2": " ideal plan",
"4177-1": " decisive effect",
"2016-1": " proposed addition",
"1501-2": " green life",
"1582-2": " Another key aspect",
"4735-2": " unsatisfactory level",
"2622-1": " least one entry",
"2439-2": " actual result",
"6038-1": " total time period",
"11140-2": " enough room",
"7802-2": " continued membership",
"10724-2": " basic thrust",
"6947-2": " damaging reaction",
"2971-2": " different design",
"14158-1": " least one degree",
"4883-2": " regular Life",
"4235-2": " wide side",
"8485-1": " Dual Exposure features",
"6978-1": " good preservation",
"3304-1": " front half",
"14035-2": " constant level",
"4325-1": " minimum work",
"2670-2": " good measure",
"2317-2": " little ability",
"13659-1": " short wait",
"6927-1": " ultimate goal",
"4979-1": " least one cylinder",
"13961-1": " harmful effect",
"2595-2": " objective way",
"13459-1": " high stage",
"5038-1": " intrusive nature",
"9185-1": " long period",
"3424-2": " exactly one third",
"10547-1": " roughly the same number",
"6682-1": " draft stage",
"1331-2": " three storey building",
"6664-1": " large image",
"4371-1": " survey methods",
"2315-1": " fine control",
"9145-1": " next chance",
"12706-1": " specific team",
"6171-1": " one final step",
"356-1": " water activities",
"10716-2": " relaxed state",
"2006-1": " latest survey",
"11624-2": " original theory",
"8937-1": " normal home",
"4883-1": " regular life",
"4161-2": " successful defense",
"2250-2": " complete visibility",
"1872-2": " steep drops",
"11688-1": " two-phase operation",
"9526-2": " performance show",
"12327-1": " either account",
"6319-2": "last 30 seconds",
"1041-1": " relevant part",
"6401-1": " top centre",
"14264-2": " London park",
"3007-2": " overall service",
"11841-1": " broader scale",
"1681-2": " school campuses",
"797-2": " specific CAP",
"10275-2": " primary audience",
"3711-1": " frontal part",
"14219-1": " possible legal action",
"3870-1": " British version",
"3775-2": " oil man",
"11593-1": " additional link",
"7871-1": " monitoring system",
"1447-1": " nearly every respect",
"10864-1": " uneven stretch",
"12725-2": " first thing",
"10300-2": " developed type",
"10822-2": " Additional increase",
"13965-1": " company shareholders",
"7830-1": " moving vehicle",
"8407-1": " less appeal",
"7853-1": " high calibre",
"14291-1": " traumatic nature",
"8257-2": " initial pass",
"9978-1": " key territories",
"7765-2": " key artifacts",
"14737-1": " overall significance",
"7713-1": " slight movement",
"1515-1": " pressure washing",
"3730-2": " complete protection",
"9470-2": " one or more priests",
"2410-1": " small object",
"6516-1": " controlled setting",
"13655-2": " original level",
"13861-2": " strict limit",
"11314-1": " 10th Year Anniversary",
"6784-2": " owner's account",
"6597-2": " best type",
"14213-2": " typical situation",
"349-2": " growing movement",
"11892-1": " company staff",
"1185-2": " One destination",
"14295-2": " different cross-questions",
"6776-1": " known problem",
"6307-1": " unfair business practices",
"12733-2": " stumbling block",
"14169-1": " entire establishment",
"6075-1": " best known version",
"2973-1": " offensive element",
"12243-2": " regular home",
"5857-1": " good marriage",
"5769-1": " deep dives",
"7366-2": " highest importance",
"11451-2": " first crack",
"8083-1": " warm kind",
"12857-1": " ample time",
"13136-2": " conventional market",
"13043-2": " less than a minute",
"8111-2": " tangible contribution",
"7498-2": " intermittent contact",
"13896-2": " One Theatre",
"4444-1": " final cycle",
"3944-2": " significant commercial success",
"7556-2": " lower volume",
"286-1": " typical person",
"2594-1": " transparent window",
"10057-1": " simple relationship",
"6116-2": " strong basis",
"3805-2": " also history",
"6583-1": " long season",
"5734-1": " mother's ability",
"9908-2": " even greater effect",
"4241-2": " legal recognition",
"5024-2": " main areas",
"13261-2": " precarious existence",
"6344-2": " individual's conduct",
"4725-1": " carbon printing",
"3315-2": " provincial region",
"10933-1": " real growth",
"3114-2": " fixed time",
"5088-1": " Law School students",
"8931-2": " strategic use",
"4949-1": " possible approach",
"9079-2": " certain place",
"922-2": " specific judge",
"14561-1": " second array",
"14098-2": " snake skin",
"7678-1": " logical next step",
"2766-2": " first component",
"5569-1": " hostile manner",
"1210-1": " continued practice",
"7032-2": " tourist market",
"5657-1": " pool rooms",
"10197-1": " news broadcastings",
"7232-1": " media industry",
"12601-2": " second phone",
"10856-1": " existing board",
"4784-2": " proposed mechanism",
"5537-1": " perceptible change",
"3841-1": " high accessibility",
"11710-2": " large survey",
"9631-1": " particularly young people",
"11789-2": " natural condition",
"4058-1": " significantly more time",
"14255-2": " little restraint",
"3084-2": " original formation",
"63-2": " second segment",
"2546-2": " physical problem",
"13960-1": " four year period",
"6923-2": " internal authority",
"2867-2": " much use",
"6874-2": " small seat",
"14982-2": " several design features",
"6365-2": " current set",
"8301-2": " car's speed",
"13258-1": " key reasons",
"4597-2": " Population Policy",
"875-2": " popular conjecture",
"2119-1": " big gap",
"8621-1": "general character",
"9518-1": " designated number",
"13301-2": " male branch",
"14702-2": " exam score",
"13943-1": " overall problem",
"10677-2": " decision making process",
"2505-2": " trailing side",
"5519-1": " camp clothes",
"6388-2": " correct orientation",
"6939-2": " respective force",
"4413-1": " substantial evidence",
"7232-2": " telecommunications industry",
"4195-1": " major offence",
"12372-1": " animal market",
"6167-1": " general path",
"1595-1": " best defense",
"11472-1": " considerable extension",
"5813-1": " final conclusion",
"4599-1": " distinct identity",
"7974-2": " cost cuts",
"7793-2": " notable occurrence",
"928-2": " house renovations",
"4236-2": " sustained interest",
"7319-1": " better circulation",
"13986-2": " one die",
"8939-1": " main production",
"13505-2": " single path",
"14899-1": " main enclosure",
"12909-2": " less care",
"11009-2": " present breed",
"4414-2": " beginning and end points",
"5393-2": " changing state",
"8896-2": " direct result",
"4814-1": " younger age",
"12391-2": " trace amounts",
"13631-2": " historic step",
"9328-1": " classic expression",
"5135-2": " normally a symbol",
"9347-1": " first American company",
"5533-2": " least one report",
"5635-1": " woman's voice",
"13998-1": " stress relief",
"11455-1": " minimal exposure",
"801-2": " necessary action",
"5060-2": " strong wish",
"91-2": " identification card",
"567-2": " wrong ball",
"3410-2": " distinctive thing",
"7061-1": " GHG emission",
"12970-2": " virtually every case",
"4239-2": " average quality",
"13706-1": " two or more people",
"12386-1": " additional system",
"5776-1": " entry stage",
"12811-2": " littoral duties",
"4574-1": " passing score",
"12690-2": " complicated life",
"13957-2": " three-minute limit",
"7817-2": " last two occasions",
"3369-2": " development requirements",
"12023-1": " retired intelligence officer",
"13136-1": " conventional market",
"11540-1": " suitable distance",
"1716-1": " special role",
"8816-1": " either beauty",
"13855-2": " future plan",
"11699-1": " superior size",
"14371-2": " terminal date",
"7040-2": " physical attack",
"3838-1": " supervisory role",
"4057-2": " formal instruction",
"7394-1": " particular area",
"5536-2": " great excitement",
"2989-2": " valuable space",
"9391-2": " production units",
"5209-2": " primary function",
"11340-1": " commercial company",
"1396-1": " Company X",
"671-2": " older account",
"14633-1": " final type",
"6672-1": " registration period",
"4875-2": " one-to-one basis",
"5092-1": " military field",
"2214-2": " expected level",
"9851-2": " correct result",
"1434-1": " good distance",
"2917-2": " large end",
"11048-1": " cultural event",
"2101-1": " brief amount",
"14533-2": " steep increase",
"2507-1": " real direction",
"6814-1": " supervisory position",
"14496-2": " subsistence level",
"893-1": " immediate collapse",
"12806-2": " weight limit",
"931-2": " total land",
"6507-1": " local decision making",
"6-2": " first pass",
"14245-2": " lead female",
"3787-1": " negative effect",
"12681-2": " space availability",
"4542-2": " individual segment",
"7567-2": " swinging motion",
"5518-2": " next test",
"3457-2": " reference date",
"11911-2": " administrative use",
"641-2": " broken ring",
"1863-2": " accepted theory",
"4805-1": " upper range",
"10652-2": " murder people",
"12663-2": " perfect form",
"1218-2": " preliminary result",
"2689-1": " second flag",
"5208-2": " 1 boy",
"9114-1": " best way",
"7419-1": " key indicators",
"2238-1": " commemoration event",
"2029-1": " one coin",
"1048-1": " fourth case",
"13319-1": " highest possible level",
"4315-1": " quicker response",
"8029-2": " static nature",
"7964-1": " 691 people",
"13770-1": " convincing reason",
"2820-2": " small gap",
"10511-1": " monthly pay",
"14293-1": " clear chance",
"5238-1": " major exercise",
"8188-1": " local adaptation",
"14761-2": " third gold",
"2984-1": " agency heads",
"8119-1": " entire stand",
"1610-1": " direct ties",
"3911-2": " core sequence",
"14249-1": " booming business",
"8402-1": " Gold Coast area",
"1484-1": " additional class",
"5908-1": " policy violations",
"4282-2": " several key moments",
"3181-2": " nearly the full length",
"4348-1": " overall segment",
"11255-2": " stronger position",
"2214-1": " expected level",
"8267-2": " affordable way",
"4103-1": " much harder time",
"8595-1": " stone pavements",
"2693-1": " entire batch",
"5719-2": " social web",
"14092-2": " military people",
"6650-1": " closer feel",
"7561-2": " one and one-half years",
"8876-1": " possible order",
"1141-2": " subsequent Age",
"12878-2": " group students",
"10457-1": " 1997 version",
"161-2": " exercise training",
"4134-2": " previous function",
"6160-2": " usual language",
"6397-1": "Another key factor",
"5205-2": " permanent stain",
"6969-1": " custom design",
"3247-1": " key source",
"10854-2": " draft beer",
"1926-1": " rapid release",
"6311-2": " five-day trip",
"6295-2": " potential push",
"7323-2": " simple push",
"5484-2": " final key",
"2485-1": " fast heat",
"1589-2": " outside corner",
"1567-1": " state and federal agencies",
"1026-1": " individual's head",
"10065-2": " different choice",
"2442-1": " routine operation",
"2419-1": " long-term problem",
"2523-1": " set pattern",
"2344-1": " sitting position",
"9417-1": " upcoming turn",
"11523-2": " limited control",
"12128-2": " correct interpretation",
"833-1": " good days",
"7788-1": " brief experience",
"3206-1": " immediate realization",
"11065-1": " true distance",
"7424-1": " direct order",
"5562-1": " major progression",
"9677-1": " popular assumption",
"1738-1": " severe side",
"7653-2": " visual record",
"4774-1": " large scale",
"4145-1": " preliminary form",
"1376-2": " top company",
"5513-1": " original promise",
"9367-2": " least some degree",
"1985-1": " initial development",
"2126-2": " strengthening trend",
"10463-1": " great show",
"7636-2": " direct interaction",
"9428-2": " US performance",
"2417-2": " political function",
"9667-1": " spiritual base",
"13261-1": " precarious existence",
"6818-1": " sport associations",
"7545-1": " United States market",
"13902-1": " frequent basis",
"141-1": " limited form",
"11924-1": " main approach",
"1925-2": " new type",
"12414-1": " peak frequencies",
"6436-1": " visible difference",
"5093-1": " better reach",
"8285-1": " southwestern side",
"8230-2": "Factory Line",
"2009-1": " important device",
"6785-2": " high rating",
"730-2": " sustained time",
"3464-2": " single attack",
"5962-2": " direction light",
"11149-2": " big field",
"761-1": " new scale",
"9742-1": " one's wealth",
"13188-1": " press account",
"2515-1": " close proximity",
"13252-1": " neighborhood information",
"466-2": " 1 minute",
"4175-1": " wedding procession",
"930-1": " secondary half",
"3970-2": " effective result",
"1228-2": " different figure",
"6579-1": " community outreach service",
"8497-2": " specific evidence",
"1398-1": " frequent choice",
"9658-1": " business communities",
"5945-1": " wide variation",
"14262-1": "One Way Glass",
"9917-2": " approximately one quarter",
"14100-2": " regular appearance",
"7396-1": " stationary vehicle",
"11904-1": " huge rock",
"14959-1": " specific time period",
"4136-2": " general preparation",
"5346-1": " entire bar",
"6124-1": " penetration levels",
"13696-1": " geometric center",
"12544-1": " waste production",
"4586-2": " main element",
"10586-1": " flight plans",
"9991-2": " refreshing style",
"3587-1": " direct power",
"3951-2": " incremental increase",
"5207-1": " family workshops",
"8535-1": " new strength",
"9173-1": " radical generation",
"10042-2": " long, hot summer",
"13575-1": " every other case",
"12858-2": " wider base",
"8645-1": " live feed",
"13023-2": " chief operations officer",
"14100-1": " regular appearance",
"1775-2": " Potential exposure",
"5169-2": " weekly audience",
"3213-1": " aerial flight",
"12345-2": " Alexander's companion",
"10328-1": " initial survey",
"4993-1": " river rock",
"10312-1": " collection size",
"9859-1": " first official version",
"1554-2": " traditional organization",
"7501-1": " least one pair",
"7500-1": " fresh breath",
"13097-1": " revenue account",
"13566-2": " scoring system",
"13398-2": " larger set",
"6449-1": " solid basis",
"9597-2": " particular month",
"285-2": " physical control",
"8131-1": " local circuit",
"3006-2": " real plans",
"6027-2": " warming house",
"14437-2": " whole club",
"9546-1": " style features",
"9820-2": " sexual pass",
"13177-1": " new higher rate",
"10505-2": " excess solar energy",
"13501-1": " coding tool",
"2914-2": " future progress",
"2042-1": " economic security",
"5128-1": " increased travel",
"11035-2": " epic failure",
"9796-2": " training place",
"13945-1": " main consumer attraction",
"7656-2": " navigation exercise",
"6893-2": " local area",
"12278-1": " another master",
"735-1": " house door",
"3135-1": " public stand",
"8362-1": " remarkable rate",
"11565-1": " key events",
"7222-2": " glass blowers",
"9120-2": " given source",
"3454-1": " particular response",
"3477-1": " Gulfton area",
"1729-1": " multifunctional center",
"11819-1": " tear drop shape",
"3335-1": " good contribution",
"6559-1": " foremost reason",
"9900-2": " almost every change",
"13025-2": " communication devices",
"11015-2": " master copy",
"11456-1": " neither wall",
"7839-1": " natural choice",
"1965-1": " Another body",
"2742-1": " loose clothing",
"1623-2": " well known example",
"12665-1": " financial statement",
"5241-2": " ground movements",
"14545-2": " compositional element",
"2460-1": " last few drops",
"513-1": " thus influence",
"2133-2": " planned date",
"14651-2": " beneficial effect",
"9404-2": " Another example",
"2861-1": " last point",
"6720-1": " integral element",
"9075-2": " common explanation",
"1096-1": " straight body",
"13507-2": " early development stages",
"2692-1": " one piece",
"4032-2": " next line",
"2785-2": " net effect",
"9232-2": " non-rush hour",
"14220-1": " large portfolio",
"13707-2": " full order",
"1435-1": " key tests",
"5919-1": " side courses",
"9289-1": " long car trip",
"6595-1": " full engagement",
"7191-1": " capital E",
"12559-2": " constant exposure",
"13529-2": " material results",
"1066-2": " present system",
"7963-1": " initial example",
"10666-2": " extensive family",
"4023-1": " partnership deal",
"11979-2": " direct style",
"4340-1": " service dogs",
"2482-2": " specific variety",
"765-1": " traditional dress code",
"1482-2": " perfect copy",
"24-2": " decentralization policy",
"8181-1": " study books",
"2515-2": " close proximity",
"1325-2": " primary target group",
"6619-2": " almost twice the size",
"11040-1": " much better way",
"10598-1": " great focus",
"13390-2": " elderly people",
"12675-1": " volleyball game",
"8775-2": " Almost every position",
"14474-2": " easy to clean",
"9904-2": " work time",
"10301-1": " good acts",
"8897-2": " commercial enterprise",
"7645-1": " prior residence",
"6860-2": " unauthorized people",
"14926-1": " entirely new language",
"14598-1": " consultation session",
"14779-1": " common security",
"1424-2": " deep cleaning",
"305-1": " one hundred meters",
"1547-2": " Every horse",
"5196-1": " historical meaning",
"11029-1": " regular practice",
"7698-2": " identical type",
"2610-1": " transient nature",
"4901-1": " opposing direction",
"3123-2": " fine group",
"12184-2": " month's break",
"10455-2": " 100 and 200 people",
"6735-2": " one subsidiary",
"9260-1": " better solution",
"5292-2": " required time",
"943-1": " normal number",
"13030-1": " time capsule",
"9202-1": " prior history",
"6329-1": " household life",
"7437-2": " distilled water",
"12183-2": " frequent association",
"5444-2": " key criteria",
"3141-2": " targeted group",
"2679-2": " close vicinity",
"9915-2": " least one man",
"2196-1": " One farmer",
"3648-2": " market space",
"12676-1": " limited land resources",
"168-2": " surprising result",
"5795-2": " first and last leg",
"796-2": " official parties",
"8891-1": " possible return",
"9578-2": " enlarged scale",
"5721-1": " real surprise",
"8426-1": " consistent part",
"9786-2": " granite quarry",
"5345-1": " dual function",
"644-2": " Yet another resolution",
"6453-2": " due date",
"549-1": " work life",
"8703-1": " growing local economy",
"14915-2": " business houses",
"11576-2": " best price",
"13694-1": " fifth major",
"14504-2": " side's point",
"13874-1": " temporary access",
"6931-1": " whose intention",
"13632-2": " set range",
"14424-2": " flight schedules",
"10816-1": " good chance",
"1308-2": " neither victory",
"8868-2": " vast popularity",
"13328-1": " two-bedroom house",
"3428-2": " government decisions",
"10269-2": " fast access",
"14642-2": " direct succession",
"12670-2": " peak period",
"4125-2": " 293 people",
"5168-1": " sizable segment",
"176-2": " late part",
"5019-2": " first crack",
"4580-2": " heavy object",
"4154-1": " high professional standards",
"9134-1": " industry growth",
"7002-1": " one word",
"10361-2": " highest number",
"1037-1": " nearly half",
"797-1": " specific cap",
"13053-1": " particular region",
"2904-2": " strategic investment",
"10997-2": " possible exposure",
"2335-2": " relative degree",
"5637-1": " key sources",
"7217-1": " necessary time",
"4192-1": " left side",
"13923-1": " either time",
"8338-2": " short version",
"9835-1": " another convenience store",
"4588-2": " couple members",
"14229-2": " possible range",
"6679-1": " beginning training",
"5377-1": " another machine",
"613-2": " world theaters",
"13379-2": " sports use",
"9436-2": " flood control systems",
"7074-1": " additional term",
"2180-2": " life activities",
"2827-1": " monogamous relationship",
"10558-2": " binding deal",
"13291-1": " deep streams",
"4592-1": " sufficient material",
"7784-1": " common risk factors",
"11686-2": " local content",
"13049-2": " carpet bag",
"342-1": " old piece",
"12080-2": " second arm",
"5674-2": " actual content",
"8390-1": " another quarter",
"3349-1": " sufficient pressure",
"8541-1": " private pool",
"10524-2": " historical response",
"14107-2": " convenient source",
"14381-1": " whole documentation",
"12254-2": " notable contrast",
"13094-1": " permanent size",
"2387-2": " number sequence",
"7768-2": " accountability mechanism",
"2666-2": " last stint",
"1131-1": " objective test",
"6178-1": " custom software",
"7023-1": " partial relief",
"5112-2": " death certificates",
"14322-2": " whole length",
"1056-1": " one particular side",
"6884-2": " good ones",
"14101-2": " appropriate action",
"2940-2": " definite number",
"14591-2": " previous phase",
"9117-1": " supporting group",
"3673-1": " less common type",
"12528-2": " necessary role",
"4487-2": " entire half",
"9613-2": " time era",
"1517-2": " another drop",
"6140-1": " secondary focus",
"3950-2": " good position",
"10704-1": " government's attention",
"2857-1": " monumental block",
"4132-2": " investigation section",
"6444-2": " sexual satisfaction",
"6608-1": " organic structure",
"10883-1": " following division",
"5710-2": " primary part",
"3716-2": " past behaviors",
"5677-2": " predominant role",
"5384-2": " friend group",
"7056-2": " best known version",
"367-2": " every odd-numbered year",
"11057-2": " high return",
"754-2": " whatever object",
"13513-2": " family's line",
"546-2": " last word",
"3708-1": " company's base",
"11611-1": " abusive side",
"8833-2": " culling process",
"11487-1": " plain matter",
"3042-1": " right spot",
"5805-1": " whatever rank",
"4054-2": " balanced distribution",
"1531-1": " strong competition",
"14978-1": " one technician",
"11858-2": " best possible light",
"3085-1": " original focus",
"4976-2": " every size",
"10960-1": " orderly way",
"2426-2": " good category",
"5370-1": " strong growth",
"4727-2": " wrong thoughts",
"10239-2": " boiling point",
"3789-2": " short a time",
"9299-2": " right pocket",
"12402-2": " temporal wealth",
"13780-2": " one member",
"9751-1": " comfortable place",
"1357-2": " supervisory position",
"2924-1": " social practice",
"10638-1": " first address",
"993-2": " enough protection",
"670-2": " safety devices",
"9878-1": " traditional operation",
"14060-2": " widespread appeal",
"7680-1": " another conjecture",
"9879-1": " former charge",
"19-1": "one junior",
"5064-2": " 3 year",
"8197-1": " immature state",
"785-1": " critical tool",
"14318-2": " official links",
"2418-2": " service infrastructure",
"1863-1": " accepted theory",
"4287-2": " undocumented population",
"2019-2": " women's safety",
"2098-2": " defining theme",
"14055-1": " better value",
"6291-1": " building sites",
"1348-1": " little or no experience",
"12070-1": " aggressive approach",
"3793-1": " family structures",
"3055-2": " heated exchange",
"9142-1": " common principle",
"6084-1": " circumvent German jamming",
"11775-2": " every piece",
"7491-2": " first effect",
"147-2": " 904 people",
"9595-1": " chain stores",
"4299-2": " nearly every sport",
"10001-1": " small presence",
"3856-2": "correct behavior",
"11823-2": " actual relationship",
"10012-2": " profitable way",
"10662-1": " real meat",
"1080-1": " declining amount",
"14605-2": " chief role",
"5265-2": " imminent threat",
"4033-2": " 290 people",
"14329-1": " secondary wall",
"11286-2": " Another notable fact",
"8758-2": " current section",
"9780-1": " better presentation",
"11028-1": " partial return",
"6546-2": " delivery costs",
"1221-1": " average ratio",
"12528-1": " necessary role",
"4867-2": " prolonged stress",
"11931-2": " prophetic vision",
"7376-2": " living example",
"4935-1": " first source",
"1211-2": " around twelve people",
"4832-2": " polite manner",
"13324-1": " one difficulty",
"11192-1": " nearly half",
"7028-1": " Another body",
"8023-1": " expanded housing development",
"14218-1": " front half",
"5196-2": " historical meaning",
"36-2": " good possibility",
"6537-1": " another region",
"2065-2": " lasting impact",
"4306-1": " unusual role",
"14518-2": " Modern port knock systems",
"14971-1": " brand new style",
"4201-1": " prescribed manner",
"12964-1": " much different place",
"5765-2": " last line",
"14922-2": " double the size",
"2292-2": " half the collection",
"907-1": " personal account",
"9291-1": " approximately 120 people",
"6456-2": " education purposes",
"13927-2": " exactly the same number",
"6445-1": " adjacent picture",
"8583-1": " second solution",
"9504-2": " specialized network",
"5151-1": " another rock",
"10285-1": " close emotional relationship",
"3944-1": " significant commercial success",
"6417-1": " ever-increasing problem",
"7878-1": " land access",
"1611-2": " symmetrical structure",
"13112-2": " TV interview",
"372-2": " close approximation",
"3842-1": " federal government employees",
"9087-2": " long-term impact",
"12344-1": " key requirement",
"699-2": " permanent post",
"8184-2": " beach side",
"8073-2": " interim goal",
"5217-2": " marginal role",
"5788-2": " little place",
"14682-2": " great cultural importance",
"4845-2": " main cost",
"2190-2": " original practice",
"13895-1": " 1990s production",
"8237-1": " established policy",
"8297-1": " low key",
"3794-1": " negative manner",
"9334-2": " cunning man",
"4011-1": "internal violence",
"8552-2": " input space",
"11245-2": " old block",
"722-2": " tiny community",
"9039-1": " new frame",
"11847-2": " material site",
"2744-2": " major divide",
"11648-1": " lasting popularity",
"9137-1": " common building blocks",
"9390-2": " swimming pool",
"1442-1": " distinct level",
"2445-1": " agency workers",
"12587-1": " positive difference",
"13498-1": " famous form",
"10484-1": " 2015 competition",
"13813-2": " main head",
"9910-2": " little thought",
"3373-1": "best match",
"11162-2": " preliminary understanding",
"11253-2": " greater care",
"6383-2": " total performance",
"5583-1": " less ability",
"2797-1": " major organ systems",
"10203-1": " great utility",
"4298-1": " every risk",
"6553-1": " artificial origin",
"9967-2": " ultimate end",
"2413-2": " illicit use",
"3115-1": " one small area",
"8207-2": " animal print",
"6980-1": " normal appearance",
"11254-2": " one's home",
"12927-1": " significant element",
"13009-1": " well-known case",
"4596-2": " consumer group",
"11522-2": " required element",
"14913-1": " local resources",
"6120-1": " one calendar year",
"3266-2": " primary need",
"10027-1": " new obstacle",
"5185-1": " first master",
"6065-1": " first beginning",
"13251-1": " clear position",
"1309-1": " current military",
"4410-1": "Latency Time",
"7991-2": " either chair",
"4578-1": " nice way",
"9840-2": " empty homes",
"5198-2": " ongoing drive",
"1062-1": " collective movement",
"8346-2": " mathematical basis",
"12650-1": " real authorities",
"13579-1": " traditional aim",
"12070-2": " aggressive approach",
"6779-2": " remaining power",
"5549-1": " huge resistance",
"9906-1": " safety feature",
"12480-2": " worldwide center",
"11803-1": " dangerous process",
"11550-1": " influential voice",
"4778-1": " loose structure",
"12724-2": " Inner Loop",
"12751-2": " occasional practice",
"2146-2": " major proponents",
"2738-1": " thin bed",
"10502-1": " last 1 hour",
"14205-1": " top two recipients",
"8024-2": " building character",
"14718-2": " promised day",
"4529-2": " improved quality",
"1769-2": " grading system",
"9375-1": " reserved character",
"9228-2": " unwelcome competition",
"4051-2": " severe effect",
"6540-1": " 2017 version",
"5869-2": " typical pattern",
"6214-2": " initial process",
"13540-1": " separate encounter",
"11645-1": " clear manifestation",
"3077-1": " public desire",
"6940-1": " passing minute",
"14773-1": " warm weather",
"3606-2": " reduced quality",
"9771-2": " great variety",
"7314-1": " abnormal number",
"12512-1": " high figure",
"46-1": " major supporter",
"13162-1": " large length",
"7603-2": " enormous role",
"9036-2": "Trend analyses",
"8644-1": " alternate way",
"7044-2": " next set",
"1629-1": " one period",
"126-2": " important news",
"434-2": " protection reasons",
"12984-2": " government registration",
"9431-2": " original creation",
"5164-2": " enhanced sense",
"2664-1": " open possibilities",
"9970-2": " main office building",
"3888-1": " greater clarity",
"3897-2": " 5th stage",
"9725-2": " legal majority",
"6346-1": " popular addition",
"5967-1": " general manner",
"14200-1": " preceding year",
"7546-1": " case studies",
"11419-1": " professional opinion",
"8182-2": " minimal work",
"3019-1": " needed protection",
"884-2": " country's largest source",
"11530-1": " good layout",
"9571-1": " ongoing activity",
"457-2": " recreational program",
"7434-2": " larger book",
"10728-2": " overall trend",
"11110-2": " simpler set",
"10703-2": " regular stream",
"11125-2": " economic function",
"6451-1": "one size",
"477-1": "one kilogram",
"10215-2": " direct increase",
"5214-1": " clear understanding",
"5099-1": " show guests",
"7113-1": " prominent spot",
"10591-2": " entry price",
"13058-1": "Good News",
"6973-1": " one important find",
"713-2": " sufficient confidence",
"5928-2": " open gate",
"107-2": " private people",
"6663-1": " proposed deal",
"2108-2": " scientific support",
"6287-1": " positive progress",
"1297-1": " friendly approach",
"12947-2": " nearby waterfall",
"8510-1": " boat shed",
"13711-1": " one street",
"7938-2": " different motion",
"1326-1": " breathing room",
"5675-1": " north-west coast",
"4464-2": " better indication",
"10033-2": " traffic engineer",
"1797-1": " perfect start",
"6462-2": " strongest expression",
"5112-1": " death certificates",
"9179-2": " potential influence",
"4478-2": " well-known source",
"11216-1": " fair division",
"10526-1": " vast community",
"8124-1": " closest family",
"2078-1": " invisible process",
"8010-2": " confirmed venues",
"9668-1": " general shape",
"6111-2": " official determination",
"3577-1": " typically a loss",
"7077-1": " much exposure",
"2569-2": " better image",
"6827-1": " triangular section",
"9919-2": " weaker performance",
"2929-1": " formal recognition",
"1488-1": " public dining room",
"5433-2": " continuing trend",
"9201-2": " long-term stability",
"2032-2": " media manipulation",
"7258-1": " war games",
"10890-1": " whole scene",
"2890-2": " real-life situation",
"10332-2": " successful plan",
"7845-1": " local family history",
"62-1": " emerging movement",
"13534-1": " mean grade",
"11328-2": " Sele river",
"2627-1": " one filter",
"3228-2": " country's division",
"11770-2": " quick motion",
"5189-1": " street car",
"9968-2": " price discrepancies",
"14564-1": " oil and gas industries",
"7315-2": " early day",
"12338-2": " career field",
"6907-2": " rebuilding process",
"7590-2": " key persons",
"4710-2": " harvest period",
"3466-2": " cheap cost",
"6350-2": " early step",
"4524-1": " financial loss",
"2120-1": " two people",
"11928-2": " normal approach",
"7518-2": " personal vehicle",
"205-1": " last one-and-a-half years",
"8905-1": " intended result",
"14346-1": " powerful people",
"12552-2": " whichever job",
"9579-2": " another station",
"21-1": " broader meaning",
"7450-1": " slight tilt",
"13411-2": " lime green border",
"9259-2": " initial act",
"8933-1": " mass assembly",
"3378-2": " performance advantages",
"11148-1": " considerable practice",
"11356-2": " single source",
"1708-2": " less than a quarter",
"13657-2": " animal abuse",
"2653-1": " past several days",
"2126-1": " strengthening trend",
"13698-1": " second casting",
"12654-2": " conventional pattern",
"6738-2": " conspicuous presence",
"9992-2": " regulatory function",
"6581-2": " basic membership",
"8807-2": " live accompaniment",
"8569-1": " dual license",
"4240-2": " military task",
"14618-1": " short consideration",
"11119-1": " full pipe",
"12848-2": " amazing person",
"9491-2": " fairly recent addition",
"646-1": " little smoke",
"3371-2": " continued cooperation",
"980-1": " activity period",
"2265-1": " intimate understanding",
"11496-2": " audio component",
"9959-2": " particular action",
"11810-2": " male-male competition",
"6212-2": " local districts",
"3498-2": " market trade",
"5448-2": " Direct Source",
"3299-2": " heavy bag",
"1682-2": " written rule",
"14822-2": " Good sources",
"3113-2": " nearest approach",
"8677-2": " general notice",
"12169-2": " different one",
"544-1": " fishing line",
"9480-2": " enough presence",
"13333-2": " major structure",
"12688-2": " proper source",
"12092-2": " new projection",
"7762-2": " yearly basis",
"3041-1": " first open",
"2075-1": " prior title",
"3909-2": " tenuous authority",
"4640-1": " basic structure",
"2703-1": " physical component",
"5070-1": " fictional story",
"120-1": " US federal court",
"12404-1": " heavy emphasis",
"5432-1": " key driver",
"12074-1": " particular shape",
"3550-1": " information source",
"9043-1": " customer interest",
"13144-1": " constant motion",
"14046-2": " largest element",
"9821-2": " commercial industry",
"12336-1": " energy requirements",
"7307-1": " earlier part",
"2750-2": " head official",
"4115-1": " separate review",
"9823-2": " weight transfer",
"3238-1": " least one end",
"9372-2": " cell door",
"9921-2": " high rank positions",
"8710-1": " significant depth",
"3959-2": " entire field",
"7290-1": " much damage",
"4779-1": " faster and easier way",
"6351-2": " rapid closure",
"2003-2": " initial process",
"10426-2": " second cause",
"4246-2": " hard work",
"11219-1": " 1995 campaign",
"14309-2": " larger craft",
"4674-2": " apparent movement",
"3455-1": " different government agencies",
"1594-2": " dramatic appearance",
"9643-1": " parts problem",
"698-1": " major proof",
"4322-1": " contractual period",
"11944-1": " actual figure",
"1734-1": " leading explanation",
"2847-2": " second evaluation",
"6149-1": " diverse body",
"12193-2": " fast way",
"13583-1": " egg production",
"8254-2": " rugged section",
"12055-2": " mental ability",
"13035-1": " every value",
"7338-2": " stark contrast",
"7873-1": " light industrial areas",
"4593-1": " entire piece",
"5565-1": " internal door",
"13489-1": " common trip",
"3566-2": " best possible deal",
"9708-2": " continued investment",
"10051-2": " one hop",
"12028-1": "universal popularity",
"14661-1": " recovery model",
"7262-2": " direct employees",
"8962-2": " substantial loss",
"12016-1": " other's performance",
"2688-2": " department store",
"1342-1": " local private school",
"9447-2": " similar kind",
"13301-1": " Male branch",
"9439-2": " latest event",
"1648-2": " security code",
"2442-2": " routine operation",
"11602-1": " sure sign",
"7469-2": " 900 people",
"14931-1": " tough situation",
"14296-1": " related topic",
"2606-1": " convincing explanation",
"12686-2": " final change",
"8104-2": " carrier screening",
"2169-1": " high supply",
"12115-1": " enforcement activity",
"14983-1": " initial development",
"2468-2": " every single one",
"4647-2": " obstructed view",
"770-2": " past episode",
"10114-2": " stomach illness",
"10132-2": " similar action",
"3052-2": " quicker stop",
"14907-2": " pervasive use",
"5279-2": " distinct symbol",
"11816-1": " long term effects",
"14305-2": " parlor game",
"2456-1": " nearby soccer field",
"2816-1": " quickest way",
"11104-1": " attack formation",
"9538-1": " whose turn",
"5052-1": " longest time",
"3818-2": " revenge violence",
"11494-1": " comparable force",
"12330-2": " vertical piece",
"5808-1": " whole purpose",
"2798-2": " similar logic",
"7726-2": " fantastic performance",
"13033-2": " immediate place",
"9554-1": " construction stage",
"1644-1": " unsuccessful trip",
"6480-1": " principal sponsors",
"10163-1": " wooden object",
"6357-2": " area's development",
"4472-1": " constant source",
"5194-2": " screen capture",
"13269-2": " \"et al. \"",
"12625-1": " every other year",
"6325-1": " one such company",
"3869-1": " newer design",
"5549-2": " huge resistance",
"11425-1": " less change",
"3542-1": " dramatic evidence",
"3823-2": " official recognition",
"1074-2": " convenient way",
"920-2": " smooth flowing",
"3346-1": " compass points",
"7959-1": " daily form",
"13757-2": " overall condition",
"5654-1": " sport associations",
"2005-1": " ultimate protection",
"793-2": " powerful control",
"12417-1": " someone's home",
"2497-2": " warm weather",
"13576-2": " important range",
"9671-1": " quicker development",
"1649-2": " Thompson's group",
"9006-2": " last word",
"5767-2": " significant light",
"3306-1": " much excitement",
"13140-1": " geopolitical region",
"3768-1": " balloting process",
"14838-1": " extra value",
"9822-2": " higher development",
"6714-2": " original direction",
"7290-2": " much damage",
"8835-2": " easy game",
"9449-1": " massive volume",
"12940-1": " zone operations",
"14036-1": " traditional relationship",
"6768-2": " product categories",
"11888-1": " universal space",
"4755-1": " one name",
"8895-2": " general reference",
"9564-1": " heavy damage",
"382-1": " cultural image",
"8428-1": " steep angle",
"12560-1": " outside pressure",
"4199-1": " reduced amount",
"12530-2": " another important element",
"11237-1": " safety equipment",
"1071-1": " recent separation",
"8415-1": " little shake",
"7430-2": " public interest",
"12717-1": " uncensored truth",
"14094-2": " Nearly half",
"9491-1": " fairly recent addition",
"6292-2": " original invitation",
"10417-1": " native soil",
"14906-2": " main defense",
"4844-2": " moral theme",
"2344-2": " sitting position",
"7026-1": " entire activities",
"6748-2": " local pool",
"5832-1": " redrawn map",
"5708-1": " second vocation",
"6871-1": " stronger tone",
"2099-1": " Another shift",
"6719-2": " military means",
"214-2": " jumping off point",
"4920-1": " motive power",
"1808-2": "also part",
"14577-2": " necessary strength",
"2868-2": " well-known place",
"13120-2": "Original Finish",
"2012-2": " emerging movement",
"2575-1": " future engagement",
"1051-2": " worthy goal",
"2291-2": "meeting areas",
"12920-2": " stealthy approach",
"9713-1": " eventual cost",
"2140-1": " one time compensation",
"14745-1": " increasing activity",
"8805-1": " high quality timber",
"11393-2": " one toddler",
"11995-2": " fine detail",
"9459-2": " low-income people",
"13238-2": " one ticket",
"1845-1": " dollar value",
"11308-2": " initial development",
"12578-2": " consistent quality",
"6180-1": " full advantage",
"5439-2": " last 5 years",
"9745-2": " important function",
"7168-2": " independent feeling",
"14915-1": " business houses",
"13287-2": " rare record",
"5184-2": " scaled model",
"4206-1": " total interest",
"7398-1": " freshman house",
"2178-2": " light poles",
"14555-2": " good proportion",
"2738-2": " thin bed",
"8116-1": " dearness allowance",
"11428-1": " final turn",
"30-1": " rational approach",
"12989-2": " polynomial limit",
"11518-1": " detailed story",
"4982-2": " potential power",
"4944-1": " One major factor",
"1460-1": " speech area",
"1508-2": " twelve hour days",
"11260-1": " prime objectives",
"11749-2": " large goal",
"10453-1": " human race",
"1251-1": " worst possible way",
"10700-2": " major assets",
"1596-2": " one particular area",
"14425-2": " inferior position",
"11637-2": " identical volume",
"14614-2": " entirely new type",
"11381-2": " family's reaction",
"9250-1": " permanent addition",
"2637-1": " next cycle",
"6030-1": " drum design",
"14407-1": " intermediate outcome",
"11932-1": " modern port",
"3572-2": " whose center",
"1665-2": " Bold type",
"10115-1": " key message",
"13708-2": " large jump",
"5243-1": " storage systems",
"14317-2": " original generation",
"3424-1": " exactly one third",
"13001-1": " older model",
"12410-1": " two major ones",
"5462-1": " old couple",
"857-2": " specific material",
"197-2": " former group",
"14578-1": " true shape",
"10457-2": " 1997 version",
"2369-2": " another tier",
"6848-2": " economic basis",
"6223-2": " pupils work",
"6985-1": " great tool",
"10601-2": " knife blade",
"3131-2": " unbiased process",
"2331-1": " idle people",
"8315-2": " precise formation",
"9110-2": " following month",
"10507-2": " equal class",
"4550-1": " major component",
"7982-1": " major story",
"14651-1": " beneficial effect",
"10806-2": " visual evidence",
"3336-1": " initial Record",
"4879-1": " average female",
"12423-1": " specific team",
"7926-2": " desired character",
"13878-2": " organizational function",
"11652-2": " long time span",
"2876-1": " careful evaluation",
"3702-2": " energy conservation measures",
"9718-2": " key partnerships",
"10504-2": " first advantage",
"4758-1": " evil eyes",
"4166-2": " blank space",
"3490-2": " historical context",
"5130-1": " modern cut",
"12629-1": " different function",
"1396-2": " company X",
"11742-1": " Another popular style",
"464-1": " eight-year period",
"9557-1": " distinct genre",
"9176-2": " explicit concern",
"14131-2": " local elder",
"9937-2": " possible position",
"13346-1": " high contents",
"4706-2": " one situation",
"12207-1": " political impact",
"5794-1": " spoken and written language",
"8778-2": " human blood",
"5613-2": " discount card",
"5017-2": " overt conflict",
"9497-2": " relevant direction",
"364-2": " schooling age",
"8345-1": " final exercise",
"8745-1": " community association",
"8130-1": " good value",
"13367-1": " inner border",
"13491-2": " little or no difficulty",
"14422-1": " time restrictions",
"1891-2": " Continuous usage",
"4976-1": " Every Size",
"1706-1": " comprehensive picture",
"430-2": " government proposal",
"9897-2": " shelf life",
"3540-1": " legal separation",
"3152-2": "common people",
"14892-2": " various local events",
"2121-2": " total range",
"7309-1": " measured pace",
"9374-2": " good pictures",
"50-1": " consistently good results",
"12054-2": " exceptional performance",
"12076-1": " central tool",
"10336-2": " different solution",
"8725-1": " essential power",
"4357-2": " highest number",
"6474-1": " good dates",
"12456-1": " guardrail systems",
"14545-1": " major order",
"12370-1": " long-term service",
"2063-1": " intended goal",
"713-1": " sufficient confidence",
"603-1": " major fixtures",
"5366-2": " largest end",
"3849-2": " Summary View",
"4677-1": " second run",
"12253-1": " much notice",
"640-2": " typical session",
"3746-2": " exploration campaign",
"9572-1": " simple matter",
"2432-1": " precise formation",
"8971-1": " crying baby",
"7878-2": " land access",
"5947-2": " armor-piercing round",
"8535-2": " new strength",
"9348-1": " 2018 update",
"10511-2": " monthly pay",
"6688-1": " building site",
"4142-2": " performance gap",
"14234-2": " lower extension",
"3691-2": " skill level",
"13729-1": " baby's face",
"789-2": " considerable frequency",
"11572-2": " non-residential basis",
"926-1": " water Tax",
"6606-1": " sole consumption",
"1959-1": " adequate solution",
"7691-2": " relatively high percentage",
"1713-2": " probable indication",
"11939-1": " criminal evidence",
"4265-1": " considerable heat",
"9808-1": " buying process",
"5453-2": " married man",
"14315-2": " actual delivery",
"1685-1": " lesser value",
"7454-2": " main example",
"12937-2": " successful tool",
"5008-1": " precise course",
"565-2": " efficient organization",
"13038-1": " simple gesture",
"4269-1": " chain link fencing",
"4173-2": " recent rise",
"6745-1": " specific coverage",
"3487-2": " upper back",
"9778-2": " huge load",
"663-2": " Continued work",
"13452-2": "One effort",
"13457-2": " freshwater stream",
"3639-2": " relatively small voltage drop",
"342-2": " old piece",
"10421-1": " stark reality",
"5661-1": " complete system",
"13956-2": " first side",
"5718-2": " 800 million people",
"7363-1": " substantial community",
"2348-2": " precise degree",
"13995-2": " reputed company",
"7705-1": " colonial-era influence",
"12785-1": " Gold plaque",
"2582-1": " frequent involvement",
"7256-1": " threat mitigation",
"4599-2": " distinct identity",
"9693-1": " Commercial material",
"14888-1": " growing popularity",
"7240-2": " life spans",
"4583-1": " someone's life",
"7093-2": " three major forms",
"4369-2": " limited form",
"1251-2": " worst possible way",
"1983-2": " robust growth",
"13643-1": " last fifteen minutes",
"7436-2": " work commitment",
"4682-2": " viewing audience",
"903-2": " drastic overhaul",
"13367-2": " inner border",
"9650-2": " serious strain",
"11745-1": " bean bag rounds",
"7156-1": " unfortunate part",
"4374-1": " another site",
"4171-1": " whose license",
"7959-2": " daily form",
"8011-2": " whole parts",
"2320-2": " alleged abuse",
"1605-1": " virtually no need",
"7129-1": " hidden gem",
"5468-2": " great responsibility",
"5995-1": " base region",
"10091-1": " Card Table",
"3126-1": " former type",
"2372-2": " alternative stage",
"4581-1": " principal sources",
"1594-1": " dramatic appearance",
"1996-2": " secured room",
"8614-2": " one subdivision",
"13338-1": " initial press statements",
"7313-1": " one's place",
"10190-1": " music area",
"1272-1": " great fish",
"2510-1": " political function",
"10882-1": " basic background",
"7888-1": " day needs",
"10336-1": " different solution",
"142-2": " adequate view",
"53-1": " 6 series",
"12408-2": " political content",
"4754-1": " entire night",
"1306-1": " negative material",
"2817-2": " conscious control",
"7989-1": " community vote",
"4817-2": " lower hand",
"1439-2": " significantly larger proportion",
"4132-1": " Investigation Section",
"11312-1": " decreased number",
"104-1": " one given time",
"11632-2": " propulsion source",
"10843-2": " major recognition",
"682-2": " growing protest movement",
"5812-2": " extensive series",
"13643-2": " last fifteen minutes",
"13621-1": " Elizabethan style",
"7720-2": " State agents",
"14242-2": " powerful system",
"7630-2": " narrow mouth",
"7416-2": " effective part",
"3791-1": " community affiliation",
"18-1": " certain strength",
"5781-1": " critical impact",
"3898-2": " dream state",
"12885-2": " traffic jam",
"6995-1": " supposed gap",
"10214-2": " entire Act",
"10832-2": " different time",
"1505-1": " top attractions",
"5476-1": " alarming extent",
"91-1": " identification card",
"9872-2": " earliest date",
"351-2": " special invitation",
"11894-1": " major fault",
"11376-1": " 12-year period",
"12039-2": "Military implements",
"1716-2": " special role",
"1201-1": " outside source",
"7431-1": " river ford",
"10619-2": " decreased number",
"1161-1": " widespread pattern",
"2648-2": " exam system",
"11757-1": " minor issue",
"9082-2": " multiple use",
"2594-2": " transparent window",
"14114-1": " new shape",
"7639-2": " lowering process",
"9455-2": " lawful conduct",
"3026-1": " supportive evidence",
"1169-1": " 67th year",
"7663-1": " manual force",
"14377-2": " target audience",
"6982-2": " targeted work",
"8675-1": " one's path",
"1894-2": " elimination competition",
"11884-2": " building strength",
"11865-1": " cost benefits",
"10745-2": " second anchor",
"11759-2": " second father",
"13183-2": " high spots",
"11283-2": " last updates",
"8354-1": " stock market",
"6606-2": " sole consumption",
"1497-1": " one interview",
"1357-1": " supervisory position",
"6360-1": " better return",
"12927-2": " significant element",
"14236-1": " Close analysis",
"5022-1": " monthly average",
"9577-2": " shipping industry",
"10879-2": " direct blow",
"1235-2": " trail network",
"4745-2": " fast release",
"2553-2": " company lawyers",
"1192-2": " prior consensus",
"3715-2": " campaign success",
"5330-1": " political function",
"11151-2": " available program",
"11707-1": " high density",
"959-1": " northern reach",
"4731-2": " hostile situation",
"7470-1": " team affiliation",
"9228-1": " unwelcome competition",
"1394-2": " specific detail",
"7676-2": " immediate succession",
"14151-1": " accreditation organization",
"13807-2": " jump start",
"11274-2": " lower cap",
"6575-1": " little background",
"14261-2": "almost every shot",
"14740-1": " whatever order",
"13204-2": " office employees",
"2026-1": " near future",
"12809-2": " reported capacity",
"1805-1": " stronger side",
"13741-1": " little distance",
"11713-2": " double purpose",
"11017-2": " clear example",
"8152-2": " special relation",
"4824-2": " legitimate level",
"10802-2": " preferred number",
"10347-2": " divine influence",
"1618-1": " one retirement",
"12110-2": " craft trades",
"6134-2": " direct supervisor",
"10170-1": " deck size",
"10455-1": " 100 and 200 people",
"2705-1": " correct process",
"12372-2": " animal market",
"2921-1": " lighter mainline",
"6232-1": " wider use",
"4956-2": " large obstacle",
"9559-2": " enemy armor",
"10249-1": " storage place",
"12464-2": " state and national elections",
"7219-2": " senior care facilities",
"11962-2": " continuous history",
"12389-2": " diagnostics tool",
"10367-1": " current time",
"12717-2": "Uncensored Truth",
"7306-1": " aggressive program",
"7985-2": " important structure",
"14440-1": " frequently used approach",
"6130-1": " growing activity",
"5742-1": " government crews",
"14842-1": " tough reality",
"4298-2": "Every risk",
"7935-1": " lowest value",
"241-2": " bell story",
"12646-1": " world's capacity",
"14841-2": " sound capacity",
"10786-2": " optimal value",
"7373-1": " considerable cost",
"4144-1": " usual manner",
"12958-2": " nonprofit entities",
"11535-2": " side entry",
"3042-2": " right spot",
"8457-2": " major structure",
"9873-1": " championship section",
"8828-2": " specialized role",
"14360-2": " new relationship",
"10232-1": " hard case",
"10381-2": " military potential",
"2403-2": " welcoming gesture",
"13006-2": " additional strength",
"3154-1": " global civil society",
"8661-2": " physical exchange",
"6190-1": " principal advantage",
"7783-2": " interior side",
"13383-2": " Production Class",
"9704-1": " another probe",
"579-2": " perfect day",
"2225-1": " strict version",
"6227-1": " formerly the seat",
"2089-1": " segregated seating",
"2588-2": " giant amount",
"498-1": " observed activity",
"11634-2": " bad business",
"3333-2": " One empirical study",
"6079-2": " continued denial",
"13499-2": " major style",
"5691-2": " either the people",
"2260-2": " little or no desire",
"12573-1": " 1 hour",
"10874-2": " local organizer",
"7320-1": " possible effect",
"11355-1": " sufficient interest",
"14390-1": " giant field",
"11908-1": " team listings",
"11019-2": " whose function",
"8264-2": " best known version",
"10744-2": " initial sequence",
"7741-1": " fleeting glimpse",
"11195-2": " closed eye",
"1672-1": " third person perspective",
"9434-1": " another income stream",
"7066-2": " popular program",
"14877-1": " greatest expression",
"7798-1": " another price",
"4516-2": " set location",
"11006-1": " zero clients",
"896-1": " whole new set",
"9625-2": " initial part",
"6370-2": " government decisions",
"13016-1": " narrow lot",
"4801-2": " any other process",
"13987-1": " contemporary consideration",
"6966-2": " major demands",
"4036-2": " bank details",
"4631-2": " previous connection",
"3907-1": " great a force",
"278-1": " potential avenue",
"2584-1": " work potential",
"883-2": " heavy rock",
"4093-1": " improved one",
"4219-1": " previous occasion",
"2999-1": " overall increase",
"6781-1": " various field",
"14826-1": " short edge",
"2161-2": " remaining construction",
"7699-2": " wide end",
"8575-2": " ongoing nature",
"10358-1": " Jessie head",
"4300-1": " new cap",
"112-2": "Study Support",
"13610-2": " bare skin",
"12388-1": " Government proclamations",
"8422-1": " one moment",
"14271-1": " unsubstantiated claim",
"13956-1": " second release",
"8562-1": " major decrease",
"1102-2": " clear blue sky",
"1787-1": " fine control",
"8794-1": " safety benefit",
"10683-1": " public office",
"6491-2": " one slot",
"3534-1": " second shoe",
"1827-1": " least part",
"9972-2": " different conclusion",
"558-1": " historical heritage",
"10168-1": " biggest area",
"10277-1": " similar reason",
"14836-2": " two row",
"6848-1": " economic basis",
"809-1": " draft stage",
"5358-1": " sugar tax",
"12270-1": " confrontational attitude",
"11832-1": " another rock",
"3300-2": " good co-existence",
"5895-1": " exceptional beauty",
"2553-1": " company lawyers",
"9325-1": " entirely different matter",
"7890-1": " principal difference",
"12140-2": " different sum",
"9999-2": " senior executive position",
"10078-2": " upper zone",
"8938-1": " street festival gigs",
"7877-1": " live TV broadcast",
"12500-2": " few more dozen moves",
"2256-1": " different physical appearance",
"6915-2": " one profile",
"6954-1": " sudden nature",
"8843-2": " high chair",
"14149-1": " extra power",
"5956-2": " single color",
"1208-1": " possible way",
"10238-2": " primary vehicle",
"6938-2": " accelerating pace",
"9586-1": " medical class",
"548-2": " general public access",
"8996-1": " country's history",
"14441-1": " dedicated work",
"7754-1": " greater liberty",
"8711-1": " external review",
"1375-2": "magical place",
"10858-1": " high involvement",
"10494-1": " proper state",
"3437-1": " community contributions",
"9741-1": " real reasons",
"3082-2": " limited action",
"6508-1": " appropriate brush",
"2660-2": " active efforts",
"3681-1": " major enterprise",
"3895-1": " 4 series",
"8747-1": " oldest kind",
"14399-2": " large level",
"7537-2": " buying power",
"13405-2": " wine shops",
"5801-1": " specific section",
"8468-1": " communication devices",
"5287-2": " safety drills",
"8735-1": " better system",
"2695-2": " key intermediary",
"10023-1": " lower likelihood",
"9685-1": " damaged line",
"13351-1": " south-eastern fringe",
"13737-1": " mind-reading, second guessing",
"12006-2": " extensive series",
"12511-2": " 300 people",
"7371-2": " estimated total production",
"4147-1": " inner sections",
"9510-2": " extraordinary quality",
"6968-1": " greater confidence",
"7894-2": " higher desire",
"5796-1": " another government",
"5053-2": " closed system",
"1904-2": " traditional network",
"6733-2": " similar structure",
"9368-2": " child rearing",
"10287-2": " greater power",
"8795-1": " lengthy set",
"8514-1": " complete understanding",
"12903-2": " delivery staff",
"11392-2": " long-term impact",
"9593-1": " every performance",
"1006-2": " complete system",
"13160-2": " modelling work",
"2233-1": " considerable light",
"6136-1": " particular accent",
"12226-1": " bad level",
"1770-2": " common design",
"13627-1": " key tracks",
"4100-2": " useful form",
"4893-2": " beam splitter",
"6558-2": " right path",
"141-2": " limited form",
"1868-2": " creative way",
"4963-2": " great question",
"2425-2": " prominent sign",
"8413-2": " exact same position",
"674-2": " independent account",
"6669-1": " gentle care",
"6078-2": " solid basis",
"786-1": " necessary reflection",
"2636-1": " replacement system",
"1524-1": " similar development",
"13158-1": " air conditioning",
"561-1": " half a ton",
"7411-2": " last approach",
"12231-2": " enemy attacks",
"1708-1": " less than a quarter",
"3725-2": " field activity",
"12727-2": " future recognition",
"12685-1": " real plans",
"3242-2": " trophy room",
"8591-2": " possible series",
"7723-2": " much significance",
"4846-2": " positive interest",
"3669-1": " One popular way",
"7097-2": " opening battle",
"8715-1": " entire test",
"11043-1": " adverse effect",
"5400-1": " hence the need",
"8307-2": " key variable",
"10266-2": " norther part",
"47-2": " clear evidence",
"3442-2": " entire energy",
"13071-2": "Extra Story",
"8398-1": " close timing",
"11909-2": " left centre",
"4802-1": " Another criticism",
"2481-2": " hospital treatment",
"10517-2": " rather a need",
"10244-2": " owner's house",
"4829-1": " Low efficiency",
"7935-2": " lowest value",
"8603-1": " thick branch",
"3249-2": " back half",
"11962-1": " continuous history",
"13433-1": " first organized group",
"5279-1": " distinct symbol",
"13357-2": " major urban center",
"14677-2": " blue flames",
"116-1": " addition information",
"14087-1": " historic cross",
"7146-1": " passive role",
"7319-2": " better circulation",
"14283-1": " key function",
"11974-1": " educational function",
"769-2": " two-year history",
"13761-2": " long-running problem",
"9657-2": " substantial estate",
"10524-1": " historical response",
"12027-2": " old desire",
"7029-1": " 2011 estimate",
"411-1": " another arrangement",
"7577-1": " conservative estimate",
"13589-2": " city office",
"6822-1": " moderate level",
"9810-1": " barrier surface",
"4221-2": " specific time range",
"10661-1": " field position",
"3471-1": " overwhelming number",
"11077-2": " vantage position",
"5697-1": " independent power",
"12476-2": " immediate family members",
"10714-1": " internal source",
"14466-1": " major points",
"14821-2": " little or no experience",
"5214-2": " clear understanding",
"965-2": " enough contrast",
"12476-1": " immediate family members",
"8618-2": " potential effect",
"13388-2": " direct view",
"5418-2": " American government",
"10575-1": " increased physical contact",
"10489-2": " different problem",
"7699-1": " wide end",
"1257-1": " higher tendency",
"2013-1": " supreme branch",
"14626-2": " solution provider",
"795-1": " widespread expression",
"866-2": "Live Bait",
"14945-2": " subsequent formation",
"13905-1": " Published material",
"11544-1": " U.K. branch",
"2057-1": " prominent change",
"5553-2": " Approximately one quarter",
"14538-2": " next point",
"4906-1": " separate round",
"6427-1": " business purpose",
"13543-2": " high intakes",
"199-1": " score sheets",
"10897-2": " certain manner",
"12135-1": " Many travel guides",
"4212-1": " silent man",
"9268-2": " preparatory period",
"14789-2": " traditional system",
"12519-1": " continental region",
"979-2": " substantial development",
"480-1": " false sense",
"690-2": " resulting separation",
"163-1": "cold cream",
"2396-1": " one boys",
"14202-1": " wildlife protection",
"6677-2": " unimpressive performance",
"11261-1": " challenge",
"6598-2": " Every look",
"10606-2": " similar content",
"11785-1": " structural integrity",
"11154-1": " traditional size",
"8553-2": " different opinion",
"9867-1": " treatment areas",
"2997-1": " landmark point",
"12133-2": " effective action",
"11112-2": " long-distance competition",
"6270-1": " noticeable gap",
"5127-1": " first operation",
"11072-2": " secondary concern",
"11172-1": " key metric",
"1647-2": " increased screen time",
"11454-2": " great an impact",
"10781-2": " train journeys",
"7934-2": " Another series",
"14508-1": " total protection",
"775-1": " Last Bow",
"213-1": " much later stage",
"8184-1": " beach side",
"10924-1": " ellipse shape",
"10037-1": " solid design",
"9980-1": " washing machine",
"1752-2": " immediate vicinity",
"11701-2": " Extra attention",
"9101-2": " second push",
"14938-1": " unexpected jump",
"2772-2": " furthest distance",
"14733-2": " urgent medical care",
"13959-1": " another stop",
"4449-2": " major use",
"6720-2": " integral element",
"13853-1": " past experience",
"2132-1": " also a large part",
"4327-1": " increased presence",
"3355-2": " minimal development",
"14398-2": " mother's involvement",
"5423-1": " small field",
"4653-2": " silver fabric",
"1134-2": " pay attention",
"9537-2": " major appeal",
"14184-1": " 13th person",
"10270-1": " acute risk",
"11259-1": " second",
"1446-1": " quick run",
"3727-1": " general motion",
"3390-1": " narrow waist",
"9136-1": " primary tool",
"7576-1": " visual scene",
"8166-2": " least some degree",
"10612-1": " third hour",
"13147-1": " major institution",
"13532-1": " Another explanation",
"8353-1": " major assets",
"10970-1": " swell part",
"239-2": " medium depth",
"1381-1": " power peak",
"2599-1": " first known case",
"9987-1": " great degree",
"1646-2": " future child",
"4113-2": " water and air transport",
"3236-1": " associated track",
"12545-2": " Boiling water",
"11779-1": " equivalent strength",
"13685-1": " Christmas break",
"13533-2": " 5 point",
"9912-1": " true sense",
"13715-1": " principal civil court",
"10820-1": " final state",
"6262-2": " new partition",
"13327-2": " general way",
"9535-1": " parlor trick",
"7834-1": " major prize",
"8234-1": " local policy makers",
"11191-2": " better quality",
"1811-2": " tremendous impact",
"8363-2": " cold rooms",
"6525-1": " small windscreen",
"1415-1": " major priority",
"3961-1": " remaining force",
"11885-1": " maximum period",
"8948-1": " driving experience",
"10394-1": " set time. In this model, the viewer cannot fast forward through the programming or choose to watch it at a later time",
"5249-1": " original format",
"4650-1": " vertical range",
"7116-2": " diagonal pattern",
"3356-1": " hand positions",
"4766-1": " environment problem",
"8438-2": " sporadic usage",
"14368-2": " confrontational attitude",
"1782-2": " special way",
"9911-2": " unforeseen development",
"2824-1": " expected increase",
"1828-2": " power imbalance",
"5693-2": " better manner",
"8376-1": " new window",
"9703-1": " major international sporting events",
"10017-2": " adequate preparation",
"4957-1": " great shame",
"7115-1": " almost any kind",
"4253-2": " upward curve",
"3233-2": " service period",
"6960-1": " little thought",
"3188-2": " Every score",
"14358-1": " perceptible change",
"1614-2": " leg brace",
"7299-2": " open framework",
"3163-2": " annual release",
"14254-2": " long distance journeys",
"11843-1": " much larger group",
"12871-2": " realistic situation",
"12527-1": " important function",
"11893-1": " greater power",
"10427-1": " exclusive source",
"3046-1": " writer's view",
"8592-1": " large load",
"8089-2": " political and social system",
"10824-1": " business permit",
"14628-1": " suitable period",
"13085-2": " excessive attention",
"7170-2": " built-in function",
"11386-2": " clear competition",
"3198-1": " vast field",
"13302-2": " + sign",
"7261-1": " next block",
"14395-2": " imported fuel",
"9265-1": " key points",
"7726-1": " fantastic performance",
"13284-2": " occupied land",
"10442-1": " attack formation",
"4486-2": " continuing loss",
"3921-1": " First Colony",
"8590-1": " individual's wealth",
"1374-2": " heavy support",
"294-2": " next tier",
"14579-1": " group's profile",
"13185-2": " far higher figure",
"2372-1": " alternative stage",
"13115-2": " gray background",
"4232-1": " frequent site",
"8279-2": " Great emphasis",
"12707-2": " entire way",
"7432-2": " Population levels",
"5319-2": " potential place",
"4230-1": " common program",
"10389-1": "deep hole",
"10873-2": " start and end points",
"14888-2": " increased adoption",
"14884-2": " perceived role",
"1320-1": " much emphasis",
"537-1": " real opportunities",
"908-1": " 2004 year",
"1332-1": " key indicators",
"4225-1": " next highest frequency",
"9934-2": " small association",
"4144-2": " usual manner",
"7526-1": " bad effect",
"11544-2": " U.K. branch",
"5826-1": " marine life",
"5816-2": " strong trend",
"14475-2": " distinct period",
"13686-1": " real pensions",
"14938-2": " unexpected jump",
"3534-2": " second shoe",
"13356-1": " growing debt",
"5247-2": "new machine",
"12703-1": " appropriate time",
"6031-2": " political sense",
"4671-2": " red state",
"12138-1": " drainage channel",
"5707-2": " final theory",
"8125-2": " similar approach",
"354-1": " 16% grade",
"14268-2": " main element",
"13445-2": " four-month trial",
"4293-2": " increasing damage",
"13020-1": " practical limit",
"6284-1": " family cohesiveness",
"10647-2": " real opportunity",
"3591-1": " simple point",
"10323-2": " extension cord",
"4836-1": " personal goal",
"3428-1": " government decisions",
"3898-1": " Dream state",
"13771-1": " technical limitation",
"5056-2": " recent character",
"4973-1": " unwelcome competition",
"698-2": " truly verify",
"2219-2": " first indication",
"3842-2": " federal government employees",
"10815-2": " maximum field",
"3596-1": " certain resistance",
"12682-1": " greater tendency",
"6841-1": " back end",
"8042-2": " fellow division",
"5762-1": " rigorous sense",
"10278-2": " single offer",
"14556-2": " latest batch",
"13036-2": " color palettes",
"10640-2": " rarer use",
"14132-2": " one chart",
"9297-2": " clear position",
"2859-2": " command language",
"1039-2": " sure way",
"3049-2": " separate office",
"8746-2": " additional advantage",
"7346-2": " government quarters",
"7767-2": " first crack",
"4258-1": " short term",
"3662-1": " Two date",
"2748-2": " spot fines",
"4226-1": " great financial strain",
"6416-2": " increased travel",
"14863-2": " little difference",
"9319-1": " visible indication",
"9609-2": " secret channel",
"5228-2": " continuous source",
"13198-1": " fuel suppliers",
"6822-2": " moderate level",
"9974-1": " official record book",
"12269-2": " legal title",
"13793-1": " huge significance",
"11268-1": " increased energy",
"8902-2": " deep cuts",
"12206-2": " front foot",
"1156-2": " German man",
"3836-2": " high significance",
"4272-1": " urgent business",
"14018-2": " major firms",
"8480-2": " opposite manner",
"6731-2": " ideal time",
"5406-1": " considerable media speculation",
"6665-2": " vital area",
"5405-1": " accurate result",
"14235-1": " valid form",
"1060-2": " approximately 80,000 people",
"8054-2": " proposed action",
"4067-2": " newer machine",
"1932-2": " powerful tool",
"1937-2": " resulting course",
"8414-1": " typical arrangement",
"12452-1": " tougher time",
"3530-1": " Another key difference",
"1188-1": " another major challenge",
"8616-1": " neighbouring states",
"12951-1": " substantial level",
"6330-1": " One popular example",
"14935-1": " sole goal",
"6757-1": " Power authorities",
"5036-2": " interesting difference",
"4907-1": " Preseason Poll",
"9074-1": " mischievous smile",
"4930-2": " newest form",
"5164-1": " enhanced sense",
"4846-1": " positive interest",
"7570-1": " total support",
"1229-1": " fixed resolution",
"6015-2": " one interview",
"14257-2": " one-hour ride",
"11273-1": " foot pedal system",
"6582-1": " last minute loss",
"7666-1": " \"de facto\" relationship",
"1304-2": " unknown length",
"9864-2": " Membership application",
"2966-2": " comprehensive plan",
"2945-2": " rigid system",
"3309-2": " contact centre",
"7530-2": " routine work",
"4783-2": " specific need",
"10424-1": " overwhelming effect",
"5926-1": " third plane",
"14541-2": " single sentence",
"6448-2": " two major positions",
"2072-1": " neutral third party",
"7356-1": " general access",
"8798-2": " much greater emphasis",
"3159-2": " large structure",
"4870-2": " respective position",
"2898-2": " acute risk",
"10969-2": " second advance",
"9692-1": " support personnel",
"2568-1": " Another step",
"447-2": " wind swirling",
"12711-2": " win part",
"2920-1": " excessive roughness",
"539-2": " entire product",
"4504-1": " false bottom",
"6334-1": " initial emphasis",
"14332-1": " actual amount",
"12141-1": " useful travel distance",
"1490-2": " 2013 law",
"13957-1": " three-minute limit",
"6509-2": " strong competition",
"2832-1": " lower level",
"2626-2": " service bureau",
"10379-1": " third body",
"1526-2": " internal function",
"3485-1": " controlled production",
"9748-1": " versatile set",
"6499-2": " socialist state",
"1393-2": " tough position",
"11334-1": " tense exchange",
"10640-1": " rarer use",
"9962-2": " arrival point",
"14168-2": " real spending",
"7595-2": " conspiratorial plot",
"4075-1": " former event",
"11150-1": " near impossibility",
"7178-1": " site improvements",
"5007-1": " one bystander",
"10329-2": " boiling point",
"14330-2": " resulting block",
"11048-2": " cultural event",
"12270-2": " confrontational attitude",
"11642-2": " controversial one",
"1289-1": " single level",
"13249-2": " original project design",
"9453-2": " several near misses",
"691-1": " Property use",
"10481-1": " less than half that number",
"2205-2": " extant building",
"4916-2": " voluntary consent",
"2403-1": " welcoming gesture",
"6655-2": " another ministerial post",
"3310-2": " one-time operation",
"1387-1": " isolated part",
"8291-1": " adjacent image",
"1054-2": " key factor",
"14769-2": " whole spectrum",
"5557-1": " popular mode",
"12196-1": " street address",
"14016-2": " total count",
"12063-1": " far greater number",
"13353-2": " partial support",
"873-2": " number one factor",
"13780-1": " 11-year-old sister",
"10105-2": " closing device",
"2574-1": " almost no chance",
"9673-1": " reasonable rate",
"4945-1": " leading event",
"334-1": " older account",
"1684-2": " humane approach",
"2448-2": " Real Alternative",
"2240-2": " big number",
"6403-2": " outside pressure",
"1549-1": " elaborate presentation",
"8040-1": " product processes",
"7301-1": " early warning system",
"12402-1": " temporal wealth",
"959-2": " Northeast India route",
"5123-2": " local water",
"6473-2": " high end smartphone",
"4753-2": " live chickens",
"9940-2": " former shape",
"12331-1": " proportionate increase",
"5260-1": " chronic use",
"14548-2": " substantial evidence",
"1609-2": " general manner",
"7300-2": " clear belief",
"5237-2": " training ground",
"4017-2": " marginal form",
"6142-2": " predetermined set",
"1911-1": " popular issue",
"275-1": " collection agency",
"14150-2": " key determining factors",
"9912-2": " true sense",
"13865-2": " highest place",
"7700-1": " principal types",
"1023-1": "Deep Burial",
"12394-2": " one impact",
"11187-2": " proper manner",
"6174-2": " ground inspections",
"9698-2": " examination room",
"12047-1": " 4 series",
"12647-2": " strong business",
"6062-1": " One early version",
"14510-2": " one or two nights",
"14930-1": " major bones",
"13613-1": " upper order",
"14874-1": " middle ground",
"12772-2": " assembled people",
"5837-1": " exact sentence",
"12389-1": " single machine",
"5763-2": " political function",
"1318-1": " revolutionary design",
"11584-1": " primary object",
"11211-1": " real competition",
"5545-1": " another race",
"9841-1": " increasing space",
"4985-2": " opposite manner",
"6640-1": " irreversible damage",
"10705-2": " case system",
"5809-1": "perfect example",
"10508-2": " classical system",
"7635-2": " old practice",
"7349-1": " real claim",
"8838-1": " another head",
"14274-2": " wider War",
"6959-1": " principal contribution",
"6105-1": " full-time use",
"14863-1": " little difference",
"1702-1": " little respect",
"5181-1": " major sections",
"1604-2": " one channel",
"11360-2": " substantial amount",
"435-1": " full cover",
"6636-2": " poor state",
"14790-1": " overwhelming result",
"9366-2": " heightened arousal",
"2373-1": " appropriate quality",
"1391-1": " local government entities",
"1808-1": " also part",
"5593-2": " strong progress",
"502-1": " technology career",
"3711-2": " frontal part",
"11491-1": " ordinary material",
"11813-1": " sudden need",
"7581-1": " later sale",
"14584-1": " positive test results",
"8928-2": " current type",
"10513-1": " new system",
"10755-1": " authority figures",
"167-2": " similar relation",
"7303-1": " either event",
"12332-2": " large installation",
"5941-1": " slight delay",
"6660-2": " physical appearance",
"1334-1": " dissolution process",
"6046-2": " focal person",
"3350-1": " specified geographical area",
"14310-2": " unemployment rates",
"8773-1": " ecumenical association",
"12730-1": " shorter amount",
"8531-2": " psychiatric care",
"11945-1": " total sum",
"7382-1": " early type",
"9430-2": " around one hour",
"6345-2": " chief effect",
"6276-1": " one escort",
"3321-1": " smaller area",
"289-2": " mass amount",
"8037-2": " execution time",
"11180-1": " five branch offices",
"5225-2": " individual action",
"9545-2": " rich world",
"9578-1": " enlarged scale",
"11773-2": " larger prize",
"5058-2": " subsequent failure",
"14879-1": " important value",
"11919-2": " beneficial effect",
"4094-2": " nearby club",
"1441-2": " whole movement",
"4022-1": " collection service",
"13776-1": " actual version",
"9888-1": " wider spread",
"10975-2": " maintenance work",
"4903-1": " official state",
"4619-1": " landing point",
"8969-1": " field teams",
"11257-2": " robust design",
"7531-1": " prior case",
"5357-1": " given block",
"4093-2": " improved one",
"5887-2": " anticipated use",
"12349-2": " direct compensation",
"13248-2": " thick syrup",
"12982-1": " another government",
"10045-2": " whose interest",
"7559-2": " strong assumption",
"5021-1": " smooth one",
"10020-2": " less than one kilometer",
"12789-2": " pecuniary interest",
"9860-1": " holy stone",
"8311-1": " possible sign",
"4296-1": " key sites",
"8173-2": " real audience",
"10158-2": " feeding position",
"7993-1": " multiple people",
"6112-1": " actual statement",
"5777-2": " central pool",
"3822-1": " major opportunities",
"9722-1": " main attention",
"13210-2": " next rule",
"13989-2": " partner network",
"6137-1": " different room",
"13760-1": " broader organization",
"2445-2": " agency workers",
"9284-2": " official authority",
"2235-1": " one small area",
"10822-1": " additional increase",
"3239-1": " head portion",
"525-2": " one youth",
"8389-2": " final disappearance",
"415-1": "utter dismay",
"12917-2": " dragon's tail",
"10216-2": " narrowest definition",
"6548-2": " better batch",
"2309-1": " political charge",
"7883-2": " broad group",
"5467-2": " monetary value",
"14248-2": " changing direction",
"1642-2": " existing practice",
"8351-1": " second cut",
"9740-2": " scientific comparison",
"4030-2": " offshore structure",
"6736-1": " one stage",
"4594-2": " production machines",
"14541-1": " single sentence",
"1320-2": " much emphasis",
"12645-1": " strong hand in the managing of every affair, making many decisions himself. Historians credit Lloyd George with providing the driving energy",
"3086-2": " original focus",
"8098-1": " least the age",
"8252-1": " one word",
"1208-2": " possible way",
"5975-2": " one-day competition",
"13017-1": " every other couple",
"5368-1": " major impacts",
"12923-2": " frequent basis",
"13711-2": " One street",
"12255-1": " certified member",
"13089-2": " material claims",
"11254-1": " one's home",
"1162-1": " later piece",
"11396-2": " U.S. candidates",
"14973-2": " greater contrast",
"14032-1": " good account",
"3299-1": " heavy bag",
"4761-1": " low commitment",
"2657-2": " unexpected visit",
"12842-2": " central stage",
"12143-2": " high evaluation",
"1776-1": " Every couple",
"9787-1": " event type",
"6051-1": " outstanding achievements",
"3252-2": " initial record",
"12531-1": " lung capacity",
"4007-1": " large glass",
"4631-1": " previous connection",
"6667-1": " announced aim",
"2359-1": " illegal seizure",
"492-2": " enough protection",
"14462-1": " major importance",
"9231-2": " first pass",
"2145-1": " personal power",
"6401-2": " top centre",
"7835-2": " key importance",
"7085-1": " One such instance",
"8653-2": " contractual right",
"6817-2": " Local Groups",
"8157-2": " telephone number",
"12427-2": " last line",
"4063-1": " common basis",
"11211-2": " real competition",
"8147-1": " sizable array",
"9108-1": " complete model",
"7234-2": " major defects",
"5422-1": " organised sport",
"9744-1": " offensive manner",
"13645-1": " 6 position",
"7947-2": " particularly strong association",
"5924-2": " federal or state law",
"1619-1": " prolonged absence",
"5801-2": " specific section",
"8052-1": " greatest access",
"2661-2": " pre-determined period",
"8484-2": " set point",
"10133-1": " even one copy",
"7047-1": " proper law",
"3922-1": " local figure",
"7687-1": " perfect body",
"9947-1": "Old number",
"3468-1": " like manner",
"1775-1": " potential exposure",
"7810-2": " physical access",
"14321-2": " possible need",
"13791-2": " time",
"3211-1": " Home Inspector",
"3329-2": " neighboring state",
"6990-2": " original word",
"10068-1": " paired set",
"11922-2": " particular job",
"10415-1": " positive experience",
"6835-1": " subsequent sale",
"7641-1": " ship owner",
"11402-1": " good overall health",
"4010-1": " passive activities",
"9975-1": " general consideration",
"3677-1": " current look",
"1784-1": " smaller coverage",
"508-2": " United States case",
"2070-1": " company cars",
"6208-1": " emerging growth",
"11010-2": " decisive test",
"10799-1": " key points",
"13019-1": " grain farming",
"12311-1": " reflection time",
"14416-2": " mass distribution",
"3590-2": " first step",
"7266-2": " mathematical basis",
"13748-1": " Relative's Place",
"3743-1": " Homecoming ceremony",
"4424-1": " altered production",
"636-1": " small sign",
"9123-1": " correct information",
"9621-1": " political and economic difficulty",
"8191-2": "general nature",
"1285-2": " main one",
"2518-2": " similar material",
"8283-2": " common program",
"5181-2": " major sections",
"2755-2": " popular type",
"14520-1": " average person",
"11693-1": " every statement",
"7748-2": " government schemes",
"10998-1": " regular period",
"11637-1": " identical volume",
"1580-1": " concerted action",
"8260-2": " high-pitched voice",
"4716-1": " real nature",
"8621-2": " general character",
"8870-1": " local figure",
"14757-2": " official age",
"2653-2": " past several days",
"11750-2": " Another major threat",
"2106-2": " principal value",
"8628-1": " established place",
"14180-1": " even the ability",
"13003-1": " red appearance",
"969-2": " official estimate",
"2312-1": " local residences",
"1108-1": " life values",
"2740-2": " either form",
"9603-2": " virtually every major issue",
"6315-2": " Similar action",
"8319-2": " infamous role",
"1461-1": " ecological damage",
"8293-2": " single life",
"3562-2": " strong force",
"9759-2": " present stage",
"7847-1": " three time periods",
"9004-2": " weak situation",
"5486-1": " land ideal",
"2704-2": " client base",
"11053-1": " governor's approval",
"5465-1": " joint movement",
"4208-2": " community contributions",
"3302-2": " complex array",
"14380-2": " small grassy area",
"4770-1": " best defense",
"1742-1": " one quality",
"5917-1": " principal difficulty",
"1193-2": " everlasting life",
"9909-2": " orderly manner",
"14830-2": " direct means",
"7244-2": " 1997 figure",
"6057-2": " exact size",
"651-2": " escape path",
"3302-1": " complex array",
"8385-1": " complex way",
"14049-1": " short stopover",
"11495-1": " written number",
"9086-1": " various body parts",
"14806-2": " ancient way",
"15018-1": " antagonistic attitude",
"7246-1": " average dose",
"1100-1": " main process",
"4520-2": " \"concrete\" evidence",
"3305-1": " better match",
"6382-2": " aloof attitude",
"5730-2": " strong association",
"14012-2": " accurate reproduction",
"4504-2": " false bottom",
"14543-1": " former function",
"2707-1": " another statement",
"3800-1": " jumping off point",
"1217-1": " separate top",
"12828-1": " money value",
"2297-1": " catastrophic explosion",
"9635-1": " One complaint",
"12852-2": " actual work",
"214-1": " jumping off point",
"13724-1": " aforementioned role",
"9054-1": " another dog",
"12686-1": " final change",
"4291-1": " best one",
"13972-2": " efficient way",
"4133-2": " entire channel",
"7278-1": " control activity",
"2404-2": " principal purpose",
"2524-1": " crazy man",
"12536-1": " standing man",
"2476-2": " dramatic change",
"14893-2": " normal height",
"6511-2": " delicate matter",
"688-2": " longest-running series",
"13626-1": " time efficiency",
"11088-2": " price advantage",
"7920-1": " half the area",
"8881-1": " original channel",
"13287-1": " rare record",
"3707-1": " network's Web site",
"7554-1": " standard division",
"10643-2": " latter design",
"10877-1": " commercial extension",
"9875-1": " unequal size",
"9871-1": " horse carts",
"12652-1": " repair round",
"10604-1": " different quality",
"10813-2": " user community",
"9868-1": " humiliating treatment",
"847-2": " active person",
"7626-1": " reasonable limit",
"6240-1": " nice look",
"4855-2": " best period",
"7824-1": " major recognition",
"11586-2": " fringe areas",
"8839-2": " direct source",
"12127-1": " film material",
"12196-2": " street address",
"7644-2": " one million children",
"8158-2": " protection details",
"765-2": " traditional dress code",
"9275-1": " low ground cover",
"14121-1": " local farmers",
"558-2": " historical heritage",
"11430-1": " half the weight",
"3982-1": " top-left corner",
"12118-2": " clear signs",
"13260-1": " greater audience",
"1592-1": " regular period",
"10320-2": " higher floor",
"788-1": " size limits",
"14741-2": " relatively early stage",
"5285-1": " largest edition",
"7515-1": " first recourse",
"12357-1": " deeper connection",
"6471-1": " larger body",
"4734-1": " magical water",
"14300-2": " little more than a month",
"11315-2": " constant level",
"13387-2": " Guest Book",
"8159-1": " well-developed network",
"9474-2": " bonding process",
"8765-1": " central reason",
"11786-2": " pointy shape",
"11204-1": " complete copy",
"14881-1": " military might",
"8167-1": " southeastern side",
"246-2": " American engagement",
"15006-2": " ninth month",
"2789-1": " policy framework",
"9349-1": " violent outburst",
"2198-2": " class attendance",
"4764-1": " whole scene",
"9337-1": " small power",
"5391-2": " latter third",
"7841-2": " financial standing",
"5142-2": " work loads",
"5209-1": " primary function",
"4617-2": " interesting event",
"14977-1": " special symbol",
"601-2": " design concepts",
"4069-2": " 1998 edition",
"13279-1": " special command",
"1418-1": " additional presence",
"1953-2": " large spread",
"5222-1": " stiff leg",
"7910-2": " local departments",
"10179-1": " sole appearance",
"2007-1": " parents' visit",
"14499-2": " outspoken member",
"2293-2": " frontal part",
"2777-2": " world's attention",
"6710-2": " 10,000 population",
"12820-1": " integrated network",
"14148-2": " home ice",
"2406-2": " business one",
"14711-1": " ones place",
"3127-2": " outside corner",
"5283-1": " known example",
"5278-2": " one highlight",
"449-2": " low population",
"6151-2": " minor way",
"5457-2": " continued practice",
"4697-2": " little shade",
"5467-1": " monetary value",
"12916-2": " overall experience",
"4580-1": " heavy object",
"7612-2": " positive sense",
"10344-2": " tough situation",
"12358-1": " common support",
"9798-1": " surrounding nature",
"6358-2": " ultimate transfer",
"6891-1": " lower likelihood",
"11955-1": " unwanted direction",
"2544-2": " local action",
"12041-2": " educational function",
"815-1": " cost cuts",
"2447-2": " pressing need",
"9693-2": " commercial material",
"6296-1": " particular attention",
"9362-1": " new damage",
"3849-1": " summary view",
"3260-1": " test questions",
"5182-2": " full extent",
"6892-1": " local scenes",
"12743-2": " highest total number",
"4033-1": " 290 people",
"13316-2": " whatever title",
"4404-2": " private communication",
"10829-2": " every level",
"1330-2": " quick change",
"1710-2": " large viewing audience",
"13103-2": " military task",
"1449-2": " possible creation",
"9150-1": " group life",
"7348-1": " last two lines",
"5079-1": " greater share",
"10013-2": " One known case",
"1092-1": " main motivation",
"11489-1": " big investment",
"7442-1": " one realm",
"4291-2": " best one",
"2338-1": " earlier speculation",
"2539-1": " three-year survey",
"7962-2": " proper approval",
"2346-2": " overall success",
"14082-2": " greater magnitude",
"8441-1": " overall network",
"1117-2": " house door",
"3893-1": " essentially the same place",
"3986-2": " specialized system",
"4080-1": " basic response",
"10122-1": " cliff top",
"4911-1": " total fertility rate",
"4965-1": " increasing population",
"14227-1": " correct version",
"5263-2": " certain tree",
"8078-1": " accepted definition",
"10977-1": " second development",
"895-2": " key function",
"330-1": " necessary component",
"13511-2": " decreased population",
"9896-1": " court committee",
"134-2": " informal way",
"12889-1": " roughly 300 people",
"12385-2": " large grey letters",
"10419-2": " earthly day",
"9258-1": " stellar map",
"11373-1": " sea air",
"1536-2": " meeting minutes",
"12403-1": " particular subject",
"7377-1": " main approach",
"4204-2": " One such series",
"8574-1": " major task",
"7170-1": " built-in function",
"1880-2": " lightning conductors",
"13996-1": "back door",
"530-1": " local scenes",
"4114-1": " beautiful one",
"9808-2": " buying process",
"3659-1": " little over a quarter",
"4619-2": " landing point",
"6018-2": " Live Round",
"13115-1": " gray background",
"7933-2": " header section",
"5132-1": " native origin",
"5305-2": " public work",
"5882-2": " every claim",
"6468-2": " natural material",
"5234-1": " declared intention",
"9605-2": " much less protection",
"14592-1": " One policy",
"8329-1": " real estate company",
"10931-2": " impressive array",
"6025-1": " popular fair",
"6471-2": " larger body",
"5603-1": " Counting time",
"14557-1": " man's face",
"10706-1": " play structure",
"12641-2": " natural influence",
"13219-1": " bench role",
"7219-1": " senior care facilities",
"6615-1": " often-cited example",
"12342-1": " second exchange",
"4990-2": " imminent loss",
"834-1": " specialised type",
"3861-1": " one pack",
"12026-1": " people's vote",
"13349-1": " resource area",
"14957-1": "Facial protection",
"8518-2": " ideal preparation",
"2769-2": " huge number",
"5977-2": " exact result",
"12105-1": " death sentence",
"12236-2": " general account",
"4811-2": " another color",
"462-1": " average cost",
"10491-1": " another colony",
"7690-1": " highly dangerous activity",
"4756-1": " direct effect",
"220-2": " iron ceiling",
"12697-2": " work capacity",
"4533-1": " even its existence",
"13491-1": " little or no difficulty",
"1829-2": " feasible limit",
"3732-2": " Broad Street site",
"570-2": " short hair",
"3988-1": " classical model",
"9885-1": " personal transportation",
"6342-2": " witness statements",
"1886-2": " sole contribution",
"10388-2": " emotional significance",
"9702-2": " growing impact",
"3643-2": " unimpeded access",
"6919-1": " little association",
"684-2": " subsequent round",
"12384-1": " dynamic approach",
"13557-2": " flickering effect",
"183-1": " floral pattern",
"4164-2": " distant history",
"11799-1": " air phase",
"12275-1": " 3D series",
"2064-2": " increasing damage",
"6502-2": " rank number",
"8987-2": " group support",
"4924-2": " similar strength",
"742-1": " business section",
"4629-1": " black type",
"2619-1": " primary suggestion",
"6460-2": " direct blow",
"11747-2": " older person",
"11-1": " deep brown",
"13450-1": " round trips",
"8364-1": " final collapse",
"5596-2": " gloved hand",
"4097-2": " marketing activity",
"4826-1": " Drug abusers",
"3116-1": " ball field",
"159-2": " neighboring state",
"1401-1": " key piece",
"3945-2": " expert witness testimony",
"3134-1": " brothers' release",
"8224-1": " lead line",
"7163-2": " international register",
"14396-1": " kneeling position",
"6815-1": " standard position",
"2876-2": " careful review",
"998-1": " modern state",
"4732-1": " unnecessary risk",
"7275-2": " suitable foundation",
"13444-2": " principal elements",
"3780-1": " intended result",
"11660-2": " favourable attention",
"6643-1": " restless energy",
"1986-2": " whose response",
"11954-1": " migration path",
"2944-2": " careful control",
"3230-1": " opera glass",
"11117-1": " bad practice",
"7008-1": " obvious sign",
"4691-1": " electric organ",
"12347-1": " secession group",
"10861-1": " faster transportation",
"13358-2": " Intended usage",
"10157-1": " actual control",
"4848-2": " long length",
"3468-2": " like manner",
"14802-1": " quick way",
"7188-2": " three times the original estimate",
"14818-2": " relative nature",
"5229-1": " strenuous work",
"10732-2": " finish date",
"6522-2": " appropriate usage",
"10309-1": " slightly higher frequency",
"7832-2": " adjoining area",
"10694-2": " widespread trend",
"10930-1": " clean air",
"8833-1": " culling process",
"7593-2": " bigger field",
"9255-2": " near destruction",
"4440-2": " careful attention",
"13915-1": " distinct character",
"9699-1": " important one",
"2026-2": " near future",
"6494-1": " cyclic basis",
"11977-1": " feminine image",
"3829-1": " primary target group",
"3736-1": " limited impact",
"14268-1": " main element",
"3945-1": " expert witness testimony",
"1071-2": " subsequent isolation",
"14606-2": " firm surface",
"3568-1": " large geographical region",
"3195-2": " vast space",
"13283-1": " popular approach",
"14894-1": " common occurrence",
"12405-1": " increased level",
"6044-2": " safety considerations",
"8783-2": " historical point",
"8200-2": " competent use",
"5698-1": " modern variant",
"12206-1": " front foot",
"1649-1": " Thompson's group",
"14203-1": " quick check",
"11213-2": " brown room",
"6532-2": " partial power",
"5604-2": " enough security",
"5483-1": " online search results",
"10086-1": " certain line",
"14116-1": " fitting name",
"4287-1": " undocumented population",
"8110-1": " previous edition",
"9894-2": " first flush",
"1421-2": " first crack",
"776-1": " high count",
"12916-1": " overall experience",
"2213-2": " massive production",
"13948-2": " current position",
"10830-1": " potential power",
"2580-1": " male companion",
"2895-1": " orange tip",
"2883-2": " likely manner",
"6070-1": " initial size",
"4420-2": " important desire",
"12743-1": " highest total number",
"7896-2": " traffic cones",
"3698-1": " previous capacity",
"14055-2": " better value",
"10891-2": " steep angle",
"14967-1": " small field",
"4082-1": " lower-priced substitute",
"3668-2": " robust way",
"6797-2": " every structure",
"2174-1": " one interview",
"4539-2": " large model",
"8712-2": " Debt instruments",
"212-2": " real clarity",
"8811-2": " external view",
"2770-1": " related question",
"137-1": " competing brand",
"14384-1": " little or no ability",
"1680-1": " 2000 edition",
"7715-1": " third incarnation",
"6769-2": " last two weeks",
"1329-2": " hospital emergency room",
"886-2": " popular stage",
"6729-1": " 1% lead",
"5946-2": " general rule",
"2630-1": " first transfer",
"5064-1": " 3 year",
"10773-2": "One lad",
"3157-2": " new force",
"13556-2": " next couple weeks",
"13002-1": " last hours",
"12712-1": " prominent projection",
"12140-1": " different sum",
"8724-2": " widespread presence",
"7458-2": " human body",
"14647-2": " steady amount",
"6949-1": " critical tool",
"7374-1": " pivotal scene",
"10548-1": " high figure",
"13616-2": " exceptional group",
"8602-2": " latter form",
"9397-1": " orthopedic boot",
"4647-1": " obstructed view",
"11629-2": " entire channel",
"12490-1": " day care",
"6611-1": " correct assessment",
"12671-2": " brief trip",
"5787-1": " first golden age",
"13133-2": " weight transfer",
"1043-2": "Assembly process",
"4336-1": " couple members",
"2589-2": " overall rate",
"14178-1": " open presence",
"12539-1": " prior existence",
"14676-2": " true knowledge",
"2151-1": " recommended level",
"3017-1": " first and only track",
"10330-2": " calendar year basis",
"12792-2": " seed organization",
"7405-2": " strong, clear voice",
"8130-2": " good point",
"12921-2": " national construction projects",
"5094-1": " recent rise",
"8546-1": " clear span",
"11310-1": " specially designed box",
"10784-1": " drastic difference",
"11883-1": " key architects",
"1424-1": " deep cleaning",
"68-1": " right spot",
"1992-2": " earlier disappearance",
"7127-1": " true commercial production",
"2576-2": " major way",
"6030-2": " drum design",
"13099-2": " poor water drainage",
"10906-1": " actual invasion",
"11992-1": " light tap",
"6719-1": " military means",
"9458-2": " lower right side",
"3830-1": " last countries",
"7591-1": " nearest thing",
"5542-1": " thorough understanding",
"10411-1": " beginning steps",
"12478-1": " European aide",
"12387-2": " greatest service",
"14893-1": " normal height",
"8906-2": " gap formation",
"7282-2": " T-shaped structure",
"12381-2": " low likelihood",
"3278-2": " true nature",
"1498-1": " good locations",
"567-1": " wrong ball",
"2399-1": " children's engagement",
"4582-2": " best known version",
"9078-1": " Strategic Planning Department",
"3646-2": " Deep Dive",
"10515-2": " main profession",
"9705-1": " important spot",
"3740-1": " official returns",
"2153-1": " One good example",
"5967-2": " general manner",
"13660-2": " release effort",
"10452-1": " fast movements",
"8922-2": " help request",
"14507-1": " little or no time",
"4926-1": " normal heart",
"9437-1": " particular design",
"12162-2": " around the time",
"3676-1": " future return",
"2391-2": " slightly better quality",
"1012-2": " key description",
"4954-1": " elaborate ornamentation",
"92-2": " Consistent use",
"9501-1": " successful marriage",
"5006-2": " deep integration",
"12719-1": " upper corner",
"3257-1": " narrow gaps",
"3445-2": " ample depth and sonority despite the elegant, soft quality",
"7651-2": " larger impact",
"4432-2": " planned date",
"3666-1": " endless cycle",
"8015-1": " first entrance",
"7180-1": " One distinctive aspect",
"1617-1": " last iteration",
"8534-1": " previous release",
"5952-1": " imminent loss",
"11947-2": " learning level",
"9076-1": " poor distribution",
"5324-2": " especially important role",
"8219-1": " central process",
"14826-2": " short edge",
"1970-1": " popular inclusion",
"6477-1": " popular topic",
"1354-2": " proper ability",
"11105-1": " equitable distribution",
"10053-1": " nearly two and a half centuries",
"13440-2": " lengthy Facebook post",
"3741-2": " sparse nature",
"11139-2": " delicate balance",
"12262-2": " privately owned company",
"6919-2": " little association",
"5216-2": " limited local resources",
"12421-2": " first Blood",
"457-1": " Recreational program",
"5792-2": " local ones",
"1773-1": " economic damage",
"9311-1": " continued criticism",
"2444-2": " current altitude",
"6533-1": " largest difference",
"14115-1": " huge problem",
"7846-2": " temporary residence",
"4623-1": " late part",
"9064-1": " universal way",
"12865-1": " slightly smaller size",
"8170-2": " film exhibition",
"3854-1": " good leader",
"8487-2": " incoming calls",
"8952-1": " local melting",
"7385-2": " clear distinctions",
"4320-2": " final meeting",
"10973-2": " dry day",
"2040-2": " shorter term",
"9537-1": " major appeal",
"657-1": " doctor's visit",
"13209-1": " low side walls",
"5250-1": " actual fact",
"10248-2": " noticeable impact",
"2632-1": " last 2 months",
"9773-1": " creative style",
"5608-2": " first documented example",
"2976-1": " sudden force",
"12549-1": " local operations",
"7037-1": " approximately 1,300 people",
"14294-2": " next scheduled event",
"6172-1": " unit weight",
"8844-2": " desired role",
"14744-2": " zigzagging path",
"14570-2": " negative manner",
"14347-1": " whole scene",
"9152-2": " singular role",
"14160-1": " strong social element",
"2852-1": " whose campaign",
"10802-1": " preferred number",
"7014-2": " one interview",
"8488-1": " poor verbal skills",
"4454-2": " clear influence",
"5447-2": " quality standards",
"6169-1": " security doors",
"573-2": " grave danger",
"13378-1": " surface vegetation",
"11071-2": " secondary concern",
"12950-1": " even period",
"6960-2": " little thought",
"7440-1": " fierce resistance",
"10988-1": " previous one",
"10048-1": " almost the exact amount",
"2684-1": " negligible impact",
"13946-2": " conservative nature",
"12354-2": " sports utility vehicle",
"662-1": " continued criticism",
"1080-2": " declining amount",
"11487-2": " plain matter",
"3060-1": " first acknowledged use",
"964-2": " numerous local clubs",
"12348-2": " open wounds",
"2275-2": " existing history",
"6033-1": " support capacity",
"2232-1": " least some piece",
"269-2": " first glass",
"9077-1": " modern developments",
"8034-2": " summer season",
"7171-2": " sustained attention",
"4292-2": " significant history",
"2287-1": " one extension",
"1497-2": " one interview",
"10159-1": "Draft Beer",
"8932-1": " politically conscious population",
"4437-1": " group meeting",
"8898-2": " major steps",
"14758-2": " predecessor society",
"490-1": " arbitrary people",
"1954-1": " non-blind individuals",
"5922-1": " visible effect",
"13387-1": " guest book",
"14177-1": " General Course",
"7274-1": " national one",
"11603-2": " flat tone",
"2083-1": " impending violence",
"4176-1": " existing development",
"1789-1": " limited form",
"7342-1": " local squadrons",
"7969-1": " storage methods",
"7897-2": " second tablet",
"12726-2": " test tubes",
"8691-1": " established practice",
"2351-2": " total capacity",
"1908-1": " even the degree",
"11453-1": " cycle length",
"362-2": " gainful activity",
"8801-2": " normal pattern",
"3969-1": " broad view",
"3777-2": " Survey Group",
"7910-1": " local departments",
"3797-2": " slow loss",
"468-1": " chief one",
"10413-2": " utter lack",
"13074-2": " direct recipients",
"6937-2": " reported relationship",
"11917-1": " rare occurrence",
"10139-1": " one store",
"9604-1": " web page",
"9298-1": " potential success",
"7816-2": " 17 year hiatus",
"13029-2": " little competition",
"1555-2": " wrong route",
"8053-1": " output volume",
"4834-1": " accelerated pace",
"2251-2": " study schedule",
"12567-2": " participants' performance",
"9953-2": " selective manner",
"9444-2": " classical view",
"10108-1": " main principle",
"1532-2": " major shift",
"10876-2": " related career",
"2009-2": " valuable tool",
"8316-1": " rigorous work",
"2573-2": " one technician",
"8135-2": " personal goal",
"3030-2": " weight limit",
"13880-1": " population rate",
"7291-1": " present approach",
"13554-1": " another manner",
"2289-1": " regular exposure",
"135-2": " primary path",
"6189-1": " exceptional series",
"14115-2": " huge problem",
"9314-1": " family vacations",
"9923-1": " dating relationship",
"891-1": " actual fact",
"8361-1": " secondary contact",
"11423-2": " possible sign",
"2140-2": " one time compensation",
"12987-2": " proven record",
"4480-1": " cloth-like material",
"4084-1": " women's safety",
"13226-1": " military need",
"11961-1": " retrograde manner",
"12796-2": " key function",
"535-1": " acceptable approach",
"9728-1": " best account",
"14804-2": " forest region",
"538-2": " one or two levels",
"6006-1": " high labor costs",
"7771-1": " high concentrations",
"9198-2": " human history",
"3125-1": " sudden loss",
"5702-1": " considerably larger amount",
"4751-1": " original master",
"12791-2": " teaching practice",
"2187-1": " nail clippers",
"4664-2": " unusual part",
"1761-1": " key projects",
"8875-2": " old school",
"12948-2": " relentless pressure",
"12200-2": " full leg",
"5696-1": " stated policy",
"11340-2": " commercial company",
"637-1": " overweight condition",
"4857-1": " solid piece",
"13347-2": " one formula",
"8993-1": " DESCRIPTIVE ACCOUNT",
"10565-1": " open structure",
"12031-1": " special quality",
"8704-2": " loan term",
"10054-2": " high taxation",
"6154-2": " refrigeration device",
"14388-1": " first usage",
"948-1": " small crack",
"3100-2": " correct amount",
"3637-2": " every version",
"1427-2": " workable plan",
"12771-2": " New Try",
"4030-1": " offshore structure",
"3968-2": " few years time",
"2517-1": " contact points",
"12094-2": " local market",
"12461-2": " personal identification",
"10123-2": " last 50 years",
"13608-2": " picturesque background",
"4168-2": " non-threatening way",
"9214-2": " much development",
"10796-2": " unfair use",
"13620-2": "man trap",
"8941-1": " evil thoughts",
"2571-2": " local reports",
"10328-2": " initial survey",
"13444-1": " principal elements",
"2371-1": " Role players",
"13827-1": " less protection",
"13042-1": " present authors",
"11409-2": " local explanation",
"13144-2": " constant motion",
"9805-2": " internal stress",
"6340-1": " affordable way",
"10211-2": " high approval",
"3251-2": " usual type",
"1844-1": " almost all the people",
"13763-2": " Modeling Agency",
"12151-2": " 1991 survey",
"13488-1": " favourite dish",
"14794-1": " actual evidence",
"8529-2": " either variant",
"5131-2": " good long time",
"6694-2": " long stage",
"9715-2": " soccer event",
"7380-2": " relatively low price",
"2328-2": " sudden drop",
"12065-2": " recent school",
"9739-1": " visible piece",
"10318-2": " complete cover",
"10682-2": " real opposition",
"8151-2": " important consideration when choosing what statistical procedure to use, but it isn't the only important one",
"4270-1": " July 1989 edition",
"10561-2": " broad consensus",
"1306-2": " negative material",
"9929-2": " path-breaking work",
"3520-1": " maximum ability",
"3656-1": " unnecessary credit",
"8263-1": " long-delayed return",
"5442-2": " key source",
"1073-2": " child's identity",
"6686-2": " another action",
"11066-1": " grain alcohol",
"6522-1": " appropriate usage",
"380-1": " common point",
"14717-1": " Another topic",
"819-1": " huge strain",
"8306-2": " second order",
"14747-1": " consistent rhythm",
"12692-2": " property laws",
"3276-1": " high chance",
"11331-2": " basic point",
"10811-1": " second chamber",
"11934-2": " questionable value",
"10062-1": " local cafes",
"9729-2": " weak demand",
"2455-2": " highlight point",
"5643-1": " Another explanation",
"5774-2": " two split",
"1392-2": " efficient approach",
"1910-1": " supply water",
"12486-2": " global distribution",
"4143-2": " pleasure principle",
"6562-1": " large contribution",
"11413-1": " specific condition",
"4757-1": " practical usage",
"2500-1": " good understanding",
"13253-1": " first scoop",
"11273-2": " foot pedal control",
"5564-2": " planetary surface",
"11706-1": " simple system",
"448-1": " prominent He",
"7760-1": " pure beauty",
"11068-1": " future career prospects",
"14867-2": " independent survey",
"14928-2": " rational conclusion",
"6058-1": " martial discipline",
"7210-1": " colored border",
"10506-2": " lead line",
"7927-2": " higher height",
"5968-2": " possible appeal",
"403-1": " war people",
"1653-2": " existing work",
"12290-2": " dedicated section",
"11826-2": " pass/fail basis",
"10051-1": " one hop",
"3513-1": " kerosene fuel",
"10660-2": " particular society",
"6528-2": " 1/2 hour",
"11318-2": " one office",
"13063-1": " real elements",
"5107-2": " major purpose",
"7732-2": " higher education institutions",
"3075-2": " main appearance",
"14089-1": " best known version",
"5506-1": " challenging part",
"8990-1": " fledgling system",
"8821-1": " international definition",
"10790-2": " first real indication",
"3808-2": " Usual type",
"6202-1": " optimum use",
"11790-2": " government insensitivity",
"5454-1": " second details",
"11814-2": " strengthening trend",
"788-2": " size limits",
"6300-2": " respectful treatment",
"10374-1": " Initial production",
"7571-1": " one asset",
"9205-2": " top platform",
"13591-2": " single field",
"13652-2": " one slot",
"5961-2": " correct method",
"6652-1": " liquidated value",
"13462-1": " brutal response",
"13350-1": " direct marketing",
"6305-2": " positive light",
"13313-1": " racing license",
"508-1": " United States case",
"8269-1": " original party",
"14475-1": " distinct period",
"1953-1": " large spread",
"10382-2": " local producer",
"8516-2": " empty position",
"3465-1": " random time",
"4047-1": " bright spot",
"14124-2": " third area",
"10708-2": " huge number",
"4614-1": " good deal",
"8102-2": " sufficient light",
"6750-1": " direct sight",
"12198-1": " well known fact",
"12164-2": " renewed focus",
"1737-2": " language content",
"1137-2": " second deal",
"14238-1": " dramatic performance",
"12495-1": " least one incident",
"7271-1": " effective rate",
"4942-1": " field manager",
"6664-2": " large image",
"12333-1": " inner frame",
"10599-1": " single setting",
"2628-2": " standard size",
"11605-1": " abnormal growth patterns",
"13819-1": " central fire",
"4847-2": " main site",
"3779-1": " detailed search",
"12477-1": "better state",
"5624-2": " true sense",
"8626-1": " common division",
"11599-2": " colloquial name",
"8684-2": " sufficient material",
"7958-1": " last branch",
"7309-2": " measured pace",
"7063-1": " interest levels",
"2025-1": " minimal access",
"4791-2": " energy problem",
"10978-2": " Wide Pass",
"13598-2": " necessary connection",
"4903-2": " official fairgrounds",
"503-2": " better distribution",
"6787-1": " available pool",
"12723-1": " large stones",
"649-1": " open trials",
"13420-1": " unusual way",
"10964-2": " fine wine",
"11231-2": " second technician",
"13273-1": " Indian production",
"3753-2": " Extra Charge",
"13102-1": " reform community",
"10668-1": " one palm",
"13815-2": " travel time",
"4733-1": " traditional view",
"8092-1": " best style",
"2842-2": " continuous threat",
"11129-2": " full-time capacity",
"14176-1": " new practice",
"11275-2": " deep division",
"7728-1": " documentary evidence",
"5660-2": " next lock",
"11471-2": " straight pass",
"7735-1": " first important event",
"6647-2": " much risk",
"1498-2": " good locations",
"12246-2": " paper strength",
"2107-2": " suitable quality",
"14097-1": " secondary problem",
"7476-1": " single place",
"12419-2": " last bar",
"10340-2": " generous love",
"8596-2": " ongoing effect",
"10508-1": " classical system",
"4101-1": " needed protection",
"7549-2": " critical event",
"604-2": " sweet syrup",
"678-1": " strengthening trend",
"2492-1": " date people",
"2954-2": " inappropriate use",
"5354-2": " primary action",
"10267-1": " bad land",
"471-2": " best one",
"9945-2": " little table",
"4314-2": " traditional capital",
"12661-1": " productive procedure",
"7031-1": " notable progress",
"1233-1": " recent record",
"1006-1": " complete system",
"14692-2": " personal vision",
"12754-2": " safe ground",
"1385-2": " combustible material",
"11958-2": "first step",
"8581-1": " high quality product",
"14344-2": " Democratic strength",
"12919-2": " aggregate value",
"3562-1": " strong force",
"10961-1": " working place",
"769-1": " two-year history",
"13560-2": " beam splitter",
"6699-2": " outdoor play",
"10431-2": " live rounds",
"14136-1": " recent history",
"911-2": " largest issue",
"12462-2": " local districts",
"4104-1": " local destination",
"4396-1": " one option",
"5865-1": " long stretch",
"11628-2": " sudden burst",
"14075-1": "red line",
"5021-2": " smooth one",
"5343-1": " last several years",
"7886-1": " normal heart",
"10672-1": " career aspirations",
"1200-2": " narrow way",
"10186-2": " gas consumption",
"12986-1": " covert military operations",
"14929-1": " desired market",
"6667-2": " announced aim",
"5596-1": " gloved hand",
"4552-2": " least some degree",
"11107-2": " H block",
"2995-1": " identification cards",
"11238-1": " good target",
"14243-2": " 23rd year",
"14307-1": " exact shape",
"8310-1": " national attention",
"10837-2": " quiet day",
"2469-2": " small field",
"14763-2": " natural succession",
"5134-1": " efficient production",
"9220-2": " recurring problem",
"14121-2": " local farmers",
"11328-1": " Sele River",
"4718-1": " second-highest amount",
"13984-2": " twelve month",
"10851-2": " urban development",
"3662-2": " two date",
"7164-1": " shelter construction",
"13612-1": " Far North Side",
"12205-2": " certain speech",
"2397-2": " low end",
"6466-1": " construction inspector",
"12457-2": " relevant group",
"4223-2": " Real Effort",
"4068-1": " current field",
"6041-2": " relative ease",
"5618-2": " race scene",
"3604-1": " arrival date",
"11442-1": " One important issue",
"11366-1": " relatively short life",
"587-1": " one criticism",
"11411-2": " triangular section",
"14294-1": " next scheduled event",
"5898-2": " home intruders",
"9399-2": " One person",
"7279-1": " one major source",
"1292-2": " additional chance",
"8167-2": " southeastern side",
"11474-2": " local standards",
"3023-1": " greater importance",
"9780-2": " better presentation",
"762-2": " distinct name",
"11465-2": " enough ability",
"7132-2": " incontrovertible evidence",
"10122-2": " cliff top",
"1550-1": " 13-year-old child",
"1886-1": " sole contribution",
"14348-1": " mass processing",
"4044-2": " live nights",
"2044-2": " personal goal",
"4763-1": " uncertain evidence",
"13047-1": " Women's Sport",
"6951-1": " new opening",
"10750-2": " complete picture",
"8649-2": " perennial growth",
"2258-1": " good repetition",
"12634-1": " particular property",
"2809-1": " standard level",
"14941-2": " constant pace",
"1922-2": " Squadron member",
"3912-2": " protruding part",
"8086-2": " political rights",
"8436-2": " stronger force",
"8021-1": " spreader bar",
"7570-2": " total support",
"2824-2": " expected increase",
"12760-1": " storm force",
"3320-1": " U-shaped pattern",
"11872-2": " second target",
"4963-1": " great question",
"10086-2": " certain line",
"8605-2": " challenging section",
"7843-2": " data breach happens, geographical information directly exposes users. As others applications, dating apps can have breaches: hackers have revealed security issues",
"5254-1": " Summit stage",
"13689-1": " wrong base",
"5301-2": " black suit",
"7098-1": " clear answer",
"12684-1": " locked room",
"303-1": " office politics",
"5119-1": " alleged support",
"5356-1": " running mates",
"5732-1": " Franchise Holder",
"728-1": " large movement",
"8015-2": " first entrance",
"13399-1": " direct participation",
"7883-1": " broad group",
"1206-1": " desired piece",
"3103-2": " tough day",
"114-1": " 70 minutes",
"11460-2": " little or no control",
"7918-1": " useful model",
"164-1": " several post offices",
"14995-2": " one regard",
"8686-2": " occupation site",
"9263-2": " single example",
"13240-1": " legal charge",
"6981-2": " bad situation",
"9348-2": " 2018 update",
"7508-2": " Key actors",
"5560-1": " refined piece",
"7894-1": " higher desire",
"11874-1": " relatively long distance",
"9477-2": " grateful people",
"11518-2": " detailed story",
"10753-2": " final affiliation",
"12394-1": " One impact",
"12182-2": " story map",
"8067-2": " poor person",
"4796-1": " one member",
"7777-2": " Computer field",
"4257-2": " binary division",
"1608-2": " 23rd year",
"12249-2": " computer field",
"5124-1": " one pack",
"9222-1": " given variety",
"5986-2": " trade practice",
"6159-1": " 10,000 population",
"11598-1": " easy development",
"13617-1": " reverse position",
"10161-2": " serious disorder",
"6649-2": " safe distance",
"11193-1": " similar experience",
"11158-2": " aged wine",
"12106-1": " high water mark",
"3043-2": " latter practice",
"3048-2": " entire region",
"2683-2": " constant view",
"11188-2": " traffic queues",
"1183-2": " long roll",
"6241-2": " open framework",
"12445-2": " woman acquaintance",
"4130-2": " distinct activity",
"1751-1": " full presentation",
"13345-2": " every need",
"12583-2": " closed door",
"12200-1": " full leg",
"4187-2": " favored type",
"8957-2": " given period",
"950-2": " top percentage",
"12288-2": " overwhelming impression",
"5669-1": " pool balls",
"5404-2": " inverted position",
"11514-1": " last album",
"6296-2": " particular attention",
"13276-2": " unusual variation",
"14639-1": " core condition",
"14250-1": " Flow Energy",
"8897-1": " commercial enterprise",
"3408-2": " entire deck",
"6184-2": " local reserve",
"3488-2": " global attention",
"9608-2": " dominant part",
"13926-2": " planning period",
"13470-1": " romantic setting",
"9061-2": " last maneuver",
"3892-2": " Government Banks",
"2113-2": " useful degree",
"3913-1": "God's choice",
"3832-2": " false response",
"8010-1": " second congress",
"1397-2": " vigorous exercise",
"6067-1": " six major cities",
"8405-1": " three and a half months",
"13752-2": " government's drive",
"14061-1": " legal evidence",
"10738-2": " full extension",
"12835-2": " direct manager",
"14606-1": " firm surface",
"14385-1": " distinct identity",
"12050-1": " possible chance",
"13237-2": " formal graduation ceremony",
"11410-1": " one mass",
"8242-1": " 3-hour period",
"10260-1": " full moon nights",
"13278-2": " one cardinal",
"12376-1": " total wealth",
"6962-1": " stomach ailments",
"13486-2": " larger pattern",
"8339-2": " brief attack",
"12740-2": " local election",
"11732-2": " original definition",
"424-1": " disaffected youth",
"7900-2": " contented state",
"1513-1": " good fit",
"12910-2": " reform plans",
"4169-2": " family stuff",
"6264-2": " program's design",
"14949-2": " primary model",
"1297-2": " friendly approach",
"4242-1": " yard work",
"379-2": " moveable structure",
"12314-2": " small circular piece",
"8884-2": " favourable position",
"11906-2": " particular position",
"500-2": " extra power",
"10766-2": " multiple people",
"4108-1": " best possible light",
"3995-1": " regional area",
"2473-1": " apparent power",
"13887-2": " lower end point",
"14914-2": " negative state",
"3696-2": " leg ulcers",
"6711-2": " lifting device",
"10674-2": " much exposure",
"9388-1": " city's river",
"6587-2": " 50% chance",
"1531-2": " strong competition",
"949-1": " strong break",
"1369-1": " collaborative basis",
"6977-1": " additional term",
"6736-2": " one stage",
"10142-2": " recent visit",
"756-1": " around the same date",
"580-1": " feature model",
"4560-1": " military patrol",
"12535-2": " parent's choice",
"8749-1": " possible trouble",
"9143-1": " intoxicating aroma",
"2952-2": " minimal presence",
"6333-2": " internet activity",
"9458-1": " lower right side",
"4827-1": " muscle attachments",
"1195-2": " whole matter",
"5013-2": " slight interest",
"11169-2": " little strength",
"11004-1": " one incident",
"1861-2": " old piece",
"10862-2": " major sign",
"2856-1": " \"A\" side",
"3500-2": " recent conflict",
"6565-1": " road map",
"7744-2": " course information",
"5361-1": " approximately section",
"198-1": " four-man operation",
"1724-1": " legal activity",
"8850-2": " remaining business",
"13916-2": " outer coat",
"5740-2": " clear material",
"6567-2": " almost the beginning",
"8517-2": " honing stone",
"1126-1": " state or federal law",
"10747-1": " hard fall",
"2350-1": " exterior part",
"139-2": " similar energy",
"10218-2": " iron rule",
"10727-2": " school visit",
"13477-2": " One difficulty",
"14002-1": " day operations",
"10246-1": " One provision",
"2311-2": " possibly a result",
"12968-2": " approximately a third",
"7493-1": " single occasion",
"3382-2": " firm relationship",
"506-1": " mental attitude",
"7627-1": " third grade school year",
"4763-2": " uncertain evidence",
"14019-2": " similar direction",
"13234-1": " prior period",
"5162-2": " continued investment",
"13803-2": " transcontinental travel",
"2550-1": " Overall investment",
"2704-1": " client base",
"3722-2": " strengthening trend",
"11972-2": " negative light",
"14569-1": " relatively long distance",
"3764-1": "sound energy",
"12689-2": " personal identification",
"3051-1": " linear version",
"1050-1": " recent increase",
"13828-2": " Kelowna area",
"12082-2": " position statement",
"12260-1": " graded response",
"622-2": " changing height",
"13133-1": " weight transfer",
"753-1": " permanent camp",
"4639-1": " real element",
"10795-2": " sewer odor",
"624-2": " Golden Rule",
"12666-1": " satisfactory arrangement",
"1092-2": " main motivation",
"2733-1": " official system",
"4516-1": " set location",
"8065-2": " live versions",
"2303-1": " third stage",
"8927-2": " formation process",
"9336-2": " new focus",
"7173-2": " second incidence",
"5387-1": " 2017 update",
"9229-1": " passive phase",
"9503-1": " even a minor change",
"4198-2": " broad group",
"9128-2": " extra help",
"5864-2": " outside shell",
"11674-1": " easy group",
"12642-2": " regular practice",
"10985-1": " coloured ball",
"5401-1": " core message",
"2433-1": " physical size",
"12840-1": " soda water",
"1905-2": " empty homes",
"12683-1": " former government",
"14253-2": " whole sum",
"3767-2": " right times",
"14782-2": " constant conflict",
"7387-1": " particular holiday",
"4666-2": " new delta",
"7412-1": " composite part",
"891-2": "actual fact",
"8163-1": " immediate background",
"973-2": " possible return",
"4323-1": " key reasons",
"13315-2": " US version",
"12569-1": " design feature",
"276-2": " completed sequence",
"14060-1": " widespread appeal",
"2642-1": " entire eastern coast",
"11349-2": " close proximity",
"14233-1": " free area",
"8313-2": " measured pace",
"14157-2": " clothing construction",
"5818-1": " whole course",
"6283-1": " Either component",
"7166-2": " combined effect",
"4945-2": " leading event",
"11281-1": " structural capacity",
"11473-2": " food expiration dates",
"1712-2": " five year period",
"2334-2": " top one",
"758-2": " early failure",
"10631-1": " higher areas",
"1642-1": " existing practice",
"4060-2": " severe pressure",
"5937-1": " Conservation Order",
"11800-1": " even better record",
"6437-2": " final set",
"14749-1": " pediatrics service",
"7487-2": " larger enterprise",
"1416-1": " sporting performance",
"11639-1": " intimate one",
"9403-2": " lost object",
"9950-2": " vertical structure",
"1937-1": " resulting course",
"8629-2": " successful defense",
"8509-1": " large scale area",
"5728-1": " Potential business benefits",
"3528-1": " authorized form",
"4746-2": " actual content",
"634-1": " vast array",
"10728-1": " overall trend",
"3204-2": " another address",
"209-1": " business contracts",
"7143-2": " gun safety",
"2223-1": " target zone",
"1758-2": " higher control",
"8692-1": " one last stand",
"3794-2": " negative manner",
"12319-1": " total assurance",
"2184-1": " Notable residents",
"12523-1": " every single type",
"1636-2": " famous example",
"13781-1": " naturalization process",
"13881-1": " virgin snow",
"13592-2": " latest vision",
"9724-2": " either string",
"12940-2": " zone activities",
"6054-1": " four or five people",
"7227-1": " late Head",
"4329-2": " single complaint",
"1800-1": " various survey",
"2736-2": " rare show",
"12355-1": " inhabited area",
"9222-2": " specific characteristics",
"5624-1": " true sense",
"11706-2": " simple system",
"11810-1": " male-male competition",
"13463-2": " much use",
"13571-1": " short encounter",
"2686-1": " monetary wealth",
"8512-1": " subsequent design",
"13669-2": " ancient record",
"8003-1": " home appliance",
"5204-2": " potential protection",
"11941-1": " highly complex work",
"8670-1": " design procedure",
"9525-1": " distribution hub",
"8373-1": " much embarrassment",
"5052-2": " longest period",
"11355-2": " sufficient interest",
"12540-1": " redemption process",
"13300-1": " design part",
"6410-2": " top ends",
"12272-2": " active police",
"2002-2": " exhaustive search",
"5868-1": " second offering",
"165-1": " downwards trend",
"2473-2": " apparent power",
"2673-1": " formal court system",
"5642-1": " side garden",
"11361-2": " trespass issue",
"11952-2": " National Service programme",
"10331-1": " apparent part",
"11278-2": " grave number",
"5244-2": " arm's length",
"8751-2": " program's goal",
"13392-2": " future life",
"10140-1": " minor way",
"14726-2": " rapid loss",
"1170-1": " clear choices",
"9520-1": " certain influence",
"6400-1": " retail stores",
"7030-2": " primary reason",
"11306-1": " major divisions",
"10488-1": " alternative civilian service",
"8018-1": " real condition",
"786-2": " necessary reflection",
"1749-2": " official estimate",
"5407-2": " further development",
"13478-2": " Yet another term",
"2840-2": " one such time",
"1693-2": " vehicle repairs",
"9737-1": " travel sites",
"12957-2": " government aid",
"6133-2": " Community life",
"13453-1": " first drop",
"14472-2": " defense protocols",
"7716-2": " local surfer",
"13699-1": " Forest Use",
"7901-1": " southern neighbor",
"14291-2": " traumatic nature",
"9596-2": " good practice",
"2899-1": " similar ability",
"14209-1": " domesticated cattle",
"206-2": " one sweep",
"5589-1": " small game",
"12936-1": " consensus opinion",
"11824-2": " channel system",
"9448-1": " ideal size",
"2777-1": " world's attention",
"2861-2": " last point",
"14796-2": " recognisable symbol",
"10496-1": " external power",
"8699-1": " active measures",
"3510-2": " second issue",
"10176-1": " one agent",
"13738-2": " small cut",
"11508-1": " business advisor",
"9666-1": " second space",
"7575-1": " public's interest",
"7429-1": " historical symbol",
"7203-1": " Every Bit",
"6614-2": " suburban gardens",
"8841-1": " commercial and investment banking",
"14277-2": " high parts",
"692-1": " strengthening trend",
"3397-1": " certain condition",
"992-1": " significant focus",
"1577-1": " first such system",
"13907-1": " many post",
"4190-2": " welcoming gesture",
"14546-1": " key information",
"13451-2": " formal commitment",
"13695-1": " first result",
"10678-2": " outer world",
"13801-1": " simple stretch",
"1026-2": " individual's head",
"2613-2": " broader part",
"13267-2": " Lift Ticket",
"1225-2": " commonly used form",
"7885-2": " certain time period",
"2961-2": " close physical contact",
"9343-2": " totally different character",
"6418-1": " greater notice",
"3823-1": " government license",
"14128-1": " single large building",
"12055-1": " mental ability",
"7251-1": " great an impact",
"14038-2": " 1996 campaign",
"9068-2": " extremely high speeds",
"1514-1": " nearly a quarter century",
"14734-1": " anchoring point",
"8688-1": " framed picture",
"13988-2": " leftover space",
"3395-1": " data change",
"13636-2": " striking way",
"11517-2": " latter force",
"7216-2": " representative element",
"846-1": " certain authority",
"6544-2": " superior design",
"6813-2": " One option",
"7581-2": " later sale",
"12107-1": " explosive growth",
"10124-1": " realistic indication",
"10252-2": " One farmer",
"6086-1": " suitable ground",
"5496-2": " red patch",
"7654-2": " best case",
"7009-1": " artist's music",
"8218-2": " age limit",
"12523-2": " Every single type",
"2661-1": " pre-determined period",
"3506-1": " percentage contribution",
"9338-2": " 38,000 people",
"10465-1": " safe distance",
"10603-1": " powerful spring",
"10089-2": " defined system",
"5121-2": " beautiful suit",
"13195-1": " official vehicle",
"7364-2": " One interesting thing",
"6349-1": " secondary concern",
"9497-1": " relevant person",
"9-1": " clear blue sky",
"5731-1": " second trick",
"4171-2": " whose license",
"2598-2": " major social events",
"7239-2": " Another mark",
"11178-1": " college meet",
"8768-1": " missed call",
"8974-2": " clear connection",
"11005-1": " large label",
"7797-1": " contract security",
"10366-1": " father's power",
"2035-1": " closed position",
"13212-2": " Obama's second term",
"1816-2": " major differences",
"7985-1": " important structure",
"4339-2": " single file",
"1867-1": " sole person",
"10494-2": " proper state",
"1301-1": " principal location",
"11403-1": " interchangeable part",
"12618-1": " traditional land",
"914-1": " preceding round",
"9769-2": " single family",
"12698-2": " first hour",
"1113-1": " successful defense",
"5497-1": " copious amount",
"2296-2": " one combination",
"8849-2": " considerable strength",
"1542-1": " one central point",
"4648-1": " Another social factor",
"12086-1": " common component",
"6326-2": " independent point",
"2604-1": "man's head",
"7551-2": " Hollywood Street",
"7058-2": " consulting work",
"8016-1": " past few hundred years",
"13426-1": " least 40,000 people",
"1120-2": " similar reason",
"550-2": " Martin's path",
"13602-1": " restart button",
"14062-2": " primary consideration",
"5616-2": " higher height",
"10938-2": " potential base",
"97-2": " whose safety",
"6729-2": " 1% lead",
"7544-2": " sufficient interest",
"6832-2": " early half",
"7961-1": " official vehicle",
"10431-1": " live rounds",
"516-2": " common thought",
"3954-2": " today's world",
"11320-2": " significant gap",
"3217-2": " primary authority",
"11222-2": " separate direction",
"1078-1": " 2012 study",
"9721-1": " wider choice",
"11656-1": " wide spread",
"6390-2": " government sponsored facilities",
"11510-2": " distant travel",
"11197-2": " extra seat",
"2890-1": " real-life situation",
"13547-2": " third window",
"1311-2": " risk indicators",
"3348-2": " unique series",
"5918-1": " another meeting",
"2778-2": " cultural event",
"7368-2": " actual situation",
"4997-1": " unexpected meeting",
"10744-1": " initial sequence",
"454-1": " clear candidate",
"9613-1": " time era",
"2732-2": " official system",
"1129-2": " stiffer version",
"13893-1": " commercial organization",
"10368-1": " ultimate end",
"10969-1": " second advance",
"11394-2": " major force",
"10611-2": " one gem",
"9488-2": " telephone and internet usage",
"10320-1": " higher floor",
"11128-2": " Four or five people",
"2458-1": " main point",
"9176-1": " explicit concern",
"6550-2": " initial problem",
"6169-2": " security doors",
"3548-2": " intricate array",
"11866-2": " recent purchase",
"10957-2": " extra help",
"9636-1": " weak point",
"2889-2": " close proximity",
"9961-1": " aggressive approach",
"9224-2": " \"A\" side",
"4818-1": " common source",
"2783-1": " better balance",
"13057-1": " partial return",
"12085-1": " large object",
"13021-1": " last course",
"6348-1": " air pollution",
"741-2": " midriff area",
"6500-1": " continuous run",
"247-2": " earlier conclusion",
"4390-2": " social visit",
"112-1": " study support",
"1847-1": " another sack",
"10643-1": " latter design",
"7761-2": " actual amount",
"12800-1": " human and animal movement",
"14495-1": " base building",
"12824-2": " rapid communication",
"6684-2": " entire problem",
"11380-2": " less than a minute",
"10635-1": " another service provider",
"1961-2": " initial rise",
"8789-1": " least one week",
"859-1": " open front",
"3030-1": " weight limit",
"4536-1": " financial distress",
"57-2": " native language",
"4353-1": " larger production",
"6936-2": " real penetration",
"14598-2": " consultation session",
"4571-2": " warm sunny conditions",
"2663-2": " lower performance",
"1222-1": " One possible extension",
"1876-1": " past contributions",
"2684-2": " negligible impact",
"11477-1": " alternate training site",
"9290-1": " adequate choice",
"11748-1": " new cost",
"1902-2": " family problems",
"2683-1": " constant view",
"12001-1": " water fight",
"3675-2": " One major issue",
"5981-1": " definitive restoration",
"14519-1": " hit song",
"1312-1": " former channel",
"4721-1": " increased organization",
"446-2": " strengthening trend",
"11475-1": " back garage",
"13089-1": " material claims",
"11600-2": " mental condition",
"7275-1": " suitable foundation",
"14327-2": " longer event",
"9553-1": " military conduct",
"8724-1": " widespread presence",
"9249-2": " typical result",
"14197-2": " block formation",
"13109-2": " work load",
"6174-1": " ground inspections",
"2658-2": " central person",
"13725-1": " Local citizen",
"7964-2": " 691 people",
"14762-1": " nearby example",
"14781-2": " peak activity",
"10719-2": " large, three-story building",
"1377-1": " curious thing",
"11608-2": " set amount",
"4825-2": " correct behavior",
"8979-2": " 20,000 mark",
"13955-1": " much greater depth",
"13647-1": " general fall",
"12803-2": " social impact",
"8577-1": " curated selection",
"13050-2": " substantial presence",
"12814-2": "bad fortune",
"5010-2": " extremely important source",
"11022-2": " one or more years",
"14847-2": " one department",
"8417-2": " proper one",
"7069-2": " Another group",
"5737-1": " lower wind speeds",
"8763-1": " active element",
"11584-2": " primary object",
"9790-2": " demand growth",
"6161-1": " Democratic party organizations",
"14986-2": " widespread extent",
"13237-1": " formal graduation ceremony",
"4636-1": " intellectual focus",
"8031-2": " snow-covered ground",
"13556-1": " next couple weeks",
"10276-1": " common site",
"8588-2": " top percentile",
"395-2": " weak body",
"14783-1": " new treatment",
"9749-1": " good chances",
"910-1": " specific version",
"14919-1": " final rise",
"8632-2": " attractive place",
"13577-1": " considerable difference",
"9489-2": " Another thought",
"10937-1": " full copy",
"8958-1": " minor detail",
"4352-2": " various survey",
"14069-2": " practical point",
"3270-1": " established place",
"11926-2": " guaranteed delivery",
"7791-2": " increasing frequency",
"1834-2": "Hard Body",
"296-2": " local authorities",
"10782-2": " trust funds",
"1650-1": " quick walk",
"9796-1": " training place",
"10655-1": " specific body parts",
"2493-2": " increased exposure",
"13831-1": " adjoining piece",
"13588-1": " direct examination",
"3565-2": " primary hand",
"4432-1": " planned date",
"3486-1": " one interview",
"3340-2": " recurring pattern",
"3887-2": " Florida group",
"8782-1": " common pool",
"4340-2": " service dog",
"8918-2": "Positive assurance",
"11152-2": " western field",
"11756-1": "smartest thing",
"9770-2": " original pride",
"4579-2": " fluctuating force",
"5574-2": " inert material",
"2337-1": " past feature",
"12449-1": " relatively large amount",
"5894-1": " lower price",
"11542-1": " irregular area",
"426-1": " sister site",
"11225-1": " huge amount",
"5000-1": " Almost the entire record",
"11563-1": " State Education department",
"7668-2": " measurable effect",
"7542-2": " entire post",
"6035-1": " One response",
"9058-2": " major drivers",
"469-1": " art form",
"7980-2": " British variant",
"12601-1": " second phone",
"6573-2": " traditional role",
"11144-1": " small gold",
"1419-1": " top line",
"11210-2": " work time",
"4625-2": " close resemblance",
"3312-2": " significant and growing number",
"3592-2": " positive direction",
"12137-2": " left side",
"9899-2": " illegal use",
"4726-1": " active character",
"4023-2": " partnership deal",
"1125-1": " book market",
"2682-1": " poor income",
"12119-2": " tedious nature",
"11220-1": " identity theft",
"14401-1": " exemplary performance",
"4951-2": " constant theme",
"13292-2": " step father",
"8165-1": " primary tool",
"9098-1": " one owner",
"5546-1": " nice place",
"739-1": " expected level",
"6584-1": " one occupant",
"10642-1": " nearby population",
"3625-2": " home network",
"7126-1": " one need",
"5433-1": " continuing trend",
"2625-1": " free holiday",
"2291-1": " meeting areas",
"3018-1": " basic sense",
"12352-1": " clear indications",
"9390-1": " swimming pool",
"9891-1": " permanent military presence",
"1823-1": " tight bond",
"8344-1": " election board",
"7907-2": " race performances",
"7659-2": " chestnut color",
"3435-2": " 583 people",
"356-2": " water activity",
"3864-2": " much tension",
"4121-2": "medical chain",
"14494-1": " better chance",
"7148-1": " rule enforcement",
"8235-2": " permit process",
"9236-1": " local stage",
"11760-2": " simple table",
"10195-2": " responsible party",
"7796-2": " significant ground",
"10740-1": " popular segment",
"1165-2": " dog walker",
"4122-2": " official emblem",
"4856-2": " potential danger",
"14588-1": " nation's capital",
"1363-1": " national all-time record",
"5259-2": "Accurate interpretation",
"4802-2": " another criticism",
"4736-1": " external pressure",
"5374-1": " disappointing performance",
"1631-2": " bottom levels",
"2226-1": " particular public attention",
"3832-1": " false answer",
"2749-1": " limited action",
"12405-2": " increased level",
"8589-1": " boundary separation",
"2320-1": " alleged abuse",
"14918-1": " another organization",
"2021-2": " One main problem",
"759-1": " second image",
"6540-2": " 2017 version",
"3689-2": " continuous movement",
"11344-2": " integral part",
"5553-1": " approximately one quarter",
"9318-2": " common grace",
"10523-2": " ribbed surface",
"12282-2": " bottom right corner",
"5018-2": " one Member",
"5199-2": " contracted work",
"6803-1": " 72 hour period",
"13569-1": " whole trouble",
"8019-1": " particular condition",
"8281-2": " affected people",
"1596-1": " one particular area",
"735-2": " house door",
"11096-1": " separate seat",
"892-2": " thousand people",
"4214-1": " exquisite detail",
"13821-1": " fine print",
"9442-2": " local religious leaders",
"9893-2": " highest point",
"14753-2": "U.S. Mail",
"11582-2": " actual amount",
"14141-2": " major location",
"8061-2": " shorter amount",
"7960-2": " body defects",
"629-2": " safe place",
"10048-2": " almost the exact amount",
"11551-2": " complete control",
"726-2": " agency policies",
"13331-2": " new life cycle",
"6789-2": " isolated occurrence",
"2450-2": " inadequate security",
"8492-2": " harsh heat",
"9345-1": " simply a form",
"4819-2": " poor outcomes",
"14077-2": " serious charge",
"13052-1": " clear dominance",
"1766-2": " almost every school",
"14991-2": " expected level",
"14812-1": " whose help",
"1809-2": " increasing appeal",
"11546-1": " sound barrier",
"8995-2": " major metropolitan areas",
"3598-1": " major European centre",
"7109-1": " serious need",
"12033-2": " greater pressure",
"1119-2": " 6 position",
"78-2": " single topic",
"10182-2": " full separation",
"3927-1": " one more thing",
"5434-1": " next course",
"12795-1": " round appearance",
"1303-1": " second challenge",
"1461-2": " ecological damage",
"10077-2": " known issue",
"7234-1": " major defects",
"7358-2": " smaller number",
"906-2": " famous example",
"12190-2": " key mechanism",
"489-2": " particular bond",
"13865-1": " highest place",
"4711-1": " French area",
"12825-2": " well-placed series",
"4705-1": " Another controversial issue",
"12694-1": " lower tip",
"14318-1": " formal, official links",
"5368-2": " major impacts",
"7882-1": " similar effect",
"850-2": " public's interest",
"1197-2": " close proximity",
"11897-1": " Edwards' time",
"1476-2": " successful marriage",
"11353-2": "Recent speculation",
"11249-1": " Cardiovascular Risk Factors",
"196-1": " urgent business",
"3980-2": " physical record",
"1094-1": " February issue",
"14969-1": " update time",
"4818-2": " common source",
"1645-1": " leading organization",
"4367-1": " final level",
"5452-1": " additional involvement",
"511-1": " clear precedent",
"14990-2": " statistical average",
"14120-2": " literally a matter",
"3013-1": " poor workers",
"5436-2": " safest place",
"4181-1": " 2D model",
"14937-1": " loved one",
"13661-1": " incoming data stream",
"12268-2": " complete copy",
"11330-2": " personal endorsement",
"10541-1": " clear views",
"6891-2": " lower likelihood",
"9025-2": " middle part",
"9338-1": " 38,000 people",
"14010-1": " Historical Debt",
"2846-2": " previous occasion",
"260-1": " overall ease",
"7736-1": " safety belts",
"2064-1": " increasing damage",
"1578-1": " upper left",
"5123-1": " local water",
"10803-2": " score difference",
"12295-2": "middle position",
"10767-1": " specific version",
"5308-1": " whose primary focus",
"1975-2": " survivability rate",
"11391-2": " above-average performance",
"12489-1": " roughly the same time",
"13293-1": " body stiffness",
"10090-2": " additional view",
"4090-1": " theoretical value",
"14611-2": " network administrator",
"3255-2": " curved shape",
"2400-1": " regional area",
"531-2": " milk product",
"5238-2": " major exercise",
"12992-1": " new business opportunities",
"12794-2": " high grades",
"4969-2": " official field",
"7516-2": " unique family",
"14845-2": " default position",
"2315-2": " fine control",
"5416-1": " approaching end",
"3161-2": " much greater degree",
"13170-1": " whole lives",
"12617-2": " product pages",
"2213-1": " massive production",
"2086-1": " unpredictable nature",
"11305-1": " normal home",
"1448-2": " major increases",
"11688-2": " two-phase system",
"14846-2": " emotional cost",
"11284-1": " special claim",
"11989-1": " endless cycle",
"12642-1": " regular practice",
"10499-2": " affordable way",
"9958-1": " disciplined manner",
"12020-1": " primary producer",
"12983-1": " several major manufacturers",
"9465-1": " event type",
"13853-2": " past experience",
"12315-1": " initial love",
"3493-2": " comprehensive series",
"10190-2": " music area",
"3016-2": " Several hundred thousand people",
"10845-1": " new rank",
"162-1": " few deep breaths",
"9024-1": " strong person",
"11727-1": " life expectancies",
"5800-1": " smiling figure",
"12556-2": " fish and chip shop",
"7771-2": " high concentrations",
"11491-2": " ordinary material",
"119-1": " approximately the same degree",
"219-2": " ultimate plan",
"244-1": " circular area",
"11746-1": " combat weapon",
"2809-2": " Standard Level",
"11946-1": " despotic rule",
"2903-2": " diminishing number",
"2596-2": " challenging part",
"3803-2": " renewed commitment",
"12252-1": " school textbooks",
"13883-2": " business section",
"5455-1": " one and a half times",
"1791-2": " current score",
"6868-2": " personal stake",
"6162-1": " certain position",
"11432-2": " expressive art form",
"3026-2": " Supportive evidence",
"14511-1": " advance payment",
"6414-1": " modern discipline",
"3599-2": " first Conclusion",
"12173-1": " explicit support",
"14162-1": " first stroke",
"9673-2": " reasonable rate",
"5390-2": " unique structure",
"13462-2": " brutal response",
"7451-2": " Significant local interest",
"7008-2": " obvious sign",
"2916-1": " even more criticism",
"9678-1": " characteristic example",
"13646-1": " whole scenario",
"11725-1": " back bone",
"11714-1": " Clear Connection",
"13563-1": " obvious difference",
"12935-1": " main segment",
"13764-1": " traditional role",
"6104-2": " single trial",
"11326-2": " middle course",
"5283-2": " known example",
"2279-1": " different kind",
"851-2": " business development",
"10473-2": " continual failure",
"6601-2": " growth phase",
"12354-1": " sports utility vehicle",
"4979-2": " least one cylinder",
"10067-1": " much exposure",
"14686-1": " work assignments",
"5379-1": " negative light",
"12022-2": " immediate neighborhood",
"2405-1": " therefore an increase",
"9977-2": " dominant approach",
"4088-2": " primary producer",
"1016-1": " express intention",
"10915-1": " general material",
"3640-1": " consistent system",
"9438-1": " lay person",
"13798-1": " cited source",
"4560-2": " military patrol",
"7739-1": " multiple family members",
"13416-1": " basic sense",
"13804-2": " head protection",
"2752-1": " urban area",
"1887-1": " conduct rules",
"1300-2": " old time",
"6096-2": " increasing resistance",
"8587-1": " modern restoration",
"1481-2": " little room",
"12630-1": " past several years",
"12103-1": " system designs",
"11664-2": " strong passion",
"1280-2": " collaborative basis",
"3271-2": " club member",
"7201-2": " major investments",
"6419-2": " particular way",
"13913-2": " exact distribution",
"8155-2": " approximate amount",
"10065-1": " different choice",
"8729-1": " shorter way",
"13124-1": " even coins",
"6158-1": " another significant figure",
"13107-2": " weakening effect",
"5902-1": " biggest impact",
"8790-1": " price impact",
"7753-1": " sufficient material",
"6690-1": " current level",
"43-1": " government targets",
"1879-1": " back end",
"12976-1": " given time frame",
"1501-1": " Green Life",
"5836-1": " intoxicated man",
"4649-2": " potential business",
"11251-1": " necessary institution",
"13267-1": " ticket window"
}
|