ubuntuusers.de

ppd knut ganz

Autor:
knutselaar
Datum:
16. August 2020 18:30
Code:
   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
*PPD-Adobe: "4.3"
*% PPD file for CUPS/Gutenprint.
*% Copyright 1993-2008 by Mike Sweet and Robert Krawitz.
*% This program is free software; you can redistribute it and/or
*% modify it under the terms of the GNU General Public License,
*% version 2, as published by the Free Software Foundation.
*%
*% This program is distributed in the hope that it will be useful, but
*% WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
*% or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
*% for more details.
*%
*% You should have received a copy of the GNU General Public License
*% along with this program; if not, write to the Free Software
*% Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*%
*FormatVersion:	"4.3"
*FileVersion:	"5.2.7"
*LanguageVersion: English
*LanguageEncoding: UTF-8
*PCFileName:	"STP00047.PPD"
*Manufacturer:	"Canon"
*Product:	"(Canon PIXMA iP2600)"
*ModelName:     "Canon PIXMA iP2600"
*ShortNickName: "Canon PIXMA iP2600"
*NickName:      "Canon PIXMA iP2600 - CUPS+Gutenprint (OpenPrinting LSB 3.2) v5.2.7"
*PSVersion:	"(3010.000) 0"
*LanguageLevel:	"3"
*ColorDevice:	True
*DefaultColorSpace:	RGB
*FileSystem:	False
*LandscapeOrientation: Plus90
*TTRasterizer:	Type42
*cupsVersion:	1.2
*cupsManualCopies: True
*cupsFilter:	"application/vnd.cups-raster 100 /opt/OpenPrinting-Gutenprint/cups/lib/filter/rastertogutenprint.5.2"
*APSupportsCustomColorMatching: true
*APDefaultCustomColorMatchingProfile: sRGB
*APCustomColorMatchingProfile: sRGB

*StpDriverName:	"bjc-PIXMA-iP2600"
*StpDriverModelFamily:	"3002600_canon"
*StpPPDLocation: "/opt/OpenPrinting-Gutenprint/ppds/5.2/C/stp-bjc-PIXMA-iP2600.5.2.ppd.gz"
*StpLocale:	"C"
*VariablePaperSize: true

*OpenUI *PageSize/Media Size: PickOne
*OPOptionHints PageSize: "dropdown"
*OrderDependency: 10 AnySetup *PageSize
*StpStpPageSize: 0 1 2 0 255 0.000 0.000 0.000
*DefaultPageSize: A4
*StpDefaultPageSize: Letter
*PageSize Letter/Letter:	"<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
*PageSize Legal/Legal:	"<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
*PageSize Tabloid/Tabloid:	"<</PageSize[792 1224]/ImagingBBox null>>setpagedevice"
*PageSize Executive/Executive:	"<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
*PageSize Postcard/Postcard:	"<</PageSize[283 416]/ImagingBBox null>>setpagedevice"
*PageSize CD5Inch/CD - 5 inch:	"<</PageSize[329 329]/ImagingBBox null>>setpagedevice"
*PageSize CD3Inch/CD - 3 inch:	"<</PageSize[184 184]/ImagingBBox null>>setpagedevice"
*PageSize CDCustom/CD - Custom:	"<</PageSize[340 340]/ImagingBBox null>>setpagedevice"
*PageSize w216h360/3x5:	"<</PageSize[216 360]/ImagingBBox null>>setpagedevice"
*PageSize w252h360/3 1/2 x5:	"<</PageSize[252 360]/ImagingBBox null>>setpagedevice"
*PageSize w252h360J/L:	"<</PageSize[252 360]/ImagingBBox null>>setpagedevice"
*PageSize w288h432/4x6:	"<</PageSize[288 432]/ImagingBBox null>>setpagedevice"
*PageSize w288h432J/KG:	"<</PageSize[288 432]/ImagingBBox null>>setpagedevice"
*PageSize w324h495/Epson 4x6 Photo Paper (tear-off borders):	"<</PageSize[324 495]/ImagingBBox null>>setpagedevice"
*PageSize w297h421/Epson L Photo Paper (tear-off borders):	"<</PageSize[297 421]/ImagingBBox null>>setpagedevice"
*PageSize w288h576/4x8:	"<</PageSize[288 576]/ImagingBBox null>>setpagedevice"
*PageSize w360h504/5x7:	"<</PageSize[360 504]/ImagingBBox null>>setpagedevice"
*PageSize w360h504J/2L:	"<</PageSize[360 504]/ImagingBBox null>>setpagedevice"
*PageSize w360h576/5x8:	"<</PageSize[360 576]/ImagingBBox null>>setpagedevice"
*PageSize w432h576/6x8:	"<</PageSize[432 576]/ImagingBBox null>>setpagedevice"
*PageSize c8x10/8x10:	"<</PageSize[576 720]/ImagingBBox null>>setpagedevice"
*PageSize c8x10J/Rokukire:	"<</PageSize[576 720]/ImagingBBox null>>setpagedevice"
*PageSize Statement/Manual:	"<</PageSize[396 612]/ImagingBBox null>>setpagedevice"
*PageSize w576h864/8x12:	"<</PageSize[576 864]/ImagingBBox null>>setpagedevice"
*PageSize w720h864J/YonKire:	"<</PageSize[720 864]/ImagingBBox null>>setpagedevice"
*PageSize w792h1008/11x14:	"<</PageSize[792 1008]/ImagingBBox null>>setpagedevice"
*PageSize A3/A3:	"<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
*PageSize A4/A4:	"<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
*PageSize A5/A5:	"<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
*PageSize A6/A6:	"<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
*PageSize A7/A7:	"<</PageSize[210 297]/ImagingBBox null>>setpagedevice"
*PageSize A8/A8:	"<</PageSize[148 210]/ImagingBBox null>>setpagedevice"
*PageSize A9/A9:	"<</PageSize[105 148]/ImagingBBox null>>setpagedevice"
*PageSize A10/A10:	"<</PageSize[73 105]/ImagingBBox null>>setpagedevice"
*PageSize w609h864/RA4:	"<</PageSize[609 864]/ImagingBBox null>>setpagedevice"
*PageSize w637h907/SRA4:	"<</PageSize[637 907]/ImagingBBox null>>setpagedevice"
*PageSize ISOB4/B4 ISO:	"<</PageSize[708 1000]/ImagingBBox null>>setpagedevice"
*PageSize ISOB5/B5 ISO:	"<</PageSize[498 708]/ImagingBBox null>>setpagedevice"
*PageSize ISOB6/B6 ISO:	"<</PageSize[354 498]/ImagingBBox null>>setpagedevice"
*PageSize ISOB7/B7 ISO:	"<</PageSize[249 354]/ImagingBBox null>>setpagedevice"
*PageSize ISOB8/B8 ISO:	"<</PageSize[175 249]/ImagingBBox null>>setpagedevice"
*PageSize ISOB9/B9 ISO:	"<</PageSize[124 175]/ImagingBBox null>>setpagedevice"
*PageSize ISOB10/B10 ISO:	"<</PageSize[87 124]/ImagingBBox null>>setpagedevice"
*PageSize B4/B4 JIS:	"<</PageSize[727 1029]/ImagingBBox null>>setpagedevice"
*PageSize B5/B5 JIS:	"<</PageSize[518 727]/ImagingBBox null>>setpagedevice"
*PageSize B6/B6 JIS:	"<</PageSize[362 518]/ImagingBBox null>>setpagedevice"
*PageSize B7/B7 JIS:	"<</PageSize[257 362]/ImagingBBox null>>setpagedevice"
*PageSize B8/B8 JIS:	"<</PageSize[180 257]/ImagingBBox null>>setpagedevice"
*PageSize B9/B9 JIS:	"<</PageSize[127 180]/ImagingBBox null>>setpagedevice"
*PageSize B10/B10 JIS:	"<</PageSize[90 127]/ImagingBBox null>>setpagedevice"
*PageSize C4/C4:	"<</PageSize[649 918]/ImagingBBox null>>setpagedevice"
*PageSize C5/C5:	"<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
*PageSize C5_l/C5 landscape:	"<</PageSize[649 459]/ImagingBBox null>>setpagedevice"
*PageSize w354h918/B6-C4:	"<</PageSize[354 918]/ImagingBBox null>>setpagedevice"
*PageSize C6/C6:	"<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
*PageSize C6_l/C6 landscape:	"<</PageSize[459 323]/ImagingBBox null>>setpagedevice"
*PageSize DL/DL:	"<</PageSize[311 623]/ImagingBBox null>>setpagedevice"
*PageSize DL_l/DL landscape:	"<</PageSize[623 311]/ImagingBBox null>>setpagedevice"
*PageSize w229h459/C7-6:	"<</PageSize[229 459]/ImagingBBox null>>setpagedevice"
*PageSize w229h459_l/C7-6 landscape:	"<</PageSize[459 229]/ImagingBBox null>>setpagedevice"
*PageSize C7/C7:	"<</PageSize[229 323]/ImagingBBox null>>setpagedevice"
*PageSize C7_l/C7 landscape:	"<</PageSize[323 229]/ImagingBBox null>>setpagedevice"
*PageSize C8/C8:	"<</PageSize[161 229]/ImagingBBox null>>setpagedevice"
*PageSize C8_l/C8 landscape:	"<</PageSize[229 161]/ImagingBBox null>>setpagedevice"
*PageSize C9/C9:	"<</PageSize[113 161]/ImagingBBox null>>setpagedevice"
*PageSize C9_l/C9 landscape:	"<</PageSize[161 113]/ImagingBBox null>>setpagedevice"
*PageSize C10/C10:	"<</PageSize[79 113]/ImagingBBox null>>setpagedevice"
*PageSize C10_l/C10 landscape:	"<</PageSize[113 79]/ImagingBBox null>>setpagedevice"
*PageSize EA5/EA5:	"<</PageSize[442 649]/ImagingBBox null>>setpagedevice"
*PageSize EA5_l/EA5 landscape:	"<</PageSize[649 442]/ImagingBBox null>>setpagedevice"
*PageSize ARCHA/ArchA:	"<</PageSize[648 864]/ImagingBBox null>>setpagedevice"
*PageSize w612h936/American foolscap:	"<</PageSize[612 936]/ImagingBBox null>>setpagedevice"
*PageSize w648h936/European foolscap:	"<</PageSize[648 936]/ImagingBBox null>>setpagedevice"
*PageSize w535h697/Crown Quarto:	"<</PageSize[535 697]/ImagingBBox null>>setpagedevice"
*PageSize w569h731/Large Crown Quarto:	"<</PageSize[569 731]/ImagingBBox null>>setpagedevice"
*PageSize w620h782/Demy Quarto:	"<</PageSize[620 782]/ImagingBBox null>>setpagedevice"
*PageSize w671h884/Royal Quarto:	"<</PageSize[671 884]/ImagingBBox null>>setpagedevice"
*PageSize w348h527/Crown Octavo:	"<</PageSize[348 527]/ImagingBBox null>>setpagedevice"
*PageSize w365h561/Large Crown Octavo:	"<</PageSize[365 561]/ImagingBBox null>>setpagedevice"
*PageSize w391h612/Demy Octavo:	"<</PageSize[391 612]/ImagingBBox null>>setpagedevice"
*PageSize w442h663/Royal Octavo:	"<</PageSize[442 663]/ImagingBBox null>>setpagedevice"
*PageSize w314h504/Small paperback:	"<</PageSize[314 504]/ImagingBBox null>>setpagedevice"
*PageSize w314h513/Penguin small paperback:	"<</PageSize[314 513]/ImagingBBox null>>setpagedevice"
*PageSize cw365h561/Penguin large paperback:	"<</PageSize[365 561]/ImagingBBox null>>setpagedevice"
*PageSize w283h425/10cm x 15cm:	"<</PageSize[283 425]/ImagingBBox null>>setpagedevice"
*PageSize w283h420/Hagaki Card:	"<</PageSize[283 420]/ImagingBBox null>>setpagedevice"
*PageSize w420h567/Oufuku Card:	"<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
*PageSize w340h666/Japanese long envelope #3:	"<</PageSize[340 666]/ImagingBBox null>>setpagedevice"
*PageSize w340h666_l/Japanese long envelope #3 landscape:	"<</PageSize[666 340]/ImagingBBox null>>setpagedevice"
*PageSize w255h581/Japanese long envelope #4:	"<</PageSize[255 581]/ImagingBBox null>>setpagedevice"
*PageSize w255h581_l/Japanese long envelope #4 landscape:	"<</PageSize[581 255]/ImagingBBox null>>setpagedevice"
*PageSize w680h941/Japanese Kaku envelope #4:	"<</PageSize[680 941]/ImagingBBox null>>setpagedevice"
*PageSize COM10/Commercial 10:	"<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
*PageSize COM10_l/Commercial 10 landscape:	"<</PageSize[684 297]/ImagingBBox null>>setpagedevice"
*PageSize w315h414/A2 Invitation:	"<</PageSize[315 414]/ImagingBBox null>>setpagedevice"
*PageSize Monarch/Monarch Envelope:	"<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
*PageSize Monarch_l/Monarch Envelope landscape:	"<</PageSize[540 279]/ImagingBBox null>>setpagedevice"
*PageSize w288h387/4x5 3/8:	"<</PageSize[288 387]/ImagingBBox null>>setpagedevice"
*PageSize w288h504/4x7:	"<</PageSize[288 504]/ImagingBBox null>>setpagedevice"
*PageSize w288h512/Wide 101.6x180.6:	"<</PageSize[288 512]/ImagingBBox null>>setpagedevice"
*PageSize w253h337/CP_L:	"<</PageSize[253 337]/ImagingBBox null>>setpagedevice"
*PageSize w155h244/Card:	"<</PageSize[155 244]/ImagingBBox null>>setpagedevice"
*PageSize w283h566/Wide Postcard:	"<</PageSize[283 566]/ImagingBBox null>>setpagedevice"
*PageSize w612h935/Chilean Office:	"<</PageSize[612 935]/ImagingBBox null>>setpagedevice"
*CloseUI: *PageSize

*OpenUI *PageRegion/Media Size: PickOne
*OPOptionHints PageRegion: "dropdown"
*OrderDependency: 10 AnySetup *PageRegion
*DefaultPageRegion: A4
*StpDefaultPageRegion: Letter
*PageRegion Letter/Letter:	"<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
*PageRegion Legal/Legal:	"<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
*PageRegion Tabloid/Tabloid:	"<</PageSize[792 1224]/ImagingBBox null>>setpagedevice"
*PageRegion Executive/Executive:	"<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
*PageRegion Postcard/Postcard:	"<</PageSize[283 416]/ImagingBBox null>>setpagedevice"
*PageRegion CD5Inch/CD - 5 inch:	"<</PageSize[329 329]/ImagingBBox null>>setpagedevice"
*PageRegion CD3Inch/CD - 3 inch:	"<</PageSize[184 184]/ImagingBBox null>>setpagedevice"
*PageRegion CDCustom/CD - Custom:	"<</PageSize[340 340]/ImagingBBox null>>setpagedevice"
*PageRegion w216h360/3x5:	"<</PageSize[216 360]/ImagingBBox null>>setpagedevice"
*PageRegion w252h360/3 1/2 x5:	"<</PageSize[252 360]/ImagingBBox null>>setpagedevice"
*PageRegion w252h360J/L:	"<</PageSize[252 360]/ImagingBBox null>>setpagedevice"
*PageRegion w288h432/4x6:	"<</PageSize[288 432]/ImagingBBox null>>setpagedevice"
*PageRegion w288h432J/KG:	"<</PageSize[288 432]/ImagingBBox null>>setpagedevice"
*PageRegion w324h495/Epson 4x6 Photo Paper (tear-off borders):	"<</PageSize[324 495]/ImagingBBox null>>setpagedevice"
*PageRegion w297h421/Epson L Photo Paper (tear-off borders):	"<</PageSize[297 421]/ImagingBBox null>>setpagedevice"
*PageRegion w288h576/4x8:	"<</PageSize[288 576]/ImagingBBox null>>setpagedevice"
*PageRegion w360h504/5x7:	"<</PageSize[360 504]/ImagingBBox null>>setpagedevice"
*PageRegion w360h504J/2L:	"<</PageSize[360 504]/ImagingBBox null>>setpagedevice"
*PageRegion w360h576/5x8:	"<</PageSize[360 576]/ImagingBBox null>>setpagedevice"
*PageRegion w432h576/6x8:	"<</PageSize[432 576]/ImagingBBox null>>setpagedevice"
*PageRegion c8x10/8x10:	"<</PageSize[576 720]/ImagingBBox null>>setpagedevice"
*PageRegion c8x10J/Rokukire:	"<</PageSize[576 720]/ImagingBBox null>>setpagedevice"
*PageRegion Statement/Manual:	"<</PageSize[396 612]/ImagingBBox null>>setpagedevice"
*PageRegion w576h864/8x12:	"<</PageSize[576 864]/ImagingBBox null>>setpagedevice"
*PageRegion w720h864J/YonKire:	"<</PageSize[720 864]/ImagingBBox null>>setpagedevice"
*PageRegion w792h1008/11x14:	"<</PageSize[792 1008]/ImagingBBox null>>setpagedevice"
*PageRegion A3/A3:	"<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
*PageRegion A4/A4:	"<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
*PageRegion A5/A5:	"<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
*PageRegion A6/A6:	"<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
*PageRegion A7/A7:	"<</PageSize[210 297]/ImagingBBox null>>setpagedevice"
*PageRegion A8/A8:	"<</PageSize[148 210]/ImagingBBox null>>setpagedevice"
*PageRegion A9/A9:	"<</PageSize[105 148]/ImagingBBox null>>setpagedevice"
*PageRegion A10/A10:	"<</PageSize[73 105]/ImagingBBox null>>setpagedevice"
*PageRegion w609h864/RA4:	"<</PageSize[609 864]/ImagingBBox null>>setpagedevice"
*PageRegion w637h907/SRA4:	"<</PageSize[637 907]/ImagingBBox null>>setpagedevice"
*PageRegion ISOB4/B4 ISO:	"<</PageSize[708 1000]/ImagingBBox null>>setpagedevice"
*PageRegion ISOB5/B5 ISO:	"<</PageSize[498 708]/ImagingBBox null>>setpagedevice"
*PageRegion ISOB6/B6 ISO:	"<</PageSize[354 498]/ImagingBBox null>>setpagedevice"
*PageRegion ISOB7/B7 ISO:	"<</PageSize[249 354]/ImagingBBox null>>setpagedevice"
*PageRegion ISOB8/B8 ISO:	"<</PageSize[175 249]/ImagingBBox null>>setpagedevice"
*PageRegion ISOB9/B9 ISO:	"<</PageSize[124 175]/ImagingBBox null>>setpagedevice"
*PageRegion ISOB10/B10 ISO:	"<</PageSize[87 124]/ImagingBBox null>>setpagedevice"
*PageRegion B4/B4 JIS:	"<</PageSize[727 1029]/ImagingBBox null>>setpagedevice"
*PageRegion B5/B5 JIS:	"<</PageSize[518 727]/ImagingBBox null>>setpagedevice"
*PageRegion B6/B6 JIS:	"<</PageSize[362 518]/ImagingBBox null>>setpagedevice"
*PageRegion B7/B7 JIS:	"<</PageSize[257 362]/ImagingBBox null>>setpagedevice"
*PageRegion B8/B8 JIS:	"<</PageSize[180 257]/ImagingBBox null>>setpagedevice"
*PageRegion B9/B9 JIS:	"<</PageSize[127 180]/ImagingBBox null>>setpagedevice"
*PageRegion B10/B10 JIS:	"<</PageSize[90 127]/ImagingBBox null>>setpagedevice"
*PageRegion C4/C4:	"<</PageSize[649 918]/ImagingBBox null>>setpagedevice"
*PageRegion C5/C5:	"<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
*PageRegion C5_l/C5 landscape:	"<</PageSize[649 459]/ImagingBBox null>>setpagedevice"
*PageRegion w354h918/B6-C4:	"<</PageSize[354 918]/ImagingBBox null>>setpagedevice"
*PageRegion C6/C6:	"<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
*PageRegion C6_l/C6 landscape:	"<</PageSize[459 323]/ImagingBBox null>>setpagedevice"
*PageRegion DL/DL:	"<</PageSize[311 623]/ImagingBBox null>>setpagedevice"
*PageRegion DL_l/DL landscape:	"<</PageSize[623 311]/ImagingBBox null>>setpagedevice"
*PageRegion w229h459/C7-6:	"<</PageSize[229 459]/ImagingBBox null>>setpagedevice"
*PageRegion w229h459_l/C7-6 landscape:	"<</PageSize[459 229]/ImagingBBox null>>setpagedevice"
*PageRegion C7/C7:	"<</PageSize[229 323]/ImagingBBox null>>setpagedevice"
*PageRegion C7_l/C7 landscape:	"<</PageSize[323 229]/ImagingBBox null>>setpagedevice"
*PageRegion C8/C8:	"<</PageSize[161 229]/ImagingBBox null>>setpagedevice"
*PageRegion C8_l/C8 landscape:	"<</PageSize[229 161]/ImagingBBox null>>setpagedevice"
*PageRegion C9/C9:	"<</PageSize[113 161]/ImagingBBox null>>setpagedevice"
*PageRegion C9_l/C9 landscape:	"<</PageSize[161 113]/ImagingBBox null>>setpagedevice"
*PageRegion C10/C10:	"<</PageSize[79 113]/ImagingBBox null>>setpagedevice"
*PageRegion C10_l/C10 landscape:	"<</PageSize[113 79]/ImagingBBox null>>setpagedevice"
*PageRegion EA5/EA5:	"<</PageSize[442 649]/ImagingBBox null>>setpagedevice"
*PageRegion EA5_l/EA5 landscape:	"<</PageSize[649 442]/ImagingBBox null>>setpagedevice"
*PageRegion ARCHA/ArchA:	"<</PageSize[648 864]/ImagingBBox null>>setpagedevice"
*PageRegion w612h936/American foolscap:	"<</PageSize[612 936]/ImagingBBox null>>setpagedevice"
*PageRegion w648h936/European foolscap:	"<</PageSize[648 936]/ImagingBBox null>>setpagedevice"
*PageRegion w535h697/Crown Quarto:	"<</PageSize[535 697]/ImagingBBox null>>setpagedevice"
*PageRegion w569h731/Large Crown Quarto:	"<</PageSize[569 731]/ImagingBBox null>>setpagedevice"
*PageRegion w620h782/Demy Quarto:	"<</PageSize[620 782]/ImagingBBox null>>setpagedevice"
*PageRegion w671h884/Royal Quarto:	"<</PageSize[671 884]/ImagingBBox null>>setpagedevice"
*PageRegion w348h527/Crown Octavo:	"<</PageSize[348 527]/ImagingBBox null>>setpagedevice"
*PageRegion w365h561/Large Crown Octavo:	"<</PageSize[365 561]/ImagingBBox null>>setpagedevice"
*PageRegion w391h612/Demy Octavo:	"<</PageSize[391 612]/ImagingBBox null>>setpagedevice"
*PageRegion w442h663/Royal Octavo:	"<</PageSize[442 663]/ImagingBBox null>>setpagedevice"
*PageRegion w314h504/Small paperback:	"<</PageSize[314 504]/ImagingBBox null>>setpagedevice"
*PageRegion w314h513/Penguin small paperback:	"<</PageSize[314 513]/ImagingBBox null>>setpagedevice"
*PageRegion cw365h561/Penguin large paperback:	"<</PageSize[365 561]/ImagingBBox null>>setpagedevice"
*PageRegion w283h425/10cm x 15cm:	"<</PageSize[283 425]/ImagingBBox null>>setpagedevice"
*PageRegion w283h420/Hagaki Card:	"<</PageSize[283 420]/ImagingBBox null>>setpagedevice"
*PageRegion w420h567/Oufuku Card:	"<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
*PageRegion w340h666/Japanese long envelope #3:	"<</PageSize[340 666]/ImagingBBox null>>setpagedevice"
*PageRegion w340h666_l/Japanese long envelope #3 landscape:	"<</PageSize[666 340]/ImagingBBox null>>setpagedevice"
*PageRegion w255h581/Japanese long envelope #4:	"<</PageSize[255 581]/ImagingBBox null>>setpagedevice"
*PageRegion w255h581_l/Japanese long envelope #4 landscape:	"<</PageSize[581 255]/ImagingBBox null>>setpagedevice"
*PageRegion w680h941/Japanese Kaku envelope #4:	"<</PageSize[680 941]/ImagingBBox null>>setpagedevice"
*PageRegion COM10/Commercial 10:	"<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
*PageRegion COM10_l/Commercial 10 landscape:	"<</PageSize[684 297]/ImagingBBox null>>setpagedevice"
*PageRegion w315h414/A2 Invitation:	"<</PageSize[315 414]/ImagingBBox null>>setpagedevice"
*PageRegion Monarch/Monarch Envelope:	"<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
*PageRegion Monarch_l/Monarch Envelope landscape:	"<</PageSize[540 279]/ImagingBBox null>>setpagedevice"
*PageRegion w288h387/4x5 3/8:	"<</PageSize[288 387]/ImagingBBox null>>setpagedevice"
*PageRegion w288h504/4x7:	"<</PageSize[288 504]/ImagingBBox null>>setpagedevice"
*PageRegion w288h512/Wide 101.6x180.6:	"<</PageSize[288 512]/ImagingBBox null>>setpagedevice"
*PageRegion w253h337/CP_L:	"<</PageSize[253 337]/ImagingBBox null>>setpagedevice"
*PageRegion w155h244/Card:	"<</PageSize[155 244]/ImagingBBox null>>setpagedevice"
*PageRegion w283h566/Wide Postcard:	"<</PageSize[283 566]/ImagingBBox null>>setpagedevice"
*PageRegion w612h935/Chilean Office:	"<</PageSize[612 935]/ImagingBBox null>>setpagedevice"
*CloseUI: *PageRegion

*DefaultImageableArea: A4
*StpDefaultImageableArea: Letter
*ImageableArea Letter/Letter:	"10 15 602 777"
*ImageableArea Legal/Legal:	"10 15 602 993"
*ImageableArea Tabloid/Tabloid:	"10 15 782 1209"
*ImageableArea Executive/Executive:	"10 15 512 741"
*ImageableArea Postcard/Postcard:	"10 15 273 401"
*ImageableArea CD5Inch/CD - 5 inch:	"10 15 319 314"
*ImageableArea CD3Inch/CD - 3 inch:	"10 15 174 169"
*ImageableArea CDCustom/CD - Custom:	"10 15 330 325"
*ImageableArea w216h360/3x5:	"10 15 206 345"
*ImageableArea w252h360/3 1/2 x5:	"10 15 242 345"
*ImageableArea w252h360J/L:	"10 15 242 345"
*ImageableArea w288h432/4x6:	"10 15 278 417"
*ImageableArea w288h432J/KG:	"10 15 278 417"
*ImageableArea w324h495/Epson 4x6 Photo Paper (tear-off borders):	"18 45 306 477"
*ImageableArea w297h421/Epson L Photo Paper (tear-off borders):	"22 43 275 404"
*ImageableArea w288h576/4x8:	"10 15 278 561"
*ImageableArea w360h504/5x7:	"10 15 350 489"
*ImageableArea w360h504J/2L:	"10 15 350 489"
*ImageableArea w360h576/5x8:	"10 15 350 561"
*ImageableArea w432h576/6x8:	"10 15 422 561"
*ImageableArea c8x10/8x10:	"10 15 566 705"
*ImageableArea c8x10J/Rokukire:	"10 15 566 705"
*ImageableArea Statement/Manual:	"10 15 386 597"
*ImageableArea w576h864/8x12:	"10 15 566 849"
*ImageableArea w720h864J/YonKire:	"10 15 710 849"
*ImageableArea w792h1008/11x14:	"10 15 782 993"
*ImageableArea A3/A3:	"10 15 832 1176"
*ImageableArea A4/A4:	"10 15 585 827"
*ImageableArea A5/A5:	"10 15 410 580"
*ImageableArea A6/A6:	"10 15 287 405"
*ImageableArea A7/A7:	"10 15 200 282"
*ImageableArea A8/A8:	"10 15 138 195"
*ImageableArea A9/A9:	"10 15 95 133"
*ImageableArea A10/A10:	"10 15 63 90"
*ImageableArea w609h864/RA4:	"10 15 599 849"
*ImageableArea w637h907/SRA4:	"10 15 627 892"
*ImageableArea ISOB4/B4 ISO:	"10 15 698 985"
*ImageableArea ISOB5/B5 ISO:	"10 15 488 693"
*ImageableArea ISOB6/B6 ISO:	"10 15 344 483"
*ImageableArea ISOB7/B7 ISO:	"10 15 239 339"
*ImageableArea ISOB8/B8 ISO:	"10 15 165 234"
*ImageableArea ISOB9/B9 ISO:	"10 15 114 160"
*ImageableArea ISOB10/B10 ISO:	"10 15 77 109"
*ImageableArea B4/B4 JIS:	"10 15 717 1014"
*ImageableArea B5/B5 JIS:	"10 15 508 712"
*ImageableArea B6/B6 JIS:	"10 15 352 503"
*ImageableArea B7/B7 JIS:	"10 15 247 347"
*ImageableArea B8/B8 JIS:	"10 15 170 242"
*ImageableArea B9/B9 JIS:	"10 15 117 165"
*ImageableArea B10/B10 JIS:	"10 15 80 112"
*ImageableArea C4/C4:	"10 15 639 903"
*ImageableArea C5/C5:	"10 15 449 634"
*ImageableArea C5_l/C5 landscape:	"10 15 639 444"
*ImageableArea w354h918/B6-C4:	"10 15 344 903"
*ImageableArea C6/C6:	"10 15 313 444"
*ImageableArea C6_l/C6 landscape:	"10 15 449 308"
*ImageableArea DL/DL:	"10 15 301 608"
*ImageableArea DL_l/DL landscape:	"10 15 613 296"
*ImageableArea w229h459/C7-6:	"10 15 219 444"
*ImageableArea w229h459_l/C7-6 landscape:	"10 15 449 214"
*ImageableArea C7/C7:	"10 15 219 308"
*ImageableArea C7_l/C7 landscape:	"10 15 313 214"
*ImageableArea C8/C8:	"10 15 151 214"
*ImageableArea C8_l/C8 landscape:	"10 15 219 146"
*ImageableArea C9/C9:	"10 15 103 146"
*ImageableArea C9_l/C9 landscape:	"10 15 151 98"
*ImageableArea C10/C10:	"10 15 69 98"
*ImageableArea C10_l/C10 landscape:	"10 15 103 64"
*ImageableArea EA5/EA5:	"10 15 432 634"
*ImageableArea EA5_l/EA5 landscape:	"10 15 639 427"
*ImageableArea ARCHA/ArchA:	"10 15 638 849"
*ImageableArea w612h936/American foolscap:	"10 15 602 921"
*ImageableArea w648h936/European foolscap:	"10 15 638 921"
*ImageableArea w535h697/Crown Quarto:	"10 15 525 682"
*ImageableArea w569h731/Large Crown Quarto:	"10 15 559 716"
*ImageableArea w620h782/Demy Quarto:	"10 15 610 767"
*ImageableArea w671h884/Royal Quarto:	"10 15 661 869"
*ImageableArea w348h527/Crown Octavo:	"10 15 338 512"
*ImageableArea w365h561/Large Crown Octavo:	"10 15 355 546"
*ImageableArea w391h612/Demy Octavo:	"10 15 381 597"
*ImageableArea w442h663/Royal Octavo:	"10 15 432 648"
*ImageableArea w314h504/Small paperback:	"10 15 304 489"
*ImageableArea w314h513/Penguin small paperback:	"10 15 304 498"
*ImageableArea cw365h561/Penguin large paperback:	"10 15 355 546"
*ImageableArea w283h425/10cm x 15cm:	"10 15 273 410"
*ImageableArea w283h420/Hagaki Card:	"10 15 273 405"
*ImageableArea w420h567/Oufuku Card:	"10 15 410 552"
*ImageableArea w340h666/Japanese long envelope #3:	"10 15 330 651"
*ImageableArea w340h666_l/Japanese long envelope #3 landscape:	"10 15 656 325"
*ImageableArea w255h581/Japanese long envelope #4:	"10 15 245 566"
*ImageableArea w255h581_l/Japanese long envelope #4 landscape:	"10 15 571 240"
*ImageableArea w680h941/Japanese Kaku envelope #4:	"10 15 670 926"
*ImageableArea COM10/Commercial 10:	"10 15 287 669"
*ImageableArea COM10_l/Commercial 10 landscape:	"10 15 674 282"
*ImageableArea w315h414/A2 Invitation:	"10 15 305 399"
*ImageableArea Monarch/Monarch Envelope:	"10 15 269 525"
*ImageableArea Monarch_l/Monarch Envelope landscape:	"10 15 530 264"
*ImageableArea w288h387/4x5 3/8:	"10 15 278 372"
*ImageableArea w288h504/4x7:	"10 15 278 489"
*ImageableArea w288h512/Wide 101.6x180.6:	"10 15 278 497"
*ImageableArea w253h337/CP_L:	"10 15 243 322"
*ImageableArea w155h244/Card:	"10 15 145 229"
*ImageableArea w283h566/Wide Postcard:	"10 15 273 551"
*ImageableArea w612h935/Chilean Office:	"10 15 602 920"

