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
|
*PPD-Adobe: "4.3"
*%
*% Printer Description file
*% for "Infotec MP C7501 PXL"
*%
*% CreationDate: 2009/03/05
*% Modified: 2016/05/10
*%
*% COPYRIGHT (C) 2009-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]
*%
*FormatVersion: "4.3"
*LanguageEncoding: ISOLatin1
*LanguageVersion: English
*ModelName: "Infotec MP C7501"
*PCFileName: "IF3282E3.PPD"
*Manufacturer: "Infotec"
*Product: "(infotec MP C7501 PS3)"
*PSVersion: "(3018.102) 2"
*1284DeviceID: "MFG:infotec;MDL:MP C7501;CMD:PCLXL;"
*ShortNickName: "Infotec MP C7501 PXL"
*NickName: "Infotec MP C7501 PXL"
*FileVersion: "2.2"
*cupsVersion: 1.1
*cupsManualCopies: False
*cupsCommands: ""
*cupsFilter: "application/vnd.cups-postscript 0 foomatic-rip"
*cupsFilter: "application/vnd.cups-pdf 0 foomatic-rip"
*%========== Basic Device Capabilities ==========
*LanguageLevel: "3"
*ColorDevice: True
*TTRasterizer: Type42
*FileSystem: True
*LandscapeOrientation: Minus90
*DefaultColorSpace: CMYK
*Throughput: "75"
*%========== Installable Options ==========
*%========== & System Management ==========
*OpenGroup: InstallableOptions/Installable Options
*OpenUI *LargeCapacityTray/Large Capacity Tray: PickOne
*DefaultLargeCapacityTray: NotInstalled
*LargeCapacityTray NotInstalled/Not Installed: ""
*LargeCapacityTray LCTMAUI/Large Capacity Tray: ""
*LargeCapacityTray LCTSIBERIAB/Wide Large Capacity Tray: ""
*CloseUI: *LargeCapacityTray
*OpenUI *Finisher/Finisher: PickOne
*DefaultFinisher: NotInstalled
*Finisher NotInstalled/Not Installed: ""
*Finisher FinEUPHRATESD/Finisher SR4030: ""
*Finisher FinEUPHRATESDBK/Finisher SR4040: ""
*Finisher FinVICTORIAF/Finisher SR5000: ""
*CloseUI: *Finisher
*OpenUI *MultiFold/Folding Unit: PickOne
*DefaultMultiFold: NotInstalled
*MultiFold NotInstalled/Not Installed: ""
*MultiFold MultiFoldingUnit/Multi-folding Unit: ""
*CloseUI: *MultiFold
*OpenUI *Mailbox/Mailbox: PickOne
*DefaultMailbox: NotInstalled
*Mailbox NotInstalled/Not Installed: ""
*Mailbox Installed/Installed: ""
*CloseUI: *Mailbox
*OpenUI *OptionRingBind/Ring Binding Unit: PickOne
*DefaultOptionRingBind: NotInstalled
*OptionRingBind NotInstalled/Not Installed: ""
*OptionRingBind Installed/Installed: ""
*CloseUI: *OptionRingBind
*OpenUI *MultiHolePunchUnit/Multi-hole Punch Unit: PickOne
*DefaultMultiHolePunchUnit: False
*MultiHolePunchUnit False/Not Installed: ""
*MultiHolePunchUnit True/Installed: ""
*CloseUI: *MultiHolePunchUnit
*OpenUI *BookletProcessor/Booklet Processor: PickOne
*DefaultBookletProcessor: False
*BookletProcessor False/Not Installed: ""
*BookletProcessor Plockmatic/Installed: ""
*CloseUI: *BookletProcessor
*CloseGroup: InstallableOptions
*%========== Ghostscript Command line ==========
*FoomaticRIPCommandLine: "(printf '\033%%-12345X@PJL\n@PJL JOB\n@PJL SET COPIES=&copies;\n'%G|perl -p -e "s/\x26copies\x3b/1/");
(gs -q -dBATCH -dPARANOIDSAFER -dNOPAUSE -dNOMEDIAATTRS -dNOINTERPOLATE %B%A%C %D%E | perl -p -e "s/^\x1b\x25-12345X//" | perl -p -e "s/\xc1\x01\x00\xf8\x31\x44/\x44/g");
(printf '@PJL\n@PJL EOJ\n\033%%-12345X')"
*End
*FoomaticRIPUserEntityMaxLength: 8
*OpenGroup: General
*OpenUI *ColorModel/Color Mode: PickOne
*FoomaticRIPOption ColorModel: enum Composite B
*OrderDependency: 10 AnySetup *ColorModel
*DefaultColorModel: Color
*ColorModel Color/Color: "%% FoomaticRIPOptionSetting: ColorModel=Color"
*FoomaticRIPOptionSetting ColorModel=Color: "JCLDatamode=Color GSCmdLine=Color"
*ColorModel Grayscale/Grayscale: "%% FoomaticRIPOptionSetting: ColorModel=Grayscale"
*FoomaticRIPOptionSetting ColorModel=Grayscale: "JCLDatamode=Grayscale GSCmdLine=Grayscale"
*CloseUI: *ColorModel
*FoomaticRIPOption GSCmdLine: enum CmdLine B 10
*FoomaticRIPOptionSetting GSCmdLine=FromColorModel: ""
*FoomaticRIPOptionSetting GSCmdLine=Color: " -sDEVICE=pxlcolor"
*End
*FoomaticRIPOptionSetting GSCmdLine=Grayscale: " -sDEVICE=pxlmono"
*End
*FoomaticRIPOption JCLDatamode: enum JCL B 10
*FoomaticRIPOptionSetting JCLDatamode=FromColorModel: ""
*FoomaticRIPOptionSetting JCLDatamode=Color: "SET DATAMODE=COLOR"
*FoomaticRIPOptionSetting JCLDatamode=Grayscale: "SET DATAMODE=GRAYSCALE"
*OpenUI *Resolution/Resolution: PickOne
*FoomaticRIPOption Resolution: enum Composite A
*OrderDependency: 15 AnySetup *Resolution
*DefaultResolution: 600dpi
*Resolution 600dpi: "%% FoomaticRIPOptionSetting: Resolution=600dpi"
*FoomaticRIPOptionSetting Resolution=600dpi: "JCLResolution=600dpi GSResolution=600dpi"
*Resolution 1200dpi: "%% FoomaticRIPOptionSetting: Resolution=1200dpi"
*FoomaticRIPOptionSetting Resolution=1200dpi: "JCLResolution=1200dpi GSResolution=1200dpi"
*CloseUI: *Resolution
*FoomaticRIPOption GSResolution: enum CmdLine A 15
*FoomaticRIPOptionSetting GSResolution=FromResolution: ""
*FoomaticRIPOptionSetting GSResolution=600dpi: " -r600x600"
*FoomaticRIPOptionSetting GSResolution=1200dpi: " -r1200x1200"
*FoomaticRIPOption JCLResolution: enum JCL A 15
*FoomaticRIPOptionSetting JCLResolution=FromResolution: ""
*FoomaticRIPOptionSetting JCLResolution=600dpi: "SET RESOLUTION=600"
*FoomaticRIPOptionSetting JCLResolution=1200dpi: "SET RESOLUTION=1200"
*%========== Media Selection ==========
*HWMargins: 12 12 12 12
*OpenUI *PageSize/PageSize: PickOne
*FoomaticRIPOption PageSize: enum CmdLine C
*OrderDependency: 20 AnySetup *PageSize
*DefaultPageSize: Letter
*PageSize A3/A3: "%% FoomaticRIPOptionSetting: PageSize=A3"
*FoomaticRIPOptionSetting PageSize=A3: " -sPAPERSIZE=a3 -sOutputFile=- - "
*PageSize A4/A4: "%% FoomaticRIPOptionSetting: PageSize=A4"
*FoomaticRIPOptionSetting PageSize=A4: " -sPAPERSIZE=a4 -sOutputFile=- - "
*PageSize A5/A5: "%% FoomaticRIPOptionSetting: PageSize=A5"
*FoomaticRIPOptionSetting PageSize=A5: " -sPAPERSIZE=a5 -sOutputFile=- - | perl -p -e "s/\xf8\x28\xc0.\xf8\x25/\xf8\x28\xc0\x0f\xf8\x25/g""
*PageSize A6/A6: "%% FoomaticRIPOptionSetting: PageSize=A6"
*FoomaticRIPOptionSetting PageSize=A6: " -dDEVICEWIDTHPOINTS=298 -dDEVICEHEIGHTPOINTS=420 -sOutputFile=- - &&
| perl -p -e "s/\xf8\x28\xc0.\xf8\x25/\xf8\x28\xc0\x14\xf8\x25/g""
*End
*PageSize B4/B4 (JIS): "%% FoomaticRIPOptionSetting: PageSize=B4"
*FoomaticRIPOptionSetting PageSize=B4: " -dDEVICEWIDTHPOINTS=729 -dDEVICEHEIGHTPOINTS=1032 -sOutputFile=- - &&
| perl -p -e "s/\xf8\x28\xc0.\xf8\x25/\xf8\x28\xc0\x0a\xf8\x25/g""
*End
*PageSize B5/B5 (JIS): "%% FoomaticRIPOptionSetting: PageSize=B5"
*FoomaticRIPOptionSetting PageSize=B5: " -dDEVICEWIDTHPOINTS=516 -dDEVICEHEIGHTPOINTS=729 -sOutputFile=- - &&
| perl -p -e "s/\xf8\x28\xc0.\xf8\x25/\xf8\x28\xc0\x0b\xf8\x25/g""
*End
*PageSize B6/B6 (JIS): "%% FoomaticRIPOptionSetting: PageSize=B6"
*FoomaticRIPOptionSetting PageSize=B6: " -dDEVICEWIDTHPOINTS=363 -dDEVICEHEIGHTPOINTS=516 -sOutputFile=- - &&
| perl -p -e "s/\xf8\x28\xc0.\xf8\x25/\xf8\x28\xc0\xc9\xf8\x25/g""
*End
*PageSize Legal/Legal: "%% FoomaticRIPOptionSetting: PageSize=Legal"
*FoomaticRIPOptionSetting PageSize=Legal: " -sPAPERSIZE=legal -sOutputFile=- - | perl -p -e "s/\xf8\x28\xc0.\xf8\x25/\xf8\x28\xc0\x01\xf8\x25/g""
*PageSize Letter/Letter: "%% FoomaticRIPOptionSetting: PageSize=Letter"
*FoomaticRIPOptionSetting PageSize=Letter: " -sPAPERSIZE=letter -sOutputFile=- - "
*PageSize Statement/5.5x8.5: "%% FoomaticRIPOptionSetting: PageSize=Statement"
*FoomaticRIPOptionSetting PageSize=Statement: " -dDEVICEWIDTHPOINTS=396 -dDEVICEHEIGHTPOINTS=612 -sOutputFile=- - &&
| perl -p -e "s/\xf8\x28\xc0.\xf8\x25/\xf8\x28\xc0\x13\xf8\x25/g" &&
| perl -p -e "s/\xf8\x28\xd5\x00\x00\xb0\x40\x00\x00\x08\x41\xf8\x2f\xc0\x00\xf8\x30/\xf8\x28\xc0\x13\xf8\x25/g""
*End
*PageSize F/8x13: "%% FoomaticRIPOptionSetting: PageSize=F"
*FoomaticRIPOptionSetting PageSize=F: " -dDEVICEWIDTHPOINTS=576 -dDEVICEHEIGHTPOINTS=936 -sOutputFile=- - &&
| perl -p -e "s/\xf8\x28\xc0.\xf8\x25/\xf8\x28\xc0\x12\xf8\x25/g" &&
| perl -p -e "s/\xf8\x28\xd5\x00\x00\x00\x41\x00\x00\x50\x41\xf8\x2f\xc0\x00\xf8\x30/\xf8\x28\xc0\x12\xf8\x25/g""
*End
*PageSize Folio/8.25x13: "%% FoomaticRIPOptionSetting: PageSize=Folio"
*FoomaticRIPOptionSetting PageSize=Folio: " -dDEVICEWIDTHPOINTS=595 -dDEVICEHEIGHTPOINTS=935 -sOutputFile=- - &&
| perl -p -e "s/\xf8\x28\xc0.\xf8\x25/\xf8\x28\xc0\x10\xf8\x25/g" &&
| perl -p -e "s/\xf8\x28\xd5\x9d\x36\x04\x41\x63\xC9\x4f\x41\xf8\x2f\xc0\x00\xf8\x30/\xf8\x28\xc0\x10\xf8\x25/g""
*End
*PageSize FanFoldGermanLegal/8.5x13: "%% FoomaticRIPOptionSetting: PageSize=FanFoldGermanLegal"
*FoomaticRIPOptionSetting PageSize=FanFoldGermanLegal: " -dDEVICEWIDTHPOINTS=612 -dDEVICEHEIGHTPOINTS=936 -sOutputFile=- - &&
| perl -p -e "s/\xf8\x28\xc0.\xf8\x25/\xf8\x28\xc0\x11\xf8\x25/g""
*End
*PageSize Tabloid/11x17: "%% FoomaticRIPOptionSetting: PageSize=Tabloid"
*FoomaticRIPOptionSetting PageSize=Tabloid: " -sPAPERSIZE=11x17 -sOutputFile=- - "
*PageSize 12x18/12x18: "%% FoomaticRIPOptionSetting: PageSize=12x18"
*FoomaticRIPOptionSetting PageSize=12x18: " -dDEVICEWIDTHPOINTS=864 -dDEVICEHEIGHTPOINTS=1296 -sOutputFile=- - &&
| perl -p -e "s/\xf8\x28\xc0.\xf8\x25/\xf8\x28\xc0\xcd\xf8\x25/g" &&
| perl -p -e "s/\xf8\x28\xd5\x00\x00\x40\x41\x00\x00\x90\x41\xf8\x2f\xc0\x00\xf8\x30/\xf8\x28\xc0\xcd\xf8\x25/g""
*End
*PageSize Executive/Executive: "%% FoomaticRIPOptionSetting: PageSize=Executive"
*FoomaticRIPOptionSetting PageSize=Executive: " -dDEVICEWIDTHPOINTS=522 -dDEVICEHEIGHTPOINTS=756 -sOutputFile=- - &&
| perl -p -e "s/\xf8\x28\xc0.\xf8\x25/\xf8\x28\xc0\x03\xf8\x25/g""
*End
*PageSize 8Kai/8K: "%% FoomaticRIPOptionSetting: PageSize=8Kai"
*FoomaticRIPOptionSetting PageSize=8Kai: " -dDEVICEWIDTHPOINTS=757 -dDEVICEHEIGHTPOINTS=1106 -sOutputFile=- - &&
| perl -p -e "s/\xf8\x28\xc0.\xf8\x25/\xf8\x28\xc0\xcb\xf8\x25/g""
*End
*PageSize 16Kai/16K: "%% FoomaticRIPOptionSetting: PageSize=16Kai"
*FoomaticRIPOptionSetting PageSize=16Kai: " -dDEVICEWIDTHPOINTS=553 -dDEVICEHEIGHTPOINTS=757 -sOutputFile=- - &&
| perl -p -e "s/\xf8\x28\xc0.\xf8\x25/\xf8\x28\xc0\xcc\xf8\x25/g""
*End
*CloseUI: *PageSize
*OpenUI *PageRegion: PickOne
*OrderDependency: 25 AnySetup *PageRegion
*DefaultPageRegion: Letter
*PageRegion A3/A3: "%% FoomaticRIPOptionSetting: PageSize=A3"
*PageRegion A4/A4: "%% FoomaticRIPOptionSetting: PageSize=A4"
*PageRegion A5/A5: "%% FoomaticRIPOptionSetting: PageSize=A5"
*PageRegion A6/A6: "%% FoomaticRIPOptionSetting: PageSize=A6"
*PageRegion B4/B4 (JIS): "%% FoomaticRIPOptionSetting: PageSize=B4"
*PageRegion B5/B5 (JIS): "%% FoomaticRIPOptionSetting: PageSize=B5"
*PageRegion B6/B6 (JIS): "%% FoomaticRIPOptionSetting: PageSize=B6"
*PageRegion Legal/Legal: "%% FoomaticRIPOptionSetting: PageSize=Legal"
*PageRegion Letter/Letter: "%% FoomaticRIPOptionSetting: PageSize=Letter"
*PageRegion Statement/5.5x8.5: "%% FoomaticRIPOptionSetting: PageSize=Statement"
*PageRegion F/8x13: "%% FoomaticRIPOptionSetting: PageSize=F"
*PageRegion Folio/8.25x13: "%% FoomaticRIPOptionSetting: PageSize=Folio"
*PageRegion FanFoldGermanLegal/8.5x13: "%% FoomaticRIPOptionSetting: PageSize=FanFoldGermanLegal"
*PageRegion Tabloid/11x17: "%% FoomaticRIPOptionSetting: PageSize=Tabloid"
*PageRegion 12x18/12x18: "%% FoomaticRIPOptionSetting: PageSize=12x18"
*PageRegion Executive/Executive: "%% FoomaticRIPOptionSetting: PageSize=Executive"
*PageRegion 8Kai/8K: "%% FoomaticRIPOptionSetting: PageSize=8Kai"
*PageRegion 16Kai/16K: "%% FoomaticRIPOptionSetting: PageSize=16Kai"
*CloseUI: *PageRegion
*%========== Information About Media Sizes ==========
*DefaultImageableArea: Letter
*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 285 408"
*ImageableArea B4/B4 (JIS): "12 12 717 1020"
*ImageableArea B5/B5 (JIS): "12 12 504 717"
*ImageableArea B6/B6 (JIS): "12 12 351 504"
*ImageableArea Legal/Legal: "12 12 600 996"
*ImageableArea Letter/Letter: "12 12 600 780"
*ImageableArea Statement/5.5x8.5: "12 12 384 600"
*ImageableArea F/8x13: "12 12 564 924"
*ImageableArea Folio/8.25x13: "12 12 583 923"
*ImageableArea FanFoldGermanLegal/8.5x13: "12 12 600 924"
*ImageableArea Tabloid/11x17: "12 12 780 1212"
*ImageableArea 12x18/12x18: "12 12 852 1284"
*ImageableArea Executive/Executive: "12 12 510 744"
*ImageableArea 8Kai/8K: "12 12 745 1094"
*ImageableArea 16Kai/16K: "12 12 541 745"
*DefaultPaperDimension: Letter
*PaperDimension A3/A3: "842 1191"
*PaperDimension A4/A4: "595 842"
*PaperDimension A5/A5: "420 595"
*PaperDimension A6/A6: "297 420"
*PaperDimension B4/B4 (JIS): "729 1032"
*PaperDimension B5/B5 (JIS): "516 729"
*PaperDimension B6/B6 (JIS): "363 516"
*PaperDimension Legal/Legal: "612 1008"
*PaperDimension Letter/Letter: "612 792"
*PaperDimension Statement/5.5x8.5: "396 612"
*PaperDimension F/8x13: "576 936"
*PaperDimension Folio/8.25x13: "595 935"
*PaperDimension FanFoldGermanLegal/8.5x13: "612 936"
*PaperDimension Tabloid/11x17: "792 1224"
*PaperDimension 12x18/12x18: "864 1296"
*PaperDimension Executive/Executive: "522 756"
*PaperDimension 8Kai/8K: "757 1106"
*PaperDimension 16Kai/16K: "553 757"
*%========== Media Handling Features ==========
*OpenUI *InputSlot/InputSlot: PickOne
*FoomaticRIPOption InputSlot: enum CmdLine E
*OrderDependency: 30 AnySetup *InputSlot
*DefaultInputSlot: Auto
*InputSlot MultiTray/Bypass Tray: "%% FoomaticRIPOptionSetting: InputSlot=MultiTray"
*FoomaticRIPOptionSetting InputSlot=MultiTray: "&&
| perl -p -e "s/\xf8\x25\xc0[\x00\x01]\xf8\x26/\xf8\x25\xc0\x02\xf8\x26/g""
*End
*InputSlot 1Tray/Tray 1: "%% FoomaticRIPOptionSetting: InputSlot=1Tray"
*FoomaticRIPOptionSetting InputSlot=1Tray: "&&
| perl -p -e "s/\xf8\x25\xc0[\x00\x01]\xf8\x26/\xf8\x25\xc0\x04\xf8\x26/g""
*End
*InputSlot 2Tray/Tray 2: "%% FoomaticRIPOptionSetting: InputSlot=2Tray"
*FoomaticRIPOptionSetting InputSlot=2Tray: "&&
| perl -p -e "s/\xf8\x25\xc0[\x00\x01]\xf8\x26/\xf8\x25\xc0\x05\xf8\x26/g""
*End
*InputSlot 3Tray/Tray 3: "%% FoomaticRIPOptionSetting: InputSlot=3Tray"
*FoomaticRIPOptionSetting InputSlot=3Tray: "&&
| perl -p -e "s/\xf8\x25\xc0[\x00\x01]\xf8\x26/\xf8\x25\xc0\x07\xf8\x26/g""
*End
*InputSlot LCT/Large Capacity Tray: "%% FoomaticRIPOptionSetting: InputSlot=LCT"
*FoomaticRIPOptionSetting InputSlot=LCT: "&&
| perl -p -e "s/\xf8\x25\xc0[\x00\x01]\xf8\x26/\xf8\x25\xc0\x09\xf8\x26/g""
*End
*InputSlot Auto/Auto Select: "%% FoomaticRIPOptionSetting: InputSlot=Auto"
*FoomaticRIPOptionSetting InputSlot=Auto: ""
*CloseUI: *InputSlot
*OpenUI *Duplex/Duplex: PickOne
*FoomaticRIPOption Duplex: enum Composite D
*OrderDependency: 50 AnySetup *Duplex
*DefaultDuplex: None
*Duplex None/Off: "%% FoomaticRIPOptionSetting: Duplex=None"
*FoomaticRIPOptionSetting Duplex=None: "JCLDuplex=None GSDuplex=None"
*Duplex DuplexNoTumble/Long Edge: "%% FoomaticRIPOptionSetting: Duplex=DuplexNoTumble"
*FoomaticRIPOptionSetting Duplex=DuplexNoTumble: "JCLDuplex=DuplexNoTumble GSDuplex=DuplexNoTumble"
*Duplex DuplexTumble/Short Edge: "%% FoomaticRIPOptionSetting: Duplex=DuplexTumble"
*FoomaticRIPOptionSetting Duplex=DuplexTumble: "JCLDuplex=DuplexTumble GSDuplex=DuplexTumble"
*CloseUI: *Duplex
*FoomaticRIPOptionSetting Duplex=0: "JCLDuplex=None GSDuplex=None"
*FoomaticRIPOptionSetting Duplex=LongEdge: "JCLDuplex=DuplexNoTumble GSDuplex=DuplexNoTumble"
*FoomaticRIPOptionSetting Duplex=ShortEdge: "JCLDuplex=DuplexTumble GSDuplex=DuplexTumble"
*FoomaticRIPOption GSDuplex: enum CmdLine D 50
*FoomaticRIPOptionSetting GSDuplex=FromDuplex: ""
*FoomaticRIPOptionSetting GSDuplex=None: ""
*FoomaticRIPOptionSetting GSDuplex=DuplexNoTumble: "&&
| perl -p -e "s/\xf8\x26\xc0\x00\xf8\x34/\xf8\x26\xc0\x01\xf8\x35/g""
*FoomaticRIPOptionSetting GSDuplex=DuplexTumble: "&&
| perl -p -e "s/\xf8\x26\xc0\x00\xf8\x34/\xf8\x26\xc0\x00\xf8\x35/g""
*FoomaticRIPOption JCLDuplex: enum JCL D 50
*FoomaticRIPOptionSetting JCLDuplex=FromDuplex: ""
*FoomaticRIPOptionSetting JCLDuplex=None: "SET DUPLEX=OFF"
*FoomaticRIPOptionSetting JCLDuplex=DuplexNoTumble: "SET DUPLEX=ON
@PJL SET BINDING=LONGEDGE"
*FoomaticRIPOptionSetting JCLDuplex=DuplexTumble: "SET DUPLEX=ON
@PJL SET BINDING=SHORTEDGE"
*OpenUI *Collate/Collate: Boolean
*FoomaticRIPOption Collate: bool CmdLine G
*OrderDependency: 110 AnySetup *Collate
*DefaultCollate: False
*Collate False/Off: "%% FoomaticRIPOptionSetting: Collate=False"
*Collate True/On: "%% FoomaticRIPOptionSetting: Collate=True"
*CloseUI: *Collate
*FoomaticRIPOptionSetting Collate=False: ""
*FoomaticRIPOptionSetting Collate=True: "|(perl -p -e "s/\x40PJL SET COPIES=&copies;\n/\x40PJL SET QTY=&copies;\n/")"
*FoomaticRIPOptionSetting Collate: "|(perl -p -e "s/\x40PJL SET COPIES=&copies;\n/\x40PJL SET QTY=&copies;\n/")"
*OpenUI *MediaType/Paper Type: PickOne
*FoomaticRIPOption MediaType: enum JCL A
*OrderDependency: 205 AnySetup *MediaType
*DefaultMediaType: Auto
*MediaType Auto/Plain 1/Recycled: "%% FoomaticRIPOptionSetting: MediaType=Auto"
*FoomaticRIPOptionSetting MediaType=Auto: "SET MEDIATYPE=PLAINORRECYCLED"
*MediaType Plain1/Plain 1 (66 - 80 g/m2): "%% FoomaticRIPOptionSetting: MediaType=Plain1"
*FoomaticRIPOptionSetting MediaType=Plain1: "SET MEDIATYPE=PLAIN"
*MediaType Plain2/Plain 2 (81 - 100 g/m2): "%% FoomaticRIPOptionSetting: MediaType=Plain2"
*FoomaticRIPOptionSetting MediaType=Plain2: "SET MEDIATYPE=PLAIN2"
*MediaType Recycled/Recycled: "%% FoomaticRIPOptionSetting: MediaType=Recycled"
*FoomaticRIPOptionSetting MediaType=Recycled: "SET MEDIATYPE=RECYCLED"
*MediaType Special/Special 1: "%% FoomaticRIPOptionSetting: MediaType=Special"
*FoomaticRIPOptionSetting MediaType=Special: "SET MEDIATYPE=SPECIAL"
*MediaType Special2/Special 2: "%% FoomaticRIPOptionSetting: MediaType=Special2"
*FoomaticRIPOptionSetting MediaType=Special2: "SET MEDIATYPE=SPECIAL2"
*MediaType Colored1/Color 1: "%% FoomaticRIPOptionSetting: MediaType=Colored1"
*FoomaticRIPOptionSetting MediaType=Colored1: "SET MEDIATYPE=USERCOLOR1"
*MediaType Colored2/Color 2: "%% FoomaticRIPOptionSetting: MediaType=Colored2"
*FoomaticRIPOptionSetting MediaType=Colored2: "SET MEDIATYPE=USERCOLOR2"
*MediaType Letterhead/Letterhead: "%% FoomaticRIPOptionSetting: MediaType=Letterhead"
*FoomaticRIPOptionSetting MediaType=Letterhead: "SET MEDIATYPE=LETTERHEAD"
*MediaType Preprinted/Preprinted: "%% FoomaticRIPOptionSetting: MediaType=Preprinted"
*FoomaticRIPOptionSetting MediaType=Preprinted: "SET MEDIATYPE=PREPRINTED"
*MediaType Prepunched/Prepunched: "%% FoomaticRIPOptionSetting: MediaType=Prepunched"
*FoomaticRIPOptionSetting MediaType=Prepunched: "SET MEDIATYPE=PREPUNCHED"
*MediaType Labels/Labels: "%% FoomaticRIPOptionSetting: MediaType=Labels"
*FoomaticRIPOptionSetting MediaType=Labels: "SET MEDIATYPE=LABELS"
*MediaType Bond/Bond: "%% FoomaticRIPOptionSetting: MediaType=Bond"
*FoomaticRIPOptionSetting MediaType=Bond: "SET MEDIATYPE=BOND"
*MediaType Cardstock/Cardstock: "%% FoomaticRIPOptionSetting: MediaType=Cardstock"
*FoomaticRIPOptionSetting MediaType=Cardstock: "SET MEDIATYPE=CARDSTOCK"
*MediaType OHP/Transparency: "%% FoomaticRIPOptionSetting: MediaType=OHP"
*FoomaticRIPOptionSetting MediaType=OHP: "SET MEDIATYPE=TRANSPARENCY"
*MediaType Thick/Thick 1 (128 - 169 g/m2): "%% FoomaticRIPOptionSetting: MediaType=Thick"
*FoomaticRIPOptionSetting MediaType=Thick: "SET MEDIATYPE=THICK"
*MediaType Thick2/Thick 2 (170 - 249 g/m2): "%% FoomaticRIPOptionSetting: MediaType=Thick2"
*FoomaticRIPOptionSetting MediaType=Thick2: "SET MEDIATYPE=THICK2"
*MediaType Thick3/Thick 3 (250 - 300 g/m2): "%% FoomaticRIPOptionSetting: MediaType=Thick3"
*FoomaticRIPOptionSetting MediaType=Thick3: "SET MEDIATYPE=THICK3"
*MediaType Thin/Thin (52 - 65 g/m2): "%% FoomaticRIPOptionSetting: MediaType=Thin"
*FoomaticRIPOptionSetting MediaType=Thin: "SET MEDIATYPE=THIN"
*MediaType Middlethick/Middle Thick (101 - 127 g/m2): "%% FoomaticRIPOptionSetting: MediaType=Middlethick"
*FoomaticRIPOptionSetting MediaType=Middlethick: "SET MEDIATYPE=MIDDLETHICK"
*MediaType Index/Tab Stock: "%% FoomaticRIPOptionSetting: MediaType=Index"
*FoomaticRIPOptionSetting MediaType=Index: "SET MEDIATYPE=TABSTOCK"
*MediaType Translucent/Translucent: "%% FoomaticRIPOptionSetting: MediaType=Translucent"
*FoomaticRIPOptionSetting MediaType=Translucent: "SET MEDIATYPE=TRANSLUCENT"
*CloseUI: *MediaType
*OpenUI *OutputBin/Destination: PickOne
*FoomaticRIPOption OutputBin: enum JCL A
*OrderDependency: 210 AnySetup *OutputBin
*DefaultOutputBin: Default
*OutputBin Default/Printer Default: "%% FoomaticRIPOptionSetting: OutputBin=Default"
*FoomaticRIPOptionSetting OutputBin=Default: "SET OUTBIN=SYSDEFAULT"
*OutputBin Standard/Copy Tray: "%% FoomaticRIPOptionSetting: OutputBin=Standard"
*FoomaticRIPOptionSetting OutputBin=Standard: "SET OUTBIN=UPPER"
*OutputBin FinEUPHDUpper/Finisher SR4030 Upper Tray: "%% FoomaticRIPOptionSetting: OutputBin=FinEUPHDUpper"
*FoomaticRIPOptionSetting OutputBin=FinEUPHDUpper: "SET OUTBIN=FINISHERPROOF"
*OutputBin FinEUPHDShift/Finisher SR4030 Shift Tray: "%% FoomaticRIPOptionSetting: OutputBin=FinEUPHDShift"
*FoomaticRIPOptionSetting OutputBin=FinEUPHDShift: "SET OUTBIN=FINISHERSHIFT"
*OutputBin FinEUPHDBKUpper/Finisher SR4040 Upper Tray: "%% FoomaticRIPOptionSetting: OutputBin=FinEUPHDBKUpper"
*FoomaticRIPOptionSetting OutputBin=FinEUPHDBKUpper: "SET OUTBIN=FINISHERPROOF"
*OutputBin FinEUPHDBKShift/Finisher SR4040 Shift Tray: "%% FoomaticRIPOptionSetting: OutputBin=FinEUPHDBKShift"
*FoomaticRIPOptionSetting OutputBin=FinEUPHDBKShift: "SET OUTBIN=FINISHERSHIFT"
*OutputBin FinEUPHDBK/Finisher SR4040 Booklet Tray: "%% FoomaticRIPOptionSetting: OutputBin=FinEUPHDBK"
*FoomaticRIPOptionSetting OutputBin=FinEUPHDBK: "SET OUTBIN=FINISHERBOOKLET"
*OutputBin FinVICTFUpper/Finisher SR5000 Upper Tray: "%% FoomaticRIPOptionSetting: OutputBin=FinVICTFUpper"
*FoomaticRIPOptionSetting OutputBin=FinVICTFUpper: "SET OUTBIN=FINISHERPROOF"
*OutputBin FinVICTFShift/Finisher SR5000 Shift Tray: "%% FoomaticRIPOptionSetting: OutputBin=FinVICTFShift"
*FoomaticRIPOptionSetting OutputBin=FinVICTFShift: "SET OUTBIN=FINISHERSHIFT"
*OutputBin FinDONAUProof/Folding Unit Tray: "%% FoomaticRIPOptionSetting: OutputBin=FinDONAUProof"
*FoomaticRIPOptionSetting OutputBin=FinDONAUProof: "SET OUTBIN=FINISHERBOOKLET"
*OutputBin PlockmaticTray/Booklet Processor Tray: "%% FoomaticRIPOptionSetting: OutputBin=PlockmaticTray"
*FoomaticRIPOptionSetting OutputBin=PlockmaticTray: "SET OUTBIN=FINISHERSHIFT"
*OutputBin MailBoxBin1/Mailbox Tray 1: "%% FoomaticRIPOptionSetting: OutputBin=MailBoxBin1"
*FoomaticRIPOptionSetting OutputBin=MailBoxBin1: "SET OUTBIN=OPTIONALOUTPUTBIN2"
*OutputBin MailBoxBin2/Mailbox Tray 2: "%% FoomaticRIPOptionSetting: OutputBin=MailBoxBin2"
*FoomaticRIPOptionSetting OutputBin=MailBoxBin2: "SET OUTBIN=OPTIONALOUTPUTBIN3"
*OutputBin MailBoxBin3/Mailbox Tray 3: "%% FoomaticRIPOptionSetting: OutputBin=MailBoxBin3"
*FoomaticRIPOptionSetting OutputBin=MailBoxBin3: "SET OUTBIN=OPTIONALOUTPUTBIN4"
*OutputBin MailBoxBin4/Mailbox Tray 4: "%% FoomaticRIPOptionSetting: OutputBin=MailBoxBin4"
*FoomaticRIPOptionSetting OutputBin=MailBoxBin4: "SET OUTBIN=OPTIONALOUTPUTBIN5"
*OutputBin MailBoxBin5/Mailbox Tray 5: "%% FoomaticRIPOptionSetting: OutputBin=MailBoxBin5"
*FoomaticRIPOptionSetting OutputBin=MailBoxBin5: "SET OUTBIN=OPTIONALOUTPUTBIN6"
*OutputBin MailBoxBin6/Mailbox Tray 6: "%% FoomaticRIPOptionSetting: OutputBin=MailBoxBin6"
*FoomaticRIPOptionSetting OutputBin=MailBoxBin6: "SET OUTBIN=OPTIONALOUTPUTBIN7"
*OutputBin MailBoxBin7/Mailbox Tray 7: "%% FoomaticRIPOptionSetting: OutputBin=MailBoxBin7"
*FoomaticRIPOptionSetting OutputBin=MailBoxBin7: "SET OUTBIN=OPTIONALOUTPUTBIN8"
*OutputBin MailBoxBin8/Mailbox Tray 8: "%% FoomaticRIPOptionSetting: OutputBin=MailBoxBin8"
*FoomaticRIPOptionSetting OutputBin=MailBoxBin8: "SET OUTBIN=OPTIONALOUTPUTBIN9"
*OutputBin MailBoxBin9/Mailbox Tray 9: "%% FoomaticRIPOptionSetting: OutputBin=MailBoxBin9"
*FoomaticRIPOptionSetting OutputBin=MailBoxBin9: "SET OUTBIN=OPTIONALOUTPUTBIN10"
*CloseUI: *OutputBin
*OpenUI *RIZfold/Z-fold: PickOne
*FoomaticRIPOption RIZfold: enum JCL A
*OrderDependency: 230 AnySetup *RIZfold
*DefaultRIZfold: None
*RIZfold None/Off: "%% FoomaticRIPOptionSetting: RIZfold=None"
*FoomaticRIPOptionSetting RIZfold=None: "SET FOLD=OFF"
*RIZfold Bottom/Bottom Fold: "%% FoomaticRIPOptionSetting: RIZfold=Bottom"
*FoomaticRIPOptionSetting RIZfold=Bottom: "SET FOLD=ZBOTTOM"
*RIZfold Right/Right Fold: "%% FoomaticRIPOptionSetting: RIZfold=Right"
*FoomaticRIPOptionSetting RIZfold=Right: "SET FOLD=ZRIGHT"
*RIZfold Left/Left Fold: "%% FoomaticRIPOptionSetting: RIZfold=Left"
*FoomaticRIPOptionSetting RIZfold=Left: "SET FOLD=ZLEFT"
*CloseUI: *RIZfold
*OpenUI *StapleLocation/Staple: PickOne
*FoomaticRIPOption StapleLocation: enum JCL A
*OrderDependency: 220 AnySetup *StapleLocation
*DefaultStapleLocation: None
*StapleLocation None/Off: "%% FoomaticRIPOptionSetting: StapleLocation=None"
*FoomaticRIPOptionSetting StapleLocation=None: "SET STAPLE=OFF"
*StapleLocation UpperLeft/Top left: "%% FoomaticRIPOptionSetting: StapleLocation=UpperLeft"
*FoomaticRIPOptionSetting StapleLocation=UpperLeft: "SET STAPLE=LEFTTOP"
*StapleLocation UpperRight/Top right: "%% FoomaticRIPOptionSetting: StapleLocation=UpperRight"
*FoomaticRIPOptionSetting StapleLocation=UpperRight: "SET STAPLE=RIGHTTOP"
*StapleLocation LeftW/2 at left: "%% FoomaticRIPOptionSetting: StapleLocation=LeftW"
*FoomaticRIPOptionSetting StapleLocation=LeftW: "SET STAPLE=LEFT2PORT"
*StapleLocation RightW/2 at right: "%% FoomaticRIPOptionSetting: StapleLocation=RightW"
*FoomaticRIPOptionSetting StapleLocation=RightW: "SET STAPLE=RIGHT2PORT"
*StapleLocation UpperW/2 at top: "%% FoomaticRIPOptionSetting: StapleLocation=UpperW"
*FoomaticRIPOptionSetting StapleLocation=UpperW: "SET STAPLE=TOP2PORT"
*StapleLocation CenterW/2 at center: "%% FoomaticRIPOptionSetting: StapleLocation=CenterW"
*FoomaticRIPOptionSetting StapleLocation=CenterW: "SET STAPLE=BOOKLET"
*CloseUI: *StapleLocation
*OpenUI *RIPunch/Punch: PickOne
*FoomaticRIPOption RIPunch: enum JCL A
*OrderDependency: 230 AnySetup *RIPunch
*DefaultRIPunch: None
*RIPunch None/Off: "%% FoomaticRIPOptionSetting: RIPunch=None"
*FoomaticRIPOptionSetting RIPunch=None: "SET PUNCH=OFF"
*RIPunch LeftJP2/2 at left (Japan/Europe): "%% FoomaticRIPOptionSetting: RIPunch=LeftJP2"
*FoomaticRIPOptionSetting RIPunch=LeftJP2: "SET PUNCH=LEFTPORT
@PJL SET PUNCHHOLE=JP2"
*End
*RIPunch LeftUS2/2 at left (North America): "%% FoomaticRIPOptionSetting: RIPunch=LeftUS2"
*FoomaticRIPOptionSetting RIPunch=LeftUS2: "SET PUNCH=LEFTPORT
@PJL SET PUNCHHOLE=US2"
*End
*RIPunch LeftUS3/3 at left (North America): "%% FoomaticRIPOptionSetting: RIPunch=LeftUS3"
*FoomaticRIPOptionSetting RIPunch=LeftUS3: "SET PUNCH=LEFTPORT
@PJL SET PUNCHHOLE=US3"
*End
*RIPunch LeftEU4/4 at left (Europe): "%% FoomaticRIPOptionSetting: RIPunch=LeftEU4"
*FoomaticRIPOptionSetting RIPunch=LeftEU4: "SET PUNCH=LEFTPORT
@PJL SET PUNCHHOLE=EU4"
*End
*RIPunch LeftNEU4/4 at left (Northern Europe): "%% FoomaticRIPOptionSetting: RIPunch=LeftNEU4"
*FoomaticRIPOptionSetting RIPunch=LeftNEU4: "SET PUNCH=LEFTPORT
@PJL SET PUNCHHOLE=NEU4"
*End
*RIPunch RightJP2/2 at right (Japan/Europe): "%% FoomaticRIPOptionSetting: RIPunch=RightJP2"
*FoomaticRIPOptionSetting RIPunch=RightJP2: "SET PUNCH=RIGHTPORT
@PJL SET PUNCHHOLE=JP2"
*End
*RIPunch RightUS2/2 at right (North America): "%% FoomaticRIPOptionSetting: RIPunch=RightUS2"
*FoomaticRIPOptionSetting RIPunch=RightUS2: "SET PUNCH=RIGHTPORT
@PJL SET PUNCHHOLE=US2"
*End
*RIPunch RightUS3/3 at right (North America): "%% FoomaticRIPOptionSetting: RIPunch=RightUS3"
*FoomaticRIPOptionSetting RIPunch=RightUS3: "SET PUNCH=RIGHTPORT
@PJL SET PUNCHHOLE=US3"
*End
*RIPunch RightEU4/4 at right (Europe): "%% FoomaticRIPOptionSetting: RIPunch=RightEU4"
*FoomaticRIPOptionSetting RIPunch=RightEU4: "SET PUNCH=RIGHTPORT
@PJL SET PUNCHHOLE=EU4"
*End
*RIPunch RightNEU4/4 at right (Northern Europe): "%% FoomaticRIPOptionSetting: RIPunch=RightNEU4"
*FoomaticRIPOptionSetting RIPunch=RightNEU4: "SET PUNCH=RIGHTPORT
@PJL SET PUNCHHOLE=NEU4"
*End
*RIPunch UpperJP2/2 at top (Japan/Europe): "%% FoomaticRIPOptionSetting: RIPunch=UpperJP2"
*FoomaticRIPOptionSetting RIPunch=UpperJP2: "SET PUNCH=TOPPORT
@PJL SET PUNCHHOLE=JP2"
*End
*RIPunch UpperUS2/2 at top (North America): "%% FoomaticRIPOptionSetting: RIPunch=UpperUS2"
*FoomaticRIPOptionSetting RIPunch=UpperUS2: "SET PUNCH=TOPPORT
@PJL SET PUNCHHOLE=US2"
*End
*RIPunch UpperUS3/3 at top (North America): "%% FoomaticRIPOptionSetting: RIPunch=UpperUS3"
*FoomaticRIPOptionSetting RIPunch=UpperUS3: "SET PUNCH=TOPPORT
@PJL SET PUNCHHOLE=US3"
*End
*RIPunch UpperEU4/4 at top (Europe): "%% FoomaticRIPOptionSetting: RIPunch=UpperEU4"
*FoomaticRIPOptionSetting RIPunch=UpperEU4: "SET PUNCH=TOPPORT
@PJL SET PUNCHHOLE=EU4"
*End
*RIPunch UpperNEU4/4 at top (Northern Europe): "%% FoomaticRIPOptionSetting: RIPunch=UpperNEU4"
*FoomaticRIPOptionSetting RIPunch=UpperNEU4: "SET PUNCH=TOPPORT
@PJL SET PUNCHHOLE=NEU4"
*End
*CloseUI: *RIPunch
*OpenUI *RIPrintMode/Toner Saving: PickOne
*FoomaticRIPOption RIPrintMode: enum JCL A
*OrderDependency: 45 AnySetup *RIPrintMode
*DefaultRIPrintMode: 0rhit
*RIPrintMode 0rhit/Off: "%% FoomaticRIPOptionSetting: RIPrintMode=0rhit"
*FoomaticRIPOptionSetting RIPrintMode=0rhit: "SET ECONOMODE=OFF"
*RIPrintMode 5rhit/On: "%% FoomaticRIPOptionSetting: RIPrintMode=5rhit"
*FoomaticRIPOptionSetting RIPrintMode=5rhit: "SET ECONOMODE=ON"
*CloseUI: *RIPrintMode
*OpenUI *RPSBitsPerPixel/Gradation: PickOne
*FoomaticRIPOption RPSBitsPerPixel: enum JCL A
*OrderDependency: 41 AnySetup *RPSBitsPerPixel
*DefaultRPSBitsPerPixel: 2BitsPerPixel
*RPSBitsPerPixel 1BitsPerPixel/Fast: "%% FoomaticRIPOptionSetting: RPSBitsPerPixel=1BitsPerPixel"
*FoomaticRIPOptionSetting RPSBitsPerPixel=1BitsPerPixel: "SET BITSPERPIXEL=1"
*RPSBitsPerPixel 2BitsPerPixel/Standard: "%% FoomaticRIPOptionSetting: RPSBitsPerPixel=2BitsPerPixel"
*FoomaticRIPOptionSetting RPSBitsPerPixel=2BitsPerPixel: "SET BITSPERPIXEL=2"
*CloseUI: *RPSBitsPerPixel
*CloseGroup: General
*OpenGroup: JobLog/Job Log
*OpenUI *JobType/JobType: PickOne
*FoomaticRIPOption JobType: enum JCL A
*OrderDependency: 255 AnySetup *JobType
*DefaultJobType: Normal
*JobType Normal/Normal: ""
*JobType SamplePrint/Sample Print: "%% FoomaticRIPOptionSetting: JobType=SamplePrint"
*FoomaticRIPOptionSetting JobType=SamplePrint: "SET USERID="&user;"
@PJL SET HOSTLOGINNAME="&user;"
@PJL SET DATE="&year;/&month;/&date;"
@PJL SET TIME="&hour;:&min;:&sec;"
@PJL SET JOBID="&title;"
@PJL SET JOBNAME="&title;"
@PJL PROOFJOB"
*End
*JobType LockedPrint/Locked Print: "%% FoomaticRIPOptionSetting: JobType=LockedPrint"
*FoomaticRIPOptionSetting JobType=LockedPrint: "SET USERID="&user;"
@PJL SET HOSTLOGINNAME="&user;"
@PJL SET DATE="&year;/&month;/&date;"
@PJL SET TIME="&hour;:&min;:&sec;"
@PJL SET JOBID="&title;"
@PJL SET JOBNAME="&title;"
@PJL SECUREJOB"
*End
*JobType DocServer/Document Server: "%% FoomaticRIPOptionSetting: JobType=DocServer"
*FoomaticRIPOptionSetting JobType=DocServer: "SET USERID="&user;"
@PJL SET HOSTLOGINNAME="&user;"
@PJL SET DATE="&year;/&month;/&date;"
@PJL SET TIME="&hour;:&min;:&sec;"
@PJL SET JOBID="&title;"
@PJL SET JOBNAME="&title;"
@PJL SET OWNERID="&user;"
@PJL SET DISKIMAGE=ON"
*End
*CloseUI: *JobType
*OpenUI *Password/Locked Print or Doc Server Password (4-8 digits): PickOne
*FoomaticRIPOption Password: password JCL A
*FoomaticRIPOptionMaxLength Password:8
*FoomaticRIPOptionAllowedChars Password: "0-9"
*OrderDependency: 255 AnySetup *Password
*FoomaticRIPOptionPrototype Password: "SET JOBPASSWORD2="%s""
*DefaultPassword: None
*Password None/None: ""
*Password 4001/4001: "%% FoomaticRIPOptionSetting: Password=4001"
*FoomaticRIPOptionSetting Password=4001: "SET JOBPASSWORD2="4001""
*Password 4002/4002: "%% FoomaticRIPOptionSetting: Password=4002"
*FoomaticRIPOptionSetting Password=4002: "SET JOBPASSWORD2="4002""
*Password 4003/4003: "%% FoomaticRIPOptionSetting: Password=4003"
*FoomaticRIPOptionSetting Password=4003: "SET JOBPASSWORD2="4003""
*CloseUI: *Password
*CustomPassword True/Custom Password: "@PJL SET JOBPASSWORD2="\1"<0A>"
*ParamCustomPassword Password: 1 passcode 4 8
*OpenUI *UserCode/User Code (up to 8 digits): PickOne
*FoomaticRIPOption UserCode: string JCL A
*FoomaticRIPOptionMaxLength UserCode:8
*FoomaticRIPOptionAllowedChars UserCode: "0-9"
*OrderDependency: 255 AnySetup *UserCode
*FoomaticRIPOptionPrototype UserCode: "SET USERCODE="%s""
*DefaultUserCode: None
*UserCode None/None: ""
*UserCode 1001/1001: "%% FoomaticRIPOptionSetting: UserCode=1001"
*FoomaticRIPOptionSetting UserCode=1001: "SET USERCODE="1001""
*UserCode 1002/1002: "%% FoomaticRIPOptionSetting: UserCode=1002"
*FoomaticRIPOptionSetting UserCode=1002: "SET USERCODE="1002""
*UserCode 1003/1003: "%% FoomaticRIPOptionSetting: UserCode=1003"
*FoomaticRIPOptionSetting UserCode=1003: "SET USERCODE="1003""
*CloseUI: *UserCode
*CustomUserCode True/Custom UserCode: "@PJL SET USERCODE="\1"<0A>"
*ParamCustomUserCode UserCode: 1 passcode 1 8
*CloseGroup: JobLog/Job Log
*UIConstraints: *InputSlot MultiTray *LargeCapacityTray LCTSIBERIAB
*UIConstraints: *LargeCapacityTray LCTSIBERIAB *InputSlot MultiTray
*UIConstraints: *InputSlot LCT *LargeCapacityTray NotInstalled
*UIConstraints: *LargeCapacityTray NotInstalled *InputSlot LCT
*UIConstraints: *Finisher NotInstalled *Mailbox Installed
*UIConstraints: *Mailbox Installed *Finisher NotInstalled
*UIConstraints: *Finisher FinVICTORIAF *Mailbox Installed
*UIConstraints: *Mailbox Installed *Finisher FinVICTORIAF
*UIConstraints: *OutputBin MailBoxBin1 *Mailbox NotInstalled
*UIConstraints: *Mailbox NotInstalled *OutputBin MailBoxBin1
*UIConstraints: *OutputBin MailBoxBin2 *Mailbox NotInstalled
*UIConstraints: *Mailbox NotInstalled *OutputBin MailBoxBin2
*UIConstraints: *OutputBin MailBoxBin3 *Mailbox NotInstalled
*UIConstraints: *Mailbox NotInstalled *OutputBin MailBoxBin3
*UIConstraints: *OutputBin MailBoxBin4 *Mailbox NotInstalled
*UIConstraints: *Mailbox NotInstalled *OutputBin MailBoxBin4
*UIConstraints: *OutputBin MailBoxBin5 *Mailbox NotInstalled
*UIConstraints: *Mailbox NotInstalled *OutputBin MailBoxBin5
*UIConstraints: *OutputBin MailBoxBin6 *Mailbox NotInstalled
*UIConstraints: *Mailbox NotInstalled *OutputBin MailBoxBin6
*UIConstraints: *OutputBin MailBoxBin7 *Mailbox NotInstalled
*UIConstraints: *Mailbox NotInstalled *OutputBin MailBoxBin7
*UIConstraints: *OutputBin MailBoxBin8 *Mailbox NotInstalled
*UIConstraints: *Mailbox NotInstalled *OutputBin MailBoxBin8
*UIConstraints: *OutputBin MailBoxBin9 *Mailbox NotInstalled
*UIConstraints: *Mailbox NotInstalled *OutputBin MailBoxBin9
*UIConstraints: *MultiFold MultiFoldingUnit *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *MultiFold MultiFoldingUnit
*UIConstraints: *MultiFold MultiFoldingUnit *Finisher FinEUPHRATESD
*UIConstraints: *Finisher FinEUPHRATESD *MultiFold MultiFoldingUnit
*UIConstraints: *MultiHolePunchUnit True *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *MultiHolePunchUnit True
*UIConstraints: *MultiHolePunchUnit True *Finisher FinEUPHRATESD
*UIConstraints: *Finisher FinEUPHRATESD *MultiHolePunchUnit True
*UIConstraints: *MultiHolePunchUnit True *Finisher FinEUPHRATESDBK
*UIConstraints: *Finisher FinEUPHRATESDBK *MultiHolePunchUnit True
*UIConstraints: *OptionRingBind Installed *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *OptionRingBind Installed
*UIConstraints: *OptionRingBind Installed *Finisher FinEUPHRATESD
*UIConstraints: *Finisher FinEUPHRATESD *OptionRingBind Installed
*UIConstraints: *OptionRingBind Installed *Finisher FinEUPHRATESDBK
*UIConstraints: *Finisher FinEUPHRATESDBK *OptionRingBind Installed
*UIConstraints: *OutputBin Standard *Finisher FinEUPHRATESD
*UIConstraints: *Finisher FinEUPHRATESD *OutputBin Standard
*UIConstraints: *OutputBin Standard *Finisher FinEUPHRATESDBK
*UIConstraints: *Finisher FinEUPHRATESDBK *OutputBin Standard
*UIConstraints: *OutputBin Standard *Finisher FinVICTORIAF
*UIConstraints: *Finisher FinVICTORIAF *OutputBin Standard
*UIConstraints: *OutputBin FinEUPHDUpper *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *OutputBin FinEUPHDUpper
*UIConstraints: *OutputBin FinEUPHDUpper *Finisher FinEUPHRATESDBK
*UIConstraints: *Finisher FinEUPHRATESDBK *OutputBin FinEUPHDUpper
*UIConstraints: *OutputBin FinEUPHDUpper *Finisher FinVICTORIAF
*UIConstraints: *Finisher FinVICTORIAF *OutputBin FinEUPHDUpper
*UIConstraints: *OutputBin FinEUPHDShift *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *OutputBin FinEUPHDShift
*UIConstraints: *OutputBin FinEUPHDShift *Finisher FinEUPHRATESDBK
*UIConstraints: *Finisher FinEUPHRATESDBK *OutputBin FinEUPHDShift
*UIConstraints: *OutputBin FinEUPHDShift *Finisher FinVICTORIAF
*UIConstraints: *Finisher FinVICTORIAF *OutputBin FinEUPHDShift
*UIConstraints: *OutputBin FinEUPHDBKUpper *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *OutputBin FinEUPHDBKUpper
*UIConstraints: *OutputBin FinEUPHDBKUpper *Finisher FinEUPHRATESD
*UIConstraints: *Finisher FinEUPHRATESD *OutputBin FinEUPHDBKUpper
*UIConstraints: *OutputBin FinEUPHDBKUpper *Finisher FinVICTORIAF
*UIConstraints: *Finisher FinVICTORIAF *OutputBin FinEUPHDBKUpper
*UIConstraints: *OutputBin FinEUPHDBKShift *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *OutputBin FinEUPHDBKShift
*UIConstraints: *OutputBin FinEUPHDBKShift *Finisher FinEUPHRATESD
*UIConstraints: *Finisher FinEUPHRATESD *OutputBin FinEUPHDBKShift
*UIConstraints: *OutputBin FinEUPHDBKShift *Finisher FinVICTORIAF
*UIConstraints: *Finisher FinVICTORIAF *OutputBin FinEUPHDBKShift
*UIConstraints: *OutputBin FinEUPHDBK *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *Finisher FinEUPHRATESD
*UIConstraints: *Finisher FinEUPHRATESD *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *Finisher FinVICTORIAF
*UIConstraints: *Finisher FinVICTORIAF *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinVICTFUpper *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *OutputBin FinVICTFUpper
*UIConstraints: *OutputBin FinVICTFUpper *Finisher FinEUPHRATESD
*UIConstraints: *Finisher FinEUPHRATESD *OutputBin FinVICTFUpper
*UIConstraints: *OutputBin FinVICTFUpper *Finisher FinEUPHRATESDBK
*UIConstraints: *Finisher FinEUPHRATESDBK *OutputBin FinVICTFUpper
*UIConstraints: *OutputBin FinVICTFShift *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *OutputBin FinVICTFShift
*UIConstraints: *OutputBin FinVICTFShift *Finisher FinEUPHRATESD
*UIConstraints: *Finisher FinEUPHRATESD *OutputBin FinVICTFShift
*UIConstraints: *OutputBin FinVICTFShift *Finisher FinEUPHRATESDBK
*UIConstraints: *Finisher FinEUPHRATESDBK *OutputBin FinVICTFShift
*UIConstraints: *StapleLocation UpperLeft *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperRight *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *StapleLocation UpperRight
*UIConstraints: *StapleLocation LeftW *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *StapleLocation LeftW
*UIConstraints: *StapleLocation RightW *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *StapleLocation RightW
*UIConstraints: *StapleLocation UpperW *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *StapleLocation UpperW
*UIConstraints: *StapleLocation CenterW *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *Finisher FinEUPHRATESD
*UIConstraints: *Finisher FinEUPHRATESD *StapleLocation CenterW
*UIConstraints: *Finisher NotInstalled *BookletProcessor Plockmatic
*UIConstraints: *BookletProcessor Plockmatic *Finisher NotInstalled
*UIConstraints: *Finisher FinEUPHRATESD *BookletProcessor Plockmatic
*UIConstraints: *BookletProcessor Plockmatic *Finisher FinEUPHRATESD
*UIConstraints: *Finisher FinEUPHRATESDBK *BookletProcessor Plockmatic
*UIConstraints: *BookletProcessor Plockmatic *Finisher FinEUPHRATESDBK
*UIConstraints: *OutputBin FinVICTFShift *BookletProcessor Plockmatic
*UIConstraints: *BookletProcessor Plockmatic *OutputBin FinVICTFShift
*UIConstraints: *OutputBin PlockmaticTray *BookletProcessor False
*UIConstraints: *BookletProcessor False *OutputBin PlockmaticTray
*UIConstraints: *StapleLocation UpperLeft *BookletProcessor Plockmatic
*UIConstraints: *BookletProcessor Plockmatic *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperRight *BookletProcessor Plockmatic
*UIConstraints: *BookletProcessor Plockmatic *StapleLocation UpperRight
*UIConstraints: *StapleLocation LeftW *BookletProcessor Plockmatic
*UIConstraints: *BookletProcessor Plockmatic *StapleLocation LeftW
*UIConstraints: *StapleLocation RightW *BookletProcessor Plockmatic
*UIConstraints: *BookletProcessor Plockmatic *StapleLocation RightW
*UIConstraints: *StapleLocation UpperW *BookletProcessor Plockmatic
*UIConstraints: *BookletProcessor Plockmatic *StapleLocation UpperW
*UIConstraints: *OutputBin FinDONAUProof *MultiFold NotInstalled
*UIConstraints: *MultiFold NotInstalled *OutputBin FinDONAUProof
*UIConstraints: *RIZfold Bottom *MultiFold NotInstalled
*UIConstraints: *MultiFold NotInstalled *RIZfold Bottom
*UIConstraints: *RIZfold Right *MultiFold NotInstalled
*UIConstraints: *MultiFold NotInstalled *RIZfold Right
*UIConstraints: *RIZfold Left *MultiFold NotInstalled
*UIConstraints: *MultiFold NotInstalled *RIZfold Left
*UIConstraints: *InputSlot MultiTray *PageSize 8Kai
*UIConstraints: *PageSize 8Kai *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *PageSize 16Kai
*UIConstraints: *PageSize 16Kai *InputSlot MultiTray
*UIConstraints: *InputSlot 1Tray *PageSize A5
*UIConstraints: *PageSize A5 *InputSlot 1Tray
*UIConstraints: *InputSlot 1Tray *PageSize A6
*UIConstraints: *PageSize A6 *InputSlot 1Tray
*UIConstraints: *InputSlot 1Tray *PageSize B5
*UIConstraints: *PageSize B5 *InputSlot 1Tray
*UIConstraints: *InputSlot 1Tray *PageSize B6
*UIConstraints: *PageSize B6 *InputSlot 1Tray
*UIConstraints: *InputSlot 1Tray *PageSize Statement
*UIConstraints: *PageSize Statement *InputSlot 1Tray
*UIConstraints: *InputSlot 1Tray *PageSize F
*UIConstraints: *PageSize F *InputSlot 1Tray
*UIConstraints: *InputSlot 1Tray *PageSize Folio
*UIConstraints: *PageSize Folio *InputSlot 1Tray
*UIConstraints: *InputSlot 1Tray *PageSize FanFoldGermanLegal
*UIConstraints: *PageSize FanFoldGermanLegal *InputSlot 1Tray
*UIConstraints: *InputSlot 1Tray *PageSize 12x18
*UIConstraints: *PageSize 12x18 *InputSlot 1Tray
*UIConstraints: *InputSlot 1Tray *PageSize Executive
*UIConstraints: *PageSize Executive *InputSlot 1Tray
*UIConstraints: *InputSlot 1Tray *PageSize 8Kai
*UIConstraints: *PageSize 8Kai *InputSlot 1Tray
*UIConstraints: *InputSlot 1Tray *PageSize 16Kai
*UIConstraints: *PageSize 16Kai *InputSlot 1Tray
*UIConstraints: *InputSlot 2Tray *PageSize A6
*UIConstraints: *PageSize A6 *InputSlot 2Tray
*UIConstraints: *InputSlot 2Tray *PageSize B6
*UIConstraints: *PageSize B6 *InputSlot 2Tray
*UIConstraints: *InputSlot 3Tray *PageSize A6
*UIConstraints: *PageSize A6 *InputSlot 3Tray
*UIConstraints: *InputSlot 3Tray *PageSize B6
*UIConstraints: *PageSize B6 *InputSlot 3Tray
*UIConstraints: *Duplex DuplexNoTumble *PageSize A6
*UIConstraints: *PageSize A6 *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *PageSize B6
*UIConstraints: *PageSize B6 *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexTumble *PageSize A6
*UIConstraints: *PageSize A6 *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *PageSize B6
*UIConstraints: *PageSize B6 *Duplex DuplexTumble
*UIConstraints: *OutputBin FinEUPHDBK *PageSize A5
*UIConstraints: *PageSize A5 *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *PageSize A6
*UIConstraints: *PageSize A6 *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *PageSize B6
*UIConstraints: *PageSize B6 *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *PageSize Statement
*UIConstraints: *PageSize Statement *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *PageSize F
*UIConstraints: *PageSize F *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *PageSize Folio
*UIConstraints: *PageSize Folio *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *PageSize FanFoldGermanLegal
*UIConstraints: *PageSize FanFoldGermanLegal *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *PageSize Executive
*UIConstraints: *PageSize Executive *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *PageSize 8Kai
*UIConstraints: *PageSize 8Kai *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *PageSize 16Kai
*UIConstraints: *PageSize 16Kai *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin PlockmaticTray *PageSize A5
*UIConstraints: *PageSize A5 *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *PageSize A6
*UIConstraints: *PageSize A6 *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *PageSize B5
*UIConstraints: *PageSize B5 *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *PageSize B6
*UIConstraints: *PageSize B6 *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *PageSize Statement
*UIConstraints: *PageSize Statement *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *PageSize F
*UIConstraints: *PageSize F *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *PageSize Folio
*UIConstraints: *PageSize Folio *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *PageSize FanFoldGermanLegal
*UIConstraints: *PageSize FanFoldGermanLegal *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *PageSize 12x18
*UIConstraints: *PageSize 12x18 *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *PageSize Executive
*UIConstraints: *PageSize Executive *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *PageSize 8Kai
*UIConstraints: *PageSize 8Kai *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *PageSize 16Kai
*UIConstraints: *PageSize 16Kai *OutputBin PlockmaticTray
*UIConstraints: *OutputBin MailBoxBin1 *PageSize A6
*UIConstraints: *PageSize A6 *OutputBin MailBoxBin1
*UIConstraints: *OutputBin MailBoxBin1 *PageSize B6
*UIConstraints: *PageSize B6 *OutputBin MailBoxBin1
*UIConstraints: *OutputBin MailBoxBin1 *PageSize 12x18
*UIConstraints: *PageSize 12x18 *OutputBin MailBoxBin1
*UIConstraints: *OutputBin MailBoxBin2 *PageSize A6
*UIConstraints: *PageSize A6 *OutputBin MailBoxBin2
*UIConstraints: *OutputBin MailBoxBin2 *PageSize B6
*UIConstraints: *PageSize B6 *OutputBin MailBoxBin2
*UIConstraints: *OutputBin MailBoxBin2 *PageSize 12x18
*UIConstraints: *PageSize 12x18 *OutputBin MailBoxBin2
*UIConstraints: *OutputBin MailBoxBin3 *PageSize A6
*UIConstraints: *PageSize A6 *OutputBin MailBoxBin3
*UIConstraints: *OutputBin MailBoxBin3 *PageSize B6
*UIConstraints: *PageSize B6 *OutputBin MailBoxBin3
*UIConstraints: *OutputBin MailBoxBin3 *PageSize 12x18
*UIConstraints: *PageSize 12x18 *OutputBin MailBoxBin3
*UIConstraints: *OutputBin MailBoxBin4 *PageSize A6
*UIConstraints: *PageSize A6 *OutputBin MailBoxBin4
*UIConstraints: *OutputBin MailBoxBin4 *PageSize B6
*UIConstraints: *PageSize B6 *OutputBin MailBoxBin4
*UIConstraints: *OutputBin MailBoxBin4 *PageSize 12x18
*UIConstraints: *PageSize 12x18 *OutputBin MailBoxBin4
*UIConstraints: *OutputBin MailBoxBin5 *PageSize A6
*UIConstraints: *PageSize A6 *OutputBin MailBoxBin5
*UIConstraints: *OutputBin MailBoxBin5 *PageSize B6
*UIConstraints: *PageSize B6 *OutputBin MailBoxBin5
*UIConstraints: *OutputBin MailBoxBin5 *PageSize 12x18
*UIConstraints: *PageSize 12x18 *OutputBin MailBoxBin5
*UIConstraints: *OutputBin MailBoxBin6 *PageSize A6
*UIConstraints: *PageSize A6 *OutputBin MailBoxBin6
*UIConstraints: *OutputBin MailBoxBin6 *PageSize B6
*UIConstraints: *PageSize B6 *OutputBin MailBoxBin6
*UIConstraints: *OutputBin MailBoxBin6 *PageSize 12x18
*UIConstraints: *PageSize 12x18 *OutputBin MailBoxBin6
*UIConstraints: *OutputBin MailBoxBin7 *PageSize A6
*UIConstraints: *PageSize A6 *OutputBin MailBoxBin7
*UIConstraints: *OutputBin MailBoxBin7 *PageSize B6
*UIConstraints: *PageSize B6 *OutputBin MailBoxBin7
*UIConstraints: *OutputBin MailBoxBin7 *PageSize 12x18
*UIConstraints: *PageSize 12x18 *OutputBin MailBoxBin7
*UIConstraints: *OutputBin MailBoxBin8 *PageSize A6
*UIConstraints: *PageSize A6 *OutputBin MailBoxBin8
*UIConstraints: *OutputBin MailBoxBin8 *PageSize B6
*UIConstraints: *PageSize B6 *OutputBin MailBoxBin8
*UIConstraints: *OutputBin MailBoxBin8 *PageSize 12x18
*UIConstraints: *PageSize 12x18 *OutputBin MailBoxBin8
*UIConstraints: *OutputBin MailBoxBin9 *PageSize A6
*UIConstraints: *PageSize A6 *OutputBin MailBoxBin9
*UIConstraints: *OutputBin MailBoxBin9 *PageSize B6
*UIConstraints: *PageSize B6 *OutputBin MailBoxBin9
*UIConstraints: *OutputBin MailBoxBin9 *PageSize 12x18
*UIConstraints: *PageSize 12x18 *OutputBin MailBoxBin9
*UIConstraints: *InputSlot 1Tray *MediaType Labels
*UIConstraints: *MediaType Labels *InputSlot 1Tray
*UIConstraints: *InputSlot 1Tray *MediaType OHP
*UIConstraints: *MediaType OHP *InputSlot 1Tray
*UIConstraints: *InputSlot 1Tray *MediaType Thick3
*UIConstraints: *MediaType Thick3 *InputSlot 1Tray
*UIConstraints: *InputSlot 1Tray *MediaType Index
*UIConstraints: *MediaType Index *InputSlot 1Tray
*UIConstraints: *InputSlot 1Tray *MediaType Translucent
*UIConstraints: *MediaType Translucent *InputSlot 1Tray
*UIConstraints: *InputSlot 2Tray *MediaType Labels
*UIConstraints: *MediaType Labels *InputSlot 2Tray
*UIConstraints: *InputSlot 2Tray *MediaType OHP
*UIConstraints: *MediaType OHP *InputSlot 2Tray
*UIConstraints: *InputSlot 2Tray *MediaType Thick3
*UIConstraints: *MediaType Thick3 *InputSlot 2Tray
*UIConstraints: *InputSlot 2Tray *MediaType Translucent
*UIConstraints: *MediaType Translucent *InputSlot 2Tray
*UIConstraints: *InputSlot 3Tray *MediaType Labels
*UIConstraints: *MediaType Labels *InputSlot 3Tray
*UIConstraints: *InputSlot 3Tray *MediaType OHP
*UIConstraints: *MediaType OHP *InputSlot 3Tray
*UIConstraints: *InputSlot 3Tray *MediaType Translucent
*UIConstraints: *MediaType Translucent *InputSlot 3Tray
*UIConstraints: *Duplex DuplexNoTumble *MediaType Labels
*UIConstraints: *MediaType Labels *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *MediaType OHP
*UIConstraints: *MediaType OHP *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *MediaType Thick2
*UIConstraints: *MediaType Thick2 *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *MediaType Thick3
*UIConstraints: *MediaType Thick3 *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *MediaType Index
*UIConstraints: *MediaType Index *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *MediaType Translucent
*UIConstraints: *MediaType Translucent *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexTumble *MediaType Labels
*UIConstraints: *MediaType Labels *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *MediaType OHP
*UIConstraints: *MediaType OHP *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *MediaType Thick2
*UIConstraints: *MediaType Thick2 *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *MediaType Thick3
*UIConstraints: *MediaType Thick3 *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *MediaType Index
*UIConstraints: *MediaType Index *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *MediaType Translucent
*UIConstraints: *MediaType Translucent *Duplex DuplexTumble
*UIConstraints: *OutputBin FinEUPHDUpper *MediaType Thick2
*UIConstraints: *MediaType Thick2 *OutputBin FinEUPHDUpper
*UIConstraints: *OutputBin FinEUPHDUpper *MediaType Thick3
*UIConstraints: *MediaType Thick3 *OutputBin FinEUPHDUpper
*UIConstraints: *OutputBin FinEUPHDBKUpper *MediaType Thick2
*UIConstraints: *MediaType Thick2 *OutputBin FinEUPHDBKUpper
*UIConstraints: *OutputBin FinEUPHDBKUpper *MediaType Thick3
*UIConstraints: *MediaType Thick3 *OutputBin FinEUPHDBKUpper
*UIConstraints: *OutputBin FinEUPHDBK *MediaType Labels
*UIConstraints: *MediaType Labels *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *MediaType OHP
*UIConstraints: *MediaType OHP *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *MediaType Thick2
*UIConstraints: *MediaType Thick2 *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *MediaType Thick3
*UIConstraints: *MediaType Thick3 *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *MediaType Index
*UIConstraints: *MediaType Index *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinVICTFUpper *MediaType Thick3
*UIConstraints: *MediaType Thick3 *OutputBin FinVICTFUpper
*UIConstraints: *OutputBin PlockmaticTray *MediaType Prepunched
*UIConstraints: *MediaType Prepunched *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *MediaType Labels
*UIConstraints: *MediaType Labels *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *MediaType OHP
*UIConstraints: *MediaType OHP *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *MediaType Thick2
*UIConstraints: *MediaType Thick2 *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *MediaType Thick3
*UIConstraints: *MediaType Thick3 *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *MediaType Index
*UIConstraints: *MediaType Index *OutputBin PlockmaticTray
*UIConstraints: *OutputBin MailBoxBin1 *MediaType Labels
*UIConstraints: *MediaType Labels *OutputBin MailBoxBin1
*UIConstraints: *OutputBin MailBoxBin1 *MediaType OHP
*UIConstraints: *MediaType OHP *OutputBin MailBoxBin1
*UIConstraints: *OutputBin MailBoxBin1 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *OutputBin MailBoxBin1
*UIConstraints: *OutputBin MailBoxBin1 *MediaType Thick3
*UIConstraints: *MediaType Thick3 *OutputBin MailBoxBin1
*UIConstraints: *OutputBin MailBoxBin1 *MediaType Index
*UIConstraints: *MediaType Index *OutputBin MailBoxBin1
*UIConstraints: *OutputBin MailBoxBin1 *MediaType Translucent
*UIConstraints: *MediaType Translucent *OutputBin MailBoxBin1
*UIConstraints: *OutputBin MailBoxBin2 *MediaType Labels
*UIConstraints: *MediaType Labels *OutputBin MailBoxBin2
*UIConstraints: *OutputBin MailBoxBin2 *MediaType OHP
*UIConstraints: *MediaType OHP *OutputBin MailBoxBin2
*UIConstraints: *OutputBin MailBoxBin2 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *OutputBin MailBoxBin2
*UIConstraints: *OutputBin MailBoxBin2 *MediaType Thick3
*UIConstraints: *MediaType Thick3 *OutputBin MailBoxBin2
*UIConstraints: *OutputBin MailBoxBin2 *MediaType Index
*UIConstraints: *MediaType Index *OutputBin MailBoxBin2
*UIConstraints: *OutputBin MailBoxBin2 *MediaType Translucent
*UIConstraints: *MediaType Translucent *OutputBin MailBoxBin2
*UIConstraints: *OutputBin MailBoxBin3 *MediaType Labels
*UIConstraints: *MediaType Labels *OutputBin MailBoxBin3
*UIConstraints: *OutputBin MailBoxBin3 *MediaType OHP
*UIConstraints: *MediaType OHP *OutputBin MailBoxBin3
*UIConstraints: *OutputBin MailBoxBin3 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *OutputBin MailBoxBin3
*UIConstraints: *OutputBin MailBoxBin3 *MediaType Thick3
*UIConstraints: *MediaType Thick3 *OutputBin MailBoxBin3
*UIConstraints: *OutputBin MailBoxBin3 *MediaType Index
*UIConstraints: *MediaType Index *OutputBin MailBoxBin3
*UIConstraints: *OutputBin MailBoxBin3 *MediaType Translucent
*UIConstraints: *MediaType Translucent *OutputBin MailBoxBin3
*UIConstraints: *OutputBin MailBoxBin4 *MediaType Labels
*UIConstraints: *MediaType Labels *OutputBin MailBoxBin4
*UIConstraints: *OutputBin MailBoxBin4 *MediaType OHP
*UIConstraints: *MediaType OHP *OutputBin MailBoxBin4
*UIConstraints: *OutputBin MailBoxBin4 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *OutputBin MailBoxBin4
*UIConstraints: *OutputBin MailBoxBin4 *MediaType Thick3
*UIConstraints: *MediaType Thick3 *OutputBin MailBoxBin4
*UIConstraints: *OutputBin MailBoxBin4 *MediaType Index
*UIConstraints: *MediaType Index *OutputBin MailBoxBin4
*UIConstraints: *OutputBin MailBoxBin4 *MediaType Translucent
*UIConstraints: *MediaType Translucent *OutputBin MailBoxBin4
*UIConstraints: *OutputBin MailBoxBin5 *MediaType Labels
*UIConstraints: *MediaType Labels *OutputBin MailBoxBin5
*UIConstraints: *OutputBin MailBoxBin5 *MediaType OHP
*UIConstraints: *MediaType OHP *OutputBin MailBoxBin5
*UIConstraints: *OutputBin MailBoxBin5 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *OutputBin MailBoxBin5
*UIConstraints: *OutputBin MailBoxBin5 *MediaType Thick3
*UIConstraints: *MediaType Thick3 *OutputBin MailBoxBin5
*UIConstraints: *OutputBin MailBoxBin5 *MediaType Index
*UIConstraints: *MediaType Index *OutputBin MailBoxBin5
*UIConstraints: *OutputBin MailBoxBin5 *MediaType Translucent
*UIConstraints: *MediaType Translucent *OutputBin MailBoxBin5
*UIConstraints: *OutputBin MailBoxBin6 *MediaType Labels
*UIConstraints: *MediaType Labels *OutputBin MailBoxBin6
*UIConstraints: *OutputBin MailBoxBin6 *MediaType OHP
*UIConstraints: *MediaType OHP *OutputBin MailBoxBin6
*UIConstraints: *OutputBin MailBoxBin6 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *OutputBin MailBoxBin6
*UIConstraints: *OutputBin MailBoxBin6 *MediaType Thick3
*UIConstraints: *MediaType Thick3 *OutputBin MailBoxBin6
*UIConstraints: *OutputBin MailBoxBin6 *MediaType Index
*UIConstraints: *MediaType Index *OutputBin MailBoxBin6
*UIConstraints: *OutputBin MailBoxBin6 *MediaType Translucent
*UIConstraints: *MediaType Translucent *OutputBin MailBoxBin6
*UIConstraints: *OutputBin MailBoxBin7 *MediaType Labels
*UIConstraints: *MediaType Labels *OutputBin MailBoxBin7
*UIConstraints: *OutputBin MailBoxBin7 *MediaType OHP
*UIConstraints: *MediaType OHP *OutputBin MailBoxBin7
*UIConstraints: *OutputBin MailBoxBin7 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *OutputBin MailBoxBin7
*UIConstraints: *OutputBin MailBoxBin7 *MediaType Thick3
*UIConstraints: *MediaType Thick3 *OutputBin MailBoxBin7
*UIConstraints: *OutputBin MailBoxBin7 *MediaType Index
*UIConstraints: *MediaType Index *OutputBin MailBoxBin7
*UIConstraints: *OutputBin MailBoxBin7 *MediaType Translucent
*UIConstraints: *MediaType Translucent *OutputBin MailBoxBin7
*UIConstraints: *OutputBin MailBoxBin8 *MediaType Labels
*UIConstraints: *MediaType Labels *OutputBin MailBoxBin8
*UIConstraints: *OutputBin MailBoxBin8 *MediaType OHP
*UIConstraints: *MediaType OHP *OutputBin MailBoxBin8
*UIConstraints: *OutputBin MailBoxBin8 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *OutputBin MailBoxBin8
*UIConstraints: *OutputBin MailBoxBin8 *MediaType Thick3
*UIConstraints: *MediaType Thick3 *OutputBin MailBoxBin8
*UIConstraints: *OutputBin MailBoxBin8 *MediaType Index
*UIConstraints: *MediaType Index *OutputBin MailBoxBin8
*UIConstraints: *OutputBin MailBoxBin8 *MediaType Translucent
*UIConstraints: *MediaType Translucent *OutputBin MailBoxBin8
*UIConstraints: *OutputBin MailBoxBin9 *MediaType Labels
*UIConstraints: *MediaType Labels *OutputBin MailBoxBin9
*UIConstraints: *OutputBin MailBoxBin9 *MediaType OHP
*UIConstraints: *MediaType OHP *OutputBin MailBoxBin9
*UIConstraints: *OutputBin MailBoxBin9 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *OutputBin MailBoxBin9
*UIConstraints: *OutputBin MailBoxBin9 *MediaType Thick3
*UIConstraints: *MediaType Thick3 *OutputBin MailBoxBin9
*UIConstraints: *OutputBin MailBoxBin9 *MediaType Index
*UIConstraints: *MediaType Index *OutputBin MailBoxBin9
*UIConstraints: *OutputBin MailBoxBin9 *MediaType Translucent
*UIConstraints: *MediaType Translucent *OutputBin MailBoxBin9
*UIConstraints: *StapleLocation UpperLeft *MediaType Labels
*UIConstraints: *MediaType Labels *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *MediaType OHP
*UIConstraints: *MediaType OHP *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *MediaType Thick3
*UIConstraints: *MediaType Thick3 *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperRight *MediaType Labels
*UIConstraints: *MediaType Labels *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *MediaType OHP
*UIConstraints: *MediaType OHP *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *MediaType Thick3
*UIConstraints: *MediaType Thick3 *StapleLocation UpperRight
*UIConstraints: *StapleLocation LeftW *MediaType Labels
*UIConstraints: *MediaType Labels *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *MediaType OHP
*UIConstraints: *MediaType OHP *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *MediaType Thick3
*UIConstraints: *MediaType Thick3 *StapleLocation LeftW
*UIConstraints: *StapleLocation RightW *MediaType Labels
*UIConstraints: *MediaType Labels *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *MediaType OHP
*UIConstraints: *MediaType OHP *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *MediaType Thick3
*UIConstraints: *MediaType Thick3 *StapleLocation RightW
*UIConstraints: *StapleLocation UpperW *MediaType Labels
*UIConstraints: *MediaType Labels *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *MediaType OHP
*UIConstraints: *MediaType OHP *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *MediaType Thick3
*UIConstraints: *MediaType Thick3 *StapleLocation UpperW
*UIConstraints: *StapleLocation CenterW *MediaType Labels
*UIConstraints: *MediaType Labels *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *MediaType OHP
*UIConstraints: *MediaType OHP *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *MediaType Thick2
*UIConstraints: *MediaType Thick2 *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *MediaType Thick3
*UIConstraints: *MediaType Thick3 *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *MediaType Index
*UIConstraints: *MediaType Index *StapleLocation CenterW
*UIConstraints: *RIZfold Bottom *MediaType Letterhead
*UIConstraints: *MediaType Letterhead *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *MediaType Labels
*UIConstraints: *MediaType Labels *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *MediaType Cardstock
*UIConstraints: *MediaType Cardstock *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *MediaType OHP
*UIConstraints: *MediaType OHP *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *MediaType Thick
*UIConstraints: *MediaType Thick *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *MediaType Thick2
*UIConstraints: *MediaType Thick2 *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *MediaType Thick3
*UIConstraints: *MediaType Thick3 *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *MediaType Index
*UIConstraints: *MediaType Index *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *MediaType Translucent
*UIConstraints: *MediaType Translucent *RIZfold Bottom
*UIConstraints: *RIZfold Right *MediaType Letterhead
*UIConstraints: *MediaType Letterhead *RIZfold Right
*UIConstraints: *RIZfold Right *MediaType Labels
*UIConstraints: *MediaType Labels *RIZfold Right
*UIConstraints: *RIZfold Right *MediaType Cardstock
*UIConstraints: *MediaType Cardstock *RIZfold Right
*UIConstraints: *RIZfold Right *MediaType OHP
*UIConstraints: *MediaType OHP *RIZfold Right
*UIConstraints: *RIZfold Right *MediaType Thick
*UIConstraints: *MediaType Thick *RIZfold Right
*UIConstraints: *RIZfold Right *MediaType Thick2
*UIConstraints: *MediaType Thick2 *RIZfold Right
*UIConstraints: *RIZfold Right *MediaType Thick3
*UIConstraints: *MediaType Thick3 *RIZfold Right
*UIConstraints: *RIZfold Right *MediaType Index
*UIConstraints: *MediaType Index *RIZfold Right
*UIConstraints: *RIZfold Right *MediaType Translucent
*UIConstraints: *MediaType Translucent *RIZfold Right
*UIConstraints: *RIZfold Left *MediaType Letterhead
*UIConstraints: *MediaType Letterhead *RIZfold Left
*UIConstraints: *RIZfold Left *MediaType Labels
*UIConstraints: *MediaType Labels *RIZfold Left
*UIConstraints: *RIZfold Left *MediaType Cardstock
*UIConstraints: *MediaType Cardstock *RIZfold Left
*UIConstraints: *RIZfold Left *MediaType OHP
*UIConstraints: *MediaType OHP *RIZfold Left
*UIConstraints: *RIZfold Left *MediaType Thick
*UIConstraints: *MediaType Thick *RIZfold Left
*UIConstraints: *RIZfold Left *MediaType Thick2
*UIConstraints: *MediaType Thick2 *RIZfold Left
*UIConstraints: *RIZfold Left *MediaType Thick3
*UIConstraints: *MediaType Thick3 *RIZfold Left
*UIConstraints: *RIZfold Left *MediaType Index
*UIConstraints: *MediaType Index *RIZfold Left
*UIConstraints: *RIZfold Left *MediaType Translucent
*UIConstraints: *MediaType Translucent *RIZfold Left
*UIConstraints: *Duplex DuplexNoTumble *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexTumble *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *Duplex DuplexTumble
*UIConstraints: *StapleLocation UpperLeft *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperRight *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *StapleLocation UpperRight
*UIConstraints: *StapleLocation LeftW *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *StapleLocation LeftW
*UIConstraints: *StapleLocation RightW *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *StapleLocation RightW
*UIConstraints: *StapleLocation UpperW *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *StapleLocation UpperW
*UIConstraints: *StapleLocation CenterW *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *StapleLocation CenterW
*UIConstraints: *RIZfold Bottom *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *RIZfold Bottom
*UIConstraints: *RIZfold Right *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *RIZfold Right
*UIConstraints: *RIZfold Left *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *RIZfold Left
*UIConstraints: *StapleLocation None *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *StapleLocation None
*UIConstraints: *StapleLocation UpperLeft *OutputBin FinEUPHDUpper
*UIConstraints: *OutputBin FinEUPHDUpper *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *OutputBin FinEUPHDBKUpper
*UIConstraints: *OutputBin FinEUPHDBKUpper *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *OutputBin FinVICTFUpper
*UIConstraints: *OutputBin FinVICTFUpper *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *OutputBin FinDONAUProof
*UIConstraints: *OutputBin FinDONAUProof *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperRight *OutputBin FinEUPHDUpper
*UIConstraints: *OutputBin FinEUPHDUpper *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *OutputBin FinEUPHDBKUpper
*UIConstraints: *OutputBin FinEUPHDBKUpper *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *OutputBin FinVICTFUpper
*UIConstraints: *OutputBin FinVICTFUpper *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *OutputBin FinDONAUProof
*UIConstraints: *OutputBin FinDONAUProof *StapleLocation UpperRight
*UIConstraints: *StapleLocation LeftW *OutputBin FinEUPHDUpper
*UIConstraints: *OutputBin FinEUPHDUpper *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *OutputBin FinEUPHDBKUpper
*UIConstraints: *OutputBin FinEUPHDBKUpper *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *OutputBin FinVICTFUpper
*UIConstraints: *OutputBin FinVICTFUpper *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *OutputBin FinDONAUProof
*UIConstraints: *OutputBin FinDONAUProof *StapleLocation LeftW
*UIConstraints: *StapleLocation RightW *OutputBin FinEUPHDUpper
*UIConstraints: *OutputBin FinEUPHDUpper *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *OutputBin FinEUPHDBKUpper
*UIConstraints: *OutputBin FinEUPHDBKUpper *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *OutputBin FinVICTFUpper
*UIConstraints: *OutputBin FinVICTFUpper *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *OutputBin FinDONAUProof
*UIConstraints: *OutputBin FinDONAUProof *StapleLocation RightW
*UIConstraints: *StapleLocation UpperW *OutputBin FinEUPHDUpper
*UIConstraints: *OutputBin FinEUPHDUpper *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *OutputBin FinEUPHDBKUpper
*UIConstraints: *OutputBin FinEUPHDBKUpper *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *OutputBin FinVICTFUpper
*UIConstraints: *OutputBin FinVICTFUpper *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *OutputBin FinDONAUProof
*UIConstraints: *OutputBin FinDONAUProof *StapleLocation UpperW
*UIConstraints: *StapleLocation CenterW *OutputBin FinEUPHDUpper
*UIConstraints: *OutputBin FinEUPHDUpper *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *OutputBin FinEUPHDShift
*UIConstraints: *OutputBin FinEUPHDShift *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *OutputBin FinEUPHDBKUpper
*UIConstraints: *OutputBin FinEUPHDBKUpper *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *OutputBin FinEUPHDBKShift
*UIConstraints: *OutputBin FinEUPHDBKShift *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *OutputBin FinVICTFUpper
*UIConstraints: *OutputBin FinVICTFUpper *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *OutputBin FinVICTFShift
*UIConstraints: *OutputBin FinVICTFShift *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *OutputBin FinDONAUProof
*UIConstraints: *OutputBin FinDONAUProof *StapleLocation CenterW
*UIConstraints: *StapleLocation UpperLeft *OutputBin MailBoxBin1
*UIConstraints: *OutputBin MailBoxBin1 *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *OutputBin MailBoxBin2
*UIConstraints: *OutputBin MailBoxBin2 *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *OutputBin MailBoxBin3
*UIConstraints: *OutputBin MailBoxBin3 *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *OutputBin MailBoxBin4
*UIConstraints: *OutputBin MailBoxBin4 *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *OutputBin MailBoxBin5
*UIConstraints: *OutputBin MailBoxBin5 *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *OutputBin MailBoxBin6
*UIConstraints: *OutputBin MailBoxBin6 *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *OutputBin MailBoxBin7
*UIConstraints: *OutputBin MailBoxBin7 *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *OutputBin MailBoxBin8
*UIConstraints: *OutputBin MailBoxBin8 *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *OutputBin MailBoxBin9
*UIConstraints: *OutputBin MailBoxBin9 *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperRight *OutputBin MailBoxBin1
*UIConstraints: *OutputBin MailBoxBin1 *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *OutputBin MailBoxBin2
*UIConstraints: *OutputBin MailBoxBin2 *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *OutputBin MailBoxBin3
*UIConstraints: *OutputBin MailBoxBin3 *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *OutputBin MailBoxBin4
*UIConstraints: *OutputBin MailBoxBin4 *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *OutputBin MailBoxBin5
*UIConstraints: *OutputBin MailBoxBin5 *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *OutputBin MailBoxBin6
*UIConstraints: *OutputBin MailBoxBin6 *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *OutputBin MailBoxBin7
*UIConstraints: *OutputBin MailBoxBin7 *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *OutputBin MailBoxBin8
*UIConstraints: *OutputBin MailBoxBin8 *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *OutputBin MailBoxBin9
*UIConstraints: *OutputBin MailBoxBin9 *StapleLocation UpperRight
*UIConstraints: *StapleLocation LeftW *OutputBin MailBoxBin1
*UIConstraints: *OutputBin MailBoxBin1 *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *OutputBin MailBoxBin2
*UIConstraints: *OutputBin MailBoxBin2 *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *OutputBin MailBoxBin3
*UIConstraints: *OutputBin MailBoxBin3 *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *OutputBin MailBoxBin4
*UIConstraints: *OutputBin MailBoxBin4 *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *OutputBin MailBoxBin5
*UIConstraints: *OutputBin MailBoxBin5 *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *OutputBin MailBoxBin6
*UIConstraints: *OutputBin MailBoxBin6 *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *OutputBin MailBoxBin7
*UIConstraints: *OutputBin MailBoxBin7 *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *OutputBin MailBoxBin8
*UIConstraints: *OutputBin MailBoxBin8 *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *OutputBin MailBoxBin9
*UIConstraints: *OutputBin MailBoxBin9 *StapleLocation LeftW
*UIConstraints: *StapleLocation RightW *OutputBin MailBoxBin1
*UIConstraints: *OutputBin MailBoxBin1 *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *OutputBin MailBoxBin2
*UIConstraints: *OutputBin MailBoxBin2 *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *OutputBin MailBoxBin3
*UIConstraints: *OutputBin MailBoxBin3 *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *OutputBin MailBoxBin4
*UIConstraints: *OutputBin MailBoxBin4 *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *OutputBin MailBoxBin5
*UIConstraints: *OutputBin MailBoxBin5 *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *OutputBin MailBoxBin6
*UIConstraints: *OutputBin MailBoxBin6 *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *OutputBin MailBoxBin7
*UIConstraints: *OutputBin MailBoxBin7 *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *OutputBin MailBoxBin8
*UIConstraints: *OutputBin MailBoxBin8 *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *OutputBin MailBoxBin9
*UIConstraints: *OutputBin MailBoxBin9 *StapleLocation RightW
*UIConstraints: *StapleLocation UpperW *OutputBin MailBoxBin1
*UIConstraints: *OutputBin MailBoxBin1 *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *OutputBin MailBoxBin2
*UIConstraints: *OutputBin MailBoxBin2 *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *OutputBin MailBoxBin3
*UIConstraints: *OutputBin MailBoxBin3 *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *OutputBin MailBoxBin4
*UIConstraints: *OutputBin MailBoxBin4 *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *OutputBin MailBoxBin5
*UIConstraints: *OutputBin MailBoxBin5 *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *OutputBin MailBoxBin6
*UIConstraints: *OutputBin MailBoxBin6 *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *OutputBin MailBoxBin7
*UIConstraints: *OutputBin MailBoxBin7 *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *OutputBin MailBoxBin8
*UIConstraints: *OutputBin MailBoxBin8 *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *OutputBin MailBoxBin9
*UIConstraints: *OutputBin MailBoxBin9 *StapleLocation UpperW
*UIConstraints: *StapleLocation CenterW *OutputBin MailBoxBin1
*UIConstraints: *OutputBin MailBoxBin1 *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *OutputBin MailBoxBin2
*UIConstraints: *OutputBin MailBoxBin2 *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *OutputBin MailBoxBin3
*UIConstraints: *OutputBin MailBoxBin3 *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *OutputBin MailBoxBin4
*UIConstraints: *OutputBin MailBoxBin4 *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *OutputBin MailBoxBin5
*UIConstraints: *OutputBin MailBoxBin5 *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *OutputBin MailBoxBin6
*UIConstraints: *OutputBin MailBoxBin6 *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *OutputBin MailBoxBin7
*UIConstraints: *OutputBin MailBoxBin7 *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *OutputBin MailBoxBin8
*UIConstraints: *OutputBin MailBoxBin8 *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *OutputBin MailBoxBin9
*UIConstraints: *OutputBin MailBoxBin9 *StapleLocation CenterW
*UIConstraints: *RIZfold Bottom *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *RIZfold Bottom
*UIConstraints: *RIZfold Right *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *RIZfold Right
*UIConstraints: *RIZfold Left *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *RIZfold Left
*UIConstraints: *RIZfold Bottom *OutputBin MailBoxBin1
*UIConstraints: *OutputBin MailBoxBin1 *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *OutputBin MailBoxBin2
*UIConstraints: *OutputBin MailBoxBin2 *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *OutputBin MailBoxBin3
*UIConstraints: *OutputBin MailBoxBin3 *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *OutputBin MailBoxBin4
*UIConstraints: *OutputBin MailBoxBin4 *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *OutputBin MailBoxBin5
*UIConstraints: *OutputBin MailBoxBin5 *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *OutputBin MailBoxBin6
*UIConstraints: *OutputBin MailBoxBin6 *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *OutputBin MailBoxBin7
*UIConstraints: *OutputBin MailBoxBin7 *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *OutputBin MailBoxBin8
*UIConstraints: *OutputBin MailBoxBin8 *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *OutputBin MailBoxBin9
*UIConstraints: *OutputBin MailBoxBin9 *RIZfold Bottom
*UIConstraints: *RIZfold Right *OutputBin MailBoxBin1
*UIConstraints: *OutputBin MailBoxBin1 *RIZfold Right
*UIConstraints: *RIZfold Right *OutputBin MailBoxBin2
*UIConstraints: *OutputBin MailBoxBin2 *RIZfold Right
*UIConstraints: *RIZfold Right *OutputBin MailBoxBin3
*UIConstraints: *OutputBin MailBoxBin3 *RIZfold Right
*UIConstraints: *RIZfold Right *OutputBin MailBoxBin4
*UIConstraints: *OutputBin MailBoxBin4 *RIZfold Right
*UIConstraints: *RIZfold Right *OutputBin MailBoxBin5
*UIConstraints: *OutputBin MailBoxBin5 *RIZfold Right
*UIConstraints: *RIZfold Right *OutputBin MailBoxBin6
*UIConstraints: *OutputBin MailBoxBin6 *RIZfold Right
*UIConstraints: *RIZfold Right *OutputBin MailBoxBin7
*UIConstraints: *OutputBin MailBoxBin7 *RIZfold Right
*UIConstraints: *RIZfold Right *OutputBin MailBoxBin8
*UIConstraints: *OutputBin MailBoxBin8 *RIZfold Right
*UIConstraints: *RIZfold Right *OutputBin MailBoxBin9
*UIConstraints: *OutputBin MailBoxBin9 *RIZfold Right
*UIConstraints: *RIZfold Left *OutputBin MailBoxBin1
*UIConstraints: *OutputBin MailBoxBin1 *RIZfold Left
*UIConstraints: *RIZfold Left *OutputBin MailBoxBin2
*UIConstraints: *OutputBin MailBoxBin2 *RIZfold Left
*UIConstraints: *RIZfold Left *OutputBin MailBoxBin3
*UIConstraints: *OutputBin MailBoxBin3 *RIZfold Left
*UIConstraints: *RIZfold Left *OutputBin MailBoxBin4
*UIConstraints: *OutputBin MailBoxBin4 *RIZfold Left
*UIConstraints: *RIZfold Left *OutputBin MailBoxBin5
*UIConstraints: *OutputBin MailBoxBin5 *RIZfold Left
*UIConstraints: *RIZfold Left *OutputBin MailBoxBin6
*UIConstraints: *OutputBin MailBoxBin6 *RIZfold Left
*UIConstraints: *RIZfold Left *OutputBin MailBoxBin7
*UIConstraints: *OutputBin MailBoxBin7 *RIZfold Left
*UIConstraints: *RIZfold Left *OutputBin MailBoxBin8
*UIConstraints: *OutputBin MailBoxBin8 *RIZfold Left
*UIConstraints: *RIZfold Left *OutputBin MailBoxBin9
*UIConstraints: *OutputBin MailBoxBin9 *RIZfold Left
*UIConstraints: *RPSBitsPerPixel 2BitsPerPixel *Resolution 1200dpi
*UIConstraints: *Resolution 1200dpi *RPSBitsPerPixel 2BitsPerPixel
*UIConstraints: *RIZfold Bottom *Resolution 1200dpi
*UIConstraints: *Resolution 1200dpi *RIZfold Bottom
*UIConstraints: *RIZfold Right *Resolution 1200dpi
*UIConstraints: *Resolution 1200dpi *RIZfold Right
*UIConstraints: *RIZfold Left *Resolution 1200dpi
*UIConstraints: *Resolution 1200dpi *RIZfold Left
*UIConstraints: *RIZfold Bottom *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *RIZfold Bottom
*UIConstraints: *RIZfold Right *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *RIZfold Right
*UIConstraints: *RIZfold Left *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *RIZfold Left
*UIConstraints: *Finisher NotInstalled *RIPunch LeftJP2
*UIConstraints: *RIPunch LeftJP2 *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *RIPunch LeftUS2
*UIConstraints: *RIPunch LeftUS2 *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *RIPunch LeftUS3
*UIConstraints: *RIPunch LeftUS3 *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *RIPunch LeftEU4
*UIConstraints: *RIPunch LeftEU4 *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *RIPunch LeftNEU4
*UIConstraints: *RIPunch LeftNEU4 *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *RIPunch RightJP2
*UIConstraints: *RIPunch RightJP2 *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *RIPunch RightUS2
*UIConstraints: *RIPunch RightUS2 *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *RIPunch RightUS3
*UIConstraints: *RIPunch RightUS3 *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *RIPunch RightEU4
*UIConstraints: *RIPunch RightEU4 *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *RIPunch RightNEU4
*UIConstraints: *RIPunch RightNEU4 *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *RIPunch UpperJP2
*UIConstraints: *RIPunch UpperJP2 *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *RIPunch UpperUS2
*UIConstraints: *RIPunch UpperUS2 *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *RIPunch UpperUS3
*UIConstraints: *RIPunch UpperUS3 *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *RIPunch UpperEU4
*UIConstraints: *RIPunch UpperEU4 *Finisher NotInstalled
*UIConstraints: *Finisher NotInstalled *RIPunch UpperNEU4
*UIConstraints: *RIPunch UpperNEU4 *Finisher NotInstalled
*UIConstraints: *MultiHolePunchUnit False *RIPunch LeftJP2
*UIConstraints: *RIPunch LeftJP2 *MultiHolePunchUnit False
*UIConstraints: *MultiHolePunchUnit False *RIPunch LeftUS2
*UIConstraints: *RIPunch LeftUS2 *MultiHolePunchUnit False
*UIConstraints: *MultiHolePunchUnit False *RIPunch LeftUS3
*UIConstraints: *RIPunch LeftUS3 *MultiHolePunchUnit False
*UIConstraints: *MultiHolePunchUnit False *RIPunch LeftEU4
*UIConstraints: *RIPunch LeftEU4 *MultiHolePunchUnit False
*UIConstraints: *MultiHolePunchUnit False *RIPunch LeftNEU4
*UIConstraints: *RIPunch LeftNEU4 *MultiHolePunchUnit False
*UIConstraints: *MultiHolePunchUnit False *RIPunch RightJP2
*UIConstraints: *RIPunch RightJP2 *MultiHolePunchUnit False
*UIConstraints: *MultiHolePunchUnit False *RIPunch RightUS2
*UIConstraints: *RIPunch RightUS2 *MultiHolePunchUnit False
*UIConstraints: *MultiHolePunchUnit False *RIPunch RightUS3
*UIConstraints: *RIPunch RightUS3 *MultiHolePunchUnit False
*UIConstraints: *MultiHolePunchUnit False *RIPunch RightEU4
*UIConstraints: *RIPunch RightEU4 *MultiHolePunchUnit False
*UIConstraints: *MultiHolePunchUnit False *RIPunch RightNEU4
*UIConstraints: *RIPunch RightNEU4 *MultiHolePunchUnit False
*UIConstraints: *MultiHolePunchUnit False *RIPunch UpperJP2
*UIConstraints: *RIPunch UpperJP2 *MultiHolePunchUnit False
*UIConstraints: *MultiHolePunchUnit False *RIPunch UpperUS2
*UIConstraints: *RIPunch UpperUS2 *MultiHolePunchUnit False
*UIConstraints: *MultiHolePunchUnit False *RIPunch UpperUS3
*UIConstraints: *RIPunch UpperUS3 *MultiHolePunchUnit False
*UIConstraints: *MultiHolePunchUnit False *RIPunch UpperEU4
*UIConstraints: *RIPunch UpperEU4 *MultiHolePunchUnit False
*UIConstraints: *MultiHolePunchUnit False *RIPunch UpperNEU4
*UIConstraints: *RIPunch UpperNEU4 *MultiHolePunchUnit False
*UIConstraints: *MediaType Prepunched *RIPunch LeftJP2
*UIConstraints: *RIPunch LeftJP2 *MediaType Prepunched
*UIConstraints: *MediaType Prepunched *RIPunch LeftUS2
*UIConstraints: *RIPunch LeftUS2 *MediaType Prepunched
*UIConstraints: *MediaType Prepunched *RIPunch LeftUS3
*UIConstraints: *RIPunch LeftUS3 *MediaType Prepunched
*UIConstraints: *MediaType Prepunched *RIPunch LeftEU4
*UIConstraints: *RIPunch LeftEU4 *MediaType Prepunched
*UIConstraints: *MediaType Prepunched *RIPunch LeftNEU4
*UIConstraints: *RIPunch LeftNEU4 *MediaType Prepunched
*UIConstraints: *MediaType Prepunched *RIPunch RightJP2
*UIConstraints: *RIPunch RightJP2 *MediaType Prepunched
*UIConstraints: *MediaType Prepunched *RIPunch RightUS2
*UIConstraints: *RIPunch RightUS2 *MediaType Prepunched
*UIConstraints: *MediaType Prepunched *RIPunch RightUS3
*UIConstraints: *RIPunch RightUS3 *MediaType Prepunched
*UIConstraints: *MediaType Prepunched *RIPunch RightEU4
*UIConstraints: *RIPunch RightEU4 *MediaType Prepunched
*UIConstraints: *MediaType Prepunched *RIPunch RightNEU4
*UIConstraints: *RIPunch RightNEU4 *MediaType Prepunched
*UIConstraints: *MediaType Prepunched *RIPunch UpperJP2
*UIConstraints: *RIPunch UpperJP2 *MediaType Prepunched
*UIConstraints: *MediaType Prepunched *RIPunch UpperUS2
*UIConstraints: *RIPunch UpperUS2 *MediaType Prepunched
*UIConstraints: *MediaType Prepunched *RIPunch UpperUS3
*UIConstraints: *RIPunch UpperUS3 *MediaType Prepunched
*UIConstraints: *MediaType Prepunched *RIPunch UpperEU4
*UIConstraints: *RIPunch UpperEU4 *MediaType Prepunched
*UIConstraints: *MediaType Prepunched *RIPunch UpperNEU4
*UIConstraints: *RIPunch UpperNEU4 *MediaType Prepunched
*UIConstraints: *MediaType Labels *RIPunch LeftJP2
*UIConstraints: *RIPunch LeftJP2 *MediaType Labels
*UIConstraints: *MediaType Labels *RIPunch LeftUS2
*UIConstraints: *RIPunch LeftUS2 *MediaType Labels
*UIConstraints: *MediaType Labels *RIPunch LeftUS3
*UIConstraints: *RIPunch LeftUS3 *MediaType Labels
*UIConstraints: *MediaType Labels *RIPunch LeftEU4
*UIConstraints: *RIPunch LeftEU4 *MediaType Labels
*UIConstraints: *MediaType Labels *RIPunch LeftNEU4
*UIConstraints: *RIPunch LeftNEU4 *MediaType Labels
*UIConstraints: *MediaType Labels *RIPunch RightJP2
*UIConstraints: *RIPunch RightJP2 *MediaType Labels
*UIConstraints: *MediaType Labels *RIPunch RightUS2
*UIConstraints: *RIPunch RightUS2 *MediaType Labels
*UIConstraints: *MediaType Labels *RIPunch RightUS3
*UIConstraints: *RIPunch RightUS3 *MediaType Labels
*UIConstraints: *MediaType Labels *RIPunch RightEU4
*UIConstraints: *RIPunch RightEU4 *MediaType Labels
*UIConstraints: *MediaType Labels *RIPunch RightNEU4
*UIConstraints: *RIPunch RightNEU4 *MediaType Labels
*UIConstraints: *MediaType Labels *RIPunch UpperJP2
*UIConstraints: *RIPunch UpperJP2 *MediaType Labels
*UIConstraints: *MediaType Labels *RIPunch UpperUS2
*UIConstraints: *RIPunch UpperUS2 *MediaType Labels
*UIConstraints: *MediaType Labels *RIPunch UpperUS3
*UIConstraints: *RIPunch UpperUS3 *MediaType Labels
*UIConstraints: *MediaType Labels *RIPunch UpperEU4
*UIConstraints: *RIPunch UpperEU4 *MediaType Labels
*UIConstraints: *MediaType Labels *RIPunch UpperNEU4
*UIConstraints: *RIPunch UpperNEU4 *MediaType Labels
*UIConstraints: *MediaType OHP *RIPunch LeftJP2
*UIConstraints: *RIPunch LeftJP2 *MediaType OHP
*UIConstraints: *MediaType OHP *RIPunch LeftUS2
*UIConstraints: *RIPunch LeftUS2 *MediaType OHP
*UIConstraints: *MediaType OHP *RIPunch LeftUS3
*UIConstraints: *RIPunch LeftUS3 *MediaType OHP
*UIConstraints: *MediaType OHP *RIPunch LeftEU4
*UIConstraints: *RIPunch LeftEU4 *MediaType OHP
*UIConstraints: *MediaType OHP *RIPunch LeftNEU4
*UIConstraints: *RIPunch LeftNEU4 *MediaType OHP
*UIConstraints: *MediaType OHP *RIPunch RightJP2
*UIConstraints: *RIPunch RightJP2 *MediaType OHP
*UIConstraints: *MediaType OHP *RIPunch RightUS2
*UIConstraints: *RIPunch RightUS2 *MediaType OHP
*UIConstraints: *MediaType OHP *RIPunch RightUS3
*UIConstraints: *RIPunch RightUS3 *MediaType OHP
*UIConstraints: *MediaType OHP *RIPunch RightEU4
*UIConstraints: *RIPunch RightEU4 *MediaType OHP
*UIConstraints: *MediaType OHP *RIPunch RightNEU4
*UIConstraints: *RIPunch RightNEU4 *MediaType OHP
*UIConstraints: *MediaType OHP *RIPunch UpperJP2
*UIConstraints: *RIPunch UpperJP2 *MediaType OHP
*UIConstraints: *MediaType OHP *RIPunch UpperUS2
*UIConstraints: *RIPunch UpperUS2 *MediaType OHP
*UIConstraints: *MediaType OHP *RIPunch UpperUS3
*UIConstraints: *RIPunch UpperUS3 *MediaType OHP
*UIConstraints: *MediaType OHP *RIPunch UpperEU4
*UIConstraints: *RIPunch UpperEU4 *MediaType OHP
*UIConstraints: *MediaType OHP *RIPunch UpperNEU4
*UIConstraints: *RIPunch UpperNEU4 *MediaType OHP
*UIConstraints: *MediaType Thick2 *RIPunch LeftJP2
*UIConstraints: *RIPunch LeftJP2 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *RIPunch LeftUS2
*UIConstraints: *RIPunch LeftUS2 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *RIPunch LeftUS3
*UIConstraints: *RIPunch LeftUS3 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *RIPunch LeftEU4
*UIConstraints: *RIPunch LeftEU4 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *RIPunch LeftNEU4
*UIConstraints: *RIPunch LeftNEU4 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *RIPunch RightJP2
*UIConstraints: *RIPunch RightJP2 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *RIPunch RightUS2
*UIConstraints: *RIPunch RightUS2 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *RIPunch RightUS3
*UIConstraints: *RIPunch RightUS3 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *RIPunch RightEU4
*UIConstraints: *RIPunch RightEU4 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *RIPunch RightNEU4
*UIConstraints: *RIPunch RightNEU4 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *RIPunch UpperJP2
*UIConstraints: *RIPunch UpperJP2 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *RIPunch UpperUS2
*UIConstraints: *RIPunch UpperUS2 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *RIPunch UpperUS3
*UIConstraints: *RIPunch UpperUS3 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *RIPunch UpperEU4
*UIConstraints: *RIPunch UpperEU4 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *RIPunch UpperNEU4
*UIConstraints: *RIPunch UpperNEU4 *MediaType Thick2
*UIConstraints: *MediaType Thick3 *RIPunch LeftJP2
*UIConstraints: *RIPunch LeftJP2 *MediaType Thick3
*UIConstraints: *MediaType Thick3 *RIPunch LeftUS2
*UIConstraints: *RIPunch LeftUS2 *MediaType Thick3
*UIConstraints: *MediaType Thick3 *RIPunch LeftUS3
*UIConstraints: *RIPunch LeftUS3 *MediaType Thick3
*UIConstraints: *MediaType Thick3 *RIPunch LeftEU4
*UIConstraints: *RIPunch LeftEU4 *MediaType Thick3
*UIConstraints: *MediaType Thick3 *RIPunch LeftNEU4
*UIConstraints: *RIPunch LeftNEU4 *MediaType Thick3
*UIConstraints: *MediaType Thick3 *RIPunch RightJP2
*UIConstraints: *RIPunch RightJP2 *MediaType Thick3
*UIConstraints: *MediaType Thick3 *RIPunch RightUS2
*UIConstraints: *RIPunch RightUS2 *MediaType Thick3
*UIConstraints: *MediaType Thick3 *RIPunch RightUS3
*UIConstraints: *RIPunch RightUS3 *MediaType Thick3
*UIConstraints: *MediaType Thick3 *RIPunch RightEU4
*UIConstraints: *RIPunch RightEU4 *MediaType Thick3
*UIConstraints: *MediaType Thick3 *RIPunch RightNEU4
*UIConstraints: *RIPunch RightNEU4 *MediaType Thick3
*UIConstraints: *MediaType Thick3 *RIPunch UpperJP2
*UIConstraints: *RIPunch UpperJP2 *MediaType Thick3
*UIConstraints: *MediaType Thick3 *RIPunch UpperUS2
*UIConstraints: *RIPunch UpperUS2 *MediaType Thick3
*UIConstraints: *MediaType Thick3 *RIPunch UpperUS3
*UIConstraints: *RIPunch UpperUS3 *MediaType Thick3
*UIConstraints: *MediaType Thick3 *RIPunch UpperEU4
*UIConstraints: *RIPunch UpperEU4 *MediaType Thick3
*UIConstraints: *MediaType Thick3 *RIPunch UpperNEU4
*UIConstraints: *RIPunch UpperNEU4 *MediaType Thick3
*UIConstraints: *InputSlot MultiTray *RIPunch LeftJP2
*UIConstraints: *RIPunch LeftJP2 *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *RIPunch LeftUS2
*UIConstraints: *RIPunch LeftUS2 *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *RIPunch LeftUS3
*UIConstraints: *RIPunch LeftUS3 *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *RIPunch LeftEU4
*UIConstraints: *RIPunch LeftEU4 *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *RIPunch LeftNEU4
*UIConstraints: *RIPunch LeftNEU4 *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *RIPunch RightJP2
*UIConstraints: *RIPunch RightJP2 *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *RIPunch RightUS2
*UIConstraints: *RIPunch RightUS2 *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *RIPunch RightUS3
*UIConstraints: *RIPunch RightUS3 *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *RIPunch RightEU4
*UIConstraints: *RIPunch RightEU4 *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *RIPunch RightNEU4
*UIConstraints: *RIPunch RightNEU4 *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *RIPunch UpperJP2
*UIConstraints: *RIPunch UpperJP2 *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *RIPunch UpperUS2
*UIConstraints: *RIPunch UpperUS2 *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *RIPunch UpperUS3
*UIConstraints: *RIPunch UpperUS3 *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *RIPunch UpperEU4
*UIConstraints: *RIPunch UpperEU4 *InputSlot MultiTray
*UIConstraints: *InputSlot MultiTray *RIPunch UpperNEU4
*UIConstraints: *RIPunch UpperNEU4 *InputSlot MultiTray
*UIConstraints: *OutputBin FinEUPHDBK *RIPunch LeftJP2
*UIConstraints: *RIPunch LeftJP2 *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *RIPunch LeftUS2
*UIConstraints: *RIPunch LeftUS2 *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *RIPunch LeftUS3
*UIConstraints: *RIPunch LeftUS3 *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *RIPunch LeftEU4
*UIConstraints: *RIPunch LeftEU4 *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *RIPunch LeftNEU4
*UIConstraints: *RIPunch LeftNEU4 *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *RIPunch RightJP2
*UIConstraints: *RIPunch RightJP2 *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *RIPunch RightUS2
*UIConstraints: *RIPunch RightUS2 *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *RIPunch RightUS3
*UIConstraints: *RIPunch RightUS3 *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *RIPunch RightEU4
*UIConstraints: *RIPunch RightEU4 *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *RIPunch RightNEU4
*UIConstraints: *RIPunch RightNEU4 *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *RIPunch UpperJP2
*UIConstraints: *RIPunch UpperJP2 *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *RIPunch UpperUS2
*UIConstraints: *RIPunch UpperUS2 *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *RIPunch UpperUS3
*UIConstraints: *RIPunch UpperUS3 *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *RIPunch UpperEU4
*UIConstraints: *RIPunch UpperEU4 *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinEUPHDBK *RIPunch UpperNEU4
*UIConstraints: *RIPunch UpperNEU4 *OutputBin FinEUPHDBK
*UIConstraints: *OutputBin FinDONAUProof *RIPunch LeftJP2
*UIConstraints: *RIPunch LeftJP2 *OutputBin FinDONAUProof
*UIConstraints: *OutputBin FinDONAUProof *RIPunch LeftUS2
*UIConstraints: *RIPunch LeftUS2 *OutputBin FinDONAUProof
*UIConstraints: *OutputBin FinDONAUProof *RIPunch LeftUS3
*UIConstraints: *RIPunch LeftUS3 *OutputBin FinDONAUProof
*UIConstraints: *OutputBin FinDONAUProof *RIPunch LeftEU4
*UIConstraints: *RIPunch LeftEU4 *OutputBin FinDONAUProof
*UIConstraints: *OutputBin FinDONAUProof *RIPunch LeftNEU4
*UIConstraints: *RIPunch LeftNEU4 *OutputBin FinDONAUProof
*UIConstraints: *OutputBin FinDONAUProof *RIPunch RightJP2
*UIConstraints: *RIPunch RightJP2 *OutputBin FinDONAUProof
*UIConstraints: *OutputBin FinDONAUProof *RIPunch RightUS2
*UIConstraints: *RIPunch RightUS2 *OutputBin FinDONAUProof
*UIConstraints: *OutputBin FinDONAUProof *RIPunch RightUS3
*UIConstraints: *RIPunch RightUS3 *OutputBin FinDONAUProof
*UIConstraints: *OutputBin FinDONAUProof *RIPunch RightEU4
*UIConstraints: *RIPunch RightEU4 *OutputBin FinDONAUProof
*UIConstraints: *OutputBin FinDONAUProof *RIPunch RightNEU4
*UIConstraints: *RIPunch RightNEU4 *OutputBin FinDONAUProof
*UIConstraints: *OutputBin FinDONAUProof *RIPunch UpperJP2
*UIConstraints: *RIPunch UpperJP2 *OutputBin FinDONAUProof
*UIConstraints: *OutputBin FinDONAUProof *RIPunch UpperUS2
*UIConstraints: *RIPunch UpperUS2 *OutputBin FinDONAUProof
*UIConstraints: *OutputBin FinDONAUProof *RIPunch UpperUS3
*UIConstraints: *RIPunch UpperUS3 *OutputBin FinDONAUProof
*UIConstraints: *OutputBin FinDONAUProof *RIPunch UpperEU4
*UIConstraints: *RIPunch UpperEU4 *OutputBin FinDONAUProof
*UIConstraints: *OutputBin FinDONAUProof *RIPunch UpperNEU4
*UIConstraints: *RIPunch UpperNEU4 *OutputBin FinDONAUProof
*UIConstraints: *OutputBin PlockmaticTray *RIPunch LeftJP2
*UIConstraints: *RIPunch LeftJP2 *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *RIPunch LeftUS2
*UIConstraints: *RIPunch LeftUS2 *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *RIPunch LeftUS3
*UIConstraints: *RIPunch LeftUS3 *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *RIPunch LeftEU4
*UIConstraints: *RIPunch LeftEU4 *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *RIPunch LeftNEU4
*UIConstraints: *RIPunch LeftNEU4 *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *RIPunch RightJP2
*UIConstraints: *RIPunch RightJP2 *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *RIPunch RightUS2
*UIConstraints: *RIPunch RightUS2 *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *RIPunch RightUS3
*UIConstraints: *RIPunch RightUS3 *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *RIPunch RightEU4
*UIConstraints: *RIPunch RightEU4 *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *RIPunch RightNEU4
*UIConstraints: *RIPunch RightNEU4 *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *RIPunch UpperJP2
*UIConstraints: *RIPunch UpperJP2 *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *RIPunch UpperUS2
*UIConstraints: *RIPunch UpperUS2 *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *RIPunch UpperUS3
*UIConstraints: *RIPunch UpperUS3 *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *RIPunch UpperEU4
*UIConstraints: *RIPunch UpperEU4 *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *RIPunch UpperNEU4
*UIConstraints: *RIPunch UpperNEU4 *OutputBin PlockmaticTray
*UIConstraints: *StapleLocation CenterW *RIPunch LeftJP2
*UIConstraints: *RIPunch LeftJP2 *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *RIPunch LeftUS2
*UIConstraints: *RIPunch LeftUS2 *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *RIPunch LeftUS3
*UIConstraints: *RIPunch LeftUS3 *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *RIPunch LeftEU4
*UIConstraints: *RIPunch LeftEU4 *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *RIPunch LeftNEU4
*UIConstraints: *RIPunch LeftNEU4 *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *RIPunch RightJP2
*UIConstraints: *RIPunch RightJP2 *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *RIPunch RightUS2
*UIConstraints: *RIPunch RightUS2 *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *RIPunch RightUS3
*UIConstraints: *RIPunch RightUS3 *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *RIPunch RightEU4
*UIConstraints: *RIPunch RightEU4 *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *RIPunch RightNEU4
*UIConstraints: *RIPunch RightNEU4 *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *RIPunch UpperJP2
*UIConstraints: *RIPunch UpperJP2 *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *RIPunch UpperUS2
*UIConstraints: *RIPunch UpperUS2 *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *RIPunch UpperUS3
*UIConstraints: *RIPunch UpperUS3 *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *RIPunch UpperEU4
*UIConstraints: *RIPunch UpperEU4 *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *RIPunch UpperNEU4
*UIConstraints: *RIPunch UpperNEU4 *StapleLocation CenterW
*UIConstraints: *StapleLocation UpperLeft *RIPunch LeftJP2
*UIConstraints: *RIPunch LeftJP2 *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *RIPunch LeftUS2
*UIConstraints: *RIPunch LeftUS2 *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *RIPunch LeftUS3
*UIConstraints: *RIPunch LeftUS3 *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *RIPunch LeftEU4
*UIConstraints: *RIPunch LeftEU4 *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *RIPunch LeftNEU4
*UIConstraints: *RIPunch LeftNEU4 *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *RIPunch RightJP2
*UIConstraints: *RIPunch RightJP2 *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *RIPunch RightUS2
*UIConstraints: *RIPunch RightUS2 *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *RIPunch RightUS3
*UIConstraints: *RIPunch RightUS3 *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *RIPunch RightEU4
*UIConstraints: *RIPunch RightEU4 *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *RIPunch RightNEU4
*UIConstraints: *RIPunch RightNEU4 *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *RIPunch UpperJP2
*UIConstraints: *RIPunch UpperJP2 *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *RIPunch UpperUS2
*UIConstraints: *RIPunch UpperUS2 *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *RIPunch UpperUS3
*UIConstraints: *RIPunch UpperUS3 *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *RIPunch UpperEU4
*UIConstraints: *RIPunch UpperEU4 *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperLeft *RIPunch UpperNEU4
*UIConstraints: *RIPunch UpperNEU4 *StapleLocation UpperLeft
*UIConstraints: *StapleLocation UpperRight *RIPunch LeftJP2
*UIConstraints: *RIPunch LeftJP2 *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *RIPunch LeftUS2
*UIConstraints: *RIPunch LeftUS2 *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *RIPunch LeftUS3
*UIConstraints: *RIPunch LeftUS3 *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *RIPunch LeftEU4
*UIConstraints: *RIPunch LeftEU4 *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *RIPunch LeftNEU4
*UIConstraints: *RIPunch LeftNEU4 *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *RIPunch RightJP2
*UIConstraints: *RIPunch RightJP2 *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *RIPunch RightUS2
*UIConstraints: *RIPunch RightUS2 *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *RIPunch RightUS3
*UIConstraints: *RIPunch RightUS3 *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *RIPunch RightEU4
*UIConstraints: *RIPunch RightEU4 *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *RIPunch RightNEU4
*UIConstraints: *RIPunch RightNEU4 *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *RIPunch UpperJP2
*UIConstraints: *RIPunch UpperJP2 *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *RIPunch UpperUS2
*UIConstraints: *RIPunch UpperUS2 *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *RIPunch UpperUS3
*UIConstraints: *RIPunch UpperUS3 *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *RIPunch UpperEU4
*UIConstraints: *RIPunch UpperEU4 *StapleLocation UpperRight
*UIConstraints: *StapleLocation UpperRight *RIPunch UpperNEU4
*UIConstraints: *RIPunch UpperNEU4 *StapleLocation UpperRight
*UIConstraints: *StapleLocation LeftW *RIPunch LeftJP2
*UIConstraints: *RIPunch LeftJP2 *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *RIPunch LeftUS2
*UIConstraints: *RIPunch LeftUS2 *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *RIPunch LeftUS3
*UIConstraints: *RIPunch LeftUS3 *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *RIPunch LeftEU4
*UIConstraints: *RIPunch LeftEU4 *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *RIPunch LeftNEU4
*UIConstraints: *RIPunch LeftNEU4 *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *RIPunch RightJP2
*UIConstraints: *RIPunch RightJP2 *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *RIPunch RightUS2
*UIConstraints: *RIPunch RightUS2 *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *RIPunch RightUS3
*UIConstraints: *RIPunch RightUS3 *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *RIPunch RightEU4
*UIConstraints: *RIPunch RightEU4 *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *RIPunch RightNEU4
*UIConstraints: *RIPunch RightNEU4 *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *RIPunch UpperJP2
*UIConstraints: *RIPunch UpperJP2 *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *RIPunch UpperUS2
*UIConstraints: *RIPunch UpperUS2 *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *RIPunch UpperUS3
*UIConstraints: *RIPunch UpperUS3 *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *RIPunch UpperEU4
*UIConstraints: *RIPunch UpperEU4 *StapleLocation LeftW
*UIConstraints: *StapleLocation LeftW *RIPunch UpperNEU4
*UIConstraints: *RIPunch UpperNEU4 *StapleLocation LeftW
*UIConstraints: *StapleLocation RightW *RIPunch LeftJP2
*UIConstraints: *RIPunch LeftJP2 *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *RIPunch LeftUS2
*UIConstraints: *RIPunch LeftUS2 *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *RIPunch LeftUS3
*UIConstraints: *RIPunch LeftUS3 *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *RIPunch LeftEU4
*UIConstraints: *RIPunch LeftEU4 *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *RIPunch LeftNEU4
*UIConstraints: *RIPunch LeftNEU4 *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *RIPunch RightJP2
*UIConstraints: *RIPunch RightJP2 *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *RIPunch RightUS2
*UIConstraints: *RIPunch RightUS2 *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *RIPunch RightUS3
*UIConstraints: *RIPunch RightUS3 *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *RIPunch RightEU4
*UIConstraints: *RIPunch RightEU4 *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *RIPunch RightNEU4
*UIConstraints: *RIPunch RightNEU4 *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *RIPunch UpperJP2
*UIConstraints: *RIPunch UpperJP2 *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *RIPunch UpperUS2
*UIConstraints: *RIPunch UpperUS2 *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *RIPunch UpperUS3
*UIConstraints: *RIPunch UpperUS3 *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *RIPunch UpperEU4
*UIConstraints: *RIPunch UpperEU4 *StapleLocation RightW
*UIConstraints: *StapleLocation RightW *RIPunch UpperNEU4
*UIConstraints: *RIPunch UpperNEU4 *StapleLocation RightW
*UIConstraints: *StapleLocation UpperW *RIPunch LeftJP2
*UIConstraints: *RIPunch LeftJP2 *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *RIPunch LeftUS2
*UIConstraints: *RIPunch LeftUS2 *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *RIPunch LeftUS3
*UIConstraints: *RIPunch LeftUS3 *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *RIPunch LeftEU4
*UIConstraints: *RIPunch LeftEU4 *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *RIPunch LeftNEU4
*UIConstraints: *RIPunch LeftNEU4 *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *RIPunch RightJP2
*UIConstraints: *RIPunch RightJP2 *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *RIPunch RightUS2
*UIConstraints: *RIPunch RightUS2 *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *RIPunch RightUS3
*UIConstraints: *RIPunch RightUS3 *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *RIPunch RightEU4
*UIConstraints: *RIPunch RightEU4 *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *RIPunch RightNEU4
*UIConstraints: *RIPunch RightNEU4 *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *RIPunch UpperJP2
*UIConstraints: *RIPunch UpperJP2 *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *RIPunch UpperUS2
*UIConstraints: *RIPunch UpperUS2 *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *RIPunch UpperUS3
*UIConstraints: *RIPunch UpperUS3 *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *RIPunch UpperEU4
*UIConstraints: *RIPunch UpperEU4 *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperW *RIPunch UpperNEU4
*UIConstraints: *RIPunch UpperNEU4 *StapleLocation UpperW
*UIConstraints: *RIZfold Bottom *RIPunch LeftJP2
*UIConstraints: *RIPunch LeftJP2 *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *RIPunch LeftUS2
*UIConstraints: *RIPunch LeftUS2 *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *RIPunch LeftUS3
*UIConstraints: *RIPunch LeftUS3 *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *RIPunch LeftEU4
*UIConstraints: *RIPunch LeftEU4 *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *RIPunch LeftNEU4
*UIConstraints: *RIPunch LeftNEU4 *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *RIPunch RightJP2
*UIConstraints: *RIPunch RightJP2 *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *RIPunch RightUS2
*UIConstraints: *RIPunch RightUS2 *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *RIPunch RightUS3
*UIConstraints: *RIPunch RightUS3 *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *RIPunch RightEU4
*UIConstraints: *RIPunch RightEU4 *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *RIPunch RightNEU4
*UIConstraints: *RIPunch RightNEU4 *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *RIPunch UpperJP2
*UIConstraints: *RIPunch UpperJP2 *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *RIPunch UpperUS2
*UIConstraints: *RIPunch UpperUS2 *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *RIPunch UpperUS3
*UIConstraints: *RIPunch UpperUS3 *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *RIPunch UpperEU4
*UIConstraints: *RIPunch UpperEU4 *RIZfold Bottom
*UIConstraints: *RIZfold Bottom *RIPunch UpperNEU4
*UIConstraints: *RIPunch UpperNEU4 *RIZfold Bottom
*UIConstraints: *RIZfold Right *RIPunch LeftJP2
*UIConstraints: *RIPunch LeftJP2 *RIZfold Right
*UIConstraints: *RIZfold Right *RIPunch LeftUS2
*UIConstraints: *RIPunch LeftUS2 *RIZfold Right
*UIConstraints: *RIZfold Right *RIPunch LeftUS3
*UIConstraints: *RIPunch LeftUS3 *RIZfold Right
*UIConstraints: *RIZfold Right *RIPunch LeftEU4
*UIConstraints: *RIPunch LeftEU4 *RIZfold Right
*UIConstraints: *RIZfold Right *RIPunch LeftNEU4
*UIConstraints: *RIPunch LeftNEU4 *RIZfold Right
*UIConstraints: *RIZfold Right *RIPunch RightJP2
*UIConstraints: *RIPunch RightJP2 *RIZfold Right
*UIConstraints: *RIZfold Right *RIPunch RightUS2
*UIConstraints: *RIPunch RightUS2 *RIZfold Right
*UIConstraints: *RIZfold Right *RIPunch RightUS3
*UIConstraints: *RIPunch RightUS3 *RIZfold Right
*UIConstraints: *RIZfold Right *RIPunch RightEU4
*UIConstraints: *RIPunch RightEU4 *RIZfold Right
*UIConstraints: *RIZfold Right *RIPunch RightNEU4
*UIConstraints: *RIPunch RightNEU4 *RIZfold Right
*UIConstraints: *RIZfold Right *RIPunch UpperJP2
*UIConstraints: *RIPunch UpperJP2 *RIZfold Right
*UIConstraints: *RIZfold Right *RIPunch UpperUS2
*UIConstraints: *RIPunch UpperUS2 *RIZfold Right
*UIConstraints: *RIZfold Right *RIPunch UpperUS3
*UIConstraints: *RIPunch UpperUS3 *RIZfold Right
*UIConstraints: *RIZfold Right *RIPunch UpperEU4
*UIConstraints: *RIPunch UpperEU4 *RIZfold Right
*UIConstraints: *RIZfold Right *RIPunch UpperNEU4
*UIConstraints: *RIPunch UpperNEU4 *RIZfold Right
*UIConstraints: *RIZfold Left *RIPunch LeftJP2
*UIConstraints: *RIPunch LeftJP2 *RIZfold Left
*UIConstraints: *RIZfold Left *RIPunch LeftUS2
*UIConstraints: *RIPunch LeftUS2 *RIZfold Left
*UIConstraints: *RIZfold Left *RIPunch LeftUS3
*UIConstraints: *RIPunch LeftUS3 *RIZfold Left
*UIConstraints: *RIZfold Left *RIPunch LeftEU4
*UIConstraints: *RIPunch LeftEU4 *RIZfold Left
*UIConstraints: *RIZfold Left *RIPunch LeftNEU4
*UIConstraints: *RIPunch LeftNEU4 *RIZfold Left
*UIConstraints: *RIZfold Left *RIPunch RightJP2
*UIConstraints: *RIPunch RightJP2 *RIZfold Left
*UIConstraints: *RIZfold Left *RIPunch RightUS2
*UIConstraints: *RIPunch RightUS2 *RIZfold Left
*UIConstraints: *RIZfold Left *RIPunch RightUS3
*UIConstraints: *RIPunch RightUS3 *RIZfold Left
*UIConstraints: *RIZfold Left *RIPunch RightEU4
*UIConstraints: *RIPunch RightEU4 *RIZfold Left
*UIConstraints: *RIZfold Left *RIPunch RightNEU4
*UIConstraints: *RIPunch RightNEU4 *RIZfold Left
*UIConstraints: *RIZfold Left *RIPunch UpperJP2
*UIConstraints: *RIPunch UpperJP2 *RIZfold Left
*UIConstraints: *RIZfold Left *RIPunch UpperUS2
*UIConstraints: *RIPunch UpperUS2 *RIZfold Left
*UIConstraints: *RIZfold Left *RIPunch UpperUS3
*UIConstraints: *RIPunch UpperUS3 *RIZfold Left
*UIConstraints: *RIZfold Left *RIPunch UpperEU4
*UIConstraints: *RIPunch UpperEU4 *RIZfold Left
*UIConstraints: *RIZfold Left *RIPunch UpperNEU4
*UIConstraints: *RIPunch UpperNEU4 *RIZfold Left
*% Generic boilerplate PPD stuff as standard PostScript fonts and so on
*DefaultFont: Courier
*Font AvantGarde-Book: Standard "(001.006S)" Standard ROM
*Font AvantGarde-BookOblique: Standard "(001.006S)" Standard ROM
*Font AvantGarde-Demi: Standard "(001.007S)" Standard ROM
*Font AvantGarde-DemiOblique: Standard "(001.007S)" Standard ROM
*Font Bookman-Demi: Standard "(001.004S)" Standard ROM
*Font Bookman-DemiItalic: Standard "(001.004S)" Standard ROM
*Font Bookman-Light: Standard "(001.004S)" Standard ROM
*Font Bookman-LightItalic: Standard "(001.004S)" Standard ROM
*Font Courier: Standard "(002.004S)" Standard ROM
*Font Courier-Bold: Standard "(002.004S)" Standard ROM
*Font Courier-BoldOblique: Standard "(002.004S)" Standard ROM
*Font Courier-Oblique: Standard "(002.004S)" Standard ROM
*Font Helvetica: Standard "(001.006S)" Standard ROM
*Font Helvetica-Bold: Standard "(001.007S)" Standard ROM
*Font Helvetica-BoldOblique: Standard "(001.007S)" Standard ROM
*Font Helvetica-Narrow: Standard "(001.006S)" Standard ROM
*Font Helvetica-Narrow-Bold: Standard "(001.007S)" Standard ROM
*Font Helvetica-Narrow-BoldOblique: Standard "(001.007S)" Standard ROM
*Font Helvetica-Narrow-Oblique: Standard "(001.006S)" Standard ROM
*Font Helvetica-Oblique: Standard "(001.006S)" Standard ROM
*Font NewCenturySchlbk-Bold: Standard "(001.009S)" Standard ROM
*Font NewCenturySchlbk-BoldItalic: Standard "(001.007S)" Standard ROM
*Font NewCenturySchlbk-Italic: Standard "(001.006S)" Standard ROM
*Font NewCenturySchlbk-Roman: Standard "(001.007S)" Standard ROM
*Font Palatino-Bold: Standard "(001.005S)" Standard ROM
*Font Palatino-BoldItalic: Standard "(001.005S)" Standard ROM
*Font Palatino-Italic: Standard "(001.005S)" Standard ROM
*Font Palatino-Roman: Standard "(001.005S)" Standard ROM
*Font Symbol: Special "(001.007S)" Special ROM
*Font Times-Bold: Standard "(001.007S)" Standard ROM
*Font Times-BoldItalic: Standard "(001.009S)" Standard ROM
*Font Times-Italic: Standard "(001.007S)" Standard ROM
*Font Times-Roman: Standard "(001.007S)" Standard ROM
*Font ZapfChancery-MediumItalic: Standard "(001.007S)" Standard ROM
*Font ZapfDingbats: Special "(001.004S)" Standard ROM
*% end of Printer Description file
|