🛈 Aktuell gibt es im Wiki ca. 430 Artikel, die nur für Xenial getestet sind. Dies entspricht ca. 5,5 % aller Wikiartikel. Damit diese im nächsten Frühjahr nicht alle archiviert werden müssen, ist eure Mithilfe gefragt!
- Titel:
- ausgabe sudo cat
- Autor:
- knutselaar
- Datum:
- 16. August 2020 16:38
- Aktionen:
- 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
*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