*DefaultPaperDimension: A4
*StpDefaultPaperDimension: Letter
*PaperDimension Letter/Letter:	"612 792"
*PaperDimension Legal/Legal:	"612 1008"
*PaperDimension Tabloid/Tabloid:	"792 1224"
*PaperDimension Executive/Executive:	"522 756"
*PaperDimension Postcard/Postcard:	"283 416"
*PaperDimension CD5Inch/CD - 5 inch:	"329 329"
*PaperDimension CD3Inch/CD - 3 inch:	"184 184"
*PaperDimension CDCustom/CD - Custom:	"340 340"
*PaperDimension w216h360/3x5:	"216 360"
*PaperDimension w252h360/3 1/2 x5:	"252 360"
*PaperDimension w252h360J/L:	"252 360"
*PaperDimension w288h432/4x6:	"288 432"
*PaperDimension w288h432J/KG:	"288 432"
*PaperDimension w324h495/Epson 4x6 Photo Paper (tear-off borders):	"324 495"
*PaperDimension w297h421/Epson L Photo Paper (tear-off borders):	"297 421"
*PaperDimension w288h576/4x8:	"288 576"
*PaperDimension w360h504/5x7:	"360 504"
*PaperDimension w360h504J/2L:	"360 504"
*PaperDimension w360h576/5x8:	"360 576"
*PaperDimension w432h576/6x8:	"432 576"
*PaperDimension c8x10/8x10:	"576 720"
*PaperDimension c8x10J/Rokukire:	"576 720"
*PaperDimension Statement/Manual:	"396 612"
*PaperDimension w576h864/8x12:	"576 864"
*PaperDimension w720h864J/YonKire:	"720 864"
*PaperDimension w792h1008/11x14:	"792 1008"
*PaperDimension A3/A3:	"842 1191"
*PaperDimension A4/A4:	"595 842"
*PaperDimension A5/A5:	"420 595"
*PaperDimension A6/A6:	"297 420"
*PaperDimension A7/A7:	"210 297"
*PaperDimension A8/A8:	"148 210"
*PaperDimension A9/A9:	"105 148"
*PaperDimension A10/A10:	"73 105"
*PaperDimension w609h864/RA4:	"609 864"
*PaperDimension w637h907/SRA4:	"637 907"
*PaperDimension ISOB4/B4 ISO:	"708 1000"
*PaperDimension ISOB5/B5 ISO:	"498 708"
*PaperDimension ISOB6/B6 ISO:	"354 498"
*PaperDimension ISOB7/B7 ISO:	"249 354"
*PaperDimension ISOB8/B8 ISO:	"175 249"
*PaperDimension ISOB9/B9 ISO:	"124 175"
*PaperDimension ISOB10/B10 ISO:	"87 124"
*PaperDimension B4/B4 JIS:	"727 1029"
*PaperDimension B5/B5 JIS:	"518 727"
*PaperDimension B6/B6 JIS:	"362 518"
*PaperDimension B7/B7 JIS:	"257 362"
*PaperDimension B8/B8 JIS:	"180 257"
*PaperDimension B9/B9 JIS:	"127 180"
*PaperDimension B10/B10 JIS:	"90 127"
*PaperDimension C4/C4:	"649 918"
*PaperDimension C5/C5:	"459 649"
*PaperDimension C5_l/C5 landscape:	"649 459"
*PaperDimension w354h918/B6-C4:	"354 918"
*PaperDimension C6/C6:	"323 459"
*PaperDimension C6_l/C6 landscape:	"459 323"
*PaperDimension DL/DL:	"311 623"
*PaperDimension DL_l/DL landscape:	"623 311"
*PaperDimension w229h459/C7-6:	"229 459"
*PaperDimension w229h459_l/C7-6 landscape:	"459 229"
*PaperDimension C7/C7:	"229 323"
*PaperDimension C7_l/C7 landscape:	"323 229"
*PaperDimension C8/C8:	"161 229"
*PaperDimension C8_l/C8 landscape:	"229 161"
*PaperDimension C9/C9:	"113 161"
*PaperDimension C9_l/C9 landscape:	"161 113"
*PaperDimension C10/C10:	"79 113"
*PaperDimension C10_l/C10 landscape:	"113 79"
*PaperDimension EA5/EA5:	"442 649"
*PaperDimension EA5_l/EA5 landscape:	"649 442"
*PaperDimension ARCHA/ArchA:	"648 864"
*PaperDimension w612h936/American foolscap:	"612 936"
*PaperDimension w648h936/European foolscap:	"648 936"
*PaperDimension w535h697/Crown Quarto:	"535 697"
*PaperDimension w569h731/Large Crown Quarto:	"569 731"
*PaperDimension w620h782/Demy Quarto:	"620 782"
*PaperDimension w671h884/Royal Quarto:	"671 884"
*PaperDimension w348h527/Crown Octavo:	"348 527"
*PaperDimension w365h561/Large Crown Octavo:	"365 561"
*PaperDimension w391h612/Demy Octavo:	"391 612"
*PaperDimension w442h663/Royal Octavo:	"442 663"
*PaperDimension w314h504/Small paperback:	"314 504"
*PaperDimension w314h513/Penguin small paperback:	"314 513"
*PaperDimension cw365h561/Penguin large paperback:	"365 561"
*PaperDimension w283h425/10cm x 15cm:	"283 425"
*PaperDimension w283h420/Hagaki Card:	"283 420"
*PaperDimension w420h567/Oufuku Card:	"420 567"
*PaperDimension w340h666/Japanese long envelope #3:	"340 666"
*PaperDimension w340h666_l/Japanese long envelope #3 landscape:	"666 340"
*PaperDimension w255h581/Japanese long envelope #4:	"255 581"
*PaperDimension w255h581_l/Japanese long envelope #4 landscape:	"581 255"
*PaperDimension w680h941/Japanese Kaku envelope #4:	"680 941"
*PaperDimension COM10/Commercial 10:	"297 684"
*PaperDimension COM10_l/Commercial 10 landscape:	"684 297"
*PaperDimension w315h414/A2 Invitation:	"315 414"
*PaperDimension Monarch/Monarch Envelope:	"279 540"
*PaperDimension Monarch_l/Monarch Envelope landscape:	"540 279"
*PaperDimension w288h387/4x5 3/8:	"288 387"
*PaperDimension w288h504/4x7:	"288 504"
*PaperDimension w288h512/Wide 101.6x180.6:	"288 512"
*PaperDimension w253h337/CP_L:	"253 337"
*PaperDimension w155h244/Card:	"155 244"
*PaperDimension w283h566/Wide Postcard:	"283 566"
*PaperDimension w612h935/Chilean Office:	"612 935"

*MaxMediaWidth:  "842"
*MaxMediaHeight: "1224"
*HWMargins:      10 15 10 15
*CustomPageSize True: "pop pop pop <</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice"
*ParamCustomPageSize Width:        1 points 1 842
*ParamCustomPageSize Height:       2 points 1 1224
*ParamCustomPageSize WidthOffset:  3 points 0 0
*ParamCustomPageSize HeightOffset: 4 points 0 0
*ParamCustomPageSize Orientation:  5 int 0 0

*ColorKeyWords: "ColorModel"
*OpenUI *ColorModel/Color Model: PickOne
*OPOptionHints ColorModel: "radiobuttons"
*OrderDependency: 10 AnySetup *ColorModel
*DefaultColorModel: Gray
*StpDefaultColorModel: RGB
*ColorModel Gray/Grayscale:	"<</cupsColorSpace 0/cupsColorOrder 0>>setpagedevice"
*ColorModel Black/Inverted Grayscale:	"<</cupsColorSpace 3/cupsColorOrder 0>>setpagedevice"
*ColorModel RGB/RGB Color:	"<</cupsColorSpace 1/cupsColorOrder 0>>setpagedevice"
*ColorModel CMY/CMY Color:	"<</cupsColorSpace 4/cupsColorOrder 0>>setpagedevice"
*ColorModel CMYK/CMYK:	"<</cupsColorSpace 6/cupsColorOrder 0>>setpagedevice"
*ColorModel KCMY/KCMY:	"<</cupsColorSpace 8/cupsColorOrder 0>>setpagedevice"
*CloseUI: *ColorModel

*ColorKeyWords: "StpColorPrecision"
*OpenUI *StpColorPrecision/Color Precision: PickOne
*OPOptionHints StpColorPrecision: "radiobuttons"
*OrderDependency: 10 AnySetup *StpColorPrecision
*DefaultStpColorPrecision: Normal
*StpDefaultStpColorPrecision: Normal
*StpColorPrecision Normal/Normal:	"<</cupsBitsPerColor 8>>setpagedevice"
*StpColorPrecision Best/Best:	"<</cupsBitsPerColor 8/cupsPreferredBitsPerColor 16>>setpagedevice"
*CloseUI: *StpColorPrecision

*ColorKeyWords: "MediaType"
*OpenUI *MediaType/Media Type: PickOne
*OPOptionHints MediaType: "dropdown"
*OrderDependency: 10 AnySetup *MediaType
*StpStpMediaType: 0 1 0 0 255 0.000 0.000 0.000
*DefaultMediaType: Plain
*StpDefaultMediaType: Plain
*MediaType Plain/Plain Paper:	"<</MediaType(Plain)>>setpagedevice"
*MediaType PhotopaperPro/Photo Paper Pro:	"<</MediaType(PhotopaperPro)>>setpagedevice"
*MediaType PhotopaperPlus/Photo Paper Plus Glossy:	"<</MediaType(PhotopaperPlus)>>setpagedevice"
*MediaType PhotoPlusGLoss2/Photo Paper Plus Glossy II:	"<</MediaType(PhotoPlusGLoss2)>>setpagedevice"
*MediaType PhotoProSemiGloss/Photo Paper Plus Semi-gloss:	"<</MediaType(PhotoProSemiGloss)>>setpagedevice"
*MediaType PhotopaperMatte/Matte Photo Paper:	"<</MediaType(PhotopaperMatte)>>setpagedevice"
*MediaType GlossyPaper/Glossy Photo Paper:	"<</MediaType(GlossyPaper)>>setpagedevice"
*MediaType Coated/High Resolution Paper:	"<</MediaType(Coated)>>setpagedevice"
*MediaType InkJetHagaki/Ink Jet Hagaki:	"<</MediaType(InkJetHagaki)>>setpagedevice"
*MediaType Hagaki/Hagaki:	"<</MediaType(Hagaki)>>setpagedevice"
*MediaType TShirt/T-Shirt Transfers:	"<</MediaType(TShirt)>>setpagedevice"
*MediaType Envelope/Envelope:	"<</MediaType(Envelope)>>setpagedevice"
*MediaType PhotopaperOther/Other Photo Paper:	"<</MediaType(PhotopaperOther)>>setpagedevice"
*CloseUI: *MediaType

*OpenUI *InputSlot/Media Source: PickOne
*OPOptionHints InputSlot: "dropdown"
*OrderDependency: 10 AnySetup *InputSlot
*StpStpInputSlot: 0 1 0 0 255 0.000 0.000 0.000
*DefaultInputSlot: Auto
*StpDefaultInputSlot: Auto
*InputSlot Auto/Auto Sheet Feeder:	"<</MediaClass(Auto)>>setpagedevice"
*CloseUI: *InputSlot

*ColorKeyWords: "Quality"
*OpenUI *StpQuality/Print Quality: PickOne
*OPOptionHints Quality: "dropdown"
*OrderDependency: 10 AnySetup *StpQuality
*StpStpQuality: 0 1 0 0 255 0.000 0.000 0.000
*DefaultStpQuality: Standard
*StpDefaultStpQuality: Standard
*StpQuality None/Manual Control:	"<</HWResolution[300 300]/cupsRowFeed 1>>setpagedevice"
*StpQuality Standard/Standard:	"<</HWResolution[300 300]/cupsRowFeed 2>>setpagedevice"
*CloseUI: *StpQuality

*ColorKeyWords: "Resolution"
*OpenUI *Resolution/Resolution: PickOne
*OPOptionHints Resolution: "resolution radiobuttons"
*OrderDependency: 10 AnySetup *Resolution
*StpStpResolution: 0 1 0 0 255 0.000 0.000 0.000
*DefaultResolution: 301x300dpi
*StpDefaultResolution: 301x300dpi
*Resolution 301x300dpi/Automatic:	"<</HWResolution[300 300]>>setpagedevice"
*StpResolutionMap: 301x300dpi None
*Resolution 600dpi/600x600 DPI HIGH:	"<</HWResolution[600 600]/cupsCompression 1>>setpagedevice"
*StpResolutionMap: 600dpi 600x600dpi_high
*Resolution 601x600dpi/600x600 DPI:	"<</HWResolution[600 600]/cupsCompression 2>>setpagedevice"
*StpResolutionMap: 601x600dpi 600x600dpi
*Resolution 300dpi/300x300 DPI:	"<</HWResolution[300 300]/cupsCompression 3>>setpagedevice"
*StpResolutionMap: 300dpi 300x300dpi
*Resolution 302x300dpi/300x300 DPI DRAFT:	"<</HWResolution[300 300]/cupsCompression 4>>setpagedevice"
*StpResolutionMap: 302x300dpi 300x300dpi_draft
*Resolution 602x600dpi/600x600 DPI HIGH MONO:	"<</HWResolution[600 600]/cupsCompression 5>>setpagedevice"
*StpResolutionMap: 602x600dpi 600x600dpi_highmono
*Resolution 603x600dpi/600x600 DPI MONO:	"<</HWResolution[600 600]/cupsCompression 6>>setpagedevice"
*StpResolutionMap: 603x600dpi 600x600dpi_mono
*Resolution 303x300dpi/300x300 DPI MONO:	"<</HWResolution[300 300]/cupsCompression 7>>setpagedevice"
*StpResolutionMap: 303x300dpi 300x300dpi_mono
*Resolution 304x300dpi/300x300 DPI DRAFT MONO:	"<</HWResolution[300 300]/cupsCompression 8>>setpagedevice"
*StpResolutionMap: 304x300dpi 300x300dpi_draftmono
*Resolution 604x600dpi/600x600 DPI PHOTO HIGH:	"<</HWResolution[600 600]/cupsCompression 9>>setpagedevice"
*StpResolutionMap: 604x600dpi 600x600dpi_photohigh
*Resolution 605x600dpi/600x600 DPI PHOTO:	"<</HWResolution[600 600]/cupsCompression 10>>setpagedevice"
*StpResolutionMap: 605x600dpi 600x600dpi_photo
*Resolution 1200x600dpi/600x600 DPI PHOTO HIGH2:	"<</HWResolution[1200 1200]/cupsCompression 11>>setpagedevice"
*StpResolutionMap: 1200x600dpi 600x600dpi_photohigh2
*Resolution 606x600dpi/600x600 DPI PHOTO DRAFT:	"<</HWResolution[600 600]/cupsCompression 12>>setpagedevice"
*StpResolutionMap: 606x600dpi 600x600dpi_photodraft
*Resolution 607x600dpi/600x600 DPI HIGH 2:	"<</HWResolution[600 600]/cupsCompression 13>>setpagedevice"
*StpResolutionMap: 607x600dpi 600x600dpi_high2
*Resolution 608x600dpi/600x600 DPI 2:	"<</HWResolution[600 600]/cupsCompression 14>>setpagedevice"
*StpResolutionMap: 608x600dpi 600x600dpi_std2
*Resolution 305x300dpi/300x300 DPI 2:	"<</HWResolution[300 300]/cupsCompression 15>>setpagedevice"
*StpResolutionMap: 305x300dpi 300x300dpi_2
*Resolution 306x300dpi/300x300 DPI DRAFT 2:	"<</HWResolution[300 300]/cupsCompression 16>>setpagedevice"
*StpResolutionMap: 306x300dpi 300x300dpi_draft2
*CloseUI: *Resolution

*OpenUI *StpiShrinkOutput/Shrink Page If Necessary to Fit Borders: PickOne
*OPOptionHints StpiShrinkOutput: "radiobuttons"
*OrderDependency: 10 AnySetup *StpiShrinkOutput
*DefaultStpiShrinkOutput: Shrink
*StpDefaultStpiShrinkOutput: Shrink
*StpiShrinkOutput Shrink/Shrink (print the whole page): ""
*StpiShrinkOutput Crop/Crop (preserve dimensions): ""
*StpiShrinkOutput Expand/Expand (use maximum page area): ""
*CloseUI: *StpiShrinkOutput

*OpenGroup: C0L0/Printer Features Common

*ColorKeyWords: "StpInkType"
*OpenUI *StpInkType/Ink Type: PickOne
*OrderDependency: 10 AnySetup *StpInkType
*OPOptionHints StpInkType: "radiobuttons"
*StpStpInkType: 0 1 0 0 255 0.000 0.000 0.000
*DefaultStpInkType: RGB
*StpDefaultStpInkType: RGB
*StpInkType RGB/CMY Color: ""
*CloseUI: *StpInkType

*CloseGroup: C0L0/Printer Features Common

*OpenGroup: C1L0/Output Control Common

*ColorKeyWords: "StpColorCorrection"
*OpenUI *StpColorCorrection/Color Correction: PickOne
*OrderDependency: 10 AnySetup *StpColorCorrection
*OPOptionHints StpColorCorrection: "dropdown"
*StpStpColorCorrection: 0 1 1 0 255 0.000 0.000 0.000
*DefaultStpColorCorrection: None
*StpDefaultStpColorCorrection: None
*StpColorCorrection None/Default: ""
*StpColorCorrection Accurate/High Accuracy: ""
*StpColorCorrection Bright/Bright Colors: ""
*StpColorCorrection Hue/Correct Hue Only: ""
*StpColorCorrection Uncorrected/Uncorrected: ""
*StpColorCorrection Desaturated/Desaturated: ""
*StpColorCorrection Threshold/Threshold: ""
*StpColorCorrection Density/Density: ""
*StpColorCorrection Raw/Raw: ""
*StpColorCorrection Predithered/Pre-Dithered: ""
*CloseUI: *StpColorCorrection

*ColorKeyWords: "StpBrightness"
*OpenUI *StpBrightness/Brightness: PickOne
*OrderDependency: 10 AnySetup *StpBrightness
*OPOptionHints StpBrightness: "slider input spinbox"
*StpStpBrightness: 3 1 1 0 255 0.000 2.000 1.000
*DefaultStpBrightness: None
*StpDefaultStpBrightness: None
*StpBrightness 0/0.000: ""
*StpBrightness 100/0.100: ""
*StpBrightness 200/0.200: ""
*StpBrightness 300/0.300: ""
*StpBrightness 400/0.400: ""
*StpBrightness 500/0.500: ""
*StpBrightness 600/0.600: ""
*StpBrightness 700/0.700: ""
*StpBrightness 800/0.800: ""
*StpBrightness 900/0.900: ""
*StpBrightness None/1.000: ""
*StpBrightness 1100/1.100: ""
*StpBrightness 1200/1.200: ""
*StpBrightness 1300/1.300: ""
*StpBrightness 1400/1.400: ""
*StpBrightness 1500/1.500: ""
*StpBrightness 1600/1.600: ""
*StpBrightness 1700/1.700: ""
*StpBrightness 1800/1.800: ""
*StpBrightness 1900/1.900: ""
*StpBrightness 2000/2.000: ""
*CloseUI: *StpBrightness

*CustomStpBrightness True: "pop"
*ParamCustomStpBrightness Value/Value: 1 real 0.000 2.000

*ColorKeyWords: "StpFineBrightness"
*OpenUI *StpFineBrightness/Brightness Fine Adjustment: PickOne
*OPOptionHints StpFineBrightness: "hide"
*StpStpFineBrightness: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineBrightness: None
*StpDefaultStpFineBrightness: None
*StpFineBrightness None/0.000: ""
*StpFineBrightness 0/0.000: ""
*StpFineBrightness 5/0.005: ""
*StpFineBrightness 10/0.010: ""
*StpFineBrightness 15/0.015: ""
*StpFineBrightness 20/0.020: ""
*StpFineBrightness 25/0.025: ""
*StpFineBrightness 30/0.030: ""
*StpFineBrightness 35/0.035: ""
*StpFineBrightness 40/0.040: ""
*StpFineBrightness 45/0.045: ""
*StpFineBrightness 50/0.050: ""
*StpFineBrightness 55/0.055: ""
*StpFineBrightness 60/0.060: ""
*StpFineBrightness 65/0.065: ""
*StpFineBrightness 70/0.070: ""
*StpFineBrightness 75/0.075: ""
*StpFineBrightness 80/0.080: ""
*StpFineBrightness 85/0.085: ""
*StpFineBrightness 90/0.090: ""
*StpFineBrightness 95/0.095: ""
*CloseUI: *StpFineBrightness

*ColorKeyWords: "StpContrast"
*OpenUI *StpContrast/Contrast: PickOne
*OrderDependency: 10 AnySetup *StpContrast
*OPOptionHints StpContrast: "slider input spinbox"
*StpStpContrast: 3 1 1 0 255 0.000 4.000 1.000
*DefaultStpContrast: None
*StpDefaultStpContrast: None
*StpContrast 0/0.000: ""
*StpContrast 100/0.100: ""
*StpContrast 200/0.200: ""
*StpContrast 300/0.300: ""
*StpContrast 400/0.400: ""
*StpContrast 500/0.500: ""
*StpContrast 600/0.600: ""
*StpContrast 700/0.700: ""
*StpContrast 800/0.800: ""
*StpContrast 900/0.900: ""
*StpContrast None/1.000: ""
*StpContrast 1100/1.100: ""
*StpContrast 1200/1.200: ""
*StpContrast 1300/1.300: ""
*StpContrast 1400/1.400: ""
*StpContrast 1500/1.500: ""
*StpContrast 1600/1.600: ""
*StpContrast 1700/1.700: ""
*StpContrast 1800/1.800: ""
*StpContrast 1900/1.900: ""
*StpContrast 2000/2.000: ""
*StpContrast 2100/2.100: ""
*StpContrast 2200/2.200: ""
*StpContrast 2300/2.300: ""
*StpContrast 2400/2.400: ""
*StpContrast 2500/2.500: ""
*StpContrast 2600/2.600: ""
*StpContrast 2700/2.700: ""
*StpContrast 2800/2.800: ""
*StpContrast 2900/2.900: ""
*StpContrast 3000/3.000: ""
*StpContrast 3100/3.100: ""
*StpContrast 3200/3.200: ""
*StpContrast 3300/3.300: ""
*StpContrast 3400/3.400: ""
*StpContrast 3500/3.500: ""
*StpContrast 3600/3.600: ""
*StpContrast 3700/3.700: ""
*StpContrast 3800/3.800: ""
*StpContrast 3900/3.900: ""
*StpContrast 4000/4.000: ""
*CloseUI: *StpContrast

*CustomStpContrast True: "pop"
*ParamCustomStpContrast Value/Value: 1 real 0.000 4.000

*ColorKeyWords: "StpFineContrast"
*OpenUI *StpFineContrast/Contrast Fine Adjustment: PickOne
*OPOptionHints StpFineContrast: "hide"
*StpStpFineContrast: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineContrast: None
*StpDefaultStpFineContrast: None
*StpFineContrast None/0.000: ""
*StpFineContrast 0/0.000: ""
*StpFineContrast 5/0.005: ""
*StpFineContrast 10/0.010: ""
*StpFineContrast 15/0.015: ""
*StpFineContrast 20/0.020: ""
*StpFineContrast 25/0.025: ""
*StpFineContrast 30/0.030: ""
*StpFineContrast 35/0.035: ""
*StpFineContrast 40/0.040: ""
*StpFineContrast 45/0.045: ""
*StpFineContrast 50/0.050: ""
*StpFineContrast 55/0.055: ""
*StpFineContrast 60/0.060: ""
*StpFineContrast 65/0.065: ""
*StpFineContrast 70/0.070: ""
*StpFineContrast 75/0.075: ""
*StpFineContrast 80/0.080: ""
*StpFineContrast 85/0.085: ""
*StpFineContrast 90/0.090: ""
*StpFineContrast 95/0.095: ""
*CloseUI: *StpFineContrast

*ColorKeyWords: "StpSaturation"
*OpenUI *StpSaturation/Saturation: PickOne
*OrderDependency: 10 AnySetup *StpSaturation
*OPOptionHints StpSaturation: "slider input spinbox"
*StpStpSaturation: 3 1 1 0 255 0.000 9.000 1.000
*DefaultStpSaturation: None
*StpDefaultStpSaturation: None
*StpSaturation 0/0.000: ""
*StpSaturation 100/0.100: ""
*StpSaturation 200/0.200: ""
*StpSaturation 300/0.300: ""
*StpSaturation 400/0.400: ""
*StpSaturation 500/0.500: ""
*StpSaturation 600/0.600: ""
*StpSaturation 700/0.700: ""
*StpSaturation 800/0.800: ""
*StpSaturation 900/0.900: ""
*StpSaturation None/1.000: ""
*StpSaturation 1100/1.100: ""
*StpSaturation 1200/1.200: ""
*StpSaturation 1300/1.300: ""
*StpSaturation 1400/1.400: ""
*StpSaturation 1500/1.500: ""
*StpSaturation 1600/1.600: ""
*StpSaturation 1700/1.700: ""
*StpSaturation 1800/1.800: ""
*StpSaturation 1900/1.900: ""
*StpSaturation 2000/2.000: ""
*StpSaturation 2100/2.100: ""
*StpSaturation 2200/2.200: ""
*StpSaturation 2300/2.300: ""
*StpSaturation 2400/2.400: ""
*StpSaturation 2500/2.500: ""
*StpSaturation 2600/2.600: ""
*StpSaturation 2700/2.700: ""
*StpSaturation 2800/2.800: ""
*StpSaturation 2900/2.900: ""
*StpSaturation 3000/3.000: ""
*StpSaturation 3100/3.100: ""
*StpSaturation 3200/3.200: ""
*StpSaturation 3300/3.300: ""
*StpSaturation 3400/3.400: ""
*StpSaturation 3500/3.500: ""
*StpSaturation 3600/3.600: ""
*StpSaturation 3700/3.700: ""
*StpSaturation 3800/3.800: ""
*StpSaturation 3900/3.900: ""
*StpSaturation 4000/4.000: ""
*StpSaturation 4100/4.100: ""
*StpSaturation 4200/4.200: ""
*StpSaturation 4300/4.300: ""
*StpSaturation 4400/4.400: ""
*StpSaturation 4500/4.500: ""
*StpSaturation 4600/4.600: ""
*StpSaturation 4700/4.700: ""
*StpSaturation 4800/4.800: ""
*StpSaturation 4900/4.900: ""
*StpSaturation 5000/5.000: ""
*StpSaturation 5100/5.100: ""
*StpSaturation 5200/5.200: ""
*StpSaturation 5300/5.300: ""
*StpSaturation 5400/5.400: ""
*StpSaturation 5500/5.500: ""
*StpSaturation 5600/5.600: ""
*StpSaturation 5700/5.700: ""
*StpSaturation 5800/5.800: ""
*StpSaturation 5900/5.900: ""
*StpSaturation 6000/6.000: ""
*StpSaturation 6100/6.100: ""
*StpSaturation 6200/6.200: ""
*StpSaturation 6300/6.300: ""
*StpSaturation 6400/6.400: ""
*StpSaturation 6500/6.500: ""
*StpSaturation 6600/6.600: ""
*StpSaturation 6700/6.700: ""
*StpSaturation 6800/6.800: ""
*StpSaturation 6900/6.900: ""
*StpSaturation 7000/7.000: ""
*StpSaturation 7100/7.100: ""
*StpSaturation 7200/7.200: ""
*StpSaturation 7300/7.300: ""
*StpSaturation 7400/7.400: ""
*StpSaturation 7500/7.500: ""
*StpSaturation 7600/7.600: ""
*StpSaturation 7700/7.700: ""
*StpSaturation 7800/7.800: ""
*StpSaturation 7900/7.900: ""
*StpSaturation 8000/8.000: ""
*StpSaturation 8100/8.100: ""
*StpSaturation 8200/8.200: ""
*StpSaturation 8300/8.300: ""
*StpSaturation 8400/8.400: ""
*StpSaturation 8500/8.500: ""
*StpSaturation 8600/8.600: ""
*StpSaturation 8700/8.700: ""
*StpSaturation 8800/8.800: ""
*StpSaturation 8900/8.900: ""
*StpSaturation 9000/9.000: ""
*CloseUI: *StpSaturation

*CustomStpSaturation True: "pop"
*ParamCustomStpSaturation Value/Value: 1 real 0.000 9.000

*ColorKeyWords: "StpFineSaturation"
*OpenUI *StpFineSaturation/Saturation Fine Adjustment: PickOne
*OPOptionHints StpFineSaturation: "hide"
*StpStpFineSaturation: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineSaturation: None
*StpDefaultStpFineSaturation: None
*StpFineSaturation None/0.000: ""
*StpFineSaturation 0/0.000: ""
*StpFineSaturation 5/0.005: ""
*StpFineSaturation 10/0.010: ""
*StpFineSaturation 15/0.015: ""
*StpFineSaturation 20/0.020: ""
*StpFineSaturation 25/0.025: ""
*StpFineSaturation 30/0.030: ""
*StpFineSaturation 35/0.035: ""
*StpFineSaturation 40/0.040: ""
*StpFineSaturation 45/0.045: ""
*StpFineSaturation 50/0.050: ""
*StpFineSaturation 55/0.055: ""
*StpFineSaturation 60/0.060: ""
*StpFineSaturation 65/0.065: ""
*StpFineSaturation 70/0.070: ""
*StpFineSaturation 75/0.075: ""
*StpFineSaturation 80/0.080: ""
*StpFineSaturation 85/0.085: ""
*StpFineSaturation 90/0.090: ""
*StpFineSaturation 95/0.095: ""
*CloseUI: *StpFineSaturation

*ColorKeyWords: "StpImageType"
*OpenUI *StpImageType/Image Type: PickOne
*OrderDependency: 10 AnySetup *StpImageType
*OPOptionHints StpImageType: "dropdown"
*StpStpImageType: 0 1 1 0 255 0.000 0.000 0.000
*DefaultStpImageType: TextGraphics
*StpDefaultStpImageType: TextGraphics
*StpImageType None/Manual Control: ""
*StpImageType Text/Text: ""
*StpImageType Graphics/Graphics: ""
*StpImageType TextGraphics/Mixed Text and Graphics: ""
*StpImageType Photo/Photograph: ""
*StpImageType LineArt/Line Art: ""
*CloseUI: *StpImageType

*CloseGroup: C1L0/Output Control Common

*OpenGroup: C1L1/Output Control Extra 1

