File size: 92,221 Bytes
e1ed481 |
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 |
{
"additional_special_tokens": [
"<s_gt_parse>",
"</s_gt_parse>",
"<s_Total Pressure Drop (unencap.)>",
"</s_Total Pressure Drop (unencap.)>",
"<s_Total Cigarette Weight>",
"</s_Total Cigarette Weight>",
"<s_Tobacco Rod Length>",
"</s_Tobacco Rod Length>",
"<s_Tobacco Rod Density>",
"</s_Tobacco Rod Density>",
"<s_Tipping Length>",
"</s_Tipping Length>",
"<s_Supplier(s)>",
"</s_Supplier(s)>",
"<s_Substance>",
"</s_Substance>",
"<s_Print Position (from filter end)>",
"</s_Print Position (from filter end)>",
"<s_Print Description>",
"</s_Print Description>",
"<s_Porosity>",
"</s_Porosity>",
"<s_Perforation Type & No. of lines>",
"</s_Perforation Type & No. of lines>",
"<s_Overall Cigarette Length>",
"</s_Overall Cigarette Length>",
"<s_Net Net Tobacco>",
"</s_Net Net Tobacco>",
"<s_Moisture content (Packing)>",
"</s_Moisture content (Packing)>",
"<s_HK Trial>",
"</s_HK Trial>",
"<s_Filter Plug Pressure Drop (unencap.)>",
"</s_Filter Plug Pressure Drop (unencap.)>",
"<s_Filter Plug Pressure Drop (encap.)>",
"</s_Filter Plug Pressure Drop (encap.)>",
"<s_Filter Plug Length>",
"</s_Filter Plug Length>",
"<s_Dobbin Length>",
"</s_Dobbin Length>",
"<s_Cigarette Circumference>",
"</s_Cigarette Circumference>",
"<s_Bobbin Width>",
"</s_Bobbin Width>",
"<s_BWIT Suggestion>",
"</s_BWIT Suggestion>",
"<s_TYPE OF PROMOTION:>",
"</s_TYPE OF PROMOTION:>",
"<s_REPORTED BY:>",
"</s_REPORTED BY:>",
"<s_MANUFACTURER:>",
"</s_MANUFACTURER:>",
"<s_DATE:>",
"</s_DATE:>",
"<s_CC:>",
"</s_CC:>",
"<s_BRAND (S) PROMOTED:>",
"</s_BRAND (S) PROMOTED:>",
"<s_TO:>",
"</s_TO:>",
"<s_SPACE/ COLOR>",
"</s_SPACE/ COLOR>",
"<s_PACK AND OR/ CARTOCARTON>",
"</s_PACK AND OR/ CARTOCARTON>",
"<s_MEDIA>",
"</s_MEDIA>",
"<s_JOB NUMBER:>",
"</s_JOB NUMBER:>",
"<s_ISSUE FREQUENCY/ YEAR>",
"</s_ISSUE FREQUENCY/ YEAR>",
"<s_GEOGRAPHICAL AREA(S)>",
"</s_GEOGRAPHICAL AREA(S)>",
"<s_FROM:>",
"</s_FROM:>",
"<s_FOR CONTROL USE ONLY:>",
"</s_FOR CONTROL USE ONLY:>",
"<s_EST. REDEMPTION:>",
"</s_EST. REDEMPTION:>",
"<s_DATE INITIATED>",
"</s_DATE INITIATED>",
"<s_COUPON VALUE>",
"</s_COUPON VALUE>",
"<s_COUPON ISSUE DATE>",
"</s_COUPON ISSUE DATE>",
"<s_COUPON EXPIRATION DATE>",
"</s_COUPON EXPIRATION DATE>",
"<s_CODE ASSIGNED:>",
"</s_CODE ASSIGNED:>",
"<s_CIRCULATION>",
"</s_CIRCULATION>",
"<s_BRANDS(S) APPLICABLE>",
"</s_BRANDS(S) APPLICABLE>",
"<s_ADVERTISING CREATIVE THEME>",
"</s_ADVERTISING CREATIVE THEME>",
"<s_To:>",
"</s_To:>",
"<s_System>",
"</s_System>",
"<s_Suppression>",
"</s_Suppression>",
"<s_Seeds>",
"</s_Seeds>",
"<s_Quantity:>",
"</s_Quantity:>",
"<s_Program#:>",
"</s_Program#:>",
"<s_Program Group>",
"</s_Program Group>",
"<s_Mailfile ID:>",
"</s_Mailfile ID:>",
"<s_Mailfile Description>",
"</s_Mailfile Description>",
"<s_Mailfile Cells>",
"</s_Mailfile Cells>",
"<s_Maildate:>",
"</s_Maildate:>",
"<s_From:>",
"</s_From:>",
"<s_Date:>",
"</s_Date:>",
"<s_Alert Number>",
"</s_Alert Number>",
"<s_pH>",
"</s_pH>",
"<s_STORAGE RECOMMENDATIONS>",
"</s_STORAGE RECOMMENDATIONS>",
"<s_SOLUBILITY>",
"</s_SOLUBILITY>",
"<s_SENSITIVE>",
"</s_SENSITIVE>",
"<s_Reference:>",
"</s_Reference:>",
"<s_PHYSICAL STATE>",
"</s_PHYSICAL STATE>",
"<s_LRC FILE NUMBER>",
"</s_LRC FILE NUMBER>",
"<s_DATE>",
"</s_DATE>",
"<s_COMPOUND>",
"</s_COMPOUND>",
"<s_ACUTE CADCOVASCULAR>",
"</s_ACUTE CADCOVASCULAR>",
"<s_Time>",
"</s_Time>",
"<s_Subject>",
"</s_Subject>",
"<s_Reporter/ Editor>",
"</s_Reporter/ Editor>",
"<s_Received by>",
"</s_Received by>",
"<s_RECEIVED>",
"</s_RECEIVED>",
"<s_Publication>",
"</s_Publication>",
"<s_Department>",
"</s_Department>",
"<s_Deadline for response>",
"</s_Deadline for response>",
"<s_Date>",
"</s_Date>",
"<s_Copies>",
"</s_Copies>",
"<s_Attention>",
"</s_Attention>",
"<s_Work Requested by>",
"</s_Work Requested by>",
"<s_Project Objective>",
"</s_Project Objective>",
"<s_Project Name>",
"</s_Project Name>",
"<s_Project Leader>",
"</s_Project Leader>",
"<s_Project Code>",
"</s_Project Code>",
"<s_Other personnel assigned>",
"</s_Other personnel assigned>",
"<s_Screener Questionnaire>",
"</s_Screener Questionnaire>",
"<s_Revision>",
"</s_Revision>",
"<s_Revised From:>",
"</s_Revised From:>",
"<s_Respondent Incidence:>",
"</s_Respondent Incidence:>",
"<s_Research Firm:>",
"</s_Research Firm:>",
"<s_Research Design>",
"</s_Research Design>",
"<s_Reporting Schedule:>",
"</s_Reporting Schedule:>",
"<s_Reason:>",
"</s_Reason:>",
"<s_Project Title:>",
"</s_Project Title:>",
"<s_Prepared by>",
"</s_Prepared by>",
"<s_Marketing and or Research Objectives>",
"</s_Marketing and or Research Objectives>",
"<s_Job#:>",
"</s_Job#:>",
"<s_Fieldwork Schedule:>",
"</s_Fieldwork Schedule:>",
"<s_Cost Estimate:>",
"</s_Cost Estimate:>",
"<s_cc:>",
"</s_cc:>",
"<s_WORK REQUESTED BY:>",
"</s_WORK REQUESTED BY:>",
"<s_PROJECT NAME:>",
"</s_PROJECT NAME:>",
"<s_PROJECT LEADER:>",
"</s_PROJECT LEADER:>",
"<s_PROJECT CODE:>",
"</s_PROJECT CODE:>",
"<s_PROJECT>",
"</s_PROJECT>",
"<s_OTHER PERSONNEL ASSIGNED:>",
"</s_OTHER PERSONNEL ASSIGNED:>",
"<s_EPB:>",
"</s_EPB:>",
"<s_Approved by:>",
"</s_Approved by:>",
"<s_TOTAL>",
"</s_TOTAL>",
"<s_REMARKS:>",
"</s_REMARKS:>",
"<s_PERIOD. FROM>",
"</s_PERIOD. FROM>",
"<s_MEDIUM>",
"</s_MEDIUM>",
"<s_Estimated Freight Charges>",
"</s_Estimated Freight Charges>",
"<s_DESCRIPTION>",
"</s_DESCRIPTION>",
"<s_Budget Allocation>",
"</s_Budget Allocation>",
"<s_BRAND>",
"</s_BRAND>",
"<s_Authorization No.>",
"</s_Authorization No.>",
"<s_AGENCY>",
"</s_AGENCY>",
"<s_30 Sheet Posters >",
"</s_30 Sheet Posters >",
"<s_TOXICITY (% SURVIVAL)>",
"</s_TOXICITY (% SURVIVAL)>",
"<s_TESTED>",
"</s_TESTED>",
"<s_SOURCE:>",
"</s_SOURCE:>",
"<s_REVERSION RATE (TEST REVERSANTS/CONTROL REVERTANTS PER PLATE>",
"</s_REVERSION RATE (TEST REVERSANTS/CONTROL REVERTANTS PER PLATE>",
"<s_REPORTED:>",
"</s_REPORTED:>",
"<s_NOTEBOOK PAGE>",
"</s_NOTEBOOK PAGE>",
"<s_LORILLARD>",
"</s_LORILLARD>",
"<s_INVESTIGATOR(S)>",
"</s_INVESTIGATOR(S)>",
"<s_DMSC>",
"</s_DMSC>",
"<s_DATE RECEIVED>",
"</s_DATE RECEIVED>",
"<s_Copies to the following:>",
"</s_Copies to the following:>",
"<s_CONTROL AFVERTANTS PER PLATE (0.05 ml SOLVENT)>",
"</s_CONTROL AFVERTANTS PER PLATE (0.05 ml SOLVENT)>",
"<s_CONCLUSION>",
"</s_CONCLUSION>",
"<s_CONCENTRATION 1mgimit>",
"</s_CONCENTRATION 1mgimit>",
"<s_COMPOUND (US plate)>",
"</s_COMPOUND (US plate)>",
"<s_2- AMINOANTHHACENE>",
"</s_2- AMINOANTHHACENE>",
"<s_(-) 9>",
"</s_(-) 9>",
"<s_(-) >",
"</s_(-) >",
"<s_(+) >",
"</s_(+) >",
"<s_WORK REQUESTED BY>",
"</s_WORK REQUESTED BY>",
"<s_PROJECT OBJECTIVE>",
"</s_PROJECT OBJECTIVE>",
"<s_PROJECT NAME>",
"</s_PROJECT NAME>",
"<s_PROJECT LEADER>",
"</s_PROJECT LEADER>",
"<s_PROJECT CODE>",
"</s_PROJECT CODE>",
"<s_YES>",
"</s_YES>",
"<s_PROMOTIONAL PERIOD:>",
"</s_PROMOTIONAL PERIOD:>",
"<s_PROMO #>",
"</s_PROMO #>",
"<s_OTHER*>",
"</s_OTHER*>",
"<s_ITEM/ BRAND:>",
"</s_ITEM/ BRAND:>",
"<s_IF YES, CAN IT BE IMPROVED?>",
"</s_IF YES, CAN IT BE IMPROVED?>",
"<s_FAIR>",
"</s_FAIR>",
"<s_COMMENTS:>",
"</s_COMMENTS:>",
"<s_AREA/ REGION/ DIVISION>",
"</s_AREA/ REGION/ DIVISION>",
"<s_*EXPLAIN:>",
"</s_*EXPLAIN:>",
"<s_#ITEMS/ DEALS RECEIVED:>",
"</s_#ITEMS/ DEALS RECEIVED:>",
"<s_SIGNATURE OF INITIATOR>",
"</s_SIGNATURE OF INITIATOR>",
"<s_PACK AND OR/CARTON>",
"</s_PACK AND OR/CARTON>",
"<s_ISSUE FREQUENCY/YEAR>",
"</s_ISSUE FREQUENCY/YEAR>",
"<s_EST, REDEMPTION:>",
"</s_EST, REDEMPTION:>",
"<s_USE:>",
"</s_USE:>",
"<s_UPC NO.>",
"</s_UPC NO.>",
"<s_UPC NO>",
"</s_UPC NO>",
"<s_SCHEDULE: DATE OR INVENTORY DEPLETION>",
"</s_SCHEDULE: DATE OR INVENTORY DEPLETION>",
"<s_QNED:>",
"</s_QNED:>",
"<s_OFFICIAL>",
"</s_OFFICIAL>",
"<s_NO>",
"</s_NO>",
"<s_MATERIAL NO.>",
"</s_MATERIAL NO.>",
"<s_MATERIAL NO>",
"</s_MATERIAL NO>",
"<s_LOUISVILLE>",
"</s_LOUISVILLE>",
"<s_INVENTORY DEPLETION DATE>",
"</s_INVENTORY DEPLETION DATE>",
"<s_DOMESTIC>",
"</s_DOMESTIC>",
"<s_DESIGN NO.>",
"</s_DESIGN NO.>",
"<s_DELIVERY DATE>",
"</s_DELIVERY DATE>",
"<s_Copies to:>",
"</s_Copies to:>",
"<s_BRAND (S)>",
"</s_BRAND (S)>",
"<s_TOTAL # OF SP EMPHASIS OUTLEIS WITH DISTRIBUTION>",
"</s_TOTAL # OF SP EMPHASIS OUTLEIS WITH DISTRIBUTION>",
"<s_TOTAL # OF NUMBER ONE CLUB OUTLETS WITH DISTRIBUTION>",
"</s_TOTAL # OF NUMBER ONE CLUB OUTLETS WITH DISTRIBUTION>",
"<s_TOTAL # OF INDEPENDENT SPECIAL EMPHASIS OUTLETS:>",
"</s_TOTAL # OF INDEPENDENT SPECIAL EMPHASIS OUTLETS:>",
"<s_TOTAL # OF INDEPENDENT NEWPORT #1 CLUB OUTLETS:>",
"</s_TOTAL # OF INDEPENDENT NEWPORT #1 CLUB OUTLETS:>",
"<s_SUBJECT:>",
"</s_SUBJECT:>",
"<s_PACKS>",
"</s_PACKS>",
"<s_PACKING>",
"</s_PACKING>",
"<s_NAME OF ACCOUNT>",
"</s_NAME OF ACCOUNT>",
"<s_G.P.C>",
"</s_G.P.C>",
"<s_DORAL>",
"</s_DORAL>",
"<s_DEC 8>",
"</s_DEC 8>",
"<s_CARTONS>",
"</s_CARTONS>",
"<s_BASIC>",
"</s_BASIC>",
"<s_AREA REGION:>",
"</s_AREA REGION:>",
"<s_%>",
"</s_%>",
"<s_Total Area Budget:>",
"</s_Total Area Budget:>",
"<s_This Change: (From Current Budget)>",
"</s_This Change: (From Current Budget)>",
"<s_This Amount>",
"</s_This Amount>",
"<s_Supplier:>",
"</s_Supplier:>",
"<s_Projected: Field Start>",
"</s_Projected: Field Start>",
"<s_Project No.>",
"</s_Project No.>",
"<s_Original>",
"</s_Original>",
"<s_New Balance:>",
"</s_New Balance:>",
"<s_Description:>",
"</s_Description:>",
"<s_Current Balance Available>",
"</s_Current Balance Available>",
"<s_Committed To Date:>",
"</s_Committed To Date:>",
"<s_Brand Name:>",
"</s_Brand Name:>",
"<s_Amt. of Change:>",
"</s_Amt. of Change:>",
"<s_Adjusted Total Cost of Protect:>",
"</s_Adjusted Total Cost of Protect:>",
"<s_Account Name>",
"</s_Account Name>",
"<s_PACK AND OR/ CARTON>",
"</s_PACK AND OR/ CARTON>",
"<s_APPROVALS:>",
"</s_APPROVALS:>",
"<s_STORAGE CONDITIONS>",
"</s_STORAGE CONDITIONS>",
"<s_SOLID>",
"</s_SOLID>",
"<s_RECEIPT DATE (s)>",
"</s_RECEIPT DATE (s)>",
"<s_PROJECT SHEET NO>",
"</s_PROJECT SHEET NO>",
"<s_PROJECT NO.>",
"</s_PROJECT NO.>",
"<s_PERFORMING DEPARTMENTS>",
"</s_PERFORMING DEPARTMENTS>",
"<s_LH NUMBER (s)>",
"</s_LH NUMBER (s)>",
"<s_EXPERIMENTAL PROCEDURES>",
"</s_EXPERIMENTAL PROCEDURES>",
"<s_DATE ISSUED>",
"</s_DATE ISSUED>",
"<s_COLOR>",
"</s_COLOR>",
"<s_substance>",
"</s_substance>",
"<s_Type>",
"</s_Type>",
"<s_Total Pressure Drop (encap.)>",
"</s_Total Pressure Drop (encap.)>",
"<s_Total Cigt. Wt.>",
"</s_Total Cigt. Wt.>",
"<s_Supplier Code No(s).>",
"</s_Supplier Code No(s).>",
"<s_Supplier Code No (s)>",
"</s_Supplier Code No (s)>",
"<s_Supplier (s)>",
"</s_Supplier (s)>",
"<s_Style:>",
"</s_Style:>",
"<s_Robbin Length>",
"</s_Robbin Length>",
"<s_Replaces:>",
"</s_Replaces:>",
"<s_Prepared by:>",
"</s_Prepared by:>",
"<s_Positioning>",
"</s_Positioning>",
"<s_Place of Manufacture:>",
"</s_Place of Manufacture:>",
"<s_Perforation Type and No. of lines>",
"</s_Perforation Type and No. of lines>",
"<s_Overall>",
"</s_Overall>",
"<s_Net Tob. Rod Density>",
"</s_Net Tob. Rod Density>",
"<s_Moisture content (ex-catcher)>",
"</s_Moisture content (ex-catcher)>",
"<s_Glue Pree Area>",
"</s_Glue Pree Area>",
"<s_Filter ventilation Rate>",
"</s_Filter ventilation Rate>",
"<s_Filter Plug Pressure Drop encap.>",
"</s_Filter Plug Pressure Drop encap.>",
"<s_Dimension>",
"</s_Dimension>",
"<s_Country:>",
"</s_Country:>",
"<s_Company:>",
"</s_Company:>",
"<s_Color>",
"</s_Color>",
"<s_Brand:>",
"</s_Brand:>",
"<s_OUR FAX NUMBER IS:>",
"</s_OUR FAX NUMBER IS:>",
"<s_NUMBER OF PAGES (INCLUDING COVER SHEET):>",
"</s_NUMBER OF PAGES (INCLUDING COVER SHEET):>",
"<s_Streptozotocin>",
"</s_Streptozotocin>",
"<s_SOURCE>",
"</s_SOURCE>",
"<s_REVERSION RATE TEST REVERTANTS-CONTROL REVERTANTS PER PLATE)>",
"</s_REVERSION RATE TEST REVERTANTS-CONTROL REVERTANTS PER PLATE)>",
"<s_REPORTED>",
"</s_REPORTED>",
"<s_OMSO>",
"</s_OMSO>",
"<s_LOT NO:>",
"</s_LOT NO:>",
"<s_LORILLARD NO:>",
"</s_LORILLARD NO:>",
"<s_CONTROL REVERTANTS PER PLATE TOON MI SOLVENTI>",
"</s_CONTROL REVERTANTS PER PLATE TOON MI SOLVENTI>",
"<s_CONCENTRATION mg/ml>",
"</s_CONCENTRATION mg/ml>",
"<s_COMPOUND plates>",
"</s_COMPOUND plates>",
"<s_2. AMINOANTHRACENE>",
"</s_2. AMINOANTHRACENE>",
"<s_(-) 5-9>",
"</s_(-) 5-9>",
"<s_(+) 5-9>",
"</s_(+) 5-9>",
"<s_DISTRIBUTION:>",
"</s_DISTRIBUTION:>",
"<s_RECIPIENT>",
"</s_RECIPIENT>",
"<s_PHONE No.>",
"</s_PHONE No.>",
"<s_No.>",
"</s_No.>",
"<s_Fax Number:>",
"</s_Fax Number:>",
"<s_FAX:>",
"</s_FAX:>",
"<s_FAX>",
"</s_FAX>",
"<s_COMPANY>",
"</s_COMPANY>",
"<s_CHARGEBACK:>",
"</s_CHARGEBACK:>",
"<s_SATURDAY- SUNDAY>",
"</s_SATURDAY- SUNDAY>",
"<s_PREMIUMS ONLY>",
"</s_PREMIUMS ONLY>",
"<s_PHONE NUMBER>",
"</s_PHONE NUMBER>",
"<s_NAME OF ALLWAYS SUPERVISOR:>",
"</s_NAME OF ALLWAYS SUPERVISOR:>",
"<s_EVENT NAME:>",
"</s_EVENT NAME:>",
"<s_EVENT LOCATION:>",
"</s_EVENT LOCATION:>",
"<s_EVENT DATES:>",
"</s_EVENT DATES:>",
"<s_BEEPER NUMBER:>",
"</s_BEEPER NUMBER:>",
"<s_# OF BOOTH(S)>",
"</s_# OF BOOTH(S)>",
"<s_Yes>",
"</s_Yes>",
"<s_Total Cost>",
"</s_Total Cost>",
"<s_This Change: (From Current Budget>",
"</s_This Change: (From Current Budget>",
"<s_Supplier>",
"</s_Supplier>",
"<s_Submitted by:>",
"</s_Submitted by:>",
"<s_Sample Size>",
"</s_Sample Size>",
"<s_Requested By:>",
"</s_Requested By:>",
"<s_Recommended Supplier>",
"</s_Recommended Supplier>",
"<s_Reason (s) for Recommendation>",
"</s_Reason (s) for Recommendation>",
"<s_Project Type>",
"</s_Project Type>",
"<s_Original Budgeted Amount>",
"</s_Original Budgeted Amount>",
"<s_Original ->",
"</s_Original ->",
"<s_New Balance>",
"</s_New Balance>",
"<s_Internal Init. Date>",
"</s_Internal Init. Date>",
"<s_Final Report Due (Supplier Rpt.) Wave (s)>",
"</s_Final Report Due (Supplier Rpt.) Wave (s)>",
"<s_Field Complete Wave (s)>",
"</s_Field Complete Wave (s)>",
"<s_Ext. Auth. Date Wave (s)>",
"</s_Ext. Auth. Date Wave (s)>",
"<s_Est.>",
"</s_Est.>",
"<s_Current Bal. Available:>",
"</s_Current Bal. Available:>",
"<s_Cost Per Interview>",
"</s_Cost Per Interview>",
"<s_Cost>",
"</s_Cost>",
"<s_Commited to Date: (Current Year)>",
"</s_Commited to Date: (Current Year)>",
"<s_Budget Check:>",
"</s_Budget Check:>",
"<s_Tobacco Number:>",
"</s_Tobacco Number:>",
"<s_Tar Number:>",
"</s_Tar Number:>",
"<s_SUPPLIED UNTIL:>",
"</s_SUPPLIED UNTIL:>",
"<s_SMOKER:>",
"</s_SMOKER:>",
"<s_SHIPPED VIA:>",
"</s_SHIPPED VIA:>",
"<s_SHIPPED TO:>",
"</s_SHIPPED TO:>",
"<s_SAMPLE WEIGHT:>",
"</s_SAMPLE WEIGHT:>",
"<s_REQUIREMENTS /MP.:>",
"</s_REQUIREMENTS /MP.:>",
"<s_METHOD OF PREPARATION:>",
"</s_METHOD OF PREPARATION:>",
"<s_DESCRIPTION:>",
"</s_DESCRIPTION:>",
"<s_DATE SHIPPED:>",
"</s_DATE SHIPPED:>",
"<s_Batch Number:>",
"</s_Batch Number:>",
"<s_lobbyist for lobbying? (yes or no)>",
"</s_lobbyist for lobbying? (yes or no)>",
"<s_Retainer>",
"</s_Retainer>",
"<s_Reporting Period:>",
"</s_Reporting Period:>",
"<s_Part of salary received for lobbying:>",
"</s_Part of salary received for lobbying:>",
"<s_Organization/ Employer Name:>",
"</s_Organization/ Employer Name:>",
"<s_Lobbyist Name:>",
"</s_Lobbyist Name:>",
"<s_Contractual or agreed fee:>",
"</s_Contractual or agreed fee:>",
"<s_Compensation received lobbying:>",
"</s_Compensation received lobbying:>",
"<s_Amount earned but not received:>",
"</s_Amount earned but not received:>",
"<s_SUGGESTION: (Describe Current Situation and Idea)>",
"</s_SUGGESTION: (Describe Current Situation and Idea)>",
"<s_SUBMITTERS SS#:>",
"</s_SUBMITTERS SS#:>",
"<s_SUBMITTED BY:>",
"</s_SUBMITTED BY:>",
"<s_QIP Log #1>",
"</s_QIP Log #1>",
"<s_PROFIT IMPROVEMENT:>",
"</s_PROFIT IMPROVEMENT:>",
"<s_Describe Possible Solutions And Benefits>",
"</s_Describe Possible Solutions And Benefits>",
"<s_Date Recd>",
"</s_Date Recd>",
"<s_DEPARTMENT:>",
"</s_DEPARTMENT:>",
"<s_WATER BOTTLES>",
"</s_WATER BOTTLES>",
"<s_SAMPLES/ ITEMS REQUIRED:>",
"</s_SAMPLES/ ITEMS REQUIRED:>",
"<s_QUANTITY REQUIRED>",
"</s_QUANTITY REQUIRED>",
"<s_NEWPORTKS K.S.>",
"</s_NEWPORTKS K.S.>",
"<s_NAME OF EVENT:>",
"</s_NAME OF EVENT:>",
"<s_KENT K.S.>",
"</s_KENT K.S.>",
"<s_KENT III 100>",
"</s_KENT III 100>",
"<s_DIV. NAME/ NO:>",
"</s_DIV. NAME/ NO:>",
"<s_DATE TO CORP:>",
"</s_DATE TO CORP:>",
"<s_DATE FORWARDED TO PROMOTION SERVICES:>",
"</s_DATE FORWARDED TO PROMOTION SERVICES:>",
"<s_CUSTOMER SHIPPING NUMBER>",
"</s_CUSTOMER SHIPPING NUMBER>",
"<s_BASEBALL CAP>",
"</s_BASEBALL CAP>",
"<s_Any Other Items Available>",
"</s_Any Other Items Available>",
"<s_*DATE OF EVENT:>",
"</s_*DATE OF EVENT:>",
"<s_SEP 22>",
"</s_SEP 22>",
"<s_NO. OF STORES>",
"</s_NO. OF STORES>",
"<s_IND. LOR VOLUME>",
"</s_IND. LOR VOLUME>",
"<s_FULL>",
"</s_FULL>",
"<s_Zip Code>",
"</s_Zip Code>",
"<s_Telephone>",
"</s_Telephone>",
"<s_State>",
"</s_State>",
"<s_Plaintiff>",
"</s_Plaintiff>",
"<s_Name>",
"</s_Name>",
"<s_Defendant>",
"</s_Defendant>",
"<s_City>",
"</s_City>",
"<s_Address>",
"</s_Address>",
"<s_5. Specify the nature or type of asbestos- related injury alleged by the claimant. (E. q., Asbestosis; Lung Cancer- adenocarcinoma Lung Cancer- Mesothelioma; Pleural Thickening; Fibrosis; etc.)>",
"</s_5. Specify the nature or type of asbestos- related injury alleged by the claimant. (E. q., Asbestosis; Lung Cancer- adenocarcinoma Lung Cancer- Mesothelioma; Pleural Thickening; Fibrosis; etc.)>",
"<s_3. Date of claimants birth:>",
"</s_3. Date of claimants birth:>",
"<s_(c) Consortium>",
"</s_(c) Consortium>",
"<s_(a) Injury>",
"</s_(a) Injury>",
"<s_PAYROLL:>",
"</s_PAYROLL:>",
"<s_OTHER>",
"</s_OTHER>",
"<s_530:>",
"</s_530:>",
"<s_4. Occupation>",
"</s_4. Occupation>",
"<s_3. Business Address>",
"</s_3. Business Address>",
"<s_2. Residence Address>",
"</s_2. Residence Address>",
"<s_1. Full Name>",
"</s_1. Full Name>",
"<s_(Date)>",
"</s_(Date)>",
"<s_TENNIS TOURNAMENT>",
"</s_TENNIS TOURNAMENT>",
"<s_GOLF TOURNAMENT>",
"</s_GOLF TOURNAMENT>",
"<s_Total V. O. C. s>",
"</s_Total V. O. C. s>",
"<s_Total Solids>",
"</s_Total Solids>",
"<s_Technician>",
"</s_Technician>",
"<s_Solids Composit>",
"</s_Solids Composit>",
"<s_Formula No.>",
"</s_Formula No.>",
"<s_Customer>",
"</s_Customer>",
"<s_TIME>",
"</s_TIME>",
"<s_OFFICE:>",
"</s_OFFICE:>",
"<s_NAME:>",
"</s_NAME:>",
"<s_FAX PHONE NUMBER:>",
"</s_FAX PHONE NUMBER:>",
"<s_RE:>",
"</s_RE:>",
"<s_PROJECT #>",
"</s_PROJECT #>",
"<s_GENERAL PROJECT DESCRIPTION>",
"</s_GENERAL PROJECT DESCRIPTION>",
"<s_REPORTED BY>",
"</s_REPORTED BY>",
"<s_OTHER INFORMATION:>",
"</s_OTHER INFORMATION:>",
"<s_BRAND NAME:>",
"</s_BRAND NAME:>",
"<s_Suggestions/ Recommendations:>",
"</s_Suggestions/ Recommendations:>",
"<s_Service>",
"</s_Service>",
"<s_Recd>",
"</s_Recd>",
"<s_Race Day Info:>",
"</s_Race Day Info:>",
"<s_Posters>",
"</s_Posters>",
"<s_Mugs>",
"</s_Mugs>",
"<s_Location>",
"</s_Location>",
"<s_Invitees Comments:>",
"</s_Invitees Comments:>",
"<s_Food>",
"</s_Food>",
"<s_Floor (40)>",
"</s_Floor (40)>",
"<s_Floor>",
"</s_Floor>",
"<s_Division Mgr>",
"</s_Division Mgr>",
"<s_Division>",
"</s_Division>",
"<s_Displays (8)>",
"</s_Displays (8)>",
"<s_Date Submitted>",
"</s_Date Submitted>",
"<s_Date Ordered>",
"</s_Date Ordered>",
"<s_Date Notified>",
"</s_Date Notified>",
"<s_Date (s)>",
"</s_Date (s)>",
"<s_Counter>",
"</s_Counter>",
"<s_Cleanliness>",
"</s_Cleanliness>",
"<s_#Requested>",
"</s_#Requested>",
"<s_#Lorillard Personnel>",
"</s_#Lorillard Personnel>",
"<s_#Customers Invited>",
"</s_#Customers Invited>",
"<s_#Customers Attended>",
"</s_#Customers Attended>",
"<s_Written by:>",
"</s_Written by:>",
"<s_PRODUCT:>",
"</s_PRODUCT:>",
"<s_PRESENT:>",
"</s_PRESENT:>",
"<s_PLACE:>",
"</s_PLACE:>",
"<s_PH:>",
"</s_PH:>",
"<s_NO.>",
"</s_NO.>",
"<s_DATE OF REPORT:>",
"</s_DATE OF REPORT:>",
"<s_CLIENT:>",
"</s_CLIENT:>",
"<s_Newspapers:>",
"</s_Newspapers:>",
"<s_Newspaper:>",
"</s_Newspaper:>",
"<s_Magazines:>",
"</s_Magazines:>",
"<s_GEOGFIAPHICAL AREA(S)>",
"</s_GEOGFIAPHICAL AREA(S)>",
"<s_BRANDS (S) APPLICABLE>",
"</s_BRANDS (S) APPLICABLE>",
"<s_WITHOUT HEATING>",
"</s_WITHOUT HEATING>",
"<s_WITH HEATING (80C)>",
"</s_WITH HEATING (80C)>",
"<s_SIGNATURE>",
"</s_SIGNATURE>",
"<s_MOLECULAR WEIGHT>",
"</s_MOLECULAR WEIGHT>",
"<s_LRC COMPOUND CODE>",
"</s_LRC COMPOUND CODE>",
"<s_LORILLARD RESEARCH CENTER>",
"</s_LORILLARD RESEARCH CENTER>",
"<s_COMPOUND SENSITIVE TO>",
"</s_COMPOUND SENSITIVE TO>",
"<s_COMMENTS>",
"</s_COMMENTS>",
"<s_CLASS>",
"</s_CLASS>",
"<s_AMOUNT>",
"</s_AMOUNT>",
"<s_6) LIGHT:>",
"</s_6) LIGHT:>",
"<s_5) OXYGEN:>",
"</s_5) OXYGEN:>",
"<s_4) ALCOHOLS:>",
"</s_4) ALCOHOLS:>",
"<s_3) 5% NaOH:>",
"</s_3) 5% NaOH:>",
"<s_2) 5% HCL>",
"</s_2) 5% HCL>",
"<s_1) WATER or BRINE:>",
"</s_1) WATER or BRINE:>",
"<s_PROJECT NUMBER:>",
"</s_PROJECT NUMBER:>",
"<s_DEADLINE FOR BID RECEIPT:>",
"</s_DEADLINE FOR BID RECEIPT:>",
"<s_DATE REQUESTED:>",
"</s_DATE REQUESTED:>",
"<s_B&W ORIGINATOR:>",
"</s_B&W ORIGINATOR:>",
"<s_VS. CURRENT YEAR (INCR.) DECR.>",
"</s_VS. CURRENT YEAR (INCR.) DECR.>",
"<s_TOTAL YEAR>",
"</s_TOTAL YEAR>",
"<s_PROJECTED 4 MONTHS>",
"</s_PROJECTED 4 MONTHS>",
"<s_ITEM>",
"</s_ITEM>",
"<s_BUDGET YEAR 19>",
"</s_BUDGET YEAR 19>",
"<s_ACTUAL 8 MONTHS>",
"</s_ACTUAL 8 MONTHS>",
"<s_ACCOUNT NO.>",
"</s_ACCOUNT NO.>",
"<s_Study Number>",
"</s_Study Number>",
"<s_Study Name>",
"</s_Study Name>",
"<s_Reason for the Amendment>",
"</s_Reason for the Amendment>",
"<s_Part of Final Report to be Amended (Exact location)>",
"</s_Part of Final Report to be Amended (Exact location)>",
"<s_Initiation Date>",
"</s_Initiation Date>",
"<s_Date of Final Report (Review Completed Date)>",
"</s_Date of Final Report (Review Completed Date)>",
"<s_Amendment (Attach additional sheets as necessary)>",
"</s_Amendment (Attach additional sheets as necessary)>",
"<s_APPROVALS>",
"</s_APPROVALS>",
"<s_ACCEPT/ REJECT (as per 58.185 (c))>",
"</s_ACCEPT/ REJECT (as per 58.185 (c))>",
"<s_Submitted By:>",
"</s_Submitted By:>",
"<s_Start plete FR>",
"</s_Start plete FR>",
"<s_Reasons:>",
"</s_Reasons:>",
"<s_Previous $ Commitments This Project>",
"</s_Previous $ Commitments This Project>",
"<s_Current Balance Available:>",
"</s_Current Balance Available:>",
"<s_Adjusted Total Cost of Project:>",
"</s_Adjusted Total Cost of Project:>",
"<s_1987>",
"</s_1987>",
"<s_SUPPLIER:>",
"</s_SUPPLIER:>",
"<s_PAID OUT OF 1987 BUDGET>",
"</s_PAID OUT OF 1987 BUDGET>",
"<s_MR PERSONNEL:>",
"</s_MR PERSONNEL:>",
"<s_KOOL>",
"</s_KOOL>",
"<s_AUTHORIZED COST:>",
"</s_AUTHORIZED COST:>",
"<s_bp/mp >",
"</s_bp/mp >",
"<s_REGULATORY STATUS>",
"</s_REGULATORY STATUS>",
"<s_PHYSICAL APPEARANCE>",
"</s_PHYSICAL APPEARANCE>",
"<s_PH (CALCULATED 50%)>",
"</s_PH (CALCULATED 50%)>",
"<s_Genetic Assay No.>",
"</s_Genetic Assay No.>",
"<s_Compound Name>",
"</s_Compound Name>",
"<s_Chem Abstr#>",
"</s_Chem Abstr#>",
"<s_COMPOUND CODE>",
"</s_COMPOUND CODE>",
"<s_ASSAY RESULT>",
"</s_ASSAY RESULT>",
"<s_POOR>",
"</s_POOR>",
"<s_ITEM/ BRAND>",
"</s_ITEM/ BRAND>",
"<s_IF NO, EXPLAIN:>",
"</s_IF NO, EXPLAIN:>",
"<s_AREA REGION DIVISION>",
"</s_AREA REGION DIVISION>",
"<s_Time:>",
"</s_Time:>",
"<s_SAMPLING HOURS: *>",
"</s_SAMPLING HOURS: *>",
"<s_SAMPLING DATES: *>",
"</s_SAMPLING DATES: *>",
"<s_QUANTITIES:>",
"</s_QUANTITIES:>",
"<s_Place:>",
"</s_Place:>",
"<s_NUMBER OF SUPERVISORS:>",
"</s_NUMBER OF SUPERVISORS:>",
"<s_NUMBER OF SAMPLING PERSONNEL:>",
"</s_NUMBER OF SAMPLING PERSONNEL:>",
"<s_MARKET:>",
"</s_MARKET:>",
"<s_FDC REPRESENTATIVES:>",
"</s_FDC REPRESENTATIVES:>",
"<s_TEST MATERIAL(s)>",
"</s_TEST MATERIAL(s)>",
"<s_SIGNATURE:>",
"</s_SIGNATURE:>",
"<s_REFRIGERATOR 8 C>",
"</s_REFRIGERATOR 8 C>",
"<s_RECEIPT DATE(s)>",
"</s_RECEIPT DATE(s)>",
"<s_PROJECT SHEET NO.>",
"</s_PROJECT SHEET NO.>",
"<s_LIQUID>",
"</s_LIQUID>",
"<s_LH- NUMBER(s)>",
"</s_LH- NUMBER(s)>",
"<s_FOLLOW DEPARTMENT AND COMPANY SAFETY MANUALS>",
"</s_FOLLOW DEPARTMENT AND COMPANY SAFETY MANUALS>",
"<s_yes>",
"</s_yes>",
"<s_Research Firm>",
"</s_Research Firm>",
"<s_PROJECT TITLE>",
"</s_PROJECT TITLE>",
"<s_PRODUCT>",
"</s_PRODUCT>",
"<s_Moderators fee:>",
"</s_Moderators fee:>",
"<s_JOB#>",
"</s_JOB#>",
"<s_Facility:>",
"</s_Facility:>",
"<s_Cost Estimate>",
"</s_Cost Estimate>",
"<s_Agency:>",
"</s_Agency:>",
"<s_Number of Stores>",
"</s_Number of Stores>",
"<s_Name of Account>",
"</s_Name of Account>",
"<s_Ind/ Lor Volume>",
"</s_Ind/ Lor Volume>",
"<s_DIVISION NAME:>",
"</s_DIVISION NAME:>",
"<s_AUG 10>",
"</s_AUG 10>",
"<s_# REPS:>",
"</s_# REPS:>",
"<s_SOURCE OF INFORMATION:>",
"</s_SOURCE OF INFORMATION:>",
"<s_weighted as follows:>",
"</s_weighted as follows:>",
"<s_Research Liaison:>",
"</s_Research Liaison:>",
"<s_Referent Brand(s):>",
"</s_Referent Brand(s):>",
"<s_Project Name/ Description>",
"</s_Project Name/ Description>",
"<s_Note:>",
"</s_Note:>",
"<s_Medellin:>",
"</s_Medellin:>",
"<s_Market(s):>",
"</s_Market(s):>",
"<s_Male:>",
"</s_Male:>",
"<s_Female:>",
"</s_Female:>",
"<s_Client Group:>",
"</s_Client Group:>",
"<s_Client Contact:>",
"</s_Client Contact:>",
"<s_By age:>",
"</s_By age:>",
"<s_Brief Number>",
"</s_Brief Number>",
"<s_Bogotá:>",
"</s_Bogotá:>",
"<s_Background Problem Definition:>",
"</s_Background Problem Definition:>",
"<s_BY SEL:>",
"</s_BY SEL:>",
"<s_B/ quilla:>",
"</s_B/ quilla:>",
"<s_ginal Request Made By>",
"</s_ginal Request Made By>",
"<s_Weight>",
"</s_Weight>",
"<s_Tobacco Blend>",
"</s_Tobacco Blend>",
"<s_Tip. Paper Por.>",
"</s_Tip. Paper Por.>",
"<s_Tip. Paper>",
"</s_Tip. Paper>",
"<s_Tear Tape>",
"</s_Tear Tape>",
"<s_Special Requirements>",
"</s_Special Requirements>",
"<s_Shipping>",
"</s_Shipping>",
"<s_Section B>",
"</s_Section B>",
"<s_Section A>",
"</s_Section A>",
"<s_Sample Specifications Written By>",
"</s_Sample Specifications Written By>",
"<s_Sample Requistion>",
"</s_Sample Requistion>",
"<s_Requirements Laboratory>",
"</s_Requirements Laboratory>",
"<s_RECASING>",
"</s_RECASING>",
"<s_Purpose of Sample>",
"</s_Purpose of Sample>",
"<s_Pressure Drop>",
"</s_Pressure Drop>",
"<s_Plug Wrap Por.>",
"</s_Plug Wrap Por.>",
"<s_Plug Wrap>",
"</s_Plug Wrap>",
"<s_Plast.>",
"</s_Plast.>",
"<s_Paper>",
"</s_Paper>",
"<s_Other>",
"</s_Other>",
"<s_Markings>",
"</s_Markings>",
"<s_Making & Packing>",
"</s_Making & Packing>",
"<s_Maker>",
"</s_Maker>",
"<s_MENTHOL>",
"</s_MENTHOL>",
"<s_Length>",
"</s_Length>",
"<s_Laboratory Analysis:>",
"</s_Laboratory Analysis:>",
"<s_Labels>",
"</s_Labels>",
"<s_Kind>",
"</s_Kind>",
"<s_Glue Roller>",
"</s_Glue Roller>",
"<s_Filter Production>",
"</s_Filter Production>",
"<s_FINAL FLAVOR>",
"</s_FINAL FLAVOR>",
"<s_Closures>",
"</s_Closures>",
"<s_Circunference>",
"</s_Circunference>",
"<s_Circumference>",
"</s_Circumference>",
"<s_Cartons>",
"</s_Cartons>",
"<s_CASING>",
"</s_CASING>",
"<s_BLEND>",
"</s_BLEND>",
"<s_Air Dilution>",
"</s_Air Dilution>",
"<s_VENDOR>",
"</s_VENDOR>",
"<s_TERMS>",
"</s_TERMS>",
"<s_SHIP TO DEPT BRANCH)>",
"</s_SHIP TO DEPT BRANCH)>",
"<s_ISSUED BY>",
"</s_ISSUED BY>",
"<s_DEPT NO.>",
"</s_DEPT NO.>",
"<s_DATE WANTED>",
"</s_DATE WANTED>",
"<s_Attn:>",
"</s_Attn:>",
"<s_APPROVED BY>",
"</s_APPROVED BY>",
"<s_ACCT NO.>",
"</s_ACCT NO.>",
"<s_VIA>",
"</s_VIA>",
"<s_SHIP TO (DEPT- BRANCH)>",
"</s_SHIP TO (DEPT- BRANCH)>",
"<s_NET>",
"</s_NET>",
"<s_FOR PURCHASING DEPARTMENT USE ONLY>",
"</s_FOR PURCHASING DEPARTMENT USE ONLY>",
"<s_F. O. B.>",
"</s_F. O. B.>",
"<s_DEPT. NO.>",
"</s_DEPT. NO.>",
"<s_ACCT. NO.>",
"</s_ACCT. NO.>",
"<s_SOFT PACK:>",
"</s_SOFT PACK:>",
"<s_NONMENTHOL:>",
"</s_NONMENTHOL:>",
"<s_NONFILTER:>",
"</s_NONFILTER:>",
"<s_NICOTINE:>",
"</s_NICOTINE:>",
"<s_(9) TAR:>",
"</s_(9) TAR:>",
"<s_(8) PACK SIZE SOLD:>",
"</s_(8) PACK SIZE SOLD:>",
"<s_(6) HARD PACK>",
"</s_(6) HARD PACK>",
"<s_(5) FILTER:>",
"</s_(5) FILTER:>",
"<s_(4) PRODUCT LENGTH:>",
"</s_(4) PRODUCT LENGTH:>",
"<s_(3) VARIETY DESCRIPTION>",
"</s_(3) VARIETY DESCRIPTION>",
"<s_(26) TOTAL REPORTABLE EXPENDITURES FOR VARIETY:>",
"</s_(26) TOTAL REPORTABLE EXPENDITURES FOR VARIETY:>",
"<s_(25) CAT- M- EXPENSES:>",
"</s_(25) CAT- M- EXPENSES:>",
"<s_(24) CAT- L- EXPENSES:>",
"</s_(24) CAT- L- EXPENSES:>",
"<s_(23) CAT- K- EXPENSES:>",
"</s_(23) CAT- K- EXPENSES:>",
"<s_(22) CAT- J- EXPENSES:>",
"</s_(22) CAT- J- EXPENSES:>",
"<s_(21) CAT- I- EXPENSES:>",
"</s_(21) CAT- I- EXPENSES:>",
"<s_(20) CAT- H- EXPENSES:>",
"</s_(20) CAT- H- EXPENSES:>",
"<s_(2) BRAND FAMILY NAME:>",
"</s_(2) BRAND FAMILY NAME:>",
"<s_(19) CAT- G- EXPENSES:>",
"</s_(19) CAT- G- EXPENSES:>",
"<s_(18) CAT- F- EXPENSES:>",
"</s_(18) CAT- F- EXPENSES:>",
"<s_(17) CAT- E- EXPENSES>",
"</s_(17) CAT- E- EXPENSES>",
"<s_(16) CAT- D- EXPENSES:>",
"</s_(16) CAT- D- EXPENSES:>",
"<s_(15) CAT- C- EXPENSES:>",
"</s_(15) CAT- C- EXPENSES:>",
"<s_(14) CAT- B- EXPENSES:>",
"</s_(14) CAT- B- EXPENSES:>",
"<s_(13) CAT- A- EXPENSES:>",
"</s_(13) CAT- A- EXPENSES:>",
"<s_(11) VARIETY DOLLAR SALES:>",
"</s_(11) VARIETY DOLLAR SALES:>",
"<s_(10) VARIETY UNIT SALES:>",
"</s_(10) VARIETY UNIT SALES:>",
"<s_(1) YEAR COVERED:>",
"</s_(1) YEAR COVERED:>",
"<s_REQUIREMENTS:>",
"</s_REQUIREMENTS:>",
"<s_Pack and / or Carton?>",
"</s_Pack and / or Carton?>",
"<s_Media Type>",
"</s_Media Type>",
"<s_Media Name>",
"</s_Media Name>",
"<s_Job Number>",
"</s_Job Number>",
"<s_Geographical Area (s)>",
"</s_Geographical Area (s)>",
"<s_Date Initiated>",
"</s_Date Initiated>",
"<s_Coupon Value>",
"</s_Coupon Value>",
"<s_Coupon Issue Date>",
"</s_Coupon Issue Date>",
"<s_Coupon Expiration Date>",
"</s_Coupon Expiration Date>",
"<s_Code Assigned>",
"</s_Code Assigned>",
"<s_Circulation (#)>",
"</s_Circulation (#)>",
"<s_Brand (s) Applicable>",
"</s_Brand (s) Applicable>",
"<s_ANALYTICAL>",
"</s_ANALYTICAL>",
"<s_*Issue Frequency / Year>",
"</s_*Issue Frequency / Year>",
"<s_* Space / Color>",
"</s_* Space / Color>",
"<s_* Advertising Creative Title>",
"</s_* Advertising Creative Title>",
"<s_SCIENTIFIC METING OF CHOICE:>",
"</s_SCIENTIFIC METING OF CHOICE:>",
"<s_SCIENTIFIC JOURNAL OF CHOICE:>",
"</s_SCIENTIFIC JOURNAL OF CHOICE:>",
"<s_PRESENT STATUS OF WORK (Cite progress reports where appropriate)>",
"</s_PRESENT STATUS OF WORK (Cite progress reports where appropriate)>",
"<s_NATURE OF WORK:>",
"</s_NATURE OF WORK:>",
"<s_NAMES OF OTHER PERSONS COLLABORATING IN WORK:>",
"</s_NAMES OF OTHER PERSONS COLLABORATING IN WORK:>",
"<s_IF SO, GIVE DATE AND TITLE:>",
"</s_IF SO, GIVE DATE AND TITLE:>",
"<s_HAS WORK BEEN REPORTED IN MANUSCRIPT >",
"</s_HAS WORK BEEN REPORTED IN MANUSCRIPT >",
"<s_ESTIMATE OF TIME NEEDED TO PREPARE MANUSCRIPT FOR PUBLICATION:>",
"</s_ESTIMATE OF TIME NEEDED TO PREPARE MANUSCRIPT FOR PUBLICATION:>",
"<s_ESTIMATE OF TIME NEEDED TO PREPARE MANUSCRIPT FOR PRESENTATION:>",
"</s_ESTIMATE OF TIME NEEDED TO PREPARE MANUSCRIPT FOR PRESENTATION:>",
"<s_ESTIMATE OF TIME NEEDED TO COMPLETE WORK:>",
"</s_ESTIMATE OF TIME NEEDED TO COMPLETE WORK:>",
"<s_DIVISION>",
"</s_DIVISION>",
"<s_Under 35 35 & Over>",
"</s_Under 35 35 & Over>",
"<s_Under 25>",
"</s_Under 25>",
"<s_Type of Ad>",
"</s_Type of Ad>",
"<s_Total Sample>",
"</s_Total Sample>",
"<s_Title>",
"</s_Title>",
"<s_Test Brand Smokers>",
"</s_Test Brand Smokers>",
"<s_SCORE>",
"</s_SCORE>",
"<s_Project #>",
"</s_Project #>",
"<s_OVERALL:>",
"</s_OVERALL:>",
"<s_Newspaper (Date)>",
"</s_Newspaper (Date)>",
"<s_Male>",
"</s_Male>",
"<s_Female>",
"</s_Female>",
"<s_Code #>",
"</s_Code #>",
"<s_Brand>",
"</s_Brand>",
"<s_BASE>",
"</s_BASE>",
"<s_All Other Smokers>",
"</s_All Other Smokers>",
"<s_45 & Over>",
"</s_45 & Over>",
"<s_35- 44>",
"</s_35- 44>",
"<s_25- 34>",
"</s_25- 34>",
"<s_Total (205)>",
"</s_Total (205)>",
"<s_TAR>",
"</s_TAR>",
"<s_Significant Difference:>",
"</s_Significant Difference:>",
"<s_STRENGTH (7= Stronger)>",
"</s_STRENGTH (7= Stronger)>",
"<s_SMOOTHNESS (7= 5moother>",
"</s_SMOOTHNESS (7= 5moother>",
"<s_SATISFYING (7= More>",
"</s_SATISFYING (7= More>",
"<s_SAMPLE:>",
"</s_SAMPLE:>",
"<s_PDC #>",
"</s_PDC #>",
"<s_PAGE #>",
"</s_PAGE #>",
"<s_No Preference>",
"</s_No Preference>",
"<s_NIC>",
"</s_NIC>",
"<s_Marginal Difference:>",
"</s_Marginal Difference:>",
"<s_Male (99)>",
"</s_Male (99)>",
"<s_MOIST>",
"</s_MOIST>",
"<s_MENTHOL TASTE (7= Better>",
"</s_MENTHOL TASTE (7= Better>",
"<s_MENT>",
"</s_MENT>",
"<s_KOOL Lights KS- white tip- ping masked>",
"</s_KOOL Lights KS- white tip- ping masked>",
"<s_KOOL Lights>",
"</s_KOOL Lights>",
"<s_KL>",
"</s_KL>",
"<s_Female (106)>",
"</s_Female (106)>",
"<s_FIELD DATE:>",
"</s_FIELD DATE:>",
"<s_EASE OF DRAW 17 Easier>",
"</s_EASE OF DRAW 17 Easier>",
"<s_Directional Difference:>",
"</s_Directional Difference:>",
"<s_CIGARETTES:>",
"</s_CIGARETTES:>",
"<s_Bright KS white tipping->",
"</s_Bright KS white tipping->",
"<s_Bright>",
"</s_Bright>",
"<s_APTERTASTE (7= Pleasant)>",
"</s_APTERTASTE (7= Pleasant)>",
"<s_AMT MENTHOL (7= More)>",
"</s_AMT MENTHOL (7= More)>",
"<s_35+ 109>",
"</s_35+ 109>",
"<s_21- 34 (96)>",
"</s_21- 34 (96)>",
"<s_REVIEWED>",
"</s_REVIEWED>",
"<s_REGISTRY NUMBER (IF applicable)>",
"</s_REGISTRY NUMBER (IF applicable)>",
"<s_NAME>",
"</s_NAME>",
"<s_LORILLARD COMPOUND CODE>",
"</s_LORILLARD COMPOUND CODE>",
"<s_TRUE CORE AREAS>",
"</s_TRUE CORE AREAS>",
"<s_JOE NUMBER:>",
"</s_JOE NUMBER:>",
"<s_- SIGNATURE OF INITIATOR>",
"</s_- SIGNATURE OF INITIATOR>",
"<s_- PACK AND/OR CARTON>",
"</s_- PACK AND/OR CARTON>",
"<s_- MEDIA TYPE>",
"</s_- MEDIA TYPE>",
"<s_- GEOGRAPHICAL AREA(S)>",
"</s_- GEOGRAPHICAL AREA(S)>",
"<s_- COUPON VALUE>",
"</s_- COUPON VALUE>",
"<s_- COUPON ISSUE DATE>",
"</s_- COUPON ISSUE DATE>",
"<s_- COUPON EXPIRATION DATE>",
"</s_- COUPON EXPIRATION DATE>",
"<s_- CIRCULATION>",
"</s_- CIRCULATION>",
"<s_- BRAND(S) APPLICABLE>",
"</s_- BRAND(S) APPLICABLE>",
"<s_- -DATE INITIATED>",
"</s_- -DATE INITIATED>",
"<s_Wyoming>",
"</s_Wyoming>",
"<s_Wisconsin>",
"</s_Wisconsin>",
"<s_West Virginia>",
"</s_West Virginia>",
"<s_Virginia>",
"</s_Virginia>",
"<s_Vermont>",
"</s_Vermont>",
"<s_Utah>",
"</s_Utah>",
"<s_Todays Date>",
"</s_Todays Date>",
"<s_Tennessee>",
"</s_Tennessee>",
"<s_South Carolina>",
"</s_South Carolina>",
"<s_Rhode Island>",
"</s_Rhode Island>",
"<s_QUANTITY>",
"</s_QUANTITY>",
"<s_Pennsyl vania>",
"</s_Pennsyl vania>",
"<s_PROJECT ORIGINATED BY>",
"</s_PROJECT ORIGINATED BY>",
"<s_PRODUCT Code #>",
"</s_PRODUCT Code #>",
"<s_Oregon>",
"</s_Oregon>",
"<s_Ohio>",
"</s_Ohio>",
"<s_North Dakota>",
"</s_North Dakota>",
"<s_North Carolina>",
"</s_North Carolina>",
"<s_New York>",
"</s_New York>",
"<s_New Mexico>",
"</s_New Mexico>",
"<s_New Jersey>",
"</s_New Jersey>",
"<s_New Hampshire>",
"</s_New Hampshire>",
"<s_Nebraska>",
"</s_Nebraska>",
"<s_Montana>",
"</s_Montana>",
"<s_Missouri>",
"</s_Missouri>",
"<s_Mississippi>",
"</s_Mississippi>",
"<s_Minnesota>",
"</s_Minnesota>",
"<s_Michigan>",
"</s_Michigan>",
"<s_Maryland>",
"</s_Maryland>",
"<s_Maine>",
"</s_Maine>",
"<s_MRD #>",
"</s_MRD #>",
"<s_Louisiana>",
"</s_Louisiana>",
"<s_Kentucky>",
"</s_Kentucky>",
"<s_Kansas>",
"</s_Kansas>",
"<s_Illinois>",
"</s_Illinois>",
"<s_Georgia>",
"</s_Georgia>",
"<s_Delaware>",
"</s_Delaware>",
"<s_D. C.>",
"</s_D. C.>",
"<s_Connecticut>",
"</s_Connecticut>",
"<s_Colorada>",
"</s_Colorada>",
"<s_California>",
"</s_California>",
"<s_Arizona>",
"</s_Arizona>",
"<s_Alabama>",
"</s_Alabama>",
"<s_*NYC, N. Y.>",
"</s_*NYC, N. Y.>",
"<s_*Chicago, Ill.>",
"</s_*Chicago, Ill.>",
"<s_(4s, 5s, 20s etc.)>",
"</s_(4s, 5s, 20s etc.)>",
"<s_TELEX>",
"</s_TELEX>",
"<s_TELEPHONE:>",
"</s_TELEPHONE:>",
"<s_TELEFAX>",
"</s_TELEFAX>",
"<s_Room:>",
"</s_Room:>",
"<s_CABLE>",
"</s_CABLE>",
"<s_Producion Process>",
"</s_Producion Process>",
"<s_Permit#:>",
"</s_Permit#:>",
"<s_PRODUCT CLASSIFICATION (Circle Dne):>",
"</s_PRODUCT CLASSIFICATION (Circle Dne):>",
"<s_PRODUCT (CHEMICAL) NAME:>",
"</s_PRODUCT (CHEMICAL) NAME:>",
"<s_PERCENT ACTIVES (Non -water):>",
"</s_PERCENT ACTIVES (Non -water):>",
"<s_MSDS ON FILE? (Circle One):>",
"</s_MSDS ON FILE? (Circle One):>",
"<s_CHEMICAL FORMULA:>",
"</s_CHEMICAL FORMULA:>",
"<s_CAS#>",
"</s_CAS#>",
"<s_1993 AVG. MONTHLY USAGE (LBS.)>",
"</s_1993 AVG. MONTHLY USAGE (LBS.)>",
"<s_1993 ANNUAL USAGE (LBS.):>",
"</s_1993 ANNUAL USAGE (LBS.):>",
"<s_Total Authorized Project Amount>",
"</s_Total Authorized Project Amount>",
"<s_To Be Deducted from 1999 Budget>",
"</s_To Be Deducted from 1999 Budget>",
"<s_To Be Deducted from 1998 Budget>",
"</s_To Be Deducted from 1998 Budget>",
"<s_Sample Size:>",
"</s_Sample Size:>",
"<s_Requested by:>",
"</s_Requested by:>",
"<s_Recommended Supplier:>",
"</s_Recommended Supplier:>",
"<s_Reason (s) for Recommendation:>",
"</s_Reason (s) for Recommendation:>",
"<s_Project Type (Product Test, A & U, etc.)>",
"</s_Project Type (Product Test, A & U, etc.)>",
"<s_Project No.:>",
"</s_Project No.:>",
"<s_Proiected External Authorization Date>",
"</s_Proiected External Authorization Date>",
"<s_Original:>",
"</s_Original:>",
"<s_Final Supplier Report Due>",
"</s_Final Supplier Report Due>",
"<s_Field Complete>",
"</s_Field Complete>",
"<s_Est. Travel>",
"</s_Est. Travel>",
"<s_Cost ($)>",
"</s_Cost ($)>",
"<s_Approved By:>",
"</s_Approved By:>",
"<s_increased>",
"</s_increased>",
"<s_Method>",
"</s_Method>",
"<s_Authorized to>",
"</s_Authorized to>",
"<s_Authorized by>",
"</s_Authorized by>",
"<s_Revised Budget>",
"</s_Revised Budget>",
"<s_Project No>",
"</s_Project No>",
"<s_Offer Description>",
"</s_Offer Description>",
"<s_Description>",
"</s_Description>",
"<s_Current Budget>",
"</s_Current Budget>",
"<s_Charge Code>",
"</s_Charge Code>",
"<s_BRANDS>",
"</s_BRANDS>",
"<s_Amount>",
"</s_Amount>",
"<s_Adjustment>",
"</s_Adjustment>",
"<s_ction to Litmus>",
"</s_ction to Litmus>",
"<s_Tar>",
"</s_Tar>",
"<s_Static -Complete Cigar>",
"</s_Static -Complete Cigar>",
"<s_Present Sample>",
"</s_Present Sample>",
"<s_Nicotine>",
"</s_Nicotine>",
"<s_Mean of Last 12 Samples>",
"</s_Mean of Last 12 Samples>",
"<s_Draw>",
"</s_Draw>",
"<s_Characteristic Tested>",
"</s_Characteristic Tested>",
"<s_-Went out immediately>",
"</s_-Went out immediately>",
"<s_-1 /3 Cigar>",
"</s_-1 /3 Cigar>",
"<s_-1 /2 Cigar>",
"</s_-1 /2 Cigar>",
"<s_TESTED:>",
"</s_TESTED:>",
"<s_STRAIN OF MICE>",
"</s_STRAIN OF MICE>",
"<s_RESULTS (NO DEAD/NO TESTED>",
"</s_RESULTS (NO DEAD/NO TESTED>",
"<s_REFERENCE FOR CALCULATION>",
"</s_REFERENCE FOR CALCULATION>",
"<s_P.>",
"</s_P.>",
"<s_NOTEBOOK PAGE:>",
"</s_NOTEBOOK PAGE:>",
"<s_MALE>",
"</s_MALE>",
"<s_LORILLARD NO>",
"</s_LORILLARD NO>",
"<s_LD50 95% CONFIDENCE >",
"</s_LD50 95% CONFIDENCE >",
"<s_INVESTIGATOR (S)>",
"</s_INVESTIGATOR (S)>",
"<s_GROUP NO.>",
"</s_GROUP NO.>",
"<s_DOSAGE (mg/kg) BODY WEIGHT>",
"</s_DOSAGE (mg/kg) BODY WEIGHT>",
"<s_CONCLUSION:>",
"</s_CONCLUSION:>",
"<s_AVERAGE WEIGHT RANGE (GM)>",
"</s_AVERAGE WEIGHT RANGE (GM)>",
"<s_% SOLUTION>",
"</s_% SOLUTION>",
"<s_Title of Action:>",
"</s_Title of Action:>",
"<s_Served:>",
"</s_Served:>",
"<s_RECEIVED AND FORWARDED ON>",
"</s_RECEIVED AND FORWARDED ON>",
"<s_Plaintiffs Attorney(s):>",
"</s_Plaintiffs Attorney(s):>",
"<s_Per>",
"</s_Per>",
"<s_On Whom Process was Served:>",
"</s_On Whom Process was Served:>",
"<s_Nature of Action:>",
"</s_Nature of Action:>",
"<s_IN>",
"</s_IN>",
"<s_FOR>",
"</s_FOR>",
"<s_Date and Hour of Service>",
"</s_Date and Hour of Service>",
"<s_Court:>",
"</s_Court:>",
"<s_Certified Mail>",
"</s_Certified Mail>",
"<s_Certified Air Mail>",
"</s_Certified Air Mail>",
"<s_BY:>",
"</s_BY:>",
"<s_Appearance or Answer Dues>",
"</s_Appearance or Answer Dues>",
"<s_EFFECTIVENESS OF:>",
"</s_EFFECTIVENESS OF:>",
"<s_PRO>",
"</s_PRO>",
"<s_ORIGINAL>",
"</s_ORIGINAL>",
"<s_LRB Or Bill No. han Au No>",
"</s_LRB Or Bill No. han Au No>",
"<s_Increase Costs - May Be Possible to Absorb>",
"</s_Increase Costs - May Be Possible to Absorb>",
"<s_GPR>",
"</s_GPR>",
"<s_Asumptions Used in Arriving at Fiscal Estimate>",
"</s_Asumptions Used in Arriving at Fiscal Estimate>",
"<s_Agency>",
"</s_Agency>",
"<s_Tax Status Paid or Free>",
"</s_Tax Status Paid or Free>",
"<s_Signed>",
"</s_Signed>",
"<s_SPECIAL SAMPLE MANUFACTURE>",
"</s_SPECIAL SAMPLE MANUFACTURE>",
"<s_R & D>",
"</s_R & D>",
"<s_Quantity, Cartons of 200 each>",
"</s_Quantity, Cartons of 200 each>",
"<s_Date of Request>",
"</s_Date of Request>",
"<s_Completion Date>",
"</s_Completion Date>",
"<s_Cigarette Description>",
"</s_Cigarette Description>",
"<s_Account Number>",
"</s_Account Number>",
"<s_NAME OF ALLWAYS SUPERVISOR>",
"</s_NAME OF ALLWAYS SUPERVISOR>",
"<s_# OF BOOTH>",
"</s_# OF BOOTH>",
"<s_TEXT: Over 500 Prizes To Be Awarded>",
"</s_TEXT: Over 500 Prizes To Be Awarded>",
"<s_SPACE:>",
"</s_SPACE:>",
"<s_PUBLICATION>",
"</s_PUBLICATION>",
"<s_LEAD- IN:>",
"</s_LEAD- IN:>",
"<s_ISSUE:>",
"</s_ISSUE:>",
"<s_ILLUSTRATION:>",
"</s_ILLUSTRATION:>",
"<s_HEADLINE:>",
"</s_HEADLINE:>",
"<s_BOLD SUB- HEAD:>",
"</s_BOLD SUB- HEAD:>",
"<s_ALTERNATIVES:>",
"</s_ALTERNATIVES:>",
"<s_Hospitality Tent Attendance>",
"</s_Hospitality Tent Attendance>",
"<s_Event Attendance>",
"</s_Event Attendance>",
"<s_# Requested>",
"</s_# Requested>",
"<s_# Lorillard Personnel>",
"</s_# Lorillard Personnel>",
"<s_# Customers Invited>",
"</s_# Customers Invited>",
"<s_# Customers Attended>",
"</s_# Customers Attended>",
"<s_SECONDARY CLASS OF TRADE:>",
"</s_SECONDARY CLASS OF TRADE:>",
"<s_PRIMARY DISTRIBUTION CHANNEL (E. G. JOBBER, SUB- JOBBER MEMBERSHIP>",
"</s_PRIMARY DISTRIBUTION CHANNEL (E. G. JOBBER, SUB- JOBBER MEMBERSHIP>",
"<s_PRIMARY CLASS OF TRADE:>",
"</s_PRIMARY CLASS OF TRADE:>",
"<s_DIVISION:>",
"</s_DIVISION:>",
"<s_CLUB, CASH & CARRY, ETC...):>",
"</s_CLUB, CASH & CARRY, ETC...):>",
"<s_APPROXIMATE % OF RETAIL CALLS SECURED BY GLASS:>",
"</s_APPROXIMATE % OF RETAIL CALLS SECURED BY GLASS:>",
"<s_ANNUALS>",
"</s_ANNUALS>",
"<s_6/ YR>",
"</s_6/ YR>",
"<s_50/ YR>",
"</s_50/ YR>",
"<s_25/ YR>",
"</s_25/ YR>",
"<s_12/ YR>",
"</s_12/ YR>",
"<s_% WHITE =>",
"</s_% WHITE =>",
"<s_% TOTAL =>",
"</s_% TOTAL =>",
"<s_% OTHER >",
"</s_% OTHER >",
"<s_% OF RETAIL CALLS:>",
"</s_% OF RETAIL CALLS:>",
"<s_% HISPANIC =>",
"</s_% HISPANIC =>",
"<s_% BLACK =>",
"</s_% BLACK =>",
"<s_# CALLS>",
"</s_# CALLS>",
"<s_TITLE>",
"</s_TITLE>",
"<s_Registration No>",
"</s_Registration No>",
"<s_REVIEW COMPLETED>",
"</s_REVIEW COMPLETED>",
"<s_RECOMMENDATION:>",
"</s_RECOMMENDATION:>",
"<s_AUTHORS>",
"</s_AUTHORS>",
"<s_(Give reasons below):>",
"</s_(Give reasons below):>",
"<s_Width of Band>",
"</s_Width of Band>",
"<s_Wet Weight>",
"</s_Wet Weight>",
"<s_Type of Tipper>",
"</s_Type of Tipper>",
"<s_Type of Rod>",
"</s_Type of Rod>",
"<s_Type of Maker>",
"</s_Type of Maker>",
"<s_Total Denier as Marked>",
"</s_Total Denier as Marked>",
"<s_Tobacco Used>",
"</s_Tobacco Used>",
"<s_Tars>",
"</s_Tars>",
"<s_Tape Speed>",
"</s_Tape Speed>",
"<s_Smoking Results>",
"</s_Smoking Results>",
"<s_SQC -21>",
"</s_SQC -21>",
"<s_Rods per Min.>",
"</s_Rods per Min.>",
"<s_Remarks>",
"</s_Remarks>",
"<s_Ref. Paper>",
"</s_Ref. Paper>",
"<s_Recearch Engineer>",
"</s_Recearch Engineer>",
"<s_RE>",
"</s_RE>",
"<s_Quan of Trays Produced>",
"</s_Quan of Trays Produced>",
"<s_Quality of Bloom>",
"</s_Quality of Bloom>",
"<s_Pump Press. Card Roller>",
"</s_Pump Press. Card Roller>",
"<s_Pressure on Air Jet>",
"</s_Pressure on Air Jet>",
"<s_No. 1 Roller over Tape>",
"</s_No. 1 Roller over Tape>",
"<s_Mean Draw of Rod>",
"</s_Mean Draw of Rod>",
"<s_Maker No.>",
"</s_Maker No.>",
"<s_Length of Rod>",
"</s_Length of Rod>",
"<s_Length of Cigarettes>",
"</s_Length of Cigarettes>",
"<s_Firmness of Rod>",
"</s_Firmness of Rod>",
"<s_F. P. M. No. 2 Roller>",
"</s_F. P. M. No. 2 Roller>",
"<s_F. P. M. No. 1 Roller>",
"</s_F. P. M. No. 1 Roller>",
"<s_F. P. M. Delivery Roller>",
"</s_F. P. M. Delivery Roller>",
"<s_Dry Wt. With Adhesive>",
"</s_Dry Wt. With Adhesive>",
"<s_Dry Weight>",
"</s_Dry Weight>",
"<s_Delivery Roller over Tape>",
"</s_Delivery Roller over Tape>",
"<s_Date Made>",
"</s_Date Made>",
"<s_Complete Weight>",
"</s_Complete Weight>",
"<s_Circ of Rod>",
"</s_Circ of Rod>",
"<s_% Plasticizer>",
"</s_% Plasticizer>",
"<s_YEA ->",
"</s_YEA ->",
"<s_RELEASED TO ACCTG>",
"</s_RELEASED TO ACCTG>",
"<s_PAID 1987>",
"</s_PAID 1987>",
"<s_Final Rpt. Due>",
"</s_Final Rpt. Due>",
"<s_Ext. Autho. Date>",
"</s_Ext. Autho. Date>",
"<s_DEC 1987 ACCRUAL>",
"</s_DEC 1987 ACCRUAL>",
"<s_CUMULATIVE>",
"</s_CUMULATIVE>",
"<s_CARRYOVER TO 1988>",
"</s_CARRYOVER TO 1988>",
"<s_CAPRI ->",
"</s_CAPRI ->",
"<s_Section Sales Managers Name>",
"</s_Section Sales Managers Name>",
"<s_Section Number>",
"</s_Section Number>",
"<s_Please place the following order for KOOL and/ or GPC Golf Bags for my Section:>",
"</s_Please place the following order for KOOL and/ or GPC Golf Bags for my Section:>",
"<s_Source of Business - This:>",
"</s_Source of Business - This:>",
"<s_Source of Business - Local Premium KS Smokers>",
"</s_Source of Business - Local Premium KS Smokers>",
"<s_Research Liaison>",
"</s_Research Liaison>",
"<s_Referent Brand>",
"</s_Referent Brand>",
"<s_Project Name/ Description:>",
"</s_Project Name/ Description:>",
"<s_Own Brand - Dunhill Smokers:>",
"</s_Own Brand - Dunhill Smokers:>",
"<s_Number>",
"</s_Number>",
"<s_Market (s) / Zone (s)>",
"</s_Market (s) / Zone (s)>",
"<s_Competitors Brands - Mild7 Lights Smokers>",
"</s_Competitors Brands - Mild7 Lights Smokers>",
"<s_Client Group>",
"</s_Client Group>",
"<s_Client Contact>",
"</s_Client Contact>",
"<s_Background / Problem Definition>",
"</s_Background / Problem Definition>",
"<s_YEAR COVERED:>",
"</s_YEAR COVERED:>",
"<s_VARIETY UNIT SALES:>",
"</s_VARIETY UNIT SALES:>",
"<s_VARIETY DOLLAR SALES:>",
"</s_VARIETY DOLLAR SALES:>",
"<s_VARIETY DESCRIPTION:>",
"</s_VARIETY DESCRIPTION:>",
"<s_TOTAL REPORTABLE EXPENDITURES FOR VARIETYI:>",
"</s_TOTAL REPORTABLE EXPENDITURES FOR VARIETYI:>",
"<s_TAR:>",
"</s_TAR:>",
"<s_PRODUCT LENGTH:>",
"</s_PRODUCT LENGTH:>",
"<s_PACK SIZE SOLD:>",
"</s_PACK SIZE SOLD:>",
"<s_FIRST SALES DATE:>",
"</s_FIRST SALES DATE:>",
"<s_CAT- A - EXPENSES:>",
"</s_CAT- A - EXPENSES:>",
"<s_CAT - M EXPENSES:>",
"</s_CAT - M EXPENSES:>",
"<s_CAT - J - EXPENSES:>",
"</s_CAT - J - EXPENSES:>",
"<s_CAT - G EXPENSES:>",
"</s_CAT - G EXPENSES:>",
"<s_CAT - C - EXPENSES:>",
"</s_CAT - C - EXPENSES:>",
"<s_CAT - - EXPENSES:>",
"</s_CAT - - EXPENSES:>",
"<s_BRAND FAMILY NAME:>",
"</s_BRAND FAMILY NAME:>",
"<s_Products:>",
"</s_Products:>",
"<s_Phone Booth :>",
"</s_Phone Booth :>",
"<s_ECU :>",
"</s_ECU :>",
"<s_Contact:>",
"</s_Contact:>",
"<s_Client:>",
"</s_Client:>",
"<s_Address:>",
"</s_Address:>",
"<s_Telephone#>",
"</s_Telephone#>",
"<s_Report>",
"</s_Report>",
"<s_REJECTED>",
"</s_REJECTED>",
"<s_Quantity Received>",
"</s_Quantity Received>",
"<s_No>",
"</s_No>",
"<s_Material Tested>",
"</s_Material Tested>",
"<s_Lot or Sample#>",
"</s_Lot or Sample#>",
"<s_Following physical/ visual properties out of specifications:>",
"</s_Following physical/ visual properties out of specifications:>",
"<s_Distribution:>",
"</s_Distribution:>",
"<s_Date Received>",
"</s_Date Received>",
"<s_Supervisor / Manager>",
"</s_Supervisor / Manager>",
"<s_Suggestion:>",
"</s_Suggestion:>",
"<s_Suggested Solutions (s) :>",
"</s_Suggested Solutions (s) :>",
"<s_R&D Group:>",
"</s_R&D Group:>",
"<s_Name / Phone Ext. :>",
"</s_Name / Phone Ext. :>",
"<s_Manager Comments:>",
"</s_Manager Comments:>",
"<s_TEST DATES>",
"</s_TEST DATES>",
"<s_Sample:>",
"</s_Sample:>",
"<s_PM6 SCORES>",
"</s_PM6 SCORES>",
"<s_PM6 Base:>",
"</s_PM6 Base:>",
"<s_L. Angeles>",
"</s_L. Angeles>",
"<s_Commercial:>",
"</s_Commercial:>",
"<s_Code #:>",
"</s_Code #:>",
"<s_Chicago:>",
"</s_Chicago:>",
"<s_CITY>",
"</s_CITY>",
"<s_46 & Over>",
"</s_46 & Over>",
"<s_36-45>",
"</s_36-45>",
"<s_36 & Over>",
"</s_36 & Over>",
"<s_35 & Under>",
"</s_35 & Under>",
"<s_26-35>",
"</s_26-35>",
"<s_16-25>",
"</s_16-25>",
"<s_ORAL>",
"</s_ORAL>",
"<s_ACUTE CARDIOVASCULAR>",
"</s_ACUTE CARDIOVASCULAR>",
"<s_NUMBER:>",
"</s_NUMBER:>",
"<s_IF YOU HAVE ANY QUESTIONS, PLEASE CONTACT THE FOLLOWING PERSON:>",
"</s_IF YOU HAVE ANY QUESTIONS, PLEASE CONTACT THE FOLLOWING PERSON:>",
"<s_FAX MUMBER:>",
"</s_FAX MUMBER:>",
"<s_TOTAL AREA BUDGET:>",
"</s_TOTAL AREA BUDGET:>",
"<s_THIS CHANGE: (From Current Budget)>",
"</s_THIS CHANGE: (From Current Budget)>",
"<s_THIS AMOUNT>",
"</s_THIS AMOUNT>",
"<s_REASONS:>",
"</s_REASONS:>",
"<s_PROJECT No.>",
"</s_PROJECT No.>",
"<s_NEW BALANCE:>",
"</s_NEW BALANCE:>",
"<s_Final Report Due>",
"</s_Final Report Due>",
"<s_Field Start>",
"</s_Field Start>",
"<s_CURRENT BAL. AVAILABLE:>",
"</s_CURRENT BAL. AVAILABLE:>",
"<s_AUTHORIZATION NO.:>",
"</s_AUTHORIZATION NO.:>",
"<s_APPROVED BY:>",
"</s_APPROVED BY:>",
"<s_AMOUNT OF CHANGE INCREASE ): (CIRCLE ONE)>",
"</s_AMOUNT OF CHANGE INCREASE ): (CIRCLE ONE)>",
"<s_ADJUSTED TOTAL COST OF PROJECT:>",
"</s_ADJUSTED TOTAL COST OF PROJECT:>",
"<s_ACCOUNT NAME>",
"</s_ACCOUNT NAME>",
"<s_resider>",
"</s_resider>",
"<s_Tοpic>",
"</s_Tοpic>",
"<s_Topic.>",
"</s_Topic.>",
"<s_Topic>",
"</s_Topic>",
"<s_Telephone:>",
"</s_Telephone:>",
"<s_TELEPHONE>",
"</s_TELEPHONE>",
"<s_Return this form to:>",
"</s_Return this form to:>",
"<s_Position>",
"</s_Position>",
"<s_INAL TITLE OF SYMPOSIUM>",
"</s_INAL TITLE OF SYMPOSIUM>",
"<s_DDRESS>",
"</s_DDRESS>",
"<s_CITY STATE, >",
"</s_CITY STATE, >",
"<s_Affiliation>",
"</s_Affiliation>",
"<s_AME>",
"</s_AME>",
"<s_- Speaker>",
"</s_- Speaker>",
"<s_on>",
"</s_on>",
"<s_Written by>",
"</s_Written by>",
"<s_Sample specifications written by>",
"</s_Sample specifications written by>",
"<s_Sample No.>",
"</s_Sample No.>",
"<s_Print>",
"</s_Print>",
"<s_Original to>",
"</s_Original to>",
"<s_Original request made by>",
"</s_Original request made by>",
"<s_Laboratory>",
"</s_Laboratory>",
"<s_Firmness>",
"</s_Firmness>",
"<s_Copies to>",
"</s_Copies to>",
"<s_RESULTS (NO TESTED)>",
"</s_RESULTS (NO TESTED)>",
"<s_P.O.>",
"</s_P.O.>",
"<s_LD50 (95% CONFIDENCE LIMITS)>",
"</s_LD50 (95% CONFIDENCE LIMITS)>",
"<s_DOSAGE (mg/ kg BODY WEIGHT)>",
"</s_DOSAGE (mg/ kg BODY WEIGHT)>",
"<s_Copies to the Following:>",
"</s_Copies to the Following:>",
"<s_.5 % METHYL CELULOSE>",
"</s_.5 % METHYL CELULOSE>",
"<s_Product:>",
"</s_Product:>",
"<s_Film Cleared:>",
"</s_Film Cleared:>",
"<s_CF:>",
"</s_CF:>",
"<s_Request Authorized By:>",
"</s_Request Authorized By:>",
"<s_Reason for Request:>",
"</s_Reason for Request:>",
"<s_REQUEST AUTHORIZED BY>",
"</s_REQUEST AUTHORIZED BY>",
"<s_Project Number:>",
"</s_Project Number:>",
"<s_Phone Number:>",
"</s_Phone Number:>",
"<s_High>",
"</s_High>",
"<s_Description of Request:>",
"</s_Description of Request:>",
"<s_Department:>",
"</s_Department:>",
"<s_Date Submitted:>",
"</s_Date Submitted:>",
"<s_Date Required:>",
"</s_Date Required:>",
"<s_3. Special Processing>",
"</s_3. Special Processing>",
"<s_1. Productivity Improvement>",
"</s_1. Productivity Improvement>",
"<s_This form was placed before Bates ID>",
"</s_This form was placed before Bates ID>",
"<s_NG DOCUMENTS WERE FOUND WITHIN THE ORIGINAL:>",
"</s_NG DOCUMENTS WERE FOUND WITHIN THE ORIGINAL:>",
"<s_OTHER PERSONNEL ASSIGNED>",
"</s_OTHER PERSONNEL ASSIGNED>",
"<s_Cigarette>",
"</s_Cigarette>",
"<s_Approved by>",
"</s_Approved by>",
"<s_Trade Register>",
"</s_Trade Register>",
"<s_Telefax>",
"</s_Telefax>",
"<s_TELEFAX MESSAGE No.:>",
"</s_TELEFAX MESSAGE No.:>",
"<s_Re.:>",
"</s_Re.:>",
"<s_NUMBER OF FOLLOWING PAGES>",
"</s_NUMBER OF FOLLOWING PAGES>",
"<s_General Manager>",
"</s_General Manager>",
"<s_Fax no:>",
"</s_Fax no:>",
"<s_ADDRESS:>",
"</s_ADDRESS:>",
"<s_Type of Cigarette>",
"</s_Type of Cigarette>",
"<s_Tipping Paper>",
"</s_Tipping Paper>",
"<s_Tear rape>",
"</s_Tear rape>",
"<s_Original Request Made By>",
"</s_Original Request Made By>",
"<s_Laboratory Analysis>",
"</s_Laboratory Analysis>",
"<s_Filter Length>",
"</s_Filter Length>",
"<s_Batch Size>",
"</s_Batch Size>",
"<s_Additional Spray>",
"</s_Additional Spray>",
"<s_Yr.>",
"</s_Yr.>",
"<s_YEAR>",
"</s_YEAR>",
"<s_Submitted by>",
"</s_Submitted by>",
"<s_Submission>",
"</s_Submission>",
"<s_Start>",
"</s_Start>",
"<s_Spent Prior to>",
"</s_Spent Prior to>",
"<s_Proposed>",
"</s_Proposed>",
"<s_PROJECT DESCRIPTION>",
"</s_PROJECT DESCRIPTION>",
"<s_Mo.>",
"</s_Mo.>",
"<s_EXPENSE>",
"</s_EXPENSE>",
"<s_Completion>",
"</s_Completion>",
"<s_CAPITAL>",
"</s_CAPITAL>",
"<s_Sales Representative>",
"</s_Sales Representative>",
"<s_Purpose of trip>",
"</s_Purpose of trip>",
"<s_Please make the necessary Field Trip arrangements for>",
"</s_Please make the necessary Field Trip arrangements for>",
"<s_Hotel /Motel reservations needed>",
"</s_Hotel /Motel reservations needed>",
"<s_Division (s) to be contacted>",
"</s_Division (s) to be contacted>",
"<s_Dates of contact>",
"</s_Dates of contact>",
"<s_Arrival date and time (include airline and flight no.)>",
"</s_Arrival date and time (include airline and flight no.)>",
"<s_TOTAL:>",
"</s_TOTAL:>",
"<s_STATIONS>",
"</s_STATIONS>",
"<s_SIGNED>",
"</s_SIGNED>",
"<s_REVISED CONTRACT TOTALS.>",
"</s_REVISED CONTRACT TOTALS.>",
"<s_PROGRAM>",
"</s_PROGRAM>",
"<s_CLIENT>",
"</s_CLIENT>",
"<s_SUPPLIERS BEING CONSIDERED:>",
"</s_SUPPLIERS BEING CONSIDERED:>",
"<s_RETURN TO:>",
"</s_RETURN TO:>",
"<s_PROJECT:>",
"</s_PROJECT:>",
"<s_ITEM:>",
"</s_ITEM:>",
"<s_FUNDING:>",
"</s_FUNDING:>",
"<s_BRAND:>",
"</s_BRAND:>",
"<s_who being duly sworn, says that (he) (she) is>",
"</s_who being duly sworn, says that (he) (she) is>",
"<s_the month of>",
"</s_the month of>",
"<s_day of>",
"</s_day of>",
"<s_We hereby certify charges shown above on dates per attached bill are true and correct as billed to the account in upper right hand corner of the affidavit and are exclusive>",
"</s_We hereby certify charges shown above on dates per attached bill are true and correct as billed to the account in upper right hand corner of the affidavit and are exclusive>",
"<s_Sworn to and subscribed before me this>",
"</s_Sworn to and subscribed before me this>",
"<s_State of>",
"</s_State of>",
"<s_MY COMMISSION EXPIRES:>",
"</s_MY COMMISSION EXPIRES:>",
"<s_From Newspaper>",
"</s_From Newspaper>",
"<s_Exclusive advertising for>",
"</s_Exclusive advertising for>",
"<s_County of>",
"</s_County of>",
"<s_Column Inches>",
"</s_Column Inches>",
"<s_Before me a Notary Public, personally appeared>",
"</s_Before me a Notary Public, personally appeared>",
"<s_Account>",
"</s_Account>",
"<s_TEL NO.>",
"</s_TEL NO.>",
"<s_Subject:>",
"</s_Subject:>",
"<s_PAGE>",
"</s_PAGE>",
"<s_Fax #:>",
"</s_Fax #:>",
"<s_FILE FILE TYPE>",
"</s_FILE FILE TYPE>",
"<s_Attention:>",
"</s_Attention:>",
"<s_Vendor#>",
"</s_Vendor#>",
"<s_Units>",
"</s_Units>",
"<s_Separate Pay->",
"</s_Separate Pay->",
"<s_Quantity>",
"</s_Quantity>",
"<s_Promotion Number>",
"</s_Promotion Number>",
"<s_Promotion Name>",
"</s_Promotion Name>",
"<s_Promotion Code>",
"</s_Promotion Code>",
"<s_Promo Dates>",
"</s_Promo Dates>",
"<s_Pay To:>",
"</s_Pay To:>",
"<s_Pay Terms>",
"</s_Pay Terms>",
"<s_Pay Method>",
"</s_Pay Method>",
"<s_Is this a corporation>",
"</s_Is this a corporation>",
"<s_Distributor No>",
"</s_Distributor No>",
"<s_Dist/Asgmt C.F. #>",
"</s_Dist/Asgmt C.F. #>",
"<s_Charge To Section:>",
"</s_Charge To Section:>",
"<s_Account Month>",
"</s_Account Month>",
"<s_AVG Rate>",
"</s_AVG Rate>",
"<s_(Records Retention:>",
"</s_(Records Retention:>",
"<s_VOLUME:>",
"</s_VOLUME:>",
"<s_Target Audience:>",
"</s_Target Audience:>",
"<s_Qty In Units>",
"</s_Qty In Units>",
"<s_Pack Flats Labels:>",
"</s_Pack Flats Labels:>",
"<s_OBJECTIVE:>",
"</s_OBJECTIVE:>",
"<s_Major Competitive Brands:>",
"</s_Major Competitive Brands:>",
"<s_MARKET (S):>",
"</s_MARKET (S):>",
"<s_Est. Monthly Ongoing:>",
"</s_Est. Monthly Ongoing:>",
"<s_Dollar Cost>",
"</s_Dollar Cost>",
"<s_Cases:>",
"</s_Cases:>",
"<s_Cartons:>",
"</s_Cartons:>",
"<s_COST OR RETAIL PRICING:>",
"</s_COST OR RETAIL PRICING:>",
"<s_BRAND/PROJECT NAME:>",
"</s_BRAND/PROJECT NAME:>",
"<s_SUPPLIER>",
"</s_SUPPLIER>",
"<s_SHIPMENT TO ARRIVE NOT LATER THAN>",
"</s_SHIPMENT TO ARRIVE NOT LATER THAN>",
"<s_SHIP TO>",
"</s_SHIP TO>",
"<s_REQUISITIONER>",
"</s_REQUISITIONER>",
"<s_PRICE>",
"</s_PRICE>",
"<s_NOT TO BE CHARGED BY SUPPLIER>",
"</s_NOT TO BE CHARGED BY SUPPLIER>",
"<s_LOCATION>",
"</s_LOCATION>",
"<s_EXTRA COPIES TO:>",
"</s_EXTRA COPIES TO:>",
"<s_DEPARTMENT CHARGED>",
"</s_DEPARTMENT CHARGED>",
"<s_DATE OF REQUISITION>",
"</s_DATE OF REQUISITION>",
"<s_BUYER>",
"</s_BUYER>",
"<s_ADMIN CTR/MGMT CTR PURCHASE ORDER NO.>",
"</s_ADMIN CTR/MGMT CTR PURCHASE ORDER NO.>",
"<s_ACCOUNTING CHARGE NO.>",
"</s_ACCOUNTING CHARGE NO.>",
"<s_MANUFACTURERS:>",
"</s_MANUFACTURERS:>",
"<s_This Change (From Current Budget)>",
"</s_This Change (From Current Budget)>",
"<s_Recommemded Supplier:>",
"</s_Recommemded Supplier:>",
"<s_Reason(s) for Recommendation>",
"</s_Reason(s) for Recommendation>",
"<s_Description: CAPRI Expansion:>",
"</s_Description: CAPRI Expansion:>",
"<s_Committed to Date: (Current Year)>",
"</s_Committed to Date: (Current Year)>",
"<s_SIZE SHOWING:>",
"</s_SIZE SHOWING:>",
"<s_SCHEDULED POSTING DATE:>",
"</s_SCHEDULED POSTING DATE:>",
"<s_REGULAR>",
"</s_REGULAR>",
"<s_POSTER DESIGN:>",
"</s_POSTER DESIGN:>",
"<s_PLANT OPERATOR:>",
"</s_PLANT OPERATOR:>",
"<s_PLANT AVERAGE>",
"</s_PLANT AVERAGE>",
"<s_ILLUMINATED>",
"</s_ILLUMINATED>",
"<s_DATE POSTING COMPLETED:>",
"</s_DATE POSTING COMPLETED:>",
"<s_DATE POSTERS RECEIVED FROM LITHOGRAPHER:>",
"</s_DATE POSTERS RECEIVED FROM LITHOGRAPHER:>",
"<s_D.E.C>",
"</s_D.E.C>",
"<s_CONTRACT:>",
"</s_CONTRACT:>",
"<s_WARNING>",
"</s_WARNING>",
"<s_TRIM SIZE>",
"</s_TRIM SIZE>",
"<s_T&N>",
"</s_T&N>",
"<s_Signature>",
"</s_Signature>",
"<s_SQ. INCHES/FEET>",
"</s_SQ. INCHES/FEET>",
"<s_JOB NO.>",
"</s_JOB NO.>",
"<s_VICEROY>",
"</s_VICEROY>",
"<s_STRENGTH>",
"</s_STRENGTH>",
"<s_REFERENCE>",
"</s_REFERENCE>",
"<s_HARSHNESS>",
"</s_HARSHNESS>",
"<s_Current VICEROY 84 (#647/ 647>",
"</s_Current VICEROY 84 (#647/ 647>",
"<s_Competitive>",
"</s_Competitive>",
"<s_AFTERTASTE>",
"</s_AFTERTASTE>",
"<s_25% PG w/ SORBITOL (#647/ 627)>",
"</s_25% PG w/ SORBITOL (#647/ 627)>",
"<s_#647/ #627 ->",
"</s_#647/ #627 ->",
"<s_#627/ 647 ->",
"</s_#627/ 647 ->",
"<s_To>",
"</s_To>",
"<s_Title:>",
"</s_Title:>",
"<s_Response Code Assigned:>",
"</s_Response Code Assigned:>",
"<s_PPS Program #>",
"</s_PPS Program #>",
"<s_Fullfillment Data Entry at>",
"</s_Fullfillment Data Entry at>",
"<s_Estimated Response:>",
"</s_Estimated Response:>",
"<s_Estimated Responders:>",
"</s_Estimated Responders:>",
"<s_Distribution Drop Date:>",
"</s_Distribution Drop Date:>",
"<s_DE Fullfillment Vendor>",
"</s_DE Fullfillment Vendor>",
"<s_Circulation Quantity:>",
"</s_Circulation Quantity:>",
"<s_C:>",
"</s_C:>",
"<s_MAR>",
"</s_MAR>",
"<s_JAN>",
"</s_JAN>",
"<s_FEB>",
"</s_FEB>",
"<s_Auth No.>",
"</s_Auth No.>",
"<s_Account Code>",
"</s_Account Code>",
"<s_TEL:>",
"</s_TEL:>",
"<s_Sizes:>",
"</s_Sizes:>",
"<s_Quotation To:>",
"</s_Quotation To:>",
"<s_Quantities and Description:>",
"</s_Quantities and Description:>",
"<s_Qty:>",
"</s_Qty:>",
"<s_Process and Colors:>",
"</s_Process and Colors:>",
"<s_Prices and Schedule:>",
"</s_Prices and Schedule:>",
"<s_Preparation and Composition:>",
"</s_Preparation and Composition:>",
"<s_Paper and Materials:>",
"</s_Paper and Materials:>",
"<s_Packing and Distribution:>",
"</s_Packing and Distribution:>",
"<s_Estimate No:>",
"</s_Estimate No:>",
"<s_Binding>",
"</s_Binding>",
"<s_Authorized Signature:>",
"</s_Authorized Signature:>",
"<s_Account Executive:>",
"</s_Account Executive:>",
"<s_DISPLAY BRANDS:>",
"</s_DISPLAY BRANDS:>",
"<s_DISPLAY AGREEMENT:>",
"</s_DISPLAY AGREEMENT:>",
"<s_CONSUMER OFFER:>",
"</s_CONSUMER OFFER:>",
"<s_The following document, including cover page is>",
"</s_The following document, including cover page is>",
"<s_TIME:>",
"</s_TIME:>",
"<s_Test Article>",
"</s_Test Article>",
"<s_Study Title>",
"</s_Study Title>",
"<s_Study Director>",
"</s_Study Director>",
"<s_Species>",
"</s_Species>",
"<s_Client Study No.>",
"</s_Client Study No.>",
"<s_Client Name>",
"</s_Client Name>",
"<s_Type of Event:>",
"</s_Type of Event:>",
"<s_State:>",
"</s_State:>",
"<s_Recommended Brand(s) and Promotional Activity:>",
"</s_Recommended Brand(s) and Promotional Activity:>",
"<s_Name of Event:>",
"</s_Name of Event:>",
"<s_Estimated Attendance>",
"</s_Estimated Attendance>",
"<s_Dates:>",
"</s_Dates:>",
"<s_Contact (Name/ Telephone):>",
"</s_Contact (Name/ Telephone):>",
"<s_City/ Town:>",
"</s_City/ Town:>",
"<s_Audience Concentration>",
"</s_Audience Concentration>",
"<s_REQUESTED IMPLEMENTATION DATE>",
"</s_REQUESTED IMPLEMENTATION DATE>",
"<s_Product Specification List>",
"</s_Product Specification List>",
"<s_Processing Detail>",
"</s_Processing Detail>",
"<s_Prepared By:>",
"</s_Prepared By:>",
"<s_New Product>",
"</s_New Product>",
"<s_Domestic>",
"</s_Domestic>",
"<s_Standard Grade Mark>",
"</s_Standard Grade Mark>",
"<s_Allowable Substitutions>",
"</s_Allowable Substitutions>",
"<s_Total Contract Cost>",
"</s_Total Contract Cost>",
"<s_SECTION(S)>",
"</s_SECTION(S)>",
"<s_Return To:>",
"</s_Return To:>",
"<s_PAGE(S)>",
"</s_PAGE(S)>",
"<s_Originator>",
"</s_Originator>",
"<s_Manager>",
"</s_Manager>",
"<s_Date Routed:>",
"</s_Date Routed:>",
"<s_Current Year Cost>",
"</s_Current Year Cost>",
"<s_Contract Subject:>",
"</s_Contract Subject:>",
"<s_Contract No.>",
"</s_Contract No.>",
"<s_Company>",
"</s_Company>",
"<s_Brief Description>",
"</s_Brief Description>",
"<s_Brand(s)>",
"</s_Brand(s)>",
"<s_SCHEDULE>",
"</s_SCHEDULE>",
"<s_ROTARY>",
"</s_ROTARY>",
"<s_POPULATION>",
"</s_POPULATION>",
"<s_OPERATOR>",
"</s_OPERATOR>",
"<s_NO OF ROTARIES>",
"</s_NO OF ROTARIES>",
"<s_MARKET>",
"</s_MARKET>",
"<s_DESIGN ON DISPLAY>",
"</s_DESIGN ON DISPLAY>",
"<s_COMMENT ON PLANT:>",
"</s_COMMENT ON PLANT:>",
"<s_AVERAGE DAILY EFFECTIVE CIRCULATION>",
"</s_AVERAGE DAILY EFFECTIVE CIRCULATION>",
"<s_Requested>",
"</s_Requested>",
"<s_Remarks ->",
"</s_Remarks ->",
"<s_Payment ->",
"</s_Payment ->",
"<s_Message>",
"</s_Message>",
"<s_Declined - Send letter>",
"</s_Declined - Send letter>",
"<s_Contribution>",
"</s_Contribution>",
"<s_Committee meeting >",
"</s_Committee meeting >",
"<s_T & N>",
"</s_T & N>",
"<s_Scorching:>",
"</s_Scorching:>",
"<s_P. S.>",
"</s_P. S.>",
"<s_Modules:>",
"</s_Modules:>",
"<s_Hole Depth:>",
"</s_Hole Depth:>",
"<s_Cratering:>",
"</s_Cratering:>",
"<s_Cratering>",
"</s_Cratering>",
"<s_Comments:>",
"</s_Comments:>",
"<s_TOTAL PAGES>",
"</s_TOTAL PAGES>",
"<s_FAX TELEPHONE NUMBER:>",
"</s_FAX TELEPHONE NUMBER:>",
"<s_Under 35>",
"</s_Under 35>",
"<s_Size>",
"</s_Size>",
"<s_Sample Description>",
"</s_Sample Description>",
"<s_OVERALL>",
"</s_OVERALL>",
"<s_Magazine>",
"</s_Magazine>",
"<s_Field Date>",
"</s_Field Date>",
"<s_Date Sent>",
"</s_Date Sent>",
"<s_35 & Over>",
"</s_35 & Over>",
"<s_Mail to:>",
"</s_Mail to:>",
"<s_Late Registration Fee: (after August>",
"</s_Late Registration Fee: (after August>",
"<s_Advance Registration Fee: (prior to August 10)>",
"</s_Advance Registration Fee: (prior to August 10)>",
"<s_TO>",
"</s_TO>",
"<s_SALES FORCE 20S>",
"</s_SALES FORCE 20S>",
"<s_MAR 16>",
"</s_MAR 16>",
"<s_EFFECTIVENESS OF ADVERTISING:>",
"</s_EFFECTIVENESS OF ADVERTISING:>",
"<s_DISTRIBUTION>",
"</s_DISTRIBUTION>",
"<s_20 CENTS OFF PACK COUPON/STICKER:>",
"</s_20 CENTS OFF PACK COUPON/STICKER:>",
"<s_% OF DISTRIBUTION ACHIEVED IN RETAIL OUTLETS:>",
"</s_% OF DISTRIBUTION ACHIEVED IN RETAIL OUTLETS:>",
"<s_$1.50 OFF CARTON COUPON:>",
"</s_$1.50 OFF CARTON COUPON:>",
"<s_Previous Commitments This Project>",
"</s_Previous Commitments This Project>",
"<s_Original->",
"</s_Original->",
"<s_1990 Cost>",
"</s_1990 Cost>",
"<s_JAN 23, 1995>",
"</s_JAN 23, 1995>",
"<s_ACCOUNT>",
"</s_ACCOUNT>",
"<s_$ 50 OFF PACK:>",
"</s_$ 50 OFF PACK:>",
"<s_$ 5.00 OFF CARTON:>",
"</s_$ 5.00 OFF CARTON:>",
"<s_Tar (Mg /Cigt)>",
"</s_Tar (Mg /Cigt)>",
"<s_Nicotine (Mg/ /Cigt)>",
"</s_Nicotine (Mg/ /Cigt)>",
"<s_Nicotine (Mg /Cigt)>",
"</s_Nicotine (Mg /Cigt)>",
"<s_NOTE:>",
"</s_NOTE:>",
"<s_Brand & Style>",
"</s_Brand & Style>",
"<s_TARGET DATE:>",
"</s_TARGET DATE:>",
"<s_REQUEST NO.:>",
"</s_REQUEST NO.:>",
"<s_R & D COMMENTS:>",
"</s_R & D COMMENTS:>",
"<s_NOTES:>",
"</s_NOTES:>",
"<s_INITIATED>",
"</s_INITIATED>",
"<s_COUNTRY:>",
"</s_COUNTRY:>",
"<s_Waves(s)>",
"</s_Waves(s)>",
"<s_Wave(s)>",
"</s_Wave(s)>",
"<s_Total Area Authorized>",
"</s_Total Area Authorized>",
"<s_This amount: (From Next Years Budget)>",
"</s_This amount: (From Next Years Budget)>",
"<s_This Change:>",
"</s_This Change:>",
"<s_Summary of MRD Budget>",
"</s_Summary of MRD Budget>",
"<s_Reason(s) for Recommendation:>",
"</s_Reason(s) for Recommendation:>",
"<s_Internal Init Date>",
"</s_Internal Init Date>",
"<s_Competitive Proposals Obtained:>",
"</s_Competitive Proposals Obtained:>",
"<s_STRUCTURE>",
"</s_STRUCTURE>",
"<s_LORILLARD COMPOUND CODE NUMBER>",
"</s_LORILLARD COMPOUND CODE NUMBER>",
"<s_ESTIMATED TOXICITY CLASS>",
"</s_ESTIMATED TOXICITY CLASS>",
"<s_COMPOUND NAME>",
"</s_COMPOUND NAME>",
"<s_STUDY NUMBER>",
"</s_STUDY NUMBER>",
"<s_STUDY NAME>",
"</s_STUDY NAME>",
"<s_REASON FOR THE AMENDMENT>",
"</s_REASON FOR THE AMENDMENT>",
"<s_PART OF FINAL REPORT TO BE AMENDED (EXACT LOCATION)>",
"</s_PART OF FINAL REPORT TO BE AMENDED (EXACT LOCATION)>",
"<s_INITIATION DATE>",
"</s_INITIATION DATE>",
"<s_DATE OF FINAL REPORT>",
"</s_DATE OF FINAL REPORT>",
"<s_AMENDMENT (Attach additional sheets as necessary)>",
"</s_AMENDMENT (Attach additional sheets as necessary)>",
"<s_OUR FAX NUMBER >",
"</s_OUR FAX NUMBER >",
"<s_PLAINTIEES COUNSEL:>",
"</s_PLAINTIEES COUNSEL:>",
"<s_LORILLARD ENTITIES>",
"</s_LORILLARD ENTITIES>",
"<s_DATE SERVED>",
"</s_DATE SERVED>",
"<s_COURT:>",
"</s_COURT:>",
"<s_CASE TYPE:>",
"</s_CASE TYPE:>",
"<s_CASE NAME:>",
"</s_CASE NAME:>",
"<s_Tel>",
"</s_Tel>",
"<s_PHONE:>",
"</s_PHONE:>",
"<s_PAGES (including Cover Sheet):>",
"</s_PAGES (including Cover Sheet):>",
"<s_MESSAGE:>",
"</s_MESSAGE:>",
"<s_MESSAGE TO:>",
"</s_MESSAGE TO:>",
"<s_Fax>",
"</s_Fax>",
"<s_FAX NUMBER:>",
"</s_FAX NUMBER:>",
"<s_COMPANY:>",
"</s_COMPANY:>",
"<s_CLIENT NO.:>",
"</s_CLIENT NO.:>",
"<s_Late Registration Fee>",
"</s_Late Registration Fee>",
"<s_Ground Transportation (round trip)>",
"</s_Ground Transportation (round trip)>",
"<s_Advance Registration Fee:>",
"</s_Advance Registration Fee:>",
"<s_NON- DIRECT ACCOUNT CHAINS:>",
"</s_NON- DIRECT ACCOUNT CHAINS:>",
"<s_JUNE7>",
"</s_JUNE7>",
"<s_EFFECTIVENESS OF THE RETAIL (1 00 OFF CARTON) DISTRIBUTION ALLOWANCE:>",
"</s_EFFECTIVENESS OF THE RETAIL (1 00 OFF CARTON) DISTRIBUTION ALLOWANCE:>",
"<s_DIRECT ACCOUNT/ WHOLESALERS:>",
"</s_DIRECT ACCOUNT/ WHOLESALERS:>",
"<s_DIRECT ACCOUNT CHAINS:>",
"</s_DIRECT ACCOUNT CHAINS:>",
"<s_40c OFF PACK- GENERAL MARKET:>",
"</s_40c OFF PACK- GENERAL MARKET:>",
"<s_TOTAL COST>",
"</s_TOTAL COST>",
"<s_THRU>",
"</s_THRU>",
"<s_INCLUSIVE DATE>",
"</s_INCLUSIVE DATE>",
"<s_1. PRINCIPAL INVESTIGATOR NAME, TITLE, TELEPHONE # AND MAILING ADDRESS.>",
"</s_1. PRINCIPAL INVESTIGATOR NAME, TITLE, TELEPHONE # AND MAILING ADDRESS.>",
"<s_(c) TELEPHONE>",
"</s_(c) TELEPHONE>",
"<s_(a) TITLE>",
"</s_(a) TITLE>",
"<s_(a) STREET>",
"</s_(a) STREET>",
"<s_(G) STATE/ZIP>",
"</s_(G) STATE/ZIP>",
"<s_(F) MAILING>",
"</s_(F) MAILING>",
"<s_(E) INSTITUTION>",
"</s_(E) INSTITUTION>",
"<s_(E) DATE>",
"</s_(E) DATE>",
"<s_(D) STATE/ZIP>",
"</s_(D) STATE/ZIP>",
"<s_(D) DEPARTMENT>",
"</s_(D) DEPARTMENT>",
"<s_(C) TELEPHONE>",
"</s_(C) TELEPHONE>",
"<s_(C) City>",
"</s_(C) City>",
"<s_(C) 3RD 12 MONTH PERIOD IF REQUIRED>",
"</s_(C) 3RD 12 MONTH PERIOD IF REQUIRED>",
"<s_(B) TITLE>",
"</s_(B) TITLE>",
"<s_(B) 2ND 12 MONTH PERIOD IF REQUIRED>",
"</s_(B) 2ND 12 MONTH PERIOD IF REQUIRED>",
"<s_(A) NAME>",
"</s_(A) NAME>",
"<s_(A) INSTITUTION>",
"</s_(A) INSTITUTION>",
"<s_(A) 1ST 12 MONTH PERIOD>",
"</s_(A) 1ST 12 MONTH PERIOD>",
"<s_REQUIREMENTS>",
"</s_REQUIREMENTS>",
"<s_PACK/CARTON>",
"</s_PACK/CARTON>",
"<s_MEDIA TYPE>",
"</s_MEDIA TYPE>",
"<s_EST. REDEMPTION>",
"</s_EST. REDEMPTION>",
"<s_CODE ASSIGNED>",
"</s_CODE ASSIGNED>",
"<s_CIRCULATION(#)>",
"</s_CIRCULATION(#)>",
"<s_CIRCULATION DATES>",
"</s_CIRCULATION DATES>",
"<s_BRAND(S) APPLICABLE>",
"</s_BRAND(S) APPLICABLE>",
"<s_TRUE K. S.>",
"</s_TRUE K. S.>",
"<s_NEWPORT LTS K. S.>",
"</s_NEWPORT LTS K. S.>",
"<s_NEWPORT K. S.>",
"</s_NEWPORT K. S.>",
"<s_KENT K. S.>",
"</s_KENT K. S.>",
"<s_ITEMS>",
"</s_ITEMS>",
"<s_DATE TO NYO:>",
"</s_DATE TO NYO:>",
"<s_DATE OF EVENT:>",
"</s_DATE OF EVENT:>",
"<s_SHIP TO (DEPT BRANCH)>",
"</s_SHIP TO (DEPT BRANCH)>",
"<s_Prev.>",
"</s_Prev.>",
"<s_TYPE OF PACKINGS:>",
"</s_TYPE OF PACKINGS:>",
"<s_TEST MARKET GEOGRAPHY:>",
"</s_TEST MARKET GEOGRAPHY:>",
"<s_SALES FORCE INVOLVEMENT:>",
"</s_SALES FORCE INVOLVEMENT:>",
"<s_PRICE POINT:>",
"</s_PRICE POINT:>",
"<s_Nov.>",
"</s_Nov.>",
"<s_INDEPENDENTS ACCEPTANCE/ MERCHANDISING:>",
"</s_INDEPENDENTS ACCEPTANCE/ MERCHANDISING:>",
"<s_DISTRIBUTORS ACCEPTANCE INTRO TERMS INTRO DEALS INVOLVEMENT:>",
"</s_DISTRIBUTORS ACCEPTANCE INTRO TERMS INTRO DEALS INVOLVEMENT:>",
"<s_CHAINS ACCEPTANCE/ MERCHANDISING:>",
"</s_CHAINS ACCEPTANCE/ MERCHANDISING:>",
"<s_ADVERTISING EFFECTIVENESS OF P. O. S.:>",
"</s_ADVERTISING EFFECTIVENESS OF P. O. S.:>",
"<s_TITLE:>",
"</s_TITLE:>",
"<s_DEPARTURE DATE AND TIME:>",
"</s_DEPARTURE DATE AND TIME:>",
"<s_CHECK ONE:>",
"</s_CHECK ONE:>",
"<s_Any questions?>",
"</s_Any questions?>",
"<s_ARRIVAL DATE AND TIME:>",
"</s_ARRIVAL DATE AND TIME:>",
"<s_Re:>",
"</s_Re:>",
"<s_Pages:>",
"</s_Pages:>",
"<s_Fax:>",
"</s_Fax:>",
"<s_SPECIFIC GRAVITY>",
"</s_SPECIFIC GRAVITY>",
"<s_TEST ARTICLE IDENTIFICATION:>",
"</s_TEST ARTICLE IDENTIFICATION:>",
"<s_TA #:>",
"</s_TA #:>",
"<s_STUDY DIRECTOR /DEPARTMENT>",
"</s_STUDY DIRECTOR /DEPARTMENT>",
"<s_SPONSORS NAME:>",
"</s_SPONSORS NAME:>",
"<s_SPECIAL HANDLING REQUIREMENTS:>",
"</s_SPECIAL HANDLING REQUIREMENTS:>",
"<s_SHIPPED VIA>",
"</s_SHIPPED VIA>",
"<s_PHYSICAL DESCRIPTION:>",
"</s_PHYSICAL DESCRIPTION:>",
"<s_NO. OF CONTAINERS:>",
"</s_NO. OF CONTAINERS:>",
"<s_NET WEIGHT (if provided):>",
"</s_NET WEIGHT (if provided):>",
"<s_LOT #:>",
"</s_LOT #:>",
"<s_GROSS WEIGHT>",
"</s_GROSS WEIGHT>",
"<s_EXPIRATION DATE:>",
"</s_EXPIRATION DATE:>",
"<s_DATES:>",
"</s_DATES:>",
"<s_CONDITION OF SHIPMENT:>",
"</s_CONDITION OF SHIPMENT:>",
"<s_Signature of Initiator>",
"</s_Signature of Initiator>",
"<s_Pack and/ or Carton?>",
"</s_Pack and/ or Carton?>",
"<s_Est. Redemption>",
"</s_Est. Redemption>",
"<s_Don Kisling>",
"</s_Don Kisling>",
"<s_Circulation(#)>",
"</s_Circulation(#)>",
"<s_Brand(s) Applicable>",
"</s_Brand(s) Applicable>",
"<s_IND/ LOR VOLUME>",
"</s_IND/ LOR VOLUME>",
"<s_RETENTION & RECOMMENDATION FILE REORGANIZED AND RE- LABELED BY:>",
"</s_RETENTION & RECOMMENDATION FILE REORGANIZED AND RE- LABELED BY:>",
"<s_RECORDS TRANSFER INVENTORY FORMS UPDATED BY:>",
"</s_RECORDS TRANSFER INVENTORY FORMS UPDATED BY:>",
"<s_RECORDS RETENTION SCHEDULE PLACED IN INDEX BINDER AND IN FILE BY:>",
"</s_RECORDS RETENTION SCHEDULE PLACED IN INDEX BINDER AND IN FILE BY:>",
"<s_INDEX BINDERS CONSOLIDATED BY:>",
"</s_INDEX BINDERS CONSOLIDATED BY:>",
"<s_INDEX BINDER RE- LABELED BY:>",
"</s_INDEX BINDER RE- LABELED BY:>",
"<s_DEPARTMENT NAME>",
"</s_DEPARTMENT NAME>",
"<s_COST CENTER NUMBER>",
"</s_COST CENTER NUMBER>",
"<s_BOXES CREATED FOR HARD COPY PERMANENT RETENTION RECORDS BY:>",
"</s_BOXES CREATED FOR HARD COPY PERMANENT RETENTION RECORDS BY:>",
"<s_submitted to the voters on>",
"</s_submitted to the voters on>",
"<s_on the>",
"</s_on the>",
"<s_and Ending>",
"</s_and Ending>",
"<s_Total Expenditures or Disbursements to Date>",
"</s_Total Expenditures or Disbursements to Date>",
"<s_Total Expenditures or Disbursements on This Report>",
"</s_Total Expenditures or Disbursements on This Report>",
"<s_Total Expenditures for Disbursements Previously Reported>",
"</s_Total Expenditures for Disbursements Previously Reported>",
"<s_To Whom Paid (Alphabetical Listing Mandatory)>",
"</s_To Whom Paid (Alphabetical Listing Mandatory)>",
"<s_Reporting Period Beginning>",
"</s_Reporting Period Beginning>",
"<s_Purpose>",
"</s_Purpose>",
"<s_Final>",
"</s_Final>",
"<s_File with:>",
"</s_File with:>",
"<s_Date Paid>",
"</s_Date Paid>",
"<s_Amount or Value**>",
"</s_Amount or Value**>",
"<s_4. Question No.>",
"</s_4. Question No.>",
"<s_3. Address of Corporation>",
"</s_3. Address of Corporation>",
"<s_2. Name of Corporation>",
"</s_2. Name of Corporation>",
"<s_19>",
"</s_19>",
"<s_1. Name of Treasurer>",
"</s_1. Name of Treasurer>",
"<s_*Note:>",
"</s_*Note:>",
"<s_Sender Voice Number>",
"</s_Sender Voice Number>",
"<s_Sender Fax Number>",
"</s_Sender Fax Number>",
"<s_Sender>",
"</s_Sender>",
"<s_Reference>",
"</s_Reference>",
"<s_Recipient Phone Number>",
"</s_Recipient Phone Number>",
"<s_Number of Pages (this page included)>",
"</s_Number of Pages (this page included)>",
"<s_If problems receiving this fax, call>",
"</s_If problems receiving this fax, call>",
"<s_Fax Transmittal>",
"</s_Fax Transmittal>",
"<s_Fax Number>",
"</s_Fax Number>",
"<s_Confidentiality Note>",
"</s_Confidentiality Note>",
"<s_Sample Requistion (Form 02: 20: 06)>",
"</s_Sample Requistion (Form 02: 20: 06)>",
"<s_Rod Length>",
"</s_Rod Length>",
"<s_MENIHOL>",
"</s_MENIHOL>",
"<s_Laboratory Other>",
"</s_Laboratory Other>",
"<s_CASTING>",
"</s_CASTING>",
"<s_Voice Number>",
"</s_Voice Number>",
"<s_YOUR REPRESENTATIVE>",
"</s_YOUR REPRESENTATIVE>",
"<s_Tooling:>",
"</s_Tooling:>",
"<s_Steel tips>",
"</s_Steel tips>",
"<s_STATE>",
"</s_STATE>",
"<s_STAMP FRAME>",
"</s_STAMP FRAME>",
"<s_SQUARE>",
"</s_SQUARE>",
"<s_SIZE:>",
"</s_SIZE:>",
"<s_SINGLE FACE>",
"</s_SINGLE FACE>",
"<s_SHIP IMMEDIATELY>",
"</s_SHIP IMMEDIATELY>",
"<s_PRICE:>",
"</s_PRICE:>",
"<s_PER CARTON>",
"</s_PER CARTON>",
"<s_One time tooling>",
"</s_One time tooling>",
"<s_OTHER:>",
"</s_OTHER:>",
"<s_NUMBER OF>",
"</s_NUMBER OF>",
"<s_GAUGE>",
"</s_GAUGE>",
"<s_EMBOSSED>",
"</s_EMBOSSED>",
"<s_COLORS:>",
"</s_COLORS:>",
"<s_BILL AS MANUFACTURE>",
"</s_BILL AS MANUFACTURE>",
"<s_BASE COLOR>",
"</s_BASE COLOR>",
"<s_ALUMINUM>",
"</s_ALUMINUM>",
"<s_ADDRESS>",
"</s_ADDRESS>",
"<s_PARTIAL>",
"</s_PARTIAL>",
"<s_Ind/Lor Volume>",
"</s_Ind/Lor Volume>",
"<s_DEC 21>",
"</s_DEC 21>",
"<s_TEST MARKET GEOGRAPHY>",
"</s_TEST MARKET GEOGRAPHY>",
"<s_NOV>",
"</s_NOV>",
"<s_MANUFACTURER>",
"</s_MANUFACTURER>",
"<s_INDEPENDENTS - ACCEPTANCE/ MERCHANDISING ALLOWANCE>",
"</s_INDEPENDENTS - ACCEPTANCE/ MERCHANDISING ALLOWANCE>",
"<s_DISTRIBUTORS - ACCEPTANCE/ INTRO TERMS/ INTRO DEALS:>",
"</s_DISTRIBUTORS - ACCEPTANCE/ INTRO TERMS/ INTRO DEALS:>",
"<s_DISTRIBUTOR INVOLVEMENT:>",
"</s_DISTRIBUTOR INVOLVEMENT:>",
"<s_CHAINS - ACCEPTANCE/ MERCHANDISING ALLOWANCE>",
"</s_CHAINS - ACCEPTANCE/ MERCHANDISING ALLOWANCE>",
"<s_Date/ Time:>",
"</s_Date/ Time:>",
"<s_Topline>",
"</s_Topline>",
"<s_Research Limitations>",
"</s_Research Limitations>",
"<s_Lenght Int>",
"</s_Lenght Int>",
"<s_Key Criteria for Analysis>",
"</s_Key Criteria for Analysis>",
"<s_Incidence>",
"</s_Incidence>",
"<s_Cost Estimate + - 10% Contingency Final Report Inc.>",
"</s_Cost Estimate + - 10% Contingency Final Report Inc.>",
"<s_# Reports>",
"</s_# Reports>",
"<s_# Open >",
"</s_# Open >",
"<s_SENDER /PHONE NUMBER:>",
"</s_SENDER /PHONE NUMBER:>",
"<s_PHONE NUMBER:>",
"</s_PHONE NUMBER:>",
"<s_NUMBER OF PAGES INCLUDING COVER SHEET:>",
"</s_NUMBER OF PAGES INCLUDING COVER SHEET:>",
"<s_FAX NO.>",
"</s_FAX NO.>",
"<s_application of shields:>",
"</s_application of shields:>",
"<s_Region:>",
"</s_Region:>",
"<s_Pemanent Advertising Evaluation/ Effectiveness/ Acceptance: (P- 1/ P- 5 & C 5 Plans Only:>",
"</s_Pemanent Advertising Evaluation/ Effectiveness/ Acceptance: (P- 1/ P- 5 & C 5 Plans Only:>",
"<s_Independents:>",
"</s_Independents:>",
"<s_Distribution by/ to:>",
"</s_Distribution by/ to:>",
"<s_Comment on the assembly of displays and>",
"</s_Comment on the assembly of displays and>",
"<s_Chains:>",
"</s_Chains:>",
"<s_Area:>",
"</s_Area:>",
"<s_:>",
"</s_:>",
"<s_Phone #:>",
"</s_Phone #:>",
"<s_Firm:>",
"</s_Firm:>",
"<s_FAX #:>",
"</s_FAX #:>",
"<s_# Pages:>",
"</s_# Pages:>",
"<s_LORILLARO COMPOUND CODE NUMBER>",
"</s_LORILLARO COMPOUND CODE NUMBER>",
"<s_PO>",
"</s_PO>",
"<s_CAPTION:>",
"</s_CAPTION:>",
"<s_ATTN:>",
"</s_ATTN:>",
"<s_ADVERTISER:>",
"</s_ADVERTISER:>",
"<s_AD#:>",
"</s_AD#:>",
"<s_Pages (Including cover page):>",
"</s_Pages (Including cover page):>",
"<s_PLAINTIFF COUNSEL:>",
"</s_PLAINTIFF COUNSEL:>",
"<s_LORILLARD ENTITIES:>",
"</s_LORILLARD ENTITIES:>",
"<s_DATE SERVED:>",
"</s_DATE SERVED:>",
"<s_DATE FILED:>",
"</s_DATE FILED:>",
"<s_Telecopier Nos.>",
"</s_Telecopier Nos.>",
"<s_Pages (Including Cover)>",
"</s_Pages (Including Cover)>",
"<s_Name:>",
"</s_Name:>",
"<s_FAX NOv>",
"</s_FAX NOv>",
"<s_FAX NOc.:>",
"</s_FAX NOc.:>",
"<s_FAX NO:>",
"</s_FAX NO:>",
"<s_FAX NO.:>",
"</s_FAX NO.:>",
"<s_slit Glass Mat:>",
"</s_slit Glass Mat:>",
"<s_Routine>",
"</s_Routine>",
"<s_Received By>",
"</s_Received By>",
"<s_RFC>",
"</s_RFC>",
"<s_Proposed Solution>",
"</s_Proposed Solution>",
"<s_Proposed Effective Date>",
"</s_Proposed Effective Date>",
"<s_Page>",
"</s_Page>",
"<s_ORIGINATOR Name:>",
"</s_ORIGINATOR Name:>",
"<s_Glass Mat:>",
"</s_Glass Mat:>",
"<s_Department Name and Location>",
"</s_Department Name and Location>",
"<s_Date Prepared>",
"</s_Date Prepared>",
"<s_Change>",
"</s_Change>",
"<s_Recipient(s):>",
"</s_Recipient(s):>",
"<s_Phone No.:>",
"</s_Phone No.:>",
"<s_No. of Pages>",
"</s_No. of Pages>",
"<s_File No.:>",
"</s_File No.:>",
"<s_Fax No.:>",
"</s_Fax No.:>",
"<s_TELECOPY NO:>",
"</s_TELECOPY NO:>",
"<s_Special Instructions:>",
"</s_Special Instructions:>",
"<s_SHB Client Matter No:>",
"</s_SHB Client Matter No:>",
"<s_COMMENTS/ MESSAGE:>",
"</s_COMMENTS/ MESSAGE:>",
"<s_#:>",
"</s_#:>",
"<s_SELL>",
"</s_SELL>",
"<s_NO OF STORES>",
"</s_NO OF STORES>",
"<s_JUNE 30>",
"</s_JUNE 30>",
"<s_BIGIF 2 FOR 1:>",
"</s_BIGIF 2 FOR 1:>",
"<s_$ 7.00 CARTON COUPON/ BUYDOWN:>",
"</s_$ 7.00 CARTON COUPON/ BUYDOWN:>",
"<s_DEC 13>",
"</s_DEC 13>",
"<s_VOLUME>",
"</s_VOLUME>",
"<s_SEP 15>",
"</s_SEP 15>",
"<s_REGION:>",
"</s_REGION:>",
"<s_IND/LOR VOLUME>",
"</s_IND/LOR VOLUME>",
"<s_# REP>",
"</s_# REP>",
"<s_vs.>",
"</s_vs.>",
"<s_as registered agent for the above- captioned corporation on>",
"</s_as registered agent for the above- captioned corporation on>",
"<s_We enclose the following documents which were served upon:>",
"</s_We enclose the following documents which were served upon:>",
"<s_TITLE OF ACTION:>",
"</s_TITLE OF ACTION:>",
"<s_Phone>",
"</s_Phone>",
"<s_Personal Service>",
"</s_Personal Service>",
"<s_Other:>",
"</s_Other:>",
"<s_OR STATUTORY>",
"</s_OR STATUTORY>",
"<s_MOTOR CARRIER>",
"</s_MOTOR CARRIER>",
"<s_Fed X>",
"</s_Fed X>",
"<s_FORM PREPARED BY>",
"</s_FORM PREPARED BY>",
"<s_Date Received:>",
"</s_Date Received:>",
"<s_Case No.>",
"</s_Case No.>",
"<s_COURT OR JURISDICTION>",
"</s_COURT OR JURISDICTION>",
"<s_Account #>",
"</s_Account #>",
"<s_ATTORNEYS FOR CLAIMANT>",
"</s_ATTORNEYS FOR CLAIMANT>",
"<s>",
"</s>"
],
"bos_token": "<s>",
"cls_token": "<s>",
"eos_token": "</s>",
"mask_token": {
"content": "<mask>",
"lstrip": true,
"normalized": true,
"rstrip": false,
"single_word": false
},
"pad_token": "<pad>",
"sep_token": "</s>",
"unk_token": "<unk>"
}
|