1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651
|
*PPD-Adobe: "4.3"
*%%%% PPD file for Lexmark C9200 Series with CUPS.
*%%%% Created by the CUPS PPD Compiler CUPS v1.4.2.
*% ******************************************************************************
*% * Adobe PostScript(R) Printer Description File *
*% * Produced by Lexmark International, Inc. *
*% * *
*% * *
*% * *
*% * Copyright 2017 Lexmark International, Inc. All rights reserved. *
*% ******************************************************************************
*%******************************************************************************
*% License
*%******************************************************************************
*%
*%Redistribution of this file, with or without modification, is permitted
*%provided that the following conditions are met:
*%
*% Redistributions of this file must reproduce the above copyright notice,
*% this list of conditions and the following disclaimer in the file and
*% documentation and/or other materials provided with the distribution.
*%
*% Neither the name of Lexmark International, Inc. nor the names of its
*% contributors may be used to endorse or promote products derived
*% from this file without specific prior written permission.
*%
*%THIS FILE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
*%ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
*%WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
*%DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
*%FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
*%DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
*%SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
*%CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
*%OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
*%OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*%
*%******************************************************************************
*% General Information
*%******************************************************************************
*FormatVersion: "4.3"
*FileVersion: "1.0.0"
*LanguageVersion: English
*LanguageEncoding: ISOLatin1
*PCFileName: "LXC9200S.PPD"
*Product: "(Lexmark C9200 Series)"
*Product: "(Lexmark C9235)"
*Manufacturer: "Lexmark"
*ModelName: "Lexmark C9200 Series"
*ShortNickName: "Lexmark C9200 Series"
*NickName: "Lexmark C9200 Series"
*PSVersion: "(3010.010) 20040929"
*LanguageLevel: "3"
*ColorDevice: True
*DefaultColorSpace: CMYK
*FileSystem: True
*Throughput: "35"
*LandscapeOrientation: Minus90
*TTRasterizer: Type42
*% Driver-defined attributes...
*LexJobNameUTF8: ""
*LXSupportJobAccounting: True
*Source: "Serial"
*Source: "Parallel"
*Source: "Network"
*DefaultOutputOrder: Normal
*LXSupportPrintAndHold: True
*Password: "0"
*ExitServer: "
count 0 eq % is the password on the stack?
{ true }
{ dup % potential password
statusdict /checkpassword get exec not
} ifelse
{ % if no password or not valid
(WARNING : Cannot perform the exitserver command.) =
(Password supplied is not valid.) =
(Please contact the author of this software.) = flush
quit
} if
serverdict /exitserver get exec"
*End
*Reset: "
count 0 eq % is the password on the stack?
{ true }
{ dup % potential password
statusdict /checkpassword get exec not
} ifelse
{ % if no password or not valid
(WARNING : Cannot reset printer.) =
(Password supplied is not valid.) =
(Please contact the author of this software.) = flush
quit
} if
serverdict /exitserver get exec
systemdict /quit get exec
(WARNING : Printer Reset Failed.) = flush"
*End
*?FileSystem: ""
*?TTRasterizer: ""
*LXCountPIN: "4"
*LXlowPINchar: "0"
*LXhiPINchar: "9"
*1284DeviceID: "MFG: Lexmark ;MDL: Lexmark C9200 Series"
*PrinterType: "Laser"
*RequiresPageRegion All: True
*PrinterError: "Paper Jam"
*PrinterError: "Wrong Paper Length"
*PrinterError: "Invalid Manual Insertion"
*PrinterError: "Change Size in Feeder"
*PrinterError: "Change Size in Tray 1"
*PrinterError: "Change Size in Tray 2"
*PrinterError: "Paper Out or Feed Failure - Feeder"
*PrinterError: "Paper Out or Feed Failure"
*PrinterError: "Paper Out or Feed Failure - Tray 1"
*PrinterError: "Paper Out or Feed Failure - Tray 2"
*PrinterError: "Load Manual Paper"
*PrinterError: "Output Bin Full"
*PrinterError: "Cover Open/Cartridge Not Installed"
*PrinterError: "Memory Full"
*PrinterError: "Complex Page"
*PrinterError: "Default Storage Error"
*PrinterError: "Defective Font Card Installed"
*PrinterError: "Flash Full"
*PrinterError: "ioerror"
*PrinterError: "Flash Error"
*PrinterError: "Duplex Not Attached"
*PrinterError: "Duplex Cover Open"
*PrinterError: "Scheduled Maintenance"
*PrinterError: "Toner Low"
*PrinterError: "Service Error"
*PrinterError: "Not Ready"
*Message: "%% exitserver: permanent state may be changed %%"
*Message: "%% Flushing: rest of job (to end-of-file) will be ignored %%"
*Message: "FontName not found; using Courier"
*Protocols: TBCP
*Status: "Printer Busy"
*Status: "Warming Up"
*Status: "idle"
*Status: "busy"
*Status: "waiting"
*Status: "initializing"
*Status: "not ready"
*DefaultColorSep: ProcessBlack.154lpi.600dpi/154 lpi /600 dpi
*InkName: ProcessBlack/Process Black
*InkName: CustomColor/Custom Color
*InkName: ProcessCyan/Process Cyan
*InkName: ProcessMagenta/Process Magenta
*InkName: ProcessYellow/Process Yellow
*ColorSepScreenAngle ProcessBlack.154lpi.600dpi/154 lpi /600 dpi: "50.0"
*ColorSepScreenAngle CustomColor.154lpi.600dpi/154 lpi /600 dpi: "50.0"
*ColorSepScreenAngle ProcessCyan.154lpi.600dpi/154 lpi /600 dpi: "16.0"
*ColorSepScreenAngle ProcessMagenta.154lpi.600dpi/154 lpi /600 dpi: "76.0"
*ColorSepScreenAngle ProcessYellow.154lpi.600dpi/154 lpi /600 dpi: "0.0"
*ColorSepScreenAngle ProcessBlack.154lpi.1200dpi/154 lpi /1200 dpi: "50.0"
*ColorSepScreenAngle CustomColor.154lpi.1200dpi/154 lpi /1200 dpi: "50.0"
*ColorSepScreenAngle ProcessCyan.154lpi.1200dpi/154 lpi /1200 dpi: "16.0"
*ColorSepScreenAngle ProcessMagenta.154lpi.1200dpi/154 lpi /1200 dpi: "76.0"
*ColorSepScreenAngle ProcessYellow.154lpi.1200dpi/154 lpi /1200 dpi: "0.0"
*ColorSepScreenFreq ProcessBlack.154lpi.600dpi/154 lpi /600 dpi: "154.0"
*ColorSepScreenFreq CustomColor.154lpi.600dpi/154 lpi /600 dpi: "154.0"
*ColorSepScreenFreq ProcessCyan.154lpi.600dpi/154 lpi /600 dpi: "154.0"
*ColorSepScreenFreq ProcessMagenta.154lpi.600dpi/154 lpi /600 dpi: "154.0"
*ColorSepScreenFreq ProcessYellow.154lpi.600dpi/154 lpi /600 dpi: "150.0"
*ColorSepScreenFreq ProcessBlack.154lpi.1200dpi/154 lpi /1200 dpi: "154.0"
*ColorSepScreenFreq CustomColor.154lpi.1200dpi/154 lpi /1200 dpi: "154.0"
*ColorSepScreenFreq ProcessCyan.154lpi.1200dpi/154 lpi /1200 dpi: "154.0"
*ColorSepScreenFreq ProcessMagenta.154lpi.1200dpi/154 lpi /1200 dpi: "154.0"
*ColorSepScreenFreq ProcessYellow.154lpi.1200dpi/154 lpi /1200 dpi: "150.0"
*JobPatchFile 1: "%%Lexmark Linux PPD File 1"
*JCLBegin: "<1B>%-12345X@PJL JOB<0A>"
*JCLToPSInterpreter: "@PJL ENTER LANGUAGE = POSTSCRIPT<0A>"
*JCLEnd: "<1B>%-12345X@PJL EOJ <0A><1B>%-12345X"
*VMOption 2048Meg: "2048000000"
*VMOption 2304Meg: "2304000000"
*VMOption 2560Meg: "2560000000"
*VMOption 3072Meg: "3072000000"
*VMOption 4096Meg: "4096000000"
*DefaultScreenProc: Dot
*ScreenProc Dot: "{abs exch abs 2 copy add 1 gt {1 sub dup mul exch 1 sub dup mul add 1
sub }{dup mul exch dup mul add 1 exch sub }ifelse }"
*End
*ScreenProc Line: "{ pop }"
*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
*ScreenFreq: "154.0"
*ScreenAngle: "50.0"
*DefaultTransfer: Factory
*Transfer Factory: "{}"
*Transfer Factory.Inverse: "{1 exch sub }"
*cupsLanguages: "ar fr de it es ko ja ru pl pt zh_tw zh_cn"
*UIConstraints: *OptTray2 False *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *OptTray2 False
*UIConstraints: *OptTray3 False *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *OptTray3 False
*UIConstraints: *OptTray4 False *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *OptTray4 False
*UIConstraints: *OptTray5 False *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *OptTray5 False
*UIConstraints: *OptMultipurposeFeeder False *InputSlot MultipurposeFeeder
*UIConstraints: *InputSlot MultipurposeFeeder *OptMultipurposeFeeder False
*UIConstraints: *OptMultipurposeFeeder False *InputSlot ManualPaper
*UIConstraints: *InputSlot ManualPaper *OptMultipurposeFeeder False
*UIConstraints: *OptMultipurposeFeeder False *InputSlot ManualEnv
*UIConstraints: *InputSlot ManualEnv *OptMultipurposeFeeder False
*UIConstraints: *OptTray2 False *SepSource Tray2
*UIConstraints: *SepSource Tray2 *OptTray2 False
*UIConstraints: *OptTray3 False *SepSource Tray3
*UIConstraints: *SepSource Tray3 *OptTray3 False
*UIConstraints: *OptTray4 False *SepSource Tray4
*UIConstraints: *SepSource Tray4 *OptTray4 False
*UIConstraints: *OptTray5 False *SepSource Tray5
*UIConstraints: *SepSource Tray5 *OptTray5 False
*UIConstraints: *OptMultipurposeFeeder False *SepSource MultipurposeFeeder
*UIConstraints: *SepSource MultipurposeFeeder *OptMultipurposeFeeder False
*UIConstraints: *SepPages NoneF *SepSource Tray1
*UIConstraints: *SepSource Tray1 *SepPages NoneF
*UIConstraints: *SepPages NoneF *SepSource Tray2
*UIConstraints: *SepSource Tray2 *SepPages NoneF
*UIConstraints: *SepPages NoneF *SepSource Tray3
*UIConstraints: *SepSource Tray3 *SepPages NoneF
*UIConstraints: *SepPages NoneF *SepSource Tray4
*UIConstraints: *SepSource Tray4 *SepPages NoneF
*UIConstraints: *SepPages NoneF *SepSource Tray5
*UIConstraints: *SepSource Tray5 *SepPages NoneF
*UIConstraints: *SepPages NoneF *SepSource MultipurposeFeeder
*UIConstraints: *SepSource MultipurposeFeeder *SepPages NoneF
*UIConstraints: *OptDuplex False *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *OptDuplex False
*UIConstraints: *OptDuplex False *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *OptDuplex False
*UIConstraints: *StapleJob TrueM *PageSize Statement
*UIConstraints: *PageSize Statement *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageSize A5
*UIConstraints: *PageSize A5 *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageSize A6
*UIConstraints: *PageSize A6 *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageSize Env10
*UIConstraints: *PageSize Env10 *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageSize Env9
*UIConstraints: *PageSize Env9 *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageSize ISOB5
*UIConstraints: *PageSize ISOB5 *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageRegion Statement
*UIConstraints: *PageRegion Statement *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageRegion A5
*UIConstraints: *PageRegion A5 *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageRegion A6
*UIConstraints: *PageRegion A6 *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageRegion Env10
*UIConstraints: *PageRegion Env10 *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageRegion Env9
*UIConstraints: *PageRegion Env9 *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageRegion ISOB5
*UIConstraints: *PageRegion ISOB5 *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *MediaType Labels
*UIConstraints: *MediaType Labels *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *MediaType Envelope
*UIConstraints: *MediaType Envelope *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *MediaType Transparency
*UIConstraints: *MediaType Transparency *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *Fold TriFold
*UIConstraints: *Fold TriFold *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *Fold BiFold
*UIConstraints: *Fold BiFold *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *Fold BookletFold
*UIConstraints: *Fold BookletFold *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *StapleJob TrueM
*UIConstraints: *StapleJob TopLeft *PageSize Statement
*UIConstraints: *PageSize Statement *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *PageSize A5
*UIConstraints: *PageSize A5 *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *PageSize A6
*UIConstraints: *PageSize A6 *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *PageSize Env10
*UIConstraints: *PageSize Env10 *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *PageSize Env9
*UIConstraints: *PageSize Env9 *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *PageSize ISOB5
*UIConstraints: *PageSize ISOB5 *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *PageRegion Statement
*UIConstraints: *PageRegion Statement *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *PageRegion A5
*UIConstraints: *PageRegion A5 *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *PageRegion A6
*UIConstraints: *PageRegion A6 *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *PageRegion Env10
*UIConstraints: *PageRegion Env10 *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *PageRegion Env9
*UIConstraints: *PageRegion Env9 *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *PageRegion ISOB5
*UIConstraints: *PageRegion ISOB5 *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *MediaType Labels
*UIConstraints: *MediaType Labels *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *MediaType Envelope
*UIConstraints: *MediaType Envelope *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *MediaType Glossy
*UIConstraints: *MediaType Glossy *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *MediaType HeavyGlossy
*UIConstraints: *MediaType HeavyGlossy *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *MediaType Transparency
*UIConstraints: *MediaType Transparency *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *MediaType Card
*UIConstraints: *MediaType Card *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *Fold TriFold
*UIConstraints: *Fold TriFold *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *Fold BiFold
*UIConstraints: *Fold BiFold *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *Fold BookletFold
*UIConstraints: *Fold BookletFold *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *StapleJob TopLeft
*UIConstraints: *StapleJob TopRight *PageSize Statement
*UIConstraints: *PageSize Statement *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *PageSize A5
*UIConstraints: *PageSize A5 *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *PageSize A6
*UIConstraints: *PageSize A6 *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *PageSize Env10
*UIConstraints: *PageSize Env10 *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *PageSize Env9
*UIConstraints: *PageSize Env9 *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *PageSize ISOB5
*UIConstraints: *PageSize ISOB5 *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *PageRegion Statement
*UIConstraints: *PageRegion Statement *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *PageRegion A5
*UIConstraints: *PageRegion A5 *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *PageRegion A6
*UIConstraints: *PageRegion A6 *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *PageRegion Env10
*UIConstraints: *PageRegion Env10 *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *PageRegion Env9
*UIConstraints: *PageRegion Env9 *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *PageRegion ISOB5
*UIConstraints: *PageRegion ISOB5 *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *MediaType Labels
*UIConstraints: *MediaType Labels *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *MediaType Envelope
*UIConstraints: *MediaType Envelope *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *MediaType Glossy
*UIConstraints: *MediaType Glossy *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *MediaType HeavyGlossy
*UIConstraints: *MediaType HeavyGlossy *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *MediaType Transparency
*UIConstraints: *MediaType Transparency *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *MediaType Card
*UIConstraints: *MediaType Card *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *Fold TriFold
*UIConstraints: *Fold TriFold *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *Fold BiFold
*UIConstraints: *Fold BiFold *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *Fold BookletFold
*UIConstraints: *Fold BookletFold *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *StapleJob TopRight
*UIConstraints: *StapleJob BottomLeft *PageSize Statement
*UIConstraints: *PageSize Statement *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *PageSize A5
*UIConstraints: *PageSize A5 *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *PageSize A6
*UIConstraints: *PageSize A6 *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *PageSize Env10
*UIConstraints: *PageSize Env10 *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *PageSize Env9
*UIConstraints: *PageSize Env9 *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *PageSize ISOB5
*UIConstraints: *PageSize ISOB5 *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *PageRegion Statement
*UIConstraints: *PageRegion Statement *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *PageRegion A5
*UIConstraints: *PageRegion A5 *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *PageRegion A6
*UIConstraints: *PageRegion A6 *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *PageRegion Env10
*UIConstraints: *PageRegion Env10 *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *PageRegion Env9
*UIConstraints: *PageRegion Env9 *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *PageRegion ISOB5
*UIConstraints: *PageRegion ISOB5 *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *MediaType Labels
*UIConstraints: *MediaType Labels *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *MediaType Envelope
*UIConstraints: *MediaType Envelope *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *MediaType Glossy
*UIConstraints: *MediaType Glossy *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *MediaType HeavyGlossy
*UIConstraints: *MediaType HeavyGlossy *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *MediaType Transparency
*UIConstraints: *MediaType Transparency *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *MediaType Card
*UIConstraints: *MediaType Card *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *Fold TriFold
*UIConstraints: *Fold TriFold *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *Fold BiFold
*UIConstraints: *Fold BiFold *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *Fold BookletFold
*UIConstraints: *Fold BookletFold *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomRight *PageSize Statement
*UIConstraints: *PageSize Statement *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *PageSize A5
*UIConstraints: *PageSize A5 *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *PageSize A6
*UIConstraints: *PageSize A6 *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *PageSize Env10
*UIConstraints: *PageSize Env10 *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *PageSize Env9
*UIConstraints: *PageSize Env9 *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *PageSize ISOB5
*UIConstraints: *PageSize ISOB5 *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *PageRegion Statement
*UIConstraints: *PageRegion Statement *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *PageRegion A5
*UIConstraints: *PageRegion A5 *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *PageRegion A6
*UIConstraints: *PageRegion A6 *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *PageRegion Env10
*UIConstraints: *PageRegion Env10 *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *PageRegion Env9
*UIConstraints: *PageRegion Env9 *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *PageRegion ISOB5
*UIConstraints: *PageRegion ISOB5 *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *MediaType Labels
*UIConstraints: *MediaType Labels *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *MediaType Envelope
*UIConstraints: *MediaType Envelope *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *MediaType Glossy
*UIConstraints: *MediaType Glossy *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *MediaType HeavyGlossy
*UIConstraints: *MediaType HeavyGlossy *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *MediaType Transparency
*UIConstraints: *MediaType Transparency *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *MediaType Card
*UIConstraints: *MediaType Card *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *Fold TriFold
*UIConstraints: *Fold TriFold *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *Fold BiFold
*UIConstraints: *Fold BiFold *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *Fold BookletFold
*UIConstraints: *Fold BookletFold *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *StapleJob BottomRight
*UIConstraints: *StapleJob DualTop *PageSize Statement
*UIConstraints: *PageSize Statement *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *PageSize A5
*UIConstraints: *PageSize A5 *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *PageSize A6
*UIConstraints: *PageSize A6 *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *PageSize Env10
*UIConstraints: *PageSize Env10 *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *PageSize Env9
*UIConstraints: *PageSize Env9 *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *PageSize ISOB5
*UIConstraints: *PageSize ISOB5 *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *PageRegion Statement
*UIConstraints: *PageRegion Statement *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *PageRegion A5
*UIConstraints: *PageRegion A5 *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *PageRegion A6
*UIConstraints: *PageRegion A6 *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *PageRegion Env10
*UIConstraints: *PageRegion Env10 *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *PageRegion Env9
*UIConstraints: *PageRegion Env9 *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *PageRegion ISOB5
*UIConstraints: *PageRegion ISOB5 *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *MediaType Labels
*UIConstraints: *MediaType Labels *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *MediaType Envelope
*UIConstraints: *MediaType Envelope *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *MediaType Glossy
*UIConstraints: *MediaType Glossy *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *MediaType HeavyGlossy
*UIConstraints: *MediaType HeavyGlossy *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *MediaType Transparency
*UIConstraints: *MediaType Transparency *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *MediaType Card
*UIConstraints: *MediaType Card *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *Fold TriFold
*UIConstraints: *Fold TriFold *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *Fold BiFold
*UIConstraints: *Fold BiFold *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *Fold BookletFold
*UIConstraints: *Fold BookletFold *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *StapleJob DualTop
*UIConstraints: *StapleJob DualLeft *PageSize Statement
*UIConstraints: *PageSize Statement *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *PageSize A5
*UIConstraints: *PageSize A5 *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *PageSize A6
*UIConstraints: *PageSize A6 *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *PageSize Env10
*UIConstraints: *PageSize Env10 *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *PageSize Env9
*UIConstraints: *PageSize Env9 *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *PageSize ISOB5
*UIConstraints: *PageSize ISOB5 *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *PageRegion Statement
*UIConstraints: *PageRegion Statement *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *PageRegion A5
*UIConstraints: *PageRegion A5 *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *PageRegion A6
*UIConstraints: *PageRegion A6 *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *PageRegion Env10
*UIConstraints: *PageRegion Env10 *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *PageRegion Env9
*UIConstraints: *PageRegion Env9 *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *PageRegion ISOB5
*UIConstraints: *PageRegion ISOB5 *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *MediaType Labels
*UIConstraints: *MediaType Labels *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *MediaType Envelope
*UIConstraints: *MediaType Envelope *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *MediaType Glossy
*UIConstraints: *MediaType Glossy *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *MediaType HeavyGlossy
*UIConstraints: *MediaType HeavyGlossy *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *MediaType Transparency
*UIConstraints: *MediaType Transparency *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *MediaType Card
*UIConstraints: *MediaType Card *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *Fold TriFold
*UIConstraints: *Fold TriFold *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *Fold BiFold
*UIConstraints: *Fold BiFold *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *Fold BookletFold
*UIConstraints: *Fold BookletFold *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *StapleJob DualLeft
*UIConstraints: *StapleJob DualBottom *PageSize Statement
*UIConstraints: *PageSize Statement *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *PageSize A5
*UIConstraints: *PageSize A5 *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *PageSize A6
*UIConstraints: *PageSize A6 *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *PageSize Env10
*UIConstraints: *PageSize Env10 *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *PageSize Env9
*UIConstraints: *PageSize Env9 *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *PageSize ISOB5
*UIConstraints: *PageSize ISOB5 *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *PageRegion Statement
*UIConstraints: *PageRegion Statement *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *PageRegion A5
*UIConstraints: *PageRegion A5 *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *PageRegion A6
*UIConstraints: *PageRegion A6 *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *PageRegion Env10
*UIConstraints: *PageRegion Env10 *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *PageRegion Env9
*UIConstraints: *PageRegion Env9 *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *PageRegion ISOB5
*UIConstraints: *PageRegion ISOB5 *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *MediaType Labels
*UIConstraints: *MediaType Labels *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *MediaType Envelope
*UIConstraints: *MediaType Envelope *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *MediaType Glossy
*UIConstraints: *MediaType Glossy *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *MediaType HeavyGlossy
*UIConstraints: *MediaType HeavyGlossy *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *MediaType Transparency
*UIConstraints: *MediaType Transparency *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *MediaType Card
*UIConstraints: *MediaType Card *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *Fold TriFold
*UIConstraints: *Fold TriFold *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *Fold BiFold
*UIConstraints: *Fold BiFold *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *Fold BookletFold
*UIConstraints: *Fold BookletFold *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *StapleJob DualBottom
*UIConstraints: *StapleJob DualRight *PageSize Statement
*UIConstraints: *PageSize Statement *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *PageSize A5
*UIConstraints: *PageSize A5 *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *PageSize A6
*UIConstraints: *PageSize A6 *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *PageSize Env10
*UIConstraints: *PageSize Env10 *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *PageSize Env9
*UIConstraints: *PageSize Env9 *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *PageSize ISOB5
*UIConstraints: *PageSize ISOB5 *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *PageRegion Statement
*UIConstraints: *PageRegion Statement *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *PageRegion A5
*UIConstraints: *PageRegion A5 *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *PageRegion A6
*UIConstraints: *PageRegion A6 *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *PageRegion Env10
*UIConstraints: *PageRegion Env10 *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *PageRegion Env9
*UIConstraints: *PageRegion Env9 *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *PageRegion ISOB5
*UIConstraints: *PageRegion ISOB5 *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *MediaType Labels
*UIConstraints: *MediaType Labels *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *MediaType Envelope
*UIConstraints: *MediaType Envelope *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *MediaType Glossy
*UIConstraints: *MediaType Glossy *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *MediaType HeavyGlossy
*UIConstraints: *MediaType HeavyGlossy *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *MediaType Transparency
*UIConstraints: *MediaType Transparency *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *MediaType Card
*UIConstraints: *MediaType Card *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *Fold TriFold
*UIConstraints: *Fold TriFold *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *Fold BiFold
*UIConstraints: *Fold BiFold *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *Fold BookletFold
*UIConstraints: *Fold BookletFold *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *StapleJob DualRight
*UIConstraints: *Offset Jobs *PageSize Statement
*UIConstraints: *PageSize Statement *Offset Jobs
*UIConstraints: *Offset Jobs *PageSize A5
*UIConstraints: *PageSize A5 *Offset Jobs
*UIConstraints: *Offset Jobs *PageSize A6
*UIConstraints: *PageSize A6 *Offset Jobs
*UIConstraints: *Offset Jobs *PageSize Env10
*UIConstraints: *PageSize Env10 *Offset Jobs
*UIConstraints: *Offset Jobs *PageSize Env9
*UIConstraints: *PageSize Env9 *Offset Jobs
*UIConstraints: *Offset Jobs *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *Offset Jobs
*UIConstraints: *Offset Jobs *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *Offset Jobs
*UIConstraints: *Offset Jobs *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *Offset Jobs
*UIConstraints: *Offset Jobs *PageSize ISOB5
*UIConstraints: *PageSize ISOB5 *Offset Jobs
*UIConstraints: *Offset Jobs *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *Offset Jobs
*UIConstraints: *Offset Jobs *PageRegion Statement
*UIConstraints: *PageRegion Statement *Offset Jobs
*UIConstraints: *Offset Jobs *PageRegion A5
*UIConstraints: *PageRegion A5 *Offset Jobs
*UIConstraints: *Offset Jobs *PageRegion A6
*UIConstraints: *PageRegion A6 *Offset Jobs
*UIConstraints: *Offset Jobs *PageRegion Env10
*UIConstraints: *PageRegion Env10 *Offset Jobs
*UIConstraints: *Offset Jobs *PageRegion Env9
*UIConstraints: *PageRegion Env9 *Offset Jobs
*UIConstraints: *Offset Jobs *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *Offset Jobs
*UIConstraints: *Offset Jobs *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *Offset Jobs
*UIConstraints: *Offset Jobs *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *Offset Jobs
*UIConstraints: *Offset Jobs *PageRegion ISOB5
*UIConstraints: *PageRegion ISOB5 *Offset Jobs
*UIConstraints: *Offset Jobs *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *Offset Jobs
*UIConstraints: *Offset Jobs *MediaType Labels
*UIConstraints: *MediaType Labels *Offset Jobs
*UIConstraints: *Offset Jobs *MediaType Envelope
*UIConstraints: *MediaType Envelope *Offset Jobs
*UIConstraints: *Offset Jobs *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *Offset Jobs
*UIConstraints: *Offset Jobs *MediaType Transparency
*UIConstraints: *MediaType Transparency *Offset Jobs
*UIConstraints: *Offset Copies *PageSize Statement
*UIConstraints: *PageSize Statement *Offset Copies
*UIConstraints: *Offset Copies *PageSize A5
*UIConstraints: *PageSize A5 *Offset Copies
*UIConstraints: *Offset Copies *PageSize A6
*UIConstraints: *PageSize A6 *Offset Copies
*UIConstraints: *Offset Copies *PageSize Env10
*UIConstraints: *PageSize Env10 *Offset Copies
*UIConstraints: *Offset Copies *PageSize Env9
*UIConstraints: *PageSize Env9 *Offset Copies
*UIConstraints: *Offset Copies *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *Offset Copies
*UIConstraints: *Offset Copies *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *Offset Copies
*UIConstraints: *Offset Copies *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *Offset Copies
*UIConstraints: *Offset Copies *PageSize ISOB5
*UIConstraints: *PageSize ISOB5 *Offset Copies
*UIConstraints: *Offset Copies *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *Offset Copies
*UIConstraints: *Offset Copies *PageRegion Statement
*UIConstraints: *PageRegion Statement *Offset Copies
*UIConstraints: *Offset Copies *PageRegion A5
*UIConstraints: *PageRegion A5 *Offset Copies
*UIConstraints: *Offset Copies *PageRegion A6
*UIConstraints: *PageRegion A6 *Offset Copies
*UIConstraints: *Offset Copies *PageRegion Env10
*UIConstraints: *PageRegion Env10 *Offset Copies
*UIConstraints: *Offset Copies *PageRegion Env9
*UIConstraints: *PageRegion Env9 *Offset Copies
*UIConstraints: *Offset Copies *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *Offset Copies
*UIConstraints: *Offset Copies *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *Offset Copies
*UIConstraints: *Offset Copies *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *Offset Copies
*UIConstraints: *Offset Copies *PageRegion ISOB5
*UIConstraints: *PageRegion ISOB5 *Offset Copies
*UIConstraints: *Offset Copies *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *Offset Copies
*UIConstraints: *Offset Copies *MediaType Labels
*UIConstraints: *MediaType Labels *Offset Copies
*UIConstraints: *Offset Copies *MediaType Envelope
*UIConstraints: *MediaType Envelope *Offset Copies
*UIConstraints: *Offset Copies *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *Offset Copies
*UIConstraints: *Offset Copies *MediaType Transparency
*UIConstraints: *MediaType Transparency *Offset Copies
*UIConstraints: *HolePunch 2Hole *PageSize Statement
*UIConstraints: *PageSize Statement *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *PageSize A5
*UIConstraints: *PageSize A5 *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *PageSize A6
*UIConstraints: *PageSize A6 *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *PageSize Env10
*UIConstraints: *PageSize Env10 *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *PageSize Env9
*UIConstraints: *PageSize Env9 *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *PageSize ISOB5
*UIConstraints: *PageSize ISOB5 *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *PageRegion Statement
*UIConstraints: *PageRegion Statement *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *PageRegion A5
*UIConstraints: *PageRegion A5 *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *PageRegion A6
*UIConstraints: *PageRegion A6 *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *PageRegion Env10
*UIConstraints: *PageRegion Env10 *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *PageRegion Env9
*UIConstraints: *PageRegion Env9 *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *PageRegion ISOB5
*UIConstraints: *PageRegion ISOB5 *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *MediaType Labels
*UIConstraints: *MediaType Labels *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *MediaType Envelope
*UIConstraints: *MediaType Envelope *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *MediaType HeavyGlossy
*UIConstraints: *MediaType HeavyGlossy *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *MediaType Transparency
*UIConstraints: *MediaType Transparency *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *Fold TriFold
*UIConstraints: *Fold TriFold *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *Fold BiFold
*UIConstraints: *Fold BiFold *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *Fold BookletFold
*UIConstraints: *Fold BookletFold *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *HolePunch 2Hole
*UIConstraints: *HolePunch 3Hole *PageSize Statement
*UIConstraints: *PageSize Statement *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *PageSize A5
*UIConstraints: *PageSize A5 *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *PageSize A6
*UIConstraints: *PageSize A6 *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *PageSize Env10
*UIConstraints: *PageSize Env10 *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *PageSize Env9
*UIConstraints: *PageSize Env9 *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *PageSize ISOB5
*UIConstraints: *PageSize ISOB5 *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *PageRegion Statement
*UIConstraints: *PageRegion Statement *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *PageRegion A5
*UIConstraints: *PageRegion A5 *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *PageRegion A6
*UIConstraints: *PageRegion A6 *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *PageRegion Env10
*UIConstraints: *PageRegion Env10 *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *PageRegion Env9
*UIConstraints: *PageRegion Env9 *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *PageRegion ISOB5
*UIConstraints: *PageRegion ISOB5 *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *MediaType Labels
*UIConstraints: *MediaType Labels *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *MediaType Envelope
*UIConstraints: *MediaType Envelope *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *MediaType HeavyGlossy
*UIConstraints: *MediaType HeavyGlossy *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *MediaType Transparency
*UIConstraints: *MediaType Transparency *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *Fold BiFold
*UIConstraints: *Fold BiFold *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *Fold TriFold
*UIConstraints: *Fold TriFold *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *Fold BookletFold
*UIConstraints: *Fold BookletFold *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *HolePunch 3Hole
*UIConstraints: *HolePunch 4Hole *PageSize Statement
*UIConstraints: *PageSize Statement *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *PageSize A5
*UIConstraints: *PageSize A5 *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *PageSize A6
*UIConstraints: *PageSize A6 *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *PageSize Env10
*UIConstraints: *PageSize Env10 *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *PageSize Env9
*UIConstraints: *PageSize Env9 *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *PageSize ISOB5
*UIConstraints: *PageSize ISOB5 *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *PageRegion Statement
*UIConstraints: *PageRegion Statement *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *PageRegion A5
*UIConstraints: *PageRegion A5 *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *PageRegion A6
*UIConstraints: *PageRegion A6 *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *PageRegion Env10
*UIConstraints: *PageRegion Env10 *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *PageRegion Env9
*UIConstraints: *PageRegion Env9 *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *PageRegion ISOB5
*UIConstraints: *PageRegion ISOB5 *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *MediaType Labels
*UIConstraints: *MediaType Labels *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *MediaType Envelope
*UIConstraints: *MediaType Envelope *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *MediaType HeavyGlossy
*UIConstraints: *MediaType HeavyGlossy *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *MediaType Transparency
*UIConstraints: *MediaType Transparency *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *Fold BiFold
*UIConstraints: *Fold BiFold *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *Fold TriFold
*UIConstraints: *Fold TriFold *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *Fold BookletFold
*UIConstraints: *Fold BookletFold *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *HolePunch 4Hole
*UIConstraints: *InputSlot Tray1 *PageSize A6
*UIConstraints: *PageSize A6 *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *PageSize Env10
*UIConstraints: *PageSize Env10 *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *PageSize Env9
*UIConstraints: *PageSize Env9 *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *PageSize ISOB5
*UIConstraints: *PageSize ISOB5 *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *PageRegion A6
*UIConstraints: *PageRegion A6 *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *PageRegion Env10
*UIConstraints: *PageRegion Env10 *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *PageRegion Env9
*UIConstraints: *PageRegion Env9 *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *PageRegion ISOB5
*UIConstraints: *PageRegion ISOB5 *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *InputSlot Tray1
*UIConstraints: *InputSlot Tray2 *PageSize A6
*UIConstraints: *PageSize A6 *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *PageSize Env10
*UIConstraints: *PageSize Env10 *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *PageSize Env9
*UIConstraints: *PageSize Env9 *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *PageSize ISOB5
*UIConstraints: *PageSize ISOB5 *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *PageRegion A6
*UIConstraints: *PageRegion A6 *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *PageRegion Env10
*UIConstraints: *PageRegion Env10 *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *PageRegion Env9
*UIConstraints: *PageRegion Env9 *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *PageRegion ISOB5
*UIConstraints: *PageRegion ISOB5 *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *InputSlot Tray2
*UIConstraints: *InputSlot Tray3 *PageSize A6
*UIConstraints: *PageSize A6 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageSize Env10
*UIConstraints: *PageSize Env10 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageSize Env9
*UIConstraints: *PageSize Env9 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageSize ISOB5
*UIConstraints: *PageSize ISOB5 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageRegion A6
*UIConstraints: *PageRegion A6 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageRegion Env10
*UIConstraints: *PageRegion Env10 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageRegion Env9
*UIConstraints: *PageRegion Env9 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageRegion ISOB5
*UIConstraints: *PageRegion ISOB5 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *InputSlot Tray3
*UIConstraints: *InputSlot Tray4 *PageSize A6
*UIConstraints: *PageSize A6 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageSize Env10
*UIConstraints: *PageSize Env10 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageSize Env9
*UIConstraints: *PageSize Env9 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageSize ISOB5
*UIConstraints: *PageSize ISOB5 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageRegion A6
*UIConstraints: *PageRegion A6 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageRegion Env10
*UIConstraints: *PageRegion Env10 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageRegion Env9
*UIConstraints: *PageRegion Env9 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageRegion ISOB5
*UIConstraints: *PageRegion ISOB5 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *InputSlot Tray4
*UIConstraints: *InputSlot Tray5 *PageSize A6
*UIConstraints: *PageSize A6 *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *PageSize Env10
*UIConstraints: *PageSize Env10 *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *PageSize Env9
*UIConstraints: *PageSize Env9 *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *PageSize ISOB5
*UIConstraints: *PageSize ISOB5 *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *PageRegion A6
*UIConstraints: *PageRegion A6 *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *PageRegion Env10
*UIConstraints: *PageRegion Env10 *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *PageRegion Env9
*UIConstraints: *PageRegion Env9 *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *PageRegion ISOB5
*UIConstraints: *PageRegion ISOB5 *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *InputSlot Tray5
*UIConstraints: *InputSlot ManualPaper *PageSize Env10
*UIConstraints: *PageSize Env10 *InputSlot ManualPaper
*UIConstraints: *InputSlot ManualPaper *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *InputSlot ManualPaper
*UIConstraints: *InputSlot ManualPaper *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *InputSlot ManualPaper
*UIConstraints: *InputSlot ManualPaper *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *InputSlot ManualPaper
*UIConstraints: *InputSlot ManualPaper *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *InputSlot ManualPaper
*UIConstraints: *InputSlot ManualPaper *PageSize A6
*UIConstraints: *PageSize A6 *InputSlot ManualPaper
*UIConstraints: *InputSlot ManualPaper *PageRegion Env10
*UIConstraints: *PageRegion Env10 *InputSlot ManualPaper
*UIConstraints: *InputSlot ManualPaper *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *InputSlot ManualPaper
*UIConstraints: *InputSlot ManualPaper *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *InputSlot ManualPaper
*UIConstraints: *InputSlot ManualPaper *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *InputSlot ManualPaper
*UIConstraints: *InputSlot ManualPaper *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *InputSlot ManualPaper
*UIConstraints: *InputSlot ManualPaper *PageRegion A6
*UIConstraints: *PageRegion A6 *InputSlot ManualPaper
*UIConstraints: *InputSlot ManualPaper *MediaType Envelope
*UIConstraints: *MediaType Envelope *InputSlot ManualPaper
*UIConstraints: *InputSlot ManualPaper *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *InputSlot ManualPaper
*UIConstraints: *InputSlot ManualEnv *PageSize Letter
*UIConstraints: *PageSize Letter *InputSlot ManualEnv
*UIConstraints: *InputSlot ManualEnv *PageSize Legal
*UIConstraints: *PageSize Legal *InputSlot ManualEnv
*UIConstraints: *InputSlot ManualEnv *PageSize Statement
*UIConstraints: *PageSize Statement *InputSlot ManualEnv
*UIConstraints: *InputSlot ManualEnv *PageSize Executive
*UIConstraints: *PageSize Executive *InputSlot ManualEnv
*UIConstraints: *InputSlot ManualEnv *PageSize FanFoldGermanLegal
*UIConstraints: *PageSize FanFoldGermanLegal *InputSlot ManualEnv
*UIConstraints: *InputSlot ManualEnv *PageSize 8.5x13.4028
*UIConstraints: *PageSize 8.5x13.4028 *InputSlot ManualEnv
*UIConstraints: *InputSlot ManualEnv *PageSize A3
*UIConstraints: *PageSize A3 *InputSlot ManualEnv
*UIConstraints: *InputSlot ManualEnv *PageSize A4
*UIConstraints: *PageSize A4 *InputSlot ManualEnv
*UIConstraints: *InputSlot ManualEnv *PageSize A5
*UIConstraints: *PageSize A5 *InputSlot ManualEnv
*UIConstraints: *InputSlot ManualEnv *PageSize A6
*UIConstraints: *PageSize A6 *InputSlot ManualEnv
*UIConstraints: *InputSlot ManualEnv *PageSize B5
*UIConstraints: *PageSize B5 *InputSlot ManualEnv
*UIConstraints: *InputSlot ManualEnv *PageSize B4
*UIConstraints: *PageSize B4 *InputSlot ManualEnv
*UIConstraints: *InputSlot ManualEnv *PageSize LxkSRA3
*UIConstraints: *PageSize LxkSRA3 *InputSlot ManualEnv
*UIConstraints: *InputSlot ManualEnv *PageSize Tabloid
*UIConstraints: *PageSize Tabloid *InputSlot ManualEnv
*UIConstraints: *InputSlot ManualEnv *PageSize Lxk12x18in
*UIConstraints: *PageSize Lxk12x18in *InputSlot ManualEnv
*UIConstraints: *Duplex DuplexNoTumble *PageSize A6
*UIConstraints: *PageSize A6 *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *PageSize Env10
*UIConstraints: *PageSize Env10 *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *PageRegion A6
*UIConstraints: *PageRegion A6 *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *PageRegion Env10
*UIConstraints: *PageRegion Env10 *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *MediaType Envelope
*UIConstraints: *MediaType Envelope *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *MediaType Transparency
*UIConstraints: *MediaType Transparency *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexTumble *PageSize A6
*UIConstraints: *PageSize A6 *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *PageSize Env10
*UIConstraints: *PageSize Env10 *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *PageRegion A6
*UIConstraints: *PageRegion A6 *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *PageRegion Env10
*UIConstraints: *PageRegion Env10 *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *MediaType Envelope
*UIConstraints: *MediaType Envelope *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *MediaType Transparency
*UIConstraints: *MediaType Transparency *Duplex DuplexTumble
*UIConstraints: *MediaType Envelope *PageSize Letter
*UIConstraints: *PageSize Letter *MediaType Envelope
*UIConstraints: *MediaType Envelope *PageSize Legal
*UIConstraints: *PageSize Legal *MediaType Envelope
*UIConstraints: *MediaType Envelope *PageSize Statement
*UIConstraints: *PageSize Statement *MediaType Envelope
*UIConstraints: *MediaType Envelope *PageSize Executive
*UIConstraints: *PageSize Executive *MediaType Envelope
*UIConstraints: *MediaType Envelope *PageSize FanFoldGermanLegal
*UIConstraints: *PageSize FanFoldGermanLegal *MediaType Envelope
*UIConstraints: *MediaType Envelope *PageSize 8.5x13.4028
*UIConstraints: *PageSize 8.5x13.4028 *MediaType Envelope
*UIConstraints: *MediaType Envelope *PageSize A3
*UIConstraints: *PageSize A3 *MediaType Envelope
*UIConstraints: *MediaType Envelope *PageSize A4
*UIConstraints: *PageSize A4 *MediaType Envelope
*UIConstraints: *MediaType Envelope *PageSize A5
*UIConstraints: *PageSize A5 *MediaType Envelope
*UIConstraints: *MediaType Envelope *PageSize A6
*UIConstraints: *PageSize A6 *MediaType Envelope
*UIConstraints: *MediaType Envelope *PageSize B5
*UIConstraints: *PageSize B5 *MediaType Envelope
*UIConstraints: *MediaType Envelope *PageSize B4
*UIConstraints: *PageSize B4 *MediaType Envelope
*UIConstraints: *MediaType Envelope *PageSize LxkSRA3
*UIConstraints: *PageSize LxkSRA3 *MediaType Envelope
*UIConstraints: *MediaType Envelope *PageSize Tabloid
*UIConstraints: *PageSize Tabloid *MediaType Envelope
*UIConstraints: *MediaType Envelope *PageSize Lxk12x18in
*UIConstraints: *PageSize Lxk12x18in *MediaType Envelope
*UIConstraints: *MediaType RoughEnvelope *PageSize Letter
*UIConstraints: *PageSize Letter *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *PageSize Legal
*UIConstraints: *PageSize Legal *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *PageSize Statement
*UIConstraints: *PageSize Statement *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *PageSize Executive
*UIConstraints: *PageSize Executive *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *PageSize FanFoldGermanLegal
*UIConstraints: *PageSize FanFoldGermanLegal *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *PageSize 8.5x13.4028
*UIConstraints: *PageSize 8.5x13.4028 *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *PageSize A3
*UIConstraints: *PageSize A3 *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *PageSize A4
*UIConstraints: *PageSize A4 *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *PageSize A5
*UIConstraints: *PageSize A5 *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *PageSize A6
*UIConstraints: *PageSize A6 *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *PageSize B5
*UIConstraints: *PageSize B5 *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *PageSize B4
*UIConstraints: *PageSize B4 *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *PageSize LxkSRA3
*UIConstraints: *PageSize LxkSRA3 *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *PageSize Tabloid
*UIConstraints: *PageSize Tabloid *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *PageSize Lxk12x18in
*UIConstraints: *PageSize Lxk12x18in *MediaType RoughEnvelope
*UIConstraints: *PageSize Env10 *MediaType Plain
*UIConstraints: *MediaType Plain *PageSize Env10
*UIConstraints: *PageSize Env10 *MediaType Letterhead
*UIConstraints: *MediaType Letterhead *PageSize Env10
*UIConstraints: *PageSize Env10 *MediaType Labels
*UIConstraints: *MediaType Labels *PageSize Env10
*UIConstraints: *PageSize Env10 *MediaType Recycled
*UIConstraints: *MediaType Recycled *PageSize Env10
*UIConstraints: *PageSize Env10 *MediaType Glossy
*UIConstraints: *MediaType Glossy *PageSize Env10
*UIConstraints: *PageSize Env10 *MediaType HeavyGlossy
*UIConstraints: *MediaType HeavyGlossy *PageSize Env10
*UIConstraints: *PageSize Env10 *MediaType Bond
*UIConstraints: *MediaType Bond *PageSize Env10
*UIConstraints: *PageSize Env10 *MediaType Transparency
*UIConstraints: *MediaType Transparency *PageSize Env10
*UIConstraints: *PageSize Env10 *MediaType Preprint
*UIConstraints: *MediaType Preprint *PageSize Env10
*UIConstraints: *PageSize Env10 *MediaType Colored
*UIConstraints: *MediaType Colored *PageSize Env10
*UIConstraints: *PageSize Env10 *MediaType Light
*UIConstraints: *MediaType Light *PageSize Env10
*UIConstraints: *PageSize Env10 *MediaType Heavy
*UIConstraints: *MediaType Heavy *PageSize Env10
*UIConstraints: *PageSize Env10 *MediaType Rough
*UIConstraints: *MediaType Rough *PageSize Env10
*UIConstraints: *PageSize Env10 *MediaType Card
*UIConstraints: *MediaType Card *PageSize Env10
*UIConstraints: *PageRegion Env10 *MediaType Plain
*UIConstraints: *MediaType Plain *PageRegion Env10
*UIConstraints: *PageRegion Env10 *MediaType Letterhead
*UIConstraints: *MediaType Letterhead *PageRegion Env10
*UIConstraints: *PageRegion Env10 *MediaType Labels
*UIConstraints: *MediaType Labels *PageRegion Env10
*UIConstraints: *PageRegion Env10 *MediaType Recycled
*UIConstraints: *MediaType Recycled *PageRegion Env10
*UIConstraints: *PageRegion Env10 *MediaType Glossy
*UIConstraints: *MediaType Glossy *PageRegion Env10
*UIConstraints: *PageRegion Env10 *MediaType HeavyGlossy
*UIConstraints: *MediaType HeavyGlossy *PageRegion Env10
*UIConstraints: *PageRegion Env10 *MediaType Bond
*UIConstraints: *MediaType Bond *PageRegion Env10
*UIConstraints: *PageRegion Env10 *MediaType Transparency
*UIConstraints: *MediaType Transparency *PageRegion Env10
*UIConstraints: *PageRegion Env10 *MediaType Preprint
*UIConstraints: *MediaType Preprint *PageRegion Env10
*UIConstraints: *PageRegion Env10 *MediaType Colored
*UIConstraints: *MediaType Colored *PageRegion Env10
*UIConstraints: *PageRegion Env10 *MediaType Light
*UIConstraints: *MediaType Light *PageRegion Env10
*UIConstraints: *PageRegion Env10 *MediaType Heavy
*UIConstraints: *MediaType Heavy *PageRegion Env10
*UIConstraints: *PageRegion Env10 *MediaType Rough
*UIConstraints: *MediaType Rough *PageRegion Env10
*UIConstraints: *PageRegion Env10 *MediaType Card
*UIConstraints: *MediaType Card *PageRegion Env10
*UIConstraints: *PageSize EnvMonarch *MediaType Plain
*UIConstraints: *MediaType Plain *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *MediaType Letterhead
*UIConstraints: *MediaType Letterhead *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *MediaType Labels
*UIConstraints: *MediaType Labels *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *MediaType Recycled
*UIConstraints: *MediaType Recycled *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *MediaType Glossy
*UIConstraints: *MediaType Glossy *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *MediaType HeavyGlossy
*UIConstraints: *MediaType HeavyGlossy *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *MediaType Bond
*UIConstraints: *MediaType Bond *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *MediaType Transparency
*UIConstraints: *MediaType Transparency *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *MediaType Preprint
*UIConstraints: *MediaType Preprint *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *MediaType Colored
*UIConstraints: *MediaType Colored *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *MediaType Light
*UIConstraints: *MediaType Light *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *MediaType Heavy
*UIConstraints: *MediaType Heavy *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *MediaType Rough
*UIConstraints: *MediaType Rough *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *MediaType Card
*UIConstraints: *MediaType Card *PageSize EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *MediaType Plain
*UIConstraints: *MediaType Plain *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *MediaType Letterhead
*UIConstraints: *MediaType Letterhead *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *MediaType Labels
*UIConstraints: *MediaType Labels *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *MediaType Recycled
*UIConstraints: *MediaType Recycled *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *MediaType Glossy
*UIConstraints: *MediaType Glossy *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *MediaType HeavyGlossy
*UIConstraints: *MediaType HeavyGlossy *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *MediaType Bond
*UIConstraints: *MediaType Bond *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *MediaType Transparency
*UIConstraints: *MediaType Transparency *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *MediaType Preprint
*UIConstraints: *MediaType Preprint *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *MediaType Colored
*UIConstraints: *MediaType Colored *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *MediaType Light
*UIConstraints: *MediaType Light *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *MediaType Heavy
*UIConstraints: *MediaType Heavy *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *MediaType Rough
*UIConstraints: *MediaType Rough *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *MediaType Card
*UIConstraints: *MediaType Card *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvDL *MediaType Plain
*UIConstraints: *MediaType Plain *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *MediaType Letterhead
*UIConstraints: *MediaType Letterhead *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *MediaType Labels
*UIConstraints: *MediaType Labels *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *MediaType Recycled
*UIConstraints: *MediaType Recycled *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *MediaType Glossy
*UIConstraints: *MediaType Glossy *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *MediaType HeavyGlossy
*UIConstraints: *MediaType HeavyGlossy *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *MediaType Bond
*UIConstraints: *MediaType Bond *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *MediaType Transparency
*UIConstraints: *MediaType Transparency *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *MediaType Preprint
*UIConstraints: *MediaType Preprint *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *MediaType Colored
*UIConstraints: *MediaType Colored *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *MediaType Light
*UIConstraints: *MediaType Light *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *MediaType Heavy
*UIConstraints: *MediaType Heavy *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *MediaType Rough
*UIConstraints: *MediaType Rough *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *MediaType Card
*UIConstraints: *MediaType Card *PageSize EnvDL
*UIConstraints: *PageRegion EnvDL *MediaType Plain
*UIConstraints: *MediaType Plain *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *MediaType Letterhead
*UIConstraints: *MediaType Letterhead *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *MediaType Labels
*UIConstraints: *MediaType Labels *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *MediaType Recycled
*UIConstraints: *MediaType Recycled *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *MediaType Glossy
*UIConstraints: *MediaType Glossy *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *MediaType HeavyGlossy
*UIConstraints: *MediaType HeavyGlossy *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *MediaType Bond
*UIConstraints: *MediaType Bond *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *MediaType Transparency
*UIConstraints: *MediaType Transparency *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *MediaType Preprint
*UIConstraints: *MediaType Preprint *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *MediaType Colored
*UIConstraints: *MediaType Colored *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *MediaType Light
*UIConstraints: *MediaType Light *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *MediaType Heavy
*UIConstraints: *MediaType Heavy *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *MediaType Rough
*UIConstraints: *MediaType Rough *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *MediaType Card
*UIConstraints: *MediaType Card *PageRegion EnvDL
*UIConstraints: *PageSize EnvC5 *MediaType Plain
*UIConstraints: *MediaType Plain *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *MediaType Letterhead
*UIConstraints: *MediaType Letterhead *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *MediaType Labels
*UIConstraints: *MediaType Labels *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *MediaType Recycled
*UIConstraints: *MediaType Recycled *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *MediaType Glossy
*UIConstraints: *MediaType Glossy *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *MediaType HeavyGlossy
*UIConstraints: *MediaType HeavyGlossy *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *MediaType Bond
*UIConstraints: *MediaType Bond *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *MediaType Transparency
*UIConstraints: *MediaType Transparency *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *MediaType Preprint
*UIConstraints: *MediaType Preprint *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *MediaType Colored
*UIConstraints: *MediaType Colored *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *MediaType Light
*UIConstraints: *MediaType Light *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *MediaType Heavy
*UIConstraints: *MediaType Heavy *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *MediaType Rough
*UIConstraints: *MediaType Rough *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *MediaType Card
*UIConstraints: *MediaType Card *PageSize EnvC5
*UIConstraints: *PageRegion EnvC5 *MediaType Plain
*UIConstraints: *MediaType Plain *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *MediaType Letterhead
*UIConstraints: *MediaType Letterhead *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *MediaType Labels
*UIConstraints: *MediaType Labels *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *MediaType Recycled
*UIConstraints: *MediaType Recycled *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *MediaType Glossy
*UIConstraints: *MediaType Glossy *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *MediaType HeavyGlossy
*UIConstraints: *MediaType HeavyGlossy *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *MediaType Bond
*UIConstraints: *MediaType Bond *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *MediaType Transparency
*UIConstraints: *MediaType Transparency *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *MediaType Preprint
*UIConstraints: *MediaType Preprint *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *MediaType Colored
*UIConstraints: *MediaType Colored *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *MediaType Light
*UIConstraints: *MediaType Light *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *MediaType Heavy
*UIConstraints: *MediaType Heavy *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *MediaType Rough
*UIConstraints: *MediaType Rough *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *MediaType Card
*UIConstraints: *MediaType Card *PageRegion EnvC5
*UIConstraints: *PageSize OthEnv *MediaType Plain
*UIConstraints: *MediaType Plain *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *MediaType Letterhead
*UIConstraints: *MediaType Letterhead *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *MediaType Labels
*UIConstraints: *MediaType Labels *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *MediaType Recycled
*UIConstraints: *MediaType Recycled *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *MediaType Glossy
*UIConstraints: *MediaType Glossy *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *MediaType HeavyGlossy
*UIConstraints: *MediaType HeavyGlossy *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *MediaType Bond
*UIConstraints: *MediaType Bond *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *MediaType Transparency
*UIConstraints: *MediaType Transparency *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *MediaType Preprint
*UIConstraints: *MediaType Preprint *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *MediaType Colored
*UIConstraints: *MediaType Colored *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *MediaType Light
*UIConstraints: *MediaType Light *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *MediaType Heavy
*UIConstraints: *MediaType Heavy *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *MediaType Rough
*UIConstraints: *MediaType Rough *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *MediaType Card
*UIConstraints: *MediaType Card *PageSize OthEnv
*UIConstraints: *PageRegion OthEnv *MediaType Plain
*UIConstraints: *MediaType Plain *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *MediaType Letterhead
*UIConstraints: *MediaType Letterhead *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *MediaType Labels
*UIConstraints: *MediaType Labels *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *MediaType Recycled
*UIConstraints: *MediaType Recycled *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *MediaType Glossy
*UIConstraints: *MediaType Glossy *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *MediaType HeavyGlossy
*UIConstraints: *MediaType HeavyGlossy *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *MediaType Bond
*UIConstraints: *MediaType Bond *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *MediaType Transparency
*UIConstraints: *MediaType Transparency *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *MediaType Preprint
*UIConstraints: *MediaType Preprint *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *MediaType Colored
*UIConstraints: *MediaType Colored *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *MediaType Light
*UIConstraints: *MediaType Light *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *MediaType Heavy
*UIConstraints: *MediaType Heavy *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *MediaType Rough
*UIConstraints: *MediaType Rough *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *MediaType Card
*UIConstraints: *MediaType Card *PageRegion OthEnv
*UIConstraints: *MediaColor Auto *ManualRGBImage Vivid
*UIConstraints: *ManualRGBImage Vivid *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualRGBImage sRGBDisplay
*UIConstraints: *ManualRGBImage sRGBDisplay *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualRGBImage sRGBVivid
*UIConstraints: *ManualRGBImage sRGBVivid *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualRGBImage DisplayRealBlack
*UIConstraints: *ManualRGBImage DisplayRealBlack *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualRGBImage Off
*UIConstraints: *ManualRGBImage Off *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualRGBText Vivid
*UIConstraints: *ManualRGBText Vivid *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualRGBText sRGBDisplay
*UIConstraints: *ManualRGBText sRGBDisplay *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualRGBText sRGBVivid
*UIConstraints: *ManualRGBText sRGBVivid *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualRGBText DisplayRealBlack
*UIConstraints: *ManualRGBText DisplayRealBlack *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualRGBText Off
*UIConstraints: *ManualRGBText Off *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualRGBGraphics Vivid
*UIConstraints: *ManualRGBGraphics Vivid *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualRGBGraphics sRGBDisplay
*UIConstraints: *ManualRGBGraphics sRGBDisplay *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualRGBGraphics sRGBVivid
*UIConstraints: *ManualRGBGraphics sRGBVivid *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualRGBGraphics DisplayRealBlack
*UIConstraints: *ManualRGBGraphics DisplayRealBlack *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualRGBGraphics Off
*UIConstraints: *ManualRGBGraphics Off *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualCMYK USCMYK
*UIConstraints: *ManualCMYK USCMYK *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualCMYK EuroCMYK
*UIConstraints: *ManualCMYK EuroCMYK *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualCMYK VividCMYK
*UIConstraints: *ManualCMYK VividCMYK *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualCMYK Off
*UIConstraints: *ManualCMYK Off *MediaColor Auto
*UIConstraints: *MediaColor FalseM *ManualRGBImage Vivid
*UIConstraints: *ManualRGBImage Vivid *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualRGBImage sRGBDisplay
*UIConstraints: *ManualRGBImage sRGBDisplay *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualRGBImage sRGBVivid
*UIConstraints: *ManualRGBImage sRGBVivid *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualRGBImage DisplayRealBlack
*UIConstraints: *ManualRGBImage DisplayRealBlack *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualRGBImage Off
*UIConstraints: *ManualRGBImage Off *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualRGBText Vivid
*UIConstraints: *ManualRGBText Vivid *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualRGBText sRGBDisplay
*UIConstraints: *ManualRGBText sRGBDisplay *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualRGBText sRGBVivid
*UIConstraints: *ManualRGBText sRGBVivid *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualRGBText DisplayRealBlack
*UIConstraints: *ManualRGBText DisplayRealBlack *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualRGBText Off
*UIConstraints: *ManualRGBText Off *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualRGBGraphics Vivid
*UIConstraints: *ManualRGBGraphics Vivid *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualRGBGraphics sRGBDisplay
*UIConstraints: *ManualRGBGraphics sRGBDisplay *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualRGBGraphics sRGBVivid
*UIConstraints: *ManualRGBGraphics sRGBVivid *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualRGBGraphics DisplayRealBlack
*UIConstraints: *ManualRGBGraphics DisplayRealBlack *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualRGBGraphics Off
*UIConstraints: *ManualRGBGraphics Off *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualCMYK USCMYK
*UIConstraints: *ManualCMYK USCMYK *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualCMYK EuroCMYK
*UIConstraints: *ManualCMYK EuroCMYK *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualCMYK VividCMYK
*UIConstraints: *ManualCMYK VividCMYK *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualCMYK Off
*UIConstraints: *ManualCMYK Off *MediaColor FalseM
*UIConstraints: *MediaColor PrinterS *ManualRGBImage Vivid
*UIConstraints: *ManualRGBImage Vivid *MediaColor PrinterS
*UIConstraints: *MediaColor PrinterS *ManualRGBImage sRGBDisplay
*UIConstraints: *ManualRGBImage sRGBDisplay *MediaColor PrinterS
*UIConstraints: *MediaColor PrinterS *ManualRGBImage sRGBVivid
*UIConstraints: *ManualRGBImage sRGBVivid *MediaColor PrinterS
*UIConstraints: *MediaColor PrinterS *ManualRGBImage DisplayRealBlack
*UIConstraints: *ManualRGBImage DisplayRealBlack *MediaColor PrinterS
*UIConstraints: *MediaColor PrinterS *ManualRGBImage Off
*UIConstraints: *ManualRGBImage Off *MediaColor PrinterS
*UIConstraints: *MediaColor PrinterS *ManualRGBText Vivid
*UIConstraints: *ManualRGBText Vivid *MediaColor PrinterS
*UIConstraints: *MediaColor PrinterS *ManualRGBText sRGBDisplay
*UIConstraints: *ManualRGBText sRGBDisplay *MediaColor PrinterS
*UIConstraints: *MediaColor PrinterS *ManualRGBText sRGBVivid
*UIConstraints: *ManualRGBText sRGBVivid *MediaColor PrinterS
*UIConstraints: *MediaColor PrinterS *ManualRGBText DisplayRealBlack
*UIConstraints: *ManualRGBText DisplayRealBlack *MediaColor PrinterS
*UIConstraints: *MediaColor PrinterS *ManualRGBText Off
*UIConstraints: *ManualRGBText Off *MediaColor PrinterS
*UIConstraints: *MediaColor PrinterS *ManualRGBGraphics Vivid
*UIConstraints: *ManualRGBGraphics Vivid *MediaColor PrinterS
*UIConstraints: *MediaColor PrinterS *ManualRGBGraphics sRGBDisplay
*UIConstraints: *ManualRGBGraphics sRGBDisplay *MediaColor PrinterS
*UIConstraints: *MediaColor PrinterS *ManualRGBGraphics sRGBVivid
*UIConstraints: *ManualRGBGraphics sRGBVivid *MediaColor PrinterS
*UIConstraints: *MediaColor PrinterS *ManualRGBGraphics DisplayRealBlack
*UIConstraints: *ManualRGBGraphics DisplayRealBlack *MediaColor PrinterS
*UIConstraints: *MediaColor PrinterS *ManualRGBGraphics Off
*UIConstraints: *ManualRGBGraphics Off *MediaColor PrinterS
*UIConstraints: *MediaColor PrinterS *ManualCMYK USCMYK
*UIConstraints: *ManualCMYK USCMYK *MediaColor PrinterS
*UIConstraints: *MediaColor PrinterS *ManualCMYK EuroCMYK
*UIConstraints: *ManualCMYK EuroCMYK *MediaColor PrinterS
*UIConstraints: *MediaColor PrinterS *ManualCMYK VividCMYK
*UIConstraints: *ManualCMYK VividCMYK *MediaColor PrinterS
*UIConstraints: *MediaColor PrinterS *ManualCMYK Off
*UIConstraints: *ManualCMYK Off *MediaColor PrinterS
*UIConstraints: *OptStapler False *StapleJob TopLeft
*UIConstraints: *StapleJob TopLeft *OptStapler False
*UIConstraints: *OptStapler False *StapleJob TopRight
*UIConstraints: *StapleJob TopRight *OptStapler False
*UIConstraints: *OptStapler False *StapleJob BottomLeft
*UIConstraints: *StapleJob BottomLeft *OptStapler False
*UIConstraints: *OptStapler False *StapleJob BottomRight
*UIConstraints: *StapleJob BottomRight *OptStapler False
*UIConstraints: *OptStapler False *StapleJob DualTop
*UIConstraints: *StapleJob DualTop *OptStapler False
*UIConstraints: *OptStapler False *StapleJob DualLeft
*UIConstraints: *StapleJob DualLeft *OptStapler False
*UIConstraints: *OptStapler False *StapleJob DualBottom
*UIConstraints: *StapleJob DualBottom *OptStapler False
*UIConstraints: *OptStapler False *StapleJob DualRight
*UIConstraints: *StapleJob DualRight *OptStapler False
*UIConstraints: *OptStapler False *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *OptStapler False
*UIConstraints: *OptOffset False *Offset Copies
*UIConstraints: *Offset Copies *OptOffset False
*UIConstraints: *OptOffset False *Offset Jobs
*UIConstraints: *Offset Jobs *OptOffset False
*UIConstraints: *OptHolePunch False *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *OptHolePunch False
*UIConstraints: *OptHolePunch False *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *OptHolePunch False
*UIConstraints: *OptHolePunch False *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *OptHolePunch False
*UIConstraints: *OutputBin StandardBin *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *OutputBin StandardBin
*UIConstraints: *OutputBin StandardBin *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *OutputBin StandardBin
*UIConstraints: *OutputBin StandardBin *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *OutputBin StandardBin
*UIConstraints: *OutputBin StandardBin *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *OutputBin StandardBin
*UIConstraints: *OutputBin StandardBin *Offset Jobs
*UIConstraints: *Offset Jobs *OutputBin StandardBin
*UIConstraints: *OutputBin StandardBin *Offset Copies
*UIConstraints: *Offset Copies *OutputBin StandardBin
*UIConstraints: *OutputBin StandardBin *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *OutputBin StandardBin
*UIConstraints: *OutputBin StandardBin *Fold BookletFold
*UIConstraints: *Fold BookletFold *OutputBin StandardBin
*UIConstraints: *OutputBin StandardBin *Fold BiFold
*UIConstraints: *Fold BiFold *OutputBin StandardBin
*UIConstraints: *OutputBin StandardBin *Fold TriFold
*UIConstraints: *Fold TriFold *OutputBin StandardBin
*UIConstraints: *OptBin1 False *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *OptBin1 False
*UIConstraints: *OptBin2 False *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *OptBin2 False
*UIConstraints: *OptBin3 False *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *OptBin3 False
*UIConstraints: *OutputBin Bin1 *PageSize Statement
*UIConstraints: *PageSize Statement *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *PageSize A5
*UIConstraints: *PageSize A5 *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *PageSize A6
*UIConstraints: *PageSize A6 *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *PageSize Env10
*UIConstraints: *PageSize Env10 *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *PageSize Env9
*UIConstraints: *PageSize Env9 *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *PageSize ISOB5
*UIConstraints: *PageSize ISOB5 *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *PageRegion Statement
*UIConstraints: *PageRegion Statement *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *PageRegion A5
*UIConstraints: *PageRegion A5 *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *PageRegion A6
*UIConstraints: *PageRegion A6 *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *PageRegion Env10
*UIConstraints: *PageRegion Env10 *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *PageRegion Env9
*UIConstraints: *PageRegion Env9 *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *PageRegion ISOB5
*UIConstraints: *PageRegion ISOB5 *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *MediaType Labels
*UIConstraints: *MediaType Labels *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *MediaType Envelope
*UIConstraints: *MediaType Envelope *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *MediaType Transparency
*UIConstraints: *MediaType Transparency *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *Offset Jobs
*UIConstraints: *Offset Jobs *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *Offset Copies
*UIConstraints: *Offset Copies *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *Fold BookletFold
*UIConstraints: *Fold BookletFold *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *Fold BiFold
*UIConstraints: *Fold BiFold *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *Fold TriFold
*UIConstraints: *Fold TriFold *OutputBin Bin1
*UIConstraints: *OutputBin Bin2 *PageSize Statement
*UIConstraints: *PageSize Statement *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *PageSize A5
*UIConstraints: *PageSize A5 *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *PageSize A6
*UIConstraints: *PageSize A6 *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *PageSize Env10
*UIConstraints: *PageSize Env10 *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *PageSize Env9
*UIConstraints: *PageSize Env9 *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *PageSize ISOB5
*UIConstraints: *PageSize ISOB5 *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *PageRegion Statement
*UIConstraints: *PageRegion Statement *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *PageRegion A5
*UIConstraints: *PageRegion A5 *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *PageRegion A6
*UIConstraints: *PageRegion A6 *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *PageRegion Env10
*UIConstraints: *PageRegion Env10 *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *PageRegion Env9
*UIConstraints: *PageRegion Env9 *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *PageRegion ISOB5
*UIConstraints: *PageRegion ISOB5 *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *MediaType Labels
*UIConstraints: *MediaType Labels *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *MediaType Envelope
*UIConstraints: *MediaType Envelope *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *MediaType Transparency
*UIConstraints: *MediaType Transparency *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *Fold BookletFold
*UIConstraints: *Fold BookletFold *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *Fold BiFold
*UIConstraints: *Fold BiFold *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *Fold TriFold
*UIConstraints: *Fold TriFold *OutputBin Bin2
*UIConstraints: *OutputBin Bin3 *PageSize Statement
*UIConstraints: *PageSize Statement *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *PageSize A5
*UIConstraints: *PageSize A5 *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *PageSize A6
*UIConstraints: *PageSize A6 *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *PageSize Env10
*UIConstraints: *PageSize Env10 *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *PageSize Env9
*UIConstraints: *PageSize Env9 *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *PageSize ISOB5
*UIConstraints: *PageSize ISOB5 *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *PageRegion Statement
*UIConstraints: *PageRegion Statement *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *PageRegion A5
*UIConstraints: *PageRegion A5 *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *PageRegion A6
*UIConstraints: *PageRegion A6 *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *PageRegion Env10
*UIConstraints: *PageRegion Env10 *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *PageRegion Env9
*UIConstraints: *PageRegion Env9 *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *PageRegion ISOB5
*UIConstraints: *PageRegion ISOB5 *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *MediaType Labels
*UIConstraints: *MediaType Labels *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *MediaType Envelope
*UIConstraints: *MediaType Envelope *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *MediaType RoughEnvelope
*UIConstraints: *MediaType RoughEnvelope *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *MediaType Transparency
*UIConstraints: *MediaType Transparency *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *Offset Jobs
*UIConstraints: *Offset Jobs *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *Offset Copies
*UIConstraints: *Offset Copies *OutputBin Bin3
*UIConstraints: *Fold BiFold *PageSize Statement
*UIConstraints: *PageSize Statement *Fold BiFold
*UIConstraints: *Fold BiFold *PageSize Executive
*UIConstraints: *PageSize Executive *Fold BiFold
*UIConstraints: *Fold BiFold *PageSize A5
*UIConstraints: *PageSize A5 *Fold BiFold
*UIConstraints: *Fold BiFold *PageSize A6
*UIConstraints: *PageSize A6 *Fold BiFold
*UIConstraints: *Fold BiFold *PageSize B5
*UIConstraints: *PageSize B5 *Fold BiFold
*UIConstraints: *Fold BiFold *PageSize Env10
*UIConstraints: *PageSize Env10 *Fold BiFold
*UIConstraints: *Fold BiFold *PageSize Env9
*UIConstraints: *PageSize Env9 *Fold BiFold
*UIConstraints: *Fold BiFold *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *Fold BiFold
*UIConstraints: *Fold BiFold *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *Fold BiFold
*UIConstraints: *Fold BiFold *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *Fold BiFold
*UIConstraints: *Fold BiFold *PageSize ISOB5
*UIConstraints: *PageSize ISOB5 *Fold BiFold
*UIConstraints: *Fold BiFold *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *Fold BiFold
*UIConstraints: *Fold BiFold *PageRegion Statement
*UIConstraints: *PageRegion Statement *Fold BiFold
*UIConstraints: *Fold BiFold *PageRegion Executive
*UIConstraints: *PageRegion Executive *Fold BiFold
*UIConstraints: *Fold BiFold *PageRegion A5
*UIConstraints: *PageRegion A5 *Fold BiFold
*UIConstraints: *Fold BiFold *PageRegion A6
*UIConstraints: *PageRegion A6 *Fold BiFold
*UIConstraints: *Fold BiFold *PageRegion B5
*UIConstraints: *PageRegion B5 *Fold BiFold
*UIConstraints: *Fold BiFold *PageRegion Env10
*UIConstraints: *PageRegion Env10 *Fold BiFold
*UIConstraints: *Fold BiFold *PageRegion Env9
*UIConstraints: *PageRegion Env9 *Fold BiFold
*UIConstraints: *Fold BiFold *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *Fold BiFold
*UIConstraints: *Fold BiFold *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *Fold BiFold
*UIConstraints: *Fold BiFold *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *Fold BiFold
*UIConstraints: *Fold BiFold *PageRegion ISOB5
*UIConstraints: *PageRegion ISOB5 *Fold BiFold
*UIConstraints: *Fold BiFold *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *Fold BiFold
*UIConstraints: *Fold TriFold *PageSize Statement
*UIConstraints: *PageSize Statement *Fold TriFold
*UIConstraints: *Fold TriFold *PageSize Executive
*UIConstraints: *PageSize Executive *Fold TriFold
*UIConstraints: *Fold TriFold *PageSize A5
*UIConstraints: *PageSize A5 *Fold TriFold
*UIConstraints: *Fold TriFold *PageSize A6
*UIConstraints: *PageSize A6 *Fold TriFold
*UIConstraints: *Fold TriFold *PageSize B5
*UIConstraints: *PageSize B5 *Fold TriFold
*UIConstraints: *Fold TriFold *PageSize Env10
*UIConstraints: *PageSize Env10 *Fold TriFold
*UIConstraints: *Fold TriFold *PageSize Env9
*UIConstraints: *PageSize Env9 *Fold TriFold
*UIConstraints: *Fold TriFold *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *Fold TriFold
*UIConstraints: *Fold TriFold *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *Fold TriFold
*UIConstraints: *Fold TriFold *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *Fold TriFold
*UIConstraints: *Fold TriFold *PageSize ISOB5
*UIConstraints: *PageSize ISOB5 *Fold TriFold
*UIConstraints: *Fold TriFold *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *Fold TriFold
*UIConstraints: *Fold TriFold *PageRegion Statement
*UIConstraints: *PageRegion Statement *Fold TriFold
*UIConstraints: *Fold TriFold *PageRegion Executive
*UIConstraints: *PageRegion Executive *Fold TriFold
*UIConstraints: *Fold TriFold *PageRegion A5
*UIConstraints: *PageRegion A5 *Fold TriFold
*UIConstraints: *Fold TriFold *PageRegion A6
*UIConstraints: *PageRegion A6 *Fold TriFold
*UIConstraints: *Fold TriFold *PageRegion B5
*UIConstraints: *PageRegion B5 *Fold TriFold
*UIConstraints: *Fold TriFold *PageRegion Env10
*UIConstraints: *PageRegion Env10 *Fold TriFold
*UIConstraints: *Fold TriFold *PageRegion Env9
*UIConstraints: *PageRegion Env9 *Fold TriFold
*UIConstraints: *Fold TriFold *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *Fold TriFold
*UIConstraints: *Fold TriFold *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *Fold TriFold
*UIConstraints: *Fold TriFold *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *Fold TriFold
*UIConstraints: *Fold TriFold *PageRegion ISOB5
*UIConstraints: *PageRegion ISOB5 *Fold TriFold
*UIConstraints: *Fold TriFold *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *Fold TriFold
*UIConstraints: *Fold BookletFold *PageSize Statement
*UIConstraints: *PageSize Statement *Fold BookletFold
*UIConstraints: *Fold BookletFold *PageSize Executive
*UIConstraints: *PageSize Executive *Fold BookletFold
*UIConstraints: *Fold BookletFold *PageSize A5
*UIConstraints: *PageSize A5 *Fold BookletFold
*UIConstraints: *Fold BookletFold *PageSize A6
*UIConstraints: *PageSize A6 *Fold BookletFold
*UIConstraints: *Fold BookletFold *PageSize B5
*UIConstraints: *PageSize B5 *Fold BookletFold
*UIConstraints: *Fold BookletFold *PageSize Env10
*UIConstraints: *PageSize Env10 *Fold BookletFold
*UIConstraints: *Fold BookletFold *PageSize Env9
*UIConstraints: *PageSize Env9 *Fold BookletFold
*UIConstraints: *Fold BookletFold *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *Fold BookletFold
*UIConstraints: *Fold BookletFold *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *Fold BookletFold
*UIConstraints: *Fold BookletFold *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *Fold BookletFold
*UIConstraints: *Fold BookletFold *PageSize ISOB5
*UIConstraints: *PageSize ISOB5 *Fold BookletFold
*UIConstraints: *Fold BookletFold *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *Fold BookletFold
*UIConstraints: *Fold BookletFold *PageRegion Statement
*UIConstraints: *PageRegion Statement *Fold BookletFold
*UIConstraints: *Fold BookletFold *PageRegion Executive
*UIConstraints: *PageRegion Executive *Fold BookletFold
*UIConstraints: *Fold BookletFold *PageRegion A5
*UIConstraints: *PageRegion A5 *Fold BookletFold
*UIConstraints: *Fold BookletFold *PageRegion A6
*UIConstraints: *PageRegion A6 *Fold BookletFold
*UIConstraints: *Fold BookletFold *PageRegion B5
*UIConstraints: *PageRegion B5 *Fold BookletFold
*UIConstraints: *Fold BookletFold *PageRegion Env10
*UIConstraints: *PageRegion Env10 *Fold BookletFold
*UIConstraints: *Fold BookletFold *PageRegion Env9
*UIConstraints: *PageRegion Env9 *Fold BookletFold
*UIConstraints: *Fold BookletFold *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *Fold BookletFold
*UIConstraints: *Fold BookletFold *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *Fold BookletFold
*UIConstraints: *Fold BookletFold *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *Fold BookletFold
*UIConstraints: *Fold BookletFold *PageRegion ISOB5
*UIConstraints: *PageRegion ISOB5 *Fold BookletFold
*UIConstraints: *Fold BookletFold *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *Fold BookletFold
*UIConstraints: *Fold SaddleStitch *PageSize Statement
*UIConstraints: *PageSize Statement *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *PageSize Executive
*UIConstraints: *PageSize Executive *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *PageSize A5
*UIConstraints: *PageSize A5 *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *PageSize A6
*UIConstraints: *PageSize A6 *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *PageSize B5
*UIConstraints: *PageSize B5 *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *PageSize Env10
*UIConstraints: *PageSize Env10 *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *PageSize Env9
*UIConstraints: *PageSize Env9 *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *PageSize ISOB5
*UIConstraints: *PageSize ISOB5 *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *PageSize OthEnv
*UIConstraints: *PageSize OthEnv *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *PageRegion Statement
*UIConstraints: *PageRegion Statement *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *PageRegion Executive
*UIConstraints: *PageRegion Executive *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *PageRegion A5
*UIConstraints: *PageRegion A5 *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *PageRegion A6
*UIConstraints: *PageRegion A6 *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *PageRegion B5
*UIConstraints: *PageRegion B5 *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *PageRegion Env10
*UIConstraints: *PageRegion Env10 *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *PageRegion Env9
*UIConstraints: *PageRegion Env9 *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *PageRegion ISOB5
*UIConstraints: *PageRegion ISOB5 *Fold SaddleStitch
*UIConstraints: *Fold SaddleStitch *PageRegion OthEnv
*UIConstraints: *PageRegion OthEnv *Fold SaddleStitch
*OpenUI *PageSize/Media Size: PickOne
*OrderDependency: 30 AnySetup *PageSize
*DefaultPageSize: Letter
*PageSize Letter/Letter (8 1/2 x 11 in): "
<< /Policies << /PageSize 2 >> /PageSize [612 792] /ImagingBBox null >> setpagedevice"
*End
*PageSize Legal/Legal (8 1/2 x 14 in): "
<< /Policies << /PageSize 2 >> /PageSize [612 1008] /ImagingBBox null >> setpagedevice"
*End
*PageSize 8.5x13.4028/Oficio (Mexico) (216 x 340 mm): "
<< /Policies << /PageSize 2 >> /PageSize [612 965] /ImagingBBox null >> setpagedevice"
*End
*PageSize B5/B5 (182 x 257 mm): "
1 dict dup /Policies 1 dict dup /PageSize 2 put put setpagedevice
2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
*End
*PageSize B4/JIS B4: "
<< /Policies << /PageSize 2 >> /PageSize [729 1032] /ImagingBBox null >> setpagedevice"
*End
*PageSize A4/A4 (210 x 297 mm): "
<< /Policies << /PageSize 2 >> /PageSize [595 842] /ImagingBBox null >> setpagedevice"
*End
*PageSize Executive/Executive (7 1/4 x 10 1/2 in): "
<< /Policies << /PageSize 2 >> /PageSize [522 756] /ImagingBBox null >> setpagedevice"
*End
*PageSize A5/A5 (148 x 210 mm): "
<< /Policies << /PageSize 2 >> /PageSize [420 595] /ImagingBBox null >> setpagedevice"
*End
*PageSize A6/A6 (105 x 148 mm): "
<< /Policies << /PageSize 2 >> /PageSize [297 419] /ImagingBBox null >> setpagedevice"
*End
*PageSize A3/A3 (297 x 420 mm): "
<< /Policies << /PageSize 2 >> /PageSize [842 1191] /ImagingBBox null >> setpagedevice"
*End
*PageSize LxkSRA3/SRA3 (320 x 450 mm): "
<< /Policies << /PageSize 2 >> /PageSize [907 1276] /ImagingBBox null >> setpagedevice"
*End
*PageSize Tabloid/Tabloid (11 x 17 in): "
<< /Policies << /PageSize 2 >> /PageSize [792 1224] /ImagingBBox null >> setpagedevice"
*End
*PageSize Lxk12x18in/Tabloid Oversize: "
<< /Policies << /PageSize 2 >> /PageSize [864 1296] /ImagingBBox null >> setpagedevice"
*End
*PageSize FanFoldGermanLegal/Folio (8 1/2 x 13 in): "
<< /Policies << /PageSize 2 >> /PageSize [612 936] /ImagingBBox null >> setpagedevice"
*End
*PageSize Statement/Statement (5 1/2 x 8 1/2 in): "
<< /Policies << /PageSize 2 >> /PageSize [396 612] /ImagingBBox null >> setpagedevice"
*End
*PageSize EnvMonarch/Envelope 7 3/4 (3 7/8x7 1/2 in): "
<< /Policies << /PageSize 2 >> /PageSize [279 540] /ImagingBBox null >> setpagedevice"
*End
*PageSize Env9/Envelope 9 (3 7/8 x 8 7/8 in): "
<< /Policies << /PageSize 2 >> /PageSize [279 639] /ImagingBBox null >> setpagedevice"
*End
*PageSize Env10/Envelope 10 (4 1/8 x 9 1/2 in): "
<< /Policies << /PageSize 2 >> /PageSize [297 684] /ImagingBBox null >> setpagedevice"
*End
*PageSize EnvDL/Envelope DL (110 x 220 mm): "
<< /Policies << /PageSize 2 >> /PageSize [312 624] /ImagingBBox null >> setpagedevice"
*End
*PageSize EnvC5/Envelope C5 (162 x 229 mm): "
<< /Policies << /PageSize 2 >> /PageSize [459 649] /ImagingBBox null >> setpagedevice"
*End
*PageSize ISOB5/Envelope B5 (176 x 250 mm): "
<< /Policies << /PageSize 2 >> /PageSize [499 708] /ImagingBBox null >> setpagedevice"
*End
*PageSize OthEnv/Other Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [842.00 1212.00] /ImagingBBox null >> setpagedevice"
*End
*CloseUI: *PageSize
*OpenUI *PageRegion/Media Size: PickOne
*OrderDependency: 35 AnySetup *PageRegion
*DefaultPageRegion: Letter
*PageRegion Letter/Letter (8 1/2 x 11 in): "
<< /Policies << /PageSize 2 >> /PageSize [612 792] /ImagingBBox null >> setpagedevice "
*End
*PageRegion Legal/Legal (8 1/2 x 14 in): "
<< /Policies << /PageSize 2 >> /PageSize [612 1008] /ImagingBBox null >> setpagedevice "
*End
*PageRegion 8.5x13.4028/Oficio (Mexico) (216 x 340 mm): "
<< /Policies << /PageSize 2 >> /PageSize [612 965] /ImagingBBox null >> setpagedevice "
*End
*PageRegion B5/B5 (182 x 257 mm): "
1 dict dup /Policies 1 dict dup /PageSize 2 put put setpagedevice
2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice "
*End
*PageRegion B4/JIS B4: "
<< /Policies << /PageSize 2 >> /PageSize [729 1032] /ImagingBBox null >> setpagedevice "
*End
*PageRegion A4/A4 (210 x 297 mm): "
<< /Policies << /PageSize 2 >> /PageSize [595 842] /ImagingBBox null >> setpagedevice "
*End
*PageRegion Executive/Executive (7 1/4 x 10 1/2 in): "
<< /Policies << /PageSize 2 >> /PageSize [522 756] /ImagingBBox null >> setpagedevice "
*End
*PageRegion A5/A5 (148 x 210 mm): "
<< /Policies << /PageSize 2 >> /PageSize [420 595] /ImagingBBox null >> setpagedevice "
*End
*PageRegion A6/A6 (105 x 148 mm): "
<< /Policies << /PageSize 2 >> /PageSize [297 419] /ImagingBBox null >> setpagedevice "
*End
*PageRegion A3/A3 (297 x 420 mm): "
<< /Policies << /PageSize 2 >> /PageSize [842 1191] /ImagingBBox null >> setpagedevice "
*End
*PageRegion LxkSRA3/SRA3 (320 x 450 mm): "
<< /Policies << /PageSize 2 >> /PageSize [907 1276] /ImagingBBox null >> setpagedevice "
*End
*PageRegion Tabloid/Tabloid (11 x 17 in): "
<< /Policies << /PageSize 2 >> /PageSize [792 1224] /ImagingBBox null >> setpagedevice "
*End
*PageRegion Lxk12x18in/Tabloid Oversize: "
<< /Policies << /PageSize 2 >> /PageSize [864 1296] /ImagingBBox null >> setpagedevice "
*End
*PageRegion FanFoldGermanLegal/Folio (8 1/2 x 13 in): "
<< /Policies << /PageSize 2 >> /PageSize [612 936] /ImagingBBox null >> setpagedevice "
*End
*PageRegion Statement/Statement (5 1/2 x 8 1/2 in): "
<< /Policies << /PageSize 2 >> /PageSize [396 612] /ImagingBBox null >> setpagedevice "
*End
*PageRegion EnvMonarch/Envelope 7 3/4 (3 7/8x7 1/2 in): "
<< /Policies << /PageSize 2 >> /PageSize [279 540] /ImagingBBox null >> setpagedevice "
*End
*PageRegion Env9/Envelope 9 (3 7/8 x 8 7/8 in): "
<< /Policies << /PageSize 2 >> /PageSize [279 639] /ImagingBBox null >> setpagedevice "
*End
*PageRegion Env10/Envelope 10 (4 1/8 x 9 1/2 in): "
<< /Policies << /PageSize 2 >> /PageSize [297 684] /ImagingBBox null >> setpagedevice "
*End
*PageRegion EnvDL/Envelope DL (110 x 220 mm): "
<< /Policies << /PageSize 2 >> /PageSize [312 624] /ImagingBBox null >> setpagedevice "
*End
*PageRegion EnvC5/Envelope C5 (162 x 229 mm): "
<< /Policies << /PageSize 2 >> /PageSize [459 649] /ImagingBBox null >> setpagedevice "
*End
*PageRegion ISOB5/Envelope B5 (176 x 250 mm): "
<< /Policies << /PageSize 2 >> /PageSize [499 708] /ImagingBBox null >> setpagedevice "
*End
*PageRegion OthEnv/Other Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [842.00 1212.00] /ImagingBBox null >> setpagedevice "
*End
*CloseUI: *PageRegion
*DefaultImageableArea: Letter
*ImageableArea Letter/Letter (8 1/2 x 11 in): "12 12 600 780"
*ImageableArea Legal/Legal (8 1/2 x 14 in): "12 12 600 996"
*ImageableArea 8.5x13.4028/Oficio (Mexico) (216 x 340 mm): "12 12 600 953"
*ImageableArea B5/B5 (182 x 257 mm): "12 12 506 716"
*ImageableArea B4/JIS B4: "12 12 717 1020"
*ImageableArea A4/A4 (210 x 297 mm): "10 12 589 830"
*ImageableArea Executive/Executive (7 1/4 x 10 1/2 in): "12 12 510 744"
*ImageableArea A5/A5 (148 x 210 mm): "12 12 408 583"
*ImageableArea A6/A6 (105 x 148 mm): "12 12 285 407"
*ImageableArea A3/A3 (297 x 420 mm): "12 12 830 1179"
*ImageableArea LxkSRA3/SRA3 (320 x 450 mm): "12 12 895 1264"
*ImageableArea Tabloid/Tabloid (11 x 17 in): "12 12 780 1212"
*ImageableArea Lxk12x18in/Tabloid Oversize: "12 12 852 1284"
*ImageableArea FanFoldGermanLegal/Folio (8 1/2 x 13 in): "12 12 600 924"
*ImageableArea Statement/Statement (5 1/2 x 8 1/2 in): "12 12 384 600"
*ImageableArea EnvMonarch/Envelope 7 3/4 (3 7/8x7 1/2 in): "12 12 279 528"
*ImageableArea Env9/Envelope 9 (3 7/8 x 8 7/8 in): "12 12 279 627"
*ImageableArea Env10/Envelope 10 (4 1/8 x 9 1/2 in): "12 12 294 672"
*ImageableArea EnvDL/Envelope DL (110 x 220 mm): "12 12 310 612"
*ImageableArea EnvC5/Envelope C5 (162 x 229 mm): "12 12 456 637"
*ImageableArea ISOB5/Envelope B5 (176 x 250 mm): "12 12 498 696"
*ImageableArea OthEnv/Other Envelope: "12 12 830 1200"
*DefaultPaperDimension: Letter
*PaperDimension Letter/Letter (8 1/2 x 11 in): "612 792"
*PaperDimension Legal/Legal (8 1/2 x 14 in): "612 1008"
*PaperDimension 8.5x13.4028/Oficio (Mexico) (216 x 340 mm): "612 965"
*PaperDimension B5/B5 (182 x 257 mm): "516.239990234375 728.640014648438"
*PaperDimension B4/JIS B4: "729 1032"
*PaperDimension A4/A4 (210 x 297 mm): "595 842"
*PaperDimension Executive/Executive (7 1/4 x 10 1/2 in): "522 756"
*PaperDimension A5/A5 (148 x 210 mm): "419.760009765625 595.440002441406"
*PaperDimension A6/A6 (105 x 148 mm): "297 419"
*PaperDimension A3/A3 (297 x 420 mm): "842 1191"
*PaperDimension LxkSRA3/SRA3 (320 x 450 mm): "907 1276"
*PaperDimension Tabloid/Tabloid (11 x 17 in): "792 1224"
*PaperDimension Lxk12x18in/Tabloid Oversize: "864 1296"
*PaperDimension FanFoldGermanLegal/Folio (8 1/2 x 13 in): "612 936"
*PaperDimension Statement/Statement (5 1/2 x 8 1/2 in): "396 612"
*PaperDimension EnvMonarch/Envelope 7 3/4 (3 7/8x7 1/2 in): "279 540"
*PaperDimension Env9/Envelope 9 (3 7/8 x 8 7/8 in): "279 639"
*PaperDimension Env10/Envelope 10 (4 1/8 x 9 1/2 in): "297 684"
*PaperDimension EnvDL/Envelope DL (110 x 220 mm): "311.760009765625 623.52001953125"
*PaperDimension EnvC5/Envelope C5 (162 x 229 mm): "459.359985351562 649.440002441406"
*PaperDimension ISOB5/Envelope B5 (176 x 250 mm): "498.959991455078 708.47998046875"
*PaperDimension OthEnv/Other Envelope: "842 1212"
*MaxMediaWidth: "842"
*MaxMediaHeight: "1224"
*HWMargins: 12 12 12 12
*CustomPageSize True: "pop pop pop <</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice"
*ParamCustomPageSize Width: 1 points 252 842
*ParamCustomPageSize Height: 2 points 279 1224
*ParamCustomPageSize WidthOffset: 3 points 0 0
*ParamCustomPageSize HeightOffset: 4 points 0 0
*ParamCustomPageSize Orientation: 5 int 0 0
*RequiresPageRegion All: True
*OpenUI *InputSlot/Media Source: PickOne
*OrderDependency: 20 AnySetup *InputSlot
*DefaultInputSlot: Tray1
*InputSlot Tray1/Tray 1: "
1 dict dup /MediaPosition null put setpagedevice
currentpagedevice /InputAttributes get 0 get setpagedevice
1 dict dup /InputAttributes 1 dict dup /Priority [0] put put setpagedevice
1 dict dup /Policies 1 dict dup /PageSize 2 put put setpagedevice
<< /ManualFeed false >> setpagedevice"
*End
*InputSlot Tray2/Tray 2: "
1 dict dup /MediaPosition null put setpagedevice
userdict /lms
currentpagedevice /InputAttributes get 1 known { 1 }{ 0 }ifelse put
currentpagedevice /InputAttributes get lms get setpagedevice
1 dict dup /InputAttributes 1 dict dup /Priority [lms] put put setpagedevice
1 dict dup /Policies 1 dict dup /PageSize 2 put put setpagedevice
<< /ManualFeed false >> setpagedevice"
*End
*InputSlot Tray3/Tray 3: "
1 dict dup /MediaPosition null put setpagedevice
userdict /lms
currentpagedevice /InputAttributes get 3 known { 3 }{ 0 }ifelse put
currentpagedevice /InputAttributes get lms get setpagedevice
1 dict dup /InputAttributes 1 dict dup /Priority [lms] put put setpagedevice
1 dict dup /Policies 1 dict dup /PageSize 2 put put setpagedevice
<< /ManualFeed false >> setpagedevice"
*End
*InputSlot Tray4/Tray 4: "
1 dict dup /MediaPosition null put setpagedevice
userdict /lms
currentpagedevice /InputAttributes get 5 known { 5 }{ 0 }ifelse put
currentpagedevice /InputAttributes get lms get setpagedevice
1 dict dup /InputAttributes 1 dict dup /Priority [lms] put put setpagedevice
1 dict dup /Policies 1 dict dup /PageSize 2 put put setpagedevice
<< /ManualFeed false >> setpagedevice"
*End
*InputSlot Tray5/Tray 5: "
1 dict dup /MediaPosition null put setpagedevice
userdict /lms
currentpagedevice /InputAttributes get 6 known { 6 }{ 0 }ifelse put
currentpagedevice /InputAttributes get lms get setpagedevice
1 dict dup /InputAttributes 1 dict dup /Priority [lms] put put setpagedevice
1 dict dup /Policies 1 dict dup /PageSize 2 put put setpagedevice
<< /ManualFeed false >> setpagedevice"
*End
*InputSlot MultipurposeFeeder/Multipurpose Feeder: "
1 dict dup /MediaPosition null put setpagedevice
userdict /lms
currentpagedevice /InputAttributes get 4 known { 4 }{ 0 }ifelse put
currentpagedevice /InputAttributes get lms get setpagedevice
1 dict dup /InputAttributes 1 dict dup /Priority [lms] put put setpagedevice
1 dict dup /Policies 1 dict dup /PageSize 2 put put setpagedevice
<< /ManualFeed false >> setpagedevice"
*End
*InputSlot ManualPaper/Manual Paper: "
1 dict dup /MediaPosition null put setpagedevice
1 dict dup /ManualFeed true put setpagedevice
1 dict dup /Policies 1 dict dup /PageSize 2 put put setpagedevice"
*End
*InputSlot ManualEnv/Manual Envelope: "
1 dict dup /MediaPosition null put setpagedevice
1 dict dup /ManualFeed true put setpagedevice
1 dict dup /Policies 1 dict dup /PageSize 2 put put setpagedevice"
*End
*CloseUI: *InputSlot
*OpenGroup: InstallableOptions/Installable Options
*OpenUI *OptDuplex/Duplexer: Boolean
*OrderDependency: 0 AnySetup *OptDuplex
*DefaultOptDuplex: True
*OptDuplex False/Not Installed: ""
*OptDuplex True/Installed: ""
*CloseUI: *OptDuplex
*OpenUI *OptFlash/Flash: Boolean
*OrderDependency: 0 AnySetup *OptFlash
*DefaultOptFlash: False
*OptFlash False/Not Installed: ""
*OptFlash True/Installed: ""
*CloseUI: *OptFlash
*OpenUI *OptTray2/Tray 2: Boolean
*OrderDependency: 0 AnySetup *OptTray2
*DefaultOptTray2: False
*OptTray2 False/Not Installed: ""
*OptTray2 True/Installed: ""
*CloseUI: *OptTray2
*OpenUI *OptTray3/Tray 3: Boolean
*OrderDependency: 0 AnySetup *OptTray3
*DefaultOptTray3: False
*OptTray3 False/Not Installed: ""
*OptTray3 True/Installed: ""
*CloseUI: *OptTray3
*OpenUI *OptTray4/Tray 4: Boolean
*OrderDependency: 0 AnySetup *OptTray4
*DefaultOptTray4: False
*OptTray4 False/Not Installed: ""
*OptTray4 True/Installed: ""
*CloseUI: *OptTray4
*OpenUI *OptTray5/Tray 5: Boolean
*OrderDependency: 0 AnySetup *OptTray5
*DefaultOptTray5: False
*OptTray5 False/Not Installed: ""
*OptTray5 True/Installed: ""
*CloseUI: *OptTray5
*OpenUI *OptMultipurposeFeeder/Multipurpose Feeder: Boolean
*OrderDependency: 0 AnySetup *OptMultipurposeFeeder
*DefaultOptMultipurposeFeeder: True
*OptMultipurposeFeeder False/Not Installed: ""
*OptMultipurposeFeeder True/Installed: ""
*CloseUI: *OptMultipurposeFeeder
*OpenUI *OptBin1/Bin 1: Boolean
*OrderDependency: 0 AnySetup *OptBin1
*DefaultOptBin1: False
*OptBin1 False/Not Installed: ""
*OptBin1 True/Installed: ""
*CloseUI: *OptBin1
*OpenUI *OptBin2/Bin 2: Boolean
*OrderDependency: 0 AnySetup *OptBin2
*DefaultOptBin2: False
*OptBin2 False/Not Installed: ""
*OptBin2 True/Installed: ""
*CloseUI: *OptBin2
*OpenUI *OptBin3/Bin 3: Boolean
*OrderDependency: 0 AnySetup *OptBin3
*DefaultOptBin3: False
*OptBin3 False/Not Installed: ""
*OptBin3 True/Installed: ""
*CloseUI: *OptBin3
*OpenUI *OptOffset/Offset: Boolean
*OrderDependency: 0 AnySetup *OptOffset
*DefaultOptOffset: False
*OptOffset False/Not Installed: ""
*OptOffset True/Installed: ""
*CloseUI: *OptOffset
*OpenUI *OptStapler/Staple: Boolean
*OrderDependency: 0 AnySetup *OptStapler
*DefaultOptStapler: False
*OptStapler False/Not Installed: ""
*OptStapler True/Installed: ""
*CloseUI: *OptStapler
*OpenUI *OptHolePunch/Hole Punch: Boolean
*OrderDependency: 0 AnySetup *OptHolePunch
*DefaultOptHolePunch: False
*OptHolePunch False/Not Installed: ""
*OptHolePunch True/Installed: ""
*CloseUI: *OptHolePunch
*OpenUI *OptFold/Fold: Boolean
*OrderDependency: 0 AnySetup *OptFold
*DefaultOptFold: False
*OptFold False/Not Installed: ""
*OptFold True/Installed: ""
*CloseUI: *OptFold
*CloseGroup: InstallableOptions
*OpenGroup: Finishing/Finishing
*OpenUI *Duplex/Duplex: PickOne
*OrderDependency: 0 AnySetup *Duplex
*DefaultDuplex: DuplexNoTumble
*Duplex None: "1 dict dup /Duplex false put setpagedevice"
*Duplex DuplexNoTumble/Duplex - Long Edge: "
statusdict /duplexer get exec
{ 2 dict dup /Duplex true put dup /Tumble false put setpagedevice}
{ 1 dict dup /Duplex false put setpagedevice}
ifelse"
*End
*Duplex DuplexTumble/Duplex - Short Edge: "
statusdict /duplexer get exec
{ 2 dict dup /Duplex true put dup /Tumble true put setpagedevice}
{ 1 dict dup /Duplex false put setpagedevice}
ifelse"
*End
*CloseUI: *Duplex
*OpenUI *Collate/Collation: Boolean
*OrderDependency: 50 AnySetup *Collate
*DefaultCollate: True
*Collate True/On: "<< /Collate true >> setpagedevice"
*Collate False/Off: "<< /Collate false >> setpagedevice"
*CloseUI: *Collate
*OpenUI *SepPages/Separator Pages: PickOne
*OrderDependency: 51 AnySetup *SepPages
*DefaultSepPages: PrinterS
*SepPages PrinterS/Use Printer Setting: ""
*SepPages NoneF/None: "<< /SlipSheet 0 >> setpagedevice"
*SepPages Jobs/Between Jobs: "<< /SlipSheet 2 >> setpagedevice"
*SepPages Copies/Between Copies: "<< /SlipSheet 3 >> setpagedevice"
*SepPages Pages/Between Pages: "<< /SlipSheet 4 >> setpagedevice"
*CloseUI: *SepPages
*OpenUI *SepSource/Separator Source: PickOne
*OrderDependency: 52 AnySetup *SepSource
*DefaultSepSource: PrinterS
*SepSource PrinterS/Use Printer Setting: ""
*SepSource Tray1/Tray 1: "<< /SlipSheetDetails << /Type 96 /SlipSheetSource 0 >> >> setpagedevice"
*SepSource Tray2/Tray 2: "<< /SlipSheetDetails << /Type 96 /SlipSheetSource 1 >> >> setpagedevice"
*SepSource Tray3/Tray 3: "<< /SlipSheetDetails << /Type 96 /SlipSheetSource 3 >> >> setpagedevice"
*SepSource Tray4/Tray 4: "<< /SlipSheetDetails << /Type 96 /SlipSheetSource 5 >> >> setpagedevice"
*SepSource Tray5/Tray 5: "<< /SlipSheetDetails << /Type 96 /SlipSheetSource 6 >> >> setpagedevice"
*SepSource MultipurposeFeeder/Multipurpose Feeder: "<< /SlipSheetDetails << /Type 96 /SlipSheetSource 4 >> >> setpagedevice"
*CloseUI: *SepSource
*OpenUI *OutputBin/Output Bin: PickOne
*OrderDependency: 56 AnySetup *OutputBin
*DefaultOutputBin: PrinterS
*OutputBin PrinterS/Use Printer Setting: ""
*OutputBin StandardBin/Standard Bin: "
<< /OutputAttributes << 0 << /OutputType (TOP OUTPUT BIN) >> >> >> setpagedevice
<< /OutputType (TOP OUTPUT BIN) >> setpagedevice"
*End
*OutputBin Bin1/Bin 1: "
<< /OutputAttributes << 1 << /OutputType (OPTIONAL OUTBIN 1) >> >> >> setpagedevice
<< /OutputType (OPTIONAL OUTBIN 1) >> setpagedevice"
*End
*OutputBin Bin2/Bin 2: "
<< /OutputAttributes << 2 << /OutputType (OPTIONAL OUTBIN 2) >> >> >> setpagedevice
<< /OutputType (OPTIONAL OUTBIN 2) >> setpagedevice"
*End
*OutputBin Bin3/Bin 3: "
<< /OutputAttributes << 3 << /OutputType (OPTIONAL OUTBIN 3) >> >> >> setpagedevice
<< /OutputType (OPTIONAL OUTBIN 3) >> setpagedevice"
*End
*CloseUI: *OutputBin
*OpenUI *Offset/Offset Pages: PickOne
*OrderDependency: 60 AnySetup *Offset
*DefaultOffset: PrinterS
*Offset PrinterS/Use Printer Setting: ""
*Offset OffsetOff/Off: " << /Jog 0 >> setpagedevice"
*Offset Copies/Between Copies: " << /Jog 3 >> setpagedevice"
*Offset Jobs/Between Jobs: " << /Jog 2 >> setpagedevice"
*CloseUI: *Offset
*OpenUI *HolePunch/Hole Punch: PickOne
*OrderDependency: 54 AnySetup *HolePunch
*DefaultHolePunch: PrinterS
*HolePunch PrinterS/Use Printer Setting: ""
*HolePunch FalseM/Off: " << /Punch 0 >> setpagedevice"
*HolePunch 2Hole/2 Hole: " << /Punch 2 >> setpagedevice"
*HolePunch 3Hole/3 Hole: " << /Punch 3 >> setpagedevice"
*HolePunch 4Hole/4 Hole: " << /Punch 4 >> setpagedevice"
*CloseUI: *HolePunch
*OpenUI *StapleJob/Staple Job: PickOne
*OrderDependency: 170 AnySetup *StapleJob
*DefaultStapleJob: PrinterS
*StapleJob PrinterS/Use Printer Setting: ""
*StapleJob FalseM/Off: " << /Staple 0 >> setpagedevice"
*StapleJob TrueM/Auto: " << /Staple 3 >> setpagedevice"
*StapleJob TopLeft/Top Left: " << /Staple 14 >> setpagedevice"
*StapleJob TopRight/Top Right: " << /Staple 12 >> setpagedevice"
*StapleJob BottomLeft/Bottom Left: " << /Staple 16 >> setpagedevice"
*StapleJob BottomRight/Bottom Right: " << /Staple 18 >> setpagedevice"
*StapleJob DualTop/Dual Top: " << /Staple 13 >> setpagedevice"
*StapleJob DualLeft/Dual Left: " << /Staple 15 >> setpagedevice"
*StapleJob DualBottom/Dual Bottom: " << /Staple 17 >> setpagedevice"
*StapleJob DualRight/Dual Right: " << /Staple 19 >> setpagedevice"
*CloseUI: *StapleJob
*OpenUI *Fold/Fold: PickOne
*OrderDependency: 172 AnySetup *Fold
*DefaultFold: False
*Fold False/Off: " << /Fold 0 >> setpagedevice"
*Fold SaddleStitch/Fold and Staple: " << /Fold 2 /Staple 4 >> setpagedevice"
*Fold BookletFold/Fold: " << /Fold 2 >> setpagedevice"
*Fold BiFold/Fold Each Sheet Individually: " << /Fold 1 >> setpagedevice"
*Fold TriFold/Trifold Individual Pages: " << /Fold 3 >> setpagedevice"
*CloseUI: *Fold
*CloseGroup: Finishing
*OpenGroup: Quality/Quality
*OpenUI *LXResolution/Resolution: PickOne
*OrderDependency: 11 AnySetup *LXResolution
*DefaultLXResolution: 604x600dpi
*LXResolution 1200dpi/1200 dpi: "<< /HWResolution [1200 1200] >> setpagedevice"
*LXResolution 604x600dpi/2400 Image Quality: "
1 dict dup /HWResolution [600 600] put setpagedevice
<< /DeviceRenderingInfo << /Type 105 /ImageEnhancement 1 >> >> setpagedevice
<< /DeviceRenderingInfo << /Type 105 /ImageEnhancementType 4 >> >> setpagedevice"
*End
*CloseUI: *LXResolution
*OpenUI *Halftone/Halftone: PickOne
*OrderDependency: 180 AnySetup *Halftone
*DefaultHalftone: PrinterS
*Halftone PrinterS/Use Printer Setting: ""
*Halftone FalseF/Normal: "<< /DeviceRenderingInfo << /LineDetail /Off >> >> setpagedevice"
*Halftone TrueF/Detail: "<< /DeviceRenderingInfo << /LineDetail /On >> >> setpagedevice"
*CloseUI: *Halftone
*OpenUI *TonerDarkness/Toner Darkness: PickOne
*OrderDependency: 16 AnySetup *TonerDarkness
*DefaultTonerDarkness: PrinterS
*TonerDarkness PrinterS/Use Printer Setting: ""
*TonerDarkness 1: "<< /DeviceRenderingInfo << /Type 106 /PrintDarkness 1 >> >> setpagedevice"
*TonerDarkness 2: "<< /DeviceRenderingInfo << /Type 106 /PrintDarkness 2 >> >> setpagedevice"
*TonerDarkness 3: "<< /DeviceRenderingInfo << /Type 106 /PrintDarkness 3 >> >> setpagedevice"
*TonerDarkness 4: "<< /DeviceRenderingInfo << /Type 106 /PrintDarkness 4 >> >> setpagedevice"
*TonerDarkness 5: "<< /DeviceRenderingInfo << /Type 106 /PrintDarkness 5 >> >> setpagedevice"
*CloseUI: *TonerDarkness
*OpenUI *LexMirror/Mirror: Boolean
*OrderDependency: 500 AnySetup *LexMirror
*DefaultLexMirror: False
*LexMirror True/On: "<< /Install { currentpagedevice /PageSize get 0 get 0 translate -1 1 scale } >> setpagedevice"
*LexMirror False/Off: ""
*CloseUI: *LexMirror
*CloseGroup: Quality
*OpenGroup: ColorBalance/Color Balance
*OpenUI *CyanBalance/Cyan Balance: PickOne
*OrderDependency: 71 AnySetup *CyanBalance
*DefaultCyanBalance: PrinterS
*CyanBalance PrinterS/Use Printer Setting: ""
*CyanBalance -5/ -5: "<< /DeviceRenderingInfo << /ColorBalanceCyan -5 >> >> setpagedevice"
*CyanBalance -4/ -4: "<< /DeviceRenderingInfo << /ColorBalanceCyan -4 >> >> setpagedevice"
*CyanBalance -3/ -3: "<< /DeviceRenderingInfo << /ColorBalanceCyan -3 >> >> setpagedevice"
*CyanBalance -2/ -2: "<< /DeviceRenderingInfo << /ColorBalanceCyan -2 >> >> setpagedevice"
*CyanBalance -1/ -1: "<< /DeviceRenderingInfo << /ColorBalanceCyan -1 >> >> setpagedevice"
*CyanBalance 0/ 0: "<< /DeviceRenderingInfo << /ColorBalanceCyan 0 >> >> setpagedevice"
*CyanBalance +1/ +1: "<< /DeviceRenderingInfo << /ColorBalanceCyan 1 >> >> setpagedevice"
*CyanBalance +2/ +2: "<< /DeviceRenderingInfo << /ColorBalanceCyan 2 >> >> setpagedevice"
*CyanBalance +3/ +3: "<< /DeviceRenderingInfo << /ColorBalanceCyan 3 >> >> setpagedevice"
*CyanBalance +4/ +4: "<< /DeviceRenderingInfo << /ColorBalanceCyan 4 >> >> setpagedevice"
*CyanBalance +5/ +5: "<< /DeviceRenderingInfo << /ColorBalanceCyan 5 >> >> setpagedevice"
*CloseUI: *CyanBalance
*OpenUI *MagentaBalance/Magenta Balance: PickOne
*OrderDependency: 72 AnySetup *MagentaBalance
*DefaultMagentaBalance: PrinterS
*MagentaBalance PrinterS/Use Printer Setting: ""
*MagentaBalance -5/ -5: "<< /DeviceRenderingInfo << /ColorBalanceMagenta -5 >> >> setpagedevice"
*MagentaBalance -4/ -4: "<< /DeviceRenderingInfo << /ColorBalanceMagenta -4 >> >> setpagedevice"
*MagentaBalance -3/ -3: "<< /DeviceRenderingInfo << /ColorBalanceMagenta -3 >> >> setpagedevice"
*MagentaBalance -2/ -2: "<< /DeviceRenderingInfo << /ColorBalanceMagenta -2 >> >> setpagedevice"
*MagentaBalance -1/ -1: "<< /DeviceRenderingInfo << /ColorBalanceMagenta -1 >> >> setpagedevice"
*MagentaBalance 0/ 0: "<< /DeviceRenderingInfo << /ColorBalanceMagenta 0 >> >> setpagedevice"
*MagentaBalance +1/ +1: "<< /DeviceRenderingInfo << /ColorBalanceMagenta 1 >> >> setpagedevice"
*MagentaBalance +2/ +2: "<< /DeviceRenderingInfo << /ColorBalanceMagenta 2 >> >> setpagedevice"
*MagentaBalance +3/ +3: "<< /DeviceRenderingInfo << /ColorBalanceMagenta 3 >> >> setpagedevice"
*MagentaBalance +4/ +4: "<< /DeviceRenderingInfo << /ColorBalanceMagenta 4 >> >> setpagedevice"
*MagentaBalance +5/ +5: "<< /DeviceRenderingInfo << /ColorBalanceMagenta 5 >> >> setpagedevice"
*CloseUI: *MagentaBalance
*OpenUI *YellowBalance/Yellow Balance: PickOne
*OrderDependency: 73 AnySetup *YellowBalance
*DefaultYellowBalance: PrinterS
*YellowBalance PrinterS/Use Printer Setting: ""
*YellowBalance -5/ -5: "<< /DeviceRenderingInfo << /ColorBalanceYellow -5 >> >> setpagedevice"
*YellowBalance -4/ -4: "<< /DeviceRenderingInfo << /ColorBalanceYellow -4 >> >> setpagedevice"
*YellowBalance -3/ -3: "<< /DeviceRenderingInfo << /ColorBalanceYellow -3 >> >> setpagedevice"
*YellowBalance -2/ -2: "<< /DeviceRenderingInfo << /ColorBalanceYellow -2 >> >> setpagedevice"
*YellowBalance -1/ -1: "<< /DeviceRenderingInfo << /ColorBalanceYellow -1 >> >> setpagedevice"
*YellowBalance 0/ 0: "<< /DeviceRenderingInfo << /ColorBalanceYellow 0 >> >> setpagedevice"
*YellowBalance +1/ +1: "<< /DeviceRenderingInfo << /ColorBalanceYellow 1 >> >> setpagedevice"
*YellowBalance +2/ +2: "<< /DeviceRenderingInfo << /ColorBalanceYellow 2 >> >> setpagedevice"
*YellowBalance +3/ +3: "<< /DeviceRenderingInfo << /ColorBalanceYellow 3 >> >> setpagedevice"
*YellowBalance +4/ +4: "<< /DeviceRenderingInfo << /ColorBalanceYellow 4 >> >> setpagedevice"
*YellowBalance +5/ +5: "<< /DeviceRenderingInfo << /ColorBalanceYellow 5 >> >> setpagedevice"
*CloseUI: *YellowBalance
*OpenUI *BlackBalance/Black Balance: PickOne
*OrderDependency: 74 AnySetup *BlackBalance
*DefaultBlackBalance: PrinterS
*BlackBalance PrinterS/Use Printer Setting: ""
*BlackBalance -5/ -5: "<< /DeviceRenderingInfo << /ColorBalanceBlack -5 >> >> setpagedevice"
*BlackBalance -4/ -4: "<< /DeviceRenderingInfo << /ColorBalanceBlack -4 >> >> setpagedevice"
*BlackBalance -3/ -3: "<< /DeviceRenderingInfo << /ColorBalanceBlack -3 >> >> setpagedevice"
*BlackBalance -2/ -2: "<< /DeviceRenderingInfo << /ColorBalanceBlack -2 >> >> setpagedevice"
*BlackBalance -1/ -1: "<< /DeviceRenderingInfo << /ColorBalanceBlack -1 >> >> setpagedevice"
*BlackBalance 0/ 0: "<< /DeviceRenderingInfo << /ColorBalanceBlack 0 >> >> setpagedevice"
*BlackBalance +1/ +1: "<< /DeviceRenderingInfo << /ColorBalanceBlack 1 >> >> setpagedevice"
*BlackBalance +2/ +2: "<< /DeviceRenderingInfo << /ColorBalanceBlack 2 >> >> setpagedevice"
*BlackBalance +3/ +3: "<< /DeviceRenderingInfo << /ColorBalanceBlack 3 >> >> setpagedevice"
*BlackBalance +4/ +4: "<< /DeviceRenderingInfo << /ColorBalanceBlack 4 >> >> setpagedevice"
*BlackBalance +5/ +5: "<< /DeviceRenderingInfo << /ColorBalanceBlack 5 >> >> setpagedevice"
*CloseUI: *BlackBalance
*CloseGroup: ColorBalance
*OpenGroup: ColorCorrection/Color Correction
*OpenUI *MediaColor/Color Correction: PickOne
*OrderDependency: 12 AnySetup *MediaColor
*DefaultMediaColor: PrinterS
*MediaColor PrinterS/Use Printer Setting: ""
*MediaColor FalseM/Off: "<< /DeviceRenderingInfo << /Type 106 /ColorCorrection /Off >> >> setpagedevice"
*MediaColor Auto: "<< /DeviceRenderingInfo << /Type 106 /ColorCorrection /Automatic >> >> setpagedevice"
*MediaColor Manual: "<< /DeviceRenderingInfo << /Type 106 /ColorCorrection /Manual >> >> setpagedevice"
*CloseUI: *MediaColor
*OpenUI *ManualRGBImage/RGB correction for images: PickOne
*OrderDependency: 75 AnySetup *ManualRGBImage
*DefaultManualRGBImage: PrinterS
*ManualRGBImage PrinterS/Use Printer Setting: ""
*ManualRGBImage Off: "<< /DeviceRenderingInfo << /ManualColorRGBImage /Off >> >> setpagedevice"
*ManualRGBImage sRGBDisplay/sRGB Display: "<< /DeviceRenderingInfo << /ManualColorRGBImage /sRGBDisplay >> >> setpagedevice"
*ManualRGBImage sRGBVivid/sRGB Vivid: "<< /DeviceRenderingInfo << /ManualColorRGBImage /sRGBGraphics >> >> setpagedevice"
*ManualRGBImage DisplayRealBlack/Display - True Black: "<< /DeviceRenderingInfo << /ManualColorRGBImage /DisplayRealBlack >> >> setpagedevice"
*ManualRGBImage Vivid: "<< /DeviceRenderingInfo << /ManualColorRGBImage /Vivid >> >> setpagedevice"
*CloseUI: *ManualRGBImage
*OpenUI *ManualRGBText/RGB correction for text: PickOne
*OrderDependency: 76 AnySetup *ManualRGBText
*DefaultManualRGBText: PrinterS
*ManualRGBText PrinterS/Use Printer Setting: ""
*ManualRGBText Off: "<< /DeviceRenderingInfo << /ManualColorRGBText /Off >> >> setpagedevice"
*ManualRGBText sRGBDisplay/sRGB Display: "<< /DeviceRenderingInfo << /ManualColorRGBText /sRGBDisplay >> >> setpagedevice"
*ManualRGBText sRGBVivid/sRGB Vivid: "<< /DeviceRenderingInfo << /ManualColorRGBText /sRGBGraphics >> >> setpagedevice"
*ManualRGBText DisplayRealBlack/Display - True Black: "<< /DeviceRenderingInfo << /ManualColorRGBText /DisplayRealBlack >> >> setpagedevice"
*ManualRGBText Vivid: "<< /DeviceRenderingInfo << /ManualColorRGBText /Vivid >> >> setpagedevice"
*CloseUI: *ManualRGBText
*OpenUI *ManualRGBGraphics/RGB correction for graphics: PickOne
*OrderDependency: 77 AnySetup *ManualRGBGraphics
*DefaultManualRGBGraphics: PrinterS
*ManualRGBGraphics PrinterS/Use Printer Setting: ""
*ManualRGBGraphics Off: "<< /DeviceRenderingInfo << /ManualColorRGBGraphics /Off >> >> setpagedevice"
*ManualRGBGraphics sRGBDisplay/sRGB Display: "<< /DeviceRenderingInfo << /ManualColorRGBGraphics /sRGBDisplay >> >> setpagedevice"
*ManualRGBGraphics sRGBVivid/sRGB Vivid: "<< /DeviceRenderingInfo << /ManualColorRGBGraphics /sRGBGraphics >> >> setpagedevice"
*ManualRGBGraphics DisplayRealBlack/Display - True Black: "<< /DeviceRenderingInfo << /ManualColorRGBGraphics /DisplayRealBlack >> >> setpagedevice"
*ManualRGBGraphics Vivid: "<< /DeviceRenderingInfo << /ManualColorRGBGraphics /Vivid >> >> setpagedevice"
*CloseUI: *ManualRGBGraphics
*OpenUI *ManualCMYK/CMYK correction: PickOne
*OrderDependency: 78 AnySetup *ManualCMYK
*DefaultManualCMYK: PrinterS
*ManualCMYK PrinterS/Use Printer Setting: ""
*ManualCMYK Off: "<< /DeviceRenderingInfo << /ManualColorCMYKImage /Off >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKText /Off >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKGraphics /Off >> >> setpagedevice"
*End
*ManualCMYK VividCMYK/Vivid CMYK: "<< /DeviceRenderingInfo << /ManualColorCMYKImage /VividCMYK >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKText /VividCMYK >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKGraphics /VividCMYK >> >> setpagedevice"
*End
*ManualCMYK EuroCMYK/Euro CMYK: "<< /DeviceRenderingInfo << /ManualColorCMYKImage /Euro >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKText /Euro >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKGraphics /Euro >> >> setpagedevice"
*End
*ManualCMYK USCMYK/US CMYK: "<< /DeviceRenderingInfo << /ManualColorCMYKImage /SWOP >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKText /SWOP >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKGraphics /SWOP >> >> setpagedevice"
*End
*CloseUI: *ManualCMYK
*CloseGroup: ColorCorrection
*OpenGroup: Color/Color
*OpenUI *ColorSaver/ColorSaverTM: PickOne
*OrderDependency: 14 AnySetup *ColorSaver
*DefaultColorSaver: PrinterS
*ColorSaver PrinterS/Use Printer Setting: ""
*ColorSaver TrueM/On: "<< /DeviceRenderingInfo << /ColorSaver /On >> >> setpagedevice"
*ColorSaver FalseM/Off: "<< /DeviceRenderingInfo << /ColorSaver /Off >> >> setpagedevice"
*CloseUI: *ColorSaver
*OpenUI *ColorMode/Color Mode: PickOne
*OrderDependency: 13 AnySetup *ColorMode
*DefaultColorMode: PrinterS
*ColorMode PrinterS/Use Printer Setting: ""
*ColorMode TrueM/Color: "<< /ProcessColorModel /DeviceCMYK >> setpagedevice"
*ColorMode FalseM/Monochrome: "<< /ProcessColorModel /DeviceGray >> setpagedevice"
*CloseUI: *ColorMode
*CloseGroup: Color
*OpenGroup: RGBCorrection/RGB Correction
*OpenUI *LexBrightness/Brightness: PickOne
*OrderDependency: 185 AnySetup *LexBrightness
*DefaultLexBrightness: PrinterS
*LexBrightness PrinterS/Use Printer Setting: ""
*LexBrightness -6/ -6: "<< /DeviceRenderingInfo << /ImageBrightness -6 >> >> setpagedevice"
*LexBrightness -5/ -5: "<< /DeviceRenderingInfo << /ImageBrightness -5 >> >> setpagedevice"
*LexBrightness -4/ -4: "<< /DeviceRenderingInfo << /ImageBrightness -4 >> >> setpagedevice"
*LexBrightness -3/ -3: "<< /DeviceRenderingInfo << /ImageBrightness -3 >> >> setpagedevice"
*LexBrightness -2/ -2: "<< /DeviceRenderingInfo << /ImageBrightness -2 >> >> setpagedevice"
*LexBrightness -1/ -1: "<< /DeviceRenderingInfo << /ImageBrightness -1 >> >> setpagedevice"
*LexBrightness 0/ 0: "<< /DeviceRenderingInfo << /ImageBrightness 0 >> >> setpagedevice"
*LexBrightness +1/ +1: "<< /DeviceRenderingInfo << /ImageBrightness 1 >> >> setpagedevice"
*LexBrightness +2/ +2: "<< /DeviceRenderingInfo << /ImageBrightness 2 >> >> setpagedevice"
*LexBrightness +3/ +3: "<< /DeviceRenderingInfo << /ImageBrightness 3 >> >> setpagedevice"
*LexBrightness +4/ +4: "<< /DeviceRenderingInfo << /ImageBrightness 4 >> >> setpagedevice"
*LexBrightness +5/ +5: "<< /DeviceRenderingInfo << /ImageBrightness 5 >> >> setpagedevice"
*LexBrightness +6/ +6: "<< /DeviceRenderingInfo << /ImageBrightness 6 >> >> setpagedevice"
*CloseUI: *LexBrightness
*OpenUI *LexContrast/Contrast: PickOne
*OrderDependency: 190 AnySetup *LexContrast
*DefaultLexContrast: PrinterS
*LexContrast PrinterS/Use Printer Setting: ""
*LexContrast 0: "<< /DeviceRenderingInfo << /ImageContrast 0 >> >> setpagedevice"
*LexContrast 1: "<< /DeviceRenderingInfo << /ImageContrast 1 >> >> setpagedevice"
*LexContrast 2: "<< /DeviceRenderingInfo << /ImageContrast 2 >> >> setpagedevice"
*LexContrast 3: "<< /DeviceRenderingInfo << /ImageContrast 3 >> >> setpagedevice"
*LexContrast 4: "<< /DeviceRenderingInfo << /ImageContrast 4 >> >> setpagedevice"
*LexContrast 5: "<< /DeviceRenderingInfo << /ImageContrast 5 >> >> setpagedevice"
*CloseUI: *LexContrast
*OpenUI *LexSaturation/Saturation: PickOne
*OrderDependency: 195 AnySetup *LexSaturation
*DefaultLexSaturation: PrinterS
*LexSaturation PrinterS/Use Printer Setting: ""
*LexSaturation 0: "<< /DeviceRenderingInfo << /ImageSaturation 0 >> >> setpagedevice"
*LexSaturation 1: "<< /DeviceRenderingInfo << /ImageSaturation 1 >> >> setpagedevice"
*LexSaturation 2: "<< /DeviceRenderingInfo << /ImageSaturation 2 >> >> setpagedevice"
*LexSaturation 3: "<< /DeviceRenderingInfo << /ImageSaturation 3 >> >> setpagedevice"
*LexSaturation 4: "<< /DeviceRenderingInfo << /ImageSaturation 4 >> >> setpagedevice"
*LexSaturation 5: "<< /DeviceRenderingInfo << /ImageSaturation 5 >> >> setpagedevice"
*CloseUI: *LexSaturation
*CloseGroup: RGBCorrection
*OpenGroup: Paper/Paper
*OpenUI *MediaType/Paper Type: PickOne
*OrderDependency: 40 AnySetup *MediaType
*DefaultMediaType: PrinterS
*MediaType PrinterS/Use Printer Setting: ""
*MediaType Plain: "<< /MediaType (Plain) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Colored: "<< /MediaType (Colored Paper) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Transparency: "<< /MediaType (Transparency) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Card/Card stock: "<< /MediaType (Card Stock) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Labels: "<< /MediaType (Labels) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Bond: "<< /MediaType (Bond) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Letterhead: "<< /MediaType (Letterhead) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Preprint/Preprinted: "<< /MediaType (Preprinted) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType RoughEnvelope/Rough Envelope: "<< /MediaType (Rough Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Envelope: "<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Recycled: "<< /MediaType (Recycled) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Light: "<< /MediaType (Light) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Heavy: "<< /MediaType (Heavy) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Glossy: "<< /MediaType (Glossy Paper) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType HeavyGlossy/Heavy Glossy: "<< /MediaType (Heavy Glossy) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Rough/Rough/Cotton: "<< /MediaType (Rough) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Custom1/Custom Type 1: "<< /MediaType (Custom Type 1) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Custom2/Custom Type 2: "<< /MediaType (Custom Type 2) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Custom3/Custom Type 3: "<< /MediaType (Custom Type 3) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Custom4/Custom Type 4: "<< /MediaType (Custom Type 4) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Custom5/Custom Type 5: "<< /MediaType (Custom Type 5) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Custom6/Custom Type 6: "<< /MediaType (Custom Type 6) /Policies << /MediaType 2 >> >> setpagedevice"
*CloseUI: *MediaType
*OpenUI *LexBlankPage/Print Blank Pages: PickOne
*OrderDependency: 175 AnySetup *LexBlankPage
*DefaultLexBlankPage: PrinterS
*LexBlankPage PrinterS/Use Printer Setting: ""
*LexBlankPage False/Off: ""
*LexBlankPage True/On: ""
*CloseUI: *LexBlankPage
*CloseGroup: Paper
*ar.Translation Manufacturer/Lexmark: ""
*ar.Translation ModelName/Lexmark C9200 Series: ""
*ar.Translation ShortNickName/Lexmark C9200 Series: ""
*ar.Translation NickName/Lexmark C9200 Series: ""
*ar.Translation PageSize/حجم الوسائط: ""
*ar.PageSize Letter/Letter (1/2 8 × 11 بوصة): ""
*ar.PageSize Legal/Legal (1/2 8 × 14 بوصة): ""
*ar.PageSize 8.5x13.4028/Oficio (المكسيك) (216 × 340 ملم): ""
*ar.PageSize B5/B5 (182 × 257 ملم): ""
*ar.PageSize B4/JIS B4: ""
*ar.PageSize A4/A4 (210 × 297 ملم): ""
*ar.PageSize Executive/Executive (1/4 7 × 1/2 10 بوصة): ""
*ar.PageSize A5/A5 (148 × 210 ملم): ""
*ar.PageSize A6/A6 (105 × 148 ملم): ""
*ar.PageSize A3/A3 (297 x 420 mm): ""
*ar.PageSize LxkSRA3/SRA3 (320 x 450 mm): ""
*ar.PageSize Tabloid/Tabloid (11 x 17 in): ""
*ar.PageSize Lxk12x18in/Tabloid Oversize: ""
*ar.PageSize FanFoldGermanLegal/Folio (1/2 8 × 13 بوصة): ""
*ar.PageSize Statement/Statement (1/2 5 × 1/2 8 بوصة): ""
*ar.PageSize EnvMonarch/ظرف 3/4 7 (7/8 3 × 1/2 7 بوصة): ""
*ar.PageSize Env9/الظرف 9 (7/8 3 × 7/8 8 بوصات): ""
*ar.PageSize Env10/الظرف 10 (1/8 4 × 1/2 9 بوصات): ""
*ar.PageSize EnvDL/ظرف DL (110 × 220 ملم): ""
*ar.PageSize EnvC5/ظرف C5 (162 × 229 ملم): ""
*ar.PageSize ISOB5/ظرف B5 (176 ×250 ملم): ""
*ar.PageSize OthEnv/ظرف آخر: ""
*ar.Translation InputSlot/مصدر الوسائط: ""
*ar.InputSlot Tray1/الدرج 1: ""
*ar.InputSlot Tray2/الدرج 2: ""
*ar.InputSlot Tray3/الدرج 3: ""
*ar.InputSlot Tray4/الدرج 4: ""
*ar.InputSlot Tray5/الدرج 5: ""
*ar.InputSlot MultipurposeFeeder/و. ت. لأغراض متعددة: ""
*ar.InputSlot ManualPaper/تغذية الورق يدويًا: ""
*ar.InputSlot ManualEnv/ظرف يدوي: ""
*ar.Translation InstallableOptions/الخيارات القابلة للتنزيل: ""
*ar.Translation OptDuplex/وحدة الطباعة على الوجهين: ""
*ar.OptDuplex False/غير مثبت: ""
*ar.OptDuplex True/مثبت: ""
*ar.Translation OptFlash/وميض: ""
*ar.OptFlash False/غير مثبت: ""
*ar.OptFlash True/مثبت: ""
*ar.Translation OptTray2/الدرج 2: ""
*ar.OptTray2 False/غير مثبت: ""
*ar.OptTray2 True/مثبت: ""
*ar.Translation OptTray3/الدرج 3: ""
*ar.OptTray3 False/غير مثبت: ""
*ar.OptTray3 True/مثبت: ""
*ar.Translation OptTray4/الدرج 4: ""
*ar.OptTray4 False/غير مثبت: ""
*ar.OptTray4 True/مثبت: ""
*ar.Translation OptTray5/الدرج 5: ""
*ar.OptTray5 False/غير مثبت: ""
*ar.OptTray5 True/مثبت: ""
*ar.Translation OptMultipurposeFeeder/و. ت. لأغراض متعددة: ""
*ar.OptMultipurposeFeeder False/غير مثبت: ""
*ar.OptMultipurposeFeeder True/مثبت: ""
*ar.Translation OptBin1/الحاوية 1: ""
*ar.OptBin1 False/غير مثبت: ""
*ar.OptBin1 True/مثبت: ""
*ar.Translation OptBin2/الحاوية 2: ""
*ar.OptBin2 False/غير مثبت: ""
*ar.OptBin2 True/مثبت: ""
*ar.Translation OptBin3/الحاوية 3: ""
*ar.OptBin3 False/غير مثبت: ""
*ar.OptBin3 True/مثبت: ""
*ar.Translation OptOffset/أوفست: ""
*ar.OptOffset False/غير مثبت: ""
*ar.OptOffset True/مثبت: ""
*ar.Translation OptStapler/تدبيس: ""
*ar.OptStapler False/غير مثبت: ""
*ar.OptStapler True/مثبت: ""
*ar.Translation OptHolePunch/تثقيب: ""
*ar.OptHolePunch False/غير مثبت: ""
*ar.OptHolePunch True/مثبت: ""
*ar.Translation OptFold/الطي: ""
*ar.OptFold False/غير مثبت: ""
*ar.OptFold True/مثبت: ""
*ar.Translation Finishing/الإنهاء: ""
*ar.Translation Duplex/على الوجهين: ""
*ar.Duplex None/لا يوجد: ""
*ar.Duplex DuplexNoTumble/طباعة على الوجهين - الحافة الطويلة: ""
*ar.Duplex DuplexTumble/طباعة على الوجهين - الحافة القصيرة: ""
*ar.Translation Collate/الترتيب: ""
*ar.Collate True/تشغيل: ""
*ar.Collate False/إيقاف: ""
*ar.Translation SepPages/الصفحات الفاصلة: ""
*ar.SepPages PrinterS/استخدام إعداد الطابعة: ""
*ar.SepPages NoneF/لا يوجد: ""
*ar.SepPages Jobs/بين المهام: ""
*ar.SepPages Copies/بين النسخ: ""
*ar.SepPages Pages/بين الصفحات: ""
*ar.Translation SepSource/مصدر الفاصل: ""
*ar.SepSource PrinterS/استخدام إعداد الطابعة: ""
*ar.SepSource Tray1/الدرج 1: ""
*ar.SepSource Tray2/الدرج 2: ""
*ar.SepSource Tray3/الدرج 3: ""
*ar.SepSource Tray4/الدرج 4: ""
*ar.SepSource Tray5/الدرج 5: ""
*ar.SepSource MultipurposeFeeder/و. ت. لأغراض متعددة: ""
*ar.Translation OutputBin/حاوية الإخراج: ""
*ar.OutputBin PrinterS/استخدام إعداد الطابعة: ""
*ar.OutputBin StandardBin/حاوية قياسية: ""
*ar.OutputBin Bin1/الحاوية 1: ""
*ar.OutputBin Bin2/الحاوية 2: ""
*ar.OutputBin Bin3/الحاوية 3: ""
*ar.Translation Offset/صفحات الإزاحة: ""
*ar.Offset PrinterS/استخدام إعداد الطابعة: ""
*ar.Offset OffsetOff/إيقاف: ""
*ar.Offset Copies/بين النسخ: ""
*ar.Offset Jobs/بين المهام: ""
*ar.Translation HolePunch/تثقيب: ""
*ar.HolePunch PrinterS/استخدام إعداد الطابعة: ""
*ar.HolePunch FalseM/إيقاف: ""
*ar.HolePunch 2Hole/ثقبان (2): ""
*ar.HolePunch 3Hole/ثقبان (3): ""
*ar.HolePunch 4Hole/ثقبان (4): ""
*ar.Translation StapleJob/مهمة التدبيس: ""
*ar.StapleJob PrinterS/استخدام إعداد الطابعة: ""
*ar.StapleJob FalseM/إيقاف: ""
*ar.StapleJob TrueM/تلقائي: ""
*ar.StapleJob TopLeft/الركن الأيسر العلوي: ""
*ar.StapleJob TopRight/الركن الأيمن العلوي: ""
*ar.StapleJob BottomLeft/الركن الأيسر السفلي: ""
*ar.StapleJob BottomRight/الركن الأيمن السفلي: ""
*ar.StapleJob DualTop/الركن العلوي المزدوج: ""
*ar.StapleJob DualLeft/الركن الأيسر المزدوج: ""
*ar.StapleJob DualBottom/الركن السفلي المزدوج: ""
*ar.StapleJob DualRight/الركن الأيمن المزدوج: ""
*ar.Translation Fold/الطي: ""
*ar.Fold False/إيقاف: ""
*ar.Fold SaddleStitch/طي وتدبيس: ""
*ar.Fold BookletFold/الطي: ""
*ar.Fold BiFold/طي كل ورقة على حدة: ""
*ar.Fold TriFold/الطي الثلاثي للصفحات المفردة: ""
*ar.Translation Quality/الجودة: ""
*ar.Translation LXResolution/درجة الدقة: ""
*ar.LXResolution 1200dpi/1200 dpi: ""
*ar.LXResolution 604x600dpi/جودة الصورة 2400: ""
*ar.Translation Halftone/ألوان نصفية: ""
*ar.Halftone PrinterS/استخدام إعداد الطابعة: ""
*ar.Halftone FalseF/عادية: ""
*ar.Halftone TrueF/التفاصيل: ""
*ar.Translation TonerDarkness/قتامة الحبر: ""
*ar.TonerDarkness PrinterS/استخدام إعداد الطابعة: ""
*ar.TonerDarkness 1/1: ""
*ar.TonerDarkness 2/2: ""
*ar.TonerDarkness 3/3: ""
*ar.TonerDarkness 4/4: ""
*ar.TonerDarkness 5/5: ""
*ar.Translation LexMirror/طباعة معكوسة: ""
*ar.LexMirror True/تشغيل: ""
*ar.LexMirror False/إيقاف: ""
*ar.Translation ColorBalance/توازن الألواان: ""
*ar.Translation CyanBalance/توازن السماوي: ""
*ar.CyanBalance PrinterS/استخدام إعداد الطابعة: ""
*ar.CyanBalance -5/ -5: ""
*ar.CyanBalance -4/ -4: ""
*ar.CyanBalance -3/ -3: ""
*ar.CyanBalance -2/ -2: ""
*ar.CyanBalance -1/ -1: ""
*ar.CyanBalance 0/ 0: ""
*ar.CyanBalance +1/ +1: ""
*ar.CyanBalance +2/ +2: ""
*ar.CyanBalance +3/ +3: ""
*ar.CyanBalance +4/ +4: ""
*ar.CyanBalance +5/ +5: ""
*ar.Translation MagentaBalance/توازن الأرجواني: ""
*ar.MagentaBalance PrinterS/استخدام إعداد الطابعة: ""
*ar.MagentaBalance -5/ -5: ""
*ar.MagentaBalance -4/ -4: ""
*ar.MagentaBalance -3/ -3: ""
*ar.MagentaBalance -2/ -2: ""
*ar.MagentaBalance -1/ -1: ""
*ar.MagentaBalance 0/ 0: ""
*ar.MagentaBalance +1/ +1: ""
*ar.MagentaBalance +2/ +2: ""
*ar.MagentaBalance +3/ +3: ""
*ar.MagentaBalance +4/ +4: ""
*ar.MagentaBalance +5/ +5: ""
*ar.Translation YellowBalance/توازن الأصفر: ""
*ar.YellowBalance PrinterS/استخدام إعداد الطابعة: ""
*ar.YellowBalance -5/ -5: ""
*ar.YellowBalance -4/ -4: ""
*ar.YellowBalance -3/ -3: ""
*ar.YellowBalance -2/ -2: ""
*ar.YellowBalance -1/ -1: ""
*ar.YellowBalance 0/ 0: ""
*ar.YellowBalance +1/ +1: ""
*ar.YellowBalance +2/ +2: ""
*ar.YellowBalance +3/ +3: ""
*ar.YellowBalance +4/ +4: ""
*ar.YellowBalance +5/ +5: ""
*ar.Translation BlackBalance/توازن الأسود: ""
*ar.BlackBalance PrinterS/استخدام إعداد الطابعة: ""
*ar.BlackBalance -5/ -5: ""
*ar.BlackBalance -4/ -4: ""
*ar.BlackBalance -3/ -3: ""
*ar.BlackBalance -2/ -2: ""
*ar.BlackBalance -1/ -1: ""
*ar.BlackBalance 0/ 0: ""
*ar.BlackBalance +1/ +1: ""
*ar.BlackBalance +2/ +2: ""
*ar.BlackBalance +3/ +3: ""
*ar.BlackBalance +4/ +4: ""
*ar.BlackBalance +5/ +5: ""
*ar.Translation ColorCorrection/تصحيح الألوان: ""
*ar.Translation MediaColor/تصحيح الألوان: ""
*ar.MediaColor PrinterS/استخدام إعداد الطابعة: ""
*ar.MediaColor FalseM/إيقاف: ""
*ar.MediaColor Auto/تلقائي: ""
*ar.MediaColor Manual/يدوي: ""
*ar.Translation ManualRGBImage/تصحيح RGB للصور: ""
*ar.ManualRGBImage PrinterS/استخدام إعداد الطابعة: ""
*ar.ManualRGBImage Off/إيقاف: ""
*ar.ManualRGBImage sRGBDisplay/شاشة sRGB: ""
*ar.ManualRGBImage sRGBVivid/شاشة sRGB زاهية: ""
*ar.ManualRGBImage DisplayRealBlack/الشاشة – الأسود الحقيقي: ""
*ar.ManualRGBImage Vivid/زاهية: ""
*ar.Translation ManualRGBText/تصحيح RGB للنص: ""
*ar.ManualRGBText PrinterS/استخدام إعداد الطابعة: ""
*ar.ManualRGBText Off/إيقاف: ""
*ar.ManualRGBText sRGBDisplay/شاشة sRGB: ""
*ar.ManualRGBText sRGBVivid/شاشة sRGB زاهية: ""
*ar.ManualRGBText DisplayRealBlack/الشاشة – الأسود الحقيقي: ""
*ar.ManualRGBText Vivid/زاهية: ""
*ar.Translation ManualRGBGraphics/تصحيح RGB للرسومات: ""
*ar.ManualRGBGraphics PrinterS/استخدام إعداد الطابعة: ""
*ar.ManualRGBGraphics Off/إيقاف: ""
*ar.ManualRGBGraphics sRGBDisplay/شاشة sRGB: ""
*ar.ManualRGBGraphics sRGBVivid/شاشة sRGB زاهية: ""
*ar.ManualRGBGraphics DisplayRealBlack/الشاشة – الأسود الحقيقي: ""
*ar.ManualRGBGraphics Vivid/زاهية: ""
*ar.Translation ManualCMYK/تصحيح CMYK: ""
*ar.ManualCMYK PrinterS/استخدام إعداد الطابعة: ""
*ar.ManualCMYK Off/إيقاف: ""
*ar.ManualCMYK VividCMYK/أحبار CMYK الزاهية: ""
*ar.ManualCMYK EuroCMYK/أحبار CMYK الأوروبية: ""
*ar.ManualCMYK USCMYK/الولايات المتحدة CMYK: ""
*ar.Translation Color/ألوان: ""
*ar.Translation ColorSaver/ColorSaverTM: ""
*ar.ColorSaver PrinterS/استخدام إعداد الطابعة: ""
*ar.ColorSaver TrueM/تشغيل: ""
*ar.ColorSaver FalseM/إيقاف: ""
*ar.Translation ColorMode/وضع الألوان: ""
*ar.ColorMode PrinterS/استخدام إعداد الطابعة: ""
*ar.ColorMode TrueM/ألوان: ""
*ar.ColorMode FalseM/أحادي اللون: ""
*ar.Translation RGBCorrection/تصحيح RGB: ""
*ar.Translation LexBrightness/الإضاءة: ""
*ar.LexBrightness PrinterS/استخدام إعداد الطابعة: ""
*ar.LexBrightness -6/ -6: ""
*ar.LexBrightness -5/ -5: ""
*ar.LexBrightness -4/ -4: ""
*ar.LexBrightness -3/ -3: ""
*ar.LexBrightness -2/ -2: ""
*ar.LexBrightness -1/ -1: ""
*ar.LexBrightness 0/ 0: ""
*ar.LexBrightness +1/ +1: ""
*ar.LexBrightness +2/ +2: ""
*ar.LexBrightness +3/ +3: ""
*ar.LexBrightness +4/ +4: ""
*ar.LexBrightness +5/ +5: ""
*ar.LexBrightness +6/ +6: ""
*ar.Translation LexContrast/التباين: ""
*ar.LexContrast PrinterS/استخدام إعداد الطابعة: ""
*ar.LexContrast 0/0: ""
*ar.LexContrast 1/1: ""
*ar.LexContrast 2/2: ""
*ar.LexContrast 3/3: ""
*ar.LexContrast 4/4: ""
*ar.LexContrast 5/5: ""
*ar.Translation LexSaturation/التشبع: ""
*ar.LexSaturation PrinterS/استخدام إعداد الطابعة: ""
*ar.LexSaturation 0/0: ""
*ar.LexSaturation 1/1: ""
*ar.LexSaturation 2/2: ""
*ar.LexSaturation 3/3: ""
*ar.LexSaturation 4/4: ""
*ar.LexSaturation 5/5: ""
*ar.Translation Paper/ورق: ""
*ar.Translation MediaType/نوع الورق: ""
*ar.MediaType PrinterS/استخدام إعداد الطابعة: ""
*ar.MediaType Plain/ورق عادي: ""
*ar.MediaType Colored/ملونة: ""
*ar.MediaType Transparency/ورق شفاف: ""
*ar.MediaType Card/Card stock: ""
*ar.MediaType Labels/ورق العناوين: ""
*ar.MediaType Bond/ورق فاخر: ""
*ar.MediaType Letterhead/ورق ذو رأسية: ""
*ar.MediaType Preprint/مطبوعة مسبقًا: ""
*ar.MediaType RoughEnvelope/ظرف خشن: ""
*ar.MediaType Envelope/ظرف: ""
*ar.MediaType Recycled/معاد تدويره: ""
*ar.MediaType Light/خفيف: ""
*ar.MediaType Heavy/ثقيل: ""
*ar.MediaType Glossy/ورق مصقول: ""
*ar.MediaType HeavyGlossy/ورق مصقول ثقيل: ""
*ar.MediaType Rough/خشن/قطني: ""
*ar.MediaType Custom1/النوع المخصص 1: ""
*ar.MediaType Custom2/النوع المخصص 2: ""
*ar.MediaType Custom3/النوع المخصص 3: ""
*ar.MediaType Custom4/النوع المخصص 4: ""
*ar.MediaType Custom5/النوع المخصص 5: ""
*ar.MediaType Custom6/النوع المخصص 6: ""
*ar.Translation LexBlankPage/طباعة الصفحات الفارغة: ""
*ar.LexBlankPage PrinterS/استخدام إعداد الطابعة: ""
*ar.LexBlankPage False/إيقاف: ""
*ar.LexBlankPage True/تشغيل: ""
*fr.Translation Manufacturer/Lexmark: ""
*fr.Translation ModelName/Lexmark C9200 Series: ""
*fr.Translation ShortNickName/Lexmark C9200 Series: ""
*fr.Translation NickName/Lexmark C9200 Series: ""
*fr.Translation PageSize/Format de support: ""
*fr.PageSize Letter/Lettre (8 1/2 x 11 pouces): ""
*fr.PageSize Legal/Légal (8,5 x 14 pouces): ""
*fr.PageSize 8.5x13.4028/Oficio(México)(8,5 x 13,4 po.): ""
*fr.PageSize B5/B5 (182 x 257 mm): ""
*fr.PageSize B4/JIS B4: ""
*fr.PageSize A4/A4 (210 x 297 mm): ""
*fr.PageSize Executive/Exécutive (7,25 x 10,5 pouces): ""
*fr.PageSize A5/A5 (148 x 210 mm): ""
*fr.PageSize A6/A6 (105 x 148 mm): ""
*fr.PageSize A3/A3 (297 x 420 mm): ""
*fr.PageSize LxkSRA3/SRA3 (320 x 450 mm): ""
*fr.PageSize Tabloid/Tabloid (11 x 17 in): ""
*fr.PageSize Lxk12x18in/Tabloid Oversize: ""
*fr.PageSize FanFoldGermanLegal/Folio (8 1/2 x 13 pouces): ""
*fr.PageSize Statement/Statement (5,5 x 8,5 pouces): ""
*fr.PageSize EnvMonarch/Env. 7 3/4 (3 7/8 x 7 1/2 po): ""
*fr.PageSize Env9/Env. 9 (3 7/8 x 8 7/8 po): ""
*fr.PageSize Env10/Env. 10 (4 1/8 x 9 1/2 po): ""
*fr.PageSize EnvDL/Enveloppe DL (110 x 220 mm): ""
*fr.PageSize EnvC5/Enveloppe C5 (162 x 229 mm): ""
*fr.PageSize ISOB5/Enveloppe B5 (176 x 250 mm): ""
*fr.PageSize OthEnv/Autre Enveloppe: ""
*fr.Translation InputSlot/Source d'alimentation du support: ""
*fr.InputSlot Tray1/Bac 1: ""
*fr.InputSlot Tray2/Bac 2: ""
*fr.InputSlot Tray3/Bac 3: ""
*fr.InputSlot Tray4/Bac 4: ""
*fr.InputSlot Tray5/Bac 5: ""
*fr.InputSlot MultipurposeFeeder/Bac Multifonction: ""
*fr.InputSlot ManualPaper/Manuel papier: ""
*fr.InputSlot ManualEnv/Enveloppe Manuel: ""
*fr.Translation InstallableOptions/Options installables: ""
*fr.Translation OptDuplex/Dispositif recto verso: ""
*fr.OptDuplex False/Pas installé: ""
*fr.OptDuplex True/Installée: ""
*fr.Translation OptFlash/Carte Mémoire Flash: ""
*fr.OptFlash False/Pas installé: ""
*fr.OptFlash True/Installée: ""
*fr.Translation OptTray2/Bac 2: ""
*fr.OptTray2 False/Pas installé: ""
*fr.OptTray2 True/Installée: ""
*fr.Translation OptTray3/Bac 3: ""
*fr.OptTray3 False/Pas installé: ""
*fr.OptTray3 True/Installée: ""
*fr.Translation OptTray4/Bac 4: ""
*fr.OptTray4 False/Pas installé: ""
*fr.OptTray4 True/Installée: ""
*fr.Translation OptTray5/Bac 5: ""
*fr.OptTray5 False/Pas installé: ""
*fr.OptTray5 True/Installée: ""
*fr.Translation OptMultipurposeFeeder/Bac Multifonction: ""
*fr.OptMultipurposeFeeder False/Pas installé: ""
*fr.OptMultipurposeFeeder True/Installée: ""
*fr.Translation OptBin1/Réceptacle 1: ""
*fr.OptBin1 False/Pas installé: ""
*fr.OptBin1 True/Installée: ""
*fr.Translation OptBin2/Réceptacle 2: ""
*fr.OptBin2 False/Pas installé: ""
*fr.OptBin2 True/Installée: ""
*fr.Translation OptBin3/Réceptacle 3: ""
*fr.OptBin3 False/Pas installé: ""
*fr.OptBin3 True/Installée: ""
*fr.Translation OptOffset/Décaler: ""
*fr.OptOffset False/Pas installé: ""
*fr.OptOffset True/Installée: ""
*fr.Translation OptStapler/Agrafage: ""
*fr.OptStapler False/Pas installé: ""
*fr.OptStapler True/Installée: ""
*fr.Translation OptHolePunch/Perforation: ""
*fr.OptHolePunch False/Pas installé: ""
*fr.OptHolePunch True/Installée: ""
*fr.Translation OptFold/Plier: ""
*fr.OptFold False/Pas installé: ""
*fr.OptFold True/Installée: ""
*fr.Translation Finishing/Finition: ""
*fr.Translation Duplex/Reliure Recto Verso: ""
*fr.Duplex None/Hors Fonction: ""
*fr.Duplex DuplexNoTumble/Reliure Bords Longs: ""
*fr.Duplex DuplexTumble/Reliure Bords Courts: ""
*fr.Translation Collate/Assemblage: ""
*fr.Collate True/En Fonction: ""
*fr.Collate False/Hors Fonction: ""
*fr.Translation SepPages/Séparateurs: ""
*fr.SepPages PrinterS/Utiliser param. imprim.: ""
*fr.SepPages NoneF/Hors Fonction: ""
*fr.SepPages Jobs/Entre les Documents: ""
*fr.SepPages Copies/Entre les Copies: ""
*fr.SepPages Pages/Entre les Pages: ""
*fr.Translation SepSource/Alimentation Séparateur: ""
*fr.SepSource PrinterS/Utiliser param. imprim.: ""
*fr.SepSource Tray1/Bac 1: ""
*fr.SepSource Tray2/Bac 2: ""
*fr.SepSource Tray3/Bac 3: ""
*fr.SepSource Tray4/Bac 4: ""
*fr.SepSource Tray5/Bac 5: ""
*fr.SepSource MultipurposeFeeder/Bac Multifonction: ""
*fr.Translation OutputBin/Réceptacle: ""
*fr.OutputBin PrinterS/Utiliser param. imprim.: ""
*fr.OutputBin StandardBin/Réceptacle Standard: ""
*fr.OutputBin Bin1/Réceptacle 1: ""
*fr.OutputBin Bin2/Réceptacle 2: ""
*fr.OutputBin Bin3/Réceptacle 3: ""
*fr.Translation Offset/Pages Décalées: ""
*fr.Offset PrinterS/Utiliser param. imprim.: ""
*fr.Offset OffsetOff/Hors Fonction: ""
*fr.Offset Copies/Entre les Copies: ""
*fr.Offset Jobs/Entre les Documents: ""
*fr.Translation HolePunch/Perforation: ""
*fr.HolePunch PrinterS/Utiliser param. imprim.: ""
*fr.HolePunch FalseM/Hors Fonction: ""
*fr.HolePunch 2Hole/2 perforations: ""
*fr.HolePunch 3Hole/3 perforations: ""
*fr.HolePunch 4Hole/4 perforations: ""
*fr.Translation StapleJob/Travail Agrafé: ""
*fr.StapleJob PrinterS/Utiliser param. imprim.: ""
*fr.StapleJob FalseM/Hors Fonction: ""
*fr.StapleJob TrueM/Automatique: ""
*fr.StapleJob TopLeft/Haut gauche: ""
*fr.StapleJob TopRight/Haut droit: ""
*fr.StapleJob BottomLeft/Bas gauche: ""
*fr.StapleJob BottomRight/Bas droit: ""
*fr.StapleJob DualTop/Double haut: ""
*fr.StapleJob DualLeft/Double gauche: ""
*fr.StapleJob DualBottom/Double bas: ""
*fr.StapleJob DualRight/Double droit: ""
*fr.Translation Fold/Plier: ""
*fr.Fold False/Hors Fonction: ""
*fr.Fold SaddleStitch/Plier et agrafer: ""
*fr.Fold BookletFold/Plier: ""
*fr.Fold BiFold/Plier chaque feuille séparément: ""
*fr.Fold TriFold/Pages en trois volets: ""
*fr.Translation Quality/Qualité: ""
*fr.Translation LXResolution/Résolution: ""
*fr.LXResolution 1200dpi/1200 ppp: ""
*fr.LXResolution 604x600dpi/2400 Qualité Image: ""
*fr.Translation Halftone/Demi-teintes: ""
*fr.Halftone PrinterS/Utiliser param. imprim.: ""
*fr.Halftone FalseF/Normale: ""
*fr.Halftone TrueF/Détails: ""
*fr.Translation TonerDarkness/Intensité Toner: ""
*fr.TonerDarkness PrinterS/Utiliser param. imprim.: ""
*fr.TonerDarkness 1/1: ""
*fr.TonerDarkness 2/2: ""
*fr.TonerDarkness 3/3: ""
*fr.TonerDarkness 4/4: ""
*fr.TonerDarkness 5/5: ""
*fr.Translation LexMirror/Miroir: ""
*fr.LexMirror True/En Fonction: ""
*fr.LexMirror False/Hors Fonction: ""
*fr.Translation ColorBalance/Equilibre couleur.: ""
*fr.Translation CyanBalance/Equilibre cyan: ""
*fr.CyanBalance PrinterS/Utiliser param. imprim.: ""
*fr.CyanBalance -5/ -5: ""
*fr.CyanBalance -4/ -4: ""
*fr.CyanBalance -3/ -3: ""
*fr.CyanBalance -2/ -2: ""
*fr.CyanBalance -1/ -1: ""
*fr.CyanBalance 0/ 0: ""
*fr.CyanBalance +1/ +1: ""
*fr.CyanBalance +2/ +2: ""
*fr.CyanBalance +3/ +3: ""
*fr.CyanBalance +4/ +4: ""
*fr.CyanBalance +5/ +5: ""
*fr.Translation MagentaBalance/Equilibre magenta: ""
*fr.MagentaBalance PrinterS/Utiliser param. imprim.: ""
*fr.MagentaBalance -5/ -5: ""
*fr.MagentaBalance -4/ -4: ""
*fr.MagentaBalance -3/ -3: ""
*fr.MagentaBalance -2/ -2: ""
*fr.MagentaBalance -1/ -1: ""
*fr.MagentaBalance 0/ 0: ""
*fr.MagentaBalance +1/ +1: ""
*fr.MagentaBalance +2/ +2: ""
*fr.MagentaBalance +3/ +3: ""
*fr.MagentaBalance +4/ +4: ""
*fr.MagentaBalance +5/ +5: ""
*fr.Translation YellowBalance/Equilibre jaune: ""
*fr.YellowBalance PrinterS/Utiliser param. imprim.: ""
*fr.YellowBalance -5/ -5: ""
*fr.YellowBalance -4/ -4: ""
*fr.YellowBalance -3/ -3: ""
*fr.YellowBalance -2/ -2: ""
*fr.YellowBalance -1/ -1: ""
*fr.YellowBalance 0/ 0: ""
*fr.YellowBalance +1/ +1: ""
*fr.YellowBalance +2/ +2: ""
*fr.YellowBalance +3/ +3: ""
*fr.YellowBalance +4/ +4: ""
*fr.YellowBalance +5/ +5: ""
*fr.Translation BlackBalance/Equilibre noir: ""
*fr.BlackBalance PrinterS/Utiliser param. imprim.: ""
*fr.BlackBalance -5/ -5: ""
*fr.BlackBalance -4/ -4: ""
*fr.BlackBalance -3/ -3: ""
*fr.BlackBalance -2/ -2: ""
*fr.BlackBalance -1/ -1: ""
*fr.BlackBalance 0/ 0: ""
*fr.BlackBalance +1/ +1: ""
*fr.BlackBalance +2/ +2: ""
*fr.BlackBalance +3/ +3: ""
*fr.BlackBalance +4/ +4: ""
*fr.BlackBalance +5/ +5: ""
*fr.Translation ColorCorrection/Correction des Couleurs: ""
*fr.Translation MediaColor/Correction des Couleurs: ""
*fr.MediaColor PrinterS/Utiliser param. imprim.: ""
*fr.MediaColor FalseM/Hors Fonction: ""
*fr.MediaColor Auto/Automatique: ""
*fr.MediaColor Manual/Manuel: ""
*fr.Translation ManualRGBImage/Correction RVB des images: ""
*fr.ManualRGBImage PrinterS/Utiliser param. imprim.: ""
*fr.ManualRGBImage Off/Hors Fonction: ""
*fr.ManualRGBImage sRGBDisplay/sRVB Ecran: ""
*fr.ManualRGBImage sRGBVivid/sRVB Vives: ""
*fr.ManualRGBImage DisplayRealBlack/Affichage - vrai noir: ""
*fr.ManualRGBImage Vivid/Vives: ""
*fr.Translation ManualRGBText/Correction RVB du texte: ""
*fr.ManualRGBText PrinterS/Utiliser param. imprim.: ""
*fr.ManualRGBText Off/Hors Fonction: ""
*fr.ManualRGBText sRGBDisplay/sRVB Ecran: ""
*fr.ManualRGBText sRGBVivid/sRVB Vives: ""
*fr.ManualRGBText DisplayRealBlack/Affichage - vrai noir: ""
*fr.ManualRGBText Vivid/Vives: ""
*fr.Translation ManualRGBGraphics/Correction RVB des graphiques: ""
*fr.ManualRGBGraphics PrinterS/Utiliser param. imprim.: ""
*fr.ManualRGBGraphics Off/Hors Fonction: ""
*fr.ManualRGBGraphics sRGBDisplay/sRVB Ecran: ""
*fr.ManualRGBGraphics sRGBVivid/sRVB Vives: ""
*fr.ManualRGBGraphics DisplayRealBlack/Affichage - vrai noir: ""
*fr.ManualRGBGraphics Vivid/Vives: ""
*fr.Translation ManualCMYK/Correction CMJN: ""
*fr.ManualCMYK PrinterS/Utiliser param. imprim.: ""
*fr.ManualCMYK Off/Hors Fonction: ""
*fr.ManualCMYK VividCMYK/CMJN vive: ""
*fr.ManualCMYK EuroCMYK/CMJN euro: ""
*fr.ManualCMYK USCMYK/CMJN US: ""
*fr.Translation Color/Couleur: ""
*fr.Translation ColorSaver/ColorSaverTM: ""
*fr.ColorSaver PrinterS/Utiliser param. imprim.: ""
*fr.ColorSaver TrueM/En Fonction: ""
*fr.ColorSaver FalseM/Hors Fonction: ""
*fr.Translation ColorMode/Modèle colorimétrique: ""
*fr.ColorMode PrinterS/Utiliser param. imprim.: ""
*fr.ColorMode TrueM/Couleur: ""
*fr.ColorMode FalseM/Monochrome: ""
*fr.Translation RGBCorrection/Correction RVB: ""
*fr.Translation LexBrightness/Luminosité: ""
*fr.LexBrightness PrinterS/Utiliser param. imprim.: ""
*fr.LexBrightness -6/ -6: ""
*fr.LexBrightness -5/ -5: ""
*fr.LexBrightness -4/ -4: ""
*fr.LexBrightness -3/ -3: ""
*fr.LexBrightness -2/ -2: ""
*fr.LexBrightness -1/ -1: ""
*fr.LexBrightness 0/ 0: ""
*fr.LexBrightness +1/ +1: ""
*fr.LexBrightness +2/ +2: ""
*fr.LexBrightness +3/ +3: ""
*fr.LexBrightness +4/ +4: ""
*fr.LexBrightness +5/ +5: ""
*fr.LexBrightness +6/ +6: ""
*fr.Translation LexContrast/Contraste: ""
*fr.LexContrast PrinterS/Utiliser param. imprim.: ""
*fr.LexContrast 0/0: ""
*fr.LexContrast 1/1: ""
*fr.LexContrast 2/2: ""
*fr.LexContrast 3/3: ""
*fr.LexContrast 4/4: ""
*fr.LexContrast 5/5: ""
*fr.Translation LexSaturation/Saturation: ""
*fr.LexSaturation PrinterS/Utiliser param. imprim.: ""
*fr.LexSaturation 0/0: ""
*fr.LexSaturation 1/1: ""
*fr.LexSaturation 2/2: ""
*fr.LexSaturation 3/3: ""
*fr.LexSaturation 4/4: ""
*fr.LexSaturation 5/5: ""
*fr.Translation Paper/Papier: ""
*fr.Translation MediaType/Type Papier: ""
*fr.MediaType PrinterS/Utiliser param. imprim.: ""
*fr.MediaType Plain/Ordinaire: ""
*fr.MediaType Colored/Couleur: ""
*fr.MediaType Transparency/Transparent: ""
*fr.MediaType Card/Card stock: ""
*fr.MediaType Labels/Etiquettes: ""
*fr.MediaType Bond/Qualité: ""
*fr.MediaType Letterhead/En-tête: ""
*fr.MediaType Preprint/Préimprimé: ""
*fr.MediaType RoughEnvelope/Enveloppe grenée: ""
*fr.MediaType Envelope/Enveloppe: ""
*fr.MediaType Recycled/Recyclé: ""
*fr.MediaType Light/Brillant: ""
*fr.MediaType Heavy/Lourd: ""
*fr.MediaType Glossy/Glacé: ""
*fr.MediaType HeavyGlossy/Glacé lourd: ""
*fr.MediaType Rough/Grenée/Coton: ""
*fr.MediaType Custom1/Personnalisé 1: ""
*fr.MediaType Custom2/Personnalisé 2: ""
*fr.MediaType Custom3/Personnalisé 3: ""
*fr.MediaType Custom4/Personnalisé 4: ""
*fr.MediaType Custom5/Personnalisé 5: ""
*fr.MediaType Custom6/Personnalisé 6: ""
*fr.Translation LexBlankPage/Imprimer pages vierges: ""
*fr.LexBlankPage PrinterS/Utiliser param. imprim.: ""
*fr.LexBlankPage False/Hors Fonction: ""
*fr.LexBlankPage True/En Fonction: ""
*de.Translation Manufacturer/Lexmark: ""
*de.Translation ModelName/Lexmark C9200 Series: ""
*de.Translation ShortNickName/Lexmark C9200 Series: ""
*de.Translation NickName/Lexmark C9200 Series: ""
*de.Translation PageSize/Medienformat: ""
*de.PageSize Letter/Letter (8 1/2 x 11) Zoll: ""
*de.PageSize Legal/Legal (8 1/2 x 14) Zoll: ""
*de.PageSize 8.5x13.4028/Oficio (Méxiko) (216 x 340) mm: ""
*de.PageSize B5/B5 (182 x 257) mm: ""
*de.PageSize B4/JIS B4: ""
*de.PageSize A4/A4 (210 x 297) mm: ""
*de.PageSize Executive/Executive (7 1/4 x 10 1/2) Zoll: ""
*de.PageSize A5/A5 (148 x 210) mm: ""
*de.PageSize A6/A6 (105 x 148) mm: ""
*de.PageSize A3/A3 (297 x 420 mm): ""
*de.PageSize LxkSRA3/SRA3 (320 x 450 mm): ""
*de.PageSize Tabloid/Tabloid (11 x 17 in): ""
*de.PageSize Lxk12x18in/Tabloid Oversize: ""
*de.PageSize FanFoldGermanLegal/Folio (8 1/2 x 13)Zoll: ""
*de.PageSize Statement/Statement (5 1/2 x 8 1/2) Zoll: ""
*de.PageSize EnvMonarch/Briefumschlag 7 3/4 (3 7/8x7 1/2) Zoll: ""
*de.PageSize Env9/Briefumschlag 9 (3 7/8 x 8 7/8) Zoll: ""
*de.PageSize Env10/Briefumschlag 10 (4 1/8 x 9 1/2) Zoll: ""
*de.PageSize EnvDL/Briefumschlag DL (110 x 220) mm: ""
*de.PageSize EnvC5/Briefumschlag C5 (162 x 229) mm: ""
*de.PageSize ISOB5/Briefumschlag B5 (176 x 250 mm): ""
*de.PageSize OthEnv/Anderer Briefumschlag: ""
*de.Translation InputSlot/Medienzuführung: ""
*de.InputSlot Tray1/Fach 1: ""
*de.InputSlot Tray2/Fach 2: ""
*de.InputSlot Tray3/Fach 3: ""
*de.InputSlot Tray4/Fach 4: ""
*de.InputSlot Tray5/Fach 5: ""
*de.InputSlot MultipurposeFeeder/Universalzuführung: ""
*de.InputSlot ManualPaper/Papier manuell: ""
*de.InputSlot ManualEnv/Briefumschlag manuell: ""
*de.Translation InstallableOptions/Installierbare Optionen: ""
*de.Translation OptDuplex/Duplexeinheit: ""
*de.OptDuplex False/Nicht Eingebaut: ""
*de.OptDuplex True/Eingebaut: ""
*de.Translation OptFlash/Flash Speicher: ""
*de.OptFlash False/Nicht Eingebaut: ""
*de.OptFlash True/Eingebaut: ""
*de.Translation OptTray2/Fach 2: ""
*de.OptTray2 False/Nicht Eingebaut: ""
*de.OptTray2 True/Eingebaut: ""
*de.Translation OptTray3/Fach 3: ""
*de.OptTray3 False/Nicht Eingebaut: ""
*de.OptTray3 True/Eingebaut: ""
*de.Translation OptTray4/Fach 4: ""
*de.OptTray4 False/Nicht Eingebaut: ""
*de.OptTray4 True/Eingebaut: ""
*de.Translation OptTray5/Fach 5: ""
*de.OptTray5 False/Nicht Eingebaut: ""
*de.OptTray5 True/Eingebaut: ""
*de.Translation OptMultipurposeFeeder/Universalzuführung: ""
*de.OptMultipurposeFeeder False/Nicht Eingebaut: ""
*de.OptMultipurposeFeeder True/Eingebaut: ""
*de.Translation OptBin1/Papierablage 1: ""
*de.OptBin1 False/Nicht Eingebaut: ""
*de.OptBin1 True/Eingebaut: ""
*de.Translation OptBin2/Papierablage 2: ""
*de.OptBin2 False/Nicht Eingebaut: ""
*de.OptBin2 True/Eingebaut: ""
*de.Translation OptBin3/Papierablage 3: ""
*de.OptBin3 False/Nicht Eingebaut: ""
*de.OptBin3 True/Eingebaut: ""
*de.Translation OptOffset/Versetzt: ""
*de.OptOffset False/Nicht Eingebaut: ""
*de.OptOffset True/Eingebaut: ""
*de.Translation OptStapler/Heften: ""
*de.OptStapler False/Nicht Eingebaut: ""
*de.OptStapler True/Eingebaut: ""
*de.Translation OptHolePunch/Lochen: ""
*de.OptHolePunch False/Nicht Eingebaut: ""
*de.OptHolePunch True/Eingebaut: ""
*de.Translation OptFold/Falten: ""
*de.OptFold False/Nicht Eingebaut: ""
*de.OptFold True/Eingebaut: ""
*de.Translation Finishing/Papierausgabe: ""
*de.Translation Duplex/Beidseitig Binderand: ""
*de.Duplex None/Aus: ""
*de.Duplex DuplexNoTumble/Lange Kante Binden: ""
*de.Duplex DuplexTumble/Kurze Kante Binden: ""
*de.Translation Collate/Sortieren: ""
*de.Collate True/Ein: ""
*de.Collate False/Aus: ""
*de.Translation SepPages/Trennseiten: ""
*de.SepPages PrinterS/Druckereinst. verw.: ""
*de.SepPages NoneF/Aus: ""
*de.SepPages Jobs/Zwischen Aufträgen: ""
*de.SepPages Copies/Zwischen Kopien: ""
*de.SepPages Pages/Zwischen Seiten: ""
*de.Translation SepSource/Trennseitenzufuhr: ""
*de.SepSource PrinterS/Druckereinst. verw.: ""
*de.SepSource Tray1/Fach 1: ""
*de.SepSource Tray2/Fach 2: ""
*de.SepSource Tray3/Fach 3: ""
*de.SepSource Tray4/Fach 4: ""
*de.SepSource Tray5/Fach 5: ""
*de.SepSource MultipurposeFeeder/Universalzuführung: ""
*de.Translation OutputBin/Papierablage: ""
*de.OutputBin PrinterS/Druckereinst. verw.: ""
*de.OutputBin StandardBin/Standardablage: ""
*de.OutputBin Bin1/Papierablage 1: ""
*de.OutputBin Bin2/Papierablage 2: ""
*de.OutputBin Bin3/Papierablage 3: ""
*de.Translation Offset/Versetzt stapeln: ""
*de.Offset PrinterS/Druckereinst. verw.: ""
*de.Offset OffsetOff/Aus: ""
*de.Offset Copies/Zwischen Kopien: ""
*de.Offset Jobs/Zwischen Aufträgen: ""
*de.Translation HolePunch/Lochen: ""
*de.HolePunch PrinterS/Druckereinst. verw.: ""
*de.HolePunch FalseM/Aus: ""
*de.HolePunch 2Hole/2-Loch: ""
*de.HolePunch 3Hole/3 x gelocht: ""
*de.HolePunch 4Hole/4 x gelocht: ""
*de.Translation StapleJob/Heften: ""
*de.StapleJob PrinterS/Druckereinst. verw.: ""
*de.StapleJob FalseM/Aus: ""
*de.StapleJob TrueM/Automatisch: ""
*de.StapleJob TopLeft/Oben links: ""
*de.StapleJob TopRight/Oben rechts: ""
*de.StapleJob BottomLeft/Unten links: ""
*de.StapleJob BottomRight/Unten rechts: ""
*de.StapleJob DualTop/Beidseitig oben: ""
*de.StapleJob DualLeft/Beidseitig links: ""
*de.StapleJob DualBottom/Beidseitig unten: ""
*de.StapleJob DualRight/Beidseitig rechts: ""
*de.Translation Fold/Falten: ""
*de.Fold False/Aus: ""
*de.Fold SaddleStitch/Falten und heften: ""
*de.Fold BookletFold/Falten: ""
*de.Fold BiFold/Jedes Blatt einzeln falten: ""
*de.Fold TriFold/Einzelne Seiten dreifach falten: ""
*de.Translation Quality/Qualität: ""
*de.Translation LXResolution/Auflösung: ""
*de.LXResolution 1200dpi/1200 dpi: ""
*de.LXResolution 604x600dpi/2400 Bildqualität: ""
*de.Translation Halftone/Halbton: ""
*de.Halftone PrinterS/Druckereinst. verw.: ""
*de.Halftone FalseF/Normal : ""
*de.Halftone TrueF/Detail: ""
*de.Translation TonerDarkness/Tonerdeckung: ""
*de.TonerDarkness PrinterS/Druckereinst. verw.: ""
*de.TonerDarkness 1/1: ""
*de.TonerDarkness 2/2: ""
*de.TonerDarkness 3/3: ""
*de.TonerDarkness 4/4: ""
*de.TonerDarkness 5/5: ""
*de.Translation LexMirror/Spiegeln: ""
*de.LexMirror True/Ein: ""
*de.LexMirror False/Aus: ""
*de.Translation ColorBalance/Farbausgleich: ""
*de.Translation CyanBalance/Farbausgleich cyan: ""
*de.CyanBalance PrinterS/Druckereinst. verw.: ""
*de.CyanBalance -5/ -5: ""
*de.CyanBalance -4/ -4: ""
*de.CyanBalance -3/ -3: ""
*de.CyanBalance -2/ -2: ""
*de.CyanBalance -1/ -1: ""
*de.CyanBalance 0/ 0: ""
*de.CyanBalance +1/ +1: ""
*de.CyanBalance +2/ +2: ""
*de.CyanBalance +3/ +3: ""
*de.CyanBalance +4/ +4: ""
*de.CyanBalance +5/ +5: ""
*de.Translation MagentaBalance/Farbausgleich magenta: ""
*de.MagentaBalance PrinterS/Druckereinst. verw.: ""
*de.MagentaBalance -5/ -5: ""
*de.MagentaBalance -4/ -4: ""
*de.MagentaBalance -3/ -3: ""
*de.MagentaBalance -2/ -2: ""
*de.MagentaBalance -1/ -1: ""
*de.MagentaBalance 0/ 0: ""
*de.MagentaBalance +1/ +1: ""
*de.MagentaBalance +2/ +2: ""
*de.MagentaBalance +3/ +3: ""
*de.MagentaBalance +4/ +4: ""
*de.MagentaBalance +5/ +5: ""
*de.Translation YellowBalance/Farbausgleich gelb: ""
*de.YellowBalance PrinterS/Druckereinst. verw.: ""
*de.YellowBalance -5/ -5: ""
*de.YellowBalance -4/ -4: ""
*de.YellowBalance -3/ -3: ""
*de.YellowBalance -2/ -2: ""
*de.YellowBalance -1/ -1: ""
*de.YellowBalance 0/ 0: ""
*de.YellowBalance +1/ +1: ""
*de.YellowBalance +2/ +2: ""
*de.YellowBalance +3/ +3: ""
*de.YellowBalance +4/ +4: ""
*de.YellowBalance +5/ +5: ""
*de.Translation BlackBalance/Farbausgleich schwarz: ""
*de.BlackBalance PrinterS/Druckereinst. verw.: ""
*de.BlackBalance -5/ -5: ""
*de.BlackBalance -4/ -4: ""
*de.BlackBalance -3/ -3: ""
*de.BlackBalance -2/ -2: ""
*de.BlackBalance -1/ -1: ""
*de.BlackBalance 0/ 0: ""
*de.BlackBalance +1/ +1: ""
*de.BlackBalance +2/ +2: ""
*de.BlackBalance +3/ +3: ""
*de.BlackBalance +4/ +4: ""
*de.BlackBalance +5/ +5: ""
*de.Translation ColorCorrection/Farbanpassung: ""
*de.Translation MediaColor/Farbanpassung: ""
*de.MediaColor PrinterS/Druckereinst. verw.: ""
*de.MediaColor FalseM/Aus: ""
*de.MediaColor Auto/Automatisch: ""
*de.MediaColor Manual/Manuell: ""
*de.Translation ManualRGBImage/RGB-Anpassung für Bilder: ""
*de.ManualRGBImage PrinterS/Druckereinst. verw.: ""
*de.ManualRGBImage Off/Aus: ""
*de.ManualRGBImage sRGBDisplay/sRGB Bildschirm: ""
*de.ManualRGBImage sRGBVivid/sRGB Leuchtend: ""
*de.ManualRGBImage DisplayRealBlack/Anzeige - Echtes Schwarz: ""
*de.ManualRGBImage Vivid/Leuchtend: ""
*de.Translation ManualRGBText/RGB-Anpassung für Text: ""
*de.ManualRGBText PrinterS/Druckereinst. verw.: ""
*de.ManualRGBText Off/Aus: ""
*de.ManualRGBText sRGBDisplay/sRGB Bildschirm: ""
*de.ManualRGBText sRGBVivid/sRGB Leuchtend: ""
*de.ManualRGBText DisplayRealBlack/Anzeige - Echtes Schwarz: ""
*de.ManualRGBText Vivid/Leuchtend: ""
*de.Translation ManualRGBGraphics/RGB-Anpassung für Grafiken: ""
*de.ManualRGBGraphics PrinterS/Druckereinst. verw.: ""
*de.ManualRGBGraphics Off/Aus: ""
*de.ManualRGBGraphics sRGBDisplay/sRGB Bildschirm: ""
*de.ManualRGBGraphics sRGBVivid/sRGB Leuchtend: ""
*de.ManualRGBGraphics DisplayRealBlack/Anzeige - Echtes Schwarz: ""
*de.ManualRGBGraphics Vivid/Leuchtend: ""
*de.Translation ManualCMYK/CMYK-Anpassung: ""
*de.ManualCMYK PrinterS/Druckereinst. verw.: ""
*de.ManualCMYK Off/Aus: ""
*de.ManualCMYK VividCMYK/Leuchtend CMYK: ""
*de.ManualCMYK EuroCMYK/Euro-CMYK: ""
*de.ManualCMYK USCMYK/US-CMYK: ""
*de.Translation Color/Farbanpassung: ""
*de.Translation ColorSaver/ColorSaverTM: ""
*de.ColorSaver PrinterS/Druckereinst. verw.: ""
*de.ColorSaver TrueM/Ein: ""
*de.ColorSaver FalseM/Aus: ""
*de.Translation ColorMode/Farbmodus: ""
*de.ColorMode PrinterS/Druckereinst. verw.: ""
*de.ColorMode TrueM/Farbanpassung: ""
*de.ColorMode FalseM/Schwarzweiß: ""
*de.Translation RGBCorrection/RGB-Korrektur: ""
*de.Translation LexBrightness/Helligkeit: ""
*de.LexBrightness PrinterS/Druckereinst. verw.: ""
*de.LexBrightness -6/ -6: ""
*de.LexBrightness -5/ -5: ""
*de.LexBrightness -4/ -4: ""
*de.LexBrightness -3/ -3: ""
*de.LexBrightness -2/ -2: ""
*de.LexBrightness -1/ -1: ""
*de.LexBrightness 0/ 0: ""
*de.LexBrightness +1/ +1: ""
*de.LexBrightness +2/ +2: ""
*de.LexBrightness +3/ +3: ""
*de.LexBrightness +4/ +4: ""
*de.LexBrightness +5/ +5: ""
*de.LexBrightness +6/ +6: ""
*de.Translation LexContrast/Kontrast: ""
*de.LexContrast PrinterS/Druckereinst. verw.: ""
*de.LexContrast 0/0: ""
*de.LexContrast 1/1: ""
*de.LexContrast 2/2: ""
*de.LexContrast 3/3: ""
*de.LexContrast 4/4: ""
*de.LexContrast 5/5: ""
*de.Translation LexSaturation/Farbsättigung: ""
*de.LexSaturation PrinterS/Druckereinst. verw.: ""
*de.LexSaturation 0/0: ""
*de.LexSaturation 1/1: ""
*de.LexSaturation 2/2: ""
*de.LexSaturation 3/3: ""
*de.LexSaturation 4/4: ""
*de.LexSaturation 5/5: ""
*de.Translation Paper/Papier: ""
*de.Translation MediaType/Papiersorte: ""
*de.MediaType PrinterS/Druckereinst. verw.: ""
*de.MediaType Plain/Normalpapier: ""
*de.MediaType Colored/Farbpapier: ""
*de.MediaType Transparency/Folien: ""
*de.MediaType Card/Card stock: ""
*de.MediaType Labels/Etiketten: ""
*de.MediaType Bond/Feinpostpapier: ""
*de.MediaType Letterhead/Briefbogen: ""
*de.MediaType Preprint/Vorgedruckt: ""
*de.MediaType RoughEnvelope/Rauer Umschlag: ""
*de.MediaType Envelope/Briefumschlag: ""
*de.MediaType Recycled/Recycling-Papier: ""
*de.MediaType Light/Leichtes Papier: ""
*de.MediaType Heavy/Schweres Papier: ""
*de.MediaType Glossy/Glanz: ""
*de.MediaType HeavyGlossy/Hochglanz: ""
*de.MediaType Rough/Rau/Baumwolle: ""
*de.MediaType Custom1/Benutzerdef. 1: ""
*de.MediaType Custom2/Benutzerdef. 2: ""
*de.MediaType Custom3/Benutzerdef. 3: ""
*de.MediaType Custom4/Benutzerdef. 4: ""
*de.MediaType Custom5/Benutzerdef. 5: ""
*de.MediaType Custom6/Benutzerdef. 6: ""
*de.Translation LexBlankPage/Leere Seiten drucken: ""
*de.LexBlankPage PrinterS/Druckereinst. verw.: ""
*de.LexBlankPage False/Aus: ""
*de.LexBlankPage True/Ein: ""
*it.Translation Manufacturer/Lexmark: ""
*it.Translation ModelName/Lexmark C9200 Series: ""
*it.Translation ShortNickName/Lexmark C9200 Series: ""
*it.Translation NickName/Lexmark C9200 Series: ""
*it.Translation PageSize/Dimensioni supporto: ""
*it.PageSize Letter/Letter (8 1/2 x 11 poll): ""
*it.PageSize Legal/Legal (8 1/2 x 14 poll): ""
*it.PageSize 8.5x13.4028/Oficio (Messico) (216 x 340 mm): ""
*it.PageSize B5/B5 (182 x 257 mm): ""
*it.PageSize B4/JIS B4: ""
*it.PageSize A4/A4 (210 x 297 mm): ""
*it.PageSize Executive/Executive (7 1/4 x 10 1/2 poll): ""
*it.PageSize A5/A5 (148 x 210 mm): ""
*it.PageSize A6/A6 (105 x 148 mm): ""
*it.PageSize A3/A3 (297 x 420 mm): ""
*it.PageSize LxkSRA3/SRA3 (320 x 450 mm): ""
*it.PageSize Tabloid/Tabloid (11 x 17 in): ""
*it.PageSize Lxk12x18in/Tabloid Oversize: ""
*it.PageSize FanFoldGermanLegal/Folio (8 1/2 x 13 poll): ""
*it.PageSize Statement/Statement (5 1/2 x 8 1/2 poll): ""
*it.PageSize EnvMonarch/Busta 7 3/4 (3 7/8x7 1/2 poll): ""
*it.PageSize Env9/Busta 9 (3 7/8 x 8 7/8 poll): ""
*it.PageSize Env10/Busta 10 (4 1/8 x 9 1/2 poll): ""
*it.PageSize EnvDL/Busta DL (110 x 220 mm): ""
*it.PageSize EnvC5/Busta C5 (162 x 229 mm): ""
*it.PageSize ISOB5/Busta B5 (176 x 250 mm): ""
*it.PageSize OthEnv/Altre buste: ""
*it.Translation InputSlot/Origine supporto: ""
*it.InputSlot Tray1/Vassoio 1: ""
*it.InputSlot Tray2/Vassoio 2: ""
*it.InputSlot Tray3/Vassoio 3: ""
*it.InputSlot Tray4/Vassoio 4: ""
*it.InputSlot Tray5/Vassoio 5: ""
*it.InputSlot MultipurposeFeeder/Alimentatore multiuso: ""
*it.InputSlot ManualPaper/Carta manuale: ""
*it.InputSlot ManualEnv/Busta Manuale: ""
*it.Translation InstallableOptions/Opzioni installabili: ""
*it.Translation OptDuplex/Opzione fronte/retro: ""
*it.OptDuplex False/Non Installato: ""
*it.OptDuplex True/Installato: ""
*it.Translation OptFlash/Memoria flash: ""
*it.OptFlash False/Non Installato: ""
*it.OptFlash True/Installato: ""
*it.Translation OptTray2/Vassoio 2: ""
*it.OptTray2 False/Non Installato: ""
*it.OptTray2 True/Installato: ""
*it.Translation OptTray3/Vassoio 3: ""
*it.OptTray3 False/Non Installato: ""
*it.OptTray3 True/Installato: ""
*it.Translation OptTray4/Vassoio 4: ""
*it.OptTray4 False/Non Installato: ""
*it.OptTray4 True/Installato: ""
*it.Translation OptTray5/Vassoio 5: ""
*it.OptTray5 False/Non Installato: ""
*it.OptTray5 True/Installato: ""
*it.Translation OptMultipurposeFeeder/Alimentatore multiuso: ""
*it.OptMultipurposeFeeder False/Non Installato: ""
*it.OptMultipurposeFeeder True/Installato: ""
*it.Translation OptBin1/Racc. di uscita 1: ""
*it.OptBin1 False/Non Installato: ""
*it.OptBin1 True/Installato: ""
*it.Translation OptBin2/Racc. di uscita 2: ""
*it.OptBin2 False/Non Installato: ""
*it.OptBin2 True/Installato: ""
*it.Translation OptBin3/Racc. di uscita 3: ""
*it.OptBin3 False/Non Installato: ""
*it.OptBin3 True/Installato: ""
*it.Translation OptOffset/Separazione: ""
*it.OptOffset False/Non Installato: ""
*it.OptOffset True/Installato: ""
*it.Translation OptStapler/Cucitura: ""
*it.OptStapler False/Non Installato: ""
*it.OptStapler True/Installato: ""
*it.Translation OptHolePunch/Perforazione: ""
*it.OptHolePunch False/Non Installato: ""
*it.OptHolePunch True/Installato: ""
*it.Translation OptFold/Piegatura: ""
*it.OptFold False/Non Installato: ""
*it.OptFold True/Installato: ""
*it.Translation Finishing/Fascicolazione: ""
*it.Translation Duplex/Fronte/Retro: ""
*it.Duplex None/Disabilitato: ""
*it.Duplex DuplexNoTumble/Lato lungo: ""
*it.Duplex DuplexTumble/Lato corto: ""
*it.Translation Collate/Fascicolazione: ""
*it.Collate True/Abilitato: ""
*it.Collate False/Disabilitato: ""
*it.Translation SepPages/Fogli separatori: ""
*it.SepPages PrinterS/Usa impost. stampante: ""
*it.SepPages NoneF/Disabilitato: ""
*it.SepPages Jobs/Tra processi: ""
*it.SepPages Copies/Tra copie: ""
*it.SepPages Pages/Tra pagine: ""
*it.Translation SepSource/Origine separatore: ""
*it.SepSource PrinterS/Usa impost. stampante: ""
*it.SepSource Tray1/Vassoio 1: ""
*it.SepSource Tray2/Vassoio 2: ""
*it.SepSource Tray3/Vassoio 3: ""
*it.SepSource Tray4/Vassoio 4: ""
*it.SepSource Tray5/Vassoio 5: ""
*it.SepSource MultipurposeFeeder/Alimentatore multiuso: ""
*it.Translation OutputBin/Racc. di uscita: ""
*it.OutputBin PrinterS/Usa impost. stampante: ""
*it.OutputBin StandardBin/Raccoglitore standard: ""
*it.OutputBin Bin1/Racc. di uscita 1: ""
*it.OutputBin Bin2/Racc. di uscita 2: ""
*it.OutputBin Bin3/Racc. di uscita 3: ""
*it.Translation Offset/Pagine separatrici: ""
*it.Offset PrinterS/Usa impost. stampante: ""
*it.Offset OffsetOff/Disabilitato: ""
*it.Offset Copies/Tra copie: ""
*it.Offset Jobs/Tra processi: ""
*it.Translation HolePunch/Perforazione: ""
*it.HolePunch PrinterS/Usa impost. stampante: ""
*it.HolePunch FalseM/Disabilitato: ""
*it.HolePunch 2Hole/Perforazione 2 fori: ""
*it.HolePunch 3Hole/Perforazione 3 fori: ""
*it.HolePunch 4Hole/Perforazione 4 fori: ""
*it.Translation StapleJob/Processo cucitura: ""
*it.StapleJob PrinterS/Usa impost. stampante: ""
*it.StapleJob FalseM/Disabilitato: ""
*it.StapleJob TrueM/Automatico: ""
*it.StapleJob TopLeft/Superiore sinistro: ""
*it.StapleJob TopRight/Superiore destro: ""
*it.StapleJob BottomLeft/Inferiore sinistro: ""
*it.StapleJob BottomRight/Inferiore destro: ""
*it.StapleJob DualTop/Doppio superiore: ""
*it.StapleJob DualLeft/Doppio a sinistra: ""
*it.StapleJob DualBottom/Doppio inferiore: ""
*it.StapleJob DualRight/Doppio a destra: ""
*it.Translation Fold/Piegatura: ""
*it.Fold False/Disabilitato: ""
*it.Fold SaddleStitch/Piegatura e cucitura: ""
*it.Fold BookletFold/Piegatura: ""
*it.Fold BiFold/Piegare ogni foglio individualmente: ""
*it.Fold TriFold/Piega tre volte singole pagine: ""
*it.Translation Quality/Qualità: ""
*it.Translation LXResolution/Risoluzione: ""
*it.LXResolution 1200dpi/1200 dpi: ""
*it.LXResolution 604x600dpi/Qualità imm. 2400: ""
*it.Translation Halftone/Mezzatinta: ""
*it.Halftone PrinterS/Usa impost. stampante: ""
*it.Halftone FalseF/Normale: ""
*it.Halftone TrueF/Dettagli: ""
*it.Translation TonerDarkness/Intensità del toner: ""
*it.TonerDarkness PrinterS/Usa impost. stampante: ""
*it.TonerDarkness 1/1: ""
*it.TonerDarkness 2/2: ""
*it.TonerDarkness 3/3: ""
*it.TonerDarkness 4/4: ""
*it.TonerDarkness 5/5: ""
*it.Translation LexMirror/Speculare: ""
*it.LexMirror True/Abilitato: ""
*it.LexMirror False/Disabilitato: ""
*it.Translation ColorBalance/Bilanciamento colore: ""
*it.Translation CyanBalance/Bilanciamento Ciano: ""
*it.CyanBalance PrinterS/Usa impost. stampante: ""
*it.CyanBalance -5/ -5: ""
*it.CyanBalance -4/ -4: ""
*it.CyanBalance -3/ -3: ""
*it.CyanBalance -2/ -2: ""
*it.CyanBalance -1/ -1: ""
*it.CyanBalance 0/ 0: ""
*it.CyanBalance +1/ +1: ""
*it.CyanBalance +2/ +2: ""
*it.CyanBalance +3/ +3: ""
*it.CyanBalance +4/ +4: ""
*it.CyanBalance +5/ +5: ""
*it.Translation MagentaBalance/Bilanciamento Magenta: ""
*it.MagentaBalance PrinterS/Usa impost. stampante: ""
*it.MagentaBalance -5/ -5: ""
*it.MagentaBalance -4/ -4: ""
*it.MagentaBalance -3/ -3: ""
*it.MagentaBalance -2/ -2: ""
*it.MagentaBalance -1/ -1: ""
*it.MagentaBalance 0/ 0: ""
*it.MagentaBalance +1/ +1: ""
*it.MagentaBalance +2/ +2: ""
*it.MagentaBalance +3/ +3: ""
*it.MagentaBalance +4/ +4: ""
*it.MagentaBalance +5/ +5: ""
*it.Translation YellowBalance/Bilanciamento Giallo: ""
*it.YellowBalance PrinterS/Usa impost. stampante: ""
*it.YellowBalance -5/ -5: ""
*it.YellowBalance -4/ -4: ""
*it.YellowBalance -3/ -3: ""
*it.YellowBalance -2/ -2: ""
*it.YellowBalance -1/ -1: ""
*it.YellowBalance 0/ 0: ""
*it.YellowBalance +1/ +1: ""
*it.YellowBalance +2/ +2: ""
*it.YellowBalance +3/ +3: ""
*it.YellowBalance +4/ +4: ""
*it.YellowBalance +5/ +5: ""
*it.Translation BlackBalance/Bilanciamento Nero: ""
*it.BlackBalance PrinterS/Usa impost. stampante: ""
*it.BlackBalance -5/ -5: ""
*it.BlackBalance -4/ -4: ""
*it.BlackBalance -3/ -3: ""
*it.BlackBalance -2/ -2: ""
*it.BlackBalance -1/ -1: ""
*it.BlackBalance 0/ 0: ""
*it.BlackBalance +1/ +1: ""
*it.BlackBalance +2/ +2: ""
*it.BlackBalance +3/ +3: ""
*it.BlackBalance +4/ +4: ""
*it.BlackBalance +5/ +5: ""
*it.Translation ColorCorrection/Correzione Colore: ""
*it.Translation MediaColor/Correzione Colore: ""
*it.MediaColor PrinterS/Usa impost. stampante: ""
*it.MediaColor FalseM/Disabilitato: ""
*it.MediaColor Auto/Automatico: ""
*it.MediaColor Manual/Manuale: ""
*it.Translation ManualRGBImage/Correzione RGB per immagini: ""
*it.ManualRGBImage PrinterS/Usa impost. stampante: ""
*it.ManualRGBImage Off/Disabilitato: ""
*it.ManualRGBImage sRGBDisplay/Schermo sRGB: ""
*it.ManualRGBImage sRGBVivid/Vivace sRGB: ""
*it.ManualRGBImage DisplayRealBlack/Schermo - Nero effettivo: ""
*it.ManualRGBImage Vivid/Vivace: ""
*it.Translation ManualRGBText/Correzione RGB per testo: ""
*it.ManualRGBText PrinterS/Usa impost. stampante: ""
*it.ManualRGBText Off/Disabilitato: ""
*it.ManualRGBText sRGBDisplay/Schermo sRGB: ""
*it.ManualRGBText sRGBVivid/Vivace sRGB: ""
*it.ManualRGBText DisplayRealBlack/Schermo - Nero effettivo: ""
*it.ManualRGBText Vivid/Vivace: ""
*it.Translation ManualRGBGraphics/Correzione RGB per grafica: ""
*it.ManualRGBGraphics PrinterS/Usa impost. stampante: ""
*it.ManualRGBGraphics Off/Disabilitato: ""
*it.ManualRGBGraphics sRGBDisplay/Schermo sRGB: ""
*it.ManualRGBGraphics sRGBVivid/Vivace sRGB: ""
*it.ManualRGBGraphics DisplayRealBlack/Schermo - Nero effettivo: ""
*it.ManualRGBGraphics Vivid/Vivace: ""
*it.Translation ManualCMYK/Correzione CMYK: ""
*it.ManualCMYK PrinterS/Usa impost. stampante: ""
*it.ManualCMYK Off/Disabilitato: ""
*it.ManualCMYK VividCMYK/CMYK vivace: ""
*it.ManualCMYK EuroCMYK/CMYK Euro: ""
*it.ManualCMYK USCMYK/CMYK US: ""
*it.Translation Color/Colore: ""
*it.Translation ColorSaver/ColorSaverTM: ""
*it.ColorSaver PrinterS/Usa impost. stampante: ""
*it.ColorSaver TrueM/Abilitato: ""
*it.ColorSaver FalseM/Disabilitato: ""
*it.Translation ColorMode/Modalità colore: ""
*it.ColorMode PrinterS/Usa impost. stampante: ""
*it.ColorMode TrueM/Colore: ""
*it.ColorMode FalseM/Monocromatica: ""
*it.Translation RGBCorrection/Correzione RGB: ""
*it.Translation LexBrightness/Luminosità: ""
*it.LexBrightness PrinterS/Usa impost. stampante: ""
*it.LexBrightness -6/ -6: ""
*it.LexBrightness -5/ -5: ""
*it.LexBrightness -4/ -4: ""
*it.LexBrightness -3/ -3: ""
*it.LexBrightness -2/ -2: ""
*it.LexBrightness -1/ -1: ""
*it.LexBrightness 0/ 0: ""
*it.LexBrightness +1/ +1: ""
*it.LexBrightness +2/ +2: ""
*it.LexBrightness +3/ +3: ""
*it.LexBrightness +4/ +4: ""
*it.LexBrightness +5/ +5: ""
*it.LexBrightness +6/ +6: ""
*it.Translation LexContrast/Contrasto: ""
*it.LexContrast PrinterS/Usa impost. stampante: ""
*it.LexContrast 0/0: ""
*it.LexContrast 1/1: ""
*it.LexContrast 2/2: ""
*it.LexContrast 3/3: ""
*it.LexContrast 4/4: ""
*it.LexContrast 5/5: ""
*it.Translation LexSaturation/Saturazione: ""
*it.LexSaturation PrinterS/Usa impost. stampante: ""
*it.LexSaturation 0/0: ""
*it.LexSaturation 1/1: ""
*it.LexSaturation 2/2: ""
*it.LexSaturation 3/3: ""
*it.LexSaturation 4/4: ""
*it.LexSaturation 5/5: ""
*it.Translation Paper/Carta: ""
*it.Translation MediaType/Tipo di carta: ""
*it.MediaType PrinterS/Usa impost. stampante: ""
*it.MediaType Plain/Normale: ""
*it.MediaType Colored/A colori: ""
*it.MediaType Transparency/Lucidi: ""
*it.MediaType Card/Card stock: ""
*it.MediaType Labels/Etichette: ""
*it.MediaType Bond/Carta di qualità: ""
*it.MediaType Letterhead/Carta intestata: ""
*it.MediaType Preprint/Prestampati: ""
*it.MediaType RoughEnvelope/Busta ruvida: ""
*it.MediaType Envelope/Busta: ""
*it.MediaType Recycled/Carta riciclata: ""
*it.MediaType Light/Chiaro: ""
*it.MediaType Heavy/Spessa: ""
*it.MediaType Glossy/Lucida: ""
*it.MediaType HeavyGlossy/Carta lucida pesante: ""
*it.MediaType Rough/Ruvida/cotone: ""
*it.MediaType Custom1/Carta person. tipo 1: ""
*it.MediaType Custom2/Carta person. tipo 2: ""
*it.MediaType Custom3/Carta person. tipo 3: ""
*it.MediaType Custom4/Carta person. tipo 4: ""
*it.MediaType Custom5/Carta person. tipo 5: ""
*it.MediaType Custom6/Carta person. tipo 6: ""
*it.Translation LexBlankPage/Stampa pagine vuote: ""
*it.LexBlankPage PrinterS/Usa impost. stampante: ""
*it.LexBlankPage False/Disabilitato: ""
*it.LexBlankPage True/Abilitato: ""
*es.Translation Manufacturer/Lexmark: ""
*es.Translation ModelName/Lexmark C9200 Series: ""
*es.Translation ShortNickName/Lexmark C9200 Series: ""
*es.Translation NickName/Lexmark C9200 Series: ""
*es.Translation PageSize/Tamaño del material: ""
*es.PageSize Letter/Carta (8 1/2 x 11 pulg.): ""
*es.PageSize Legal/Legal (8 1/2 x 14 pulg.): ""
*es.PageSize 8.5x13.4028/Oficio (México) (216 x 340 mm): ""
*es.PageSize B5/B5 (182 x 257 mm): ""
*es.PageSize B4/JIS B4: ""
*es.PageSize A4/A4 (210 x 297 mm): ""
*es.PageSize Executive/Ejecutivo (7 1/4 x 10 1/2 p.): ""
*es.PageSize A5/A5 (148 x 210 mm): ""
*es.PageSize A6/A6 (105 x 148 mm): ""
*es.PageSize A3/A3 (297 x 420 mm): ""
*es.PageSize LxkSRA3/SRA3 (320 x 450 mm): ""
*es.PageSize Tabloid/Tabloid (11 x 17 in): ""
*es.PageSize Lxk12x18in/Tabloid Oversize: ""
*es.PageSize FanFoldGermanLegal/Folio (8 1/2 x 13 pulg.): ""
*es.PageSize Statement/Media carta (5 1/2 x 8 1/2 p.): ""
*es.PageSize EnvMonarch/Sobre 7 3/4 (3 7/8 x 7 1/2 p.): ""
*es.PageSize Env9/Sobre 9 (3 7/8 x 8 7/8 pulg.): ""
*es.PageSize Env10/Sobre 10 (4 1/8 x 9 1/2 pulg.): ""
*es.PageSize EnvDL/Sobre DL (110 x 220 mm): ""
*es.PageSize EnvC5/Sobre C5 (162 x 229 mm): ""
*es.PageSize ISOB5/Sobre B5 (176 x 250 mm): ""
*es.PageSize OthEnv/Otro Sobre: ""
*es.Translation InputSlot/Origen del material: ""
*es.InputSlot Tray1/Bandeja 1: ""
*es.InputSlot Tray2/Bandeja 2: ""
*es.InputSlot Tray3/Bandeja 3: ""
*es.InputSlot Tray4/Bandeja 4: ""
*es.InputSlot Tray5/Bandeja 5: ""
*es.InputSlot MultipurposeFeeder/Alimentador Multiuso: ""
*es.InputSlot ManualPaper/Papel manual: ""
*es.InputSlot ManualEnv/Sobre manual: ""
*es.Translation InstallableOptions/Opciones instalables: ""
*es.Translation OptDuplex/Dispositivo dúplex: ""
*es.OptDuplex False/No Instalado: ""
*es.OptDuplex True/Instalada: ""
*es.Translation OptFlash/Tarjeta Memoria Flash: ""
*es.OptFlash False/No Instalado: ""
*es.OptFlash True/Instalada: ""
*es.Translation OptTray2/Bandeja 2: ""
*es.OptTray2 False/No Instalado: ""
*es.OptTray2 True/Instalada: ""
*es.Translation OptTray3/Bandeja 3: ""
*es.OptTray3 False/No Instalado: ""
*es.OptTray3 True/Instalada: ""
*es.Translation OptTray4/Bandeja 4: ""
*es.OptTray4 False/No Instalado: ""
*es.OptTray4 True/Instalada: ""
*es.Translation OptTray5/Bandeja 5: ""
*es.OptTray5 False/No Instalado: ""
*es.OptTray5 True/Instalada: ""
*es.Translation OptMultipurposeFeeder/Alimentador Multiuso: ""
*es.OptMultipurposeFeeder False/No Instalado: ""
*es.OptMultipurposeFeeder True/Instalada: ""
*es.Translation OptBin1/Bandeja de Salida 1: ""
*es.OptBin1 False/No Instalado: ""
*es.OptBin1 True/Instalada: ""
*es.Translation OptBin2/Bandeja de Salida 2: ""
*es.OptBin2 False/No Instalado: ""
*es.OptBin2 True/Instalada: ""
*es.Translation OptBin3/Bandeja de Salida 3: ""
*es.OptBin3 False/No Instalado: ""
*es.OptBin3 True/Instalada: ""
*es.Translation OptOffset/Desplazamiento: ""
*es.OptOffset False/No Instalado: ""
*es.OptOffset True/Instalada: ""
*es.Translation OptStapler/Grapar: ""
*es.OptStapler False/No Instalado: ""
*es.OptStapler True/Instalada: ""
*es.Translation OptHolePunch/Perforador: ""
*es.OptHolePunch False/No Instalado: ""
*es.OptHolePunch True/Instalada: ""
*es.Translation OptFold/Doblar: ""
*es.OptFold False/No Instalado: ""
*es.OptFold True/Instalada: ""
*es.Translation Finishing/Acabado: ""
*es.Translation Duplex/Encuadernado Doble: ""
*es.Duplex None/Desactivado: ""
*es.Duplex DuplexNoTumble/Borde Largo: ""
*es.Duplex DuplexTumble/Borde Corto: ""
*es.Translation Collate/Clasificación: ""
*es.Collate True/Activado: ""
*es.Collate False/Desactivado: ""
*es.Translation SepPages/Hojas de separación: ""
*es.SepPages PrinterS/Usar valores impresora: ""
*es.SepPages NoneF/Desactivado: ""
*es.SepPages Jobs/Entre trabajos: ""
*es.SepPages Copies/Entre copias: ""
*es.SepPages Pages/Entre páginas: ""
*es.Translation SepSource/Fuente de separadores: ""
*es.SepSource PrinterS/Usar valores impresora: ""
*es.SepSource Tray1/Bandeja 1: ""
*es.SepSource Tray2/Bandeja 2: ""
*es.SepSource Tray3/Bandeja 3: ""
*es.SepSource Tray4/Bandeja 4: ""
*es.SepSource Tray5/Bandeja 5: ""
*es.SepSource MultipurposeFeeder/Alimentador Multiuso: ""
*es.Translation OutputBin/Bandeja de Salida: ""
*es.OutputBin PrinterS/Usar valores impresora: ""
*es.OutputBin StandardBin/Bandeja de salida Estándar: ""
*es.OutputBin Bin1/Bandeja de Salida 1: ""
*es.OutputBin Bin2/Bandeja de Salida 2: ""
*es.OutputBin Bin3/Bandeja de Salida 3: ""
*es.Translation Offset/Páginas de desviación: ""
*es.Offset PrinterS/Usar valores impresora: ""
*es.Offset OffsetOff/Desactivado: ""
*es.Offset Copies/Entre copias: ""
*es.Offset Jobs/Entre trabajos: ""
*es.Translation HolePunch/Perforador: ""
*es.HolePunch PrinterS/Usar valores impresora: ""
*es.HolePunch FalseM/Desactivado: ""
*es.HolePunch 2Hole/2 orificios: ""
*es.HolePunch 3Hole/3 orificios: ""
*es.HolePunch 4Hole/4 orificios: ""
*es.Translation StapleJob/Grapar trabajo: ""
*es.StapleJob PrinterS/Usar valores impresora: ""
*es.StapleJob FalseM/Desactivado: ""
*es.StapleJob TrueM/Automático: ""
*es.StapleJob TopLeft/Superior izquierda: ""
*es.StapleJob TopRight/Superior derecha: ""
*es.StapleJob BottomLeft/Inferior izquierda: ""
*es.StapleJob BottomRight/Inferior derecha: ""
*es.StapleJob DualTop/Dual superior: ""
*es.StapleJob DualLeft/Dual izquierda: ""
*es.StapleJob DualBottom/Dual inferior: ""
*es.StapleJob DualRight/Dual derecha: ""
*es.Translation Fold/Doblar: ""
*es.Fold False/Desactivado: ""
*es.Fold SaddleStitch/Doblar y grapar: ""
*es.Fold BookletFold/Doblar: ""
*es.Fold BiFold/Doblar cada hoja individualmente: ""
*es.Fold TriFold/Tríptico con páginas individuales: ""
*es.Translation Quality/Calidad: ""
*es.Translation LXResolution/Resolución: ""
*es.LXResolution 1200dpi/1200 ppp: ""
*es.LXResolution 604x600dpi/Calidad 2400IQ: ""
*es.Translation Halftone/Media tinta: ""
*es.Halftone PrinterS/Usar valores impresora: ""
*es.Halftone FalseF/Normal: ""
*es.Halftone TrueF/Detalle: ""
*es.Translation TonerDarkness/Intensidad del tóner: ""
*es.TonerDarkness PrinterS/Usar valores impresora: ""
*es.TonerDarkness 1/1: ""
*es.TonerDarkness 2/2: ""
*es.TonerDarkness 3/3: ""
*es.TonerDarkness 4/4: ""
*es.TonerDarkness 5/5: ""
*es.Translation LexMirror/Espejo: ""
*es.LexMirror True/Activado: ""
*es.LexMirror False/Desactivado: ""
*es.Translation ColorBalance/Mezcla de color: ""
*es.Translation CyanBalance/Mezcla de cian: ""
*es.CyanBalance PrinterS/Usar valores impresora: ""
*es.CyanBalance -5/ -5: ""
*es.CyanBalance -4/ -4: ""
*es.CyanBalance -3/ -3: ""
*es.CyanBalance -2/ -2: ""
*es.CyanBalance -1/ -1: ""
*es.CyanBalance 0/ 0: ""
*es.CyanBalance +1/ +1: ""
*es.CyanBalance +2/ +2: ""
*es.CyanBalance +3/ +3: ""
*es.CyanBalance +4/ +4: ""
*es.CyanBalance +5/ +5: ""
*es.Translation MagentaBalance/Mezcla de magenta: ""
*es.MagentaBalance PrinterS/Usar valores impresora: ""
*es.MagentaBalance -5/ -5: ""
*es.MagentaBalance -4/ -4: ""
*es.MagentaBalance -3/ -3: ""
*es.MagentaBalance -2/ -2: ""
*es.MagentaBalance -1/ -1: ""
*es.MagentaBalance 0/ 0: ""
*es.MagentaBalance +1/ +1: ""
*es.MagentaBalance +2/ +2: ""
*es.MagentaBalance +3/ +3: ""
*es.MagentaBalance +4/ +4: ""
*es.MagentaBalance +5/ +5: ""
*es.Translation YellowBalance/Mezcla de amarillo: ""
*es.YellowBalance PrinterS/Usar valores impresora: ""
*es.YellowBalance -5/ -5: ""
*es.YellowBalance -4/ -4: ""
*es.YellowBalance -3/ -3: ""
*es.YellowBalance -2/ -2: ""
*es.YellowBalance -1/ -1: ""
*es.YellowBalance 0/ 0: ""
*es.YellowBalance +1/ +1: ""
*es.YellowBalance +2/ +2: ""
*es.YellowBalance +3/ +3: ""
*es.YellowBalance +4/ +4: ""
*es.YellowBalance +5/ +5: ""
*es.Translation BlackBalance/Mezcla de negro: ""
*es.BlackBalance PrinterS/Usar valores impresora: ""
*es.BlackBalance -5/ -5: ""
*es.BlackBalance -4/ -4: ""
*es.BlackBalance -3/ -3: ""
*es.BlackBalance -2/ -2: ""
*es.BlackBalance -1/ -1: ""
*es.BlackBalance 0/ 0: ""
*es.BlackBalance +1/ +1: ""
*es.BlackBalance +2/ +2: ""
*es.BlackBalance +3/ +3: ""
*es.BlackBalance +4/ +4: ""
*es.BlackBalance +5/ +5: ""
*es.Translation ColorCorrection/Corrección de color: ""
*es.Translation MediaColor/Corrección de color: ""
*es.MediaColor PrinterS/Usar valores impresora: ""
*es.MediaColor FalseM/Desactivado: ""
*es.MediaColor Auto/Automático: ""
*es.MediaColor Manual/Guardar manualmente: ""
*es.Translation ManualRGBImage/Corrección de RGB para imágenes: ""
*es.ManualRGBImage PrinterS/Usar valores impresora: ""
*es.ManualRGBImage Off/Desactivado: ""
*es.ManualRGBImage sRGBDisplay/Pantalla sRGB: ""
*es.ManualRGBImage sRGBVivid/Intenso sRGB: ""
*es.ManualRGBImage DisplayRealBlack/Pantalla - Negro real: ""
*es.ManualRGBImage Vivid/Intenso: ""
*es.Translation ManualRGBText/Corrección de RGB para texto: ""
*es.ManualRGBText PrinterS/Usar valores impresora: ""
*es.ManualRGBText Off/Desactivado: ""
*es.ManualRGBText sRGBDisplay/Pantalla sRGB: ""
*es.ManualRGBText sRGBVivid/Intenso sRGB: ""
*es.ManualRGBText DisplayRealBlack/Pantalla - Negro real: ""
*es.ManualRGBText Vivid/Intenso: ""
*es.Translation ManualRGBGraphics/Corrección de RGB para gráficos: ""
*es.ManualRGBGraphics PrinterS/Usar valores impresora: ""
*es.ManualRGBGraphics Off/Desactivado: ""
*es.ManualRGBGraphics sRGBDisplay/Pantalla sRGB: ""
*es.ManualRGBGraphics sRGBVivid/Intenso sRGB: ""
*es.ManualRGBGraphics DisplayRealBlack/Pantalla - Negro real: ""
*es.ManualRGBGraphics Vivid/Intenso: ""
*es.Translation ManualCMYK/Corrección CMYK: ""
*es.ManualCMYK PrinterS/Usar valores impresora: ""
*es.ManualCMYK Off/Desactivado: ""
*es.ManualCMYK VividCMYK/CMYK intenso: ""
*es.ManualCMYK EuroCMYK/CMYK Europa: ""
*es.ManualCMYK USCMYK/CMYK EE.UU.: ""
*es.Translation Color/Color: ""
*es.Translation ColorSaver/ColorSaverTM: ""
*es.ColorSaver PrinterS/Usar valores impresora: ""
*es.ColorSaver TrueM/Activado: ""
*es.ColorSaver FalseM/Desactivado: ""
*es.Translation ColorMode/Modo de color: ""
*es.ColorMode PrinterS/Usar valores impresora: ""
*es.ColorMode TrueM/Color: ""
*es.ColorMode FalseM/Monocromo: ""
*es.Translation RGBCorrection/Corrección RGB: ""
*es.Translation LexBrightness/Brillo: ""
*es.LexBrightness PrinterS/Usar valores impresora: ""
*es.LexBrightness -6/ -6: ""
*es.LexBrightness -5/ -5: ""
*es.LexBrightness -4/ -4: ""
*es.LexBrightness -3/ -3: ""
*es.LexBrightness -2/ -2: ""
*es.LexBrightness -1/ -1: ""
*es.LexBrightness 0/ 0: ""
*es.LexBrightness +1/ +1: ""
*es.LexBrightness +2/ +2: ""
*es.LexBrightness +3/ +3: ""
*es.LexBrightness +4/ +4: ""
*es.LexBrightness +5/ +5: ""
*es.LexBrightness +6/ +6: ""
*es.Translation LexContrast/Contraste: ""
*es.LexContrast PrinterS/Usar valores impresora: ""
*es.LexContrast 0/0: ""
*es.LexContrast 1/1: ""
*es.LexContrast 2/2: ""
*es.LexContrast 3/3: ""
*es.LexContrast 4/4: ""
*es.LexContrast 5/5: ""
*es.Translation LexSaturation/Saturación: ""
*es.LexSaturation PrinterS/Usar valores impresora: ""
*es.LexSaturation 0/0: ""
*es.LexSaturation 1/1: ""
*es.LexSaturation 2/2: ""
*es.LexSaturation 3/3: ""
*es.LexSaturation 4/4: ""
*es.LexSaturation 5/5: ""
*es.Translation Paper/Papel: ""
*es.Translation MediaType/Tipo de papel: ""
*es.MediaType PrinterS/Usar valores impresora: ""
*es.MediaType Plain/Normal: ""
*es.MediaType Colored/De color: ""
*es.MediaType Transparency/Transparencia: ""
*es.MediaType Card/Card stock: ""
*es.MediaType Labels/Etiquetas: ""
*es.MediaType Bond/Alta calidad: ""
*es.MediaType Letterhead/Cabecera: ""
*es.MediaType Preprint/Preimpreso: ""
*es.MediaType RoughEnvelope/Sobre áspero: ""
*es.MediaType Envelope/Sobre: ""
*es.MediaType Recycled/Reciclado: ""
*es.MediaType Light/Claro: ""
*es.MediaType Heavy/Pesado: ""
*es.MediaType Glossy/Brillante: ""
*es.MediaType HeavyGlossy/Brillante pesado: ""
*es.MediaType Rough/Rugoso/algodón: ""
*es.MediaType Custom1/Tipo personalizado 1: ""
*es.MediaType Custom2/Tipo personalizado 2: ""
*es.MediaType Custom3/Tipo personalizado 3: ""
*es.MediaType Custom4/Tipo personalizado 4: ""
*es.MediaType Custom5/Tipo personalizado 5: ""
*es.MediaType Custom6/Tipo personalizado 6: ""
*es.Translation LexBlankPage/Imprimir páginas en blanco: ""
*es.LexBlankPage PrinterS/Usar valores impresora: ""
*es.LexBlankPage False/Desactivado: ""
*es.LexBlankPage True/Activado: ""
*ko.Translation Manufacturer/Lexmark: ""
*ko.Translation ModelName/Lexmark C9200 Series: ""
*ko.Translation ShortNickName/Lexmark C9200 Series: ""
*ko.Translation NickName/Lexmark C9200 Series: ""
*ko.Translation PageSize/용지 크기: ""
*ko.PageSize Letter/Letter(8 1/2 x 11인치): ""
*ko.PageSize Legal/Legal(8 1/2 x 14인치): ""
*ko.PageSize 8.5x13.4028/Oficio (Mexico) (216 x 340 mm): ""
*ko.PageSize B5/B5(182 x 257mm): ""
*ko.PageSize B4/JIS B4: ""
*ko.PageSize A4/A4(210 x 297mm): ""
*ko.PageSize Executive/Executive(7 1/4 x 10 1/2 인치): ""
*ko.PageSize A5/A5(148 x 210mm): ""
*ko.PageSize A6/A6(105 x 148mm): ""
*ko.PageSize A3/A3 (297 x 420 mm): ""
*ko.PageSize LxkSRA3/SRA3 (320 x 450 mm): ""
*ko.PageSize Tabloid/Tabloid (11 x 17 in): ""
*ko.PageSize Lxk12x18in/Tabloid Oversize: ""
*ko.PageSize FanFoldGermanLegal/Folio(8 1/2 x 13인치): ""
*ko.PageSize Statement/Statement(5 1/2 x 8 1/2 인치): ""
*ko.PageSize EnvMonarch/봉투 7 3/4 (3 7/8 x 7 1/2 인치): ""
*ko.PageSize Env9/봉투 9(3 7/8 x 8 7/8인치): ""
*ko.PageSize Env10/봉투 10(4 1/8 x 9 1/2인치): ""
*ko.PageSize EnvDL/DL 봉투(110 x 220mm): ""
*ko.PageSize EnvC5/C5 봉투(162 x 229mm): ""
*ko.PageSize ISOB5/B5 봉투(176 x 250mm): ""
*ko.PageSize OthEnv/기타 봉투: ""
*ko.Translation InputSlot/용지 급지대: ""
*ko.InputSlot Tray1/트레이 1: ""
*ko.InputSlot Tray2/트레이 2: ""
*ko.InputSlot Tray3/트레이 3: ""
*ko.InputSlot Tray4/트레이 4: ""
*ko.InputSlot Tray5/트레이 5: ""
*ko.InputSlot MultipurposeFeeder/다용도 급지기: ""
*ko.InputSlot ManualPaper/수동 용지: ""
*ko.InputSlot ManualEnv/수동 봉투: ""
*ko.Translation InstallableOptions/설치할 수 있는 옵션: ""
*ko.Translation OptDuplex/양면 인쇄 장치 : ""
*ko.OptDuplex False/설치되지 않음: ""
*ko.OptDuplex True/설치됨: ""
*ko.Translation OptFlash/플래시: ""
*ko.OptFlash False/설치되지 않음: ""
*ko.OptFlash True/설치됨: ""
*ko.Translation OptTray2/트레이 2: ""
*ko.OptTray2 False/설치되지 않음: ""
*ko.OptTray2 True/설치됨: ""
*ko.Translation OptTray3/트레이 3: ""
*ko.OptTray3 False/설치되지 않음: ""
*ko.OptTray3 True/설치됨: ""
*ko.Translation OptTray4/트레이 4: ""
*ko.OptTray4 False/설치되지 않음: ""
*ko.OptTray4 True/설치됨: ""
*ko.Translation OptTray5/트레이 5: ""
*ko.OptTray5 False/설치되지 않음: ""
*ko.OptTray5 True/설치됨: ""
*ko.Translation OptMultipurposeFeeder/다용도 급지기: ""
*ko.OptMultipurposeFeeder False/설치되지 않음: ""
*ko.OptMultipurposeFeeder True/설치됨: ""
*ko.Translation OptBin1/빈 1: ""
*ko.OptBin1 False/설치되지 않음: ""
*ko.OptBin1 True/설치됨: ""
*ko.Translation OptBin2/빈 2: ""
*ko.OptBin2 False/설치되지 않음: ""
*ko.OptBin2 True/설치됨: ""
*ko.Translation OptBin3/빈 3: ""
*ko.OptBin3 False/설치되지 않음: ""
*ko.OptBin3 True/설치됨: ""
*ko.Translation OptOffset/오프셋: ""
*ko.OptOffset False/설치되지 않음: ""
*ko.OptOffset True/설치됨: ""
*ko.Translation OptStapler/스태이플: ""
*ko.OptStapler False/설치되지 않음: ""
*ko.OptStapler True/설치됨: ""
*ko.Translation OptHolePunch/홀 펀치: ""
*ko.OptHolePunch False/설치되지 않음: ""
*ko.OptHolePunch True/설치됨: ""
*ko.Translation OptFold/접기: ""
*ko.OptFold False/설치되지 않음: ""
*ko.OptFold True/설치됨: ""
*ko.Translation Finishing/마무리: ""
*ko.Translation Duplex/양면: ""
*ko.Duplex None/없음: ""
*ko.Duplex DuplexNoTumble/양면-긴 가장자리: ""
*ko.Duplex DuplexTumble/양면-짧은 가장자리: ""
*ko.Translation Collate/콜레이트: ""
*ko.Collate True/켜짐: ""
*ko.Collate False/꺼짐: ""
*ko.Translation SepPages/페이지 분리기: ""
*ko.SepPages PrinterS/프린터 설정 사용: ""
*ko.SepPages NoneF/없음: ""
*ko.SepPages Jobs/작업 사이: ""
*ko.SepPages Copies/인쇄 사이: ""
*ko.SepPages Pages/페이지 사이: ""
*ko.Translation SepSource/자원 분리기: ""
*ko.SepSource PrinterS/프린터 설정 사용: ""
*ko.SepSource Tray1/트레이 1: ""
*ko.SepSource Tray2/트레이 2: ""
*ko.SepSource Tray3/트레이 3: ""
*ko.SepSource Tray4/트레이 4: ""
*ko.SepSource Tray5/트레이 5: ""
*ko.SepSource MultipurposeFeeder/다용도 급지기: ""
*ko.Translation OutputBin/출력 빈: ""
*ko.OutputBin PrinterS/프린터 설정 사용: ""
*ko.OutputBin StandardBin/표준 빈: ""
*ko.OutputBin Bin1/빈 1: ""
*ko.OutputBin Bin2/빈 2: ""
*ko.OutputBin Bin3/빈 3: ""
*ko.Translation Offset/오프셋 페이지: ""
*ko.Offset PrinterS/프린터 설정 사용: ""
*ko.Offset OffsetOff/꺼짐: ""
*ko.Offset Copies/인쇄 사이: ""
*ko.Offset Jobs/작업 사이: ""
*ko.Translation HolePunch/홀 펀치: ""
*ko.HolePunch PrinterS/프린터 설정 사용: ""
*ko.HolePunch FalseM/꺼짐: ""
*ko.HolePunch 2Hole/2홀: ""
*ko.HolePunch 3Hole/3홀: ""
*ko.HolePunch 4Hole/4홀: ""
*ko.Translation StapleJob/스테이플 작업: ""
*ko.StapleJob PrinterS/프린터 설정 사용: ""
*ko.StapleJob FalseM/꺼짐: ""
*ko.StapleJob TrueM/자동: ""
*ko.StapleJob TopLeft/좌측 상단: ""
*ko.StapleJob TopRight/우측 상단: ""
*ko.StapleJob BottomLeft/좌측 하단: ""
*ko.StapleJob BottomRight/우측 하단: ""
*ko.StapleJob DualTop/양면 상단: ""
*ko.StapleJob DualLeft/양면 좌측: ""
*ko.StapleJob DualBottom/양면 하단: ""
*ko.StapleJob DualRight/양면 우측: ""
*ko.Translation Fold/접기: ""
*ko.Fold False/꺼짐: ""
*ko.Fold SaddleStitch/접기 및 스태플로 고정: ""
*ko.Fold BookletFold/접기: ""
*ko.Fold BiFold/각 장을 개별적으로 접기: ""
*ko.Fold TriFold/개별 페이지 삼중 접기: ""
*ko.Translation Quality/품질: ""
*ko.Translation LXResolution/인쇄 해상도: ""
*ko.LXResolution 1200dpi/1200 dpi: ""
*ko.LXResolution 604x600dpi/2400 이미지 품질: ""
*ko.Translation Halftone/하프톤: ""
*ko.Halftone PrinterS/프린터 설정 사용: ""
*ko.Halftone FalseF/보통: ""
*ko.Halftone TrueF/세부 사항: ""
*ko.Translation TonerDarkness/토너 어둡기: ""
*ko.TonerDarkness PrinterS/프린터 설정 사용: ""
*ko.TonerDarkness 1/1: ""
*ko.TonerDarkness 2/2: ""
*ko.TonerDarkness 3/3: ""
*ko.TonerDarkness 4/4: ""
*ko.TonerDarkness 5/5: ""
*ko.Translation LexMirror/미러: ""
*ko.LexMirror True/켜짐: ""
*ko.LexMirror False/꺼짐: ""
*ko.Translation ColorBalance/색상 발란스: ""
*ko.Translation CyanBalance/청색 발란스: ""
*ko.CyanBalance PrinterS/프린터 설정 사용: ""
*ko.CyanBalance -5/ -5: ""
*ko.CyanBalance -4/ -4: ""
*ko.CyanBalance -3/ -3: ""
*ko.CyanBalance -2/ -2: ""
*ko.CyanBalance -1/ -1: ""
*ko.CyanBalance 0/ 0: ""
*ko.CyanBalance +1/ +1: ""
*ko.CyanBalance +2/ +2: ""
*ko.CyanBalance +3/ +3: ""
*ko.CyanBalance +4/ +4: ""
*ko.CyanBalance +5/ +5: ""
*ko.Translation MagentaBalance/적색 발란스: ""
*ko.MagentaBalance PrinterS/프린터 설정 사용: ""
*ko.MagentaBalance -5/ -5: ""
*ko.MagentaBalance -4/ -4: ""
*ko.MagentaBalance -3/ -3: ""
*ko.MagentaBalance -2/ -2: ""
*ko.MagentaBalance -1/ -1: ""
*ko.MagentaBalance 0/ 0: ""
*ko.MagentaBalance +1/ +1: ""
*ko.MagentaBalance +2/ +2: ""
*ko.MagentaBalance +3/ +3: ""
*ko.MagentaBalance +4/ +4: ""
*ko.MagentaBalance +5/ +5: ""
*ko.Translation YellowBalance/황색 발란스: ""
*ko.YellowBalance PrinterS/프린터 설정 사용: ""
*ko.YellowBalance -5/ -5: ""
*ko.YellowBalance -4/ -4: ""
*ko.YellowBalance -3/ -3: ""
*ko.YellowBalance -2/ -2: ""
*ko.YellowBalance -1/ -1: ""
*ko.YellowBalance 0/ 0: ""
*ko.YellowBalance +1/ +1: ""
*ko.YellowBalance +2/ +2: ""
*ko.YellowBalance +3/ +3: ""
*ko.YellowBalance +4/ +4: ""
*ko.YellowBalance +5/ +5: ""
*ko.Translation BlackBalance/흑색 발란스: ""
*ko.BlackBalance PrinterS/프린터 설정 사용: ""
*ko.BlackBalance -5/ -5: ""
*ko.BlackBalance -4/ -4: ""
*ko.BlackBalance -3/ -3: ""
*ko.BlackBalance -2/ -2: ""
*ko.BlackBalance -1/ -1: ""
*ko.BlackBalance 0/ 0: ""
*ko.BlackBalance +1/ +1: ""
*ko.BlackBalance +2/ +2: ""
*ko.BlackBalance +3/ +3: ""
*ko.BlackBalance +4/ +4: ""
*ko.BlackBalance +5/ +5: ""
*ko.Translation ColorCorrection/색상 교정: ""
*ko.Translation MediaColor/색상 교정: ""
*ko.MediaColor PrinterS/프린터 설정 사용: ""
*ko.MediaColor FalseM/꺼짐: ""
*ko.MediaColor Auto/자동: ""
*ko.MediaColor Manual/수동: ""
*ko.Translation ManualRGBImage/이미지 RGB 보정: ""
*ko.ManualRGBImage PrinterS/프린터 설정 사용: ""
*ko.ManualRGBImage Off/꺼짐: ""
*ko.ManualRGBImage sRGBDisplay/sRGB 화면: ""
*ko.ManualRGBImage sRGBVivid/sRGB 고선명: ""
*ko.ManualRGBImage DisplayRealBlack/디스플레이 - 순수한 검은색: ""
*ko.ManualRGBImage Vivid/고선명: ""
*ko.Translation ManualRGBText/텍스트 RGB 보정: ""
*ko.ManualRGBText PrinterS/프린터 설정 사용: ""
*ko.ManualRGBText Off/꺼짐: ""
*ko.ManualRGBText sRGBDisplay/sRGB 화면: ""
*ko.ManualRGBText sRGBVivid/sRGB 고선명: ""
*ko.ManualRGBText DisplayRealBlack/디스플레이 - 순수한 검은색: ""
*ko.ManualRGBText Vivid/고선명: ""
*ko.Translation ManualRGBGraphics/그래픽 RGB 보정: ""
*ko.ManualRGBGraphics PrinterS/프린터 설정 사용: ""
*ko.ManualRGBGraphics Off/꺼짐: ""
*ko.ManualRGBGraphics sRGBDisplay/sRGB 화면: ""
*ko.ManualRGBGraphics sRGBVivid/sRGB 고선명: ""
*ko.ManualRGBGraphics DisplayRealBlack/디스플레이 - 순수한 검은색: ""
*ko.ManualRGBGraphics Vivid/고선명: ""
*ko.Translation ManualCMYK/CMYK 보정: ""
*ko.ManualCMYK PrinterS/프린터 설정 사용: ""
*ko.ManualCMYK Off/꺼짐: ""
*ko.ManualCMYK VividCMYK/고선명 CMYK: ""
*ko.ManualCMYK EuroCMYK/Euro CMYK: ""
*ko.ManualCMYK USCMYK/US CMYK: ""
*ko.Translation Color/칼라: ""
*ko.Translation ColorSaver/ColorSaverTM: ""
*ko.ColorSaver PrinterS/프린터 설정 사용: ""
*ko.ColorSaver TrueM/켜짐: ""
*ko.ColorSaver FalseM/꺼짐: ""
*ko.Translation ColorMode/색상 모드: ""
*ko.ColorMode PrinterS/프린터 설정 사용: ""
*ko.ColorMode TrueM/칼라: ""
*ko.ColorMode FalseM/흑백: ""
*ko.Translation RGBCorrection/RGB 보정: ""
*ko.Translation LexBrightness/밝기: ""
*ko.LexBrightness PrinterS/프린터 설정 사용: ""
*ko.LexBrightness -6/ -6: ""
*ko.LexBrightness -5/ -5: ""
*ko.LexBrightness -4/ -4: ""
*ko.LexBrightness -3/ -3: ""
*ko.LexBrightness -2/ -2: ""
*ko.LexBrightness -1/ -1: ""
*ko.LexBrightness 0/ 0: ""
*ko.LexBrightness +1/ +1: ""
*ko.LexBrightness +2/ +2: ""
*ko.LexBrightness +3/ +3: ""
*ko.LexBrightness +4/ +4: ""
*ko.LexBrightness +5/ +5: ""
*ko.LexBrightness +6/ +6: ""
*ko.Translation LexContrast/대비: ""
*ko.LexContrast PrinterS/프린터 설정 사용: ""
*ko.LexContrast 0/0: ""
*ko.LexContrast 1/1: ""
*ko.LexContrast 2/2: ""
*ko.LexContrast 3/3: ""
*ko.LexContrast 4/4: ""
*ko.LexContrast 5/5: ""
*ko.Translation LexSaturation/채도: ""
*ko.LexSaturation PrinterS/프린터 설정 사용: ""
*ko.LexSaturation 0/0: ""
*ko.LexSaturation 1/1: ""
*ko.LexSaturation 2/2: ""
*ko.LexSaturation 3/3: ""
*ko.LexSaturation 4/4: ""
*ko.LexSaturation 5/5: ""
*ko.Translation Paper/용지: ""
*ko.Translation MediaType/용지 유형: ""
*ko.MediaType PrinterS/프린터 설정 사용: ""
*ko.MediaType Plain/일반 용지: ""
*ko.MediaType Colored/색상지: ""
*ko.MediaType Transparency/투명 용지: ""
*ko.MediaType Card/Card stock: ""
*ko.MediaType Labels/라벨: ""
*ko.MediaType Bond/본드: ""
*ko.MediaType Letterhead/레터헤드: ""
*ko.MediaType Preprint/양면지: ""
*ko.MediaType RoughEnvelope/거친 봉투: ""
*ko.MediaType Envelope/봉투: ""
*ko.MediaType Recycled/재활용: ""
*ko.MediaType Light/밝게: ""
*ko.MediaType Heavy/중량지: ""
*ko.MediaType Glossy/광택지: ""
*ko.MediaType HeavyGlossy/중량 광택지: ""
*ko.MediaType Rough/거친 용지/면지: ""
*ko.MediaType Custom1/사용자 양식 1: ""
*ko.MediaType Custom2/사용자 양식 2: ""
*ko.MediaType Custom3/사용자 양식 3: ""
*ko.MediaType Custom4/사용자 양식 4: ""
*ko.MediaType Custom5/사용자 양식 5: ""
*ko.MediaType Custom6/사용자 양식 6: ""
*ko.Translation LexBlankPage/빈 페이지 인쇄: ""
*ko.LexBlankPage PrinterS/프린터 설정 사용: ""
*ko.LexBlankPage False/꺼짐: ""
*ko.LexBlankPage True/켜짐: ""
*ja.Translation Manufacturer/Lexmark: ""
*ja.Translation ModelName/Lexmark C9200 Series: ""
*ja.Translation ShortNickName/Lexmark C9200 Series: ""
*ja.Translation NickName/Lexmark C9200 Series: ""
*ja.Translation PageSize/用紙のサイズ: ""
*ja.PageSize Letter/レター (216 x 279 mm): ""
*ja.PageSize Legal/リーガル (216 x 356 mm): ""
*ja.PageSize 8.5x13.4028/Oficio (メキシコ)(216 x 340 mm): ""
*ja.PageSize B5/B5 (182 x 257 mm): ""
*ja.PageSize B4/JIS B4: ""
*ja.PageSize A4/A4 (210 x 297 mm): ""
*ja.PageSize Executive/エグゼクティブ (184 x 267 mm): ""
*ja.PageSize A5/A5 (148 x 210 mm): ""
*ja.PageSize A6/A6 (105 x 148 mm): ""
*ja.PageSize A3/A3 (297 x 420 mm): ""
*ja.PageSize LxkSRA3/SRA3 (320 x 450 mm): ""
*ja.PageSize Tabloid/Tabloid (11 x 17 in): ""
*ja.PageSize Lxk12x18in/Tabloid Oversize: ""
*ja.PageSize FanFoldGermanLegal/フォリオ (8.5 x 13 インチ): ""
*ja.PageSize Statement/ステートメント (140 x 216 mm): ""
*ja.PageSize EnvMonarch/封筒 7 3/4 (98 x 191 mm): ""
*ja.PageSize Env9/封筒 #9 (98 x 225 mm): ""
*ja.PageSize Env10/封筒 #10 (104 x 241 mm): ""
*ja.PageSize EnvDL/封筒 DL (110 x 220 mm): ""
*ja.PageSize EnvC5/封筒 C5 (162 x 229 mm): ""
*ja.PageSize ISOB5/封筒 B5 (176 x 250 mm): ""
*ja.PageSize OthEnv/その他: ""
*ja.Translation InputSlot/給紙源: ""
*ja.InputSlot Tray1/カセット 1: ""
*ja.InputSlot Tray2/カセット 2: ""
*ja.InputSlot Tray3/カセット 3: ""
*ja.InputSlot Tray4/カセット 4: ""
*ja.InputSlot Tray5/カセット 5: ""
*ja.InputSlot MultipurposeFeeder/多目的フィーダ: ""
*ja.InputSlot ManualPaper/手差し用紙: ""
*ja.InputSlot ManualEnv/手差し封筒: ""
*ja.Translation InstallableOptions/インストール可能オプション: ""
*ja.Translation OptDuplex/両面印刷ユニット: ""
*ja.OptDuplex False/インストールされていません: ""
*ja.OptDuplex True/インストール済み: ""
*ja.Translation OptFlash/フラッシュ: ""
*ja.OptFlash False/インストールされていません: ""
*ja.OptFlash True/インストール済み: ""
*ja.Translation OptTray2/カセット 2: ""
*ja.OptTray2 False/インストールされていません: ""
*ja.OptTray2 True/インストール済み: ""
*ja.Translation OptTray3/カセット 3: ""
*ja.OptTray3 False/インストールされていません: ""
*ja.OptTray3 True/インストール済み: ""
*ja.Translation OptTray4/カセット 4: ""
*ja.OptTray4 False/インストールされていません: ""
*ja.OptTray4 True/インストール済み: ""
*ja.Translation OptTray5/カセット 5: ""
*ja.OptTray5 False/インストールされていません: ""
*ja.OptTray5 True/インストール済み: ""
*ja.Translation OptMultipurposeFeeder/多目的フィーダ: ""
*ja.OptMultipurposeFeeder False/インストールされていません: ""
*ja.OptMultipurposeFeeder True/インストール済み: ""
*ja.Translation OptBin1/排紙トレイ 1: ""
*ja.OptBin1 False/インストールされていません: ""
*ja.OptBin1 True/インストール済み: ""
*ja.Translation OptBin2/排紙トレイ 2: ""
*ja.OptBin2 False/インストールされていません: ""
*ja.OptBin2 True/インストール済み: ""
*ja.Translation OptBin3/排紙トレイ 3: ""
*ja.OptBin3 False/インストールされていません: ""
*ja.OptBin3 True/インストール済み: ""
*ja.Translation OptOffset/オフセット: ""
*ja.OptOffset False/インストールされていません: ""
*ja.OptOffset True/インストール済み: ""
*ja.Translation OptStapler/ホチキス: ""
*ja.OptStapler False/インストールされていません: ""
*ja.OptStapler True/インストール済み: ""
*ja.Translation OptHolePunch/ホール・パンチ: ""
*ja.OptHolePunch False/インストールされていません: ""
*ja.OptHolePunch True/インストール済み: ""
*ja.Translation OptFold/折る: ""
*ja.OptFold False/インストールされていません: ""
*ja.OptFold True/インストール済み: ""
*ja.Translation Finishing/仕上げ: ""
*ja.Translation Duplex/両面印刷: ""
*ja.Duplex None/なし: ""
*ja.Duplex DuplexNoTumble/両面印刷 - 長辺: ""
*ja.Duplex DuplexTumble/両面印刷 - 短辺: ""
*ja.Translation Collate/ソーターで印刷: ""
*ja.Collate True/オン: ""
*ja.Collate False/オフ: ""
*ja.Translation SepPages/区切りページ: ""
*ja.SepPages PrinterS/プリンタ設定を使用: ""
*ja.SepPages NoneF/なし: ""
*ja.SepPages Jobs/ジョブの間: ""
*ja.SepPages Copies/部の間: ""
*ja.SepPages Pages/ページの間: ""
*ja.Translation SepSource/区切りページ源: ""
*ja.SepSource PrinterS/プリンタ設定を使用: ""
*ja.SepSource Tray1/カセット 1: ""
*ja.SepSource Tray2/カセット 2: ""
*ja.SepSource Tray3/カセット 3: ""
*ja.SepSource Tray4/カセット 4: ""
*ja.SepSource Tray5/カセット 5: ""
*ja.SepSource MultipurposeFeeder/多目的フィーダ: ""
*ja.Translation OutputBin/排紙トレイ: ""
*ja.OutputBin PrinterS/プリンタ設定を使用: ""
*ja.OutputBin StandardBin/標準排紙トレイ: ""
*ja.OutputBin Bin1/排紙トレイ 1: ""
*ja.OutputBin Bin2/排紙トレイ 2: ""
*ja.OutputBin Bin3/排紙トレイ 3: ""
*ja.Translation Offset/オフセット・ページ: ""
*ja.Offset PrinterS/プリンタ設定を使用: ""
*ja.Offset OffsetOff/オフ: ""
*ja.Offset Copies/部の間: ""
*ja.Offset Jobs/ジョブの間: ""
*ja.Translation HolePunch/ホール・パンチ: ""
*ja.HolePunch PrinterS/プリンタ設定を使用: ""
*ja.HolePunch FalseM/オフ: ""
*ja.HolePunch 2Hole/2 穴: ""
*ja.HolePunch 3Hole/3 穴: ""
*ja.HolePunch 4Hole/4 穴: ""
*ja.Translation StapleJob/ホチキス付きジョブ: ""
*ja.StapleJob PrinterS/プリンタ設定を使用: ""
*ja.StapleJob FalseM/オフ: ""
*ja.StapleJob TrueM/自動: ""
*ja.StapleJob TopLeft/左上: ""
*ja.StapleJob TopRight/右上: ""
*ja.StapleJob BottomLeft/左下: ""
*ja.StapleJob BottomRight/右下: ""
*ja.StapleJob DualTop/上 2 カ所: ""
*ja.StapleJob DualLeft/左 2 カ所: ""
*ja.StapleJob DualBottom/下 2 カ所: ""
*ja.StapleJob DualRight/右 2 カ所: ""
*ja.Translation Fold/折る: ""
*ja.Fold False/オフ: ""
*ja.Fold SaddleStitch/ホチキスで留めて折る: ""
*ja.Fold BookletFold/折る: ""
*ja.Fold BiFold/各用紙を一枚ずつ折る: ""
*ja.Fold TriFold/1 ページずつ三つ折り: ""
*ja.Translation Quality/品質: ""
*ja.Translation LXResolution/印刷品質: ""
*ja.LXResolution 1200dpi/1200 DPI: ""
*ja.LXResolution 604x600dpi/2400 DPI(イメージ・クォリティ): ""
*ja.Translation Halftone/ハーフトーン: ""
*ja.Halftone PrinterS/プリンタ設定を使用: ""
*ja.Halftone FalseF/標準: ""
*ja.Halftone TrueF/詳細: ""
*ja.Translation TonerDarkness/トナーの濃さ: ""
*ja.TonerDarkness PrinterS/プリンタ設定を使用: ""
*ja.TonerDarkness 1/1: ""
*ja.TonerDarkness 2/2: ""
*ja.TonerDarkness 3/3: ""
*ja.TonerDarkness 4/4: ""
*ja.TonerDarkness 5/5: ""
*ja.Translation LexMirror/左右反転: ""
*ja.LexMirror True/オン: ""
*ja.LexMirror False/オフ: ""
*ja.Translation ColorBalance/カラー・バランス: ""
*ja.Translation CyanBalance/シアン バランス: ""
*ja.CyanBalance PrinterS/プリンタ設定を使用: ""
*ja.CyanBalance -5/ -5: ""
*ja.CyanBalance -4/ -4: ""
*ja.CyanBalance -3/ -3: ""
*ja.CyanBalance -2/ -2: ""
*ja.CyanBalance -1/ -1: ""
*ja.CyanBalance 0/ 0: ""
*ja.CyanBalance +1/ +1: ""
*ja.CyanBalance +2/ +2: ""
*ja.CyanBalance +3/ +3: ""
*ja.CyanBalance +4/ +4: ""
*ja.CyanBalance +5/ +5: ""
*ja.Translation MagentaBalance/マゼンタ バランス: ""
*ja.MagentaBalance PrinterS/プリンタ設定を使用: ""
*ja.MagentaBalance -5/ -5: ""
*ja.MagentaBalance -4/ -4: ""
*ja.MagentaBalance -3/ -3: ""
*ja.MagentaBalance -2/ -2: ""
*ja.MagentaBalance -1/ -1: ""
*ja.MagentaBalance 0/ 0: ""
*ja.MagentaBalance +1/ +1: ""
*ja.MagentaBalance +2/ +2: ""
*ja.MagentaBalance +3/ +3: ""
*ja.MagentaBalance +4/ +4: ""
*ja.MagentaBalance +5/ +5: ""
*ja.Translation YellowBalance/イエロー バランス: ""
*ja.YellowBalance PrinterS/プリンタ設定を使用: ""
*ja.YellowBalance -5/ -5: ""
*ja.YellowBalance -4/ -4: ""
*ja.YellowBalance -3/ -3: ""
*ja.YellowBalance -2/ -2: ""
*ja.YellowBalance -1/ -1: ""
*ja.YellowBalance 0/ 0: ""
*ja.YellowBalance +1/ +1: ""
*ja.YellowBalance +2/ +2: ""
*ja.YellowBalance +3/ +3: ""
*ja.YellowBalance +4/ +4: ""
*ja.YellowBalance +5/ +5: ""
*ja.Translation BlackBalance/ブラック バランス: ""
*ja.BlackBalance PrinterS/プリンタ設定を使用: ""
*ja.BlackBalance -5/ -5: ""
*ja.BlackBalance -4/ -4: ""
*ja.BlackBalance -3/ -3: ""
*ja.BlackBalance -2/ -2: ""
*ja.BlackBalance -1/ -1: ""
*ja.BlackBalance 0/ 0: ""
*ja.BlackBalance +1/ +1: ""
*ja.BlackBalance +2/ +2: ""
*ja.BlackBalance +3/ +3: ""
*ja.BlackBalance +4/ +4: ""
*ja.BlackBalance +5/ +5: ""
*ja.Translation ColorCorrection/色補正 : ""
*ja.Translation MediaColor/色補正 : ""
*ja.MediaColor PrinterS/プリンタ設定を使用: ""
*ja.MediaColor FalseM/オフ: ""
*ja.MediaColor Auto/自動: ""
*ja.MediaColor Manual/手差し: ""
*ja.Translation ManualRGBImage/イメージ用 RGB 補正: ""
*ja.ManualRGBImage PrinterS/プリンタ設定を使用: ""
*ja.ManualRGBImage Off/オフ: ""
*ja.ManualRGBImage sRGBDisplay/sRGB 表示: ""
*ja.ManualRGBImage sRGBVivid/sRGB 鮮明: ""
*ja.ManualRGBImage DisplayRealBlack/ディスプレイ - 純ブラック: ""
*ja.ManualRGBImage Vivid/鮮明: ""
*ja.Translation ManualRGBText/テキスト用 RGB 補正: ""
*ja.ManualRGBText PrinterS/プリンタ設定を使用: ""
*ja.ManualRGBText Off/オフ: ""
*ja.ManualRGBText sRGBDisplay/sRGB 表示: ""
*ja.ManualRGBText sRGBVivid/sRGB 鮮明: ""
*ja.ManualRGBText DisplayRealBlack/ディスプレイ - 純ブラック: ""
*ja.ManualRGBText Vivid/鮮明: ""
*ja.Translation ManualRGBGraphics/グラフィックス用 RGB 補正: ""
*ja.ManualRGBGraphics PrinterS/プリンタ設定を使用: ""
*ja.ManualRGBGraphics Off/オフ: ""
*ja.ManualRGBGraphics sRGBDisplay/sRGB 表示: ""
*ja.ManualRGBGraphics sRGBVivid/sRGB 鮮明: ""
*ja.ManualRGBGraphics DisplayRealBlack/ディスプレイ - 純ブラック: ""
*ja.ManualRGBGraphics Vivid/鮮明: ""
*ja.Translation ManualCMYK/CMYK 補正: ""
*ja.ManualCMYK PrinterS/プリンタ設定を使用: ""
*ja.ManualCMYK Off/オフ: ""
*ja.ManualCMYK VividCMYK/鮮明 CMYK: ""
*ja.ManualCMYK EuroCMYK/Euro CMYK: ""
*ja.ManualCMYK USCMYK/US CMYK: ""
*ja.Translation Color/カラー用紙: ""
*ja.Translation ColorSaver/ColorSaverTM: ""
*ja.ColorSaver PrinterS/プリンタ設定を使用: ""
*ja.ColorSaver TrueM/オン: ""
*ja.ColorSaver FalseM/オフ: ""
*ja.Translation ColorMode/カラーモード: ""
*ja.ColorMode PrinterS/プリンタ設定を使用: ""
*ja.ColorMode TrueM/カラー用紙: ""
*ja.ColorMode FalseM/モノクロ: ""
*ja.Translation RGBCorrection/RGB 補正: ""
*ja.Translation LexBrightness/明度: ""
*ja.LexBrightness PrinterS/プリンタ設定を使用: ""
*ja.LexBrightness -6/ -6: ""
*ja.LexBrightness -5/ -5: ""
*ja.LexBrightness -4/ -4: ""
*ja.LexBrightness -3/ -3: ""
*ja.LexBrightness -2/ -2: ""
*ja.LexBrightness -1/ -1: ""
*ja.LexBrightness 0/ 0: ""
*ja.LexBrightness +1/ +1: ""
*ja.LexBrightness +2/ +2: ""
*ja.LexBrightness +3/ +3: ""
*ja.LexBrightness +4/ +4: ""
*ja.LexBrightness +5/ +5: ""
*ja.LexBrightness +6/ +6: ""
*ja.Translation LexContrast/コントラスト: ""
*ja.LexContrast PrinterS/プリンタ設定を使用: ""
*ja.LexContrast 0/0: ""
*ja.LexContrast 1/1: ""
*ja.LexContrast 2/2: ""
*ja.LexContrast 3/3: ""
*ja.LexContrast 4/4: ""
*ja.LexContrast 5/5: ""
*ja.Translation LexSaturation/彩度: ""
*ja.LexSaturation PrinterS/プリンタ設定を使用: ""
*ja.LexSaturation 0/0: ""
*ja.LexSaturation 1/1: ""
*ja.LexSaturation 2/2: ""
*ja.LexSaturation 3/3: ""
*ja.LexSaturation 4/4: ""
*ja.LexSaturation 5/5: ""
*ja.Translation Paper/用紙: ""
*ja.Translation MediaType/用紙の種類: ""
*ja.MediaType PrinterS/プリンタ設定を使用: ""
*ja.MediaType Plain/普通紙: ""
*ja.MediaType Colored/カラー用紙: ""
*ja.MediaType Transparency/OHPフィルム: ""
*ja.MediaType Card/Card stock: ""
*ja.MediaType Labels/ラベル: ""
*ja.MediaType Bond/ボンド紙: ""
*ja.MediaType Letterhead/レターヘッド: ""
*ja.MediaType Preprint/プレプリント: ""
*ja.MediaType RoughEnvelope/表面の粗い封筒: ""
*ja.MediaType Envelope/封筒: ""
*ja.MediaType Recycled/再生紙: ""
*ja.MediaType Light/明: ""
*ja.MediaType Heavy/重量紙: ""
*ja.MediaType Glossy/光沢: ""
*ja.MediaType HeavyGlossy/重く光沢がある: ""
*ja.MediaType Rough/ラフ/コットン: ""
*ja.MediaType Custom1/ユーザー定義種 1: ""
*ja.MediaType Custom2/ユーザー定義種 2: ""
*ja.MediaType Custom3/ユーザー定義種 3: ""
*ja.MediaType Custom4/ユーザー定義種 4: ""
*ja.MediaType Custom5/ユーザー定義種 5: ""
*ja.MediaType Custom6/ユーザー定義種 6: ""
*ja.Translation LexBlankPage/空白ページを印刷: ""
*ja.LexBlankPage PrinterS/プリンタ設定を使用: ""
*ja.LexBlankPage False/オフ: ""
*ja.LexBlankPage True/オン: ""
*ru.Translation Manufacturer/Lexmark: ""
*ru.Translation ModelName/Lexmark C9200 Series: ""
*ru.Translation ShortNickName/Lexmark C9200 Series: ""
*ru.Translation NickName/Lexmark C9200 Series: ""
*ru.Translation PageSize/Размер материала: ""
*ru.PageSize Letter/Letter (8 1/2 x 11 in): ""
*ru.PageSize Legal/Legal (8 1/2 x 14 in): ""
*ru.PageSize 8.5x13.4028/Oficio (Mexico) (216 x 340 mm): ""
*ru.PageSize B5/B5 (182 x 257 mm): ""
*ru.PageSize B4/JIS B4: ""
*ru.PageSize A4/A4 (210 x 297 mm): ""
*ru.PageSize Executive/Executive (7 1/4 x 10 1/2 in): ""
*ru.PageSize A5/A5 (148 x 210 mm): ""
*ru.PageSize A6/A6 (105 x 148 mm): ""
*ru.PageSize A3/A3 (297 x 420 mm): ""
*ru.PageSize LxkSRA3/SRA3 (320 x 450 mm): ""
*ru.PageSize Tabloid/Tabloid (11 x 17 in): ""
*ru.PageSize Lxk12x18in/Tabloid Oversize: ""
*ru.PageSize FanFoldGermanLegal/Folio (8 1/2 x 13 in): ""
*ru.PageSize Statement/Statement (5 1/2 x 8 1/2 in): ""
*ru.PageSize EnvMonarch/Envelope 7 3/4 (3 7/8x7 1/2 in): ""
*ru.PageSize Env9/Envelope 9 (3 7/8 x 8 7/8 in): ""
*ru.PageSize Env10/Envelope 10 (4 1/8 x 9 1/2 in): ""
*ru.PageSize EnvDL/Envelope DL (110 x 220 mm): ""
*ru.PageSize EnvC5/Envelope C5 (162 x 229 mm): ""
*ru.PageSize ISOB5/Envelope B5 (176 x 250 mm): ""
*ru.PageSize OthEnv/Другой конверт: ""
*ru.Translation InputSlot/Источник бумаги: ""
*ru.InputSlot Tray1/Лоток 1: ""
*ru.InputSlot Tray2/Лоток 2: ""
*ru.InputSlot Tray3/Лоток 3: ""
*ru.InputSlot Tray4/Лоток 4: ""
*ru.InputSlot Tray5/Лоток 5: ""
*ru.InputSlot MultipurposeFeeder/Многоцелевое устройство подачи: ""
*ru.InputSlot ManualPaper/Выбор бумаги вручную: ""
*ru.InputSlot ManualEnv/Конверт вручную: ""
*ru.Translation InstallableOptions/Installable Options: ""
*ru.Translation OptDuplex/Модуль дуплекса: ""
*ru.OptDuplex False/Не установлен: ""
*ru.OptDuplex True/Установлен: ""
*ru.Translation OptFlash/Вспышка: ""
*ru.OptFlash False/Не установлен: ""
*ru.OptFlash True/Установлен: ""
*ru.Translation OptTray2/Лоток 2: ""
*ru.OptTray2 False/Не установлен: ""
*ru.OptTray2 True/Установлен: ""
*ru.Translation OptTray3/Лоток 3: ""
*ru.OptTray3 False/Не установлен: ""
*ru.OptTray3 True/Установлен: ""
*ru.Translation OptTray4/Лоток 4: ""
*ru.OptTray4 False/Не установлен: ""
*ru.OptTray4 True/Установлен: ""
*ru.Translation OptTray5/Лоток 5: ""
*ru.OptTray5 False/Не установлен: ""
*ru.OptTray5 True/Установлен: ""
*ru.Translation OptMultipurposeFeeder/Многоцелевое устройство подачи: ""
*ru.OptMultipurposeFeeder False/Не установлен: ""
*ru.OptMultipurposeFeeder True/Установлен: ""
*ru.Translation OptBin1/Выходной лоток 1: ""
*ru.OptBin1 False/Не установлен: ""
*ru.OptBin1 True/Установлен: ""
*ru.Translation OptBin2/Выходной лоток 2: ""
*ru.OptBin2 False/Не установлен: ""
*ru.OptBin2 True/Установлен: ""
*ru.Translation OptBin3/Выходной лоток 3: ""
*ru.OptBin3 False/Не установлен: ""
*ru.OptBin3 True/Установлен: ""
*ru.Translation OptOffset/Offset: ""
*ru.OptOffset False/Не установлен: ""
*ru.OptOffset True/Установлен: ""
*ru.Translation OptStapler/Прошивка: ""
*ru.OptStapler False/Не установлен: ""
*ru.OptStapler True/Установлен: ""
*ru.Translation OptHolePunch/Перфорация: ""
*ru.OptHolePunch False/Не установлен: ""
*ru.OptHolePunch True/Установлен: ""
*ru.Translation OptFold/Фальц: ""
*ru.OptFold False/Не установлен: ""
*ru.OptFold True/Установлен: ""
*ru.Translation Finishing/Оформление: ""
*ru.Translation Duplex/Двусторонняя: ""
*ru.Duplex None/Нет: ""
*ru.Duplex DuplexNoTumble/Двусторонняя - книга: ""
*ru.Duplex DuplexTumble/Двусторонняя - блокнот: ""
*ru.Translation Collate/Разбор по копиям: ""
*ru.Collate True/Вкл: ""
*ru.Collate False/Выкл: ""
*ru.Translation SepPages/Страницы-разделители: ""
*ru.SepPages PrinterS/Use Printer Setting: ""
*ru.SepPages NoneF/Нет: ""
*ru.SepPages Jobs/Между заданиями: ""
*ru.SepPages Copies/Между копиями: ""
*ru.SepPages Pages/Между страницами: ""
*ru.Translation SepSource/Источник страницы-разделителя: ""
*ru.SepSource PrinterS/Use Printer Setting: ""
*ru.SepSource Tray1/Лоток 1: ""
*ru.SepSource Tray2/Лоток 2: ""
*ru.SepSource Tray3/Лоток 3: ""
*ru.SepSource Tray4/Лоток 4: ""
*ru.SepSource Tray5/Лоток 5: ""
*ru.SepSource MultipurposeFeeder/Многоцелевое устройство подачи: ""
*ru.Translation OutputBin/Выходной лоток: ""
*ru.OutputBin PrinterS/Use Printer Setting: ""
*ru.OutputBin StandardBin/Стандартный лоток: ""
*ru.OutputBin Bin1/Выходной лоток 1: ""
*ru.OutputBin Bin2/Выходной лоток 2: ""
*ru.OutputBin Bin3/Выходной лоток 3: ""
*ru.Translation Offset/Сдвиг страниц: ""
*ru.Offset PrinterS/Use Printer Setting: ""
*ru.Offset OffsetOff/Выкл: ""
*ru.Offset Copies/Между копиями: ""
*ru.Offset Jobs/Между заданиями: ""
*ru.Translation HolePunch/Перфорация: ""
*ru.HolePunch PrinterS/Use Printer Setting: ""
*ru.HolePunch FalseM/Выкл: ""
*ru.HolePunch 2Hole/2 отверстия: ""
*ru.HolePunch 3Hole/3 отверстия: ""
*ru.HolePunch 4Hole/4 отверстия: ""
*ru.Translation StapleJob/Задание с прошивкой: ""
*ru.StapleJob PrinterS/Use Printer Setting: ""
*ru.StapleJob FalseM/Выкл: ""
*ru.StapleJob TrueM/Авто: ""
*ru.StapleJob TopLeft/Top Left: ""
*ru.StapleJob TopRight/Top Right: ""
*ru.StapleJob BottomLeft/Bottom Left: ""
*ru.StapleJob BottomRight/Bottom Right: ""
*ru.StapleJob DualTop/Dual Top: ""
*ru.StapleJob DualLeft/Dual Left: ""
*ru.StapleJob DualBottom/Dual Bottom: ""
*ru.StapleJob DualRight/Dual Right: ""
*ru.Translation Fold/Фальц: ""
*ru.Fold False/Выкл: ""
*ru.Fold SaddleStitch/Фальцовка и прошивки: ""
*ru.Fold BookletFold/Фальц: ""
*ru.Fold BiFold/Согнуть каждую страницу отдельно: ""
*ru.Fold TriFold/Сгибать отдельные страницы в три раза: ""
*ru.Translation Quality/Качество: ""
*ru.Translation LXResolution/Разрешение: ""
*ru.LXResolution 1200dpi/1200 т/д: ""
*ru.LXResolution 604x600dpi/Качество изображения 2400: ""
*ru.Translation Halftone/Halftone: ""
*ru.Halftone PrinterS/Use Printer Setting: ""
*ru.Halftone FalseF/Обычная: ""
*ru.Halftone TrueF/Detail: ""
*ru.Translation TonerDarkness/Плотность тонера: ""
*ru.TonerDarkness PrinterS/Use Printer Setting: ""
*ru.TonerDarkness 1/1: ""
*ru.TonerDarkness 2/2: ""
*ru.TonerDarkness 3/3: ""
*ru.TonerDarkness 4/4: ""
*ru.TonerDarkness 5/5: ""
*ru.Translation LexMirror/Зеркальная: ""
*ru.LexMirror True/Вкл: ""
*ru.LexMirror False/Выкл: ""
*ru.Translation ColorBalance/Цветовой баланс: ""
*ru.Translation CyanBalance/Баланс бирюзового: ""
*ru.CyanBalance PrinterS/Use Printer Setting: ""
*ru.CyanBalance -5/ -5: ""
*ru.CyanBalance -4/ -4: ""
*ru.CyanBalance -3/ -3: ""
*ru.CyanBalance -2/ -2: ""
*ru.CyanBalance -1/ -1: ""
*ru.CyanBalance 0/ 0: ""
*ru.CyanBalance +1/ +1: ""
*ru.CyanBalance +2/ +2: ""
*ru.CyanBalance +3/ +3: ""
*ru.CyanBalance +4/ +4: ""
*ru.CyanBalance +5/ +5: ""
*ru.Translation MagentaBalance/Баланс пурпурного: ""
*ru.MagentaBalance PrinterS/Use Printer Setting: ""
*ru.MagentaBalance -5/ -5: ""
*ru.MagentaBalance -4/ -4: ""
*ru.MagentaBalance -3/ -3: ""
*ru.MagentaBalance -2/ -2: ""
*ru.MagentaBalance -1/ -1: ""
*ru.MagentaBalance 0/ 0: ""
*ru.MagentaBalance +1/ +1: ""
*ru.MagentaBalance +2/ +2: ""
*ru.MagentaBalance +3/ +3: ""
*ru.MagentaBalance +4/ +4: ""
*ru.MagentaBalance +5/ +5: ""
*ru.Translation YellowBalance/Баланс желтого: ""
*ru.YellowBalance PrinterS/Use Printer Setting: ""
*ru.YellowBalance -5/ -5: ""
*ru.YellowBalance -4/ -4: ""
*ru.YellowBalance -3/ -3: ""
*ru.YellowBalance -2/ -2: ""
*ru.YellowBalance -1/ -1: ""
*ru.YellowBalance 0/ 0: ""
*ru.YellowBalance +1/ +1: ""
*ru.YellowBalance +2/ +2: ""
*ru.YellowBalance +3/ +3: ""
*ru.YellowBalance +4/ +4: ""
*ru.YellowBalance +5/ +5: ""
*ru.Translation BlackBalance/Баланс черного: ""
*ru.BlackBalance PrinterS/Use Printer Setting: ""
*ru.BlackBalance -5/ -5: ""
*ru.BlackBalance -4/ -4: ""
*ru.BlackBalance -3/ -3: ""
*ru.BlackBalance -2/ -2: ""
*ru.BlackBalance -1/ -1: ""
*ru.BlackBalance 0/ 0: ""
*ru.BlackBalance +1/ +1: ""
*ru.BlackBalance +2/ +2: ""
*ru.BlackBalance +3/ +3: ""
*ru.BlackBalance +4/ +4: ""
*ru.BlackBalance +5/ +5: ""
*ru.Translation ColorCorrection/Цветокоррекция: ""
*ru.Translation MediaColor/Цветокоррекция: ""
*ru.MediaColor PrinterS/Use Printer Setting: ""
*ru.MediaColor FalseM/Выкл: ""
*ru.MediaColor Auto/Авто: ""
*ru.MediaColor Manual/Вручную: ""
*ru.Translation ManualRGBImage/RGB correction for images: ""
*ru.ManualRGBImage PrinterS/Use Printer Setting: ""
*ru.ManualRGBImage Off/Выкл: ""
*ru.ManualRGBImage sRGBDisplay/Дисплей sRGB: ""
*ru.ManualRGBImage sRGBVivid/Яркие цвета sRGB: ""
*ru.ManualRGBImage DisplayRealBlack/Дисплей<2d>абсолютно черный: ""
*ru.ManualRGBImage Vivid/Яркие: ""
*ru.Translation ManualRGBText/RGB correction for text: ""
*ru.ManualRGBText PrinterS/Use Printer Setting: ""
*ru.ManualRGBText Off/Выкл: ""
*ru.ManualRGBText sRGBDisplay/Дисплей sRGB: ""
*ru.ManualRGBText sRGBVivid/Яркие цвета sRGB: ""
*ru.ManualRGBText DisplayRealBlack/Дисплей<2d>абсолютно черный: ""
*ru.ManualRGBText Vivid/Яркие: ""
*ru.Translation ManualRGBGraphics/RGB correction for graphics: ""
*ru.ManualRGBGraphics PrinterS/Use Printer Setting: ""
*ru.ManualRGBGraphics Off/Выкл: ""
*ru.ManualRGBGraphics sRGBDisplay/Дисплей sRGB: ""
*ru.ManualRGBGraphics sRGBVivid/Яркие цвета sRGB: ""
*ru.ManualRGBGraphics DisplayRealBlack/Дисплей<2d>абсолютно черный: ""
*ru.ManualRGBGraphics Vivid/Яркие: ""
*ru.Translation ManualCMYK/CMYK correction: ""
*ru.ManualCMYK PrinterS/Use Printer Setting: ""
*ru.ManualCMYK Off/Выкл: ""
*ru.ManualCMYK VividCMYK/Яркие CMYK: ""
*ru.ManualCMYK EuroCMYK/Euro CMYK: ""
*ru.ManualCMYK USCMYK/US CMYK: ""
*ru.Translation Color/Цвет: ""
*ru.Translation ColorSaver/ColorSaverTM: ""
*ru.ColorSaver PrinterS/Use Printer Setting: ""
*ru.ColorSaver TrueM/Вкл: ""
*ru.ColorSaver FalseM/Выкл: ""
*ru.Translation ColorMode/Цветной режим: ""
*ru.ColorMode PrinterS/Use Printer Setting: ""
*ru.ColorMode TrueM/Цвет: ""
*ru.ColorMode FalseM/Monochrome: ""
*ru.Translation RGBCorrection/RGB Correction: ""
*ru.Translation LexBrightness/Яркость: ""
*ru.LexBrightness PrinterS/Use Printer Setting: ""
*ru.LexBrightness -6/ -6: ""
*ru.LexBrightness -5/ -5: ""
*ru.LexBrightness -4/ -4: ""
*ru.LexBrightness -3/ -3: ""
*ru.LexBrightness -2/ -2: ""
*ru.LexBrightness -1/ -1: ""
*ru.LexBrightness 0/ 0: ""
*ru.LexBrightness +1/ +1: ""
*ru.LexBrightness +2/ +2: ""
*ru.LexBrightness +3/ +3: ""
*ru.LexBrightness +4/ +4: ""
*ru.LexBrightness +5/ +5: ""
*ru.LexBrightness +6/ +6: ""
*ru.Translation LexContrast/Контрастность: ""
*ru.LexContrast PrinterS/Use Printer Setting: ""
*ru.LexContrast 0/0: ""
*ru.LexContrast 1/1: ""
*ru.LexContrast 2/2: ""
*ru.LexContrast 3/3: ""
*ru.LexContrast 4/4: ""
*ru.LexContrast 5/5: ""
*ru.Translation LexSaturation/Насыщенность: ""
*ru.LexSaturation PrinterS/Use Printer Setting: ""
*ru.LexSaturation 0/0: ""
*ru.LexSaturation 1/1: ""
*ru.LexSaturation 2/2: ""
*ru.LexSaturation 3/3: ""
*ru.LexSaturation 4/4: ""
*ru.LexSaturation 5/5: ""
*ru.Translation Paper/Бумага: ""
*ru.Translation MediaType/Тип бумаги: ""
*ru.MediaType PrinterS/Use Printer Setting: ""
*ru.MediaType Plain/Plain: ""
*ru.MediaType Colored/Colored: ""
*ru.MediaType Transparency/Прозрач. пленка: ""
*ru.MediaType Card/Card stock: ""
*ru.MediaType Labels/Наклейки: ""
*ru.MediaType Bond/Фирменные бланки: ""
*ru.MediaType Letterhead/Бланки: ""
*ru.MediaType Preprint/Печатные бланки: ""
*ru.MediaType RoughEnvelope/Грубый конверт: ""
*ru.MediaType Envelope/Конверт: ""
*ru.MediaType Recycled/Из вторсырья: ""
*ru.MediaType Light/Тонкая: ""
*ru.MediaType Heavy/Heavy: ""
*ru.MediaType Glossy/Глянцевая: ""
*ru.MediaType HeavyGlossy/Плотная глянцевая: ""
*ru.MediaType Rough/Шероховатая/хлопковая бумага: ""
*ru.MediaType Custom1/Пользовательский тип 1: ""
*ru.MediaType Custom2/Пользовательский тип 2: ""
*ru.MediaType Custom3/Пользовательский тип 3: ""
*ru.MediaType Custom4/Пользовательский тип 4: ""
*ru.MediaType Custom5/Пользовательский тип 5: ""
*ru.MediaType Custom6/Пользовательский тип 6: ""
*ru.Translation LexBlankPage/Печать пустых страниц: ""
*ru.LexBlankPage PrinterS/Use Printer Setting: ""
*ru.LexBlankPage False/Выкл: ""
*ru.LexBlankPage True/Вкл: ""
*pl.Translation Manufacturer/Lexmark: ""
*pl.Translation ModelName/Lexmark C9200 Series: ""
*pl.Translation ShortNickName/Lexmark C9200 Series: ""
*pl.Translation NickName/Lexmark C9200 Series: ""
*pl.Translation PageSize/Rozmiar nośnika: ""
*pl.PageSize Letter/Letter (8 1/2 x 11 cali): ""
*pl.PageSize Legal/Legal (8 1/2 x 14 cali): ""
*pl.PageSize 8.5x13.4028/Oficio (Meksyk) (216 x 340 mm): ""
*pl.PageSize B5/B5 (182 x 257 mm): ""
*pl.PageSize B4/JIS B4: ""
*pl.PageSize A4/A4 (210 x 297 mm): ""
*pl.PageSize Executive/Executive (7 1/4 x 10 1/2 cala): ""
*pl.PageSize A5/A5 (148 x 210 mm): ""
*pl.PageSize A6/A6 (105 x 148 mm): ""
*pl.PageSize A3/A3 (297 x 420 mm): ""
*pl.PageSize LxkSRA3/SRA3 (320 x 450 mm): ""
*pl.PageSize Tabloid/Tabloid (11 x 17 in): ""
*pl.PageSize Lxk12x18in/Tabloid Oversize: ""
*pl.PageSize FanFoldGermanLegal/Folio (8 1/2 x 13 cali): ""
*pl.PageSize Statement/Statement (5 1/2 x 8 1/2 cala): ""
*pl.PageSize EnvMonarch/Kop. 7 3/4 (3 7/8 x 7 1/2 cala): ""
*pl.PageSize Env9/Koperta 9 (3 7/8 x 8 7/8 cala): ""
*pl.PageSize Env10/Koperta 10 (4 1/8 x 9 1/2 cala): ""
*pl.PageSize EnvDL/Koperta DL (110 x 220 mm): ""
*pl.PageSize EnvC5/Koperta C5 (162 x 229 mm): ""
*pl.PageSize ISOB5/Koperta B5 (176 x 250 mm): ""
*pl.PageSize OthEnv/Inna koperta: ""
*pl.Translation InputSlot/Źródło nośnika: ""
*pl.InputSlot Tray1/Zasobnik 1: ""
*pl.InputSlot Tray2/Zasobnik 2: ""
*pl.InputSlot Tray3/Zasobnik 3: ""
*pl.InputSlot Tray4/Zasobnik 4: ""
*pl.InputSlot Tray5/Zasobnik 5: ""
*pl.InputSlot MultipurposeFeeder/Podajnik uniwersalny: ""
*pl.InputSlot ManualPaper/Ręczny podajnik papieru: ""
*pl.InputSlot ManualEnv/Ręczny kopert: ""
*pl.Translation InstallableOptions/Instalowalne opcje: ""
*pl.Translation OptDuplex/Dupleks: ""
*pl.OptDuplex False/Nie zainstalowano: ""
*pl.OptDuplex True/Zainstalowane: ""
*pl.Translation OptFlash/Lampa błyskowa: ""
*pl.OptFlash False/Nie zainstalowano: ""
*pl.OptFlash True/Zainstalowane: ""
*pl.Translation OptTray2/Zasobnik 2: ""
*pl.OptTray2 False/Nie zainstalowano: ""
*pl.OptTray2 True/Zainstalowane: ""
*pl.Translation OptTray3/Zasobnik 3: ""
*pl.OptTray3 False/Nie zainstalowano: ""
*pl.OptTray3 True/Zainstalowane: ""
*pl.Translation OptTray4/Zasobnik 4: ""
*pl.OptTray4 False/Nie zainstalowano: ""
*pl.OptTray4 True/Zainstalowane: ""
*pl.Translation OptTray5/Zasobnik 5: ""
*pl.OptTray5 False/Nie zainstalowano: ""
*pl.OptTray5 True/Zainstalowane: ""
*pl.Translation OptMultipurposeFeeder/Podajnik uniwersalny: ""
*pl.OptMultipurposeFeeder False/Nie zainstalowano: ""
*pl.OptMultipurposeFeeder True/Zainstalowane: ""
*pl.Translation OptBin1/Odbiornik 1: ""
*pl.OptBin1 False/Nie zainstalowano: ""
*pl.OptBin1 True/Zainstalowane: ""
*pl.Translation OptBin2/Odbiornik 2: ""
*pl.OptBin2 False/Nie zainstalowano: ""
*pl.OptBin2 True/Zainstalowane: ""
*pl.Translation OptBin3/Odbiornik 3: ""
*pl.OptBin3 False/Nie zainstalowano: ""
*pl.OptBin3 True/Zainstalowane: ""
*pl.Translation OptOffset/Przesunięcie: ""
*pl.OptOffset False/Nie zainstalowano: ""
*pl.OptOffset True/Zainstalowane: ""
*pl.Translation OptStapler/Zszywacz: ""
*pl.OptStapler False/Nie zainstalowano: ""
*pl.OptStapler True/Zainstalowane: ""
*pl.Translation OptHolePunch/Dziurkacz: ""
*pl.OptHolePunch False/Nie zainstalowano: ""
*pl.OptHolePunch True/Zainstalowane: ""
*pl.Translation OptFold/Składanie: ""
*pl.OptFold False/Nie zainstalowano: ""
*pl.OptFold True/Zainstalowane: ""
*pl.Translation Finishing/Wykańczanie: ""
*pl.Translation Duplex/Dwustronny: ""
*pl.Duplex None/Brak: ""
*pl.Duplex DuplexNoTumble/Dupleks — długi brzeg: ""
*pl.Duplex DuplexTumble/Dupleks — krótki brzeg: ""
*pl.Translation Collate/Sortowanie: ""
*pl.Collate True/Włączone: ""
*pl.Collate False/Wyłączone: ""
*pl.Translation SepPages/Strony separatorów: ""
*pl.SepPages PrinterS/Użyj ustawień drukarki: ""
*pl.SepPages NoneF/Brak: ""
*pl.SepPages Jobs/Między zadaniami: ""
*pl.SepPages Copies/Między kopiami: ""
*pl.SepPages Pages/Między stronami: ""
*pl.Translation SepSource/Źródło separatorów: ""
*pl.SepSource PrinterS/Użyj ustawień drukarki: ""
*pl.SepSource Tray1/Zasobnik 1: ""
*pl.SepSource Tray2/Zasobnik 2: ""
*pl.SepSource Tray3/Zasobnik 3: ""
*pl.SepSource Tray4/Zasobnik 4: ""
*pl.SepSource Tray5/Zasobnik 5: ""
*pl.SepSource MultipurposeFeeder/Podajnik uniwersalny: ""
*pl.Translation OutputBin/Odbiornik: ""
*pl.OutputBin PrinterS/Użyj ustawień drukarki: ""
*pl.OutputBin StandardBin/Odbiornik standardowy: ""
*pl.OutputBin Bin1/Odbiornik 1: ""
*pl.OutputBin Bin2/Odbiornik 2: ""
*pl.OutputBin Bin3/Odbiornik 3: ""
*pl.Translation Offset/Przesuń strony: ""
*pl.Offset PrinterS/Użyj ustawień drukarki: ""
*pl.Offset OffsetOff/Wyłączone: ""
*pl.Offset Copies/Między kopiami: ""
*pl.Offset Jobs/Między zadaniami: ""
*pl.Translation HolePunch/Dziurkacz: ""
*pl.HolePunch PrinterS/Użyj ustawień drukarki: ""
*pl.HolePunch FalseM/Wyłączone: ""
*pl.HolePunch 2Hole/2 dziurki: ""
*pl.HolePunch 3Hole/3 dziurki: ""
*pl.HolePunch 4Hole/4 dziurki: ""
*pl.Translation StapleJob/Zadanie zszywania: ""
*pl.StapleJob PrinterS/Użyj ustawień drukarki: ""
*pl.StapleJob FalseM/Wyłączone: ""
*pl.StapleJob TrueM/Automatycznie: ""
*pl.StapleJob TopLeft/Lewy górny: ""
*pl.StapleJob TopRight/Prawy górny: ""
*pl.StapleJob BottomLeft/Lewy dolny: ""
*pl.StapleJob BottomRight/Prawy dolny: ""
*pl.StapleJob DualTop/Podwójnie u góry: ""
*pl.StapleJob DualLeft/Podwójnie po lewej: ""
*pl.StapleJob DualBottom/Podwójnie na dole: ""
*pl.StapleJob DualRight/Podwójnie po prawej: ""
*pl.Translation Fold/Składanie: ""
*pl.Fold False/Wyłączone: ""
*pl.Fold SaddleStitch/Złóż i zszyj: ""
*pl.Fold BookletFold/Składanie: ""
*pl.Fold BiFold/Złóż każdy arkusz osobno: ""
*pl.Fold TriFold/Złóż pojedyncze strony na trzy części: ""
*pl.Translation Quality/Jakość: ""
*pl.Translation LXResolution/Rozdzielczość: ""
*pl.LXResolution 1200dpi/1200 dpi: ""
*pl.LXResolution 604x600dpi/Jakość obrazu 2400: ""
*pl.Translation Halftone/Półtony: ""
*pl.Halftone PrinterS/Użyj ustawień drukarki: ""
*pl.Halftone FalseF/Normalna: ""
*pl.Halftone TrueF/Szczegóły: ""
*pl.Translation TonerDarkness/Intensywność toneru: ""
*pl.TonerDarkness PrinterS/Użyj ustawień drukarki: ""
*pl.TonerDarkness 1/1: ""
*pl.TonerDarkness 2/2: ""
*pl.TonerDarkness 3/3: ""
*pl.TonerDarkness 4/4: ""
*pl.TonerDarkness 5/5: ""
*pl.Translation LexMirror/Odbicie lustrzane: ""
*pl.LexMirror True/Włączone: ""
*pl.LexMirror False/Wyłączone: ""
*pl.Translation ColorBalance/Równowaga kolorów: ""
*pl.Translation CyanBalance/Równowaga koloru Cyan: ""
*pl.CyanBalance PrinterS/Użyj ustawień drukarki: ""
*pl.CyanBalance -5/ -5: ""
*pl.CyanBalance -4/ -4: ""
*pl.CyanBalance -3/ -3: ""
*pl.CyanBalance -2/ -2: ""
*pl.CyanBalance -1/ -1: ""
*pl.CyanBalance 0/ 0: ""
*pl.CyanBalance +1/ +1: ""
*pl.CyanBalance +2/ +2: ""
*pl.CyanBalance +3/ +3: ""
*pl.CyanBalance +4/ +4: ""
*pl.CyanBalance +5/ +5: ""
*pl.Translation MagentaBalance/Równowaga koloru Magenta: ""
*pl.MagentaBalance PrinterS/Użyj ustawień drukarki: ""
*pl.MagentaBalance -5/ -5: ""
*pl.MagentaBalance -4/ -4: ""
*pl.MagentaBalance -3/ -3: ""
*pl.MagentaBalance -2/ -2: ""
*pl.MagentaBalance -1/ -1: ""
*pl.MagentaBalance 0/ 0: ""
*pl.MagentaBalance +1/ +1: ""
*pl.MagentaBalance +2/ +2: ""
*pl.MagentaBalance +3/ +3: ""
*pl.MagentaBalance +4/ +4: ""
*pl.MagentaBalance +5/ +5: ""
*pl.Translation YellowBalance/Równowaga koloru Żółty: ""
*pl.YellowBalance PrinterS/Użyj ustawień drukarki: ""
*pl.YellowBalance -5/ -5: ""
*pl.YellowBalance -4/ -4: ""
*pl.YellowBalance -3/ -3: ""
*pl.YellowBalance -2/ -2: ""
*pl.YellowBalance -1/ -1: ""
*pl.YellowBalance 0/ 0: ""
*pl.YellowBalance +1/ +1: ""
*pl.YellowBalance +2/ +2: ""
*pl.YellowBalance +3/ +3: ""
*pl.YellowBalance +4/ +4: ""
*pl.YellowBalance +5/ +5: ""
*pl.Translation BlackBalance/Równowaga koloru Czarny: ""
*pl.BlackBalance PrinterS/Użyj ustawień drukarki: ""
*pl.BlackBalance -5/ -5: ""
*pl.BlackBalance -4/ -4: ""
*pl.BlackBalance -3/ -3: ""
*pl.BlackBalance -2/ -2: ""
*pl.BlackBalance -1/ -1: ""
*pl.BlackBalance 0/ 0: ""
*pl.BlackBalance +1/ +1: ""
*pl.BlackBalance +2/ +2: ""
*pl.BlackBalance +3/ +3: ""
*pl.BlackBalance +4/ +4: ""
*pl.BlackBalance +5/ +5: ""
*pl.Translation ColorCorrection/Korekcja kolorów: ""
*pl.Translation MediaColor/Korekcja kolorów: ""
*pl.MediaColor PrinterS/Użyj ustawień drukarki: ""
*pl.MediaColor FalseM/Wyłączone: ""
*pl.MediaColor Auto/Automatycznie: ""
*pl.MediaColor Manual/Ręcznie: ""
*pl.Translation ManualRGBImage/Korekcja RGB - obrazy: ""
*pl.ManualRGBImage PrinterS/Użyj ustawień drukarki: ""
*pl.ManualRGBImage Off/Wyłączone: ""
*pl.ManualRGBImage sRGBDisplay/sRGB — wyświetlanie: ""
*pl.ManualRGBImage sRGBVivid/sRGB — żywe: ""
*pl.ManualRGBImage DisplayRealBlack/Wyświetlanie<2d>czarny: ""
*pl.ManualRGBImage Vivid/Żywe: ""
*pl.Translation ManualRGBText/Korekcja RGB - tekst: ""
*pl.ManualRGBText PrinterS/Użyj ustawień drukarki: ""
*pl.ManualRGBText Off/Wyłączone: ""
*pl.ManualRGBText sRGBDisplay/sRGB — wyświetlanie: ""
*pl.ManualRGBText sRGBVivid/sRGB — żywe: ""
*pl.ManualRGBText DisplayRealBlack/Wyświetlanie<2d>czarny: ""
*pl.ManualRGBText Vivid/Żywe: ""
*pl.Translation ManualRGBGraphics/Korekcja RGB - grafiki: ""
*pl.ManualRGBGraphics PrinterS/Użyj ustawień drukarki: ""
*pl.ManualRGBGraphics Off/Wyłączone: ""
*pl.ManualRGBGraphics sRGBDisplay/sRGB — wyświetlanie: ""
*pl.ManualRGBGraphics sRGBVivid/sRGB — żywe: ""
*pl.ManualRGBGraphics DisplayRealBlack/Wyświetlanie<2d>czarny: ""
*pl.ManualRGBGraphics Vivid/Żywe: ""
*pl.Translation ManualCMYK/Korekcja CMYK: ""
*pl.ManualCMYK PrinterS/Użyj ustawień drukarki: ""
*pl.ManualCMYK Off/Wyłączone: ""
*pl.ManualCMYK VividCMYK/CMYK — żywe: ""
*pl.ManualCMYK EuroCMYK/Euro CMYK: ""
*pl.ManualCMYK USCMYK/US CMYK: ""
*pl.Translation Color/Kolorowy: ""
*pl.Translation ColorSaver/ColorSaverTM: ""
*pl.ColorSaver PrinterS/Użyj ustawień drukarki: ""
*pl.ColorSaver TrueM/Włączone: ""
*pl.ColorSaver FalseM/Wyłączone: ""
*pl.Translation ColorMode/Tryb koloru: ""
*pl.ColorMode PrinterS/Użyj ustawień drukarki: ""
*pl.ColorMode TrueM/Kolorowy: ""
*pl.ColorMode FalseM/Monochromatyczny: ""
*pl.Translation RGBCorrection/Korekcja RGB: ""
*pl.Translation LexBrightness/Jasność: ""
*pl.LexBrightness PrinterS/Użyj ustawień drukarki: ""
*pl.LexBrightness -6/ -6: ""
*pl.LexBrightness -5/ -5: ""
*pl.LexBrightness -4/ -4: ""
*pl.LexBrightness -3/ -3: ""
*pl.LexBrightness -2/ -2: ""
*pl.LexBrightness -1/ -1: ""
*pl.LexBrightness 0/ 0: ""
*pl.LexBrightness +1/ +1: ""
*pl.LexBrightness +2/ +2: ""
*pl.LexBrightness +3/ +3: ""
*pl.LexBrightness +4/ +4: ""
*pl.LexBrightness +5/ +5: ""
*pl.LexBrightness +6/ +6: ""
*pl.Translation LexContrast/Kontrast: ""
*pl.LexContrast PrinterS/Użyj ustawień drukarki: ""
*pl.LexContrast 0/0: ""
*pl.LexContrast 1/1: ""
*pl.LexContrast 2/2: ""
*pl.LexContrast 3/3: ""
*pl.LexContrast 4/4: ""
*pl.LexContrast 5/5: ""
*pl.Translation LexSaturation/Nasycenie: ""
*pl.LexSaturation PrinterS/Użyj ustawień drukarki: ""
*pl.LexSaturation 0/0: ""
*pl.LexSaturation 1/1: ""
*pl.LexSaturation 2/2: ""
*pl.LexSaturation 3/3: ""
*pl.LexSaturation 4/4: ""
*pl.LexSaturation 5/5: ""
*pl.Translation Paper/Papier: ""
*pl.Translation MediaType/Typ papieru: ""
*pl.MediaType PrinterS/Użyj ustawień drukarki: ""
*pl.MediaType Plain/Zwykły: ""
*pl.MediaType Colored/Papier kolorowy: ""
*pl.MediaType Transparency/Folia: ""
*pl.MediaType Card/Card stock: ""
*pl.MediaType Labels/Etykiety: ""
*pl.MediaType Bond/Papier dokumentowy: ""
*pl.MediaType Letterhead/Papier firmowy: ""
*pl.MediaType Preprint/Formularze: ""
*pl.MediaType RoughEnvelope/Koperta gruboziarnista: ""
*pl.MediaType Envelope/Koperta: ""
*pl.MediaType Recycled/Makulaturowy: ""
*pl.MediaType Light/O małej gramaturze: ""
*pl.MediaType Heavy/O dużej gramaturze: ""
*pl.MediaType Glossy/Błyszczący: ""
*pl.MediaType HeavyGlossy/Błyszczący o dużej gramaturze: ""
*pl.MediaType Rough/Gruboziarnisty/bawełniany: ""
*pl.MediaType Custom1/Typ niest. 1: ""
*pl.MediaType Custom2/Typ niest. 2: ""
*pl.MediaType Custom3/Typ niest. 3: ""
*pl.MediaType Custom4/Typ niest. 4: ""
*pl.MediaType Custom5/Typ niest. 5: ""
*pl.MediaType Custom6/Typ niest. 6: ""
*pl.Translation LexBlankPage/Drukuj puste strony: ""
*pl.LexBlankPage PrinterS/Użyj ustawień drukarki: ""
*pl.LexBlankPage False/Wyłączone: ""
*pl.LexBlankPage True/Włączone: ""
*pt.Translation Manufacturer/Lexmark: ""
*pt.Translation ModelName/Lexmark C9200 Series: ""
*pt.Translation ShortNickName/Lexmark C9200 Series: ""
*pt.Translation NickName/Lexmark C9200 Series: ""
*pt.Translation PageSize/Tamanho da mídia: ""
*pt.PageSize Letter/Carta (8 1/2 x 11 pol): ""
*pt.PageSize Legal/Ofício (8 1/2 x 14 pol): ""
*pt.PageSize 8.5x13.4028/Ofício (México) (216 x 340 mm): ""
*pt.PageSize B5/B5 (182 x 257 mm): ""
*pt.PageSize B4/JIS B4: ""
*pt.PageSize A4/A4 (210 x 297 mm): ""
*pt.PageSize Executive/Executivo (7 1/4 x 10 1/2 pol): ""
*pt.PageSize A5/A5 (148 x 210 mm): ""
*pt.PageSize A6/A6 (105 x 148 mm): ""
*pt.PageSize A3/A3 (297 x 420 mm): ""
*pt.PageSize LxkSRA3/SRA3 (320 x 450 mm): ""
*pt.PageSize Tabloid/Tabloid (11 x 17 in): ""
*pt.PageSize Lxk12x18in/Tabloid Oversize: ""
*pt.PageSize FanFoldGermanLegal/Folio (8 1/2 x 13 pol): ""
*pt.PageSize Statement/Declaraçăo (5 1/2 x 8 1/2 pol): ""
*pt.PageSize EnvMonarch/Envelope 7 3/4(3 7/8x7 1/2 pol): ""
*pt.PageSize Env9/Envelope 9 (3 7/8 x 8 7/8 pol): ""
*pt.PageSize Env10/Envelope 10 (4 1/8 x 9 1/2 pol): ""
*pt.PageSize EnvDL/Envelope DL (110 x 220 mm): ""
*pt.PageSize EnvC5/Envelope C5 (162 x 229 mm): ""
*pt.PageSize ISOB5/Envelope B5 (176 x 250 mm): ""
*pt.PageSize OthEnv/Outros Envelopes: ""
*pt.Translation InputSlot/Origem da mídia: ""
*pt.InputSlot Tray1/Bandeja 1: ""
*pt.InputSlot Tray2/Bandeja 2: ""
*pt.InputSlot Tray3/Bandeja 3: ""
*pt.InputSlot Tray4/Bandeja 4: ""
*pt.InputSlot Tray5/Bandeja 5: ""
*pt.InputSlot MultipurposeFeeder/Alimentador Multipropósito: ""
*pt.InputSlot ManualPaper/Papel Manual: ""
*pt.InputSlot ManualEnv/Envelope Manual: ""
*pt.Translation InstallableOptions/Opções instaláveis: ""
*pt.Translation OptDuplex/Duplexador: ""
*pt.OptDuplex False/Năo Instalado: ""
*pt.OptDuplex True/Instalada: ""
*pt.Translation OptFlash/Placa Memória Flash: ""
*pt.OptFlash False/Năo Instalado: ""
*pt.OptFlash True/Instalada: ""
*pt.Translation OptTray2/Bandeja 2: ""
*pt.OptTray2 False/Năo Instalado: ""
*pt.OptTray2 True/Instalada: ""
*pt.Translation OptTray3/Bandeja 3: ""
*pt.OptTray3 False/Năo Instalado: ""
*pt.OptTray3 True/Instalada: ""
*pt.Translation OptTray4/Bandeja 4: ""
*pt.OptTray4 False/Năo Instalado: ""
*pt.OptTray4 True/Instalada: ""
*pt.Translation OptTray5/Bandeja 5: ""
*pt.OptTray5 False/Năo Instalado: ""
*pt.OptTray5 True/Instalada: ""
*pt.Translation OptMultipurposeFeeder/Alimentador Multipropósito: ""
*pt.OptMultipurposeFeeder False/Năo Instalado: ""
*pt.OptMultipurposeFeeder True/Instalada: ""
*pt.Translation OptBin1/Bandeja de Saída 1: ""
*pt.OptBin1 False/Năo Instalado: ""
*pt.OptBin1 True/Instalada: ""
*pt.Translation OptBin2/Bandeja de Saída 2: ""
*pt.OptBin2 False/Năo Instalado: ""
*pt.OptBin2 True/Instalada: ""
*pt.Translation OptBin3/Bandeja de Saída 3: ""
*pt.OptBin3 False/Năo Instalado: ""
*pt.OptBin3 True/Instalada: ""
*pt.Translation OptOffset/Separar: ""
*pt.OptOffset False/Năo Instalado: ""
*pt.OptOffset True/Instalada: ""
*pt.Translation OptStapler/Grampeador: ""
*pt.OptStapler False/Năo Instalado: ""
*pt.OptStapler True/Instalada: ""
*pt.Translation OptHolePunch/Perfuração: ""
*pt.OptHolePunch False/Năo Instalado: ""
*pt.OptHolePunch True/Instalada: ""
*pt.Translation OptFold/Dobrar: ""
*pt.OptFold False/Năo Instalado: ""
*pt.OptFold True/Instalada: ""
*pt.Translation Finishing/Acabamento: ""
*pt.Translation Duplex/Modo Duplex: ""
*pt.Duplex None/Nenhum: ""
*pt.Duplex DuplexNoTumble/Margem Longa: ""
*pt.Duplex DuplexTumble/Duplex - Borda Curta: ""
*pt.Translation Collate/Agrupar: ""
*pt.Collate True/Ativar: ""
*pt.Collate False/Desligado: ""
*pt.Translation SepPages/Páginas Separadoras: ""
*pt.SepPages PrinterS/Usar config. da impr.: ""
*pt.SepPages NoneF/Nenhum: ""
*pt.SepPages Jobs/Entre Trabalhos: ""
*pt.SepPages Copies/Entre Cópias: ""
*pt.SepPages Pages/Entre Páginas: ""
*pt.Translation SepSource/Origem do Separador: ""
*pt.SepSource PrinterS/Usar config. da impr.: ""
*pt.SepSource Tray1/Bandeja 1: ""
*pt.SepSource Tray2/Bandeja 2: ""
*pt.SepSource Tray3/Bandeja 3: ""
*pt.SepSource Tray4/Bandeja 4: ""
*pt.SepSource Tray5/Bandeja 5: ""
*pt.SepSource MultipurposeFeeder/Alimentador Multipropósito: ""
*pt.Translation OutputBin/Bandejas de Saída: ""
*pt.OutputBin PrinterS/Usar config. da impr.: ""
*pt.OutputBin StandardBin/Bandeja de Saída padrão: ""
*pt.OutputBin Bin1/Bandeja de Saída 1: ""
*pt.OutputBin Bin2/Bandeja de Saída 2: ""
*pt.OutputBin Bin3/Bandeja de Saída 3: ""
*pt.Translation Offset/Separação de Trabalhos: ""
*pt.Offset PrinterS/Usar config. da impr.: ""
*pt.Offset OffsetOff/Desligado: ""
*pt.Offset Copies/Entre Cópias: ""
*pt.Offset Jobs/Entre Trabalhos: ""
*pt.Translation HolePunch/Perfuração: ""
*pt.HolePunch PrinterS/Usar config. da impr.: ""
*pt.HolePunch FalseM/Desligado: ""
*pt.HolePunch 2Hole/2 furos: ""
*pt.HolePunch 3Hole/3 furos: ""
*pt.HolePunch 4Hole/4 furos: ""
*pt.Translation StapleJob/Grampeamento: ""
*pt.StapleJob PrinterS/Usar config. da impr.: ""
*pt.StapleJob FalseM/Desligado: ""
*pt.StapleJob TrueM/Automático: ""
*pt.StapleJob TopLeft/Superior esquerda: ""
*pt.StapleJob TopRight/Superior direita: ""
*pt.StapleJob BottomLeft/Inferior esquerda: ""
*pt.StapleJob BottomRight/Inferior direita: ""
*pt.StapleJob DualTop/Superior dupla: ""
*pt.StapleJob DualLeft/Esquerda dupla: ""
*pt.StapleJob DualBottom/Inferior dupla: ""
*pt.StapleJob DualRight/Direita dupla: ""
*pt.Translation Fold/Dobrar: ""
*pt.Fold False/Desligado: ""
*pt.Fold SaddleStitch/Dobrar e grampear: ""
*pt.Fold BookletFold/Dobrar: ""
*pt.Fold BiFold/Dobrar cada folha individualmente: ""
*pt.Fold TriFold/Páginas Individuais 3 dobras: ""
*pt.Translation Quality/Qualidade: ""
*pt.Translation LXResolution/Resolução: ""
*pt.LXResolution 1200dpi/1200 dpi: ""
*pt.LXResolution 604x600dpi/Qualidade de Imagem 2400: ""
*pt.Translation Halftone/Meio-tom: ""
*pt.Halftone PrinterS/Usar config. da impr.: ""
*pt.Halftone FalseF/Normal : ""
*pt.Halftone TrueF/Detalhe: ""
*pt.Translation TonerDarkness/Tonalidade de toner: ""
*pt.TonerDarkness PrinterS/Usar config. da impr.: ""
*pt.TonerDarkness 1/1: ""
*pt.TonerDarkness 2/2: ""
*pt.TonerDarkness 3/3: ""
*pt.TonerDarkness 4/4: ""
*pt.TonerDarkness 5/5: ""
*pt.Translation LexMirror/Espelhado: ""
*pt.LexMirror True/Ativar: ""
*pt.LexMirror False/Desligado: ""
*pt.Translation ColorBalance/Balaceamento de cores: ""
*pt.Translation CyanBalance/EquilÌbrio de ciano: ""
*pt.CyanBalance PrinterS/Usar config. da impr.: ""
*pt.CyanBalance -5/ -5: ""
*pt.CyanBalance -4/ -4: ""
*pt.CyanBalance -3/ -3: ""
*pt.CyanBalance -2/ -2: ""
*pt.CyanBalance -1/ -1: ""
*pt.CyanBalance 0/ 0: ""
*pt.CyanBalance +1/ +1: ""
*pt.CyanBalance +2/ +2: ""
*pt.CyanBalance +3/ +3: ""
*pt.CyanBalance +4/ +4: ""
*pt.CyanBalance +5/ +5: ""
*pt.Translation MagentaBalance/EquilÌbrio de magenta: ""
*pt.MagentaBalance PrinterS/Usar config. da impr.: ""
*pt.MagentaBalance -5/ -5: ""
*pt.MagentaBalance -4/ -4: ""
*pt.MagentaBalance -3/ -3: ""
*pt.MagentaBalance -2/ -2: ""
*pt.MagentaBalance -1/ -1: ""
*pt.MagentaBalance 0/ 0: ""
*pt.MagentaBalance +1/ +1: ""
*pt.MagentaBalance +2/ +2: ""
*pt.MagentaBalance +3/ +3: ""
*pt.MagentaBalance +4/ +4: ""
*pt.MagentaBalance +5/ +5: ""
*pt.Translation YellowBalance/EquilÌbrio de amarelo: ""
*pt.YellowBalance PrinterS/Usar config. da impr.: ""
*pt.YellowBalance -5/ -5: ""
*pt.YellowBalance -4/ -4: ""
*pt.YellowBalance -3/ -3: ""
*pt.YellowBalance -2/ -2: ""
*pt.YellowBalance -1/ -1: ""
*pt.YellowBalance 0/ 0: ""
*pt.YellowBalance +1/ +1: ""
*pt.YellowBalance +2/ +2: ""
*pt.YellowBalance +3/ +3: ""
*pt.YellowBalance +4/ +4: ""
*pt.YellowBalance +5/ +5: ""
*pt.Translation BlackBalance/EquilÌbrio de preto: ""
*pt.BlackBalance PrinterS/Usar config. da impr.: ""
*pt.BlackBalance -5/ -5: ""
*pt.BlackBalance -4/ -4: ""
*pt.BlackBalance -3/ -3: ""
*pt.BlackBalance -2/ -2: ""
*pt.BlackBalance -1/ -1: ""
*pt.BlackBalance 0/ 0: ""
*pt.BlackBalance +1/ +1: ""
*pt.BlackBalance +2/ +2: ""
*pt.BlackBalance +3/ +3: ""
*pt.BlackBalance +4/ +4: ""
*pt.BlackBalance +5/ +5: ""
*pt.Translation ColorCorrection/Correção de Cor: ""
*pt.Translation MediaColor/Correção de Cor: ""
*pt.MediaColor PrinterS/Usar config. da impr.: ""
*pt.MediaColor FalseM/Desligado: ""
*pt.MediaColor Auto/Automático: ""
*pt.MediaColor Manual/Manual: ""
*pt.Translation ManualRGBImage/Correção RGB para imagens: ""
*pt.ManualRGBImage PrinterS/Usar config. da impr.: ""
*pt.ManualRGBImage Off/Desligado: ""
*pt.ManualRGBImage sRGBDisplay/Exibir sRGB: ""
*pt.ManualRGBImage sRGBVivid/Nítido sRGB: ""
*pt.ManualRGBImage DisplayRealBlack/Exibir - preto real: ""
*pt.ManualRGBImage Vivid/Cores vivas: ""
*pt.Translation ManualRGBText/Correção RGB para texto: ""
*pt.ManualRGBText PrinterS/Usar config. da impr.: ""
*pt.ManualRGBText Off/Desligado: ""
*pt.ManualRGBText sRGBDisplay/Exibir sRGB: ""
*pt.ManualRGBText sRGBVivid/Nítido sRGB: ""
*pt.ManualRGBText DisplayRealBlack/Exibir - preto real: ""
*pt.ManualRGBText Vivid/Cores vivas: ""
*pt.Translation ManualRGBGraphics/Correção RGB para gráficos: ""
*pt.ManualRGBGraphics PrinterS/Usar config. da impr.: ""
*pt.ManualRGBGraphics Off/Desligado: ""
*pt.ManualRGBGraphics sRGBDisplay/Exibir sRGB: ""
*pt.ManualRGBGraphics sRGBVivid/Nítido sRGB: ""
*pt.ManualRGBGraphics DisplayRealBlack/Exibir - preto real: ""
*pt.ManualRGBGraphics Vivid/Cores vivas: ""
*pt.Translation ManualCMYK/Correção CMYK: ""
*pt.ManualCMYK PrinterS/Usar config. da impr.: ""
*pt.ManualCMYK Off/Desligado: ""
*pt.ManualCMYK VividCMYK/CMYK Vivas: ""
*pt.ManualCMYK EuroCMYK/EURO CMYK: ""
*pt.ManualCMYK USCMYK/US CMYK: ""
*pt.Translation Color/Colorido: ""
*pt.Translation ColorSaver/ColorSaverTM: ""
*pt.ColorSaver PrinterS/Usar config. da impr.: ""
*pt.ColorSaver TrueM/Ativar: ""
*pt.ColorSaver FalseM/Desligado: ""
*pt.Translation ColorMode/Modo colorido: ""
*pt.ColorMode PrinterS/Usar config. da impr.: ""
*pt.ColorMode TrueM/Colorido: ""
*pt.ColorMode FalseM/Monocromática: ""
*pt.Translation RGBCorrection/Correçăo RGB: ""
*pt.Translation LexBrightness/Brilho: ""
*pt.LexBrightness PrinterS/Usar config. da impr.: ""
*pt.LexBrightness -6/ -6: ""
*pt.LexBrightness -5/ -5: ""
*pt.LexBrightness -4/ -4: ""
*pt.LexBrightness -3/ -3: ""
*pt.LexBrightness -2/ -2: ""
*pt.LexBrightness -1/ -1: ""
*pt.LexBrightness 0/ 0: ""
*pt.LexBrightness +1/ +1: ""
*pt.LexBrightness +2/ +2: ""
*pt.LexBrightness +3/ +3: ""
*pt.LexBrightness +4/ +4: ""
*pt.LexBrightness +5/ +5: ""
*pt.LexBrightness +6/ +6: ""
*pt.Translation LexContrast/Contraste: ""
*pt.LexContrast PrinterS/Usar config. da impr.: ""
*pt.LexContrast 0/0: ""
*pt.LexContrast 1/1: ""
*pt.LexContrast 2/2: ""
*pt.LexContrast 3/3: ""
*pt.LexContrast 4/4: ""
*pt.LexContrast 5/5: ""
*pt.Translation LexSaturation/Saturação: ""
*pt.LexSaturation PrinterS/Usar config. da impr.: ""
*pt.LexSaturation 0/0: ""
*pt.LexSaturation 1/1: ""
*pt.LexSaturation 2/2: ""
*pt.LexSaturation 3/3: ""
*pt.LexSaturation 4/4: ""
*pt.LexSaturation 5/5: ""
*pt.Translation Paper/Papel: ""
*pt.Translation MediaType/Tipo de Papel: ""
*pt.MediaType PrinterS/Usar config. da impr.: ""
*pt.MediaType Plain/Plain: ""
*pt.MediaType Colored/Colorido: ""
*pt.MediaType Transparency/Transparência: ""
*pt.MediaType Card/Card stock: ""
*pt.MediaType Labels/Etiquetas: ""
*pt.MediaType Bond/Encorpado: ""
*pt.MediaType Letterhead/Timbrado: ""
*pt.MediaType Preprint/Pré-impresso: ""
*pt.MediaType RoughEnvelope/Envelope Àspero: ""
*pt.MediaType Envelope/Envelopes: ""
*pt.MediaType Recycled/Reciclado: ""
*pt.MediaType Light/Claro: ""
*pt.MediaType Heavy/Maior gramatura: ""
*pt.MediaType Glossy/Brilhoso: ""
*pt.MediaType HeavyGlossy/Pesado brilhante: ""
*pt.MediaType Rough/Áspero/algodão: ""
*pt.MediaType Custom1/Person tipo 1: ""
*pt.MediaType Custom2/Person tipo 2: ""
*pt.MediaType Custom3/Person tipo 3: ""
*pt.MediaType Custom4/Person tipo 4: ""
*pt.MediaType Custom5/Person tipo 5: ""
*pt.MediaType Custom6/Person tipo 6: ""
*pt.Translation LexBlankPage/Imprimir páginas em branco: ""
*pt.LexBlankPage PrinterS/Usar config. da impr.: ""
*pt.LexBlankPage False/Desligado: ""
*pt.LexBlankPage True/Ativar: ""
*zh_tw.Translation Manufacturer/Lexmark: ""
*zh_tw.Translation ModelName/Lexmark C9200 Series: ""
*zh_tw.Translation ShortNickName/Lexmark C9200 Series: ""
*zh_tw.Translation NickName/Lexmark C9200 Series: ""
*zh_tw.Translation PageSize/材質尺寸: ""
*zh_tw.PageSize Letter/Letter(8 1/2 x 11 英吋): ""
*zh_tw.PageSize Legal/Legal(8 1/2 x 14 英吋): ""
*zh_tw.PageSize 8.5x13.4028/Oficio (墨西哥)(216 x 340 公釐): ""
*zh_tw.PageSize B5/B5(182 x 257 公釐): ""
*zh_tw.PageSize B4/JIS B4: ""
*zh_tw.PageSize A4/A4(210 x 297 公釐): ""
*zh_tw.PageSize Executive/Executive(7 1/4x10 1/2 英吋): ""
*zh_tw.PageSize A5/A5(148 x 210 公釐): ""
*zh_tw.PageSize A6/A6(105 x 148 公釐): ""
*zh_tw.PageSize A3/A3 (297 x 420 mm): ""
*zh_tw.PageSize LxkSRA3/SRA3 (320 x 450 mm): ""
*zh_tw.PageSize Tabloid/Tabloid (11 x 17 in): ""
*zh_tw.PageSize Lxk12x18in/Tabloid Oversize: ""
*zh_tw.PageSize FanFoldGermanLegal/Folio(8 1/2 x 13 英吋): ""
*zh_tw.PageSize Statement/Statement(5 1/2x8 1/2 英吋): ""
*zh_tw.PageSize EnvMonarch/7 3/4 號信封 (3 7/8x7 1/2 英吋): ""
*zh_tw.PageSize Env9/9 號信封 (3 7/8 x 8 7/8 英吋): ""
*zh_tw.PageSize Env10/10 號信封 (4 1/8 x 9 1/2 英吋): ""
*zh_tw.PageSize EnvDL/DL 信封 (110 x 220 公釐): ""
*zh_tw.PageSize EnvC5/C5 信封 (162 x 229 公釐): ""
*zh_tw.PageSize ISOB5/B5 信封 (176 x 250 公釐): ""
*zh_tw.PageSize OthEnv/其它信封: ""
*zh_tw.Translation InputSlot/材質來源: ""
*zh_tw.InputSlot Tray1/裝紙匣 1: ""
*zh_tw.InputSlot Tray2/送紙匣 2: ""
*zh_tw.InputSlot Tray3/裝紙匣 3: ""
*zh_tw.InputSlot Tray4/裝紙匣 4: ""
*zh_tw.InputSlot Tray5/裝紙匣 5: ""
*zh_tw.InputSlot MultipurposeFeeder/多用途送紙器: ""
*zh_tw.InputSlot ManualPaper/手動送紙: ""
*zh_tw.InputSlot ManualEnv/手動信封: ""
*zh_tw.Translation InstallableOptions/可安裝選購品: ""
*zh_tw.Translation OptDuplex/雙面列印裝置: ""
*zh_tw.OptDuplex False/未安裝: ""
*zh_tw.OptDuplex True/已安裝: ""
*zh_tw.Translation OptFlash/快閃: ""
*zh_tw.OptFlash False/未安裝: ""
*zh_tw.OptFlash True/已安裝: ""
*zh_tw.Translation OptTray2/送紙匣 2: ""
*zh_tw.OptTray2 False/未安裝: ""
*zh_tw.OptTray2 True/已安裝: ""
*zh_tw.Translation OptTray3/裝紙匣 3: ""
*zh_tw.OptTray3 False/未安裝: ""
*zh_tw.OptTray3 True/已安裝: ""
*zh_tw.Translation OptTray4/裝紙匣 4: ""
*zh_tw.OptTray4 False/未安裝: ""
*zh_tw.OptTray4 True/已安裝: ""
*zh_tw.Translation OptTray5/裝紙匣 5: ""
*zh_tw.OptTray5 False/未安裝: ""
*zh_tw.OptTray5 True/已安裝: ""
*zh_tw.Translation OptMultipurposeFeeder/多用途送紙器: ""
*zh_tw.OptMultipurposeFeeder False/未安裝: ""
*zh_tw.OptMultipurposeFeeder True/已安裝: ""
*zh_tw.Translation OptBin1/1 號送紙匣: ""
*zh_tw.OptBin1 False/未安裝: ""
*zh_tw.OptBin1 True/已安裝: ""
*zh_tw.Translation OptBin2/2 號送紙匣: ""
*zh_tw.OptBin2 False/未安裝: ""
*zh_tw.OptBin2 True/已安裝: ""
*zh_tw.Translation OptBin3/3 號送紙匣: ""
*zh_tw.OptBin3 False/未安裝: ""
*zh_tw.OptBin3 True/已安裝: ""
*zh_tw.Translation OptOffset/偏位: ""
*zh_tw.OptOffset False/未安裝: ""
*zh_tw.OptOffset True/已安裝: ""
*zh_tw.Translation OptStapler/裝訂: ""
*zh_tw.OptStapler False/未安裝: ""
*zh_tw.OptStapler True/已安裝: ""
*zh_tw.Translation OptHolePunch/打孔: ""
*zh_tw.OptHolePunch False/未安裝: ""
*zh_tw.OptHolePunch True/已安裝: ""
*zh_tw.Translation OptFold/摺疊: ""
*zh_tw.OptFold False/未安裝: ""
*zh_tw.OptFold True/已安裝: ""
*zh_tw.Translation Finishing/輸出處理: ""
*zh_tw.Translation Duplex/雙面列印: ""
*zh_tw.Duplex None/無: ""
*zh_tw.Duplex DuplexNoTumble/雙面列印 - 長邊: ""
*zh_tw.Duplex DuplexTumble/雙面列印 - 短邊: ""
*zh_tw.Translation Collate/逐份列印: ""
*zh_tw.Collate True/開: ""
*zh_tw.Collate False/關: ""
*zh_tw.Translation SepPages/分隔頁: ""
*zh_tw.SepPages PrinterS/使用印表機設定: ""
*zh_tw.SepPages NoneF/無: ""
*zh_tw.SepPages Jobs/介於工作之間: ""
*zh_tw.SepPages Copies/在列印副本之間: ""
*zh_tw.SepPages Pages/介於頁面之間: ""
*zh_tw.Translation SepSource/分隔頁來源: ""
*zh_tw.SepSource PrinterS/使用印表機設定: ""
*zh_tw.SepSource Tray1/裝紙匣 1: ""
*zh_tw.SepSource Tray2/送紙匣 2: ""
*zh_tw.SepSource Tray3/裝紙匣 3: ""
*zh_tw.SepSource Tray4/裝紙匣 4: ""
*zh_tw.SepSource Tray5/裝紙匣 5: ""
*zh_tw.SepSource MultipurposeFeeder/多用途送紙器: ""
*zh_tw.Translation OutputBin/出紙架: ""
*zh_tw.OutputBin PrinterS/使用印表機設定: ""
*zh_tw.OutputBin StandardBin/標準送紙匣: ""
*zh_tw.OutputBin Bin1/1 號送紙匣: ""
*zh_tw.OutputBin Bin2/2 號送紙匣: ""
*zh_tw.OutputBin Bin3/3 號送紙匣: ""
*zh_tw.Translation Offset/頁面偏位: ""
*zh_tw.Offset PrinterS/使用印表機設定: ""
*zh_tw.Offset OffsetOff/關: ""
*zh_tw.Offset Copies/在列印副本之間: ""
*zh_tw.Offset Jobs/介於工作之間: ""
*zh_tw.Translation HolePunch/打孔: ""
*zh_tw.HolePunch PrinterS/使用印表機設定: ""
*zh_tw.HolePunch FalseM/關: ""
*zh_tw.HolePunch 2Hole/2 孔: ""
*zh_tw.HolePunch 3Hole/3 孔: ""
*zh_tw.HolePunch 4Hole/4 孔: ""
*zh_tw.Translation StapleJob/裝訂工作: ""
*zh_tw.StapleJob PrinterS/使用印表機設定: ""
*zh_tw.StapleJob FalseM/關: ""
*zh_tw.StapleJob TrueM/自動: ""
*zh_tw.StapleJob TopLeft/左上方: ""
*zh_tw.StapleJob TopRight/右上方: ""
*zh_tw.StapleJob BottomLeft/左下方: ""
*zh_tw.StapleJob BottomRight/右下方: ""
*zh_tw.StapleJob DualTop/上方裝訂兩處: ""
*zh_tw.StapleJob DualLeft/左方裝訂兩處: ""
*zh_tw.StapleJob DualBottom/下方裝訂兩處: ""
*zh_tw.StapleJob DualRight/右方裝訂兩處: ""
*zh_tw.Translation Fold/摺疊: ""
*zh_tw.Fold False/關: ""
*zh_tw.Fold SaddleStitch/摺疊並裝訂: ""
*zh_tw.Fold BookletFold/摺疊: ""
*zh_tw.Fold BiFold/分別摺疊每張紙: ""
*zh_tw.Fold TriFold/三摺個別頁面: ""
*zh_tw.Translation Quality/品質: ""
*zh_tw.Translation LXResolution/列印解析度: ""
*zh_tw.LXResolution 1200dpi/1200 dpi: ""
*zh_tw.LXResolution 604x600dpi/2400 影像品質: ""
*zh_tw.Translation Halftone/半色調: ""
*zh_tw.Halftone PrinterS/使用印表機設定: ""
*zh_tw.Halftone FalseF/一般: ""
*zh_tw.Halftone TrueF/詳細資料: ""
*zh_tw.Translation TonerDarkness/碳粉明暗度: ""
*zh_tw.TonerDarkness PrinterS/使用印表機設定: ""
*zh_tw.TonerDarkness 1/1: ""
*zh_tw.TonerDarkness 2/2: ""
*zh_tw.TonerDarkness 3/3: ""
*zh_tw.TonerDarkness 4/4: ""
*zh_tw.TonerDarkness 5/5: ""
*zh_tw.Translation LexMirror/鏡映: ""
*zh_tw.LexMirror True/開: ""
*zh_tw.LexMirror False/關: ""
*zh_tw.Translation ColorBalance/色彩平衡: ""
*zh_tw.Translation CyanBalance/靛青色平衡: ""
*zh_tw.CyanBalance PrinterS/使用印表機設定: ""
*zh_tw.CyanBalance -5/ -5: ""
*zh_tw.CyanBalance -4/ -4: ""
*zh_tw.CyanBalance -3/ -3: ""
*zh_tw.CyanBalance -2/ -2: ""
*zh_tw.CyanBalance -1/ -1: ""
*zh_tw.CyanBalance 0/ 0: ""
*zh_tw.CyanBalance +1/ +1: ""
*zh_tw.CyanBalance +2/ +2: ""
*zh_tw.CyanBalance +3/ +3: ""
*zh_tw.CyanBalance +4/ +4: ""
*zh_tw.CyanBalance +5/ +5: ""
*zh_tw.Translation MagentaBalance/洋紅色平衡: ""
*zh_tw.MagentaBalance PrinterS/使用印表機設定: ""
*zh_tw.MagentaBalance -5/ -5: ""
*zh_tw.MagentaBalance -4/ -4: ""
*zh_tw.MagentaBalance -3/ -3: ""
*zh_tw.MagentaBalance -2/ -2: ""
*zh_tw.MagentaBalance -1/ -1: ""
*zh_tw.MagentaBalance 0/ 0: ""
*zh_tw.MagentaBalance +1/ +1: ""
*zh_tw.MagentaBalance +2/ +2: ""
*zh_tw.MagentaBalance +3/ +3: ""
*zh_tw.MagentaBalance +4/ +4: ""
*zh_tw.MagentaBalance +5/ +5: ""
*zh_tw.Translation YellowBalance/黃色平衡: ""
*zh_tw.YellowBalance PrinterS/使用印表機設定: ""
*zh_tw.YellowBalance -5/ -5: ""
*zh_tw.YellowBalance -4/ -4: ""
*zh_tw.YellowBalance -3/ -3: ""
*zh_tw.YellowBalance -2/ -2: ""
*zh_tw.YellowBalance -1/ -1: ""
*zh_tw.YellowBalance 0/ 0: ""
*zh_tw.YellowBalance +1/ +1: ""
*zh_tw.YellowBalance +2/ +2: ""
*zh_tw.YellowBalance +3/ +3: ""
*zh_tw.YellowBalance +4/ +4: ""
*zh_tw.YellowBalance +5/ +5: ""
*zh_tw.Translation BlackBalance/黑色平衡: ""
*zh_tw.BlackBalance PrinterS/使用印表機設定: ""
*zh_tw.BlackBalance -5/ -5: ""
*zh_tw.BlackBalance -4/ -4: ""
*zh_tw.BlackBalance -3/ -3: ""
*zh_tw.BlackBalance -2/ -2: ""
*zh_tw.BlackBalance -1/ -1: ""
*zh_tw.BlackBalance 0/ 0: ""
*zh_tw.BlackBalance +1/ +1: ""
*zh_tw.BlackBalance +2/ +2: ""
*zh_tw.BlackBalance +3/ +3: ""
*zh_tw.BlackBalance +4/ +4: ""
*zh_tw.BlackBalance +5/ +5: ""
*zh_tw.Translation ColorCorrection/色彩修正: ""
*zh_tw.Translation MediaColor/色彩修正: ""
*zh_tw.MediaColor PrinterS/使用印表機設定: ""
*zh_tw.MediaColor FalseM/關: ""
*zh_tw.MediaColor Auto/自動: ""
*zh_tw.MediaColor Manual/手動: ""
*zh_tw.Translation ManualRGBImage/影像的 RGB 修正: ""
*zh_tw.ManualRGBImage PrinterS/使用印表機設定: ""
*zh_tw.ManualRGBImage Off/關: ""
*zh_tw.ManualRGBImage sRGBDisplay/sRGB 顯示: ""
*zh_tw.ManualRGBImage sRGBVivid/sRGB 鮮明色彩: ""
*zh_tw.ManualRGBImage DisplayRealBlack/顯示-純黑色: ""
*zh_tw.ManualRGBImage Vivid/鮮明色彩: ""
*zh_tw.Translation ManualRGBText/文字的 RGB 修正: ""
*zh_tw.ManualRGBText PrinterS/使用印表機設定: ""
*zh_tw.ManualRGBText Off/關: ""
*zh_tw.ManualRGBText sRGBDisplay/sRGB 顯示: ""
*zh_tw.ManualRGBText sRGBVivid/sRGB 鮮明色彩: ""
*zh_tw.ManualRGBText DisplayRealBlack/顯示-純黑色: ""
*zh_tw.ManualRGBText Vivid/鮮明色彩: ""
*zh_tw.Translation ManualRGBGraphics/圖形的 RGB 修正: ""
*zh_tw.ManualRGBGraphics PrinterS/使用印表機設定: ""
*zh_tw.ManualRGBGraphics Off/關: ""
*zh_tw.ManualRGBGraphics sRGBDisplay/sRGB 顯示: ""
*zh_tw.ManualRGBGraphics sRGBVivid/sRGB 鮮明色彩: ""
*zh_tw.ManualRGBGraphics DisplayRealBlack/顯示-純黑色: ""
*zh_tw.ManualRGBGraphics Vivid/鮮明色彩: ""
*zh_tw.Translation ManualCMYK/CMYK 修正: ""
*zh_tw.ManualCMYK PrinterS/使用印表機設定: ""
*zh_tw.ManualCMYK Off/關: ""
*zh_tw.ManualCMYK VividCMYK/鮮明色彩 CMYK: ""
*zh_tw.ManualCMYK EuroCMYK/Euro CMYK: ""
*zh_tw.ManualCMYK USCMYK/美式 CMYK: ""
*zh_tw.Translation Color/色彩: ""
*zh_tw.Translation ColorSaver/ColorSaverTM: ""
*zh_tw.ColorSaver PrinterS/使用印表機設定: ""
*zh_tw.ColorSaver TrueM/開: ""
*zh_tw.ColorSaver FalseM/關: ""
*zh_tw.Translation ColorMode/颜色模式: ""
*zh_tw.ColorMode PrinterS/使用印表機設定: ""
*zh_tw.ColorMode TrueM/色彩: ""
*zh_tw.ColorMode FalseM/單色: ""
*zh_tw.Translation RGBCorrection/RGB 修正: ""
*zh_tw.Translation LexBrightness/亮度: ""
*zh_tw.LexBrightness PrinterS/使用印表機設定: ""
*zh_tw.LexBrightness -6/ -6: ""
*zh_tw.LexBrightness -5/ -5: ""
*zh_tw.LexBrightness -4/ -4: ""
*zh_tw.LexBrightness -3/ -3: ""
*zh_tw.LexBrightness -2/ -2: ""
*zh_tw.LexBrightness -1/ -1: ""
*zh_tw.LexBrightness 0/ 0: ""
*zh_tw.LexBrightness +1/ +1: ""
*zh_tw.LexBrightness +2/ +2: ""
*zh_tw.LexBrightness +3/ +3: ""
*zh_tw.LexBrightness +4/ +4: ""
*zh_tw.LexBrightness +5/ +5: ""
*zh_tw.LexBrightness +6/ +6: ""
*zh_tw.Translation LexContrast/對比: ""
*zh_tw.LexContrast PrinterS/使用印表機設定: ""
*zh_tw.LexContrast 0/0: ""
*zh_tw.LexContrast 1/1: ""
*zh_tw.LexContrast 2/2: ""
*zh_tw.LexContrast 3/3: ""
*zh_tw.LexContrast 4/4: ""
*zh_tw.LexContrast 5/5: ""
*zh_tw.Translation LexSaturation/飽和度: ""
*zh_tw.LexSaturation PrinterS/使用印表機設定: ""
*zh_tw.LexSaturation 0/0: ""
*zh_tw.LexSaturation 1/1: ""
*zh_tw.LexSaturation 2/2: ""
*zh_tw.LexSaturation 3/3: ""
*zh_tw.LexSaturation 4/4: ""
*zh_tw.LexSaturation 5/5: ""
*zh_tw.Translation Paper/紙張: ""
*zh_tw.Translation MediaType/紙張種類: ""
*zh_tw.MediaType PrinterS/使用印表機設定: ""
*zh_tw.MediaType Plain/普通紙: ""
*zh_tw.MediaType Colored/彩色紙: ""
*zh_tw.MediaType Transparency/專用透明投影膠片: ""
*zh_tw.MediaType Card/Card stock: ""
*zh_tw.MediaType Labels/貼紙: ""
*zh_tw.MediaType Bond/無覆膜的雪銅紙: ""
*zh_tw.MediaType Letterhead/銜頭紙: ""
*zh_tw.MediaType Preprint/預印: ""
*zh_tw.MediaType RoughEnvelope/粗糙信封: ""
*zh_tw.MediaType Envelope/信封: ""
*zh_tw.MediaType Recycled/再生紙: ""
*zh_tw.MediaType Light/淡: ""
*zh_tw.MediaType Heavy/厚磅紙張: ""
*zh_tw.MediaType Glossy/光面紙: ""
*zh_tw.MediaType HeavyGlossy/重光面紙: ""
*zh_tw.MediaType Rough/粗糙/棉紙: ""
*zh_tw.MediaType Custom1/自訂種類 1: ""
*zh_tw.MediaType Custom2/自訂種類 2: ""
*zh_tw.MediaType Custom3/自訂種類 3: ""
*zh_tw.MediaType Custom4/自訂種類 4: ""
*zh_tw.MediaType Custom5/自訂種類 5: ""
*zh_tw.MediaType Custom6/自訂種類 6: ""
*zh_tw.Translation LexBlankPage/列印空白頁: ""
*zh_tw.LexBlankPage PrinterS/使用印表機設定: ""
*zh_tw.LexBlankPage False/關: ""
*zh_tw.LexBlankPage True/開: ""
*zh_cn.Translation Manufacturer/Lexmark: ""
*zh_cn.Translation ModelName/Lexmark C9200 Series: ""
*zh_cn.Translation ShortNickName/Lexmark C9200 Series: ""
*zh_cn.Translation NickName/Lexmark C9200 Series: ""
*zh_cn.Translation PageSize/介质尺寸: ""
*zh_cn.PageSize Letter/Letter (8 1/2 x 11 英寸): ""
*zh_cn.PageSize Legal/Legal (8 1/2 x 14 英寸): ""
*zh_cn.PageSize 8.5x13.4028/Oficio(墨西哥) (216 x 340 毫米): ""
*zh_cn.PageSize B5/B5 (182 x 257 毫米): ""
*zh_cn.PageSize B4/JIS B4: ""
*zh_cn.PageSize A4/A4 (210 x 297 毫米): ""
*zh_cn.PageSize Executive/Executive (7 1/4 x 10 1/2 英寸): ""
*zh_cn.PageSize A5/A5 (148 x 210 毫米): ""
*zh_cn.PageSize A6/A6 (105 x 148 毫米): ""
*zh_cn.PageSize A3/A3 (297 x 420 mm): ""
*zh_cn.PageSize LxkSRA3/SRA3 (320 x 450 mm): ""
*zh_cn.PageSize Tabloid/Tabloid (11 x 17 in): ""
*zh_cn.PageSize Lxk12x18in/Tabloid Oversize: ""
*zh_cn.PageSize FanFoldGermanLegal/Folio (8 1/2 x 13 英寸): ""
*zh_cn.PageSize Statement/Statement (5 1/2 x 8 1/2 英寸): ""
*zh_cn.PageSize EnvMonarch/信封 7 3/4 (3 7/8 x 7 1/2 英寸): ""
*zh_cn.PageSize Env9/信封 9 (3 7/8 x 8 7/8 英寸): ""
*zh_cn.PageSize Env10/信封 10 (4 1/8 x 9 1/2 英寸): ""
*zh_cn.PageSize EnvDL/信封 DL (110 x 220 毫米): ""
*zh_cn.PageSize EnvC5/信封 C5 (162 x 229 毫米): ""
*zh_cn.PageSize ISOB5/信封 B5 (176 x 250 毫米): ""
*zh_cn.PageSize OthEnv/其他信封: ""
*zh_cn.Translation InputSlot/介质来源: ""
*zh_cn.InputSlot Tray1/进纸匣 1: ""
*zh_cn.InputSlot Tray2/进纸匣 2: ""
*zh_cn.InputSlot Tray3/进纸匣 3: ""
*zh_cn.InputSlot Tray4/进纸匣 4: ""
*zh_cn.InputSlot Tray5/进纸匣 5: ""
*zh_cn.InputSlot MultipurposeFeeder/多功能进纸器: ""
*zh_cn.InputSlot ManualPaper/手动纸张: ""
*zh_cn.InputSlot ManualEnv/手动信封: ""
*zh_cn.Translation InstallableOptions/可安装选项: ""
*zh_cn.Translation OptDuplex/双面打印部件: ""
*zh_cn.OptDuplex False/未安装: ""
*zh_cn.OptDuplex True/已安装: ""
*zh_cn.Translation OptFlash/闪烁存储器: ""
*zh_cn.OptFlash False/未安装: ""
*zh_cn.OptFlash True/已安装: ""
*zh_cn.Translation OptTray2/进纸匣 2: ""
*zh_cn.OptTray2 False/未安装: ""
*zh_cn.OptTray2 True/已安装: ""
*zh_cn.Translation OptTray3/进纸匣 3: ""
*zh_cn.OptTray3 False/未安装: ""
*zh_cn.OptTray3 True/已安装: ""
*zh_cn.Translation OptTray4/进纸匣 4: ""
*zh_cn.OptTray4 False/未安装: ""
*zh_cn.OptTray4 True/已安装: ""
*zh_cn.Translation OptTray5/进纸匣 5: ""
*zh_cn.OptTray5 False/未安装: ""
*zh_cn.OptTray5 True/已安装: ""
*zh_cn.Translation OptMultipurposeFeeder/多功能进纸器: ""
*zh_cn.OptMultipurposeFeeder False/未安装: ""
*zh_cn.OptMultipurposeFeeder True/已安装: ""
*zh_cn.Translation OptBin1/接纸架 1: ""
*zh_cn.OptBin1 False/未安装: ""
*zh_cn.OptBin1 True/已安装: ""
*zh_cn.Translation OptBin2/接纸架 2: ""
*zh_cn.OptBin2 False/未安装: ""
*zh_cn.OptBin2 True/已安装: ""
*zh_cn.Translation OptBin3/接纸架 3: ""
*zh_cn.OptBin3 False/未安装: ""
*zh_cn.OptBin3 True/已安装: ""
*zh_cn.Translation OptOffset/偏移: ""
*zh_cn.OptOffset False/未安装: ""
*zh_cn.OptOffset True/已安装: ""
*zh_cn.Translation OptStapler/装订: ""
*zh_cn.OptStapler False/未安装: ""
*zh_cn.OptStapler True/已安装: ""
*zh_cn.Translation OptHolePunch/打孔: ""
*zh_cn.OptHolePunch False/未安装: ""
*zh_cn.OptHolePunch True/已安装: ""
*zh_cn.Translation OptFold/折叠: ""
*zh_cn.OptFold False/未安装: ""
*zh_cn.OptFold True/已安装: ""
*zh_cn.Translation Finishing/输出: ""
*zh_cn.Translation Duplex/双面打印: ""
*zh_cn.Duplex None/无: ""
*zh_cn.Duplex DuplexNoTumble/双面打印 - 长边: ""
*zh_cn.Duplex DuplexTumble/双面打印 - 短边: ""
*zh_cn.Translation Collate/逐份打印: ""
*zh_cn.Collate True/开: ""
*zh_cn.Collate False/关: ""
*zh_cn.Translation SepPages/分隔页: ""
*zh_cn.SepPages PrinterS/使用打印机设置: ""
*zh_cn.SepPages NoneF/无: ""
*zh_cn.SepPages Jobs/任务之间: ""
*zh_cn.SepPages Copies/副本之间: ""
*zh_cn.SepPages Pages/页之间: ""
*zh_cn.Translation SepSource/分隔纸源: ""
*zh_cn.SepSource PrinterS/使用打印机设置: ""
*zh_cn.SepSource Tray1/进纸匣 1: ""
*zh_cn.SepSource Tray2/进纸匣 2: ""
*zh_cn.SepSource Tray3/进纸匣 3: ""
*zh_cn.SepSource Tray4/进纸匣 4: ""
*zh_cn.SepSource Tray5/进纸匣 5: ""
*zh_cn.SepSource MultipurposeFeeder/多功能进纸器: ""
*zh_cn.Translation OutputBin/接纸架: ""
*zh_cn.OutputBin PrinterS/使用打印机设置: ""
*zh_cn.OutputBin StandardBin/标准接纸架: ""
*zh_cn.OutputBin Bin1/接纸架 1: ""
*zh_cn.OutputBin Bin2/接纸架 2: ""
*zh_cn.OutputBin Bin3/接纸架 3: ""
*zh_cn.Translation Offset/偏移页: ""
*zh_cn.Offset PrinterS/使用打印机设置: ""
*zh_cn.Offset OffsetOff/关: ""
*zh_cn.Offset Copies/副本之间: ""
*zh_cn.Offset Jobs/任务之间: ""
*zh_cn.Translation HolePunch/打孔: ""
*zh_cn.HolePunch PrinterS/使用打印机设置: ""
*zh_cn.HolePunch FalseM/关: ""
*zh_cn.HolePunch 2Hole/2 个孔: ""
*zh_cn.HolePunch 3Hole/3 孔: ""
*zh_cn.HolePunch 4Hole/4 孔: ""
*zh_cn.Translation StapleJob/装订作业: ""
*zh_cn.StapleJob PrinterS/使用打印机设置: ""
*zh_cn.StapleJob FalseM/关: ""
*zh_cn.StapleJob TrueM/自动: ""
*zh_cn.StapleJob TopLeft/左上角: ""
*zh_cn.StapleJob TopRight/右上角: ""
*zh_cn.StapleJob BottomLeft/左下角: ""
*zh_cn.StapleJob BottomRight/右下角: ""
*zh_cn.StapleJob DualTop/顶部双订: ""
*zh_cn.StapleJob DualLeft/左边双订: ""
*zh_cn.StapleJob DualBottom/底部双订: ""
*zh_cn.StapleJob DualRight/右边双订: ""
*zh_cn.Translation Fold/折叠: ""
*zh_cn.Fold False/关: ""
*zh_cn.Fold SaddleStitch/折叠并装订: ""
*zh_cn.Fold BookletFold/折叠: ""
*zh_cn.Fold BiFold/分别折叠每张纸: ""
*zh_cn.Fold TriFold/三折单独页面: ""
*zh_cn.Translation Quality/质量: ""
*zh_cn.Translation LXResolution/打印分辨率: ""
*zh_cn.LXResolution 1200dpi/1200 dpi: ""
*zh_cn.LXResolution 604x600dpi/2400 图象质量: ""
*zh_cn.Translation Halftone/半色调: ""
*zh_cn.Halftone PrinterS/使用打印机设置: ""
*zh_cn.Halftone FalseF/正常: ""
*zh_cn.Halftone TrueF/细节: ""
*zh_cn.Translation TonerDarkness/鼓粉浓度: ""
*zh_cn.TonerDarkness PrinterS/使用打印机设置: ""
*zh_cn.TonerDarkness 1/1: ""
*zh_cn.TonerDarkness 2/2: ""
*zh_cn.TonerDarkness 3/3: ""
*zh_cn.TonerDarkness 4/4: ""
*zh_cn.TonerDarkness 5/5: ""
*zh_cn.Translation LexMirror/镜像: ""
*zh_cn.LexMirror True/开: ""
*zh_cn.LexMirror False/关: ""
*zh_cn.Translation ColorBalance/颜色平衡: ""
*zh_cn.Translation CyanBalance/青色平衡: ""
*zh_cn.CyanBalance PrinterS/使用打印机设置: ""
*zh_cn.CyanBalance -5/ -5: ""
*zh_cn.CyanBalance -4/ -4: ""
*zh_cn.CyanBalance -3/ -3: ""
*zh_cn.CyanBalance -2/ -2: ""
*zh_cn.CyanBalance -1/ -1: ""
*zh_cn.CyanBalance 0/ 0: ""
*zh_cn.CyanBalance +1/ +1: ""
*zh_cn.CyanBalance +2/ +2: ""
*zh_cn.CyanBalance +3/ +3: ""
*zh_cn.CyanBalance +4/ +4: ""
*zh_cn.CyanBalance +5/ +5: ""
*zh_cn.Translation MagentaBalance/品红色平衡: ""
*zh_cn.MagentaBalance PrinterS/使用打印机设置: ""
*zh_cn.MagentaBalance -5/ -5: ""
*zh_cn.MagentaBalance -4/ -4: ""
*zh_cn.MagentaBalance -3/ -3: ""
*zh_cn.MagentaBalance -2/ -2: ""
*zh_cn.MagentaBalance -1/ -1: ""
*zh_cn.MagentaBalance 0/ 0: ""
*zh_cn.MagentaBalance +1/ +1: ""
*zh_cn.MagentaBalance +2/ +2: ""
*zh_cn.MagentaBalance +3/ +3: ""
*zh_cn.MagentaBalance +4/ +4: ""
*zh_cn.MagentaBalance +5/ +5: ""
*zh_cn.Translation YellowBalance/黄色平衡: ""
*zh_cn.YellowBalance PrinterS/使用打印机设置: ""
*zh_cn.YellowBalance -5/ -5: ""
*zh_cn.YellowBalance -4/ -4: ""
*zh_cn.YellowBalance -3/ -3: ""
*zh_cn.YellowBalance -2/ -2: ""
*zh_cn.YellowBalance -1/ -1: ""
*zh_cn.YellowBalance 0/ 0: ""
*zh_cn.YellowBalance +1/ +1: ""
*zh_cn.YellowBalance +2/ +2: ""
*zh_cn.YellowBalance +3/ +3: ""
*zh_cn.YellowBalance +4/ +4: ""
*zh_cn.YellowBalance +5/ +5: ""
*zh_cn.Translation BlackBalance/黑色平衡: ""
*zh_cn.BlackBalance PrinterS/使用打印机设置: ""
*zh_cn.BlackBalance -5/ -5: ""
*zh_cn.BlackBalance -4/ -4: ""
*zh_cn.BlackBalance -3/ -3: ""
*zh_cn.BlackBalance -2/ -2: ""
*zh_cn.BlackBalance -1/ -1: ""
*zh_cn.BlackBalance 0/ 0: ""
*zh_cn.BlackBalance +1/ +1: ""
*zh_cn.BlackBalance +2/ +2: ""
*zh_cn.BlackBalance +3/ +3: ""
*zh_cn.BlackBalance +4/ +4: ""
*zh_cn.BlackBalance +5/ +5: ""
*zh_cn.Translation ColorCorrection/色彩校正: ""
*zh_cn.Translation MediaColor/色彩校正: ""
*zh_cn.MediaColor PrinterS/使用打印机设置: ""
*zh_cn.MediaColor FalseM/关: ""
*zh_cn.MediaColor Auto/自动: ""
*zh_cn.MediaColor Manual/手动: ""
*zh_cn.Translation ManualRGBImage/图像的 RGB 修正: ""
*zh_cn.ManualRGBImage PrinterS/使用打印机设置: ""
*zh_cn.ManualRGBImage Off/关: ""
*zh_cn.ManualRGBImage sRGBDisplay/sRGB 显示: ""
*zh_cn.ManualRGBImage sRGBVivid/sRGB 逼真: ""
*zh_cn.ManualRGBImage DisplayRealBlack/显示-纯黑色: ""
*zh_cn.ManualRGBImage Vivid/生动: ""
*zh_cn.Translation ManualRGBText/文本的 RGB 修正: ""
*zh_cn.ManualRGBText PrinterS/使用打印机设置: ""
*zh_cn.ManualRGBText Off/关: ""
*zh_cn.ManualRGBText sRGBDisplay/sRGB 显示: ""
*zh_cn.ManualRGBText sRGBVivid/sRGB 逼真: ""
*zh_cn.ManualRGBText DisplayRealBlack/显示-纯黑色: ""
*zh_cn.ManualRGBText Vivid/生动: ""
*zh_cn.Translation ManualRGBGraphics/图形的 RGB 修正: ""
*zh_cn.ManualRGBGraphics PrinterS/使用打印机设置: ""
*zh_cn.ManualRGBGraphics Off/关: ""
*zh_cn.ManualRGBGraphics sRGBDisplay/sRGB 显示: ""
*zh_cn.ManualRGBGraphics sRGBVivid/sRGB 逼真: ""
*zh_cn.ManualRGBGraphics DisplayRealBlack/显示-纯黑色: ""
*zh_cn.ManualRGBGraphics Vivid/生动: ""
*zh_cn.Translation ManualCMYK/CMYK 修正: ""
*zh_cn.ManualCMYK PrinterS/使用打印机设置: ""
*zh_cn.ManualCMYK Off/关: ""
*zh_cn.ManualCMYK VividCMYK/逼真 CMYK: ""
*zh_cn.ManualCMYK EuroCMYK/Euro CMYK: ""
*zh_cn.ManualCMYK USCMYK/US CMYK: ""
*zh_cn.Translation Color/颜色: ""
*zh_cn.Translation ColorSaver/ColorSaverTM: ""
*zh_cn.ColorSaver PrinterS/使用打印机设置: ""
*zh_cn.ColorSaver TrueM/开: ""
*zh_cn.ColorSaver FalseM/关: ""
*zh_cn.Translation ColorMode/颜色模式: ""
*zh_cn.ColorMode PrinterS/使用打印机设置: ""
*zh_cn.ColorMode TrueM/颜色: ""
*zh_cn.ColorMode FalseM/单色: ""
*zh_cn.Translation RGBCorrection/RGB校正: ""
*zh_cn.Translation LexBrightness/明亮度: ""
*zh_cn.LexBrightness PrinterS/使用打印机设置: ""
*zh_cn.LexBrightness -6/ -6: ""
*zh_cn.LexBrightness -5/ -5: ""
*zh_cn.LexBrightness -4/ -4: ""
*zh_cn.LexBrightness -3/ -3: ""
*zh_cn.LexBrightness -2/ -2: ""
*zh_cn.LexBrightness -1/ -1: ""
*zh_cn.LexBrightness 0/ 0: ""
*zh_cn.LexBrightness +1/ +1: ""
*zh_cn.LexBrightness +2/ +2: ""
*zh_cn.LexBrightness +3/ +3: ""
*zh_cn.LexBrightness +4/ +4: ""
*zh_cn.LexBrightness +5/ +5: ""
*zh_cn.LexBrightness +6/ +6: ""
*zh_cn.Translation LexContrast/对比度: ""
*zh_cn.LexContrast PrinterS/使用打印机设置: ""
*zh_cn.LexContrast 0/0: ""
*zh_cn.LexContrast 1/1: ""
*zh_cn.LexContrast 2/2: ""
*zh_cn.LexContrast 3/3: ""
*zh_cn.LexContrast 4/4: ""
*zh_cn.LexContrast 5/5: ""
*zh_cn.Translation LexSaturation/饱和度: ""
*zh_cn.LexSaturation PrinterS/使用打印机设置: ""
*zh_cn.LexSaturation 0/0: ""
*zh_cn.LexSaturation 1/1: ""
*zh_cn.LexSaturation 2/2: ""
*zh_cn.LexSaturation 3/3: ""
*zh_cn.LexSaturation 4/4: ""
*zh_cn.LexSaturation 5/5: ""
*zh_cn.Translation Paper/纸张: ""
*zh_cn.Translation MediaType/纸张类型: ""
*zh_cn.MediaType PrinterS/使用打印机设置: ""
*zh_cn.MediaType Plain/普通纸: ""
*zh_cn.MediaType Colored/彩色纸: ""
*zh_cn.MediaType Transparency/透明胶片: ""
*zh_cn.MediaType Card/Card stock: ""
*zh_cn.MediaType Labels/标签: ""
*zh_cn.MediaType Bond/铜版纸: ""
*zh_cn.MediaType Letterhead/信签: ""
*zh_cn.MediaType Preprint/预印纸: ""
*zh_cn.MediaType RoughEnvelope/粗糙信封: ""
*zh_cn.MediaType Envelope/信封: ""
*zh_cn.MediaType Recycled/再生纸: ""
*zh_cn.MediaType Light/浅: ""
*zh_cn.MediaType Heavy/重磅纸: ""
*zh_cn.MediaType Glossy/光面纸: ""
*zh_cn.MediaType HeavyGlossy/重质光面纸: ""
*zh_cn.MediaType Rough/粗糙/棉纸: ""
*zh_cn.MediaType Custom1/定制类型 1: ""
*zh_cn.MediaType Custom2/定制类型 2: ""
*zh_cn.MediaType Custom3/定制类型 3: ""
*zh_cn.MediaType Custom4/定制类型 4: ""
*zh_cn.MediaType Custom5/定制类型 5: ""
*zh_cn.MediaType Custom6/定制类型 6: ""
*zh_cn.Translation LexBlankPage/打印空白页: ""
*zh_cn.LexBlankPage PrinterS/使用打印机设置: ""
*zh_cn.LexBlankPage False/关: ""
*zh_cn.LexBlankPage True/开: ""
*DefaultFont: Courier
*% End of LXC9200S.PPD, 302650 bytes.
*en.PageSize 8.5x13.4028/Oficio (México): ""
|