*ColorKeyWords: "StpCyanDensity"
*OpenUI *StpCyanDensity/Cyan Density: PickOne
*OrderDependency: 10 AnySetup *StpCyanDensity
*OPOptionHints StpCyanDensity: "slider input spinbox"
*StpStpCyanDensity: 3 0 1 1 1 0.000 2.000 1.000
*DefaultStpCyanDensity: None
*StpDefaultStpCyanDensity: None
*StpCyanDensity 0/0.000: ""
*StpCyanDensity 100/0.100: ""
*StpCyanDensity 200/0.200: ""
*StpCyanDensity 300/0.300: ""
*StpCyanDensity 400/0.400: ""
*StpCyanDensity 500/0.500: ""
*StpCyanDensity 600/0.600: ""
*StpCyanDensity 700/0.700: ""
*StpCyanDensity 800/0.800: ""
*StpCyanDensity 900/0.900: ""
*StpCyanDensity 1000/1.000: ""
*StpCyanDensity 1100/1.100: ""
*StpCyanDensity 1200/1.200: ""
*StpCyanDensity 1300/1.300: ""
*StpCyanDensity 1400/1.400: ""
*StpCyanDensity 1500/1.500: ""
*StpCyanDensity 1600/1.600: ""
*StpCyanDensity 1700/1.700: ""
*StpCyanDensity 1800/1.800: ""
*StpCyanDensity 1900/1.900: ""
*StpCyanDensity 2000/2.000: ""
*StpCyanDensity None/None: ""
*CloseUI: *StpCyanDensity

*CustomStpCyanDensity True: "pop"
*ParamCustomStpCyanDensity Value/Value: 1 real 0.000 2.000

*ColorKeyWords: "StpFineCyanDensity"
*OpenUI *StpFineCyanDensity/Cyan Density Fine Adjustment: PickOne
*OPOptionHints StpFineCyanDensity: "hide"
*StpStpFineCyanDensity: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineCyanDensity: None
*StpDefaultStpFineCyanDensity: None
*StpFineCyanDensity None/0.000: ""
*StpFineCyanDensity 0/0.000: ""
*StpFineCyanDensity 5/0.005: ""
*StpFineCyanDensity 10/0.010: ""
*StpFineCyanDensity 15/0.015: ""
*StpFineCyanDensity 20/0.020: ""
*StpFineCyanDensity 25/0.025: ""
*StpFineCyanDensity 30/0.030: ""
*StpFineCyanDensity 35/0.035: ""
*StpFineCyanDensity 40/0.040: ""
*StpFineCyanDensity 45/0.045: ""
*StpFineCyanDensity 50/0.050: ""
*StpFineCyanDensity 55/0.055: ""
*StpFineCyanDensity 60/0.060: ""
*StpFineCyanDensity 65/0.065: ""
*StpFineCyanDensity 70/0.070: ""
*StpFineCyanDensity 75/0.075: ""
*StpFineCyanDensity 80/0.080: ""
*StpFineCyanDensity 85/0.085: ""
*StpFineCyanDensity 90/0.090: ""
*StpFineCyanDensity 95/0.095: ""
*CloseUI: *StpFineCyanDensity

*ColorKeyWords: "StpMagentaDensity"
*OpenUI *StpMagentaDensity/Magenta Density: PickOne
*OrderDependency: 10 AnySetup *StpMagentaDensity
*OPOptionHints StpMagentaDensity: "slider input spinbox"
*StpStpMagentaDensity: 3 0 1 1 2 0.000 2.000 1.000
*DefaultStpMagentaDensity: None
*StpDefaultStpMagentaDensity: None
*StpMagentaDensity 0/0.000: ""
*StpMagentaDensity 100/0.100: ""
*StpMagentaDensity 200/0.200: ""
*StpMagentaDensity 300/0.300: ""
*StpMagentaDensity 400/0.400: ""
*StpMagentaDensity 500/0.500: ""
*StpMagentaDensity 600/0.600: ""
*StpMagentaDensity 700/0.700: ""
*StpMagentaDensity 800/0.800: ""
*StpMagentaDensity 900/0.900: ""
*StpMagentaDensity 1000/1.000: ""
*StpMagentaDensity 1100/1.100: ""
*StpMagentaDensity 1200/1.200: ""
*StpMagentaDensity 1300/1.300: ""
*StpMagentaDensity 1400/1.400: ""
*StpMagentaDensity 1500/1.500: ""
*StpMagentaDensity 1600/1.600: ""
*StpMagentaDensity 1700/1.700: ""
*StpMagentaDensity 1800/1.800: ""
*StpMagentaDensity 1900/1.900: ""
*StpMagentaDensity 2000/2.000: ""
*StpMagentaDensity None/None: ""
*CloseUI: *StpMagentaDensity

*CustomStpMagentaDensity True: "pop"
*ParamCustomStpMagentaDensity Value/Value: 1 real 0.000 2.000

*ColorKeyWords: "StpFineMagentaDensity"
*OpenUI *StpFineMagentaDensity/Magenta Density Fine Adjustment: PickOne
*OPOptionHints StpFineMagentaDensity: "hide"
*StpStpFineMagentaDensity: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineMagentaDensity: None
*StpDefaultStpFineMagentaDensity: None
*StpFineMagentaDensity None/0.000: ""
*StpFineMagentaDensity 0/0.000: ""
*StpFineMagentaDensity 5/0.005: ""
*StpFineMagentaDensity 10/0.010: ""
*StpFineMagentaDensity 15/0.015: ""
*StpFineMagentaDensity 20/0.020: ""
*StpFineMagentaDensity 25/0.025: ""
*StpFineMagentaDensity 30/0.030: ""
*StpFineMagentaDensity 35/0.035: ""
*StpFineMagentaDensity 40/0.040: ""
*StpFineMagentaDensity 45/0.045: ""
*StpFineMagentaDensity 50/0.050: ""
*StpFineMagentaDensity 55/0.055: ""
*StpFineMagentaDensity 60/0.060: ""
*StpFineMagentaDensity 65/0.065: ""
*StpFineMagentaDensity 70/0.070: ""
*StpFineMagentaDensity 75/0.075: ""
*StpFineMagentaDensity 80/0.080: ""
*StpFineMagentaDensity 85/0.085: ""
*StpFineMagentaDensity 90/0.090: ""
*StpFineMagentaDensity 95/0.095: ""
*CloseUI: *StpFineMagentaDensity

*ColorKeyWords: "StpYellowDensity"
*OpenUI *StpYellowDensity/Yellow Density: PickOne
*OrderDependency: 10 AnySetup *StpYellowDensity
*OPOptionHints StpYellowDensity: "slider input spinbox"
*StpStpYellowDensity: 3 0 1 1 3 0.000 2.000 1.000
*DefaultStpYellowDensity: None
*StpDefaultStpYellowDensity: None
*StpYellowDensity 0/0.000: ""
*StpYellowDensity 100/0.100: ""
*StpYellowDensity 200/0.200: ""
*StpYellowDensity 300/0.300: ""
*StpYellowDensity 400/0.400: ""
*StpYellowDensity 500/0.500: ""
*StpYellowDensity 600/0.600: ""
*StpYellowDensity 700/0.700: ""
*StpYellowDensity 800/0.800: ""
*StpYellowDensity 900/0.900: ""
*StpYellowDensity 1000/1.000: ""
*StpYellowDensity 1100/1.100: ""
*StpYellowDensity 1200/1.200: ""
*StpYellowDensity 1300/1.300: ""
*StpYellowDensity 1400/1.400: ""
*StpYellowDensity 1500/1.500: ""
*StpYellowDensity 1600/1.600: ""
*StpYellowDensity 1700/1.700: ""
*StpYellowDensity 1800/1.800: ""
*StpYellowDensity 1900/1.900: ""
*StpYellowDensity 2000/2.000: ""
*StpYellowDensity None/None: ""
*CloseUI: *StpYellowDensity

*CustomStpYellowDensity True: "pop"
*ParamCustomStpYellowDensity Value/Value: 1 real 0.000 2.000

*ColorKeyWords: "StpFineYellowDensity"
*OpenUI *StpFineYellowDensity/Yellow Density Fine Adjustment: PickOne
*OPOptionHints StpFineYellowDensity: "hide"
*StpStpFineYellowDensity: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineYellowDensity: None
*StpDefaultStpFineYellowDensity: None
*StpFineYellowDensity None/0.000: ""
*StpFineYellowDensity 0/0.000: ""
*StpFineYellowDensity 5/0.005: ""
*StpFineYellowDensity 10/0.010: ""
*StpFineYellowDensity 15/0.015: ""
*StpFineYellowDensity 20/0.020: ""
*StpFineYellowDensity 25/0.025: ""
*StpFineYellowDensity 30/0.030: ""
*StpFineYellowDensity 35/0.035: ""
*StpFineYellowDensity 40/0.040: ""
*StpFineYellowDensity 45/0.045: ""
*StpFineYellowDensity 50/0.050: ""
*StpFineYellowDensity 55/0.055: ""
*StpFineYellowDensity 60/0.060: ""
*StpFineYellowDensity 65/0.065: ""
*StpFineYellowDensity 70/0.070: ""
*StpFineYellowDensity 75/0.075: ""
*StpFineYellowDensity 80/0.080: ""
*StpFineYellowDensity 85/0.085: ""
*StpFineYellowDensity 90/0.090: ""
*StpFineYellowDensity 95/0.095: ""
*CloseUI: *StpFineYellowDensity

*ColorKeyWords: "StpBlackDensity"
*OpenUI *StpBlackDensity/Black Density: PickOne
*OrderDependency: 10 AnySetup *StpBlackDensity
*OPOptionHints StpBlackDensity: "slider input spinbox"
*StpStpBlackDensity: 3 0 1 1 0 0.000 2.000 1.000
*DefaultStpBlackDensity: None
*StpDefaultStpBlackDensity: None
*StpBlackDensity 0/0.000: ""
*StpBlackDensity 100/0.100: ""
*StpBlackDensity 200/0.200: ""
*StpBlackDensity 300/0.300: ""
*StpBlackDensity 400/0.400: ""
*StpBlackDensity 500/0.500: ""
*StpBlackDensity 600/0.600: ""
*StpBlackDensity 700/0.700: ""
*StpBlackDensity 800/0.800: ""
*StpBlackDensity 900/0.900: ""
*StpBlackDensity 1000/1.000: ""
*StpBlackDensity 1100/1.100: ""
*StpBlackDensity 1200/1.200: ""
*StpBlackDensity 1300/1.300: ""
*StpBlackDensity 1400/1.400: ""
*StpBlackDensity 1500/1.500: ""
*StpBlackDensity 1600/1.600: ""
*StpBlackDensity 1700/1.700: ""
*StpBlackDensity 1800/1.800: ""
*StpBlackDensity 1900/1.900: ""
*StpBlackDensity 2000/2.000: ""
*StpBlackDensity None/None: ""
*CloseUI: *StpBlackDensity

*CustomStpBlackDensity True: "pop"
*ParamCustomStpBlackDensity Value/Value: 1 real 0.000 2.000

*ColorKeyWords: "StpFineBlackDensity"
*OpenUI *StpFineBlackDensity/Black Density Fine Adjustment: PickOne
*OPOptionHints StpFineBlackDensity: "hide"
*StpStpFineBlackDensity: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineBlackDensity: None
*StpDefaultStpFineBlackDensity: None
*StpFineBlackDensity None/0.000: ""
*StpFineBlackDensity 0/0.000: ""
*StpFineBlackDensity 5/0.005: ""
*StpFineBlackDensity 10/0.010: ""
*StpFineBlackDensity 15/0.015: ""
*StpFineBlackDensity 20/0.020: ""
*StpFineBlackDensity 25/0.025: ""
*StpFineBlackDensity 30/0.030: ""
*StpFineBlackDensity 35/0.035: ""
*StpFineBlackDensity 40/0.040: ""
*StpFineBlackDensity 45/0.045: ""
*StpFineBlackDensity 50/0.050: ""
*StpFineBlackDensity 55/0.055: ""
*StpFineBlackDensity 60/0.060: ""
*StpFineBlackDensity 65/0.065: ""
*StpFineBlackDensity 70/0.070: ""
*StpFineBlackDensity 75/0.075: ""
*StpFineBlackDensity 80/0.080: ""
*StpFineBlackDensity 85/0.085: ""
*StpFineBlackDensity 90/0.090: ""
*StpFineBlackDensity 95/0.095: ""
*CloseUI: *StpFineBlackDensity

*ColorKeyWords: "StpDensity"
*OpenUI *StpDensity/Density: PickOne
*OrderDependency: 10 AnySetup *StpDensity
*OPOptionHints StpDensity: "slider input spinbox"
*StpStpDensity: 3 0 1 1 255 0.100 8.000 1.000
*DefaultStpDensity: None
*StpDefaultStpDensity: None
*StpDensity 100/0.100: ""
*StpDensity 200/0.200: ""
*StpDensity 300/0.300: ""
*StpDensity 400/0.400: ""
*StpDensity 500/0.500: ""
*StpDensity 600/0.600: ""
*StpDensity 700/0.700: ""
*StpDensity 800/0.800: ""
*StpDensity 900/0.900: ""
*StpDensity 1000/1.000: ""
*StpDensity 1100/1.100: ""
*StpDensity 1200/1.200: ""
*StpDensity 1300/1.300: ""
*StpDensity 1400/1.400: ""
*StpDensity 1500/1.500: ""
*StpDensity 1600/1.600: ""
*StpDensity 1700/1.700: ""
*StpDensity 1800/1.800: ""
*StpDensity 1900/1.900: ""
*StpDensity 2000/2.000: ""
*StpDensity 2100/2.100: ""
*StpDensity 2200/2.200: ""
*StpDensity 2300/2.300: ""
*StpDensity 2400/2.400: ""
*StpDensity 2500/2.500: ""
*StpDensity 2600/2.600: ""
*StpDensity 2700/2.700: ""
*StpDensity 2800/2.800: ""
*StpDensity 2900/2.900: ""
*StpDensity 3000/3.000: ""
*StpDensity 3100/3.100: ""
*StpDensity 3200/3.200: ""
*StpDensity 3300/3.300: ""
*StpDensity 3400/3.400: ""
*StpDensity 3500/3.500: ""
*StpDensity 3600/3.600: ""
*StpDensity 3700/3.700: ""
*StpDensity 3800/3.800: ""
*StpDensity 3900/3.900: ""
*StpDensity 4000/4.000: ""
*StpDensity 4100/4.100: ""
*StpDensity 4200/4.200: ""
*StpDensity 4300/4.300: ""
*StpDensity 4400/4.400: ""
*StpDensity 4500/4.500: ""
*StpDensity 4600/4.600: ""
*StpDensity 4700/4.700: ""
*StpDensity 4800/4.800: ""
*StpDensity 4900/4.900: ""
*StpDensity 5000/5.000: ""
*StpDensity 5100/5.100: ""
*StpDensity 5200/5.200: ""
*StpDensity 5300/5.300: ""
*StpDensity 5400/5.400: ""
*StpDensity 5500/5.500: ""
*StpDensity 5600/5.600: ""
*StpDensity 5700/5.700: ""
*StpDensity 5800/5.800: ""
*StpDensity 5900/5.900: ""
*StpDensity 6000/6.000: ""
*StpDensity 6100/6.100: ""
*StpDensity 6200/6.200: ""
*StpDensity 6300/6.300: ""
*StpDensity 6400/6.400: ""
*StpDensity 6500/6.500: ""
*StpDensity 6600/6.600: ""
*StpDensity 6700/6.700: ""
*StpDensity 6800/6.800: ""
*StpDensity 6900/6.900: ""
*StpDensity 7000/7.000: ""
*StpDensity 7100/7.100: ""
*StpDensity 7200/7.200: ""
*StpDensity 7300/7.300: ""
*StpDensity 7400/7.400: ""
*StpDensity 7500/7.500: ""
*StpDensity 7600/7.600: ""
*StpDensity 7700/7.700: ""
*StpDensity 7800/7.800: ""
*StpDensity 7900/7.900: ""
*StpDensity 8000/8.000: ""
*StpDensity None/None: ""
*CloseUI: *StpDensity

*CustomStpDensity True: "pop"
*ParamCustomStpDensity Value/Value: 1 real 0.100 8.000

*ColorKeyWords: "StpFineDensity"
*OpenUI *StpFineDensity/Density Fine Adjustment: PickOne
*OPOptionHints StpFineDensity: "hide"
*StpStpFineDensity: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineDensity: None
*StpDefaultStpFineDensity: None
*StpFineDensity None/0.000: ""
*StpFineDensity 0/0.000: ""
*StpFineDensity 5/0.005: ""
*StpFineDensity 10/0.010: ""
*StpFineDensity 15/0.015: ""
*StpFineDensity 20/0.020: ""
*StpFineDensity 25/0.025: ""
*StpFineDensity 30/0.030: ""
*StpFineDensity 35/0.035: ""
*StpFineDensity 40/0.040: ""
*StpFineDensity 45/0.045: ""
*StpFineDensity 50/0.050: ""
*StpFineDensity 55/0.055: ""
*StpFineDensity 60/0.060: ""
*StpFineDensity 65/0.065: ""
*StpFineDensity 70/0.070: ""
*StpFineDensity 75/0.075: ""
*StpFineDensity 80/0.080: ""
*StpFineDensity 85/0.085: ""
*StpFineDensity 90/0.090: ""
*StpFineDensity 95/0.095: ""
*CloseUI: *StpFineDensity

*ColorKeyWords: "StpDitherAlgorithm"
*OpenUI *StpDitherAlgorithm/Dither Algorithm: PickOne
*OrderDependency: 10 AnySetup *StpDitherAlgorithm
*OPOptionHints StpDitherAlgorithm: "dropdown"
*StpStpDitherAlgorithm: 0 1 1 1 255 0.000 0.000 0.000
*DefaultStpDitherAlgorithm: None
*StpDefaultStpDitherAlgorithm: None
*StpDitherAlgorithm None/Default: ""
*StpDitherAlgorithm EvenTone/EvenTone: ""
*StpDitherAlgorithm HybridEvenTone/Hybrid EvenTone: ""
*StpDitherAlgorithm Adaptive/Adaptive Hybrid: ""
*StpDitherAlgorithm Ordered/Ordered: ""
*StpDitherAlgorithm OrderedNew/Ordered New: ""
*StpDitherAlgorithm Fast/Fast: ""
*StpDitherAlgorithm VeryFast/Very Fast: ""
*StpDitherAlgorithm Floyd/Hybrid Floyd-Steinberg: ""
*StpDitherAlgorithm Predithered/Predithered Input: ""
*StpDitherAlgorithm Segmented/Drop Size Segmented: ""
*StpDitherAlgorithm SegmentedNew/Drop Size Segmented New: ""
*CloseUI: *StpDitherAlgorithm

*CloseGroup: C1L1/Output Control Extra 1

*OpenGroup: C1L2/Output Control Extra 2

*ColorKeyWords: "StpGamma"
*OpenUI *StpGamma/Composite Gamma: PickOne
*OrderDependency: 10 AnySetup *StpGamma
*OPOptionHints StpGamma: "slider input spinbox"
*StpStpGamma: 3 0 1 2 255 0.100 4.000 1.000
*DefaultStpGamma: None
*StpDefaultStpGamma: None
*StpGamma 100/0.100: ""
*StpGamma 200/0.200: ""
*StpGamma 300/0.300: ""
*StpGamma 400/0.400: ""
*StpGamma 500/0.500: ""
*StpGamma 600/0.600: ""
*StpGamma 700/0.700: ""
*StpGamma 800/0.800: ""
*StpGamma 900/0.900: ""
*StpGamma 1000/1.000: ""
*StpGamma 1100/1.100: ""
*StpGamma 1200/1.200: ""
*StpGamma 1300/1.300: ""
*StpGamma 1400/1.400: ""
*StpGamma 1500/1.500: ""
*StpGamma 1600/1.600: ""
*StpGamma 1700/1.700: ""
*StpGamma 1800/1.800: ""
*StpGamma 1900/1.900: ""
*StpGamma 2000/2.000: ""
*StpGamma 2100/2.100: ""
*StpGamma 2200/2.200: ""
*StpGamma 2300/2.300: ""
*StpGamma 2400/2.400: ""
*StpGamma 2500/2.500: ""
*StpGamma 2600/2.600: ""
*StpGamma 2700/2.700: ""
*StpGamma 2800/2.800: ""
*StpGamma 2900/2.900: ""
*StpGamma 3000/3.000: ""
*StpGamma 3100/3.100: ""
*StpGamma 3200/3.200: ""
*StpGamma 3300/3.300: ""
*StpGamma 3400/3.400: ""
*StpGamma 3500/3.500: ""
*StpGamma 3600/3.600: ""
*StpGamma 3700/3.700: ""
*StpGamma 3800/3.800: ""
*StpGamma 3900/3.900: ""
*StpGamma 4000/4.000: ""
*StpGamma None/None: ""
*CloseUI: *StpGamma

*CustomStpGamma True: "pop"
*ParamCustomStpGamma Value/Value: 1 real 0.100 4.000

*ColorKeyWords: "StpFineGamma"
*OpenUI *StpFineGamma/Composite Gamma Fine Adjustment: PickOne
*OPOptionHints StpFineGamma: "hide"
*StpStpFineGamma: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineGamma: None
*StpDefaultStpFineGamma: None
*StpFineGamma None/0.000: ""
*StpFineGamma 0/0.000: ""
*StpFineGamma 5/0.005: ""
*StpFineGamma 10/0.010: ""
*StpFineGamma 15/0.015: ""
*StpFineGamma 20/0.020: ""
*StpFineGamma 25/0.025: ""
*StpFineGamma 30/0.030: ""
*StpFineGamma 35/0.035: ""
*StpFineGamma 40/0.040: ""
*StpFineGamma 45/0.045: ""
*StpFineGamma 50/0.050: ""
*StpFineGamma 55/0.055: ""
*StpFineGamma 60/0.060: ""
*StpFineGamma 65/0.065: ""
*StpFineGamma 70/0.070: ""
*StpFineGamma 75/0.075: ""
*StpFineGamma 80/0.080: ""
*StpFineGamma 85/0.085: ""
*StpFineGamma 90/0.090: ""
*StpFineGamma 95/0.095: ""
*CloseUI: *StpFineGamma

*ColorKeyWords: "StpCyanGamma"
*OpenUI *StpCyanGamma/Cyan: PickOne
*OrderDependency: 10 AnySetup *StpCyanGamma
*OPOptionHints StpCyanGamma: "slider input spinbox"
*StpStpCyanGamma: 3 0 1 2 1 0.000 4.000 1.000
*DefaultStpCyanGamma: None
*StpDefaultStpCyanGamma: None
*StpCyanGamma 0/0.000: ""
*StpCyanGamma 100/0.100: ""
*StpCyanGamma 200/0.200: ""
*StpCyanGamma 300/0.300: ""
*StpCyanGamma 400/0.400: ""
*StpCyanGamma 500/0.500: ""
*StpCyanGamma 600/0.600: ""
*StpCyanGamma 700/0.700: ""
*StpCyanGamma 800/0.800: ""
*StpCyanGamma 900/0.900: ""
*StpCyanGamma 1000/1.000: ""
*StpCyanGamma 1100/1.100: ""
*StpCyanGamma 1200/1.200: ""
*StpCyanGamma 1300/1.300: ""
*StpCyanGamma 1400/1.400: ""
*StpCyanGamma 1500/1.500: ""
*StpCyanGamma 1600/1.600: ""
*StpCyanGamma 1700/1.700: ""
*StpCyanGamma 1800/1.800: ""
*StpCyanGamma 1900/1.900: ""
*StpCyanGamma 2000/2.000: ""
*StpCyanGamma 2100/2.100: ""
*StpCyanGamma 2200/2.200: ""
*StpCyanGamma 2300/2.300: ""
*StpCyanGamma 2400/2.400: ""
*StpCyanGamma 2500/2.500: ""
*StpCyanGamma 2600/2.600: ""
*StpCyanGamma 2700/2.700: ""
*StpCyanGamma 2800/2.800: ""
*StpCyanGamma 2900/2.900: ""
*StpCyanGamma 3000/3.000: ""
*StpCyanGamma 3100/3.100: ""
*StpCyanGamma 3200/3.200: ""
*StpCyanGamma 3300/3.300: ""
*StpCyanGamma 3400/3.400: ""
*StpCyanGamma 3500/3.500: ""
*StpCyanGamma 3600/3.600: ""
*StpCyanGamma 3700/3.700: ""
*StpCyanGamma 3800/3.800: ""
*StpCyanGamma 3900/3.900: ""
*StpCyanGamma 4000/4.000: ""
*StpCyanGamma None/None: ""
*CloseUI: *StpCyanGamma

*CustomStpCyanGamma True: "pop"
*ParamCustomStpCyanGamma Value/Value: 1 real 0.000 4.000

*ColorKeyWords: "StpFineCyanGamma"
*OpenUI *StpFineCyanGamma/Cyan Fine Adjustment: PickOne
*OPOptionHints StpFineCyanGamma: "hide"
*StpStpFineCyanGamma: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineCyanGamma: None
*StpDefaultStpFineCyanGamma: None
*StpFineCyanGamma None/0.000: ""
*StpFineCyanGamma 0/0.000: ""
*StpFineCyanGamma 5/0.005: ""
*StpFineCyanGamma 10/0.010: ""
*StpFineCyanGamma 15/0.015: ""
*StpFineCyanGamma 20/0.020: ""
*StpFineCyanGamma 25/0.025: ""
*StpFineCyanGamma 30/0.030: ""
*StpFineCyanGamma 35/0.035: ""
*StpFineCyanGamma 40/0.040: ""
*StpFineCyanGamma 45/0.045: ""
*StpFineCyanGamma 50/0.050: ""
*StpFineCyanGamma 55/0.055: ""
*StpFineCyanGamma 60/0.060: ""
*StpFineCyanGamma 65/0.065: ""
*StpFineCyanGamma 70/0.070: ""
*StpFineCyanGamma 75/0.075: ""
*StpFineCyanGamma 80/0.080: ""
*StpFineCyanGamma 85/0.085: ""
*StpFineCyanGamma 90/0.090: ""
*StpFineCyanGamma 95/0.095: ""
*CloseUI: *StpFineCyanGamma

*ColorKeyWords: "StpMagentaGamma"
*OpenUI *StpMagentaGamma/Magenta: PickOne
*OrderDependency: 10 AnySetup *StpMagentaGamma
*OPOptionHints StpMagentaGamma: "slider input spinbox"
*StpStpMagentaGamma: 3 0 1 2 2 0.000 4.000 1.000
*DefaultStpMagentaGamma: None
*StpDefaultStpMagentaGamma: None
*StpMagentaGamma 0/0.000: ""
*StpMagentaGamma 100/0.100: ""
*StpMagentaGamma 200/0.200: ""
*StpMagentaGamma 300/0.300: ""
*StpMagentaGamma 400/0.400: ""
*StpMagentaGamma 500/0.500: ""
*StpMagentaGamma 600/0.600: ""
*StpMagentaGamma 700/0.700: ""
*StpMagentaGamma 800/0.800: ""
*StpMagentaGamma 900/0.900: ""
*StpMagentaGamma 1000/1.000: ""
*StpMagentaGamma 1100/1.100: ""
*StpMagentaGamma 1200/1.200: ""
*StpMagentaGamma 1300/1.300: ""
*StpMagentaGamma 1400/1.400: ""
*StpMagentaGamma 1500/1.500: ""
*StpMagentaGamma 1600/1.600: ""
*StpMagentaGamma 1700/1.700: ""
*StpMagentaGamma 1800/1.800: ""
*StpMagentaGamma 1900/1.900: ""
*StpMagentaGamma 2000/2.000: ""
*StpMagentaGamma 2100/2.100: ""
*StpMagentaGamma 2200/2.200: ""
*StpMagentaGamma 2300/2.300: ""
*StpMagentaGamma 2400/2.400: ""
*StpMagentaGamma 2500/2.500: ""
*StpMagentaGamma 2600/2.600: ""
*StpMagentaGamma 2700/2.700: ""
*StpMagentaGamma 2800/2.800: ""
*StpMagentaGamma 2900/2.900: ""
*StpMagentaGamma 3000/3.000: ""
*StpMagentaGamma 3100/3.100: ""
*StpMagentaGamma 3200/3.200: ""
*StpMagentaGamma 3300/3.300: ""
*StpMagentaGamma 3400/3.400: ""
*StpMagentaGamma 3500/3.500: ""
*StpMagentaGamma 3600/3.600: ""
*StpMagentaGamma 3700/3.700: ""
*StpMagentaGamma 3800/3.800: ""
*StpMagentaGamma 3900/3.900: ""
*StpMagentaGamma 4000/4.000: ""
*StpMagentaGamma None/None: ""
*CloseUI: *StpMagentaGamma

*CustomStpMagentaGamma True: "pop"
*ParamCustomStpMagentaGamma Value/Value: 1 real 0.000 4.000

*ColorKeyWords: "StpFineMagentaGamma"
*OpenUI *StpFineMagentaGamma/Magenta Fine Adjustment: PickOne
*OPOptionHints StpFineMagentaGamma: "hide"
*StpStpFineMagentaGamma: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineMagentaGamma: None
*StpDefaultStpFineMagentaGamma: None
*StpFineMagentaGamma None/0.000: ""
*StpFineMagentaGamma 0/0.000: ""
*StpFineMagentaGamma 5/0.005: ""
*StpFineMagentaGamma 10/0.010: ""
*StpFineMagentaGamma 15/0.015: ""
*StpFineMagentaGamma 20/0.020: ""
*StpFineMagentaGamma 25/0.025: ""
*StpFineMagentaGamma 30/0.030: ""
*StpFineMagentaGamma 35/0.035: ""
*StpFineMagentaGamma 40/0.040: ""
*StpFineMagentaGamma 45/0.045: ""
*StpFineMagentaGamma 50/0.050: ""
*StpFineMagentaGamma 55/0.055: ""
*StpFineMagentaGamma 60/0.060: ""
*StpFineMagentaGamma 65/0.065: ""
*StpFineMagentaGamma 70/0.070: ""
*StpFineMagentaGamma 75/0.075: ""
*StpFineMagentaGamma 80/0.080: ""
*StpFineMagentaGamma 85/0.085: ""
*StpFineMagentaGamma 90/0.090: ""
*StpFineMagentaGamma 95/0.095: ""
*CloseUI: *StpFineMagentaGamma

*ColorKeyWords: "StpYellowGamma"
*OpenUI *StpYellowGamma/Yellow: PickOne
*OrderDependency: 10 AnySetup *StpYellowGamma
*OPOptionHints StpYellowGamma: "slider input spinbox"
*StpStpYellowGamma: 3 0 1 2 3 0.000 4.000 1.000
*DefaultStpYellowGamma: None
*StpDefaultStpYellowGamma: None
*StpYellowGamma 0/0.000: ""
*StpYellowGamma 100/0.100: ""
*StpYellowGamma 200/0.200: ""
*StpYellowGamma 300/0.300: ""
*StpYellowGamma 400/0.400: ""
*StpYellowGamma 500/0.500: ""
*StpYellowGamma 600/0.600: ""
*StpYellowGamma 700/0.700: ""
*StpYellowGamma 800/0.800: ""
*StpYellowGamma 900/0.900: ""
*StpYellowGamma 1000/1.000: ""
*StpYellowGamma 1100/1.100: ""
*StpYellowGamma 1200/1.200: ""
*StpYellowGamma 1300/1.300: ""
*StpYellowGamma 1400/1.400: ""
*StpYellowGamma 1500/1.500: ""
*StpYellowGamma 1600/1.600: ""
*StpYellowGamma 1700/1.700: ""
*StpYellowGamma 1800/1.800: ""
*StpYellowGamma 1900/1.900: ""
*StpYellowGamma 2000/2.000: ""
*StpYellowGamma 2100/2.100: ""
*StpYellowGamma 2200/2.200: ""
*StpYellowGamma 2300/2.300: ""
*StpYellowGamma 2400/2.400: ""
*StpYellowGamma 2500/2.500: ""
*StpYellowGamma 2600/2.600: ""
*StpYellowGamma 2700/2.700: ""
*StpYellowGamma 2800/2.800: ""
*StpYellowGamma 2900/2.900: ""
*StpYellowGamma 3000/3.000: ""
*StpYellowGamma 3100/3.100: ""
*StpYellowGamma 3200/3.200: ""
*StpYellowGamma 3300/3.300: ""
*StpYellowGamma 3400/3.400: ""
*StpYellowGamma 3500/3.500: ""
*StpYellowGamma 3600/3.600: ""
*StpYellowGamma 3700/3.700: ""
*StpYellowGamma 3800/3.800: ""
*StpYellowGamma 3900/3.900: ""
*StpYellowGamma 4000/4.000: ""
*StpYellowGamma None/None: ""
*CloseUI: *StpYellowGamma

