1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282
|
*PPD-Adobe: "4.3"
*% =========================================
*% Disclaimer: The above statement indicates
*% that this PPD was written using the Adobe PPD
*% File Format Specification 4.3, but does not
*% intend to imply approval and acceptance by
*% Adobe Systems, Inc.
*% =========================================
*% PPD for Samsung SCX-882x Series PS
*% For Linux Only
*% =========================================
*%
*%
*%
*% Copyright (c) 2013 Samsung Electronics Co., Ltd.
*%
*% Permission is hereby granted, free of charge, to any person obtaining
*% a copy of this software and associated documentation files (the
*% "Software"), to deal in the Software without restriction, including
*% without limitation the rights to use, copy, modify, merge, publish,
*% distribute, sublicense, and/or sell copies of the Software, and to
*% permit persons to whom the Software is furnished to do so, subject to
*% the following conditions:
*%
*% The above copyright notice and this permission notice shall be
*% included in all copies or substantial portions of the Software.
*%
*% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
*% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
*% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
*% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
*% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
*% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
*% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*%
*% [this is the MIT open source license -- please see www.opensource.org]
*%
*% =========================================
*FileVersion: "1.6"
*FormatVersion: "4.3"
*LanguageEncoding: ISOLatin1
*LanguageVersion: English
*PCFileName: "SCX882x.ppd"
*Product: "(Samsung SCX-882x Series)"
*Manufacturer: "Samsung"
*PSVersion: "(3011 ) 0"
*ModelName: "Samsung SCX-882x Series"
*ShortNickName: "SCX-882x"
*NickName: "Samsung SCX-882x Series PS"
*LanguageLevel: "3"
*Protocols: PJL TBCP
*FreeVM: "60300000"
*ColorDevice: False
*DefaultColorSpace: Gray
*TTRasterizer: Type42
*?TTRasterizer: "
save
42 /FontType resourcestatus
{ pop pop (Type42)} {pop pop (None)} ifelse = flush
restore
"
*End
*JCLBegin: "<1B>%-12345X@PJL JOB<0D0A>"
*JCLToPSInterpreter: "@PJL ENTER LANGUAGE = POSTSCRIPT<0D0A>"
*JCLEnd: "<1B>%-12345X"
*% =========================================================
*% Installable Options
*% =========================================================
*OpenGroup: InstallableOptions/Installed Options
*OpenUI *OptionalTray/Optional Tray: PickOne
*DefaultOptionalTray: None
*OptionalTray None/None: ""
*OptionalTray Tray3H/Tray 3 (High Capacity): ""
*OptionalTray Tray34/Tray 3, 4: ""
*CloseUI: *OptionalTray
*OpenUI *OptInnerOutBin/Optional Inner Output Bin: Boolean
*DefaultOptInnerOutBin: False
*OptInnerOutBin False/Not Installed: ""
*OptInnerOutBin True/Installed: ""
*CloseUI: *OptInnerOutBin
*OpenUI *Finisher/Finisher: PickOne
*DefaultFinisher: None
*Finisher None/Not Installed: ""
*Finisher StandardFinisher/Standard Finisher (1K): ""
*CloseUI: *Finisher
*OpenUI *OptPunch/Optional Hole Punch: PickOne
*DefaultOptPunch: None
*OptPunch None/None: ""
*OptPunch 2-3Hole/2/3 Hole: ""
*OptPunch 2-4Hole/2/4 Hole: ""
*CloseUI: *OptPunch
*CloseGroup: InstallableOptions
*% =========================================
*% Job Accounting - Type
*% =========================================
*JCLOpenUI *JCLJACType/[Job Accounting] Type: PickOne
*OrderDependency: 12 JCLSetup *JCLJACType
*DefaultJCLJACType: Accounting
*JCLJACType Accounting/Accounting: ""
*JCLJACType IDOnly/ID Only: ""
*JCLCloseUI: *JCLJACType
*% =========================================
*% Job Accounting - Permission
*% =========================================
*JCLOpenUI *JCLJACPermission/[Job Accounting] Permission: PickOne
*OrderDependency: 12 JCLSetup *JCLJACPermission
*DefaultJCLJACPermission: User
*JCLJACPermission User/User permission: "@PJL SET LDAPPERMISSION=PERSONAL<0D0A>"
*JCLJACPermission Group/Group permission: "@PJL SET LDAPPERMISSION=GROUP<0D0A>"
*JCLCloseUI: *JCLJACPermission
*% =========================================
*% Job Accounting - User ID
*% =========================================
*JCLOpenUI *JCLJACUserID/[Job Accounting] User ID: PickOne
*OrderDependency: 20 JCLSetup *JCLJACUserID
*DefaultJCLJACUserID: None
*JCLJACUserID None/None: ""
*JCLJACUserID ID/User1: "@PJL SET ACCOUNTING_INFORMATION_USERID=User1<0D0A>"
*JCLCloseUI: *JCLJACUserID
*% Custom JACUserID
*CustomJCLJACUserID True: "@PJL SET ACCOUNTING_INFORMATION_USERID=\1<0D0A>"
*ParamCustomJCLJACUserID Custom/Custom Name: 1 string 0 129
*% =========================================
*% Job Accounting - Password
*% =========================================
*JCLOpenUI *JCLJACPassword/[Job Accounting] Password (4-32 characters): PickOne
*OrderDependency: 20 JCLSetup *JCLJACPassword
*DefaultJCLJACPassword: None
*JCLJACPassword None/None: ""
*JCLJACPassword Password/1111: "@PJL SET ACCOUNTING_INFORMATION_PASSWORD=1111<0D0A>"
*JCLCloseUI: *JCLJACPassword
*% Custom JACPassword
*CustomJCLJACPassword True: "@PJL SET ACCOUNTING_INFORMATION_PASSWORD=\1<0D0A>"
*ParamCustomJCLJACPassword Custom/Custom Password: 1 password 4 32
*% =========================================
*% Print Mode - Type
*% =========================================
*JCLOpenUI *JCLCDPType/[Print Mode] Type: PickOne
*OrderDependency: 12 JCLSetup *JCLCDPType
*DefaultJCLCDPType: None
*JCLCDPType None/Normal: ""
*JCLCDPType Confidential/Confidential: "@PJL COMMENT PRIVATE PRINT<0D0A>@PJL SET HOLD = ON<0D0A>@PJL SET HOLDTYPE = PRIVATE<0D0A>@PJL SET PRINTMODE=PRINT<0D0A>"
*JCLCloseUI: *JCLCDPType
*% =========================================
*% Print Mode - User ID
*% =========================================
*JCLOpenUI *JCLCDPUserID/[Print Mode] User ID: PickOne
*OrderDependency: 15 JCLSetup *JCLCDPUserID
*DefaultJCLCDPUserID: None
*JCLCDPUserID None/None: ""
*JCLCDPUserID ID/User1: "@PJL SET USERNAME = <22>User1<220A>"
*JCLCloseUI: *JCLCDPUserID
*% Custom CDPUserID
*CustomJCLCDPUserID True: "@PJL SET USERNAME = <22>\1<220A>"
*ParamCustomJCLCDPUserID Custom/Custom ID: 1 string 1 64
*% =========================================
*% Print Mode - Job Name
*% =========================================
*JCLOpenUI *JCLCDPJobName/[Print Mode] Job Name: PickOne
*OrderDependency: 15 JCLSetup *JCLCDPJobName
*DefaultJCLCDPJobName: None
*JCLCDPJobName None/None: ""
*JCLCDPJobName JobName/Job1: "@PJL SET JOBNAME = <22>Job1<220A>"
*JCLCloseUI: *JCLCDPJobName
*% Custom CDPJobName
*CustomJCLCDPJobName True: "@PJL SET JOBNAME = <22>\1<220A>"
*ParamCustomJCLCDPJobName Custom/Custom Name: 1 string 0 64
*% =========================================
*% Print Mode - Password
*% =========================================
*JCLOpenUI *JCLCDPPassword/[Print Mode] Password (4-8 characters): PickOne
*OrderDependency: 20 JCLSetup *JCLCDPPassword
*DefaultJCLCDPPassword: None
*JCLCDPPassword None/None: ""
*JCLCDPPassword Password/1111: "@PJL SET HOLDKEY = <22>1111<220A>"
*JCLCloseUI: *JCLCDPPassword
*% Custom CDPPassword
*CustomJCLCDPPassword True: "@PJL SET HOLDKEY = <22>\1<220A>"
*ParamCustomJCLCDPPassword Custom/Custom Password: 1 password 4 8
*%==========================================================
*% Collate
*%==========================================================
*OpenUI *Collate/Collate: Boolean
*OrderDependency: 70 AnySetup *Collate
*DefaultCollate: True
*Collate False/Off: "<</Collate false>> setpagedevice"
*Collate True/On: "<</Collate true>> setpagedevice"
*?Collate: "
save
currentpagedevice /Collate get
{(True)}{(False)}ifelse = flush
restore
"
*End
*CloseUI: *Collate
*% =========================================================
*% Duplex
*% =========================================================
*OpenUI *Duplex/Double-sided Printing: PickOne
*OrderDependency: 60 AnySetup *Duplex
*DefaultDuplex: None
*Duplex None/None: " <</Duplex false>> setpagedevice"
*Duplex DuplexNoTumble/Long Edge: "
<</Duplex true /Tumble false>> setpagedevice"
*End
*Duplex DuplexTumble/Short Edge: "
<</Duplex true /Tumble true>> setpagedevice"
*End
*?Duplex: "
save
currentpagedevice /Duplex get
{currentpagedevice /Tumble get
{(DuplexTumble)}{(DuplexNoTumble)}ifelse
}{(None)} ifelse = flush
restore
"
*End
*CloseUI: *Duplex
*% =========================================================
*% Reverse Duplex
*% =========================================================
*OpenUI *SECReverseDuplex/Reverse Duplex Printing: Boolean
*OrderDependency: 100 AnySetup *SECReverseDuplex
*DefaultSECReverseDuplex: False
*SECReverseDuplex False/Off: "userdict /SECReverseDuplex false put"
*SECReverseDuplex True/On: "userdict /SECReverseDuplex true put"
*CloseUI: *SECReverseDuplex
*% =========================================================
*% Media Type
*% =========================================================
*OpenUI *MediaType/Paper Type: PickOne
*OrderDependency: 50 AnySetup *MediaType
*DefaultMediaType: None
*MediaType None/Printer Default: "<</MediaType (system-default)>> setpagedevice"
*MediaType Plain/Plain: "<</MediaType (Plain)>> setpagedevice"
*MediaType Thick/Thick: "<</MediaType (THICK)>> setpagedevice"
*MediaType Thin/Thin: "<</MediaType (THIN)>> setpagedevice"
*MediaType Bond/Bond: "<</MediaType (Bond)>> setpagedevice"
*MediaType Color/Color: "<</MediaType (Color)>> setpagedevice"
*MediaType Labels/Labels: "<</MediaType (Labels)>> setpagedevice"
*MediaType Transparency/Transparency: "<</MediaType (Transparency)>> setpagedevice"
*MediaType Envelope/Envelope: "<</MediaType (Envelope)>> setpagedevice"
*MediaType Preprinted/Preprinted: "<</MediaType (Preprinted)>> setpagedevice"
*MediaType Recycled/Recycled: "<</MediaType (Recycled)>> setpagedevice"
*MediaType Cotton/Cotton: "<</MediaType (COTTEN)>> setpagedevice"
*MediaType Archive/Archive: "<</MediaType (ARCHIVE)>> setpagedevice"
*MediaType Punched/Punched: "<</MediaType (Prepunched)>> setpagedevice"
*MediaType Letterhead/Letterhead: "<</MediaType (Letterhead)>> setpagedevice"
*MediaType HeavyWeight/Heavy Weight: "<</MediaType (HeavyWeight)>> setpagedevice"
*MediaType ExtraHeavyWeight1/Extra Heavy Weight 1: "<</MediaType (ExtraHeavyWeight1)>> setpagedevice"
*MediaType ThinCardStock/Thin CardStock: "<</MediaType (ThinCardStock)>> setpagedevice"
*MediaType ThickCardStock/Thick CardStock: "<</MediaType (ThickCardStock)>> setpagedevice"
*CloseUI: *MediaType
*% =========================================================
*% Quality Information
*% =========================================================
*OpenUI *Quality/Quality: PickOne
*DefaultQuality: Normal
*OrderDependency: 10 AnySetup *Quality
*Quality Best/Best: "<< /HWResolution [600 600] /PixelDepth 4 >> setpagedevice"
*Quality Normal/Normal: "<< /HWResolution [600 600] /PixelDepth 2 >> setpagedevice"
*CloseUI: *Quality
*DefaultResolution: 600dpi
*DefaultHalftoneType: 9
*ScreenFreq: "106.0"
*ScreenAngle: "45.0"
*% =======================================================================================
*% Toner Save
*% =======================================================================================
*JCLOpenUI *JCLEconomode/Toner Save: PickOne
*OrderDependency: 10 JCLSetup *JCLEconomode
*DefaultJCLEconomode: Off
*JCLEconomode Off/Off: "@PJL SET ECONOMODE = OFF<0A>"
*JCLEconomode On/On: "@PJL SET ECONOMODE = ON<0A>"
*JCLCloseUI: *JCLEconomode
*% =========================================================
*% Edge Enhance
*% =========================================================
*JCLOpenUI *JCLEdgeEnhance/Edge Enhancement: PickOne
*OrderDependency: 10 JCLSetup *JCLEdgeEnhance
*DefaultJCLEdgeEnhance: Normal
*JCLEdgeEnhance Off/Off: "@PJL SET EDGEENHANCE=OFF<0D0A>"
*JCLEdgeEnhance Normal/Normal: "@PJL SET EDGEENHANCE=NORMAL<0D0A>"
*JCLEdgeEnhance Maximum/Maximum: "@PJL SET EDGEENHANCE=MAXIMUM<0D0A>"
*JCLCloseUI: *JCLEdgeEnhance
*% =======================================================================================
*% Clear Text
*% =======================================================================================
*JCLOpenUI *JCLDarkenText/Clear Text: PickOne
*OrderDependency: 10 JCLSetup *JCLDarkenText
*DefaultJCLDarkenText: Normal
*JCLDarkenText Off/Off: "@PJL SET DARKENTEXT=OFF<0D0A>"
*JCLDarkenText Normal/Medium: "@PJL SET DARKENTEXT=ON<0D0A>"
*JCLDarkenText Maximum/Maximum: "@PJL SET DARKENTEXT=MAXIMUM<0D0A>"
*JCLCloseUI: *JCLDarkenText
*% =======================================================================================
*% JCLSkipBlankPages
*% =======================================================================================
*JCLOpenUI *JCLSkipBlankPages/Skip Blank Pages: Boolean
*OrderDependency: 10 JCLSetup *JCLSkipBlankPages
*DefaultJCLSkipBlankPages: False
*JCLSkipBlankPages False/Off: "@PJL SET XIGNOREFF=OFF<0D0A>"
*JCLSkipBlankPages True/On: "@PJL SET XIGNOREFF=ON<0D0A>"
*JCLCloseUI: *JCLSkipBlankPages
*% =======================================================================================
*% JCLCopySetNumberingPosition
*% =======================================================================================
*%JCLOpenUI *JCLCopySetNumberingPosition/Copy Set Numbering Position: PickOne
*%OrderDependency: 10 JCLSetup *JCLCopySetNumberingPosition
*%DefaultJCLCopySetNumberingPosition: None
*%JCLCopySetNumberingPosition None/None: ""
*%JCLCopySetNumberingPosition Top/Top: "@PJL SET COPYSETNUMPOSITION=TOP<0D0A>"
*%JCLCopySetNumberingPosition TopLeft/Top-Left: "@PJL SET COPYSETNUMPOSITION=TOPLEFT<0D0A>"
*%JCLCopySetNumberingPosition TopRight/Top-Right: "@PJL SET COPYSETNUMPOSITION=TOPRIGHT<0D0A>"
*%JCLCopySetNumberingPosition Bottom/Bottom: "@PJL SET COPYSETNUMPOSITION=BOTTOM<0D0A>"
*%JCLCopySetNumberingPosition BottomLeft/Bottom-Left: "@PJL SET COPYSETNUMPOSITION=BOTTOMLEFT<0D0A>"
*%JCLCopySetNumberingPosition BottomRight/Bottom-Right: "@PJL SET COPYSETNUMPOSITION=BOTTOMRIGHT<0D0A>"
*%JCLCloseUI: *JCLCopySetNumberingPosition
*% =======================================================================================
*% Margin for ImageShift FrontSide Left or Right value (0-25)
*% =======================================================================================
*%JCLOpenUI *JCLLRFrontValue/Left/Right margin for front side: PickOne
*%OrderDependency: 10 JCLSetup *JCLLRFrontValue
*%DefaultJCLLRFrontValue: Default
*%JCLLRFrontValue Default/Default Settings: ""
*%JCLLRFrontValue L0/Left 0: "@PJL SET MANUALMARGIN_FRONT_LEFT=0<0D0A>"
*%JCLLRFrontValue L1/Left 1: "@PJL SET MANUALMARGIN_FRONT_LEFT=10<0D0A>"
*%JCLLRFrontValue L2/Left 2: "@PJL SET MANUALMARGIN_FRONT_LEFT=20<0D0A>"
*%JCLLRFrontValue L3/Left 3: "@PJL SET MANUALMARGIN_FRONT_LEFT=30<0D0A>"
*%JCLLRFrontValue L4/Left 4: "@PJL SET MANUALMARGIN_FRONT_LEFT=40<0D0A>"
*%JCLLRFrontValue L5/Left 5: "@PJL SET MANUALMARGIN_FRONT_LEFT=50<0D0A>"
*%JCLLRFrontValue L6/Left 6: "@PJL SET MANUALMARGIN_FRONT_LEFT=60<0D0A>"
*%JCLLRFrontValue L7/Left 7: "@PJL SET MANUALMARGIN_FRONT_LEFT=70<0D0A>"
*%JCLLRFrontValue L8/Left 8: "@PJL SET MANUALMARGIN_FRONT_LEFT=80<0D0A>"
*%JCLLRFrontValue L9/Left 9: "@PJL SET MANUALMARGIN_FRONT_LEFT=90<0D0A>"
*%JCLLRFrontValue L10/Left 10: "@PJL SET MANUALMARGIN_FRONT_LEFT=100<0D0A>"
*%JCLLRFrontValue L11/Left 11: "@PJL SET MANUALMARGIN_FRONT_LEFT=110<0D0A>"
*%JCLLRFrontValue L12/Left 12: "@PJL SET MANUALMARGIN_FRONT_LEFT=120<0D0A>"
*%JCLLRFrontValue L13/Left 13: "@PJL SET MANUALMARGIN_FRONT_LEFT=130<0D0A>"
*%JCLLRFrontValue L14/Left 14: "@PJL SET MANUALMARGIN_FRONT_LEFT=140<0D0A>"
*%JCLLRFrontValue L15/Left 15: "@PJL SET MANUALMARGIN_FRONT_LEFT=150<0D0A>"
*%JCLLRFrontValue L16/Left 16: "@PJL SET MANUALMARGIN_FRONT_LEFT=160<0D0A>"
*%JCLLRFrontValue L17/Left 17: "@PJL SET MANUALMARGIN_FRONT_LEFT=170<0D0A>"
*%JCLLRFrontValue L18/Left 18: "@PJL SET MANUALMARGIN_FRONT_LEFT=180<0D0A>"
*%JCLLRFrontValue L19/Left 19: "@PJL SET MANUALMARGIN_FRONT_LEFT=190<0D0A>"
*%JCLLRFrontValue L20/Left 20: "@PJL SET MANUALMARGIN_FRONT_LEFT=200<0D0A>"
*%JCLLRFrontValue L21/Left 21: "@PJL SET MANUALMARGIN_FRONT_LEFT=210<0D0A>"
*%JCLLRFrontValue L22/Left 22: "@PJL SET MANUALMARGIN_FRONT_LEFT=220<0D0A>"
*%JCLLRFrontValue L23/Left 23: "@PJL SET MANUALMARGIN_FRONT_LEFT=230<0D0A>"
*%JCLLRFrontValue L24/Left 24: "@PJL SET MANUALMARGIN_FRONT_LEFT=240<0D0A>"
*%JCLLRFrontValue L25/Left 25: "@PJL SET MANUALMARGIN_FRONT_LEFT=250<0D0A>"
*%JCLLRFrontValue R0/Right 0: "@PJL SET MANUALMARGIN_FRONT_RIGHT=0<0D0A>"
*%JCLLRFrontValue R1/Right 1: "@PJL SET MANUALMARGIN_FRONT_RIGHT=10<0D0A>"
*%JCLLRFrontValue R2/Right 2: "@PJL SET MANUALMARGIN_FRONT_RIGHT=20<0D0A>"
*%JCLLRFrontValue R3/Right 3: "@PJL SET MANUALMARGIN_FRONT_RIGHT=30<0D0A>"
*%JCLLRFrontValue R4/Right 4: "@PJL SET MANUALMARGIN_FRONT_RIGHT=40<0D0A>"
*%JCLLRFrontValue R5/Right 5: "@PJL SET MANUALMARGIN_FRONT_RIGHT=50<0D0A>"
*%JCLLRFrontValue R6/Right 6: "@PJL SET MANUALMARGIN_FRONT_RIGHT=60<0D0A>"
*%JCLLRFrontValue R7/Right 7: "@PJL SET MANUALMARGIN_FRONT_RIGHT=70<0D0A>"
*%JCLLRFrontValue R8/Right 8: "@PJL SET MANUALMARGIN_FRONT_RIGHT=80<0D0A>"
*%JCLLRFrontValue R9/Right 9: "@PJL SET MANUALMARGIN_FRONT_RIGHT=90<0D0A>"
*%JCLLRFrontValue R10/Right 10: "@PJL SET MANUALMARGIN_FRONT_RIGHT=100<0D0A>"
*%JCLLRFrontValue R11/Right 11: "@PJL SET MANUALMARGIN_FRONT_RIGHT=110<0D0A>"
*%JCLLRFrontValue R12/Right 12: "@PJL SET MANUALMARGIN_FRONT_RIGHT=120<0D0A>"
*%JCLLRFrontValue R13/Right 13: "@PJL SET MANUALMARGIN_FRONT_RIGHT=130<0D0A>"
*%JCLLRFrontValue R14/Right 14: "@PJL SET MANUALMARGIN_FRONT_RIGHT=140<0D0A>"
*%JCLLRFrontValue R15/Right 15: "@PJL SET MANUALMARGIN_FRONT_RIGHT=150<0D0A>"
*%JCLLRFrontValue R16/Right 16: "@PJL SET MANUALMARGIN_FRONT_RIGHT=160<0D0A>"
*%JCLLRFrontValue R17/Right 17: "@PJL SET MANUALMARGIN_FRONT_RIGHT=170<0D0A>"
*%JCLLRFrontValue R18/Right 18: "@PJL SET MANUALMARGIN_FRONT_RIGHT=180<0D0A>"
*%JCLLRFrontValue R19/Right 19: "@PJL SET MANUALMARGIN_FRONT_RIGHT=190<0D0A>"
*%JCLLRFrontValue R20/Right 20: "@PJL SET MANUALMARGIN_FRONT_RIGHT=200<0D0A>"
*%JCLLRFrontValue R21/Right 21: "@PJL SET MANUALMARGIN_FRONT_RIGHT=210<0D0A>"
*%JCLLRFrontValue R22/Right 22: "@PJL SET MANUALMARGIN_FRONT_RIGHT=220<0D0A>"
*%JCLLRFrontValue R23/Right 23: "@PJL SET MANUALMARGIN_FRONT_RIGHT=230<0D0A>"
*%JCLLRFrontValue R24/Right 24: "@PJL SET MANUALMARGIN_FRONT_RIGHT=240<0D0A>"
*%JCLLRFrontValue R25/Right 25: "@PJL SET MANUALMARGIN_FRONT_RIGHT=250<0D0A>"
*%JCLCloseUI: *JCLLRFrontValue
*% =======================================================================================
*% Margin for ImageShift FrontSide Top or Bottom value (0-25)
*% =======================================================================================
*%JCLOpenUI *JCLTBFrontValue/Top/Bottom margin for front side: PickOne
*%OrderDependency: 10 JCLSetup *JCLTBFrontValue
*%DefaultJCLTBFrontValue: Default
*%JCLTBFrontValue Default/Default Settings: ""
*%JCLTBFrontValue T0/Top 0: "@PJL SET MANUALMARGIN_FRONT_TOP=0<0D0A>"
*%JCLTBFrontValue T1/Top 1: "@PJL SET MANUALMARGIN_FRONT_TOP=10<0D0A>"
*%JCLTBFrontValue T2/Top 2: "@PJL SET MANUALMARGIN_FRONT_TOP=20<0D0A>"
*%JCLTBFrontValue T3/Top 3: "@PJL SET MANUALMARGIN_FRONT_TOP=30<0D0A>"
*%JCLTBFrontValue T4/Top 4: "@PJL SET MANUALMARGIN_FRONT_TOP=40<0D0A>"
*%JCLTBFrontValue T5/Top 5: "@PJL SET MANUALMARGIN_FRONT_TOP=50<0D0A>"
*%JCLTBFrontValue T6/Top 6: "@PJL SET MANUALMARGIN_FRONT_TOP=60<0D0A>"
*%JCLTBFrontValue T7/Top 7: "@PJL SET MANUALMARGIN_FRONT_TOP=70<0D0A>"
*%JCLTBFrontValue T8/Top 8: "@PJL SET MANUALMARGIN_FRONT_TOP=80<0D0A>"
*%JCLTBFrontValue T9/Top 9: "@PJL SET MANUALMARGIN_FRONT_TOP=90<0D0A>"
*%JCLTBFrontValue T10/Top 10: "@PJL SET MANUALMARGIN_FRONT_TOP=100<0D0A>"
*%JCLTBFrontValue T11/Top 11: "@PJL SET MANUALMARGIN_FRONT_TOP=110<0D0A>"
*%JCLTBFrontValue T12/Top 12: "@PJL SET MANUALMARGIN_FRONT_TOP=120<0D0A>"
*%JCLTBFrontValue T13/Top 13: "@PJL SET MANUALMARGIN_FRONT_TOP=130<0D0A>"
*%JCLTBFrontValue T14/Top 14: "@PJL SET MANUALMARGIN_FRONT_TOP=140<0D0A>"
*%JCLTBFrontValue T15/Top 15: "@PJL SET MANUALMARGIN_FRONT_TOP=150<0D0A>"
*%JCLTBFrontValue T16/Top 16: "@PJL SET MANUALMARGIN_FRONT_TOP=160<0D0A>"
*%JCLTBFrontValue T17/Top 17: "@PJL SET MANUALMARGIN_FRONT_TOP=170<0D0A>"
*%JCLTBFrontValue T18/Top 18: "@PJL SET MANUALMARGIN_FRONT_TOP=180<0D0A>"
*%JCLTBFrontValue T19/Top 19: "@PJL SET MANUALMARGIN_FRONT_TOP=190<0D0A>"
*%JCLTBFrontValue T20/Top 20: "@PJL SET MANUALMARGIN_FRONT_TOP=200<0D0A>"
*%JCLTBFrontValue T21/Top 21: "@PJL SET MANUALMARGIN_FRONT_TOP=210<0D0A>"
*%JCLTBFrontValue T22/Top 22: "@PJL SET MANUALMARGIN_FRONT_TOP=220<0D0A>"
*%JCLTBFrontValue T23/Top 23: "@PJL SET MANUALMARGIN_FRONT_TOP=230<0D0A>"
*%JCLTBFrontValue T24/Top 24: "@PJL SET MANUALMARGIN_FRONT_TOP=240<0D0A>"
*%JCLTBFrontValue T25/Top 25: "@PJL SET MANUALMARGIN_FRONT_TOP=250<0D0A>"
*%JCLTBFrontValue B0/Bottom 0: "@PJL SET MANUALMARGIN_FRONT_BOTTOM=0<0D0A>"
*%JCLTBFrontValue B1/Bottom 1: "@PJL SET MANUALMARGIN_FRONT_BOTTOM=10<0D0A>"
*%JCLTBFrontValue B2/Bottom 2: "@PJL SET MANUALMARGIN_FRONT_BOTTOM=20<0D0A>"
*%JCLTBFrontValue B3/Bottom 3: "@PJL SET MANUALMARGIN_FRONT_BOTTOM=30<0D0A>"
*%JCLTBFrontValue B4/Bottom 4: "@PJL SET MANUALMARGIN_FRONT_BOTTOM=40<0D0A>"
*%JCLTBFrontValue B5/Bottom 5: "@PJL SET MANUALMARGIN_FRONT_BOTTOM=50<0D0A>"
*%JCLTBFrontValue B6/Bottom 6: "@PJL SET MANUALMARGIN_FRONT_BOTTOM=60<0D0A>"
*%JCLTBFrontValue B7/Bottom 7: "@PJL SET MANUALMARGIN_FRONT_BOTTOM=70<0D0A>"
*%JCLTBFrontValue B8/Bottom 8: "@PJL SET MANUALMARGIN_FRONT_BOTTOM=80<0D0A>"
*%JCLTBFrontValue B9/Bottom 9: "@PJL SET MANUALMARGIN_FRONT_BOTTOM=90<0D0A>"
*%JCLTBFrontValue B10/Bottom 10: "@PJL SET MANUALMARGIN_FRONT_BOTTOM=100<0D0A>"
*%JCLTBFrontValue B11/Bottom 11: "@PJL SET MANUALMARGIN_FRONT_BOTTOM=110<0D0A>"
*%JCLTBFrontValue B12/Bottom 12: "@PJL SET MANUALMARGIN_FRONT_BOTTOM=120<0D0A>"
*%JCLTBFrontValue B13/Bottom 13: "@PJL SET MANUALMARGIN_FRONT_BOTTOM=130<0D0A>"
*%JCLTBFrontValue B14/Bottom 14: "@PJL SET MANUALMARGIN_FRONT_BOTTOM=140<0D0A>"
*%JCLTBFrontValue B15/Bottom 15: "@PJL SET MANUALMARGIN_FRONT_BOTTOM=150<0D0A>"
*%JCLTBFrontValue B16/Bottom 16: "@PJL SET MANUALMARGIN_FRONT_BOTTOM=160<0D0A>"
*%JCLTBFrontValue B17/Bottom 17: "@PJL SET MANUALMARGIN_FRONT_BOTTOM=170<0D0A>"
*%JCLTBFrontValue B18/Bottom 18: "@PJL SET MANUALMARGIN_FRONT_BOTTOM=180<0D0A>"
*%JCLTBFrontValue B19/Bottom 19: "@PJL SET MANUALMARGIN_FRONT_BOTTOM=190<0D0A>"
*%JCLTBFrontValue B20/Bottom 20: "@PJL SET MANUALMARGIN_FRONT_BOTTOM=200<0D0A>"
*%JCLTBFrontValue B21/Bottom 21: "@PJL SET MANUALMARGIN_FRONT_BOTTOM=210<0D0A>"
*%JCLTBFrontValue B22/Bottom 22: "@PJL SET MANUALMARGIN_FRONT_BOTTOM=220<0D0A>"
*%JCLTBFrontValue B23/Bottom 23: "@PJL SET MANUALMARGIN_FRONT_BOTTOM=230<0D0A>"
*%JCLTBFrontValue B24/Bottom 24: "@PJL SET MANUALMARGIN_FRONT_BOTTOM=240<0D0A>"
*%JCLTBFrontValue B25/Bottom 25: "@PJL SET MANUALMARGIN_FRONT_BOTTOM=250<0D0A>"
*%JCLCloseUI: *JCLTBFrontValue
*% =======================================================================================
*% Margin for ImageShift BackSide Left or Right value (0-25)
*% =======================================================================================
*%JCLOpenUI *JCLLRBackValue/Left/Right margin for back side: PickOne
*%OrderDependency: 10 JCLSetup *JCLLRBackValue
*%DefaultJCLLRBackValue: Default
*%JCLLRBackValue Default/Default Settings: ""
*%JCLLRBackValue L0/Left 0: "@PJL SET MANUALMARGIN_BACK_LEFT=0<0D0A>"
*%JCLLRBackValue L1/Left 1: "@PJL SET MANUALMARGIN_BACK_LEFT=10<0D0A>"
*%JCLLRBackValue L2/Left 2: "@PJL SET MANUALMARGIN_BACK_LEFT=20<0D0A>"
*%JCLLRBackValue L3/Left 3: "@PJL SET MANUALMARGIN_BACK_LEFT=30<0D0A>"
*%JCLLRBackValue L4/Left 4: "@PJL SET MANUALMARGIN_BACK_LEFT=40<0D0A>"
*%JCLLRBackValue L5/Left 5: "@PJL SET MANUALMARGIN_BACK_LEFT=50<0D0A>"
*%JCLLRBackValue L6/Left 6: "@PJL SET MANUALMARGIN_BACK_LEFT=60<0D0A>"
*%JCLLRBackValue L7/Left 7: "@PJL SET MANUALMARGIN_BACK_LEFT=70<0D0A>"
*%JCLLRBackValue L8/Left 8: "@PJL SET MANUALMARGIN_BACK_LEFT=80<0D0A>"
*%JCLLRBackValue L9/Left 9: "@PJL SET MANUALMARGIN_BACK_LEFT=90<0D0A>"
*%JCLLRBackValue L10/Left 10: "@PJL SET MANUALMARGIN_BACK_LEFT=100<0D0A>"
*%JCLLRBackValue L11/Left 11: "@PJL SET MANUALMARGIN_BACK_LEFT=110<0D0A>"
*%JCLLRBackValue L12/Left 12: "@PJL SET MANUALMARGIN_BACK_LEFT=120<0D0A>"
*%JCLLRBackValue L13/Left 13: "@PJL SET MANUALMARGIN_BACK_LEFT=130<0D0A>"
*%JCLLRBackValue L14/Left 14: "@PJL SET MANUALMARGIN_BACK_LEFT=140<0D0A>"
*%JCLLRBackValue L15/Left 15: "@PJL SET MANUALMARGIN_BACK_LEFT=150<0D0A>"
*%JCLLRBackValue L16/Left 16: "@PJL SET MANUALMARGIN_BACK_LEFT=160<0D0A>"
*%JCLLRBackValue L17/Left 17: "@PJL SET MANUALMARGIN_BACK_LEFT=170<0D0A>"
*%JCLLRBackValue L18/Left 18: "@PJL SET MANUALMARGIN_BACK_LEFT=180<0D0A>"
*%JCLLRBackValue L19/Left 19: "@PJL SET MANUALMARGIN_BACK_LEFT=190<0D0A>"
*%JCLLRBackValue L20/Left 20: "@PJL SET MANUALMARGIN_BACK_LEFT=200<0D0A>"
*%JCLLRBackValue L21/Left 21: "@PJL SET MANUALMARGIN_BACK_LEFT=210<0D0A>"
*%JCLLRBackValue L22/Left 22: "@PJL SET MANUALMARGIN_BACK_LEFT=220<0D0A>"
*%JCLLRBackValue L23/Left 23: "@PJL SET MANUALMARGIN_BACK_LEFT=230<0D0A>"
*%JCLLRBackValue L24/Left 24: "@PJL SET MANUALMARGIN_BACK_LEFT=240<0D0A>"
*%JCLLRBackValue L25/Left 25: "@PJL SET MANUALMARGIN_BACK_LEFT=250<0D0A>"
*%JCLLRBackValue R0/Right 0: "@PJL SET MANUALMARGIN_BACK_RIGHT=0<0D0A>"
*%JCLLRBackValue R1/Right 1: "@PJL SET MANUALMARGIN_BACK_RIGHT=10<0D0A>"
*%JCLLRBackValue R2/Right 2: "@PJL SET MANUALMARGIN_BACK_RIGHT=20<0D0A>"
*%JCLLRBackValue R3/Right 3: "@PJL SET MANUALMARGIN_BACK_RIGHT=30<0D0A>"
*%JCLLRBackValue R4/Right 4: "@PJL SET MANUALMARGIN_BACK_RIGHT=40<0D0A>"
*%JCLLRBackValue R5/Right 5: "@PJL SET MANUALMARGIN_BACK_RIGHT=50<0D0A>"
*%JCLLRBackValue R6/Right 6: "@PJL SET MANUALMARGIN_BACK_RIGHT=60<0D0A>"
*%JCLLRBackValue R7/Right 7: "@PJL SET MANUALMARGIN_BACK_RIGHT=70<0D0A>"
*%JCLLRBackValue R8/Right 8: "@PJL SET MANUALMARGIN_BACK_RIGHT=80<0D0A>"
*%JCLLRBackValue R9/Right 9: "@PJL SET MANUALMARGIN_BACK_RIGHT=90<0D0A>"
*%JCLLRBackValue R10/Right 10: "@PJL SET MANUALMARGIN_BACK_RIGHT=100<0D0A>"
*%JCLLRBackValue R11/Right 11: "@PJL SET MANUALMARGIN_BACK_RIGHT=110<0D0A>"
*%JCLLRBackValue R12/Right 12: "@PJL SET MANUALMARGIN_BACK_RIGHT=120<0D0A>"
*%JCLLRBackValue R13/Right 13: "@PJL SET MANUALMARGIN_BACK_RIGHT=130<0D0A>"
*%JCLLRBackValue R14/Right 14: "@PJL SET MANUALMARGIN_BACK_RIGHT=140<0D0A>"
*%JCLLRBackValue R15/Right 15: "@PJL SET MANUALMARGIN_BACK_RIGHT=150<0D0A>"
*%JCLLRBackValue R16/Right 16: "@PJL SET MANUALMARGIN_BACK_RIGHT=160<0D0A>"
*%JCLLRBackValue R17/Right 17: "@PJL SET MANUALMARGIN_BACK_RIGHT=170<0D0A>"
*%JCLLRBackValue R18/Right 18: "@PJL SET MANUALMARGIN_BACK_RIGHT=180<0D0A>"
*%JCLLRBackValue R19/Right 19: "@PJL SET MANUALMARGIN_BACK_RIGHT=190<0D0A>"
*%JCLLRBackValue R20/Right 20: "@PJL SET MANUALMARGIN_BACK_RIGHT=200<0D0A>"
*%JCLLRBackValue R21/Right 21: "@PJL SET MANUALMARGIN_BACK_RIGHT=210<0D0A>"
*%JCLLRBackValue R22/Right 22: "@PJL SET MANUALMARGIN_BACK_RIGHT=220<0D0A>"
*%JCLLRBackValue R23/Right 23: "@PJL SET MANUALMARGIN_BACK_RIGHT=230<0D0A>"
*%JCLLRBackValue R24/Right 24: "@PJL SET MANUALMARGIN_BACK_RIGHT=240<0D0A>"
*%JCLLRBackValue R25/Right 25: "@PJL SET MANUALMARGIN_BACK_RIGHT=250<0D0A>"
*%JCLCloseUI: *JCLLRBackValue
*% =======================================================================================
*% Margin for ImageShift BackSide Top or Bottom value (0-25)
*% =======================================================================================
*%JCLOpenUI *JCLTBBackValue/Top/Bottom margin for back side: PickOne
*%OrderDependency: 10 JCLSetup *JCLTBBackValue
*%DefaultJCLTBBackValue: Default
*%JCLTBBackValue Default/Default Settings: ""
*%JCLTBBackValue T0/Top 0: "@PJL SET MANUALMARGIN_BACK_TOP=0<0D0A>"
*%JCLTBBackValue T1/Top 1: "@PJL SET MANUALMARGIN_BACK_TOP=10<0D0A>"
*%JCLTBBackValue T2/Top 2: "@PJL SET MANUALMARGIN_BACK_TOP=20<0D0A>"
*%JCLTBBackValue T3/Top 3: "@PJL SET MANUALMARGIN_BACK_TOP=30<0D0A>"
*%JCLTBBackValue T4/Top 4: "@PJL SET MANUALMARGIN_BACK_TOP=40<0D0A>"
*%JCLTBBackValue T5/Top 5: "@PJL SET MANUALMARGIN_BACK_TOP=50<0D0A>"
*%JCLTBBackValue T6/Top 6: "@PJL SET MANUALMARGIN_BACK_TOP=60<0D0A>"
*%JCLTBBackValue T7/Top 7: "@PJL SET MANUALMARGIN_BACK_TOP=70<0D0A>"
*%JCLTBBackValue T8/Top 8: "@PJL SET MANUALMARGIN_BACK_TOP=80<0D0A>"
*%JCLTBBackValue T9/Top 9: "@PJL SET MANUALMARGIN_BACK_TOP=90<0D0A>"
*%JCLTBBackValue T10/Top 10: "@PJL SET MANUALMARGIN_BACK_TOP=100<0D0A>"
*%JCLTBBackValue T11/Top 11: "@PJL SET MANUALMARGIN_BACK_TOP=110<0D0A>"
*%JCLTBBackValue T12/Top 12: "@PJL SET MANUALMARGIN_BACK_TOP=120<0D0A>"
*%JCLTBBackValue T13/Top 13: "@PJL SET MANUALMARGIN_BACK_TOP=130<0D0A>"
*%JCLTBBackValue T14/Top 14: "@PJL SET MANUALMARGIN_BACK_TOP=140<0D0A>"
*%JCLTBBackValue T15/Top 15: "@PJL SET MANUALMARGIN_BACK_TOP=150<0D0A>"
*%JCLTBBackValue T16/Top 16: "@PJL SET MANUALMARGIN_BACK_TOP=160<0D0A>"
*%JCLTBBackValue T17/Top 17: "@PJL SET MANUALMARGIN_BACK_TOP=170<0D0A>"
*%JCLTBBackValue T18/Top 18: "@PJL SET MANUALMARGIN_BACK_TOP=180<0D0A>"
*%JCLTBBackValue T19/Top 19: "@PJL SET MANUALMARGIN_BACK_TOP=190<0D0A>"
*%JCLTBBackValue T20/Top 20: "@PJL SET MANUALMARGIN_BACK_TOP=200<0D0A>"
*%JCLTBBackValue T21/Top 21: "@PJL SET MANUALMARGIN_BACK_TOP=210<0D0A>"
*%JCLTBBackValue T22/Top 22: "@PJL SET MANUALMARGIN_BACK_TOP=220<0D0A>"
*%JCLTBBackValue T23/Top 23: "@PJL SET MANUALMARGIN_BACK_TOP=230<0D0A>"
*%JCLTBBackValue T24/Top 24: "@PJL SET MANUALMARGIN_BACK_TOP=240<0D0A>"
*%JCLTBBackValue T25/Top 25: "@PJL SET MANUALMARGIN_BACK_TOP=250<0D0A>"
*%JCLTBBackValue B0/Bottom 0: "@PJL SET MANUALMARGIN_BACK_BOTTOM=0<0D0A>"
*%JCLTBBackValue B1/Bottom 1: "@PJL SET MANUALMARGIN_BACK_BOTTOM=10<0D0A>"
*%JCLTBBackValue B2/Bottom 2: "@PJL SET MANUALMARGIN_BACK_BOTTOM=20<0D0A>"
*%JCLTBBackValue B3/Bottom 3: "@PJL SET MANUALMARGIN_BACK_BOTTOM=30<0D0A>"
*%JCLTBBackValue B4/Bottom 4: "@PJL SET MANUALMARGIN_BACK_BOTTOM=40<0D0A>"
*%JCLTBBackValue B5/Bottom 5: "@PJL SET MANUALMARGIN_BACK_BOTTOM=50<0D0A>"
*%JCLTBBackValue B6/Bottom 6: "@PJL SET MANUALMARGIN_BACK_BOTTOM=60<0D0A>"
*%JCLTBBackValue B7/Bottom 7: "@PJL SET MANUALMARGIN_BACK_BOTTOM=70<0D0A>"
*%JCLTBBackValue B8/Bottom 8: "@PJL SET MANUALMARGIN_BACK_BOTTOM=80<0D0A>"
*%JCLTBBackValue B9/Bottom 9: "@PJL SET MANUALMARGIN_BACK_BOTTOM=90<0D0A>"
*%JCLTBBackValue B10/Bottom 10: "@PJL SET MANUALMARGIN_BACK_BOTTOM=100<0D0A>"
*%JCLTBBackValue B11/Bottom 11: "@PJL SET MANUALMARGIN_BACK_BOTTOM=110<0D0A>"
*%JCLTBBackValue B12/Bottom 12: "@PJL SET MANUALMARGIN_BACK_BOTTOM=120<0D0A>"
*%JCLTBBackValue B13/Bottom 13: "@PJL SET MANUALMARGIN_BACK_BOTTOM=130<0D0A>"
*%JCLTBBackValue B14/Bottom 14: "@PJL SET MANUALMARGIN_BACK_BOTTOM=140<0D0A>"
*%JCLTBBackValue B15/Bottom 15: "@PJL SET MANUALMARGIN_BACK_BOTTOM=150<0D0A>"
*%JCLTBBackValue B16/Bottom 16: "@PJL SET MANUALMARGIN_BACK_BOTTOM=160<0D0A>"
*%JCLTBBackValue B17/Bottom 17: "@PJL SET MANUALMARGIN_BACK_BOTTOM=170<0D0A>"
*%JCLTBBackValue B18/Bottom 18: "@PJL SET MANUALMARGIN_BACK_BOTTOM=180<0D0A>"
*%JCLTBBackValue B19/Bottom 19: "@PJL SET MANUALMARGIN_BACK_BOTTOM=190<0D0A>"
*%JCLTBBackValue B20/Bottom 20: "@PJL SET MANUALMARGIN_BACK_BOTTOM=200<0D0A>"
*%JCLTBBackValue B21/Bottom 21: "@PJL SET MANUALMARGIN_BACK_BOTTOM=210<0D0A>"
*%JCLTBBackValue B22/Bottom 22: "@PJL SET MANUALMARGIN_BACK_BOTTOM=220<0D0A>"
*%JCLTBBackValue B23/Bottom 23: "@PJL SET MANUALMARGIN_BACK_BOTTOM=230<0D0A>"
*%JCLTBBackValue B24/Bottom 24: "@PJL SET MANUALMARGIN_BACK_BOTTOM=240<0D0A>"
*%JCLTBBackValue B25/Bottom 25: "@PJL SET MANUALMARGIN_BACK_BOTTOM=250<0D0A>"
*%JCLCloseUI: *JCLTBBackValue
*% =======================================================================================
*% JCLSortOptions
*% =======================================================================================
*JCLOpenUI *JCLSortOptions/Sort Options: PickOne
*OrderDependency: 10 JCLSetup *JCLSortOptions
*DefaultJCLSortOptions: None
*JCLSortOptions None/None: ""
*JCLSortOptions Offset/Offset: "@PJL SET SORT=OFFSET<0D0A>"
*JCLSortOptions Rotate/Rotate: "@PJL SET SORT=ROTATE<0D0A>"
*JCLCloseUI: *JCLSortOptions
*% =========================================================
*% StapleLocation
*% =========================================================
*JCLOpenUI *JCLStapleLocation/Staple: PickOne
*OrderDependency: 10 JCLSetup *JCLStapleLocation
*DefaultJCLStapleLocation: None
*JCLStapleLocation None/None: ""
*JCLStapleLocation 1Staple_P/1 Staple (Portrait): "@PJL SET STAPLE=PORTRAIT<0D0A>@PJL SET STAPLENUM=1<0D0A>"
*JCLStapleLocation 1Staple_L/1 Staple (Landscape): "@PJL SET STAPLE=LANDSCAPE<0D0A>@PJL SET STAPLENUM=1<0D0A>"
*JCLStapleLocation 2Staple_P/2 Staple (Portrait): "@PJL SET STAPLE=PORTRAIT<0D0A>@PJL SET STAPLENUM=2<0D0A>"
*JCLStapleLocation 2Staple_L/2 Staple (Landscape): "@PJL SET STAPLE=LANDSCAPE<0D0A>@PJL SET STAPLENUM=2<0D0A>"
*JCLCloseUI: *JCLStapleLocation
*% =========================================================
*% StaplePosition
*% =========================================================
*JCLOpenUI *JCLStaplePosition/Staple Position: PickOne
*OrderDependency: 10 JCLSetup *JCLStaplePosition
*DefaultJCLStaplePosition: None
*JCLStaplePosition None/None: ""
*JCLStaplePosition Left/Left: "@PJL SET STAPLEPOSITION=LEFT<0D0A>"
*JCLStaplePosition Right/Right: "@PJL SET STAPLEPOSITION=RIGHT<0D0A>"
*JCLStaplePosition Top/Top: "@PJL SET STAPLEPOSITION=TOP<0D0A>"
*JCLCloseUI: *JCLStaplePosition
*% =========================================================
*% Punching
*% =========================================================
*JCLOpenUI *JCLPunchLocation/Punch: PickOne
*OrderDependency: 10 JCLSetup *JCLPunchLocation
*DefaultJCLPunchLocation: None
*JCLPunchLocation None/None: ""
*JCLPunchLocation 2Hole_P/2 Hole Punch (Portrait): "@PJL SET PUNCH=PORTRAIT<0D0A>@PJL SET PUNCHNUM=2<0D0A>"
*JCLPunchLocation 2Hole_L/2 Hole Punch (Landscape): "@PJL SET PUNCH=LANDSCAPE<0D0A>@PJL SET PUNCHNUM=2<0D0A>"
*JCLPunchLocation 3Hole_P/3 Hole Punch (Portrait): "@PJL SET PUNCH=PORTRAIT<0D0A>@PJL SET PUNCHNUM=3<0D0A>"
*JCLPunchLocation 3Hole_L/3 Hole Punch (Landscape): "@PJL SET PUNCH=LANDSCAPE<0D0A>@PJL SET PUNCHNUM=3<0D0A>"
*JCLPunchLocation 4Hole_P/4 Hole Punch (Portrait): "@PJL SET PUNCH=PORTRAIT<0D0A>@PJL SET PUNCHNUM=4<0D0A>"
*JCLPunchLocation 4Hole_L/4 Hole Punch (Landscape): "@PJL SET PUNCH=LANDSCAPE<0D0A>@PJL SET PUNCHNUM=4<0D0A>"
*JCLCloseUI: *JCLPunchLocation
*% =======================================================================================
*% PunchPosition
*% =======================================================================================
*JCLOpenUI *JCLPunchPosition/Punch Position: PickOne
*OrderDependency: 10 JCLSetup *JCLPunchPosition
*DefaultJCLPunchPosition: None
*JCLPunchPosition None/None: ""
*JCLPunchPosition Left/Left: "@PJL SET PUNCHPOSITION=LEFT<0D0A>"
*JCLPunchPosition Right/Right: "@PJL SET PUNCHPOSITION=RIGHT<0D0A>"
*JCLPunchPosition Top/Top: "@PJL SET PUNCHPOSITION=TOP<0D0A>"
*JCLCloseUI: *JCLPunchPosition
*% =========================================================
*% Finisher Output bin
*% =========================================================
*JCLOpenUI *JCLFinisherOutBin/Output Bin: PickOne
*OrderDependency: 10 JCLSetup *JCLFinisherOutBin
*DefaultJCLFinisherOutBin: None
*JCLFinisherOutBin None/Printer setting: ""
*JCLFinisherOutBin Bin1/Center Tray: "@PJL SET OUTBIN=UPPER<0D0A>"
*JCLFinisherOutBin Bin2/Top Tray: "@PJL SET OUTBIN=UPPER<0D0A>"
*JCLFinisherOutBin Bin3/Inner Tray: "@PJL SET OUTBIN=INNER<0D0A>"
*JCLFinisherOutBin Bin4/Finishing Tray: "@PJL SET OUTBIN=FINISHERBIN<0D0A>"
*JCLCloseUI: *JCLFinisherOutBin
*% =======================================================================================
*% Front Cover [OPTION]
*% =======================================================================================
*JCLOpenUI *JCLFrontCoverOption/Front Cover Option: PickOne
*OrderDependency: 10 JCLSetup *JCLFrontCoverOption
*DefaultJCLFrontCoverOption: None
*JCLFrontCoverOption None/No Covers: ""
*JCLFrontCoverOption BlankPreprinted/Blank or Preprinted: "@PJL SET FRONTBACK_COVER_ATTRIBUTE=<22>FRONT<220D0A>@PJL SET FRONT_COVER_OPTION=<22>BLANK<220D0A>"
*JCLFrontCoverOption 1SidedPrinted/1-Sided Printed: "@PJL SET FRONTBACK_COVER_ATTRIBUTE=<22>FRONT<220D0A>@PJL SET FRONT_COVER_OPTION=<22>1SIDEPRINTED<220D0A>"
*JCLFrontCoverOption 2SidedPrinted/2-Sided Printed: "@PJL SET FRONTBACK_COVER_ATTRIBUTE=<22>FRONT<220D0A>@PJL SET FRONT_COVER_OPTION=<22>2SIDEPRINTED<220D0A>"
*JCLCloseUI: *JCLFrontCoverOption
*% =======================================================================================
*% Front Cover [Source]
*% =======================================================================================
*JCLOpenUI *JCLFrontCoverSource/Front Cover Source: PickOne
*OrderDependency: 10 JCLSetup *JCLFrontCoverSource
*DefaultJCLFrontCoverSource: None
*JCLFrontCoverSource None/None: ""
*JCLFrontCoverSource Auto/Auto Selection: "@PJL SET FRONT_COVER_TRAY=<22>AUTO<220D0A>"
*JCLFrontCoverSource Upper/MP Tray: "@PJL SET FRONT_COVER_TRAY=<22>MPTRAY<220D0A>"
*JCLFrontCoverSource Middle/Tray 1: "@PJL SET FRONT_COVER_TRAY=<22>UPPER<220D0A>"
*JCLFrontCoverSource Lower/Tray 2: "@PJL SET FRONT_COVER_TRAY=<22>LOWER<220D0A>"
*JCLFrontCoverSource Tray3/Tray 3: "@PJL SET FRONT_COVER_TRAY=<22>OPTIONTRAY3<220D0A>"
*JCLFrontCoverSource Tray3H/Tray 3(High Capacity): "@PJL SET FRONT_COVER_TRAY=<22>OPTIONTRAY3<220D0A>"
*JCLFrontCoverSource Tray4/Tray 4: "@PJL SET FRONT_COVER_TRAY=<22>OPTIONTRAY4<220D0A>"
*JCLCloseUI: *JCLFrontCoverSource
*% =======================================================================================
*% Front Cover [Type]
*% =======================================================================================
*JCLOpenUI *JCLFrontCoverType/Front Cover Type: PickOne
*OrderDependency: 10 JCLSetup *JCLFrontCoverType
*DefaultJCLFrontCoverType: None
*JCLFrontCoverType None/None: ""
*JCLFrontCoverType PrinterDefault/Printer Default: "@PJL SET FRONT_COVER_TYPE=<22>OFF<220D0A>"
*JCLFrontCoverType Plain/Plain: "@PJL SET FRONT_COVER_TYPE=<22>NORMAL<220D0A>"
*JCLFrontCoverType Thick/Thick: "@PJL SET FRONT_COVER_TYPE=<22>THICK<220D0A>"
*JCLFrontCoverType Thin/Thin: "@PJL SET FRONT_COVER_TYPE=<22>THIN<220D0A>"
*JCLFrontCoverType Bond/Bond: "@PJL SET FRONT_COVER_TYPE=<22>BOND<220D0A>"
*JCLFrontCoverType Color/Color: "@PJL SET FRONT_COVER_TYPE=<22>COLOR<220D0A>"
*JCLFrontCoverType Labels/Labels: "@PJL SET FRONT_COVER_TYPE=<22>LABEL<220D0A>"
*JCLFrontCoverType Transparency/Transparency: "@PJL SET FRONT_COVER_TYPE=<22>OHP<220D0A>"
*JCLFrontCoverType Envelope/Envelope: "@PJL SET FRONT_COVER_TYPE=<22>ENV<220D0A>"
*JCLFrontCoverType Preprinted/Preprinted: "@PJL SET FRONT_COVER_TYPE=<22>USED<220D0A>"
*JCLFrontCoverType Cotton/Cotton: "@PJL SET FRONT_COVER_TYPE=<22>COTTON<220D0A>"
*JCLFrontCoverType Recycled/Recycled: "@PJL SET FRONT_COVER_TYPE=<22>RECYCLED<220D0A>"
*JCLFrontCoverType Archive/Archive: "@PJL SET FRONT_COVER_TYPE=<22>ARCHIVE<220D0A>"
*JCLFrontCoverType Punched/Punched: "@PJL SET FRONT_COVER_TYPE=<22>PUNCHED<220D0A>"
*JCLFrontCoverType Letterhead/Letterhead: "@PJL SET FRONT_COVER_TYPE=<22>LETTERHEAD<220D0A>"
*JCLFrontCoverType HeavyWeight/Heavy Weight: "@PJL SET FRONT_COVER_TYPE=<22>HEAVYWEIGHT<220D0A>"
*JCLFrontCoverType ExtraHeavyWeight1/Extra Heavy Weight 1: "@PJL SET FRONT_COVER_TYPE=<22>EXTRAHEAVYWEIGHT1<220D0A>"
*JCLFrontCoverType ThinCardStock/Thin CardStock: "@PJL SET FRONT_COVER_TYPE=<22>THINCARDSTOCK<220D0A>"
*JCLFrontCoverType ThickCardStock/Thick CardStock: "@PJL SET FRONT_COVER_TYPE=<22>THICKCARDSTOCK<220D0A>"
*JCLCloseUI: *JCLFrontCoverType
*% =======================================================================================
*% Back Cover [OPTION]
*% =======================================================================================
*JCLOpenUI *JCLBackCoverOption/Back Cover Option: PickOne
*OrderDependency: 10 JCLSetup *JCLBackCoverOption
*DefaultJCLBackCoverOption: None
*JCLBackCoverOption None/No Covers: ""
*JCLBackCoverOption BlankPreprinted/Blank or Preprinted: "@PJL SET FRONTBACK_COVER_ATTRIBUTE=<22>BACK<220D0A>@PJL SET BACK_COVER_OPTION=<22>BLANK<220D0A>"
*JCLBackCoverOption 1SidedPrinted/1-Sided Printed: "@PJL SET FRONTBACK_COVER_ATTRIBUTE=<22>BACK<220D0A>@PJL SET BACK_COVER_OPTION=<22>1SIDEPRINTED<220D0A>"
*JCLBackCoverOption 2SidedPrinted/2-Sided Printed: "@PJL SET FRONTBACK_COVER_ATTRIBUTE=<22>BACK<220D0A>@PJL SET BACK_COVER_OPTION=<22>2SIDEPRINTED<220D0A>"
*JCLCloseUI: *JCLBackCoverOption
*% =======================================================================================
*% Back Cover [Source]
*% =======================================================================================
*JCLOpenUI *JCLBackCoverSource/Back Cover Source: PickOne
*OrderDependency: 10 JCLSetup *JCLBackCoverSource
*DefaultJCLBackCoverSource: None
*JCLBackCoverSource None/None: ""
*JCLBackCoverSource Auto/Auto Selection: "@PJL SET BACK_COVER_TRAY=<22>AUTO<220D0A>"
*JCLBackCoverSource Upper/MP Tray: "@PJL SET BACK_COVER_TRAY=<22>MPTRAY<220D0A>"
*JCLBackCoverSource Middle/Tray 1: "@PJL SET BACK_COVER_TRAY=<22>UPPER<220D0A>"
*JCLBackCoverSource Lower/Tray 2: "@PJL SET BACK_COVER_TRAY=<22>LOWER<220D0A>"
*JCLBackCoverSource Tray3/Tray 3: "@PJL SET BACK_COVER_TRAY=<22>OPTIONTRAY3<220D0A>"
*JCLBackCoverSource Tray3H/Tray 3(High Capacity): "@PJL SET BACK_COVER_TRAY=<22>OPTIONTRAY3<220D0A>"
*JCLBackCoverSource Tray4/Tray 4: "@PJL SET BACK_COVER_TRAY=<22>OPTIONTRAY4<220D0A>"
*JCLCloseUI: *JCLBackCoverSource
*% =======================================================================================
*% Back Cover [Type]
*% =======================================================================================
*JCLOpenUI *JCLBackCoverType/Back Cover Type: PickOne
*OrderDependency: 10 JCLSetup *JCLBackCoverType
*DefaultJCLBackCoverType: None
*JCLBackCoverType None/None: ""
*JCLBackCoverType PrinterDefault/Printer Default: "@PJL SET BACK_COVER_TYPE=<22>OFF<220D0A>"
*JCLBackCoverType Plain/Plain: "@PJL SET BACK_COVER_TYPE=<22>NORMAL<220D0A>"
*JCLBackCoverType Thick/Thick: "@PJL SET BACK_COVER_TYPE=<22>THICK<220D0A>"
*JCLBackCoverType Thin/Thin: "@PJL SET BACK_COVER_TYPE=<22>THIN<220D0A>"
*JCLBackCoverType Bond/Bond: "@PJL SET BACK_COVER_TYPE=<22>BOND<220D0A>"
*JCLBackCoverType Color/Color: "@PJL SET BACK_COVER_TYPE=<22>COLOR<220D0A>"
*JCLBackCoverType Labels/Labels: "@PJL SET BACK_COVER_TYPE=<22>LABEL<220D0A>"
*JCLBackCoverType Transparency/Transparency: "@PJL SET BACK_COVER_TYPE=<22>OHP<220D0A>"
*JCLBackCoverType Envelope/Envelope: "@PJL SET BACK_COVER_TYPE=<22>ENV<220D0A>"
*JCLBackCoverType Preprinted/Preprinted: "@PJL SET BACK_COVER_TYPE=<22>USED<220D0A>"
*JCLBackCoverType Cotton/Cotton: "@PJL SET BACK_COVER_TYPE=<22>COTTON<220D0A>"
*JCLBackCoverType Recycled/Recycled: "@PJL SET BACK_COVER_TYPE=<22>RECYCLED<220D0A>"
*JCLBackCoverType Archive/Archive: "@PJL SET BACK_COVER_TYPE=<22>ARCHIVE<220D0A>"
*JCLBackCoverType Punched/Punched: "@PJL SET BACK_COVER_TYPE=<22>PUNCHED<220D0A>"
*JCLBackCoverType Letterhead/Letterhead: "@PJL SET BACK_COVER_TYPE=<22>LETTERHEAD<220D0A>"
*JCLBackCoverType HeavyWeight/Heavy Weight: "@PJL SET BACK_COVER_TYPE=<22>HEAVYWEIGHT<220D0A>"
*JCLBackCoverType ExtraHeavyWeight1/Extra Heavy Weight 1: "@PJL SET BACK_COVER_TYPE=<22>EXTRAHEAVYWEIGHT1<220D0A>"
*JCLBackCoverType ThinCardStock/Thin CardStock: "@PJL SET BACK_COVER_TYPE=<22>THINCARDSTOCK<220D0A>"
*JCLBackCoverType ThickCardStock/Thick CardStock: "@PJL SET BACK_COVER_TYPE=<22>THICKCARDSTOCK<220D0A>"
*JCLCloseUI: *JCLBackCoverType
*% =======================================================================================
*% Front and Back Cover [OPTION]
*% =======================================================================================
*JCLOpenUI *JCLFrontBackCoverOption/Front and Back Cover Option: PickOne
*OrderDependency: 10 JCLSetup *JCLFrontBackCoverOption
*DefaultJCLFrontBackCoverOption: None
*JCLFrontBackCoverOption None/No Covers: ""
*JCLFrontBackCoverOption BlankPreprinted/Blank or Preprinted: "@PJL SET FRONTBACK_COVER_ATTRIBUTE=<22>FRONTBACK<220D0A>@PJL SET FRONTBACK_COVER_OPTION=<22>BLANK<220D0A>"
*JCLFrontBackCoverOption 1SidedPrinted/1-Sided Printed: "@PJL SET FRONTBACK_COVER_ATTRIBUTE=<22>FRONTBACK<220D0A>@PJL SET FRONTBACK_COVER_OPTION=<22>1SIDEPRINTED<220D0A>"
*JCLFrontBackCoverOption 2SidedPrinted/2-Sided Printed: "@PJL SET FRONTBACK_COVER_ATTRIBUTE=<22>FRONTBACK<220D0A>@PJL SET FRONTBACK_COVER_OPTION=<22>2SIDEPRINTED<220D0A>"
*JCLCloseUI: *JCLFrontBackCoverOption
*% =======================================================================================
*% Front and Back Cover [Source]
*% =======================================================================================
*JCLOpenUI *JCLFrontBackCoverSource/Front and Back Cover Source: PickOne
*OrderDependency: 10 JCLSetup *JCLFrontBackCoverSource
*DefaultJCLFrontBackCoverSource: None
*JCLFrontBackCoverSource None/None: ""
*JCLFrontBackCoverSource Auto/Auto Selection: "@PJL SET FRONTBACK_COVER_TRAY=<22>AUTO<220D0A>"
*JCLFrontBackCoverSource Upper/MP Tray: "@PJL SET FRONTBACK_COVER_TRAY=<22>MPTRAY<220D0A>"
*JCLFrontBackCoverSource Middle/Tray 1: "@PJL SET FRONTBACK_COVER_TRAY=<22>UPPER<220D0A>"
*JCLFrontBackCoverSource Lower/Tray 2: "@PJL SET FRONTBACK_COVER_TRAY=<22>LOWER<220D0A>"
*JCLFrontBackCoverSource Tray3/Tray 3: "@PJL SET FRONTBACK_COVER_TRAY=<22>OPTIONTRAY3<220D0A>"
*JCLFrontBackCoverSource Tray3H/Tray 3(High Capacity): "@PJL SET FRONTBACK_COVER_TRAY=<22>OPTIONTRAY3<220D0A>"
*JCLFrontBackCoverSource Tray4/Tray 4: "@PJL SET FRONTBACK_COVER_TRAY=<22>OPTIONTRAY4<220D0A>"
*JCLCloseUI: *JCLFrontBackCoverSource
*% =======================================================================================
*% Front and Back Cover [Type]
*% =======================================================================================
*JCLOpenUI *JCLFrontBackCoverType/Front and Back Cover Type: PickOne
*OrderDependency: 10 JCLSetup *JCLFrontBackCoverType
*DefaultJCLFrontBackCoverType: None
*JCLFrontBackCoverType None/None: ""
*JCLFrontBackCoverType PrinterDefault/Printer Default: "@PJL SET FRONTBACK_COVER_TYPE=<22>OFF<220D0A>"
*JCLFrontBackCoverType Plain/Plain: "@PJL SET FRONTBACK_COVER_TYPE=<22>NORMAL<220D0A>"
*JCLFrontBackCoverType Thick/Thick: "@PJL SET FRONTBACK_COVER_TYPE=<22>THICK<220D0A>"
*JCLFrontBackCoverType Thin/Thin: "@PJL SET FRONTBACK_COVER_TYPE=<22>THIN<220D0A>"
*JCLFrontBackCoverType Bond/Bond: "@PJL SET FRONTBACK_COVER_TYPE=<22>BOND<220D0A>"
*JCLFrontBackCoverType Color/Color: "@PJL SET FRONTBACK_COVER_TYPE=<22>COLOR<220D0A>"
*JCLFrontBackCoverType Labels/Labels: "@PJL SET FRONTBACK_COVER_TYPE=<22>LABEL<220D0A>"
*JCLFrontBackCoverType Transparency/Transparency: "@PJL SET FRONTBACK_COVER_TYPE=<22>OHP<220D0A>"
*JCLFrontBackCoverType Envelope/Envelope: "@PJL SET FRONTBACK_COVER_TYPE=<22>ENV<220D0A>"
*JCLFrontBackCoverType Preprinted/Preprinted: "@PJL SET FRONTBACK_COVER_TYPE=<22>USED<220D0A>"
*JCLFrontBackCoverType Recycled/Recycled: "@PJL SET FRONTBACK_COVER_TYPE=<22>RECYCLED<220D0A>"
*JCLFrontBackCoverType Cotton/Cotton: "@PJL SET FRONTBACK_COVER_TYPE=<22>COTTON<220D0A>"
*JCLFrontBackCoverType Archive/Archive: "@PJL SET FRONTBACK_COVER_TYPE=<22>ARCHIVE<220D0A>"
*JCLFrontBackCoverType Punched/Punched: "@PJL SET FRONTBACK_COVER_TYPE=<22>PUNCHED<220D0A>"
*JCLFrontBackCoverType Letterhead/Letterhead: "@PJL SET FRONTBACK_COVER_TYPE=<22>LETTERHEAD<220D0A>"
*JCLFrontBackCoverType HeavyWeight/Heavy Weight: "@PJL SET FRONTBACK_COVER_TYPE=<22>HEAVYWEIGHT<220D0A>"
*JCLFrontBackCoverType ExtraHeavyWeight1/Extra Heavy Weight 1: "@PJL SET FRONTBACK_COVER_TYPE=<22>EXTRAHEAVYWEIGHT1<220D0A>"
*JCLFrontBackCoverType ThinCardStock/Thin CardStock: "@PJL SET FRONTBACK_COVER_TYPE=<22>THINCARDSTOCK<220D0A>"
*JCLFrontBackCoverType ThickCardStock/Thick CardStock: "@PJL SET FRONTBACK_COVER_TYPE=<22>THICKCARDSTOCK<220D0A>"
*JCLCloseUI: *JCLFrontBackCoverType
*% =======================================================================================
*% Transparency Separator [Option]
*% =======================================================================================
*JCLOpenUI *JCLSeparatorsOption/Transparency Separator: PickOne
*OrderDependency: 10 JCLSetup *JCLSeparatorsOption
*DefaultJCLSeparatorsOption: None
*JCLSeparatorsOption None/None: ""
*JCLSeparatorsOption PrintedSeparator/Printed Separator: "@PJL SET OHP_SEPARATOR_OPTION=<22>PRINTED<220D0A>"
*JCLSeparatorsOption BlankSeparator/Blank Separator: "@PJL SET OHP_SEPARATOR_OPTION=<22>BLANK<220D0A>"
*JCLCloseUI: *JCLSeparatorsOption
*% =======================================================================================
*% Transparency Separator [Source]
*% =======================================================================================
*JCLOpenUI *JCLSeparatorsSource/Separators Source: PickOne
*OrderDependency: 10 JCLSetup *JCLSeparatorsSource
*DefaultJCLSeparatorsSource: None
*JCLSeparatorsSource None/None: "@PJL SET OHP_SEPARATOR_TRAY=<22>AUTO<220D0A>"
*JCLSeparatorsSource Upper/MP Tray: "@PJL SET OHP_SEPARATOR_TRAY=<22>MPTRAY<220D0A>"
*JCLSeparatorsSource Middle/Tray 1: "@PJL SET OHP_SEPARATOR_TRAY=<22>UPPER<220D0A>"
*JCLSeparatorsSource Lower/Tray 2: "@PJL SET OHP_SEPARATOR_TRAY=<22>LOWER<220D0A>"
*JCLSeparatorsSource Tray3/Tray 3: "@PJL SET OHP_SEPARATOR_TRAY=<22>OPTIONTRAY3<220D0A>"
*JCLSeparatorsSource Tray3H/Tray 3(High Capacity): "@PJL SET OHP_SEPARATOR_TRAY=<22>OPTIONTRAY3<220D0A>"
*JCLSeparatorsSource Tray4/Tray 4: "@PJL SET OHP_SEPARATOR_TRAY=<22>OPTIONTRAY4<220D0A>"
*JCLCloseUI: *JCLSeparatorsSource
*% =======================================================================================
*% Paper Source
*% =======================================================================================
*OpenUI *InputSlot/Paper Source: PickOne
*OrderDependency: 20 AnySetup *InputSlot
*DefaultInputSlot: Auto
*InputSlot Auto/Printer Auto Selection:"
<</ManualFeed false /MediaPosition null>> setpagedevice"
*End
*InputSlot Upper/MP Tray:"
<< /ManualFeed false /MediaPosition 2 >> setpagedevice"
*End
*InputSlot Middle/Tray 1:"
<< /ManualFeed false /MediaPosition 1 >> setpagedevice"
*End
*InputSlot Lower/Tray 2:"
<< /ManualFeed false /MediaPosition 3 >> setpagedevice"
*End
*InputSlot Tray3/Tray 3:"
<< /ManualFeed false /MediaPosition 4 >> setpagedevice"
*End
*InputSlot Tray3H/Tray 3(High Capacity):"
<< /ManualFeed false /MediaPosition 4 >> setpagedevice"
*End
*InputSlot Tray4/Tray 4:"
<< /ManualFeed false /MediaPosition 5 >> setpagedevice"
*End
*%InputSlot Tray5/Tray 5:"
*% << /ManualFeed false /MediaPosition 6 >> setpagedevice"
*%End
*CloseUI: *InputSlot
*% =========================================================
*% Paper Handling
*% =========================================================
*% Use these entries to set paper size unless there is a specific
*% reason to use PageRegion, such as when using manual feed.
*OpenUI *PageSize/Page Size: PickOne
*OrderDependency: 30 AnySetup *PageSize
*DefaultPageSize: Letter
*PageSize Letter/Letter: "<</PageSize [612 792] /ImagingBBox null>> setpagedevice"
*PageSize Legal/Legal: "<</PageSize [612 1008] /ImagingBBox null>> setpagedevice"
*PageSize Executive/Executive: "<</PageSize [522 756] /ImagingBBox null>> setpagedevice"
*PageSize A4/A4: "<</PageSize [595 842] /ImagingBBox null>> setpagedevice"
*PageSize A5/A5: "<</PageSize [420 595] /ImagingBBox null>> setpagedevice"
*PageSize B5-JIS/JIS B5: "<</PageSize [516 729] /ImagingBBox null>> setpagedevice"
*PageSize US-Folio/US Folio: "<</PageSize [612 936] /ImagingBBox null>> setpagedevice"
*PageSize Env10/No.10 Env.: "<</PageSize [297 684] /ImagingBBox null>> setpagedevice"
*PageSize EnvDL/DL Env.: "<</PageSize [312 624] /ImagingBBox null>> setpagedevice"
*PageSize EnvC5/C5 Env.: "<</PageSize [459 649] /ImagingBBox null>> setpagedevice"
*PageSize EnvC6/C6 Env.: "<</PageSize [323 459] /ImagingBBox null>> setpagedevice"
*PageSize B5-ISO/ISO B5: "<</PageSize [499 709] /ImagingBBox null>> setpagedevice"
*PageSize EnvMonarch/Monarch Env.: "<</PageSize [279 540] /ImagingBBox null>> setpagedevice"
*PageSize A6/A6: "<</PageSize [297 420] /ImagingBBox null>> setpagedevice"
*PageSize Oficio_S/Oficio : "<</PageSize [612 972] /ImagingBBox null>> setpagedevice"
*PageSize Statement/Statement: "<</PageSize [396 612] /ImagingBBox null>> setpagedevice"
*PageSize Postcard_S/Postcard 4x6: "<</PageSize [288 432] /ImagingBBox null>> setpagedevice"
*PageSize A3/A3: "<</PageSize [842 1191] /ImagingBBox null>> setpagedevice"
*PageSize Env9/No.9 Env.: "<</PageSize [279 639] /ImagingBBox null>> setpagedevice"
*PageSize C4/C4: "<</PageSize [649 918] /ImagingBBox null>> setpagedevice"
*PageSize B4/B4: "<</PageSize [729 1032] /ImagingBBox null>> setpagedevice"
*PageSize SRA3/SRA3: "<</PageSize [907 1276] /ImagingBBox null>> setpagedevice"
*PageSize 8K/8K: "<</PageSize [766 1106] /ImagingBBox null>> setpagedevice"
*PageSize 16K/16K: "<</PageSize [553 766] /ImagingBBox null>> setpagedevice"
*PageSize 12x18/Tabloid Extra: "<</PageSize [864 1296] /ImagingBBox null>> setpagedevice"
*PageSize Tabloid/Ledger: "<</PageSize [792 1224] /ImagingBBox null>> setpagedevice"
*?PageSize: "
save currentpagedevice /PageSize get aload pop
2 copy gt {exch} if (Unknown) 26 dict
dup [649 918] (C4) put
dup [792 1224] (Tabloid) put
dup [729 1032] (B4) put
dup [279 639] (Env9) put
dup [864 1296] (12x18) put
dup [553 766] (16K) put
dup [766 1106] (8K) put
dup [907 1276] (SRA3) put
dup [842 1191] (A3) put
dup [288 432] (Postcard_S) put
dup [396 612] (Statement) put
dup [612 972] (Oficio_S) put
dup [297 420] (A6) put
dup [279 540] (EnvMonarch) put
dup [499 709] (B5-ISO) put
dup [323 459] (EnvC6) put
dup [459 649] (EnvC5) put
dup [312 624] (EnvDL) put
dup [297 684] (Env10) put
dup [612 936] (US-Folio) put
dup [516 729] (B5-JIS) put
dup [420 595] (A5) put
dup [595 842] (A4) put
dup [522 756] (Executive) put
dup [612 1008] (Legal) put
dup [612 792] (Letter) put
{exch aload pop 4 index sub abs 5 le exch 5 index
sub abs 5 le and {exch pop exit} {pop} ifelse}
bind forall = flush pop pop restore
"
*End
*CloseUI: *PageSize
*OpenUI *PageRegion: PickOne
*OrderDependency: 40 AnySetup *PageRegion
*DefaultPageRegion: Letter
*PageRegion Letter/Letter: "<</PageSize [612 792] /ImagingBBox null>> setpagedevice"
*PageRegion Legal/Legal: "<</PageSize [612 1008] /ImagingBBox null>> setpagedevice"
*PageRegion Executive/Executive: "<</PageSize [522 756] /ImagingBBox null>> setpagedevice"
*PageRegion A4/A4: "<</PageSize [595 842] /ImagingBBox null>> setpagedevice"
*PageRegion A5/A5: "<</PageSize [420 595] /ImagingBBox null>> setpagedevice"
*PageRegion B5-JIS/JIS B5: "<</PageSize [516 729] /ImagingBBox null>> setpagedevice"
*PageRegion US-Folio/US Folio: "<</PageSize [612 936] /ImagingBBox null>> setpagedevice"
*PageRegion Env10/No.10 Env.: "<</PageSize [297 684] /ImagingBBox null>> setpagedevice"
*PageRegion EnvDL/DL Env.: "<</PageSize [312 624] /ImagingBBox null>> setpagedevice"
*PageRegion EnvC5/C5 Env.: "<</PageSize [459 649] /ImagingBBox null>> setpagedevice"
*PageRegion EnvC6/C6 Env.: "<</PageSize [323 459] /ImagingBBox null>> setpagedevice"
*PageRegion B5-ISO/ISO B5: "<</PageSize [499 709] /ImagingBBox null>> setpagedevice"
*PageRegion EnvMonarch/Monarch Env.: "<</PageSize [279 540] /ImagingBBox null>> setpagedevice"
*PageRegion A6/A6: "<</PageSize [297 420] /ImagingBBox null>> setpagedevice"
*PageRegion Oficio_S/Oficio: "<</PageSize [612 972] /ImagingBBox null>> setpagedevice"
*PageRegion Statement/Statement: "<</PageSize [396 612] /ImagingBBox null>> setpagedevice"
*PageRegion Postcard_S/Postcard 4x6: "<</PageSize [288 432] /ImagingBBox null>> setpagedevice"
*PageRegion A3/A3: "<</PageSize [842 1191] /ImagingBBox null>> setpagedevice"
*PageRegion Env9/No.9 Env.: "<</PageSize [279 639] /ImagingBBox null>> setpagedevice"
*PageRegion C4/C4: "<</PageSize [649 918] /ImagingBBox null>> setpagedevice"
*PageRegion B4/B4: "<</PageSize [729 1032] /ImagingBBox null>> setpagedevice"
*PageRegion SRA3/SRA3: "<</PageSize [907 1276] /ImagingBBox null>> setpagedevice"
*PageRegion 8K/8K: "<</PageSize [766 1106] /ImagingBBox null>> setpagedevice"
*PageRegion 16K/16K: "<</PageSize [553 766] /ImagingBBox null>> setpagedevice"
*PageRegion 12x18/Tabloid Extra: "<</PageSize [864 1296] /ImagingBBox null>> setpagedevice"
*PageRegion Tabloid/Ledger: "<</PageSize [792 1224] /ImagingBBox null>> setpagedevice"
*CloseUI: *PageRegion
*% These entries provide the imageable areas of the media option keywords
*DefaultImageableArea: Letter
*ImageableArea Letter/Letter: "12.50 12.50 599.50 779.50"
*ImageableArea Legal/Legal: "12.50 12.50 599.50 995.50"
*ImageableArea Executive/Executive: "12.50 11.00 509.50 744.00"
*ImageableArea A4/A4: "12.50 12.50 582.50 829.50"
*ImageableArea A5/A5: "12.50 12.50 407.50 582.50"
*ImageableArea B5-JIS/JIS B5: "12.50 12.50 503.50 715.50"
*ImageableArea US-Folio/US Folio: "12.50 12.50 599.50 923.50"
*ImageableArea Env10/No.10 Env.: "12.50 12.50 284.50 670.50"
*ImageableArea EnvDL/DL Env.: "12.50 12.50 299.50 610.50"
*ImageableArea EnvC5/C5 Env.: "12.50 12.50 446.50 635.50"
*ImageableArea EnvC6/C6 Env.: "12.50 12.50 310.50 446.50"
*ImageableArea B5-ISO/ISO B5: "12.50 12.50 485.50 695.50"
*ImageableArea EnvMonarch/Monarch Env.: "12.50 12.50 266.50 527.50"
*ImageableArea A6/A6: "12.50 12.50 284.50 407.50"
*ImageableArea Oficio_S/Oficio: "12.50 12.50 599.50 959.50"
*ImageableArea Statement/Statement: "12.50 12.50 383.50 599.50"
*ImageableArea Postcard_S/Postcard 4x6: "12.50 12.50 275.50 419.50"
*ImageableArea A3/A3: "12.50 12.50 829.50 1178.50"
*ImageableArea Env9/No.9 Env.: "12.50 12.50 266.50 626.50"
*ImageableArea C4/C4: "12.50 12.50 636.50 905.50"
*ImageableArea B4/B4: "12.50 12.50 716.50 1019.50"
*ImageableArea SRA3/SRA3: "12.50 12.50 894.50 1263.50"
*ImageableArea 8K/8K: "12.50 12.50 753.50 1085.50"
*ImageableArea 16K/16K: "12.50 12.50 540.50 753.50"
*ImageableArea 12x18/Tabloid Extra: "12.50 12.50 851.50 1283.50"
*ImageableArea Tabloid/Ledger: "12.50 12.50 779.50 1211.50"
*?ImageableArea: "
save /cvp { cvi ( ) cvs print ( ) print } bind def
newpath clippath pathbbox
4 -2 roll exch 2 {ceiling cvp} repeat
exch 2 {floor cvp} repeat flush
restore"
*End
*% These provide the physical dimensions of the media, by option keyword.
*DefaultPaperDimension: Letter
*PaperDimension Letter/Letter: "612 792"
*PaperDimension Legal/Legal: "612 1008"
*PaperDimension Executive/Executive: "522 756"
*PaperDimension A4/A4: "595 842"
*PaperDimension A5/A5: "420 595"
*PaperDimension B5-JIS/JIS B5: "516 729"
*PaperDimension US-Folio/US Folio: "612 936"
*PaperDimension Env10/No.10 Env.: "297 684"
*PaperDimension EnvDL/DL Env.: "312 624"
*PaperDimension EnvC5/C5 Env.: "459 649"
*PaperDimension EnvC6/C6 Env.: "323 459"
*PaperDimension B5-ISO/ISO B5: "499 709"
*PaperDimension EnvMonarch/Monarch Env.: "279 540"
*PaperDimension A6/A6: "297 420"
*PaperDimension Oficio_S/Oficio: "612 972"
*PaperDimension Statement/Statement: "396 612"
*PaperDimension Postcard_S/Postcard 4x6: "288 432"
*PaperDimension A3/A3: "842 1191"
*PaperDimension Env9/No.9 Env.: "279 639"
*PaperDimension C4/C4: "649 918"
*PaperDimension B4/B4: "729 1032"
*PaperDimension SRA3/SRA3: "907 1276"
*PaperDimension 8K/8K: "766 1106"
*PaperDimension 16K/16K: "553 766"
*PaperDimension 12x18/Tabloid Extra: "864 1296"
*PaperDimension Tabloid/Ledger: "791 1224"
*RequiresPageRegion All: True
*LandscapeOrientation: Plus90
*% =======================================================================================
*% User Interface Constraints
*% =======================================================================================
*% =======================================================================================
*% Installable Option : OptionalTray - InputSlot
*% =======================================================================================
*UIConstraints: *OptionalTray None *InputSlot Tray3
*UIConstraints: *OptionalTray None *InputSlot Tray3H
*UIConstraints: *OptionalTray None *InputSlot Tray4
*UIConstraints: *OptionalTray Tray3H *InputSlot Tray3
*UIConstraints: *OptionalTray Tray3H *InputSlot Tray4
*UIConstraints: *OptionalTray Tray34 *InputSlot Tray3H
*UIConstraints: *OptionalTray None *JCLFrontCoverSource Tray3
*UIConstraints: *OptionalTray None *JCLFrontCoverSource Tray3H
*UIConstraints: *OptionalTray None *JCLFrontCoverSource Tray4
*UIConstraints: *OptionalTray Tray3H *JCLFrontCoverSource Tray3
*UIConstraints: *OptionalTray Tray3H *JCLFrontCoverSource Tray4
*UIConstraints: *OptionalTray Tray34 *JCLFrontCoverSource Tray3H
*UIConstraints: *OptionalTray None *JCLBackCoverSource Tray3
*UIConstraints: *OptionalTray None *JCLBackCoverSource Tray3H
*UIConstraints: *OptionalTray None *JCLBackCoverSource Tray4
*UIConstraints: *OptionalTray Tray3H *JCLBackCoverSource Tray3
*UIConstraints: *OptionalTray Tray3H *JCLBackCoverSource Tray4
*UIConstraints: *OptionalTray Tray34 *JCLBackCoverSource Tray3H
*UIConstraints: *OptionalTray None *JCLFrontBackCoverSource Tray3
*UIConstraints: *OptionalTray None *JCLFrontBackCoverSource Tray3H
*UIConstraints: *OptionalTray None *JCLFrontBackCoverSource Tray4
*UIConstraints: *OptionalTray Tray3H *JCLFrontBackCoverSource Tray3
*UIConstraints: *OptionalTray Tray3H *JCLFrontBackCoverSource Tray4
*UIConstraints: *OptionalTray Tray34 *JCLFrontBackCoverSource Tray3H
*UIConstraints: *OptionalTray None *JCLSeparatorsSource Tray3
*UIConstraints: *OptionalTray None *JCLSeparatorsSource Tray3H
*UIConstraints: *OptionalTray None *JCLSeparatorsSource Tray4
*UIConstraints: *OptionalTray Tray3H *JCLSeparatorsSource Tray3
*UIConstraints: *OptionalTray Tray3H *JCLSeparatorsSource Tray4
*UIConstraints: *OptionalTray Tray34 *JCLSeparatorsSource Tray3H
*% =======================================================================================
*% Installable Option : Finisher - OptPunch
*% =======================================================================================
*UIConstraints: *Finisher None *OptPunch 2-3Hole
*UIConstraints: *Finisher None *OptPunch 2-4Hole
*UIConstraints: *OptPunch 2-3Hole *Finisher None
*UIConstraints: *OptPunch 2-4Hole *Finisher None
*% =======================================================================================
*% Installable Option : Finisher - StapleLocation
*% =======================================================================================
*UIConstraints: *Finisher None *JCLStapleLocation 1Staple_P
*UIConstraints: *Finisher None *JCLStapleLocation 1Staple_L
*UIConstraints: *Finisher None *JCLStapleLocation 2Staple_P
*UIConstraints: *Finisher None *JCLStapleLocation 2Staple_L
*UIConstraints: *JCLStapleLocation 1Staple_P *Finisher None
*UIConstraints: *JCLStapleLocation 1Staple_L *Finisher None
*UIConstraints: *JCLStapleLocation 2Staple_P *Finisher None
*UIConstraints: *JCLStapleLocation 2Staple_L *Finisher None
*% =======================================================================================
*% Installable Option : Finisher - Outputbin
*% =======================================================================================
*UIConstraints: *Finisher None *JCLFinisherOutBin Bin2
*UIConstraints: *JCLFinisherOutBin Bin2 *Finisher None
*UIConstraints: *Finisher None *JCLFinisherOutBin Bin4
*UIConstraints: *JCLFinisherOutBin Bin4 *Finisher None
*UIConstraints: *Finisher StandardFinisher *JCLFinisherOutBin Bin1
*UIConstraints: *JCLFinisherOutBin Bin1 *Finisher StandardFinisher
*% =======================================================================================
*% Cosmos Mono - optional inner/Outputbin
*% =======================================================================================
*UIConstraints: *OptInnerOutBin False *JCLFinisherOutBin Bin3
*UIConstraints: *JCLFinisherOutBin Bin3 *OptInnerOutBin False
*% =======================================================================================
*% Installable Option : Finisher - Offset
*% =======================================================================================
*UIConstraints: *Finisher None *JCLSortOptions Offset
*UIConstraints: *JCLSortOptions Offset *Finisher None
*% =======================================================================================
*% Installable Option : Finisher - Sort
*% =======================================================================================
*UIConstraints: *Finisher StandardFinisher *JCLSortOptions Rotate
*UIConstraints: *JCLSortOptions Rotate *Finisher StandardFinisher
*% =======================================================================================
*% Cosmos - OptPunch/Punch
*% =======================================================================================
*UIConstraints: *OptPunch None *JCLPunchLocation 2Hole_P
*UIConstraints: *OptPunch None *JCLPunchLocation 2Hole_L
*UIConstraints: *OptPunch None *JCLPunchLocation 3Hole_P
*UIConstraints: *OptPunch None *JCLPunchLocation 3Hole_L
*UIConstraints: *OptPunch None *JCLPunchLocation 4Hole_P
*UIConstraints: *OptPunch None *JCLPunchLocation 4Hole_L
*UIConstraints: *OptPunch None *JCLPunchPosition Left
*UIConstraints: *OptPunch None *JCLPunchPosition Right
*UIConstraints: *OptPunch None *JCLPunchPosition Top
*UIConstraints: *JCLPunchLocation 2Hole_P *OptPunch None
*UIConstraints: *JCLPunchLocation 2Hole_L *OptPunch None
*UIConstraints: *JCLPunchLocation 3Hole_P *OptPunch None
*UIConstraints: *JCLPunchLocation 3Hole_L *OptPunch None
*UIConstraints: *JCLPunchLocation 4Hole_P *OptPunch None
*UIConstraints: *JCLPunchLocation 4Hole_L *OptPunch None
*UIConstraints: *JCLPunchPosition Left *OptPunch None
*UIConstraints: *JCLPunchPosition Right *OptPunch None
*UIConstraints: *JCLPunchPosition Top *OptPunch None
*UIConstraints: *OptPunch 2-3Hole *JCLPunchLocation 4Hole_P
*UIConstraints: *OptPunch 2-3Hole *JCLPunchLocation 4Hole_L
*UIConstraints: *JCLPunchLocation 4Hole_P *OptPunch 2-3Hole
*UIConstraints: *JCLPunchLocation 4Hole_L *OptPunch 2-3Hole
*UIConstraints: *OptPunch 2-4Hole *JCLPunchLocation 3Hole_P
*UIConstraints: *OptPunch 2-4Hole *JCLPunchLocation 3Hole_L
*UIConstraints: *JCLPunchLocation 3Hole_P *OptPunch 2-4Hole
*UIConstraints: *JCLPunchLocation 3Hole_L *OptPunch 2-4Hole
*% =======================================================================================
*% Reverse Duplex - Duplex
*% =======================================================================================
*UIConstraints: *Duplex None *SECReverseDuplex True
*UIConstraints: *SECReverseDuplex True *Duplex None
*% =======================================================================================
*% Duplex - MediaType
*% =======================================================================================
*UIConstraints: *MediaType ExtraHeavyWeight1 *Duplex DuplexNoTumble
*UIConstraints: *MediaType ExtraHeavyWeight1 *Duplex DuplexTumble
*UIConstraints: *MediaType ThickCardStock *Duplex DuplexNoTumble
*UIConstraints: *MediaType ThickCardStock *Duplex DuplexTumble
*UIConstraints: *MediaType Envelope *Duplex DuplexNoTumble
*UIConstraints: *MediaType Envelope *Duplex DuplexTumble
*UIConstraints: *MediaType Transparency *Duplex DuplexNoTumble
*UIConstraints: *MediaType Transparency *Duplex DuplexTumble
*UIConstraints: *MediaType Labels *Duplex DuplexNoTumble
*UIConstraints: *MediaType Labels *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexNoTumble *MediaType ExtraHeavyWeight1
*UIConstraints: *Duplex DuplexTumble *MediaType ExtraHeavyWeight1
*UIConstraints: *Duplex DuplexNoTumble *MediaType ThickCardStock
*UIConstraints: *Duplex DuplexTumble *MediaType ThickCardStock
*UIConstraints: *Duplex DuplexNoTumble *MediaType Envelope
*UIConstraints: *Duplex DuplexTumble *MediaType Envelope
*UIConstraints: *Duplex DuplexNoTumble *MediaType Transparency
*UIConstraints: *Duplex DuplexTumble *MediaType Transparency
*UIConstraints: *Duplex DuplexNoTumble *MediaType Labels
*UIConstraints: *Duplex DuplexTumble *MediaType Labels
*% =======================================================================================
*% Envelope(PageSize) - MediaType
*% =======================================================================================
*UIConstraints: *PageSize EnvMonarch *MediaType None
*UIConstraints: *PageSize EnvMonarch *MediaType Plain
*UIConstraints: *PageSize EnvMonarch *MediaType Thick
*UIConstraints: *PageSize EnvMonarch *MediaType Thin
*UIConstraints: *PageSize EnvMonarch *MediaType Bond
*UIConstraints: *PageSize EnvMonarch *MediaType Archive
*UIConstraints: *PageSize EnvMonarch *MediaType Color
*UIConstraints: *PageSize EnvMonarch *MediaType Labels
*UIConstraints: *PageSize EnvMonarch *MediaType Transparency
*UIConstraints: *PageSize EnvMonarch *MediaType Preprinted
*UIConstraints: *PageSize EnvMonarch *MediaType Recycled
*UIConstraints: *PageSize EnvMonarch *MediaType Cotton
*UIConstraints: *PageSize EnvMonarch *MediaType Punched
*UIConstraints: *PageSize EnvMonarch *MediaType Letterhead
*UIConstraints: *PageSize EnvMonarch *MediaType HeavyWeight
*UIConstraints: *PageSize EnvMonarch *MediaType ExtraHeavyWeight1
*UIConstraints: *PageSize EnvMonarch *MediaType ThinCardStock
*UIConstraints: *PageSize EnvMonarch *MediaType ThickCardStock
*UIConstraints: *MediaType None *PageSize EnvMonarch
*UIConstraints: *MediaType Plain *PageSize EnvMonarch
*UIConstraints: *MediaType Thick *PageSize EnvMonarch
*UIConstraints: *MediaType Thin *PageSize EnvMonarch
*UIConstraints: *MediaType Bond *PageSize EnvMonarch
*UIConstraints: *MediaType Archive *PageSize EnvMonarch
*UIConstraints: *MediaType Color *PageSize EnvMonarch
*UIConstraints: *MediaType Labels *PageSize EnvMonarch
*UIConstraints: *MediaType Transparency *PageSize EnvMonarch
*UIConstraints: *MediaType Preprinted *PageSize EnvMonarch
*UIConstraints: *MediaType Recycled *PageSize EnvMonarch
*UIConstraints: *MediaType Cotton *PageSize EnvMonarch
*UIConstraints: *MediaType Punched *PageSize EnvMonarch
*UIConstraints: *MediaType Letterhead *PageSize EnvMonarch
*UIConstraints: *MediaType HeavyWeight *PageSize EnvMonarch
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageSize EnvMonarch
*UIConstraints: *MediaType ThinCardStock *PageSize EnvMonarch
*UIConstraints: *MediaType ThickCardStock *PageSize EnvMonarch
*UIConstraints: *PageSize EnvDL *MediaType None
*UIConstraints: *PageSize EnvDL *MediaType Plain
*UIConstraints: *PageSize EnvDL *MediaType Thick
*UIConstraints: *PageSize EnvDL *MediaType Thin
*UIConstraints: *PageSize EnvDL *MediaType Bond
*UIConstraints: *PageSize EnvDL *MediaType Archive
*UIConstraints: *PageSize EnvDL *MediaType Color
*UIConstraints: *PageSize EnvDL *MediaType Labels
*UIConstraints: *PageSize EnvDL *MediaType Transparency
*UIConstraints: *PageSize EnvDL *MediaType Preprinted
*UIConstraints: *PageSize EnvDL *MediaType Recycled
*UIConstraints: *PageSize EnvDL *MediaType Cotton
*UIConstraints: *PageSize EnvDL *MediaType Punched
*UIConstraints: *PageSize EnvDL *MediaType Letterhead
*UIConstraints: *PageSize EnvDL *MediaType HeavyWeight
*UIConstraints: *PageSize EnvDL *MediaType ExtraHeavyWeight1
*UIConstraints: *PageSize EnvDL *MediaType ThinCardStock
*UIConstraints: *PageSize EnvDL *MediaType ThickCardStock
*UIConstraints: *MediaType None *PageSize EnvDL
*UIConstraints: *MediaType Plain *PageSize EnvDL
*UIConstraints: *MediaType Thick *PageSize EnvDL
*UIConstraints: *MediaType Thin *PageSize EnvDL
*UIConstraints: *MediaType Bond *PageSize EnvDL
*UIConstraints: *MediaType Archive *PageSize EnvDL
*UIConstraints: *MediaType Color *PageSize EnvDL
*UIConstraints: *MediaType Labels *PageSize EnvDL
*UIConstraints: *MediaType Transparency *PageSize EnvDL
*UIConstraints: *MediaType Preprinted *PageSize EnvDL
*UIConstraints: *MediaType Recycled *PageSize EnvDL
*UIConstraints: *MediaType Cotton *PageSize EnvDL
*UIConstraints: *MediaType Punched *PageSize EnvDL
*UIConstraints: *MediaType Letterhead *PageSize EnvDL
*UIConstraints: *MediaType HeavyWeight *PageSize EnvDL
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageSize EnvDL
*UIConstraints: *MediaType ThinCardStock *PageSize EnvDL
*UIConstraints: *MediaType ThickCardStock *PageSize EnvDL
*UIConstraints: *PageSize EnvC5 *MediaType None
*UIConstraints: *PageSize EnvC5 *MediaType Plain
*UIConstraints: *PageSize EnvC5 *MediaType Thick
*UIConstraints: *PageSize EnvC5 *MediaType Thin
*UIConstraints: *PageSize EnvC5 *MediaType Bond
*UIConstraints: *PageSize EnvC5 *MediaType Archive
*UIConstraints: *PageSize EnvC5 *MediaType Color
*UIConstraints: *PageSize EnvC5 *MediaType Labels
*UIConstraints: *PageSize EnvC5 *MediaType Transparency
*UIConstraints: *PageSize EnvC5 *MediaType Preprinted
*UIConstraints: *PageSize EnvC5 *MediaType Recycled
*UIConstraints: *PageSize EnvC5 *MediaType Cotton
*UIConstraints: *PageSize EnvC5 *MediaType Punched
*UIConstraints: *PageSize EnvC5 *MediaType Letterhead
*UIConstraints: *PageSize EnvC5 *MediaType HeavyWeight
*UIConstraints: *PageSize EnvC5 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageSize EnvC5 *MediaType ThinCardStock
*UIConstraints: *PageSize EnvC5 *MediaType ThickCardStock
*UIConstraints: *MediaType None *PageSize EnvC5
*UIConstraints: *MediaType Plain *PageSize EnvC5
*UIConstraints: *MediaType Thick *PageSize EnvC5
*UIConstraints: *MediaType Thin *PageSize EnvC5
*UIConstraints: *MediaType Bond *PageSize EnvC5
*UIConstraints: *MediaType Archive *PageSize EnvC5
*UIConstraints: *MediaType Color *PageSize EnvC5
*UIConstraints: *MediaType Labels *PageSize EnvC5
*UIConstraints: *MediaType Transparency *PageSize EnvC5
*UIConstraints: *MediaType Preprinted *PageSize EnvC5
*UIConstraints: *MediaType Recycled *PageSize EnvC5
*UIConstraints: *MediaType Cotton *PageSize EnvC5
*UIConstraints: *MediaType Punched *PageSize EnvC5
*UIConstraints: *MediaType Letterhead *PageSize EnvC5
*UIConstraints: *MediaType HeavyWeight *PageSize EnvC5
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageSize EnvC5
*UIConstraints: *MediaType ThinCardStock *PageSize EnvC5
*UIConstraints: *MediaType ThickCardStock *PageSize EnvC5
*UIConstraints: *PageSize EnvC6 *MediaType None
*UIConstraints: *PageSize EnvC6 *MediaType Plain
*UIConstraints: *PageSize EnvC6 *MediaType Thick
*UIConstraints: *PageSize EnvC6 *MediaType Thin
*UIConstraints: *PageSize EnvC6 *MediaType Bond
*UIConstraints: *PageSize EnvC6 *MediaType Archive
*UIConstraints: *PageSize EnvC6 *MediaType Color
*UIConstraints: *PageSize EnvC6 *MediaType Labels
*UIConstraints: *PageSize EnvC6 *MediaType Transparency
*UIConstraints: *PageSize EnvC6 *MediaType Preprinted
*UIConstraints: *PageSize EnvC6 *MediaType Recycled
*UIConstraints: *PageSize EnvC6 *MediaType Cotton
*UIConstraints: *PageSize EnvC6 *MediaType Punched
*UIConstraints: *PageSize EnvC6 *MediaType Letterhead
*UIConstraints: *PageSize EnvC6 *MediaType HeavyWeight
*UIConstraints: *PageSize EnvC6 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageSize EnvC6 *MediaType ThinCardStock
*UIConstraints: *PageSize EnvC6 *MediaType ThickCardStock
*UIConstraints: *MediaType None *PageSize EnvC6
*UIConstraints: *MediaType Plain *PageSize EnvC6
*UIConstraints: *MediaType Thick *PageSize EnvC6
*UIConstraints: *MediaType Thin *PageSize EnvC6
*UIConstraints: *MediaType Bond *PageSize EnvC6
*UIConstraints: *MediaType Archive *PageSize EnvC6
*UIConstraints: *MediaType Color *PageSize EnvC6
*UIConstraints: *MediaType Labels *PageSize EnvC6
*UIConstraints: *MediaType Transparency *PageSize EnvC6
*UIConstraints: *MediaType Preprinted *PageSize EnvC6
*UIConstraints: *MediaType Recycled *PageSize EnvC6
*UIConstraints: *MediaType Cotton *PageSize EnvC6
*UIConstraints: *MediaType Punched *PageSize EnvC6
*UIConstraints: *MediaType Letterhead *PageSize EnvC6
*UIConstraints: *MediaType HeavyWeight *PageSize EnvC6
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageSize EnvC6
*UIConstraints: *MediaType ThinCardStock *PageSize EnvC6
*UIConstraints: *MediaType ThickCardStock *PageSize EnvC6
*UIConstraints: *PageSize Env10 *MediaType None
*UIConstraints: *PageSize Env10 *MediaType Plain
*UIConstraints: *PageSize Env10 *MediaType Thick
*UIConstraints: *PageSize Env10 *MediaType Thin
*UIConstraints: *PageSize Env10 *MediaType Bond
*UIConstraints: *PageSize Env10 *MediaType Archive
*UIConstraints: *PageSize Env10 *MediaType Color
*UIConstraints: *PageSize Env10 *MediaType Labels
*UIConstraints: *PageSize Env10 *MediaType Transparency
*UIConstraints: *PageSize Env10 *MediaType Preprinted
*UIConstraints: *PageSize Env10 *MediaType Recycled
*UIConstraints: *PageSize Env10 *MediaType Cotton
*UIConstraints: *PageSize Env10 *MediaType Punched
*UIConstraints: *PageSize Env10 *MediaType Letterhead
*UIConstraints: *PageSize Env10 *MediaType HeavyWeight
*UIConstraints: *PageSize Env10 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageSize Env10 *MediaType ThinCardStock
*UIConstraints: *PageSize Env10 *MediaType ThickCardStock
*UIConstraints: *MediaType None *PageSize Env10
*UIConstraints: *MediaType Plain *PageSize Env10
*UIConstraints: *MediaType Thick *PageSize Env10
*UIConstraints: *MediaType Thin *PageSize Env10
*UIConstraints: *MediaType Bond *PageSize Env10
*UIConstraints: *MediaType Archive *PageSize Env10
*UIConstraints: *MediaType Color *PageSize Env10
*UIConstraints: *MediaType Labels *PageSize Env10
*UIConstraints: *MediaType Transparency *PageSize Env10
*UIConstraints: *MediaType Preprinted *PageSize Env10
*UIConstraints: *MediaType Recycled *PageSize Env10
*UIConstraints: *MediaType Cotton *PageSize Env10
*UIConstraints: *MediaType Punched *PageSize Env10
*UIConstraints: *MediaType Letterhead *PageSize Env10
*UIConstraints: *MediaType HeavyWeight *PageSize Env10
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageSize Env10
*UIConstraints: *MediaType ThinCardStock *PageSize Env10
*UIConstraints: *MediaType ThickCardStock *PageSize Env10
*UIConstraints: *PageSize Env9 *MediaType None
*UIConstraints: *PageSize Env9 *MediaType Plain
*UIConstraints: *PageSize Env9 *MediaType Thick
*UIConstraints: *PageSize Env9 *MediaType Thin
*UIConstraints: *PageSize Env9 *MediaType Bond
*UIConstraints: *PageSize Env9 *MediaType Archive
*UIConstraints: *PageSize Env9 *MediaType Color
*UIConstraints: *PageSize Env9 *MediaType Labels
*UIConstraints: *PageSize Env9 *MediaType Transparency
*UIConstraints: *PageSize Env9 *MediaType Preprinted
*UIConstraints: *PageSize Env9 *MediaType Recycled
*UIConstraints: *PageSize Env9 *MediaType Cotton
*UIConstraints: *PageSize Env9 *MediaType Punched
*UIConstraints: *PageSize Env9 *MediaType Letterhead
*UIConstraints: *PageSize Env9 *MediaType HeavyWeight
*UIConstraints: *PageSize Env9 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageSize Env9 *MediaType ThinCardStock
*UIConstraints: *PageSize Env9 *MediaType ThickCardStock
*UIConstraints: *MediaType None *PageSize Env9
*UIConstraints: *MediaType Plain *PageSize Env9
*UIConstraints: *MediaType Thick *PageSize Env9
*UIConstraints: *MediaType Thin *PageSize Env9
*UIConstraints: *MediaType Bond *PageSize Env9
*UIConstraints: *MediaType Archive *PageSize Env9
*UIConstraints: *MediaType Color *PageSize Env9
*UIConstraints: *MediaType Labels *PageSize Env9
*UIConstraints: *MediaType Transparency *PageSize Env9
*UIConstraints: *MediaType Preprinted *PageSize Env9
*UIConstraints: *MediaType Recycled *PageSize Env9
*UIConstraints: *MediaType Cotton *PageSize Env9
*UIConstraints: *MediaType Punched *PageSize Env9
*UIConstraints: *MediaType Letterhead *PageSize Env9
*UIConstraints: *MediaType HeavyWeight *PageSize Env9
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageSize Env9
*UIConstraints: *MediaType ThinCardStock *PageSize Env9
*UIConstraints: *MediaType ThickCardStock *PageSize Env9
*UIConstraints: *PageSize C4 *MediaType None
*UIConstraints: *PageSize C4 *MediaType Plain
*UIConstraints: *PageSize C4 *MediaType Thick
*UIConstraints: *PageSize C4 *MediaType Thin
*UIConstraints: *PageSize C4 *MediaType Bond
*UIConstraints: *PageSize C4 *MediaType Archive
*UIConstraints: *PageSize C4 *MediaType Color
*UIConstraints: *PageSize C4 *MediaType Labels
*UIConstraints: *PageSize C4 *MediaType Transparency
*UIConstraints: *PageSize C4 *MediaType Preprinted
*UIConstraints: *PageSize C4 *MediaType Recycled
*UIConstraints: *PageSize C4 *MediaType Cotton
*UIConstraints: *PageSize C4 *MediaType Punched
*UIConstraints: *PageSize C4 *MediaType Letterhead
*UIConstraints: *PageSize C4 *MediaType HeavyWeight
*UIConstraints: *PageSize C4 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageSize C4 *MediaType ThinCardStock
*UIConstraints: *PageSize C4 *MediaType ThickCardStock
*UIConstraints: *MediaType None *PageSize C4
*UIConstraints: *MediaType Plain *PageSize C4
*UIConstraints: *MediaType Thick *PageSize C4
*UIConstraints: *MediaType Thin *PageSize C4
*UIConstraints: *MediaType Bond *PageSize C4
*UIConstraints: *MediaType Archive *PageSize C4
*UIConstraints: *MediaType Color *PageSize C4
*UIConstraints: *MediaType Labels *PageSize C4
*UIConstraints: *MediaType Transparency *PageSize C4
*UIConstraints: *MediaType Preprinted *PageSize C4
*UIConstraints: *MediaType Recycled *PageSize C4
*UIConstraints: *MediaType Cotton *PageSize C4
*UIConstraints: *MediaType Punched *PageSize C4
*UIConstraints: *MediaType Letterhead *PageSize C4
*UIConstraints: *MediaType HeavyWeight *PageSize C4
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageSize C4
*UIConstraints: *MediaType ThinCardStock *PageSize C4
*UIConstraints: *MediaType ThickCardStock *PageSize C4
*% =======================================================================================
*% Envelope(PageRegion) - MediaType
*% =======================================================================================
*UIConstraints: *PageRegion EnvMonarch *MediaType None
*UIConstraints: *PageRegion EnvMonarch *MediaType Plain
*UIConstraints: *PageRegion EnvMonarch *MediaType Thick
*UIConstraints: *PageRegion EnvMonarch *MediaType Thin
*UIConstraints: *PageRegion EnvMonarch *MediaType Bond
*UIConstraints: *PageRegion EnvMonarch *MediaType Archive
*UIConstraints: *PageRegion EnvMonarch *MediaType Color
*UIConstraints: *PageRegion EnvMonarch *MediaType Labels
*UIConstraints: *PageRegion EnvMonarch *MediaType Transparency
*UIConstraints: *PageRegion EnvMonarch *MediaType Preprinted
*UIConstraints: *PageRegion EnvMonarch *MediaType Recycled
*UIConstraints: *PageRegion EnvMonarch *MediaType Cotton
*UIConstraints: *PageRegion EnvMonarch *MediaType Punched
*UIConstraints: *PageRegion EnvMonarch *MediaType Letterhead
*UIConstraints: *PageRegion EnvMonarch *MediaType HeavyWeight
*UIConstraints: *PageRegion EnvMonarch *MediaType ExtraHeavyWeight1
*UIConstraints: *PageRegion EnvMonarch *MediaType ThinCardStock
*UIConstraints: *PageRegion EnvMonarch *MediaType ThickCardStock
*UIConstraints: *MediaType None *PageRegion EnvMonarch
*UIConstraints: *MediaType Plain *PageRegion EnvMonarch
*UIConstraints: *MediaType Thick *PageRegion EnvMonarch
*UIConstraints: *MediaType Thin *PageRegion EnvMonarch
*UIConstraints: *MediaType Bond *PageRegion EnvMonarch
*UIConstraints: *MediaType Archive *PageRegion EnvMonarch
*UIConstraints: *MediaType Color *PageRegion EnvMonarch
*UIConstraints: *MediaType Labels *PageRegion EnvMonarch
*UIConstraints: *MediaType Transparency *PageRegion EnvMonarch
*UIConstraints: *MediaType Preprinted *PageRegion EnvMonarch
*UIConstraints: *MediaType Recycled *PageRegion EnvMonarch
*UIConstraints: *MediaType Cotton *PageRegion EnvMonarch
*UIConstraints: *MediaType Punched *PageRegion EnvMonarch
*UIConstraints: *MediaType Letterhead *PageRegion EnvMonarch
*UIConstraints: *MediaType HeavyWeight *PageRegion EnvMonarch
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageRegion EnvMonarch
*UIConstraints: *MediaType ThinCardStock *PageRegion EnvMonarch
*UIConstraints: *MediaType ThickCardStock *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvDL *MediaType None
*UIConstraints: *PageRegion EnvDL *MediaType Plain
*UIConstraints: *PageRegion EnvDL *MediaType Thick
*UIConstraints: *PageRegion EnvDL *MediaType Thin
*UIConstraints: *PageRegion EnvDL *MediaType Bond
*UIConstraints: *PageRegion EnvDL *MediaType Archive
*UIConstraints: *PageRegion EnvDL *MediaType Color
*UIConstraints: *PageRegion EnvDL *MediaType Labels
*UIConstraints: *PageRegion EnvDL *MediaType Transparency
*UIConstraints: *PageRegion EnvDL *MediaType Preprinted
*UIConstraints: *PageRegion EnvDL *MediaType Recycled
*UIConstraints: *PageRegion EnvDL *MediaType Cotton
*UIConstraints: *PageRegion EnvDL *MediaType Punched
*UIConstraints: *PageRegion EnvDL *MediaType Letterhead
*UIConstraints: *PageRegion EnvDL *MediaType HeavyWeight
*UIConstraints: *PageRegion EnvDL *MediaType ExtraHeavyWeight1
*UIConstraints: *PageRegion EnvDL *MediaType ThinCardStock
*UIConstraints: *PageRegion EnvDL *MediaType ThickCardStock
*UIConstraints: *MediaType None *PageRegion EnvDL
*UIConstraints: *MediaType Plain *PageRegion EnvDL
*UIConstraints: *MediaType Thick *PageRegion EnvDL
*UIConstraints: *MediaType Thin *PageRegion EnvDL
*UIConstraints: *MediaType Bond *PageRegion EnvDL
*UIConstraints: *MediaType Archive *PageRegion EnvDL
*UIConstraints: *MediaType Color *PageRegion EnvDL
*UIConstraints: *MediaType Labels *PageRegion EnvDL
*UIConstraints: *MediaType Transparency *PageRegion EnvDL
*UIConstraints: *MediaType Preprinted *PageRegion EnvDL
*UIConstraints: *MediaType Recycled *PageRegion EnvDL
*UIConstraints: *MediaType Cotton *PageRegion EnvDL
*UIConstraints: *MediaType Punched *PageRegion EnvDL
*UIConstraints: *MediaType Letterhead *PageRegion EnvDL
*UIConstraints: *MediaType HeavyWeight *PageRegion EnvDL
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageRegion EnvDL
*UIConstraints: *MediaType ThinCardStock *PageRegion EnvDL
*UIConstraints: *MediaType ThickCardStock *PageRegion EnvDL
*UIConstraints: *PageRegion EnvC5 *MediaType None
*UIConstraints: *PageRegion EnvC5 *MediaType Plain
*UIConstraints: *PageRegion EnvC5 *MediaType Thick
*UIConstraints: *PageRegion EnvC5 *MediaType Thin
*UIConstraints: *PageRegion EnvC5 *MediaType Bond
*UIConstraints: *PageRegion EnvC5 *MediaType Archive
*UIConstraints: *PageRegion EnvC5 *MediaType Color
*UIConstraints: *PageRegion EnvC5 *MediaType Labels
*UIConstraints: *PageRegion EnvC5 *MediaType Transparency
*UIConstraints: *PageRegion EnvC5 *MediaType Preprinted
*UIConstraints: *PageRegion EnvC5 *MediaType Recycled
*UIConstraints: *PageRegion EnvC5 *MediaType Cotton
*UIConstraints: *PageRegion EnvC5 *MediaType Punched
*UIConstraints: *PageRegion EnvC5 *MediaType Letterhead
*UIConstraints: *PageRegion EnvC5 *MediaType HeavyWeight
*UIConstraints: *PageRegion EnvC5 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageRegion EnvC5 *MediaType ThinCardStock
*UIConstraints: *PageRegion EnvC5 *MediaType ThickCardStock
*UIConstraints: *MediaType None *PageRegion EnvC5
*UIConstraints: *MediaType Plain *PageRegion EnvC5
*UIConstraints: *MediaType Thick *PageRegion EnvC5
*UIConstraints: *MediaType Thin *PageRegion EnvC5
*UIConstraints: *MediaType Bond *PageRegion EnvC5
*UIConstraints: *MediaType Archive *PageRegion EnvC5
*UIConstraints: *MediaType Color *PageRegion EnvC5
*UIConstraints: *MediaType Labels *PageRegion EnvC5
*UIConstraints: *MediaType Transparency *PageRegion EnvC5
*UIConstraints: *MediaType Preprinted *PageRegion EnvC5
*UIConstraints: *MediaType Recycled *PageRegion EnvC5
*UIConstraints: *MediaType Cotton *PageRegion EnvC5
*UIConstraints: *MediaType Punched *PageRegion EnvC5
*UIConstraints: *MediaType Letterhead *PageRegion EnvC5
*UIConstraints: *MediaType HeavyWeight *PageRegion EnvC5
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageRegion EnvC5
*UIConstraints: *MediaType ThinCardStock *PageRegion EnvC5
*UIConstraints: *MediaType ThickCardStock *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC6 *MediaType None
*UIConstraints: *PageRegion EnvC6 *MediaType Plain
*UIConstraints: *PageRegion EnvC6 *MediaType Thick
*UIConstraints: *PageRegion EnvC6 *MediaType Thin
*UIConstraints: *PageRegion EnvC6 *MediaType Bond
*UIConstraints: *PageRegion EnvC6 *MediaType Archive
*UIConstraints: *PageRegion EnvC6 *MediaType Color
*UIConstraints: *PageRegion EnvC6 *MediaType Labels
*UIConstraints: *PageRegion EnvC6 *MediaType Transparency
*UIConstraints: *PageRegion EnvC6 *MediaType Preprinted
*UIConstraints: *PageRegion EnvC6 *MediaType Recycled
*UIConstraints: *PageRegion EnvC6 *MediaType Cotton
*UIConstraints: *PageRegion EnvC6 *MediaType Punched
*UIConstraints: *PageRegion EnvC6 *MediaType Letterhead
*UIConstraints: *PageRegion EnvC6 *MediaType HeavyWeight
*UIConstraints: *PageRegion EnvC6 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageRegion EnvC6 *MediaType ThinCardStock
*UIConstraints: *PageRegion EnvC6 *MediaType ThickCardStock
*UIConstraints: *MediaType None *PageRegion EnvC6
*UIConstraints: *MediaType Plain *PageRegion EnvC6
*UIConstraints: *MediaType Thick *PageRegion EnvC6
*UIConstraints: *MediaType Thin *PageRegion EnvC6
*UIConstraints: *MediaType Bond *PageRegion EnvC6
*UIConstraints: *MediaType Archive *PageRegion EnvC6
*UIConstraints: *MediaType Color *PageRegion EnvC6
*UIConstraints: *MediaType Labels *PageRegion EnvC6
*UIConstraints: *MediaType Transparency *PageRegion EnvC6
*UIConstraints: *MediaType Preprinted *PageRegion EnvC6
*UIConstraints: *MediaType Recycled *PageRegion EnvC6
*UIConstraints: *MediaType Cotton *PageRegion EnvC6
*UIConstraints: *MediaType Punched *PageRegion EnvC6
*UIConstraints: *MediaType Letterhead *PageRegion EnvC6
*UIConstraints: *MediaType HeavyWeight *PageRegion EnvC6
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageRegion EnvC6
*UIConstraints: *MediaType ThinCardStock *PageRegion EnvC6
*UIConstraints: *MediaType ThickCardStock *PageRegion EnvC6
*UIConstraints: *PageRegion Env10 *MediaType None
*UIConstraints: *PageRegion Env10 *MediaType Plain
*UIConstraints: *PageRegion Env10 *MediaType Thick
*UIConstraints: *PageRegion Env10 *MediaType Thin
*UIConstraints: *PageRegion Env10 *MediaType Bond
*UIConstraints: *PageRegion Env10 *MediaType Archive
*UIConstraints: *PageRegion Env10 *MediaType Color
*UIConstraints: *PageRegion Env10 *MediaType Labels
*UIConstraints: *PageRegion Env10 *MediaType Transparency
*UIConstraints: *PageRegion Env10 *MediaType Preprinted
*UIConstraints: *PageRegion Env10 *MediaType Recycled
*UIConstraints: *PageRegion Env10 *MediaType Cotton
*UIConstraints: *PageRegion Env10 *MediaType Punched
*UIConstraints: *PageRegion Env10 *MediaType Letterhead
*UIConstraints: *PageRegion Env10 *MediaType HeavyWeight
*UIConstraints: *PageRegion Env10 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageRegion Env10 *MediaType ThinCardStock
*UIConstraints: *PageRegion Env10 *MediaType ThickCardStock
*UIConstraints: *MediaType None *PageRegion Env10
*UIConstraints: *MediaType Plain *PageRegion Env10
*UIConstraints: *MediaType Thick *PageRegion Env10
*UIConstraints: *MediaType Thin *PageRegion Env10
*UIConstraints: *MediaType Bond *PageRegion Env10
*UIConstraints: *MediaType Archive *PageRegion Env10
*UIConstraints: *MediaType Color *PageRegion Env10
*UIConstraints: *MediaType Labels *PageRegion Env10
*UIConstraints: *MediaType Transparency *PageRegion Env10
*UIConstraints: *MediaType Preprinted *PageRegion Env10
*UIConstraints: *MediaType Recycled *PageRegion Env10
*UIConstraints: *MediaType Cotton *PageRegion Env10
*UIConstraints: *MediaType Punched *PageRegion Env10
*UIConstraints: *MediaType Letterhead *PageRegion Env10
*UIConstraints: *MediaType HeavyWeight *PageRegion Env10
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageRegion Env10
*UIConstraints: *MediaType ThinCardStock *PageRegion Env10
*UIConstraints: *MediaType ThickCardStock *PageRegion Env10
*UIConstraints: *PageRegion Env9 *MediaType None
*UIConstraints: *PageRegion Env9 *MediaType Plain
*UIConstraints: *PageRegion Env9 *MediaType Thick
*UIConstraints: *PageRegion Env9 *MediaType Thin
*UIConstraints: *PageRegion Env9 *MediaType Bond
*UIConstraints: *PageRegion Env9 *MediaType Archive
*UIConstraints: *PageRegion Env9 *MediaType Color
*UIConstraints: *PageRegion Env9 *MediaType Labels
*UIConstraints: *PageRegion Env9 *MediaType Transparency
*UIConstraints: *PageRegion Env9 *MediaType Preprinted
*UIConstraints: *PageRegion Env9 *MediaType Recycled
*UIConstraints: *PageRegion Env9 *MediaType Cotton
*UIConstraints: *PageRegion Env9 *MediaType Punched
*UIConstraints: *PageRegion Env9 *MediaType Letterhead
*UIConstraints: *PageRegion Env9 *MediaType HeavyWeight
*UIConstraints: *PageRegion Env9 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageRegion Env9 *MediaType ThinCardStock
*UIConstraints: *PageRegion Env9 *MediaType ThickCardStock
*UIConstraints: *MediaType None *PageRegion Env9
*UIConstraints: *MediaType Plain *PageRegion Env9
*UIConstraints: *MediaType Thick *PageRegion Env9
*UIConstraints: *MediaType Thin *PageRegion Env9
*UIConstraints: *MediaType Bond *PageRegion Env9
*UIConstraints: *MediaType Archive *PageRegion Env9
*UIConstraints: *MediaType Color *PageRegion Env9
*UIConstraints: *MediaType Labels *PageRegion Env9
*UIConstraints: *MediaType Transparency *PageRegion Env9
*UIConstraints: *MediaType Preprinted *PageRegion Env9
*UIConstraints: *MediaType Recycled *PageRegion Env9
*UIConstraints: *MediaType Cotton *PageRegion Env9
*UIConstraints: *MediaType Punched *PageRegion Env9
*UIConstraints: *MediaType Letterhead *PageRegion Env9
*UIConstraints: *MediaType HeavyWeight *PageRegion Env9
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageRegion Env9
*UIConstraints: *MediaType ThinCardStock *PageRegion Env9
*UIConstraints: *MediaType ThickCardStock *PageRegion Env9
*UIConstraints: *PageRegion C4 *MediaType None
*UIConstraints: *PageRegion C4 *MediaType Plain
*UIConstraints: *PageRegion C4 *MediaType Thick
*UIConstraints: *PageRegion C4 *MediaType Thin
*UIConstraints: *PageRegion C4 *MediaType Bond
*UIConstraints: *PageRegion C4 *MediaType Archive
*UIConstraints: *PageRegion C4 *MediaType Color
*UIConstraints: *PageRegion C4 *MediaType Labels
*UIConstraints: *PageRegion C4 *MediaType Transparency
*UIConstraints: *PageRegion C4 *MediaType Preprinted
*UIConstraints: *PageRegion C4 *MediaType Recycled
*UIConstraints: *PageRegion C4 *MediaType Cotton
*UIConstraints: *PageRegion C4 *MediaType Punched
*UIConstraints: *PageRegion C4 *MediaType Letterhead
*UIConstraints: *PageRegion C4 *MediaType HeavyWeight
*UIConstraints: *PageRegion C4 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageRegion C4 *MediaType ThinCardStock
*UIConstraints: *PageRegion C4 *MediaType ThickCardStock
*UIConstraints: *MediaType None *PageRegion C4
*UIConstraints: *MediaType Plain *PageRegion C4
*UIConstraints: *MediaType Thick *PageRegion C4
*UIConstraints: *MediaType Thin *PageRegion C4
*UIConstraints: *MediaType Bond *PageRegion C4
*UIConstraints: *MediaType Archive *PageRegion C4
*UIConstraints: *MediaType Color *PageRegion C4
*UIConstraints: *MediaType Labels *PageRegion C4
*UIConstraints: *MediaType Transparency *PageRegion C4
*UIConstraints: *MediaType Preprinted *PageRegion C4
*UIConstraints: *MediaType Recycled *PageRegion C4
*UIConstraints: *MediaType Cotton *PageRegion C4
*UIConstraints: *MediaType Punched *PageRegion C4
*UIConstraints: *MediaType Letterhead *PageRegion C4
*UIConstraints: *MediaType HeavyWeight *PageRegion C4
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageRegion C4
*UIConstraints: *MediaType ThinCardStock *PageRegion C4
*UIConstraints: *MediaType ThickCardStock *PageRegion C4
*% =======================================================================================
*% PageSize Postcard_S - MediaType
*% =======================================================================================
*UIConstraints: *PageSize Postcard_S *MediaType None
*UIConstraints: *PageSize Postcard_S *MediaType Plain
*UIConstraints: *PageSize Postcard_S *MediaType Thick
*UIConstraints: *PageSize Postcard_S *MediaType Thin
*UIConstraints: *PageSize Postcard_S *MediaType Cotton
*UIConstraints: *PageSize Postcard_S *MediaType Color
*UIConstraints: *PageSize Postcard_S *MediaType Preprinted
*UIConstraints: *PageSize Postcard_S *MediaType Recycled
*UIConstraints: *PageSize Postcard_S *MediaType Bond
*UIConstraints: *PageSize Postcard_S *MediaType Archive
*UIConstraints: *PageSize Postcard_S *MediaType Letterhead
*UIConstraints: *PageSize Postcard_S *MediaType Punched
*UIConstraints: *PageSize Postcard_S *MediaType ThinCardStock
*UIConstraints: *PageSize Postcard_S *MediaType ThickCardStock
*UIConstraints: *PageSize Postcard_S *MediaType Envelope
*UIConstraints: *PageSize Postcard_S *MediaType Transparency
*UIConstraints: *PageSize Postcard_S *MediaType Labels
*UIConstraints: *MediaType None *PageSize Postcard_S
*UIConstraints: *MediaType Plain *PageSize Postcard_S
*UIConstraints: *MediaType Thick *PageSize Postcard_S
*UIConstraints: *MediaType Thin *PageSize Postcard_S
*UIConstraints: *MediaType Cotton *PageSize Postcard_S
*UIConstraints: *MediaType Color *PageSize Postcard_S
*UIConstraints: *MediaType Preprinted *PageSize Postcard_S
*UIConstraints: *MediaType Recycled *PageSize Postcard_S
*UIConstraints: *MediaType Bond *PageSize Postcard_S
*UIConstraints: *MediaType Archive *PageSize Postcard_S
*UIConstraints: *MediaType Letterhead *PageSize Postcard_S
*UIConstraints: *MediaType Punched *PageSize Postcard_S
*UIConstraints: *MediaType ThinCardStock *PageSize Postcard_S
*UIConstraints: *MediaType ThickCardStock *PageSize Postcard_S
*UIConstraints: *MediaType Envelope *PageSize Postcard_S
*UIConstraints: *MediaType Transparency *PageSize Postcard_S
*UIConstraints: *MediaType Labels *PageSize Postcard_S
*% =======================================================================================
*% PageRegion Postcard_S - MediaType
*% =======================================================================================
*UIConstraints: *PageRegion Postcard_S *MediaType None
*UIConstraints: *PageRegion Postcard_S *MediaType Plain
*UIConstraints: *PageRegion Postcard_S *MediaType Thick
*UIConstraints: *PageRegion Postcard_S *MediaType Thin
*UIConstraints: *PageRegion Postcard_S *MediaType Cotton
*UIConstraints: *PageRegion Postcard_S *MediaType Color
*UIConstraints: *PageRegion Postcard_S *MediaType Preprinted
*UIConstraints: *PageRegion Postcard_S *MediaType Recycled
*UIConstraints: *PageRegion Postcard_S *MediaType Bond
*UIConstraints: *PageRegion Postcard_S *MediaType Archive
*UIConstraints: *PageRegion Postcard_S *MediaType Letterhead
*UIConstraints: *PageRegion Postcard_S *MediaType Punched
*UIConstraints: *PageRegion Postcard_S *MediaType ThinCardStock
*UIConstraints: *PageRegion Postcard_S *MediaType ThickCardStock
*UIConstraints: *PageRegion Postcard_S *MediaType Envelope
*UIConstraints: *PageRegion Postcard_S *MediaType Transparency
*UIConstraints: *PageRegion Postcard_S *MediaType Labels
*UIConstraints: *MediaType None *PageRegion Postcard_S
*UIConstraints: *MediaType Plain *PageRegion Postcard_S
*UIConstraints: *MediaType Thick *PageRegion Postcard_S
*UIConstraints: *MediaType Thin *PageRegion Postcard_S
*UIConstraints: *MediaType Cotton *PageRegion Postcard_S
*UIConstraints: *MediaType Color *PageRegion Postcard_S
*UIConstraints: *MediaType Preprinted *PageRegion Postcard_S
*UIConstraints: *MediaType Recycled *PageRegion Postcard_S
*UIConstraints: *MediaType Bond *PageRegion Postcard_S
*UIConstraints: *MediaType Archive *PageRegion Postcard_S
*UIConstraints: *MediaType Letterhead *PageRegion Postcard_S
*UIConstraints: *MediaType Punched *PageRegion Postcard_S
*UIConstraints: *MediaType ThinCardStock *PageRegion Postcard_S
*UIConstraints: *MediaType ThickCardStock *PageRegion Postcard_S
*UIConstraints: *MediaType Envelope *PageRegion Postcard_S
*UIConstraints: *MediaType Transparency *PageRegion Postcard_S
*UIConstraints: *MediaType Labels *PageRegion Postcard_S
*% =======================================================================================
*% PageSize - Envelope(MediaType)
*% =======================================================================================
*%UIConstraints: *PageSize Letter *MediaType Envelope
*UIConstraints: *PageSize Legal *MediaType Envelope
*UIConstraints: *PageSize Executive *MediaType Envelope
*%UIConstraints: *PageSize A4 *MediaType Envelope
*%UIConstraints: *PageSize A5 *MediaType Envelope
*%UIConstraints: *PageSize B5-JIS *MediaType Envelope
*UIConstraints: *PageSize US-Folio *MediaType Envelope
*%UIConstraints: *PageSize B5-ISO *MediaType Envelope
*%UIConstraints: *PageSize A6 *MediaType Envelope
*UIConstraints: *PageSize Oficio_S *MediaType Envelope
*%UIConstraints: *PageSize Statement *MediaType Envelope
*UIConstraints: *PageSize Postcard_S *MediaType Envelope
*UIConstraints: *PageSize A3 *MediaType Envelope
*UIConstraints: *PageSize B4 *MediaType Envelope
*UIConstraints: *PageSize SRA3 *MediaType Envelope
*UIConstraints: *PageSize 8K *MediaType Envelope
*UIConstraints: *PageSize 16K *MediaType Envelope
*UIConstraints: *PageSize 12x18 *MediaType Envelope
*UIConstraints: *PageSize Tabloid *MediaType Envelope
*%UIConstraints: *MediaType Envelope *PageSize Letter
*UIConstraints: *MediaType Envelope *PageSize Legal
*UIConstraints: *MediaType Envelope *PageSize Executive
*%UIConstraints: *MediaType Envelope *PageSize A4
*%UIConstraints: *MediaType Envelope *PageSize A5
*%UIConstraints: *MediaType Envelope *PageSize B5-JIS
*UIConstraints: *MediaType Envelope *PageSize US-Folio
*%UIConstraints: *MediaType Envelope *PageSize B5-ISO
*%UIConstraints: *MediaType Envelope *PageSize A6
*UIConstraints: *MediaType Envelope *PageSize Oficio_S
*%UIConstraints: *MediaType Envelope *PageSize Statement
*UIConstraints: *MediaType Envelope *PageSize Postcard_S
*UIConstraints: *MediaType Envelope *PageSize A3
*UIConstraints: *MediaType Envelope *PageSize B4
*UIConstraints: *MediaType Envelope *PageSize SRA3
*UIConstraints: *MediaType Envelope *PageSize 8K
*UIConstraints: *MediaType Envelope *PageSize 16K
*UIConstraints: *MediaType Envelope *PageSize 12x18
*UIConstraints: *MediaType Envelope *PageSize Tabloid
*% =======================================================================================
*% PageRegion - Envelope(MediaType)
*% =======================================================================================
*%UIConstraints: *PageRegion Letter *MediaType Envelope
*UIConstraints: *PageRegion Legal *MediaType Envelope
*UIConstraints: *PageRegion Executive *MediaType Envelope
*%UIConstraints: *PageRegion A4 *MediaType Envelope
*%UIConstraints: *PageRegion A5 *MediaType Envelope
*%UIConstraints: *PageRegion B5-JIS *MediaType Envelope
*UIConstraints: *PageRegion US-Folio *MediaType Envelope
*%UIConstraints: *PageRegion B5-ISO *MediaType Envelope
*%UIConstraints: *PageRegion A6 *MediaType Envelope
*UIConstraints: *PageRegion Oficio_S *MediaType Envelope
*%UIConstraints: *PageRegion Statement *MediaType Envelope
*UIConstraints: *PageRegion Postcard_S *MediaType Envelope
*UIConstraints: *PageRegion A3 *MediaType Envelope
*UIConstraints: *PageRegion B4 *MediaType Envelope
*UIConstraints: *PageRegion SRA3 *MediaType Envelope
*UIConstraints: *PageRegion 8K *MediaType Envelope
*UIConstraints: *PageRegion 16K *MediaType Envelope
*UIConstraints: *PageRegion 12x18 *MediaType Envelope
*UIConstraints: *PageRegion Tabloid *MediaType Envelope
*%UIConstraints: *MediaType Envelope *PageRegion Letter
*UIConstraints: *MediaType Envelope *PageRegion Legal
*UIConstraints: *MediaType Envelope *PageRegion Executive
*%UIConstraints: *MediaType Envelope *PageRegion A4
*%UIConstraints: *MediaType Envelope *PageRegion A5
*%UIConstraints: *MediaType Envelope *PageRegion B5-JIS
*UIConstraints: *MediaType Envelope *PageRegion US-Folio
*%UIConstraints: *MediaType Envelope *PageRegion B5-ISO
*%UIConstraints: *MediaType Envelope *PageRegion A6
*UIConstraints: *MediaType Envelope *PageRegion Oficio_S
*%UIConstraints: *MediaType Envelope *PageRegion Statement
*UIConstraints: *MediaType Envelope *PageRegion Postcard_S
*UIConstraints: *MediaType Envelope *PageRegion A3
*UIConstraints: *MediaType Envelope *PageRegion B4
*UIConstraints: *MediaType Envelope *PageRegion SRA3
*UIConstraints: *MediaType Envelope *PageRegion 8K
*UIConstraints: *MediaType Envelope *PageRegion 16K
*UIConstraints: *MediaType Envelope *PageRegion 12x18
*UIConstraints: *MediaType Envelope *PageRegion Tabloid
*% =======================================================================================
*% PageSize - Transparency(MediaType)
*% =======================================================================================
*UIConstraints: *PageSize Legal *MediaType Transparency
*UIConstraints: *PageSize Executive *MediaType Transparency
*UIConstraints: *PageSize Statement *MediaType Transparency
*UIConstraints: *PageSize A3 *MediaType Transparency
*UIConstraints: *PageSize A5 *MediaType Transparency
*UIConstraints: *PageSize B4 *MediaType Transparency
*UIConstraints: *PageSize B5-JIS *MediaType Transparency
*UIConstraints: *PageSize A6 *MediaType Transparency
*UIConstraints: *PageSize B5-ISO *MediaType Transparency
*UIConstraints: *PageSize US-Folio *MediaType Transparency
*UIConstraints: *PageSize Oficio_S *MediaType Transparency
*UIConstraints: *PageSize 12x18 *MediaType Transparency
*UIConstraints: *PageSize 8K *MediaType Transparency
*UIConstraints: *PageSize 16K *MediaType Transparency
*UIConstraints: *PageSize Tabloid *MediaType Transparency
*UIConstraints: *MediaType Transparency *PageSize Legal
*UIConstraints: *MediaType Transparency *PageSize Executive
*UIConstraints: *MediaType Transparency *PageSize Statement
*UIConstraints: *MediaType Transparency *PageSize A3
*UIConstraints: *MediaType Transparency *PageSize A5
*UIConstraints: *MediaType Transparency *PageSize B4
*UIConstraints: *MediaType Transparency *PageSize B5-JIS
*UIConstraints: *MediaType Transparency *PageSize A6
*UIConstraints: *MediaType Transparency *PageSize B5-ISO
*UIConstraints: *MediaType Transparency *PageSize US-Folio
*UIConstraints: *MediaType Transparency *PageSize Oficio_S
*UIConstraints: *MediaType Transparency *PageSize 12x18
*UIConstraints: *MediaType Transparency *PageSize 8K
*UIConstraints: *MediaType Transparency *PageSize 16K
*UIConstraints: *MediaType Transparency *PageSize Tabloid
*% =======================================================================================
*% PageRegion - Transparency(MediaType)
*% =======================================================================================
*UIConstraints: *PageRegion Legal *MediaType Transparency
*UIConstraints: *PageRegion Executive *MediaType Transparency
*UIConstraints: *PageRegion Statement *MediaType Transparency
*UIConstraints: *PageRegion A3 *MediaType Transparency
*UIConstraints: *PageRegion A5 *MediaType Transparency
*UIConstraints: *PageRegion B4 *MediaType Transparency
*UIConstraints: *PageRegion B5-JIS *MediaType Transparency
*UIConstraints: *PageRegion A6 *MediaType Transparency
*UIConstraints: *PageRegion B5-ISO *MediaType Transparency
*UIConstraints: *PageRegion US-Folio *MediaType Transparency
*UIConstraints: *PageRegion Oficio_S *MediaType Transparency
*UIConstraints: *PageRegion 12x18 *MediaType Transparency
*UIConstraints: *PageRegion SRA3 *MediaType Transparency
*UIConstraints: *PageRegion 8K *MediaType Transparency
*UIConstraints: *PageRegion 16K *MediaType Transparency
*UIConstraints: *PageRegion Tabloid *MediaType Transparency
*UIConstraints: *MediaType Transparency *PageRegion Legal
*UIConstraints: *MediaType Transparency *PageRegion Executive
*UIConstraints: *MediaType Transparency *PageRegion Statement
*UIConstraints: *MediaType Transparency *PageRegion A3
*UIConstraints: *MediaType Transparency *PageRegion A5
*UIConstraints: *MediaType Transparency *PageRegion B4
*UIConstraints: *MediaType Transparency *PageRegion B5-JIS
*UIConstraints: *MediaType Transparency *PageRegion A6
*UIConstraints: *MediaType Transparency *PageRegion B5-ISO
*UIConstraints: *MediaType Transparency *PageRegion US-Folio
*UIConstraints: *MediaType Transparency *PageRegion Oficio_S
*UIConstraints: *MediaType Transparency *PageRegion 12x18
*UIConstraints: *MediaType Transparency *PageRegion SRA3
*UIConstraints: *MediaType Transparency *PageRegion 8K
*UIConstraints: *MediaType Transparency *PageRegion 16K
*UIConstraints: *MediaType Transparency *PageRegion Tabloid
*% =======================================================================================
*% PageSize - Labels(MediaType)
*% =======================================================================================
*UIConstraints: *PageSize Legal *MediaType Labels
*UIConstraints: *PageSize Executive *MediaType Labels
*UIConstraints: *PageSize Statement *MediaType Labels
*UIConstraints: *PageSize A3 *MediaType Labels
*UIConstraints: *PageSize A5 *MediaType Labels
*UIConstraints: *PageSize B4 *MediaType Labels
*UIConstraints: *PageSize B5-JIS *MediaType Labels
*UIConstraints: *PageSize A6 *MediaType Labels
*UIConstraints: *PageSize B5-ISO *MediaType Labels
*UIConstraints: *PageSize US-Folio *MediaType Labels
*UIConstraints: *PageSize Oficio_S *MediaType Labels
*UIConstraints: *PageSize 12x18 *MediaType Labels
*UIConstraints: *PageSize SRA3 *MediaType Labels
*UIConstraints: *PageSize 8K *MediaType Labels
*UIConstraints: *PageSize 16K *MediaType Labels
*UIConstraints: *PageSize Tabloid *MediaType Labels
*UIConstraints: *MediaType Labels *PageSize Legal
*UIConstraints: *MediaType Labels *PageSize Executive
*UIConstraints: *MediaType Labels *PageSize Statement
*UIConstraints: *MediaType Labels *PageSize A3
*UIConstraints: *MediaType Labels *PageSize A5
*UIConstraints: *MediaType Labels *PageSize B4
*UIConstraints: *MediaType Labels *PageSize B5-JIS
*UIConstraints: *MediaType Labels *PageSize A6
*UIConstraints: *MediaType Labels *PageSize B5-ISO
*UIConstraints: *MediaType Labels *PageSize US-Folio
*UIConstraints: *MediaType Labels *PageSize Oficio_S
*UIConstraints: *MediaType Labels *PageSize 12x18
*UIConstraints: *MediaType Labels *PageSize SRA3
*UIConstraints: *MediaType Labels *PageSize 8K
*UIConstraints: *MediaType Labels *PageSize 16K
*UIConstraints: *MediaType Labels *PageSize Tabloid
*% =======================================================================================
*% PageRegion - Labels(MediaType)
*% =======================================================================================
*UIConstraints: *PageRegion Legal *MediaType Labels
*UIConstraints: *PageRegion Executive *MediaType Labels
*UIConstraints: *PageRegion Statement *MediaType Labels
*UIConstraints: *PageRegion A3 *MediaType Labels
*UIConstraints: *PageRegion A5 *MediaType Labels
*UIConstraints: *PageRegion B4 *MediaType Labels
*UIConstraints: *PageRegion B5-JIS *MediaType Labels
*UIConstraints: *PageRegion A6 *MediaType Labels
*UIConstraints: *PageRegion B5-ISO *MediaType Labels
*UIConstraints: *PageRegion US-Folio *MediaType Labels
*UIConstraints: *PageRegion Oficio_S *MediaType Labels
*UIConstraints: *PageRegion 12x18 *MediaType Labels
*UIConstraints: *PageRegion 8K *MediaType Labels
*UIConstraints: *PageRegion 16K *MediaType Labels
*UIConstraints: *PageRegion Tabloid *MediaType Labels
*UIConstraints: *MediaType Labels *PageRegion Legal
*UIConstraints: *MediaType Labels *PageRegion Executive
*UIConstraints: *MediaType Labels *PageRegion Statement
*UIConstraints: *MediaType Labels *PageRegion A3
*UIConstraints: *MediaType Labels *PageRegion A5
*UIConstraints: *MediaType Labels *PageRegion B4
*UIConstraints: *MediaType Labels *PageRegion B5-JIS
*UIConstraints: *MediaType Labels *PageRegion A6
*UIConstraints: *MediaType Labels *PageRegion B5-ISO
*UIConstraints: *MediaType Labels *PageRegion US-Folio
*UIConstraints: *MediaType Labels *PageRegion Oficio_S
*UIConstraints: *MediaType Labels *PageRegion 12x18
*UIConstraints: *MediaType Labels *PageRegion SRA3
*UIConstraints: *MediaType Labels *PageRegion 8K
*UIConstraints: *MediaType Labels *PageRegion 16K
*UIConstraints: *MediaType Labels *PageRegion Tabloid
*% =======================================================================================
*% PageSize - Duplex
*% =======================================================================================
*UIConstraints: *PageSize A6 *Duplex DuplexNoTumble
*UIConstraints: *PageSize A6 *Duplex DuplexTumble
*UIConstraints: *PageSize SRA3 *Duplex DuplexNoTumble
*UIConstraints: *PageSize SRA3 *Duplex DuplexTumble
*UIConstraints: *PageSize EnvMonarch *Duplex DuplexNoTumble
*UIConstraints: *PageSize EnvMonarch *Duplex DuplexTumble
*UIConstraints: *PageSize EnvDL *Duplex DuplexNoTumble
*UIConstraints: *PageSize EnvDL *Duplex DuplexTumble
*UIConstraints: *PageSize EnvC5 *Duplex DuplexNoTumble
*UIConstraints: *PageSize EnvC5 *Duplex DuplexTumble
*UIConstraints: *PageSize EnvC6 *Duplex DuplexNoTumble
*UIConstraints: *PageSize EnvC6 *Duplex DuplexTumble
*UIConstraints: *PageSize Env10 *Duplex DuplexNoTumble
*UIConstraints: *PageSize Env10 *Duplex DuplexTumble
*UIConstraints: *PageSize Env9 *Duplex DuplexNoTumble
*UIConstraints: *PageSize Env9 *Duplex DuplexTumble
*UIConstraints: *PageSize Postcard_S *Duplex DuplexNoTumble
*UIConstraints: *PageSize Postcard_S *Duplex DuplexTumble
*UIConstraints: *PageSize C4 *Duplex DuplexNoTumble
*UIConstraints: *PageSize C4 *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexNoTumble *PageSize A6
*UIConstraints: *Duplex DuplexTumble *PageSize A6
*UIConstraints: *Duplex DuplexNoTumble *PageSize SRA3
*UIConstraints: *Duplex DuplexTumble *PageSize SRA3
*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvMonarch
*UIConstraints: *Duplex DuplexTumble *PageSize EnvMonarch
*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvDL
*UIConstraints: *Duplex DuplexTumble *PageSize EnvDL
*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvC5
*UIConstraints: *Duplex DuplexTumble *PageSize EnvC5
*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvC6
*UIConstraints: *Duplex DuplexTumble *PageSize EnvC6
*UIConstraints: *Duplex DuplexNoTumble *PageSize Env10
*UIConstraints: *Duplex DuplexTumble *PageSize Env10
*UIConstraints: *Duplex DuplexNoTumble *PageSize Env9
*UIConstraints: *Duplex DuplexTumble *PageSize Env9
*UIConstraints: *Duplex DuplexNoTumble *PageSize Postcard_S
*UIConstraints: *Duplex DuplexTumble *PageSize Postcard_S
*UIConstraints: *Duplex DuplexNoTumble *PageSize C4
*UIConstraints: *Duplex DuplexTumble *PageSize C4
*% =======================================================================================
*% PageRegion - Duplex
*% =======================================================================================
*UIConstraints: *PageRegion A6 *Duplex DuplexNoTumble
*UIConstraints: *PageRegion A6 *Duplex DuplexTumble
*UIConstraints: *PageRegion SRA3 *Duplex DuplexNoTumble
*UIConstraints: *PageRegion SRA3 *Duplex DuplexTumble
*UIConstraints: *PageRegion EnvMonarch *Duplex DuplexNoTumble
*UIConstraints: *PageRegion EnvMonarch *Duplex DuplexTumble
*UIConstraints: *PageRegion EnvDL *Duplex DuplexNoTumble
*UIConstraints: *PageRegion EnvDL *Duplex DuplexTumble
*UIConstraints: *PageRegion EnvC5 *Duplex DuplexNoTumble
*UIConstraints: *PageRegion EnvC5 *Duplex DuplexTumble
*UIConstraints: *PageRegion EnvC6 *Duplex DuplexNoTumble
*UIConstraints: *PageRegion EnvC6 *Duplex DuplexTumble
*UIConstraints: *PageRegion Env10 *Duplex DuplexNoTumble
*UIConstraints: *PageRegion Env10 *Duplex DuplexTumble
*UIConstraints: *PageRegion Env9 *Duplex DuplexNoTumble
*UIConstraints: *PageRegion Env9 *Duplex DuplexTumble
*UIConstraints: *PageRegion Postcard_S *Duplex DuplexNoTumble
*UIConstraints: *PageRegion Postcard_S *Duplex DuplexTumble
*UIConstraints: *PageRegion C4 *Duplex DuplexNoTumble
*UIConstraints: *PageRegion C4 *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexNoTumble *PageRegion A6
*UIConstraints: *Duplex DuplexTumble *PageRegion A6
*UIConstraints: *Duplex DuplexNoTumble *PageRegion SRA3
*UIConstraints: *Duplex DuplexTumble *PageRegion SRA3
*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvMonarch
*UIConstraints: *Duplex DuplexTumble *PageRegion EnvMonarch
*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvDL
*UIConstraints: *Duplex DuplexTumble *PageRegion EnvDL
*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvC5
*UIConstraints: *Duplex DuplexTumble *PageRegion EnvC5
*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvC6
*UIConstraints: *Duplex DuplexTumble *PageRegion EnvC6
*UIConstraints: *Duplex DuplexNoTumble *PageRegion Env10
*UIConstraints: *Duplex DuplexTumble *PageRegion Env10
*UIConstraints: *Duplex DuplexNoTumble *PageRegion Env9
*UIConstraints: *Duplex DuplexTumble *PageRegion Env9
*UIConstraints: *Duplex DuplexNoTumble *PageRegion Postcard_S
*UIConstraints: *Duplex DuplexTumble *PageRegion Postcard_S
*UIConstraints: *Duplex DuplexNoTumble *PageRegion C4
*UIConstraints: *Duplex DuplexTumble *PageRegion C4
*% =======================================================================================
*% MediaType: InputSlot(Middle) - MediaType
*% =======================================================================================
*UIConstraints: *InputSlot Middle *MediaType Envelope
*UIConstraints: *MediaType Envelope *InputSlot Middle
*% =======================================================================================
*% MediaType: InputSlot(Lower) - MediaType
*% =======================================================================================
*UIConstraints: *InputSlot Lower *MediaType Envelope
*UIConstraints: *MediaType Envelope *InputSlot Lower
*% =======================================================================================
*% MediaType: InputSlot(Tray3) - MediaType
*% =======================================================================================
*UIConstraints: *InputSlot Tray3 *MediaType Envelope
*UIConstraints: *MediaType Envelope *InputSlot Tray3
*% =======================================================================================
*% MediaType: InputSlot(Tray3H) - MediaType
*% =======================================================================================
*UIConstraints: *InputSlot Tray3H *MediaType Envelope
*UIConstraints: *InputSlot Tray3H *MediaType Transparency
*UIConstraints: *InputSlot Tray3H *MediaType Labels
*UIConstraints: *InputSlot Tray3H *MediaType Archive
*UIConstraints: *InputSlot Tray3H *MediaType Letterhead
*UIConstraints: *MediaType Envelope *InputSlot Tray3H
*UIConstraints: *MediaType Transparency *InputSlot Tray3H
*UIConstraints: *MediaType Labels *InputSlot Tray3H
*UIConstraints: *MediaType Archive *InputSlot Tray3H
*UIConstraints: *MediaType Letterhead *InputSlot Tray3H
*% =======================================================================================
*% MediaType: InputSlot(Tray4) - MediaType
*% =======================================================================================
*UIConstraints: *InputSlot Tray4 *MediaType Envelope
*UIConstraints: *MediaType Envelope *InputSlot Tray4
*% =======================================================================================
*% MediaType: InputSlot(Tray3H) - PageSize
*% =======================================================================================
*UIConstraints: *InputSlot Tray3H *PageSize Legal
*UIConstraints: *InputSlot Tray3H *PageSize Executive
*UIConstraints: *InputSlot Tray3H *PageSize A5
*UIConstraints: *InputSlot Tray3H *PageSize B5-JIS
*UIConstraints: *InputSlot Tray3H *PageSize US-Folio
*UIConstraints: *InputSlot Tray3H *PageSize Env10
*UIConstraints: *InputSlot Tray3H *PageSize EnvDL
*UIConstraints: *InputSlot Tray3H *PageSize EnvC5
*UIConstraints: *InputSlot Tray3H *PageSize EnvC6
*UIConstraints: *InputSlot Tray3H *PageSize B5-ISO
*UIConstraints: *InputSlot Tray3H *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray3H *PageSize A6
*UIConstraints: *InputSlot Tray3H *PageSize Oficio_S
*UIConstraints: *InputSlot Tray3H *PageSize Statement
*UIConstraints: *InputSlot Tray3H *PageSize Postcard_S
*UIConstraints: *InputSlot Tray3H *PageSize A3
*UIConstraints: *InputSlot Tray3H *PageSize Env9
*UIConstraints: *InputSlot Tray3H *PageSize C4
*UIConstraints: *InputSlot Tray3H *PageSize B4
*UIConstraints: *InputSlot Tray3H *PageSize SRA3
*UIConstraints: *InputSlot Tray3H *PageSize 8K
*UIConstraints: *InputSlot Tray3H *PageSize 16K
*UIConstraints: *InputSlot Tray3H *PageSize 12x18
*UIConstraints: *InputSlot Tray3H *PageSize Tabloid
*UIConstraints: *PageSize Legal *InputSlot Tray3H
*UIConstraints: *PageSize Executive *InputSlot Tray3H
*UIConstraints: *PageSize A5 *InputSlot Tray3H
*UIConstraints: *PageSize B5-JIS *InputSlot Tray3H
*UIConstraints: *PageSize US-Folio *InputSlot Tray3H
*UIConstraints: *PageSize Env10 *InputSlot Tray3H
*UIConstraints: *PageSize EnvDL *InputSlot Tray3H
*UIConstraints: *PageSize EnvC5 *InputSlot Tray3H
*UIConstraints: *PageSize EnvC6 *InputSlot Tray3H
*UIConstraints: *PageSize B5-ISO *InputSlot Tray3H
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray3H
*UIConstraints: *PageSize A6 *InputSlot Tray3H
*UIConstraints: *PageSize Oficio_S *InputSlot Tray3H
*UIConstraints: *PageSize Statement *InputSlot Tray3H
*UIConstraints: *PageSize Postcard_S *InputSlot Tray3H
*UIConstraints: *PageSize A3 *InputSlot Tray3H
*UIConstraints: *PageSize Env9 *InputSlot Tray3H
*UIConstraints: *PageSize C4 *InputSlot Tray3H
*UIConstraints: *PageSize B4 *InputSlot Tray3H
*UIConstraints: *PageSize SRA3 *InputSlot Tray3H
*UIConstraints: *PageSize 8K *InputSlot Tray3H
*UIConstraints: *PageSize 16K *InputSlot Tray3H
*UIConstraints: *PageSize 12x18 *InputSlot Tray3H
*UIConstraints: *PageSize Tabloid *InputSlot Tray3H
*% =======================================================================================
*% MediaType: InputSlot(Tray3H) - PageRegion
*% =======================================================================================
*UIConstraints: *InputSlot Tray3H *PageRegion Legal
*UIConstraints: *InputSlot Tray3H *PageRegion Executive
*UIConstraints: *InputSlot Tray3H *PageRegion A5
*UIConstraints: *InputSlot Tray3H *PageRegion B5-JIS
*UIConstraints: *InputSlot Tray3H *PageRegion US-Folio
*UIConstraints: *InputSlot Tray3H *PageRegion Env10
*UIConstraints: *InputSlot Tray3H *PageRegion EnvDL
*UIConstraints: *InputSlot Tray3H *PageRegion EnvC5
*UIConstraints: *InputSlot Tray3H *PageRegion EnvC6
*UIConstraints: *InputSlot Tray3H *PageRegion B5-ISO
*UIConstraints: *InputSlot Tray3H *PageRegion EnvMonarch
*UIConstraints: *InputSlot Tray3H *PageRegion A6
*UIConstraints: *InputSlot Tray3H *PageRegion Oficio_S
*UIConstraints: *InputSlot Tray3H *PageRegion Statement
*UIConstraints: *InputSlot Tray3H *PageRegion Postcard_S
*UIConstraints: *InputSlot Tray3H *PageRegion A3
*UIConstraints: *InputSlot Tray3H *PageRegion Env9
*UIConstraints: *InputSlot Tray3H *PageRegion C4
*UIConstraints: *InputSlot Tray3H *PageRegion B4
*UIConstraints: *InputSlot Tray3H *PageRegion SRA3
*UIConstraints: *InputSlot Tray3H *PageRegion 8K
*UIConstraints: *InputSlot Tray3H *PageRegion 16K
*UIConstraints: *InputSlot Tray3H *PageRegion 12x18
*UIConstraints: *InputSlot Tray3H *PageRegion Tabloid
*UIConstraints: *PageRegion Legal *InputSlot Tray3H
*UIConstraints: *PageRegion Executive *InputSlot Tray3H
*UIConstraints: *PageRegion A5 *InputSlot Tray3H
*UIConstraints: *PageRegion B5-JIS *InputSlot Tray3H
*UIConstraints: *PageRegion US-Folio *InputSlot Tray3H
*UIConstraints: *PageRegion Env10 *InputSlot Tray3H
*UIConstraints: *PageRegion EnvDL *InputSlot Tray3H
*UIConstraints: *PageRegion EnvC5 *InputSlot Tray3H
*UIConstraints: *PageRegion EnvC6 *InputSlot Tray3H
*UIConstraints: *PageRegion B5-ISO *InputSlot Tray3H
*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray3H
*UIConstraints: *PageRegion A6 *InputSlot Tray3H
*UIConstraints: *PageRegion Oficio_S *InputSlot Tray3H
*UIConstraints: *PageRegion Statement *InputSlot Tray3H
*UIConstraints: *PageRegion Postcard_S *InputSlot Tray3H
*UIConstraints: *PageRegion A3 *InputSlot Tray3H
*UIConstraints: *PageRegion Env9 *InputSlot Tray3H
*UIConstraints: *PageRegion C4 *InputSlot Tray3H
*UIConstraints: *PageRegion B4 *InputSlot Tray3H
*UIConstraints: *PageRegion SRA3 *InputSlot Tray3H
*UIConstraints: *PageRegion 8K *InputSlot Tray3H
*UIConstraints: *PageRegion 16K *InputSlot Tray3H
*UIConstraints: *PageRegion 12x18 *InputSlot Tray3H
*UIConstraints: *PageRegion Tabloid *InputSlot Tray3H
*% =======================================================================================
*% PageSize: A6 - InputSlot
*% =======================================================================================
*UIConstraints: *PageSize A6 *InputSlot Middle
*UIConstraints: *PageSize A6 *InputSlot Lower
*UIConstraints: *PageSize A6 *InputSlot Tray3
*UIConstraints: *PageSize A6 *InputSlot Tray4
*UIConstraints: *PageSize A6 *InputSlot Tray3H
*%UIConstraints: *PageSize A6 *InputSlot Tray5
*UIConstraints: *InputSlot Middle *PageSize A6
*UIConstraints: *InputSlot Lower *PageSize A6
*UIConstraints: *InputSlot Tray3 *PageSize A6
*UIConstraints: *InputSlot Tray4 *PageSize A6
*UIConstraints: *InputSlot Tray3H *PageSize A6
*%UIConstraints: *InputSlot Tray5 *PageSize A6
*% =======================================================================================
*% PageRegion: A6 - InputSlot
*% =======================================================================================
*UIConstraints: *PageRegion A6 *InputSlot Middle
*UIConstraints: *PageRegion A6 *InputSlot Lower
*UIConstraints: *PageRegion A6 *InputSlot Tray3
*UIConstraints: *PageRegion A6 *InputSlot Tray4
*UIConstraints: *PageRegion A6 *InputSlot Tray3H
*%UIConstraints: *PageRegion A6 *InputSlot Tray5
*UIConstraints: *InputSlot Middle *PageRegion A6
*UIConstraints: *InputSlot Lower *PageRegion A6
*UIConstraints: *InputSlot Tray3 *PageRegion A6
*UIConstraints: *InputSlot Tray4 *PageRegion A6
*UIConstraints: *InputSlot Tray3H *PageRegion A6
*%UIConstraints: *InputSlot Tray5 *PageRegion A6
*% =======================================================================================
*% PageSize: B5-ISO - InputSlot
*% =======================================================================================
*UIConstraints: *PageSize B5-ISO *InputSlot Middle
*UIConstraints: *PageSize B5-ISO *InputSlot Lower
*UIConstraints: *PageSize B5-ISO *InputSlot Tray3
*UIConstraints: *PageSize B5-ISO *InputSlot Tray4
*UIConstraints: *PageSize B5-ISO *InputSlot Tray3H
*%UIConstraints: *PageSize B5-ISO *InputSlot Tray5
*UIConstraints: *InputSlot Middle *PageSize B5-ISO
*UIConstraints: *InputSlot Lower *PageSize B5-ISO
*UIConstraints: *InputSlot Tray3 *PageSize B5-ISO
*UIConstraints: *InputSlot Tray4 *PageSize B5-ISO
*UIConstraints: *InputSlot Tray3H *PageSize B5-ISO
*%UIConstraints: *InputSlot Tray5 *PageSize B5-ISO
*% =======================================================================================
*% PageRegion: B5-ISO - InputSlot
*% =======================================================================================
*UIConstraints: *PageRegion B5-ISO *InputSlot Middle
*UIConstraints: *PageRegion B5-ISO *InputSlot Lower
*UIConstraints: *PageRegion B5-ISO *InputSlot Tray3
*UIConstraints: *PageRegion B5-ISO *InputSlot Tray4
*UIConstraints: *PageRegion B5-ISO *InputSlot Tray3H
*%UIConstraints: *PageRegion B5-ISO *InputSlot Tray5
*UIConstraints: *InputSlot Middle *PageRegion B5-ISO
*UIConstraints: *InputSlot Lower *PageRegion B5-ISO
*UIConstraints: *InputSlot Tray3 *PageRegion B5-ISO
*UIConstraints: *InputSlot Tray4 *PageRegion B5-ISO
*UIConstraints: *InputSlot Tray3H *PageRegion B5-ISO
*%UIConstraints: *InputSlot Tray5 *PageRegion B5-ISO
*% =======================================================================================
*% PageSize: US-Folio - InputSlot
*% =======================================================================================
*%UIConstraints: *PageSize US-Folio *InputSlot Middle
*%UIConstraints: *PageSize US-Folio *InputSlot Lower
*%UIConstraints: *PageSize US-Folio *InputSlot Tray3
*%UIConstraints: *PageSize US-Folio *InputSlot Tray4
*UIConstraints: *PageSize US-Folio *InputSlot Tray3H
*%UIConstraints: *PageSize US-Folio *InputSlot Tray5
*%UIConstraints: *InputSlot Middle *PageSize US-Folio
*%UIConstraints: *InputSlot Lower *PageSize US-Folio
*%UIConstraints: *InputSlot Tray3 *PageSize US-Folio
*%UIConstraints: *InputSlot Tray4 *PageSize US-Folio
*UIConstraints: *InputSlot Tray3H *PageSize US-Folio
*%UIConstraints: *InputSlot Tray5 *PageSize US-Folio
*% =======================================================================================
*% PageRegion: US-Folio - InputSlot
*% =======================================================================================
*%UIConstraints: *PageRegion US-Folio *InputSlot Middle
*%UIConstraints: *PageRegion US-Folio *InputSlot Lower
*%UIConstraints: *PageRegion US-Folio *InputSlot Tray3
*%UIConstraints: *PageRegion US-Folio *InputSlot Tray4
*UIConstraints: *PageRegion US-Folio *InputSlot Tray3H
*%UIConstraints: *PageRegion US-Folio *InputSlot Tray5
*%UIConstraints: *InputSlot Middle *PageRegion US-Folio
*%UIConstraints: *InputSlot Lower *PageRegion US-Folio
*%UIConstraints: *InputSlot Tray3 *PageRegion US-Folio
*%UIConstraints: *InputSlot Tray4 *PageRegion US-Folio
*UIConstraints: *InputSlot Tray3H *PageRegion US-Folio
*%UIConstraints: *InputSlot Tray5 *PageRegion US-Folio
*% =======================================================================================
*% PageSize: Oficio_S - InputSlot
*% =======================================================================================
*%UIConstraints: *PageSize Oficio_S *InputSlot Middle
*%UIConstraints: *PageSize Oficio_S *InputSlot Lower
*%UIConstraints: *PageSize Oficio_S *InputSlot Tray3
*%UIConstraints: *PageSize Oficio_S *InputSlot Tray4
*UIConstraints: *PageSize Oficio_S *InputSlot Tray3H
*%UIConstraints: *PageSize Oficio_S *InputSlot Tray5
*%UIConstraints: *InputSlot Middle *PageSize Oficio_S
*%UIConstraints: *InputSlot Lower *PageSize Oficio_S
*%UIConstraints: *InputSlot Tray3 *PageSize Oficio_S
*%UIConstraints: *InputSlot Tray4 *PageSize Oficio_S
*UIConstraints: *InputSlot Tray3H *PageSize Oficio_S
*%UIConstraints: *InputSlot Tray5 *PageSize Oficio_S
*% =======================================================================================
*% PageRegion: Oficio_S - InputSlot
*% =======================================================================================
*%UIConstraints: *PageRegion Oficio_S *InputSlot Middle
*%UIConstraints: *PageRegion Oficio_S *InputSlot Lower
*%UIConstraints: *PageRegion Oficio_S *InputSlot Tray3
*%UIConstraints: *PageRegion Oficio_S *InputSlot Tray4
*UIConstraints: *PageRegion Oficio_S *InputSlot Tray3H
*%UIConstraints: *PageRegion Oficio_S *InputSlot Tray5
*%UIConstraints: *InputSlot Middle *PageRegion Oficio_S
*%UIConstraints: *InputSlot Lower *PageRegion Oficio_S
*%UIConstraints: *InputSlot Tray3 *PageRegion Oficio_S
*%UIConstraints: *InputSlot Tray4 *PageRegion Oficio_S
*UIConstraints: *InputSlot Tray3H *PageRegion Oficio_S
*%UIConstraints: *InputSlot Tray5 *PageRegion Oficio_S
*% =======================================================================================
*% PageSize: SRA3 - InputSlot
*% =======================================================================================
*UIConstraints: *PageSize SRA3 *InputSlot Middle
*UIConstraints: *PageSize SRA3 *InputSlot Lower
*UIConstraints: *PageSize SRA3 *InputSlot Tray3
*UIConstraints: *PageSize SRA3 *InputSlot Tray4
*UIConstraints: *PageSize SRA3 *InputSlot Tray3H
*%UIConstraints: *PageSize SRA3 *InputSlot Tray5
*UIConstraints: *InputSlot Middle *PageSize SRA3
*UIConstraints: *InputSlot Lower *PageSize SRA3
*UIConstraints: *InputSlot Tray3 *PageSize SRA3
*UIConstraints: *InputSlot Tray3H *PageSize SRA3
*%UIConstraints: *InputSlot Tray5 *PageSize SRA3
*% =======================================================================================
*% PageRegion: SRA3 - InputSlot
*% =======================================================================================
*UIConstraints: *PageRegion SRA3 *InputSlot Middle
*UIConstraints: *PageRegion SRA3 *InputSlot Lower
*UIConstraints: *PageRegion SRA3 *InputSlot Tray3
*UIConstraints: *PageRegion SRA3 *InputSlot Tray4
*UIConstraints: *PageRegion SRA3 *InputSlot Tray3H
*%UIConstraints: *PageRegion SRA3 *InputSlot Tray5
*UIConstraints: *InputSlot Middle *PageRegion SRA3
*UIConstraints: *InputSlot Lower *PageRegion SRA3
*UIConstraints: *InputSlot Tray3 *PageRegion SRA3
*UIConstraints: *InputSlot Tray4 *PageRegion SRA3
*UIConstraints: *InputSlot Tray3H *PageRegion SRA3
*%UIConstraints: *InputSlot Tray5 *PageRegion SRA3
*% =======================================================================================
*% PageSize: EnvMonarch - InputSlot
*% =======================================================================================
*UIConstraints: *PageSize EnvMonarch *InputSlot Middle
*UIConstraints: *PageSize EnvMonarch *InputSlot Lower
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray3
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray4
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray3H
*%UIConstraints: *PageSize EnvMonarch *InputSlot Tray5
*UIConstraints: *InputSlot Middle *PageSize EnvMonarch
*UIConstraints: *InputSlot Lower *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray3 *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray4 *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray3H *PageSize EnvMonarch
*%UIConstraints: *InputSlot Tray5 *PageSize EnvMonarch
*% =======================================================================================
*% PageRegion: EnvMonarch - InputSlot
*% =======================================================================================
*UIConstraints: *PageRegion EnvMonarch *InputSlot Middle
*UIConstraints: *PageRegion EnvMonarch *InputSlot Lower
*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray3
*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray4
*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray3H
*%UIConstraints: *PageRegion EnvMonarch *InputSlot Tray5
*UIConstraints: *InputSlot Middle *PageRegion EnvMonarch
*UIConstraints: *InputSlot Lower *PageRegion EnvMonarch
*UIConstraints: *InputSlot Tray3 *PageRegion EnvMonarch
*UIConstraints: *InputSlot Tray4 *PageRegion EnvMonarch
*UIConstraints: *InputSlot Tray3H *PageRegion EnvMonarch
*%UIConstraints: *InputSlot Tray5 *PageRegion EnvMonarch
*% =======================================================================================
*% PageSize: EnvDL - InputSlot
*% =======================================================================================
*UIConstraints: *PageSize EnvDL *InputSlot Middle
*UIConstraints: *PageSize EnvDL *InputSlot Lower
*UIConstraints: *PageSize EnvDL *InputSlot Tray3
*UIConstraints: *PageSize EnvDL *InputSlot Tray4
*UIConstraints: *PageSize EnvDL *InputSlot Tray3H
*%UIConstraints: *PageSize EnvDL *InputSlot Tray5
*UIConstraints: *InputSlot Middle *PageSize EnvDL
*UIConstraints: *InputSlot Lower *PageSize EnvDL
*UIConstraints: *InputSlot Tray3 *PageSize EnvDL
*UIConstraints: *InputSlot Tray4 *PageSize EnvDL
*UIConstraints: *InputSlot Tray3H *PageSize EnvDL
*%UIConstraints: *InputSlot Tray5 *PageSize EnvDL
*% =======================================================================================
*% PageRegion: EnvDL - InputSlot
*% =======================================================================================
*UIConstraints: *PageRegion EnvDL *InputSlot Middle
*UIConstraints: *PageRegion EnvDL *InputSlot Lower
*UIConstraints: *PageRegion EnvDL *InputSlot Tray3
*UIConstraints: *PageRegion EnvDL *InputSlot Tray4
*UIConstraints: *PageRegion EnvDL *InputSlot Tray3H
*%UIConstraints: *PageRegion EnvDL *InputSlot Tray5
*UIConstraints: *InputSlot Middle *PageRegion EnvDL
*UIConstraints: *InputSlot Lower *PageRegion EnvDL
*UIConstraints: *InputSlot Tray3 *PageRegion EnvDL
*UIConstraints: *InputSlot Tray4 *PageRegion EnvDL
*UIConstraints: *InputSlot Tray3H *PageRegion EnvDL
*%UIConstraints: *InputSlot Tray5 *PageRegion EnvDL
*% =======================================================================================
*% PageSize: EnvC5 - InputSlot
*% =======================================================================================
*UIConstraints: *PageSize EnvC5 *InputSlot Middle
*UIConstraints: *PageSize EnvC5 *InputSlot Lower
*UIConstraints: *PageSize EnvC5 *InputSlot Tray3
*UIConstraints: *PageSize EnvC5 *InputSlot Tray4
*UIConstraints: *PageSize EnvC5 *InputSlot Tray3H
*%UIConstraints: *PageSize EnvC5 *InputSlot Tray5
*UIConstraints: *InputSlot Middle *PageSize EnvC5
*UIConstraints: *InputSlot Lower *PageSize EnvC5
*UIConstraints: *InputSlot Tray3 *PageSize EnvC5
*UIConstraints: *InputSlot Tray4 *PageSize EnvC5
*UIConstraints: *InputSlot Tray3H *PageSize EnvC5
*%UIConstraints: *InputSlot Tray5 *PageSize EnvC5
*% =======================================================================================
*% PageRegion: EnvC5 - InputSlot
*% =======================================================================================
*UIConstraints: *PageRegion EnvC5 *InputSlot Middle
*UIConstraints: *PageRegion EnvC5 *InputSlot Lower
*UIConstraints: *PageRegion EnvC5 *InputSlot Tray3
*UIConstraints: *PageRegion EnvC5 *InputSlot Tray4
*UIConstraints: *PageRegion EnvC5 *InputSlot Tray3H
*%UIConstraints: *PageRegion EnvC5 *InputSlot Tray5
*UIConstraints: *InputSlot Middle *PageRegion EnvC5
*UIConstraints: *InputSlot Lower *PageRegion EnvC5
*UIConstraints: *InputSlot Tray3 *PageRegion EnvC5
*UIConstraints: *InputSlot Tray4 *PageRegion EnvC5
*UIConstraints: *InputSlot Tray3H *PageRegion EnvC5
*%UIConstraints: *InputSlot Tray5 *PageRegion EnvC5
*% =======================================================================================
*% PageSize: EnvC6 - InputSlot
*% =======================================================================================
*UIConstraints: *PageSize EnvC6 *InputSlot Middle
*UIConstraints: *PageSize EnvC6 *InputSlot Lower
*UIConstraints: *PageSize EnvC6 *InputSlot Tray3
*UIConstraints: *PageSize EnvC6 *InputSlot Tray4
*UIConstraints: *PageSize EnvC6 *InputSlot Tray3H
*%UIConstraints: *PageSize EnvC6 *InputSlot Tray5
*UIConstraints: *InputSlot Middle *PageSize EnvC6
*UIConstraints: *InputSlot Lower *PageSize EnvC6
*UIConstraints: *InputSlot Tray3 *PageSize EnvC6
*UIConstraints: *InputSlot Tray4 *PageSize EnvC6
*UIConstraints: *InputSlot Tray3H *PageSize EnvC6
*%UIConstraints: *InputSlot Tray5 *PageSize EnvC6
*% =======================================================================================
*% PageRegion: EnvC6 - InputSlot
*% =======================================================================================
*UIConstraints: *PageRegion EnvC6 *InputSlot Middle
*UIConstraints: *PageRegion EnvC6 *InputSlot Lower
*UIConstraints: *PageRegion EnvC6 *InputSlot Tray3
*UIConstraints: *PageRegion EnvC6 *InputSlot Tray4
*UIConstraints: *PageRegion EnvC6 *InputSlot Tray3H
*%UIConstraints: *PageRegion EnvC6 *InputSlot Tray5
*UIConstraints: *InputSlot Middle *PageRegion EnvC6
*UIConstraints: *InputSlot Lower *PageRegion EnvC6
*UIConstraints: *InputSlot Tray3 *PageRegion EnvC6
*UIConstraints: *InputSlot Tray4 *PageRegion EnvC6
*UIConstraints: *InputSlot Tray3H *PageRegion EnvC6
*%UIConstraints: *InputSlot Tray5 *PageRegion EnvC6
*% =======================================================================================
*% PageSize: Env10 - InputSlot
*% =======================================================================================
*UIConstraints: *PageSize Env10 *InputSlot Middle
*UIConstraints: *PageSize Env10 *InputSlot Lower
*UIConstraints: *PageSize Env10 *InputSlot Tray3
*UIConstraints: *PageSize Env10 *InputSlot Tray4
*UIConstraints: *PageSize Env10 *InputSlot Tray3H
*%UIConstraints: *PageSize Env10 *InputSlot Tray5
*UIConstraints: *InputSlot Middle *PageSize Env10
*UIConstraints: *InputSlot Lower *PageSize Env10
*UIConstraints: *InputSlot Tray3 *PageSize Env10
*UIConstraints: *InputSlot Tray4 *PageSize Env10
*UIConstraints: *InputSlot Tray3H *PageSize Env10
*%UIConstraints: *InputSlot Tray5 *PageSize Env10
*% =======================================================================================
*% PageRegion: Env10 - InputSlot
*% =======================================================================================
*UIConstraints: *PageRegion Env10 *InputSlot Middle
*UIConstraints: *PageRegion Env10 *InputSlot Lower
*UIConstraints: *PageRegion Env10 *InputSlot Tray3
*UIConstraints: *PageRegion Env10 *InputSlot Tray4
*UIConstraints: *PageRegion Env10 *InputSlot Tray3H
*%UIConstraints: *PageRegion Env10 *InputSlot Tray5
*UIConstraints: *InputSlot Middle *PageRegion Env10
*UIConstraints: *InputSlot Lower *PageRegion Env10
*UIConstraints: *InputSlot Tray3 *PageRegion Env10
*UIConstraints: *InputSlot Tray4 *PageRegion Env10
*UIConstraints: *InputSlot Tray3H *PageRegion Env10
*%UIConstraints: *InputSlot Tray5 *PageRegion Env10
*% =======================================================================================
*% PageSize: Env9 - InputSlot
*% =======================================================================================
*UIConstraints: *PageSize Env9 *InputSlot Middle
*UIConstraints: *PageSize Env9 *InputSlot Lower
*UIConstraints: *PageSize Env9 *InputSlot Tray3
*UIConstraints: *PageSize Env9 *InputSlot Tray4
*UIConstraints: *PageSize Env9 *InputSlot Tray3H
*%UIConstraints: *PageSize Env9 *InputSlot Tray5
*UIConstraints: *InputSlot Middle *PageSize Env9
*UIConstraints: *InputSlot Lower *PageSize Env9
*UIConstraints: *InputSlot Tray3 *PageSize Env9
*UIConstraints: *InputSlot Tray4 *PageSize Env9
*UIConstraints: *InputSlot Tray3H *PageSize Env9
*%UIConstraints: *InputSlot Tray5 *PageSize Env9
*% =======================================================================================
*% PageRegion: Env9 - InputSlot
*% =======================================================================================
*UIConstraints: *PageRegion Env9 *InputSlot Middle
*UIConstraints: *PageRegion Env9 *InputSlot Lower
*UIConstraints: *PageRegion Env9 *InputSlot Tray3
*UIConstraints: *PageRegion Env9 *InputSlot Tray4
*UIConstraints: *PageRegion Env9 *InputSlot Tray3H
*%UIConstraints: *PageRegion Env9 *InputSlot Tray5
*UIConstraints: *InputSlot Middle *PageRegion Env9
*UIConstraints: *InputSlot Lower *PageRegion Env9
*UIConstraints: *InputSlot Tray3 *PageRegion Env9
*UIConstraints: *InputSlot Tray4 *PageRegion Env9
*UIConstraints: *InputSlot Tray3H *PageRegion Env9
*%UIConstraints: *InputSlot Tray5 *PageRegion Env9
*% =======================================================================================
*% PageSize: Postcard_S - InputSlot
*% =======================================================================================
*UIConstraints: *PageSize Postcard_S *InputSlot Middle
*UIConstraints: *PageSize Postcard_S *InputSlot Lower
*UIConstraints: *PageSize Postcard_S *InputSlot Tray3
*UIConstraints: *PageSize Postcard_S *InputSlot Tray4
*UIConstraints: *PageSize Postcard_S *InputSlot Tray3H
*%UIConstraints: *PageSize Postcard_S *InputSlot Tray5
*UIConstraints: *InputSlot Middle *PageSize Postcard_S
*UIConstraints: *InputSlot Lower *PageSize Postcard_S
*UIConstraints: *InputSlot Tray3 *PageSize Postcard_S
*UIConstraints: *InputSlot Tray4 *PageSize Postcard_S
*UIConstraints: *InputSlot Tray3H *PageSize Postcard_S
*%UIConstraints: *InputSlot Tray5 *PageSize Postcard_S
*% =======================================================================================
*% PageRegion: Postcard_S - InputSlot
*% =======================================================================================
*UIConstraints: *PageRegion Postcard_S *InputSlot Middle
*UIConstraints: *PageRegion Postcard_S *InputSlot Lower
*UIConstraints: *PageRegion Postcard_S *InputSlot Tray3
*UIConstraints: *PageRegion Postcard_S *InputSlot Tray4
*UIConstraints: *PageRegion Postcard_S *InputSlot Tray3H
*%UIConstraints: *PageRegion Postcard_S *InputSlot Tray5
*UIConstraints: *InputSlot Middle *PageRegion Postcard_S
*UIConstraints: *InputSlot Lower *PageRegion Postcard_S
*UIConstraints: *InputSlot Tray3 *PageRegion Postcard_S
*UIConstraints: *InputSlot Tray4 *PageRegion Postcard_S
*UIConstraints: *InputSlot Tray3H *PageRegion Postcard_S
*%UIConstraints: *InputSlot Tray5 *PageRegion Postcard_S
*% =======================================================================================
*% PageSize: Tabloid - InputSlot
*% =======================================================================================
*%UIConstraints: *PageSize Tabloid *InputSlot Middle
*%UIConstraints: *PageSize Tabloid *InputSlot Lower
*%UIConstraints: *PageSize Tabloid *InputSlot Tray3
*%UIConstraints: *PageSize Tabloid *InputSlot Tray4
*%UIConstraints: *PageSize Tabloid *InputSlot Tray3H
*%UIConstraints: *PageSize Tabloid *InputSlot Tray5
*%UIConstraints: *InputSlot Middle *PageSize Tabloid
*%UIConstraints: *InputSlot Lower *PageSize Tabloid
*%UIConstraints: *InputSlot Tray3 *PageSize Tabloid
*%UIConstraints: *InputSlot Tray4 *PageSize Tabloid
*%UIConstraints: *InputSlot Tray3H *PageSize Tabloid
*%UIConstraints: *InputSlot Tray5 *PageSize Tabloid
*% =======================================================================================
*% PageRegion: Tabloid - InputSlot
*% =======================================================================================
*%UIConstraints: *PageRegion Tabloid *InputSlot Middle
*%UIConstraints: *PageRegion Tabloid *InputSlot Lower
*%UIConstraints: *PageRegion Tabloid *InputSlot Tray3
*%UIConstraints: *PageRegion Tabloid *InputSlot Tray4
*%UIConstraints: *PageRegion Tabloid *InputSlot Tray3H
*%UIConstraints: *PageRegion Tabloid *InputSlot Tray5
*%UIConstraints: *InputSlot Middle *PageRegion Tabloid
*%UIConstraints: *InputSlot Lower *PageRegion Tabloid
*%UIConstraints: *InputSlot Tray3 *PageRegion Tabloid
*%UIConstraints: *InputSlot Tray4 *PageRegion Tabloid
*%UIConstraints: *InputSlot Tray3H *PageRegion Tabloid
*%UIConstraints: *InputSlot Tray5 *PageRegion Tabloid
*% =======================================================================================
*% PageSize: C4 - InputSlot
*% =======================================================================================
*UIConstraints: *PageSize C4 *InputSlot Middle
*UIConstraints: *PageSize C4 *InputSlot Lower
*UIConstraints: *PageSize C4 *InputSlot Tray3
*UIConstraints: *PageSize C4 *InputSlot Tray4
*UIConstraints: *PageSize C4 *InputSlot Tray3H
*%UIConstraints: *PageSize C4 *InputSlot Tray5
*UIConstraints: *InputSlot Middle *PageSize C4
*UIConstraints: *InputSlot Lower *PageSize C4
*UIConstraints: *InputSlot Tray3 *PageSize C4
*UIConstraints: *InputSlot Tray4 *PageSize C4
*UIConstraints: *InputSlot Tray3H *PageSize C4
*%UIConstraints: *InputSlot Tray5 *PageSize C4
*% =======================================================================================
*% PageRegion: C4 - InputSlot
*% =======================================================================================
*UIConstraints: *PageRegion C4 *InputSlot Middle
*UIConstraints: *PageRegion C4 *InputSlot Lower
*UIConstraints: *PageRegion C4 *InputSlot Tray3
*UIConstraints: *PageRegion C4 *InputSlot Tray4
*UIConstraints: *PageRegion C4 *InputSlot Tray3H
*%UIConstraints: *PageRegion C4 *InputSlot Tray5
*UIConstraints: *InputSlot Middle *PageRegion C4
*UIConstraints: *InputSlot Lower *PageRegion C4
*UIConstraints: *InputSlot Tray3 *PageRegion C4
*UIConstraints: *InputSlot Tray4 *PageRegion C4
*UIConstraints: *InputSlot Tray3H *PageRegion C4
*%UIConstraints: *InputSlot Tray5 *PageRegion C4
*%=====Front Cover Size following to Front Cover Options
*UIConstraints: *JCLFrontCoverOption None *JCLFrontCoverSource Auto
*UIConstraints: *JCLFrontCoverOption None *JCLFrontCoverSource Upper
*UIConstraints: *JCLFrontCoverOption None *JCLFrontCoverSource Middle
*UIConstraints: *JCLFrontCoverOption None *JCLFrontCoverSource Lower
*UIConstraints: *JCLFrontCoverOption None *JCLFrontCoverSource Tray3
*UIConstraints: *JCLFrontCoverSource Auto *JCLFrontCoverOption None
*UIConstraints: *JCLFrontCoverSource Upper *JCLFrontCoverOption None
*UIConstraints: *JCLFrontCoverSource Middle *JCLFrontCoverOption None
*UIConstraints: *JCLFrontCoverSource Lower *JCLFrontCoverOption None
*UIConstraints: *JCLFrontCoverSource Tray3 *JCLFrontCoverOption None
*%=====Front Cover Type following to none Front Cover
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType PrinterDefault
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType Plain
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType Thick
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType Thin
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType Bond
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType Color
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType Labels
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType Transparency
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType Envelope
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType Preprinted
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType Cotton
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType Recycled
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType Archive
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType Punched
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType Letterhead
*UIConstraints: *JCLFrontCoverType PrinterDefault *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType Plain *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType Thick *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType Thin *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType Bond *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType Color *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType Labels *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType Transparency *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType Envelope *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType Preprinted *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType Cotton *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType Recycled *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType Archive *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType Punched *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType Letterhead *JCLFrontCoverSource None
*%=====Back Cover Size following to Back Cover Options
*UIConstraints: *JCLBackCoverOption None *JCLBackCoverSource Auto
*UIConstraints: *JCLBackCoverOption None *JCLBackCoverSource Upper
*UIConstraints: *JCLBackCoverOption None *JCLBackCoverSource Middle
*UIConstraints: *JCLBackCoverOption None *JCLBackCoverSource Lower
*UIConstraints: *JCLBackCoverOption None *JCLBackCoverSource Tray3
*UIConstraints: *JCLBackCoverSource Auto *JCLBackCoverOption None
*UIConstraints: *JCLBackCoverSource Upper *JCLBackCoverOption None
*UIConstraints: *JCLBackCoverSource Middle *JCLBackCoverOption None
*UIConstraints: *JCLBackCoverSource Lower *JCLBackCoverOption None
*UIConstraints: *JCLBackCoverSource Tray3 *JCLBackCoverOption None
*%=====Back Cover Type following to Back Cover Source
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType PrinterDefault
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType Plain
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType Thick
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType Thin
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType Bond
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType Color
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType Labels
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType Transparency
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType Envelope
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType Preprinted
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType Cotton
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType Recycled
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType Archive
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType Punched
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType Letterhead
*UIConstraints: *JCLBackCoverType PrinterDefault *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType Plain *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType Thick *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType Thin *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType Bond *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType Color *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType Labels *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType Transparency *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType Envelope *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType Preprinted *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType Cotton *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType Recycled *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType Archive *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType Punched *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType Letterhead *JCLBackCoverSource None
*%=====Front Back Cover Size following to Front Back Cover Options
*UIConstraints: *JCLFrontBackCoverOption None *JCLFrontBackCoverSource Auto
*UIConstraints: *JCLFrontBackCoverOption None *JCLFrontBackCoverSource Upper
*UIConstraints: *JCLFrontBackCoverOption None *JCLFrontBackCoverSource Middle
*UIConstraints: *JCLFrontBackCoverOption None *JCLFrontBackCoverSource Lower
*UIConstraints: *JCLFrontBackCoverOption None *JCLFrontBackCoverSource Tray3
*UIConstraints: *JCLFrontBackCoverSource Auto *JCLFrontBackCoverOption None
*UIConstraints: *JCLFrontBackCoverSource Upper *JCLFrontBackCoverOption None
*UIConstraints: *JCLFrontBackCoverSource Middle *JCLFrontBackCoverOption None
*UIConstraints: *JCLFrontBackCoverSource Lower *JCLFrontBackCoverOption None
*UIConstraints: *JCLFrontBackCoverSource Tray3 *JCLFrontBackCoverOption None
*%=====Front&Back Cover Type following to Front&Back Cover Source
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType PrinterDefault
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType Plain
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType Thick
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType Thin
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType Bond
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType Color
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType Labels
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType Transparency
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType Envelope
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType Preprinted
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType Cotton
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType Recycled
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType Archive
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType Punched
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType Letterhead
*UIConstraints: *JCLFrontBackCoverType PrinterDefault *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType Plain *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType Thick *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType Thin *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType Bond *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType Color *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType Labels *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType Transparency *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType Envelope *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType Preprinted *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType Cotton *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType Recycled *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType Archive *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType Punched *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType Letterhead *JCLFrontBackCoverSource None
*%=====Back Cover following to Used Front Cover
*UIConstraints: *JCLFrontCoverOption BlankPreprinted *JCLBackCoverOption BlankPreprinted
*UIConstraints: *JCLFrontCoverOption BlankPreprinted *JCLBackCoverOption 1SidedPrinted
*UIConstraints: *JCLFrontCoverOption BlankPreprinted *JCLBackCoverOption 2SidedPrinted
*UIConstraints: *JCLFrontCoverOption 1SidedPrinted *JCLBackCoverOption BlankPreprinted
*UIConstraints: *JCLFrontCoverOption 1SidedPrinted *JCLBackCoverOption 1SidedPrinted
*UIConstraints: *JCLFrontCoverOption 1SidedPrinted *JCLBackCoverOption 2SidedPrinted
*UIConstraints: *JCLFrontCoverOption 2SidedPrinted *JCLBackCoverOption BlankPreprinted
*UIConstraints: *JCLFrontCoverOption 2SidedPrinted *JCLBackCoverOption 1SidedPrinted
*UIConstraints: *JCLFrontCoverOption 2SidedPrinted *JCLBackCoverOption 2SidedPrinted
*UIConstraints: *JCLBackCoverOption BlankPreprinted *JCLFrontCoverOption BlankPreprinted
*UIConstraints: *JCLBackCoverOption 1SidedPrinted *JCLFrontCoverOption BlankPreprinted
*UIConstraints: *JCLBackCoverOption 2SidedPrinted *JCLFrontCoverOption BlankPreprinted
*UIConstraints: *JCLBackCoverOption BlankPreprinted *JCLFrontCoverOption 1SidedPrinted
*UIConstraints: *JCLBackCoverOption 1SidedPrinted *JCLFrontCoverOption 1SidedPrinted
*UIConstraints: *JCLBackCoverOption 2SidedPrinted *JCLFrontCoverOption 1SidedPrinted
*UIConstraints: *JCLBackCoverOption BlankPreprinted *JCLFrontCoverOption 2SidedPrinted
*UIConstraints: *JCLBackCoverOption 1SidedPrinted *JCLFrontCoverOption 2SidedPrinted
*UIConstraints: *JCLBackCoverOption 2SidedPrinted *JCLFrontCoverOption 2SidedPrinted
*%=====FrontBack Cover following to Used Front Cover
*UIConstraints: *JCLFrontCoverOption BlankPreprinted *JCLFrontBackCoverOption BlankPreprinted
*UIConstraints: *JCLFrontCoverOption BlankPreprinted *JCLFrontBackCoverOption 1SidedPrinted
*UIConstraints: *JCLFrontCoverOption BlankPreprinted *JCLFrontBackCoverOption 2SidedPrinted
*UIConstraints: *JCLFrontCoverOption 1SidedPrinted *JCLFrontBackCoverOption BlankPreprinted
*UIConstraints: *JCLFrontCoverOption 1SidedPrinted *JCLFrontBackCoverOption 1SidedPrinted
*UIConstraints: *JCLFrontCoverOption 1SidedPrinted *JCLFrontBackCoverOption 2SidedPrinted
*UIConstraints: *JCLFrontCoverOption 2SidedPrinted *JCLFrontBackCoverOption BlankPreprinted
*UIConstraints: *JCLFrontCoverOption 2SidedPrinted *JCLFrontBackCoverOption 1SidedPrinted
*UIConstraints: *JCLFrontCoverOption 2SidedPrinted *JCLFrontBackCoverOption 2SidedPrinted
*UIConstraints: *JCLFrontBackCoverOption BlankPreprinted *JCLFrontCoverOption BlankPreprinted
*UIConstraints: *JCLFrontBackCoverOption 1SidedPrinted *JCLFrontCoverOption BlankPreprinted
*UIConstraints: *JCLFrontBackCoverOption 2SidedPrinted *JCLFrontCoverOption BlankPreprinted
*UIConstraints: *JCLFrontBackCoverOption BlankPreprinted *JCLFrontCoverOption 1SidedPrinted
*UIConstraints: *JCLFrontBackCoverOption 1SidedPrinted *JCLFrontCoverOption 1SidedPrinted
*UIConstraints: *JCLFrontBackCoverOption 2SidedPrinted *JCLFrontCoverOption 1SidedPrinted
*UIConstraints: *JCLFrontBackCoverOption BlankPreprinted *JCLFrontCoverOption 2SidedPrinted
*UIConstraints: *JCLFrontBackCoverOption 1SidedPrinted *JCLFrontCoverOption 2SidedPrinted
*UIConstraints: *JCLFrontBackCoverOption 2SidedPrinted *JCLFrontCoverOption 2SidedPrinted
*%=====FrontBack Cover following to Used Back Cover
*UIConstraints: *JCLBackCoverOption BlankPreprinted *JCLFrontBackCoverOption BlankPreprinted
*UIConstraints: *JCLBackCoverOption BlankPreprinted *JCLFrontBackCoverOption 1SidedPrinted
*UIConstraints: *JCLBackCoverOption BlankPreprinted *JCLFrontBackCoverOption 2SidedPrinted
*UIConstraints: *JCLBackCoverOption 1SidedPrinted *JCLFrontBackCoverOption BlankPreprinted
*UIConstraints: *JCLBackCoverOption 1SidedPrinted *JCLFrontBackCoverOption 1SidedPrinted
*UIConstraints: *JCLBackCoverOption 1SidedPrinted *JCLFrontBackCoverOption 2SidedPrinted
*UIConstraints: *JCLBackCoverOption 2SidedPrinted *JCLFrontBackCoverOption BlankPreprinted
*UIConstraints: *JCLBackCoverOption 2SidedPrinted *JCLFrontBackCoverOption 1SidedPrinted
*UIConstraints: *JCLBackCoverOption 2SidedPrinted *JCLFrontBackCoverOption 2SidedPrinted
*UIConstraints: *JCLFrontBackCoverOption BlankPreprinted *JCLBackCoverOption BlankPreprinted
*UIConstraints: *JCLFrontBackCoverOption 1SidedPrinted *JCLBackCoverOption BlankPreprinted
*UIConstraints: *JCLFrontBackCoverOption 2SidedPrinted *JCLBackCoverOption BlankPreprinted
*UIConstraints: *JCLFrontBackCoverOption BlankPreprinted *JCLBackCoverOption 1SidedPrinted
*UIConstraints: *JCLFrontBackCoverOption 1SidedPrinted *JCLBackCoverOption 1SidedPrinted
*UIConstraints: *JCLFrontBackCoverOption 2SidedPrinted *JCLBackCoverOption 1SidedPrinted
*UIConstraints: *JCLFrontBackCoverOption BlankPreprinted *JCLBackCoverOption 2SidedPrinted
*UIConstraints: *JCLFrontBackCoverOption 1SidedPrinted *JCLBackCoverOption 2SidedPrinted
*UIConstraints: *JCLFrontBackCoverOption 2SidedPrinted *JCLBackCoverOption 2SidedPrinted
*%=====Separator Type following to Media Type
*UIConstraints: *MediaType None *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType Plain *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType Thick *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType Thin *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType Bond *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType Color *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType ThinCardStock *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType ThickCardStock *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType Labels *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType Envelope *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType Preprinted *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType Cotton *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType Recycled *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType Archive *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType Punched *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType Letterhead *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType None *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType Plain *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType Thick *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType Thin *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType Bond *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType Color *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType ThinCardStock *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType ThickCardStock *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType Labels *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType Envelope *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType Preprinted *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType Cotton *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType Recycled *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType Archive *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType Punched *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType Letterhead *JCLSeparatorsOption BlankSeparator
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType None
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType Plain
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType Thick
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType Thin
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType Bond
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType Color
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType ThinCardStock
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType ThickCardStock
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType Labels
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType Envelope
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType Preprinted
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType Cotton
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType Recycled
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType Archive
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType Punched
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType Letterhead
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType None
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType Plain
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType Thick
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType Thin
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType Bond
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType Color
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType ThinCardStock
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType ThickCardStock
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType Labels
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType Envelope
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType Preprinted
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType Cotton
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType Recycled
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType Archive
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType Punched
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType Letterhead
*% =========================================================
*% JCLSeparatorsOption - JCLSeparatorsSource
*% =========================================================
*UIConstraints: *JCLSeparatorsOption None *JCLSeparatorsSource Upper
*UIConstraints: *JCLSeparatorsOption None *JCLSeparatorsSource Middle
*UIConstraints: *JCLSeparatorsOption None *JCLSeparatorsSource Lower
*UIConstraints: *JCLSeparatorsOption None *JCLSeparatorsSource Tray3
*UIConstraints: *JCLSeparatorsSource Upper *JCLSeparatorsOption None
*UIConstraints: *JCLSeparatorsSource Middle *JCLSeparatorsOption None
*UIConstraints: *JCLSeparatorsSource Lower *JCLSeparatorsOption None
*UIConstraints: *JCLSeparatorsSource Tray3 *JCLSeparatorsOption None
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *JCLSeparatorsSource None
*UIConstraints: *JCLSeparatorsOption BlankSeparator *JCLSeparatorsSource None
*UIConstraints: *JCLSeparatorsSource None *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *JCLSeparatorsSource None *JCLSeparatorsOption BlankSeparator
*% =======================================================================================
*% Cosmos - 1 StapleLocation/ Top StaplePosition
*% =======================================================================================
*UIConstraints: *JCLStaplePosition Top *JCLStapleLocation 1Staple_P
*UIConstraints: *JCLStaplePosition Top *JCLStapleLocation 1Staple_L
*% =======================================================================================
*% Cosmos - StapleLocation 1-Staple/MediaType
*% =======================================================================================
*UIConstraints: *JCLStapleLocation 1Staple_P *MediaType Labels
*UIConstraints: *JCLStapleLocation 1Staple_P *MediaType Transparency
*UIConstraints: *JCLStapleLocation 1Staple_P *MediaType Envelope
*UIConstraints: *MediaType Labels *JCLStapleLocation 1Staple_P
*UIConstraints: *MediaType Transparency *JCLStapleLocation 1Staple_P
*UIConstraints: *MediaType Envelope *JCLStapleLocation 1Staple_P
*UIConstraints: *JCLStapleLocation 1Staple_L *MediaType Labels
*UIConstraints: *JCLStapleLocation 1Staple_L *MediaType Transparency
*UIConstraints: *JCLStapleLocation 1Staple_L *MediaType Envelope
*UIConstraints: *MediaType Labels *JCLStapleLocation 1Staple_L
*UIConstraints: *MediaType Transparency *JCLStapleLocation 1Staple_L
*UIConstraints: *MediaType Envelope *JCLStapleLocation 1Staple_L
*% =======================================================================================
*% Cosmos - StapleLocation 1-Staple/PageSize
*% =======================================================================================
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize Env10
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize EnvDL
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize EnvC5
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize EnvC6
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize EnvMonarch
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize A6
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize Postcard_S
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize Env9
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize C4
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize SRA3
*UIConstraints: *PageSize Env10 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize EnvDL *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize EnvC5 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize EnvC6 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize EnvMonarch *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize A6 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize Postcard_S *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize Env9 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize C4 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize SRA3 *JCLStapleLocation 1Staple_P
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize Env10
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize EnvDL
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize EnvC5
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize EnvC6
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize EnvMonarch
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize A6
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize Postcard_S
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize Env9
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize C4
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize SRA3
*UIConstraints: *PageSize Env10 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize EnvDL *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize EnvC5 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize EnvC6 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize EnvMonarch *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize A6 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize Postcard_S *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize Env9 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize C4 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize SRA3 *JCLStapleLocation 1Staple_L
*% =======================================================================================
*% Cosmos - JCLStapleLocation 1-Staple/PageRegion
*% =======================================================================================
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion Env10
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion EnvDL
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion EnvC5
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion EnvC6
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion EnvMonarch
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion A6
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion Postcard_S
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion Env9
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion C4
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion SRA3
*UIConstraints: *PageRegion Env10 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion EnvDL *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion EnvC5 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion EnvC6 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion EnvMonarch *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion A6 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion Postcard_S *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion Env9 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion C4 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion SRA3 *JCLStapleLocation 1Staple_P
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion Env10
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion EnvDL
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion EnvC5
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion EnvC6
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion EnvMonarch
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion A6
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion Postcard_S
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion Env9
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion C4
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion SRA3
*UIConstraints: *PageRegion Env10 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion EnvDL *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion EnvC5 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion EnvC6 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion EnvMonarch *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion A6 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion Postcard_S *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion Env9 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion C4 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion SRA3 *JCLStapleLocation 1Staple_L
*% =======================================================================================
*% Cosmos - StapleLocation 2-Staple/MediaType
*% =======================================================================================
*UIConstraints: *JCLStapleLocation 2Staple_P *MediaType Labels
*UIConstraints: *JCLStapleLocation 2Staple_P *MediaType Transparency
*UIConstraints: *JCLStapleLocation 2Staple_P *MediaType Envelope
*UIConstraints: *MediaType Labels *JCLStapleLocation 2Staple_P
*UIConstraints: *MediaType Transparency *JCLStapleLocation 2Staple_P
*UIConstraints: *MediaType Envelope *JCLStapleLocation 2Staple_P
*UIConstraints: *JCLStapleLocation 2Staple_L *MediaType Labels
*UIConstraints: *JCLStapleLocation 2Staple_L *MediaType Transparency
*UIConstraints: *JCLStapleLocation 2Staple_L *MediaType Envelope
*UIConstraints: *MediaType Labels *JCLStapleLocation 2Staple_L
*UIConstraints: *MediaType Transparency *JCLStapleLocation 2Staple_L
*UIConstraints: *MediaType Envelope *JCLStapleLocation 2Staple_L
*% =======================================================================================
*% Cosmos - StapleLocation 2-Staple/PageSize
*% =======================================================================================
*UIConstraints: *JCLStapleLocation 2Staple_P *PageSize Env10
*UIConstraints: *JCLStapleLocation 2Staple_P *PageSize EnvDL
*UIConstraints: *JCLStapleLocation 2Staple_P *PageSize EnvC5
*UIConstraints: *JCLStapleLocation 2Staple_P *PageSize EnvC6
*UIConstraints: *JCLStapleLocation 2Staple_P *PageSize EnvMonarch
*UIConstraints: *JCLStapleLocation 2Staple_P *PageSize A6
*UIConstraints: *JCLStapleLocation 2Staple_P *PageSize Postcard_S
*UIConstraints: *JCLStapleLocation 2Staple_P *PageSize Env9
*UIConstraints: *JCLStapleLocation 2Staple_P *PageSize C4
*UIConstraints: *JCLStapleLocation 2Staple_P *PageSize SRA3
*UIConstraints: *PageSize Env10 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageSize EnvDL *JCLStapleLocation 2Staple_P
*UIConstraints: *PageSize EnvC5 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageSize EnvC6 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageSize EnvMonarch *JCLStapleLocation 2Staple_P
*UIConstraints: *PageSize A6 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageSize Postcard_S *JCLStapleLocation 2Staple_P
*UIConstraints: *PageSize Env9 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageSize C4 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageSize SRA3 *JCLStapleLocation 2Staple_P
*UIConstraints: *JCLStapleLocation 2Staple_L *PageSize Env10
*UIConstraints: *JCLStapleLocation 2Staple_L *PageSize EnvDL
*UIConstraints: *JCLStapleLocation 2Staple_L *PageSize EnvC5
*UIConstraints: *JCLStapleLocation 2Staple_L *PageSize EnvC6
*UIConstraints: *JCLStapleLocation 2Staple_L *PageSize EnvMonarch
*UIConstraints: *JCLStapleLocation 2Staple_L *PageSize A6
*UIConstraints: *JCLStapleLocation 2Staple_L *PageSize Postcard_S
*UIConstraints: *JCLStapleLocation 2Staple_L *PageSize Env9
*UIConstraints: *JCLStapleLocation 2Staple_L *PageSize C4
*UIConstraints: *JCLStapleLocation 2Staple_L *PageSize SRA3
*UIConstraints: *PageSize Env10 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageSize EnvDL *JCLStapleLocation 2Staple_L
*UIConstraints: *PageSize EnvC5 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageSize EnvC6 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageSize EnvMonarch *JCLStapleLocation 2Staple_L
*UIConstraints: *PageSize A6 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageSize Postcard_S *JCLStapleLocation 2Staple_L
*UIConstraints: *PageSize Env9 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageSize C4 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageSize SRA3 *JCLStapleLocation 2Staple_L
*% =======================================================================================
*% Cosmos - JCLStapleLocation 2-Staple/PageRegion
*% =======================================================================================
*UIConstraints: *JCLStapleLocation 2Staple_P *PageRegion Env10
*UIConstraints: *JCLStapleLocation 2Staple_P *PageRegion EnvDL
*UIConstraints: *JCLStapleLocation 2Staple_P *PageRegion EnvC5
*UIConstraints: *JCLStapleLocation 2Staple_P *PageRegion EnvC6
*UIConstraints: *JCLStapleLocation 2Staple_P *PageRegion EnvMonarch
*UIConstraints: *JCLStapleLocation 2Staple_P *PageRegion A6
*UIConstraints: *JCLStapleLocation 2Staple_P *PageRegion Postcard_S
*UIConstraints: *JCLStapleLocation 2Staple_P *PageRegion Env9
*UIConstraints: *JCLStapleLocation 2Staple_P *PageRegion C4
*UIConstraints: *JCLStapleLocation 2Staple_P *PageRegion SRA3
*UIConstraints: *PageRegion Env10 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageRegion EnvDL *JCLStapleLocation 2Staple_P
*UIConstraints: *PageRegion EnvC5 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageRegion EnvC6 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageRegion EnvMonarch *JCLStapleLocation 2Staple_P
*UIConstraints: *PageRegion A6 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageRegion Postcard_S *JCLStapleLocation 2Staple_P
*UIConstraints: *PageRegion Env9 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageRegion C4 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageRegion SRA3 *JCLStapleLocation 2Staple_P
*UIConstraints: *JCLStapleLocation 2Staple_L *PageRegion Env10
*UIConstraints: *JCLStapleLocation 2Staple_L *PageRegion EnvDL
*UIConstraints: *JCLStapleLocation 2Staple_L *PageRegion EnvC5
*UIConstraints: *JCLStapleLocation 2Staple_L *PageRegion EnvC6
*UIConstraints: *JCLStapleLocation 2Staple_L *PageRegion EnvMonarch
*UIConstraints: *JCLStapleLocation 2Staple_L *PageRegion A6
*UIConstraints: *JCLStapleLocation 2Staple_L *PageRegion Postcard_S
*UIConstraints: *JCLStapleLocation 2Staple_L *PageRegion Env9
*UIConstraints: *JCLStapleLocation 2Staple_L *PageRegion C4
*UIConstraints: *JCLStapleLocation 2Staple_L *PageRegion SRA3
*UIConstraints: *PageRegion Env10 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageRegion EnvDL *JCLStapleLocation 2Staple_L
*UIConstraints: *PageRegion EnvC5 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageRegion EnvC6 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageRegion EnvMonarch *JCLStapleLocation 2Staple_L
*UIConstraints: *PageRegion A6 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageRegion Postcard_S *JCLStapleLocation 2Staple_L
*UIConstraints: *PageRegion Env9 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageRegion C4 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageRegion SRA3 *JCLStapleLocation 2Staple_L
*% =======================================================================================
*% Cosmos - Punch 2Hole/MediaType
*% =======================================================================================
*UIConstraints: *JCLPunchLocation 2Hole_P *MediaType Labels
*UIConstraints: *JCLPunchLocation 2Hole_P *MediaType Transparency
*UIConstraints: *JCLPunchLocation 2Hole_P *MediaType Envelope
*UIConstraints: *JCLPunchLocation 2Hole_P *MediaType Punched
*UIConstraints: *JCLPunchLocation 2Hole_P *MediaType ThickCardStock
*UIConstraints: *MediaType Labels *JCLPunchLocation 2Hole_P
*UIConstraints: *MediaType Transparency *JCLPunchLocation 2Hole_P
*UIConstraints: *MediaType Envelope *JCLPunchLocation 2Hole_P
*UIConstraints: *MediaType Punched *JCLPunchLocation 2Hole_P
*UIConstraints: *MediaType ThickCardStock *JCLPunchLocation 2Hole_P
*UIConstraints: *JCLPunchLocation 2Hole_L *MediaType Labels
*UIConstraints: *JCLPunchLocation 2Hole_L *MediaType Transparency
*UIConstraints: *JCLPunchLocation 2Hole_L *MediaType Envelope
*UIConstraints: *JCLPunchLocation 2Hole_L *MediaType Punched
*UIConstraints: *JCLPunchLocation 2Hole_L *MediaType ThickCardStock
*UIConstraints: *MediaType Labels *JCLPunchLocation 2Hole_L
*UIConstraints: *MediaType Transparency *JCLPunchLocation 2Hole_L
*UIConstraints: *MediaType Envelope *JCLPunchLocation 2Hole_L
*UIConstraints: *MediaType Punched *JCLPunchLocation 2Hole_L
*UIConstraints: *MediaType ThickCardStock *JCLPunchLocation 2Hole_L
*% =======================================================================================
*% Cosmos - Punch 2Hole/PageSize
*% =======================================================================================
*UIConstraints: *JCLPunchLocation 2Hole_P *PageSize Env10
*UIConstraints: *JCLPunchLocation 2Hole_P *PageSize EnvDL
*UIConstraints: *JCLPunchLocation 2Hole_P *PageSize EnvC5
*UIConstraints: *JCLPunchLocation 2Hole_P *PageSize EnvC6
*UIConstraints: *JCLPunchLocation 2Hole_P *PageSize EnvMonarch
*UIConstraints: *JCLPunchLocation 2Hole_P *PageSize A6
*UIConstraints: *JCLPunchLocation 2Hole_P *PageSize Postcard_S
*UIConstraints: *JCLPunchLocation 2Hole_P *PageSize Env9
*UIConstraints: *JCLPunchLocation 2Hole_P *PageSize C4
*UIConstraints: *JCLPunchLocation 2Hole_P *PageSize SRA3
*UIConstraints: *PageSize Env10 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageSize EnvDL *JCLPunchLocation 2Hole_P
*UIConstraints: *PageSize EnvC5 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageSize EnvC6 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageSize EnvMonarch *JCLPunchLocation 2Hole_P
*UIConstraints: *PageSize A6 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageSize Postcard_S *JCLPunchLocation 2Hole_P
*UIConstraints: *PageSize Env9 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageSize C4 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageSize SRA3 *JCLPunchLocation 2Hole_P
*UIConstraints: *JCLPunchLocation 2Hole_L *PageSize Env10
*UIConstraints: *JCLPunchLocation 2Hole_L *PageSize EnvDL
*UIConstraints: *JCLPunchLocation 2Hole_L *PageSize EnvC5
*UIConstraints: *JCLPunchLocation 2Hole_L *PageSize EnvC6
*UIConstraints: *JCLPunchLocation 2Hole_L *PageSize EnvMonarch
*UIConstraints: *JCLPunchLocation 2Hole_L *PageSize A6
*UIConstraints: *JCLPunchLocation 2Hole_L *PageSize Postcard_S
*UIConstraints: *JCLPunchLocation 2Hole_L *PageSize Env9
*UIConstraints: *JCLPunchLocation 2Hole_L *PageSize C4
*UIConstraints: *JCLPunchLocation 2Hole_L *PageSize SRA3
*UIConstraints: *PageSize Env10 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageSize EnvDL *JCLPunchLocation 2Hole_L
*UIConstraints: *PageSize EnvC5 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageSize EnvC6 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageSize EnvMonarch *JCLPunchLocation 2Hole_L
*UIConstraints: *PageSize A6 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageSize Postcard_S *JCLPunchLocation 2Hole_L
*UIConstraints: *PageSize Env9 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageSize C4 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageSize SRA3 *JCLPunchLocation 2Hole_L
*% =======================================================================================
*% Cosmos - PunchLocation 2Hole/PageRegion
*% =======================================================================================
*UIConstraints: *JCLPunchLocation 2Hole_P *PageRegion Env10
*UIConstraints: *JCLPunchLocation 2Hole_P *PageRegion EnvDL
*UIConstraints: *JCLPunchLocation 2Hole_P *PageRegion EnvC5
*UIConstraints: *JCLPunchLocation 2Hole_P *PageRegion EnvC6
*UIConstraints: *JCLPunchLocation 2Hole_P *PageRegion EnvMonarch
*UIConstraints: *JCLPunchLocation 2Hole_P *PageRegion A6
*UIConstraints: *JCLPunchLocation 2Hole_P *PageRegion Postcard_S
*UIConstraints: *JCLPunchLocation 2Hole_P *PageRegion Env9
*UIConstraints: *JCLPunchLocation 2Hole_P *PageRegion C4
*UIConstraints: *JCLPunchLocation 2Hole_P *PageRegion SRA3
*UIConstraints: *PageRegion Env10 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageRegion EnvDL *JCLPunchLocation 2Hole_P
*UIConstraints: *PageRegion EnvC5 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageRegion EnvC6 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageRegion EnvMonarch *JCLPunchLocation 2Hole_P
*UIConstraints: *PageRegion A6 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageRegion Postcard_S *JCLPunchLocation 2Hole_P
*UIConstraints: *PageRegion Env9 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageRegion C4 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageRegion SRA3 *JCLPunchLocation 2Hole_P
*UIConstraints: *JCLPunchLocation 2Hole_L *PageRegion Env10
*UIConstraints: *JCLPunchLocation 2Hole_L *PageRegion EnvDL
*UIConstraints: *JCLPunchLocation 2Hole_L *PageRegion EnvC5
*UIConstraints: *JCLPunchLocation 2Hole_L *PageRegion EnvC6
*UIConstraints: *JCLPunchLocation 2Hole_L *PageRegion EnvMonarch
*UIConstraints: *JCLPunchLocation 2Hole_L *PageRegion A6
*UIConstraints: *JCLPunchLocation 2Hole_L *PageRegion Postcard_S
*UIConstraints: *JCLPunchLocation 2Hole_L *PageRegion Env9
*UIConstraints: *JCLPunchLocation 2Hole_L *PageRegion C4
*UIConstraints: *JCLPunchLocation 2Hole_L *PageRegion SRA3
*UIConstraints: *PageRegion Env10 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageRegion EnvDL *JCLPunchLocation 2Hole_L
*UIConstraints: *PageRegion EnvC5 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageRegion EnvC6 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageRegion EnvMonarch *JCLPunchLocation 2Hole_L
*UIConstraints: *PageRegion A6 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageRegion Postcard_S *JCLPunchLocation 2Hole_L
*UIConstraints: *PageRegion Env9 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageRegion C4 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageRegion SRA3 *JCLPunchLocation 2Hole_L
*% =======================================================================================
*% Cosmos - Punch 3Hole/MediaType
*% =======================================================================================
*UIConstraints: *JCLPunchLocation 3Hole_P *MediaType Labels
*UIConstraints: *JCLPunchLocation 3Hole_P *MediaType Transparency
*UIConstraints: *JCLPunchLocation 3Hole_P *MediaType Envelope
*UIConstraints: *JCLPunchLocation 3Hole_P *MediaType Punched
*UIConstraints: *JCLPunchLocation 3Hole_P *MediaType ThickCardStock
*UIConstraints: *MediaType Labels *JCLPunchLocation 3Hole_P
*UIConstraints: *MediaType Transparency *JCLPunchLocation 3Hole_P
*UIConstraints: *MediaType Envelope *JCLPunchLocation 3Hole_P
*UIConstraints: *MediaType Punched *JCLPunchLocation 3Hole_P
*UIConstraints: *MediaType ThickCardStock *JCLPunchLocation 3Hole_P
*UIConstraints: *JCLPunchLocation 3Hole_L *MediaType Labels
*UIConstraints: *JCLPunchLocation 3Hole_L *MediaType Transparency
*UIConstraints: *JCLPunchLocation 3Hole_L *MediaType Envelope
*UIConstraints: *JCLPunchLocation 3Hole_L *MediaType Punched
*UIConstraints: *JCLPunchLocation 3Hole_L *MediaType ThickCardStock
*UIConstraints: *MediaType Labels *JCLPunchLocation 3Hole_L
*UIConstraints: *MediaType Transparency *JCLPunchLocation 3Hole_L
*UIConstraints: *MediaType Envelope *JCLPunchLocation 3Hole_L
*UIConstraints: *MediaType Punched *JCLPunchLocation 3Hole_L
*UIConstraints: *MediaType ThickCardStock *JCLPunchLocation 3Hole_L
*% =======================================================================================
*% Cosmos - Punch 3Hole/PageSize
*% =======================================================================================
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize Env10
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize EnvDL
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize EnvC5
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize EnvC6
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize EnvMonarch
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize A6
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize Postcard_S
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize Env9
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize C4
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize SRA3
*UIConstraints: *PageSize Env10 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageSize EnvDL *JCLPunchLocation 3Hole_P
*UIConstraints: *PageSize EnvC5 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageSize EnvC6 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageSize EnvMonarch *JCLPunchLocation 3Hole_P
*UIConstraints: *PageSize A6 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageSize Postcard_S *JCLPunchLocation 3Hole_P
*UIConstraints: *PageSize Env9 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageSize C4 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageSize SRA3 *JCLPunchLocation 3Hole_P
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize Env10
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize EnvDL
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize EnvC5
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize EnvC6
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize EnvMonarch
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize A6
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize Postcard_S
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize Env9
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize C4
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize SRA3
*UIConstraints: *PageSize Env10 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageSize EnvDL *JCLPunchLocation 3Hole_L
*UIConstraints: *PageSize EnvC5 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageSize EnvC6 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageSize EnvMonarch *JCLPunchLocation 3Hole_L
*UIConstraints: *PageSize A6 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageSize Postcard_S *JCLPunchLocation 3Hole_L
*UIConstraints: *PageSize Env9 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageSize C4 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageSize SRA3 *JCLPunchLocation 3Hole_L
*% =======================================================================================
*% Cosmos - JCLPunchLocation 3Hole/PageRegion
*% =======================================================================================
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion Env10
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion EnvDL
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion EnvC5
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion EnvC6
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion EnvMonarch
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion A6
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion Postcard_S
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion Env9
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion C4
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion SRA3
*UIConstraints: *PageRegion Env10 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageRegion EnvDL *JCLPunchLocation 3Hole_P
*UIConstraints: *PageRegion EnvC5 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageRegion EnvC6 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageRegion EnvMonarch *JCLPunchLocation 3Hole_P
*UIConstraints: *PageRegion A6 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageRegion Postcard_S *JCLPunchLocation 3Hole_P
*UIConstraints: *PageRegion Env9 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageRegion C4 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageRegion SRA3 *JCLPunchLocation 3Hole_P
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion Env10
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion EnvDL
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion EnvC5
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion EnvC6
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion EnvMonarch
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion A6
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion Postcard_S
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion Env9
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion C4
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion SRA3
*UIConstraints: *PageRegion Env10 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageRegion EnvDL *JCLPunchLocation 3Hole_L
*UIConstraints: *PageRegion EnvC5 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageRegion EnvC6 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageRegion EnvMonarch *JCLPunchLocation 3Hole_L
*UIConstraints: *PageRegion A6 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageRegion Postcard_S *JCLPunchLocation 3Hole_L
*UIConstraints: *PageRegion Env9 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageRegion C4 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageRegion SRA3 *JCLPunchLocation 3Hole_L
*% =======================================================================================
*% Cosmos - Punch 4Hole/MediaType
*% =======================================================================================
*UIConstraints: *JCLPunchLocation 4Hole_P *MediaType Labels
*UIConstraints: *JCLPunchLocation 4Hole_P *MediaType Transparency
*UIConstraints: *JCLPunchLocation 4Hole_P *MediaType Envelope
*UIConstraints: *JCLPunchLocation 4Hole_P *MediaType Punched
*UIConstraints: *JCLPunchLocation 4Hole_P *MediaType ThickCardStock
*UIConstraints: *MediaType Labels *JCLPunchLocation 4Hole_P
*UIConstraints: *MediaType Transparency *JCLPunchLocation 4Hole_P
*UIConstraints: *MediaType Envelope *JCLPunchLocation 4Hole_P
*UIConstraints: *MediaType Punched *JCLPunchLocation 4Hole_P
*UIConstraints: *MediaType ThickCardStock *JCLPunchLocation 4Hole_P
*UIConstraints: *JCLPunchLocation 4Hole_L *MediaType Labels
*UIConstraints: *JCLPunchLocation 4Hole_L *MediaType Transparency
*UIConstraints: *JCLPunchLocation 4Hole_L *MediaType Envelope
*UIConstraints: *JCLPunchLocation 4Hole_L *MediaType Punched
*UIConstraints: *JCLPunchLocation 4Hole_L *MediaType ThickCardStock
*UIConstraints: *MediaType Labels *JCLPunchLocation 4Hole_L
*UIConstraints: *MediaType Transparency *JCLPunchLocation 4Hole_L
*UIConstraints: *MediaType Envelope *JCLPunchLocation 4Hole_L
*UIConstraints: *MediaType Punched *JCLPunchLocation 4Hole_L
*UIConstraints: *MediaType ThickCardStock *JCLPunchLocation 4Hole_L
*% =======================================================================================
*% Cosmos - Punch 4Hole/PageSize
*% =======================================================================================
*UIConstraints: *JCLPunchLocation 4Hole_P *PageSize Env10
*UIConstraints: *JCLPunchLocation 4Hole_P *PageSize EnvDL
*UIConstraints: *JCLPunchLocation 4Hole_P *PageSize EnvC5
*UIConstraints: *JCLPunchLocation 4Hole_P *PageSize EnvC6
*UIConstraints: *JCLPunchLocation 4Hole_P *PageSize EnvMonarch
*UIConstraints: *JCLPunchLocation 4Hole_P *PageSize A6
*UIConstraints: *JCLPunchLocation 4Hole_P *PageSize Postcard_S
*UIConstraints: *JCLPunchLocation 4Hole_P *PageSize Env9
*UIConstraints: *JCLPunchLocation 4Hole_P *PageSize C4
*UIConstraints: *JCLPunchLocation 4Hole_P *PageSize SRA3
*UIConstraints: *PageSize Env10 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageSize EnvDL *JCLPunchLocation 4Hole_P
*UIConstraints: *PageSize EnvC5 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageSize EnvC6 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageSize EnvMonarch *JCLPunchLocation 4Hole_P
*UIConstraints: *PageSize A6 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageSize Postcard_S *JCLPunchLocation 4Hole_P
*UIConstraints: *PageSize Env9 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageSize C4 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageSize SRA3 *JCLPunchLocation 4Hole_P
*UIConstraints: *JCLPunchLocation 4Hole_L *PageSize Env10
*UIConstraints: *JCLPunchLocation 4Hole_L *PageSize EnvDL
*UIConstraints: *JCLPunchLocation 4Hole_L *PageSize EnvC5
*UIConstraints: *JCLPunchLocation 4Hole_L *PageSize EnvC6
*UIConstraints: *JCLPunchLocation 4Hole_L *PageSize EnvMonarch
*UIConstraints: *JCLPunchLocation 4Hole_L *PageSize A6
*UIConstraints: *JCLPunchLocation 4Hole_L *PageSize Postcard_S
*UIConstraints: *JCLPunchLocation 4Hole_L *PageSize Env9
*UIConstraints: *JCLPunchLocation 4Hole_L *PageSize C4
*UIConstraints: *JCLPunchLocation 4Hole_L *PageSize SRA3
*UIConstraints: *PageSize Env10 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageSize EnvDL *JCLPunchLocation 4Hole_L
*UIConstraints: *PageSize EnvC5 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageSize EnvC6 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageSize EnvMonarch *JCLPunchLocation 4Hole_L
*UIConstraints: *PageSize A6 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageSize Postcard_S *JCLPunchLocation 4Hole_L
*UIConstraints: *PageSize Env9 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageSize C4 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageSize SRA3 *JCLPunchLocation 4Hole_L
*% =======================================================================================
*% Cosmos - JCLPunchLocation 4Hole/PageRegion
*% =======================================================================================
*UIConstraints: *JCLPunchLocation 4Hole_P *PageRegion Env10
*UIConstraints: *JCLPunchLocation 4Hole_P *PageRegion EnvDL
*UIConstraints: *JCLPunchLocation 4Hole_P *PageRegion EnvC5
*UIConstraints: *JCLPunchLocation 4Hole_P *PageRegion EnvC6
*UIConstraints: *JCLPunchLocation 4Hole_P *PageRegion EnvMonarch
*UIConstraints: *JCLPunchLocation 4Hole_P *PageRegion A6
*UIConstraints: *JCLPunchLocation 4Hole_P *PageRegion Postcard_S
*UIConstraints: *JCLPunchLocation 4Hole_P *PageRegion Env9
*UIConstraints: *JCLPunchLocation 4Hole_P *PageRegion C4
*UIConstraints: *JCLPunchLocation 4Hole_P *PageRegion SRA3
*UIConstraints: *PageRegion Env10 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageRegion EnvDL *JCLPunchLocation 4Hole_P
*UIConstraints: *PageRegion EnvC5 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageRegion EnvC6 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageRegion EnvMonarch *JCLPunchLocation 4Hole_P
*UIConstraints: *PageRegion A6 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageRegion Postcard_S *JCLPunchLocation 4Hole_P
*UIConstraints: *PageRegion Env9 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageRegion C4 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageRegion SRA3 *JCLPunchLocation 4Hole_P
*UIConstraints: *JCLPunchLocation 4Hole_L *PageRegion Env10
*UIConstraints: *JCLPunchLocation 4Hole_L *PageRegion EnvDL
*UIConstraints: *JCLPunchLocation 4Hole_L *PageRegion EnvC5
*UIConstraints: *JCLPunchLocation 4Hole_L *PageRegion EnvC6
*UIConstraints: *JCLPunchLocation 4Hole_L *PageRegion EnvMonarch
*UIConstraints: *JCLPunchLocation 4Hole_L *PageRegion A6
*UIConstraints: *JCLPunchLocation 4Hole_L *PageRegion Postcard_S
*UIConstraints: *JCLPunchLocation 4Hole_L *PageRegion Env9
*UIConstraints: *JCLPunchLocation 4Hole_L *PageRegion C4
*UIConstraints: *JCLPunchLocation 4Hole_L *PageRegion SRA3
*UIConstraints: *PageRegion Env10 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageRegion EnvDL *JCLPunchLocation 4Hole_L
*UIConstraints: *PageRegion EnvC5 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageRegion EnvC6 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageRegion EnvMonarch *JCLPunchLocation 4Hole_L
*UIConstraints: *PageRegion A6 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageRegion Postcard_S *JCLPunchLocation 4Hole_L
*UIConstraints: *PageRegion Env9 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageRegion C4 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageRegion SRA3 *JCLPunchLocation 4Hole_L
*% =======================================================================================
*% Cosmos - OutputBin/PageSize
*% =======================================================================================
*UIConstraints: *JCLFinisherOutBin Bin3 *PageSize Env10
*UIConstraints: *JCLFinisherOutBin Bin3 *PageSize EnvDL
*UIConstraints: *JCLFinisherOutBin Bin3 *PageSize EnvC5
*UIConstraints: *JCLFinisherOutBin Bin3 *PageSize EnvC6
*UIConstraints: *JCLFinisherOutBin Bin3 *PageSize EnvMonarch
*UIConstraints: *JCLFinisherOutBin Bin3 *PageSize Env9
*UIConstraints: *JCLFinisherOutBin Bin3 *PageSize A6
*UIConstraints: *JCLFinisherOutBin Bin3 *PageSize Postcard_S
*UIConstraints: *JCLFinisherOutBin Bin3 *PageSize C4
*UIConstraints: *JCLFinisherOutBin Bin3 *PageSize 12x18
*UIConstraints: *PageSize Env10 *JCLFinisherOutBin Bin3
*UIConstraints: *PageSize EnvDL *JCLFinisherOutBin Bin3
*UIConstraints: *PageSize EnvC5 *JCLFinisherOutBin Bin3
*UIConstraints: *PageSize EnvC6 *JCLFinisherOutBin Bin3
*UIConstraints: *PageSize EnvMonarch *JCLFinisherOutBin Bin3
*UIConstraints: *PageSize Env9 *JCLFinisherOutBin Bin3
*UIConstraints: *PageSize A6 *JCLFinisherOutBin Bin3
*UIConstraints: *PageSize Postcard_S *JCLFinisherOutBin Bin3
*UIConstraints: *PageSize C4 *JCLFinisherOutBin Bin3
*UIConstraints: *PageSize 12x18 *JCLFinisherOutBin Bin3
*% =======================================================================================
*% Cosmos - OutputBin/PageRegion
*% =======================================================================================
*UIConstraints: *JCLFinisherOutBin Bin3 *PageRegion Env10
*UIConstraints: *JCLFinisherOutBin Bin3 *PageRegion EnvDL
*UIConstraints: *JCLFinisherOutBin Bin3 *PageRegion EnvC5
*UIConstraints: *JCLFinisherOutBin Bin3 *PageRegion EnvC6
*UIConstraints: *JCLFinisherOutBin Bin3 *PageRegion EnvMonarch
*UIConstraints: *JCLFinisherOutBin Bin3 *PageRegion Env9
*UIConstraints: *JCLFinisherOutBin Bin3 *PageRegion A6
*UIConstraints: *JCLFinisherOutBin Bin3 *PageRegion Postcard_S
*UIConstraints: *JCLFinisherOutBin Bin3 *PageRegion C4
*UIConstraints: *JCLFinisherOutBin Bin3 *PageRegion 12x18
*UIConstraints: *PageRegion Env10 *JCLFinisherOutBin Bin3
*UIConstraints: *PageRegion EnvDL *JCLFinisherOutBin Bin3
*UIConstraints: *PageRegion EnvC5 *JCLFinisherOutBin Bin3
*UIConstraints: *PageRegion EnvC6 *JCLFinisherOutBin Bin3
*UIConstraints: *PageRegion EnvMonarch *JCLFinisherOutBin Bin3
*UIConstraints: *PageRegion Env9 *JCLFinisherOutBin Bin3
*UIConstraints: *PageRegion A6 *JCLFinisherOutBin Bin3
*UIConstraints: *PageRegion Postcard_S *JCLFinisherOutBin Bin3
*UIConstraints: *PageRegion C4 *JCLFinisherOutBin Bin3
*UIConstraints: *PageRegion 12x18 *JCLFinisherOutBin Bin3
*% =======================================================================================
*% Cosmos - OutputBin/MediaType
*% =======================================================================================
*UIConstraints: *JCLFinisherOutBin Bin3 *MediaType Labels
*UIConstraints: *JCLFinisherOutBin Bin3 *MediaType Transparency
*UIConstraints: *JCLFinisherOutBin Bin3 *MediaType Envelope
*UIConstraints: *JCLFinisherOutBin Bin3 *MediaType HeavyWeight
*UIConstraints: *JCLFinisherOutBin Bin3 *MediaType ExtraHeavyWeight1
*UIConstraints: *JCLFinisherOutBin Bin3 *MediaType ThickCardStock
*UIConstraints: *JCLFinisherOutBin Bin3 *MediaType Archive
*UIConstraints: *MediaType Labels *JCLFinisherOutBin Bin3
*UIConstraints: *MediaType Transparency *JCLFinisherOutBin Bin3
*UIConstraints: *MediaType Envelope *JCLFinisherOutBin Bin3
*UIConstraints: *MediaType HeavyWeight *JCLFinisherOutBin Bin3
*UIConstraints: *MediaType ExtraHeavyWeight1 *JCLFinisherOutBin Bin3
*UIConstraints: *MediaType ThickCardStock *JCLFinisherOutBin Bin3
*UIConstraints: *MediaType Archive *JCLFinisherOutBin Bin3
*% =======================================================================================
*% StapleLocation - StaplePosition
*% =======================================================================================
*UIConstraints: *JCLStapleLocation None *JCLStaplePosition Left
*UIConstraints: *JCLStapleLocation None *JCLStaplePosition Right
*UIConstraints: *JCLStapleLocation None *JCLStaplePosition Top
*UIConstraints: *JCLStaplePosition Left *JCLStapleLocation None
*UIConstraints: *JCLStaplePosition Right *JCLStapleLocation None
*UIConstraints: *JCLStaplePosition Top *JCLStapleLocation None
*% =======================================================================================
*% PunchLocation - PunchPosition
*% =======================================================================================
*UIConstraints: *JCLPunchLocation None *JCLPunchPosition Left
*UIConstraints: *JCLPunchLocation None *JCLPunchPosition Right
*UIConstraints: *JCLPunchLocation None *JCLPunchPosition Top
*UIConstraints: *JCLPunchPosition Left *JCLPunchLocation None
*UIConstraints: *JCLPunchPosition Right *JCLPunchLocation None
*UIConstraints: *JCLPunchPosition Top *JCLPunchLocation None
*% =======================================================================================
*% ExtraHeavyWeight1 - Auto, Tray1, Tray2, Tray3, Tray3H, Tray4
*% =======================================================================================
*UIConstraints: *MediaType ExtraHeavyWeight1 *InputSlot Auto
*UIConstraints: *MediaType ExtraHeavyWeight1 *InputSlot Middle
*UIConstraints: *MediaType ExtraHeavyWeight1 *InputSlot Lower
*UIConstraints: *MediaType ExtraHeavyWeight1 *InputSlot Tray3
*UIConstraints: *MediaType ExtraHeavyWeight1 *InputSlot Tray3H
*UIConstraints: *MediaType ExtraHeavyWeight1 *InputSlot Tray4
*UIConstraints: *InputSlot Auto *MediaType ExtraHeavyWeight1
*UIConstraints: *InputSlot Middle *MediaType ExtraHeavyWeight1
*UIConstraints: *InputSlot Lower *MediaType ExtraHeavyWeight1
*UIConstraints: *InputSlot Tray3 *MediaType ExtraHeavyWeight1
*UIConstraints: *InputSlot Tray3H *MediaType ExtraHeavyWeight1
*UIConstraints: *InputSlot Tray4 *MediaType ExtraHeavyWeight1
*% =======================================================================================
*% ThickCardStock - Auto, Tray1, Tray2, Tray3, Tray3H, Tray4
*% =======================================================================================
*UIConstraints: *MediaType ThickCardStock *InputSlot Auto
*UIConstraints: *MediaType ThickCardStock *InputSlot Middle
*UIConstraints: *MediaType ThickCardStock *InputSlot Lower
*UIConstraints: *MediaType ThickCardStock *InputSlot Tray3
*UIConstraints: *MediaType ThickCardStock *InputSlot Tray3H
*UIConstraints: *MediaType ThickCardStock *InputSlot Tray4
*UIConstraints: *InputSlot Auto *MediaType ThickCardStock
*UIConstraints: *InputSlot Middle *MediaType ThickCardStock
*UIConstraints: *InputSlot Lower *MediaType ThickCardStock
*UIConstraints: *InputSlot Tray3 *MediaType ThickCardStock
*UIConstraints: *InputSlot Tray3H *MediaType ThickCardStock
*UIConstraints: *InputSlot Tray4 *MediaType ThickCardStock
*% =======================================================================================
*% Rotate - PageSize
*% =======================================================================================
*UIConstraints: *JCLSortOptions Rotate *PageSize Legal
*UIConstraints: *JCLSortOptions Rotate *PageSize Executive
*UIConstraints: *JCLSortOptions Rotate *PageSize A5
*UIConstraints: *JCLSortOptions Rotate *PageSize B5-JIS
*UIConstraints: *JCLSortOptions Rotate *PageSize US-Folio
*UIConstraints: *JCLSortOptions Rotate *PageSize Env10
*UIConstraints: *JCLSortOptions Rotate *PageSize EnvDL
*UIConstraints: *JCLSortOptions Rotate *PageSize EnvC5
*UIConstraints: *JCLSortOptions Rotate *PageSize EnvC6
*UIConstraints: *JCLSortOptions Rotate *PageSize B5-ISO
*UIConstraints: *JCLSortOptions Rotate *PageSize EnvMonarch
*UIConstraints: *JCLSortOptions Rotate *PageSize A6
*UIConstraints: *JCLSortOptions Rotate *PageSize Oficio_S
*UIConstraints: *JCLSortOptions Rotate *PageSize Statement
*UIConstraints: *JCLSortOptions Rotate *PageSize Postcard_S
*UIConstraints: *JCLSortOptions Rotate *PageSize A3
*UIConstraints: *JCLSortOptions Rotate *PageSize Env9
*UIConstraints: *JCLSortOptions Rotate *PageSize C4
*UIConstraints: *JCLSortOptions Rotate *PageSize B4
*UIConstraints: *JCLSortOptions Rotate *PageSize SRA3
*UIConstraints: *JCLSortOptions Rotate *PageSize 8K
*UIConstraints: *JCLSortOptions Rotate *PageSize 16K
*UIConstraints: *JCLSortOptions Rotate *PageSize 12x18
*UIConstraints: *JCLSortOptions Rotate *PageSize Tabloid
*UIConstraints: *PageSize Legal *JCLSortOptions Rotate
*UIConstraints: *PageSize Executive *JCLSortOptions Rotate
*UIConstraints: *PageSize A5 *JCLSortOptions Rotate
*UIConstraints: *PageSize B5-JIS *JCLSortOptions Rotate
*UIConstraints: *PageSize US-Folio *JCLSortOptions Rotate
*UIConstraints: *PageSize Env10 *JCLSortOptions Rotate
*UIConstraints: *PageSize EnvDL *JCLSortOptions Rotate
*UIConstraints: *PageSize EnvC5 *JCLSortOptions Rotate
*UIConstraints: *PageSize EnvC6 *JCLSortOptions Rotate
*UIConstraints: *PageSize B5-ISO *JCLSortOptions Rotate
*UIConstraints: *PageSize EnvMonarch *JCLSortOptions Rotate
*UIConstraints: *PageSize A6 *JCLSortOptions Rotate
*UIConstraints: *PageSize Oficio_S *JCLSortOptions Rotate
*UIConstraints: *PageSize Statement *JCLSortOptions Rotate
*UIConstraints: *PageSize Postcard_S *JCLSortOptions Rotate
*UIConstraints: *PageSize A3 *JCLSortOptions Rotate
*UIConstraints: *PageSize Env9 *JCLSortOptions Rotate
*UIConstraints: *PageSize C4 *JCLSortOptions Rotate
*UIConstraints: *PageSize B4 *JCLSortOptions Rotate
*UIConstraints: *PageSize SRA3 *JCLSortOptions Rotate
*UIConstraints: *PageSize 8K *JCLSortOptions Rotate
*UIConstraints: *PageSize 16K *JCLSortOptions Rotate
*UIConstraints: *PageSize 12x18 *JCLSortOptions Rotate
*UIConstraints: *PageSize Tabloid *JCLSortOptions Rotate
*% =======================================================================================
*% Rotate - PageRegion
*% =======================================================================================
*UIConstraints: *JCLSortOptions Rotate *PageRegion Legal
*UIConstraints: *JCLSortOptions Rotate *PageRegion Executive
*UIConstraints: *JCLSortOptions Rotate *PageRegion A5
*UIConstraints: *JCLSortOptions Rotate *PageRegion B5-JIS
*UIConstraints: *JCLSortOptions Rotate *PageRegion US-Folio
*UIConstraints: *JCLSortOptions Rotate *PageRegion Env10
*UIConstraints: *JCLSortOptions Rotate *PageRegion EnvDL
*UIConstraints: *JCLSortOptions Rotate *PageRegion EnvC5
*UIConstraints: *JCLSortOptions Rotate *PageRegion EnvC6
*UIConstraints: *JCLSortOptions Rotate *PageRegion B5-ISO
*UIConstraints: *JCLSortOptions Rotate *PageRegion EnvMonarch
*UIConstraints: *JCLSortOptions Rotate *PageRegion A6
*UIConstraints: *JCLSortOptions Rotate *PageRegion Oficio_S
*UIConstraints: *JCLSortOptions Rotate *PageRegion Statement
*UIConstraints: *JCLSortOptions Rotate *PageRegion Postcard_S
*UIConstraints: *JCLSortOptions Rotate *PageRegion A3
*UIConstraints: *JCLSortOptions Rotate *PageRegion Env9
*UIConstraints: *JCLSortOptions Rotate *PageRegion C4
*UIConstraints: *JCLSortOptions Rotate *PageRegion B4
*UIConstraints: *JCLSortOptions Rotate *PageRegion SRA3
*UIConstraints: *JCLSortOptions Rotate *PageRegion 8K
*UIConstraints: *JCLSortOptions Rotate *PageRegion 16K
*UIConstraints: *JCLSortOptions Rotate *PageRegion 12x18
*UIConstraints: *JCLSortOptions Rotate *PageRegion Tabloid
*UIConstraints: *PageRegion Legal *JCLSortOptions Rotate
*UIConstraints: *PageRegion Executive *JCLSortOptions Rotate
*UIConstraints: *PageRegion A5 *JCLSortOptions Rotate
*UIConstraints: *PageRegion B5-JIS *JCLSortOptions Rotate
*UIConstraints: *PageRegion US-Folio *JCLSortOptions Rotate
*UIConstraints: *PageRegion Env10 *JCLSortOptions Rotate
*UIConstraints: *PageRegion EnvDL *JCLSortOptions Rotate
*UIConstraints: *PageRegion EnvC5 *JCLSortOptions Rotate
*UIConstraints: *PageRegion EnvC6 *JCLSortOptions Rotate
*UIConstraints: *PageRegion B5-ISO *JCLSortOptions Rotate
*UIConstraints: *PageRegion EnvMonarch *JCLSortOptions Rotate
*UIConstraints: *PageRegion A6 *JCLSortOptions Rotate
*UIConstraints: *PageRegion Oficio_S *JCLSortOptions Rotate
*UIConstraints: *PageRegion Statement *JCLSortOptions Rotate
*UIConstraints: *PageRegion Postcard_S *JCLSortOptions Rotate
*UIConstraints: *PageRegion A3 *JCLSortOptions Rotate
*UIConstraints: *PageRegion Env9 *JCLSortOptions Rotate
*UIConstraints: *PageRegion C4 *JCLSortOptions Rotate
*UIConstraints: *PageRegion B4 *JCLSortOptions Rotate
*UIConstraints: *PageRegion SRA3 *JCLSortOptions Rotate
*UIConstraints: *PageRegion 8K *JCLSortOptions Rotate
*UIConstraints: *PageRegion 16K *JCLSortOptions Rotate
*UIConstraints: *PageRegion 12x18 *JCLSortOptions Rotate
*UIConstraints: *PageRegion Tabloid *JCLSortOptions Rotate
*% =======================================================================================
*% Rotate - InputSlot
*% =======================================================================================
*UIConstraints: *JCLSortOptions Rotate *InputSlot Upper
*UIConstraints: *JCLSortOptions Rotate *InputSlot Middle
*UIConstraints: *JCLSortOptions Rotate *InputSlot Lower
*UIConstraints: *JCLSortOptions Rotate *InputSlot Tray3
*UIConstraints: *JCLSortOptions Rotate *InputSlot Tray3H
*UIConstraints: *JCLSortOptions Rotate *InputSlot Tray4
*UIConstraints: *InputSlot Upper *JCLSortOptions Rotate
*UIConstraints: *InputSlot Middle *JCLSortOptions Rotate
*UIConstraints: *InputSlot Lower *JCLSortOptions Rotate
*UIConstraints: *InputSlot Tray3 *JCLSortOptions Rotate
*UIConstraints: *InputSlot Tray3H *JCLSortOptions Rotate
*UIConstraints: *InputSlot Tray4 *JCLSortOptions Rotate
*% =======================================================================================
*% Rotate - Cover Page
*% =======================================================================================
*UIConstraints: *JCLSortOptions Rotate *JCLFrontCoverOption BlankPreprinted
*UIConstraints: *JCLSortOptions Rotate *JCLFrontCoverOption 1SidedPrinted
*UIConstraints: *JCLSortOptions Rotate *JCLFrontCoverOption 2SidedPrinted
*UIConstraints: *JCLFrontCoverOption BlankPreprinted *JCLSortOptions Rotate
*UIConstraints: *JCLFrontCoverOption 1SidedPrinted *JCLSortOptions Rotate
*UIConstraints: *JCLFrontCoverOption 2SidedPrinted *JCLSortOptions Rotate
*UIConstraints: *JCLSortOptions Rotate *JCLBackCoverOption BlankPreprinted
*UIConstraints: *JCLSortOptions Rotate *JCLBackCoverOption 1SidedPrinted
*UIConstraints: *JCLSortOptions Rotate *JCLBackCoverOption 2SidedPrinted
*UIConstraints: *JCLBackCoverOption BlankPreprinted *JCLSortOptions Rotate
*UIConstraints: *JCLBackCoverOption 1SidedPrinted *JCLSortOptions Rotate
*UIConstraints: *JCLBackCoverOption 2SidedPrinted *JCLSortOptions Rotate
*UIConstraints: *JCLSortOptions Rotate *JCLFrontBackCoverOption BlankPreprinted
*UIConstraints: *JCLSortOptions Rotate *JCLFrontBackCoverOption 1SidedPrinted
*UIConstraints: *JCLSortOptions Rotate *JCLFrontBackCoverOption 2SidedPrinted
*UIConstraints: *JCLFrontBackCoverOption BlankPreprinted *JCLSortOptions Rotate
*UIConstraints: *JCLFrontBackCoverOption 1SidedPrinted *JCLSortOptions Rotate
*UIConstraints: *JCLFrontBackCoverOption 2SidedPrinted *JCLSortOptions Rotate
*% =======================================================================================
*% Rotate - OHP Separator
*% =======================================================================================
*UIConstraints: *JCLSortOptions Rotate *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *JCLSortOptions Rotate *JCLSeparatorsOption BlankSeparator
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *JCLSortOptions Rotate
*UIConstraints: *JCLSeparatorsOption BlankSeparator *JCLSortOptions Rotate
*% =========================================================
*% Staple - Finisher Output bin 1,2,3
*% =========================================================
*UIConstraints: *JCLStapleLocation 1Staple_P *JCLFinisherOutBin Bin1
*UIConstraints: *JCLStapleLocation 1Staple_P *JCLFinisherOutBin Bin2
*UIConstraints: *JCLStapleLocation 1Staple_P *JCLFinisherOutBin Bin3
*UIConstraints: *JCLStapleLocation 1Staple_L *JCLFinisherOutBin Bin1
*UIConstraints: *JCLStapleLocation 1Staple_L *JCLFinisherOutBin Bin2
*UIConstraints: *JCLStapleLocation 1Staple_L *JCLFinisherOutBin Bin3
*UIConstraints: *JCLStapleLocation 2Staple_P *JCLFinisherOutBin Bin1
*UIConstraints: *JCLStapleLocation 2Staple_P *JCLFinisherOutBin Bin2
*UIConstraints: *JCLStapleLocation 2Staple_P *JCLFinisherOutBin Bin3
*UIConstraints: *JCLStapleLocation 2Staple_L *JCLFinisherOutBin Bin1
*UIConstraints: *JCLStapleLocation 2Staple_L *JCLFinisherOutBin Bin2
*UIConstraints: *JCLStapleLocation 2Staple_L *JCLFinisherOutBin Bin3
*UIConstraints: *JCLFinisherOutBin Bin1 *JCLStapleLocation 1Staple_P
*UIConstraints: *JCLFinisherOutBin Bin2 *JCLStapleLocation 1Staple_P
*UIConstraints: *JCLFinisherOutBin Bin3 *JCLStapleLocation 1Staple_P
*UIConstraints: *JCLFinisherOutBin Bin1 *JCLStapleLocation 1Staple_L
*UIConstraints: *JCLFinisherOutBin Bin2 *JCLStapleLocation 1Staple_L
*UIConstraints: *JCLFinisherOutBin Bin3 *JCLStapleLocation 1Staple_L
*UIConstraints: *JCLFinisherOutBin Bin1 *JCLStapleLocation 2Staple_P
*UIConstraints: *JCLFinisherOutBin Bin2 *JCLStapleLocation 2Staple_P
*UIConstraints: *JCLFinisherOutBin Bin3 *JCLStapleLocation 2Staple_P
*UIConstraints: *JCLFinisherOutBin Bin1 *JCLStapleLocation 2Staple_L
*UIConstraints: *JCLFinisherOutBin Bin2 *JCLStapleLocation 2Staple_L
*UIConstraints: *JCLFinisherOutBin Bin3 *JCLStapleLocation 2Staple_L
*% =========================================================
*% Punch - Finisher Output bin 1,2,3
*% =========================================================
*UIConstraints: *JCLPunchLocation 2Hole_P *JCLFinisherOutBin Bin1
*UIConstraints: *JCLPunchLocation 2Hole_P *JCLFinisherOutBin Bin2
*UIConstraints: *JCLPunchLocation 2Hole_P *JCLFinisherOutBin Bin3
*UIConstraints: *JCLPunchLocation 2Hole_L *JCLFinisherOutBin Bin1
*UIConstraints: *JCLPunchLocation 2Hole_L *JCLFinisherOutBin Bin2
*UIConstraints: *JCLPunchLocation 2Hole_L *JCLFinisherOutBin Bin3
*UIConstraints: *JCLPunchLocation 3Hole_P *JCLFinisherOutBin Bin1
*UIConstraints: *JCLPunchLocation 3Hole_P *JCLFinisherOutBin Bin2
*UIConstraints: *JCLPunchLocation 3Hole_P *JCLFinisherOutBin Bin3
*UIConstraints: *JCLPunchLocation 3Hole_L *JCLFinisherOutBin Bin1
*UIConstraints: *JCLPunchLocation 3Hole_L *JCLFinisherOutBin Bin2
*UIConstraints: *JCLPunchLocation 3Hole_L *JCLFinisherOutBin Bin3
*UIConstraints: *JCLPunchLocation 4Hole_P *JCLFinisherOutBin Bin1
*UIConstraints: *JCLPunchLocation 4Hole_P *JCLFinisherOutBin Bin2
*UIConstraints: *JCLPunchLocation 4Hole_P *JCLFinisherOutBin Bin3
*UIConstraints: *JCLPunchLocation 4Hole_L *JCLFinisherOutBin Bin1
*UIConstraints: *JCLPunchLocation 4Hole_L *JCLFinisherOutBin Bin2
*UIConstraints: *JCLPunchLocation 4Hole_L *JCLFinisherOutBin Bin3
*UIConstraints: *JCLFinisherOutBin Bin1 *JCLPunchLocation 2Hole_P
*UIConstraints: *JCLFinisherOutBin Bin2 *JCLPunchLocation 2Hole_P
*UIConstraints: *JCLFinisherOutBin Bin3 *JCLPunchLocation 2Hole_P
*UIConstraints: *JCLFinisherOutBin Bin1 *JCLPunchLocation 2Hole_L
*UIConstraints: *JCLFinisherOutBin Bin2 *JCLPunchLocation 2Hole_L
*UIConstraints: *JCLFinisherOutBin Bin3 *JCLPunchLocation 2Hole_L
*UIConstraints: *JCLFinisherOutBin Bin1 *JCLPunchLocation 3Hole_P
*UIConstraints: *JCLFinisherOutBin Bin2 *JCLPunchLocation 3Hole_P
*UIConstraints: *JCLFinisherOutBin Bin3 *JCLPunchLocation 3Hole_P
*UIConstraints: *JCLFinisherOutBin Bin1 *JCLPunchLocation 3Hole_L
*UIConstraints: *JCLFinisherOutBin Bin2 *JCLPunchLocation 3Hole_L
*UIConstraints: *JCLFinisherOutBin Bin3 *JCLPunchLocation 3Hole_L
*UIConstraints: *JCLFinisherOutBin Bin1 *JCLPunchLocation 4Hole_P
*UIConstraints: *JCLFinisherOutBin Bin2 *JCLPunchLocation 4Hole_P
*UIConstraints: *JCLFinisherOutBin Bin3 *JCLPunchLocation 4Hole_P
*UIConstraints: *JCLFinisherOutBin Bin1 *JCLPunchLocation 4Hole_L
*UIConstraints: *JCLFinisherOutBin Bin2 *JCLPunchLocation 4Hole_L
*UIConstraints: *JCLFinisherOutBin Bin3 *JCLPunchLocation 4Hole_L
*% =========================================================
*% Offset - Finisher Output Bin2(Top Bin)
*% =========================================================
*UIConstraints: *JCLSortOptions Offset *JCLFinisherOutBin Bin2
*UIConstraints: *JCLFinisherOutBin Bin2 *JCLSortOptions Offset
*% ++++++++++++++++++++++
*% Font Information
*% ++++++++++++++++++++++
*DefaultFont: Courier
*Font AlbertusMT-Italic: Standard "(001.001)" Standard ROM
*Font AlbertusMT-Light: Standard "(001.001)" Standard ROM
*Font AlbertusMT: Standard "(001.001)" Standard ROM
*Font AntiqueOlive-Bold: Standard "(001.001)" Standard ROM
*Font AntiqueOlive-Compact: Standard "(001.001)" Standard ROM
*Font AntiqueOlive-Italic: Standard "(001.001)" Standard ROM
*Font AntiqueOlive-Roman: Standard "(001.001)" Standard ROM
*Font Apple-Chancery: Standard "(001.001)" ExtendedRoman ROM
*Font Arial-BoldItalicMT: Standard "(001.001)" Standard ROM
*Font Arial-BoldMT: Standard "(001.001)" Standard ROM
*Font Arial-ItalicMT: Standard "(001.001)" Standard ROM
*Font ArialMT: Standard "(001.001)" Standard ROM
*Font AvantGarde-Book: Standard "(001.001)" Standard ROM
*Font AvantGarde-BookOblique: Standard "(001.001)" Standard ROM
*Font AvantGarde-Demi: Standard "(001.001)" Standard ROM
*Font AvantGarde-DemiOblique: Standard "(001.001)" Standard ROM
*Font Bodoni-Bold: Standard "(001.001)" Standard ROM
*Font Bodoni-BoldItalic: Standard "(001.001)" Standard ROM
*Font Bodoni-Italic: Standard "(001.001)" Standard ROM
*Font Bodoni-Poster: Standard "(001.001)" Standard ROM
*Font Bodoni-PosterCompressed: Standard "(001.001)" Standard ROM
*Font Bodoni: Standard "(001.001)" Standard ROM
*Font Bookman-Demi: Standard "(001.001)" Standard ROM
*Font Bookman-DemiItalic: Standard "(001.001)" Standard ROM
*Font Bookman-Light: Standard "(001.001)" Standard ROM
*Font Bookman-LightItalic: Standard "(001.001)" Standard ROM
*Font Candid: Special "(001.001)" Special ROM
*Font Chicago: Standard "(001.001)" ExtendedRoman ROM
*Font Clarendon-Bold: Standard "(001.001)" Standard ROM
*Font Clarendon-Light: Standard "(001.001)" Standard ROM
*Font Clarendon: Standard "(001.001)" Standard ROM
*Font CooperBlack-Italic: Standard "(001.001)" Standard ROM
*Font CooperBlack: Standard "(001.001)" Standard ROM
*Font Copperplate-ThirtyThreeBC: Standard "(001.001)" Standard ROM
*Font Copperplate-ThirtyTwoBC: Standard "(001.001)" Standard ROM
*Font Coronet-Regular: Standard "(001.001)" Standard ROM
*Font Courier-Bold: Standard "(001.001)" Standard ROM
*Font Courier-BoldOblique: Standard "(001.001)" Standard ROM
*Font Courier-Oblique: Standard "(001.001)" Standard ROM
*Font Courier: Standard "(001.001)" Standard ROM
*Font Eurostile-Bold: Standard "(001.001)" Standard ROM
*Font Eurostile-BoldExtendedTwo: Standard "(001.001)" Standard ROM
*Font Eurostile-ExtendedTwo: Standard "(001.001)" Standard ROM
*Font Eurostile: Standard "(001.001)" Standard ROM
*Font Geneva: Standard "(001.001)" ExtendedRoman ROM
*Font GillSans-Bold: Standard "(001.001)" Standard ROM
*Font GillSans-BoldCondensed: Standard "(001.001)" Standard ROM
*Font GillSans-BoldItalic: Standard "(001.001)" Standard ROM
*Font GillSans-Condensed: Standard "(001.001)" Standard ROM
*Font GillSans-ExtraBold: Standard "(001.001)" Standard ROM
*Font GillSans-Italic: Standard "(001.001)" Standard ROM
*Font GillSans-Light: Standard "(001.001)" Standard ROM
*Font GillSans-LightItalic: Standard "(001.001)" Standard ROM
*Font GillSans: Standard "(001.001)" Standard ROM
*Font Goudy-Bold: Standard "(001.001)" Standard ROM
*Font Goudy-BoldItalic: Standard "(001.000)" Standard ROM
*Font Goudy-ExtraBold: Standard "(001.001)" Standard ROM
*Font Goudy-Italic: Standard "(001.001)" Standard ROM
*Font Goudy: Standard "(001.001)" Standard ROM
*Font Helvetica-Bold: Standard "(001.001)" Standard ROM
*Font Helvetica-BoldOblique: Standard "(001.001)" Standard ROM
*Font Helvetica-Condensed-Bold: Standard "(001.001)" Standard ROM
*Font Helvetica-Condensed-BoldObl: Standard "(001.001)" Standard ROM
*Font Helvetica-Condensed-Oblique: Standard "(001.001)" Standard ROM
*Font Helvetica-Condensed: Standard "(001.001)" Standard ROM
*Font Helvetica-Narrow-Bold: Standard "(001.001)" Standard ROM
*Font Helvetica-Narrow-BoldOblique: Standard "(001.001)" Standard ROM
*Font Helvetica-Narrow-Oblique: Standard "(001.001)" Standard ROM
*Font Helvetica-Narrow: Standard "(001.001)" Standard ROM
*Font Helvetica-Oblique: Standard "(001.001)" Standard ROM
*Font Helvetica: Standard "(001.001)" Standard ROM
*Font HoeflerText-Black: Standard "(001.001)" ExtendedRoman ROM
*Font HoeflerText-BlackItalic: Standard "(001.001)" Standard ROM
*Font HoeflerText-Italic: Standard "(001.001)" ExtendedRoman ROM
*Font HoeflerText-Ornaments: Special "(001.001)" Special ROM
*Font HoeflerText-Regular: Standard "(001.001)" Standard ROM
*Font JoannaMT-Bold: Standard "(001.001)" Standard ROM
*Font JoannaMT-BoldItalic: Standard "(001.001)" Standard ROM
*Font JoannaMT-Italic: Standard "(001.001)" Standard ROM
*Font JoannaMT: Standard "(001.001)" Standard ROM
*Font LetterGothic-Bold: Standard "(001.001)" Standard ROM
*Font LetterGothic-BoldSlanted: Standard "(001.001)" Standard ROM
*Font LetterGothic-Slanted: Standard "(001.001)" Standard ROM
*Font LetterGothic: Standard "(001.001)" Standard ROM
*Font LubalinGraph-Book: Standard "(001.001)" Standard ROM
*Font LubalinGraph-BookOblique: Standard "(001.001)" Standard ROM
*Font LubalinGraph-Demi: Standard "(001.001)" Standard ROM
*Font LubalinGraph-DemiOblique: Standard "(001.001)" Standard ROM
*Font Marigold: Standard "(001.001)" Standard ROM
*Font Monaco: Standard "(001.001)" ExtendedRoman ROM
*Font MonaLisa-Recut: Standard "(001.001)" Standard ROM
*Font NewCenturySchlbk-Bold: Standard "(001.001)" Standard ROM
*Font NewCenturySchlbk-BoldItalic: Standard "(001.001)" Standard ROM
*Font NewCenturySchlbk-Italic: Standard "(001.001)" Standard ROM
*Font NewCenturySchlbk-Roman: Standard "(001.001)" Standard ROM
*Font NewYork: Standard "(001.001)" ExtendedRoman ROM
*Font Optima-Bold: Standard "(001.001)" Standard ROM
*Font Optima-BoldItalic: Standard "(001.001)" Standard ROM
*Font Optima-Italic: Standard "(001.001)" Standard ROM
*Font Optima: Standard "(001.001)" Standard ROM
*Font Oxford: Standard "(001.001)" Standard ROM
*Font Palatino-Bold: Standard "(001.001)" Standard ROM
*Font Palatino-BoldItalic: Standard "(001.001)" Standard ROM
*Font Palatino-Italic: Standard "(001.001)" Standard ROM
*Font Palatino-Roman: Standard "(001.001)" Standard ROM
*Font StempelGaramond-Bold: Standard "(001.001)" Standard ROM
*Font StempelGaramond-BoldItalic: Standard "(001.001)" Standard ROM
*Font StempelGaramond-Italic: Standard "(001.001)" Standard ROM
*Font StempelGaramond-Roman: Standard "(001.001)" Standard ROM
*Font Symbol: Special "(001.001)" Special ROM
*Font Taffy: Standard "(001.001)" Standard ROM
*Font Times-Bold: Standard "(001.001)" Standard ROM
*Font Times-BoldItalic: Standard "(001.001)" Standard ROM
*Font Times-Italic: Standard "(001.001)" Standard ROM
*Font Times-Roman: Standard "(001.001)" Standard ROM
*Font TimesNewRomanPS-BoldItalicMT: Standard "(001.001)" Standard ROM
*Font TimesNewRomanPS-BoldMT: Standard "(001.001)" Standard ROM
*Font TimesNewRomanPS-ItalicMT: Standard "(001.001)" Standard ROM
*Font TimesNewRomanPSMT: Standard "(001.001)" Standard ROM
*Font Univers-Bold: Standard "(001.001)" Standard ROM
*Font Univers-BoldExt: Standard "(001.001)" Standard ROM
*Font Univers-BoldExtObl: Standard "(001.001)" Standard ROM
*Font Univers-BoldOblique: Standard "(001.001)" Standard ROM
*Font Univers-Condensed: Standard "(001.001)" Standard ROM
*Font Univers-CondensedBold: Standard "(001.001)" Standard ROM
*Font Univers-CondensedBoldOblique: Standard "(001.001)" Standard ROM
*Font Univers-CondensedOblique: Standard "(001.001)" Standard ROM
*Font Univers-Extended: Standard "(001.001)" Standard ROM
*Font Univers-ExtendedObl: Standard "(001.001)" Standard ROM
*Font Univers-Light: Standard "(001.001)" Standard ROM
*Font Univers-LightOblique: Standard "(001.001)" Standard ROM
*Font Univers-Oblique: Standard "(001.001)" Standard ROM
*Font Univers: Standard "(001.001)" Standard ROM
*Font Wingdings-Regular: Special "(001.001)" Special ROM
*Font ZapfChancery-MediumItalic: Standard "(001.001)" Standard ROM
*Font ZapfDingbats: Special "(001.001)" Special ROM
*?FontQuery: "save
{count 1 gt
{exch dup 127 string cvs (/)print print (:)print
/Font resourcestatus
{pop pop (Yes)} {(No)} ifelse =
}
{exit}
ifelse
} bind loop
(*) = flush
restore"
*End
*?FontList: "save
(*) {cvn ==} 128 string /Font resourceforall
(*) = flush
restore"
*End
|