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
|
*PPD-Adobe: "4.3"
*%
*% Printer Description file
*% for "Infotec IS 2265 PS"
*%
*% CreationDate: 2005/06/06
*% Modified: 2016/04/22
*%
*% COPYRIGHT (C) 2005-2016 RICOH COMPANY, 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.1"
*FormatVersion: "4.3"
*LanguageEncoding: ISOLatin1
*LanguageVersion: English
*ModelName: "Infotec IS 2265"
*PCFileName: "IF1302E3.PPD"
*Manufacturer: "Infotec"
*1284DeviceID: "MFG:infotec;MDL:IS 2265;CMD:POSTSCRIPT;"
*Product: "(infotec IS 2265 PS3)"
*PSVersion: "(3015.102) 2"
*ShortNickName: "Infotec IS 2265 PS"
*NickName: "Infotec IS 2265 PS"
*%========== Basic Device Capabilities ==========
*LanguageLevel: "3"
*ColorDevice: False
*DefaultColorSpace: Gray
*TTRasterizer: Type42
*?TTRasterizer: "
save
42 /FontType resourcestatus
{ pop pop (Type42)} {pop pop (None)} ifelse = flush
restore
"
*End
*FileSystem: True
*?FileSystem: "
save
statusdict /diskonline get exec
{(True)}{(False)}ifelse = flush
restore
"
*End
*Throughput: "65"
*%========== Installable Options ==========
*%========== & System Management ==========
*OpenGroup: InstallableOptions/Installable Options
*OpenUI *Option2/Large Capacity Tray: PickOne
*DefaultOption2: False
*Option2 False/Not Installed: ""
*Option2 True/Installed: ""
*?Option2: "
save
mark
(False)
userdict /86f6369627 known {
userdict /86f6369627 get
/perifdict get /inslot get dup type /arraytype eq {
{
dup 6 eq {(True) exit} if
pop
} forall
}{pop} ifelse
}if
= flush
cleartomark
restore
"
*End
*CloseUI: *Option2
*OpenUI *Option_30/Finisher: PickOne
*DefaultOption_30: None
*Option_30 None/Not Installed: ""
*Option_30 FinEUPHIMPOS/Finisher SR970: ""
*Option_30 FinEUPHPOS/Finisher SR4000: ""
*Option_30 FinVICTORIA/Finisher SR841: ""
*?Option_30: "
save
mark
(None)
userdict /86f6369627 known {
userdict /86f6369627 get
/perifdict get /outslot get dup type /arraytype eq {
{
dup 15 eq {(FinVICTORIA) exit} if
dup 21 eq {(FinEUPHIMPOS) exit} if
dup 22 eq {(FinEUPHPOS) exit} if
pop
} forall
}{pop} ifelse
}if
= flush
cleartomark
restore
"
*End
*CloseUI: *Option_30
*OpenUI *Option_32/Booklet Processor: PickOne
*DefaultOption_32: False
*Option_32 False/Not Installed: ""
*Option_32 Plockmatic/Installed: ""
*?Option_32: "
save
mark
(False)
userdict /86f6369627 known {
userdict /86f6369627 get
/perifdict get /outslot get dup type /arraytype eq {
{
dup 19 eq {(Plockmatic) exit} if
pop
} forall
}{pop} ifelse
}if
= flush
cleartomark
restore
"
*End
*CloseUI: *Option_32
*OpenUI *Option40/Mailbox: PickOne
*DefaultOption40: False
*Option40 False/Not Installed: ""
*Option40 True/Installed: ""
*?Option40: "
save
mark
(False)
userdict /86f6369627 known {
userdict /86f6369627 get
/perifdict get /outslot get dup type /arraytype eq {
{
dup 4 eq {(True) exit} if
pop
} forall
}{pop} ifelse
}if
= flush
cleartomark
restore
"
*End
*CloseUI: *Option40
*OpenUI *Option_50/Z-folding unit: PickOne
*DefaultOption_50: False
*Option_50 False/Not Installed: ""
*Option_50 True/Installed: ""
*?Option_50: "
save
mark
(False)
userdict /86f6369627 known {
userdict /86f6369627 get
/perifdict get /outslot get dup type /arraytype eq {
{
dup 20 eq {(True) exit} if
pop
} forall
}{pop} ifelse
}if
= flush
cleartomark
restore
"
*End
*CloseUI: *Option_50
*CloseGroup: InstallableOptions
*FreeVM: "2261000"
*Password: "0"
*ExitServer: "
count 0 eq
{false}{true exch startjob}ifelse
not {(WARNING: Cannot modify initial VM.) =
(Missing or invalid Password.) =
(Please contact the author.) = flush quit
}if
"
*End
*Reset: "
count 0 eq
{false}{true exch startjob}ifelse
not {(WARNING: Cannot reset printer.) =
(Missing or invalid Password.) =
(Please contact the author.) = flush quit
}if
systemdict /quit get exec
(WARNING: Printer Reset Failed.) = flush
"
*End
*DefaultResolution: 600dpi
*?Resolution: "
save
currentpagedevice /HWResolution get 0 get
( ) cvs print (dpi) = flush
restore
"
*End
*SuggestedJobTimeout: "0"
*SuggestedWaitTimeout: "300"
*PrintPSErrors: True
*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
*%========== Media Selection ==========
*LandscapeOrientation: Minus90
*OpenUI *RIPaperPolicy/Fit to Paper: PickOne
*OrderDependency: 10 AnySetup *RIPaperPolicy
*DefaultRIPaperPolicy: PromptUser
*RIPaperPolicy PromptUser/Prompt User: "
<</DeferredMediaSelection true>> setpagedevice
<</Policies << /PageSize 2 /MediaType 2 >> >> setpagedevice"
*End
*RIPaperPolicy NearestSizeAdjust/Nearest Size and Scale: "
<</DeferredMediaSelection false>> setpagedevice
<</Policies << /PageSize 3 /MediaType 2 >> >> setpagedevice"
*End
*RIPaperPolicy NearestSizeNoAdjust/Nearest Size and Crop: "
<</DeferredMediaSelection false>> setpagedevice
<</Policies << /PageSize 5 /MediaType 2 >> >> setpagedevice"
*End
*CloseUI: *RIPaperPolicy
*OpenUI *PageSize: PickOne
*OrderDependency: 20 AnySetup *PageSize
*DefaultPageSize: Letter
*PageSize A3/A3: "<<
/PageSize [842 1191] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize A4/A4: "<<
/PageSize [595 842] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize A5/A5: "<<
/PageSize [420 595] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize A6/A6: "<<
/PageSize [298 420] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize B4/B4 (JIS): "<<
/PageSize [729 1032] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize B5/B5 (JIS): "<<
/PageSize [516 729] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize Legal/Legal: "<<
/PageSize [612 1008] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize Letter/Letter: "<<
/PageSize [612 792] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize Statement/5.5x8.5: "<<
/PageSize [396 612] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize Tabloid/11x17: "<<
/PageSize [792 1224] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize Executive/Executive: "<<
/PageSize [522 756] /ImagingBBox null>> setpagedevice
false setedgetoedge"
*End
*PageSize F/8x13: "<<
/PageSize [576 936] /ImagingBBox null>> setpagedevice
false setedgetoedge"
*End
*PageSize Folio/8.25x13: "<<
/PageSize [595 935] /ImagingBBox null>> setpagedevice
false setedgetoedge"
*End
*PageSize FanFoldGermanLegal/8.5x13: "<<
/PageSize [612 936] /ImagingBBox null>> setpagedevice
false setedgetoedge"
*End
*PageSize 8Kai/8K: "
<< /PageSize [757 1106] /ImagingBBox null>> setpagedevice
false setedgetoedge"
*End
*PageSize 16Kai/16K: "
<< /PageSize [553 757] /ImagingBBox null>> setpagedevice
false setedgetoedge"
*End
*PageSize A3.FullBleed/A3 (Full Bleed): "<<
/PageSize [842 1191] /ImagingBBox null >> setpagedevice
true setedgetoedge"
*End
*PageSize A4.FullBleed/A4 (Full Bleed): "<<
/PageSize [595 842] /ImagingBBox null >> setpagedevice
true setedgetoedge"
*End
*PageSize A5.FullBleed/A5 (Full Bleed): "<<
/PageSize [420 595] /ImagingBBox null >> setpagedevice
true setedgetoedge"
*End
*PageSize A6.FullBleed/A6 (Full Bleed): "<<
/PageSize [298 420] /ImagingBBox null >> setpagedevice
true setedgetoedge"
*End
*PageSize B4.FullBleed/B4 (JIS) (Full Bleed): "<<
/PageSize [729 1032] /ImagingBBox null >> setpagedevice
true setedgetoedge"
*End
*PageSize B5.FullBleed/B5 (JIS) (Full Bleed): "<<
/PageSize [516 729] /ImagingBBox null >> setpagedevice
true setedgetoedge"
*End
*PageSize Legal.FullBleed/Legal (Full Bleed): "<<
/PageSize [612 1008] /ImagingBBox null >> setpagedevice
true setedgetoedge"
*End
*PageSize Letter.FullBleed/Letter (Full Bleed): "<<
/PageSize [612 792] /ImagingBBox null >> setpagedevice
true setedgetoedge"
*End
*PageSize Statement.FullBleed/5.5x8.5 (Full Bleed): "<<
/PageSize [396 612] /ImagingBBox null >> setpagedevice
true setedgetoedge"
*End
*PageSize Tabloid.FullBleed/11x17 (Full Bleed): "<<
/PageSize [792 1224] /ImagingBBox null >> setpagedevice
true setedgetoedge"
*End
*PageSize Executive.FullBleed/Executive (Full Bleed): "<<
/PageSize [522 756] /ImagingBBox null>> setpagedevice
true setedgetoedge"
*End
*PageSize F.FullBleed/8x13 (Full Bleed): "<<
/PageSize [576 936] /ImagingBBox null>> setpagedevice
true setedgetoedge"
*End
*PageSize Folio.FullBleed/8.25x13 (Full Bleed): "<<
/PageSize [595 935] /ImagingBBox null>> setpagedevice
true setedgetoedge"
*End
*PageSize FanFoldGermanLegal.FullBleed/8.5x13 (Full Bleed): "<<
/PageSize [612 936] /ImagingBBox null>> setpagedevice
true setedgetoedge"
*End
*PageSize 8Kai.FullBleed/8K (Full Bleed): "
<< /PageSize [757 1106] /ImagingBBox null>> setpagedevice
true setedgetoedge"
*End
*PageSize 16Kai.FullBleed/16K (Full Bleed): "
<< /PageSize [553 757] /ImagingBBox null>> setpagedevice
true setedgetoedge"
*End
*?PageSize: "
save
currentpagedevice /PageSize get aload pop
2 copy gt {exch}if (Unknown)
32 dict
dup [842 1191] (A3) put
dup [595 842] (A4) put
dup [420 595] (A5) put
dup [298 420] (A6) put
dup [729 1032] (B4) put
dup [516 729] (B5) put
dup [612 1008] (Legal) put
dup [612 792] (Letter) put
dup [396 612] (HalfLetter) put
dup [792 1224] (11x17) put
dup [522 756] (Executive) put
dup [576 936] (F) put
dup [595 935] (Folio) put
dup [612 936] (FanFoldGermanLegal) put
dup [757 1106] (8Kai) put
dup [553 757] (16Kai) put
dup [842 1191] (A3.FullBleed) put
dup [595 842] (A4.FullBleed) put
dup [420 595] (A5.FullBleed) put
dup [298 420] (A6.FullBleed) put
dup [729 1032] (B4.FullBleed) put
dup [516 729] (B5.FullBleed) put
dup [612 1008] (Legal.FullBleed) put
dup [612 792] (Letter.FullBleed) put
dup [396 612] (HalfLetter.FullBleed) put
dup [792 1224] (11x17.FullBleed) put
dup [522 756] (Executive.FullBleed) put
dup [576 936] (F.FullBleed) put
dup [595 935] (Folio.FullBleed) put
dup [612 936] (FanFoldGermanLegal.FullBleed) put
dup [757 1106] (8Kai.FullBleed) put
dup [553 757] (16Kai.FullBleed) 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: 25 AnySetup *PageRegion
*DefaultPageRegion: Letter
*PageRegion A3/A3: "<<
/PageSize [842 1191] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion A4/A4: "<<
/PageSize [595 842] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion A5/A5: "<<
/PageSize [420 595] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion A6/A6: "<<
/PageSize [298 420] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion B4/B4 (JIS): "<<
/PageSize [729 1032] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion B5/B5 (JIS): "<<
/PageSize [516 729] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion Legal/Legal: "<<
/PageSize [612 1008] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion Letter/Letter: "<<
/PageSize [612 792] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion Statement/5.5x8.5: "<<
/PageSize [396 612] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion Tabloid/11x17: "<<
/PageSize [792 1224] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion Executive/Executive: "<<
/PageSize [522 756] /ImagingBBox null>> setpagedevice
false setedgetoedge"
*End
*PageRegion F/8x13: "<<
/PageSize [576 936] /ImagingBBox null>> setpagedevice
false setedgetoedge"
*End
*PageRegion Folio/8.25x13: "<<
/PageSize [595 935] /ImagingBBox null>> setpagedevice
false setedgetoedge"
*End
*PageRegion FanFoldGermanLegal/8.5x13: "<<
/PageSize [612 936] /ImagingBBox null>> setpagedevice
false setedgetoedge"
*End
*PageRegion 8Kai/8K: "
<< /PageSize [757 1106] /ImagingBBox null>> setpagedevice
false setedgetoedge"
*End
*PageRegion 16Kai/16K: "
<< /PageSize [553 757] /ImagingBBox null>> setpagedevice
false setedgetoedge"
*End
*PageRegion A3.FullBleed/A3 (Full Bleed): "<<
/PageSize [842 1191] /ImagingBBox null >> setpagedevice
true setedgetoedge"
*End
*PageRegion A4.FullBleed/A4 (Full Bleed): "<<
/PageSize [595 842] /ImagingBBox null >> setpagedevice
true setedgetoedge"
*End
*PageRegion A5.FullBleed/A5 (Full Bleed): "<<
/PageSize [420 595] /ImagingBBox null >> setpagedevice
true setedgetoedge"
*End
*PageRegion A6.FullBleed/A6 (Full Bleed): "<<
/PageSize [298 420] /ImagingBBox null >> setpagedevice
true setedgetoedge"
*End
*PageRegion B4.FullBleed/B4 (JIS) (Full Bleed): "<<
/PageSize [729 1032] /ImagingBBox null >> setpagedevice
true setedgetoedge"
*End
*PageRegion B5.FullBleed/B5 (JIS) (Full Bleed): "
/PageSize [516 729] /ImagingBBox null >> setpagedevice
true setedgetoedge"
*End
*PageRegion Legal.FullBleed/Legal (Full Bleed): "<<
/PageSize [612 1008] /ImagingBBox null >> setpagedevice
true setedgetoedge"
*End
*PageRegion Letter.FullBleed/Letter (Full Bleed): "<<
/PageSize [612 792] /ImagingBBox null >> setpagedevice
true setedgetoedge"
*End
*PageRegion Statement.FullBleed/5.5x8.5 (Full Bleed): "<<
/PageSize [396 612] /ImagingBBox null >> setpagedevice
true setedgetoedge"
*End
*PageRegion Tabloid.FullBleed/11x17 (Full Bleed): "<<
/PageSize [792 1224] /ImagingBBox null >> setpagedevice
true setedgetoedge"
*End
*PageRegion Executive.FullBleed/Executive (Full Bleed): "<<
/PageSize [522 756] /ImagingBBox null>> setpagedevice
true setedgetoedge"
*End
*PageRegion F.FullBleed/8x13 (Full Bleed): "<<
/PageSize [576 936] /ImagingBBox null>> setpagedevice
true setedgetoedge"
*End
*PageRegion Folio.FullBleed/8.25x13 (Full Bleed): "<<
/PageSize [595 935] /ImagingBBox null>> setpagedevice
true setedgetoedge"
*End
*PageRegion FanFoldGermanLegal.FullBleed/8.5x13 (Full Bleed): "<<
/PageSize [612 936] /ImagingBBox null>> setpagedevice
true setedgetoedge"
*End
*PageRegion 8Kai.FullBleed/8K (Full Bleed): "
<< /PageSize [757 1106] /ImagingBBox null>> setpagedevice
true setedgetoedge"
*End
*PageRegion 16Kai.FullBleed/16K (Full Bleed): "
<< /PageSize [553 757] /ImagingBBox null>> setpagedevice
true setedgetoedge"
*End
*CloseUI: *PageRegion
*%========== Information About Media Sizes ==========
*DefaultImageableArea: A4
*ImageableArea A3/A3: "12 12 830 1179"
*ImageableArea A4/A4: "12 12 583 830"
*ImageableArea A5/A5: "12 12 408 583"
*ImageableArea A6/A6: "12 12 286 408"
*ImageableArea B4/B4 (JIS): "12 12 717 1020"
*ImageableArea B5/B5 (JIS): "12 12 504 717"
*ImageableArea Legal/Legal: "12 12 600 996"
*ImageableArea Letter/Letter: "12 12 600 780"
*ImageableArea Statement/5.5x8.5: "12 12 384 600"
*ImageableArea Tabloid/11x17: "12 12 780 1212"
*ImageableArea Executive/Executive: "12 12 510 744"
*ImageableArea F/8x13: "12 12 564 924"
*ImageableArea Folio/8.25x13: "12 12 583 923"
*ImageableArea FanFoldGermanLegal/8.5x13: "12 12 600 924"
*ImageableArea 8Kai/8K: "12 12 745 1094"
*ImageableArea 16Kai/16K: "12 12 541 745"
*ImageableArea A3.FullBleed/A3 (Full Bleed): "0 0 842 1190"
*ImageableArea A4.FullBleed/A4 (Full Bleed): "0 0 595 841"
*ImageableArea A5.FullBleed/A5 (Full Bleed): "0 0 420 594"
*ImageableArea A6.FullBleed/A6 (Full Bleed): "0 0 298 419"
*ImageableArea B4.FullBleed/B4 (JIS) (Full Bleed): "0 0 729 1031"
*ImageableArea B5.FullBleed/B5 (JIS) (Full Bleed): "0 0 516 728"
*ImageableArea Legal.FullBleed/Legal (Full Bleed): "0 0 612 1007"
*ImageableArea Letter.FullBleed/Letter (Full Bleed): "0 0 612 791"
*ImageableArea Statement.FullBleed/5.5x8.5 (Full Bleed): "0 0 396 611"
*ImageableArea Tabloid.FullBleed/11x17 (Full Bleed): "0 0 792 1223"
*ImageableArea Executive.FullBleed/Executive (Full Bleed): "0 0 522 755"
*ImageableArea F.FullBleed/8x13 (Full Bleed): "0 0 576 935"
*ImageableArea Folio.FullBleed/8.25x13 (Full Bleed): "0 0 595 934"
*ImageableArea FanFoldGermanLegal.FullBleed/8.5x13 (Full Bleed): "0 0 612 935"
*ImageableArea 8Kai.FullBleed/8K (Full Bleed): "0 0 757 1105"
*ImageableArea 16Kai.FullBleed/16K (Full Bleed): "0 0 553 756"
*?ImageableArea: "
save
/cvp {( ) cvs print ( ) print}bind def
newpath clippath pathbbox 4 -2 roll exch
2 {10000 mul ceiling 10000 div cvp}repeat exch
2 {10000 mul floor 10000 div cvp}repeat flush
restore
"
*End
*DefaultPaperDimension: A4
*PaperDimension A3/A3: "842 1191"
*PaperDimension A4/A4: "595 842"
*PaperDimension A5/A5: "420 595"
*PaperDimension A6/A6: "298 420"
*PaperDimension B4/B4 (JIS): "729 1032"
*PaperDimension B5/B5 (JIS): "516 729"
*PaperDimension Legal/Legal: "612 1008"
*PaperDimension Letter/Letter: "612 792"
*PaperDimension Statement/5.5x8.5: "396 612"
*PaperDimension Tabloid/11x17: "792 1224"
*PaperDimension Executive/Executive: "522 756"
*PaperDimension F/8x13: "576 936"
*PaperDimension Folio/8.25x13: "595 935"
*PaperDimension FanFoldGermanLegal/8.5x13: "612 936"
*PaperDimension 8Kai/8K: "757 1106"
*PaperDimension 16Kai/16K: "553 757"
*PaperDimension A3.FullBleed/A3 (Full Bleed): "842 1190"
*PaperDimension A4.FullBleed/A4 (Full Bleed): "595 841"
*PaperDimension A5.FullBleed/A5 (Full Bleed): "420 594"
*PaperDimension A6.FullBleed/A6 (Full Bleed): "298 419"
*PaperDimension B4.FullBleed/B4 (JIS) (Full Bleed): "729 1031"
*PaperDimension B5.FullBleed/B5 (JIS) (Full Bleed): "516 728"
*PaperDimension Legal.FullBleed/Legal (Full Bleed): "612 1007"
*PaperDimension Letter.FullBleed/Letter (Full Bleed): "612 791"
*PaperDimension Statement.FullBleed/5.5x8.5 (Full Bleed): "396 611"
*PaperDimension Tabloid.FullBleed/11x17 (Full Bleed): "792 1223"
*PaperDimension Executive.FullBleed/Executive (Full Bleed): "522 755"
*PaperDimension F.FullBleed/8x13 (Full Bleed): "576 935"
*PaperDimension Folio.FullBleed/8.25x13 (Full Bleed): "595 934"
*PaperDimension FanFoldGermanLegal.FullBleed/8.5x13 (Full Bleed): "612 935"
*PaperDimension 8Kai.FullBleed/8K (Full Bleed): "757 1105"
*PaperDimension 16Kai.FullBleed/16K (Full Bleed): "553 756"
*%========== Media Handling Features ==========
*OpenUI *InputSlot: PickOne
*OrderDependency: 30 AnySetup *InputSlot
*DefaultInputSlot: Auto
*InputSlot MultiTray/Bypass Tray: "<</MediaPosition 0>> setpagedevice"
*InputSlot 1Tray/Tray 1 (LCT): "<</MediaPosition 1>> setpagedevice"
*InputSlot 2Tray/Tray 2: "<</MediaPosition 2>> setpagedevice"
*InputSlot 3Tray/Tray 3: "<</MediaPosition 3>> setpagedevice"
*InputSlot 4Tray/Large Capacity Tray: "<</MediaPosition 5>> setpagedevice"
*InputSlot Auto/Auto Select: ""
*?InputSlot: "
save
[(MultiTray)(1Tray)(2Tray)(3Tray)(4Tray)]
statusdict /papertray get exec {get}stopped
{pop pop (Unknown)}if = flush
restore
"
*End
*CloseUI: *InputSlot
*%=== Custom Paper Support =================
*LeadingEdge Short: ""
*LeadingEdge Long: ""
*DefaultLeadingEdge: Short
*MaxMediaWidth: "865"
*MaxMediaHeight: "1701"
*HWMargins: 12 12 12 12
*CustomPageSize True: "pop pop pop
<< /PageSize [ 5 -2 roll ] /ImagingBBox null
/Policies <</PageSize 2 /MediaType 2>>
/DeferredMediaSelection true
>> setpagedevice"
*End
*ParamCustomPageSize Width: 1 points 283 865
*ParamCustomPageSize Height: 2 points 396 1701
*ParamCustomPageSize WidthOffset: 3 points 0 0
*ParamCustomPageSize HeightOffset: 4 points 0 0
*ParamCustomPageSize Orientation: 5 int 1 1
*NonUIOrderDependency: 21 AnySetup *CustomPageSize True
*RequiresPageRegion MultiTray: True
*RequiresPageRegion 1Tray: True
*RequiresPageRegion 2Tray: True
*RequiresPageRegion 3Tray: True
*RequiresPageRegion 4Tray: True
*OpenUI *Duplex/Duplex: PickOne
*OrderDependency: 50 AnySetup *Duplex
*DefaultDuplex: None
*Duplex None/Off: "<</Duplex false>>setpagedevice"
*Duplex DuplexNoTumble/Long Edge: "<</Duplex true /Tumble false>>setpagedevice"
*Duplex DuplexTumble/Short Edge: "<</Duplex true /Tumble true>>setpagedevice"
*?Duplex: "
save
currentpagedevice /Duplex get
{currentpagedevice /Tumble get
{(DuplexTumble)}{(DuplexNoTumble)}ifelse
}{(None)}ifelse = flush
restore
"
*End
*CloseUI: *Duplex
*%========== Resolution and Appearance Control ==========
*OpenUI *Resolution/Resolution: PickOne
*OrderDependency: 40 AnySetup *Resolution
*DefaultResolution: 600dpi
*Resolution 600dpi/600 dpi: "<</HWResolution[600 600]>>setpagedevice"
*Resolution 1200dpi/1200 dpi: "<</HWResolution[1200 1200]>>setpagedevice"
*?Resolution: "
save
currentpagedevice /HWResolution get 0 get
( ) cvs print (dpi) = flush
restore
"
*End
*CloseUI: *Resolution
*OpenUI *Collate/Collate: PickOne
*OrderDependency: 200 AnySetup *Collate
*DefaultCollate: False
*Collate False/Off: "<</Collate false>>setpagedevice"
*Collate True/On: "<</Collate true
/CollateDetails <</Type 6 /AlignSet false>>
>>setpagedevice"
*End
*?Collate: "
save
currentpagedevice /Collate get
{{(True)}{(False)}ifelse }stopped {(Unknown)}if = flush
restore
"
*End
*CloseUI: *Collate
*OpenUI *RIPrintMode/Print Mode: PickOne
*OrderDependency: 45 AnySetup *RIPrintMode
*DefaultRIPrintMode: 0rhit
*RIPrintMode 0rhit/Through: "
<</PostRenderingEnhance false>> setpagedevice"
*End
*RIPrintMode 1rhit/Edge Smoothing: "<</PostRenderingEnhance true
/PostRenderingEnhanceDetails << /Type 34 /OutputMode 0>> >> setpagedevice"
*End
*RIPrintMode 3rhit/Toner Saving: "<</PostRenderingEnhance true
/PostRenderingEnhanceDetails << /Type 34 /OutputMode 3>> >> setpagedevice"
*End
*?RIPrintMode: "
save
/UK (Unknown) def
{
currentpagedevice dup /PostRenderingEnhance 2 copy known not { UK exit } if
get dup false eq {pop (0rhit) exit }
{pop /PostRenderingEnhanceDetails get dup /OutputMode get
dup 0 eq {pop (1rhit) exit} if
dup 3 eq {pop (3rhit) exit} if
UK exit
} ifelse
} bind loop
mark count 1 sub 2 roll cleartomark
= flush
restore
"
*End
*CloseUI: *RIPrintMode
*OpenUI *Rimagesm/Image Smoothing: PickOne
*OrderDependency: 160 AnySetup *Rimagesm
*DefaultRimagesm: Off
*Rimagesm Off/Off: "(off) /RDeviceProcSet /ProcSet findresource /SetImageInterpolate get exec"
*Rimagesm On/On: "(on) /RDeviceProcSet /ProcSet findresource /SetImageInterpolate get exec"
*Rimagesm Auto/Auto: "(auto) /RDeviceProcSet /ProcSet findresource /SetImageInterpolate get exec"
*Rimagesm 90ppi/Less than 90 ppi: "90 /RDeviceProcSet /ProcSet findresource /SetImageInterpolate get exec"
*Rimagesm 150ppi/Less than 150 ppi: "150 /RDeviceProcSet /ProcSet findresource /SetImageInterpolate get exec"
*Rimagesm 200ppi/Less than 200 ppi: "200 /RDeviceProcSet /ProcSet findresource /SetImageInterpolate get exec"
*Rimagesm 300ppi/Less than 300 ppi: "300 /RDeviceProcSet /ProcSet findresource /SetImageInterpolate get exec"
*CloseUI: *Rimagesm
*OpenUI *RPSDitherType/Dithering: PickOne
*OrderDependency: 130 AnySetup *RPSDitherType
*DefaultRPSDitherType: Auto
*RPSDitherType Auto/Auto: "(auto) RCsethalftonetype"
*RPSDitherType Photo/Photographic: "(photo) RCsethalftonetype"
*RPSDitherType Letter/Text: "(text) RCsethalftonetype"
*RPSDitherType User/User Setting: "(user) RCsethalftonetype"
*CloseUI: *RPSDitherType
*OpenUI *MediaType/Paper Type: PickOne
*OrderDependency: 205 AnySetup *MediaType
*MediaType Auto/Plain/Recycled: "<< /MediaType (Auto) >> setpagedevice"
*MediaType Plain/Plain: "<< /MediaType (Plain) >> setpagedevice"
*MediaType Recycled/Recycled: "<< /MediaType (Recycled) >> setpagedevice"
*MediaType Special/Special: "<< /MediaType (Special) >> setpagedevice"
*MediaType Colored1/Color 1: "<< /MediaType (Color1) >> setpagedevice"
*MediaType Colored2/Color 2: "<< /MediaType (Color2) >> setpagedevice"
*MediaType Letterhead/Letterhead: "<< /MediaType (Letterhead) >> setpagedevice"
*MediaType Preprinted/Preprinted: "<< /MediaType (Preprinted) >> setpagedevice"
*MediaType Prepunched/Prepunched: "<< /MediaType (Prepunched) >> setpagedevice"
*MediaType Bond/Bond: "<< /MediaType (Bond) >> setpagedevice"
*MediaType Cardstock/Cardstock: "<< /MediaType (Cardstock) >> setpagedevice"
*MediaType Labels/Labels: "<< /MediaType (Labels) >> setpagedevice"
*MediaType OHP/Transparency: "<< /MediaType (Transparency) >> setpagedevice"
*MediaType Thick/Thick: "<< /MediaType (Thick) >> setpagedevice"
*MediaType Index/Tab Stock: "<< /MediaType (Index) >> setpagedevice"
*MediaType Translucent/Translucent: "<< /MediaType (Translucent) >> setpagedevice"
*MediaType None/None: "<< /MediaType (None) >> setpagedevice"
*?MediaType: "
save
/UK (Unknown) def
{
currentpagedevice /MediaType 2 copy known not { UK exit } if
get dup null eq 1 index (Plain) eq or { (Plain) exit } if
dup (Auto) eq { dup exit } if
dup (Recycled) eq { dup exit } if
dup (Special) eq { dup exit } if
dup (Colored1) eq { dup exit } if
dup (Colored2) eq { dup exit } if
dup (Letterhead) eq { dup exit } if
dup (Preprinted) eq { dup exit } if
dup (Prepunched) eq { dup exit } if
dup (Bond) eq { dup exit } if
dup (Cardstock) eq { dup exit } if
dup (Labels) eq { dup exit } if
dup (OHP) eq { dup exit } if
dup (Thick) eq { dup exit } if
dup (Index) eq { dup exit } if
dup (Translucent) eq { dup exit } if
dup (None) eq { dup exit } if
UK exit
} bind loop
mark count 1 sub 2 roll cleartomark
= flush
restore
"
*End
*DefaultMediaType: Auto
*CloseUI: *MediaType
*OpenUI *OutputBin/Destination: PickOne
*OrderDependency: 210 AnySetup *OutputBin
*OutputBin Default/Printer Default: "<</OutputType null>>setpagedevice"
*OutputBin Standard/Copy Tray: "<</OutputType (Standard)>>setpagedevice"
*OutputBin FinisherUpper/Finisher SR970/4000 Upper Tray: "<</OutputType (FinProof)>>setpagedevice"
*OutputBin FinisherMiddle/Finisher SR970/4000 Shift Tray: "<</OutputType (FinShift)>>setpagedevice"
*OutputBin FinisherLower/Finisher SR4000 Booklet Tray: "<</OutputType (FinBooklet)>>setpagedevice"
*OutputBin FinisherAFEUpper/Finisher SR841 Upper Tray: "<</OutputType (FinProof)>>setpagedevice"
*OutputBin FinisherAFELower/Finisher SR841 Shift Tray: "<</OutputType (FinShift)>>setpagedevice"
*OutputBin PlockmaticTray/Booklet Processor Tray: "<</OutputType (FinShift)>>setpagedevice"
*OutputBin MailBoxBin1/Mailbox Tray 1: "<</OutputType (MailBin1)>>setpagedevice"
*OutputBin MailBoxBin2/Mailbox Tray 2: "<</OutputType (MailBin2)>>setpagedevice"
*OutputBin MailBoxBin3/Mailbox Tray 3: "<</OutputType (MailBin3)>>setpagedevice"
*OutputBin MailBoxBin4/Mailbox Tray 4: "<</OutputType (MailBin4)>>setpagedevice"
*OutputBin MailBoxBin5/Mailbox Tray 5: "<</OutputType (MailBin5)>>setpagedevice"
*OutputBin MailBoxBin6/Mailbox Tray 6: "<</OutputType (MailBin6)>>setpagedevice"
*OutputBin MailBoxBin7/Mailbox Tray 7: "<</OutputType (MailBin7)>>setpagedevice"
*OutputBin MailBoxBin8/Mailbox Tray 8: "<</OutputType (MailBin8)>>setpagedevice"
*OutputBin MailBoxBin9/Mailbox Tray 9: "<</OutputType (MailBin9)>>setpagedevice"
*DefaultOutputBin: Default
*?OutputBin: "
save
currentpagedevice /OutputType get = flush
restore
"
*End
*CloseUI: *OutputBin
*OpenUI *StapleLocation/Staple: PickOne
*OrderDependency: 220 AnySetup *StapleLocation
*DefaultStapleLocation: None
*StapleLocation None/Off: "<< /Staple 0 >> setpagedevice"
*StapleLocation UpperLeft/Top left: "<<
/Collate true /CollateDetails <</Type 6 /AlignSet true>>
/Staple 2 /StapleDetails << /Type 14 /Angle 0 /Position 0 >>
>> setpagedevice"
*End
*StapleLocation UpperRight/Top right: "<<
/Collate true /CollateDetails <</Type 6 /AlignSet true>>
/Staple 2 /StapleDetails << /Type 14 /Angle 0 /Position 6 >>
>> setpagedevice"
*End
*StapleLocation LowerLeft/Bottom left: "
1 /RDeviceProcSet /ProcSet findresource /SetImageRotation get exec
<< /Collate true /CollateDetails <</Type 6 /AlignSet true>>
/Staple 2 /StapleDetails << /Type 14 /Angle 0 /Position 6 >>
>> setpagedevice"
*End
*StapleLocation LowerRight/Bottom right: "
1 /RDeviceProcSet /ProcSet findresource /SetImageRotation get exec
<< /Collate true /CollateDetails <</Type 6 /AlignSet true>>
/Staple 2 /StapleDetails << /Type 14 /Angle 0 /Position 0 >>
>> setpagedevice"
*End
*StapleLocation LeftW/2 at left: "<<
/Collate true /CollateDetails <</Type 6 /AlignSet true>>
/Staple 2 /StapleDetails << /Type 14 /Angle 0 /Position 1 >>
>> setpagedevice"
*End
*StapleLocation RightW/2 at right: "<<
/Collate true /CollateDetails <</Type 6 /AlignSet true>>
/Staple 2 /StapleDetails << /Type 14 /Angle 0 /Position 5 >>
>> setpagedevice"
*End
*StapleLocation UpperW/2 at top: "<<
/Collate true /CollateDetails <</Type 6 /AlignSet true>>
/Staple 2 /StapleDetails << /Type 14 /Angle 0 /Position 7 >>
>> setpagedevice"
*End
*StapleLocation LowerW/2 at bottom: "
1 /RDeviceProcSet /ProcSet findresource /SetImageRotation get exec
<< /Collate true /CollateDetails <</Type 6 /AlignSet true>>
/Staple 2 /StapleDetails << /Type 14 /Angle 0 /Position 7 >>
>> setpagedevice"
*End
*StapleLocation CenterW/2 at center: "<<
/Collate true /CollateDetails <</Type 6 /AlignSet true>>
/Staple 2 /StapleDetails << /Type 14 /Angle 0 /Position 8 >>
>> setpagedevice"
*End
*?StapleLocation: "
save
/UK (Unknown) def
{
currentpagedevice dup /Staple 2 copy known not { UK exit } if
get dup 0 eq {pop (None) exit }
{pop /StapleDetails get dup /Position get
dup 0 eq {pop (UpperLeft) exit} if
dup 6 eq {pop (UpperRight) exit} if
dup 1 eq {pop (LeftW) exit} if
dup 5 eq {pop (RightW) exit} if
dup 7 eq {pop (UpperW) exit} if
dup 8 eq {pop (CenterW) exit} if
UK exit
} ifelse
} bind loop
mark count 1 sub 2 roll cleartomark
= flush
restore
"
*End
*CloseUI: *StapleLocation
*OpenUI *RIPunch/Punch: PickOne
*OrderDependency: 230 AnySetup *RIPunch
*RIPunch None/Off: "<< /Punch 0 >> setpagedevice"
*RIPunch Left2/2 at left: "<< /Punch 2
/PunchDetails << /Type 4 /Position 0 /NumHoles 2 >> >> setpagedevice"
*End
*RIPunch Left3/3 at left: "<< /Punch 2
/PunchDetails << /Type 4 /Position 0 /NumHoles 3 >> >> setpagedevice"
*End
*RIPunch Left4/4 at left: "<< /Punch 2
/PunchDetails << /Type 4 /Position 0 /NumHoles 4 >> >> setpagedevice"
*End
*RIPunch Right2/2 at right: "<< /Punch 2
/PunchDetails << /Type 4 /Position 2 /NumHoles 2 >> >> setpagedevice"
*End
*RIPunch Right3/3 at right: "<< /Punch 2
/PunchDetails << /Type 4 /Position 2 /NumHoles 3 >> >> setpagedevice"
*End
*RIPunch Right4/4 at right: "<< /Punch 2
/PunchDetails << /Type 4 /Position 2 /NumHoles 4 >> >> setpagedevice"
*End
*RIPunch Upper2/2 at top: "<< /Punch 2
/PunchDetails << /Type 4 /Position 3 /NumHoles 2 >> >> setpagedevice"
*End
*RIPunch Upper3/3 at top: "<< /Punch 2
/PunchDetails << /Type 4 /Position 3 /NumHoles 3 >> >> setpagedevice"
*End
*RIPunch Upper4/4 at top: "<< /Punch 2
/PunchDetails << /Type 4 /Position 3 /NumHoles 4 >> >> setpagedevice"
*End
*RIPunch Lower2/2 at bottom: "
1 /RDeviceProcSet /ProcSet findresource /SetImageRotation get exec
<< /Punch 2 /PunchDetails << /Type 4 /Position 3 /NumHoles 2 >> >> setpagedevice"
*End
*RIPunch Lower3/3 at bottom: "
1 /RDeviceProcSet /ProcSet findresource /SetImageRotation get exec
<< /Punch 2 /PunchDetails << /Type 4 /Position 3 /NumHoles 3 >> >> setpagedevice"
*End
*RIPunch Lower4/4 at bottom: "
1 /RDeviceProcSet /ProcSet findresource /SetImageRotation get exec
<< /Punch 2 /PunchDetails << /Type 4 /Position 3 /NumHoles 4 >> >> setpagedevice"
*End
*DefaultRIPunch: None
*?RIPunch: "
save
/UK (Unknown) def
{
currentpagedevice dup /Punch 2 copy known not { UK exit } if
get dup 0 eq {pop (None) exit }
{pop /PunchDetails get dup /Position get
dup 0 eq {pop (Left2) exit} if
dup 2 eq {pop (Right2) exit} if
dup 3 eq {pop (Upper2) exit} if
UK exit
} ifelse
} bind loop
mark count 1 sub 2 roll cleartomark
= flush
restore
"
*End
*CloseUI: *RIPunch
*OpenUI *RIZfold/Z-fold: PickOne
*OrderDependency: 250 AnySetup *RIZfold
*RIZfold None/Off: "<< /Fold 0 >> setpagedevice"
*RIZfold Bottom/Bottom Fold: "<< /Fold 1
/FoldDetails << /Type 7 /FoldType 0 /ImageRotation 2 >> >> setpagedevice"
*End
*RIZfold Right/Right Fold: "<< /Fold 1
/FoldDetails << /Type 7 /FoldType 0 /ImageRotation 1 >> >> setpagedevice"
*End
*RIZfold Left/Left Fold: "<< /Fold 1
/FoldDetails << /Type 7 /FoldType 0 /ImageRotation 3 >> >> setpagedevice"
*End
*DefaultRIZfold: None
*?RIZfold: "
"
*End
*CloseUI: *RIZfold
*OpenUI *RIOrientOvr/Orientation Override: PickOne
*OrderDependency: 170 AnySetup *RIOrientOvr
*RIOrientOvr Off/Off: ""
*RIOrientOvr Landscape/Landscape: "
1 /RDeviceProcSet /ProcSet findresource /SetOrientationOverride get exec"
*End
*RIOrientOvr Portrait/Portrait: "
0 /RDeviceProcSet /ProcSet findresource /SetOrientationOverride get exec"
*End
*DefaultRIOrientOvr: Off
*CloseUI: *RIOrientOvr
*%=== Watermark ========
*OpenUI *RIWatermark/Watermark: PickOne
*OrderDependency: 300 AnySetup *RIWatermark
*DefaultRIWatermark: Off
*RIWatermark Off/Off: ""
*RIWatermark On/On: "
userdict /RPS_WMdict 10 dict put
userdict /RPS_WMdict get begin
/RPS_WM true def
/RPS_WM_adjangle { 1.0 mul } bind def %% Portrait, Portrait(4up)
/RPS_WM_adjust 0.5 def
/RPS_WM_position { %% center
currentpagedevice /PageSize get
aload pop exch 2.0 div exch 2.0 div translate
RPS_WM_angle RPS_WM_adjangle rotate
RPS_WM_font findfont RPS_WM_size scalefont setfont
RPS_WM_str stringwidth pop 2.0 div neg RPS_WM_size 2.0 div moveto
} bind def
end
<<
/EndPage {
2 eq { pop false }{
userdict /RPS_WMdict 2 copy known {
get begin
RPS_WM {
gsave
initgraphics
RPS_WM_color
RPS_WM_Pattern
RPS_WM_position
RPS_WM_draw
grestore
} if
end
}{ pop pop } ifelse
pop true
} ifelse
} bind
>> setpagedevice"
*End
*CloseUI: *RIWatermark
*%=== Watermark Text ========
*OpenUI *RIWMText/Watermark Text: PickOne
*OrderDependency: 310 AnySetup *RIWMText
*DefaultRIWMText: Confidential
*RIWMText Confidential/CONFIDENTIAL: "userdict /RPS_WMdict get begin
/RPS_WM_str (CONFIDENTIAL) def end"
*End
*RIWMText Copy/COPY: "userdict /RPS_WMdict get begin
/RPS_WM_str (COPY) def end"
*End
*RIWMText Copyright/DRAFT: "userdict /RPS_WMdict get begin
/RPS_WM_str (DRAFT) def end"
*End
*RIWMText Final/FINAL: "userdict /RPS_WMdict get begin
/RPS_WM_str (FINAL) def end"
*End
*RIWMText FileCopy/FILE COPY: "userdict /RPS_WMdict get begin
/RPS_WM_str (FILE COPY) def end"
*End
*RIWMText Proof/PROOF: "userdict /RPS_WMdict get begin
/RPS_WM_str (PROOF) def end"
*End
*RIWMText TopSecret/TOP SECRET: "userdict /RPS_WMdict get begin
/RPS_WM_str (TOP SECRET) def end"
*End
*CloseUI: *RIWMText
*%=== WaterMark Font ========
*OpenUI *RIwmFont/Watermark Font: PickOne
*OrderDependency: 320 AnySetup *RIwmFont
*DefaultRIwmFont: HelveticaB
*RIwmFont CourierB/Courier Bold: "userdict /RPS_WMdict get begin
/RPS_WM_font /Courier-Bold def end"
*End
*RIwmFont TimesB/Times Bold: "userdict /RPS_WMdict get begin
/RPS_WM_font /Times-Bold def end"
*End
*RIwmFont HelveticaB/Helvetica Bold: "userdict /RPS_WMdict get begin
/RPS_WM_font /Helvetica-Bold def end"
*End
*CloseUI: *RIwmFont
*%=== WaterMark Font Size========
*OpenUI *RIwmSize/Watermark Size: PickOne
*OrderDependency: 325 AnySetup *RIwmSize
*DefaultRIwmSize: 36
*RIwmSize 24/24 Point: "userdict /RPS_WMdict get begin
/RPS_WM_size 24 def end"
*End
*RIwmSize 36/36 Point: "userdict /RPS_WMdict get begin
/RPS_WM_size 36 def end"
*End
*RIwmSize 48/48 Point: "userdict /RPS_WMdict get begin
/RPS_WM_size 48 def end"
*End
*RIwmSize 60/60 Point: "userdict /RPS_WMdict get begin
/RPS_WM_size 60 def end"
*End
*RIwmSize 72/72 Point: "userdict /RPS_WMdict get begin
/RPS_WM_size 72 def end"
*End
*CloseUI: *RIwmSize
*%=== WaterMark Angle ========
*OpenUI *RIwmAngle/Watermark Angle: PickOne
*OrderDependency: 330 AnySetup *RIwmAngle
*DefaultRIwmAngle: 45Deg
*RIwmAngle 180Deg/180 Degrees: "userdict /RPS_WMdict get begin
/RPS_WM_angle 180 def end"
*End
*RIwmAngle 135Deg/135 Degrees: "userdict /RPS_WMdict get begin
/RPS_WM_angle 135 def end"
*End
*RIwmAngle 90Deg/90 Degrees: "userdict /RPS_WMdict get begin
/RPS_WM_angle 90 def end"
*End
*RIwmAngle 45Deg/45 Degrees: "userdict /RPS_WMdict get begin
/RPS_WM_angle 45 def end"
*End
*RIwmAngle 0Deg/0 Degrees: "userdict /RPS_WMdict get begin
/RPS_WM_angle 0 def end"
*End
*RIwmAngle M45Deg/-45 Degrees: "userdict /RPS_WMdict get begin
/RPS_WM_angle -45 def end"
*End
*RIwmAngle M90Deg/-90 Degrees: "userdict /RPS_WMdict get begin
/RPS_WM_angle -90 def end"
*End
*RIwmAngle M135Deg/-135 Degrees: "userdict /RPS_WMdict get begin
/RPS_WM_angle -135 def end"
*End
*RIwmAngle M180Deg/-180 Degrees: "userdict /RPS_WMdict get begin
/RPS_WM_angle -180 def end"
*End
*CloseUI: *RIwmAngle
*%=== WaterMark Style ========
*OpenUI *RIwmTextStyle/Watermark Style: PickOne
*OrderDependency: 340 AnySetup *RIwmTextStyle
*DefaultRIwmTextStyle: Gray
*RIwmTextStyle Gray/Gray: "userdict /RPS_WMdict get begin
/RPS_WM_color { 0 setgray } bind def
/RPS_WM_Pattern {
<<
/PatternType 1
/PaintType 1
/TilingType 3
/BBox [ 0 0 1 1 ]
/XStep 1
/YStep 1
/PaintProc {
begin
RPS_WM_color
8 8 true [ 8 0 0 -8 0 8 ]
<88002200 88002200> imagemask
end
}
>> [ 1 0 0 -1 0 1 ] makepattern
setpattern }
bind def
/RPS_WM_draw { %% RPS_WM_mask
RPS_WM_str false charpath fill
} bind def end"
*End
*RIwmTextStyle Outline/Outlined: "userdict /RPS_WMdict get begin
/RPS_WM_color { 0 setgray } bind def
/RPS_WM_Pattern {} def
/RPS_WM_draw { %% RPS_WM_outline
0 setlinewidth RPS_WM_str false charpath stroke
} bind def end"
*End
*CloseUI: *RIwmTextStyle
*%========== Gray Levels and Halftoning ==========
*AccurateScreensSupport: True
*ScreenFreq: "85.0"
*ScreenAngle: "45.0"
*DefaultScreenProc: Dot
*ScreenProc Dot: "
{abs exch abs 2 copy add 1 gt
{1 sub dup mul exch 1 sub dup mul add 1 sub}
{dup mul exch dup mul add 1 exch sub}
ifelse}
"
*End
*ScreenProc Line: "{pop}"
*ScreenProc Ellipse: "
{dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub}
"
*End
*%========== Font ==========
*DefaultFont: Courier
*Font AlbertusMT: Standard "(001.000)" Standard ROM
*Font AlbertusMT-Italic: Standard "(001.000)" Standard ROM
*Font AlbertusMT-Light: Standard "(001.000)" Standard ROM
*Font AntiqueOlive-Bold: Standard "(501.009)" ExtendedRoman ROM
*Font AntiqueOlive-Compact: Standard "(501.008)" ExtendedRoman ROM
*Font AntiqueOlive-Italic: Standard "(501.010)" ExtendedRoman ROM
*Font AntiqueOlive-Roman: Standard "(501.008)" ExtendedRoman ROM
*Font Apple-Chancery: Standard "(001.001)" ExtendedRoman ROM
*Font ArialMT: Standard "(501.009)" ExtendedRoman ROM
*Font Arial-BoldMT: Standard "(501.009)" ExtendedRoman ROM
*Font Arial-BoldItalicMT: Standard "(501.009)" ExtendedRoman ROM
*Font Arial-ItalicMT: Standard "(501.012)" ExtendedRoman ROM
*Font AvantGarde-Book: Standard "(501.009)" ExtendedRoman ROM
*Font AvantGarde-BookOblique: Standard "(501.009)" ExtendedRoman ROM
*Font AvantGarde-Demi: Standard "(501.010)" ExtendedRoman ROM
*Font AvantGarde-DemiOblique: Standard "(501.010)" ExtendedRoman ROM
*Font Bodoni: Standard "(501.008)" ExtendedRoman ROM
*Font Bodoni-Bold: Standard "(501.006)" ExtendedRoman ROM
*Font Bodoni-BoldItalic: Standard "(501.007)" ExtendedRoman ROM
*Font Bodoni-Italic: Standard "(501.007)" ExtendedRoman ROM
*Font Bodoni-Poster: Standard "(501.009)" ExtendedRoman ROM
*Font Bodoni-PosterCompressed: Standard "(501.007)" ExtendedRoman ROM
*Font Bookman-Demi: Standard "(501.007)" ExtendedRoman ROM
*Font Bookman-DemiItalic: Standard "(501.008)" ExtendedRoman ROM
*Font Bookman-Light: Standard "(501.006)" ExtendedRoman ROM
*Font Bookman-LightItalic: Standard "(501.007)" ExtendedRoman ROM
*Font Carta: Special "(001.001)" Special ROM
*Font Chicago: Standard "(501.011)" ExtendedRoman ROM
*Font Clarendon-Bold: Standard "(501.008)" ExtendedRoman ROM
*Font Clarendon-Light: Standard "(501.009)" ExtendedRoman ROM
*Font Clarendon: Standard "(501.009)" ExtendedRoman ROM
*Font CooperBlack-Italic: Standard "(001.003)" Standard ROM
*Font CooperBlack: Standard "(001.003)" Standard ROM
*Font Copperplate-ThirtyThreeBC: Standard "(001.002)" Standard ROM
*Font Copperplate-ThirtyTwoBC: Standard "(001.002)" Standard ROM
*Font Coronet-Regular: Standard "(001.000)" ExtendedRoman ROM
*Font Courier-Bold: Standard "(501.010)" ExtendedRoman ROM
*Font Courier-BoldOblique: Standard "(501.010)" ExtendedRoman ROM
*Font Courier-Oblique: Standard "(501.010)" ExtendedRoman ROM
*Font Courier: Standard "(501.010)" ExtendedRoman ROM
*Font Eurostile-Bold: Standard "(501.008)" ExtendedRoman ROM
*Font Eurostile-BoldExtendedTwo: Standard "(501.008)" ExtendedRoman ROM
*Font Eurostile-ExtendedTwo: Standard "(501.010)" ExtendedRoman ROM
*Font Eurostile: Standard "(501.008)" ExtendedRoman ROM
*Font Geneva: Standard "(501.007)" ExtendedRoman ROM
*Font GillSans: Standard "(501.009)" ExtendedRoman ROM
*Font GillSans-Bold: Standard "(501.007)" ExtendedRoman ROM
*Font GillSans-BoldCondensed: Standard "(501.006)" ExtendedRoman ROM
*Font GillSans-BoldItalic: Standard "(501.008)" ExtendedRoman ROM
*Font GillSans-Condensed: Standard "(501.007)" ExtendedRoman ROM
*Font GillSans-ExtraBold: Standard "(501.008)" ExtendedRoman ROM
*Font GillSans-Italic: Standard "(501.008)" ExtendedRoman ROM
*Font GillSans-Light: Standard "(501.009)" ExtendedRoman ROM
*Font GillSans-LightItalic: Standard "(501.009)" ExtendedRoman ROM
*Font Goudy: Standard "(001.003)" Standard ROM
*Font Goudy-Bold: Standard "(001.002)" Standard ROM
*Font Goudy-BoldItalic: Standard "(001.002)" Standard ROM
*Font Goudy-ExtraBold: Standard "(001.001)" Standard ROM
*Font Goudy-Italic: Standard "(001.002)" Standard ROM
*Font Helvetica: Standard "(501.008)" ExtendedRoman ROM
*Font Helvetica-Bold: Standard "(501.010)" ExtendedRoman ROM
*Font Helvetica-BoldOblique: Standard "(501.010)" ExtendedRoman ROM
*Font Helvetica-Condensed-Bold: Standard "(501.009)" ExtendedRoman ROM
*Font Helvetica-Condensed-BoldObl: Standard "(501.009)" ExtendedRoman ROM
*Font Helvetica-Condensed-Oblique: Standard "(501.010)" ExtendedRoman ROM
*Font Helvetica-Condensed: Standard "(501.010)" ExtendedRoman ROM
*Font Helvetica-Narrow-Bold: Standard "(501.010)" ExtendedRoman ROM
*Font Helvetica-Narrow-BoldOblique: Standard "(501.010)" ExtendedRoman ROM
*Font Helvetica-Narrow-Oblique: Standard "(501.008)" ExtendedRoman ROM
*Font Helvetica-Narrow: Standard "(501.008)" ExtendedRoman ROM
*Font Helvetica-Oblique: Standard "(501.008)" ExtendedRoman ROM
*Font HoeflerText-Black: Standard "(501.008)" ExtendedRoman ROM
*Font HoeflerText-BlackItalic: Standard "(501.009)" ExtendedRoman ROM
*Font HoeflerText-Italic: Standard "(501.010)" ExtendedRoman ROM
*Font HoeflerText-Ornaments: Special "(001.001)" Special ROM
*Font HoeflerText-Regular: Standard "(501.009)" ExtendedRoman ROM
*Font JoannaMT: Standard "(501.009)" ExtendedRoman ROM
*Font JoannaMT-Bold: Standard "(501.008)" ExtendedRoman ROM
*Font JoannaMT-BoldItalic: Standard "(501.008)" ExtendedRoman ROM
*Font JoannaMT-Italic: Standard "(501.008)" ExtendedRoman ROM
*Font LetterGothic: Standard "(501.009)" ExtendedRoman ROM
*Font LetterGothic-Bold: Standard "(501.010)" ExtendedRoman ROM
*Font LetterGothic-BoldSlanted: Standard "(501.010)" ExtendedRoman ROM
*Font LetterGothic-Slanted: Standard "(501.010)" ExtendedRoman ROM
*Font LubalinGraph-Book: Standard "(501.009)" ExtendedRoman ROM
*Font LubalinGraph-BookOblique: Standard "(501.009)" ExtendedRoman ROM
*Font LubalinGraph-Demi: Standard "(501.009)" ExtendedRoman ROM
*Font LubalinGraph-DemiOblique: Standard "(501.009)" ExtendedRoman ROM
*Font Marigold: Standard "(001.000)" Standard ROM
*Font MonaLisa-Recut: Standard "(001.000)" Standard ROM
*Font Monaco: Standard "(501.012)" ExtendedRoman ROM
*Font NewCenturySchlbk-Bold: Standard "(501.008)" ExtendedRoman ROM
*Font NewCenturySchlbk-BoldItalic: Standard "(501.009)" ExtendedRoman ROM
*Font NewCenturySchlbk-Italic: Standard "(501.011)" ExtendedRoman ROM
*Font NewCenturySchlbk-Roman: Standard "(501.008)" ExtendedRoman ROM
*Font NewYork: Standard "(501.013)" ExtendedRoman ROM
*Font Optima-Bold: Standard "(501.008)" ExtendedRoman ROM
*Font Optima-BoldItalic: Standard "(501.009)" ExtendedRoman ROM
*Font Optima-Italic: Standard "(501.010)" ExtendedRoman ROM
*Font Optima: Standard "(501.010)" ExtendedRoman ROM
*Font Oxford: Standard "(001.000)" Standard ROM
*Font Palatino-Bold: Standard "(501.008)" ExtendedRoman ROM
*Font Palatino-BoldItalic: Standard "(501.007)" ExtendedRoman ROM
*Font Palatino-Italic: Standard "(501.008)" ExtendedRoman ROM
*Font Palatino-Roman: Standard "(501.006)" ExtendedRoman ROM
*Font StempelGaramond-Bold: Standard "(501.007)" ExtendedRoman ROM
*Font StempelGaramond-BoldItalic: Standard "(501.012)" ExtendedRoman ROM
*Font StempelGaramond-Italic: Standard "(501.009)" ExtendedRoman ROM
*Font StempelGaramond-Roman: Standard "(501.011)" ExtendedRoman ROM
*Font Symbol: Special "(001.008)" Special ROM
*Font Tekton: Standard "(001.001)" Standard ROM
*Font Times-Bold: Standard "(501.009)" ExtendedRoman ROM
*Font Times-BoldItalic: Standard "(501.009)" ExtendedRoman ROM
*Font Times-Italic: Standard "(501.010)" ExtendedRoman ROM
*Font Times-Roman: Standard "(501.010)" ExtendedRoman ROM
*Font TimesNewRomanPS-BoldItalicMT: Standard "(501.011)" ExtendedRoman ROM
*Font TimesNewRomanPS-BoldMT: Standard "(501.009)" ExtendedRoman ROM
*Font TimesNewRomanPS-ItalicMT: Standard "(501.011)" ExtendedRoman ROM
*Font TimesNewRomanPSMT: Standard "(501.010)" ExtendedRoman ROM
*Font Univers: Standard "(501.009)" ExtendedRoman ROM
*Font Univers-Bold: Standard "(501.008)" ExtendedRoman ROM
*Font Univers-BoldExt: Standard "(501.010)" ExtendedRoman ROM
*Font Univers-BoldExtObl: Standard "(501.010)" ExtendedRoman ROM
*Font Univers-BoldOblique: Standard "(501.008)" ExtendedRoman ROM
*Font Univers-Condensed: Standard "(501.011)" ExtendedRoman ROM
*Font Univers-CondensedBold: Standard "(501.009)" ExtendedRoman ROM
*Font Univers-CondensedBoldOblique: Standard "(501.009)" ExtendedRoman ROM
*Font Univers-CondensedOblique: Standard "(501.011)" ExtendedRoman ROM
*Font Univers-Extended: Standard "(501.009)" ExtendedRoman ROM
*Font Univers-ExtendedObl: Standard "(501.009)" ExtendedRoman ROM
*Font Univers-Light: Standard "(501.009)" ExtendedRoman ROM
*Font Univers-LightOblique: Standard "(501.009)" ExtendedRoman ROM
*Font Univers-Oblique: Standard "(501.009)" ExtendedRoman ROM
*Font Wingdings-Regular: Special "(001.001)" Special ROM
*Font ZapfChancery-MediumItalic: Standard "(002.000)" ExtendedRoman ROM
*Font ZapfDingbats: Special "(001.005S)" 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
*Status: "initializing"
*Status: "holding"
*Status: "idle"
*Status: "busy"
*Status: "waiting"
*Status: "printing"
*Status: "print test page"
*Source: "Parallel"
*Source: "TCP/IP"
*Source: "EtherTalk"
*Source: "SPX/IPX"
*Source: "NetBEUI"
*Source: "IEEE1394"
*Message: "%%[ exitserver: permanent state may be changed ]%%"
*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
*Message: "\FontName\ not found, using Courier"
*%========== Color Separation ==========
*DefaultColorSep: ProcessBlack.106lpi.600dpi/106 lpi / 600 dpi
*%===== For 106 lpi / 600 dpi =====
*ColorSepScreenAngle ProcessBlack.106lpi.600dpi/106 lpi / 600 dpi: "45.0"
*ColorSepScreenAngle CustomColor.106lpi.600dpi/106 lpi / 600 dpi: "45.0"
*ColorSepScreenAngle ProcessCyan.106lpi.600dpi/106 lpi / 600 dpi: "45.0"
*ColorSepScreenAngle ProcessMagenta.106lpi.600dpi/106 lpi / 600 dpi: "45.0"
*ColorSepScreenAngle ProcessYellow.106lpi.600dpi/106 lpi / 600 dpi: "45.0"
*ColorSepScreenFreq ProcessBlack.106lpi.600dpi/106 lpi / 600 dpi: "106"
*ColorSepScreenFreq CustomColor.106lpi.600dpi/106 lpi / 600 dpi: "106"
*ColorSepScreenFreq ProcessCyan.106lpi.600dpi/106 lpi / 600 dpi: "106"
*ColorSepScreenFreq ProcessMagenta.106lpi.600dpi/106 lpi / 600 dpi: "106"
*ColorSepScreenFreq ProcessYellow.106lpi.600dpi/106 lpi / 600 dpi: "106"
*%===== For 140 lpi / 1200 dpi =====
*ColorSepScreenAngle ProcessBlack.140lpi.1200dpi/140 lpi / 1200 dpi: "45.0"
*ColorSepScreenAngle CustomColor.140lpi.1200dpi/140 lpi / 1200 dpi: "45.0"
*ColorSepScreenAngle ProcessCyan.140lpi.1200dpi/140 lpi / 1200 dpi: "45.0"
*ColorSepScreenAngle ProcessMagenta.140lpi.1200dpi/140 lpi / 1200 dpi: "45.0"
*ColorSepScreenAngle ProcessYellow.140lpi.1200dpi/140 lpi / 1200 dpi: "45.0"
*ColorSepScreenFreq ProcessBlack.140lpi.1200dpi/140 lpi / 1200 dpi: "140"
*ColorSepScreenFreq CustomColor.140lpi.1200dpi/140 lpi / 1200 dpi: "140"
*ColorSepScreenFreq ProcessCyan.140lpi.1200dpi/140 lpi / 1200 dpi: "140"
*ColorSepScreenFreq ProcessMagenta.140lpi.1200dpi/140 lpi / 1200 dpi: "140"
*ColorSepScreenFreq ProcessYellow.140lpi.1200pi/140 lpi / 1200 dpi: "140"
*%========== LCT / InputSlot
*UIConstraints: *Option2 False *InputSlot 4Tray
*UIConstraints: *InputSlot 4Tray *Option2 False
*%========== ZFolder / Finisher
*UIConstraints: *Option_50 True *Option_30 None
*UIConstraints: *Option_50 True *Option_30 FinEUPHIMPOS
*UIConstraints: *Option_30 None *Option_50 True
*UIConstraints: *Option_30 FinEUPHIMPOS *Option_50 True
*%========== ZFolder / ZFold
*UIConstraints: *Option_50 False *RIZfold Bottom
*UIConstraints: *Option_50 False *RIZfold Left
*UIConstraints: *Option_50 False *RIZfold Right
*UIConstraints: *RIZfold Bottom *Option_50 False
*UIConstraints: *RIZfold Left *Option_50 False
*UIConstraints: *RIZfold Right *Option_50 False
*%========== Finisher / Copy Tray
*UIConstraints: *Option_30 FinEUPHPOS *OutputBin Standard
*UIConstraints: *Option_30 FinEUPHIMPOS *OutputBin Standard
*UIConstraints: *Option_30 FinVICTORIA *OutputBin Standard
*UIConstraints: *OutputBin Standard *Option_30 FinEUPHPOS
*UIConstraints: *OutputBin Standard *Option_30 FinEUPHIMPOS
*UIConstraints: *OutputBin Standard *Option_30 FinVICTORIA
*%========== Finisher / MailBox
*UIConstraints: *Option_30 None *Option40 True
*UIConstraints: *Option_30 FinVICTORIA *Option40 True
*UIConstraints: *Option40 True *Option_30 None
*UIConstraints: *Option40 True *Option_30 FinVICTORIA
*%========== Finisher / Plockmatic
*UIConstraints: *Option_30 None *Option_32 Plockmatic
*UIConstraints: *Option_30 FinEUPHPOS *Option_32 Plockmatic
*UIConstraints: *Option_30 FinEUPHIMPOS *Option_32 Plockmatic
*UIConstraints: *Option_32 Plockmatic *Option_30 None
*UIConstraints: *Option_32 Plockmatic *Option_30 FinEUPHPOS
*UIConstraints: *Option_32 Plockmatic *Option_30 FinEUPHIMPOS
*%========== Plockmatic / Destination
*UIConstraints: *Option_32 Plockmatic *OutputBin FinisherAFELower
*UIConstraints: *Option_32 False *OutputBin PlockmaticTray
*UIConstraints: *OutputBin FinisherAFELower *Option_32 Plockmatic
*UIConstraints: *OutputBin PlockmaticTray *Option_32 False
*%========== Finisher / Destination
*UIConstraints: *Option_30 None *OutputBin FinisherUpper
*UIConstraints: *Option_30 None *OutputBin FinisherMiddle
*UIConstraints: *Option_30 None *OutputBin FinisherLower
*UIConstraints: *Option_30 None *OutputBin FinisherAFEUpper
*UIConstraints: *Option_30 None *OutputBin FinisherAFELower
*UIConstraints: *Option_30 FinEUPHIMPOS *OutputBin FinisherLower
*UIConstraints: *Option_30 FinEUPHIMPOS *OutputBin FinisherAFEUpper
*UIConstraints: *Option_30 FinEUPHIMPOS *OutputBin FinisherAFELower
*UIConstraints: *Option_30 FinEUPHPOS *OutputBin FinisherAFEUpper
*UIConstraints: *Option_30 FinEUPHPOS *OutputBin FinisherAFELower
*UIConstraints: *Option_30 FinVICTORIA *OutputBin FinisherUpper
*UIConstraints: *Option_30 FinVICTORIA *OutputBin FinisherMiddle
*UIConstraints: *Option_30 FinVICTORIA *OutputBin FinisherLower
*UIConstraints: *OutputBin FinisherUpper *Option_30 None
*UIConstraints: *OutputBin FinisherMiddle *Option_30 None
*UIConstraints: *OutputBin FinisherLower *Option_30 None
*UIConstraints: *OutputBin FinisherAFEUpper *Option_30 None
*UIConstraints: *OutputBin FinisherAFELower *Option_30 None
*UIConstraints: *OutputBin FinisherLower *Option_30 FinEUPHIMPOS
*UIConstraints: *OutputBin FinisherAFEUpper *Option_30 FinEUPHIMPOS
*UIConstraints: *OutputBin FinisherAFELower *Option_30 FinEUPHIMPOS
*UIConstraints: *OutputBin FinisherAFEUpper *Option_30 FinEUPHPOS
*UIConstraints: *OutputBin FinisherAFELower *Option_30 FinEUPHPOS
*UIConstraints: *OutputBin FinisherUpper *Option_30 FinVICTORIA
*UIConstraints: *OutputBin FinisherMiddle *Option_30 FinVICTORIA
*UIConstraints: *OutputBin FinisherLower *Option_30 FinVICTORIA
*%========== MailBox / Destination
*UIConstraints: *Option40 False *OutputBin MailBoxBin1
*UIConstraints: *Option40 False *OutputBin MailBoxBin2
*UIConstraints: *Option40 False *OutputBin MailBoxBin3
*UIConstraints: *Option40 False *OutputBin MailBoxBin4
*UIConstraints: *Option40 False *OutputBin MailBoxBin5
*UIConstraints: *Option40 False *OutputBin MailBoxBin6
*UIConstraints: *Option40 False *OutputBin MailBoxBin7
*UIConstraints: *Option40 False *OutputBin MailBoxBin8
*UIConstraints: *Option40 False *OutputBin MailBoxBin9
*UIConstraints: *OutputBin MailBoxBin1 *Option40 False
*UIConstraints: *OutputBin MailBoxBin2 *Option40 False
*UIConstraints: *OutputBin MailBoxBin3 *Option40 False
*UIConstraints: *OutputBin MailBoxBin4 *Option40 False
*UIConstraints: *OutputBin MailBoxBin5 *Option40 False
*UIConstraints: *OutputBin MailBoxBin6 *Option40 False
*UIConstraints: *OutputBin MailBoxBin7 *Option40 False
*UIConstraints: *OutputBin MailBoxBin8 *Option40 False
*UIConstraints: *OutputBin MailBoxBin9 *Option40 False
*%========== Finisher / Staple
*UIConstraints: *Option_30 None *StapleLocation UpperLeft
*UIConstraints: *Option_30 None *StapleLocation UpperRight
*UIConstraints: *Option_30 None *StapleLocation LowerLeft
*UIConstraints: *Option_30 None *StapleLocation LowerRight
*UIConstraints: *Option_30 None *StapleLocation LeftW
*UIConstraints: *Option_30 None *StapleLocation RightW
*UIConstraints: *Option_30 None *StapleLocation UpperW
*UIConstraints: *Option_30 None *StapleLocation LowerW
*UIConstraints: *Option_30 None *StapleLocation CenterW
*UIConstraints: *Option_30 FinEUPHIMPOS *StapleLocation CenterW
*UIConstraints: *StapleLocation UpperLeft *Option_30 None
*UIConstraints: *StapleLocation UpperRight *Option_30 None
*UIConstraints: *StapleLocation LowerLeft *Option_30 None
*UIConstraints: *StapleLocation LowerRight *Option_30 None
*UIConstraints: *StapleLocation LeftW *Option_30 None
*UIConstraints: *StapleLocation RightW *Option_30 None
*UIConstraints: *StapleLocation UpperW *Option_30 None
*UIConstraints: *StapleLocation LowerW *Option_30 None
*UIConstraints: *StapleLocation CenterW *Option_30 None
*UIConstraints: *StapleLocation CenterW *Option_30 FinEUPHIMPOS
*%========== Plockmatic / Staple
*UIConstraints: *Option_32 Plockmatic *StapleLocation UpperLeft
*UIConstraints: *Option_32 Plockmatic *StapleLocation UpperRight
*UIConstraints: *Option_32 Plockmatic *StapleLocation LowerLeft
*UIConstraints: *Option_32 Plockmatic *StapleLocation LowerRight
*UIConstraints: *Option_32 Plockmatic *StapleLocation LeftW
*UIConstraints: *Option_32 Plockmatic *StapleLocation RightW
*UIConstraints: *Option_32 Plockmatic *StapleLocation UpperW
*UIConstraints: *Option_32 Plockmatic *StapleLocation LowerW
*UIConstraints: *StapleLocation UpperLeft *Option_32 Plockmatic
*UIConstraints: *StapleLocation UpperRight *Option_32 Plockmatic
*UIConstraints: *StapleLocation LowerLeft *Option_32 Plockmatic
*UIConstraints: *StapleLocation LowerRight *Option_32 Plockmatic
*UIConstraints: *StapleLocation LeftW *Option_32 Plockmatic
*UIConstraints: *StapleLocation RightW *Option_32 Plockmatic
*UIConstraints: *StapleLocation UpperW *Option_32 Plockmatic
*UIConstraints: *StapleLocation LowerW *Option_32 Plockmatic
*%========== Staple / Finisher Upper Tray
*UIConstraints: *OutputBin FinisherUpper *StapleLocation UpperLeft
*UIConstraints: *OutputBin FinisherUpper *StapleLocation UpperRight
*UIConstraints: *OutputBin FinisherUpper *StapleLocation LowerLeft
*UIConstraints: *OutputBin FinisherUpper *StapleLocation LowerRight
*UIConstraints: *OutputBin FinisherUpper *StapleLocation LeftW
*UIConstraints: *OutputBin FinisherUpper *StapleLocation RightW
*UIConstraints: *OutputBin FinisherUpper *StapleLocation UpperW
*UIConstraints: *OutputBin FinisherUpper *StapleLocation LowerW
*UIConstraints: *OutputBin FinisherUpper *StapleLocation CenterW
*UIConstraints: *StapleLocation UpperLeft *OutputBin FinisherUpper
*UIConstraints: *StapleLocation UpperRight *OutputBin FinisherUpper
*UIConstraints: *StapleLocation LowerLeft *OutputBin FinisherUpper
*UIConstraints: *StapleLocation LowerRight *OutputBin FinisherUpper
*UIConstraints: *StapleLocation LeftW *OutputBin FinisherUpper
*UIConstraints: *StapleLocation RightW *OutputBin FinisherUpper
*UIConstraints: *StapleLocation UpperW *OutputBin FinisherUpper
*UIConstraints: *StapleLocation LowerW *OutputBin FinisherUpper
*UIConstraints: *StapleLocation CenterW *OutputBin FinisherUpper
*%========== Staple / Finisher Middle Tray
*UIConstraints: *OutputBin FinisherMiddle *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *OutputBin FinisherMiddle
*%========== Staple / Finisher Lower Tray
*UIConstraints: *OutputBin FinisherLower *StapleLocation UpperLeft
*UIConstraints: *OutputBin FinisherLower *StapleLocation UpperRight
*UIConstraints: *OutputBin FinisherLower *StapleLocation LowerLeft
*UIConstraints: *OutputBin FinisherLower *StapleLocation LowerRight
*UIConstraints: *OutputBin FinisherLower *StapleLocation LeftW
*UIConstraints: *OutputBin FinisherLower *StapleLocation RightW
*UIConstraints: *OutputBin FinisherLower *StapleLocation UpperW
*UIConstraints: *OutputBin FinisherLower *StapleLocation LowerW
*UIConstraints: *StapleLocation UpperLeft *OutputBin FinisherLower
*UIConstraints: *StapleLocation UpperRight *OutputBin FinisherLower
*UIConstraints: *StapleLocation LowerLeft *OutputBin FinisherLower
*UIConstraints: *StapleLocation LowerRight *OutputBin FinisherLower
*UIConstraints: *StapleLocation LeftW *OutputBin FinisherLower
*UIConstraints: *StapleLocation RightW *OutputBin FinisherLower
*UIConstraints: *StapleLocation UpperW *OutputBin FinisherLower
*UIConstraints: *StapleLocation LowerW *OutputBin FinisherLower
*UIConstraints: *OutputBin FinisherLower *StapleLocation None
*UIConstraints: *StapleLocation None *OutputBin FinisherLower
*%========== Staple / PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *StapleLocation None
*UIConstraints: *StapleLocation None *OutputBin PlockmaticTray
*%========== Staple / Finisher AFE Upper Tray
*UIConstraints: *OutputBin FinisherAFEUpper *StapleLocation UpperLeft
*UIConstraints: *OutputBin FinisherAFEUpper *StapleLocation UpperRight
*UIConstraints: *OutputBin FinisherAFEUpper *StapleLocation LowerLeft
*UIConstraints: *OutputBin FinisherAFEUpper *StapleLocation LowerRight
*UIConstraints: *OutputBin FinisherAFEUpper *StapleLocation LeftW
*UIConstraints: *OutputBin FinisherAFEUpper *StapleLocation RightW
*UIConstraints: *OutputBin FinisherAFEUpper *StapleLocation UpperW
*UIConstraints: *OutputBin FinisherAFEUpper *StapleLocation LowerW
*UIConstraints: *OutputBin FinisherAFEUpper *StapleLocation CenterW
*UIConstraints: *StapleLocation UpperLeft *OutputBin FinisherAFEUpper
*UIConstraints: *StapleLocation UpperRight *OutputBin FinisherAFEUpper
*UIConstraints: *StapleLocation LowerLeft *OutputBin FinisherAFEUpper
*UIConstraints: *StapleLocation LowerRight *OutputBin FinisherAFEUpper
*UIConstraints: *StapleLocation LeftW *OutputBin FinisherAFEUpper
*UIConstraints: *StapleLocation RightW *OutputBin FinisherAFEUpper
*UIConstraints: *StapleLocation UpperW *OutputBin FinisherAFEUpper
*UIConstraints: *StapleLocation LowerW *OutputBin FinisherAFEUpper
*UIConstraints: *StapleLocation CenterW *OutputBin FinisherAFEUpper
*%========== Staple / Finisher AFE Lower Tray
*UIConstraints: *OutputBin FinisherAFELower *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *OutputBin FinisherAFELower
*%========== Staple / MailBox
*UIConstraints: *OutputBin MailBoxBin1 *StapleLocation UpperLeft
*UIConstraints: *OutputBin MailBoxBin1 *StapleLocation UpperRight
*UIConstraints: *OutputBin MailBoxBin1 *StapleLocation LowerLeft
*UIConstraints: *OutputBin MailBoxBin1 *StapleLocation LowerRight
*UIConstraints: *OutputBin MailBoxBin1 *StapleLocation LeftW
*UIConstraints: *OutputBin MailBoxBin1 *StapleLocation RightW
*UIConstraints: *OutputBin MailBoxBin1 *StapleLocation UpperW
*UIConstraints: *OutputBin MailBoxBin1 *StapleLocation LowerW
*UIConstraints: *OutputBin MailBoxBin1 *StapleLocation CenterW
*UIConstraints: *StapleLocation UpperLeft *OutputBin MailBoxBin1
*UIConstraints: *StapleLocation UpperRight *OutputBin MailBoxBin1
*UIConstraints: *StapleLocation LowerLeft *OutputBin MailBoxBin1
*UIConstraints: *StapleLocation LowerRight *OutputBin MailBoxBin1
*UIConstraints: *StapleLocation LeftW *OutputBin MailBoxBin1
*UIConstraints: *StapleLocation RightW *OutputBin MailBoxBin1
*UIConstraints: *StapleLocation UpperW *OutputBin MailBoxBin1
*UIConstraints: *StapleLocation LowerW *OutputBin MailBoxBin1
*UIConstraints: *StapleLocation CenterW *OutputBin MailBoxBin1
*UIConstraints: *OutputBin MailBoxBin2 *StapleLocation UpperLeft
*UIConstraints: *OutputBin MailBoxBin2 *StapleLocation UpperRight
*UIConstraints: *OutputBin MailBoxBin2 *StapleLocation LowerLeft
*UIConstraints: *OutputBin MailBoxBin2 *StapleLocation LowerRight
*UIConstraints: *OutputBin MailBoxBin2 *StapleLocation LeftW
*UIConstraints: *OutputBin MailBoxBin2 *StapleLocation RightW
*UIConstraints: *OutputBin MailBoxBin2 *StapleLocation UpperW
*UIConstraints: *OutputBin MailBoxBin2 *StapleLocation LowerW
*UIConstraints: *OutputBin MailBoxBin2 *StapleLocation CenterW
*UIConstraints: *StapleLocation UpperLeft *OutputBin MailBoxBin2
*UIConstraints: *StapleLocation UpperRight *OutputBin MailBoxBin2
*UIConstraints: *StapleLocation LowerLeft *OutputBin MailBoxBin2
*UIConstraints: *StapleLocation LowerRight *OutputBin MailBoxBin2
*UIConstraints: *StapleLocation LeftW *OutputBin MailBoxBin2
*UIConstraints: *StapleLocation RightW *OutputBin MailBoxBin2
*UIConstraints: *StapleLocation UpperW *OutputBin MailBoxBin2
*UIConstraints: *StapleLocation LowerW *OutputBin MailBoxBin2
*UIConstraints: *StapleLocation CenterW *OutputBin MailBoxBin2
*UIConstraints: *OutputBin MailBoxBin3 *StapleLocation UpperLeft
*UIConstraints: *OutputBin MailBoxBin3 *StapleLocation UpperRight
*UIConstraints: *OutputBin MailBoxBin3 *StapleLocation LowerLeft
*UIConstraints: *OutputBin MailBoxBin3 *StapleLocation LowerRight
*UIConstraints: *OutputBin MailBoxBin3 *StapleLocation LeftW
*UIConstraints: *OutputBin MailBoxBin3 *StapleLocation RightW
*UIConstraints: *OutputBin MailBoxBin3 *StapleLocation UpperW
*UIConstraints: *OutputBin MailBoxBin3 *StapleLocation LowerW
*UIConstraints: *OutputBin MailBoxBin3 *StapleLocation CenterW
*UIConstraints: *StapleLocation UpperLeft *OutputBin MailBoxBin3
*UIConstraints: *StapleLocation UpperRight *OutputBin MailBoxBin3
*UIConstraints: *StapleLocation LowerLeft *OutputBin MailBoxBin3
*UIConstraints: *StapleLocation LowerRight *OutputBin MailBoxBin3
*UIConstraints: *StapleLocation LeftW *OutputBin MailBoxBin3
*UIConstraints: *StapleLocation RightW *OutputBin MailBoxBin3
*UIConstraints: *StapleLocation UpperW *OutputBin MailBoxBin3
*UIConstraints: *StapleLocation LowerW *OutputBin MailBoxBin3
*UIConstraints: *StapleLocation CenterW *OutputBin MailBoxBin3
*UIConstraints: *OutputBin MailBoxBin4 *StapleLocation UpperLeft
*UIConstraints: *OutputBin MailBoxBin4 *StapleLocation UpperRight
*UIConstraints: *OutputBin MailBoxBin4 *StapleLocation LowerLeft
*UIConstraints: *OutputBin MailBoxBin4 *StapleLocation LowerRight
*UIConstraints: *OutputBin MailBoxBin4 *StapleLocation LeftW
*UIConstraints: *OutputBin MailBoxBin4 *StapleLocation RightW
*UIConstraints: *OutputBin MailBoxBin4 *StapleLocation UpperW
*UIConstraints: *OutputBin MailBoxBin4 *StapleLocation LowerW
*UIConstraints: *OutputBin MailBoxBin4 *StapleLocation CenterW
*UIConstraints: *StapleLocation UpperLeft *OutputBin MailBoxBin4
*UIConstraints: *StapleLocation UpperRight *OutputBin MailBoxBin4
*UIConstraints: *StapleLocation LowerLeft *OutputBin MailBoxBin4
*UIConstraints: *StapleLocation LowerRight *OutputBin MailBoxBin4
*UIConstraints: *StapleLocation LeftW *OutputBin MailBoxBin4
*UIConstraints: *StapleLocation RightW *OutputBin MailBoxBin4
*UIConstraints: *StapleLocation UpperW *OutputBin MailBoxBin4
*UIConstraints: *StapleLocation LowerW *OutputBin MailBoxBin4
*UIConstraints: *StapleLocation CenterW *OutputBin MailBoxBin4
*UIConstraints: *OutputBin MailBoxBin5 *StapleLocation UpperLeft
*UIConstraints: *OutputBin MailBoxBin5 *StapleLocation UpperRight
*UIConstraints: *OutputBin MailBoxBin5 *StapleLocation LowerLeft
*UIConstraints: *OutputBin MailBoxBin5 *StapleLocation LowerRight
*UIConstraints: *OutputBin MailBoxBin5 *StapleLocation LeftW
*UIConstraints: *OutputBin MailBoxBin5 *StapleLocation RightW
*UIConstraints: *OutputBin MailBoxBin5 *StapleLocation UpperW
*UIConstraints: *OutputBin MailBoxBin5 *StapleLocation LowerW
*UIConstraints: *OutputBin MailBoxBin5 *StapleLocation CenterW
*UIConstraints: *StapleLocation UpperLeft *OutputBin MailBoxBin5
*UIConstraints: *StapleLocation UpperRight *OutputBin MailBoxBin5
*UIConstraints: *StapleLocation LowerLeft *OutputBin MailBoxBin5
*UIConstraints: *StapleLocation LowerRight *OutputBin MailBoxBin5
*UIConstraints: *StapleLocation LeftW *OutputBin MailBoxBin5
*UIConstraints: *StapleLocation RightW *OutputBin MailBoxBin5
*UIConstraints: *StapleLocation UpperW *OutputBin MailBoxBin5
*UIConstraints: *StapleLocation LowerW *OutputBin MailBoxBin5
*UIConstraints: *StapleLocation CenterW *OutputBin MailBoxBin5
*UIConstraints: *OutputBin MailBoxBin6 *StapleLocation UpperLeft
*UIConstraints: *OutputBin MailBoxBin6 *StapleLocation UpperRight
*UIConstraints: *OutputBin MailBoxBin6 *StapleLocation LowerLeft
*UIConstraints: *OutputBin MailBoxBin6 *StapleLocation LowerRight
*UIConstraints: *OutputBin MailBoxBin6 *StapleLocation LeftW
*UIConstraints: *OutputBin MailBoxBin6 *StapleLocation RightW
*UIConstraints: *OutputBin MailBoxBin6 *StapleLocation UpperW
*UIConstraints: *OutputBin MailBoxBin6 *StapleLocation LowerW
*UIConstraints: *OutputBin MailBoxBin6 *StapleLocation CenterW
*UIConstraints: *StapleLocation UpperLeft *OutputBin MailBoxBin6
*UIConstraints: *StapleLocation UpperRight *OutputBin MailBoxBin6
*UIConstraints: *StapleLocation LowerLeft *OutputBin MailBoxBin6
*UIConstraints: *StapleLocation LowerRight *OutputBin MailBoxBin6
*UIConstraints: *StapleLocation LeftW *OutputBin MailBoxBin6
*UIConstraints: *StapleLocation RightW *OutputBin MailBoxBin6
*UIConstraints: *StapleLocation UpperW *OutputBin MailBoxBin6
*UIConstraints: *StapleLocation LowerW *OutputBin MailBoxBin6
*UIConstraints: *StapleLocation CenterW *OutputBin MailBoxBin6
*UIConstraints: *OutputBin MailBoxBin7 *StapleLocation UpperLeft
*UIConstraints: *OutputBin MailBoxBin7 *StapleLocation UpperRight
*UIConstraints: *OutputBin MailBoxBin7 *StapleLocation LowerLeft
*UIConstraints: *OutputBin MailBoxBin7 *StapleLocation LowerRight
*UIConstraints: *OutputBin MailBoxBin7 *StapleLocation LeftW
*UIConstraints: *OutputBin MailBoxBin7 *StapleLocation RightW
*UIConstraints: *OutputBin MailBoxBin7 *StapleLocation UpperW
*UIConstraints: *OutputBin MailBoxBin7 *StapleLocation LowerW
*UIConstraints: *OutputBin MailBoxBin7 *StapleLocation CenterW
*UIConstraints: *StapleLocation UpperLeft *OutputBin MailBoxBin7
*UIConstraints: *StapleLocation UpperRight *OutputBin MailBoxBin7
*UIConstraints: *StapleLocation LowerLeft *OutputBin MailBoxBin7
*UIConstraints: *StapleLocation LowerRight *OutputBin MailBoxBin7
*UIConstraints: *StapleLocation LeftW *OutputBin MailBoxBin7
*UIConstraints: *StapleLocation RightW *OutputBin MailBoxBin7
*UIConstraints: *StapleLocation UpperW *OutputBin MailBoxBin7
*UIConstraints: *StapleLocation LowerW *OutputBin MailBoxBin7
*UIConstraints: *StapleLocation CenterW *OutputBin MailBoxBin7
*UIConstraints: *OutputBin MailBoxBin8 *StapleLocation UpperLeft
*UIConstraints: *OutputBin MailBoxBin8 *StapleLocation UpperRight
*UIConstraints: *OutputBin MailBoxBin8 *StapleLocation LowerLeft
*UIConstraints: *OutputBin MailBoxBin8 *StapleLocation LowerRight
*UIConstraints: *OutputBin MailBoxBin8 *StapleLocation LeftW
*UIConstraints: *OutputBin MailBoxBin8 *StapleLocation RightW
*UIConstraints: *OutputBin MailBoxBin8 *StapleLocation UpperW
*UIConstraints: *OutputBin MailBoxBin8 *StapleLocation LowerW
*UIConstraints: *OutputBin MailBoxBin8 *StapleLocation CenterW
*UIConstraints: *StapleLocation UpperLeft *OutputBin MailBoxBin8
*UIConstraints: *StapleLocation UpperRight *OutputBin MailBoxBin8
*UIConstraints: *StapleLocation LowerLeft *OutputBin MailBoxBin8
*UIConstraints: *StapleLocation LowerRight *OutputBin MailBoxBin8
*UIConstraints: *StapleLocation LeftW *OutputBin MailBoxBin8
*UIConstraints: *StapleLocation RightW *OutputBin MailBoxBin8
*UIConstraints: *StapleLocation UpperW *OutputBin MailBoxBin8
*UIConstraints: *StapleLocation LowerW *OutputBin MailBoxBin8
*UIConstraints: *StapleLocation CenterW *OutputBin MailBoxBin8
*UIConstraints: *OutputBin MailBoxBin9 *StapleLocation UpperLeft
*UIConstraints: *OutputBin MailBoxBin9 *StapleLocation UpperRight
*UIConstraints: *OutputBin MailBoxBin9 *StapleLocation LowerLeft
*UIConstraints: *OutputBin MailBoxBin9 *StapleLocation LowerRight
*UIConstraints: *OutputBin MailBoxBin9 *StapleLocation LeftW
*UIConstraints: *OutputBin MailBoxBin9 *StapleLocation RightW
*UIConstraints: *OutputBin MailBoxBin9 *StapleLocation UpperW
*UIConstraints: *OutputBin MailBoxBin9 *StapleLocation LowerW
*UIConstraints: *OutputBin MailBoxBin9 *StapleLocation CenterW
*UIConstraints: *StapleLocation UpperLeft *OutputBin MailBoxBin9
*UIConstraints: *StapleLocation UpperRight *OutputBin MailBoxBin9
*UIConstraints: *StapleLocation LowerLeft *OutputBin MailBoxBin9
*UIConstraints: *StapleLocation LowerRight *OutputBin MailBoxBin9
*UIConstraints: *StapleLocation LeftW *OutputBin MailBoxBin9
*UIConstraints: *StapleLocation RightW *OutputBin MailBoxBin9
*UIConstraints: *StapleLocation UpperW *OutputBin MailBoxBin9
*UIConstraints: *StapleLocation LowerW *OutputBin MailBoxBin9
*UIConstraints: *StapleLocation CenterW *OutputBin MailBoxBin9
*%========== Finisher / Punch
*UIConstraints: *Option_30 None *RIPunch Left2
*UIConstraints: *Option_30 None *RIPunch Left3
*UIConstraints: *Option_30 None *RIPunch Left4
*UIConstraints: *Option_30 None *RIPunch Right2
*UIConstraints: *Option_30 None *RIPunch Right3
*UIConstraints: *Option_30 None *RIPunch Right4
*UIConstraints: *Option_30 None *RIPunch Upper2
*UIConstraints: *Option_30 None *RIPunch Upper3
*UIConstraints: *Option_30 None *RIPunch Upper4
*UIConstraints: *Option_30 None *RIPunch Lower2
*UIConstraints: *Option_30 None *RIPunch Lower3
*UIConstraints: *Option_30 None *RIPunch Lower4
*UIConstraints: *RIPunch Left2 *Option_30 None
*UIConstraints: *RIPunch Left3 *Option_30 None
*UIConstraints: *RIPunch Left4 *Option_30 None
*UIConstraints: *RIPunch Right2 *Option_30 None
*UIConstraints: *RIPunch Right3 *Option_30 None
*UIConstraints: *RIPunch Right4 *Option_30 None
*UIConstraints: *RIPunch Upper2 *Option_30 None
*UIConstraints: *RIPunch Upper3 *Option_30 None
*UIConstraints: *RIPunch Upper4 *Option_30 None
*UIConstraints: *RIPunch Lower2 *Option_30 None
*UIConstraints: *RIPunch Lower3 *Option_30 None
*UIConstraints: *RIPunch Lower4 *Option_30 None
*%========== Punch / Finisher Lower Tray
*UIConstraints: *OutputBin FinisherLower *RIPunch Left2
*UIConstraints: *OutputBin FinisherLower *RIPunch Left3
*UIConstraints: *OutputBin FinisherLower *RIPunch Left4
*UIConstraints: *OutputBin FinisherLower *RIPunch Right2
*UIConstraints: *OutputBin FinisherLower *RIPunch Right3
*UIConstraints: *OutputBin FinisherLower *RIPunch Right4
*UIConstraints: *OutputBin FinisherLower *RIPunch Upper2
*UIConstraints: *OutputBin FinisherLower *RIPunch Upper3
*UIConstraints: *OutputBin FinisherLower *RIPunch Upper4
*UIConstraints: *OutputBin FinisherLower *RIPunch Lower2
*UIConstraints: *OutputBin FinisherLower *RIPunch Lower3
*UIConstraints: *OutputBin FinisherLower *RIPunch Lower4
*UIConstraints: *RIPunch Left2 *OutputBin FinisherLower
*UIConstraints: *RIPunch Left3 *OutputBin FinisherLower
*UIConstraints: *RIPunch Left4 *OutputBin FinisherLower
*UIConstraints: *RIPunch Right2 *OutputBin FinisherLower
*UIConstraints: *RIPunch Right3 *OutputBin FinisherLower
*UIConstraints: *RIPunch Right4 *OutputBin FinisherLower
*UIConstraints: *RIPunch Upper2 *OutputBin FinisherLower
*UIConstraints: *RIPunch Upper3 *OutputBin FinisherLower
*UIConstraints: *RIPunch Upper4 *OutputBin FinisherLower
*UIConstraints: *RIPunch Lower2 *OutputBin FinisherLower
*UIConstraints: *RIPunch Lower3 *OutputBin FinisherLower
*UIConstraints: *RIPunch Lower4 *OutputBin FinisherLower
*%========== Punch / PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *RIPunch Left2
*UIConstraints: *OutputBin PlockmaticTray *RIPunch Left3
*UIConstraints: *OutputBin PlockmaticTray *RIPunch Left4
*UIConstraints: *OutputBin PlockmaticTray *RIPunch Right2
*UIConstraints: *OutputBin PlockmaticTray *RIPunch Right3
*UIConstraints: *OutputBin PlockmaticTray *RIPunch Right4
*UIConstraints: *OutputBin PlockmaticTray *RIPunch Upper2
*UIConstraints: *OutputBin PlockmaticTray *RIPunch Upper3
*UIConstraints: *OutputBin PlockmaticTray *RIPunch Upper4
*UIConstraints: *OutputBin PlockmaticTray *RIPunch Lower2
*UIConstraints: *OutputBin PlockmaticTray *RIPunch Lower3
*UIConstraints: *OutputBin PlockmaticTray *RIPunch Lower4
*UIConstraints: *RIPunch Left2 *OutputBin PlockmaticTray
*UIConstraints: *RIPunch Left3 *OutputBin PlockmaticTray
*UIConstraints: *RIPunch Left4 *OutputBin PlockmaticTray
*UIConstraints: *RIPunch Right2 *OutputBin PlockmaticTray
*UIConstraints: *RIPunch Right3 *OutputBin PlockmaticTray
*UIConstraints: *RIPunch Right4 *OutputBin PlockmaticTray
*UIConstraints: *RIPunch Upper2 *OutputBin PlockmaticTray
*UIConstraints: *RIPunch Upper3 *OutputBin PlockmaticTray
*UIConstraints: *RIPunch Upper4 *OutputBin PlockmaticTray
*UIConstraints: *RIPunch Lower2 *OutputBin PlockmaticTray
*UIConstraints: *RIPunch Lower3 *OutputBin PlockmaticTray
*UIConstraints: *RIPunch Lower4 *OutputBin PlockmaticTray
*%========== Page Size / InputSlot
*UIConstraints: *PageSize A5 *InputSlot 1Tray
*UIConstraints: *PageSize A6 *InputSlot 1Tray
*UIConstraints: *PageSize B5 *InputSlot 1Tray
*UIConstraints: *PageSize Statement *InputSlot 1Tray
*UIConstraints: *PageSize Executive *InputSlot 1Tray
*UIConstraints: *PageSize F *InputSlot 1Tray
*UIConstraints: *PageSize Folio *InputSlot 1Tray
*UIConstraints: *PageSize FanFoldGermanLegal *InputSlot 1Tray
*UIConstraints: *PageSize 8Kai *InputSlot 1Tray
*UIConstraints: *PageSize 16Kai *InputSlot 1Tray
*UIConstraints: *PageSize A6 *InputSlot 2Tray
*UIConstraints: *PageSize A6 *InputSlot 3Tray
*UIConstraints: *PageSize A3 *InputSlot 4Tray
*UIConstraints: *PageSize A5 *InputSlot 4Tray
*UIConstraints: *PageSize A6 *InputSlot 4Tray
*UIConstraints: *PageSize Tabloid *InputSlot 4Tray
*UIConstraints: *PageSize Statement *InputSlot 4Tray
*UIConstraints: *PageSize Executive *InputSlot 4Tray
*UIConstraints: *PageSize F *InputSlot 4Tray
*UIConstraints: *PageSize Folio *InputSlot 4Tray
*UIConstraints: *PageSize FanFoldGermanLegal *InputSlot 4Tray
*UIConstraints: *PageSize 8Kai *InputSlot 4Tray
*UIConstraints: *PageSize 16Kai *InputSlot 4Tray
*UIConstraints: *PageSize A5.FullBleed *InputSlot 1Tray
*UIConstraints: *PageSize A6.FullBleed *InputSlot 1Tray
*UIConstraints: *PageSize B5.FullBleed *InputSlot 1Tray
*UIConstraints: *PageSize Statement.FullBleed *InputSlot 1Tray
*UIConstraints: *PageSize Executive.FullBleed *InputSlot 1Tray
*UIConstraints: *PageSize F.FullBleed *InputSlot 1Tray
*UIConstraints: *PageSize Folio.FullBleed *InputSlot 1Tray
*UIConstraints: *PageSize FanFoldGermanLegal.FullBleed *InputSlot 1Tray
*UIConstraints: *PageSize 8Kai.FullBleed *InputSlot 1Tray
*UIConstraints: *PageSize 16Kai.FullBleed *InputSlot 1Tray
*UIConstraints: *PageSize A6.FullBleed *InputSlot 2Tray
*UIConstraints: *PageSize A6.FullBleed *InputSlot 3Tray
*UIConstraints: *PageSize A3.FullBleed *InputSlot 4Tray
*UIConstraints: *PageSize A5.FullBleed *InputSlot 4Tray
*UIConstraints: *PageSize A6.FullBleed *InputSlot 4Tray
*UIConstraints: *PageSize Tabloid.FullBleed *InputSlot 4Tray
*UIConstraints: *PageSize Statement.FullBleed *InputSlot 4Tray
*UIConstraints: *PageSize Executive.FullBleed *InputSlot 4Tray
*UIConstraints: *PageSize F.FullBleed *InputSlot 4Tray
*UIConstraints: *PageSize Folio.FullBleed *InputSlot 4Tray
*UIConstraints: *PageSize FanFoldGermanLegal.FullBleed *InputSlot 4Tray
*UIConstraints: *PageSize 8Kai.FullBleed *InputSlot 4Tray
*UIConstraints: *PageSize 16Kai.FullBleed *InputSlot 4Tray
*UIConstraints: *InputSlot 1Tray *PageSize A5
*UIConstraints: *InputSlot 1Tray *PageSize A6
*UIConstraints: *InputSlot 1Tray *PageSize B5
*UIConstraints: *InputSlot 1Tray *PageSize Statement
*UIConstraints: *InputSlot 1Tray *PageSize Executive
*UIConstraints: *InputSlot 1Tray *PageSize F
*UIConstraints: *InputSlot 1Tray *PageSize Folio
*UIConstraints: *InputSlot 1Tray *PageSize FanFoldGermanLegal
*UIConstraints: *InputSlot 1Tray *PageSize 8Kai
*UIConstraints: *InputSlot 1Tray *PageSize 16Kai
*UIConstraints: *InputSlot 2Tray *PageSize A6
*UIConstraints: *InputSlot 3Tray *PageSize A6
*UIConstraints: *InputSlot 4Tray *PageSize A3
*UIConstraints: *InputSlot 4Tray *PageSize A5
*UIConstraints: *InputSlot 4Tray *PageSize A6
*UIConstraints: *InputSlot 4Tray *PageSize Tabloid
*UIConstraints: *InputSlot 4Tray *PageSize Statement
*UIConstraints: *InputSlot 4Tray *PageSize Executive
*UIConstraints: *InputSlot 4Tray *PageSize F
*UIConstraints: *InputSlot 4Tray *PageSize Folio
*UIConstraints: *InputSlot 4Tray *PageSize FanFoldGermanLegal
*UIConstraints: *InputSlot 4Tray *PageSize 8Kai
*UIConstraints: *InputSlot 4Tray *PageSize 16Kai
*UIConstraints: *InputSlot 1Tray *PageSize A5.FullBleed
*UIConstraints: *InputSlot 1Tray *PageSize A6.FullBleed
*UIConstraints: *InputSlot 1Tray *PageSize B5.FullBleed
*UIConstraints: *InputSlot 1Tray *PageSize Statement.FullBleed
*UIConstraints: *InputSlot 1Tray *PageSize Executive.FullBleed
*UIConstraints: *InputSlot 1Tray *PageSize F.FullBleed
*UIConstraints: *InputSlot 1Tray *PageSize Folio.FullBleed
*UIConstraints: *InputSlot 1Tray *PageSize FanFoldGermanLegal.FullBleed
*UIConstraints: *InputSlot 1Tray *PageSize 8Kai.FullBleed
*UIConstraints: *InputSlot 1Tray *PageSize 16Kai.FullBleed
*UIConstraints: *InputSlot 2Tray *PageSize A6.FullBleed
*UIConstraints: *InputSlot 3Tray *PageSize A6.FullBleed
*UIConstraints: *InputSlot 4Tray *PageSize A3.FullBleed
*UIConstraints: *InputSlot 4Tray *PageSize A5.FullBleed
*UIConstraints: *InputSlot 4Tray *PageSize A6.FullBleed
*UIConstraints: *InputSlot 4Tray *PageSize Tabloid.FullBleed
*UIConstraints: *InputSlot 4Tray *PageSize Statement.FullBleed
*UIConstraints: *InputSlot 4Tray *PageSize Executive.FullBleed
*UIConstraints: *InputSlot 4Tray *PageSize F.FullBleed
*UIConstraints: *InputSlot 4Tray *PageSize Folio.FullBleed
*UIConstraints: *InputSlot 4Tray *PageSize FanFoldGermanLegal.FullBleed
*UIConstraints: *InputSlot 4Tray *PageSize 8Kai.FullBleed
*UIConstraints: *InputSlot 4Tray *PageSize 16Kai.FullBleed
*UIConstraints: *PageRegion A5 *InputSlot 1Tray
*UIConstraints: *PageRegion A6 *InputSlot 1Tray
*UIConstraints: *PageRegion B5 *InputSlot 1Tray
*UIConstraints: *PageRegion Statement *InputSlot 1Tray
*UIConstraints: *PageRegion Executive *InputSlot 1Tray
*UIConstraints: *PageRegion F *InputSlot 1Tray
*UIConstraints: *PageRegion Folio *InputSlot 1Tray
*UIConstraints: *PageRegion FanFoldGermanLegal *InputSlot 1Tray
*UIConstraints: *PageRegion 8Kai *InputSlot 1Tray
*UIConstraints: *PageRegion 16Kai *InputSlot 1Tray
*UIConstraints: *PageRegion A6 *InputSlot 2Tray
*UIConstraints: *PageRegion A6 *InputSlot 3Tray
*UIConstraints: *PageRegion A3 *InputSlot 4Tray
*UIConstraints: *PageRegion A5 *InputSlot 4Tray
*UIConstraints: *PageRegion A6 *InputSlot 4Tray
*UIConstraints: *PageRegion Tabloid *InputSlot 4Tray
*UIConstraints: *PageRegion Statement *InputSlot 4Tray
*UIConstraints: *PageRegion Executive *InputSlot 4Tray
*UIConstraints: *PageRegion F *InputSlot 4Tray
*UIConstraints: *PageRegion Folio *InputSlot 4Tray
*UIConstraints: *PageRegion FanFoldGermanLegal *InputSlot 4Tray
*UIConstraints: *PageRegion 8Kai *InputSlot 4Tray
*UIConstraints: *PageRegion 16Kai *InputSlot 4Tray
*UIConstraints: *PageRegion A5.FullBleed *InputSlot 1Tray
*UIConstraints: *PageRegion A6.FullBleed *InputSlot 1Tray
*UIConstraints: *PageRegion B5.FullBleed *InputSlot 1Tray
*UIConstraints: *PageRegion Statement.FullBleed *InputSlot 1Tray
*UIConstraints: *PageRegion Executive.FullBleed *InputSlot 1Tray
*UIConstraints: *PageRegion F.FullBleed *InputSlot 1Tray
*UIConstraints: *PageRegion Folio.FullBleed *InputSlot 1Tray
*UIConstraints: *PageRegion FanFoldGermanLegal.FullBleed *InputSlot 1Tray
*UIConstraints: *PageRegion 8Kai.FullBleed *InputSlot 1Tray
*UIConstraints: *PageRegion 16Kai.FullBleed *InputSlot 1Tray
*UIConstraints: *PageRegion A6.FullBleed *InputSlot 2Tray
*UIConstraints: *PageRegion A6.FullBleed *InputSlot 3Tray
*UIConstraints: *PageRegion A3.FullBleed *InputSlot 4Tray
*UIConstraints: *PageRegion A5.FullBleed *InputSlot 4Tray
*UIConstraints: *PageRegion A6.FullBleed *InputSlot 4Tray
*UIConstraints: *PageRegion Tabloid.FullBleed *InputSlot 4Tray
*UIConstraints: *PageRegion Statement.FullBleed *InputSlot 4Tray
*UIConstraints: *PageRegion Executive.FullBleed *InputSlot 4Tray
*UIConstraints: *PageRegion F.FullBleed *InputSlot 4Tray
*UIConstraints: *PageRegion Folio.FullBleed *InputSlot 4Tray
*UIConstraints: *PageRegion FanFoldGermanLegal.FullBleed *InputSlot 4Tray
*UIConstraints: *PageRegion 8Kai.FullBleed *InputSlot 4Tray
*UIConstraints: *PageRegion 16Kai.FullBleed *InputSlot 4Tray
*UIConstraints: *InputSlot 1Tray *PageRegion A5
*UIConstraints: *InputSlot 1Tray *PageRegion A6
*UIConstraints: *InputSlot 1Tray *PageRegion B5
*UIConstraints: *InputSlot 1Tray *PageRegion Statement
*UIConstraints: *InputSlot 1Tray *PageRegion Executive
*UIConstraints: *InputSlot 1Tray *PageRegion F
*UIConstraints: *InputSlot 1Tray *PageRegion Folio
*UIConstraints: *InputSlot 1Tray *PageRegion FanFoldGermanLegal
*UIConstraints: *InputSlot 1Tray *PageRegion 8Kai
*UIConstraints: *InputSlot 1Tray *PageRegion 16Kai
*UIConstraints: *InputSlot 2Tray *PageRegion A6
*UIConstraints: *InputSlot 3Tray *PageRegion A6
*UIConstraints: *InputSlot 4Tray *PageRegion A3
*UIConstraints: *InputSlot 4Tray *PageRegion A5
*UIConstraints: *InputSlot 4Tray *PageRegion A6
*UIConstraints: *InputSlot 4Tray *PageRegion Tabloid
*UIConstraints: *InputSlot 4Tray *PageRegion Statement
*UIConstraints: *InputSlot 4Tray *PageRegion Executive
*UIConstraints: *InputSlot 4Tray *PageRegion F
*UIConstraints: *InputSlot 4Tray *PageRegion Folio
*UIConstraints: *InputSlot 4Tray *PageRegion FanFoldGermanLegal
*UIConstraints: *InputSlot 4Tray *PageRegion 8Kai
*UIConstraints: *InputSlot 4Tray *PageRegion 16Kai
*UIConstraints: *InputSlot 1Tray *PageRegion A5.FullBleed
*UIConstraints: *InputSlot 1Tray *PageRegion A6.FullBleed
*UIConstraints: *InputSlot 1Tray *PageRegion B5.FullBleed
*UIConstraints: *InputSlot 1Tray *PageRegion Statement.FullBleed
*UIConstraints: *InputSlot 1Tray *PageRegion Executive.FullBleed
*UIConstraints: *InputSlot 1Tray *PageRegion F.FullBleed
*UIConstraints: *InputSlot 1Tray *PageRegion Folio.FullBleed
*UIConstraints: *InputSlot 1Tray *PageRegion FanFoldGermanLegal.FullBleed
*UIConstraints: *InputSlot 1Tray *PageRegion 8Kai.FullBleed
*UIConstraints: *InputSlot 1Tray *PageRegion 16Kai.FullBleed
*UIConstraints: *InputSlot 2Tray *PageRegion A6.FullBleed
*UIConstraints: *InputSlot 3Tray *PageRegion A6.FullBleed
*UIConstraints: *InputSlot 4Tray *PageRegion A3.FullBleed
*UIConstraints: *InputSlot 4Tray *PageRegion A5.FullBleed
*UIConstraints: *InputSlot 4Tray *PageRegion A6.FullBleed
*UIConstraints: *InputSlot 4Tray *PageRegion Tabloid.FullBleed
*UIConstraints: *InputSlot 4Tray *PageRegion Statement.FullBleed
*UIConstraints: *InputSlot 4Tray *PageRegion Executive.FullBleed
*UIConstraints: *InputSlot 4Tray *PageRegion F.FullBleed
*UIConstraints: *InputSlot 4Tray *PageRegion Folio.FullBleed
*UIConstraints: *InputSlot 4Tray *PageRegion FanFoldGermanLegal.FullBleed
*UIConstraints: *InputSlot 4Tray *PageRegion 8Kai.FullBleed
*UIConstraints: *InputSlot 4Tray *PageRegion 16Kai.FullBleed
*%========== Bypass / Page Size
*UIConstraints: *PageSize 8Kai *InputSlot MultiTray
*UIConstraints: *PageSize 16Kai *InputSlot MultiTray
*UIConstraints: *PageSize 8Kai.FullBleed *InputSlot MultiTray
*UIConstraints: *PageSize 16Kai.FullBleed *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *PageSize 8Kai
*UIConstraints: *InputSlot MultiTray *PageSize 16Kai
*UIConstraints: *InputSlot MultiTray *PageSize 8Kai.FullBleed
*UIConstraints: *InputSlot MultiTray *PageSize 16Kai.FullBleed
*UIConstraints: *PageRegion 8Kai *InputSlot MultiTray
*UIConstraints: *PageRegion 16Kai *InputSlot MultiTray
*UIConstraints: *PageRegion 8Kai.FullBleed *InputSlot MultiTray
*UIConstraints: *PageRegion 16Kai.FullBleed *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *PageRegion 8Kai
*UIConstraints: *InputSlot MultiTray *PageRegion 16Kai
*UIConstraints: *InputSlot MultiTray *PageRegion 8Kai.FullBleed
*UIConstraints: *InputSlot MultiTray *PageRegion 16Kai.FullBleed
*%========== MediaType / InputSlot
*UIConstraints: *MediaType Index *InputSlot MultiTray
*UIConstraints: *MediaType Labels *InputSlot 1Tray
*UIConstraints: *MediaType Cardstock *InputSlot 1Tray
*UIConstraints: *MediaType OHP *InputSlot 1Tray
*UIConstraints: *MediaType Index *InputSlot 1Tray
*UIConstraints: *MediaType Labels *InputSlot 2Tray
*UIConstraints: *MediaType Cardstock *InputSlot 2Tray
*UIConstraints: *MediaType OHP *InputSlot 2Tray
*UIConstraints: *MediaType Labels *InputSlot 3Tray
*UIConstraints: *MediaType Cardstock *InputSlot 3Tray
*UIConstraints: *MediaType OHP *InputSlot 3Tray
*UIConstraints: *MediaType Labels *InputSlot 4Tray
*UIConstraints: *MediaType Cardstock *InputSlot 4Tray
*UIConstraints: *MediaType OHP *InputSlot 4Tray
*UIConstraints: *MediaType Index *InputSlot 4Tray
*UIConstraints: *InputSlot MultiTray *MediaType Index
*UIConstraints: *InputSlot 1Tray *MediaType Labels
*UIConstraints: *InputSlot 1Tray *MediaType Cardstock
*UIConstraints: *InputSlot 1Tray *MediaType OHP
*UIConstraints: *InputSlot 1Tray *MediaType Index
*UIConstraints: *InputSlot 2Tray *MediaType Labels
*UIConstraints: *InputSlot 2Tray *MediaType Cardstock
*UIConstraints: *InputSlot 2Tray *MediaType OHP
*UIConstraints: *InputSlot 3Tray *MediaType Labels
*UIConstraints: *InputSlot 3Tray *MediaType Cardstock
*UIConstraints: *InputSlot 3Tray *MediaType OHP
*UIConstraints: *InputSlot 4Tray *MediaType Labels
*UIConstraints: *InputSlot 4Tray *MediaType Cardstock
*UIConstraints: *InputSlot 4Tray *MediaType OHP
*UIConstraints: *InputSlot 4Tray *MediaType Index
*%========== Page Size / Duplex
*UIConstraints: *PageSize A6 *Duplex DuplexTumble
*UIConstraints: *PageSize A6 *Duplex DuplexNoTumble
*UIConstraints: *PageSize A6.FullBleed *Duplex DuplexTumble
*UIConstraints: *PageSize A6.FullBleed *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexTumble *PageSize A6
*UIConstraints: *Duplex DuplexNoTumble *PageSize A6
*UIConstraints: *Duplex DuplexTumble *PageSize A6.FullBleed
*UIConstraints: *Duplex DuplexNoTumble *PageSize A6.FullBleed
*UIConstraints: *PageRegion A6 *Duplex DuplexTumble
*UIConstraints: *PageRegion A6 *Duplex DuplexNoTumble
*UIConstraints: *PageRegion A6.FullBleed *Duplex DuplexTumble
*UIConstraints: *PageRegion A6.FullBleed *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexTumble *PageRegion A6
*UIConstraints: *Duplex DuplexNoTumble *PageRegion A6
*UIConstraints: *Duplex DuplexTumble *PageRegion A6.FullBleed
*UIConstraints: *Duplex DuplexNoTumble *PageRegion A6.FullBleed
*%========== Page Size / Destination
*UIConstraints: *PageSize A6 *OutputBin MailBoxBin1
*UIConstraints: *PageSize A6 *OutputBin MailBoxBin2
*UIConstraints: *PageSize A6 *OutputBin MailBoxBin3
*UIConstraints: *PageSize A6 *OutputBin MailBoxBin4
*UIConstraints: *PageSize A6 *OutputBin MailBoxBin5
*UIConstraints: *PageSize A6 *OutputBin MailBoxBin6
*UIConstraints: *PageSize A6 *OutputBin MailBoxBin7
*UIConstraints: *PageSize A6 *OutputBin MailBoxBin8
*UIConstraints: *PageSize A6 *OutputBin MailBoxBin9
*UIConstraints: *PageSize A6.FullBleed *OutputBin MailBoxBin1
*UIConstraints: *PageSize A6.FullBleed *OutputBin MailBoxBin2
*UIConstraints: *PageSize A6.FullBleed *OutputBin MailBoxBin3
*UIConstraints: *PageSize A6.FullBleed *OutputBin MailBoxBin4
*UIConstraints: *PageSize A6.FullBleed *OutputBin MailBoxBin5
*UIConstraints: *PageSize A6.FullBleed *OutputBin MailBoxBin6
*UIConstraints: *PageSize A6.FullBleed *OutputBin MailBoxBin7
*UIConstraints: *PageSize A6.FullBleed *OutputBin MailBoxBin8
*UIConstraints: *PageSize A6.FullBleed *OutputBin MailBoxBin9
*UIConstraints: *OutputBin MailBoxBin1 *PageSize A6
*UIConstraints: *OutputBin MailBoxBin2 *PageSize A6
*UIConstraints: *OutputBin MailBoxBin3 *PageSize A6
*UIConstraints: *OutputBin MailBoxBin4 *PageSize A6
*UIConstraints: *OutputBin MailBoxBin5 *PageSize A6
*UIConstraints: *OutputBin MailBoxBin6 *PageSize A6
*UIConstraints: *OutputBin MailBoxBin7 *PageSize A6
*UIConstraints: *OutputBin MailBoxBin8 *PageSize A6
*UIConstraints: *OutputBin MailBoxBin9 *PageSize A6
*UIConstraints: *OutputBin MailBoxBin1 *PageSize A6.FullBleed
*UIConstraints: *OutputBin MailBoxBin2 *PageSize A6.FullBleed
*UIConstraints: *OutputBin MailBoxBin3 *PageSize A6.FullBleed
*UIConstraints: *OutputBin MailBoxBin4 *PageSize A6.FullBleed
*UIConstraints: *OutputBin MailBoxBin5 *PageSize A6.FullBleed
*UIConstraints: *OutputBin MailBoxBin6 *PageSize A6.FullBleed
*UIConstraints: *OutputBin MailBoxBin7 *PageSize A6.FullBleed
*UIConstraints: *OutputBin MailBoxBin8 *PageSize A6.FullBleed
*UIConstraints: *OutputBin MailBoxBin9 *PageSize A6.FullBleed
*UIConstraints: *PageRegion A6 *OutputBin MailBoxBin1
*UIConstraints: *PageRegion A6 *OutputBin MailBoxBin2
*UIConstraints: *PageRegion A6 *OutputBin MailBoxBin3
*UIConstraints: *PageRegion A6 *OutputBin MailBoxBin4
*UIConstraints: *PageRegion A6 *OutputBin MailBoxBin5
*UIConstraints: *PageRegion A6 *OutputBin MailBoxBin6
*UIConstraints: *PageRegion A6 *OutputBin MailBoxBin7
*UIConstraints: *PageRegion A6 *OutputBin MailBoxBin8
*UIConstraints: *PageRegion A6 *OutputBin MailBoxBin9
*UIConstraints: *PageRegion A6.FullBleed *OutputBin MailBoxBin1
*UIConstraints: *PageRegion A6.FullBleed *OutputBin MailBoxBin2
*UIConstraints: *PageRegion A6.FullBleed *OutputBin MailBoxBin3
*UIConstraints: *PageRegion A6.FullBleed *OutputBin MailBoxBin4
*UIConstraints: *PageRegion A6.FullBleed *OutputBin MailBoxBin5
*UIConstraints: *PageRegion A6.FullBleed *OutputBin MailBoxBin6
*UIConstraints: *PageRegion A6.FullBleed *OutputBin MailBoxBin7
*UIConstraints: *PageRegion A6.FullBleed *OutputBin MailBoxBin8
*UIConstraints: *PageRegion A6.FullBleed *OutputBin MailBoxBin9
*UIConstraints: *OutputBin MailBoxBin1 *PageRegion A6
*UIConstraints: *OutputBin MailBoxBin2 *PageRegion A6
*UIConstraints: *OutputBin MailBoxBin3 *PageRegion A6
*UIConstraints: *OutputBin MailBoxBin4 *PageRegion A6
*UIConstraints: *OutputBin MailBoxBin5 *PageRegion A6
*UIConstraints: *OutputBin MailBoxBin6 *PageRegion A6
*UIConstraints: *OutputBin MailBoxBin7 *PageRegion A6
*UIConstraints: *OutputBin MailBoxBin8 *PageRegion A6
*UIConstraints: *OutputBin MailBoxBin9 *PageRegion A6
*UIConstraints: *OutputBin MailBoxBin1 *PageRegion A6.FullBleed
*UIConstraints: *OutputBin MailBoxBin2 *PageRegion A6.FullBleed
*UIConstraints: *OutputBin MailBoxBin3 *PageRegion A6.FullBleed
*UIConstraints: *OutputBin MailBoxBin4 *PageRegion A6.FullBleed
*UIConstraints: *OutputBin MailBoxBin5 *PageRegion A6.FullBleed
*UIConstraints: *OutputBin MailBoxBin6 *PageRegion A6.FullBleed
*UIConstraints: *OutputBin MailBoxBin7 *PageRegion A6.FullBleed
*UIConstraints: *OutputBin MailBoxBin8 *PageRegion A6.FullBleed
*UIConstraints: *OutputBin MailBoxBin9 *PageRegion A6.FullBleed
*UIConstraints: *OutputBin FinisherLower *PageSize A5
*UIConstraints: *OutputBin FinisherLower *PageSize A6
*UIConstraints: *OutputBin FinisherLower *PageSize Statement
*UIConstraints: *OutputBin FinisherLower *PageSize Executive
*UIConstraints: *OutputBin FinisherLower *PageSize F
*UIConstraints: *OutputBin FinisherLower *PageSize Folio
*UIConstraints: *OutputBin FinisherLower *PageSize FanFoldGermanLegal
*UIConstraints: *OutputBin FinisherLower *PageSize 8Kai
*UIConstraints: *OutputBin FinisherLower *PageSize 16Kai
*UIConstraints: *OutputBin FinisherLower *PageSize A5.FullBleed
*UIConstraints: *OutputBin FinisherLower *PageSize A6.FullBleed
*UIConstraints: *OutputBin FinisherLower *PageSize Statement.FullBleed
*UIConstraints: *OutputBin FinisherLower *PageSize Executive.FullBleed
*UIConstraints: *OutputBin FinisherLower *PageSize F.FullBleed
*UIConstraints: *OutputBin FinisherLower *PageSize Folio.FullBleed
*UIConstraints: *OutputBin FinisherLower *PageSize FanFoldGermanLegal.FullBleed
*UIConstraints: *OutputBin FinisherLower *PageSize 8Kai.FullBleed
*UIConstraints: *OutputBin FinisherLower *PageSize 16Kai.FullBleed
*UIConstraints: *PageSize A5 *OutputBin FinisherLower
*UIConstraints: *PageSize A6 *OutputBin FinisherLower
*UIConstraints: *PageSize Statement *OutputBin FinisherLower
*UIConstraints: *PageSize Executive *OutputBin FinisherLower
*UIConstraints: *PageSize F *OutputBin FinisherLower
*UIConstraints: *PageSize Folio *OutputBin FinisherLower
*UIConstraints: *PageSize FanFoldGermanLegal *OutputBin FinisherLower
*UIConstraints: *PageSize 8Kai *OutputBin FinisherLower
*UIConstraints: *PageSize 16Kai *OutputBin FinisherLower
*UIConstraints: *PageSize A5.FullBleed *OutputBin FinisherLower
*UIConstraints: *PageSize A6.FullBleed *OutputBin FinisherLower
*UIConstraints: *PageSize Statement.FullBleed *OutputBin FinisherLower
*UIConstraints: *PageSize Executive.FullBleed *OutputBin FinisherLower
*UIConstraints: *PageSize F.FullBleed *OutputBin FinisherLower
*UIConstraints: *PageSize Folio.FullBleed *OutputBin FinisherLower
*UIConstraints: *PageSize FanFoldGermanLegal.FullBleed *OutputBin FinisherLower
*UIConstraints: *PageSize 8Kai.FullBleed *OutputBin FinisherLower
*UIConstraints: *PageSize 16Kai.FullBleed *OutputBin FinisherLower
*UIConstraints: *PageRegion A5 *OutputBin FinisherLower
*UIConstraints: *PageRegion A6 *OutputBin FinisherLower
*UIConstraints: *PageRegion Statement *OutputBin FinisherLower
*UIConstraints: *PageRegion Executive *OutputBin FinisherLower
*UIConstraints: *PageRegion F *OutputBin FinisherLower
*UIConstraints: *PageRegion Folio *OutputBin FinisherLower
*UIConstraints: *PageRegion FanFoldGermanLegal *OutputBin FinisherLower
*UIConstraints: *PageRegion 8Kai *OutputBin FinisherLower
*UIConstraints: *PageRegion 16Kai *OutputBin FinisherLower
*UIConstraints: *PageRegion A5.FullBleed *OutputBin FinisherLower
*UIConstraints: *PageRegion A6.FullBleed *OutputBin FinisherLower
*UIConstraints: *PageRegion Statement.FullBleed *OutputBin FinisherLower
*UIConstraints: *PageRegion Executive.FullBleed *OutputBin FinisherLower
*UIConstraints: *PageRegion F.FullBleed *OutputBin FinisherLower
*UIConstraints: *PageRegion Folio.FullBleed *OutputBin FinisherLower
*UIConstraints: *PageRegion FanFoldGermanLegal.FullBleed *OutputBin FinisherLower
*UIConstraints: *PageRegion 8Kai.FullBleed *OutputBin FinisherLower
*UIConstraints: *PageRegion 16Kai.FullBleed *OutputBin FinisherLower
*UIConstraints: *OutputBin FinisherLower *PageRegion A5
*UIConstraints: *OutputBin FinisherLower *PageRegion A6
*UIConstraints: *OutputBin FinisherLower *PageRegion Statement
*UIConstraints: *OutputBin FinisherLower *PageRegion Executive
*UIConstraints: *OutputBin FinisherLower *PageRegion F
*UIConstraints: *OutputBin FinisherLower *PageRegion Folio
*UIConstraints: *OutputBin FinisherLower *PageRegion FanFoldGermanLegal
*UIConstraints: *OutputBin FinisherLower *PageRegion 8Kai
*UIConstraints: *OutputBin FinisherLower *PageRegion 16Kai
*UIConstraints: *OutputBin FinisherLower *PageRegion A5.FullBleed
*UIConstraints: *OutputBin FinisherLower *PageRegion A6.FullBleed
*UIConstraints: *OutputBin FinisherLower *PageRegion Statement.FullBleed
*UIConstraints: *OutputBin FinisherLower *PageRegion Executive.FullBleed
*UIConstraints: *OutputBin FinisherLower *PageRegion F.FullBleed
*UIConstraints: *OutputBin FinisherLower *PageRegion Folio.FullBleed
*UIConstraints: *OutputBin FinisherLower *PageRegion FanFoldGermanLegal.FullBleed
*UIConstraints: *OutputBin FinisherLower *PageRegion 8Kai.FullBleed
*UIConstraints: *OutputBin FinisherLower *PageRegion 16Kai.FullBleed
*UIConstraints: *OutputBin PlockmaticTray *PageSize A5
*UIConstraints: *OutputBin PlockmaticTray *PageSize A6
*UIConstraints: *OutputBin PlockmaticTray *PageSize B4
*UIConstraints: *OutputBin PlockmaticTray *PageSize B5
*UIConstraints: *OutputBin PlockmaticTray *PageSize Legal
*UIConstraints: *OutputBin PlockmaticTray *PageSize Statement
*UIConstraints: *OutputBin PlockmaticTray *PageSize Executive
*UIConstraints: *OutputBin PlockmaticTray *PageSize F
*UIConstraints: *OutputBin PlockmaticTray *PageSize Folio
*UIConstraints: *OutputBin PlockmaticTray *PageSize FanFoldGermanLegal
*UIConstraints: *OutputBin PlockmaticTray *PageSize 8Kai
*UIConstraints: *OutputBin PlockmaticTray *PageSize 16Kai
*UIConstraints: *OutputBin PlockmaticTray *PageSize A5.FullBleed
*UIConstraints: *OutputBin PlockmaticTray *PageSize A6.FullBleed
*UIConstraints: *OutputBin PlockmaticTray *PageSize B4.FullBleed
*UIConstraints: *OutputBin PlockmaticTray *PageSize B5.FullBleed
*UIConstraints: *OutputBin PlockmaticTray *PageSize Legal.FullBleed
*UIConstraints: *OutputBin PlockmaticTray *PageSize Statement.FullBleed
*UIConstraints: *OutputBin PlockmaticTray *PageSize Executive.FullBleed
*UIConstraints: *OutputBin PlockmaticTray *PageSize F.FullBleed
*UIConstraints: *OutputBin PlockmaticTray *PageSize Folio.FullBleed
*UIConstraints: *OutputBin PlockmaticTray *PageSize FanFoldGermanLegal.FullBleed
*UIConstraints: *OutputBin PlockmaticTray *PageSize 8Kai.FullBleed
*UIConstraints: *OutputBin PlockmaticTray *PageSize 16Kai.FullBleed
*UIConstraints: *PageSize A5 *OutputBin PlockmaticTray
*UIConstraints: *PageSize A6 *OutputBin PlockmaticTray
*UIConstraints: *PageSize B4 *OutputBin PlockmaticTray
*UIConstraints: *PageSize B5 *OutputBin PlockmaticTray
*UIConstraints: *PageSize Legal *OutputBin PlockmaticTray
*UIConstraints: *PageSize Statement *OutputBin PlockmaticTray
*UIConstraints: *PageSize Executive *OutputBin PlockmaticTray
*UIConstraints: *PageSize F *OutputBin PlockmaticTray
*UIConstraints: *PageSize Folio *OutputBin PlockmaticTray
*UIConstraints: *PageSize FanFoldGermanLegal *OutputBin PlockmaticTray
*UIConstraints: *PageSize 8Kai *OutputBin PlockmaticTray
*UIConstraints: *PageSize 16Kai *OutputBin PlockmaticTray
*UIConstraints: *PageSize A5.FullBleed *OutputBin PlockmaticTray
*UIConstraints: *PageSize A6.FullBleed *OutputBin PlockmaticTray
*UIConstraints: *PageSize B4.FullBleed *OutputBin PlockmaticTray
*UIConstraints: *PageSize B5.FullBleed *OutputBin PlockmaticTray
*UIConstraints: *PageSize Legal.FullBleed *OutputBin PlockmaticTray
*UIConstraints: *PageSize Statement.FullBleed *OutputBin PlockmaticTray
*UIConstraints: *PageSize Executive.FullBleed *OutputBin PlockmaticTray
*UIConstraints: *PageSize F.FullBleed *OutputBin PlockmaticTray
*UIConstraints: *PageSize Folio.FullBleed *OutputBin PlockmaticTray
*UIConstraints: *PageSize FanFoldGermanLegal.FullBleed *OutputBin PlockmaticTray
*UIConstraints: *PageSize 8Kai.FullBleed *OutputBin PlockmaticTray
*UIConstraints: *PageSize 16Kai.FullBleed *OutputBin PlockmaticTray
*UIConstraints: *PageRegion A5 *OutputBin PlockmaticTray
*UIConstraints: *PageRegion A6 *OutputBin PlockmaticTray
*UIConstraints: *PageRegion B4 *OutputBin PlockmaticTray
*UIConstraints: *PageRegion B5 *OutputBin PlockmaticTray
*UIConstraints: *PageRegion Legal *OutputBin PlockmaticTray
*UIConstraints: *PageRegion Statement *OutputBin PlockmaticTray
*UIConstraints: *PageRegion Executive *OutputBin PlockmaticTray
*UIConstraints: *PageRegion F *OutputBin PlockmaticTray
*UIConstraints: *PageRegion Folio *OutputBin PlockmaticTray
*UIConstraints: *PageRegion FanFoldGermanLegal *OutputBin PlockmaticTray
*UIConstraints: *PageRegion 8Kai *OutputBin PlockmaticTray
*UIConstraints: *PageRegion 16Kai *OutputBin PlockmaticTray
*UIConstraints: *PageRegion A5.FullBleed *OutputBin PlockmaticTray
*UIConstraints: *PageRegion A6.FullBleed *OutputBin PlockmaticTray
*UIConstraints: *PageRegion B4.FullBleed *OutputBin PlockmaticTray
*UIConstraints: *PageRegion B5.FullBleed *OutputBin PlockmaticTray
*UIConstraints: *PageRegion Legal.FullBleed *OutputBin PlockmaticTray
*UIConstraints: *PageRegion Statement.FullBleed *OutputBin PlockmaticTray
*UIConstraints: *PageRegion Executive.FullBleed *OutputBin PlockmaticTray
*UIConstraints: *PageRegion F.FullBleed *OutputBin PlockmaticTray
*UIConstraints: *PageRegion Folio.FullBleed *OutputBin PlockmaticTray
*UIConstraints: *PageRegion FanFoldGermanLegal.FullBleed *OutputBin PlockmaticTray
*UIConstraints: *PageRegion 8Kai.FullBleed *OutputBin PlockmaticTray
*UIConstraints: *PageRegion 16Kai.FullBleed *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *PageRegion A5
*UIConstraints: *OutputBin PlockmaticTray *PageRegion A6
*UIConstraints: *OutputBin PlockmaticTray *PageRegion B4
*UIConstraints: *OutputBin PlockmaticTray *PageRegion B5
*UIConstraints: *OutputBin PlockmaticTray *PageRegion Legal
*UIConstraints: *OutputBin PlockmaticTray *PageRegion Statement
*UIConstraints: *OutputBin PlockmaticTray *PageRegion Executive
*UIConstraints: *OutputBin PlockmaticTray *PageRegion F
*UIConstraints: *OutputBin PlockmaticTray *PageRegion Folio
*UIConstraints: *OutputBin PlockmaticTray *PageRegion FanFoldGermanLegal
*UIConstraints: *OutputBin PlockmaticTray *PageRegion 8Kai
*UIConstraints: *OutputBin PlockmaticTray *PageRegion 16Kai
*UIConstraints: *OutputBin PlockmaticTray *PageRegion A5.FullBleed
*UIConstraints: *OutputBin PlockmaticTray *PageRegion A6.FullBleed
*UIConstraints: *OutputBin PlockmaticTray *PageRegion B4.FullBleed
*UIConstraints: *OutputBin PlockmaticTray *PageRegion B5.FullBleed
*UIConstraints: *OutputBin PlockmaticTray *PageRegion Legal.FullBleed
*UIConstraints: *OutputBin PlockmaticTray *PageRegion Statement.FullBleed
*UIConstraints: *OutputBin PlockmaticTray *PageRegion Executive.FullBleed
*UIConstraints: *OutputBin PlockmaticTray *PageRegion F.FullBleed
*UIConstraints: *OutputBin PlockmaticTray *PageRegion Folio.FullBleed
*UIConstraints: *OutputBin PlockmaticTray *PageRegion FanFoldGermanLegal.FullBleed
*UIConstraints: *OutputBin PlockmaticTray *PageRegion 8Kai.FullBleed
*UIConstraints: *OutputBin PlockmaticTray *PageRegion 16Kai.FullBleed
*%========== ZFold / Finisher Booklet Tray
*UIConstraints: *OutputBin FinisherLower *RIZfold Bottom
*UIConstraints: *OutputBin FinisherLower *RIZfold Left
*UIConstraints: *OutputBin FinisherLower *RIZfold Right
*UIConstraints: *RIZfold Bottom *OutputBin FinisherLower
*UIConstraints: *RIZfold Left *OutputBin FinisherLower
*UIConstraints: *RIZfold Right *OutputBin FinisherLower
*UIConstraints: *OutputBin PlockmaticTray *RIZfold Bottom
*UIConstraints: *OutputBin PlockmaticTray *RIZfold Left
*UIConstraints: *OutputBin PlockmaticTray *RIZfold Right
*UIConstraints: *RIZfold Bottom *OutputBin PlockmaticTray
*UIConstraints: *RIZfold Left *OutputBin PlockmaticTray
*UIConstraints: *RIZfold Right *OutputBin PlockmaticTray
*%========== ZFold / MailBox
*UIConstraints: *OutputBin MailBoxBin1 *RIZfold Bottom
*UIConstraints: *OutputBin MailBoxBin1 *RIZfold Left
*UIConstraints: *OutputBin MailBoxBin1 *RIZfold Right
*UIConstraints: *RIZfold Bottom *OutputBin MailBoxBin1
*UIConstraints: *RIZfold Left *OutputBin MailBoxBin1
*UIConstraints: *RIZfold Right *OutputBin MailBoxBin1
*UIConstraints: *OutputBin MailBoxBin2 *RIZfold Bottom
*UIConstraints: *OutputBin MailBoxBin2 *RIZfold Left
*UIConstraints: *OutputBin MailBoxBin2 *RIZfold Right
*UIConstraints: *RIZfold Bottom *OutputBin MailBoxBin2
*UIConstraints: *RIZfold Left *OutputBin MailBoxBin2
*UIConstraints: *RIZfold Right *OutputBin MailBoxBin2
*UIConstraints: *OutputBin MailBoxBin3 *RIZfold Bottom
*UIConstraints: *OutputBin MailBoxBin3 *RIZfold Left
*UIConstraints: *OutputBin MailBoxBin3 *RIZfold Right
*UIConstraints: *RIZfold Bottom *OutputBin MailBoxBin3
*UIConstraints: *RIZfold Left *OutputBin MailBoxBin3
*UIConstraints: *RIZfold Right *OutputBin MailBoxBin3
*UIConstraints: *OutputBin MailBoxBin4 *RIZfold Bottom
*UIConstraints: *OutputBin MailBoxBin4 *RIZfold Left
*UIConstraints: *OutputBin MailBoxBin4 *RIZfold Right
*UIConstraints: *RIZfold Bottom *OutputBin MailBoxBin4
*UIConstraints: *RIZfold Left *OutputBin MailBoxBin4
*UIConstraints: *RIZfold Right *OutputBin MailBoxBin4
*UIConstraints: *OutputBin MailBoxBin5 *RIZfold Bottom
*UIConstraints: *OutputBin MailBoxBin5 *RIZfold Left
*UIConstraints: *OutputBin MailBoxBin5 *RIZfold Right
*UIConstraints: *RIZfold Bottom *OutputBin MailBoxBin5
*UIConstraints: *RIZfold Left *OutputBin MailBoxBin5
*UIConstraints: *RIZfold Right *OutputBin MailBoxBin5
*UIConstraints: *OutputBin MailBoxBin6 *RIZfold Bottom
*UIConstraints: *OutputBin MailBoxBin6 *RIZfold Left
*UIConstraints: *OutputBin MailBoxBin6 *RIZfold Right
*UIConstraints: *RIZfold Bottom *OutputBin MailBoxBin6
*UIConstraints: *RIZfold Left *OutputBin MailBoxBin6
*UIConstraints: *RIZfold Right *OutputBin MailBoxBin6
*UIConstraints: *OutputBin MailBoxBin7 *RIZfold Bottom
*UIConstraints: *OutputBin MailBoxBin7 *RIZfold Left
*UIConstraints: *OutputBin MailBoxBin7 *RIZfold Right
*UIConstraints: *RIZfold Bottom *OutputBin MailBoxBin7
*UIConstraints: *RIZfold Left *OutputBin MailBoxBin7
*UIConstraints: *RIZfold Right *OutputBin MailBoxBin7
*UIConstraints: *OutputBin MailBoxBin8 *RIZfold Bottom
*UIConstraints: *OutputBin MailBoxBin8 *RIZfold Left
*UIConstraints: *OutputBin MailBoxBin8 *RIZfold Right
*UIConstraints: *RIZfold Bottom *OutputBin MailBoxBin8
*UIConstraints: *RIZfold Left *OutputBin MailBoxBin8
*UIConstraints: *RIZfold Right *OutputBin MailBoxBin8
*UIConstraints: *OutputBin MailBoxBin9 *RIZfold Bottom
*UIConstraints: *OutputBin MailBoxBin9 *RIZfold Left
*UIConstraints: *OutputBin MailBoxBin9 *RIZfold Right
*UIConstraints: *RIZfold Bottom *OutputBin MailBoxBin9
*UIConstraints: *RIZfold Left *OutputBin MailBoxBin9
*UIConstraints: *RIZfold Right *OutputBin MailBoxBin9
*%========== ZFold / Punch
*UIConstraints: *RIZfold Bottom *RIPunch Left2
*UIConstraints: *RIZfold Bottom *RIPunch Left3
*UIConstraints: *RIZfold Bottom *RIPunch Left4
*UIConstraints: *RIZfold Bottom *RIPunch Right2
*UIConstraints: *RIZfold Bottom *RIPunch Right3
*UIConstraints: *RIZfold Bottom *RIPunch Right4
*UIConstraints: *RIZfold Bottom *RIPunch Upper2
*UIConstraints: *RIZfold Bottom *RIPunch Upper3
*UIConstraints: *RIZfold Bottom *RIPunch Upper4
*UIConstraints: *RIZfold Bottom *RIPunch Lower2
*UIConstraints: *RIZfold Bottom *RIPunch Lower3
*UIConstraints: *RIZfold Bottom *RIPunch Lower4
*UIConstraints: *RIPunch Left2 *RIZfold Bottom
*UIConstraints: *RIPunch Left3 *RIZfold Bottom
*UIConstraints: *RIPunch Left4 *RIZfold Bottom
*UIConstraints: *RIPunch Right2 *RIZfold Bottom
*UIConstraints: *RIPunch Right3 *RIZfold Bottom
*UIConstraints: *RIPunch Right4 *RIZfold Bottom
*UIConstraints: *RIPunch Upper2 *RIZfold Bottom
*UIConstraints: *RIPunch Upper3 *RIZfold Bottom
*UIConstraints: *RIPunch Upper4 *RIZfold Bottom
*UIConstraints: *RIPunch Lower2 *RIZfold Bottom
*UIConstraints: *RIPunch Lower3 *RIZfold Bottom
*UIConstraints: *RIPunch Lower4 *RIZfold Bottom
*UIConstraints: *RIZfold Left *RIPunch Left2
*UIConstraints: *RIZfold Left *RIPunch Left3
*UIConstraints: *RIZfold Left *RIPunch Left4
*UIConstraints: *RIZfold Left *RIPunch Right2
*UIConstraints: *RIZfold Left *RIPunch Right3
*UIConstraints: *RIZfold Left *RIPunch Right4
*UIConstraints: *RIZfold Left *RIPunch Upper2
*UIConstraints: *RIZfold Left *RIPunch Upper3
*UIConstraints: *RIZfold Left *RIPunch Upper4
*UIConstraints: *RIZfold Left *RIPunch Lower2
*UIConstraints: *RIZfold Left *RIPunch Lower3
*UIConstraints: *RIZfold Left *RIPunch Lower4
*UIConstraints: *RIPunch Left2 *RIZfold Left
*UIConstraints: *RIPunch Left3 *RIZfold Left
*UIConstraints: *RIPunch Left4 *RIZfold Left
*UIConstraints: *RIPunch Right2 *RIZfold Left
*UIConstraints: *RIPunch Right3 *RIZfold Left
*UIConstraints: *RIPunch Right4 *RIZfold Left
*UIConstraints: *RIPunch Upper2 *RIZfold Left
*UIConstraints: *RIPunch Upper3 *RIZfold Left
*UIConstraints: *RIPunch Upper4 *RIZfold Left
*UIConstraints: *RIPunch Lower2 *RIZfold Left
*UIConstraints: *RIPunch Lower3 *RIZfold Left
*UIConstraints: *RIPunch Lower4 *RIZfold Left
*UIConstraints: *RIZfold Right *RIPunch Left2
*UIConstraints: *RIZfold Right *RIPunch Left3
*UIConstraints: *RIZfold Right *RIPunch Left4
*UIConstraints: *RIZfold Right *RIPunch Right2
*UIConstraints: *RIZfold Right *RIPunch Right3
*UIConstraints: *RIZfold Right *RIPunch Right4
*UIConstraints: *RIZfold Right *RIPunch Upper2
*UIConstraints: *RIZfold Right *RIPunch Upper3
*UIConstraints: *RIZfold Right *RIPunch Upper4
*UIConstraints: *RIZfold Right *RIPunch Lower2
*UIConstraints: *RIZfold Right *RIPunch Lower3
*UIConstraints: *RIZfold Right *RIPunch Lower4
*UIConstraints: *RIPunch Left2 *RIZfold Right
*UIConstraints: *RIPunch Left3 *RIZfold Right
*UIConstraints: *RIPunch Left4 *RIZfold Right
*UIConstraints: *RIPunch Right2 *RIZfold Right
*UIConstraints: *RIPunch Right3 *RIZfold Right
*UIConstraints: *RIPunch Right4 *RIZfold Right
*UIConstraints: *RIPunch Upper2 *RIZfold Right
*UIConstraints: *RIPunch Upper3 *RIZfold Right
*UIConstraints: *RIPunch Upper4 *RIZfold Right
*UIConstraints: *RIPunch Lower2 *RIZfold Right
*UIConstraints: *RIPunch Lower3 *RIZfold Right
*UIConstraints: *RIPunch Lower4 *RIZfold Right
*%========== Punch / Staple
*UIConstraints: *StapleLocation CenterW *RIPunch Left2
*UIConstraints: *StapleLocation CenterW *RIPunch Left3
*UIConstraints: *StapleLocation CenterW *RIPunch Left4
*UIConstraints: *StapleLocation CenterW *RIPunch Right2
*UIConstraints: *StapleLocation CenterW *RIPunch Right3
*UIConstraints: *StapleLocation CenterW *RIPunch Right4
*UIConstraints: *StapleLocation CenterW *RIPunch Upper2
*UIConstraints: *StapleLocation CenterW *RIPunch Upper3
*UIConstraints: *StapleLocation CenterW *RIPunch Upper4
*UIConstraints: *StapleLocation CenterW *RIPunch Lower2
*UIConstraints: *StapleLocation CenterW *RIPunch Lower3
*UIConstraints: *StapleLocation CenterW *RIPunch Lower4
*UIConstraints: *RIPunch Left2 *StapleLocation CenterW
*UIConstraints: *RIPunch Left3 *StapleLocation CenterW
*UIConstraints: *RIPunch Left4 *StapleLocation CenterW
*UIConstraints: *RIPunch Right2 *StapleLocation CenterW
*UIConstraints: *RIPunch Right3 *StapleLocation CenterW
*UIConstraints: *RIPunch Right4 *StapleLocation CenterW
*UIConstraints: *RIPunch Upper2 *StapleLocation CenterW
*UIConstraints: *RIPunch Upper3 *StapleLocation CenterW
*UIConstraints: *RIPunch Upper4 *StapleLocation CenterW
*UIConstraints: *RIPunch Lower2 *StapleLocation CenterW
*UIConstraints: *RIPunch Lower3 *StapleLocation CenterW
*UIConstraints: *RIPunch Lower4 *StapleLocation CenterW
*%========== ZFold / Staple
*UIConstraints: *RIZfold Bottom *StapleLocation CenterW
*UIConstraints: *RIZfold Right *StapleLocation CenterW
*UIConstraints: *RIZfold Left *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *RIZfold Bottom
*UIConstraints: *StapleLocation CenterW *RIZfold Right
*UIConstraints: *StapleLocation CenterW *RIZfold Left
*%========== MultiTray/Staple
*UIConstraints: *InputSlot MultiTray *StapleLocation UpperLeft
*UIConstraints: *InputSlot MultiTray *StapleLocation UpperRight
*UIConstraints: *InputSlot MultiTray *StapleLocation LowerLeft
*UIConstraints: *InputSlot MultiTray *StapleLocation LowerRight
*UIConstraints: *InputSlot MultiTray *StapleLocation LeftW
*UIConstraints: *InputSlot MultiTray *StapleLocation RightW
*UIConstraints: *InputSlot MultiTray *StapleLocation UpperW
*UIConstraints: *InputSlot MultiTray *StapleLocation LowerW
*UIConstraints: *InputSlot MultiTray *StapleLocation CenterW
*UIConstraints: *StapleLocation UpperLeft *InputSlot MultiTray
*UIConstraints: *StapleLocation UpperRight *InputSlot MultiTray
*UIConstraints: *StapleLocation LowerLeft *InputSlot MultiTray
*UIConstraints: *StapleLocation LowerRight *InputSlot MultiTray
*UIConstraints: *StapleLocation LeftW *InputSlot MultiTray
*UIConstraints: *StapleLocation RightW *InputSlot MultiTray
*UIConstraints: *StapleLocation UpperW *InputSlot MultiTray
*UIConstraints: *StapleLocation LowerW *InputSlot MultiTray
*UIConstraints: *StapleLocation CenterW *InputSlot MultiTray
*%========== MultiTray/Punch
*UIConstraints: *InputSlot MultiTray *RIPunch Left2
*UIConstraints: *InputSlot MultiTray *RIPunch Left3
*UIConstraints: *InputSlot MultiTray *RIPunch Left4
*UIConstraints: *InputSlot MultiTray *RIPunch Right2
*UIConstraints: *InputSlot MultiTray *RIPunch Right3
*UIConstraints: *InputSlot MultiTray *RIPunch Right4
*UIConstraints: *InputSlot MultiTray *RIPunch Upper2
*UIConstraints: *InputSlot MultiTray *RIPunch Upper3
*UIConstraints: *InputSlot MultiTray *RIPunch Upper4
*UIConstraints: *InputSlot MultiTray *RIPunch Lower2
*UIConstraints: *InputSlot MultiTray *RIPunch Lower3
*UIConstraints: *InputSlot MultiTray *RIPunch Lower4
*UIConstraints: *RIPunch Left2 *InputSlot MultiTray
*UIConstraints: *RIPunch Left3 *InputSlot MultiTray
*UIConstraints: *RIPunch Left4 *InputSlot MultiTray
*UIConstraints: *RIPunch Right2 *InputSlot MultiTray
*UIConstraints: *RIPunch Right3 *InputSlot MultiTray
*UIConstraints: *RIPunch Right4 *InputSlot MultiTray
*UIConstraints: *RIPunch Upper2 *InputSlot MultiTray
*UIConstraints: *RIPunch Upper3 *InputSlot MultiTray
*UIConstraints: *RIPunch Upper4 *InputSlot MultiTray
*UIConstraints: *RIPunch Lower2 *InputSlot MultiTray
*UIConstraints: *RIPunch Lower3 *InputSlot MultiTray
*UIConstraints: *RIPunch Lower4 *InputSlot MultiTray
*%========== MultiTray/ZFold
*UIConstraints: *RIZfold Bottom *InputSlot MultiTray
*UIConstraints: *RIZfold Right *InputSlot MultiTray
*UIConstraints: *RIZfold Left *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *RIZfold Bottom
*UIConstraints: *InputSlot MultiTray *RIZfold Right
*UIConstraints: *InputSlot MultiTray *RIZfold Left
*%========== Bypass / Duplex
*UIConstraints: *Duplex DuplexTumble *InputSlot MultiTray
*UIConstraints: *Duplex DuplexNoTumble *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *Duplex DuplexTumble
*UIConstraints: *InputSlot MultiTray *Duplex DuplexNoTumble
*%========== MediaType / Duplex
*UIConstraints: *Duplex DuplexTumble *MediaType Labels
*UIConstraints: *Duplex DuplexNoTumble *MediaType Labels
*UIConstraints: *Duplex DuplexTumble *MediaType OHP
*UIConstraints: *Duplex DuplexNoTumble *MediaType OHP
*UIConstraints: *Duplex DuplexTumble *MediaType Index
*UIConstraints: *Duplex DuplexNoTumble *MediaType Index
*UIConstraints: *MediaType Labels *Duplex DuplexTumble
*UIConstraints: *MediaType Labels *Duplex DuplexNoTumble
*UIConstraints: *MediaType OHP *Duplex DuplexTumble
*UIConstraints: *MediaType OHP *Duplex DuplexNoTumble
*UIConstraints: *MediaType Index *Duplex DuplexTumble
*UIConstraints: *MediaType Index *Duplex DuplexNoTumble
*%========== Destination / MediaType
*UIConstraints: *OutputBin FinisherUpper *MediaType Thick
*UIConstraints: *OutputBin MailBoxBin1 *MediaType Thick
*UIConstraints: *OutputBin MailBoxBin2 *MediaType Thick
*UIConstraints: *OutputBin MailBoxBin3 *MediaType Thick
*UIConstraints: *OutputBin MailBoxBin4 *MediaType Thick
*UIConstraints: *OutputBin MailBoxBin5 *MediaType Thick
*UIConstraints: *OutputBin MailBoxBin6 *MediaType Thick
*UIConstraints: *OutputBin MailBoxBin7 *MediaType Thick
*UIConstraints: *OutputBin MailBoxBin8 *MediaType Thick
*UIConstraints: *OutputBin MailBoxBin9 *MediaType Thick
*UIConstraints: *MediaType Thick *OutputBin FinisherUpper
*UIConstraints: *MediaType Thick *OutputBin MailBoxBin1
*UIConstraints: *MediaType Thick *OutputBin MailBoxBin2
*UIConstraints: *MediaType Thick *OutputBin MailBoxBin3
*UIConstraints: *MediaType Thick *OutputBin MailBoxBin4
*UIConstraints: *MediaType Thick *OutputBin MailBoxBin5
*UIConstraints: *MediaType Thick *OutputBin MailBoxBin6
*UIConstraints: *MediaType Thick *OutputBin MailBoxBin7
*UIConstraints: *MediaType Thick *OutputBin MailBoxBin8
*UIConstraints: *MediaType Thick *OutputBin MailBoxBin9
*UIConstraints: *OutputBin FinisherLower *MediaType Labels
*UIConstraints: *OutputBin FinisherLower *MediaType OHP
*UIConstraints: *MediaType Labels *OutputBin FinisherLower
*UIConstraints: *MediaType OHP *OutputBin FinisherLower
*UIConstraints: *OutputBin PlockmaticTray *MediaType Labels
*UIConstraints: *OutputBin PlockmaticTray *MediaType OHP
*UIConstraints: *OutputBin PlockmaticTray *MediaType Translucent
*UIConstraints: *OutputBin PlockmaticTray *MediaType Prepunched
*UIConstraints: *OutputBin PlockmaticTray *MediaType Index
*UIConstraints: *MediaType Labels *OutputBin PlockmaticTray
*UIConstraints: *MediaType OHP *OutputBin PlockmaticTray
*UIConstraints: *MediaType Translucent *OutputBin PlockmaticTray
*UIConstraints: *MediaType Prepunched *OutputBin PlockmaticTray
*UIConstraints: *MediaType Index *OutputBin PlockmaticTray
*%====== RIPaperPolicy & MediaType
*UIConstraints: *RIPaperPolicy PromptUser *MediaType None
*UIConstraints: *MediaType None *RIPaperPolicy PromptUser
*%========== Enable Ricoh JobLog Feature==========
*cupsFilter: "application/vnd.cups-postscript 0 foomatic-rip"
*FoomaticRIPCommandLine: "printf "%%!PS-Adobe-3.0\n%%%% %%&&
%%\n%A%B%C%D"%%%%; cat;"
*End
*FoomaticRIPUserEntityMaxLength: 8
*OpenGroup: JobLog/Job Log
*OpenUI *JobType/JobType: PickOne
*FoomaticRIPOption JobType: enum CmdLine A
*OrderDependency: 110 AnySetup *JobType
*DefaultJobType: Normal
*JobType Normal/Normal: "%% FoomaticRIPOptionSetting: JobType=Normal"
*FoomaticRIPOptionSetting JobType=Normal: "mark\n&&
/usrcode where{pop}{/usrcode()def}ifelse\n&&
(&user;) usrcode (20`date +%y%m%d%R | sed 's/://'`) {setuserinfo} stopped\n&&
cleartomark\n"
*End
*JobType SamplePrint/Sample Print: "%% FoomaticRIPOptionSetting: JobType=SamplePrint"
*FoomaticRIPOptionSetting JobType=SamplePrint: "mark\n&&
/usrcode where{pop}{/usrcode()def}ifelse\n&&
(&user;) usrcode (20`date +%y%m%d%R | sed 's/://'`) {setuserinfo} stopped\n&&
cleartomark\n&&
mark\n&&
(&user;) (20`date +%y%m%d%R | sed 's/://'`) {proofprint} stopped\n&&
cleartomark\n"
*End
*JobType LockedPrint/Locked Print: "%% FoomaticRIPOptionSetting: JobType=LockedPrint"
*FoomaticRIPOptionSetting JobType=LockedPrint: "mark\n&&
/usrcode where{pop}{/usrcode()def}ifelse\n&&
/lppswd where{pop}{/lppswd()def}ifelse\n&&
(&user;) usrcode (20`date +%y%m%d%R | sed 's/://'`) {setuserinfo} stopped\n&&
cleartomark\n&&
mark\n&&
(&user;) (20`date +%y%m%d%R | sed 's/://'`) lppswd {secureprint} stopped\n&&
cleartomark\n"
*End
*JobType DocServer/Document Server: "%% FoomaticRIPOptionSetting: JobType=DocServer"
*FoomaticRIPOptionSetting JobType=DocServer: "mark\n&&
/usrcode where{pop}{/usrcode()def}ifelse\n&&
/dspswd where{pop}{/dspswd()def}ifelse\n&&
(&user;) usrcode (20`date +%y%m%d%R | sed 's/://'`) {setuserinfo} stopped\n&&
cleartomark\n&&
mark\n&&
(&user;) (20`date +%y%m%d%R | sed 's/://'`) dspswd (&title;) {storedprint} stopped\n&&
cleartomark\n"
*End
*CloseUI: *JobType
*OpenUI *LockedPrintPassword/Locked Print Password (4-8 digits): PickOne
*FoomaticRIPOption LockedPrintPassword: password CmdLine A
*FoomaticRIPOptionMaxLength LockedPrintPassword:8
*FoomaticRIPOptionAllowedChars LockedPrintPassword: "0-9"
*OrderDependency: 100 AnySetup *LockedPrintPassword
*FoomaticRIPOptionPrototype LockedPrintPassword: "/lppswd(%s)def\n"
*DefaultLockedPrintPassword: None
*LockedPrintPassword None/None: "/lppswd()def\n"
*LockedPrintPassword 4001/4001: "/lppswd(4001)def\n"
*LockedPrintPassword 4002/4002: "/lppswd(4002)def\n"
*LockedPrintPassword 4003/4003: "/lppswd(4003)def\n"
*CloseUI: *LockedPrintPassword
*CustomLockedPrintPassword True/Custom Password: ""
*ParamCustomLockedPrintPassword Password: 1 password 4 8
*NonUIOrderDependency: 101 AnySetup *CustomLockedPrintPassword True
*OpenUI *DocServerPassword/Document Server Password (4-8 digits): PickOne
*FoomaticRIPOption DocServerPassword: password CmdLine A
*FoomaticRIPOptionMaxLength DocServerPassword:8
*FoomaticRIPOptionAllowedChars DocServerPassword: "0-9"
*OrderDependency: 102 AnySetup *DocServerPassword
*FoomaticRIPOptionPrototype DocServerPassword: "/dspswd(%s)def\n"
*DefaultDocServerPassword: None
*DocServerPassword None/None: "/dspswd()def\n"
*DocServerPassword 3001/3001: "/dspswd(3001)def\n"
*DocServerPassword 3002/3002: "/dspswd(3002)def\n"
*DocServerPassword 3003/3003: "/dspswd(3003)def\n"
*CloseUI: *DocServerPassword
*CustomDocServerPassword True/Custom Document Server Password: ""
*ParamCustomDocServerPassword Password: 1 password 4 8
*NonUIOrderDependency: 103 AnySetup *CustomDocServerPassword True
*OpenUI *UserCode/User Code (up to 8 digits): PickOne
*FoomaticRIPOption UserCode: string CmdLine A
*FoomaticRIPOptionMaxLength UserCode:8
*FoomaticRIPOptionAllowedChars UserCode: "0-9"
*OrderDependency: 104 AnySetup *UserCode
*FoomaticRIPOptionPrototype UserCode: "/usrcode(%s)def\n"
*DefaultUserCode: None
*UserCode None/None: "/usrcode()def\n"
*UserCode 1001/1001: "/usrcode(1001)def\n"
*UserCode 1002/1002: "/usrcode(1002)def\n"
*UserCode 1003/1003: "/usrcode(1003)def\n"
*CloseUI: *UserCode
*CustomUserCode True/Custom UserCode: ""
*ParamCustomUserCode UserCode: 1 passcode 1 8
*NonUIOrderDependency: 105 AnySetup *CustomUserCode True
*CloseGroup: JobLog/Job Log
*% end of Printer Description file
|