*CustomStpYellowGamma True: "pop"
*ParamCustomStpYellowGamma Value/Value: 1 real 0.000 4.000

*ColorKeyWords: "StpFineYellowGamma"
*OpenUI *StpFineYellowGamma/Yellow Fine Adjustment: PickOne
*OPOptionHints StpFineYellowGamma: "hide"
*StpStpFineYellowGamma: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineYellowGamma: None
*StpDefaultStpFineYellowGamma: None
*StpFineYellowGamma None/0.000: ""
*StpFineYellowGamma 0/0.000: ""
*StpFineYellowGamma 5/0.005: ""
*StpFineYellowGamma 10/0.010: ""
*StpFineYellowGamma 15/0.015: ""
*StpFineYellowGamma 20/0.020: ""
*StpFineYellowGamma 25/0.025: ""
*StpFineYellowGamma 30/0.030: ""
*StpFineYellowGamma 35/0.035: ""
*StpFineYellowGamma 40/0.040: ""
*StpFineYellowGamma 45/0.045: ""
*StpFineYellowGamma 50/0.050: ""
*StpFineYellowGamma 55/0.055: ""
*StpFineYellowGamma 60/0.060: ""
*StpFineYellowGamma 65/0.065: ""
*StpFineYellowGamma 70/0.070: ""
*StpFineYellowGamma 75/0.075: ""
*StpFineYellowGamma 80/0.080: ""
*StpFineYellowGamma 85/0.085: ""
*StpFineYellowGamma 90/0.090: ""
*StpFineYellowGamma 95/0.095: ""
*CloseUI: *StpFineYellowGamma

*ColorKeyWords: "StpCyanBalance"
*OpenUI *StpCyanBalance/Cyan Balance: PickOne
*OrderDependency: 10 AnySetup *StpCyanBalance
*OPOptionHints StpCyanBalance: "slider input spinbox"
*StpStpCyanBalance: 3 0 1 2 1 0.000 1.000 1.000
*DefaultStpCyanBalance: None
*StpDefaultStpCyanBalance: None
*StpCyanBalance 0/0.000: ""
*StpCyanBalance 100/0.100: ""
*StpCyanBalance 200/0.200: ""
*StpCyanBalance 300/0.300: ""
*StpCyanBalance 400/0.400: ""
*StpCyanBalance 500/0.500: ""
*StpCyanBalance 600/0.600: ""
*StpCyanBalance 700/0.700: ""
*StpCyanBalance 800/0.800: ""
*StpCyanBalance 900/0.900: ""
*StpCyanBalance 1000/1.000: ""
*StpCyanBalance None/None: ""
*CloseUI: *StpCyanBalance

*CustomStpCyanBalance True: "pop"
*ParamCustomStpCyanBalance Value/Value: 1 real 0.000 1.000

*ColorKeyWords: "StpFineCyanBalance"
*OpenUI *StpFineCyanBalance/Cyan Balance Fine Adjustment: PickOne
*OPOptionHints StpFineCyanBalance: "hide"
*StpStpFineCyanBalance: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineCyanBalance: None
*StpDefaultStpFineCyanBalance: None
*StpFineCyanBalance None/0.000: ""
*StpFineCyanBalance 0/0.000: ""
*StpFineCyanBalance 5/0.005: ""
*StpFineCyanBalance 10/0.010: ""
*StpFineCyanBalance 15/0.015: ""
*StpFineCyanBalance 20/0.020: ""
*StpFineCyanBalance 25/0.025: ""
*StpFineCyanBalance 30/0.030: ""
*StpFineCyanBalance 35/0.035: ""
*StpFineCyanBalance 40/0.040: ""
*StpFineCyanBalance 45/0.045: ""
*StpFineCyanBalance 50/0.050: ""
*StpFineCyanBalance 55/0.055: ""
*StpFineCyanBalance 60/0.060: ""
*StpFineCyanBalance 65/0.065: ""
*StpFineCyanBalance 70/0.070: ""
*StpFineCyanBalance 75/0.075: ""
*StpFineCyanBalance 80/0.080: ""
*StpFineCyanBalance 85/0.085: ""
*StpFineCyanBalance 90/0.090: ""
*StpFineCyanBalance 95/0.095: ""
*CloseUI: *StpFineCyanBalance

*ColorKeyWords: "StpMagentaBalance"
*OpenUI *StpMagentaBalance/Magenta Balance: PickOne
*OrderDependency: 10 AnySetup *StpMagentaBalance
*OPOptionHints StpMagentaBalance: "slider input spinbox"
*StpStpMagentaBalance: 3 0 1 2 2 0.000 1.000 1.000
*DefaultStpMagentaBalance: None
*StpDefaultStpMagentaBalance: None
*StpMagentaBalance 0/0.000: ""
*StpMagentaBalance 100/0.100: ""
*StpMagentaBalance 200/0.200: ""
*StpMagentaBalance 300/0.300: ""
*StpMagentaBalance 400/0.400: ""
*StpMagentaBalance 500/0.500: ""
*StpMagentaBalance 600/0.600: ""
*StpMagentaBalance 700/0.700: ""
*StpMagentaBalance 800/0.800: ""
*StpMagentaBalance 900/0.900: ""
*StpMagentaBalance 1000/1.000: ""
*StpMagentaBalance None/None: ""
*CloseUI: *StpMagentaBalance

*CustomStpMagentaBalance True: "pop"
*ParamCustomStpMagentaBalance Value/Value: 1 real 0.000 1.000

*ColorKeyWords: "StpFineMagentaBalance"
*OpenUI *StpFineMagentaBalance/Magenta Balance Fine Adjustment: PickOne
*OPOptionHints StpFineMagentaBalance: "hide"
*StpStpFineMagentaBalance: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineMagentaBalance: None
*StpDefaultStpFineMagentaBalance: None
*StpFineMagentaBalance None/0.000: ""
*StpFineMagentaBalance 0/0.000: ""
*StpFineMagentaBalance 5/0.005: ""
*StpFineMagentaBalance 10/0.010: ""
*StpFineMagentaBalance 15/0.015: ""
*StpFineMagentaBalance 20/0.020: ""
*StpFineMagentaBalance 25/0.025: ""
*StpFineMagentaBalance 30/0.030: ""
*StpFineMagentaBalance 35/0.035: ""
*StpFineMagentaBalance 40/0.040: ""
*StpFineMagentaBalance 45/0.045: ""
*StpFineMagentaBalance 50/0.050: ""
*StpFineMagentaBalance 55/0.055: ""
*StpFineMagentaBalance 60/0.060: ""
*StpFineMagentaBalance 65/0.065: ""
*StpFineMagentaBalance 70/0.070: ""
*StpFineMagentaBalance 75/0.075: ""
*StpFineMagentaBalance 80/0.080: ""
*StpFineMagentaBalance 85/0.085: ""
*StpFineMagentaBalance 90/0.090: ""
*StpFineMagentaBalance 95/0.095: ""
*CloseUI: *StpFineMagentaBalance

*ColorKeyWords: "StpYellowBalance"
*OpenUI *StpYellowBalance/Yellow Balance: PickOne
*OrderDependency: 10 AnySetup *StpYellowBalance
*OPOptionHints StpYellowBalance: "slider input spinbox"
*StpStpYellowBalance: 3 0 1 2 3 0.000 1.000 1.000
*DefaultStpYellowBalance: None
*StpDefaultStpYellowBalance: None
*StpYellowBalance 0/0.000: ""
*StpYellowBalance 100/0.100: ""
*StpYellowBalance 200/0.200: ""
*StpYellowBalance 300/0.300: ""
*StpYellowBalance 400/0.400: ""
*StpYellowBalance 500/0.500: ""
*StpYellowBalance 600/0.600: ""
*StpYellowBalance 700/0.700: ""
*StpYellowBalance 800/0.800: ""
*StpYellowBalance 900/0.900: ""
*StpYellowBalance 1000/1.000: ""
*StpYellowBalance None/None: ""
*CloseUI: *StpYellowBalance

*CustomStpYellowBalance True: "pop"
*ParamCustomStpYellowBalance Value/Value: 1 real 0.000 1.000

*ColorKeyWords: "StpFineYellowBalance"
*OpenUI *StpFineYellowBalance/Yellow Balance Fine Adjustment: PickOne
*OPOptionHints StpFineYellowBalance: "hide"
*StpStpFineYellowBalance: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineYellowBalance: None
*StpDefaultStpFineYellowBalance: None
*StpFineYellowBalance None/0.000: ""
*StpFineYellowBalance 0/0.000: ""
*StpFineYellowBalance 5/0.005: ""
*StpFineYellowBalance 10/0.010: ""
*StpFineYellowBalance 15/0.015: ""
*StpFineYellowBalance 20/0.020: ""
*StpFineYellowBalance 25/0.025: ""
*StpFineYellowBalance 30/0.030: ""
*StpFineYellowBalance 35/0.035: ""
*StpFineYellowBalance 40/0.040: ""
*StpFineYellowBalance 45/0.045: ""
*StpFineYellowBalance 50/0.050: ""
*StpFineYellowBalance 55/0.055: ""
*StpFineYellowBalance 60/0.060: ""
*StpFineYellowBalance 65/0.065: ""
*StpFineYellowBalance 70/0.070: ""
*StpFineYellowBalance 75/0.075: ""
*StpFineYellowBalance 80/0.080: ""
*StpFineYellowBalance 85/0.085: ""
*StpFineYellowBalance 90/0.090: ""
*StpFineYellowBalance 95/0.095: ""
*CloseUI: *StpFineYellowBalance

*CloseGroup: C1L2/Output Control Extra 2

*OpenGroup: C1L4/Output Control Extra 4

*ColorKeyWords: "StpLinearContrast"
*OpenUI *StpLinearContrast/Linear Contrast Adjustment: PickOne
*OrderDependency: 10 AnySetup *StpLinearContrast
*OPOptionHints StpLinearContrast: "checkbox"
*StpStpLinearContrast: 2 1 1 4 255 0.000 0.000 0.000
*DefaultStpLinearContrast: False
*StpDefaultStpLinearContrast: False
*StpLinearContrast False/No: ""
*StpLinearContrast True/Yes: ""
*CloseUI: *StpLinearContrast

*CloseGroup: C1L4/Output Control Extra 4

*OpenGroup: C1L5/Output Control Extra 5

*ColorKeyWords: "StpLightCyanTrans"
*OpenUI *StpLightCyanTrans/Light Cyan Transition: PickOne
*OrderDependency: 10 AnySetup *StpLightCyanTrans
*OPOptionHints StpLightCyanTrans: "slider input spinbox"
*StpStpLightCyanTrans: 3 0 1 5 255 0.000 5.000 1.000
*DefaultStpLightCyanTrans: None
*StpDefaultStpLightCyanTrans: None
*StpLightCyanTrans 0/0.000: ""
*StpLightCyanTrans 100/0.100: ""
*StpLightCyanTrans 200/0.200: ""
*StpLightCyanTrans 300/0.300: ""
*StpLightCyanTrans 400/0.400: ""
*StpLightCyanTrans 500/0.500: ""
*StpLightCyanTrans 600/0.600: ""
*StpLightCyanTrans 700/0.700: ""
*StpLightCyanTrans 800/0.800: ""
*StpLightCyanTrans 900/0.900: ""
*StpLightCyanTrans 1000/1.000: ""
*StpLightCyanTrans 1100/1.100: ""
*StpLightCyanTrans 1200/1.200: ""
*StpLightCyanTrans 1300/1.300: ""
*StpLightCyanTrans 1400/1.400: ""
*StpLightCyanTrans 1500/1.500: ""
*StpLightCyanTrans 1600/1.600: ""
*StpLightCyanTrans 1700/1.700: ""
*StpLightCyanTrans 1800/1.800: ""
*StpLightCyanTrans 1900/1.900: ""
*StpLightCyanTrans 2000/2.000: ""
*StpLightCyanTrans 2100/2.100: ""
*StpLightCyanTrans 2200/2.200: ""
*StpLightCyanTrans 2300/2.300: ""
*StpLightCyanTrans 2400/2.400: ""
*StpLightCyanTrans 2500/2.500: ""
*StpLightCyanTrans 2600/2.600: ""
*StpLightCyanTrans 2700/2.700: ""
*StpLightCyanTrans 2800/2.800: ""
*StpLightCyanTrans 2900/2.900: ""
*StpLightCyanTrans 3000/3.000: ""
*StpLightCyanTrans 3100/3.100: ""
*StpLightCyanTrans 3200/3.200: ""
*StpLightCyanTrans 3300/3.300: ""
*StpLightCyanTrans 3400/3.400: ""
*StpLightCyanTrans 3500/3.500: ""
*StpLightCyanTrans 3600/3.600: ""
*StpLightCyanTrans 3700/3.700: ""
*StpLightCyanTrans 3800/3.800: ""
*StpLightCyanTrans 3900/3.900: ""
*StpLightCyanTrans 4000/4.000: ""
*StpLightCyanTrans 4100/4.100: ""
*StpLightCyanTrans 4200/4.200: ""
*StpLightCyanTrans 4300/4.300: ""
*StpLightCyanTrans 4400/4.400: ""
*StpLightCyanTrans 4500/4.500: ""
*StpLightCyanTrans 4600/4.600: ""
*StpLightCyanTrans 4700/4.700: ""
*StpLightCyanTrans 4800/4.800: ""
*StpLightCyanTrans 4900/4.900: ""
*StpLightCyanTrans 5000/5.000: ""
*StpLightCyanTrans None/None: ""
*CloseUI: *StpLightCyanTrans

*CustomStpLightCyanTrans True: "pop"
*ParamCustomStpLightCyanTrans Value/Value: 1 real 0.000 5.000

*ColorKeyWords: "StpFineLightCyanTrans"
*OpenUI *StpFineLightCyanTrans/Light Cyan Transition Fine Adjustment: PickOne
*OPOptionHints StpFineLightCyanTrans: "hide"
*StpStpFineLightCyanTrans: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineLightCyanTrans: None
*StpDefaultStpFineLightCyanTrans: None
*StpFineLightCyanTrans None/0.000: ""
*StpFineLightCyanTrans 0/0.000: ""
*StpFineLightCyanTrans 5/0.005: ""
*StpFineLightCyanTrans 10/0.010: ""
*StpFineLightCyanTrans 15/0.015: ""
*StpFineLightCyanTrans 20/0.020: ""
*StpFineLightCyanTrans 25/0.025: ""
*StpFineLightCyanTrans 30/0.030: ""
*StpFineLightCyanTrans 35/0.035: ""
*StpFineLightCyanTrans 40/0.040: ""
*StpFineLightCyanTrans 45/0.045: ""
*StpFineLightCyanTrans 50/0.050: ""
*StpFineLightCyanTrans 55/0.055: ""
*StpFineLightCyanTrans 60/0.060: ""
*StpFineLightCyanTrans 65/0.065: ""
*StpFineLightCyanTrans 70/0.070: ""
*StpFineLightCyanTrans 75/0.075: ""
*StpFineLightCyanTrans 80/0.080: ""
*StpFineLightCyanTrans 85/0.085: ""
*StpFineLightCyanTrans 90/0.090: ""
*StpFineLightCyanTrans 95/0.095: ""
*CloseUI: *StpFineLightCyanTrans

*ColorKeyWords: "StpLightMagentaTrans"
*OpenUI *StpLightMagentaTrans/Light Magenta Transition: PickOne
*OrderDependency: 10 AnySetup *StpLightMagentaTrans
*OPOptionHints StpLightMagentaTrans: "slider input spinbox"
*StpStpLightMagentaTrans: 3 0 1 5 255 0.000 5.000 1.000
*DefaultStpLightMagentaTrans: None
*StpDefaultStpLightMagentaTrans: None
*StpLightMagentaTrans 0/0.000: ""
*StpLightMagentaTrans 100/0.100: ""
*StpLightMagentaTrans 200/0.200: ""
*StpLightMagentaTrans 300/0.300: ""
*StpLightMagentaTrans 400/0.400: ""
*StpLightMagentaTrans 500/0.500: ""
*StpLightMagentaTrans 600/0.600: ""
*StpLightMagentaTrans 700/0.700: ""
*StpLightMagentaTrans 800/0.800: ""
*StpLightMagentaTrans 900/0.900: ""
*StpLightMagentaTrans 1000/1.000: ""
*StpLightMagentaTrans 1100/1.100: ""
*StpLightMagentaTrans 1200/1.200: ""
*StpLightMagentaTrans 1300/1.300: ""
*StpLightMagentaTrans 1400/1.400: ""
*StpLightMagentaTrans 1500/1.500: ""
*StpLightMagentaTrans 1600/1.600: ""
*StpLightMagentaTrans 1700/1.700: ""
*StpLightMagentaTrans 1800/1.800: ""
*StpLightMagentaTrans 1900/1.900: ""
*StpLightMagentaTrans 2000/2.000: ""
*StpLightMagentaTrans 2100/2.100: ""
*StpLightMagentaTrans 2200/2.200: ""
*StpLightMagentaTrans 2300/2.300: ""
*StpLightMagentaTrans 2400/2.400: ""
*StpLightMagentaTrans 2500/2.500: ""
*StpLightMagentaTrans 2600/2.600: ""
*StpLightMagentaTrans 2700/2.700: ""
*StpLightMagentaTrans 2800/2.800: ""
*StpLightMagentaTrans 2900/2.900: ""
*StpLightMagentaTrans 3000/3.000: ""
*StpLightMagentaTrans 3100/3.100: ""
*StpLightMagentaTrans 3200/3.200: ""
*StpLightMagentaTrans 3300/3.300: ""
*StpLightMagentaTrans 3400/3.400: ""
*StpLightMagentaTrans 3500/3.500: ""
*StpLightMagentaTrans 3600/3.600: ""
*StpLightMagentaTrans 3700/3.700: ""
*StpLightMagentaTrans 3800/3.800: ""
*StpLightMagentaTrans 3900/3.900: ""
*StpLightMagentaTrans 4000/4.000: ""
*StpLightMagentaTrans 4100/4.100: ""
*StpLightMagentaTrans 4200/4.200: ""
*StpLightMagentaTrans 4300/4.300: ""
*StpLightMagentaTrans 4400/4.400: ""
*StpLightMagentaTrans 4500/4.500: ""
*StpLightMagentaTrans 4600/4.600: ""
*StpLightMagentaTrans 4700/4.700: ""
*StpLightMagentaTrans 4800/4.800: ""
*StpLightMagentaTrans 4900/4.900: ""
*StpLightMagentaTrans 5000/5.000: ""
*StpLightMagentaTrans None/None: ""
*CloseUI: *StpLightMagentaTrans

*CustomStpLightMagentaTrans True: "pop"
*ParamCustomStpLightMagentaTrans Value/Value: 1 real 0.000 5.000

*ColorKeyWords: "StpFineLightMagentaTrans"
*OpenUI *StpFineLightMagentaTrans/Light Magenta Transition Fine Adjustment: PickOne
*OPOptionHints StpFineLightMagentaTrans: "hide"
*StpStpFineLightMagentaTrans: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineLightMagentaTrans: None
*StpDefaultStpFineLightMagentaTrans: None
*StpFineLightMagentaTrans None/0.000: ""
*StpFineLightMagentaTrans 0/0.000: ""
*StpFineLightMagentaTrans 5/0.005: ""
*StpFineLightMagentaTrans 10/0.010: ""
*StpFineLightMagentaTrans 15/0.015: ""
*StpFineLightMagentaTrans 20/0.020: ""
*StpFineLightMagentaTrans 25/0.025: ""
*StpFineLightMagentaTrans 30/0.030: ""
*StpFineLightMagentaTrans 35/0.035: ""
*StpFineLightMagentaTrans 40/0.040: ""
*StpFineLightMagentaTrans 45/0.045: ""
*StpFineLightMagentaTrans 50/0.050: ""
*StpFineLightMagentaTrans 55/0.055: ""
*StpFineLightMagentaTrans 60/0.060: ""
*StpFineLightMagentaTrans 65/0.065: ""
*StpFineLightMagentaTrans 70/0.070: ""
*StpFineLightMagentaTrans 75/0.075: ""
*StpFineLightMagentaTrans 80/0.080: ""
*StpFineLightMagentaTrans 85/0.085: ""
*StpFineLightMagentaTrans 90/0.090: ""
*StpFineLightMagentaTrans 95/0.095: ""
*CloseUI: *StpFineLightMagentaTrans

*ColorKeyWords: "StpLightYellowTrans"
*OpenUI *StpLightYellowTrans/Light Yellow Transition: PickOne
*OrderDependency: 10 AnySetup *StpLightYellowTrans
*OPOptionHints StpLightYellowTrans: "slider input spinbox"
*StpStpLightYellowTrans: 3 0 1 5 255 0.000 5.000 1.000
*DefaultStpLightYellowTrans: None
*StpDefaultStpLightYellowTrans: None
*StpLightYellowTrans 0/0.000: ""
*StpLightYellowTrans 100/0.100: ""
*StpLightYellowTrans 200/0.200: ""
*StpLightYellowTrans 300/0.300: ""
*StpLightYellowTrans 400/0.400: ""
*StpLightYellowTrans 500/0.500: ""
*StpLightYellowTrans 600/0.600: ""
*StpLightYellowTrans 700/0.700: ""
*StpLightYellowTrans 800/0.800: ""
*StpLightYellowTrans 900/0.900: ""
*StpLightYellowTrans 1000/1.000: ""
*StpLightYellowTrans 1100/1.100: ""
*StpLightYellowTrans 1200/1.200: ""
*StpLightYellowTrans 1300/1.300: ""
*StpLightYellowTrans 1400/1.400: ""
*StpLightYellowTrans 1500/1.500: ""
*StpLightYellowTrans 1600/1.600: ""
*StpLightYellowTrans 1700/1.700: ""
*StpLightYellowTrans 1800/1.800: ""
*StpLightYellowTrans 1900/1.900: ""
*StpLightYellowTrans 2000/2.000: ""
*StpLightYellowTrans 2100/2.100: ""
*StpLightYellowTrans 2200/2.200: ""
*StpLightYellowTrans 2300/2.300: ""
*StpLightYellowTrans 2400/2.400: ""
*StpLightYellowTrans 2500/2.500: ""
*StpLightYellowTrans 2600/2.600: ""
*StpLightYellowTrans 2700/2.700: ""
*StpLightYellowTrans 2800/2.800: ""
*StpLightYellowTrans 2900/2.900: ""
*StpLightYellowTrans 3000/3.000: ""
*StpLightYellowTrans 3100/3.100: ""
*StpLightYellowTrans 3200/3.200: ""
*StpLightYellowTrans 3300/3.300: ""
*StpLightYellowTrans 3400/3.400: ""
*StpLightYellowTrans 3500/3.500: ""
*StpLightYellowTrans 3600/3.600: ""
*StpLightYellowTrans 3700/3.700: ""
*StpLightYellowTrans 3800/3.800: ""
*StpLightYellowTrans 3900/3.900: ""
*StpLightYellowTrans 4000/4.000: ""
*StpLightYellowTrans 4100/4.100: ""
*StpLightYellowTrans 4200/4.200: ""
*StpLightYellowTrans 4300/4.300: ""
*StpLightYellowTrans 4400/4.400: ""
*StpLightYellowTrans 4500/4.500: ""
*StpLightYellowTrans 4600/4.600: ""
*StpLightYellowTrans 4700/4.700: ""
*StpLightYellowTrans 4800/4.800: ""
*StpLightYellowTrans 4900/4.900: ""
*StpLightYellowTrans 5000/5.000: ""
*StpLightYellowTrans None/None: ""
*CloseUI: *StpLightYellowTrans

*CustomStpLightYellowTrans True: "pop"
*ParamCustomStpLightYellowTrans Value/Value: 1 real 0.000 5.000

*ColorKeyWords: "StpFineLightYellowTrans"
*OpenUI *StpFineLightYellowTrans/Light Yellow Transition Fine Adjustment: PickOne
*OPOptionHints StpFineLightYellowTrans: "hide"
*StpStpFineLightYellowTrans: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineLightYellowTrans: None
*StpDefaultStpFineLightYellowTrans: None
*StpFineLightYellowTrans None/0.000: ""
*StpFineLightYellowTrans 0/0.000: ""
*StpFineLightYellowTrans 5/0.005: ""
*StpFineLightYellowTrans 10/0.010: ""
*StpFineLightYellowTrans 15/0.015: ""
*StpFineLightYellowTrans 20/0.020: ""
*StpFineLightYellowTrans 25/0.025: ""
*StpFineLightYellowTrans 30/0.030: ""
*StpFineLightYellowTrans 35/0.035: ""
*StpFineLightYellowTrans 40/0.040: ""
*StpFineLightYellowTrans 45/0.045: ""
*StpFineLightYellowTrans 50/0.050: ""
*StpFineLightYellowTrans 55/0.055: ""
*StpFineLightYellowTrans 60/0.060: ""
*StpFineLightYellowTrans 65/0.065: ""
*StpFineLightYellowTrans 70/0.070: ""
*StpFineLightYellowTrans 75/0.075: ""
*StpFineLightYellowTrans 80/0.080: ""
*StpFineLightYellowTrans 85/0.085: ""
*StpFineLightYellowTrans 90/0.090: ""
*StpFineLightYellowTrans 95/0.095: ""
*CloseUI: *StpFineLightYellowTrans

*ColorKeyWords: "StpInkLimit"
*OpenUI *StpInkLimit/Ink Limit: PickOne
*OrderDependency: 10 AnySetup *StpInkLimit
*OPOptionHints StpInkLimit: "slider input spinbox"
*StpStpInkLimit: 3 0 1 5 255 0.000 3.000 3.000
*DefaultStpInkLimit: None
*StpDefaultStpInkLimit: None
*StpInkLimit 0/0.000: ""
*StpInkLimit 100/0.100: ""
*StpInkLimit 200/0.200: ""
*StpInkLimit 300/0.300: ""
*StpInkLimit 400/0.400: ""
*StpInkLimit 500/0.500: ""
*StpInkLimit 600/0.600: ""
*StpInkLimit 700/0.700: ""
*StpInkLimit 800/0.800: ""
*StpInkLimit 900/0.900: ""
*StpInkLimit 1000/1.000: ""
*StpInkLimit 1100/1.100: ""
*StpInkLimit 1200/1.200: ""
*StpInkLimit 1300/1.300: ""
*StpInkLimit 1400/1.400: ""
*StpInkLimit 1500/1.500: ""
*StpInkLimit 1600/1.600: ""
*StpInkLimit 1700/1.700: ""
*StpInkLimit 1800/1.800: ""
*StpInkLimit 1900/1.900: ""
*StpInkLimit 2000/2.000: ""
*StpInkLimit 2100/2.100: ""
*StpInkLimit 2200/2.200: ""
*StpInkLimit 2300/2.300: ""
*StpInkLimit 2400/2.400: ""
*StpInkLimit 2500/2.500: ""
*StpInkLimit 2600/2.600: ""
*StpInkLimit 2700/2.700: ""
*StpInkLimit 2800/2.800: ""
*StpInkLimit 2900/2.900: ""
*StpInkLimit 3000/3.000: ""
*StpInkLimit None/None: ""
*CloseUI: *StpInkLimit

*CustomStpInkLimit True: "pop"
*ParamCustomStpInkLimit Value/Value: 1 real 0.000 3.000

*ColorKeyWords: "StpFineInkLimit"
*OpenUI *StpFineInkLimit/Ink Limit Fine Adjustment: PickOne
*OPOptionHints StpFineInkLimit: "hide"
*StpStpFineInkLimit: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineInkLimit: None
*StpDefaultStpFineInkLimit: None
*StpFineInkLimit None/0.000: ""
*StpFineInkLimit 0/0.000: ""
*StpFineInkLimit 5/0.005: ""
*StpFineInkLimit 10/0.010: ""
*StpFineInkLimit 15/0.015: ""
*StpFineInkLimit 20/0.020: ""
*StpFineInkLimit 25/0.025: ""
*StpFineInkLimit 30/0.030: ""
*StpFineInkLimit 35/0.035: ""
*StpFineInkLimit 40/0.040: ""
*StpFineInkLimit 45/0.045: ""
*StpFineInkLimit 50/0.050: ""
*StpFineInkLimit 55/0.055: ""
*StpFineInkLimit 60/0.060: ""
*StpFineInkLimit 65/0.065: ""
*StpFineInkLimit 70/0.070: ""
*StpFineInkLimit 75/0.075: ""
*StpFineInkLimit 80/0.080: ""
*StpFineInkLimit 85/0.085: ""
*StpFineInkLimit 90/0.090: ""
*StpFineInkLimit 95/0.095: ""
*CloseUI: *StpFineInkLimit

*CloseGroup: C1L5/Output Control Extra 5

*APPrinterPreset Text/Text: "*StpImageType Text"
*APPrinterPreset Graphics/Graphics: "*StpImageType Graphics"
*APPrinterPreset TextGraphics/Mixed Text and Graphics: "*StpImageType TextGraphics"
*APPrinterPreset Photo/Photograph: "*StpImageType Photo"
*APPrinterPreset LineArt/Line Art: "*StpImageType LineArt"


*DefaultFont: Courier
*Font AvantGarde-Book: Standard "(001.006S)" Standard ROM
*Font AvantGarde-BookOblique: Standard "(001.006S)" Standard ROM
*Font AvantGarde-Demi: Standard "(001.007S)" Standard ROM
*Font AvantGarde-DemiOblique: Standard "(001.007S)" Standard ROM
*Font Bookman-Demi: Standard "(001.004S)" Standard ROM
*Font Bookman-DemiItalic: Standard "(001.004S)" Standard ROM
*Font Bookman-Light: Standard "(001.004S)" Standard ROM
*Font Bookman-LightItalic: Standard "(001.004S)" Standard ROM
*Font Courier: Standard "(002.004S)" Standard ROM
*Font Courier-Bold: Standard "(002.004S)" Standard ROM
*Font Courier-BoldOblique: Standard "(002.004S)" Standard ROM
*Font Courier-Oblique: Standard "(002.004S)" Standard ROM
*Font Helvetica: Standard "(001.006S)" Standard ROM
*Font Helvetica-Bold: Standard "(001.007S)" Standard ROM
*Font Helvetica-BoldOblique: Standard "(001.007S)" Standard ROM
*Font Helvetica-Narrow: Standard "(001.006S)" Standard ROM
*Font Helvetica-Narrow-Bold: Standard "(001.007S)" Standard ROM
*Font Helvetica-Narrow-BoldOblique: Standard "(001.007S)" Standard ROM
*Font Helvetica-Narrow-Oblique: Standard "(001.006S)" Standard ROM
*Font Helvetica-Oblique: Standard "(001.006S)" Standard ROM
*Font NewCenturySchlbk-Bold: Standard "(001.009S)" Standard ROM
*Font NewCenturySchlbk-BoldItalic: Standard "(001.007S)" Standard ROM
*Font NewCenturySchlbk-Italic: Standard "(001.006S)" Standard ROM
*Font NewCenturySchlbk-Roman: Standard "(001.007S)" Standard ROM
*Font Palatino-Bold: Standard "(001.005S)" Standard ROM
*Font Palatino-BoldItalic: Standard "(001.005S)" Standard ROM
*Font Palatino-Italic: Standard "(001.005S)" Standard ROM
*Font Palatino-Roman: Standard "(001.005S)" Standard ROM
*Font Symbol: Special "(001.007S)" Special ROM
*Font Times-Bold: Standard "(001.007S)" Standard ROM
*Font Times-BoldItalic: Standard "(001.009S)" Standard ROM
*Font Times-Italic: Standard "(001.007S)" Standard ROM
*Font Times-Roman: Standard "(001.007S)" Standard ROM
*Font ZapfChancery-MediumItalic: Standard "(001.007S)" Standard ROM
*Font ZapfDingbats: Special "(001.004S)" Standard ROM

