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
|
*PPD-Adobe: "4.3"
*%*****************************************************************************
*% Adobe PostScript(R) Printer Description File
*% For Lexmark X940e LaserPrinter
*% Produced by Lexmark International, Inc.
*%
*% Copyright 2007 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: "10.6.0.1"
*LanguageVersion: English
*LanguageEncoding: ISOLatin1
*cupsLanguages: "de es fr it ja pt zh_CN zh_TW ko"
*cupsVersion: "1.2"
*PCFileName: "LexX940e.PPD"
*LXCountPIN: "4"
*LXlowPINchar: "0"
*LXhiPINchar: "9"
*Product: "(Lexmark X940e)"
*PSVersion: "(3010.010) 20040929"
*Manufacturer: "Lexmark"
*ModelName: "Lexmark X940e"
*ShortNickName: "Lexmark X940e"
*NickName: "Lexmark X940e"
*1284DeviceID: "MFG: Lexmark International ;MDL: Lexmark X940e"
*cupsCommands: "ReportLevels"
*PrinterType: "Laser"
*%*****************************************************************************
*% Basic Capabilities
*%*****************************************************************************
*APICADriver: True
*Protocols: TBCP
*LanguageLevel: "3"
*Throughput: "36"
*ColorDevice: True
*DefaultColorSpace: CMYK
*TTRasterizer: Type42
*?TTRasterizer: ""
*FileSystem: True
*?FileSystem: ""
*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
*% Do Not Delete the Next Line
*JobPatchFile 1: "%%Lexmark Linux PPD File 1"
*%*****************************************************************************
*% Installable Options
*%*****************************************************************************
*OpenGroup: InstallableOptions/Options Installed
*de.Translation InstallableOptions/Installierte Optionen: ""
*es.Translation InstallableOptions/Opciones instaladas: ""
*fr.Translation InstallableOptions/Options installées: ""
*it.Translation InstallableOptions/Opzioni Installate: ""
*ja.Translation InstallableOptions/装着済みオプション: ""
*pt.Translation InstallableOptions/Opcionais Instalados: ""
*zh_CN.Translation InstallableOptions/已安装选件: ""
*zh_TW.Translation InstallableOptions/已安裝選購品: ""
*ko.Translation InstallableOptions/설치된 옵션: ""
*OpenUI *Trays/Trays: PickOne
*de.Translation Trays/Fächer: ""
*es.Translation Trays/Bandejas: ""
*fr.Translation Trays/Tiroirs: ""
*it.Translation Trays/Vassoi: ""
*ja.Translation Trays/給紙カセット: ""
*pt.Translation Trays/Bandejas: ""
*zh_CN.Translation Trays/进纸匣: ""
*zh_TW.Translation Trays/裝紙匣: ""
*ko.Translation Trays/트레이: ""
*DefaultTrays: Tray1234
*Trays Tray1/Tray 1: ""
*de.Trays Tray1/Fach 1: ""
*es.Trays Tray1/Bandeja 1: ""
*fr.Trays Tray1/Tiroir 1: ""
*it.Trays Tray1/Vassoio 1: ""
*ja.Trays Tray1/カセット 1: ""
*pt.Trays Tray1/Bandeja 1: ""
*zh_CN.Trays Tray1/进纸匣 1: ""
*zh_TW.Trays Tray1/裝紙匣 1: ""
*ko.Trays Tray1/트레이 1: ""
*Trays Tray12/Tray 1+2: ""
*de.Trays Tray12/Fach 1+2: ""
*es.Trays Tray12/Bandejas 1+2: ""
*fr.Trays Tray12/Tiroir 1+2: ""
*it.Trays Tray12/Vassoio 1+2: ""
*ja.Trays Tray12/カセット 1+2: ""
*pt.Trays Tray12/Bandejas 1+2: ""
*zh_CN.Trays Tray12/进纸匣 1+2: ""
*zh_TW.Trays Tray12/裝紙匣 1+2: ""
*ko.Trays Tray12/트레이 1+2: ""
*Trays Tray1234/Tray 1+2+3+4: ""
*de.Trays Tray1234/Fach 1+2+3+4: ""
*es.Trays Tray1234/Bandejas 1+2+3+4: ""
*fr.Trays Tray1234/Tiroir 1+2+3+4: ""
*it.Trays Tray1234/Vassoio 1+2+3+4: ""
*ja.Trays Tray1234/カセット 1+2+3+4: ""
*pt.Trays Tray1234/Bandejas 1+2+3+4: ""
*zh_CN.Trays Tray1234/进纸匣 1+2+3+4: ""
*zh_TW.Trays Tray1234/裝紙匣 1+2+3+4: ""
*ko.Trays Tray1234/트레이 1+2+3+4: ""
*?Trays: "
gsave
currentpagedevice /InputAttributes get
dup dup dup
5 get null eq
{3 get null eq
{1 get null eq
{(Tray1)} {(Tray12)}
ifelse} {(Tray123)}
ifelse} {(Tray1234)}
ifelse
= flush
grestore"
*End
*CloseUI: *Trays
*OpenUI *OptDuplex/Duplex: PickOne
*de.Translation OptDuplex/Duplex: ""
*es.Translation OptDuplex/Encuadernado Doble: ""
*fr.Translation OptDuplex/Reliure Recto Verso: ""
*it.Translation OptDuplex/Fronte/Retro: ""
*ja.Translation OptDuplex/両面印刷: ""
*pt.Translation OptDuplex/Modo Duplex: ""
*zh_CN.Translation OptDuplex/双面打印: ""
*zh_TW.Translation OptDuplex/雙面列印: ""
*ko.Translation OptDuplex/양면: ""
*DefaultOptDuplex: InstalledM
*OptDuplex InstalledM/Installed: ""
*de.OptDuplex InstalledM/Eingebaut: ""
*es.OptDuplex InstalledM/Instalado: ""
*fr.OptDuplex InstalledM/Installé: ""
*it.OptDuplex InstalledM/Installato: ""
*ja.OptDuplex InstalledM/インストール済み: ""
*pt.OptDuplex InstalledM/Instalado: ""
*zh_CN.OptDuplex InstalledM/已安装: ""
*zh_TW.OptDuplex InstalledM/已安裝: ""
*ko.OptDuplex InstalledM/설치됨: ""
*OptDuplex NotInstalledM/Not Installed: ""
*de.OptDuplex NotInstalledM/Nicht Eingebaut: ""
*es.OptDuplex NotInstalledM/No Instalado: ""
*fr.OptDuplex NotInstalledM/Non Installé: ""
*it.OptDuplex NotInstalledM/Non installato: ""
*ja.OptDuplex NotInstalledM/インストールされていません: ""
*pt.OptDuplex NotInstalledM/Não instalado: ""
*zh_CN.OptDuplex NotInstalledM/未安装: ""
*zh_TW.OptDuplex NotInstalledM/未安裝: ""
*ko.OptDuplex NotInstalledM/설치 안됨: ""
*?OptDuplex: "
gsave
statusdict /duplexer get exec
true eq {(InstalledM)} {(NotInstalledM)} ifelse
= flush
grestore"
*End
*?OIDOptDuplex: ".1.3.6.1.2.1.43.13.4.1.10.1.2"
*OIDOptDuplex InstalledM: "Duplex Paper Path"
*OIDOptDuplex NotInstalledM: ".*"
*CloseUI: *OptDuplex
*OpenUI *Flash/Flash: PickOne
*de.Translation Flash/Flash Speicher: ""
*es.Translation Flash/Tarjeta Memoria Flash: ""
*fr.Translation Flash/Carte Mémoire Flash: ""
*it.Translation Flash/Memoria flash: ""
*ja.Translation Flash/フラッシュ: ""
*pt.Translation Flash/Placa Memória Flash: ""
*zh_CN.Translation Flash/闪烁存储器: ""
*zh_TW.Translation Flash/快閃: ""
*ko.Translation Flash/플래시: ""
*DefaultFlash: InstalledF
*Flash NotInstalledF/Not Installed: ""
*de.Flash NotInstalledF/Nicht Eingebaut: ""
*es.Flash NotInstalledF/No Instalada: ""
*fr.Flash NotInstalledF/Non Installée: ""
*it.Flash NotInstalledF/Non installata: ""
*ja.Flash NotInstalledF/インストールされていません: ""
*pt.Flash NotInstalledF/Não instalada: ""
*zh_CN.Flash NotInstalledF/未安装: ""
*zh_TW.Flash NotInstalledF/未安裝: ""
*ko.Flash NotInstalledF/설치 안됨: ""
*Flash InstalledF/Installed: ""
*de.Flash InstalledF/Eingebaut: ""
*es.Flash InstalledF/Instalada: ""
*fr.Flash InstalledF/Installée: ""
*it.Flash InstalledF/Installata: ""
*ja.Flash InstalledF/インストール済み: ""
*pt.Flash InstalledF/Instalada: ""
*zh_CN.Flash InstalledF/已安装: ""
*zh_TW.Flash InstalledF/已安裝: ""
*ko.Flash InstalledF/설치됨: ""
*?Flash: "
(%flash%) devstatus
false eq {(NotInstalledF)} {(InstalledF)} ifelse
= flush"
*End
*CloseUI: *Flash
*OpenUI *OptOutputBins/Output Bins: PickOne
*de.Translation OptOutputBins/Papierablagen: ""
*es.Translation OptOutputBins/Bandejas de Salida: ""
*fr.Translation OptOutputBins/Réceptacles: ""
*it.Translation OptOutputBins/Racc. di uscita: ""
*ja.Translation OptOutputBins/排紙トレイ: ""
*pt.Translation OptOutputBins/Bandejas de Saída: ""
*zh_CN.Translation OptOutputBins/接纸架: ""
*zh_TW.Translation OptOutputBins/出紙架: ""
*ko.Translation OptOutputBins/출력 빈: ""
*DefaultOptOutputBins: OBin2
*OptOutputBins StandardBin/Standard Bin: ""
*de.OptOutputBins StandardBin/Standardablage: ""
*es.OptOutputBins StandardBin/Bandeja de salida Estándar: ""
*fr.OptOutputBins StandardBin/Réceptacle Standard: ""
*it.OptOutputBins StandardBin/Raccoglitore standard: ""
*ja.OptOutputBins StandardBin/標準排紙トレイ: ""
*pt.OptOutputBins StandardBin/Bandeja de Saída padrão: ""
*zh_CN.OptOutputBins StandardBin/标准接纸架: ""
*zh_TW.OptOutputBins StandardBin/標準送紙匣: ""
*ko.OptOutputBins StandardBin/표준 빈: ""
*OptOutputBins OBin1/1 Optional Bin: ""
*de.OptOutputBins OBin1/1 Papierablage: ""
*es.OptOutputBins OBin1/1 Bandeja de Salida opcional: ""
*fr.OptOutputBins OBin1/1 Réceptacle: ""
*it.OptOutputBins OBin1/Racc. di uscita 1: ""
*ja.OptOutputBins OBin1/オプションの排紙トレイ 1 個: ""
*pt.OptOutputBins OBin1/1 Bandeja de Saída opcional: ""
*zh_CN.OptOutputBins OBin1/1 个接纸架选件: ""
*zh_TW.OptOutputBins OBin1/1 個選購性送紙匣: ""
*ko.OptOutputBins OBin1/1 추가 빈: ""
*OptOutputBins OBin2/2 Optional Bins: ""
*de.OptOutputBins OBin2/2 Papierablagen: ""
*es.OptOutputBins OBin2/2 Bandejas de Salida opcionales: ""
*fr.OptOutputBins OBin2/2 Réceptacles: ""
*it.OptOutputBins OBin2/Racc. di uscita 2: ""
*ja.OptOutputBins OBin2/オプションの排紙トレイ 2 個: ""
*pt.OptOutputBins OBin2/2 Bandejas de Saída opcional: ""
*zh_CN.OptOutputBins OBin2/2 个接纸架选件: ""
*zh_TW.OptOutputBins OBin2/2 個選購性送紙匣: ""
*ko.OptOutputBins OBin2/2 추가 빈: ""
*?OptOutputBins: "
gsave
currentpagedevice /OutputAttributes get
10 -1 0 {
exch dup 3 -1 roll dup /count exch def get null eq {}{count exit} ifelse
} for
[(StandardBin)(OBin1)(OBin2)()()()()()()()()] exch get
= flush
grestore"
*End
*CloseUI: *OptOutputBins
*OpenUI *OutputFinisher/Output Finisher: PickOne
*de.Translation OutputFinisher/Finisher: ""
*es.Translation OutputFinisher/Clasificador: ""
*fr.Translation OutputFinisher/Unité de finition: ""
*it.Translation OutputFinisher/Fascicolatore: ""
*ja.Translation OutputFinisher/出力フィニッシャ: ""
*pt.Translation OutputFinisher/Acabamento de saída: ""
*zh_CN.Translation OutputFinisher/输出分页器: ""
*zh_TW.Translation OutputFinisher/輸出分頁裝訂器: ""
*ko.Translation OutputFinisher/출력 마무리 장치 : ""
*DefaultOutputFinisher: AdvancedFinisher
*OutputFinisher NotInstalledM/Not Installed: ""
*de.OutputFinisher NotInstalledM/Nicht Eingebaut: ""
*es.OutputFinisher NotInstalledM/No Instalado: ""
*fr.OutputFinisher NotInstalledM/Non Installé: ""
*it.OutputFinisher NotInstalledM/Non installato: ""
*ja.OutputFinisher NotInstalledM/インストールされていません: ""
*pt.OutputFinisher NotInstalledM/Não instalado: ""
*zh_CN.OutputFinisher NotInstalledM/未安装: ""
*zh_TW.OutputFinisher NotInstalledM/未安裝: ""
*ko.OutputFinisher NotInstalledM/설치 안됨: ""
*OutputFinisher StandardFinisher/Standard Finisher: ""
*de.OutputFinisher StandardFinisher/Standard-Finisher: ""
*es.OutputFinisher StandardFinisher/Clasificador estándar: ""
*fr.OutputFinisher StandardFinisher/Unité de finition standard: ""
*it.OutputFinisher StandardFinisher/Fascicolatore standard: ""
*ja.OutputFinisher StandardFinisher/標準フィニッシャ: ""
*pt.OutputFinisher StandardFinisher/Encadernador padrão: ""
*zh_CN.OutputFinisher StandardFinisher/标准装订完成器: ""
*zh_TW.OutputFinisher StandardFinisher/標準分頁裝訂器: ""
*ko.OutputFinisher StandardFinisher/기본 마무리 장치: ""
*OutputFinisher AdvancedFinisher/Advanced Finisher: ""
*de.OutputFinisher AdvancedFinisher/Erweiterter Finisher: ""
*es.OutputFinisher AdvancedFinisher/Clasificador avanzado: ""
*fr.OutputFinisher AdvancedFinisher/Unité de finition avancée: ""
*it.OutputFinisher AdvancedFinisher/Fascicolatore avanzato: ""
*ja.OutputFinisher AdvancedFinisher/高度なフィニッシャ: ""
*pt.OutputFinisher AdvancedFinisher/Encadernador avançado: ""
*zh_CN.OutputFinisher AdvancedFinisher/高级装订完成器: ""
*zh_TW.OutputFinisher AdvancedFinisher/進階分頁裝訂器: ""
*ko.OutputFinisher AdvancedFinisher/고급 마무리 장치: ""
*?OutputFinisher: "
gsave
currentpagedevice /OutputAttributes get
3 -1 0 {
exch dup 3 -1 roll dup /count exch def get null eq {}{count exit} ifelse
} for
[(NotInstalledM)(StandardFinisher)(AdvancedFinisher)] exch get
= flush
grestore"
*End
*CloseUI: *OutputFinisher
*CloseGroup: InstallableOptions
*%*****************************************************************************
*% VM
*%*****************************************************************************
*FreeVM: "252000000"
*VMOption 256Meg: "252000000"
*VMOption 320Meg: "312000000"
*VMOption 384Meg: "376000000"
*VMOption 512Meg: "512000000"
*VMOption 576Meg: "576000000"
*VMOption 640Meg: "640000000"
*VMOption 768Meg: "768000000"
*VMOption 1024Meg: "1024000000"
*%*****************************************************************************
*% Constraints
*%*****************************************************************************
*UIConstraints: *Offset Copies *PageSize A5
*UIConstraints: *Offset Copies *PageSize Statement
*UIConstraints: *Offset Copies *PageRegion A5
*UIConstraints: *Offset Copies *PageRegion Statement
*UIConstraints: *HolePunch 2Hole *LXBookletFold SaddleStitch
*UIConstraints: *HolePunch 2Hole *LXBookletFold BookletFold
*UIConstraints: *HolePunch 2Hole *LXBookletFold BiFold
*UIConstraints: *HolePunch 3Hole *LXBookletFold SaddleStitch
*UIConstraints: *HolePunch 3Hole *LXBookletFold BookletFold
*UIConstraints: *HolePunch 3Hole *LXBookletFold BiFold
*UIConstraints: *HolePunch 4Hole *LXBookletFold SaddleStitch
*UIConstraints: *HolePunch 4Hole *LXBookletFold BookletFold
*UIConstraints: *HolePunch 4Hole *LXBookletFold BiFold
*UIConstraints: *HolePunch 2Hole *PageSize A5
*UIConstraints: *HolePunch 2Hole *PageSize Legal
*UIConstraints: *HolePunch 2Hole *PageSize Folio
*UIConstraints: *HolePunch 2Hole *PageSize Statement
*UIConstraints: *HolePunch 2Hole *PageRegion A5
*UIConstraints: *HolePunch 2Hole *PageRegion Legal
*UIConstraints: *HolePunch 2Hole *PageRegion Folio
*UIConstraints: *HolePunch 2Hole *PageRegion Statement
*UIConstraints: *HolePunch 3Hole *PageSize A5
*UIConstraints: *HolePunch 3Hole *PageSize Legal
*UIConstraints: *HolePunch 3Hole *PageSize Folio
*UIConstraints: *HolePunch 3Hole *PageSize Statement
*UIConstraints: *HolePunch 3Hole *PageRegion A5
*UIConstraints: *HolePunch 3Hole *PageRegion Legal
*UIConstraints: *HolePunch 3Hole *PageRegion Folio
*UIConstraints: *HolePunch 3Hole *PageRegion Statement
*UIConstraints: *HolePunch 4Hole *PageSize A5
*UIConstraints: *HolePunch 4Hole *PageSize Legal
*UIConstraints: *HolePunch 4Hole *PageSize Folio
*UIConstraints: *HolePunch 4Hole *PageSize Statement
*UIConstraints: *HolePunch 4Hole *PageRegion A5
*UIConstraints: *HolePunch 4Hole *PageRegion Legal
*UIConstraints: *HolePunch 4Hole *PageRegion Folio
*UIConstraints: *HolePunch 4Hole *PageRegion Statement
*UIConstraints: *LexMirror True *LXPosterEnable True
*UIConstraints: *LXBookletFold BiFold *Offset Copies
*UIConstraints: *LXBookletFold BiFold *StapleJob Front
*UIConstraints: *LXBookletFold BiFold *StapleJob Back
*UIConstraints: *LXBookletFold BiFold *StapleJob Dual
*UIConstraints: *LXBookletFold BiFold *StapleJob DoubleDual
*UIConstraints: *LXBookletFold BiFold *LexMirror True
*UIConstraints: *LXBookletFold BiFold *LXPosterEnable True
*UIConstraints: *LXBookletFold BiFold *PageSize A5
*UIConstraints: *LXBookletFold BiFold *PageSize B5
*UIConstraints: *LXBookletFold BiFold *PageSize Executive
*UIConstraints: *LXBookletFold BiFold *PageSize Statement
*UIConstraints: *LXBookletFold BiFold *PageRegion A5
*UIConstraints: *LXBookletFold BiFold *PageRegion B5
*UIConstraints: *LXBookletFold BiFold *PageRegion Executive
*UIConstraints: *LXBookletFold BiFold *PageRegion Statement
*UIConstraints: *LXBookletFold BiFold *LXOutsideFrontCover True
*UIConstraints: *LXBookletFold BiFold *LXInsideFrontCover True
*UIConstraints: *LXBookletFold BiFold *LXInsideBackCover True
*UIConstraints: *LXBookletFold BiFold *LXOutsideBackCover True
*UIConstraints: *LXBookletFold BiFold *LXBookletCoverPage True
*UIConstraints: *LXBookletFold BookletFold *Offset Copies
*UIConstraints: *LXBookletFold BookletFold *StapleJob Front
*UIConstraints: *LXBookletFold BookletFold *StapleJob Back
*UIConstraints: *LXBookletFold BookletFold *StapleJob Dual
*UIConstraints: *LXBookletFold BookletFold *StapleJob DoubleDual
*UIConstraints: *LXBookletFold BookletFold *LexMirror True
*UIConstraints: *LXBookletFold BookletFold *LXPosterEnable True
*UIConstraints: *LXBookletFold BookletFold *PageSize A5
*UIConstraints: *LXBookletFold BookletFold *PageSize B5
*UIConstraints: *LXBookletFold BookletFold *PageSize Executive
*UIConstraints: *LXBookletFold BookletFold *PageSize Statement
*UIConstraints: *LXBookletFold BookletFold *PageRegion A5
*UIConstraints: *LXBookletFold BookletFold *PageRegion B5
*UIConstraints: *LXBookletFold BookletFold *PageRegion Executive
*UIConstraints: *LXBookletFold BookletFold *PageRegion Statement
*UIConstraints: *LXBookletFold SaddleStitch *Offset Copies
*UIConstraints: *LXBookletFold SaddleStitch *StapleJob Front
*UIConstraints: *LXBookletFold SaddleStitch *StapleJob Back
*UIConstraints: *LXBookletFold SaddleStitch *StapleJob Dual
*UIConstraints: *LXBookletFold SaddleStitch *StapleJob DoubleDual
*UIConstraints: *LXBookletFold SaddleStitch *LexMirror True
*UIConstraints: *LXBookletFold SaddleStitch *LXPosterEnable True
*UIConstraints: *LXBookletFold SaddleStitch *PageSize A5
*UIConstraints: *LXBookletFold SaddleStitch *PageSize B5
*UIConstraints: *LXBookletFold SaddleStitch *PageSize Executive
*UIConstraints: *LXBookletFold SaddleStitch *PageSize Statement
*UIConstraints: *LXBookletFold SaddleStitch *PageRegion A5
*UIConstraints: *LXBookletFold SaddleStitch *PageRegion B5
*UIConstraints: *LXBookletFold SaddleStitch *PageRegion Executive
*UIConstraints: *LXBookletFold SaddleStitch *PageRegion Statement
*UIConstraints: *LXBookletFold DoNotFoldAndStaple *Offset Copies
*UIConstraints: *LXBookletFold DoNotFoldAndStaple *StapleJob Front
*UIConstraints: *LXBookletFold DoNotFoldAndStaple *StapleJob Back
*UIConstraints: *LXBookletFold DoNotFoldAndStaple *StapleJob Dual
*UIConstraints: *LXBookletFold DoNotFoldAndStaple *StapleJob DoubleDual
*UIConstraints: *LXBookletFold DoNotFoldAndStaple *LexMirror True
*UIConstraints: *LXBookletFold DoNotFoldAndStaple *LXPosterEnable True
*UIConstraints: *LXBookletCoverPage False *LXOutsideFrontCover True
*UIConstraints: *LXBookletCoverPage False *LXInsideFrontCover True
*UIConstraints: *LXBookletCoverPage False *LXInsideBackCover True
*UIConstraints: *LXBookletCoverPage False *LXOutsideBackCover True
*UIConstraints: *LexMirror True *LXOutsideFrontCover True
*UIConstraints: *LexMirror True *LXInsideFrontCover True
*UIConstraints: *LexMirror True *LXInsideBackCover True
*UIConstraints: *LexMirror True *LXOutsideBackCover True
*UIConstraints: *LexMirror True *LXBookletCoverPage True
*UIConstraints: *LXPosterEnable True *LXOutsideFrontCover True
*UIConstraints: *LXPosterEnable True *LXInsideFrontCover True
*UIConstraints: *LXPosterEnable True *LXInsideBackCover True
*UIConstraints: *LXPosterEnable True *LXOutsideBackCover True
*UIConstraints: *LXPosterEnable True *LXBookletCoverPage True
*UIConstraints: *LXPosterEnable True *HolePunch 2Hole
*UIConstraints: *LXPosterEnable True *HolePunch 3Hole
*UIConstraints: *LXPosterEnable True *HolePunch 4Hole
*UIConstraints: *LXPosterEnable True *HolePunch 2Hole
*UIConstraints: *LXPosterEnable True *StapleJob Front
*UIConstraints: *LXPosterEnable True *StapleJob Back
*UIConstraints: *LXPosterEnable True *StapleJob Dual
*UIConstraints: *LXPosterEnable True *StapleJob DoubleDual
*UIConstraints: *StapleJob DoubleDual *PageSize Executive
*UIConstraints: *StapleJob DoubleDual *PageSize A5
*UIConstraints: *StapleJob DoubleDual *PageSize B5
*UIConstraints: *StapleJob DoubleDual *PageSize B4
*UIConstraints: *StapleJob DoubleDual *PageSize Legal
*UIConstraints: *StapleJob DoubleDual *PageSize 11x17
*UIConstraints: *StapleJob DoubleDual *PageSize A3
*UIConstraints: *StapleJob DoubleDual *PageSize Folio
*UIConstraints: *StapleJob DoubleDual *PageSize Statement
*UIConstraints: *StapleJob DoubleDual *PageRegion Executive
*UIConstraints: *StapleJob DoubleDual *PageRegion A5
*UIConstraints: *StapleJob DoubleDual *PageRegion B5
*UIConstraints: *StapleJob DoubleDual *PageRegion B4
*UIConstraints: *StapleJob DoubleDual *PageRegion Legal
*UIConstraints: *StapleJob DoubleDual *PageRegion 11x17
*UIConstraints: *StapleJob DoubleDual *PageRegion A3
*UIConstraints: *StapleJob DoubleDual *PageRegion Folio
*UIConstraints: *StapleJob DoubleDual *PageRegion Statement
*UIConstraints: *StapleJob Front *PageSize A5
*UIConstraints: *StapleJob Front *PageSize Statement
*UIConstraints: *StapleJob Front *PageRegion A5
*UIConstraints: *StapleJob Front *PageRegion Statement
*UIConstraints: *StapleJob Back *PageSize A5
*UIConstraints: *StapleJob Back *PageSize Statement
*UIConstraints: *StapleJob Back *PageRegion A5
*UIConstraints: *StapleJob Back *PageRegion Statement
*UIConstraints: *StapleJob Dual *PageSize A5
*UIConstraints: *StapleJob Dual *PageSize Statement
*UIConstraints: *StapleJob Dual *PageRegion A5
*UIConstraints: *StapleJob Dual *PageRegion Statement
*UIConstraints: *OutputBin StandardBin *StapleJob Front
*UIConstraints: *OutputBin StandardBin *StapleJob Back
*UIConstraints: *OutputBin StandardBin *StapleJob Dual
*UIConstraints: *OutputBin StandardBin *StapleJob DoubleDual
*UIConstraints: *OutputBin StandardBin *HolePunch 2Hole
*UIConstraints: *OutputBin StandardBin *HolePunch 3Hole
*UIConstraints: *OutputBin StandardBin *HolePunch 4Hole
*UIConstraints: *OutputBin StandardBin *LXBookletFold SaddleStitch
*UIConstraints: *OutputBin StandardBin *LXBookletFold BookletFold
*UIConstraints: *OutputBin StandardBin *LXBookletFold BiFold
*UIConstraints: *OutputBin StandardBin *LXBookletFold DoNotFoldAndStaple
*UIConstraints: *OutputBin StandardBin *Offset Copies
*UIConstraints: *OutputBin FinisherBin1 *LXBookletFold SaddleStitch
*UIConstraints: *OutputBin FinisherBin1 *LXBookletFold BookletFold
*UIConstraints: *OutputBin FinisherBin1 *LXBookletFold BiFold
*UIConstraints: *OutputBin FinisherBin1 *LXBookletFold DoNotFoldAndStaple
*UIConstraints: *OutputBin FinisherBin1 *MediaType Labels
*UIConstraints: *OutputBin FinisherBin1 *MediaType Transparency
*UIConstraints: *OutputBin FinisherBin1 *PageSize Statement
*UIConstraints: *OutputBin FinisherBin1 *PageSize A5
*UIConstraints: *OutputBin FinisherBin1 *PageRegion Statement
*UIConstraints: *OutputBin FinisherBin1 *PageRegion A5
*UIConstraints: *InputSlot Tray1 *PageSize Executive
*UIConstraints: *InputSlot Tray1 *PageRegion Executive
*UIConstraints: *InputSlot Tray1 *MediaType Labels
*UIConstraints: *InputSlot Tray2 *MediaType Labels
*UIConstraints: *InputSlot Tray2 *PageSize Executive
*UIConstraints: *InputSlot Tray2 *PageRegion Executive
*UIConstraints: *InputSlot Tray3 *MediaType Labels
*UIConstraints: *InputSlot Tray3 *PageSize Executive
*UIConstraints: *InputSlot Tray3 *PageRegion Executive
*%*UIConstraints: *InputSlot Tray4 *MediaType Labels
*UIConstraints: *InputSlot Tray4 *PageSize Executive
*UIConstraints: *InputSlot Tray4 *PageRegion Executive
*UIConstraints: *OptOutputBins StandardBin *OutputBin FinisherBin1
*UIConstraints: *OptOutputBins OBin1 *LXBookletFold SaddleStitch
*UIConstraints: *OptOutputBins OBin1 *LXBookletFold BookletFold
*UIConstraints: *OptOutputBins OBin1 *LXBookletFold BiFold
*UIConstraints: *OptOutputBins OBin1 *LXBookletFold DoNotFoldAndStaple
*UIConstraints: *OptOutputBins OBin1 *LXBookletCoverPage True
*UIConstraints: *OptOutputBins OBin1 *LXOutsideFrontCover True
*UIConstraints: *OptOutputBins OBin1 *LXInsideFrontCover True
*UIConstraints: *OptOutputBins OBin1 *LXInsideBackCover True
*UIConstraints: *OptOutputBins OBin1 *LXOutsideBackCover True
*UIConstraints: *OutputFinisher NotInstalledM *StapleJob Front
*UIConstraints: *OutputFinisher NotInstalledM *StapleJob Back
*UIConstraints: *OutputFinisher NotInstalledM *StapleJob Dual
*UIConstraints: *OutputFinisher NotInstalledM *StapleJob DoubleDual
*UIConstraints: *OutputFinisher NotInstalledM *HolePunch 2Hole
*UIConstraints: *OutputFinisher NotInstalledM *HolePunch 3Hole
*UIConstraints: *OutputFinisher NotInstalledM *HolePunch 4Hole
*UIConstraints: *OutputFinisher NotInstalledM *LXBookletFold SaddleStitch
*UIConstraints: *OutputFinisher NotInstalledM *LXBookletFold BookletFold
*UIConstraints: *OutputFinisher NotInstalledM *LXBookletFold BiFold
*UIConstraints: *OutputFinisher NotInstalledM *LXBookletFold DoNotFoldAndStaple
*UIConstraints: *OutputFinisher NotInstalledM *LXBookletCoverPage True
*UIConstraints: *OptDuplex NotInstalledM *Duplex DuplexNoTumble
*UIConstraints: *OptDuplex NotInstalledM *Duplex DuplexTumble
*UIConstraints: *MediaType Transparency *StapleJob Front
*UIConstraints: *MediaType Transparency *StapleJob Back
*UIConstraints: *MediaType Transparency *StapleJob Dual
*UIConstraints: *MediaType Transparency *StapleJob DoubleDual
*UIConstraints: *MediaType Transparency *HolePunch 2Hole
*UIConstraints: *MediaType Transparency *HolePunch 3Hole
*UIConstraints: *MediaType Transparency *HolePunch 4Hole
*UIConstraints: *MediaType Transparency *LXBookletFold SaddleStitch
*UIConstraints: *MediaType Transparency *LXBookletFold BookletFold
*UIConstraints: *MediaType Transparency *LXBookletFold BiFold
*UIConstraints: *MediaType Transparency *LXBookletFold DoNotFoldAndStaple
*UIConstraints: *MediaType Transparency *LXBookletCoverPage True
*UIConstraints: *MediaType Labels *Offset Copies
*UIConstraints: *MediaType Labels *StapleJob Front
*UIConstraints: *MediaType Labels *StapleJob Back
*UIConstraints: *MediaType Labels *StapleJob Dual
*UIConstraints: *MediaType Labels *StapleJob DoubleDual
*UIConstraints: *MediaType Labels *HolePunch 2Hole
*UIConstraints: *MediaType Labels *HolePunch 3Hole
*UIConstraints: *MediaType Labels *HolePunch 4Hole
*UIConstraints: *MediaType Labels *LXBookletFold SaddleStitch
*UIConstraints: *MediaType Labels *LXBookletFold BookletFold
*UIConstraints: *MediaType Labels *LXBookletFold BiFold
*UIConstraints: *MediaType Labels *LXBookletFold DoNotFoldAndStaple
*UIConstraints: *MediaType Labels *LXBookletCoverPage True
*UIConstraints: *MediaType Transparency *Duplex DuplexNoTumble
*UIConstraints: *MediaType Transparency *Duplex DuplexTumble
*UIConstraints: *InputSlot ManualEnv *PageSize A4
*UIConstraints: *InputSlot ManualEnv *PageSize A5
*UIConstraints: *InputSlot ManualEnv *PageSize B5
*UIConstraints: *InputSlot ManualEnv *PageSize Folio
*UIConstraints: *InputSlot ManualEnv *PageSize Statement
*UIConstraints: *InputSlot ManualEnv *PageSize Executive
*UIConstraints: *InputSlot ManualEnv *PageSize Letter
*UIConstraints: *InputSlot ManualEnv *PageSize Legal
*UIConstraints: *InputSlot ManualEnv *PageSize B4
*UIConstraints: *InputSlot ManualEnv *PageSize A3
*UIConstraints: *InputSlot ManualEnv *PageSize 11x17
*UIConstraints: *Trays Tray1 *InputSlot Tray2
*UIConstraints: *Trays Tray1 *InputSlot Tray3
*UIConstraints: *Trays Tray1 *InputSlot Tray4
*UIConstraints: *Trays Tray12 *InputSlot Tray3
*UIConstraints: *Trays Tray12 *InputSlot Tray4
*UIConstraints: *Trays Tray1 *SepSource Tray2
*UIConstraints: *Trays Tray1 *SepSource Tray3
*UIConstraints: *Trays Tray1 *SepSource Tray4
*UIConstraints: *Trays Tray12 *SepSource Tray3
*UIConstraints: *Trays Tray12 *SepSource Tray4
*UIConstraints: *Trays Tray1 *LXBookletCoverSource Tray2
*UIConstraints: *Trays Tray1 *LXBookletCoverSource Tray3
*UIConstraints: *Trays Tray1 *LXBookletCoverSource Tray4
*UIConstraints: *Trays Tray12 *LXBookletCoverSource Tray3
*UIConstraints: *Trays Tray12 *LXBookletCoverSource Tray4
*UIConstraints: *SepPages NoneF *SepSource Tray1
*UIConstraints: *SepPages NoneF *SepSource Tray2
*UIConstraints: *SepPages NoneF *SepSource Tray3
*UIConstraints: *SepPages NoneF *SepSource Tray4
*UIConstraints: *SepPages NoneF *SepSource MultipurposeFeeder
*UIConstraints: *MediaColor Auto *ManualRGBImage Vivid
*UIConstraints: *MediaColor Auto *ManualRGBImage sRGBDisplay
*UIConstraints: *MediaColor Auto *ManualRGBImage sRGBVivid
*UIConstraints: *MediaColor Auto *ManualRGBImage DisplayRealBlack
*UIConstraints: *MediaColor Auto *ManualRGBText Vivid
*UIConstraints: *MediaColor Auto *ManualRGBText sRGBDisplay
*UIConstraints: *MediaColor Auto *ManualRGBText sRGBVivid
*UIConstraints: *MediaColor Auto *ManualRGBText DisplayRealBlack
*UIConstraints: *MediaColor Auto *ManualRGBGraphics Vivid
*UIConstraints: *MediaColor Auto *ManualRGBGraphics sRGBDisplay
*UIConstraints: *MediaColor Auto *ManualRGBGraphics sRGBVivid
*UIConstraints: *MediaColor Auto *ManualRGBGraphics DisplayRealBlack
*UIConstraints: *MediaColor Auto *ManualCMYK USCMYK
*UIConstraints: *MediaColor Auto *ManualCMYK EuroCMYK
*UIConstraints: *MediaColor Auto *ManualCMYK VividCMYK
*UIConstraints: *MediaColor FalseM *ManualRGBImage Vivid
*UIConstraints: *MediaColor FalseM *ManualRGBImage sRGBDisplay
*UIConstraints: *MediaColor FalseM *ManualRGBImage sRGBVivid
*UIConstraints: *MediaColor FalseM *ManualRGBImage DisplayRealBlack
*UIConstraints: *MediaColor FalseM *ManualRGBText Vivid
*UIConstraints: *MediaColor FalseM *ManualRGBText sRGBDisplay
*UIConstraints: *MediaColor FalseM *ManualRGBText sRGBVivid
*UIConstraints: *MediaColor FalseM *ManualRGBText DisplayRealBlack
*UIConstraints: *MediaColor FalseM *ManualRGBGraphics Vivid
*UIConstraints: *MediaColor FalseM *ManualRGBGraphics sRGBDisplay
*UIConstraints: *MediaColor FalseM *ManualRGBGraphics sRGBVivid
*UIConstraints: *MediaColor FalseM *ManualRGBGraphics DisplayRealBlack
*UIConstraints: *MediaColor FalseM *ManualCMYK USCMYK
*UIConstraints: *MediaColor FalseM *ManualCMYK EuroCMYK
*UIConstraints: *MediaColor FalseM *ManualCMYK VividCMYK
*%*****************************************************************************
*% Halftone Information
*%*****************************************************************************
*ScreenFreq: "154.0"
*ScreenAngle: "50.0"
*DefaultScreenProc: Dot
*ScreenProc Dot: "
{abs exch abs 2 copy add 1 gt {1 sub dup mul exch 1 sub dup mul add 1
sub }{dup mul exch dup mul add 1 exch sub }ifelse }"
*End
*ScreenProc Line: "{ pop }"
*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
*DefaultTransfer: Factory
*Transfer Factory: "{}"
*Transfer Factory.Inverse: "{1 exch sub }"
*%******************************************************************************
*% Quality Group
*%******************************************************************************
*OpenGroup: Quality/Quality
*de.Translation Quality/Qualität: ""
*es.Translation Quality/Calidad: ""
*fr.Translation Quality/Qualité: ""
*it.Translation Quality/Qualità: ""
*ja.Translation Quality/品質: ""
*pt.Translation Quality/Qualidade: ""
*zh_CN.Translation Quality/质量: ""
*zh_TW.Translation Quality/品質: ""
*ko.Translation Quality/품질: ""
*OrderDependency: 11 AnySetup *Resolution
*DefaultResolution: 2400x600dpi
*Resolution 2400x600dpi/2400 Image Quality: "
1 dict dup /HWResolution [600 600] put setpagedevice
<< /DeviceRenderingInfo << /Type 106 /Screening /IET >> >> setpagedevice"
*End
*de.Resolution 2400x600dpi/2400 Image Quality: ""
*es.Resolution 2400x600dpi/2400 Image Quality: ""
*fr.Resolution 2400x600dpi/2400 Image Quality: ""
*it.Resolution 2400x600dpi/2400 Image Quality: ""
*ja.Resolution 2400x600dpi/2400 Image Quality: ""
*pt.Resolution 2400x600dpi/2400 Image Quality: ""
*zh_CN.Resolution 2400x600dpi/2400 Image Quality: ""
*zh_TW.Resolution 2400x600dpi/2400 Image Quality: ""
*ko.Resolution 2400x600dpi/2400 Image Quality: ""
*%******************************************************************************
*% Toner Darkness
*%******************************************************************************
*OpenUI *TonerDarkness/Toner Darkness: PickOne
*de.Translation TonerDarkness/Tonerdeckung: ""
*es.Translation TonerDarkness/Intensidad del tóner: ""
*fr.Translation TonerDarkness/Intensité Toner: ""
*it.Translation TonerDarkness/Intensità del toner: ""
*ja.Translation TonerDarkness/トナーの濃さ: ""
*pt.Translation TonerDarkness/Tonalidade de toner: ""
*zh_CN.Translation TonerDarkness/鼓粉浓度: ""
*zh_TW.Translation TonerDarkness/碳粉明暗度: ""
*ko.Translation TonerDarkness/토너 어둡기: ""
*OrderDependency: 16 AnySetup *TonerDarkness
*DefaultTonerDarkness: PrinterS
*TonerDarkness PrinterS/Printer Setting: ""
*de.TonerDarkness PrinterS/Druckereinstellung: ""
*es.TonerDarkness PrinterS/Valor de la impresora: ""
*fr.TonerDarkness PrinterS/Paramètres de l'imprimante: ""
*it.TonerDarkness PrinterS/Impostazione stampante: ""
*ja.TonerDarkness PrinterS/プリンタ設定: ""
*pt.TonerDarkness PrinterS/Padrao da Impressora: ""
*zh_CN.TonerDarkness PrinterS/打印机设置: ""
*zh_TW.TonerDarkness PrinterS/印表機設置: ""
*ko.TonerDarkness PrinterS/프린터 설정 : ""
*TonerDarkness 1/1: "
<< /DeviceRenderingInfo << /Type 106 /PrintDarkness 1 >> >> setpagedevice"
*End
*de.TonerDarkness 1/1: ""
*es.TonerDarkness 1/1: ""
*fr.TonerDarkness 1/1: ""
*it.TonerDarkness 1/1: ""
*ja.TonerDarkness 1/1: ""
*pt.TonerDarkness 1/1: ""
*zh_CN.TonerDarkness 1/1: ""
*zh_TW.TonerDarkness 1/1: ""
*ko.TonerDarkness 1/1: ""
*TonerDarkness 2/2: "
<< /DeviceRenderingInfo << /Type 106 /PrintDarkness 2 >> >> setpagedevice"
*End
*de.TonerDarkness 2/2: ""
*es.TonerDarkness 2/2: ""
*fr.TonerDarkness 2/2: ""
*it.TonerDarkness 2/2: ""
*ja.TonerDarkness 2/2: ""
*pt.TonerDarkness 2/2: ""
*zh_CN.TonerDarkness 2/2: ""
*zh_TW.TonerDarkness 2/2: ""
*ko.TonerDarkness 2/2: ""
*TonerDarkness 3/3: "
<< /DeviceRenderingInfo << /Type 106 /PrintDarkness 3 >> >> setpagedevice"
*End
*de.TonerDarkness 3/3: ""
*es.TonerDarkness 3/3: ""
*fr.TonerDarkness 3/3: ""
*it.TonerDarkness 3/3: ""
*ja.TonerDarkness 3/3: ""
*pt.TonerDarkness 3/3: ""
*zh_CN.TonerDarkness 3/3: ""
*zh_TW.TonerDarkness 3/3: ""
*ko.TonerDarkness 3/3: ""
*TonerDarkness 4/4: "
<< /DeviceRenderingInfo << /Type 106 /PrintDarkness 4 >> >> setpagedevice"
*End
*de.TonerDarkness 4/4: ""
*es.TonerDarkness 4/4: ""
*fr.TonerDarkness 4/4: ""
*it.TonerDarkness 4/4: ""
*ja.TonerDarkness 4/4: ""
*pt.TonerDarkness 4/4: ""
*zh_CN.TonerDarkness 4/4: ""
*zh_TW.TonerDarkness 4/4: ""
*ko.TonerDarkness 4/4: ""
*TonerDarkness 5/5: "
<< /DeviceRenderingInfo << /Type 106 /PrintDarkness 5 >> >> setpagedevice"
*End
*de.TonerDarkness 5/5: ""
*es.TonerDarkness 5/5: ""
*fr.TonerDarkness 5/5: ""
*it.TonerDarkness 5/5: ""
*ja.TonerDarkness 5/5: ""
*pt.TonerDarkness 5/5: ""
*zh_CN.TonerDarkness 5/5: ""
*zh_TW.TonerDarkness 5/5: ""
*ko.TonerDarkness 5/5: ""
*?TonerDarkness: "
gsave
currentpagedevice /DeviceRenderingInfo get /PrintDarkness get
= flush
grestore"
*End
*CloseUI: *TonerDarkness
*%******************************************************************************
*% Brightness
*%******************************************************************************
*OpenUI *LexBrightness/Brightness: PickOne
*de.Translation LexBrightness/Helligkeit: ""
*es.Translation LexBrightness/Brillo: ""
*fr.Translation LexBrightness/Luminosité: ""
*it.Translation LexBrightness/Luminosità: ""
*ja.Translation LexBrightness/明度: ""
*pt.Translation LexBrightness/Brilho: ""
*zh_CN.Translation LexBrightness/明亮度: ""
*zh_TW.Translation LexBrightness/亮度: ""
*ko.Translation LexBrightness/밝기: ""
*OrderDependency: 185 AnySetup *LexBrightness
*DefaultLexBrightness: PrinterS
*LexBrightness PrinterS/Printer Setting: ""
*de.LexBrightness PrinterS/Druckereinstellung: ""
*es.LexBrightness PrinterS/Valor de la impresora: ""
*fr.LexBrightness PrinterS/Paramètres de l'imprimante: ""
*it.LexBrightness PrinterS/Impostazione stampante: ""
*ja.LexBrightness PrinterS/プリンタ設定: ""
*pt.LexBrightness PrinterS/Padrao da Impressora: ""
*zh_CN.LexBrightness PrinterS/打印机设置: ""
*zh_TW.LexBrightness PrinterS/印表機設置: ""
*ko.LexBrightness PrinterS/프린터 설정 : ""
*LexBrightness -6/ -6: "
<< /DeviceRenderingInfo << /ImageBrightness -6 >> >> setpagedevice"
*End
*de.LexBrightness -6/ -6: ""
*es.LexBrightness -6/ -6: ""
*fr.LexBrightness -6/ -6: ""
*it.LexBrightness -6/ -6: ""
*ja.LexBrightness -6/ -6: ""
*pt.LexBrightness -6/ -6: ""
*zh_CN.LexBrightness -6/ -6: ""
*zh_TW.LexBrightness -6/ -6: ""
*ko.LexBrightness -6/ -6: ""
*LexBrightness -5/ -5: "
<< /DeviceRenderingInfo << /ImageBrightness -5 >> >> setpagedevice"
*End
*de.LexBrightness -5/ -5: ""
*es.LexBrightness -5/ -5: ""
*fr.LexBrightness -5/ -5: ""
*it.LexBrightness -5/ -5: ""
*ja.LexBrightness -5/ -5: ""
*pt.LexBrightness -5/ -5: ""
*zh_CN.LexBrightness -5/ -5: ""
*zh_TW.LexBrightness -5/ -5: ""
*ko.LexBrightness -5/ -5: ""
*LexBrightness -4/ -4: "
<< /DeviceRenderingInfo << /ImageBrightness -4 >> >> setpagedevice"
*End
*de.LexBrightness -4/ -4: ""
*es.LexBrightness -4/ -4: ""
*fr.LexBrightness -4/ -4: ""
*it.LexBrightness -4/ -4: ""
*ja.LexBrightness -4/ -4: ""
*pt.LexBrightness -4/ -4: ""
*zh_CN.LexBrightness -4/ -4: ""
*zh_TW.LexBrightness -4/ -4: ""
*ko.LexBrightness -4/ -4: ""
*LexBrightness -3/ -3: "
<< /DeviceRenderingInfo << /ImageBrightness -3 >> >> setpagedevice"
*End
*de.LexBrightness -3/ -3: ""
*es.LexBrightness -3/ -3: ""
*fr.LexBrightness -3/ -3: ""
*it.LexBrightness -3/ -3: ""
*ja.LexBrightness -3/ -3: ""
*pt.LexBrightness -3/ -3: ""
*zh_CN.LexBrightness -3/ -3: ""
*zh_TW.LexBrightness -3/ -3: ""
*ko.LexBrightness -3/ -3: ""
*LexBrightness -2/ -2: "
<< /DeviceRenderingInfo << /ImageBrightness -2 >> >> setpagedevice"
*End
*de.LexBrightness -2/ -2: ""
*es.LexBrightness -2/ -2: ""
*fr.LexBrightness -2/ -2: ""
*it.LexBrightness -2/ -2: ""
*ja.LexBrightness -2/ -2: ""
*pt.LexBrightness -2/ -2: ""
*zh_CN.LexBrightness -2/ -2: ""
*zh_TW.LexBrightness -2/ -2: ""
*ko.LexBrightness -2/ -2: ""
*LexBrightness -1/ -1: "
<< /DeviceRenderingInfo << /ImageBrightness -1 >> >> setpagedevice"
*End
*de.LexBrightness -1/ -1: ""
*es.LexBrightness -1/ -1: ""
*fr.LexBrightness -1/ -1: ""
*it.LexBrightness -1/ -1: ""
*ja.LexBrightness -1/ -1: ""
*pt.LexBrightness -1/ -1: ""
*zh_CN.LexBrightness -1/ -1: ""
*zh_TW.LexBrightness -1/ -1: ""
*ko.LexBrightness -1/ -1: ""
*LexBrightness 0/ 0: "
<< /DeviceRenderingInfo << /ImageBrightness 0 >> >> setpagedevice"
*End
*de.LexBrightness 0/ 0: ""
*es.LexBrightness 0/ 0: ""
*fr.LexBrightness 0/ 0: ""
*it.LexBrightness 0/ 0: ""
*ja.LexBrightness 0/ 0: ""
*pt.LexBrightness 0/ 0: ""
*zh_CN.LexBrightness 0/ 0: ""
*zh_TW.LexBrightness 0/ 0: ""
*ko.LexBrightness 0/ 0: ""
*LexBrightness +1/ +1: "
<< /DeviceRenderingInfo << /ImageBrightness 1 >> >> setpagedevice"
*End
*de.LexBrightness +1/ +1: ""
*es.LexBrightness +1/ +1: ""
*fr.LexBrightness +1/ +1: ""
*it.LexBrightness +1/ +1: ""
*ja.LexBrightness +1/ +1: ""
*pt.LexBrightness +1/ +1: ""
*zh_CN.LexBrightness +1/ +1: ""
*zh_TW.LexBrightness +1/ +1: ""
*ko.LexBrightness +1/ +1: ""
*LexBrightness +2/ +2: "
<< /DeviceRenderingInfo << /ImageBrightness 2 >> >> setpagedevice"
*End
*de.LexBrightness +2/ +2: ""
*es.LexBrightness +2/ +2: ""
*fr.LexBrightness +2/ +2: ""
*it.LexBrightness +2/ +2: ""
*ja.LexBrightness +2/ +2: ""
*pt.LexBrightness +2/ +2: ""
*zh_CN.LexBrightness +2/ +2: ""
*zh_TW.LexBrightness +2/ +2: ""
*ko.LexBrightness +2/ +2: ""
*LexBrightness +3/ +3: "
<< /DeviceRenderingInfo << /ImageBrightness 3 >> >> setpagedevice"
*End
*de.LexBrightness +3/ +3: ""
*es.LexBrightness +3/ +3: ""
*fr.LexBrightness +3/ +3: ""
*it.LexBrightness +3/ +3: ""
*ja.LexBrightness +3/ +3: ""
*pt.LexBrightness +3/ +3: ""
*zh_CN.LexBrightness +3/ +3: ""
*zh_TW.LexBrightness +3/ +3: ""
*ko.LexBrightness +3/ +3: ""
*LexBrightness +4/ +4: "
<< /DeviceRenderingInfo << /ImageBrightness 4 >> >> setpagedevice"
*End
*de.LexBrightness +4/ +4: ""
*es.LexBrightness +4/ +4: ""
*fr.LexBrightness +4/ +4: ""
*it.LexBrightness +4/ +4: ""
*ja.LexBrightness +4/ +4: ""
*pt.LexBrightness +4/ +4: ""
*zh_CN.LexBrightness +4/ +4: ""
*zh_TW.LexBrightness +4/ +4: ""
*ko.LexBrightness +4/ +4: ""
*LexBrightness +5/ +5: "
<< /DeviceRenderingInfo << /ImageBrightness 5 >> >> setpagedevice"
*End
*de.LexBrightness +5/ +5: ""
*es.LexBrightness +5/ +5: ""
*fr.LexBrightness +5/ +5: ""
*it.LexBrightness +5/ +5: ""
*ja.LexBrightness +5/ +5: ""
*pt.LexBrightness +5/ +5: ""
*zh_CN.LexBrightness +5/ +5: ""
*zh_TW.LexBrightness +5/ +5: ""
*ko.LexBrightness +5/ +5: ""
*LexBrightness +6/ +6: "
<< /DeviceRenderingInfo << /ImageBrightness 6 >> >> setpagedevice"
*End
*de.LexBrightness +6/ +6: ""
*es.LexBrightness +6/ +6: ""
*fr.LexBrightness +6/ +6: ""
*it.LexBrightness +6/ +6: ""
*ja.LexBrightness +6/ +6: ""
*pt.LexBrightness +6/ +6: ""
*zh_CN.LexBrightness +6/ +6: ""
*zh_TW.LexBrightness +6/ +6: ""
*ko.LexBrightness +6/ +6: ""
*?LexBrightness: "
gsave
currentpagedevice /DeviceRenderingInfo get /ImageBrightness get
= flush
grestore"
*End
*CloseUI: *LexBrightness
*%******************************************************************************
*% Contrast
*%******************************************************************************
*OpenUI *LexContrast/Contrast: PickOne
*de.Translation LexContrast/Kontrast: ""
*es.Translation LexContrast/Contraste: ""
*fr.Translation LexContrast/Contraste: ""
*it.Translation LexContrast/Contrasto: ""
*ja.Translation LexContrast/コントラスト: ""
*pt.Translation LexContrast/Contraste: ""
*zh_CN.Translation LexContrast/对比度: ""
*zh_TW.Translation LexContrast/對比: ""
*ko.Translation LexContrast/대비: ""
*OrderDependency: 190 AnySetup *LexContrast
*DefaultLexContrast: PrinterS
*LexContrast PrinterS/Printer Setting: ""
*de.LexContrast PrinterS/Druckereinstellung: ""
*es.LexContrast PrinterS/Valor de la impresora: ""
*fr.LexContrast PrinterS/Paramètres de l'imprimante: ""
*it.LexContrast PrinterS/Impostazione stampante: ""
*ja.LexContrast PrinterS/プリンタ設定: ""
*pt.LexContrast PrinterS/Padrao da Impressora: ""
*zh_CN.LexContrast PrinterS/打印机设置: ""
*zh_TW.LexContrast PrinterS/印表機設置: ""
*ko.LexContrast PrinterS/프린터 설정 : ""
*LexContrast 0/0: "
<< /DeviceRenderingInfo << /ImageContrast 0 >> >> setpagedevice"
*End
*de.LexContrast 0/0: ""
*es.LexContrast 0/0: ""
*fr.LexContrast 0/0: ""
*it.LexContrast 0/0: ""
*ja.LexContrast 0/0: ""
*pt.LexContrast 0/0: ""
*zh_CN.LexContrast 0/0: ""
*zh_TW.LexContrast 0/0: ""
*ko.LexContrast 0/0: ""
*LexContrast 1/1: "
<< /DeviceRenderingInfo << /ImageContrast 1 >> >> setpagedevice"
*End
*de.LexContrast 1/1: ""
*es.LexContrast 1/1: ""
*fr.LexContrast 1/1: ""
*it.LexContrast 1/1: ""
*ja.LexContrast 1/1: ""
*pt.LexContrast 1/1: ""
*zh_CN.LexContrast 1/1: ""
*zh_TW.LexContrast 1/1: ""
*ko.LexContrast 1/1: ""
*LexContrast 2/2: "
<< /DeviceRenderingInfo << /ImageContrast 2 >> >> setpagedevice"
*End
*de.LexContrast 2/2: ""
*es.LexContrast 2/2: ""
*fr.LexContrast 2/2: ""
*it.LexContrast 2/2: ""
*ja.LexContrast 2/2: ""
*pt.LexContrast 2/2: ""
*zh_CN.LexContrast 2/2: ""
*zh_TW.LexContrast 2/2: ""
*ko.LexContrast 2/2: ""
*LexContrast 3/3: "
<< /DeviceRenderingInfo << /ImageContrast 3 >> >> setpagedevice"
*End
*de.LexContrast 3/3: ""
*es.LexContrast 3/3: ""
*fr.LexContrast 3/3: ""
*it.LexContrast 3/3: ""
*ja.LexContrast 3/3: ""
*pt.LexContrast 3/3: ""
*zh_CN.LexContrast 3/3: ""
*zh_TW.LexContrast 3/3: ""
*ko.LexContrast 3/3: ""
*LexContrast 4/4: "
<< /DeviceRenderingInfo << /ImageContrast 4 >> >> setpagedevice"
*End
*de.LexContrast 4/4: ""
*es.LexContrast 4/4: ""
*fr.LexContrast 4/4: ""
*it.LexContrast 4/4: ""
*ja.LexContrast 4/4: ""
*pt.LexContrast 4/4: ""
*zh_CN.LexContrast 4/4: ""
*zh_TW.LexContrast 4/4: ""
*ko.LexContrast 4/4: ""
*LexContrast 5/5: "
<< /DeviceRenderingInfo << /ImageContrast 5 >> >> setpagedevice"
*End
*de.LexContrast 5/5: ""
*es.LexContrast 5/5: ""
*fr.LexContrast 5/5: ""
*it.LexContrast 5/5: ""
*ja.LexContrast 5/5: ""
*pt.LexContrast 5/5: ""
*zh_CN.LexContrast 5/5: ""
*zh_TW.LexContrast 5/5: ""
*ko.LexContrast 5/5: ""
*?LexContrast: "
gsave
currentpagedevice /DeviceRenderingInfo get /ImageContrast get
= flush
grestore"
*End
*CloseUI: *LexContrast
*%******************************************************************************
*% Saturation
*%******************************************************************************
*OpenUI *LexSaturation/Saturation: PickOne
*de.Translation LexSaturation/Farbsättigung: ""
*es.Translation LexSaturation/Saturación: ""
*fr.Translation LexSaturation/Saturation: ""
*it.Translation LexSaturation/Saturazione: ""
*ja.Translation LexSaturation/彩度: ""
*pt.Translation LexSaturation/Saturação: ""
*zh_CN.Translation LexSaturation/饱和度: ""
*zh_TW.Translation LexSaturation/飽和度: ""
*ko.Translation LexSaturation/채도: ""
*OrderDependency: 195 AnySetup *LexSaturation
*DefaultLexSaturation: PrinterS
*LexSaturation PrinterS/Printer Setting: ""
*de.LexSaturation PrinterS/Druckereinstellung: ""
*es.LexSaturation PrinterS/Valor de la impresora: ""
*fr.LexSaturation PrinterS/Paramètres de l'imprimante: ""
*it.LexSaturation PrinterS/Impostazione stampante: ""
*ja.LexSaturation PrinterS/プリンタ設定: ""
*pt.LexSaturation PrinterS/Padrao da Impressora: ""
*zh_CN.LexSaturation PrinterS/打印机设置: ""
*zh_TW.LexSaturation PrinterS/印表機設置: ""
*ko.LexSaturation PrinterS/프린터 설정 : ""
*LexSaturation 0/0: "
<< /DeviceRenderingInfo << /ImageSaturation 0 >> >> setpagedevice"
*End
*de.LexSaturation 0/0: ""
*es.LexSaturation 0/0: ""
*fr.LexSaturation 0/0: ""
*it.LexSaturation 0/0: ""
*ja.LexSaturation 0/0: ""
*pt.LexSaturation 0/0: ""
*zh_CN.LexSaturation 0/0: ""
*zh_TW.LexSaturation 0/0: ""
*ko.LexSaturation 0/0: ""
*LexSaturation 1/1: "
<< /DeviceRenderingInfo << /ImageSaturation 1 >> >> setpagedevice"
*End
*de.LexSaturation 1/1: ""
*es.LexSaturation 1/1: ""
*fr.LexSaturation 1/1: ""
*it.LexSaturation 1/1: ""
*ja.LexSaturation 1/1: ""
*pt.LexSaturation 1/1: ""
*zh_CN.LexSaturation 1/1: ""
*zh_TW.LexSaturation 1/1: ""
*ko.LexSaturation 1/1: ""
*LexSaturation 2/2: "
<< /DeviceRenderingInfo << /ImageSaturation 2 >> >> setpagedevice"
*End
*de.LexSaturation 2/2: ""
*es.LexSaturation 2/2: ""
*fr.LexSaturation 2/2: ""
*it.LexSaturation 2/2: ""
*ja.LexSaturation 2/2: ""
*pt.LexSaturation 2/2: ""
*zh_CN.LexSaturation 2/2: ""
*zh_TW.LexSaturation 2/2: ""
*ko.LexSaturation 2/2: ""
*LexSaturation 3/3: "
<< /DeviceRenderingInfo << /ImageSaturation 3 >> >> setpagedevice"
*End
*de.LexSaturation 3/3: ""
*es.LexSaturation 3/3: ""
*fr.LexSaturation 3/3: ""
*it.LexSaturation 3/3: ""
*ja.LexSaturation 3/3: ""
*pt.LexSaturation 3/3: ""
*zh_CN.LexSaturation 3/3: ""
*zh_TW.LexSaturation 3/3: ""
*ko.LexSaturation 3/3: ""
*LexSaturation 4/4: "
<< /DeviceRenderingInfo << /ImageSaturation 4 >> >> setpagedevice"
*End
*de.LexSaturation 4/4: ""
*es.LexSaturation 4/4: ""
*fr.LexSaturation 4/4: ""
*it.LexSaturation 4/4: ""
*ja.LexSaturation 4/4: ""
*pt.LexSaturation 4/4: ""
*zh_CN.LexSaturation 4/4: ""
*zh_TW.LexSaturation 4/4: ""
*ko.LexSaturation 4/4: ""
*LexSaturation 5/5: "
<< /DeviceRenderingInfo << /ImageSaturation 5 >> >> setpagedevice"
*End
*de.LexSaturation 5/5: ""
*es.LexSaturation 5/5: ""
*fr.LexSaturation 5/5: ""
*it.LexSaturation 5/5: ""
*ja.LexSaturation 5/5: ""
*pt.LexSaturation 5/5: ""
*zh_CN.LexSaturation 5/5: ""
*zh_TW.LexSaturation 5/5: ""
*ko.LexSaturation 5/5: ""
*?LexSaturation: "
gsave
currentpagedevice /DeviceRenderingInfo get /ImageSaturation get
= flush
grestore"
*End
*CloseUI: *LexSaturation
*%******************************************************************************
*% Line Detail Mode
*%******************************************************************************
*OpenUI *LexLineDetail/Enhance Fine Lines: PickOne
*de.Translation LexLineDetail/Feine Linien verbessern: ""
*es.Translation LexLineDetail/Mejorar líneas finas: ""
*fr.Translation LexLineDetail/Améliorer traits fins: ""
*it.Translation LexLineDetail/Migliora linee sottili: ""
*ja.Translation LexLineDetail/細かい線を強調: ""
*pt.Translation LexLineDetail/Melhorar linhas finas: ""
*zh_CN.Translation LexLineDetail/增强细线: ""
*zh_TW.Translation LexLineDetail/美化細線: ""
*ko.Translation LexLineDetail/미세 라인 강화: ""
*OrderDependency: 180 AnySetup *LexLineDetail
*DefaultLexLineDetail: PrinterS
*LexLineDetail PrinterS/Printer Setting: ""
*de.LexLineDetail PrinterS/Druckereinstellung: ""
*es.LexLineDetail PrinterS/Valor de la impresora: ""
*fr.LexLineDetail PrinterS/Paramètres de l'imprimante: ""
*it.LexLineDetail PrinterS/Impostazione stampante: ""
*ja.LexLineDetail PrinterS/プリンタ設定: ""
*pt.LexLineDetail PrinterS/Padrao da Impressora: ""
*zh_CN.LexLineDetail PrinterS/打印机设置: ""
*zh_TW.LexLineDetail PrinterS/印表機設置: ""
*ko.LexLineDetail PrinterS/프린터 설정 : ""
*LexLineDetail FalseF/Off: "<< /DeviceRenderingInfo << /LineDetail /Off >> >> setpagedevice"
*de.LexLineDetail FalseF/Aus: ""
*es.LexLineDetail FalseF/Desactivada: ""
*fr.LexLineDetail FalseF/Hors Fonction: ""
*it.LexLineDetail FalseF/Disabilitato: ""
*ja.LexLineDetail FalseF/オフ: ""
*pt.LexLineDetail FalseF/Desligada: ""
*zh_CN.LexLineDetail FalseF/关: ""
*zh_TW.LexLineDetail FalseF/關: ""
*ko.LexLineDetail FalseF/꺼짐: ""
*LexLineDetail TrueF/On: "<< /DeviceRenderingInfo << /LineDetail /On >> >> setpagedevice"
*de.LexLineDetail TrueF/Ein: ""
*es.LexLineDetail TrueF/Activada: ""
*fr.LexLineDetail TrueF/En Fonction: ""
*it.LexLineDetail TrueF/Abilitato: ""
*ja.LexLineDetail TrueF/オン: ""
*pt.LexLineDetail TrueF/Ativar: ""
*zh_CN.LexLineDetail TrueF/开: ""
*zh_TW.LexLineDetail TrueF/開: ""
*ko.LexLineDetail TrueF/켜짐: ""
*?LexLineDetail: "
gsave
2 dict
dup /On (TrueF) put
dup /Off (FalseF) put
currentpagedevice /DeviceRenderingInfo get /LineDetail get
= flush
grestore"
*End
*CloseUI: *LexLineDetail
*%******************************************************************************
*% Mirror
*%******************************************************************************
*OpenUI *LexMirror/Mirror: Boolean
*de.Translation LexMirror/Spiegeln: ""
*es.Translation LexMirror/Espejo: ""
*fr.Translation LexMirror/Inverser: ""
*it.Translation LexMirror/Speculare: ""
*ja.Translation LexMirror/左右反転: ""
*pt.Translation LexMirror/Espelhado: ""
*zh_CN.Translation LexMirror/镜像: ""
*zh_TW.Translation LexMirror/鏡映: ""
*ko.Translation LexMirror/미러: ""
*OrderDependency: 500 AnySetup *LexMirror
*DefaultLexMirror: False
*LexMirror False/Off: ""
*de.LexMirror False/Aus: ""
*es.LexMirror False/Desactivado: ""
*fr.LexMirror False/Hors Fonction: ""
*it.LexMirror False/Disabilitato: ""
*ja.LexMirror False/オフ: ""
*pt.LexMirror False/Desligado: ""
*zh_CN.LexMirror False/关: ""
*zh_TW.LexMirror False/關: ""
*ko.LexMirror False/꺼짐: ""
*LexMirror True/On: "
<< /Install { currentpagedevice /PageSize get 0 get
0 translate -1 1 scale } >> setpagedevice"
*End
*de.LexMirror True/Ein: ""
*es.LexMirror True/Activado: ""
*fr.LexMirror True/En Fonction: ""
*it.LexMirror True/Abilitato: ""
*ja.LexMirror True/オン: ""
*pt.LexMirror True/Ativar: ""
*zh_CN.LexMirror True/开: ""
*zh_TW.LexMirror True/開: ""
*ko.LexMirror True/켜짐: ""
*?LexMirror: ""
*CloseUI: *LexMirror
*CloseGroup: Quality
*%*****************************************************************************
*% Color Group
*%*****************************************************************************
*OpenGroup: Color/Color
*de.Translation Color/Farbanpassung: ""
*es.Translation Color/Color: ""
*fr.Translation Color/Couleur: ""
*it.Translation Color/Colore: ""
*ja.Translation Color/カラー用紙: ""
*pt.Translation Color/Colorido: ""
*zh_CN.Translation Color/颜色: ""
*zh_TW.Translation Color/色彩: ""
*ko.Translation Color/칼라: ""
*%*****************************************************************************
*% Color Correction
*%*****************************************************************************
*OpenUI *MediaColor/Color Correction: PickOne
*de.Translation MediaColor/Farbanpassung: ""
*es.Translation MediaColor/Corrección de color: ""
*fr.Translation MediaColor/Correction des Couleurs: ""
*it.Translation MediaColor/Correzione Colore: ""
*ja.Translation MediaColor/色補正 : ""
*pt.Translation MediaColor/Correção de Cor: ""
*zh_CN.Translation MediaColor/颜色修正: ""
*zh_TW.Translation MediaColor/色彩修正: ""
*ko.Translation MediaColor/색상 교정: ""
*OrderDependency: 12 AnySetup *MediaColor
*DefaultMediaColor: PrinterS
*MediaColor PrinterS/Printer Setting: ""
*de.MediaColor PrinterS/Druckereinstellung: ""
*es.MediaColor PrinterS/Valor de la impresora: ""
*fr.MediaColor PrinterS/Paramètres de l'imprimante: ""
*it.MediaColor PrinterS/Impostazione stampante: ""
*ja.MediaColor PrinterS/プリンタ設定: ""
*pt.MediaColor PrinterS/Padrao da Impressora: ""
*zh_CN.MediaColor PrinterS/打印机设置: ""
*zh_TW.MediaColor PrinterS/印表機設置: ""
*ko.MediaColor PrinterS/프린터 설정 : ""
*MediaColor Auto/Auto: "
<< /DeviceRenderingInfo << /Type 106 /ColorCorrection /Automatic >> >> setpagedevice"
*End
*de.MediaColor Auto/Automatisch: ""
*es.MediaColor Auto/Automático: ""
*fr.MediaColor Auto/Automatique: ""
*it.MediaColor Auto/Automatico: ""
*ja.MediaColor Auto/自動: ""
*pt.MediaColor Auto/Automático: ""
*zh_CN.MediaColor Auto/自动: ""
*zh_TW.MediaColor Auto/自動: ""
*ko.MediaColor Auto/자동: ""
*MediaColor FalseM/Off: "
<< /DeviceRenderingInfo << /Type 106 /ColorCorrection /Off >> >> setpagedevice"
*End
*de.MediaColor FalseM/Aus: ""
*es.MediaColor FalseM/Desactivado: ""
*fr.MediaColor FalseM/Hors Fonction: ""
*it.MediaColor FalseM/Disabilitato: ""
*ja.MediaColor FalseM/オフ: ""
*pt.MediaColor FalseM/Desligado: ""
*zh_CN.MediaColor FalseM/关: ""
*zh_TW.MediaColor FalseM/關: ""
*ko.MediaColor FalseM/꺼짐: ""
*MediaColor Manual/Manual: "
<< /DeviceRenderingInfo << /Type 106 /ColorCorrection /Manual >> >> setpagedevice"
*End
*de.MediaColor Manual/Manuell: ""
*es.MediaColor Manual/Manual: ""
*fr.MediaColor Manual/Manuel: ""
*it.MediaColor Manual/Manuale: ""
*ja.MediaColor Manual/手差し: ""
*pt.MediaColor Manual/Manual: ""
*zh_CN.MediaColor Manual/手动: ""
*zh_TW.MediaColor Manual/手動: ""
*ko.MediaColor Manual/수동: ""
*?MediaColor: "
gsave
3 dict
dup /Automatic (Auto) put
dup /Manual (Manual) put
dup /Off (FalseM) put
currentpagedevice /DeviceRenderingInfo get /ColorCorrection get
get = flush
grestore"
*End
*CloseUI: *MediaColor
*%*****************************************************************************
*% Color Saver
*%*****************************************************************************
*OpenUI *ColorSaver/ColorSaver: PickOne
*de.Translation ColorSaver/ColorSaver: ""
*es.Translation ColorSaver/ColorSaver: ""
*fr.Translation ColorSaver/ColorSaver: ""
*it.Translation ColorSaver/ColorSaver: ""
*ja.Translation ColorSaver/ColorSaver: ""
*pt.Translation ColorSaver/ColorSaver: ""
*zh_CN.Translation ColorSaver/ColorSaver: ""
*zh_TW.Translation ColorSaver/ColorSaver: ""
*ko.Translation ColorSaver/ColorSaver: ""
*OrderDependency: 14 AnySetup *ColorSaver
*DefaultColorSaver: PrinterS
*ColorSaver PrinterS/Printer Setting: ""
*de.ColorSaver PrinterS/Druckereinstellung: ""
*es.ColorSaver PrinterS/Valor de la impresora: ""
*fr.ColorSaver PrinterS/Paramètres de l'imprimante: ""
*it.ColorSaver PrinterS/Impostazione stampante: ""
*ja.ColorSaver PrinterS/プリンタ設定: ""
*pt.ColorSaver PrinterS/Padrao da Impressora: ""
*zh_CN.ColorSaver PrinterS/打印机设置: ""
*zh_TW.ColorSaver PrinterS/印表機設置: ""
*ko.ColorSaver PrinterS/프린터 설정 : ""
*ColorSaver FalseM/Off: "<< /DeviceRenderingInfo << /ColorSaver /Off >> >> setpagedevice"
*de.ColorSaver FalseM/Aus: ""
*es.ColorSaver FalseM/Desactivado: ""
*fr.ColorSaver FalseM/Hors Fonction: ""
*it.ColorSaver FalseM/Disabilitato: ""
*ja.ColorSaver FalseM/オフ: ""
*pt.ColorSaver FalseM/Desligado: ""
*zh_CN.ColorSaver FalseM/关: ""
*zh_TW.ColorSaver FalseM/關: ""
*ko.ColorSaver FalseM/꺼짐: ""
*ColorSaver TrueM/On: "<< /DeviceRenderingInfo << /ColorSaver /On >> >> setpagedevice"
*de.ColorSaver TrueM/Ein: ""
*es.ColorSaver TrueM/Activado: ""
*fr.ColorSaver TrueM/En Fonction: ""
*it.ColorSaver TrueM/Abilitato: ""
*ja.ColorSaver TrueM/オン: ""
*pt.ColorSaver TrueM/Ativar: ""
*zh_CN.ColorSaver TrueM/开: ""
*zh_TW.ColorSaver TrueM/開: ""
*ko.ColorSaver TrueM/켜짐: ""
*?ColorSaver: "
gsave
currentpagedevice /DeviceRenderingInfo get /ColorSaver get
(On) eq {(TrueM)}{(FalseM)} ifelse
= flush
grestore"
*End
*CloseUI: *ColorSaver
*%*****************************************************************************
*% Black And White
*%*****************************************************************************
*OpenUI *BLW/Black & White: PickOne
*de.Translation BLW/Schwarz/Weiß: ""
*es.Translation BLW/Blanco y negro: ""
*fr.Translation BLW/Noir & Blanc: ""
*it.Translation BLW/Bianco e nero: ""
*ja.Translation BLW/白黒(モノクロ): ""
*pt.Translation BLW/Preto & Branco: ""
*zh_CN.Translation BLW/黑色和白色: ""
*zh_TW.Translation BLW/黑白: ""
*ko.Translation BLW/흑백: ""
*OrderDependency: 13 AnySetup *BLW
*DefaultBLW: PrinterS
*BLW PrinterS/Printer Setting: ""
*de.BLW PrinterS/Druckereinstellung: ""
*es.BLW PrinterS/Valor de la impresora: ""
*fr.BLW PrinterS/Paramètres de l'imprimante: ""
*it.BLW PrinterS/Impostazione stampante: ""
*ja.BLW PrinterS/プリンタ設定: ""
*pt.BLW PrinterS/Padrao da Impressora: ""
*zh_CN.BLW PrinterS/打印机设置: ""
*zh_TW.BLW PrinterS/印表機設置: ""
*ko.BLW PrinterS/프린터 설정 : ""
*BLW FalseM/Off: "<< /ProcessColorModel /DeviceCMYK >> setpagedevice"
*de.BLW FalseM/Aus: ""
*es.BLW FalseM/Desactivado: ""
*fr.BLW FalseM/Hors Fonction: ""
*it.BLW FalseM/Disabilitato: ""
*ja.BLW FalseM/オフ: ""
*pt.BLW FalseM/Desligado: ""
*zh_CN.BLW FalseM/关: ""
*zh_TW.BLW FalseM/關: ""
*ko.BLW FalseM/꺼짐: ""
*BLW TrueM/On: "<< /ProcessColorModel /DeviceGray >> setpagedevice"
*de.BLW TrueM/Ein: ""
*es.BLW TrueM/Activado: ""
*fr.BLW TrueM/En Fonction: ""
*it.BLW TrueM/Abilitato: ""
*ja.BLW TrueM/オン: ""
*pt.BLW TrueM/Ativar: ""
*zh_CN.BLW TrueM/开: ""
*zh_TW.BLW TrueM/開: ""
*ko.BLW TrueM/켜짐: ""
*?BLW: "
gsave
currentpagedevice /ProcessColorModel get /DeviceGray
(True) eq {(TrueM)}{(FalseM)} ifelse
= flush
grestore"
*End
*CloseUI: *BLW
*CloseGroup: Color
*%*****************************************************************************
*% Color Balance Group
*%*****************************************************************************
*OpenGroup: ColorBalance/Color Balance
*de.Translation ColorBalance/Farbausgleich: "<< /ProcessColorModel /DeviceGray >> setpagedevice"
*es.Translation ColorBalance/Mezcla de color: "<< /ProcessColorModel /DeviceGray >> setpagedevice"
*fr.Translation ColorBalance/Equilibre des couleurs: "<< /ProcessColorModel /DeviceGray >> setpagedevice"
*it.Translation ColorBalance/Bilanciamento colore: "<< /ProcessColorModel /DeviceGray >> setpagedevice"
*ja.Translation ColorBalance/カラー バランス: "<< /ProcessColorModel /DeviceGray >> setpagedevice"
*pt.Translation ColorBalance/Equilíbrio de cores: "<< /ProcessColorModel /DeviceGray >> setpagedevice"
*zh_CN.Translation ColorBalance/颜色平衡: "<< /ProcessColorModel /DeviceGray >> setpagedevice"
*zh_TW.Translation ColorBalance/色彩平衡: "<< /ProcessColorModel /DeviceGray >> setpagedevice"
*ko.Translation ColorBalance/색상 균형: "<< /ProcessColorModel /DeviceGray >> setpagedevice"
*%*****************************************************************************
*% Color Balance - Cyan
*%*****************************************************************************
*OpenUI *CyanBalance/Cyan Balance: PickOne
*de.Translation CyanBalance/Farbausgleich cyan: ""
*es.Translation CyanBalance/Mezcla de cian: ""
*fr.Translation CyanBalance/Equilibre cyan: ""
*it.Translation CyanBalance/Bilanciamento Ciano: ""
*ja.Translation CyanBalance/シアン バランス: ""
*pt.Translation CyanBalance/EquilÌbrio de ciano: ""
*zh_CN.Translation CyanBalance/青色平衡: ""
*zh_TW.Translation CyanBalance/靛青色平衡: ""
*ko.Translation CyanBalance/청색 발란스: ""
*OrderDependency: 71 AnySetup *CyanBalance
*DefaultCyanBalance: PrinterS
*CyanBalance PrinterS/Printer Setting: ""
*de.CyanBalance PrinterS/Druckereinstellung: ""
*es.CyanBalance PrinterS/Valor de la impresora: ""
*fr.CyanBalance PrinterS/Paramètres de l'imprimante: ""
*it.CyanBalance PrinterS/Impostazione stampante: ""
*ja.CyanBalance PrinterS/プリンタ設定: ""
*pt.CyanBalance PrinterS/Padrao da Impressora: ""
*zh_CN.CyanBalance PrinterS/打印机设置: ""
*zh_TW.CyanBalance PrinterS/印表機設置: ""
*ko.CyanBalance PrinterS/프린터 설정 : ""
*CyanBalance -5/ -5: "<< /DeviceRenderingInfo << /ColorBalanceCyan -5 >> >> setpagedevice"
*de.CyanBalance -5/ -5: ""
*es.CyanBalance -5/ -5: ""
*fr.CyanBalance -5/ -5: ""
*it.CyanBalance -5/ -5: ""
*ja.CyanBalance -5/ -5: ""
*pt.CyanBalance -5/ -5: ""
*zh_CN.CyanBalance -5/ -5: ""
*zh_TW.CyanBalance -5/ -5: ""
*ko.CyanBalance -5/ -5: ""
*CyanBalance -4/ -4: "<< /DeviceRenderingInfo << /ColorBalanceCyan -4 >> >> setpagedevice"
*de.CyanBalance -4/ -4: ""
*es.CyanBalance -4/ -4: ""
*fr.CyanBalance -4/ -4: ""
*it.CyanBalance -4/ -4: ""
*ja.CyanBalance -4/ -4: ""
*pt.CyanBalance -4/ -4: ""
*zh_CN.CyanBalance -4/ -4: ""
*zh_TW.CyanBalance -4/ -4: ""
*ko.CyanBalance -4/ -4: ""
*CyanBalance -3/ -3: "<< /DeviceRenderingInfo << /ColorBalanceCyan -3 >> >> setpagedevice"
*de.CyanBalance -3/ -3: ""
*es.CyanBalance -3/ -3: ""
*fr.CyanBalance -3/ -3: ""
*it.CyanBalance -3/ -3: ""
*ja.CyanBalance -3/ -3: ""
*pt.CyanBalance -3/ -3: ""
*zh_CN.CyanBalance -3/ -3: ""
*zh_TW.CyanBalance -3/ -3: ""
*ko.CyanBalance -3/ -3: ""
*CyanBalance -2/ -2: "<< /DeviceRenderingInfo << /ColorBalanceCyan -2 >> >> setpagedevice"
*de.CyanBalance -2/ -2: ""
*es.CyanBalance -2/ -2: ""
*fr.CyanBalance -2/ -2: ""
*it.CyanBalance -2/ -2: ""
*ja.CyanBalance -2/ -2: ""
*pt.CyanBalance -2/ -2: ""
*zh_CN.CyanBalance -2/ -2: ""
*zh_TW.CyanBalance -2/ -2: ""
*ko.CyanBalance -2/ -2: ""
*CyanBalance -1/ -1: "<< /DeviceRenderingInfo << /ColorBalanceCyan -1 >> >> setpagedevice"
*de.CyanBalance -1/ -1: ""
*es.CyanBalance -1/ -1: ""
*fr.CyanBalance -1/ -1: ""
*it.CyanBalance -1/ -1: ""
*ja.CyanBalance -1/ -1: ""
*pt.CyanBalance -1/ -1: ""
*zh_CN.CyanBalance -1/ -1: ""
*zh_TW.CyanBalance -1/ -1: ""
*ko.CyanBalance -1/ -1: ""
*CyanBalance 0/ 0: "<< /DeviceRenderingInfo << /ColorBalanceCyan 0 >> >> setpagedevice"
*de.CyanBalance 0/ 0: ""
*es.CyanBalance 0/ 0: ""
*fr.CyanBalance 0/ 0: ""
*it.CyanBalance 0/ 0: ""
*ja.CyanBalance 0/ 0: ""
*pt.CyanBalance 0/ 0: ""
*zh_CN.CyanBalance 0/ 0: ""
*zh_TW.CyanBalance 0/ 0: ""
*ko.CyanBalance 0/ 0: ""
*CyanBalance +1/ +1: "<< /DeviceRenderingInfo << /ColorBalanceCyan 1 >> >> setpagedevice"
*de.CyanBalance +1/ +1: ""
*es.CyanBalance +1/ +1: ""
*fr.CyanBalance +1/ +1: ""
*it.CyanBalance +1/ +1: ""
*ja.CyanBalance +1/ +1: ""
*pt.CyanBalance +1/ +1: ""
*zh_CN.CyanBalance +1/ +1: ""
*zh_TW.CyanBalance +1/ +1: ""
*ko.CyanBalance +1/ +1: ""
*CyanBalance +2/ +2: "<< /DeviceRenderingInfo << /ColorBalanceCyan 2 >> >> setpagedevice"
*de.CyanBalance +2/ +2: ""
*es.CyanBalance +2/ +2: ""
*fr.CyanBalance +2/ +2: ""
*it.CyanBalance +2/ +2: ""
*ja.CyanBalance +2/ +2: ""
*pt.CyanBalance +2/ +2: ""
*zh_CN.CyanBalance +2/ +2: ""
*zh_TW.CyanBalance +2/ +2: ""
*ko.CyanBalance +2/ +2: ""
*CyanBalance +3/ +3: "<< /DeviceRenderingInfo << /ColorBalanceCyan 3 >> >> setpagedevice"
*de.CyanBalance +3/ +3: ""
*es.CyanBalance +3/ +3: ""
*fr.CyanBalance +3/ +3: ""
*it.CyanBalance +3/ +3: ""
*ja.CyanBalance +3/ +3: ""
*pt.CyanBalance +3/ +3: ""
*zh_CN.CyanBalance +3/ +3: ""
*zh_TW.CyanBalance +3/ +3: ""
*ko.CyanBalance +3/ +3: ""
*CyanBalance +4/ +4: "<< /DeviceRenderingInfo << /ColorBalanceCyan 4 >> >> setpagedevice"
*de.CyanBalance +4/ +4: ""
*es.CyanBalance +4/ +4: ""
*fr.CyanBalance +4/ +4: ""
*it.CyanBalance +4/ +4: ""
*ja.CyanBalance +4/ +4: ""
*pt.CyanBalance +4/ +4: ""
*zh_CN.CyanBalance +4/ +4: ""
*zh_TW.CyanBalance +4/ +4: ""
*ko.CyanBalance +4/ +4: ""
*CyanBalance +5/ +5: "<< /DeviceRenderingInfo << /ColorBalanceCyan 5 >> >> setpagedevice"
*de.CyanBalance +5/ +5: ""
*es.CyanBalance +5/ +5: ""
*fr.CyanBalance +5/ +5: ""
*it.CyanBalance +5/ +5: ""
*ja.CyanBalance +5/ +5: ""
*pt.CyanBalance +5/ +5: ""
*zh_CN.CyanBalance +5/ +5: ""
*zh_TW.CyanBalance +5/ +5: ""
*ko.CyanBalance +5/ +5: ""
*?CyanBalance: "
gsave
currentpagedevice /DeviceRenderingInfo get /ColorBalanceCyan get = flush
grestore"
*End
*CloseUI: *CyanBalance
*%*****************************************************************************
*% Color Balance - Magenta
*%*****************************************************************************
*OpenUI *MagentaBalance/Magenta Balance: PickOne
*de.Translation MagentaBalance/Farbausgleich magenta: ""
*es.Translation MagentaBalance/Mezcla de magenta: ""
*fr.Translation MagentaBalance/Equilibre magenta: ""
*it.Translation MagentaBalance/Bilanciamento Magenta: ""
*ja.Translation MagentaBalance/マゼンタ バランス: ""
*pt.Translation MagentaBalance/EquilÌbrio de magenta: ""
*zh_CN.Translation MagentaBalance/品红色平衡: ""
*zh_TW.Translation MagentaBalance/洋紅色平衡: ""
*ko.Translation MagentaBalance/적색 발란스: ""
*OrderDependency: 72 AnySetup *MagentaBalance
*DefaultMagentaBalance: PrinterS
*MagentaBalance PrinterS/Printer Setting: ""
*de.MagentaBalance PrinterS/Druckereinstellung: ""
*es.MagentaBalance PrinterS/Valor de la impresora: ""
*fr.MagentaBalance PrinterS/Paramètres de l'imprimante: ""
*it.MagentaBalance PrinterS/Impostazione stampante: ""
*ja.MagentaBalance PrinterS/プリンタ設定: ""
*pt.MagentaBalance PrinterS/Padrao da Impressora: ""
*zh_CN.MagentaBalance PrinterS/打印机设置: ""
*zh_TW.MagentaBalance PrinterS/印表機設置: ""
*ko.MagentaBalance PrinterS/프린터 설정 : ""
*MagentaBalance -5/ -5: "<< /DeviceRenderingInfo << /ColorBalanceMagenta -5 >> >> setpagedevice"
*de.MagentaBalance -5/ -5: ""
*es.MagentaBalance -5/ -5: ""
*fr.MagentaBalance -5/ -5: ""
*it.MagentaBalance -5/ -5: ""
*ja.MagentaBalance -5/ -5: ""
*pt.MagentaBalance -5/ -5: ""
*zh_CN.MagentaBalance -5/ -5: ""
*zh_TW.MagentaBalance -5/ -5: ""
*ko.MagentaBalance -5/ -5: ""
*MagentaBalance -4/ -4: "<< /DeviceRenderingInfo << /ColorBalanceMagenta -4 >> >> setpagedevice"
*de.MagentaBalance -4/ -4: ""
*es.MagentaBalance -4/ -4: ""
*fr.MagentaBalance -4/ -4: ""
*it.MagentaBalance -4/ -4: ""
*ja.MagentaBalance -4/ -4: ""
*pt.MagentaBalance -4/ -4: ""
*zh_CN.MagentaBalance -4/ -4: ""
*zh_TW.MagentaBalance -4/ -4: ""
*ko.MagentaBalance -4/ -4: ""
*MagentaBalance -3/ -3: "<< /DeviceRenderingInfo << /ColorBalanceMagenta -3 >> >> setpagedevice"
*de.MagentaBalance -3/ -3: ""
*es.MagentaBalance -3/ -3: ""
*fr.MagentaBalance -3/ -3: ""
*it.MagentaBalance -3/ -3: ""
*ja.MagentaBalance -3/ -3: ""
*pt.MagentaBalance -3/ -3: ""
*zh_CN.MagentaBalance -3/ -3: ""
*zh_TW.MagentaBalance -3/ -3: ""
*ko.MagentaBalance -3/ -3: ""
*MagentaBalance -2/ -2: "<< /DeviceRenderingInfo << /ColorBalanceMagenta -2 >> >> setpagedevice"
*de.MagentaBalance -2/ -2: ""
*es.MagentaBalance -2/ -2: ""
*fr.MagentaBalance -2/ -2: ""
*it.MagentaBalance -2/ -2: ""
*ja.MagentaBalance -2/ -2: ""
*pt.MagentaBalance -2/ -2: ""
*zh_CN.MagentaBalance -2/ -2: ""
*zh_TW.MagentaBalance -2/ -2: ""
*ko.MagentaBalance -2/ -2: ""
*MagentaBalance -1/ -1: "<< /DeviceRenderingInfo << /ColorBalanceMagenta -1 >> >> setpagedevice"
*de.MagentaBalance -1/ -1: ""
*es.MagentaBalance -1/ -1: ""
*fr.MagentaBalance -1/ -1: ""
*it.MagentaBalance -1/ -1: ""
*ja.MagentaBalance -1/ -1: ""
*pt.MagentaBalance -1/ -1: ""
*zh_CN.MagentaBalance -1/ -1: ""
*zh_TW.MagentaBalance -1/ -1: ""
*ko.MagentaBalance -1/ -1: ""
*MagentaBalance 0/ 0: "<< /DeviceRenderingInfo << /ColorBalanceMagenta 0 >> >> setpagedevice"
*de.MagentaBalance 0/ 0: ""
*es.MagentaBalance 0/ 0: ""
*fr.MagentaBalance 0/ 0: ""
*it.MagentaBalance 0/ 0: ""
*ja.MagentaBalance 0/ 0: ""
*pt.MagentaBalance 0/ 0: ""
*zh_CN.MagentaBalance 0/ 0: ""
*zh_TW.MagentaBalance 0/ 0: ""
*ko.MagentaBalance 0/ 0: ""
*MagentaBalance +1/ +1: "<< /DeviceRenderingInfo << /ColorBalanceMagenta 1 >> >> setpagedevice"
*de.MagentaBalance +1/ +1: ""
*es.MagentaBalance +1/ +1: ""
*fr.MagentaBalance +1/ +1: ""
*it.MagentaBalance +1/ +1: ""
*ja.MagentaBalance +1/ +1: ""
*pt.MagentaBalance +1/ +1: ""
*zh_CN.MagentaBalance +1/ +1: ""
*zh_TW.MagentaBalance +1/ +1: ""
*ko.MagentaBalance +1/ +1: ""
*MagentaBalance +2/ +2: "<< /DeviceRenderingInfo << /ColorBalanceMagenta 2 >> >> setpagedevice"
*de.MagentaBalance +2/ +2: ""
*es.MagentaBalance +2/ +2: ""
*fr.MagentaBalance +2/ +2: ""
*it.MagentaBalance +2/ +2: ""
*ja.MagentaBalance +2/ +2: ""
*pt.MagentaBalance +2/ +2: ""
*zh_CN.MagentaBalance +2/ +2: ""
*zh_TW.MagentaBalance +2/ +2: ""
*ko.MagentaBalance +2/ +2: ""
*MagentaBalance +3/ +3: "<< /DeviceRenderingInfo << /ColorBalanceMagenta 3 >> >> setpagedevice"
*de.MagentaBalance +3/ +3: ""
*es.MagentaBalance +3/ +3: ""
*fr.MagentaBalance +3/ +3: ""
*it.MagentaBalance +3/ +3: ""
*ja.MagentaBalance +3/ +3: ""
*pt.MagentaBalance +3/ +3: ""
*zh_CN.MagentaBalance +3/ +3: ""
*zh_TW.MagentaBalance +3/ +3: ""
*ko.MagentaBalance +3/ +3: ""
*MagentaBalance +4/ +4: "<< /DeviceRenderingInfo << /ColorBalanceMagenta 4 >> >> setpagedevice"
*de.MagentaBalance +4/ +4: ""
*es.MagentaBalance +4/ +4: ""
*fr.MagentaBalance +4/ +4: ""
*it.MagentaBalance +4/ +4: ""
*ja.MagentaBalance +4/ +4: ""
*pt.MagentaBalance +4/ +4: ""
*zh_CN.MagentaBalance +4/ +4: ""
*zh_TW.MagentaBalance +4/ +4: ""
*ko.MagentaBalance +4/ +4: ""
*MagentaBalance +5/ +5: "<< /DeviceRenderingInfo << /ColorBalanceMagenta 5 >> >> setpagedevice"
*de.MagentaBalance +5/ +5: ""
*es.MagentaBalance +5/ +5: ""
*fr.MagentaBalance +5/ +5: ""
*it.MagentaBalance +5/ +5: ""
*ja.MagentaBalance +5/ +5: ""
*pt.MagentaBalance +5/ +5: ""
*zh_CN.MagentaBalance +5/ +5: ""
*zh_TW.MagentaBalance +5/ +5: ""
*ko.MagentaBalance +5/ +5: ""
*?MagentaBalance: "
gsave
currentpagedevice /DeviceRenderingInfo get /ColorBalanceMagenta get = flush
grestore"
*End
*CloseUI: *MagentaBalance
*%*****************************************************************************
*% Color Balance - Yellow
*%*****************************************************************************
*OpenUI *YellowBalance/Yellow Balance: PickOne
*de.Translation YellowBalance/Farbausgleich gelb: ""
*es.Translation YellowBalance/Mezcla de amarillo: ""
*fr.Translation YellowBalance/Equilibre jaune: ""
*it.Translation YellowBalance/Bilanciamento Giallo: ""
*ja.Translation YellowBalance/イエロー バランス: ""
*pt.Translation YellowBalance/EquilÌbrio de amarelo: ""
*zh_CN.Translation YellowBalance/黄色平衡: ""
*zh_TW.Translation YellowBalance/黃色平衡: ""
*ko.Translation YellowBalance/황색 발란스: ""
*OrderDependency: 73 AnySetup *YellowBalance
*DefaultYellowBalance: PrinterS
*YellowBalance PrinterS/Printer Setting: ""
*de.YellowBalance PrinterS/Druckereinstellung: ""
*es.YellowBalance PrinterS/Valor de la impresora: ""
*fr.YellowBalance PrinterS/Paramètres de l'imprimante: ""
*it.YellowBalance PrinterS/Impostazione stampante: ""
*ja.YellowBalance PrinterS/プリンタ設定: ""
*pt.YellowBalance PrinterS/Padrao da Impressora: ""
*zh_CN.YellowBalance PrinterS/打印机设置: ""
*zh_TW.YellowBalance PrinterS/印表機設置: ""
*ko.YellowBalance PrinterS/프린터 설정 : ""
*YellowBalance -5/ -5: "<< /DeviceRenderingInfo << /ColorBalanceYellow -5 >> >> setpagedevice"
*de.YellowBalance -5/ -5: ""
*es.YellowBalance -5/ -5: ""
*fr.YellowBalance -5/ -5: ""
*it.YellowBalance -5/ -5: ""
*ja.YellowBalance -5/ -5: ""
*pt.YellowBalance -5/ -5: ""
*zh_CN.YellowBalance -5/ -5: ""
*zh_TW.YellowBalance -5/ -5: ""
*ko.YellowBalance -5/ -5: ""
*YellowBalance -4/ -4: "<< /DeviceRenderingInfo << /ColorBalanceYellow -4 >> >> setpagedevice"
*de.YellowBalance -4/ -4: ""
*es.YellowBalance -4/ -4: ""
*fr.YellowBalance -4/ -4: ""
*it.YellowBalance -4/ -4: ""
*ja.YellowBalance -4/ -4: ""
*pt.YellowBalance -4/ -4: ""
*zh_CN.YellowBalance -4/ -4: ""
*zh_TW.YellowBalance -4/ -4: ""
*ko.YellowBalance -4/ -4: ""
*YellowBalance -3/ -3: "<< /DeviceRenderingInfo << /ColorBalanceYellow -3 >> >> setpagedevice"
*de.YellowBalance -3/ -3: ""
*es.YellowBalance -3/ -3: ""
*fr.YellowBalance -3/ -3: ""
*it.YellowBalance -3/ -3: ""
*ja.YellowBalance -3/ -3: ""
*pt.YellowBalance -3/ -3: ""
*zh_CN.YellowBalance -3/ -3: ""
*zh_TW.YellowBalance -3/ -3: ""
*ko.YellowBalance -3/ -3: ""
*YellowBalance -2/ -2: "<< /DeviceRenderingInfo << /ColorBalanceYellow -2 >> >> setpagedevice"
*de.YellowBalance -2/ -2: ""
*es.YellowBalance -2/ -2: ""
*fr.YellowBalance -2/ -2: ""
*it.YellowBalance -2/ -2: ""
*ja.YellowBalance -2/ -2: ""
*pt.YellowBalance -2/ -2: ""
*zh_CN.YellowBalance -2/ -2: ""
*zh_TW.YellowBalance -2/ -2: ""
*ko.YellowBalance -2/ -2: ""
*YellowBalance -1/ -1: "<< /DeviceRenderingInfo << /ColorBalanceYellow -1 >> >> setpagedevice"
*de.YellowBalance -1/ -1: ""
*es.YellowBalance -1/ -1: ""
*fr.YellowBalance -1/ -1: ""
*it.YellowBalance -1/ -1: ""
*ja.YellowBalance -1/ -1: ""
*pt.YellowBalance -1/ -1: ""
*zh_CN.YellowBalance -1/ -1: ""
*zh_TW.YellowBalance -1/ -1: ""
*ko.YellowBalance -1/ -1: ""
*YellowBalance 0/ 0: "<< /DeviceRenderingInfo << /ColorBalanceYellow 0 >> >> setpagedevice"
*de.YellowBalance 0/ 0: ""
*es.YellowBalance 0/ 0: ""
*fr.YellowBalance 0/ 0: ""
*it.YellowBalance 0/ 0: ""
*ja.YellowBalance 0/ 0: ""
*pt.YellowBalance 0/ 0: ""
*zh_CN.YellowBalance 0/ 0: ""
*zh_TW.YellowBalance 0/ 0: ""
*ko.YellowBalance 0/ 0: ""
*YellowBalance +1/ +1: "<< /DeviceRenderingInfo << /ColorBalanceYellow 1 >> >> setpagedevice"
*de.YellowBalance +1/ +1: ""
*es.YellowBalance +1/ +1: ""
*fr.YellowBalance +1/ +1: ""
*it.YellowBalance +1/ +1: ""
*ja.YellowBalance +1/ +1: ""
*pt.YellowBalance +1/ +1: ""
*zh_CN.YellowBalance +1/ +1: ""
*zh_TW.YellowBalance +1/ +1: ""
*ko.YellowBalance +1/ +1: ""
*YellowBalance +2/ +2: "<< /DeviceRenderingInfo << /ColorBalanceYellow 2 >> >> setpagedevice"
*de.YellowBalance +2/ +2: ""
*es.YellowBalance +2/ +2: ""
*fr.YellowBalance +2/ +2: ""
*it.YellowBalance +2/ +2: ""
*ja.YellowBalance +2/ +2: ""
*pt.YellowBalance +2/ +2: ""
*zh_CN.YellowBalance +2/ +2: ""
*zh_TW.YellowBalance +2/ +2: ""
*ko.YellowBalance +2/ +2: ""
*YellowBalance +3/ +3: "<< /DeviceRenderingInfo << /ColorBalanceYellow 3 >> >> setpagedevice"
*de.YellowBalance +3/ +3: ""
*es.YellowBalance +3/ +3: ""
*fr.YellowBalance +3/ +3: ""
*it.YellowBalance +3/ +3: ""
*ja.YellowBalance +3/ +3: ""
*pt.YellowBalance +3/ +3: ""
*zh_CN.YellowBalance +3/ +3: ""
*zh_TW.YellowBalance +3/ +3: ""
*ko.YellowBalance +3/ +3: ""
*YellowBalance +4/ +4: "<< /DeviceRenderingInfo << /ColorBalanceYellow 4 >> >> setpagedevice"
*de.YellowBalance +4/ +4: ""
*es.YellowBalance +4/ +4: ""
*fr.YellowBalance +4/ +4: ""
*it.YellowBalance +4/ +4: ""
*ja.YellowBalance +4/ +4: ""
*pt.YellowBalance +4/ +4: ""
*zh_CN.YellowBalance +4/ +4: ""
*zh_TW.YellowBalance +4/ +4: ""
*ko.YellowBalance +4/ +4: ""
*YellowBalance +5/ +5: "<< /DeviceRenderingInfo << /ColorBalanceYellow 5 >> >> setpagedevice"
*de.YellowBalance +5/ +5: ""
*es.YellowBalance +5/ +5: ""
*fr.YellowBalance +5/ +5: ""
*it.YellowBalance +5/ +5: ""
*ja.YellowBalance +5/ +5: ""
*pt.YellowBalance +5/ +5: ""
*zh_CN.YellowBalance +5/ +5: ""
*zh_TW.YellowBalance +5/ +5: ""
*ko.YellowBalance +5/ +5: ""
*?YellowBalance: "
gsave
currentpagedevice /DeviceRenderingInfo get /ColorBalanceYellow get = flush
grestore"
*End
*CloseUI: *YellowBalance
*%*****************************************************************************
*% Color Balance - Black
*%*****************************************************************************
*OpenUI *BlackBalance/Black Balance: PickOne
*de.Translation BlackBalance/Farbausgleich schwarz: ""
*es.Translation BlackBalance/Mezcla de negro: ""
*fr.Translation BlackBalance/Equilibre noir: ""
*it.Translation BlackBalance/Bilanciamento Nero: ""
*ja.Translation BlackBalance/ブラック バランス: ""
*pt.Translation BlackBalance/EquilÌbrio de preto: ""
*zh_CN.Translation BlackBalance/黑色平衡: ""
*zh_TW.Translation BlackBalance/黑色平衡: ""
*ko.Translation BlackBalance/흑색 발란스: ""
*OrderDependency: 74 AnySetup *BlackBalance
*DefaultBlackBalance: PrinterS
*BlackBalance PrinterS/Printer Setting: ""
*de.BlackBalance PrinterS/Druckereinstellung: ""
*es.BlackBalance PrinterS/Valor de la impresora: ""
*fr.BlackBalance PrinterS/Paramètres de l'imprimante: ""
*it.BlackBalance PrinterS/Impostazione stampante: ""
*ja.BlackBalance PrinterS/プリンタ設定: ""
*pt.BlackBalance PrinterS/Padrao da Impressora: ""
*zh_CN.BlackBalance PrinterS/打印机设置: ""
*zh_TW.BlackBalance PrinterS/印表機設置: ""
*ko.BlackBalance PrinterS/프린터 설정 : ""
*BlackBalance -5/ -5: "<< /DeviceRenderingInfo << /ColorBalanceBlack -5 >> >> setpagedevice"
*de.BlackBalance -5/ -5: ""
*es.BlackBalance -5/ -5: ""
*fr.BlackBalance -5/ -5: ""
*it.BlackBalance -5/ -5: ""
*ja.BlackBalance -5/ -5: ""
*pt.BlackBalance -5/ -5: ""
*zh_CN.BlackBalance -5/ -5: ""
*zh_TW.BlackBalance -5/ -5: ""
*ko.BlackBalance -5/ -5: ""
*BlackBalance -4/ -4: "<< /DeviceRenderingInfo << /ColorBalanceBlack -4 >> >> setpagedevice"
*de.BlackBalance -4/ -4: ""
*es.BlackBalance -4/ -4: ""
*fr.BlackBalance -4/ -4: ""
*it.BlackBalance -4/ -4: ""
*ja.BlackBalance -4/ -4: ""
*pt.BlackBalance -4/ -4: ""
*zh_CN.BlackBalance -4/ -4: ""
*zh_TW.BlackBalance -4/ -4: ""
*ko.BlackBalance -4/ -4: ""
*BlackBalance -3/ -3: "<< /DeviceRenderingInfo << /ColorBalanceBlack -3 >> >> setpagedevice"
*de.BlackBalance -3/ -3: ""
*es.BlackBalance -3/ -3: ""
*fr.BlackBalance -3/ -3: ""
*it.BlackBalance -3/ -3: ""
*ja.BlackBalance -3/ -3: ""
*pt.BlackBalance -3/ -3: ""
*zh_CN.BlackBalance -3/ -3: ""
*zh_TW.BlackBalance -3/ -3: ""
*ko.BlackBalance -3/ -3: ""
*BlackBalance -2/ -2: "<< /DeviceRenderingInfo << /ColorBalanceBlack -2 >> >> setpagedevice"
*de.BlackBalance -2/ -2: ""
*es.BlackBalance -2/ -2: ""
*fr.BlackBalance -2/ -2: ""
*it.BlackBalance -2/ -2: ""
*ja.BlackBalance -2/ -2: ""
*pt.BlackBalance -2/ -2: ""
*zh_CN.BlackBalance -2/ -2: ""
*zh_TW.BlackBalance -2/ -2: ""
*ko.BlackBalance -2/ -2: ""
*BlackBalance -1/ -1: "<< /DeviceRenderingInfo << /ColorBalanceBlack -1 >> >> setpagedevice"
*de.BlackBalance -1/ -1: ""
*es.BlackBalance -1/ -1: ""
*fr.BlackBalance -1/ -1: ""
*it.BlackBalance -1/ -1: ""
*ja.BlackBalance -1/ -1: ""
*pt.BlackBalance -1/ -1: ""
*zh_CN.BlackBalance -1/ -1: ""
*zh_TW.BlackBalance -1/ -1: ""
*ko.BlackBalance -1/ -1: ""
*BlackBalance 0/ 0: "<< /DeviceRenderingInfo << /ColorBalanceBlack 0 >> >> setpagedevice"
*de.BlackBalance 0/ 0: ""
*es.BlackBalance 0/ 0: ""
*fr.BlackBalance 0/ 0: ""
*it.BlackBalance 0/ 0: ""
*ja.BlackBalance 0/ 0: ""
*pt.BlackBalance 0/ 0: ""
*zh_CN.BlackBalance 0/ 0: ""
*zh_TW.BlackBalance 0/ 0: ""
*ko.BlackBalance 0/ 0: ""
*BlackBalance +1/ +1: "<< /DeviceRenderingInfo << /ColorBalanceBlack 1 >> >> setpagedevice"
*de.BlackBalance +1/ +1: ""
*es.BlackBalance +1/ +1: ""
*fr.BlackBalance +1/ +1: ""
*it.BlackBalance +1/ +1: ""
*ja.BlackBalance +1/ +1: ""
*pt.BlackBalance +1/ +1: ""
*zh_CN.BlackBalance +1/ +1: ""
*zh_TW.BlackBalance +1/ +1: ""
*ko.BlackBalance +1/ +1: ""
*BlackBalance +2/ +2: "<< /DeviceRenderingInfo << /ColorBalanceBlack 2 >> >> setpagedevice"
*de.BlackBalance +2/ +2: ""
*es.BlackBalance +2/ +2: ""
*fr.BlackBalance +2/ +2: ""
*it.BlackBalance +2/ +2: ""
*ja.BlackBalance +2/ +2: ""
*pt.BlackBalance +2/ +2: ""
*zh_CN.BlackBalance +2/ +2: ""
*zh_TW.BlackBalance +2/ +2: ""
*ko.BlackBalance +2/ +2: ""
*BlackBalance +3/ +3: "<< /DeviceRenderingInfo << /ColorBalanceBlack 3 >> >> setpagedevice"
*de.BlackBalance +3/ +3: ""
*es.BlackBalance +3/ +3: ""
*fr.BlackBalance +3/ +3: ""
*it.BlackBalance +3/ +3: ""
*ja.BlackBalance +3/ +3: ""
*pt.BlackBalance +3/ +3: ""
*zh_CN.BlackBalance +3/ +3: ""
*zh_TW.BlackBalance +3/ +3: ""
*ko.BlackBalance +3/ +3: ""
*BlackBalance +4/ +4: "<< /DeviceRenderingInfo << /ColorBalanceBlack 4 >> >> setpagedevice"
*de.BlackBalance +4/ +4: ""
*es.BlackBalance +4/ +4: ""
*fr.BlackBalance +4/ +4: ""
*it.BlackBalance +4/ +4: ""
*ja.BlackBalance +4/ +4: ""
*pt.BlackBalance +4/ +4: ""
*zh_CN.BlackBalance +4/ +4: ""
*zh_TW.BlackBalance +4/ +4: ""
*ko.BlackBalance +4/ +4: ""
*BlackBalance +5/ +5: "<< /DeviceRenderingInfo << /ColorBalanceBlack 5 >> >> setpagedevice"
*de.BlackBalance +5/ +5: ""
*es.BlackBalance +5/ +5: ""
*fr.BlackBalance +5/ +5: ""
*it.BlackBalance +5/ +5: ""
*ja.BlackBalance +5/ +5: ""
*pt.BlackBalance +5/ +5: ""
*zh_CN.BlackBalance +5/ +5: ""
*zh_TW.BlackBalance +5/ +5: ""
*ko.BlackBalance +5/ +5: ""
*?BlackBalance: "
gsave
currentpagedevice /DeviceRenderingInfo get /ColorBalanceBlack get = flush
grestore"
*End
*CloseUI: *BlackBalance
*CloseGroup: ColorBalance
*%*****************************************************************************
*% Manual Color Group
*%*****************************************************************************
*OpenGroup: ManualColor/Manual Color
*de.Translation ManualColor/Manuelle Farbe: "<< /DeviceRenderingInfo << /ColorBalanceBlack 5 >> >> setpagedevice"
*es.Translation ManualColor/Color manual: "<< /DeviceRenderingInfo << /ColorBalanceBlack 5 >> >> setpagedevice"
*fr.Translation ManualColor/Couleur manuelle: "<< /DeviceRenderingInfo << /ColorBalanceBlack 5 >> >> setpagedevice"
*it.Translation ManualColor/Colore manuale: "<< /DeviceRenderingInfo << /ColorBalanceBlack 5 >> >> setpagedevice"
*ja.Translation ManualColor/手動カラー: "<< /DeviceRenderingInfo << /ColorBalanceBlack 5 >> >> setpagedevice"
*pt.Translation ManualColor/Cor manual: "<< /DeviceRenderingInfo << /ColorBalanceBlack 5 >> >> setpagedevice"
*zh_CN.Translation ManualColor/手动颜色: "<< /DeviceRenderingInfo << /ColorBalanceBlack 5 >> >> setpagedevice"
*zh_TW.Translation ManualColor/手動色彩: "<< /DeviceRenderingInfo << /ColorBalanceBlack 5 >> >> setpagedevice"
*ko.Translation ManualColor/수동 색상: "<< /DeviceRenderingInfo << /ColorBalanceBlack 5 >> >> setpagedevice"
*%*****************************************************************************
*% Manual - RGB Image
*%*****************************************************************************
*OpenUI *ManualRGBImage/Manual RGB Image: PickOne
*de.Translation ManualRGBImage/RGB Bild manuell: ""
*es.Translation ManualRGBImage/Imagen RGB manual: ""
*fr.Translation ManualRGBImage/Image RVB manuel: ""
*it.Translation ManualRGBImage/Immagine RGB manuale: ""
*ja.Translation ManualRGBImage/手動 RGB 画像: ""
*pt.Translation ManualRGBImage/Manual Imagem RGB: ""
*zh_CN.Translation ManualRGBImage/手动 RGB 图象 : ""
*zh_TW.Translation ManualRGBImage/手動 RGB 影像: ""
*ko.Translation ManualRGBImage/수동 RGB 이미지: ""
*OrderDependency: 75 AnySetup *ManualRGBImage
*DefaultManualRGBImage: PrinterS
*ManualRGBImage PrinterS/Printer Setting: ""
*de.ManualRGBImage PrinterS/Druckereinstellung: ""
*es.ManualRGBImage PrinterS/Valor de la impresora: ""
*fr.ManualRGBImage PrinterS/Paramètres de l'imprimante: ""
*it.ManualRGBImage PrinterS/Impostazione stampante: ""
*ja.ManualRGBImage PrinterS/プリンタ設定: ""
*pt.ManualRGBImage PrinterS/Padrao da Impressora: ""
*zh_CN.ManualRGBImage PrinterS/打印机设置: ""
*zh_TW.ManualRGBImage PrinterS/印表機設置: ""
*ko.ManualRGBImage PrinterS/프린터 설정 : ""
*ManualRGBImage Vivid/Vivid: "<< /DeviceRenderingInfo << /ManualColorRGBImage /Vivid >> >> setpagedevice"
*de.ManualRGBImage Vivid/Leuchtend: ""
*es.ManualRGBImage Vivid/Intenso: ""
*fr.ManualRGBImage Vivid/Vives: ""
*it.ManualRGBImage Vivid/Vivace: ""
*ja.ManualRGBImage Vivid/鮮明: ""
*pt.ManualRGBImage Vivid/Cores vivas: ""
*zh_CN.ManualRGBImage Vivid/生动: ""
*zh_TW.ManualRGBImage Vivid/鮮明色彩: ""
*ko.ManualRGBImage Vivid/Vivid: ""
*ManualRGBImage sRGBDisplay/sRGB Display: "<< /DeviceRenderingInfo << /ManualColorRGBImage /sRGBDisplay >> >> setpagedevice"
*de.ManualRGBImage sRGBDisplay/sRGB Bildschirm: ""
*es.ManualRGBImage sRGBDisplay/Pantalla sRGB: ""
*fr.ManualRGBImage sRGBDisplay/sRVB Ecran: ""
*it.ManualRGBImage sRGBDisplay/Schermo sRGB: ""
*ja.ManualRGBImage sRGBDisplay/sRGB 表示: ""
*pt.ManualRGBImage sRGBDisplay/Exibir sRGB: ""
*zh_CN.ManualRGBImage sRGBDisplay/sRGB 显示: ""
*zh_TW.ManualRGBImage sRGBDisplay/sRGB 顯示: ""
*ko.ManualRGBImage sRGBDisplay/sRGB 화면: ""
*ManualRGBImage sRGBVivid/sRGB Vivid: "<< /DeviceRenderingInfo << /ManualColorRGBImage /sRGBGraphics >> >> setpagedevice"
*de.ManualRGBImage sRGBVivid/sRGB Leuchtend: ""
*es.ManualRGBImage sRGBVivid/Intenso sRGB: ""
*fr.ManualRGBImage sRGBVivid/sRVB Vives: ""
*it.ManualRGBImage sRGBVivid/Vivace sRGB: ""
*ja.ManualRGBImage sRGBVivid/sRGB 鮮明: ""
*pt.ManualRGBImage sRGBVivid/Nítido sRGB: ""
*zh_CN.ManualRGBImage sRGBVivid/sRGB 逼真: ""
*zh_TW.ManualRGBImage sRGBVivid/sRGB 鮮明色彩: ""
*ko.ManualRGBImage sRGBVivid/sRGB Vivid: ""
*ManualRGBImage DisplayRealBlack/Display-True Black: "<< /DeviceRenderingInfo << /ManualColorRGBImage /DisplayRealBlack >> >> setpagedevice"
*de.ManualRGBImage DisplayRealBlack/Anzeige - Echtes Schwarz: ""
*es.ManualRGBImage DisplayRealBlack/Pantalla - Negro real: ""
*fr.ManualRGBImage DisplayRealBlack/Affichage - vrai noir: ""
*it.ManualRGBImage DisplayRealBlack/Schermo - Nero effettivo: ""
*ja.ManualRGBImage DisplayRealBlack/画面 - 真ブラック: ""
*pt.ManualRGBImage DisplayRealBlack/Exibir - preto real: ""
*zh_CN.ManualRGBImage DisplayRealBlack/显示-纯黑色: ""
*zh_TW.ManualRGBImage DisplayRealBlack/顯示-純黑色: ""
*ko.ManualRGBImage DisplayRealBlack/디스플레이 - 순수한 검은색: ""
*ManualRGBImage Off/Off: "<< /DeviceRenderingInfo << /ManualColorRGBImage /Off >> >> setpagedevice"
*de.ManualRGBImage Off/Aus: ""
*es.ManualRGBImage Off/Desactivado: ""
*fr.ManualRGBImage Off/Hors Fonction: ""
*it.ManualRGBImage Off/Disabilitato: ""
*ja.ManualRGBImage Off/オフ: ""
*pt.ManualRGBImage Off/Desligado: ""
*zh_CN.ManualRGBImage Off/关: ""
*zh_TW.ManualRGBImage Off/關: ""
*ko.ManualRGBImage Off/꺼짐: ""
*?ManualRGBImage: "
gsave
5 dict
dup /Vivid (Vivid) put
dup /sRGBDisplay (sRGBDisplay) put
dup /sRGBGraphics (sRGBVivid) put
dup /DisplayRealBlack (DisplayRealBlack) put
dup /Off (Off) put
currentpagedevice /DeviceRenderingInfo get /ManualColorRGBImage get
{get} stopped {(PrinterS)} if
= flush
grestore"
*End
*CloseUI: *ManualRGBImage
*%*****************************************************************************
*% Manual - RGB Text
*%*****************************************************************************
*OpenUI *ManualRGBText/Manual RGB Text: PickOne
*de.Translation ManualRGBText/RGB Text manuell: ""
*es.Translation ManualRGBText/Texto RGB manual: ""
*fr.Translation ManualRGBText/Texte RVB manuel: ""
*it.Translation ManualRGBText/Testo RGB manuale: ""
*ja.Translation ManualRGBText/手動 RGB テキスト: ""
*pt.Translation ManualRGBText/Manual Texto RGB: ""
*zh_CN.Translation ManualRGBText/手动 RGB 文本: ""
*zh_TW.Translation ManualRGBText/手動 RGB 文字: ""
*ko.Translation ManualRGBText/수동 RGB 문자: ""
*OrderDependency: 76 AnySetup *ManualRGBText
*DefaultManualRGBText: PrinterS
*ManualRGBText PrinterS/Printer Setting: ""
*de.ManualRGBText PrinterS/Druckereinstellung: ""
*es.ManualRGBText PrinterS/Valor de la impresora: ""
*fr.ManualRGBText PrinterS/Paramètres de l'imprimante: ""
*it.ManualRGBText PrinterS/Impostazione stampante: ""
*ja.ManualRGBText PrinterS/プリンタ設定: ""
*pt.ManualRGBText PrinterS/Padrao da Impressora: ""
*zh_CN.ManualRGBText PrinterS/打印机设置: ""
*zh_TW.ManualRGBText PrinterS/印表機設置: ""
*ko.ManualRGBText PrinterS/프린터 설정 : ""
*ManualRGBText Vivid/Vivid: "<< /DeviceRenderingInfo << /ManualColorRGBText /Vivid >> >> setpagedevice"
*de.ManualRGBText Vivid/Leuchtend: ""
*es.ManualRGBText Vivid/Intenso: ""
*fr.ManualRGBText Vivid/Vives: ""
*it.ManualRGBText Vivid/Vivace: ""
*ja.ManualRGBText Vivid/鮮明: ""
*pt.ManualRGBText Vivid/Cores vivas: ""
*zh_CN.ManualRGBText Vivid/生动: ""
*zh_TW.ManualRGBText Vivid/鮮明色彩: ""
*ko.ManualRGBText Vivid/Vivid: ""
*ManualRGBText sRGBDisplay/sRGB Display: "<< /DeviceRenderingInfo << /ManualColorRGBText /sRGBDisplay >> >> setpagedevice"
*de.ManualRGBText sRGBDisplay/sRGB Bildschirm: ""
*es.ManualRGBText sRGBDisplay/Pantalla sRGB: ""
*fr.ManualRGBText sRGBDisplay/sRVB Ecran: ""
*it.ManualRGBText sRGBDisplay/Schermo sRGB: ""
*ja.ManualRGBText sRGBDisplay/sRGB 表示: ""
*pt.ManualRGBText sRGBDisplay/Exibir sRGB: ""
*zh_CN.ManualRGBText sRGBDisplay/sRGB 显示: ""
*zh_TW.ManualRGBText sRGBDisplay/sRGB 顯示: ""
*ko.ManualRGBText sRGBDisplay/sRGB 화면: ""
*ManualRGBText sRGBVivid/sRGB Vivid: "<< /DeviceRenderingInfo << /ManualColorRGBText /sRGBGraphics >> >> setpagedevice"
*de.ManualRGBText sRGBVivid/sRGB Leuchtend: ""
*es.ManualRGBText sRGBVivid/Intenso sRGB: ""
*fr.ManualRGBText sRGBVivid/sRVB Vives: ""
*it.ManualRGBText sRGBVivid/Vivace sRGB: ""
*ja.ManualRGBText sRGBVivid/sRGB 鮮明: ""
*pt.ManualRGBText sRGBVivid/Nítido sRGB: ""
*zh_CN.ManualRGBText sRGBVivid/sRGB 逼真: ""
*zh_TW.ManualRGBText sRGBVivid/sRGB 鮮明色彩: ""
*ko.ManualRGBText sRGBVivid/sRGB Vivid: ""
*ManualRGBText DisplayRealBlack/Display-True Black: "<< /DeviceRenderingInfo << /ManualColorRGBText /DisplayRealBlack >> >> setpagedevice"
*de.ManualRGBText DisplayRealBlack/Anzeige - Echtes Schwarz: ""
*es.ManualRGBText DisplayRealBlack/Pantalla - Negro real: ""
*fr.ManualRGBText DisplayRealBlack/Affichage - vrai noir: ""
*it.ManualRGBText DisplayRealBlack/Schermo - Nero effettivo: ""
*ja.ManualRGBText DisplayRealBlack/画面 - 真ブラック: ""
*pt.ManualRGBText DisplayRealBlack/Exibir - preto real: ""
*zh_CN.ManualRGBText DisplayRealBlack/显示-纯黑色: ""
*zh_TW.ManualRGBText DisplayRealBlack/顯示-純黑色: ""
*ko.ManualRGBText DisplayRealBlack/디스플레이 - 순수한 검은색: ""
*ManualRGBText Off/Off: "<< /DeviceRenderingInfo << /ManualColorRGBText /Off >> >> setpagedevice"
*de.ManualRGBText Off/Aus: ""
*es.ManualRGBText Off/Desactivado: ""
*fr.ManualRGBText Off/Hors Fonction: ""
*it.ManualRGBText Off/Disabilitato: ""
*ja.ManualRGBText Off/オフ: ""
*pt.ManualRGBText Off/Desligado: ""
*zh_CN.ManualRGBText Off/关: ""
*zh_TW.ManualRGBText Off/關: ""
*ko.ManualRGBText Off/꺼짐: ""
*?ManualRGBText: "
gsave
5 dict
dup /Vivid (Vivid) put
dup /sRGBDisplay (sRGBDisplay) put
dup /sRGBGraphics (sRGBVivid) put
dup /DisplayRealBlack (DisplayRealBlack) put
dup /Off (Off) put
currentpagedevice /DeviceRenderingInfo get /ManualColorRGBText get
{get} stopped {(PrinterS)} if
= flush
grestore"
*End
*CloseUI: *ManualRGBText
*%*****************************************************************************
*% Manual - RGB Graphics
*%*****************************************************************************
*OpenUI *ManualRGBGraphics/Manual RGB Graphics: PickOne
*de.Translation ManualRGBGraphics/RGB Grafiken manuell: ""
*es.Translation ManualRGBGraphics/Gráficos RGB manual: ""
*fr.Translation ManualRGBGraphics/Graphiques RVB manuel: ""
*it.Translation ManualRGBGraphics/Grafica RGB manuale: ""
*ja.Translation ManualRGBGraphics/手動 RGB グラフィックス: ""
*pt.Translation ManualRGBGraphics/Manual Graficos RGB: ""
*zh_CN.Translation ManualRGBGraphics/手动 RGB 图形: ""
*zh_TW.Translation ManualRGBGraphics/手動 RGB 圖形: ""
*ko.Translation ManualRGBGraphics/수동 RGB 그래픽: ""
*OrderDependency: 77 AnySetup *ManualRGBGraphics
*DefaultManualRGBGraphics: PrinterS
*ManualRGBGraphics PrinterS/Printer Setting: ""
*de.ManualRGBGraphics PrinterS/Druckereinstellung: ""
*es.ManualRGBGraphics PrinterS/Valor de la impresora: ""
*fr.ManualRGBGraphics PrinterS/Paramètres de l'imprimante: ""
*it.ManualRGBGraphics PrinterS/Impostazione stampante: ""
*ja.ManualRGBGraphics PrinterS/プリンタ設定: ""
*pt.ManualRGBGraphics PrinterS/Padrao da Impressora: ""
*zh_CN.ManualRGBGraphics PrinterS/打印机设置: ""
*zh_TW.ManualRGBGraphics PrinterS/印表機設置: ""
*ko.ManualRGBGraphics PrinterS/프린터 설정 : ""
*ManualRGBGraphics Vivid/Vivid: "<< /DeviceRenderingInfo << /ManualColorRGBGraphics /Vivid >> >> setpagedevice"
*de.ManualRGBGraphics Vivid/Leuchtend: ""
*es.ManualRGBGraphics Vivid/Intenso: ""
*fr.ManualRGBGraphics Vivid/Vives: ""
*it.ManualRGBGraphics Vivid/Vivace: ""
*ja.ManualRGBGraphics Vivid/鮮明: ""
*pt.ManualRGBGraphics Vivid/Cores vivas: ""
*zh_CN.ManualRGBGraphics Vivid/生动: ""
*zh_TW.ManualRGBGraphics Vivid/鮮明色彩: ""
*ko.ManualRGBGraphics Vivid/Vivid: ""
*ManualRGBGraphics sRGBDisplay/sRGB Display: "<< /DeviceRenderingInfo << /ManualColorRGBGraphics /sRGBDisplay >> >> setpagedevice"
*de.ManualRGBGraphics sRGBDisplay/sRGB Bildschirm: ""
*es.ManualRGBGraphics sRGBDisplay/Pantalla sRGB: ""
*fr.ManualRGBGraphics sRGBDisplay/sRVB Ecran: ""
*it.ManualRGBGraphics sRGBDisplay/Schermo sRGB: ""
*ja.ManualRGBGraphics sRGBDisplay/sRGB 表示: ""
*pt.ManualRGBGraphics sRGBDisplay/Exibir sRGB: ""
*zh_CN.ManualRGBGraphics sRGBDisplay/sRGB 显示: ""
*zh_TW.ManualRGBGraphics sRGBDisplay/sRGB 顯示: ""
*ko.ManualRGBGraphics sRGBDisplay/sRGB 화면: ""
*ManualRGBGraphics sRGBVivid/sRGB Vivid: "<< /DeviceRenderingInfo << /ManualColorRGBGraphics /sRGBGraphics >> >> setpagedevice"
*de.ManualRGBGraphics sRGBVivid/sRGB Leuchtend: ""
*es.ManualRGBGraphics sRGBVivid/Intenso sRGB: ""
*fr.ManualRGBGraphics sRGBVivid/sRVB Vives: ""
*it.ManualRGBGraphics sRGBVivid/Vivace sRGB: ""
*ja.ManualRGBGraphics sRGBVivid/sRGB 鮮明: ""
*pt.ManualRGBGraphics sRGBVivid/Nítido sRGB: ""
*zh_CN.ManualRGBGraphics sRGBVivid/sRGB 逼真: ""
*zh_TW.ManualRGBGraphics sRGBVivid/sRGB 鮮明色彩: ""
*ko.ManualRGBGraphics sRGBVivid/sRGB Vivid: ""
*ManualRGBGraphics DisplayRealBlack/Display-True Black: "<< /DeviceRenderingInfo << /ManualColorRGBGraphics /DisplayRealBlack >> >> setpagedevice"
*de.ManualRGBGraphics DisplayRealBlack/Anzeige - Echtes Schwarz: ""
*es.ManualRGBGraphics DisplayRealBlack/Pantalla - Negro real: ""
*fr.ManualRGBGraphics DisplayRealBlack/Affichage - vrai noir: ""
*it.ManualRGBGraphics DisplayRealBlack/Schermo - Nero effettivo: ""
*ja.ManualRGBGraphics DisplayRealBlack/画面 - 真ブラック: ""
*pt.ManualRGBGraphics DisplayRealBlack/Exibir - preto real: ""
*zh_CN.ManualRGBGraphics DisplayRealBlack/显示-纯黑色: ""
*zh_TW.ManualRGBGraphics DisplayRealBlack/顯示-純黑色: ""
*ko.ManualRGBGraphics DisplayRealBlack/디스플레이 - 순수한 검은색: ""
*ManualRGBGraphics Off/Off: "<< /DeviceRenderingInfo << /ManualColorRGBGraphics /Off >> >> setpagedevice"
*de.ManualRGBGraphics Off/Aus: ""
*es.ManualRGBGraphics Off/Desactivado: ""
*fr.ManualRGBGraphics Off/Hors Fonction: ""
*it.ManualRGBGraphics Off/Disabilitato: ""
*ja.ManualRGBGraphics Off/オフ: ""
*pt.ManualRGBGraphics Off/Desligado: ""
*zh_CN.ManualRGBGraphics Off/关: ""
*zh_TW.ManualRGBGraphics Off/關: ""
*ko.ManualRGBGraphics Off/꺼짐: ""
*?ManualRGBGraphics: "
gsave
5 dict
dup /Vivid (Vivid) put
dup /sRGBDisplay (sRGBDisplay) put
dup /sRGBGraphics (sRGBVivid) put
dup /DisplayRealBlack (DisplayRealBlack) put
dup /Off (Off) put
currentpagedevice /DeviceRenderingInfo get /ManualColorRGBGraphics get
{get} stopped {(PrinterS)} if
= flush
grestore"
*End
*CloseUI: *ManualRGBGraphics
*%*****************************************************************************
*% Manual - CMYK Image
*%*****************************************************************************
*OpenUI *ManualCMYK/Manual CMYK: PickOne
*de.Translation ManualCMYK/Manuell CMYK: ""
*es.Translation ManualCMYK/CMYK manual: ""
*fr.Translation ManualCMYK/CMJN manuelle: ""
*it.Translation ManualCMYK/CMYK manuale: ""
*ja.Translation ManualCMYK/手動 CMYK: ""
*pt.Translation ManualCMYK/CMYK manual: ""
*zh_CN.Translation ManualCMYK/手动 CMYK: ""
*zh_TW.Translation ManualCMYK/手動 CMYK: ""
*ko.Translation ManualCMYK/수동 CMYK: ""
*OrderDependency: 78 AnySetup *ManualCMYK
*DefaultManualCMYK: PrinterS
*ManualCMYK PrinterS/Printer Setting: ""
*de.ManualCMYK PrinterS/Druckereinstellung: ""
*es.ManualCMYK PrinterS/Valor de la impresora: ""
*fr.ManualCMYK PrinterS/Paramètres de l'imprimante: ""
*it.ManualCMYK PrinterS/Impostazione stampante: ""
*ja.ManualCMYK PrinterS/プリンタ設定: ""
*pt.ManualCMYK PrinterS/Padrao da Impressora: ""
*zh_CN.ManualCMYK PrinterS/打印机设置: ""
*zh_TW.ManualCMYK PrinterS/印表機設置: ""
*ko.ManualCMYK PrinterS/프린터 설정 : ""
*ManualCMYK USCMYK/US CMYK: "
<< /DeviceRenderingInfo << /ManualColorCMYKImage /SWOP >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKText /SWOP >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKGraphics /SWOP >> >> setpagedevice"
*End
*de.ManualCMYK USCMYK/US-CMYK: ""
*es.ManualCMYK USCMYK/CMYK EE.UU.: ""
*fr.ManualCMYK USCMYK/CMJN US: ""
*it.ManualCMYK USCMYK/CMYK US: ""
*ja.ManualCMYK USCMYK/US CMYK: ""
*pt.ManualCMYK USCMYK/US CMYK: ""
*zh_CN.ManualCMYK USCMYK/US CMYK: ""
*zh_TW.ManualCMYK USCMYK/US CMYK: ""
*ko.ManualCMYK USCMYK/US CMYK: ""
*ManualCMYK EuroCMYK/Euro CMYK: "
<< /DeviceRenderingInfo << /ManualColorCMYKImage /Euro >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKText /Euro >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKGraphics /Euro >> >> setpagedevice"
*End
*de.ManualCMYK EuroCMYK/Euro-CMYK: ""
*es.ManualCMYK EuroCMYK/CMYK Europa: ""
*fr.ManualCMYK EuroCMYK/CMJN euro: ""
*it.ManualCMYK EuroCMYK/CMYK Euro: ""
*ja.ManualCMYK EuroCMYK/Euro CMYK: ""
*pt.ManualCMYK EuroCMYK/EURO CMYK: ""
*zh_CN.ManualCMYK EuroCMYK/Euro CMYK: ""
*zh_TW.ManualCMYK EuroCMYK/Euro CMYK: ""
*ko.ManualCMYK EuroCMYK/Euro CMYK: ""
*ManualCMYK VividCMYK/Vivid CMYK: "
<< /DeviceRenderingInfo << /ManualColorCMYKImage /VividCMYK >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKText /VividCMYK >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKGraphics /VividCMYK >> >> setpagedevice"
*End
*de.ManualCMYK VividCMYK/Leuchtend CMYK: ""
*es.ManualCMYK VividCMYK/CMYK intenso: ""
*fr.ManualCMYK VividCMYK/CMJN vive: ""
*it.ManualCMYK VividCMYK/CMYK vivace: ""
*ja.ManualCMYK VividCMYK/鮮明 CMYK: ""
*pt.ManualCMYK VividCMYK/CMYK Vivas: ""
*zh_CN.ManualCMYK VividCMYK/逼真 CMYK: ""
*zh_TW.ManualCMYK VividCMYK/鮮明色彩 CMYK: ""
*ko.ManualCMYK VividCMYK/Vivid CMYK: ""
*ManualCMYK Off/Off: "
<< /DeviceRenderingInfo << /ManualColorCMYKImage /Off >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKText /Off >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKGraphics /Off >> >> setpagedevice"
*End
*de.ManualCMYK Off/Aus: ""
*es.ManualCMYK Off/Desactivado: ""
*fr.ManualCMYK Off/Hors Fonction: ""
*it.ManualCMYK Off/Disabilitato: ""
*ja.ManualCMYK Off/オフ: ""
*pt.ManualCMYK Off/Desligado: ""
*zh_CN.ManualCMYK Off/关: ""
*zh_TW.ManualCMYK Off/關: ""
*ko.ManualCMYK Off/꺼짐: ""
*?ManualCMYK: "
gsave
4 dict
dup /SWOP (USCMYK) put
dup /Euro (EuroCMYK) put
dup /Off (off) put
dup /VividCMYK (VividCMYK) put
currentpagedevice /DeviceRenderingInfo get /ManualColorCMYKImage get
{get} stopped {(PrinterS)} if
= flush
grestore"
*End
*CloseUI: *ManualCMYK
*CloseGroup: ManualColor
*%******************************************************************************
*% Paper Handling Group
*%******************************************************************************
*OpenGroup: Paper/Paper
*de.Translation Paper/Papier: ""
*es.Translation Paper/Papel: ""
*fr.Translation Paper/Papier: ""
*it.Translation Paper/Carta: ""
*ja.Translation Paper/用紙: ""
*pt.Translation Paper/Papel: ""
*zh_CN.Translation Paper/纸张: ""
*zh_TW.Translation Paper/紙張: ""
*ko.Translation Paper/용지: ""
*%*****************************************************************************
*% Output Bins
*%*****************************************************************************
*OpenUI *OutputBin/Output Bin: PickOne
*de.Translation OutputBin/Papierablage: ""
*es.Translation OutputBin/Bandeja de Salida: ""
*fr.Translation OutputBin/Réceptacle: ""
*it.Translation OutputBin/Racc. di uscita: ""
*ja.Translation OutputBin/排紙トレイ: ""
*pt.Translation OutputBin/Bandejas de Saída: ""
*zh_CN.Translation OutputBin/接纸架: ""
*zh_TW.Translation OutputBin/出紙架: ""
*ko.Translation OutputBin/출력 빈: ""
*OrderDependency: 56 AnySetup *OutputBin
*DefaultOutputBin: PrinterS
*OutputBin PrinterS/Printer Setting: ""
*de.OutputBin PrinterS/Druckereinstellung: ""
*es.OutputBin PrinterS/Valor de la impresora: ""
*fr.OutputBin PrinterS/Paramètres de l'imprimante: ""
*it.OutputBin PrinterS/Impostazione stampante: ""
*ja.OutputBin PrinterS/プリンタ設定: ""
*pt.OutputBin PrinterS/Padrao da Impressora: ""
*zh_CN.OutputBin PrinterS/打印机设置: ""
*zh_TW.OutputBin PrinterS/印表機設置: ""
*ko.OutputBin PrinterS/프린터 설정 : ""
*OutputBin StandardBin/Standard Bin: "
<< /OutputAttributes << 0 << /OutputType (TOP OUTPUT BIN) >> >> >> setpagedevice
<< /OutputType (TOP OUTPUT BIN) >> setpagedevice"
*End
*de.OutputBin StandardBin/Standardablage: ""
*es.OutputBin StandardBin/Bandeja de salida Estándar: ""
*fr.OutputBin StandardBin/Réceptacle Standard: ""
*it.OutputBin StandardBin/Raccoglitore standard: ""
*ja.OutputBin StandardBin/標準排紙トレイ: ""
*pt.OutputBin StandardBin/Bandeja de Saída padrão: ""
*zh_CN.OutputBin StandardBin/标准接纸架: ""
*zh_TW.OutputBin StandardBin/標準送紙匣: ""
*ko.OutputBin StandardBin/표준 빈: ""
*OutputBin FinisherBin1/Finisher Bin 1: "
<< /OutputAttributes << 1 << /OutputType (OPTIONAL OUTBIN 1) >> >> >> setpagedevice
<< /OutputType (OPTIONAL OUTBIN 1) >> setpagedevice"
*End
*de.OutputBin FinisherBin1/Finisher-Ablage 1: ""
*es.OutputBin FinisherBin1/Bandeja 1 del clasificador: ""
*fr.OutputBin FinisherBin1/Réceptacle de l'unité de finition 1: ""
*it.OutputBin FinisherBin1/Raccoglitore fascicolatore 1: ""
*ja.OutputBin FinisherBin1/フィニッシャ トレイ 1: ""
*pt.OutputBin FinisherBin1/Bandeja do encadernador 1: ""
*zh_CN.OutputBin FinisherBin1/分页器接纸架 1: ""
*zh_TW.OutputBin FinisherBin1/分頁裝訂器出紙架 1: ""
*ko.OutputBin FinisherBin1/마무리 장치 빈 1: ""
*CloseUI: *OutputBin
*%*****************************************************************************
*% Paper Type
*%*****************************************************************************
*OpenUI *MediaType/Paper Type: PickOne
*de.Translation MediaType/Papiersorte: ""
*es.Translation MediaType/Tipo de papel: ""
*fr.Translation MediaType/Type de papier: ""
*it.Translation MediaType/Tipo di carta: ""
*ja.Translation MediaType/用紙の種類: ""
*pt.Translation MediaType/Tipo de Papel: ""
*zh_CN.Translation MediaType/纸张类型: ""
*zh_TW.Translation MediaType/紙張種類: ""
*ko.Translation MediaType/용지 타입: ""
*DefaultMediaType: PrinterS
*OrderDependency: 40 AnySetup *MediaType
*MediaType PrinterS/Printer Setting: ""
*de.MediaType PrinterS/Druckereinstellung: ""
*es.MediaType PrinterS/Valor de la impresora: ""
*fr.MediaType PrinterS/Paramètres de l'imprimante: ""
*it.MediaType PrinterS/Impostazione stampante: ""
*ja.MediaType PrinterS/プリンタ設定: ""
*pt.MediaType PrinterS/Padrao da Impressora: ""
*zh_CN.MediaType PrinterS/打印机设置: ""
*zh_TW.MediaType PrinterS/印表機設置: ""
*ko.MediaType PrinterS/프린터 설정 : ""
*MediaType Plain/Plain Paper: "<< /MediaType (Plain) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Plain/Normalpapier: ""
*es.MediaType Plain/Papel normal: ""
*fr.MediaType Plain/Papier Normal: ""
*it.MediaType Plain/Carta normale: ""
*ja.MediaType Plain/普通紙: ""
*pt.MediaType Plain/Papel normal: ""
*zh_CN.MediaType Plain/普通纸: ""
*zh_TW.MediaType Plain/普通紙: ""
*ko.MediaType Plain/일반 용지: ""
*MediaType Card/Card Stock: "<< /MediaType (Card Stock) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Card/Karton: ""
*es.MediaType Card/Tarjeta: ""
*fr.MediaType Card/Bristol: ""
*it.MediaType Card/Cartoncino: ""
*ja.MediaType Card/厚紙: ""
*pt.MediaType Card/Cartões: ""
*zh_CN.MediaType Card/卡片纸: ""
*zh_TW.MediaType Card/卡片: ""
*ko.MediaType Card/카드 용지: ""
*MediaType Transparency/Transparency: "<< /MediaType (Transparency) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Transparency/Folie: ""
*es.MediaType Transparency/Transparencias: ""
*fr.MediaType Transparency/Transparent: ""
*it.MediaType Transparency/Transparente: ""
*ja.MediaType Transparency/OHPフィルム: ""
*pt.MediaType Transparency/Transparência: ""
*zh_CN.MediaType Transparency/透明胶片: ""
*zh_TW.MediaType Transparency/專用透明投影膠片: ""
*ko.MediaType Transparency/OHP 필름: ""
*MediaType Labels/Labels: "<< /MediaType (Labels) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Labels/Etiketten: ""
*es.MediaType Labels/Etiquetas: ""
*fr.MediaType Labels/Etiquettes: ""
*it.MediaType Labels/Etichette: ""
*ja.MediaType Labels/ラベル: ""
*pt.MediaType Labels/Etiquetas: ""
*zh_CN.MediaType Labels/标签: ""
*zh_TW.MediaType Labels/標籤: ""
*ko.MediaType Labels/라벨: ""
*MediaType Bond/Bond: "<< /MediaType (Bond) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Bond/Feinpostpapier: ""
*es.MediaType Bond/Alta calidad: ""
*fr.MediaType Bond/Ordinaire: ""
*it.MediaType Bond/Di qualitá: ""
*ja.MediaType Bond/ボンド紙: ""
*pt.MediaType Bond/Encorpado: ""
*zh_CN.MediaType Bond/铜版纸: ""
*zh_TW.MediaType Bond/無覆膜的雪銅紙: ""
*ko.MediaType Bond/본드: ""
*MediaType Envelope/Envelope: "<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Envelope/Briefumschlag: ""
*es.MediaType Envelope/Sobre: ""
*fr.MediaType Envelope/Alimentation Enveloppe: ""
*it.MediaType Envelope/Busta: ""
*ja.MediaType Envelope/封筒: ""
*pt.MediaType Envelope/Envelopes: ""
*zh_CN.MediaType Envelope/信封: ""
*zh_TW.MediaType Envelope/信封: ""
*ko.MediaType Envelope/봉투: ""
*MediaType Letterhead/Letterhead: "<< /MediaType (Letterhead) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Letterhead/Briefbogen: ""
*es.MediaType Letterhead/Cabecera: ""
*fr.MediaType Letterhead/En-tête: ""
*it.MediaType Letterhead/Carta intestata: ""
*ja.MediaType Letterhead/レターヘッド: ""
*pt.MediaType Letterhead/Timbrado: ""
*zh_CN.MediaType Letterhead/信签: ""
*zh_TW.MediaType Letterhead/銜頭紙: ""
*ko.MediaType Letterhead/레터헤드: ""
*MediaType Preprint/Preprinted: "<< /MediaType (Preprinted) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Preprint/Vorgedruckt: ""
*es.MediaType Preprint/Preimpreso: ""
*fr.MediaType Preprint/Préimprimé: ""
*it.MediaType Preprint/Prestampati: ""
*ja.MediaType Preprint/プレプリント: ""
*pt.MediaType Preprint/Pré-impresso: ""
*zh_CN.MediaType Preprint/预印纸: ""
*zh_TW.MediaType Preprint/預印: ""
*ko.MediaType Preprint/양면지: ""
*MediaType Colored/Colored Paper: "<< /MediaType (Colored Paper) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Colored/Farbpapier: ""
*es.MediaType Colored/Papel color: ""
*fr.MediaType Colored/Papier couleur: ""
*it.MediaType Colored/Carta colorata: ""
*ja.MediaType Colored/カラー紙: ""
*pt.MediaType Colored/Papel colorido: ""
*zh_CN.MediaType Colored/彩色纸: ""
*zh_TW.MediaType Colored/彩色紙: ""
*ko.MediaType Colored/색상지: ""
*MediaType Glossy/Glossy Paper: "<< /MediaType (Glossy Paper) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Glossy/Glanzpapier: ""
*es.MediaType Glossy/Papel brillante: ""
*fr.MediaType Glossy/Papier glacé: ""
*it.MediaType Glossy/Carta lucida: ""
*ja.MediaType Glossy/光沢紙: ""
*pt.MediaType Glossy/Papel Brilho: ""
*zh_CN.MediaType Glossy/光面纸: ""
*zh_TW.MediaType Glossy/光面紙: ""
*ko.MediaType Glossy/광택지: ""
*MediaType Custom1/Custom Type 1: "<< /MediaType (Custom Type 1) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Custom1/Benutzerdef. 1: ""
*es.MediaType Custom1/Personalizado tipo 1: ""
*fr.MediaType Custom1/Personnalisé 1: ""
*it.MediaType Custom1/Pers. tipo 1: ""
*ja.MediaType Custom1/カスタム タイプ 1: ""
*pt.MediaType Custom1/Person tipo 1: ""
*zh_CN.MediaType Custom1/定制类型 1: ""
*zh_TW.MediaType Custom1/自訂種類 1: ""
*ko.MediaType Custom1/사용자 양식 1: ""
*MediaType Custom2/Custom Type 2: "<< /MediaType (Custom Type 2) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Custom2/Benutzerdef. 2: ""
*es.MediaType Custom2/Personalizado tipo 2: ""
*fr.MediaType Custom2/Personnalisé 2: ""
*it.MediaType Custom2/Pers. tipo 2: ""
*ja.MediaType Custom2/カスタム タイプ 2: ""
*pt.MediaType Custom2/Person tipo 2: ""
*zh_CN.MediaType Custom2/定制类型 2: ""
*zh_TW.MediaType Custom2/自訂種類 2: ""
*ko.MediaType Custom2/사용자 양식 2: ""
*MediaType Custom3/Custom Type 3: "<< /MediaType (Custom Type 3) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Custom3/Benutzerdef. 3: ""
*es.MediaType Custom3/Personalizado tipo 3: ""
*fr.MediaType Custom3/Personnalisé 3: ""
*it.MediaType Custom3/Pers. tipo 3: ""
*ja.MediaType Custom3/カスタム タイプ 3: ""
*pt.MediaType Custom3/Person tipo 3: ""
*zh_CN.MediaType Custom3/定制类型 3: ""
*zh_TW.MediaType Custom3/自訂種類 3: ""
*ko.MediaType Custom3/사용자 양식 3: ""
*MediaType Custom4/Custom Type 4: "<< /MediaType (Custom Type 4) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Custom4/Benutzerdef. 4: ""
*es.MediaType Custom4/Personalizado tipo 4: ""
*fr.MediaType Custom4/Personnalisé 4: ""
*it.MediaType Custom4/Pers. tipo 4: ""
*ja.MediaType Custom4/カスタム タイプ 4: ""
*pt.MediaType Custom4/Person tipo 4: ""
*zh_CN.MediaType Custom4/定制类型 4: ""
*zh_TW.MediaType Custom4/自訂種類 4: ""
*ko.MediaType Custom4/사용자 양식 4: ""
*MediaType Custom5/Custom Type 5: "<< /MediaType (Custom Type 5) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Custom5/Benutzerdef. 5: ""
*es.MediaType Custom5/Personalizado tipo 5: ""
*fr.MediaType Custom5/Personnalisé 5: ""
*it.MediaType Custom5/Pers. tipo 5: ""
*ja.MediaType Custom5/カスタム タイプ 5: ""
*pt.MediaType Custom5/Person tipo 5: ""
*zh_CN.MediaType Custom5/定制类型 5: ""
*zh_TW.MediaType Custom5/自訂種類 5: ""
*ko.MediaType Custom5/사용자 양식 5: ""
*MediaType Custom6/Custom Type 6: "<< /MediaType (Custom Type 6) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Custom6/Benutzerdef. 6: ""
*es.MediaType Custom6/Personalizado tipo 6: ""
*fr.MediaType Custom6/Personnalisé 6: ""
*it.MediaType Custom6/Pers. tipo 6: ""
*ja.MediaType Custom6/カスタム タイプ 6: ""
*pt.MediaType Custom6/Person tipo 6: ""
*zh_CN.MediaType Custom6/定制类型 6: ""
*zh_TW.MediaType Custom6/自訂種類 6: ""
*ko.MediaType Custom6/사용자 양식 6: ""
*CloseUI: *MediaType
*%******************************************************************************
*% Print Blank Page
*%******************************************************************************
*OpenUI *LexBlankPage/Print Blank Pages: PickOne
*de.Translation LexBlankPage/Leere Seiten drucken: ""
*es.Translation LexBlankPage/Imprimir páginas en blanco: ""
*fr.Translation LexBlankPage/Imprimer pages vierges: ""
*it.Translation LexBlankPage/Stampa pagine vuote: ""
*ja.Translation LexBlankPage/空白ページを印刷: ""
*pt.Translation LexBlankPage/Imprimir páginas em branco: ""
*zh_CN.Translation LexBlankPage/打印空白页: ""
*zh_TW.Translation LexBlankPage/列印空白頁: ""
*ko.Translation LexBlankPage/빈 페이지 인쇄: ""
*DefaultLexBlankPage: PrinterS
*OrderDependency: 175 AnySetup *LexBlankPage
*LexBlankPage PrinterS/Printer Setting: ""
*de.LexBlankPage PrinterS/Druckereinstellung: ""
*es.LexBlankPage PrinterS/Valor de la impresora: ""
*fr.LexBlankPage PrinterS/Paramètres de l'imprimante: ""
*it.LexBlankPage PrinterS/Impostazione stampante: ""
*ja.LexBlankPage PrinterS/プリンタ設定: ""
*pt.LexBlankPage PrinterS/Padrao da Impressora: ""
*zh_CN.LexBlankPage PrinterS/打印机设置: ""
*zh_TW.LexBlankPage PrinterS/印表機設置: ""
*ko.LexBlankPage PrinterS/프린터 설정 : ""
*LexBlankPage False/Off: ""
*de.LexBlankPage False/Aus: ""
*es.LexBlankPage False/Desactivado: ""
*fr.LexBlankPage False/Hors Fonction: ""
*it.LexBlankPage False/Disabilitato: ""
*ja.LexBlankPage False/オフ: ""
*pt.LexBlankPage False/Desligado: ""
*zh_CN.LexBlankPage False/关: ""
*zh_TW.LexBlankPage False/關: ""
*ko.LexBlankPage False/꺼짐: ""
*LexBlankPage True/On: ""
*de.LexBlankPage True/Ein: ""
*es.LexBlankPage True/Activado: ""
*fr.LexBlankPage True/En Fonction: ""
*it.LexBlankPage True/Abilitato: ""
*ja.LexBlankPage True/オン: ""
*pt.LexBlankPage True/Ativar: ""
*zh_CN.LexBlankPage True/开: ""
*zh_TW.LexBlankPage True/開: ""
*ko.LexBlankPage True/켜짐: ""
*?LexBlankPage: ""
*CloseUI: *LexBlankPage
*DefaultOutputOrder: Normal
*CloseGroup: Paper
*%******************************************************************************
*% Finishing Group
*%******************************************************************************
*OpenGroup: Finishing/Finishing
*de.Translation Finishing/Papierausgabe: ""
*es.Translation Finishing/Acabado: ""
*fr.Translation Finishing/Finition: ""
*it.Translation Finishing/Fascicolazione: ""
*ja.Translation Finishing/仕上げ: ""
*pt.Translation Finishing/Acabamento: ""
*zh_CN.Translation Finishing/输出: ""
*zh_TW.Translation Finishing/輸出處理: ""
*ko.Translation Finishing/마무리: ""
*%******************************************************************************
*% Duplex
*%******************************************************************************
*OpenUI *Duplex/Duplex: PickOne
*de.Translation Duplex/Beidseitig Binderand: ""
*es.Translation Duplex/Encuadernado Doble: ""
*fr.Translation Duplex/Reliure Recto Verso: ""
*it.Translation Duplex/Fronte/Retro: ""
*ja.Translation Duplex/両面印刷: ""
*pt.Translation Duplex/Modo Duplex: ""
*zh_CN.Translation Duplex/双面打印: ""
*zh_TW.Translation Duplex/雙面列印: ""
*ko.Translation Duplex/양면: ""
*DefaultDuplex: None
*Duplex None/None: "1 dict dup /Duplex false put setpagedevice"
*de.Duplex None/Aus: ""
*es.Duplex None/Desactivado: ""
*fr.Duplex None/Hors Fonction: ""
*it.Duplex None/Disabilitato: ""
*ja.Duplex None/なし: ""
*pt.Duplex None/Nenhum: ""
*zh_CN.Duplex None/无: ""
*zh_TW.Duplex None/無: ""
*ko.Duplex None/없음: ""
*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
*de.Duplex DuplexNoTumble/Lange Kante Binden: ""
*es.Duplex DuplexNoTumble/Borde Largo: ""
*fr.Duplex DuplexNoTumble/Reliure Bords Longs: ""
*it.Duplex DuplexNoTumble/Lato lungo: ""
*ja.Duplex DuplexNoTumble/両面印刷 - 長辺: ""
*pt.Duplex DuplexNoTumble/Margem Longa: ""
*zh_CN.Duplex DuplexNoTumble/双面打印 - 长边: ""
*zh_TW.Duplex DuplexNoTumble/雙面列印 - 長邊: ""
*ko.Duplex DuplexNoTumble/양면-긴 가장자리: ""
*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
*de.Duplex DuplexTumble/Kurze Kante Binden: ""
*es.Duplex DuplexTumble/Borde Corto: ""
*fr.Duplex DuplexTumble/Reliure Bords Courts: ""
*it.Duplex DuplexTumble/Lato corto: ""
*ja.Duplex DuplexTumble/両面印刷 - 短辺: ""
*pt.Duplex DuplexTumble/Duplex - Borda Curta: ""
*zh_CN.Duplex DuplexTumble/双面打印 - 短边: ""
*zh_TW.Duplex DuplexTumble/雙面列印 - 短邊: ""
*ko.Duplex DuplexTumble/양면-짧은 가장자리: ""
*?Duplex: "
gsave
currentpagedevice /Duplex get
{
currentpagedevice /Tumble get
{(DuplexTumble)}{(DuplexNoTumble)} ifelse
}{(None)} ifelse
= flush
grestore"
*End
*CloseUI: *Duplex
*%******************************************************************************
*% Collation
*%******************************************************************************
*OpenUI *Collate/Collation: Boolean
*de.Translation Collate/Sortieren: ""
*es.Translation Collate/Clasificación: ""
*fr.Translation Collate/Assemblage: ""
*it.Translation Collate/Fascicolazione: ""
*ja.Translation Collate/ソーターで印刷: ""
*pt.Translation Collate/Agrupar: ""
*zh_CN.Translation Collate/逐份打印: ""
*zh_TW.Translation Collate/逐份列印: ""
*ko.Translation Collate/콜레이트: ""
*OrderDependency: 50 AnySetup *Collate
*DefaultCollate: True
*Collate False/Off: "<< /Collate false >> setpagedevice"
*de.Collate False/Aus: ""
*es.Collate False/Desactivado: ""
*fr.Collate False/Hors Fonction: ""
*it.Collate False/Disabilitato: ""
*ja.Collate False/オフ: ""
*pt.Collate False/Desligado: ""
*zh_CN.Collate False/关: ""
*zh_TW.Collate False/關: ""
*ko.Collate False/꺼짐: ""
*Collate True/On: "<< /Collate true >> setpagedevice"
*de.Collate True/Ein: ""
*es.Collate True/Activado: ""
*fr.Collate True/En Fonction: ""
*it.Collate True/Abilitato: ""
*ja.Collate True/オン: ""
*pt.Collate True/Ativar: ""
*zh_CN.Collate True/开: ""
*zh_TW.Collate True/開: ""
*ko.Collate True/켜짐: ""
*?Collate: "
gsave
currentpagedevice /Collate get
{(True)}{(False)} ifelse
= flush
grestore"
*End
*CloseUI: *Collate
*%*****************************************************************************
*% Separator Pages
*%*****************************************************************************
*OpenUI *SepPages/Separator Pages: PickOne
*de.Translation SepPages/Trennseiten: ""
*es.Translation SepPages/Hojas de separación: ""
*fr.Translation SepPages/Séparateurs: ""
*it.Translation SepPages/Fogli separatori: ""
*ja.Translation SepPages/区切りページ: ""
*pt.Translation SepPages/Páginas Separadoras: ""
*zh_CN.Translation SepPages/分隔页: ""
*zh_TW.Translation SepPages/分隔頁: ""
*ko.Translation SepPages/페이지 분리기: ""
*OrderDependency: 51 AnySetup *SepPages
*DefaultSepPages: PrinterS
*SepPages PrinterS/Printer Setting: ""
*de.SepPages PrinterS/Druckereinstellung: ""
*es.SepPages PrinterS/Valor de la impresora: ""
*fr.SepPages PrinterS/Paramètres de l'imprimante: ""
*it.SepPages PrinterS/Impostazione stampante: ""
*ja.SepPages PrinterS/プリンタ設定: ""
*pt.SepPages PrinterS/Padrao da Impressora: ""
*zh_CN.SepPages PrinterS/打印机设置: ""
*zh_TW.SepPages PrinterS/印表機設置: ""
*ko.SepPages PrinterS/프린터 설정 : ""
*SepPages NoneF/None: "<< /SlipSheet 0 >> setpagedevice"
*de.SepPages NoneF/Keine: ""
*es.SepPages NoneF/Desactivado: ""
*fr.SepPages NoneF/Hors Fonction: ""
*it.SepPages NoneF/Disabilitato: ""
*ja.SepPages NoneF/なし: ""
*pt.SepPages NoneF/Nenhuma: ""
*zh_CN.SepPages NoneF/无: ""
*zh_TW.SepPages NoneF/無: ""
*ko.SepPages NoneF/없음: ""
*SepPages Jobs/Between Jobs: "<< /SlipSheet 2 >> setpagedevice"
*de.SepPages Jobs/Zwischen Aufträgen: ""
*es.SepPages Jobs/Entre trabajos: ""
*fr.SepPages Jobs/Entre les Documents: ""
*it.SepPages Jobs/Tra processi: ""
*ja.SepPages Jobs/ジョブの間: ""
*pt.SepPages Jobs/Entre Trabalhos: ""
*zh_CN.SepPages Jobs/任务之间: ""
*zh_TW.SepPages Jobs/介於工作之間: ""
*ko.SepPages Jobs/작업 사이: ""
*SepPages Copies/Between Copies: "<< /SlipSheet 3 >> setpagedevice"
*de.SepPages Copies/Zwischen Kopien: ""
*es.SepPages Copies/Entre copias: ""
*fr.SepPages Copies/Entre les Copies: ""
*it.SepPages Copies/Tra copie: ""
*ja.SepPages Copies/部の間: ""
*pt.SepPages Copies/Entre Cópias: ""
*zh_CN.SepPages Copies/副本之间: ""
*zh_TW.SepPages Copies/在列印副本之間: ""
*ko.SepPages Copies/인쇄 사이: ""
*SepPages Pages/Between Pages: "<< /SlipSheet 4 >> setpagedevice"
*de.SepPages Pages/Zwischen Seiten: ""
*es.SepPages Pages/Entre páginas: ""
*fr.SepPages Pages/Entre les Pages: ""
*it.SepPages Pages/Tra pagine: ""
*ja.SepPages Pages/ページの間: ""
*pt.SepPages Pages/Entre Páginas: ""
*zh_CN.SepPages Pages/页之间: ""
*zh_TW.SepPages Pages/介於頁面之間: ""
*ko.SepPages Pages/페이지 사이: ""
*?SepPages: "
gsave
currentpagedevice /SlipSheet get
dup dup
4 eq {(Pages)}{
3 eq {(Copies)}{
2 eq {(Jobs)}
{(NoneF)}ifelse
}ifelse
}ifelse
= flush
grestore"
*End
*CloseUI: *SepPages
*%*****************************************************************************
*% Separator Source
*%*****************************************************************************
*OpenUI *SepSource/Separator Source: PickOne
*de.Translation SepSource/Trennseitenzufuhr: ""
*es.Translation SepSource/Fuente de separadores: ""
*fr.Translation SepSource/Alimentation Séparateur: ""
*it.Translation SepSource/Origine separatore: ""
*ja.Translation SepSource/区切りページ源: ""
*pt.Translation SepSource/Origem do Separador: ""
*zh_CN.Translation SepSource/分隔纸源: ""
*zh_TW.Translation SepSource/分隔頁來源: ""
*ko.Translation SepSource/자원 분리기: ""
*OrderDependency: 52 AnySetup *SepSource
*DefaultSepSource: PrinterS
*SepSource PrinterS/Printer Setting: ""
*de.SepSource PrinterS/Druckereinstellung: ""
*es.SepSource PrinterS/Valor de la impresora: ""
*fr.SepSource PrinterS/Paramètres de l'imprimante: ""
*it.SepSource PrinterS/Impostazione stampante: ""
*ja.SepSource PrinterS/プリンタ設定: ""
*pt.SepSource PrinterS/Padrao da Impressora: ""
*zh_CN.SepSource PrinterS/打印机设置: ""
*zh_TW.SepSource PrinterS/印表機設置: ""
*ko.SepSource PrinterS/프린터 설정 : ""
*SepSource Tray1/Tray 1: "<< /SlipSheetDetails << /Type 96 /SlipSheetSource 0 >> >> setpagedevice"
*de.SepSource Tray1/Fach 1: ""
*es.SepSource Tray1/Bandeja 1: ""
*fr.SepSource Tray1/Tiroir 1: ""
*it.SepSource Tray1/Vassoio 1: ""
*ja.SepSource Tray1/カセット 1: ""
*pt.SepSource Tray1/Bandeja 1: ""
*zh_CN.SepSource Tray1/进纸匣 1: ""
*zh_TW.SepSource Tray1/裝紙匣 1: ""
*ko.SepSource Tray1/트레이 1: ""
*SepSource Tray2/Tray 2: "<< /SlipSheetDetails << /Type 96 /SlipSheetSource 1 >> >> setpagedevice"
*de.SepSource Tray2/Fach 2: ""
*es.SepSource Tray2/Bandeja 2: ""
*fr.SepSource Tray2/Tiroir 2: ""
*it.SepSource Tray2/Vassoio 2: ""
*ja.SepSource Tray2/カセット 2: ""
*pt.SepSource Tray2/Bandeja 2: ""
*zh_CN.SepSource Tray2/进纸匣 2: ""
*zh_TW.SepSource Tray2/裝紙匣 2: ""
*ko.SepSource Tray2/트레이 2: ""
*SepSource Tray3/Tray 3: "<< /SlipSheetDetails << /Type 96 /SlipSheetSource 3 >> >> setpagedevice"
*de.SepSource Tray3/Fach 3: ""
*es.SepSource Tray3/Bandeja 3: ""
*fr.SepSource Tray3/Tiroir 3: ""
*it.SepSource Tray3/Vassoio 3: ""
*ja.SepSource Tray3/カセット 3: ""
*pt.SepSource Tray3/Bandeja 3: ""
*zh_CN.SepSource Tray3/进纸匣 3: ""
*zh_TW.SepSource Tray3/裝紙匣 3: ""
*ko.SepSource Tray3/트레이 3: ""
*SepSource Tray4/Tray 4: "<< /SlipSheetDetails << /Type 96 /SlipSheetSource 5 >> >> setpagedevice"
*de.SepSource Tray4/Fach 4: ""
*es.SepSource Tray4/Bandeja 4: ""
*fr.SepSource Tray4/Tiroir 4: ""
*it.SepSource Tray4/Vassoio 4: ""
*ja.SepSource Tray4/カセット 4: ""
*pt.SepSource Tray4/Bandeja 4: ""
*zh_CN.SepSource Tray4/进纸匣 4: ""
*zh_TW.SepSource Tray4/裝紙匣 4: ""
*ko.SepSource Tray4/트레이 4: ""
*SepSource MultipurposeFeeder/Multipurpose Feeder: "<< /SlipSheetDetails << /Type 96 /SlipSheetSource 4 >> >> setpagedevice"
*de.SepSource MultipurposeFeeder/Universal: ""
*es.SepSource MultipurposeFeeder/Alimentador Multiuso: ""
*fr.SepSource MultipurposeFeeder/Bac Multifonction: ""
*it.SepSource MultipurposeFeeder/Alimentatore multiuso: ""
*ja.SepSource MultipurposeFeeder/多目的フィーダ: ""
*pt.SepSource MultipurposeFeeder/Alimentador Multipropósito: ""
*zh_CN.SepSource MultipurposeFeeder/多功能进纸器: ""
*zh_TW.SepSource MultipurposeFeeder/多用途送紙器: ""
*ko.SepSource MultipurposeFeeder/다용도 급지기: ""
*?SepSource: "
gsave
currentpagedevice /SlipSheetDetails get /SlipSheetSource get
dup dup dup dup dup dup
6 eq
{(Tray5)}{5 eq
{(Tray4)}{4 eq
{(MultipurposeFeeder)}{3 eq
{(Tray3)}{1 eq
{(Tray2)}{0 eq
{(Tray1)}{(Off)}
ifelse}
ifelse}
ifelse}
ifelse}
ifelse}
ifelse
= flush
grestore"
*End
*CloseUI: *SepSource
*%******************************************************************************
*% Offset Pages
*%******************************************************************************
*OpenUI *Offset/Offset Pages: PickOne
*de.Translation Offset/Versetzt stapeln: ""
*es.Translation Offset/Páginas de desviación: ""
*fr.Translation Offset/Pages Décalées: ""
*it.Translation Offset/Pagine separatrici: ""
*ja.Translation Offset/オフセット・ページ: ""
*pt.Translation Offset/Separação de Trabalhos: ""
*zh_CN.Translation Offset/偏移页: ""
*zh_TW.Translation Offset/頁面偏位: ""
*ko.Translation Offset/오프셋 페이지: ""
*OrderDependency: 55 AnySetup *Offset
*DefaultOffset: PrinterS
*Offset PrinterS/Printer Setting: ""
*de.Offset PrinterS/Druckereinstellung: ""
*es.Offset PrinterS/Valor de la impresora: ""
*fr.Offset PrinterS/Paramètres de l'imprimante: ""
*it.Offset PrinterS/Impostazione stampante: ""
*ja.Offset PrinterS/プリンタ設定: ""
*pt.Offset PrinterS/Padrao da Impressora: ""
*zh_CN.Offset PrinterS/打印机设置: ""
*zh_TW.Offset PrinterS/印表機設置: ""
*ko.Offset PrinterS/프린터 설정 : ""
*Offset None/None: "<< /Jog 0 >> setpagedevice"
*de.Offset None/Aus: ""
*es.Offset None/Desactivado: ""
*fr.Offset None/Hors Fonction: ""
*it.Offset None/Disabilitato: ""
*ja.Offset None/なし: ""
*pt.Offset None/Nenhum: ""
*zh_CN.Offset None/无: ""
*zh_TW.Offset None/無: ""
*ko.Offset None/없음: ""
*Offset Copies/Between Copies: "<< /Jog 3 >> setpagedevice"
*de.Offset Copies/Zwischen Kopien: ""
*es.Offset Copies/Entre copias: ""
*fr.Offset Copies/Entre les Copies: ""
*it.Offset Copies/Tra copie: ""
*ja.Offset Copies/部の間: ""
*pt.Offset Copies/Entre Cópias: ""
*zh_CN.Offset Copies/副本之间: ""
*zh_TW.Offset Copies/在列印副本之間: ""
*ko.Offset Copies/인쇄 사이: ""
*?Offset: "
gsave
currentpagedevice /Jog get dup
2 eq {(Copies)}
{(None)
} ifelse
= flush
grestore"
*End
*CloseUI: *Offset
*%******************************************************************************
*% Staple Job
*%******************************************************************************
*OpenUI *StapleJob/Staple Job: PickOne
*de.Translation StapleJob/Heften: ""
*es.Translation StapleJob/Grapar trabajo: ""
*fr.Translation StapleJob/Travail Agrafé: ""
*it.Translation StapleJob/Processo cucitura: ""
*ja.Translation StapleJob/ホチキス付きジョブ: ""
*pt.Translation StapleJob/Grampeamento: ""
*zh_CN.Translation StapleJob/装订作业: ""
*zh_TW.Translation StapleJob/裝訂工作: ""
*ko.Translation StapleJob/스테이플 작업: ""
*OrderDependency: 53 AnySetup *StapleJob
*DefaultStapleJob: PrinterS
*StapleJob PrinterS/Printer Setting: ""
*de.StapleJob PrinterS/Druckereinstellung: ""
*es.StapleJob PrinterS/Valor de la impresora: ""
*fr.StapleJob PrinterS/Paramètres de l'imprimante: ""
*it.StapleJob PrinterS/Impostazione stampante: ""
*ja.StapleJob PrinterS/プリンタ設定: ""
*pt.StapleJob PrinterS/Padrao da Impressora: ""
*zh_CN.StapleJob PrinterS/打印机设置: ""
*zh_TW.StapleJob PrinterS/印表機設置: ""
*ko.StapleJob PrinterS/프린터 설정 : ""
*StapleJob Front/Front: "<< /Staple 1 >> setpagedevice"
*de.StapleJob Front/Vorderseite: ""
*es.StapleJob Front/Frontal: ""
*fr.StapleJob Front/Avant: ""
*it.StapleJob Front/Anteriore: ""
*ja.StapleJob Front/前: ""
*pt.StapleJob Front/Para frente: ""
*zh_CN.StapleJob Front/前部: ""
*zh_TW.StapleJob Front/前部: ""
*ko.StapleJob Front/앞면: ""
*StapleJob Back/Back: "<< /Staple 2 >> setpagedevice"
*de.StapleJob Back/Rückseite: ""
*es.StapleJob Back/Posterior: ""
*fr.StapleJob Back/Arrière: ""
*it.StapleJob Back/Posteriore: ""
*ja.StapleJob Back/後ろ: ""
*pt.StapleJob Back/Voltar: ""
*zh_CN.StapleJob Back/后部: ""
*zh_TW.StapleJob Back/後部: ""
*ko.StapleJob Back/뒷면: ""
*StapleJob Dual/Dual: "<< /Staple 4 >> setpagedevice"
*de.StapleJob Dual/Doppelt: ""
*es.StapleJob Dual/Doble: ""
*fr.StapleJob Dual/Double: ""
*it.StapleJob Dual/Doppio: ""
*ja.StapleJob Dual/デュアル: ""
*pt.StapleJob Dual/Duplo: ""
*zh_CN.StapleJob Dual/双: ""
*zh_TW.StapleJob Dual/裝訂兩處: ""
*ko.StapleJob Dual/양면: ""
*StapleJob DoubleDual/Double Dual: "<< /Staple 5 >> setpagedevice"
*de.StapleJob DoubleDual/Doppelt doppelt: ""
*es.StapleJob DoubleDual/Doble con 2 grapas: ""
*fr.StapleJob DoubleDual/Double paire: ""
*it.StapleJob DoubleDual/Graffette doppie: ""
*ja.StapleJob DoubleDual/二重縫い: ""
*pt.StapleJob DoubleDual/Duplo c/ 2 grampos: ""
*zh_CN.StapleJob DoubleDual/重复双订: ""
*zh_TW.StapleJob DoubleDual/裝訂兩處: ""
*ko.StapleJob DoubleDual/이중 양면 스태플러: ""
*StapleJob FalseM/Off: "<< /Staple 0 >> setpagedevice"
*de.StapleJob FalseM/Aus: ""
*es.StapleJob FalseM/Desactivado: ""
*fr.StapleJob FalseM/Hors Fonction: ""
*it.StapleJob FalseM/Disabilitato: ""
*ja.StapleJob FalseM/オフ: ""
*pt.StapleJob FalseM/Desligado: ""
*zh_CN.StapleJob FalseM/关: ""
*zh_TW.StapleJob FalseM/關: ""
*ko.StapleJob FalseM/꺼짐: ""
*?StapleJob: "
gsave
currentpagedevice /Staple get
dup dup dup dup dup
5 eq {(DoubleDual)}{
4 eq {(Dual)}{
3 eq {(Back)}{
2 eq {(Front)}{
(FalseM)
}ifelse
}ifelse
}ifelse
}ifelse
= flush
grestore"
*End
*CloseUI: *StapleJob
*%******************************************************************************
*% Hole Punch
*%******************************************************************************
*OpenUI *HolePunch/Hole Punch: PickOne
*de.Translation HolePunch/Lochen: ""
*es.Translation HolePunch/Perforador: ""
*fr.Translation HolePunch/Perforation: ""
*it.Translation HolePunch/Perforazione: ""
*ja.Translation HolePunch/ホール・パンチ: ""
*pt.Translation HolePunch/Perfuração: ""
*zh_CN.Translation HolePunch/打孔: ""
*zh_TW.Translation HolePunch/打孔: ""
*ko.Translation HolePunch/홀 펀치: ""
*OrderDependency: 54 AnySetup *HolePunch
*DefaultHolePunch: PrinterS
*HolePunch PrinterS/Printer Setting: ""
*de.HolePunch PrinterS/Druckereinstellung: ""
*es.HolePunch PrinterS/Valor de la impresora: ""
*fr.HolePunch PrinterS/Paramètres de l'imprimante: ""
*it.HolePunch PrinterS/Impostazione stampante: ""
*ja.HolePunch PrinterS/プリンタ設定: ""
*pt.HolePunch PrinterS/Padrao da Impressora: ""
*zh_CN.HolePunch PrinterS/打印机设置: ""
*zh_TW.HolePunch PrinterS/印表機設置: ""
*ko.HolePunch PrinterS/프린터 설정 : ""
*HolePunch FalseM/Off: "<< /Punch 0 >> setpagedevice"
*de.HolePunch FalseM/Aus: ""
*es.HolePunch FalseM/Desactivado: ""
*fr.HolePunch FalseM/Hors Fonction: ""
*it.HolePunch FalseM/Disabilitato: ""
*ja.HolePunch FalseM/オフ: ""
*pt.HolePunch FalseM/Desligado: ""
*zh_CN.HolePunch FalseM/关: ""
*zh_TW.HolePunch FalseM/關: ""
*ko.HolePunch FalseM/꺼짐: ""
*HolePunch 2Hole/2 Hole: "<< /Punch 2 >> setpagedevice"
*de.HolePunch 2Hole/2-Loch: ""
*es.HolePunch 2Hole/2 orificios: ""
*fr.HolePunch 2Hole/2 perforations: ""
*it.HolePunch 2Hole/Perforazione 2 fori: ""
*ja.HolePunch 2Hole/2 穴: ""
*pt.HolePunch 2Hole/2 furos: ""
*zh_CN.HolePunch 2Hole/2 个孔: ""
*zh_TW.HolePunch 2Hole/2 孔: ""
*ko.HolePunch 2Hole/2홀: ""
*HolePunch 3Hole/3 Hole: "<< /Punch 3 >> setpagedevice"
*de.HolePunch 3Hole/3 x gelocht: ""
*es.HolePunch 3Hole/3 orificios: ""
*fr.HolePunch 3Hole/3 perforations: ""
*it.HolePunch 3Hole/Perforazione 3 fori: ""
*ja.HolePunch 3Hole/3 穴: ""
*pt.HolePunch 3Hole/3 furos: ""
*zh_CN.HolePunch 3Hole/3 孔: ""
*zh_TW.HolePunch 3Hole/3 孔: ""
*ko.HolePunch 3Hole/3홀: ""
*HolePunch 4Hole/4 Hole: "<< /Punch 4 >> setpagedevice"
*de.HolePunch 4Hole/4 x gelocht: ""
*es.HolePunch 4Hole/4 orificios: ""
*fr.HolePunch 4Hole/4 perforations: ""
*it.HolePunch 4Hole/Perforazione 4 fori: ""
*ja.HolePunch 4Hole/4 穴: ""
*pt.HolePunch 4Hole/4 furos: ""
*zh_CN.HolePunch 4Hole/4 孔: ""
*zh_TW.HolePunch 4Hole/4 孔: ""
*ko.HolePunch 4Hole/4홀: ""
*?HolePunch: "
gsave
currentpagedevice /Punch get
dup dup dup dup
3 eq {(3Hole)}{
4 eq {(4Hole)}{
2 eq {(2Hole)}{
{(FalseM)}
ifelse}
ifelse}
ifelse
= flush
grestore"
*End
*CloseUI: *HolePunch
*CloseGroup: Finishing
*%******************************************************************************
*% Poster
*%******************************************************************************
*OpenGroup: Poster/Poster
*de.Translation Poster/Poster: "<< /Punch 4 >> setpagedevice"
*es.Translation Poster/Póster: "<< /Punch 4 >> setpagedevice"
*fr.Translation Poster/Affiche: "<< /Punch 4 >> setpagedevice"
*it.Translation Poster/Poster: "<< /Punch 4 >> setpagedevice"
*ja.Translation Poster/ポスター: "<< /Punch 4 >> setpagedevice"
*pt.Translation Poster/Cartaz: "<< /Punch 4 >> setpagedevice"
*zh_CN.Translation Poster/海报: "<< /Punch 4 >> setpagedevice"
*zh_TW.Translation Poster/海報: "<< /Punch 4 >> setpagedevice"
*ko.Translation Poster/포스터: "<< /Punch 4 >> setpagedevice"
*OpenUI *LXPosterEnable/Enable Poster Printing: Boolean
*de.Translation LXPosterEnable/Posterdruck aktivieren: ""
*es.Translation LXPosterEnable/Activar impresión de póster: ""
*fr.Translation LXPosterEnable/Impression d'une affiche: ""
*it.Translation LXPosterEnable/Abilita stampa poster: ""
*ja.Translation LXPosterEnable/ポスター印刷を有効化: ""
*pt.Translation LXPosterEnable/Habilitar impressão de cartaz: ""
*zh_CN.Translation LXPosterEnable/启用海报打印: ""
*zh_TW.Translation LXPosterEnable/啟動海報列印: ""
*ko.Translation LXPosterEnable/포스터 인쇄 활성화: ""
*OrderDependency: 600 AnySetup *LXPosterEnable
*DefaultLXPosterEnable: False
*LXPosterEnable False/Off: ""
*de.LXPosterEnable False/Aus: ""
*es.LXPosterEnable False/Desactivado: ""
*fr.LXPosterEnable False/Hors Fonction: ""
*it.LXPosterEnable False/Disabilitato: ""
*ja.LXPosterEnable False/オフ: ""
*pt.LXPosterEnable False/Desligado: ""
*zh_CN.LXPosterEnable False/关: ""
*zh_TW.LXPosterEnable False/關: ""
*ko.LXPosterEnable False/꺼짐: ""
*LXPosterEnable True/On: "
<< /Nup false >> setpagedevice
1 dict dup /Duplex false put setpagedevice"
*End
*de.LXPosterEnable True/Ein: ""
*es.LXPosterEnable True/Activado: ""
*fr.LXPosterEnable True/En Fonction: ""
*it.LXPosterEnable True/Abilitato: ""
*ja.LXPosterEnable True/オン: ""
*pt.LXPosterEnable True/Ativar: ""
*zh_CN.LXPosterEnable True/开: ""
*zh_TW.LXPosterEnable True/開: ""
*ko.LXPosterEnable True/켜짐: ""
*?LXPosterEnable: ""
*CloseUI: *LXPosterEnable
*OpenUI *LXPosterSize/Size: PickOne
*de.Translation LXPosterSize/Format: ""
*es.Translation LXPosterSize/Tamaño: ""
*fr.Translation LXPosterSize/Format: ""
*it.Translation LXPosterSize/Dimensioni: ""
*ja.Translation LXPosterSize/大きさ: ""
*pt.Translation LXPosterSize/Tamanho: ""
*zh_CN.Translation LXPosterSize/尺寸: ""
*zh_TW.Translation LXPosterSize/尺寸: ""
*ko.Translation LXPosterSize/크기: ""
*OrderDependency: 601 AnySetup *LXPosterSize
*DefaultLXPosterSize: PosterSize2
*LXPosterSize PosterSize2/2 x 2 (4 pages): ""
*de.LXPosterSize PosterSize2/2 x 2 (4 Seiten): ""
*es.LXPosterSize PosterSize2/2 x 2 (4 páginas): ""
*fr.LXPosterSize PosterSize2/2 x 2 (4 pages): ""
*it.LXPosterSize PosterSize2/2 x 2 (4 pagine): ""
*ja.LXPosterSize PosterSize2/2 x 2(4 ページ): ""
*pt.LXPosterSize PosterSize2/2 x 2 (4 páginas): ""
*zh_CN.LXPosterSize PosterSize2/2 x 2 (4 页): ""
*zh_TW.LXPosterSize PosterSize2/2 X 2(4 頁): ""
*ko.LXPosterSize PosterSize2/2 x 2(4 페이지): ""
*LXPosterSize PosterSize3/3 x 3 (9 pages): ""
*de.LXPosterSize PosterSize3/3 x 3 (9 Seiten): ""
*es.LXPosterSize PosterSize3/3 x 3 (9 páginas): ""
*fr.LXPosterSize PosterSize3/3 x 3 (9 pages): ""
*it.LXPosterSize PosterSize3/3 x 3 (9 pagine): ""
*ja.LXPosterSize PosterSize3/3 x 3(9 ページ): ""
*pt.LXPosterSize PosterSize3/3 x 3 (9 páginas): ""
*zh_CN.LXPosterSize PosterSize3/3 x 3 (9 页): ""
*zh_TW.LXPosterSize PosterSize3/3 X 3(9 頁): ""
*ko.LXPosterSize PosterSize3/3 x 3(9 페이지): ""
*LXPosterSize PosterSize4/4 x 4 (16 pages): ""
*de.LXPosterSize PosterSize4/4 x 4 (16 Seiten): ""
*es.LXPosterSize PosterSize4/4 x 4 (16 páginas): ""
*fr.LXPosterSize PosterSize4/4 x 4 (16 pages): ""
*it.LXPosterSize PosterSize4/4 x 4 (16 pagine): ""
*ja.LXPosterSize PosterSize4/4 x 4(16 ページ): ""
*pt.LXPosterSize PosterSize4/4 x 4 (16 páginas): ""
*zh_CN.LXPosterSize PosterSize4/4 x 4 (16 页): ""
*zh_TW.LXPosterSize PosterSize4/4 X 4(16 頁): ""
*ko.LXPosterSize PosterSize4/4 x 4(16 페이지): ""
*?LXPosterSize: ""
*CloseUI: *LXPosterSize
*OpenUI *LXPosterOverlap/Overlap Between Pages: PickOne
*de.Translation LXPosterOverlap/Überlappung der Seiten: ""
*es.Translation LXPosterOverlap/Solapamiento entre páginas: ""
*fr.Translation LXPosterOverlap/Chevauchement des pages: ""
*it.Translation LXPosterOverlap/Sovrapposizione pagine: ""
*ja.Translation LXPosterOverlap/ページ間の重複: ""
*pt.Translation LXPosterOverlap/Sobreposição entre páginas: ""
*zh_CN.Translation LXPosterOverlap/页面之间交迭: ""
*zh_TW.Translation LXPosterOverlap/頁與頁之間的重疊影像: ""
*ko.Translation LXPosterOverlap/페이지 간격 오버랩: ""
*OrderDependency: 602 AnySetup *LXPosterOverlap
*DefaultLXPosterOverlap: None
*LXPosterOverlap None/None: ""
*de.LXPosterOverlap None/Aus: ""
*es.LXPosterOverlap None/Desactivado: ""
*fr.LXPosterOverlap None/Hors Fonction: ""
*it.LXPosterOverlap None/Disabilitato: ""
*ja.LXPosterOverlap None/なし: ""
*pt.LXPosterOverlap None/Nenhum: ""
*zh_CN.LXPosterOverlap None/无: ""
*zh_TW.LXPosterOverlap None/無: ""
*ko.LXPosterOverlap None/없음: ""
*LXPosterOverlap PosterOverlap0.25/1/4 inch: ""
*de.LXPosterOverlap PosterOverlap0.25/1/4 Zoll: ""
*es.LXPosterOverlap PosterOverlap0.25/1/4 de pulg.: ""
*fr.LXPosterOverlap PosterOverlap0.25/"0,63 cm (1/4 po.)": ""
*it.LXPosterOverlap PosterOverlap0.25/"0,25 pollici": ""
*ja.LXPosterOverlap PosterOverlap0.25/1/4 インチ: ""
*pt.LXPosterOverlap PosterOverlap0.25/1/4 polegada: ""
*zh_CN.LXPosterOverlap PosterOverlap0.25/1/4 英寸: ""
*zh_TW.LXPosterOverlap PosterOverlap0.25/1/4 英吋: ""
*ko.LXPosterOverlap PosterOverlap0.25/1/4 인치: ""
*LXPosterOverlap PosterOverlap0.5/1/2 inch: ""
*de.LXPosterOverlap PosterOverlap0.5/1/2 Zoll: ""
*es.LXPosterOverlap PosterOverlap0.5/1/2 de pulg.: ""
*fr.LXPosterOverlap PosterOverlap0.5/"1,27 cm (1/2 po.)": ""
*it.LXPosterOverlap PosterOverlap0.5/"0,5 pollici": ""
*ja.LXPosterOverlap PosterOverlap0.5/1/2 インチ: ""
*pt.LXPosterOverlap PosterOverlap0.5/1/2 polegada: ""
*zh_CN.LXPosterOverlap PosterOverlap0.5/1/2 英寸: ""
*zh_TW.LXPosterOverlap PosterOverlap0.5/1/2 英吋: ""
*ko.LXPosterOverlap PosterOverlap0.5/1/2 인치: ""
*LXPosterOverlap PosterOverlap0.75/3/4 inch: ""
*de.LXPosterOverlap PosterOverlap0.75/3/4 Zoll: ""
*es.LXPosterOverlap PosterOverlap0.75/3/4 de pulg.: ""
*fr.LXPosterOverlap PosterOverlap0.75/"1,9 cm (3/4 po.)": ""
*it.LXPosterOverlap PosterOverlap0.75/"0,75 pollici": ""
*ja.LXPosterOverlap PosterOverlap0.75/3/4 インチ: ""
*pt.LXPosterOverlap PosterOverlap0.75/3/4 polegada: ""
*zh_CN.LXPosterOverlap PosterOverlap0.75/3/4 英寸: ""
*zh_TW.LXPosterOverlap PosterOverlap0.75/3/4 英吋: ""
*ko.LXPosterOverlap PosterOverlap0.75/3/4 인치: ""
*LXPosterOverlap PosterOverlap1.0/1 inch: ""
*de.LXPosterOverlap PosterOverlap1.0/1 Zoll: ""
*es.LXPosterOverlap PosterOverlap1.0/1 pulg.: ""
*fr.LXPosterOverlap PosterOverlap1.0/"2,54 cm (1 po.)": ""
*it.LXPosterOverlap PosterOverlap1.0/1 pollice: ""
*ja.LXPosterOverlap PosterOverlap1.0/1 インチ: ""
*pt.LXPosterOverlap PosterOverlap1.0/1 polegada: ""
*zh_CN.LXPosterOverlap PosterOverlap1.0/1 英寸: ""
*zh_TW.LXPosterOverlap PosterOverlap1.0/1 英吋: ""
*ko.LXPosterOverlap PosterOverlap1.0/1 인치: ""
*LXPosterOverlap PosterOverlap1.25/1 1/4 inches: ""
*de.LXPosterOverlap PosterOverlap1.25/1 1/4 Zoll: ""
*es.LXPosterOverlap PosterOverlap1.25/1 pulg. y 1/4: ""
*fr.LXPosterOverlap PosterOverlap1.25/"3,17 cm (1 1/4 po.)": ""
*it.LXPosterOverlap PosterOverlap1.25/"1, 25 pollici": ""
*ja.LXPosterOverlap PosterOverlap1.25/1 1/4 インチ: ""
*pt.LXPosterOverlap PosterOverlap1.25/1 1/4 polegadas: ""
*zh_CN.LXPosterOverlap PosterOverlap1.25/1 1/4 英寸: ""
*zh_TW.LXPosterOverlap PosterOverlap1.25/1 1/4 英吋: ""
*ko.LXPosterOverlap PosterOverlap1.25/1 1/4 인치: ""
*LXPosterOverlap PosterOverlap1.5/1 1/2 inches: ""
*de.LXPosterOverlap PosterOverlap1.5/1 1/2 Zoll: ""
*es.LXPosterOverlap PosterOverlap1.5/1 pulg. y 1/2: ""
*fr.LXPosterOverlap PosterOverlap1.5/"3,81 cm (1 1/2 po.)": ""
*it.LXPosterOverlap PosterOverlap1.5/"1, 5 pollici": ""
*ja.LXPosterOverlap PosterOverlap1.5/1 1/2 インチ: ""
*pt.LXPosterOverlap PosterOverlap1.5/1 1/2 polegadas: ""
*zh_CN.LXPosterOverlap PosterOverlap1.5/1 1/2 英寸: ""
*zh_TW.LXPosterOverlap PosterOverlap1.5/1 1/2 英吋: ""
*ko.LXPosterOverlap PosterOverlap1.5/1 1/2 인치: ""
*LXPosterOverlap PosterOverlap1.75/1 3/4 inches: ""
*de.LXPosterOverlap PosterOverlap1.75/1 3/4 Zoll: ""
*es.LXPosterOverlap PosterOverlap1.75/1 pulg. y 3/4: ""
*fr.LXPosterOverlap PosterOverlap1.75/"4,44 cm (1 3/4 po.)": ""
*it.LXPosterOverlap PosterOverlap1.75/"1, 75 pollici": ""
*ja.LXPosterOverlap PosterOverlap1.75/1 3/4 インチ: ""
*pt.LXPosterOverlap PosterOverlap1.75/1 3/4 polegadas: ""
*zh_CN.LXPosterOverlap PosterOverlap1.75/1 3/4 英寸: ""
*zh_TW.LXPosterOverlap PosterOverlap1.75/1 3/4 英吋: ""
*ko.LXPosterOverlap PosterOverlap1.75/1 3/4 인치: ""
*LXPosterOverlap PosterOverlap2.0/2 inches: ""
*de.LXPosterOverlap PosterOverlap2.0/2 Zoll: ""
*es.LXPosterOverlap PosterOverlap2.0/2 pulg.: ""
*fr.LXPosterOverlap PosterOverlap2.0/"5,08 cm (2 po.)": ""
*it.LXPosterOverlap PosterOverlap2.0/2 pollici: ""
*ja.LXPosterOverlap PosterOverlap2.0/2 インチ: ""
*pt.LXPosterOverlap PosterOverlap2.0/2 polegadas: ""
*zh_CN.LXPosterOverlap PosterOverlap2.0/2 英寸: ""
*zh_TW.LXPosterOverlap PosterOverlap2.0/2 英吋: ""
*ko.LXPosterOverlap PosterOverlap2.0/2 인치: ""
*?LXPosterOverlap: ""
*CloseUI: *LXPosterOverlap
*OpenUI *LXPosterCrop/Print Crop Marks: Boolean
*de.Translation LXPosterCrop/Schnittmarkierungen drucken: ""
*es.Translation LXPosterCrop/Imprimir marcas de recorte: ""
*fr.Translation LXPosterCrop/Imprimer les repères de découpage: ""
*it.Translation LXPosterCrop/Stampa indicatori di ritaglio: ""
*ja.Translation LXPosterCrop/トンボを印刷: ""
*pt.Translation LXPosterCrop/Imprimir marcas de corte: ""
*zh_CN.Translation LXPosterCrop/打印裁剪标记: ""
*zh_TW.Translation LXPosterCrop/列印列印標記: ""
*ko.Translation LXPosterCrop/절단 표시 인쇄: ""
*OrderDependency: 603 AnySetup *LXPosterCrop
*DefaultLXPosterCrop: False
*LXPosterCrop False/Off: ""
*de.LXPosterCrop False/Aus: ""
*es.LXPosterCrop False/Desactivado: ""
*fr.LXPosterCrop False/Hors Fonction: ""
*it.LXPosterCrop False/Disabilitato: ""
*ja.LXPosterCrop False/オフ: ""
*pt.LXPosterCrop False/Desligado: ""
*zh_CN.LXPosterCrop False/关: ""
*zh_TW.LXPosterCrop False/關: ""
*ko.LXPosterCrop False/꺼짐: ""
*LXPosterCrop True/On: ""
*de.LXPosterCrop True/Ein: ""
*es.LXPosterCrop True/Activado: ""
*fr.LXPosterCrop True/En Fonction: ""
*it.LXPosterCrop True/Abilitato: ""
*ja.LXPosterCrop True/オン: ""
*pt.LXPosterCrop True/Ativar: ""
*zh_CN.LXPosterCrop True/开: ""
*zh_TW.LXPosterCrop True/開: ""
*ko.LXPosterCrop True/켜짐: ""
*?LXPosterCrop: ""
*CloseUI: *LXPosterCrop
*CloseGroup: Poster
*%******************************************************************************
*% Booklet
*%******************************************************************************
*OpenGroup: Booklet/Booklet
*de.Translation Booklet/Broschüre: ""
*es.Translation Booklet/Folleto: ""
*fr.Translation Booklet/Livret: ""
*it.Translation Booklet/Opuscolo: ""
*ja.Translation Booklet/ブックレット: ""
*pt.Translation Booklet/Brochura: ""
*zh_CN.Translation Booklet/小册子: ""
*zh_TW.Translation Booklet/小冊子: ""
*ko.Translation Booklet/팜플렛: ""
*OpenUI *LXBookletFold/Enable Booklet Printing: PickOne
*de.Translation LXBookletFold/Broschürendruck aktivieren: ""
*es.Translation LXBookletFold/Activar impresión de folleto: ""
*fr.Translation LXBookletFold/Impression d'un livret: ""
*it.Translation LXBookletFold/Abilita stampa opuscolo: ""
*ja.Translation LXBookletFold/ブックレット印刷を有効化: ""
*pt.Translation LXBookletFold/Habilitar impressão de brochura: ""
*zh_CN.Translation LXBookletFold/启用小册子打印: ""
*zh_TW.Translation LXBookletFold/啟動小冊子列印: ""
*ko.Translation LXBookletFold/팜플렛 인쇄 활성화: ""
*OrderDependency: 650 AnySetup *LXBookletFold
*DefaultLXBookletFold: PrinterS
*LXBookletFold PrinterS/Printer Setting: ""
*de.LXBookletFold PrinterS/Druckereinstellung: ""
*es.LXBookletFold PrinterS/Valor de la impresora: ""
*fr.LXBookletFold PrinterS/Paramètres de l'imprimante: ""
*it.LXBookletFold PrinterS/Impostazione stampante: ""
*ja.LXBookletFold PrinterS/プリンタ設定: ""
*pt.LXBookletFold PrinterS/Padrao da Impressora: ""
*zh_CN.LXBookletFold PrinterS/打印机设置: ""
*zh_TW.LXBookletFold PrinterS/印表機設置: ""
*ko.LXBookletFold PrinterS/프린터 설정 : ""
*LXBookletFold SaddleStitch/Fold and Staple: "<< /Fold 2 /Staple 4 /Nup true
/NupDetails << /Order 3 /LandscapeOverride true /Type 96 /Rows 2 /Columns 1
/Orientation 1 >> >> setpagedevice
statusdict /duplexer get exec
{ 2 dict dup /Duplex true put dup /Tumble true put setpagedevice}
{ 1 dict dup /Duplex false put setpagedevice}
ifelse"
*End
*de.LXBookletFold SaddleStitch/Falten und heften: ""<< /Fold 2 /Staple 4 /Nup true
*es.LXBookletFold SaddleStitch/Doblar y grapar: ""<< /Fold 2 /Staple 4 /Nup true
*fr.LXBookletFold SaddleStitch/Plier et agrafer: ""<< /Fold 2 /Staple 4 /Nup true
*it.LXBookletFold SaddleStitch/Piegatura e cucitura: ""<< /Fold 2 /Staple 4 /Nup true
*ja.LXBookletFold SaddleStitch/ホチキスで留めて折る: ""<< /Fold 2 /Staple 4 /Nup true
*pt.LXBookletFold SaddleStitch/Dobrar e grampear: ""<< /Fold 2 /Staple 4 /Nup true
*zh_CN.LXBookletFold SaddleStitch/折叠并装订: ""<< /Fold 2 /Staple 4 /Nup true
*zh_TW.LXBookletFold SaddleStitch/摺疊並裝訂: ""<< /Fold 2 /Staple 4 /Nup true
*ko.LXBookletFold SaddleStitch/접기 및 스태플로 고정: ""<< /Fold 2 /Staple 4 /Nup true
*LXBookletFold BookletFold/Fold: "<< /Fold 2 /Nup true /NupDetails
<< /Order 3 /LandscapeOverride true /Type 96 /Rows 2 /Columns 1
/Orientation 1 >> >> setpagedevice
statusdict /duplexer get exec
{ 2 dict dup /Duplex true put dup /Tumble true put setpagedevice}
{ 1 dict dup /Duplex false put setpagedevice}
ifelse"
*End
*de.LXBookletFold BookletFold/Falten: ""<< /Fold 2 /Nup true /NupDetails
*es.LXBookletFold BookletFold/Doblar: ""<< /Fold 2 /Nup true /NupDetails
*fr.LXBookletFold BookletFold/Plier: ""<< /Fold 2 /Nup true /NupDetails
*it.LXBookletFold BookletFold/Piegatura: ""<< /Fold 2 /Nup true /NupDetails
*ja.LXBookletFold BookletFold/折る: ""<< /Fold 2 /Nup true /NupDetails
*pt.LXBookletFold BookletFold/Dobrar: ""<< /Fold 2 /Nup true /NupDetails
*zh_CN.LXBookletFold BookletFold/折叠: ""<< /Fold 2 /Nup true /NupDetails
*zh_TW.LXBookletFold BookletFold/摺疊: ""<< /Fold 2 /Nup true /NupDetails
*ko.LXBookletFold BookletFold/접기: ""<< /Fold 2 /Nup true /NupDetails
*LXBookletFold BiFold/Fold Each Sheet Individually: "<< /Fold 1 /Nup true
/NupDetails << /Order 3 /LandscapeOverride true /Type 96 /Rows 2 /Columns 1
/Orientation 1 >> >> setpagedevice
statusdict /duplexer get exec
{ 2 dict dup /Duplex true put dup /Tumble true put setpagedevice}
{ 1 dict dup /Duplex false put setpagedevice}
ifelse"
*End
*de.LXBookletFold BiFold/Jedes Blatt einzeln falten: ""<< /Fold 1 /Nup true
*es.LXBookletFold BiFold/Doblar cada hoja individualmente: ""<< /Fold 1 /Nup true
*fr.LXBookletFold BiFold/Plier chaque feuille séparément: ""<< /Fold 1 /Nup true
*it.LXBookletFold BiFold/Piegare ogni foglio individualmente: ""<< /Fold 1 /Nup true
*ja.LXBookletFold BiFold/各用紙を一枚ずつ折る: ""<< /Fold 1 /Nup true
*pt.LXBookletFold BiFold/Dobrar cada folha individualmente: ""<< /Fold 1 /Nup true
*zh_CN.LXBookletFold BiFold/分别折叠每张纸: ""<< /Fold 1 /Nup true
*zh_TW.LXBookletFold BiFold/分別摺疊每張紙: ""<< /Fold 1 /Nup true
*ko.LXBookletFold BiFold/각 장을 개별적으로 접기: ""<< /Fold 1 /Nup true
*LXBookletFold DoNotFoldAndStaple/Do Not Fold or Staple: "<< /Fold 0 /Staple 0
/Nup true /NupDetails << /Order 3 /LandscapeOverride true /Type 96 /Rows 2
/Columns 1 /Orientation 1 >> >> setpagedevice
statusdict /duplexer get exec
{ 2 dict dup /Duplex true put dup /Tumble true put setpagedevice}
{ 1 dict dup /Duplex false put setpagedevice}
ifelse"
*End
*de.LXBookletFold DoNotFoldAndStaple/Nicht falten oder heften: ""<< /Fold 0 /Staple 0
*es.LXBookletFold DoNotFoldAndStaple/No doblar ni grapar: ""<< /Fold 0 /Staple 0
*fr.LXBookletFold DoNotFoldAndStaple/Ne pas plier ni agrafer: ""<< /Fold 0 /Staple 0
*it.LXBookletFold DoNotFoldAndStaple/Non piegare o cucire: ""<< /Fold 0 /Staple 0
*ja.LXBookletFold DoNotFoldAndStaple/用紙を折ったりホチキスで留めたりしない: ""<< /Fold 0 /Staple 0
*pt.LXBookletFold DoNotFoldAndStaple/Não dobrar nem grampear: ""<< /Fold 0 /Staple 0
*zh_CN.LXBookletFold DoNotFoldAndStaple/不折叠或装订: ""<< /Fold 0 /Staple 0
*zh_TW.LXBookletFold DoNotFoldAndStaple/不要折疊或裝訂: ""<< /Fold 0 /Staple 0
*ko.LXBookletFold DoNotFoldAndStaple/접거나 스태플 고정 않음: ""<< /Fold 0 /Staple 0
*LXBookletFold False/Off: "<< /Fold 0 >> setpagedevice"
*de.LXBookletFold False/Aus: ""
*es.LXBookletFold False/Desactivado: ""
*fr.LXBookletFold False/Hors Fonction: ""
*it.LXBookletFold False/Disabilitato: ""
*ja.LXBookletFold False/オフ: ""
*pt.LXBookletFold False/Desligado: ""
*zh_CN.LXBookletFold False/关: ""
*zh_TW.LXBookletFold False/關: ""
*ko.LXBookletFold False/꺼짐: ""
*CloseUI: *LXBookletFold
*OpenUI *LXBookletCoverPage/Cover: PickOne
*de.Translation LXBookletCoverPage/Deckblatt: ""
*es.Translation LXBookletCoverPage/Cubierta: ""
*fr.Translation LXBookletCoverPage/Couverture: ""
*it.Translation LXBookletCoverPage/Copertina: ""
*ja.Translation LXBookletCoverPage/表紙: ""
*pt.Translation LXBookletCoverPage/Folha de rosto: ""
*zh_CN.Translation LXBookletCoverPage/封面: ""
*zh_TW.Translation LXBookletCoverPage/封面: ""
*ko.Translation LXBookletCoverPage/표지: ""
*DefaultLXBookletCoverPage: PrinterS
*OrderDependency: 175 AnySetup *LXBookletCoverPage
*LXBookletCoverPage PrinterS/Printer Setting: ""
*de.LXBookletCoverPage PrinterS/Druckereinstellung: ""
*es.LXBookletCoverPage PrinterS/Valor de la impresora: ""
*fr.LXBookletCoverPage PrinterS/Paramètres de l'imprimante: ""
*it.LXBookletCoverPage PrinterS/Impostazione stampante: ""
*ja.LXBookletCoverPage PrinterS/プリンタ設定: ""
*pt.LXBookletCoverPage PrinterS/Padrao da Impressora: ""
*zh_CN.LXBookletCoverPage PrinterS/打印机设置: ""
*zh_TW.LXBookletCoverPage PrinterS/印表機設置: ""
*ko.LXBookletCoverPage PrinterS/프린터 설정 : ""
*LXBookletCoverPage False/Off: ""
*de.LXBookletCoverPage False/Aus: ""
*es.LXBookletCoverPage False/Desactivado: ""
*fr.LXBookletCoverPage False/Hors Fonction: ""
*it.LXBookletCoverPage False/Disabilitato: ""
*ja.LXBookletCoverPage False/オフ: ""
*pt.LXBookletCoverPage False/Desligado: ""
*zh_CN.LXBookletCoverPage False/关: ""
*zh_TW.LXBookletCoverPage False/關: ""
*ko.LXBookletCoverPage False/꺼짐: ""
*LXBookletCoverPage True/On: ""
*de.LXBookletCoverPage True/Ein: ""
*es.LXBookletCoverPage True/Activado: ""
*fr.LXBookletCoverPage True/En Fonction: ""
*it.LXBookletCoverPage True/Abilitato: ""
*ja.LXBookletCoverPage True/オン: ""
*pt.LXBookletCoverPage True/Ativar: ""
*zh_CN.LXBookletCoverPage True/开: ""
*zh_TW.LXBookletCoverPage True/開: ""
*ko.LXBookletCoverPage True/켜짐: ""
*?LXBookletCoverPage: "
gsave
currentpagedevice /LXBookletCoverPage get
(On) eq {(True)}{(False)} ifelse
= flush
grestore"
*End
*CloseUI: *LXBookletCoverPage
*OpenUI *LXOutsideFrontCover/Print on Outside of Front Cover: Boolean
*de.Translation LXOutsideFrontCover/Auf der Außenseite des vorderen Deckblatts drucken: ""
*es.Translation LXOutsideFrontCover/Imprimir fuera de la cubierta frontal: ""
*fr.Translation LXOutsideFrontCover/Imprimer recto sur première de couverture: ""
*it.Translation LXOutsideFrontCover/Stampa all'esterno della copertina anteriore: ""
*ja.Translation LXOutsideFrontCover/前表紙の外側に印刷: ""
*pt.Translation LXOutsideFrontCover/Imprimir na frente da folha de rosto: ""
*zh_CN.Translation LXOutsideFrontCover/打印在封面外侧: ""
*zh_TW.Translation LXOutsideFrontCover/列印在封面外頁上: ""
*ko.Translation LXOutsideFrontCover/앞 표지 바깥 인쇄: ""
*OrderDependency: 50 AnySetup *LXOutsideFrontCover
*DefaultLXOutsideFrontCover: False
*LXOutsideFrontCover False/Off: ""
*de.LXOutsideFrontCover False/Aus: ""
*es.LXOutsideFrontCover False/Desactivado: ""
*fr.LXOutsideFrontCover False/Hors Fonction: ""
*it.LXOutsideFrontCover False/Disabilitato: ""
*ja.LXOutsideFrontCover False/オフ: ""
*pt.LXOutsideFrontCover False/Desligado: ""
*zh_CN.LXOutsideFrontCover False/关: ""
*zh_TW.LXOutsideFrontCover False/關: ""
*ko.LXOutsideFrontCover False/꺼짐: ""
*LXOutsideFrontCover True/On: ""
*de.LXOutsideFrontCover True/Ein: ""
*es.LXOutsideFrontCover True/Activado: ""
*fr.LXOutsideFrontCover True/En Fonction: ""
*it.LXOutsideFrontCover True/Abilitato: ""
*ja.LXOutsideFrontCover True/オン: ""
*pt.LXOutsideFrontCover True/Ativar: ""
*zh_CN.LXOutsideFrontCover True/开: ""
*zh_TW.LXOutsideFrontCover True/開: ""
*ko.LXOutsideFrontCover True/켜짐: ""
*?LXOutsideFrontCover: ""
*CloseUI: *LXOutsideFrontCover
*OpenUI *LXInsideFrontCover/Print on Inside of Front Cover: Boolean
*de.Translation LXInsideFrontCover/Auf der Innenseite des vorderen Deckblatts drucken: ""
*es.Translation LXInsideFrontCover/Imprimir dentro de la cubierta frontal: ""
*fr.Translation LXInsideFrontCover/Imprimer verso sur deuxième de couverture: ""
*it.Translation LXInsideFrontCover/Stampa all'interno della copertina anteriore: ""
*ja.Translation LXInsideFrontCover/前表紙の内側に印刷: ""
*pt.Translation LXInsideFrontCover/Imprimir no verso da folha de rosto: ""
*zh_CN.Translation LXInsideFrontCover/打印在封面内侧: ""
*zh_TW.Translation LXInsideFrontCover/列印在封面內頁上: ""
*ko.Translation LXInsideFrontCover/앞 표지 안 인쇄: ""
*OrderDependency: 50 AnySetup *LXInsideFrontCover
*DefaultLXInsideFrontCover: False
*LXInsideFrontCover False/Off: ""
*de.LXInsideFrontCover False/Aus: ""
*es.LXInsideFrontCover False/Desactivado: ""
*fr.LXInsideFrontCover False/Hors Fonction: ""
*it.LXInsideFrontCover False/Disabilitato: ""
*ja.LXInsideFrontCover False/オフ: ""
*pt.LXInsideFrontCover False/Desligado: ""
*zh_CN.LXInsideFrontCover False/关: ""
*zh_TW.LXInsideFrontCover False/關: ""
*ko.LXInsideFrontCover False/꺼짐: ""
*LXInsideFrontCover True/On: ""
*de.LXInsideFrontCover True/Ein: ""
*es.LXInsideFrontCover True/Activado: ""
*fr.LXInsideFrontCover True/En Fonction: ""
*it.LXInsideFrontCover True/Abilitato: ""
*ja.LXInsideFrontCover True/オン: ""
*pt.LXInsideFrontCover True/Ativar: ""
*zh_CN.LXInsideFrontCover True/开: ""
*zh_TW.LXInsideFrontCover True/開: ""
*ko.LXInsideFrontCover True/켜짐: ""
*?LXInsideFrontCover: ""
*CloseUI: *LXInsideFrontCover
*OpenUI *LXInsideBackCover/Print on Inside of Back Cover: Boolean
*de.Translation LXInsideBackCover/Auf der Innenseite des hinteren Deckblatts drucken: ""
*es.Translation LXInsideBackCover/Imprimir dentro de la cubierta posterior: ""
*fr.Translation LXInsideBackCover/Imprimer verso sur troisième de couverture: ""
*it.Translation LXInsideBackCover/Stampa all'interno della copertina posteriore: ""
*ja.Translation LXInsideBackCover/裏表紙の内側に印刷: ""
*pt.Translation LXInsideBackCover/Imprimir no verso da contracapa: ""
*zh_CN.Translation LXInsideBackCover/打印在封底内侧: ""
*zh_TW.Translation LXInsideBackCover/列印在背頁內頁上: ""
*ko.Translation LXInsideBackCover/뒷 표지 안 인쇄: ""
*OrderDependency: 50 AnySetup *LXInsideBackCover
*DefaultLXInsideBackCover: False
*LXInsideBackCover False/Off: ""
*de.LXInsideBackCover False/Aus: ""
*es.LXInsideBackCover False/Desactivado: ""
*fr.LXInsideBackCover False/Hors Fonction: ""
*it.LXInsideBackCover False/Disabilitato: ""
*ja.LXInsideBackCover False/オフ: ""
*pt.LXInsideBackCover False/Desligado: ""
*zh_CN.LXInsideBackCover False/关: ""
*zh_TW.LXInsideBackCover False/關: ""
*ko.LXInsideBackCover False/꺼짐: ""
*LXInsideBackCover True/On: ""
*de.LXInsideBackCover True/Ein: ""
*es.LXInsideBackCover True/Activado: ""
*fr.LXInsideBackCover True/En Fonction: ""
*it.LXInsideBackCover True/Abilitato: ""
*ja.LXInsideBackCover True/オン: ""
*pt.LXInsideBackCover True/Ativar: ""
*zh_CN.LXInsideBackCover True/开: ""
*zh_TW.LXInsideBackCover True/開: ""
*ko.LXInsideBackCover True/켜짐: ""
*?LXInsideBackCover: ""
*CloseUI: *LXInsideBackCover
*OpenUI *LXOutsideBackCover/Print on Outside of Back Cover: Boolean
*de.Translation LXOutsideBackCover/Auf der Außenseite des hinteren Deckblatts drucken: ""
*es.Translation LXOutsideBackCover/Imprimir fuera de la cubierta posterior: ""
*fr.Translation LXOutsideBackCover/Imprimer recto sur quatrième de couverture: ""
*it.Translation LXOutsideBackCover/Stampa all'esterno della copertina posteriore: ""
*ja.Translation LXOutsideBackCover/裏表紙の外側に印刷: ""
*pt.Translation LXOutsideBackCover/Imprimir na frente da contracapa: ""
*zh_CN.Translation LXOutsideBackCover/打印在封底外侧: ""
*zh_TW.Translation LXOutsideBackCover/列印在背頁外頁上: ""
*ko.Translation LXOutsideBackCover/뒷 표지 바깥 인쇄: ""
*OrderDependency: 50 AnySetup *LXOutsideBackCover
*DefaultLXOutsideBackCover: False
*LXOutsideBackCover False/Off: ""
*de.LXOutsideBackCover False/Aus: ""
*es.LXOutsideBackCover False/Desactivado: ""
*fr.LXOutsideBackCover False/Hors Fonction: ""
*it.LXOutsideBackCover False/Disabilitato: ""
*ja.LXOutsideBackCover False/オフ: ""
*pt.LXOutsideBackCover False/Desligado: ""
*zh_CN.LXOutsideBackCover False/关: ""
*zh_TW.LXOutsideBackCover False/關: ""
*ko.LXOutsideBackCover False/꺼짐: ""
*LXOutsideBackCover True/On: ""
*de.LXOutsideBackCover True/Ein: ""
*es.LXOutsideBackCover True/Activado: ""
*fr.LXOutsideBackCover True/En Fonction: ""
*it.LXOutsideBackCover True/Abilitato: ""
*ja.LXOutsideBackCover True/オン: ""
*pt.LXOutsideBackCover True/Ativar: ""
*zh_CN.LXOutsideBackCover True/开: ""
*zh_TW.LXOutsideBackCover True/開: ""
*ko.LXOutsideBackCover True/켜짐: ""
*?LXOutsideBackCover: ""
*CloseUI: *LXOutsideBackCover
*CloseGroup: Booklet
*%******************************************************************************
*% Booklet Cover Group
*%******************************************************************************
*OpenGroup: BookletCover/Booklet Cover Paper
*de.Translation BookletCover/Broschüren-Deckblattpapier: ""
*es.Translation BookletCover/Papel de cubierta de folleto: ""
*fr.Translation BookletCover/Papier couverture livret: ""
*it.Translation BookletCover/Carta copertina opuscolo: ""
*ja.Translation BookletCover/小冊子表紙の紙: ""
*pt.Translation BookletCover/Papel da folha de rosto de brochura: ""
*zh_CN.Translation BookletCover/小册子封面纸张: ""
*zh_TW.Translation BookletCover/小冊子封面紙張: ""
*ko.Translation BookletCover/소책자 표지 용지: ""
*OpenUI *LXBookletCoverType/Cover Paper Type: PickOne
*de.Translation LXBookletCoverType/Deckblatt-Papiertyp: ""
*es.Translation LXBookletCoverType/Tipo de papel de cubierta: ""
*fr.Translation LXBookletCoverType/Type papier couverture: ""
*it.Translation LXBookletCoverType/Tipo di carta della copertina: ""
*ja.Translation LXBookletCoverType/表紙用の用紙の種類: ""
*pt.Translation LXBookletCoverType/Tipo de papel da folha de rosto: ""
*zh_CN.Translation LXBookletCoverType/封面纸张类型: ""
*zh_TW.Translation LXBookletCoverType/封面紙張種類: ""
*ko.Translation LXBookletCoverType/표지 용지 유형: ""
*OrderDependency: 650 AnySetup *LXBookletCoverType
*DefaultLXBookletCoverType: PrinterS
*LXBookletCoverType PrinterS/Printer Setting: ""
*de.LXBookletCoverType PrinterS/Druckereinstellung: ""
*es.LXBookletCoverType PrinterS/Valor de la impresora: ""
*fr.LXBookletCoverType PrinterS/Paramètres de l'imprimante: ""
*it.LXBookletCoverType PrinterS/Impostazione stampante: ""
*ja.LXBookletCoverType PrinterS/プリンタ設定: ""
*pt.LXBookletCoverType PrinterS/Padrao da Impressora: ""
*zh_CN.LXBookletCoverType PrinterS/打印机设置: ""
*zh_TW.LXBookletCoverType PrinterS/印表機設置: ""
*ko.LXBookletCoverType PrinterS/프린터 설정 : ""
*LXBookletCoverType Plain/Plain Paper: ""
*de.LXBookletCoverType Plain/Normalpapier: ""
*es.LXBookletCoverType Plain/Papel normal: ""
*fr.LXBookletCoverType Plain/Papier Normal: ""
*it.LXBookletCoverType Plain/Carta normale: ""
*ja.LXBookletCoverType Plain/普通紙: ""
*pt.LXBookletCoverType Plain/Papel normal: ""
*zh_CN.LXBookletCoverType Plain/普通纸: ""
*zh_TW.LXBookletCoverType Plain/普通紙: ""
*ko.LXBookletCoverType Plain/일반 용지: ""
*LXBookletCoverType Card/Card Stock: ""
*de.LXBookletCoverType Card/Karton: ""
*es.LXBookletCoverType Card/Tarjeta: ""
*fr.LXBookletCoverType Card/Bristol: ""
*it.LXBookletCoverType Card/Cartoncino: ""
*ja.LXBookletCoverType Card/厚紙: ""
*pt.LXBookletCoverType Card/Cartões: ""
*zh_CN.LXBookletCoverType Card/卡片纸: ""
*zh_TW.LXBookletCoverType Card/卡片: ""
*ko.LXBookletCoverType Card/카드 용지: ""
*LXBookletCoverType Bond/Bond: ""
*de.LXBookletCoverType Bond/Feinpostpapier: ""
*es.LXBookletCoverType Bond/Alta calidad: ""
*fr.LXBookletCoverType Bond/Ordinaire: ""
*it.LXBookletCoverType Bond/Di qualitá: ""
*ja.LXBookletCoverType Bond/ボンド紙: ""
*pt.LXBookletCoverType Bond/Encorpado: ""
*zh_CN.LXBookletCoverType Bond/铜版纸: ""
*zh_TW.LXBookletCoverType Bond/無覆膜的雪銅紙: ""
*ko.LXBookletCoverType Bond/본드: ""
*LXBookletCoverType Letterhead/Letterhead: ""
*de.LXBookletCoverType Letterhead/Briefbogen: ""
*es.LXBookletCoverType Letterhead/Cabecera: ""
*fr.LXBookletCoverType Letterhead/En-tête: ""
*it.LXBookletCoverType Letterhead/Carta intestata: ""
*ja.LXBookletCoverType Letterhead/レターヘッド: ""
*pt.LXBookletCoverType Letterhead/Timbrado: ""
*zh_CN.LXBookletCoverType Letterhead/信签: ""
*zh_TW.LXBookletCoverType Letterhead/銜頭紙: ""
*ko.LXBookletCoverType Letterhead/레터헤드: ""
*LXBookletCoverType Preprint/Preprinted: ""
*de.LXBookletCoverType Preprint/Vorgedruckt: ""
*es.LXBookletCoverType Preprint/Preimpreso: ""
*fr.LXBookletCoverType Preprint/Préimprimé: ""
*it.LXBookletCoverType Preprint/Prestampati: ""
*ja.LXBookletCoverType Preprint/プレプリント: ""
*pt.LXBookletCoverType Preprint/Pré-impresso: ""
*zh_CN.LXBookletCoverType Preprint/预印纸: ""
*zh_TW.LXBookletCoverType Preprint/預印: ""
*ko.LXBookletCoverType Preprint/양면지: ""
*LXBookletCoverType Colored/Colored Paper: ""
*de.LXBookletCoverType Colored/Farbpapier: ""
*es.LXBookletCoverType Colored/Papel color: ""
*fr.LXBookletCoverType Colored/Papier couleur: ""
*it.LXBookletCoverType Colored/Carta colorata: ""
*ja.LXBookletCoverType Colored/カラー紙: ""
*pt.LXBookletCoverType Colored/Papel colorido: ""
*zh_CN.LXBookletCoverType Colored/彩色纸: ""
*zh_TW.LXBookletCoverType Colored/彩色紙: ""
*ko.LXBookletCoverType Colored/색상지: ""
*LXBookletCoverType Glossy/Glossy Paper: ""
*de.LXBookletCoverType Glossy/Glanzpapier: ""
*es.LXBookletCoverType Glossy/Papel brillante: ""
*fr.LXBookletCoverType Glossy/Papier glacé: ""
*it.LXBookletCoverType Glossy/Carta lucida: ""
*ja.LXBookletCoverType Glossy/光沢紙: ""
*pt.LXBookletCoverType Glossy/Papel Brilho: ""
*zh_CN.LXBookletCoverType Glossy/光面纸: ""
*zh_TW.LXBookletCoverType Glossy/光面紙: ""
*ko.LXBookletCoverType Glossy/광택지: ""
*LXBookletCoverType Custom1/Custom Type 1: ""
*de.LXBookletCoverType Custom1/Benutzerdef. 1: ""
*es.LXBookletCoverType Custom1/Personalizado tipo 1: ""
*fr.LXBookletCoverType Custom1/Personnalisé 1: ""
*it.LXBookletCoverType Custom1/Pers. tipo 1: ""
*ja.LXBookletCoverType Custom1/カスタム タイプ 1: ""
*pt.LXBookletCoverType Custom1/Person tipo 1: ""
*zh_CN.LXBookletCoverType Custom1/定制类型 1: ""
*zh_TW.LXBookletCoverType Custom1/自訂種類 1: ""
*ko.LXBookletCoverType Custom1/사용자 양식 1: ""
*LXBookletCoverType Custom2/Custom Type 2: ""
*de.LXBookletCoverType Custom2/Benutzerdef. 2: ""
*es.LXBookletCoverType Custom2/Personalizado tipo 2: ""
*fr.LXBookletCoverType Custom2/Personnalisé 2: ""
*it.LXBookletCoverType Custom2/Pers. tipo 2: ""
*ja.LXBookletCoverType Custom2/カスタム タイプ 2: ""
*pt.LXBookletCoverType Custom2/Person tipo 2: ""
*zh_CN.LXBookletCoverType Custom2/定制类型 2: ""
*zh_TW.LXBookletCoverType Custom2/自訂種類 2: ""
*ko.LXBookletCoverType Custom2/사용자 양식 2: ""
*LXBookletCoverType Custom3/Custom Type 3: ""
*de.LXBookletCoverType Custom3/Benutzerdef. 3: ""
*es.LXBookletCoverType Custom3/Personalizado tipo 3: ""
*fr.LXBookletCoverType Custom3/Personnalisé 3: ""
*it.LXBookletCoverType Custom3/Pers. tipo 3: ""
*ja.LXBookletCoverType Custom3/カスタム タイプ 3: ""
*pt.LXBookletCoverType Custom3/Person tipo 3: ""
*zh_CN.LXBookletCoverType Custom3/定制类型 3: ""
*zh_TW.LXBookletCoverType Custom3/自訂種類 3: ""
*ko.LXBookletCoverType Custom3/사용자 양식 3: ""
*LXBookletCoverType Custom4/Custom Type 4: ""
*de.LXBookletCoverType Custom4/Benutzerdef. 4: ""
*es.LXBookletCoverType Custom4/Personalizado tipo 4: ""
*fr.LXBookletCoverType Custom4/Personnalisé 4: ""
*it.LXBookletCoverType Custom4/Pers. tipo 4: ""
*ja.LXBookletCoverType Custom4/カスタム タイプ 4: ""
*pt.LXBookletCoverType Custom4/Person tipo 4: ""
*zh_CN.LXBookletCoverType Custom4/定制类型 4: ""
*zh_TW.LXBookletCoverType Custom4/自訂種類 4: ""
*ko.LXBookletCoverType Custom4/사용자 양식 4: ""
*LXBookletCoverType Custom5/Custom Type 5: ""
*de.LXBookletCoverType Custom5/Benutzerdef. 5: ""
*es.LXBookletCoverType Custom5/Personalizado tipo 5: ""
*fr.LXBookletCoverType Custom5/Personnalisé 5: ""
*it.LXBookletCoverType Custom5/Pers. tipo 5: ""
*ja.LXBookletCoverType Custom5/カスタム タイプ 5: ""
*pt.LXBookletCoverType Custom5/Person tipo 5: ""
*zh_CN.LXBookletCoverType Custom5/定制类型 5: ""
*zh_TW.LXBookletCoverType Custom5/自訂種類 5: ""
*ko.LXBookletCoverType Custom5/사용자 양식 5: ""
*LXBookletCoverType Custom6/Custom Type 6: ""
*de.LXBookletCoverType Custom6/Benutzerdef. 6: ""
*es.LXBookletCoverType Custom6/Personalizado tipo 6: ""
*fr.LXBookletCoverType Custom6/Personnalisé 6: ""
*it.LXBookletCoverType Custom6/Pers. tipo 6: ""
*ja.LXBookletCoverType Custom6/カスタム タイプ 6: ""
*pt.LXBookletCoverType Custom6/Person tipo 6: ""
*zh_CN.LXBookletCoverType Custom6/定制类型 6: ""
*zh_TW.LXBookletCoverType Custom6/自訂種類 6: ""
*ko.LXBookletCoverType Custom6/사용자 양식 6: ""
*End
*?LXBookletCoverType: ""
*CloseUI: *LXBookletCoverType
*OpenUI *LXBookletCoverSource/Cover Paper Source: PickOne
*de.Translation LXBookletCoverSource/Deckblatt-Papierquelle: ""
*es.Translation LXBookletCoverSource/Origen de papel de cubierta: ""
*fr.Translation LXBookletCoverSource/Source papier couverture: ""
*it.Translation LXBookletCoverSource/Origine carta della copertina: ""
*ja.Translation LXBookletCoverSource/表紙用の用紙の給紙源: ""
*pt.Translation LXBookletCoverSource/Origem do papel da folha de rosto: ""
*zh_CN.Translation LXBookletCoverSource/封面纸张来源: ""
*zh_TW.Translation LXBookletCoverSource/封面紙張來源: ""
*ko.Translation LXBookletCoverSource/표지 용지 급지대: ""
*OrderDependency: 650 AnySetup *LXBookletCoverSource
*DefaultLXBookletCoverSource: PrinterS
*LXBookletCoverSource PrinterS/Printer Setting: ""
*de.LXBookletCoverSource PrinterS/Druckereinstellung: ""
*es.LXBookletCoverSource PrinterS/Valor de la impresora: ""
*fr.LXBookletCoverSource PrinterS/Paramètres de l'imprimante: ""
*it.LXBookletCoverSource PrinterS/Impostazione stampante: ""
*ja.LXBookletCoverSource PrinterS/プリンタ設定: ""
*pt.LXBookletCoverSource PrinterS/Padrao da Impressora: ""
*zh_CN.LXBookletCoverSource PrinterS/打印机设置: ""
*zh_TW.LXBookletCoverSource PrinterS/印表機設置: ""
*ko.LXBookletCoverSource PrinterS/프린터 설정 : ""
*LXBookletCoverSource Tray1/Tray 1: ""
*de.LXBookletCoverSource Tray1/Fach 1: ""
*es.LXBookletCoverSource Tray1/Bandeja 1: ""
*fr.LXBookletCoverSource Tray1/Tiroir 1: ""
*it.LXBookletCoverSource Tray1/Vassoio 1: ""
*ja.LXBookletCoverSource Tray1/カセット 1: ""
*pt.LXBookletCoverSource Tray1/Bandeja 1: ""
*zh_CN.LXBookletCoverSource Tray1/进纸匣 1: ""
*zh_TW.LXBookletCoverSource Tray1/裝紙匣 1: ""
*ko.LXBookletCoverSource Tray1/트레이 1: ""
*LXBookletCoverSource Tray2/Tray 2: ""
*de.LXBookletCoverSource Tray2/Fach 2: ""
*es.LXBookletCoverSource Tray2/Bandeja 2: ""
*fr.LXBookletCoverSource Tray2/Tiroir 2: ""
*it.LXBookletCoverSource Tray2/Vassoio 2: ""
*ja.LXBookletCoverSource Tray2/カセット 2: ""
*pt.LXBookletCoverSource Tray2/Bandeja 2: ""
*zh_CN.LXBookletCoverSource Tray2/进纸匣 2: ""
*zh_TW.LXBookletCoverSource Tray2/裝紙匣 2: ""
*ko.LXBookletCoverSource Tray2/트레이 2: ""
*LXBookletCoverSource Tray3/Tray 3: ""
*de.LXBookletCoverSource Tray3/Fach 3: ""
*es.LXBookletCoverSource Tray3/Bandeja 3: ""
*fr.LXBookletCoverSource Tray3/Tiroir 3: ""
*it.LXBookletCoverSource Tray3/Vassoio 3: ""
*ja.LXBookletCoverSource Tray3/カセット 3: ""
*pt.LXBookletCoverSource Tray3/Bandeja 3: ""
*zh_CN.LXBookletCoverSource Tray3/进纸匣 3: ""
*zh_TW.LXBookletCoverSource Tray3/裝紙匣 3: ""
*ko.LXBookletCoverSource Tray3/트레이 3: ""
*LXBookletCoverSource Tray4/Tray 4: ""
*de.LXBookletCoverSource Tray4/Fach 4: ""
*es.LXBookletCoverSource Tray4/Bandeja 4: ""
*fr.LXBookletCoverSource Tray4/Tiroir 4: ""
*it.LXBookletCoverSource Tray4/Vassoio 4: ""
*ja.LXBookletCoverSource Tray4/カセット 4: ""
*pt.LXBookletCoverSource Tray4/Bandeja 4: ""
*zh_CN.LXBookletCoverSource Tray4/进纸匣 4: ""
*zh_TW.LXBookletCoverSource Tray4/裝紙匣 4: ""
*ko.LXBookletCoverSource Tray4/트레이 4: ""
*LXBookletCoverSource MultipurposeFeeder/Multipurpose Feeder: ""
*de.LXBookletCoverSource MultipurposeFeeder/Universal: ""
*es.LXBookletCoverSource MultipurposeFeeder/Alimentador Multiuso: ""
*fr.LXBookletCoverSource MultipurposeFeeder/Bac Multifonction: ""
*it.LXBookletCoverSource MultipurposeFeeder/Alimentatore multiuso: ""
*ja.LXBookletCoverSource MultipurposeFeeder/多目的フィーダ: ""
*pt.LXBookletCoverSource MultipurposeFeeder/Alimentador Multipropósito: ""
*zh_CN.LXBookletCoverSource MultipurposeFeeder/多功能进纸器: ""
*zh_TW.LXBookletCoverSource MultipurposeFeeder/多用途送紙器: ""
*ko.LXBookletCoverSource MultipurposeFeeder/다용도 급지기: ""
*LXBookletCoverSource ManualPaper/Manual Paper: ""
*de.LXBookletCoverSource ManualPaper/Papier manuell: ""
*es.LXBookletCoverSource ManualPaper/Papel manual: ""
*fr.LXBookletCoverSource ManualPaper/Manuel papier: ""
*it.LXBookletCoverSource ManualPaper/Carta manuale: ""
*ja.LXBookletCoverSource ManualPaper/手差し用紙: ""
*pt.LXBookletCoverSource ManualPaper/Papel Manual: ""
*zh_CN.LXBookletCoverSource ManualPaper/手动纸张: ""
*zh_TW.LXBookletCoverSource ManualPaper/手動送紙: ""
*ko.LXBookletCoverSource ManualPaper/수동 용지: ""
*?LXBookletCoverSource: "
gsave
currentpagedevice /SlipSheetDetails get /SlipSheetSource get
dup dup dup dup dup dup
6 eq
{(Tray5)}{5 eq
{(Tray4)}{4 eq
{(MultipurposeFeeder)}{3 eq
{(Tray3)}{1 eq
{(Tray2)}{0 eq
{(Tray1)}{(Off)}
ifelse}
ifelse}
ifelse}
ifelse}
ifelse}
ifelse
= flush
grestore"
*End
*?LXBookletSource: ""
*CloseUI: *LXBookletCoverSource
*CloseGroup: BookletCover
*%******************************************************************************
*% Job Routing Group
*%******************************************************************************
*%******************************************************************************
*% Landscape Orientation
*%******************************************************************************
*LandscapeOrientation: Minus90 *% OS9 %*
*LandscapeOrientation: Minus90 *% OSX %*
*%******************************************************************************
*% Page Definitions
*%******************************************************************************
*%******************************************************************************
*% Page Size
*%******************************************************************************
*OpenUI *PageSize/Page Size: PickOne
*de.Translation PageSize/Page Size: ""
*es.Translation PageSize/Page Size: ""
*fr.Translation PageSize/Page Size: ""
*it.Translation PageSize/Page Size: ""
*ja.Translation PageSize/Page Size: ""
*pt.Translation PageSize/Page Size: ""
*zh_CN.Translation PageSize/Page Size: ""
*zh_TW.Translation PageSize/Page Size: ""
*ko.Translation PageSize/Page Size: ""
*OrderDependency: 30 AnySetup *PageSize
*DefaultPageSize: Letter
*PageSize Letter/Letter: "
<< /Policies << /PageSize 2 >> /PageSize [612 792] /ImagingBBox null >> setpagedevice"
*End
*de.PageSize Letter/Letter: ""
*es.PageSize Letter/Carta: ""
*fr.PageSize Letter/Lettre US: ""
*it.PageSize Letter/Letter: ""
*ja.PageSize Letter/レター: ""
*pt.PageSize Letter/Carta: ""
*zh_CN.PageSize Letter/信纸: ""
*zh_TW.PageSize Letter/Letter: ""
*ko.PageSize Letter/레터: ""
*PageSize Legal/Legal: "
<< /Policies << /PageSize 2 >> /PageSize [612 1008] /ImagingBBox null >> setpagedevice"
*End
*de.PageSize Legal/Legal: ""
*es.PageSize Legal/Oficio: ""
*fr.PageSize Legal/Légal US: ""
*it.PageSize Legal/Legal: ""
*ja.PageSize Legal/リーガル: ""
*pt.PageSize Legal/Oficio: ""
*zh_CN.PageSize Legal/标准法律用纸: ""
*zh_TW.PageSize Legal/Legal: ""
*ko.PageSize Legal/리갈: ""
*PageSize B5/JIS B5: "
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
*de.PageSize B5/JIS B5: ""
*es.PageSize B5/JIS B5: ""
*fr.PageSize B5/JIS B5: ""
*it.PageSize B5/JIS B5: ""
*ja.PageSize B5/JIS B5: ""
*pt.PageSize B5/JIS B5: ""
*zh_CN.PageSize B5/JIS B5: ""
*zh_TW.PageSize B5/JIS B5: ""
*ko.PageSize B5/JIS B5: ""
*PageSize B4/JIS B4: "
<< /Policies << /PageSize 2 >> /PageSize [729 1032] /ImagingBBox null >> setpagedevice"
*End
*de.PageSize B4/JIS B4: ""
*es.PageSize B4/JIS B4: ""
*fr.PageSize B4/JIS B4: ""
*it.PageSize B4/JIS B4: ""
*ja.PageSize B4/JIS B4: ""
*pt.PageSize B4/JIS B4: ""
*zh_CN.PageSize B4/JIS B4: ""
*zh_TW.PageSize B4/JIS B4: ""
*ko.PageSize B4/JIS B4: ""
*PageSize A4/A4: "
<< /Policies << /PageSize 2 >> /PageSize [595 842] /ImagingBBox null >> setpagedevice"
*End
*de.PageSize A4/A4: ""
*es.PageSize A4/A4: ""
*fr.PageSize A4/A4: ""
*it.PageSize A4/A4: ""
*ja.PageSize A4/A4: ""
*pt.PageSize A4/A4: ""
*zh_CN.PageSize A4/A4: ""
*zh_TW.PageSize A4/A4: ""
*ko.PageSize A4/A4: ""
*PageSize Executive/Executive: "
<< /Policies << /PageSize 2 >> /PageSize [522 756] /ImagingBBox null >> setpagedevice"
*End
*de.PageSize Executive/Executive: ""
*es.PageSize Executive/Ejecutivo: ""
*fr.PageSize Executive/Exécutive US: ""
*it.PageSize Executive/Executive: ""
*ja.PageSize Executive/Executive: ""
*pt.PageSize Executive/Executivo: ""
*zh_CN.PageSize Executive/实用纸张: ""
*zh_TW.PageSize Executive/Executive: ""
*ko.PageSize Executive/Executive: ""
*PageSize A5/A5: "
<< /Policies << /PageSize 2 >> /PageSize [420 595] /ImagingBBox null >> setpagedevice"
*End
*de.PageSize A5/A5: ""
*es.PageSize A5/A5: ""
*fr.PageSize A5/A5: ""
*it.PageSize A5/A5: ""
*ja.PageSize A5/A5: ""
*pt.PageSize A5/A5: ""
*zh_CN.PageSize A5/A5: ""
*zh_TW.PageSize A5/A5: ""
*ko.PageSize A5/A5: ""
*PageSize A3/A3: "
<< /Policies << /PageSize 2 >> /PageSize [842 1191] /ImagingBBox null >> setpagedevice"
*End
*de.PageSize A3/A3: ""
*es.PageSize A3/A3: ""
*fr.PageSize A3/A3: ""
*it.PageSize A3/A3: ""
*ja.PageSize A3/A3: ""
*pt.PageSize A3/A3: ""
*zh_CN.PageSize A3/A3: ""
*zh_TW.PageSize A3/A3: ""
*ko.PageSize A3/A3: ""
*PageSize 11x17/11 x 17: "
<< /Policies << /PageSize 2 >> /PageSize [792 1224] /ImagingBBox null >> setpagedevice"
*End
*de.PageSize 11x17/11 x 17: ""
*es.PageSize 11x17/11 x 17: ""
*fr.PageSize 11x17/Tabloïd 11x17: ""
*it.PageSize 11x17/11 x 17: ""
*ja.PageSize 11x17/11 x 17(タブロイド): ""
*pt.PageSize 11x17/11 x 17: ""
*zh_CN.PageSize 11x17/11 x 17: ""
*zh_TW.PageSize 11x17/11 x 17: ""
*ko.PageSize 11x17/11 x 17: ""
*PageSize Folio/Folio: "
<< /Policies << /PageSize 2 >> /PageSize [612 936] /ImagingBBox null >> setpagedevice"
*End
*de.PageSize Folio/Folio: ""
*es.PageSize Folio/Folio: ""
*fr.PageSize Folio/Folio: ""
*it.PageSize Folio/Folio: ""
*ja.PageSize Folio/フォリオ: ""
*pt.PageSize Folio/Oficio 2: ""
*zh_CN.PageSize Folio/对开纸: ""
*zh_TW.PageSize Folio/Folio 紙張: ""
*ko.PageSize Folio/폴리오: ""
*PageSize Statement/Statement: "
<< /Policies << /PageSize 2 >> /PageSize [396 612] /ImagingBBox null >> setpagedevice"
*End
*de.PageSize Statement/Statement: ""
*es.PageSize Statement/Media carta: ""
*fr.PageSize Statement/Statement US: ""
*it.PageSize Statement/Statement: ""
*ja.PageSize Statement/ステートメント: ""
*pt.PageSize Statement/Declaração: ""
*zh_CN.PageSize Statement/报表: ""
*zh_TW.PageSize Statement/Statement 紙張: ""
*ko.PageSize Statement/Statement: ""
*PageSize Monarch/7 3/4 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [279 540] /ImagingBBox null >> setpagedevice
<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*End
*de.PageSize Monarch/7 3/4 Briefumschlag: ""
*es.PageSize Monarch/Sobres 7 3/4: ""
*fr.PageSize Monarch/Enveloppe 7 3/4: ""
*it.PageSize Monarch/Busta 7 3/4: ""
*ja.PageSize Monarch/封筒(7 3/4): ""
*pt.PageSize Monarch/Envelope 7 3/4: ""
*zh_CN.PageSize Monarch/7 3/4 信封: ""
*zh_TW.PageSize Monarch/7 3/4 信封: ""
*ko.PageSize Monarch/7 3/4 봉투: ""
*PageSize Comm10/10 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [297 684] /ImagingBBox null >> setpagedevice
<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*End
*de.PageSize Comm10/C10 Briefumschlag: ""
*es.PageSize Comm10/Sobres 10: ""
*fr.PageSize Comm10/Enveloppe C10: ""
*it.PageSize Comm10/Busta 10: ""
*ja.PageSize Comm10/封筒(C10号): ""
*pt.PageSize Comm10/Envelope C10: ""
*zh_CN.PageSize Comm10/C10 信封: ""
*zh_TW.PageSize Comm10/C10 號信封: ""
*ko.PageSize Comm10/C10 봉투: ""
*PageSize DL/DL Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [312 624] /ImagingBBox null >> setpagedevice
<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*End
*de.PageSize DL/DL Briefumschlag: ""
*es.PageSize DL/Sobres DL: ""
*fr.PageSize DL/Enveloppe DL: ""
*it.PageSize DL/Busta DL: ""
*ja.PageSize DL/封筒(DL): ""
*pt.PageSize DL/Envelope DL: ""
*zh_CN.PageSize DL/DL 信封: ""
*zh_TW.PageSize DL/DL 信封: ""
*ko.PageSize DL/DL 봉투: ""
*PageSize C5/C5 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [459 649] /ImagingBBox null >> setpagedevice
<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*End
*de.PageSize C5/C5 Briefumschlag: ""
*es.PageSize C5/Sobres C5: ""
*fr.PageSize C5/Enveloppe C5: ""
*it.PageSize C5/Busta C5: ""
*ja.PageSize C5/封筒(C5号): ""
*pt.PageSize C5/Envelope C5: ""
*zh_CN.PageSize C5/C5 信封: ""
*zh_TW.PageSize C5/C5 信封: ""
*ko.PageSize C5/C5 봉투: ""
*PageSize ISOB5/B5 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [499 708] /ImagingBBox null >> setpagedevice
<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*End
*de.PageSize ISOB5/B5 Briefumschlag: ""
*es.PageSize ISOB5/Sobres B5: ""
*fr.PageSize ISOB5/Enveloppe B5: ""
*it.PageSize ISOB5/Busta B5: ""
*ja.PageSize ISOB5/封筒(B5号): ""
*pt.PageSize ISOB5/Envelope B5: ""
*zh_CN.PageSize ISOB5/B5 信封: ""
*zh_TW.PageSize ISOB5/B5 信封: ""
*ko.PageSize ISOB5/B5 봉투: ""
*?PageSize: "
save
19 dict
dup /letter (Letter) put
dup /legal (Legal) put
dup /a4 (A4) put
dup /executivepage (Executive) put
dup /folio (Folio) put
dup /statement (Statement) put
dup /b5 (B5) put
dup /a5 (A5) put
dup /a3 (A3) put
dup /b4 (B4) put
dup /ledger (11x17) put
dup /3.875x7.5envelope (Monarch) put
dup /4.125x9.5envelope (Comm10) put
dup /110x220envelope (DL) put
dup /162x229envelope (C5) put
dup /176x250envelope (ISOB5) put
statusdict /papersize get exec
3 1 roll {get} stopped {(Unknown)} if
exch not { print (.Transverse) } if
= flush
restore"
*End
*CloseUI: *PageSize
*%*****************************************************************************
*% Page Region
*%*****************************************************************************
*OpenUI *PageRegion/Page Region: PickOne
*de.Translation PageRegion/Page Region: ""
*es.Translation PageRegion/Page Region: ""
*fr.Translation PageRegion/Page Region: ""
*it.Translation PageRegion/Page Region: ""
*ja.Translation PageRegion/Page Region: ""
*pt.Translation PageRegion/Page Region: ""
*zh_CN.Translation PageRegion/Page Region: ""
*zh_TW.Translation PageRegion/Page Region: ""
*ko.Translation PageRegion/Page Region: ""
*OrderDependency: 35 AnySetup *PageRegion
*DefaultPageRegion: Letter
*PageRegion Letter/Letter: "
<</Policies <</PageSize 2>> /PageSize [612 792] /ImagingBBox null >> setpagedevice"
*End
*de.PageRegion Letter/Letter: ""
*es.PageRegion Letter/Carta: ""
*fr.PageRegion Letter/Lettre US: ""
*it.PageRegion Letter/Letter: ""
*ja.PageRegion Letter/レター: ""
*pt.PageRegion Letter/Carta: ""
*zh_CN.PageRegion Letter/信纸: ""
*zh_TW.PageRegion Letter/Letter: ""
*ko.PageRegion Letter/레터: ""
*PageRegion Legal/Legal: "
<</Policies <</PageSize 2>> /PageSize [612 1008] /ImagingBBox null >> setpagedevice"
*End
*de.PageRegion Legal/Legal: ""
*es.PageRegion Legal/Oficio: ""
*fr.PageRegion Legal/Légal US: ""
*it.PageRegion Legal/Legal: ""
*ja.PageRegion Legal/リーガル: ""
*pt.PageRegion Legal/Oficio: ""
*zh_CN.PageRegion Legal/标准法律用纸: ""
*zh_TW.PageRegion Legal/Legal: ""
*ko.PageRegion Legal/리갈: ""
*PageRegion B5/JIS B5: "
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
*de.PageRegion B5/JIS B5: ""
*es.PageRegion B5/JIS B5: ""
*fr.PageRegion B5/JIS B5: ""
*it.PageRegion B5/JIS B5: ""
*ja.PageRegion B5/JIS B5: ""
*pt.PageRegion B5/JIS B5: ""
*zh_CN.PageRegion B5/JIS B5: ""
*zh_TW.PageRegion B5/JIS B5: ""
*ko.PageRegion B5/JIS B5: ""
*PageRegion B4/JIS B4: "
<< /Policies << /PageSize 2 >> /PageSize [729 1032] /ImagingBBox null >> setpagedevice"
*End
*de.PageRegion B4/JIS B4: ""
*es.PageRegion B4/JIS B4: ""
*fr.PageRegion B4/JIS B4: ""
*it.PageRegion B4/JIS B4: ""
*ja.PageRegion B4/JIS B4: ""
*pt.PageRegion B4/JIS B4: ""
*zh_CN.PageRegion B4/JIS B4: ""
*zh_TW.PageRegion B4/JIS B4: ""
*ko.PageRegion B4/JIS B4: ""
*PageRegion A4/A4: "
<</Policies <</PageSize 2>> /PageSize [595 842] /ImagingBBox null >> setpagedevice"
*End
*de.PageRegion A4/A4: ""
*es.PageRegion A4/A4: ""
*fr.PageRegion A4/A4: ""
*it.PageRegion A4/A4: ""
*ja.PageRegion A4/A4: ""
*pt.PageRegion A4/A4: ""
*zh_CN.PageRegion A4/A4: ""
*zh_TW.PageRegion A4/A4: ""
*ko.PageRegion A4/A4: ""
*PageRegion Executive/Executive: "
<</Policies <</PageSize 2>> /PageSize [522 756] /ImagingBBox null >> setpagedevice"
*End
*de.PageRegion Executive/Executive: ""
*es.PageRegion Executive/Ejecutivo: ""
*fr.PageRegion Executive/Exécutive US: ""
*it.PageRegion Executive/Executive: ""
*ja.PageRegion Executive/Executive: ""
*pt.PageRegion Executive/Executivo: ""
*zh_CN.PageRegion Executive/实用纸张: ""
*zh_TW.PageRegion Executive/Executive: ""
*ko.PageRegion Executive/Executive: ""
*PageRegion A5/A5: "
<</Policies <</PageSize 2>> /PageSize [420 595] /ImagingBBox null >> setpagedevice"
*End
*de.PageRegion A5/A5: ""
*es.PageRegion A5/A5: ""
*fr.PageRegion A5/A5: ""
*it.PageRegion A5/A5: ""
*ja.PageRegion A5/A5: ""
*pt.PageRegion A5/A5: ""
*zh_CN.PageRegion A5/A5: ""
*zh_TW.PageRegion A5/A5: ""
*ko.PageRegion A5/A5: ""
*PageRegion A3/A3: "
<< /Policies << /PageSize 2 >> /PageSize [842 1191] /ImagingBBox null >> setpagedevice"
*End
*de.PageRegion A3/A3: ""
*es.PageRegion A3/A3: ""
*fr.PageRegion A3/A3: ""
*it.PageRegion A3/A3: ""
*ja.PageRegion A3/A3: ""
*pt.PageRegion A3/A3: ""
*zh_CN.PageRegion A3/A3: ""
*zh_TW.PageRegion A3/A3: ""
*ko.PageRegion A3/A3: ""
*PageRegion 11x17/11 x 17: "
<< /Policies << /PageSize 2 >> /PageSize [792 1224] /ImagingBBox null >> setpagedevice"
*End
*de.PageRegion 11x17/11 x 17: ""
*es.PageRegion 11x17/11 x 17: ""
*fr.PageRegion 11x17/Tabloïd 11x17: ""
*it.PageRegion 11x17/11 x 17: ""
*ja.PageRegion 11x17/11 x 17(タブロイド): ""
*pt.PageRegion 11x17/11 x 17: ""
*zh_CN.PageRegion 11x17/11 x 17: ""
*zh_TW.PageRegion 11x17/11 x 17: ""
*ko.PageRegion 11x17/11 x 17: ""
*PageRegion Folio/Folio: "
<< /Policies << /PageSize 2 >> /PageSize [612 936] /ImagingBBox null >> setpagedevice"
*End
*de.PageRegion Folio/Folio: ""
*es.PageRegion Folio/Folio: ""
*fr.PageRegion Folio/Folio: ""
*it.PageRegion Folio/Folio: ""
*ja.PageRegion Folio/フォリオ: ""
*pt.PageRegion Folio/Oficio 2: ""
*zh_CN.PageRegion Folio/对开纸: ""
*zh_TW.PageRegion Folio/Folio 紙張: ""
*ko.PageRegion Folio/폴리오: ""
*PageRegion Statement/Statement: "
<< /Policies << /PageSize 2 >> /PageSize [396 612] /ImagingBBox null >> setpagedevice"
*End
*de.PageRegion Statement/Statement: ""
*es.PageRegion Statement/Media carta: ""
*fr.PageRegion Statement/Statement US: ""
*it.PageRegion Statement/Statement: ""
*ja.PageRegion Statement/ステートメント: ""
*pt.PageRegion Statement/Declaração: ""
*zh_CN.PageRegion Statement/报表: ""
*zh_TW.PageRegion Statement/Statement 紙張: ""
*ko.PageRegion Statement/Statement: ""
*PageRegion Monarch/7 3/4 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [279 540] /ImagingBBox null >> setpagedevice
<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*End
*de.PageRegion Monarch/7 3/4 Briefumschlag: ""
*es.PageRegion Monarch/Sobres 7 3/4: ""
*fr.PageRegion Monarch/Enveloppe 7 3/4: ""
*it.PageRegion Monarch/Busta 7 3/4: ""
*ja.PageRegion Monarch/封筒(7 3/4): ""
*pt.PageRegion Monarch/Envelope 7 3/4: ""
*zh_CN.PageRegion Monarch/7 3/4 信封: ""
*zh_TW.PageRegion Monarch/7 3/4 信封: ""
*ko.PageRegion Monarch/7 3/4 봉투: ""
*PageRegion Comm10/10 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [297 684] /ImagingBBox null >> setpagedevice
<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*End
*de.PageRegion Comm10/C10 Briefumschlag: ""
*es.PageRegion Comm10/Sobres 10: ""
*fr.PageRegion Comm10/Enveloppe C10: ""
*it.PageRegion Comm10/Busta 10: ""
*ja.PageRegion Comm10/封筒(C10号): ""
*pt.PageRegion Comm10/Envelope C10: ""
*zh_CN.PageRegion Comm10/C10 信封: ""
*zh_TW.PageRegion Comm10/C10 號信封: ""
*ko.PageRegion Comm10/C10 봉투: ""
*PageRegion DL/DL Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [312 624] /ImagingBBox null >> setpagedevice
<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*End
*de.PageRegion DL/DL Briefumschlag: ""
*es.PageRegion DL/Sobres DL: ""
*fr.PageRegion DL/Enveloppe DL: ""
*it.PageRegion DL/Busta DL: ""
*ja.PageRegion DL/封筒(DL): ""
*pt.PageRegion DL/Envelope DL: ""
*zh_CN.PageRegion DL/DL 信封: ""
*zh_TW.PageRegion DL/DL 信封: ""
*ko.PageRegion DL/DL 봉투: ""
*PageRegion C5/C5 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [459 649] /ImagingBBox null >> setpagedevice
<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*End
*de.PageRegion C5/C5 Briefumschlag: ""
*es.PageRegion C5/Sobres C5: ""
*fr.PageRegion C5/Enveloppe C5: ""
*it.PageRegion C5/Busta C5: ""
*ja.PageRegion C5/封筒(C5号): ""
*pt.PageRegion C5/Envelope C5: ""
*zh_CN.PageRegion C5/C5 信封: ""
*zh_TW.PageRegion C5/C5 信封: ""
*ko.PageRegion C5/C5 봉투: ""
*PageRegion ISOB5/B5 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [499 708] /ImagingBBox null >> setpagedevice
<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*End
*de.PageRegion ISOB5/B5 Briefumschlag: ""
*es.PageRegion ISOB5/Sobres B5: ""
*fr.PageRegion ISOB5/Enveloppe B5: ""
*it.PageRegion ISOB5/Busta B5: ""
*ja.PageRegion ISOB5/封筒(B5号): ""
*pt.PageRegion ISOB5/Envelope B5: ""
*zh_CN.PageRegion ISOB5/B5 信封: ""
*zh_TW.PageRegion ISOB5/B5 信封: ""
*ko.PageRegion ISOB5/B5 봉투: ""
*?PageRegion: "
save
19 dict
dup /letter (Letter) put
dup /legal (Legal) put
dup /a4 (A4) put
dup /executivepage (Executive) put
dup /folio (Folio) put
dup /statement (Statement) put
dup /b5 (B5) put
dup /a5 (A5) put
dup /a3 (A3) put
dup /b4 (B4) put
dup /ledger (11x17) put
dup /3.875x7.5envelope (Monarch) put
dup /4.125x9.5envelope (Comm10) put
dup /110x220envelope (DL) put
dup /162x229envelope (C5) put
dup /176x250envelope (ISOB5) put
statusdict /papersize get exec
3 1 roll {get} stopped {(Unknown)} if
exch not { print (.Transverse) } if
= flush
restore"
*End
*CloseUI: *PageRegion
*%*****************************************************************************
*% ImageableArea
*%*****************************************************************************
*DefaultImageableArea: Letter
*ImageableArea Letter/Letter: "12 12 600 780"
*de.ImageableArea Letter/Letter: ""
*es.ImageableArea Letter/Carta: ""
*fr.ImageableArea Letter/Lettre US: ""
*it.ImageableArea Letter/Letter: ""
*ja.ImageableArea Letter/レター: ""
*pt.ImageableArea Letter/Carta: ""
*zh_CN.ImageableArea Letter/信纸: ""
*zh_TW.ImageableArea Letter/Letter: ""
*ko.ImageableArea Letter/레터: ""
*ImageableArea Legal/Legal: "12 12 600 996"
*de.ImageableArea Legal/Legal: ""
*es.ImageableArea Legal/Oficio: ""
*fr.ImageableArea Legal/Légal US: ""
*it.ImageableArea Legal/Legal: ""
*ja.ImageableArea Legal/リーガル: ""
*pt.ImageableArea Legal/Oficio: ""
*zh_CN.ImageableArea Legal/标准法律用纸: ""
*zh_TW.ImageableArea Legal/Legal: ""
*ko.ImageableArea Legal/리갈: ""
*ImageableArea B5/JIS B5: "12 12 506 716"
*de.ImageableArea B5/JIS B5: ""
*es.ImageableArea B5/JIS B5: ""
*fr.ImageableArea B5/JIS B5: ""
*it.ImageableArea B5/JIS B5: ""
*ja.ImageableArea B5/JIS B5: ""
*pt.ImageableArea B5/JIS B5: ""
*zh_CN.ImageableArea B5/JIS B5: ""
*zh_TW.ImageableArea B5/JIS B5: ""
*ko.ImageableArea B5/JIS B5: ""
*ImageableArea B4/JIS B4: "12 12 716 1020"
*de.ImageableArea B4/JIS B4: ""
*es.ImageableArea B4/JIS B4: ""
*fr.ImageableArea B4/JIS B4: ""
*it.ImageableArea B4/JIS B4: ""
*ja.ImageableArea B4/JIS B4: ""
*pt.ImageableArea B4/JIS B4: ""
*zh_CN.ImageableArea B4/JIS B4: ""
*zh_TW.ImageableArea B4/JIS B4: ""
*ko.ImageableArea B4/JIS B4: ""
*ImageableArea A4/A4: "10 12 589 830"
*de.ImageableArea A4/A4: ""
*es.ImageableArea A4/A4: ""
*fr.ImageableArea A4/A4: ""
*it.ImageableArea A4/A4: ""
*ja.ImageableArea A4/A4: ""
*pt.ImageableArea A4/A4: ""
*zh_CN.ImageableArea A4/A4: ""
*zh_TW.ImageableArea A4/A4: ""
*ko.ImageableArea A4/A4: ""
*ImageableArea Executive/Executive: "12 12 510 744"
*de.ImageableArea Executive/Executive: ""
*es.ImageableArea Executive/Ejecutivo: ""
*fr.ImageableArea Executive/Exécutive US: ""
*it.ImageableArea Executive/Executive: ""
*ja.ImageableArea Executive/Executive: ""
*pt.ImageableArea Executive/Executivo: ""
*zh_CN.ImageableArea Executive/实用纸张: ""
*zh_TW.ImageableArea Executive/Executive: ""
*ko.ImageableArea Executive/Executive: ""
*ImageableArea A5/A5: "12 12 408 583"
*de.ImageableArea A5/A5: ""
*es.ImageableArea A5/A5: ""
*fr.ImageableArea A5/A5: ""
*it.ImageableArea A5/A5: ""
*ja.ImageableArea A5/A5: ""
*pt.ImageableArea A5/A5: ""
*zh_CN.ImageableArea A5/A5: ""
*zh_TW.ImageableArea A5/A5: ""
*ko.ImageableArea A5/A5: ""
*ImageableArea A3/A3: "12 12 830 1178"
*de.ImageableArea A3/A3: ""
*es.ImageableArea A3/A3: ""
*fr.ImageableArea A3/A3: ""
*it.ImageableArea A3/A3: ""
*ja.ImageableArea A3/A3: ""
*pt.ImageableArea A3/A3: ""
*zh_CN.ImageableArea A3/A3: ""
*zh_TW.ImageableArea A3/A3: ""
*ko.ImageableArea A3/A3: ""
*ImageableArea 11x17/11 x 17: "12 12 780 1212"
*de.ImageableArea 11x17/11 x 17: ""
*es.ImageableArea 11x17/11 x 17: ""
*fr.ImageableArea 11x17/Tabloïd 11x17: ""
*it.ImageableArea 11x17/11 x 17: ""
*ja.ImageableArea 11x17/11 x 17(タブロイド): ""
*pt.ImageableArea 11x17/11 x 17: ""
*zh_CN.ImageableArea 11x17/11 x 17: ""
*zh_TW.ImageableArea 11x17/11 x 17: ""
*ko.ImageableArea 11x17/11 x 17: ""
*ImageableArea Folio/Folio: "12 12 600 924"
*de.ImageableArea Folio/Folio: ""
*es.ImageableArea Folio/Folio: ""
*fr.ImageableArea Folio/Folio: ""
*it.ImageableArea Folio/Folio: ""
*ja.ImageableArea Folio/フォリオ: ""
*pt.ImageableArea Folio/Oficio 2: ""
*zh_CN.ImageableArea Folio/对开纸: ""
*zh_TW.ImageableArea Folio/Folio 紙張: ""
*ko.ImageableArea Folio/폴리오: ""
*ImageableArea Statement/Statement: "12 12 384 600"
*de.ImageableArea Statement/Statement: ""
*es.ImageableArea Statement/Media carta: ""
*fr.ImageableArea Statement/Statement US: ""
*it.ImageableArea Statement/Statement: ""
*ja.ImageableArea Statement/ステートメント: ""
*pt.ImageableArea Statement/Declaração: ""
*zh_CN.ImageableArea Statement/报表: ""
*zh_TW.ImageableArea Statement/Statement 紙張: ""
*ko.ImageableArea Statement/Statement: ""
*ImageableArea Monarch/7 3/4 Envelope: "12 12 279 528"
*de.ImageableArea Monarch/7 3/4 Briefumschlag: ""
*es.ImageableArea Monarch/Sobres 7 3/4: ""
*fr.ImageableArea Monarch/Enveloppe 7 3/4: ""
*it.ImageableArea Monarch/Busta 7 3/4: ""
*ja.ImageableArea Monarch/封筒(7 3/4): ""
*pt.ImageableArea Monarch/Envelope 7 3/4: ""
*zh_CN.ImageableArea Monarch/7 3/4 信封: ""
*zh_TW.ImageableArea Monarch/7 3/4 信封: ""
*ko.ImageableArea Monarch/7 3/4 봉투: ""
*ImageableArea Comm10/10 Envelope: "12 12 294 672"
*de.ImageableArea Comm10/C10 Briefumschlag: ""
*es.ImageableArea Comm10/Sobres 10: ""
*fr.ImageableArea Comm10/Enveloppe C10: ""
*it.ImageableArea Comm10/Busta 10: ""
*ja.ImageableArea Comm10/封筒(C10号): ""
*pt.ImageableArea Comm10/Envelope C10: ""
*zh_CN.ImageableArea Comm10/C10 信封: ""
*zh_TW.ImageableArea Comm10/C10 號信封: ""
*ko.ImageableArea Comm10/C10 봉투: ""
*ImageableArea DL/DL Envelope: "12 12 310 612"
*de.ImageableArea DL/DL Briefumschlag: ""
*es.ImageableArea DL/Sobres DL: ""
*fr.ImageableArea DL/Enveloppe DL: ""
*it.ImageableArea DL/Busta DL: ""
*ja.ImageableArea DL/封筒(DL): ""
*pt.ImageableArea DL/Envelope DL: ""
*zh_CN.ImageableArea DL/DL 信封: ""
*zh_TW.ImageableArea DL/DL 信封: ""
*ko.ImageableArea DL/DL 봉투: ""
*ImageableArea C5/C5 Envelope: "12 12 456 637"
*de.ImageableArea C5/C5 Briefumschlag: ""
*es.ImageableArea C5/Sobres C5: ""
*fr.ImageableArea C5/Enveloppe C5: ""
*it.ImageableArea C5/Busta C5: ""
*ja.ImageableArea C5/封筒(C5号): ""
*pt.ImageableArea C5/Envelope C5: ""
*zh_CN.ImageableArea C5/C5 信封: ""
*zh_TW.ImageableArea C5/C5 信封: ""
*ko.ImageableArea C5/C5 봉투: ""
*ImageableArea ISOB5/B5 Envelope: "12 12 498 696"
*de.ImageableArea ISOB5/B5 Briefumschlag: ""
*es.ImageableArea ISOB5/Sobres B5: ""
*fr.ImageableArea ISOB5/Enveloppe B5: ""
*it.ImageableArea ISOB5/Busta B5: ""
*ja.ImageableArea ISOB5/封筒(B5号): ""
*pt.ImageableArea ISOB5/Envelope B5: ""
*zh_CN.ImageableArea ISOB5/B5 信封: ""
*zh_TW.ImageableArea ISOB5/B5 信封: ""
*ko.ImageableArea ISOB5/B5 봉투: ""
*%*****************************************************************************
*% Paper Dimensions
*%*****************************************************************************
*DefaultPaperDimension: Letter
*PaperDimension Letter: "612 792"
*PaperDimension Legal: "612 1008"
*PaperDimension B5: "516.24 728.64"
*PaperDimension B4: "728.64 1031.76"
*PaperDimension A4: "595 842"
*PaperDimension Executive: "522 756"
*PaperDimension A5: "419.76 595.44"
*PaperDimension A3: "841.68 1190.88"
*PaperDimension 11x17: "792 1224"
*PaperDimension Folio: "612 936"
*PaperDimension Statement: "396 612"
*PaperDimension Monarch: "279 540"
*PaperDimension Comm10: "297 684"
*PaperDimension DL: "311.76 623.52"
*PaperDimension C5: "459.36 649.44"
*PaperDimension ISOB5: "498.96 708.48"
*%******************************************************************************
*% CustomPageSize
*%******************************************************************************
*CustomPageSize True: "
pop pop pop
statusdict begin
2 copy
currentpagedevice /UniversalDetails get /Orientation get () setuniversalsize
end
<< /PageSize [5 -2 roll]
/ImagingBBox null
/Policies <</PageSize 2>>
>> setpagedevice"
*End
*de.CustomPageSize True: ""
*es.CustomPageSize True: ""
*fr.CustomPageSize True: ""
*it.CustomPageSize True: ""
*ja.CustomPageSize True: ""
*pt.CustomPageSize True: ""
*zh_CN.CustomPageSize True: ""
*zh_TW.CustomPageSize True: ""
*ko.CustomPageSize True: ""
*MaxMediaWidth: "864"
*MaxMediaHeight: "3456"
*HWMargins: 12 12 12 12
*ParamCustomPageSize Width: 1 points 216 864
*ParamCustomPageSize Height: 2 points 216 3456
*ParamCustomPageSize WidthOffset: 3 points 0 0
*ParamCustomPageSize HeightOffset: 4 points 0 0
*ParamCustomPageSize Orientation: 5 int 0 1
*%******************************************************************************
*% Input/Paper Sources
*%******************************************************************************
*RequiresPageRegion All: True
*OpenUI *InputSlot/Feeder: PickOne
*de.Translation InputSlot/Autom. Briefumschlag: ""
*es.Translation InputSlot/Alimentador de Sobres: ""
*fr.Translation InputSlot/Alimentation Enveloppe: ""
*it.Translation InputSlot/Busta automatico: ""
*ja.Translation InputSlot/フィーダ: ""
*pt.Translation InputSlot/Alimentador de Envelopes: ""
*zh_CN.Translation InputSlot/进纸器: ""
*zh_TW.Translation InputSlot/送紙器: ""
*ko.Translation InputSlot/급지장치: ""
*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
*de.InputSlot Tray1/Fach 1: ""
*es.InputSlot Tray1/Bandeja 1: ""
*fr.InputSlot Tray1/Tiroir 1: ""
*it.InputSlot Tray1/Vassoio 1: ""
*ja.InputSlot Tray1/カセット 1: ""
*pt.InputSlot Tray1/Bandeja 1: ""
*zh_CN.InputSlot Tray1/进纸匣 1: ""
*zh_TW.InputSlot Tray1/裝紙匣 1: ""
*ko.InputSlot Tray1/트레이 1: ""
*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
*de.InputSlot Tray2/Fach 2: ""
*es.InputSlot Tray2/Bandeja 2: ""
*fr.InputSlot Tray2/Tiroir 2: ""
*it.InputSlot Tray2/Vassoio 2: ""
*ja.InputSlot Tray2/カセット 2: ""
*pt.InputSlot Tray2/Bandeja 2: ""
*zh_CN.InputSlot Tray2/进纸匣 2: ""
*zh_TW.InputSlot Tray2/裝紙匣 2: ""
*ko.InputSlot Tray2/트레이 2: ""
*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
*de.InputSlot Tray3/Fach 3: ""
*es.InputSlot Tray3/Bandeja 3: ""
*fr.InputSlot Tray3/Tiroir 3: ""
*it.InputSlot Tray3/Vassoio 3: ""
*ja.InputSlot Tray3/カセット 3: ""
*pt.InputSlot Tray3/Bandeja 3: ""
*zh_CN.InputSlot Tray3/进纸匣 3: ""
*zh_TW.InputSlot Tray3/裝紙匣 3: ""
*ko.InputSlot Tray3/트레이 3: ""
*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
*de.InputSlot Tray4/Fach 4: ""
*es.InputSlot Tray4/Bandeja 4: ""
*fr.InputSlot Tray4/Tiroir 4: ""
*it.InputSlot Tray4/Vassoio 4: ""
*ja.InputSlot Tray4/カセット 4: ""
*pt.InputSlot Tray4/Bandeja 4: ""
*zh_CN.InputSlot Tray4/进纸匣 4: ""
*zh_TW.InputSlot Tray4/裝紙匣 4: ""
*ko.InputSlot Tray4/트레이 4: ""
*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
*de.InputSlot MultipurposeFeeder/Universal: ""
*es.InputSlot MultipurposeFeeder/Alimentador Multiuso: ""
*fr.InputSlot MultipurposeFeeder/Bac Multifonction: ""
*it.InputSlot MultipurposeFeeder/Alimentatore multiuso: ""
*ja.InputSlot MultipurposeFeeder/多目的フィーダ: ""
*pt.InputSlot MultipurposeFeeder/Alimentador Multipropósito: ""
*zh_CN.InputSlot MultipurposeFeeder/多功能进纸器: ""
*zh_TW.InputSlot MultipurposeFeeder/多用途送紙器: ""
*ko.InputSlot MultipurposeFeeder/다용도 급지기: ""
*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
*de.InputSlot ManualPaper/Papier manuell: ""
*es.InputSlot ManualPaper/Papel manual: ""
*fr.InputSlot ManualPaper/Manuel papier: ""
*it.InputSlot ManualPaper/Carta manuale: ""
*ja.InputSlot ManualPaper/手差し用紙: ""
*pt.InputSlot ManualPaper/Papel Manual: ""
*zh_CN.InputSlot ManualPaper/手动纸张: ""
*zh_TW.InputSlot ManualPaper/手動送紙: ""
*ko.InputSlot ManualPaper/수동 용지: ""
*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
<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*End
*de.InputSlot ManualEnv/Briefumschlag manuell: ""
*es.InputSlot ManualEnv/Sobre manual: ""
*fr.InputSlot ManualEnv/Enveloppe Manuel: ""
*it.InputSlot ManualEnv/Busta Manuale: ""
*ja.InputSlot ManualEnv/手差し封筒: ""
*pt.InputSlot ManualEnv/Envelope Manual: ""
*zh_CN.InputSlot ManualEnv/手动信封: ""
*zh_TW.InputSlot ManualEnv/手動信封: ""
*ko.InputSlot ManualEnv/수동 봉투: ""
*?InputSlot: "
gsave
[(Tray1) (Tray2) (ManualPaper) (ManualEnv) (Tray3) (MultipurposeFeeder) (Tray4)]
statusdict /papertray get exec {get exec} stopped {pop pop (Unknown)}
if
= flush
grestore"
*End
*CloseUI: *InputSlot
*%******************************************************************************
*% Fonts
*%******************************************************************************
*%*****************************************************************************
*% Printer Messages (verbatim from printer)
*%*****************************************************************************
*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"
*% Status (format: %% status: <one of these> %% )
*Status: "Printer Busy"
*Status: "Warming Up"
*Status: "idle"
*Status: "busy"
*Status: "waiting"
*Status: "initializing"
*Status: "not ready"
*% Input Sources (format: %% status: <stat>; source: <one of these> %% )
*Source: "Serial"
*Source: "Parallel"
*Source: "Network"
*% Printer Error (format: %% PrinterError: <one of these> %%)
*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 - Tray 1"
*PrinterError: "Paper Out or Feed Failure - Tray 2"
*PrinterError: "Cover Open/Cartridge Not Installed"
*PrinterError: "Complex Page"
*PrinterError: "Default Storage Error"
*PrinterError: "Defective Font Card Installed"
*PrinterError: "Flash Full"
*PrinterError: "ioerror"
*PrinterError: "Flash Error"
*PrinterError: "Scheduled Maintenance"
*PrinterError: "Toner Low"
*PrinterError: "Service Error"
*PrinterError: "Not Ready"
*%DeviceAdjustMatrix: " 1 0 0 1 0 0 "
*%******************************************************************************
*% Color Separation Information
*%******************************************************************************
*DefaultColorSep: ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi
*InkName: ProcessBlack/Process Black
*InkName: ProcessBlack/Process Black
*InkName: ProcessBlack/Process Black
*InkName: ProcessBlack/Process Black
*InkName: ProcessBlack/Process Black
*InkName: ProcessBlack/Process Black
*InkName: ProcessBlack/Process Black
*InkName: ProcessBlack/Process Black
*InkName: ProcessBlack/Process Black
*InkName: ProcessBlack/Process Black
*InkName: CustomColor/Custom Color
*InkName: CustomColor/Custom Color
*InkName: CustomColor/Custom Color
*InkName: CustomColor/Custom Color
*InkName: CustomColor/Custom Color
*InkName: CustomColor/Custom Color
*InkName: CustomColor/Custom Color
*InkName: CustomColor/Custom Color
*InkName: CustomColor/Custom Color
*InkName: CustomColor/Custom Color
*InkName: ProcessCyan/Process Cyan
*InkName: ProcessCyan/Process Cyan
*InkName: ProcessCyan/Process Cyan
*InkName: ProcessCyan/Process Cyan
*InkName: ProcessCyan/Process Cyan
*InkName: ProcessCyan/Process Cyan
*InkName: ProcessCyan/Process Cyan
*InkName: ProcessCyan/Process Cyan
*InkName: ProcessCyan/Process Cyan
*InkName: ProcessCyan/Process Cyan
*InkName: ProcessMagenta/Process Magenta
*InkName: ProcessMagenta/Process Magenta
*InkName: ProcessMagenta/Process Magenta
*InkName: ProcessMagenta/Process Magenta
*InkName: ProcessMagenta/Process Magenta
*InkName: ProcessMagenta/Process Magenta
*InkName: ProcessMagenta/Process Magenta
*InkName: ProcessMagenta/Process Magenta
*InkName: ProcessMagenta/Process Magenta
*InkName: ProcessMagenta/Process Magenta
*InkName: ProcessYellow/Process Yellow
*InkName: ProcessYellow/Process Yellow
*InkName: ProcessYellow/Process Yellow
*InkName: ProcessYellow/Process Yellow
*InkName: ProcessYellow/Process Yellow
*InkName: ProcessYellow/Process Yellow
*InkName: ProcessYellow/Process Yellow
*InkName: ProcessYellow/Process Yellow
*InkName: ProcessYellow/Process Yellow
*InkName: ProcessYellow/Process Yellow
*% For 154 lpi / 600 dpi ===================================================
*ColorSepScreenAngle ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: "50.0"
*de.ColorSepScreenAngle ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*es.ColorSepScreenAngle ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*fr.ColorSepScreenAngle ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*it.ColorSepScreenAngle ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*ja.ColorSepScreenAngle ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*pt.ColorSepScreenAngle ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_CN.ColorSepScreenAngle ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_TW.ColorSepScreenAngle ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*ko.ColorSepScreenAngle ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*ColorSepScreenAngle CustomColor.154lpi.600dpi/154 lpi / 600 dpi: "50.0"
*de.ColorSepScreenAngle CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*es.ColorSepScreenAngle CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*fr.ColorSepScreenAngle CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*it.ColorSepScreenAngle CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*ja.ColorSepScreenAngle CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*pt.ColorSepScreenAngle CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_CN.ColorSepScreenAngle CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_TW.ColorSepScreenAngle CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*ko.ColorSepScreenAngle CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*ColorSepScreenAngle ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: "16.0"
*de.ColorSepScreenAngle ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*es.ColorSepScreenAngle ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*fr.ColorSepScreenAngle ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*it.ColorSepScreenAngle ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*ja.ColorSepScreenAngle ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*pt.ColorSepScreenAngle ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_CN.ColorSepScreenAngle ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_TW.ColorSepScreenAngle ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*ko.ColorSepScreenAngle ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*ColorSepScreenAngle ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: "76.0"
*de.ColorSepScreenAngle ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*es.ColorSepScreenAngle ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*fr.ColorSepScreenAngle ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*it.ColorSepScreenAngle ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*ja.ColorSepScreenAngle ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*pt.ColorSepScreenAngle ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_CN.ColorSepScreenAngle ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_TW.ColorSepScreenAngle ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*ko.ColorSepScreenAngle ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*ColorSepScreenAngle ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: "0.0"
*de.ColorSepScreenAngle ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*es.ColorSepScreenAngle ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*fr.ColorSepScreenAngle ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*it.ColorSepScreenAngle ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*ja.ColorSepScreenAngle ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*pt.ColorSepScreenAngle ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_CN.ColorSepScreenAngle ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_TW.ColorSepScreenAngle ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*ko.ColorSepScreenAngle ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*ColorSepScreenFreq ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: "154.0"
*de.ColorSepScreenFreq ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*es.ColorSepScreenFreq ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*fr.ColorSepScreenFreq ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*it.ColorSepScreenFreq ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*ja.ColorSepScreenFreq ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*pt.ColorSepScreenFreq ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_CN.ColorSepScreenFreq ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_TW.ColorSepScreenFreq ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*ko.ColorSepScreenFreq ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*ColorSepScreenFreq CustomColor.154lpi.600dpi/154 lpi / 600 dpi: "154.0"
*de.ColorSepScreenFreq CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*es.ColorSepScreenFreq CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*fr.ColorSepScreenFreq CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*it.ColorSepScreenFreq CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*ja.ColorSepScreenFreq CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*pt.ColorSepScreenFreq CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_CN.ColorSepScreenFreq CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_TW.ColorSepScreenFreq CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*ko.ColorSepScreenFreq CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*ColorSepScreenFreq ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: "154.0"
*de.ColorSepScreenFreq ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*es.ColorSepScreenFreq ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*fr.ColorSepScreenFreq ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*it.ColorSepScreenFreq ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*ja.ColorSepScreenFreq ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*pt.ColorSepScreenFreq ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_CN.ColorSepScreenFreq ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_TW.ColorSepScreenFreq ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*ko.ColorSepScreenFreq ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*ColorSepScreenFreq ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: "154.0"
*de.ColorSepScreenFreq ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*es.ColorSepScreenFreq ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*fr.ColorSepScreenFreq ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*it.ColorSepScreenFreq ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*ja.ColorSepScreenFreq ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*pt.ColorSepScreenFreq ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_CN.ColorSepScreenFreq ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_TW.ColorSepScreenFreq ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*ko.ColorSepScreenFreq ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*ColorSepScreenFreq ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: "150.0"
*de.ColorSepScreenFreq ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*es.ColorSepScreenFreq ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*fr.ColorSepScreenFreq ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*it.ColorSepScreenFreq ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*ja.ColorSepScreenFreq ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*pt.ColorSepScreenFreq ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_CN.ColorSepScreenFreq ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_TW.ColorSepScreenFreq ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*ko.ColorSepScreenFreq ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*% For 154 lpi / 1200 dpi ===================================================
*ColorSepScreenAngle ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: "50.0"
*de.ColorSepScreenAngle ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*es.ColorSepScreenAngle ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*fr.ColorSepScreenAngle ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*it.ColorSepScreenAngle ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ja.ColorSepScreenAngle ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*pt.ColorSepScreenAngle ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_CN.ColorSepScreenAngle ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_TW.ColorSepScreenAngle ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ko.ColorSepScreenAngle ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ColorSepScreenAngle CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: "50.0"
*de.ColorSepScreenAngle CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*es.ColorSepScreenAngle CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*fr.ColorSepScreenAngle CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*it.ColorSepScreenAngle CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ja.ColorSepScreenAngle CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*pt.ColorSepScreenAngle CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_CN.ColorSepScreenAngle CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_TW.ColorSepScreenAngle CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ko.ColorSepScreenAngle CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ColorSepScreenAngle ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: "16.0"
*de.ColorSepScreenAngle ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*es.ColorSepScreenAngle ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*fr.ColorSepScreenAngle ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*it.ColorSepScreenAngle ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ja.ColorSepScreenAngle ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*pt.ColorSepScreenAngle ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_CN.ColorSepScreenAngle ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_TW.ColorSepScreenAngle ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ko.ColorSepScreenAngle ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ColorSepScreenAngle ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: "76.0"
*de.ColorSepScreenAngle ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*es.ColorSepScreenAngle ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*fr.ColorSepScreenAngle ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*it.ColorSepScreenAngle ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ja.ColorSepScreenAngle ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*pt.ColorSepScreenAngle ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_CN.ColorSepScreenAngle ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_TW.ColorSepScreenAngle ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ko.ColorSepScreenAngle ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ColorSepScreenAngle ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: "0.0"
*de.ColorSepScreenAngle ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*es.ColorSepScreenAngle ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*fr.ColorSepScreenAngle ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*it.ColorSepScreenAngle ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ja.ColorSepScreenAngle ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*pt.ColorSepScreenAngle ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_CN.ColorSepScreenAngle ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_TW.ColorSepScreenAngle ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ko.ColorSepScreenAngle ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ColorSepScreenFreq ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: "154.0"
*de.ColorSepScreenFreq ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*es.ColorSepScreenFreq ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*fr.ColorSepScreenFreq ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*it.ColorSepScreenFreq ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ja.ColorSepScreenFreq ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*pt.ColorSepScreenFreq ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_CN.ColorSepScreenFreq ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_TW.ColorSepScreenFreq ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ko.ColorSepScreenFreq ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ColorSepScreenFreq CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: "154.0"
*de.ColorSepScreenFreq CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*es.ColorSepScreenFreq CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*fr.ColorSepScreenFreq CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*it.ColorSepScreenFreq CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ja.ColorSepScreenFreq CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*pt.ColorSepScreenFreq CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_CN.ColorSepScreenFreq CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_TW.ColorSepScreenFreq CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ko.ColorSepScreenFreq CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ColorSepScreenFreq ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: "154.0"
*de.ColorSepScreenFreq ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*es.ColorSepScreenFreq ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*fr.ColorSepScreenFreq ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*it.ColorSepScreenFreq ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ja.ColorSepScreenFreq ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*pt.ColorSepScreenFreq ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_CN.ColorSepScreenFreq ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_TW.ColorSepScreenFreq ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ko.ColorSepScreenFreq ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ColorSepScreenFreq ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: "154.0"
*de.ColorSepScreenFreq ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*es.ColorSepScreenFreq ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*fr.ColorSepScreenFreq ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*it.ColorSepScreenFreq ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ja.ColorSepScreenFreq ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*pt.ColorSepScreenFreq ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_CN.ColorSepScreenFreq ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_TW.ColorSepScreenFreq ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ko.ColorSepScreenFreq ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ColorSepScreenFreq ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: "150.0"
*de.ColorSepScreenFreq ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*es.ColorSepScreenFreq ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*fr.ColorSepScreenFreq ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*it.ColorSepScreenFreq ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ja.ColorSepScreenFreq ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*pt.ColorSepScreenFreq ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_CN.ColorSepScreenFreq ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_TW.ColorSepScreenFreq ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ko.ColorSepScreenFreq ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*%*****************************************************************************
*% End of PPD
*%*****************************************************************************
|