*% End of stp-bjc-PIXMA-iP2600.5.2.ppd
*PPD-Adobe: "4.3"
*% PPD file for CUPS/Gutenprint.
*% Copyright 1993-2008 by Mike Sweet and Robert Krawitz.
*% This program is free software; you can redistribute it and/or
*% modify it under the terms of the GNU General Public License,
*% version 2, as published by the Free Software Foundation.
*%
*% This program is distributed in the hope that it will be useful, but
*% WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
*% or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
*% for more details.
*%
*% You should have received a copy of the GNU General Public License
*% along with this program; if not, write to the Free Software
*% Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*%
*FormatVersion:	"4.3"
*FileVersion:	"5.2.7"
*LanguageVersion: English
*LanguageEncoding: UTF-8
*PCFileName:	"STP00047.PPD"
*Manufacturer:	"Canon"
*Product:	"(Canon PIXMA iP2600)"
*ModelName:     "Canon PIXMA iP2600"
*ShortNickName: "Canon PIXMA iP2600"
*NickName:      "Canon PIXMA iP2600 - CUPS+Gutenprint (OpenPrinting LSB 3.2) v5.2.7"
*PSVersion:	"(3010.000) 0"
*LanguageLevel:	"3"
*ColorDevice:	True
*DefaultColorSpace:	RGB
*FileSystem:	False
*LandscapeOrientation: Plus90
*TTRasterizer:	Type42
*cupsVersion:	1.2
*cupsManualCopies: True
*cupsFilter:	"application/vnd.cups-raster 100 /opt/OpenPrinting-Gutenprint/cups/lib/filter/rastertogutenprint.5.2"
*APSupportsCustomColorMatching: true
*APDefaultCustomColorMatchingProfile: sRGB
*APCustomColorMatchingProfile: sRGB

*StpDriverName:	"bjc-PIXMA-iP2600"
*StpDriverModelFamily:	"3002600_canon"
*StpPPDLocation: "/opt/OpenPrinting-Gutenprint/ppds/5.2/C/stp-bjc-PIXMA-iP2600.5.2.ppd.gz"
*StpLocale:	"C"
*VariablePaperSize: true

*OpenUI *PageSize/Media Size: PickOne
*OPOptionHints PageSize: "dropdown"
*OrderDependency: 10 AnySetup *PageSize
*StpStpPageSize: 0 1 2 0 255 0.000 0.000 0.000
*DefaultPageSize: A4
*StpDefaultPageSize: Letter
*PageSize Letter/Letter:	"<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
*PageSize Legal/Legal:	"<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
*PageSize Tabloid/Tabloid:	"<</PageSize[792 1224]/ImagingBBox null>>setpagedevice"
*PageSize Executive/Executive:	"<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
*PageSize Postcard/Postcard:	"<</PageSize[283 416]/ImagingBBox null>>setpagedevice"
*PageSize CD5Inch/CD - 5 inch:	"<</PageSize[329 329]/ImagingBBox null>>setpagedevice"
*PageSize CD3Inch/CD - 3 inch:	"<</PageSize[184 184]/ImagingBBox null>>setpagedevice"
*PageSize CDCustom/CD - Custom:	"<</PageSize[340 340]/ImagingBBox null>>setpagedevice"
*PageSize w216h360/3x5:	"<</PageSize[216 360]/ImagingBBox null>>setpagedevice"
*PageSize w252h360/3 1/2 x5:	"<</PageSize[252 360]/ImagingBBox null>>setpagedevice"
*PageSize w252h360J/L:	"<</PageSize[252 360]/ImagingBBox null>>setpagedevice"
*PageSize w288h432/4x6:	"<</PageSize[288 432]/ImagingBBox null>>setpagedevice"
*PageSize w288h432J/KG:	"<</PageSize[288 432]/ImagingBBox null>>setpagedevice"
*PageSize w324h495/Epson 4x6 Photo Paper (tear-off borders):	"<</PageSize[324 495]/ImagingBBox null>>setpagedevice"
*PageSize w297h421/Epson L Photo Paper (tear-off borders):	"<</PageSize[297 421]/ImagingBBox null>>setpagedevice"
*PageSize w288h576/4x8:	"<</PageSize[288 576]/ImagingBBox null>>setpagedevice"
*PageSize w360h504/5x7:	"<</PageSize[360 504]/ImagingBBox null>>setpagedevice"
*PageSize w360h504J/2L:	"<</PageSize[360 504]/ImagingBBox null>>setpagedevice"
*PageSize w360h576/5x8:	"<</PageSize[360 576]/ImagingBBox null>>setpagedevice"
*PageSize w432h576/6x8:	"<</PageSize[432 576]/ImagingBBox null>>setpagedevice"
*PageSize c8x10/8x10:	"<</PageSize[576 720]/ImagingBBox null>>setpagedevice"
*PageSize c8x10J/Rokukire:	"<</PageSize[576 720]/ImagingBBox null>>setpagedevice"
*PageSize Statement/Manual:	"<</PageSize[396 612]/ImagingBBox null>>setpagedevice"
*PageSize w576h864/8x12:	"<</PageSize[576 864]/ImagingBBox null>>setpagedevice"
*PageSize w720h864J/YonKire:	"<</PageSize[720 864]/ImagingBBox null>>setpagedevice"
*PageSize w792h1008/11x14:	"<</PageSize[792 1008]/ImagingBBox null>>setpagedevice"
*PageSize A3/A3:	"<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
*PageSize A4/A4:	"<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
*PageSize A5/A5:	"<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
*PageSize A6/A6:	"<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
*PageSize A7/A7:	"<</PageSize[210 297]/ImagingBBox null>>setpagedevice"
*PageSize A8/A8:	"<</PageSize[148 210]/ImagingBBox null>>setpagedevice"
*PageSize A9/A9:	"<</PageSize[105 148]/ImagingBBox null>>setpagedevice"
*PageSize A10/A10:	"<</PageSize[73 105]/ImagingBBox null>>setpagedevice"
*PageSize w609h864/RA4:	"<</PageSize[609 864]/ImagingBBox null>>setpagedevice"
*PageSize w637h907/SRA4:	"<</PageSize[637 907]/ImagingBBox null>>setpagedevice"
*PageSize ISOB4/B4 ISO:	"<</PageSize[708 1000]/ImagingBBox null>>setpagedevice"
*PageSize ISOB5/B5 ISO:	"<</PageSize[498 708]/ImagingBBox null>>setpagedevice"
*PageSize ISOB6/B6 ISO:	"<</PageSize[354 498]/ImagingBBox null>>setpagedevice"
*PageSize ISOB7/B7 ISO:	"<</PageSize[249 354]/ImagingBBox null>>setpagedevice"
*PageSize ISOB8/B8 ISO:	"<</PageSize[175 249]/ImagingBBox null>>setpagedevice"
*PageSize ISOB9/B9 ISO:	"<</PageSize[124 175]/ImagingBBox null>>setpagedevice"
*PageSize ISOB10/B10 ISO:	"<</PageSize[87 124]/ImagingBBox null>>setpagedevice"
*PageSize B4/B4 JIS:	"<</PageSize[727 1029]/ImagingBBox null>>setpagedevice"
*PageSize B5/B5 JIS:	"<</PageSize[518 727]/ImagingBBox null>>setpagedevice"
*PageSize B6/B6 JIS:	"<</PageSize[362 518]/ImagingBBox null>>setpagedevice"
*PageSize B7/B7 JIS:	"<</PageSize[257 362]/ImagingBBox null>>setpagedevice"
*PageSize B8/B8 JIS:	"<</PageSize[180 257]/ImagingBBox null>>setpagedevice"
*PageSize B9/B9 JIS:	"<</PageSize[127 180]/ImagingBBox null>>setpagedevice"
*PageSize B10/B10 JIS:	"<</PageSize[90 127]/ImagingBBox null>>setpagedevice"
*PageSize C4/C4:	"<</PageSize[649 918]/ImagingBBox null>>setpagedevice"
*PageSize C5/C5:	"<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
*PageSize C5_l/C5 landscape:	"<</PageSize[649 459]/ImagingBBox null>>setpagedevice"
*PageSize w354h918/B6-C4:	"<</PageSize[354 918]/ImagingBBox null>>setpagedevice"
*PageSize C6/C6:	"<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
*PageSize C6_l/C6 landscape:	"<</PageSize[459 323]/ImagingBBox null>>setpagedevice"
*PageSize DL/DL:	"<</PageSize[311 623]/ImagingBBox null>>setpagedevice"
*PageSize DL_l/DL landscape:	"<</PageSize[623 311]/ImagingBBox null>>setpagedevice"
*PageSize w229h459/C7-6:	"<</PageSize[229 459]/ImagingBBox null>>setpagedevice"
*PageSize w229h459_l/C7-6 landscape:	"<</PageSize[459 229]/ImagingBBox null>>setpagedevice"
*PageSize C7/C7:	"<</PageSize[229 323]/ImagingBBox null>>setpagedevice"
*PageSize C7_l/C7 landscape:	"<</PageSize[323 229]/ImagingBBox null>>setpagedevice"
*PageSize C8/C8:	"<</PageSize[161 229]/ImagingBBox null>>setpagedevice"
*PageSize C8_l/C8 landscape:	"<</PageSize[229 161]/ImagingBBox null>>setpagedevice"
*PageSize C9/C9:	"<</PageSize[113 161]/ImagingBBox null>>setpagedevice"
*PageSize C9_l/C9 landscape:	"<</PageSize[161 113]/ImagingBBox null>>setpagedevice"
*PageSize C10/C10:	"<</PageSize[79 113]/ImagingBBox null>>setpagedevice"
*PageSize C10_l/C10 landscape:	"<</PageSize[113 79]/ImagingBBox null>>setpagedevice"
*PageSize EA5/EA5:	"<</PageSize[442 649]/ImagingBBox null>>setpagedevice"
*PageSize EA5_l/EA5 landscape:	"<</PageSize[649 442]/ImagingBBox null>>setpagedevice"
*PageSize ARCHA/ArchA:	"<</PageSize[648 864]/ImagingBBox null>>setpagedevice"
*PageSize w612h936/American foolscap:	"<</PageSize[612 936]/ImagingBBox null>>setpagedevice"
*PageSize w648h936/European foolscap:	"<</PageSize[648 936]/ImagingBBox null>>setpagedevice"
*PageSize w535h697/Crown Quarto:	"<</PageSize[535 697]/ImagingBBox null>>setpagedevice"
*PageSize w569h731/Large Crown Quarto:	"<</PageSize[569 731]/ImagingBBox null>>setpagedevice"
*PageSize w620h782/Demy Quarto:	"<</PageSize[620 782]/ImagingBBox null>>setpagedevice"
*PageSize w671h884/Royal Quarto:	"<</PageSize[671 884]/ImagingBBox null>>setpagedevice"
*PageSize w348h527/Crown Octavo:	"<</PageSize[348 527]/ImagingBBox null>>setpagedevice"
*PageSize w365h561/Large Crown Octavo:	"<</PageSize[365 561]/ImagingBBox null>>setpagedevice"
*PageSize w391h612/Demy Octavo:	"<</PageSize[391 612]/ImagingBBox null>>setpagedevice"
*PageSize w442h663/Royal Octavo:	"<</PageSize[442 663]/ImagingBBox null>>setpagedevice"
*PageSize w314h504/Small paperback:	"<</PageSize[314 504]/ImagingBBox null>>setpagedevice"
*PageSize w314h513/Penguin small paperback:	"<</PageSize[314 513]/ImagingBBox null>>setpagedevice"
*PageSize cw365h561/Penguin large paperback:	"<</PageSize[365 561]/ImagingBBox null>>setpagedevice"
*PageSize w283h425/10cm x 15cm:	"<</PageSize[283 425]/ImagingBBox null>>setpagedevice"
*PageSize w283h420/Hagaki Card:	"<</PageSize[283 420]/ImagingBBox null>>setpagedevice"
*PageSize w420h567/Oufuku Card:	"<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
*PageSize w340h666/Japanese long envelope #3:	"<</PageSize[340 666]/ImagingBBox null>>setpagedevice"
*PageSize w340h666_l/Japanese long envelope #3 landscape:	"<</PageSize[666 340]/ImagingBBox null>>setpagedevice"
*PageSize w255h581/Japanese long envelope #4:	"<</PageSize[255 581]/ImagingBBox null>>setpagedevice"
*PageSize w255h581_l/Japanese long envelope #4 landscape:	"<</PageSize[581 255]/ImagingBBox null>>setpagedevice"
*PageSize w680h941/Japanese Kaku envelope #4:	"<</PageSize[680 941]/ImagingBBox null>>setpagedevice"
*PageSize COM10/Commercial 10:	"<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
*PageSize COM10_l/Commercial 10 landscape:	"<</PageSize[684 297]/ImagingBBox null>>setpagedevice"
*PageSize w315h414/A2 Invitation:	"<</PageSize[315 414]/ImagingBBox null>>setpagedevice"
*PageSize Monarch/Monarch Envelope:	"<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
*PageSize Monarch_l/Monarch Envelope landscape:	"<</PageSize[540 279]/ImagingBBox null>>setpagedevice"
*PageSize w288h387/4x5 3/8:	"<</PageSize[288 387]/ImagingBBox null>>setpagedevice"
*PageSize w288h504/4x7:	"<</PageSize[288 504]/ImagingBBox null>>setpagedevice"
*PageSize w288h512/Wide 101.6x180.6:	"<</PageSize[288 512]/ImagingBBox null>>setpagedevice"
*PageSize w253h337/CP_L:	"<</PageSize[253 337]/ImagingBBox null>>setpagedevice"
*PageSize w155h244/Card:	"<</PageSize[155 244]/ImagingBBox null>>setpagedevice"
*PageSize w283h566/Wide Postcard:	"<</PageSize[283 566]/ImagingBBox null>>setpagedevice"
*PageSize w612h935/Chilean Office:	"<</PageSize[612 935]/ImagingBBox null>>setpagedevice"
*CloseUI: *PageSize

*OpenUI *PageRegion/Media Size: PickOne
*OPOptionHints PageRegion: "dropdown"
*OrderDependency: 10 AnySetup *PageRegion
*DefaultPageRegion: A4
*StpDefaultPageRegion: Letter
*PageRegion Letter/Letter:	"<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
*PageRegion Legal/Legal:	"<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
*PageRegion Tabloid/Tabloid:	"<</PageSize[792 1224]/ImagingBBox null>>setpagedevice"
*PageRegion Executive/Executive:	"<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
*PageRegion Postcard/Postcard:	"<</PageSize[283 416]/ImagingBBox null>>setpagedevice"
*PageRegion CD5Inch/CD - 5 inch:	"<</PageSize[329 329]/ImagingBBox null>>setpagedevice"
*PageRegion CD3Inch/CD - 3 inch:	"<</PageSize[184 184]/ImagingBBox null>>setpagedevice"
*PageRegion CDCustom/CD - Custom:	"<</PageSize[340 340]/ImagingBBox null>>setpagedevice"
*PageRegion w216h360/3x5:	"<</PageSize[216 360]/ImagingBBox null>>setpagedevice"
*PageRegion w252h360/3 1/2 x5:	"<</PageSize[252 360]/ImagingBBox null>>setpagedevice"
*PageRegion w252h360J/L:	"<</PageSize[252 360]/ImagingBBox null>>setpagedevice"
*PageRegion w288h432/4x6:	"<</PageSize[288 432]/ImagingBBox null>>setpagedevice"
*PageRegion w288h432J/KG:	"<</PageSize[288 432]/ImagingBBox null>>setpagedevice"
*PageRegion w324h495/Epson 4x6 Photo Paper (tear-off borders):	"<</PageSize[324 495]/ImagingBBox null>>setpagedevice"
*PageRegion w297h421/Epson L Photo Paper (tear-off borders):	"<</PageSize[297 421]/ImagingBBox null>>setpagedevice"
*PageRegion w288h576/4x8:	"<</PageSize[288 576]/ImagingBBox null>>setpagedevice"
*PageRegion w360h504/5x7:	"<</PageSize[360 504]/ImagingBBox null>>setpagedevice"
*PageRegion w360h504J/2L:	"<</PageSize[360 504]/ImagingBBox null>>setpagedevice"
*PageRegion w360h576/5x8:	"<</PageSize[360 576]/ImagingBBox null>>setpagedevice"
*PageRegion w432h576/6x8:	"<</PageSize[432 576]/ImagingBBox null>>setpagedevice"
*PageRegion c8x10/8x10:	"<</PageSize[576 720]/ImagingBBox null>>setpagedevice"
*PageRegion c8x10J/Rokukire:	"<</PageSize[576 720]/ImagingBBox null>>setpagedevice"
*PageRegion Statement/Manual:	"<</PageSize[396 612]/ImagingBBox null>>setpagedevice"
*PageRegion w576h864/8x12:	"<</PageSize[576 864]/ImagingBBox null>>setpagedevice"
*PageRegion w720h864J/YonKire:	"<</PageSize[720 864]/ImagingBBox null>>setpagedevice"
*PageRegion w792h1008/11x14:	"<</PageSize[792 1008]/ImagingBBox null>>setpagedevice"
*PageRegion A3/A3:	"<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
*PageRegion A4/A4:	"<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
*PageRegion A5/A5:	"<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
*PageRegion A6/A6:	"<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
*PageRegion A7/A7:	"<</PageSize[210 297]/ImagingBBox null>>setpagedevice"
*PageRegion A8/A8:	"<</PageSize[148 210]/ImagingBBox null>>setpagedevice"
*PageRegion A9/A9:	"<</PageSize[105 148]/ImagingBBox null>>setpagedevice"
*PageRegion A10/A10:	"<</PageSize[73 105]/ImagingBBox null>>setpagedevice"
*PageRegion w609h864/RA4:	"<</PageSize[609 864]/ImagingBBox null>>setpagedevice"
*PageRegion w637h907/SRA4:	"<</PageSize[637 907]/ImagingBBox null>>setpagedevice"
*PageRegion ISOB4/B4 ISO:	"<</PageSize[708 1000]/ImagingBBox null>>setpagedevice"
*PageRegion ISOB5/B5 ISO:	"<</PageSize[498 708]/ImagingBBox null>>setpagedevice"
*PageRegion ISOB6/B6 ISO:	"<</PageSize[354 498]/ImagingBBox null>>setpagedevice"
*PageRegion ISOB7/B7 ISO:	"<</PageSize[249 354]/ImagingBBox null>>setpagedevice"
*PageRegion ISOB8/B8 ISO:	"<</PageSize[175 249]/ImagingBBox null>>setpagedevice"
*PageRegion ISOB9/B9 ISO:	"<</PageSize[124 175]/ImagingBBox null>>setpagedevice"
*PageRegion ISOB10/B10 ISO:	"<</PageSize[87 124]/ImagingBBox null>>setpagedevice"
*PageRegion B4/B4 JIS:	"<</PageSize[727 1029]/ImagingBBox null>>setpagedevice"
*PageRegion B5/B5 JIS:	"<</PageSize[518 727]/ImagingBBox null>>setpagedevice"
*PageRegion B6/B6 JIS:	"<</PageSize[362 518]/ImagingBBox null>>setpagedevice"
*PageRegion B7/B7 JIS:	"<</PageSize[257 362]/ImagingBBox null>>setpagedevice"
*PageRegion B8/B8 JIS:	"<</PageSize[180 257]/ImagingBBox null>>setpagedevice"
*PageRegion B9/B9 JIS:	"<</PageSize[127 180]/ImagingBBox null>>setpagedevice"
*PageRegion B10/B10 JIS:	"<</PageSize[90 127]/ImagingBBox null>>setpagedevice"
*PageRegion C4/C4:	"<</PageSize[649 918]/ImagingBBox null>>setpagedevice"
*PageRegion C5/C5:	"<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
*PageRegion C5_l/C5 landscape:	"<</PageSize[649 459]/ImagingBBox null>>setpagedevice"
*PageRegion w354h918/B6-C4:	"<</PageSize[354 918]/ImagingBBox null>>setpagedevice"
*PageRegion C6/C6:	"<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
*PageRegion C6_l/C6 landscape:	"<</PageSize[459 323]/ImagingBBox null>>setpagedevice"
*PageRegion DL/DL:	"<</PageSize[311 623]/ImagingBBox null>>setpagedevice"
*PageRegion DL_l/DL landscape:	"<</PageSize[623 311]/ImagingBBox null>>setpagedevice"
*PageRegion w229h459/C7-6:	"<</PageSize[229 459]/ImagingBBox null>>setpagedevice"
*PageRegion w229h459_l/C7-6 landscape:	"<</PageSize[459 229]/ImagingBBox null>>setpagedevice"
*PageRegion C7/C7:	"<</PageSize[229 323]/ImagingBBox null>>setpagedevice"
*PageRegion C7_l/C7 landscape:	"<</PageSize[323 229]/ImagingBBox null>>setpagedevice"
*PageRegion C8/C8:	"<</PageSize[161 229]/ImagingBBox null>>setpagedevice"
*PageRegion C8_l/C8 landscape:	"<</PageSize[229 161]/ImagingBBox null>>setpagedevice"
*PageRegion C9/C9:	"<</PageSize[113 161]/ImagingBBox null>>setpagedevice"
*PageRegion C9_l/C9 landscape:	"<</PageSize[161 113]/ImagingBBox null>>setpagedevice"
*PageRegion C10/C10:	"<</PageSize[79 113]/ImagingBBox null>>setpagedevice"
*PageRegion C10_l/C10 landscape:	"<</PageSize[113 79]/ImagingBBox null>>setpagedevice"
*PageRegion EA5/EA5:	"<</PageSize[442 649]/ImagingBBox null>>setpagedevice"
*PageRegion EA5_l/EA5 landscape:	"<</PageSize[649 442]/ImagingBBox null>>setpagedevice"
*PageRegion ARCHA/ArchA:	"<</PageSize[648 864]/ImagingBBox null>>setpagedevice"
*PageRegion w612h936/American foolscap:	"<</PageSize[612 936]/ImagingBBox null>>setpagedevice"
*PageRegion w648h936/European foolscap:	"<</PageSize[648 936]/ImagingBBox null>>setpagedevice"
*PageRegion w535h697/Crown Quarto:	"<</PageSize[535 697]/ImagingBBox null>>setpagedevice"
*PageRegion w569h731/Large Crown Quarto:	"<</PageSize[569 731]/ImagingBBox null>>setpagedevice"
*PageRegion w620h782/Demy Quarto:	"<</PageSize[620 782]/ImagingBBox null>>setpagedevice"
*PageRegion w671h884/Royal Quarto:	"<</PageSize[671 884]/ImagingBBox null>>setpagedevice"
*PageRegion w348h527/Crown Octavo:	"<</PageSize[348 527]/ImagingBBox null>>setpagedevice"
*PageRegion w365h561/Large Crown Octavo:	"<</PageSize[365 561]/ImagingBBox null>>setpagedevice"
*PageRegion w391h612/Demy Octavo:	"<</PageSize[391 612]/ImagingBBox null>>setpagedevice"
*PageRegion w442h663/Royal Octavo:	"<</PageSize[442 663]/ImagingBBox null>>setpagedevice"
*PageRegion w314h504/Small paperback:	"<</PageSize[314 504]/ImagingBBox null>>setpagedevice"
*PageRegion w314h513/Penguin small paperback:	"<</PageSize[314 513]/ImagingBBox null>>setpagedevice"
*PageRegion cw365h561/Penguin large paperback:	"<</PageSize[365 561]/ImagingBBox null>>setpagedevice"
*PageRegion w283h425/10cm x 15cm:	"<</PageSize[283 425]/ImagingBBox null>>setpagedevice"
*PageRegion w283h420/Hagaki Card:	"<</PageSize[283 420]/ImagingBBox null>>setpagedevice"
*PageRegion w420h567/Oufuku Card:	"<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
*PageRegion w340h666/Japanese long envelope #3:	"<</PageSize[340 666]/ImagingBBox null>>setpagedevice"
*PageRegion w340h666_l/Japanese long envelope #3 landscape:	"<</PageSize[666 340]/ImagingBBox null>>setpagedevice"
*PageRegion w255h581/Japanese long envelope #4:	"<</PageSize[255 581]/ImagingBBox null>>setpagedevice"
*PageRegion w255h581_l/Japanese long envelope #4 landscape:	"<</PageSize[581 255]/ImagingBBox null>>setpagedevice"
*PageRegion w680h941/Japanese Kaku envelope #4:	"<</PageSize[680 941]/ImagingBBox null>>setpagedevice"
*PageRegion COM10/Commercial 10:	"<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
*PageRegion COM10_l/Commercial 10 landscape:	"<</PageSize[684 297]/ImagingBBox null>>setpagedevice"
*PageRegion w315h414/A2 Invitation:	"<</PageSize[315 414]/ImagingBBox null>>setpagedevice"
*PageRegion Monarch/Monarch Envelope:	"<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
*PageRegion Monarch_l/Monarch Envelope landscape:	"<</PageSize[540 279]/ImagingBBox null>>setpagedevice"
*PageRegion w288h387/4x5 3/8:	"<</PageSize[288 387]/ImagingBBox null>>setpagedevice"
*PageRegion w288h504/4x7:	"<</PageSize[288 504]/ImagingBBox null>>setpagedevice"
*PageRegion w288h512/Wide 101.6x180.6:	"<</PageSize[288 512]/ImagingBBox null>>setpagedevice"
*PageRegion w253h337/CP_L:	"<</PageSize[253 337]/ImagingBBox null>>setpagedevice"
*PageRegion w155h244/Card:	"<</PageSize[155 244]/ImagingBBox null>>setpagedevice"
*PageRegion w283h566/Wide Postcard:	"<</PageSize[283 566]/ImagingBBox null>>setpagedevice"
*PageRegion w612h935/Chilean Office:	"<</PageSize[612 935]/ImagingBBox null>>setpagedevice"
*CloseUI: *PageRegion

*DefaultImageableArea: A4
*StpDefaultImageableArea: Letter
*ImageableArea Letter/Letter:	"10 15 602 777"
*ImageableArea Legal/Legal:	"10 15 602 993"
*ImageableArea Tabloid/Tabloid:	"10 15 782 1209"
*ImageableArea Executive/Executive:	"10 15 512 741"
*ImageableArea Postcard/Postcard:	"10 15 273 401"
*ImageableArea CD5Inch/CD - 5 inch:	"10 15 319 314"
*ImageableArea CD3Inch/CD - 3 inch:	"10 15 174 169"
*ImageableArea CDCustom/CD - Custom:	"10 15 330 325"
*ImageableArea w216h360/3x5:	"10 15 206 345"
*ImageableArea w252h360/3 1/2 x5:	"10 15 242 345"
*ImageableArea w252h360J/L:	"10 15 242 345"
*ImageableArea w288h432/4x6:	"10 15 278 417"
*ImageableArea w288h432J/KG:	"10 15 278 417"
*ImageableArea w324h495/Epson 4x6 Photo Paper (tear-off borders):	"18 45 306 477"
*ImageableArea w297h421/Epson L Photo Paper (tear-off borders):	"22 43 275 404"
*ImageableArea w288h576/4x8:	"10 15 278 561"
*ImageableArea w360h504/5x7:	"10 15 350 489"
*ImageableArea w360h504J/2L:	"10 15 350 489"
*ImageableArea w360h576/5x8:	"10 15 350 561"
*ImageableArea w432h576/6x8:	"10 15 422 561"
*ImageableArea c8x10/8x10:	"10 15 566 705"
*ImageableArea c8x10J/Rokukire:	"10 15 566 705"
*ImageableArea Statement/Manual:	"10 15 386 597"
*ImageableArea w576h864/8x12:	"10 15 566 849"
*ImageableArea w720h864J/YonKire:	"10 15 710 849"
*ImageableArea w792h1008/11x14:	"10 15 782 993"
*ImageableArea A3/A3:	"10 15 832 1176"
*ImageableArea A4/A4:	"10 15 585 827"
*ImageableArea A5/A5:	"10 15 410 580"
*ImageableArea A6/A6:	"10 15 287 405"
*ImageableArea A7/A7:	"10 15 200 282"
*ImageableArea A8/A8:	"10 15 138 195"
*ImageableArea A9/A9:	"10 15 95 133"
*ImageableArea A10/A10:	"10 15 63 90"
*ImageableArea w609h864/RA4:	"10 15 599 849"
*ImageableArea w637h907/SRA4:	"10 15 627 892"
*ImageableArea ISOB4/B4 ISO:	"10 15 698 985"
*ImageableArea ISOB5/B5 ISO:	"10 15 488 693"
*ImageableArea ISOB6/B6 ISO:	"10 15 344 483"
*ImageableArea ISOB7/B7 ISO:	"10 15 239 339"
*ImageableArea ISOB8/B8 ISO:	"10 15 165 234"
*ImageableArea ISOB9/B9 ISO:	"10 15 114 160"
*ImageableArea ISOB10/B10 ISO:	"10 15 77 109"
*ImageableArea B4/B4 JIS:	"10 15 717 1014"
*ImageableArea B5/B5 JIS:	"10 15 508 712"
*ImageableArea B6/B6 JIS:	"10 15 352 503"
*ImageableArea B7/B7 JIS:	"10 15 247 347"
*ImageableArea B8/B8 JIS:	"10 15 170 242"
*ImageableArea B9/B9 JIS:	"10 15 117 165"
*ImageableArea B10/B10 JIS:	"10 15 80 112"
*ImageableArea C4/C4:	"10 15 639 903"
*ImageableArea C5/C5:	"10 15 449 634"
*ImageableArea C5_l/C5 landscape:	"10 15 639 444"
*ImageableArea w354h918/B6-C4:	"10 15 344 903"
*ImageableArea C6/C6:	"10 15 313 444"
*ImageableArea C6_l/C6 landscape:	"10 15 449 308"
*ImageableArea DL/DL:	"10 15 301 608"
*ImageableArea DL_l/DL landscape:	"10 15 613 296"
*ImageableArea w229h459/C7-6:	"10 15 219 444"
*ImageableArea w229h459_l/C7-6 landscape:	"10 15 449 214"
*ImageableArea C7/C7:	"10 15 219 308"
*ImageableArea C7_l/C7 landscape:	"10 15 313 214"
*ImageableArea C8/C8:	"10 15 151 214"
*ImageableArea C8_l/C8 landscape:	"10 15 219 146"
*ImageableArea C9/C9:	"10 15 103 146"
*ImageableArea C9_l/C9 landscape:	"10 15 151 98"
*ImageableArea C10/C10:	"10 15 69 98"
*ImageableArea C10_l/C10 landscape:	"10 15 103 64"
*ImageableArea EA5/EA5:	"10 15 432 634"
*ImageableArea EA5_l/EA5 landscape:	"10 15 639 427"
*ImageableArea ARCHA/ArchA:	"10 15 638 849"
*ImageableArea w612h936/American foolscap:	"10 15 602 921"
*ImageableArea w648h936/European foolscap:	"10 15 638 921"
*ImageableArea w535h697/Crown Quarto:	"10 15 525 682"
*ImageableArea w569h731/Large Crown Quarto:	"10 15 559 716"
*ImageableArea w620h782/Demy Quarto:	"10 15 610 767"
*ImageableArea w671h884/Royal Quarto:	"10 15 661 869"
*ImageableArea w348h527/Crown Octavo:	"10 15 338 512"
*ImageableArea w365h561/Large Crown Octavo:	"10 15 355 546"
*ImageableArea w391h612/Demy Octavo:	"10 15 381 597"
*ImageableArea w442h663/Royal Octavo:	"10 15 432 648"
*ImageableArea w314h504/Small paperback:	"10 15 304 489"
*ImageableArea w314h513/Penguin small paperback:	"10 15 304 498"
*ImageableArea cw365h561/Penguin large paperback:	"10 15 355 546"
*ImageableArea w283h425/10cm x 15cm:	"10 15 273 410"
*ImageableArea w283h420/Hagaki Card:	"10 15 273 405"
*ImageableArea w420h567/Oufuku Card:	"10 15 410 552"
*ImageableArea w340h666/Japanese long envelope #3:	"10 15 330 651"
*ImageableArea w340h666_l/Japanese long envelope #3 landscape:	"10 15 656 325"
*ImageableArea w255h581/Japanese long envelope #4:	"10 15 245 566"
*ImageableArea w255h581_l/Japanese long envelope #4 landscape:	"10 15 571 240"
*ImageableArea w680h941/Japanese Kaku envelope #4:	"10 15 670 926"
*ImageableArea COM10/Commercial 10:	"10 15 287 669"
*ImageableArea COM10_l/Commercial 10 landscape:	"10 15 674 282"
*ImageableArea w315h414/A2 Invitation:	"10 15 305 399"
*ImageableArea Monarch/Monarch Envelope:	"10 15 269 525"
*ImageableArea Monarch_l/Monarch Envelope landscape:	"10 15 530 264"
*ImageableArea w288h387/4x5 3/8:	"10 15 278 372"
*ImageableArea w288h504/4x7:	"10 15 278 489"
*ImageableArea w288h512/Wide 101.6x180.6:	"10 15 278 497"
*ImageableArea w253h337/CP_L:	"10 15 243 322"
*ImageableArea w155h244/Card:	"10 15 145 229"
*ImageableArea w283h566/Wide Postcard:	"10 15 273 551"
*ImageableArea w612h935/Chilean Office:	"10 15 602 920"

*DefaultPaperDimension: A4
*StpDefaultPaperDimension: Letter
*PaperDimension Letter/Letter:	"612 792"
*PaperDimension Legal/Legal:	"612 1008"
*PaperDimension Tabloid/Tabloid:	"792 1224"
*PaperDimension Executive/Executive:	"522 756"
*PaperDimension Postcard/Postcard:	"283 416"
*PaperDimension CD5Inch/CD - 5 inch:	"329 329"
*PaperDimension CD3Inch/CD - 3 inch:	"184 184"
*PaperDimension CDCustom/CD - Custom:	"340 340"
*PaperDimension w216h360/3x5:	"216 360"
*PaperDimension w252h360/3 1/2 x5:	"252 360"
*PaperDimension w252h360J/L:	"252 360"
*PaperDimension w288h432/4x6:	"288 432"
*PaperDimension w288h432J/KG:	"288 432"
*PaperDimension w324h495/Epson 4x6 Photo Paper (tear-off borders):	"324 495"
*PaperDimension w297h421/Epson L Photo Paper (tear-off borders):	"297 421"
*PaperDimension w288h576/4x8:	"288 576"
*PaperDimension w360h504/5x7:	"360 504"
*PaperDimension w360h504J/2L:	"360 504"
*PaperDimension w360h576/5x8:	"360 576"
*PaperDimension w432h576/6x8:	"432 576"
*PaperDimension c8x10/8x10:	"576 720"
*PaperDimension c8x10J/Rokukire:	"576 720"
*PaperDimension Statement/Manual:	"396 612"
*PaperDimension w576h864/8x12:	"576 864"
*PaperDimension w720h864J/YonKire:	"720 864"
*PaperDimension w792h1008/11x14:	"792 1008"
*PaperDimension A3/A3:	"842 1191"
*PaperDimension A4/A4:	"595 842"
*PaperDimension A5/A5:	"420 595"
*PaperDimension A6/A6:	"297 420"
*PaperDimension A7/A7:	"210 297"
*PaperDimension A8/A8:	"148 210"
*PaperDimension A9/A9:	"105 148"
*PaperDimension A10/A10:	"73 105"
*PaperDimension w609h864/RA4:	"609 864"
*PaperDimension w637h907/SRA4:	"637 907"
*PaperDimension ISOB4/B4 ISO:	"708 1000"
*PaperDimension ISOB5/B5 ISO:	"498 708"
*PaperDimension ISOB6/B6 ISO:	"354 498"
*PaperDimension ISOB7/B7 ISO:	"249 354"
*PaperDimension ISOB8/B8 ISO:	"175 249"
*PaperDimension ISOB9/B9 ISO:	"124 175"
*PaperDimension ISOB10/B10 ISO:	"87 124"
*PaperDimension B4/B4 JIS:	"727 1029"
*PaperDimension B5/B5 JIS:	"518 727"
*PaperDimension B6/B6 JIS:	"362 518"
*PaperDimension B7/B7 JIS:	"257 362"
*PaperDimension B8/B8 JIS:	"180 257"
*PaperDimension B9/B9 JIS:	"127 180"
*PaperDimension B10/B10 JIS:	"90 127"
*PaperDimension C4/C4:	"649 918"
*PaperDimension C5/C5:	"459 649"
*PaperDimension C5_l/C5 landscape:	"649 459"
*PaperDimension w354h918/B6-C4:	"354 918"
*PaperDimension C6/C6:	"323 459"
*PaperDimension C6_l/C6 landscape:	"459 323"
*PaperDimension DL/DL:	"311 623"
*PaperDimension DL_l/DL landscape:	"623 311"
*PaperDimension w229h459/C7-6:	"229 459"
*PaperDimension w229h459_l/C7-6 landscape:	"459 229"
*PaperDimension C7/C7:	"229 323"
*PaperDimension C7_l/C7 landscape:	"323 229"
*PaperDimension C8/C8:	"161 229"
*PaperDimension C8_l/C8 landscape:	"229 161"
*PaperDimension C9/C9:	"113 161"
*PaperDimension C9_l/C9 landscape:	"161 113"
*PaperDimension C10/C10:	"79 113"
*PaperDimension C10_l/C10 landscape:	"113 79"
*PaperDimension EA5/EA5:	"442 649"
*PaperDimension EA5_l/EA5 landscape:	"649 442"
*PaperDimension ARCHA/ArchA:	"648 864"
*PaperDimension w612h936/American foolscap:	"612 936"
*PaperDimension w648h936/European foolscap:	"648 936"
*PaperDimension w535h697/Crown Quarto:	"535 697"
*PaperDimension w569h731/Large Crown Quarto:	"569 731"
*PaperDimension w620h782/Demy Quarto:	"620 782"
*PaperDimension w671h884/Royal Quarto:	"671 884"
*PaperDimension w348h527/Crown Octavo:	"348 527"
*PaperDimension w365h561/Large Crown Octavo:	"365 561"
*PaperDimension w391h612/Demy Octavo:	"391 612"
*PaperDimension w442h663/Royal Octavo:	"442 663"
*PaperDimension w314h504/Small paperback:	"314 504"
*PaperDimension w314h513/Penguin small paperback:	"314 513"
*PaperDimension cw365h561/Penguin large paperback:	"365 561"
*PaperDimension w283h425/10cm x 15cm:	"283 425"
*PaperDimension w283h420/Hagaki Card:	"283 420"
*PaperDimension w420h567/Oufuku Card:	"420 567"
*PaperDimension w340h666/Japanese long envelope #3:	"340 666"
*PaperDimension w340h666_l/Japanese long envelope #3 landscape:	"666 340"
*PaperDimension w255h581/Japanese long envelope #4:	"255 581"
*PaperDimension w255h581_l/Japanese long envelope #4 landscape:	"581 255"
*PaperDimension w680h941/Japanese Kaku envelope #4:	"680 941"
*PaperDimension COM10/Commercial 10:	"297 684"
*PaperDimension COM10_l/Commercial 10 landscape:	"684 297"
*PaperDimension w315h414/A2 Invitation:	"315 414"
*PaperDimension Monarch/Monarch Envelope:	"279 540"
*PaperDimension Monarch_l/Monarch Envelope landscape:	"540 279"
*PaperDimension w288h387/4x5 3/8:	"288 387"
*PaperDimension w288h504/4x7:	"288 504"
*PaperDimension w288h512/Wide 101.6x180.6:	"288 512"
*PaperDimension w253h337/CP_L:	"253 337"
*PaperDimension w155h244/Card:	"155 244"
*PaperDimension w283h566/Wide Postcard:	"283 566"
*PaperDimension w612h935/Chilean Office:	"612 935"

*MaxMediaWidth:  "842"
*MaxMediaHeight: "1224"
*HWMargins:      10 15 10 15
*CustomPageSize True: "pop pop pop <</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice"
*ParamCustomPageSize Width:        1 points 1 842
*ParamCustomPageSize Height:       2 points 1 1224
*ParamCustomPageSize WidthOffset:  3 points 0 0
*ParamCustomPageSize HeightOffset: 4 points 0 0
*ParamCustomPageSize Orientation:  5 int 0 0

*ColorKeyWords: "ColorModel"
*OpenUI *ColorModel/Color Model: PickOne
*OPOptionHints ColorModel: "radiobuttons"
*OrderDependency: 10 AnySetup *ColorModel
*DefaultColorModel: Gray
*StpDefaultColorModel: RGB
*ColorModel Gray/Grayscale:	"<</cupsColorSpace 0/cupsColorOrder 0>>setpagedevice"
*ColorModel Black/Inverted Grayscale:	"<</cupsColorSpace 3/cupsColorOrder 0>>setpagedevice"
*ColorModel RGB/RGB Color:	"<</cupsColorSpace 1/cupsColorOrder 0>>setpagedevice"
*ColorModel CMY/CMY Color:	"<</cupsColorSpace 4/cupsColorOrder 0>>setpagedevice"
*ColorModel CMYK/CMYK:	"<</cupsColorSpace 6/cupsColorOrder 0>>setpagedevice"
*ColorModel KCMY/KCMY:	"<</cupsColorSpace 8/cupsColorOrder 0>>setpagedevice"
*CloseUI: *ColorModel

*ColorKeyWords: "StpColorPrecision"
*OpenUI *StpColorPrecision/Color Precision: PickOne
*OPOptionHints StpColorPrecision: "radiobuttons"
*OrderDependency: 10 AnySetup *StpColorPrecision
*DefaultStpColorPrecision: Normal
*StpDefaultStpColorPrecision: Normal
*StpColorPrecision Normal/Normal:	"<</cupsBitsPerColor 8>>setpagedevice"
*StpColorPrecision Best/Best:	"<</cupsBitsPerColor 8/cupsPreferredBitsPerColor 16>>setpagedevice"
*CloseUI: *StpColorPrecision

*ColorKeyWords: "MediaType"
*OpenUI *MediaType/Media Type: PickOne
*OPOptionHints MediaType: "dropdown"
*OrderDependency: 10 AnySetup *MediaType
*StpStpMediaType: 0 1 0 0 255 0.000 0.000 0.000
*DefaultMediaType: Plain
*StpDefaultMediaType: Plain
*MediaType Plain/Plain Paper:	"<</MediaType(Plain)>>setpagedevice"
*MediaType PhotopaperPro/Photo Paper Pro:	"<</MediaType(PhotopaperPro)>>setpagedevice"
*MediaType PhotopaperPlus/Photo Paper Plus Glossy:	"<</MediaType(PhotopaperPlus)>>setpagedevice"
*MediaType PhotoPlusGLoss2/Photo Paper Plus Glossy II:	"<</MediaType(PhotoPlusGLoss2)>>setpagedevice"
*MediaType PhotoProSemiGloss/Photo Paper Plus Semi-gloss:	"<</MediaType(PhotoProSemiGloss)>>setpagedevice"
*MediaType PhotopaperMatte/Matte Photo Paper:	"<</MediaType(PhotopaperMatte)>>setpagedevice"
*MediaType GlossyPaper/Glossy Photo Paper:	"<</MediaType(GlossyPaper)>>setpagedevice"
*MediaType Coated/High Resolution Paper:	"<</MediaType(Coated)>>setpagedevice"
*MediaType InkJetHagaki/Ink Jet Hagaki:	"<</MediaType(InkJetHagaki)>>setpagedevice"
*MediaType Hagaki/Hagaki:	"<</MediaType(Hagaki)>>setpagedevice"
*MediaType TShirt/T-Shirt Transfers:	"<</MediaType(TShirt)>>setpagedevice"
*MediaType Envelope/Envelope:	"<</MediaType(Envelope)>>setpagedevice"
*MediaType PhotopaperOther/Other Photo Paper:	"<</MediaType(PhotopaperOther)>>setpagedevice"
*CloseUI: *MediaType

*OpenUI *InputSlot/Media Source: PickOne
*OPOptionHints InputSlot: "dropdown"
*OrderDependency: 10 AnySetup *InputSlot
*StpStpInputSlot: 0 1 0 0 255 0.000 0.000 0.000
*DefaultInputSlot: Auto
*StpDefaultInputSlot: Auto
*InputSlot Auto/Auto Sheet Feeder:	"<</MediaClass(Auto)>>setpagedevice"
*CloseUI: *InputSlot

*ColorKeyWords: "Quality"
*OpenUI *StpQuality/Print Quality: PickOne
*OPOptionHints Quality: "dropdown"
*OrderDependency: 10 AnySetup *StpQuality
*StpStpQuality: 0 1 0 0 255 0.000 0.000 0.000
*DefaultStpQuality: Standard
*StpDefaultStpQuality: Standard
*StpQuality None/Manual Control:	"<</HWResolution[300 300]/cupsRowFeed 1>>setpagedevice"
*StpQuality Standard/Standard:	"<</HWResolution[300 300]/cupsRowFeed 2>>setpagedevice"
*CloseUI: *StpQuality

*ColorKeyWords: "Resolution"
*OpenUI *Resolution/Resolution: PickOne
*OPOptionHints Resolution: "resolution radiobuttons"
*OrderDependency: 10 AnySetup *Resolution
*StpStpResolution: 0 1 0 0 255 0.000 0.000 0.000
*DefaultResolution: 301x300dpi
*StpDefaultResolution: 301x300dpi
*Resolution 301x300dpi/Automatic:	"<</HWResolution[300 300]>>setpagedevice"
*StpResolutionMap: 301x300dpi None
*Resolution 600dpi/600x600 DPI HIGH:	"<</HWResolution[600 600]/cupsCompression 1>>setpagedevice"
*StpResolutionMap: 600dpi 600x600dpi_high
*Resolution 601x600dpi/600x600 DPI:	"<</HWResolution[600 600]/cupsCompression 2>>setpagedevice"
*StpResolutionMap: 601x600dpi 600x600dpi
*Resolution 300dpi/300x300 DPI:	"<</HWResolution[300 300]/cupsCompression 3>>setpagedevice"
*StpResolutionMap: 300dpi 300x300dpi
*Resolution 302x300dpi/300x300 DPI DRAFT:	"<</HWResolution[300 300]/cupsCompression 4>>setpagedevice"
*StpResolutionMap: 302x300dpi 300x300dpi_draft
*Resolution 602x600dpi/600x600 DPI HIGH MONO:	"<</HWResolution[600 600]/cupsCompression 5>>setpagedevice"
*StpResolutionMap: 602x600dpi 600x600dpi_highmono
*Resolution 603x600dpi/600x600 DPI MONO:	"<</HWResolution[600 600]/cupsCompression 6>>setpagedevice"
*StpResolutionMap: 603x600dpi 600x600dpi_mono
*Resolution 303x300dpi/300x300 DPI MONO:	"<</HWResolution[300 300]/cupsCompression 7>>setpagedevice"
*StpResolutionMap: 303x300dpi 300x300dpi_mono
*Resolution 304x300dpi/300x300 DPI DRAFT MONO:	"<</HWResolution[300 300]/cupsCompression 8>>setpagedevice"
*StpResolutionMap: 304x300dpi 300x300dpi_draftmono
*Resolution 604x600dpi/600x600 DPI PHOTO HIGH:	"<</HWResolution[600 600]/cupsCompression 9>>setpagedevice"
*StpResolutionMap: 604x600dpi 600x600dpi_photohigh
*Resolution 605x600dpi/600x600 DPI PHOTO:	"<</HWResolution[600 600]/cupsCompression 10>>setpagedevice"
*StpResolutionMap: 605x600dpi 600x600dpi_photo
*Resolution 1200x600dpi/600x600 DPI PHOTO HIGH2:	"<</HWResolution[1200 1200]/cupsCompression 11>>setpagedevice"
*StpResolutionMap: 1200x600dpi 600x600dpi_photohigh2
*Resolution 606x600dpi/600x600 DPI PHOTO DRAFT:	"<</HWResolution[600 600]/cupsCompression 12>>setpagedevice"
*StpResolutionMap: 606x600dpi 600x600dpi_photodraft
*Resolution 607x600dpi/600x600 DPI HIGH 2:	"<</HWResolution[600 600]/cupsCompression 13>>setpagedevice"
*StpResolutionMap: 607x600dpi 600x600dpi_high2
*Resolution 608x600dpi/600x600 DPI 2:	"<</HWResolution[600 600]/cupsCompression 14>>setpagedevice"
*StpResolutionMap: 608x600dpi 600x600dpi_std2
*Resolution 305x300dpi/300x300 DPI 2:	"<</HWResolution[300 300]/cupsCompression 15>>setpagedevice"
*StpResolutionMap: 305x300dpi 300x300dpi_2
*Resolution 306x300dpi/300x300 DPI DRAFT 2:	"<</HWResolution[300 300]/cupsCompression 16>>setpagedevice"
*StpResolutionMap: 306x300dpi 300x300dpi_draft2
*CloseUI: *Resolution

*OpenUI *StpiShrinkOutput/Shrink Page If Necessary to Fit Borders: PickOne
*OPOptionHints StpiShrinkOutput: "radiobuttons"
*OrderDependency: 10 AnySetup *StpiShrinkOutput
*DefaultStpiShrinkOutput: Shrink
*StpDefaultStpiShrinkOutput: Shrink
*StpiShrinkOutput Shrink/Shrink (print the whole page): ""
*StpiShrinkOutput Crop/Crop (preserve dimensions): ""
*StpiShrinkOutput Expand/Expand (use maximum page area): ""
*CloseUI: *StpiShrinkOutput

*OpenGroup: C0L0/Printer Features Common

*ColorKeyWords: "StpInkType"
*OpenUI *StpInkType/Ink Type: PickOne
*OrderDependency: 10 AnySetup *StpInkType
*OPOptionHints StpInkType: "radiobuttons"
*StpStpInkType: 0 1 0 0 255 0.000 0.000 0.000
*DefaultStpInkType: RGB
*StpDefaultStpInkType: RGB
*StpInkType RGB/CMY Color: ""
*CloseUI: *StpInkType

*CloseGroup: C0L0/Printer Features Common

*OpenGroup: C1L0/Output Control Common

*ColorKeyWords: "StpColorCorrection"
*OpenUI *StpColorCorrection/Color Correction: PickOne
*OrderDependency: 10 AnySetup *StpColorCorrection
*OPOptionHints StpColorCorrection: "dropdown"
*StpStpColorCorrection: 0 1 1 0 255 0.000 0.000 0.000
*DefaultStpColorCorrection: None
*StpDefaultStpColorCorrection: None
*StpColorCorrection None/Default: ""
*StpColorCorrection Accurate/High Accuracy: ""
*StpColorCorrection Bright/Bright Colors: ""
*StpColorCorrection Hue/Correct Hue Only: ""
*StpColorCorrection Uncorrected/Uncorrected: ""
*StpColorCorrection Desaturated/Desaturated: ""
*StpColorCorrection Threshold/Threshold: ""
*StpColorCorrection Density/Density: ""
*StpColorCorrection Raw/Raw: ""
*StpColorCorrection Predithered/Pre-Dithered: ""
*CloseUI: *StpColorCorrection

*ColorKeyWords: "StpBrightness"
*OpenUI *StpBrightness/Brightness: PickOne
*OrderDependency: 10 AnySetup *StpBrightness
*OPOptionHints StpBrightness: "slider input spinbox"
*StpStpBrightness: 3 1 1 0 255 0.000 2.000 1.000
*DefaultStpBrightness: None
*StpDefaultStpBrightness: None
*StpBrightness 0/0.000: ""
*StpBrightness 100/0.100: ""
*StpBrightness 200/0.200: ""
*StpBrightness 300/0.300: ""
*StpBrightness 400/0.400: ""
*StpBrightness 500/0.500: ""
*StpBrightness 600/0.600: ""
*StpBrightness 700/0.700: ""
*StpBrightness 800/0.800: ""
*StpBrightness 900/0.900: ""
*StpBrightness None/1.000: ""
*StpBrightness 1100/1.100: ""
*StpBrightness 1200/1.200: ""
*StpBrightness 1300/1.300: ""
*StpBrightness 1400/1.400: ""
*StpBrightness 1500/1.500: ""
*StpBrightness 1600/1.600: ""
*StpBrightness 1700/1.700: ""
*StpBrightness 1800/1.800: ""
*StpBrightness 1900/1.900: ""
*StpBrightness 2000/2.000: ""
*CloseUI: *StpBrightness

*CustomStpBrightness True: "pop"
*ParamCustomStpBrightness Value/Value: 1 real 0.000 2.000

*ColorKeyWords: "StpFineBrightness"
*OpenUI *StpFineBrightness/Brightness Fine Adjustment: PickOne
*OPOptionHints StpFineBrightness: "hide"
*StpStpFineBrightness: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineBrightness: None
*StpDefaultStpFineBrightness: None
*StpFineBrightness None/0.000: ""
*StpFineBrightness 0/0.000: ""
*StpFineBrightness 5/0.005: ""
*StpFineBrightness 10/0.010: ""
*StpFineBrightness 15/0.015: ""
*StpFineBrightness 20/0.020: ""
*StpFineBrightness 25/0.025: ""
*StpFineBrightness 30/0.030: ""
*StpFineBrightness 35/0.035: ""
*StpFineBrightness 40/0.040: ""
*StpFineBrightness 45/0.045: ""
*StpFineBrightness 50/0.050: ""
*StpFineBrightness 55/0.055: ""
*StpFineBrightness 60/0.060: ""
*StpFineBrightness 65/0.065: ""
*StpFineBrightness 70/0.070: ""
*StpFineBrightness 75/0.075: ""
*StpFineBrightness 80/0.080: ""
*StpFineBrightness 85/0.085: ""
*StpFineBrightness 90/0.090: ""
*StpFineBrightness 95/0.095: ""
*CloseUI: *StpFineBrightness

*ColorKeyWords: "StpContrast"
*OpenUI *StpContrast/Contrast: PickOne
*OrderDependency: 10 AnySetup *StpContrast
*OPOptionHints StpContrast: "slider input spinbox"
*StpStpContrast: 3 1 1 0 255 0.000 4.000 1.000
*DefaultStpContrast: None
*StpDefaultStpContrast: None
*StpContrast 0/0.000: ""
*StpContrast 100/0.100: ""
*StpContrast 200/0.200: ""
*StpContrast 300/0.300: ""
*StpContrast 400/0.400: ""
*StpContrast 500/0.500: ""
*StpContrast 600/0.600: ""
*StpContrast 700/0.700: ""
*StpContrast 800/0.800: ""
*StpContrast 900/0.900: ""
*StpContrast None/1.000: ""
*StpContrast 1100/1.100: ""
*StpContrast 1200/1.200: ""
*StpContrast 1300/1.300: ""
*StpContrast 1400/1.400: ""
*StpContrast 1500/1.500: ""
*StpContrast 1600/1.600: ""
*StpContrast 1700/1.700: ""
*StpContrast 1800/1.800: ""
*StpContrast 1900/1.900: ""
*StpContrast 2000/2.000: ""
*StpContrast 2100/2.100: ""
*StpContrast 2200/2.200: ""
*StpContrast 2300/2.300: ""
*StpContrast 2400/2.400: ""
*StpContrast 2500/2.500: ""
*StpContrast 2600/2.600: ""
*StpContrast 2700/2.700: ""
*StpContrast 2800/2.800: ""
*StpContrast 2900/2.900: ""
*StpContrast 3000/3.000: ""
*StpContrast 3100/3.100: ""
*StpContrast 3200/3.200: ""
*StpContrast 3300/3.300: ""
*StpContrast 3400/3.400: ""
*StpContrast 3500/3.500: ""
*StpContrast 3600/3.600: ""
*StpContrast 3700/3.700: ""
*StpContrast 3800/3.800: ""
*StpContrast 3900/3.900: ""
*StpContrast 4000/4.000: ""
*CloseUI: *StpContrast

*CustomStpContrast True: "pop"
*ParamCustomStpContrast Value/Value: 1 real 0.000 4.000

*ColorKeyWords: "StpFineContrast"
*OpenUI *StpFineContrast/Contrast Fine Adjustment: PickOne
*OPOptionHints StpFineContrast: "hide"
*StpStpFineContrast: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineContrast: None
*StpDefaultStpFineContrast: None
*StpFineContrast None/0.000: ""
*StpFineContrast 0/0.000: ""
*StpFineContrast 5/0.005: ""
*StpFineContrast 10/0.010: ""
*StpFineContrast 15/0.015: ""
*StpFineContrast 20/0.020: ""
*StpFineContrast 25/0.025: ""
*StpFineContrast 30/0.030: ""
*StpFineContrast 35/0.035: ""
*StpFineContrast 40/0.040: ""
*StpFineContrast 45/0.045: ""
*StpFineContrast 50/0.050: ""
*StpFineContrast 55/0.055: ""
*StpFineContrast 60/0.060: ""
*StpFineContrast 65/0.065: ""
*StpFineContrast 70/0.070: ""
*StpFineContrast 75/0.075: ""
*StpFineContrast 80/0.080: ""
*StpFineContrast 85/0.085: ""
*StpFineContrast 90/0.090: ""
*StpFineContrast 95/0.095: ""
*CloseUI: *StpFineContrast

*ColorKeyWords: "StpSaturation"
*OpenUI *StpSaturation/Saturation: PickOne
*OrderDependency: 10 AnySetup *StpSaturation
*OPOptionHints StpSaturation: "slider input spinbox"
*StpStpSaturation: 3 1 1 0 255 0.000 9.000 1.000
*DefaultStpSaturation: None
*StpDefaultStpSaturation: None
*StpSaturation 0/0.000: ""
*StpSaturation 100/0.100: ""
*StpSaturation 200/0.200: ""
*StpSaturation 300/0.300: ""
*StpSaturation 400/0.400: ""
*StpSaturation 500/0.500: ""
*StpSaturation 600/0.600: ""
*StpSaturation 700/0.700: ""
*StpSaturation 800/0.800: ""
*StpSaturation 900/0.900: ""
*StpSaturation None/1.000: ""
*StpSaturation 1100/1.100: ""
*StpSaturation 1200/1.200: ""
*StpSaturation 1300/1.300: ""
*StpSaturation 1400/1.400: ""
*StpSaturation 1500/1.500: ""
*StpSaturation 1600/1.600: ""
*StpSaturation 1700/1.700: ""
*StpSaturation 1800/1.800: ""
*StpSaturation 1900/1.900: ""
*StpSaturation 2000/2.000: ""
*StpSaturation 2100/2.100: ""
*StpSaturation 2200/2.200: ""
*StpSaturation 2300/2.300: ""
*StpSaturation 2400/2.400: ""
*StpSaturation 2500/2.500: ""
*StpSaturation 2600/2.600: ""
*StpSaturation 2700/2.700: ""
*StpSaturation 2800/2.800: ""
*StpSaturation 2900/2.900: ""
*StpSaturation 3000/3.000: ""
*StpSaturation 3100/3.100: ""
*StpSaturation 3200/3.200: ""
*StpSaturation 3300/3.300: ""
*StpSaturation 3400/3.400: ""
*StpSaturation 3500/3.500: ""
*StpSaturation 3600/3.600: ""
*StpSaturation 3700/3.700: ""
*StpSaturation 3800/3.800: ""
*StpSaturation 3900/3.900: ""
*StpSaturation 4000/4.000: ""
*StpSaturation 4100/4.100: ""
*StpSaturation 4200/4.200: ""
*StpSaturation 4300/4.300: ""
*StpSaturation 4400/4.400: ""
*StpSaturation 4500/4.500: ""
*StpSaturation 4600/4.600: ""
*StpSaturation 4700/4.700: ""
*StpSaturation 4800/4.800: ""
*StpSaturation 4900/4.900: ""
*StpSaturation 5000/5.000: ""
*StpSaturation 5100/5.100: ""
*StpSaturation 5200/5.200: ""
*StpSaturation 5300/5.300: ""
*StpSaturation 5400/5.400: ""
*StpSaturation 5500/5.500: ""
*StpSaturation 5600/5.600: ""
*StpSaturation 5700/5.700: ""
*StpSaturation 5800/5.800: ""
*StpSaturation 5900/5.900: ""
*StpSaturation 6000/6.000: ""
*StpSaturation 6100/6.100: ""
*StpSaturation 6200/6.200: ""
*StpSaturation 6300/6.300: ""
*StpSaturation 6400/6.400: ""
*StpSaturation 6500/6.500: ""
*StpSaturation 6600/6.600: ""
*StpSaturation 6700/6.700: ""
*StpSaturation 6800/6.800: ""
*StpSaturation 6900/6.900: ""
*StpSaturation 7000/7.000: ""
*StpSaturation 7100/7.100: ""
*StpSaturation 7200/7.200: ""
*StpSaturation 7300/7.300: ""
*StpSaturation 7400/7.400: ""
*StpSaturation 7500/7.500: ""
*StpSaturation 7600/7.600: ""
*StpSaturation 7700/7.700: ""
*StpSaturation 7800/7.800: ""
*StpSaturation 7900/7.900: ""
*StpSaturation 8000/8.000: ""
*StpSaturation 8100/8.100: ""
*StpSaturation 8200/8.200: ""
*StpSaturation 8300/8.300: ""
*StpSaturation 8400/8.400: ""
*StpSaturation 8500/8.500: ""
*StpSaturation 8600/8.600: ""
*StpSaturation 8700/8.700: ""
*StpSaturation 8800/8.800: ""
*StpSaturation 8900/8.900: ""
*StpSaturation 9000/9.000: ""
*CloseUI: *StpSaturation

*CustomStpSaturation True: "pop"
*ParamCustomStpSaturation Value/Value: 1 real 0.000 9.000

*ColorKeyWords: "StpFineSaturation"
*OpenUI *StpFineSaturation/Saturation Fine Adjustment: PickOne
*OPOptionHints StpFineSaturation: "hide"
*StpStpFineSaturation: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineSaturation: None
*StpDefaultStpFineSaturation: None
*StpFineSaturation None/0.000: ""
*StpFineSaturation 0/0.000: ""
*StpFineSaturation 5/0.005: ""
*StpFineSaturation 10/0.010: ""
*StpFineSaturation 15/0.015: ""
*StpFineSaturation 20/0.020: ""
*StpFineSaturation 25/0.025: ""
*StpFineSaturation 30/0.030: ""
*StpFineSaturation 35/0.035: ""
*StpFineSaturation 40/0.040: ""
*StpFineSaturation 45/0.045: ""
*StpFineSaturation 50/0.050: ""
*StpFineSaturation 55/0.055: ""
*StpFineSaturation 60/0.060: ""
*StpFineSaturation 65/0.065: ""
*StpFineSaturation 70/0.070: ""
*StpFineSaturation 75/0.075: ""
*StpFineSaturation 80/0.080: ""
*StpFineSaturation 85/0.085: ""
*StpFineSaturation 90/0.090: ""
*StpFineSaturation 95/0.095: ""
*CloseUI: *StpFineSaturation

*ColorKeyWords: "StpImageType"
*OpenUI *StpImageType/Image Type: PickOne
*OrderDependency: 10 AnySetup *StpImageType
*OPOptionHints StpImageType: "dropdown"
*StpStpImageType: 0 1 1 0 255 0.000 0.000 0.000
*DefaultStpImageType: TextGraphics
*StpDefaultStpImageType: TextGraphics
*StpImageType None/Manual Control: ""
*StpImageType Text/Text: ""
*StpImageType Graphics/Graphics: ""
*StpImageType TextGraphics/Mixed Text and Graphics: ""
*StpImageType Photo/Photograph: ""
*StpImageType LineArt/Line Art: ""
*CloseUI: *StpImageType

*CloseGroup: C1L0/Output Control Common

*OpenGroup: C1L1/Output Control Extra 1

*ColorKeyWords: "StpCyanDensity"
*OpenUI *StpCyanDensity/Cyan Density: PickOne
*OrderDependency: 10 AnySetup *StpCyanDensity
*OPOptionHints StpCyanDensity: "slider input spinbox"
*StpStpCyanDensity: 3 0 1 1 1 0.000 2.000 1.000
*DefaultStpCyanDensity: None
*StpDefaultStpCyanDensity: None
*StpCyanDensity 0/0.000: ""
*StpCyanDensity 100/0.100: ""
*StpCyanDensity 200/0.200: ""
*StpCyanDensity 300/0.300: ""
*StpCyanDensity 400/0.400: ""
*StpCyanDensity 500/0.500: ""
*StpCyanDensity 600/0.600: ""
*StpCyanDensity 700/0.700: ""
*StpCyanDensity 800/0.800: ""
*StpCyanDensity 900/0.900: ""
*StpCyanDensity 1000/1.000: ""
*StpCyanDensity 1100/1.100: ""
*StpCyanDensity 1200/1.200: ""
*StpCyanDensity 1300/1.300: ""
*StpCyanDensity 1400/1.400: ""
*StpCyanDensity 1500/1.500: ""
*StpCyanDensity 1600/1.600: ""
*StpCyanDensity 1700/1.700: ""
*StpCyanDensity 1800/1.800: ""
*StpCyanDensity 1900/1.900: ""
*StpCyanDensity 2000/2.000: ""
*StpCyanDensity None/None: ""
*CloseUI: *StpCyanDensity

*CustomStpCyanDensity True: "pop"
*ParamCustomStpCyanDensity Value/Value: 1 real 0.000 2.000

*ColorKeyWords: "StpFineCyanDensity"
*OpenUI *StpFineCyanDensity/Cyan Density Fine Adjustment: PickOne
*OPOptionHints StpFineCyanDensity: "hide"
*StpStpFineCyanDensity: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineCyanDensity: None
*StpDefaultStpFineCyanDensity: None
*StpFineCyanDensity None/0.000: ""
*StpFineCyanDensity 0/0.000: ""
*StpFineCyanDensity 5/0.005: ""
*StpFineCyanDensity 10/0.010: ""
*StpFineCyanDensity 15/0.015: ""
*StpFineCyanDensity 20/0.020: ""
*StpFineCyanDensity 25/0.025: ""
*StpFineCyanDensity 30/0.030: ""
*StpFineCyanDensity 35/0.035: ""
*StpFineCyanDensity 40/0.040: ""
*StpFineCyanDensity 45/0.045: ""
*StpFineCyanDensity 50/0.050: ""
*StpFineCyanDensity 55/0.055: ""
*StpFineCyanDensity 60/0.060: ""
*StpFineCyanDensity 65/0.065: ""
*StpFineCyanDensity 70/0.070: ""
*StpFineCyanDensity 75/0.075: ""
*StpFineCyanDensity 80/0.080: ""
*StpFineCyanDensity 85/0.085: ""
*StpFineCyanDensity 90/0.090: ""
*StpFineCyanDensity 95/0.095: ""
*CloseUI: *StpFineCyanDensity

*ColorKeyWords: "StpMagentaDensity"
*OpenUI *StpMagentaDensity/Magenta Density: PickOne
*OrderDependency: 10 AnySetup *StpMagentaDensity
*OPOptionHints StpMagentaDensity: "slider input spinbox"
*StpStpMagentaDensity: 3 0 1 1 2 0.000 2.000 1.000
*DefaultStpMagentaDensity: None
*StpDefaultStpMagentaDensity: None
*StpMagentaDensity 0/0.000: ""
*StpMagentaDensity 100/0.100: ""
*StpMagentaDensity 200/0.200: ""
*StpMagentaDensity 300/0.300: ""
*StpMagentaDensity 400/0.400: ""
*StpMagentaDensity 500/0.500: ""
*StpMagentaDensity 600/0.600: ""
*StpMagentaDensity 700/0.700: ""
*StpMagentaDensity 800/0.800: ""
*StpMagentaDensity 900/0.900: ""
*StpMagentaDensity 1000/1.000: ""
*StpMagentaDensity 1100/1.100: ""
*StpMagentaDensity 1200/1.200: ""
*StpMagentaDensity 1300/1.300: ""
*StpMagentaDensity 1400/1.400: ""
*StpMagentaDensity 1500/1.500: ""
*StpMagentaDensity 1600/1.600: ""
*StpMagentaDensity 1700/1.700: ""
*StpMagentaDensity 1800/1.800: ""
*StpMagentaDensity 1900/1.900: ""
*StpMagentaDensity 2000/2.000: ""
*StpMagentaDensity None/None: ""
*CloseUI: *StpMagentaDensity

*CustomStpMagentaDensity True: "pop"
*ParamCustomStpMagentaDensity Value/Value: 1 real 0.000 2.000

*ColorKeyWords: "StpFineMagentaDensity"
*OpenUI *StpFineMagentaDensity/Magenta Density Fine Adjustment: PickOne
*OPOptionHints StpFineMagentaDensity: "hide"
*StpStpFineMagentaDensity: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineMagentaDensity: None
*StpDefaultStpFineMagentaDensity: None
*StpFineMagentaDensity None/0.000: ""
*StpFineMagentaDensity 0/0.000: ""
*StpFineMagentaDensity 5/0.005: ""
*StpFineMagentaDensity 10/0.010: ""
*StpFineMagentaDensity 15/0.015: ""
*StpFineMagentaDensity 20/0.020: ""
*StpFineMagentaDensity 25/0.025: ""
*StpFineMagentaDensity 30/0.030: ""
*StpFineMagentaDensity 35/0.035: ""
*StpFineMagentaDensity 40/0.040: ""
*StpFineMagentaDensity 45/0.045: ""
*StpFineMagentaDensity 50/0.050: ""
*StpFineMagentaDensity 55/0.055: ""
*StpFineMagentaDensity 60/0.060: ""
*StpFineMagentaDensity 65/0.065: ""
*StpFineMagentaDensity 70/0.070: ""
*StpFineMagentaDensity 75/0.075: ""
*StpFineMagentaDensity 80/0.080: ""
*StpFineMagentaDensity 85/0.085: ""
*StpFineMagentaDensity 90/0.090: ""
*StpFineMagentaDensity 95/0.095: ""
*CloseUI: *StpFineMagentaDensity

*ColorKeyWords: "StpYellowDensity"
*OpenUI *StpYellowDensity/Yellow Density: PickOne
*OrderDependency: 10 AnySetup *StpYellowDensity
*OPOptionHints StpYellowDensity: "slider input spinbox"
*StpStpYellowDensity: 3 0 1 1 3 0.000 2.000 1.000
*DefaultStpYellowDensity: None
*StpDefaultStpYellowDensity: None
*StpYellowDensity 0/0.000: ""
*StpYellowDensity 100/0.100: ""
*StpYellowDensity 200/0.200: ""
*StpYellowDensity 300/0.300: ""
*StpYellowDensity 400/0.400: ""
*StpYellowDensity 500/0.500: ""
*StpYellowDensity 600/0.600: ""
*StpYellowDensity 700/0.700: ""
*StpYellowDensity 800/0.800: ""
*StpYellowDensity 900/0.900: ""
*StpYellowDensity 1000/1.000: ""
*StpYellowDensity 1100/1.100: ""
*StpYellowDensity 1200/1.200: ""
*StpYellowDensity 1300/1.300: ""
*StpYellowDensity 1400/1.400: ""
*StpYellowDensity 1500/1.500: ""
*StpYellowDensity 1600/1.600: ""
*StpYellowDensity 1700/1.700: ""
*StpYellowDensity 1800/1.800: ""
*StpYellowDensity 1900/1.900: ""
*StpYellowDensity 2000/2.000: ""
*StpYellowDensity None/None: ""
*CloseUI: *StpYellowDensity

*CustomStpYellowDensity True: "pop"
*ParamCustomStpYellowDensity Value/Value: 1 real 0.000 2.000

*ColorKeyWords: "StpFineYellowDensity"
*OpenUI *StpFineYellowDensity/Yellow Density Fine Adjustment: PickOne
*OPOptionHints StpFineYellowDensity: "hide"
*StpStpFineYellowDensity: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineYellowDensity: None
*StpDefaultStpFineYellowDensity: None
*StpFineYellowDensity None/0.000: ""
*StpFineYellowDensity 0/0.000: ""
*StpFineYellowDensity 5/0.005: ""
*StpFineYellowDensity 10/0.010: ""
*StpFineYellowDensity 15/0.015: ""
*StpFineYellowDensity 20/0.020: ""
*StpFineYellowDensity 25/0.025: ""
*StpFineYellowDensity 30/0.030: ""
*StpFineYellowDensity 35/0.035: ""
*StpFineYellowDensity 40/0.040: ""
*StpFineYellowDensity 45/0.045: ""
*StpFineYellowDensity 50/0.050: ""
*StpFineYellowDensity 55/0.055: ""
*StpFineYellowDensity 60/0.060: ""
*StpFineYellowDensity 65/0.065: ""
*StpFineYellowDensity 70/0.070: ""
*StpFineYellowDensity 75/0.075: ""
*StpFineYellowDensity 80/0.080: ""
*StpFineYellowDensity 85/0.085: ""
*StpFineYellowDensity 90/0.090: ""
*StpFineYellowDensity 95/0.095: ""
*CloseUI: *StpFineYellowDensity

*ColorKeyWords: "StpBlackDensity"
*OpenUI *StpBlackDensity/Black Density: PickOne
*OrderDependency: 10 AnySetup *StpBlackDensity
*OPOptionHints StpBlackDensity: "slider input spinbox"
*StpStpBlackDensity: 3 0 1 1 0 0.000 2.000 1.000
*DefaultStpBlackDensity: None
*StpDefaultStpBlackDensity: None
*StpBlackDensity 0/0.000: ""
*StpBlackDensity 100/0.100: ""
*StpBlackDensity 200/0.200: ""
*StpBlackDensity 300/0.300: ""
*StpBlackDensity 400/0.400: ""
*StpBlackDensity 500/0.500: ""
*StpBlackDensity 600/0.600: ""
*StpBlackDensity 700/0.700: ""
*StpBlackDensity 800/0.800: ""
*StpBlackDensity 900/0.900: ""
*StpBlackDensity 1000/1.000: ""
*StpBlackDensity 1100/1.100: ""
*StpBlackDensity 1200/1.200: ""
*StpBlackDensity 1300/1.300: ""
*StpBlackDensity 1400/1.400: ""
*StpBlackDensity 1500/1.500: ""
*StpBlackDensity 1600/1.600: ""
*StpBlackDensity 1700/1.700: ""
*StpBlackDensity 1800/1.800: ""
*StpBlackDensity 1900/1.900: ""
*StpBlackDensity 2000/2.000: ""
*StpBlackDensity None/None: ""
*CloseUI: *StpBlackDensity

*CustomStpBlackDensity True: "pop"
*ParamCustomStpBlackDensity Value/Value: 1 real 0.000 2.000

*ColorKeyWords: "StpFineBlackDensity"
*OpenUI *StpFineBlackDensity/Black Density Fine Adjustment: PickOne
*OPOptionHints StpFineBlackDensity: "hide"
*StpStpFineBlackDensity: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineBlackDensity: None
*StpDefaultStpFineBlackDensity: None
*StpFineBlackDensity None/0.000: ""
*StpFineBlackDensity 0/0.000: ""
*StpFineBlackDensity 5/0.005: ""
*StpFineBlackDensity 10/0.010: ""
*StpFineBlackDensity 15/0.015: ""
*StpFineBlackDensity 20/0.020: ""
*StpFineBlackDensity 25/0.025: ""
*StpFineBlackDensity 30/0.030: ""
*StpFineBlackDensity 35/0.035: ""
*StpFineBlackDensity 40/0.040: ""
*StpFineBlackDensity 45/0.045: ""
*StpFineBlackDensity 50/0.050: ""
*StpFineBlackDensity 55/0.055: ""
*StpFineBlackDensity 60/0.060: ""
*StpFineBlackDensity 65/0.065: ""
*StpFineBlackDensity 70/0.070: ""
*StpFineBlackDensity 75/0.075: ""
*StpFineBlackDensity 80/0.080: ""
*StpFineBlackDensity 85/0.085: ""
*StpFineBlackDensity 90/0.090: ""
*StpFineBlackDensity 95/0.095: ""
*CloseUI: *StpFineBlackDensity

*ColorKeyWords: "StpDensity"
*OpenUI *StpDensity/Density: PickOne
*OrderDependency: 10 AnySetup *StpDensity
*OPOptionHints StpDensity: "slider input spinbox"
*StpStpDensity: 3 0 1 1 255 0.100 8.000 1.000
*DefaultStpDensity: None
*StpDefaultStpDensity: None
*StpDensity 100/0.100: ""
*StpDensity 200/0.200: ""
*StpDensity 300/0.300: ""
*StpDensity 400/0.400: ""
*StpDensity 500/0.500: ""
*StpDensity 600/0.600: ""
*StpDensity 700/0.700: ""
*StpDensity 800/0.800: ""
*StpDensity 900/0.900: ""
*StpDensity 1000/1.000: ""
*StpDensity 1100/1.100: ""
*StpDensity 1200/1.200: ""
*StpDensity 1300/1.300: ""
*StpDensity 1400/1.400: ""
*StpDensity 1500/1.500: ""
*StpDensity 1600/1.600: ""
*StpDensity 1700/1.700: ""
*StpDensity 1800/1.800: ""
*StpDensity 1900/1.900: ""
*StpDensity 2000/2.000: ""
*StpDensity 2100/2.100: ""
*StpDensity 2200/2.200: ""
*StpDensity 2300/2.300: ""
*StpDensity 2400/2.400: ""
*StpDensity 2500/2.500: ""
*StpDensity 2600/2.600: ""
*StpDensity 2700/2.700: ""
*StpDensity 2800/2.800: ""
*StpDensity 2900/2.900: ""
*StpDensity 3000/3.000: ""
*StpDensity 3100/3.100: ""
*StpDensity 3200/3.200: ""
*StpDensity 3300/3.300: ""
*StpDensity 3400/3.400: ""
*StpDensity 3500/3.500: ""
*StpDensity 3600/3.600: ""
*StpDensity 3700/3.700: ""
*StpDensity 3800/3.800: ""
*StpDensity 3900/3.900: ""
*StpDensity 4000/4.000: ""
*StpDensity 4100/4.100: ""
*StpDensity 4200/4.200: ""
*StpDensity 4300/4.300: ""
*StpDensity 4400/4.400: ""
*StpDensity 4500/4.500: ""
*StpDensity 4600/4.600: ""
*StpDensity 4700/4.700: ""
*StpDensity 4800/4.800: ""
*StpDensity 4900/4.900: ""
*StpDensity 5000/5.000: ""
*StpDensity 5100/5.100: ""
*StpDensity 5200/5.200: ""
*StpDensity 5300/5.300: ""
*StpDensity 5400/5.400: ""
*StpDensity 5500/5.500: ""
*StpDensity 5600/5.600: ""
*StpDensity 5700/5.700: ""
*StpDensity 5800/5.800: ""
*StpDensity 5900/5.900: ""
*StpDensity 6000/6.000: ""
*StpDensity 6100/6.100: ""
*StpDensity 6200/6.200: ""
*StpDensity 6300/6.300: ""
*StpDensity 6400/6.400: ""
*StpDensity 6500/6.500: ""
*StpDensity 6600/6.600: ""
*StpDensity 6700/6.700: ""
*StpDensity 6800/6.800: ""
*StpDensity 6900/6.900: ""
*StpDensity 7000/7.000: ""
*StpDensity 7100/7.100: ""
*StpDensity 7200/7.200: ""
*StpDensity 7300/7.300: ""
*StpDensity 7400/7.400: ""
*StpDensity 7500/7.500: ""
*StpDensity 7600/7.600: ""
*StpDensity 7700/7.700: ""
*StpDensity 7800/7.800: ""
*StpDensity 7900/7.900: ""
*StpDensity 8000/8.000: ""
*StpDensity None/None: ""
*CloseUI: *StpDensity

*CustomStpDensity True: "pop"
*ParamCustomStpDensity Value/Value: 1 real 0.100 8.000

*ColorKeyWords: "StpFineDensity"
*OpenUI *StpFineDensity/Density Fine Adjustment: PickOne
*OPOptionHints StpFineDensity: "hide"
*StpStpFineDensity: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineDensity: None
*StpDefaultStpFineDensity: None
*StpFineDensity None/0.000: ""
*StpFineDensity 0/0.000: ""
*StpFineDensity 5/0.005: ""
*StpFineDensity 10/0.010: ""
*StpFineDensity 15/0.015: ""
*StpFineDensity 20/0.020: ""
*StpFineDensity 25/0.025: ""
*StpFineDensity 30/0.030: ""
*StpFineDensity 35/0.035: ""
*StpFineDensity 40/0.040: ""
*StpFineDensity 45/0.045: ""
*StpFineDensity 50/0.050: ""
*StpFineDensity 55/0.055: ""
*StpFineDensity 60/0.060: ""
*StpFineDensity 65/0.065: ""
*StpFineDensity 70/0.070: ""
*StpFineDensity 75/0.075: ""
*StpFineDensity 80/0.080: ""
*StpFineDensity 85/0.085: ""
*StpFineDensity 90/0.090: ""
*StpFineDensity 95/0.095: ""
*CloseUI: *StpFineDensity

*ColorKeyWords: "StpDitherAlgorithm"
*OpenUI *StpDitherAlgorithm/Dither Algorithm: PickOne
*OrderDependency: 10 AnySetup *StpDitherAlgorithm
*OPOptionHints StpDitherAlgorithm: "dropdown"
*StpStpDitherAlgorithm: 0 1 1 1 255 0.000 0.000 0.000
*DefaultStpDitherAlgorithm: None
*StpDefaultStpDitherAlgorithm: None
*StpDitherAlgorithm None/Default: ""
*StpDitherAlgorithm EvenTone/EvenTone: ""
*StpDitherAlgorithm HybridEvenTone/Hybrid EvenTone: ""
*StpDitherAlgorithm Adaptive/Adaptive Hybrid: ""
*StpDitherAlgorithm Ordered/Ordered: ""
*StpDitherAlgorithm OrderedNew/Ordered New: ""
*StpDitherAlgorithm Fast/Fast: ""
*StpDitherAlgorithm VeryFast/Very Fast: ""
*StpDitherAlgorithm Floyd/Hybrid Floyd-Steinberg: ""
*StpDitherAlgorithm Predithered/Predithered Input: ""
*StpDitherAlgorithm Segmented/Drop Size Segmented: ""
*StpDitherAlgorithm SegmentedNew/Drop Size Segmented New: ""
*CloseUI: *StpDitherAlgorithm

*CloseGroup: C1L1/Output Control Extra 1

*OpenGroup: C1L2/Output Control Extra 2

*ColorKeyWords: "StpGamma"
*OpenUI *StpGamma/Composite Gamma: PickOne
*OrderDependency: 10 AnySetup *StpGamma
*OPOptionHints StpGamma: "slider input spinbox"
*StpStpGamma: 3 0 1 2 255 0.100 4.000 1.000
*DefaultStpGamma: None
*StpDefaultStpGamma: None
*StpGamma 100/0.100: ""
*StpGamma 200/0.200: ""
*StpGamma 300/0.300: ""
*StpGamma 400/0.400: ""
*StpGamma 500/0.500: ""
*StpGamma 600/0.600: ""
*StpGamma 700/0.700: ""
*StpGamma 800/0.800: ""
*StpGamma 900/0.900: ""
*StpGamma 1000/1.000: ""
*StpGamma 1100/1.100: ""
*StpGamma 1200/1.200: ""
*StpGamma 1300/1.300: ""
*StpGamma 1400/1.400: ""
*StpGamma 1500/1.500: ""
*StpGamma 1600/1.600: ""
*StpGamma 1700/1.700: ""
*StpGamma 1800/1.800: ""
*StpGamma 1900/1.900: ""
*StpGamma 2000/2.000: ""
*StpGamma 2100/2.100: ""
*StpGamma 2200/2.200: ""
*StpGamma 2300/2.300: ""
*StpGamma 2400/2.400: ""
*StpGamma 2500/2.500: ""
*StpGamma 2600/2.600: ""
*StpGamma 2700/2.700: ""
*StpGamma 2800/2.800: ""
*StpGamma 2900/2.900: ""
*StpGamma 3000/3.000: ""
*StpGamma 3100/3.100: ""
*StpGamma 3200/3.200: ""
*StpGamma 3300/3.300: ""
*StpGamma 3400/3.400: ""
*StpGamma 3500/3.500: ""
*StpGamma 3600/3.600: ""
*StpGamma 3700/3.700: ""
*StpGamma 3800/3.800: ""
*StpGamma 3900/3.900: ""
*StpGamma 4000/4.000: ""
*StpGamma None/None: ""
*CloseUI: *StpGamma

*CustomStpGamma True: "pop"
*ParamCustomStpGamma Value/Value: 1 real 0.100 4.000

*ColorKeyWords: "StpFineGamma"
*OpenUI *StpFineGamma/Composite Gamma Fine Adjustment: PickOne
*OPOptionHints StpFineGamma: "hide"
*StpStpFineGamma: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineGamma: None
*StpDefaultStpFineGamma: None
*StpFineGamma None/0.000: ""
*StpFineGamma 0/0.000: ""
*StpFineGamma 5/0.005: ""
*StpFineGamma 10/0.010: ""
*StpFineGamma 15/0.015: ""
*StpFineGamma 20/0.020: ""
*StpFineGamma 25/0.025: ""
*StpFineGamma 30/0.030: ""
*StpFineGamma 35/0.035: ""
*StpFineGamma 40/0.040: ""
*StpFineGamma 45/0.045: ""
*StpFineGamma 50/0.050: ""
*StpFineGamma 55/0.055: ""
*StpFineGamma 60/0.060: ""
*StpFineGamma 65/0.065: ""
*StpFineGamma 70/0.070: ""
*StpFineGamma 75/0.075: ""
*StpFineGamma 80/0.080: ""
*StpFineGamma 85/0.085: ""
*StpFineGamma 90/0.090: ""
*StpFineGamma 95/0.095: ""
*CloseUI: *StpFineGamma

*ColorKeyWords: "StpCyanGamma"
*OpenUI *StpCyanGamma/Cyan: PickOne
*OrderDependency: 10 AnySetup *StpCyanGamma
*OPOptionHints StpCyanGamma: "slider input spinbox"
*StpStpCyanGamma: 3 0 1 2 1 0.000 4.000 1.000
*DefaultStpCyanGamma: None
*StpDefaultStpCyanGamma: None
*StpCyanGamma 0/0.000: ""
*StpCyanGamma 100/0.100: ""
*StpCyanGamma 200/0.200: ""
*StpCyanGamma 300/0.300: ""
*StpCyanGamma 400/0.400: ""
*StpCyanGamma 500/0.500: ""
*StpCyanGamma 600/0.600: ""
*StpCyanGamma 700/0.700: ""
*StpCyanGamma 800/0.800: ""
*StpCyanGamma 900/0.900: ""
*StpCyanGamma 1000/1.000: ""
*StpCyanGamma 1100/1.100: ""
*StpCyanGamma 1200/1.200: ""
*StpCyanGamma 1300/1.300: ""
*StpCyanGamma 1400/1.400: ""
*StpCyanGamma 1500/1.500: ""
*StpCyanGamma 1600/1.600: ""
*StpCyanGamma 1700/1.700: ""
*StpCyanGamma 1800/1.800: ""
*StpCyanGamma 1900/1.900: ""
*StpCyanGamma 2000/2.000: ""
*StpCyanGamma 2100/2.100: ""
*StpCyanGamma 2200/2.200: ""
*StpCyanGamma 2300/2.300: ""
*StpCyanGamma 2400/2.400: ""
*StpCyanGamma 2500/2.500: ""
*StpCyanGamma 2600/2.600: ""
*StpCyanGamma 2700/2.700: ""
*StpCyanGamma 2800/2.800: ""
*StpCyanGamma 2900/2.900: ""
*StpCyanGamma 3000/3.000: ""
*StpCyanGamma 3100/3.100: ""
*StpCyanGamma 3200/3.200: ""
*StpCyanGamma 3300/3.300: ""
*StpCyanGamma 3400/3.400: ""
*StpCyanGamma 3500/3.500: ""
*StpCyanGamma 3600/3.600: ""
*StpCyanGamma 3700/3.700: ""
*StpCyanGamma 3800/3.800: ""
*StpCyanGamma 3900/3.900: ""
*StpCyanGamma 4000/4.000: ""
*StpCyanGamma None/None: ""
*CloseUI: *StpCyanGamma

*CustomStpCyanGamma True: "pop"
*ParamCustomStpCyanGamma Value/Value: 1 real 0.000 4.000

*ColorKeyWords: "StpFineCyanGamma"
*OpenUI *StpFineCyanGamma/Cyan Fine Adjustment: PickOne
*OPOptionHints StpFineCyanGamma: "hide"
*StpStpFineCyanGamma: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineCyanGamma: None
*StpDefaultStpFineCyanGamma: None
*StpFineCyanGamma None/0.000: ""
*StpFineCyanGamma 0/0.000: ""
*StpFineCyanGamma 5/0.005: ""
*StpFineCyanGamma 10/0.010: ""
*StpFineCyanGamma 15/0.015: ""
*StpFineCyanGamma 20/0.020: ""
*StpFineCyanGamma 25/0.025: ""
*StpFineCyanGamma 30/0.030: ""
*StpFineCyanGamma 35/0.035: ""
*StpFineCyanGamma 40/0.040: ""
*StpFineCyanGamma 45/0.045: ""
*StpFineCyanGamma 50/0.050: ""
*StpFineCyanGamma 55/0.055: ""
*StpFineCyanGamma 60/0.060: ""
*StpFineCyanGamma 65/0.065: ""
*StpFineCyanGamma 70/0.070: ""
*StpFineCyanGamma 75/0.075: ""
*StpFineCyanGamma 80/0.080: ""
*StpFineCyanGamma 85/0.085: ""
*StpFineCyanGamma 90/0.090: ""
*StpFineCyanGamma 95/0.095: ""
*CloseUI: *StpFineCyanGamma

*ColorKeyWords: "StpMagentaGamma"
*OpenUI *StpMagentaGamma/Magenta: PickOne
*OrderDependency: 10 AnySetup *StpMagentaGamma
*OPOptionHints StpMagentaGamma: "slider input spinbox"
*StpStpMagentaGamma: 3 0 1 2 2 0.000 4.000 1.000
*DefaultStpMagentaGamma: None
*StpDefaultStpMagentaGamma: None
*StpMagentaGamma 0/0.000: ""
*StpMagentaGamma 100/0.100: ""
*StpMagentaGamma 200/0.200: ""
*StpMagentaGamma 300/0.300: ""
*StpMagentaGamma 400/0.400: ""
*StpMagentaGamma 500/0.500: ""
*StpMagentaGamma 600/0.600: ""
*StpMagentaGamma 700/0.700: ""
*StpMagentaGamma 800/0.800: ""
*StpMagentaGamma 900/0.900: ""
*StpMagentaGamma 1000/1.000: ""
*StpMagentaGamma 1100/1.100: ""
*StpMagentaGamma 1200/1.200: ""
*StpMagentaGamma 1300/1.300: ""
*StpMagentaGamma 1400/1.400: ""
*StpMagentaGamma 1500/1.500: ""
*StpMagentaGamma 1600/1.600: ""
*StpMagentaGamma 1700/1.700: ""
*StpMagentaGamma 1800/1.800: ""
*StpMagentaGamma 1900/1.900: ""
*StpMagentaGamma 2000/2.000: ""
*StpMagentaGamma 2100/2.100: ""
*StpMagentaGamma 2200/2.200: ""
*StpMagentaGamma 2300/2.300: ""
*StpMagentaGamma 2400/2.400: ""
*StpMagentaGamma 2500/2.500: ""
*StpMagentaGamma 2600/2.600: ""
*StpMagentaGamma 2700/2.700: ""
*StpMagentaGamma 2800/2.800: ""
*StpMagentaGamma 2900/2.900: ""
*StpMagentaGamma 3000/3.000: ""
*StpMagentaGamma 3100/3.100: ""
*StpMagentaGamma 3200/3.200: ""
*StpMagentaGamma 3300/3.300: ""
*StpMagentaGamma 3400/3.400: ""
*StpMagentaGamma 3500/3.500: ""
*StpMagentaGamma 3600/3.600: ""
*StpMagentaGamma 3700/3.700: ""
*StpMagentaGamma 3800/3.800: ""
*StpMagentaGamma 3900/3.900: ""
*StpMagentaGamma 4000/4.000: ""
*StpMagentaGamma None/None: ""
*CloseUI: *StpMagentaGamma

*CustomStpMagentaGamma True: "pop"
*ParamCustomStpMagentaGamma Value/Value: 1 real 0.000 4.000

*ColorKeyWords: "StpFineMagentaGamma"
*OpenUI *StpFineMagentaGamma/Magenta Fine Adjustment: PickOne
*OPOptionHints StpFineMagentaGamma: "hide"
*StpStpFineMagentaGamma: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineMagentaGamma: None
*StpDefaultStpFineMagentaGamma: None
*StpFineMagentaGamma None/0.000: ""
*StpFineMagentaGamma 0/0.000: ""
*StpFineMagentaGamma 5/0.005: ""
*StpFineMagentaGamma 10/0.010: ""
*StpFineMagentaGamma 15/0.015: ""
*StpFineMagentaGamma 20/0.020: ""
*StpFineMagentaGamma 25/0.025: ""
*StpFineMagentaGamma 30/0.030: ""
*StpFineMagentaGamma 35/0.035: ""
*StpFineMagentaGamma 40/0.040: ""
*StpFineMagentaGamma 45/0.045: ""
*StpFineMagentaGamma 50/0.050: ""
*StpFineMagentaGamma 55/0.055: ""
*StpFineMagentaGamma 60/0.060: ""
*StpFineMagentaGamma 65/0.065: ""
*StpFineMagentaGamma 70/0.070: ""
*StpFineMagentaGamma 75/0.075: ""
*StpFineMagentaGamma 80/0.080: ""
*StpFineMagentaGamma 85/0.085: ""
*StpFineMagentaGamma 90/0.090: ""
*StpFineMagentaGamma 95/0.095: ""
*CloseUI: *StpFineMagentaGamma

*ColorKeyWords: "StpYellowGamma"
*OpenUI *StpYellowGamma/Yellow: PickOne
*OrderDependency: 10 AnySetup *StpYellowGamma
*OPOptionHints StpYellowGamma: "slider input spinbox"
*StpStpYellowGamma: 3 0 1 2 3 0.000 4.000 1.000
*DefaultStpYellowGamma: None
*StpDefaultStpYellowGamma: None
*StpYellowGamma 0/0.000: ""
*StpYellowGamma 100/0.100: ""
*StpYellowGamma 200/0.200: ""
*StpYellowGamma 300/0.300: ""
*StpYellowGamma 400/0.400: ""
*StpYellowGamma 500/0.500: ""
*StpYellowGamma 600/0.600: ""
*StpYellowGamma 700/0.700: ""
*StpYellowGamma 800/0.800: ""
*StpYellowGamma 900/0.900: ""
*StpYellowGamma 1000/1.000: ""
*StpYellowGamma 1100/1.100: ""
*StpYellowGamma 1200/1.200: ""
*StpYellowGamma 1300/1.300: ""
*StpYellowGamma 1400/1.400: ""
*StpYellowGamma 1500/1.500: ""
*StpYellowGamma 1600/1.600: ""
*StpYellowGamma 1700/1.700: ""
*StpYellowGamma 1800/1.800: ""
*StpYellowGamma 1900/1.900: ""
*StpYellowGamma 2000/2.000: ""
*StpYellowGamma 2100/2.100: ""
*StpYellowGamma 2200/2.200: ""
*StpYellowGamma 2300/2.300: ""
*StpYellowGamma 2400/2.400: ""
*StpYellowGamma 2500/2.500: ""
*StpYellowGamma 2600/2.600: ""
*StpYellowGamma 2700/2.700: ""
*StpYellowGamma 2800/2.800: ""
*StpYellowGamma 2900/2.900: ""
*StpYellowGamma 3000/3.000: ""
*StpYellowGamma 3100/3.100: ""
*StpYellowGamma 3200/3.200: ""
*StpYellowGamma 3300/3.300: ""
*StpYellowGamma 3400/3.400: ""
*StpYellowGamma 3500/3.500: ""
*StpYellowGamma 3600/3.600: ""
*StpYellowGamma 3700/3.700: ""
*StpYellowGamma 3800/3.800: ""
*StpYellowGamma 3900/3.900: ""
*StpYellowGamma 4000/4.000: ""
*StpYellowGamma None/None: ""
*CloseUI: *StpYellowGamma

*CustomStpYellowGamma True: "pop"
*ParamCustomStpYellowGamma Value/Value: 1 real 0.000 4.000

*ColorKeyWords: "StpFineYellowGamma"
*OpenUI *StpFineYellowGamma/Yellow Fine Adjustment: PickOne
*OPOptionHints StpFineYellowGamma: "hide"
*StpStpFineYellowGamma: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineYellowGamma: None
*StpDefaultStpFineYellowGamma: None
*StpFineYellowGamma None/0.000: ""
*StpFineYellowGamma 0/0.000: ""
*StpFineYellowGamma 5/0.005: ""
*StpFineYellowGamma 10/0.010: ""
*StpFineYellowGamma 15/0.015: ""
*StpFineYellowGamma 20/0.020: ""
*StpFineYellowGamma 25/0.025: ""
*StpFineYellowGamma 30/0.030: ""
*StpFineYellowGamma 35/0.035: ""
*StpFineYellowGamma 40/0.040: ""
*StpFineYellowGamma 45/0.045: ""
*StpFineYellowGamma 50/0.050: ""
*StpFineYellowGamma 55/0.055: ""
*StpFineYellowGamma 60/0.060: ""
*StpFineYellowGamma 65/0.065: ""
*StpFineYellowGamma 70/0.070: ""
*StpFineYellowGamma 75/0.075: ""
*StpFineYellowGamma 80/0.080: ""
*StpFineYellowGamma 85/0.085: ""
*StpFineYellowGamma 90/0.090: ""
*StpFineYellowGamma 95/0.095: ""
*CloseUI: *StpFineYellowGamma

*ColorKeyWords: "StpCyanBalance"
*OpenUI *StpCyanBalance/Cyan Balance: PickOne
*OrderDependency: 10 AnySetup *StpCyanBalance
*OPOptionHints StpCyanBalance: "slider input spinbox"
*StpStpCyanBalance: 3 0 1 2 1 0.000 1.000 1.000
*DefaultStpCyanBalance: None
*StpDefaultStpCyanBalance: None
*StpCyanBalance 0/0.000: ""
*StpCyanBalance 100/0.100: ""
*StpCyanBalance 200/0.200: ""
*StpCyanBalance 300/0.300: ""
*StpCyanBalance 400/0.400: ""
*StpCyanBalance 500/0.500: ""
*StpCyanBalance 600/0.600: ""
*StpCyanBalance 700/0.700: ""
*StpCyanBalance 800/0.800: ""
*StpCyanBalance 900/0.900: ""
*StpCyanBalance 1000/1.000: ""
*StpCyanBalance None/None: ""
*CloseUI: *StpCyanBalance

*CustomStpCyanBalance True: "pop"
*ParamCustomStpCyanBalance Value/Value: 1 real 0.000 1.000

*ColorKeyWords: "StpFineCyanBalance"
*OpenUI *StpFineCyanBalance/Cyan Balance Fine Adjustment: PickOne
*OPOptionHints StpFineCyanBalance: "hide"
*StpStpFineCyanBalance: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineCyanBalance: None
*StpDefaultStpFineCyanBalance: None
*StpFineCyanBalance None/0.000: ""
*StpFineCyanBalance 0/0.000: ""
*StpFineCyanBalance 5/0.005: ""
*StpFineCyanBalance 10/0.010: ""
*StpFineCyanBalance 15/0.015: ""
*StpFineCyanBalance 20/0.020: ""
*StpFineCyanBalance 25/0.025: ""
*StpFineCyanBalance 30/0.030: ""
*StpFineCyanBalance 35/0.035: ""
*StpFineCyanBalance 40/0.040: ""
*StpFineCyanBalance 45/0.045: ""
*StpFineCyanBalance 50/0.050: ""
*StpFineCyanBalance 55/0.055: ""
*StpFineCyanBalance 60/0.060: ""
*StpFineCyanBalance 65/0.065: ""
*StpFineCyanBalance 70/0.070: ""
*StpFineCyanBalance 75/0.075: ""
*StpFineCyanBalance 80/0.080: ""
*StpFineCyanBalance 85/0.085: ""
*StpFineCyanBalance 90/0.090: ""
*StpFineCyanBalance 95/0.095: ""
*CloseUI: *StpFineCyanBalance

*ColorKeyWords: "StpMagentaBalance"
*OpenUI *StpMagentaBalance/Magenta Balance: PickOne
*OrderDependency: 10 AnySetup *StpMagentaBalance
*OPOptionHints StpMagentaBalance: "slider input spinbox"
*StpStpMagentaBalance: 3 0 1 2 2 0.000 1.000 1.000
*DefaultStpMagentaBalance: None
*StpDefaultStpMagentaBalance: None
*StpMagentaBalance 0/0.000: ""
*StpMagentaBalance 100/0.100: ""
*StpMagentaBalance 200/0.200: ""
*StpMagentaBalance 300/0.300: ""
*StpMagentaBalance 400/0.400: ""
*StpMagentaBalance 500/0.500: ""
*StpMagentaBalance 600/0.600: ""
*StpMagentaBalance 700/0.700: ""
*StpMagentaBalance 800/0.800: ""
*StpMagentaBalance 900/0.900: ""
*StpMagentaBalance 1000/1.000: ""
*StpMagentaBalance None/None: ""
*CloseUI: *StpMagentaBalance

*CustomStpMagentaBalance True: "pop"
*ParamCustomStpMagentaBalance Value/Value: 1 real 0.000 1.000

*ColorKeyWords: "StpFineMagentaBalance"
*OpenUI *StpFineMagentaBalance/Magenta Balance Fine Adjustment: PickOne
*OPOptionHints StpFineMagentaBalance: "hide"
*StpStpFineMagentaBalance: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineMagentaBalance: None
*StpDefaultStpFineMagentaBalance: None
*StpFineMagentaBalance None/0.000: ""
*StpFineMagentaBalance 0/0.000: ""
*StpFineMagentaBalance 5/0.005: ""
*StpFineMagentaBalance 10/0.010: ""
*StpFineMagentaBalance 15/0.015: ""
*StpFineMagentaBalance 20/0.020: ""
*StpFineMagentaBalance 25/0.025: ""
*StpFineMagentaBalance 30/0.030: ""
*StpFineMagentaBalance 35/0.035: ""
*StpFineMagentaBalance 40/0.040: ""
*StpFineMagentaBalance 45/0.045: ""
*StpFineMagentaBalance 50/0.050: ""
*StpFineMagentaBalance 55/0.055: ""
*StpFineMagentaBalance 60/0.060: ""
*StpFineMagentaBalance 65/0.065: ""
*StpFineMagentaBalance 70/0.070: ""
*StpFineMagentaBalance 75/0.075: ""
*StpFineMagentaBalance 80/0.080: ""
*StpFineMagentaBalance 85/0.085: ""
*StpFineMagentaBalance 90/0.090: ""
*StpFineMagentaBalance 95/0.095: ""
*CloseUI: *StpFineMagentaBalance

*ColorKeyWords: "StpYellowBalance"
*OpenUI *StpYellowBalance/Yellow Balance: PickOne
*OrderDependency: 10 AnySetup *StpYellowBalance
*OPOptionHints StpYellowBalance: "slider input spinbox"
*StpStpYellowBalance: 3 0 1 2 3 0.000 1.000 1.000
*DefaultStpYellowBalance: None
*StpDefaultStpYellowBalance: None
*StpYellowBalance 0/0.000: ""
*StpYellowBalance 100/0.100: ""
*StpYellowBalance 200/0.200: ""
*StpYellowBalance 300/0.300: ""
*StpYellowBalance 400/0.400: ""
*StpYellowBalance 500/0.500: ""
*StpYellowBalance 600/0.600: ""
*StpYellowBalance 700/0.700: ""
*StpYellowBalance 800/0.800: ""
*StpYellowBalance 900/0.900: ""
*StpYellowBalance 1000/1.000: ""
*StpYellowBalance None/None: ""
*CloseUI: *StpYellowBalance

*CustomStpYellowBalance True: "pop"
*ParamCustomStpYellowBalance Value/Value: 1 real 0.000 1.000

*ColorKeyWords: "StpFineYellowBalance"
*OpenUI *StpFineYellowBalance/Yellow Balance Fine Adjustment: PickOne
*OPOptionHints StpFineYellowBalance: "hide"
*StpStpFineYellowBalance: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineYellowBalance: None
*StpDefaultStpFineYellowBalance: None
*StpFineYellowBalance None/0.000: ""
*StpFineYellowBalance 0/0.000: ""
*StpFineYellowBalance 5/0.005: ""
*StpFineYellowBalance 10/0.010: ""
*StpFineYellowBalance 15/0.015: ""
*StpFineYellowBalance 20/0.020: ""
*StpFineYellowBalance 25/0.025: ""
*StpFineYellowBalance 30/0.030: ""
*StpFineYellowBalance 35/0.035: ""
*StpFineYellowBalance 40/0.040: ""
*StpFineYellowBalance 45/0.045: ""
*StpFineYellowBalance 50/0.050: ""
*StpFineYellowBalance 55/0.055: ""
*StpFineYellowBalance 60/0.060: ""
*StpFineYellowBalance 65/0.065: ""
*StpFineYellowBalance 70/0.070: ""
*StpFineYellowBalance 75/0.075: ""
*StpFineYellowBalance 80/0.080: ""
*StpFineYellowBalance 85/0.085: ""
*StpFineYellowBalance 90/0.090: ""
*StpFineYellowBalance 95/0.095: ""
*CloseUI: *StpFineYellowBalance

*CloseGroup: C1L2/Output Control Extra 2

*OpenGroup: C1L4/Output Control Extra 4

*ColorKeyWords: "StpLinearContrast"
*OpenUI *StpLinearContrast/Linear Contrast Adjustment: PickOne
*OrderDependency: 10 AnySetup *StpLinearContrast
*OPOptionHints StpLinearContrast: "checkbox"
*StpStpLinearContrast: 2 1 1 4 255 0.000 0.000 0.000
*DefaultStpLinearContrast: False
*StpDefaultStpLinearContrast: False
*StpLinearContrast False/No: ""
*StpLinearContrast True/Yes: ""
*CloseUI: *StpLinearContrast

*CloseGroup: C1L4/Output Control Extra 4

*OpenGroup: C1L5/Output Control Extra 5

*ColorKeyWords: "StpLightCyanTrans"
*OpenUI *StpLightCyanTrans/Light Cyan Transition: PickOne
*OrderDependency: 10 AnySetup *StpLightCyanTrans
*OPOptionHints StpLightCyanTrans: "slider input spinbox"
*StpStpLightCyanTrans: 3 0 1 5 255 0.000 5.000 1.000
*DefaultStpLightCyanTrans: None
*StpDefaultStpLightCyanTrans: None
*StpLightCyanTrans 0/0.000: ""
*StpLightCyanTrans 100/0.100: ""
*StpLightCyanTrans 200/0.200: ""
*StpLightCyanTrans 300/0.300: ""
*StpLightCyanTrans 400/0.400: ""
*StpLightCyanTrans 500/0.500: ""
*StpLightCyanTrans 600/0.600: ""
*StpLightCyanTrans 700/0.700: ""
*StpLightCyanTrans 800/0.800: ""
*StpLightCyanTrans 900/0.900: ""
*StpLightCyanTrans 1000/1.000: ""
*StpLightCyanTrans 1100/1.100: ""
*StpLightCyanTrans 1200/1.200: ""
*StpLightCyanTrans 1300/1.300: ""
*StpLightCyanTrans 1400/1.400: ""
*StpLightCyanTrans 1500/1.500: ""
*StpLightCyanTrans 1600/1.600: ""
*StpLightCyanTrans 1700/1.700: ""
*StpLightCyanTrans 1800/1.800: ""
*StpLightCyanTrans 1900/1.900: ""
*StpLightCyanTrans 2000/2.000: ""
*StpLightCyanTrans 2100/2.100: ""
*StpLightCyanTrans 2200/2.200: ""
*StpLightCyanTrans 2300/2.300: ""
*StpLightCyanTrans 2400/2.400: ""
*StpLightCyanTrans 2500/2.500: ""
*StpLightCyanTrans 2600/2.600: ""
*StpLightCyanTrans 2700/2.700: ""
*StpLightCyanTrans 2800/2.800: ""
*StpLightCyanTrans 2900/2.900: ""
*StpLightCyanTrans 3000/3.000: ""
*StpLightCyanTrans 3100/3.100: ""
*StpLightCyanTrans 3200/3.200: ""
*StpLightCyanTrans 3300/3.300: ""
*StpLightCyanTrans 3400/3.400: ""
*StpLightCyanTrans 3500/3.500: ""
*StpLightCyanTrans 3600/3.600: ""
*StpLightCyanTrans 3700/3.700: ""
*StpLightCyanTrans 3800/3.800: ""
*StpLightCyanTrans 3900/3.900: ""
*StpLightCyanTrans 4000/4.000: ""
*StpLightCyanTrans 4100/4.100: ""
*StpLightCyanTrans 4200/4.200: ""
*StpLightCyanTrans 4300/4.300: ""
*StpLightCyanTrans 4400/4.400: ""
*StpLightCyanTrans 4500/4.500: ""
*StpLightCyanTrans 4600/4.600: ""
*StpLightCyanTrans 4700/4.700: ""
*StpLightCyanTrans 4800/4.800: ""
*StpLightCyanTrans 4900/4.900: ""
*StpLightCyanTrans 5000/5.000: ""
*StpLightCyanTrans None/None: ""
*CloseUI: *StpLightCyanTrans

*CustomStpLightCyanTrans True: "pop"
*ParamCustomStpLightCyanTrans Value/Value: 1 real 0.000 5.000

*ColorKeyWords: "StpFineLightCyanTrans"
*OpenUI *StpFineLightCyanTrans/Light Cyan Transition Fine Adjustment: PickOne
*OPOptionHints StpFineLightCyanTrans: "hide"
*StpStpFineLightCyanTrans: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineLightCyanTrans: None
*StpDefaultStpFineLightCyanTrans: None
*StpFineLightCyanTrans None/0.000: ""
*StpFineLightCyanTrans 0/0.000: ""
*StpFineLightCyanTrans 5/0.005: ""
*StpFineLightCyanTrans 10/0.010: ""
*StpFineLightCyanTrans 15/0.015: ""
*StpFineLightCyanTrans 20/0.020: ""
*StpFineLightCyanTrans 25/0.025: ""
*StpFineLightCyanTrans 30/0.030: ""
*StpFineLightCyanTrans 35/0.035: ""
*StpFineLightCyanTrans 40/0.040: ""
*StpFineLightCyanTrans 45/0.045: ""
*StpFineLightCyanTrans 50/0.050: ""
*StpFineLightCyanTrans 55/0.055: ""
*StpFineLightCyanTrans 60/0.060: ""
*StpFineLightCyanTrans 65/0.065: ""
*StpFineLightCyanTrans 70/0.070: ""
*StpFineLightCyanTrans 75/0.075: ""
*StpFineLightCyanTrans 80/0.080: ""
*StpFineLightCyanTrans 85/0.085: ""
*StpFineLightCyanTrans 90/0.090: ""
*StpFineLightCyanTrans 95/0.095: ""
*CloseUI: *StpFineLightCyanTrans

*ColorKeyWords: "StpLightMagentaTrans"
*OpenUI *StpLightMagentaTrans/Light Magenta Transition: PickOne
*OrderDependency: 10 AnySetup *StpLightMagentaTrans
*OPOptionHints StpLightMagentaTrans: "slider input spinbox"
*StpStpLightMagentaTrans: 3 0 1 5 255 0.000 5.000 1.000
*DefaultStpLightMagentaTrans: None
*StpDefaultStpLightMagentaTrans: None
*StpLightMagentaTrans 0/0.000: ""
*StpLightMagentaTrans 100/0.100: ""
*StpLightMagentaTrans 200/0.200: ""
*StpLightMagentaTrans 300/0.300: ""
*StpLightMagentaTrans 400/0.400: ""
*StpLightMagentaTrans 500/0.500: ""
*StpLightMagentaTrans 600/0.600: ""
*StpLightMagentaTrans 700/0.700: ""
*StpLightMagentaTrans 800/0.800: ""
*StpLightMagentaTrans 900/0.900: ""
*StpLightMagentaTrans 1000/1.000: ""
*StpLightMagentaTrans 1100/1.100: ""
*StpLightMagentaTrans 1200/1.200: ""
*StpLightMagentaTrans 1300/1.300: ""
*StpLightMagentaTrans 1400/1.400: ""
*StpLightMagentaTrans 1500/1.500: ""
*StpLightMagentaTrans 1600/1.600: ""
*StpLightMagentaTrans 1700/1.700: ""
*StpLightMagentaTrans 1800/1.800: ""
*StpLightMagentaTrans 1900/1.900: ""
*StpLightMagentaTrans 2000/2.000: ""
*StpLightMagentaTrans 2100/2.100: ""
*StpLightMagentaTrans 2200/2.200: ""
*StpLightMagentaTrans 2300/2.300: ""
*StpLightMagentaTrans 2400/2.400: ""
*StpLightMagentaTrans 2500/2.500: ""
*StpLightMagentaTrans 2600/2.600: ""
*StpLightMagentaTrans 2700/2.700: ""
*StpLightMagentaTrans 2800/2.800: ""
*StpLightMagentaTrans 2900/2.900: ""
*StpLightMagentaTrans 3000/3.000: ""
*StpLightMagentaTrans 3100/3.100: ""
*StpLightMagentaTrans 3200/3.200: ""
*StpLightMagentaTrans 3300/3.300: ""
*StpLightMagentaTrans 3400/3.400: ""
*StpLightMagentaTrans 3500/3.500: ""
*StpLightMagentaTrans 3600/3.600: ""
*StpLightMagentaTrans 3700/3.700: ""
*StpLightMagentaTrans 3800/3.800: ""
*StpLightMagentaTrans 3900/3.900: ""
*StpLightMagentaTrans 4000/4.000: ""
*StpLightMagentaTrans 4100/4.100: ""
*StpLightMagentaTrans 4200/4.200: ""
*StpLightMagentaTrans 4300/4.300: ""
*StpLightMagentaTrans 4400/4.400: ""
*StpLightMagentaTrans 4500/4.500: ""
*StpLightMagentaTrans 4600/4.600: ""
*StpLightMagentaTrans 4700/4.700: ""
*StpLightMagentaTrans 4800/4.800: ""
*StpLightMagentaTrans 4900/4.900: ""
*StpLightMagentaTrans 5000/5.000: ""
*StpLightMagentaTrans None/None: ""
*CloseUI: *StpLightMagentaTrans

*CustomStpLightMagentaTrans True: "pop"
*ParamCustomStpLightMagentaTrans Value/Value: 1 real 0.000 5.000

*ColorKeyWords: "StpFineLightMagentaTrans"
*OpenUI *StpFineLightMagentaTrans/Light Magenta Transition Fine Adjustment: PickOne
*OPOptionHints StpFineLightMagentaTrans: "hide"
*StpStpFineLightMagentaTrans: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineLightMagentaTrans: None
*StpDefaultStpFineLightMagentaTrans: None
*StpFineLightMagentaTrans None/0.000: ""
*StpFineLightMagentaTrans 0/0.000: ""
*StpFineLightMagentaTrans 5/0.005: ""
*StpFineLightMagentaTrans 10/0.010: ""
*StpFineLightMagentaTrans 15/0.015: ""
*StpFineLightMagentaTrans 20/0.020: ""
*StpFineLightMagentaTrans 25/0.025: ""
*StpFineLightMagentaTrans 30/0.030: ""
*StpFineLightMagentaTrans 35/0.035: ""
*StpFineLightMagentaTrans 40/0.040: ""
*StpFineLightMagentaTrans 45/0.045: ""
*StpFineLightMagentaTrans 50/0.050: ""
*StpFineLightMagentaTrans 55/0.055: ""
*StpFineLightMagentaTrans 60/0.060: ""
*StpFineLightMagentaTrans 65/0.065: ""
*StpFineLightMagentaTrans 70/0.070: ""
*StpFineLightMagentaTrans 75/0.075: ""
*StpFineLightMagentaTrans 80/0.080: ""
*StpFineLightMagentaTrans 85/0.085: ""
*StpFineLightMagentaTrans 90/0.090: ""
*StpFineLightMagentaTrans 95/0.095: ""
*CloseUI: *StpFineLightMagentaTrans

*ColorKeyWords: "StpLightYellowTrans"
*OpenUI *StpLightYellowTrans/Light Yellow Transition: PickOne
*OrderDependency: 10 AnySetup *StpLightYellowTrans
*OPOptionHints StpLightYellowTrans: "slider input spinbox"
*StpStpLightYellowTrans: 3 0 1 5 255 0.000 5.000 1.000
*DefaultStpLightYellowTrans: None
*StpDefaultStpLightYellowTrans: None
*StpLightYellowTrans 0/0.000: ""
*StpLightYellowTrans 100/0.100: ""
*StpLightYellowTrans 200/0.200: ""
*StpLightYellowTrans 300/0.300: ""
*StpLightYellowTrans 400/0.400: ""
*StpLightYellowTrans 500/0.500: ""
*StpLightYellowTrans 600/0.600: ""
*StpLightYellowTrans 700/0.700: ""
*StpLightYellowTrans 800/0.800: ""
*StpLightYellowTrans 900/0.900: ""
*StpLightYellowTrans 1000/1.000: ""
*StpLightYellowTrans 1100/1.100: ""
*StpLightYellowTrans 1200/1.200: ""
*StpLightYellowTrans 1300/1.300: ""
*StpLightYellowTrans 1400/1.400: ""
*StpLightYellowTrans 1500/1.500: ""
*StpLightYellowTrans 1600/1.600: ""
*StpLightYellowTrans 1700/1.700: ""
*StpLightYellowTrans 1800/1.800: ""
*StpLightYellowTrans 1900/1.900: ""
*StpLightYellowTrans 2000/2.000: ""
*StpLightYellowTrans 2100/2.100: ""
*StpLightYellowTrans 2200/2.200: ""
*StpLightYellowTrans 2300/2.300: ""
*StpLightYellowTrans 2400/2.400: ""
*StpLightYellowTrans 2500/2.500: ""
*StpLightYellowTrans 2600/2.600: ""
*StpLightYellowTrans 2700/2.700: ""
*StpLightYellowTrans 2800/2.800: ""
*StpLightYellowTrans 2900/2.900: ""
*StpLightYellowTrans 3000/3.000: ""
*StpLightYellowTrans 3100/3.100: ""
*StpLightYellowTrans 3200/3.200: ""
*StpLightYellowTrans 3300/3.300: ""
*StpLightYellowTrans 3400/3.400: ""
*StpLightYellowTrans 3500/3.500: ""
*StpLightYellowTrans 3600/3.600: ""
*StpLightYellowTrans 3700/3.700: ""
*StpLightYellowTrans 3800/3.800: ""
*StpLightYellowTrans 3900/3.900: ""
*StpLightYellowTrans 4000/4.000: ""
*StpLightYellowTrans 4100/4.100: ""
*StpLightYellowTrans 4200/4.200: ""
*StpLightYellowTrans 4300/4.300: ""
*StpLightYellowTrans 4400/4.400: ""
*StpLightYellowTrans 4500/4.500: ""
*StpLightYellowTrans 4600/4.600: ""
*StpLightYellowTrans 4700/4.700: ""
*StpLightYellowTrans 4800/4.800: ""
*StpLightYellowTrans 4900/4.900: ""
*StpLightYellowTrans 5000/5.000: ""
*StpLightYellowTrans None/None: ""
*CloseUI: *StpLightYellowTrans

*CustomStpLightYellowTrans True: "pop"
*ParamCustomStpLightYellowTrans Value/Value: 1 real 0.000 5.000

*ColorKeyWords: "StpFineLightYellowTrans"
*OpenUI *StpFineLightYellowTrans/Light Yellow Transition Fine Adjustment: PickOne
*OPOptionHints StpFineLightYellowTrans: "hide"
*StpStpFineLightYellowTrans: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineLightYellowTrans: None
*StpDefaultStpFineLightYellowTrans: None
*StpFineLightYellowTrans None/0.000: ""
*StpFineLightYellowTrans 0/0.000: ""
*StpFineLightYellowTrans 5/0.005: ""
*StpFineLightYellowTrans 10/0.010: ""
*StpFineLightYellowTrans 15/0.015: ""
*StpFineLightYellowTrans 20/0.020: ""
*StpFineLightYellowTrans 25/0.025: ""
*StpFineLightYellowTrans 30/0.030: ""
*StpFineLightYellowTrans 35/0.035: ""
*StpFineLightYellowTrans 40/0.040: ""
*StpFineLightYellowTrans 45/0.045: ""
*StpFineLightYellowTrans 50/0.050: ""
*StpFineLightYellowTrans 55/0.055: ""
*StpFineLightYellowTrans 60/0.060: ""
*StpFineLightYellowTrans 65/0.065: ""
*StpFineLightYellowTrans 70/0.070: ""
*StpFineLightYellowTrans 75/0.075: ""
*StpFineLightYellowTrans 80/0.080: ""
*StpFineLightYellowTrans 85/0.085: ""
*StpFineLightYellowTrans 90/0.090: ""
*StpFineLightYellowTrans 95/0.095: ""
*CloseUI: *StpFineLightYellowTrans

*ColorKeyWords: "StpInkLimit"
*OpenUI *StpInkLimit/Ink Limit: PickOne
*OrderDependency: 10 AnySetup *StpInkLimit
*OPOptionHints StpInkLimit: "slider input spinbox"
*StpStpInkLimit: 3 0 1 5 255 0.000 3.000 3.000
*DefaultStpInkLimit: None
*StpDefaultStpInkLimit: None
*StpInkLimit 0/0.000: ""
*StpInkLimit 100/0.100: ""
*StpInkLimit 200/0.200: ""
*StpInkLimit 300/0.300: ""
*StpInkLimit 400/0.400: ""
*StpInkLimit 500/0.500: ""
*StpInkLimit 600/0.600: ""
*StpInkLimit 700/0.700: ""
*StpInkLimit 800/0.800: ""
*StpInkLimit 900/0.900: ""
*StpInkLimit 1000/1.000: ""
*StpInkLimit 1100/1.100: ""
*StpInkLimit 1200/1.200: ""
*StpInkLimit 1300/1.300: ""
*StpInkLimit 1400/1.400: ""
*StpInkLimit 1500/1.500: ""
*StpInkLimit 1600/1.600: ""
*StpInkLimit 1700/1.700: ""
*StpInkLimit 1800/1.800: ""
*StpInkLimit 1900/1.900: ""
*StpInkLimit 2000/2.000: ""
*StpInkLimit 2100/2.100: ""
*StpInkLimit 2200/2.200: ""
*StpInkLimit 2300/2.300: ""
*StpInkLimit 2400/2.400: ""
*StpInkLimit 2500/2.500: ""
*StpInkLimit 2600/2.600: ""
*StpInkLimit 2700/2.700: ""
*StpInkLimit 2800/2.800: ""
*StpInkLimit 2900/2.900: ""
*StpInkLimit 3000/3.000: ""
*StpInkLimit None/None: ""
*CloseUI: *StpInkLimit

*CustomStpInkLimit True: "pop"
*ParamCustomStpInkLimit Value/Value: 1 real 0.000 3.000

*ColorKeyWords: "StpFineInkLimit"
*OpenUI *StpFineInkLimit/Ink Limit Fine Adjustment: PickOne
*OPOptionHints StpFineInkLimit: "hide"
*StpStpFineInkLimit: 9 0 0 0 -1 0.000 0.000 0.000
*DefaultStpFineInkLimit: None
*StpDefaultStpFineInkLimit: None
*StpFineInkLimit None/0.000: ""
*StpFineInkLimit 0/0.000: ""
*StpFineInkLimit 5/0.005: ""
*StpFineInkLimit 10/0.010: ""
*StpFineInkLimit 15/0.015: ""
*StpFineInkLimit 20/0.020: ""
*StpFineInkLimit 25/0.025: ""
*StpFineInkLimit 30/0.030: ""
*StpFineInkLimit 35/0.035: ""
*StpFineInkLimit 40/0.040: ""
*StpFineInkLimit 45/0.045: ""
*StpFineInkLimit 50/0.050: ""
*StpFineInkLimit 55/0.055: ""
*StpFineInkLimit 60/0.060: ""
*StpFineInkLimit 65/0.065: ""
*StpFineInkLimit 70/0.070: ""
*StpFineInkLimit 75/0.075: ""
*StpFineInkLimit 80/0.080: ""
*StpFineInkLimit 85/0.085: ""
*StpFineInkLimit 90/0.090: ""
*StpFineInkLimit 95/0.095: ""
*CloseUI: *StpFineInkLimit

*CloseGroup: C1L5/Output Control Extra 5

*APPrinterPreset Text/Text: "*StpImageType Text"
*APPrinterPreset Graphics/Graphics: "*StpImageType Graphics"
*APPrinterPreset TextGraphics/Mixed Text and Graphics: "*StpImageType TextGraphics"
*APPrinterPreset Photo/Photograph: "*StpImageType Photo"
*APPrinterPreset LineArt/Line Art: "*StpImageType LineArt"


*DefaultFont: Courier
*Font AvantGarde-Book: Standard "(001.006S)" Standard ROM
*Font AvantGarde-BookOblique: Standard "(001.006S)" Standard ROM
*Font AvantGarde-Demi: Standard "(001.007S)" Standard ROM
*Font AvantGarde-DemiOblique: Standard "(001.007S)" Standard ROM
*Font Bookman-Demi: Standard "(001.004S)" Standard ROM
*Font Bookman-DemiItalic: Standard "(001.004S)" Standard ROM
*Font Bookman-Light: Standard "(001.004S)" Standard ROM
*Font Bookman-LightItalic: Standard "(001.004S)" Standard ROM
*Font Courier: Standard "(002.004S)" Standard ROM
*Font Courier-Bold: Standard "(002.004S)" Standard ROM
*Font Courier-BoldOblique: Standard "(002.004S)" Standard ROM
*Font Courier-Oblique: Standard "(002.004S)" Standard ROM
*Font Helvetica: Standard "(001.006S)" Standard ROM
*Font Helvetica-Bold: Standard "(001.007S)" Standard ROM
*Font Helvetica-BoldOblique: Standard "(001.007S)" Standard ROM
*Font Helvetica-Narrow: Standard "(001.006S)" Standard ROM
*Font Helvetica-Narrow-Bold: Standard "(001.007S)" Standard ROM
*Font Helvetica-Narrow-BoldOblique: Standard "(001.007S)" Standard ROM
*Font Helvetica-Narrow-Oblique: Standard "(001.006S)" Standard ROM
*Font Helvetica-Oblique: Standard "(001.006S)" Standard ROM
*Font NewCenturySchlbk-Bold: Standard "(001.009S)" Standard ROM
*Font NewCenturySchlbk-BoldItalic: Standard "(001.007S)" Standard ROM
*Font NewCenturySchlbk-Italic: Standard "(001.006S)" Standard ROM
*Font NewCenturySchlbk-Roman: Standard "(001.007S)" Standard ROM
*Font Palatino-Bold: Standard "(001.005S)" Standard ROM
*Font Palatino-BoldItalic: Standard "(001.005S)" Standard ROM
*Font Palatino-Italic: Standard "(001.005S)" Standard ROM
*Font Palatino-Roman: Standard "(001.005S)" Standard ROM
*Font Symbol: Special "(001.007S)" Special ROM
*Font Times-Bold: Standard "(001.007S)" Standard ROM
*Font Times-BoldItalic: Standard "(001.009S)" Standard ROM
*Font Times-Italic: Standard "(001.007S)" Standard ROM
*Font Times-Roman: Standard "(001.007S)" Standard ROM
*Font ZapfChancery-MediumItalic: Standard "(001.007S)" Standard ROM
*Font ZapfDingbats: Special "(001.004S)" Standard ROM

*% End of stp-bjc-PIXMA-iP2600.5.2.ppd