forked from berndporr/digital_signal_processing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfilter.eps
More file actions
1530 lines (1488 loc) · 63.7 KB
/
filter.eps
File metadata and controls
1530 lines (1488 loc) · 63.7 KB
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
%!PS-Adobe-3.0 EPSF-3.0
%%BoundingBox: 9 174 787 439
%%LanguageLevel: 1
%%Creator: CorelDRAW
%%Title: filter.eps
%%CreationDate: Mon Jun 29 10:17:15 2009
%%DocumentProcessColors: Black
%%DocumentSuppliedResources: (atend)
%%EndComments
%%BeginProlog
/AutoFlatness false def
/AutoSteps 0 def
/CMYKMarks true def
/UseLevel 1 def
%Build: CorelDRAW Version 13.0.0.739
%Color profile: Generic offset separations profile
/CorelIsEPS true def
%%BeginResource: procset wCorel3Dict 3.0 0
/wCorel3Dict 300 dict def wCorel3Dict begin
% Copyright (c)1992-2005 Corel Corporation
% All rights reserved. v13 r0.0
/bd{bind def}bind def/ld{load def}bd/xd{exch def}bd/_ null def/rp{{pop}repeat}
bd/@cp/closepath ld/@gs/gsave ld/@gr/grestore ld/@np/newpath ld/Tl/translate ld
/$sv 0 def/@sv{/$sv save def}bd/@rs{$sv restore}bd/spg/showpage ld/showpage{}
bd currentscreen/@dsp xd/$dsp/@dsp def/$dsa xd/$dsf xd/$sdf false def/$SDF
false def/$Scra 0 def/SetScr/setscreen ld/@ss{2 index 0 eq{$dsf 3 1 roll 4 -1
roll pop}if exch $Scra add exch load SetScr}bd/SepMode_5 where{pop}{/SepMode_5
0 def}ifelse/CorelIsSeps where{pop}{/CorelIsSeps false def}ifelse
/CorelIsInRIPSeps where{pop}{/CorelIsInRIPSeps false def}ifelse/CorelIsEPS
where{pop}{/CorelIsEPS false def}ifelse/CurrentInkName_5 where{pop}
{/CurrentInkName_5(Composite)def}ifelse/$ink_5 where{pop}{/$ink_5 -1 def}
ifelse/fill_color 6 array def/num_fill_inks 1 def/$o 0 def/$fil 0 def
/outl_color 6 array def/num_outl_inks 1 def/$O 0 def/$PF false def/$bkg false
def/$op false def matrix currentmatrix/$ctm xd/$ptm matrix def/$ttm matrix def
/$stm matrix def/$ffpnt true def/CorelDrawReencodeVect[16#0/grave 16#5/breve
16#6/dotaccent 16#8/ring 16#A/hungarumlaut 16#B/ogonek 16#C/caron 16#D/dotlessi
16#27/quotesingle 16#60/grave 16#7C/bar 16#80/Euro
16#82/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl
16#88/circumflex/perthousand/Scaron/guilsinglleft/OE
16#91/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash
16#98/tilde/trademark/scaron/guilsinglright/oe 16#9F/Ydieresis
16#A1/exclamdown/cent/sterling/currency/yen/brokenbar/section
16#a8/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/minus/registered/macron
16#b0/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered
16#b8/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown
16#c0/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla
16#c8/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis
16#d0/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply
16#d8/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls
16#e0/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
16#e8/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
16#f0/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide
16#f8/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]def
/get_ps_level/languagelevel where{pop systemdict/languagelevel get exec}{1
}ifelse def/level2 get_ps_level 2 ge def/level3 get_ps_level 3 ge def
/is_distilling{/product where{pop systemdict/setdistillerparams known product
(Adobe PostScript Parser)ne and}{false}ifelse}bd/is_rip_separation{
is_distilling{false}{level2{currentpagedevice/Separations 2 copy known{get}{
pop pop false}ifelse}{false}ifelse}ifelse}bd/is_current_sep_color{
is_separation{gsave false setoverprint 1 1 1 1 5 -1 roll findcmykcustomcolor 1
setcustomcolor currentgray 0 eq grestore}{pop false}ifelse}bd
/get_sep_color_index{dup length 1 sub 0 1 3 -1 roll{dup 3 -1 roll dup 3 -1 roll
get is_current_sep_color{exit}{exch pop}ifelse}for pop -1}bd/is_separation{
/LumSepsDict where{pop false}{/AldusSepsDict where{pop false}{
is_rip_separation{true}{1 0 0 0 gsave setcmykcolor currentcmykcolor grestore
add add add 0 ne 0 1 0 0 gsave setcmykcolor currentcmykcolor grestore add add
add 0 ne 0 0 1 0 gsave setcmykcolor currentcmykcolor grestore add add add 0 ne
0 0 0 1 gsave setcmykcolor currentcmykcolor grestore add add add 0 ne and and
and not}ifelse}ifelse}ifelse}bind def/is_composite{is_separation not
is_distilling or}bd/is_sim_devicen{level2 level3 not and{is_distilling
is_rip_separation or}{false}ifelse}bd/@PL{/LV where{pop LV 2 ge level2 not and
{@np/Courier findfont 12 scalefont setfont 72 144 m
(The PostScript level set in the Corel application is higher than)show 72 132 m
(the PostScript level of this device. Change the PS Level in the Corel)show 72
120 m(application to Level 1 by selecting the PostScript tab in the print)show
72 108 m(dialog, and selecting Level 1 from the Compatibility drop down list.)
show flush spg quit}if}if}bd/@BeginSysCorelDict{systemdict/Corel30Dict known
{systemdict/Corel30Dict get exec}if systemdict/CorelLexDict known{1 systemdict
/CorelLexDict get exec}if}bd/@EndSysCorelDict{systemdict/Corel30Dict known
{end}if/EndCorelLexDict where{pop EndCorelLexDict}if}bd AutoFlatness{/@ifl{dup
currentflat exch sub 10 gt{
([Error: PathTooComplex; OffendingCommand: AnyPaintingOperator]\n)print flush
@np exit}{currentflat 2 add setflat}ifelse}bd/@fill/fill ld/fill{currentflat{
{@fill}stopped{@ifl}{exit}ifelse}bind loop setflat}bd/@eofill/eofill ld/eofill
{currentflat{{@eofill}stopped{@ifl}{exit}ifelse}bind loop setflat}bd/@clip
/clip ld/clip{currentflat{{@clip}stopped{@ifl}{exit}ifelse}bind loop setflat}
bd/@eoclip/eoclip ld/eoclip{currentflat{{@eoclip}stopped{@ifl}{exit}ifelse}
bind loop setflat}bd/@stroke/stroke ld/stroke{currentflat{{@stroke}stopped
{@ifl}{exit}ifelse}bind loop setflat}bd}if level2{/@ssa{true setstrokeadjust}
bd}{/@ssa{}bd}ifelse/d/setdash ld/j/setlinejoin ld/J/setlinecap ld/M
/setmiterlimit ld/w/setlinewidth ld/O{/$o xd}bd/R{/$O xd}bd/W/eoclip ld/c
/curveto ld/C/c ld/l/lineto ld/L/l ld/rl/rlineto ld/m/moveto ld/n/newpath ld/N
/newpath ld/P{11 rp}bd/u{}bd/U{}bd/A{pop}bd/q/@gs ld/Q/@gr ld/&{}bd/@j{@sv @np}
bd/@J{@rs}bd/g{1 exch sub 0 0 0 1 null 1 set_fill_color/$fil 0 def}bd/G{1 sub
neg 0 0 0 1 null 1 set_outline_color}bd/set_fill_color{/fill_color exch def
/num_fill_inks fill_color length 6 idiv def/bFillDeviceN num_fill_inks 1 gt def
/$fil 0 def}bd/set_outline_color{/outl_color exch def/num_outl_inks outl_color
length 6 idiv def/bOutlDeviceN num_outl_inks 1 gt def}bd
/get_devicen_color_names{dup length 6 idiv dup 5 mul exch getinterval}bd
/create_colorarray_from_devicen_params{/ink_names_temp exch def
/tint_params_temp exch def/ink_values_temp exch def[ink_values_temp aload pop
tint_params_temp aload pop ink_names_temp aload pop]}bd
/get_devicen_color_specs{dup length 6 idiv dup 4 mul getinterval}bd
/get_devicen_color{dup length 6 idiv 0 exch getinterval}bd/mult_devicen_color{
/colorarray exch def/mult_vals exch def 0 1 mult_vals length 1 sub{colorarray
exch dup mult_vals exch get exch dup colorarray exch get 3 -1 roll mul put}for
colorarray}bd/combine_devicen_colors{/colorarray2 exch def/colorarray1 exch def
/num_inks1 colorarray1 length 6 idiv def/num_inks2 colorarray2 length 6 idiv
def/num3 0 def/colorarray3[num_inks1 num_inks2 add 6 mul{0}repeat]def 0 1
num_inks1 1 sub{colorarray1 exch get colorarray3 num3 3 -1 roll put/num3 num3 1
add def}for 0 1 num_inks2 1 sub{colorarray2 exch get colorarray3 num3 3 -1 roll
put/num3 num3 1 add def}for colorarray1 num_inks1 dup 4 mul getinterval
colorarray3 num3 3 -1 roll putinterval/num3 num3 num_inks1 4 mul add def
colorarray2 num_inks2 dup 4 mul getinterval colorarray3 num3 3 -1 roll
putinterval/num3 num3 num_inks2 4 mul add def colorarray1 num_inks1 dup 5 mul
exch getinterval colorarray3 num3 3 -1 roll putinterval/num3 num3 num_inks1 add
def colorarray2 num_inks2 dup 5 mul exch getinterval colorarray3 num3 3 -1 roll
putinterval/num3 num3 num_inks2 add def colorarray3}bd/get_devicen_color_spec{
/colorant_index exch def/colorarray exch def/ncolorants colorarray length 6
idiv def[colorarray colorant_index get colorarray ncolorants colorant_index 4
mul add 4 getinterval aload pop colorarray ncolorants 5 mul colorant_index add
get]}bd/set_devicen_color{level3{/colorarray exch def/numcolorants colorarray
length 6 idiv def colorarray get_devicen_color_specs/tint_params exch def[
/DeviceN colorarray get_devicen_color_names/DeviceCMYK{tint_params
CorelTintTransformFunction}]setcolorspace colorarray get_devicen_color aload
pop setcolor}{/DeviceCMYK setcolorspace devicen_to_cmyk aload pop pop @tc_5
setprocesscolor_5}ifelse}bd/sf{/bmp_fill_fg_color xd}bd/i{dup 0 ne{setflat}
{pop}ifelse}bd/v{4 -2 roll 2 copy 6 -2 roll c}bd/V/v ld/y{2 copy c}bd/Y/y ld
/@w{matrix rotate/$ptm xd matrix scale $ptm dup concatmatrix/$ptm xd 1 eq{$ptm
exch dup concatmatrix/$ptm xd}if 1 w}bd/@g{1 eq dup/$sdf xd{/$scp xd/$sca xd
/$scf xd}if}bd/@G{1 eq dup/$SDF xd{/$SCP xd/$SCA xd/$SCF xd}if}bd/@D{2 index 0
eq{$dsf 3 1 roll 4 -1 roll pop}if 3 copy exch $Scra add exch load SetScr/$dsp
xd/$dsa xd/$dsf xd}bd/$ngx{$SDF{$SCF SepMode_5 0 eq{$SCA}{$dsa}ifelse $SCP @ss
}if}bd/@MN{2 copy le{pop}{exch pop}ifelse}bd/@MX{2 copy ge{pop}{exch pop}
ifelse}bd/InRange{3 -1 roll @MN @MX}bd/@sqr{dup 0 rl dup 0 exch rl neg 0 rl @cp
}bd/currentscale{1 0 dtransform matrix defaultmatrix idtransform dup mul exch
dup mul add sqrt 0 1 dtransform matrix defaultmatrix idtransform dup mul exch
dup mul add sqrt}bd/@unscale{}bd/wDstChck{2 1 roll dup 3 -1 roll eq{1 add}if}
bd/@dot{dup mul exch dup mul add 1 exch sub}bd/@lin{exch pop abs 1 exch sub}bd
/cmyk2rgb{3{dup 5 -1 roll add 1 exch sub dup 0 lt{pop 0}if exch}repeat pop}bd
/rgb2cmyk{3{1 exch sub 3 1 roll}repeat 3 copy @MN @MN 3{dup 5 -1 roll sub neg
exch}repeat}bd/rgb2g{2 index .299 mul 2 index .587 mul add 1 index .114 mul add
4 1 roll pop pop pop}bd/devicen_to_cmyk{/convertcolor exch def convertcolor
get_devicen_color aload pop convertcolor get_devicen_color_specs
CorelTintTransformFunction}bd/WaldoColor_5 where{pop}{/SetRgb/setrgbcolor ld
/GetRgb/currentrgbcolor ld/SetGry/setgray ld/GetGry/currentgray ld/SetRgb2
systemdict/setrgbcolor get def/GetRgb2 systemdict/currentrgbcolor get def
/SetHsb systemdict/sethsbcolor get def/GetHsb systemdict/currenthsbcolor get
def/rgb2hsb{SetRgb2 GetHsb}bd/hsb2rgb{3 -1 roll dup floor sub 3 1 roll SetHsb
GetRgb2}bd/setcmykcolor where{pop/LumSepsDict where{pop/SetCmyk_5{LumSepsDict
/setcmykcolor get exec}def}{/AldusSepsDict where{pop/SetCmyk_5{AldusSepsDict
/setcmykcolor get exec}def}{/SetCmyk_5/setcmykcolor ld}ifelse}ifelse}{
/SetCmyk_5{cmyk2rgb SetRgb}bd}ifelse/currentcmykcolor where{pop/GetCmyk
/currentcmykcolor ld}{/GetCmyk{GetRgb rgb2cmyk}bd}ifelse/setoverprint where
{pop}{/setoverprint{/$op xd}bd}ifelse/currentoverprint where{pop}{
/currentoverprint{$op}bd}ifelse/@tc_5{5 -1 roll dup 1 ge{pop}{4{dup 6 -1 roll
mul exch}repeat pop}ifelse}bd/@trp{exch pop 5 1 roll @tc_5}bd
/setprocesscolor_5{SepMode_5 0 eq{SetCmyk_5}{SepsColor not{4 1 roll pop pop pop
1 exch sub SetGry}{SetCmyk_5}ifelse}ifelse}bd/findcmykcustomcolor where{pop}{
/findcmykcustomcolor{5 array astore}bd}ifelse/Corelsetcustomcolor_exists false
def/setcustomcolor where{pop/Corelsetcustomcolor_exists true def}if CorelIsSeps
true eq CorelIsInRIPSeps false eq and{/Corelsetcustomcolor_exists false def}if
Corelsetcustomcolor_exists false eq{/setcustomcolor{exch aload pop SepMode_5 0
eq{pop @tc_5 setprocesscolor_5}{CurrentInkName_5 eq{4 index}{0}ifelse 6 1 roll
5 rp 1 sub neg SetGry}ifelse}bd}if/@scc_5{dup type/booleantype eq{dup
currentoverprint ne{setoverprint}{pop}ifelse}{1 eq setoverprint}ifelse dup _ eq
{pop setprocesscolor_5 pop}{dup(CorelRegistrationColor)eq{5 rp 1 exch sub
setregcolor}{findcmykcustomcolor exch setcustomcolor}ifelse}ifelse SepMode_5 0
eq{true}{GetGry 1 eq currentoverprint and not}ifelse}bd/colorimage where{pop
/ColorImage{colorimage}def}{/ColorImage{/ncolors xd/$multi xd $multi true eq{
ncolors 3 eq{/daqB xd/daqG xd/daqR xd pop pop exch pop abs{daqR pop daqG pop
daqB pop}repeat}{/daqK xd/daqY xd/daqM xd/daqC xd pop pop exch pop abs{daqC pop
daqM pop daqY pop daqK pop}repeat}ifelse}{/dataaq xd{dataaq ncolors dup 3 eq{
/$dat xd 0 1 $dat length 3 div 1 sub{dup 3 mul $dat 1 index get 255 div $dat 2
index 1 add get 255 div $dat 3 index 2 add get 255 div rgb2g 255 mul cvi exch
pop $dat 3 1 roll put}for $dat 0 $dat length 3 idiv getinterval pop}{4 eq{
/$dat xd 0 1 $dat length 4 div 1 sub{dup 4 mul $dat 1 index get 255 div $dat 2
index 1 add get 255 div $dat 3 index 2 add get 255 div $dat 4 index 3 add get
255 div cmyk2rgb rgb2g 255 mul cvi exch pop $dat 3 1 roll put}for $dat 0 $dat
length ncolors idiv getinterval}if}ifelse}image}ifelse}bd}ifelse/setcmykcolor{
1 5 1 roll null 6 array astore currentoverprint set_current_color/$ffpnt xd}bd
/currentcmykcolor{GetCmyk}bd/sethsbcolor{hsb2rgb setrgbcolor}bd
/currenthsbcolor{currentrgbcolor rgb2hsb}bd/setgray{dup dup setrgbcolor}bd
/currentgray{currentrgbcolor rgb2g}bd/InsideDCS false def/IMAGE/image ld/image
{InsideDCS{IMAGE}{/EPSDict where{pop SepMode_5 0 eq{IMAGE}{dup type/dicttype eq
{dup/ImageType get 1 ne{IMAGE}{dup dup/BitsPerComponent get 8 eq exch
/BitsPerComponent get 1 eq or currentcolorspace 0 get/DeviceGray eq and{
CurrentInkName_5(Black)eq{IMAGE}{dup/DataSource get/TCC xd/Height get abs{TCC
pop}repeat}ifelse}{IMAGE}ifelse}ifelse}{2 index 1 ne{CurrentInkName_5(Black)eq
{IMAGE}{/TCC xd pop pop exch pop abs{TCC pop}repeat}ifelse}{IMAGE}ifelse}
ifelse}ifelse}{IMAGE}ifelse}ifelse}bd}ifelse/WaldoColor_5 true def
/WaldoColor_13 where{pop}{/separate_color{SepMode_5 0 ne{[exch/colorarray_sep
exch def/ink_num -1 def colorarray_sep length 6 idiv 1 gt{colorarray_sep
get_devicen_color_names dup length 1 sub 0 1 3 -1 roll{exch dup 3 -1 roll dup 3
1 roll get CurrentInkName_5 eq{/ink_num exch def}{pop}ifelse}for pop ink_num -1
ne{colorarray_sep ink_num get_devicen_color_spec aload pop pop SepsColor not{
pop pop pop pop 1 0 0 0 5 -1 roll}if null}{0 0 0 0 0 null}ifelse}{
colorarray_sep 5 get $ink_5 4 eq{CurrentInkName_5 eq{colorarray_sep aload pop
pop SepsColor not{pop pop pop pop 0 0 0 1}if null}{0 0 0 0 0 null}ifelse}{
colorarray_sep 0 get colorarray_sep $ink_5 1 add get 3 -1 roll null eq{0 0 0 4
-1 roll SepsColor{4 $ink_5 1 add roll}if null}{pop pop 0 0 0 0 0 null}ifelse
}ifelse}ifelse]}if}bd/separate_cmyk_color{$ink_5 -1 ne{[exch aload pop 3 $ink5
sub index/colorarray_sep exch def/ink_num -1 def colorarray_sep
get_devicen_color_names dup length 1 sub 0 1 3 -1 roll{exch dup 3 -1 roll dup 3
1 roll get CurrentInkName_5 eq{/ink_num exch def}{pop}ifelse}for pop ink_num -1
ne{[colorarray_sep ink_num get_devicen_color_spec aload pop]}{[0 0 0 0 0 null]
}ifelse}if}bd/set_current_color{dup type/booleantype eq{dup currentoverprint ne
{setoverprint}{pop}ifelse}{1 eq setoverprint}ifelse/cur_color exch def
/nNumColors cur_color length 6 idiv def nNumColors 1 eq{cur_color 5 get
(CorelRegistrationColor)eq{cur_color aload pop 5 rp 1 exch sub setregcolor}{
SepMode_5 0 eq{cur_color aload pop dup null eq{pop @tc_5 setprocesscolor_5}{
findcmykcustomcolor exch setcustomcolor}ifelse}{cur_color separate_color aload
pop pop @tc_5 setprocesscolor_5}ifelse}ifelse}{SepMode_5 0 eq{is_distilling
is_rip_separation or{cur_color set_devicen_color}{cur_color devicen_to_cmyk
setprocesscolor_5}ifelse}{cur_color separate_color aload pop pop @tc_5
setprocesscolor_5}ifelse}ifelse SepMode_5 0 eq{true}{GetGry 1 eq
currentoverprint and not}ifelse}bd}ifelse/WaldoColor_13 true def/$fm 0 def
/wfill{1 $fm eq{fill}{eofill}ifelse}bd/@Pf{@sv SepMode_5 0 eq $Psc 0 ne or
$ink_5 3 eq or{0 J 0 j[]0 d fill_color $o set_current_color pop $ctm setmatrix
72 1000 div dup matrix scale dup concat dup Bburx exch Bbury exch itransform
ceiling cvi/Bbury xd ceiling cvi/Bburx xd Bbllx exch Bblly exch itransform
floor cvi/Bblly xd floor cvi/Bbllx xd $Prm aload pop $Psn load exec}{1 SetGry
wfill}ifelse @rs @np}bd/F{matrix currentmatrix $sdf{$scf $sca $scp @ss}if $fil
1 eq{CorelPtrnDoFill}{$fil 2 eq{@ff}{$fil 3 eq{@Pf}{level3{fill_color $o
set_current_color{wfill}{@np}ifelse}{/overprint_flag $o def is_distilling
is_rip_separation or{0 1 num_fill_inks 1 sub{dup 0 gt{/overprint_flag true def
}if fill_color exch get_devicen_color_spec overprint_flag set_current_color{
@gs wfill @gr}{@np exit}ifelse}for}{fill_color overprint_flag set_current_color
{@gs wfill @gr}{@np}ifelse}ifelse}ifelse}ifelse}ifelse}ifelse $sdf{$dsf $dsa
$dsp @ss}if setmatrix}bd/f{@cp F}bd/S{matrix currentmatrix $ctm setmatrix $SDF
{$SCF $SCA $SCP @ss}if level3{outl_color $O set_current_color{matrix
currentmatrix $ptm concat stroke setmatrix}{@np}ifelse}{/overprint_flag $O def
is_distilling is_rip_separation or{0 1 num_outl_inks 1 sub{dup 0 gt{
/overprint_flag true def}if outl_color exch get_devicen_color_spec
overprint_flag set_current_color{matrix currentmatrix $ptm concat @gs stroke
@gr setmatrix}{@np exit}ifelse}for}{outl_color overprint_flag set_current_color
{matrix currentmatrix $ptm concat @gs stroke @gr setmatrix}{@np}ifelse}ifelse
}ifelse $SDF{$dsf $dsa $dsp @ss}if setmatrix}bd/s{@cp S}bd/B{@gs F @gr S}bd/b{
@cp B}bd/_E{5 array astore exch cvlit xd}bd/@cc{currentfile $dat readhexstring
pop}bd/@sm{/$ctm $ctm currentmatrix def}bd/@E{/Bbury xd/Bburx xd/Bblly xd
/Bbllx xd}bd/@c{@cp}bd/@P{/$fil 3 def/$Psn xd/$Psc xd array astore/$Prm xd}bd
/tcc{@cc}def/@B{@gs S @gr F}bd/@b{@cp @B}bd/@sep{CurrentInkName_5(Composite)eq
{/$ink_5 -1 def}{CurrentInkName_5(Cyan)eq{/$ink_5 0 def}{CurrentInkName_5
(Magenta)eq{/$ink_5 1 def}{CurrentInkName_5(Yellow)eq{/$ink_5 2 def}{
CurrentInkName_5(Black)eq{/$ink_5 3 def}{/$ink_5 4 def}ifelse}ifelse}ifelse}
ifelse}ifelse}bd/@whi{@gs -72000 dup m -72000 72000 l 72000 dup l 72000 -72000
l @cp 1 SetGry fill @gr}bd/@neg{[{1 exch sub}/exec cvx currenttransfer/exec
cvx]cvx settransfer @whi}bd/deflevel 0 def/@sax{/deflevel deflevel 1 add def}
bd/@eax{/deflevel deflevel dup 0 gt{1 sub}if def deflevel 0 gt{/eax load}{eax}
ifelse}bd/eax{{exec}forall}bd/@rax{deflevel 0 eq{@rs @sv}if}bd systemdict
/pdfmark known not{/pdfmark/cleartomark ld}if/wclip{1 $fm eq{clip}{eoclip}
ifelse}bd level2{/setregcolor{/neg_flag exch def[/Separation/All/DeviceCMYK{
dup dup dup}]setcolorspace 1.0 neg_flag sub setcolor}bd}{/setregcolor{1 exch
sub dup dup dup setcmykcolor}bd}ifelse/CorelTintTransformFunction{
/colorantSpecArray exch def/nColorants colorantSpecArray length 4 idiv def
/inColor nColorants 1 add 1 roll nColorants array astore def/outColor 4 array
def 0 1 3{/nOutInk exch def 1 0 1 nColorants 1 sub{dup inColor exch get exch 4
mul nOutInk add colorantSpecArray exch get mul 1 exch sub mul}for 1 exch sub
outColor nOutInk 3 -1 roll put}for outColor aload pop}bind def
% Copyright (c)1992-2005 Corel Corporation
% All rights reserved. v13 r0.0
/z{exch findfont exch scalefont setfont}bd/ZB{9 dict dup begin 4 1 roll
/FontType 3 def/FontMatrix xd/FontBBox xd/Encoding 256 array def 0 1 255{
Encoding exch/.notdef put}for/CharStrings 256 dict def CharStrings/.notdef{}
put/Metrics 256 dict def Metrics/.notdef 3 -1 roll put/BuildChar{exch dup
/$char exch/Encoding get 3 index get def dup/Metrics get $char get aload pop
setcachedevice begin Encoding exch get CharStrings exch get end exec}def end
definefont pop}bd/ZBAddChar{findfont begin dup 4 1 roll dup 6 1 roll Encoding 3
1 roll put CharStrings 3 1 roll put Metrics 3 1 roll put end}bd/Z{findfont dup
maxlength 2 add dict exch dup{1 index/FID ne{3 index 3 1 roll put}{pop pop}
ifelse}forall pop dup dup/Encoding get 256 array copy dup/$fe xd/Encoding exch
put dup/Fontname 3 index put 3 -1 roll dup length 0 ne{0 exch{dup type 0 type
eq{exch pop}{$fe exch 2 index exch put 1 add}ifelse}forall pop}if dup 256 dict
dup/$met xd/Metrics exch put dup/FontMatrix get 0 get 1000 mul 1 exch div 3
index length 256 eq{0 1 255{dup $fe exch get dup/.notdef eq{pop pop}{5 index 3
-1 roll get 2 index mul $met 3 1 roll put}ifelse}for}if pop definefont pop pop
}bd/CorelIsValidCharpath{pathbbox 3 -1 roll sub abs 0.5 ge 3 1 roll sub abs 0.5
ge and}bd/@ftx{{currentpoint 3 -1 roll(0)dup 3 -1 roll 0 exch put dup @gs true
charpath $ctm setmatrix CorelIsValidCharpath{@@txt}if @gr @np stringwidth pop 3
-1 roll add exch m}forall}bd/@ft{matrix currentmatrix exch $sdf{$scf $sca $scp
@ss}if $fil 1 eq{/@@txt/@pf ld @ftx}{$fil 2 eq{/@@txt/@ff ld @ftx}{$fil 3 eq
{/@@txt/@Pf ld @ftx}{$fil 4 eq{/@@txt/CorelShfillDoFill ld @ftx}{fill_color $o
set_current_color{show}{pop}ifelse}ifelse}ifelse}ifelse}ifelse $sdf{$dsf $dsa
$dsp @ss}if setmatrix}bd/@st{matrix currentmatrix exch $SDF{$SCF $SCA $SCP @ss}
if outl_color $O set_current_color{{currentpoint 3 -1 roll(0)dup 3 -1 roll 0
exch put dup @gs true charpath $ctm setmatrix $ptm concat stroke @gr @np
stringwidth pop 3 -1 roll add exch m}forall}{pop}ifelse $SDF{$dsf $dsa $dsp
@ss}if setmatrix}bd/@te{@ft}bd/@tr{@st}bd/@ta{dup @gs @ft @gr @st}bd/@t@a{dup
@gs @st @gr @ft}bd/@tm{@sm concat}bd/e{/t{@te}def}bd/r{/t{@tr}def}bd/o{/t{pop}
def}bd/a{/t{@ta}def}bd/@a{/t{@t@a}def}bd/t{@te}def/T{@np $ctm setmatrix/$ttm
matrix def}bd/ddt{t}def/@t{/$stm $stm currentmatrix def 3 1 roll m $ttm concat
ddt $stm setmatrix}bd/@n{/$ttm exch matrix rotate def}bd/@s{}bd/@l{}bd
/_lineorientation 0 def/_bitfont null def/_bitlobyte 0 def/_bitkey null def
/_bithibyte 0 def
% Copyright (c)1992-2005 Corel Corporation
% All rights reserved. v13 r0.0
/@ii{concat 3 index 3 index m 3 index 1 index l 2 copy l 1 index 3 index l 3
index 3 index l clip pop pop pop pop}bd/@i{@sm @gs @ii 6 index 1 ne{/$frg true
def pop pop}{1 eq{bmp_fill_fg_color $O set_current_color/$frg xd}{/$frg false
def}ifelse 1 eq{@gs $ctm setmatrix F @gr}if}ifelse @np/$ury xd/$urx xd/$lly xd
/$llx xd/$bts xd/$hei xd/$wid xd/$dat $wid $bts mul 8 div ceiling cvi string
def $bkg $frg or{$SDF{$SCF $SCA $SCP @ss}if $llx $lly Tl $urx $llx sub $ury
$lly sub scale $bkg{fill_color set_current_color pop}if $wid $hei abs $bts 1 eq
{$bkg}{$bts}ifelse[$wid 0 0 $hei neg 0 $hei 0 gt{$hei}{0}ifelse]/tcc load $bts
1 eq{imagemask}{image}ifelse $SDF{$dsf $dsa $dsp @ss}if}{$hei abs{tcc pop}
repeat}ifelse @gr $ctm setmatrix}bd/@I{@sm @gs @ii @np/$ury xd/$urx xd/$lly xd
/$llx xd/$ncl xd/$bts xd/$hei xd/$wid xd $ngx $llx $lly Tl $urx $llx sub $ury
$lly sub scale $wid $hei abs $bts[$wid 0 0 $hei neg 0 $hei 0 gt{$hei}{0}ifelse
]/$dat $wid $bts mul $ncl mul 8 div ceiling cvi string def $msimage false eq
$ncl 1 eq or{/@cc load false $ncl ColorImage}{$wid $bts mul 8 div ceiling cvi
$ncl 3 eq{dup dup/$dat1 exch string def/$dat2 exch string def/$dat3 exch string
def/@cc1 load/@cc2 load/@cc3 load}{dup dup dup/$dat1 exch string def/$dat2 exch
string def/$dat3 exch string def/$dat4 exch string def/@cc1 load/@cc2 load
/@cc3 load/@cc4 load}ifelse true $ncl ColorImage}ifelse $SDF{$dsf $dsa $dsp
@ss}if @gr $ctm setmatrix}bd/@cc1{currentfile $dat1 readhexstring pop}bd/@cc2{
currentfile $dat2 readhexstring pop}bd/@cc3{currentfile $dat3 readhexstring pop
}bd/@cc4{currentfile $dat4 readhexstring pop}bd/$msimage false def/COMP 0 def
/MaskedImage false def/bImgDeviceN false def/nNumInksDeviceN 0 def
/sNamesDeviceN[]def/tint_params[]def level2{/@I_2{@sm @gs @ii @np/$ury xd/$urx
xd/$lly xd/$llx xd/$ncl xd/$bts xd/$hei xd/$wid xd/$dat $wid $bts mul $ncl mul
8 div ceiling cvi string def $ngx $ncl 1 eq{/DeviceGray}{$ncl 3 eq{/DeviceRGB}
{/DeviceCMYK}ifelse}ifelse setcolorspace $llx $lly Tl $urx $llx sub $ury $lly
sub scale 8 dict begin/ImageType 1 def/Width $wid def/Height $hei abs def
/BitsPerComponent $bts def/Decode $ncl 1 eq{[0 1]}{$ncl 3 eq{[0 1 0 1 0 1]}{[0
1 0 1 0 1 0 1]}ifelse}ifelse def/ImageMatrix[$wid 0 0 $hei neg 0 $hei 0 gt
{$hei}{0}ifelse]def/DataSource currentfile/ASCII85Decode filter COMP 1 eq
{/DCTDecode filter}{COMP 2 eq{/RunLengthDecode filter}{COMP 3 eq{/LZWDecode
filter}if}ifelse}ifelse def currentdict end image $SDF{$dsf $dsa $dsp @ss}if
@gr $ctm setmatrix}bd}{/@I_2{}bd}ifelse level2{/@I_2D{@sm @gs @ii @np/$ury xd
/$urx xd/$lly xd/$llx xd/$ncl xd/$bts xd/$hei xd/$wid xd $ngx/scanline $wid
$bts mul $ncl mul 8 div ceiling cvi string def/readscanline{currentfile
scanline readhexstring pop}bind def level3{[/DeviceN sNamesDeviceN/DeviceCMYK{
tint_params CorelTintTransformFunction}]setcolorspace $llx $lly Tl $urx $llx
sub $ury $lly sub scale 8 dict begin/ImageType 1 def/Width $wid def/Height $hei
abs def/BitsPerComponent $bts def/Decode[nNumInksDeviceN{0 1}repeat]def
/ImageMatrix[$wid 0 0 $hei neg 0 $hei 0 gt{$hei}{0}ifelse]def/DataSource{
readscanline}def currentdict end image}{/scanline_height $lly $ury sub 1 sub
$hei div def/plate_scanline $wid string def/cmyk_scanline $wid 4 mul string def
is_distilling is_rip_separation or{/bSimDeviceN true def}{/bSimDeviceN false
def}ifelse/scanline_img_dict 8 dict begin/ImageType 1 def/Width $wid def
/Height 1 def/BitsPerComponent $bts def/Decode bSimDeviceN{[0 1]}{[0 1 0 1 0 1
0 1]}ifelse def/ImageMatrix[$wid 0 0 1 neg 0 1]def/DataSource bSimDeviceN{
plate_scanline}{cmyk_scanline}ifelse def currentdict end def 0 1 $hei 1 sub{
@gs/nScanIndex exch def readscanline pop/$t_lly $ury $lly scanline_height
nScanIndex mul sub sub ceiling cvi def/$t_ury $t_lly scanline_height sub
ceiling cvi def bSimDeviceN{0 1 $ncl 1 sub{@gs/nInkIndex exch def 0 1
plate_scanline length 1 sub{dup $ncl mul nInkIndex add scanline exch get
plate_scanline 3 1 roll put}for[0 1 $ncl 1 sub{nInkIndex eq{1.0}{0.0}ifelse
}for]/sepTintTransformParams exch def[/Separation sNamesDeviceN nInkIndex get
/DeviceCMYK{sepTintTransformParams aload pop tint_params
CorelTintTransformFunction @tc_5}]setcolorspace $llx $t_lly Tl $urx $llx sub
$t_ury $t_lly sub scale nInkIndex 0 eq currentoverprint not and{false
setoverprint}{true setoverprint}ifelse scanline_img_dict image @gr}for}{0 1
$wid 1 sub{dup $ncl mul scanline exch $ncl getinterval 0 1 $ncl 1 sub{2 copy
get 255 div 3 1 roll pop}for pop tint_params CorelTintTransformFunction 5 -1
roll cmyk_scanline exch 0 1 3{3 1 roll 2 copy 5 -1 roll dup 8 exch sub index
255 mul cvi 3 1 roll exch 4 mul add exch put}for 6 rp}for/DeviceCMYK
setcolorspace $llx $t_lly Tl $urx $llx sub $t_ury $t_lly sub scale
scanline_img_dict image}ifelse @gr}for}ifelse $SDF{$dsf $dsa $dsp @ss}if @gr
$ctm setmatrix}bd}{/@I_2D{}bd}ifelse/@I_3{@sm @gs @ii @np/$ury xd/$urx xd/$lly
xd/$llx xd/$ncl xd/$bts xd/$hei xd/$wid xd/$dat $wid $bts mul $ncl mul 8 div
ceiling cvi string def $ngx bImgDeviceN{[/DeviceN sNamesDeviceN/DeviceCMYK{
tint_params CorelTintTransformFunction}]}{$ncl 1 eq{/DeviceGray}{$ncl 3 eq
{/DeviceRGB}{/DeviceCMYK}ifelse}ifelse}ifelse setcolorspace $llx $lly Tl $urx
$llx sub $ury $lly sub scale/ImageDataDict 8 dict def ImageDataDict begin
/ImageType 1 def/Width $wid def/Height $hei abs def/BitsPerComponent $bts def
/Decode[$ncl{0 1}repeat]def/ImageMatrix[$wid 0 0 $hei neg 0 $hei 0 gt{$hei}{0}
ifelse]def/DataSource currentfile/ASCII85Decode filter COMP 1 eq{/DCTDecode
filter}{COMP 2 eq{/RunLengthDecode filter}{COMP 3 eq{/LZWDecode filter}if}
ifelse}ifelse def end/MaskedImageDict 7 dict def MaskedImageDict begin
/ImageType 3 def/InterleaveType 3 def/MaskDict ImageMaskDict def/DataDict
ImageDataDict def end MaskedImageDict image $SDF{$dsf $dsa $dsp @ss}if @gr $ctm
setmatrix}bd/@SetMask{/$mbts xd/$mhei xd/$mwid xd/ImageMaskDict 8 dict def
ImageMaskDict begin/ImageType 1 def/Width $mwid def/Height $mhei abs def
/BitsPerComponent $mbts def/DataSource maskstream def/ImageMatrix[$mwid 0 0
$mhei neg 0 $mhei 0 gt{$mhei}{0}ifelse]def/Decode[1 0]def end}bd/@daq{dup type
/arraytype eq{{}forall}if}bd/@BMP{/@cc xd UseLevel 3 eq MaskedImage true eq and
{7 -2 roll pop pop @I_3}{12 index 1 gt UseLevel 2 eq UseLevel 3 eq or and{7 -2
roll pop pop bImgDeviceN{@I_2D}{@I_2}ifelse}{11 index 1 eq{12 -1 roll pop @i}{
7 -2 roll pop pop @I}ifelse}ifelse}ifelse}bd/disable_raster_output{/@BMP load
/old_raster_func exch bind def/@BMP{8 rp/$ury xd/$urx xd/$lly xd/$llx xd/$ncl
xd/$bts xd/$hei xd/$wid xd/scanline $wid $bts mul $ncl mul 8 div ceiling cvi
string def 0 1 $hei 1 sub{currentfile scanline readhexstring pop pop pop}for
}def}bd/enable_raster_output{/old_raster_func where{pop/old_raster_func load
/@BMP exch bd}if}bd
end
%%EndResource
%%EndProlog
%%BeginSetup
wCorel3Dict begin
@BeginSysCorelDict
1.00 setflat
/$fst 128 def
%%EndSetup
%%Page: 1 1
%%ViewingOrientation: 0 1 1 0
%LogicalPage: 1
%%BeginPageSetup
@sv
@sm
@sv
%%EndPageSetup
@rax %Note: Object
601.30545 252.30444 784.03918 437.65455 @E
/$fm 0 def
0 J 0 j 22.925585626053735 setmiterlimit
[] 0 d 0 R 0 @G
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
0 1.99984 1.99984 0.00000 @w
601.30545 428.97402 m
601.30545 252.30444 L
775.35865 252.30444 L
S
@j
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
0 @g
0 @G
[] 0 d 0 J 0 j
0 R 0 O
0 2.00013 2.00013 0 @w
606.53367 428.14998 m
601.30545 437.65455 L
596.07723 428.14998 L
606.53367 428.14998 L
f
@J
@j
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
0 @g
0 @G
[] 0 d 0 J 0 j
0 R 0 O
0 2.00013 2.00013 0 @w
774.53461 257.53266 m
784.03918 252.30444 L
774.53461 247.07622 L
774.53461 257.53266 L
f
@J
@rax %Note: Object
35.30551 253.61263 218.03924 438.96274 @E
/$fm 0 def
0 J 0 j 22.925585626053735 setmiterlimit
[] 0 d 0 R 0 @G
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
0 1.99984 1.99984 0.00000 @w
35.30551 430.28220 m
35.30551 253.61263 L
209.35871 253.61263 L
S
@j
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
0 @g
0 @G
[] 0 d 0 J 0 j
0 R 0 O
0 2.00013 2.00013 0 @w
40.53373 429.45817 m
35.30551 438.96274 L
30.07729 429.45817 L
40.53373 429.45817 L
f
@J
@j
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
0 @g
0 @G
[] 0 d 0 J 0 j
0 R 0 O
0 2.00013 2.00013 0 @w
208.53468 258.84085 m
218.03924 253.61263 L
208.53468 248.38441 L
208.53468 258.84085 L
f
@J
@rax %Note: Object
601.30545 176.64746 761.00967 394.89704 @E
/$fm 0 def
0 J 0 j 10.000000828812519 setmiterlimit
[] 0 d 0 R 0 @G
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
[0.50000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] 1 3.99997 3.99997 0.00000 @w
601.30545 252.49635 m
602.93254 289.34646 L
604.53298 321.84652 L
606.15638 349.04665 L
607.75682 370.14690 L
609.38107 384.89698 L
610.98265 393.04687 L
612.60718 394.89704 L
614.20734 390.84690 L
615.82932 381.44693 L
617.43090 367.54696 L
619.05657 350.04728 L
620.65672 329.94709 L
622.27928 308.24731 L
623.88000 285.99732 L
625.50624 264.04724 L
627.10781 243.39742 L
628.72980 224.69754 L
630.32967 208.59761 L
631.95506 195.49757 L
633.58072 185.74753 L
635.18003 179.44753 L
636.80683 176.64746 L
638.40302 177.09761 L
640.03209 180.59754 L
641.63055 186.74759 L
643.25877 195.09761 L
644.85751 205.09767 L
646.48290 216.29764 L
648.08192 228.04781 L
649.70759 239.89776 L
651.30803 251.34775 L
652.93342 261.94791 L
654.53301 271.34816 L
656.15584 279.24803 L
657.75770 285.44825 L
659.38309 289.79830 L
660.98239 292.34835 L
662.60636 293.04822 L
664.20595 292.04844 L
665.83247 289.49839 L
667.45587 285.69855 L
669.05546 280.79858 L
670.67943 275.14857 L
672.28101 268.99852 L
673.90639 262.64863 L
675.50683 256.39880 L
677.13109 250.44888 L
678.72926 245.09877 L
680.35805 240.39893 L
681.95679 236.59880 L
683.58557 233.74885 L
685.18290 231.84907 L
686.80828 230.94907 L
688.40816 230.94907 L
690.03411 231.89896 L
691.63569 233.54901 L
693.25880 235.89921 L
694.85924 238.69928 L
696.48265 241.84913 L
698.10917 245.19912 L
699.70876 248.54910 L
701.33159 251.84920 L
702.93203 254.89928 L
704.55742 257.59928 L
706.15899 259.89931 L
707.78211 261.69931 L
709.38170 262.99956 L
711.00709 263.79950 L
712.60753 264.04951 L
714.23263 263.79950 L
715.83222 263.09962 L
717.45647 262.04967 L
719.05606 260.69981 L
720.68400 259.09994 L
722.28274 257.34983 L
723.91209 255.54983 L
725.50630 253.80000 L
727.13509 252.10006 L
728.73383 250.55008 L
730.36006 249.15005 L
731.98488 248.05020 L
733.58504 247.20009 L
735.20731 246.65017 L
736.80860 246.35027 L
738.43512 246.35027 L
740.03556 246.60028 L
741.65839 247.05014 L
743.25855 247.70041 L
744.88422 248.45017 L
746.48580 249.35017 L
748.10778 250.30035 L
749.70794 251.25052 L
751.33247 252.20041 L
752.93405 253.10041 L
754.55830 253.85046 L
756.15874 254.55061 L
757.78214 255.05065 L
759.38258 255.45061 L
761.00967 255.70063 L
S
@rax %Note: Object
779.60665 227.45735 786.09855 244.41364 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
785.79468 229.50935 m
786.09855 227.64557 L
785.50668 227.52142 784.97461 227.45735 784.50661 227.45735 c
783.73871 227.45735 783.14655 227.57754 782.72277 227.82161 c
782.30268 228.06142 782.00674 228.38145 781.83468 228.77745 c
781.66261 229.16948 781.57474 230.00145 781.57474 231.26542 c
781.57474 238.42545 L
780.02674 238.42545 L
780.02674 240.06557 L
781.57474 240.06557 L
781.57474 243.14967 L
783.67465 244.41364 L
783.67465 240.06557 L
785.79468 240.06557 L
785.79468 238.42545 L
783.67465 238.42545 L
783.67465 231.14948 l
783.67465 230.54542 783.71065 230.16161 783.78265 229.98954 c
783.85861 229.81748 783.97880 229.68142 784.14661 229.57739 c
784.31471 229.47761 784.55480 229.42545 784.86661 229.42545 c
785.10274 229.42545 785.41058 229.45351 785.79468 229.50935 C
@c
F
@rax %Note: Object
209.06164 222.91228 215.55354 239.86857 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
215.24967 224.96428 m
215.55354 223.10050 L
214.96167 222.97635 214.42961 222.91228 213.96161 222.91228 c
213.19370 222.91228 212.60154 223.03247 212.17776 223.27654 c
211.75767 223.51635 211.46173 223.83638 211.28967 224.23238 c
211.11761 224.62441 211.02973 225.45638 211.02973 226.72035 c
211.02973 233.88038 L
209.48173 233.88038 L
209.48173 235.52050 L
211.02973 235.52050 L
211.02973 238.60460 L
213.12964 239.86857 L
213.12964 235.52050 L
215.24967 235.52050 L
215.24967 233.88038 L
213.12964 233.88038 L
213.12964 226.60441 l
213.12964 226.00035 213.16564 225.61654 213.23764 225.44447 c
213.31361 225.27241 213.43380 225.13635 213.60161 225.03231 c
213.76970 224.93254 214.00980 224.88038 214.32161 224.88038 c
214.55773 224.88038 214.86557 224.90844 215.24967 224.96428 C
@c
F
@rax %Note: Object
543.16403 252.49635 601.30545 252.54765 @E
/$fm 0 def
0 J 0 j 22.925585626053735 setmiterlimit
[] 0 d 0 R 0 @G
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
0 3.99997 3.99997 0.00000 @w
601.30545 252.49635 m
543.16403 252.54765 L
S
@rax %Note: Object
597.74570 230.89720 609.94573 248.44110 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
598.74180 239.66107 m
598.74180 241.69323 598.94957 243.32910 599.36967 244.56529 c
599.78580 245.80517 600.40970 246.76129 601.23373 247.43310 c
602.05776 248.10520 603.09383 248.44110 604.34164 248.44110 c
605.26573 248.44110 606.07361 248.25317 606.76980 247.88126 c
607.46570 247.51332 608.03773 246.97729 608.49383 246.27713 c
608.94567 245.57726 609.30170 244.72517 609.55767 243.72113 c
609.81789 242.71710 609.94573 241.36526 609.94573 239.66107 c
609.94573 237.64507 609.73767 236.02110 609.32580 234.78123 c
608.90967 233.54107 608.28973 232.58523 607.46570 231.90917 c
606.64167 231.23310 605.60164 230.89720 604.34164 230.89720 c
602.68564 230.89720 601.38567 231.48907 600.44173 232.67707 c
599.30957 234.10517 598.74180 236.43723 598.74180 239.66107 c
@c
600.90973 239.66107 m
600.90973 236.84117 601.24167 234.96520 601.90186 234.02920 c
602.56176 233.09717 603.37361 232.62917 604.34164 232.62917 c
605.31364 232.62917 606.12576 233.10113 606.78567 234.03713 c
607.44586 234.97313 607.77780 236.84910 607.77780 239.66107 c
607.77780 242.48920 607.44586 244.36913 606.78567 245.29720 c
606.12576 246.22923 605.30570 246.69326 604.32180 246.69326 c
603.34980 246.69326 602.57764 246.28110 601.99767 245.46132 c
601.27370 244.41732 600.90973 242.48126 600.90973 239.66107 c
@c
F
@rax %Note: Object
27.20069 226.35213 39.40072 243.89603 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
28.19679 235.11600 m
28.19679 237.14816 28.40457 238.78403 28.82466 240.02022 c
29.24079 241.26009 29.86469 242.21622 30.68872 242.88803 c
31.51276 243.56013 32.54882 243.89603 33.79663 243.89603 c
34.72072 243.89603 35.52860 243.70809 36.22479 243.33619 c
36.92069 242.96825 37.49272 242.43222 37.94882 241.73206 c
38.40066 241.03219 38.75669 240.18009 39.01266 239.17606 c
39.27288 238.17203 39.40072 236.82019 39.40072 235.11600 c
39.40072 233.10000 39.19266 231.47603 38.78079 230.23616 c
38.36466 228.99600 37.74472 228.04016 36.92069 227.36409 c
36.09666 226.68803 35.05663 226.35213 33.79663 226.35213 c
32.14063 226.35213 30.84066 226.94400 29.89672 228.13200 c
28.76457 229.56009 28.19679 231.89216 28.19679 235.11600 c
@c
30.36472 235.11600 m
30.36472 232.29609 30.69666 230.42013 31.35685 229.48413 c
32.01676 228.55209 32.82860 228.08409 33.79663 228.08409 c
34.76863 228.08409 35.58076 228.55606 36.24066 229.49206 c
36.90085 230.42806 37.23279 232.30403 37.23279 235.11600 c
37.23279 237.94413 36.90085 239.82406 36.24066 240.75213 c
35.58076 241.68416 34.76069 242.14819 33.77679 242.14819 c
32.80479 242.14819 32.03263 241.73603 31.45266 240.91625 c
30.72869 239.87225 30.36472 237.93619 30.36472 235.11600 c
@c
F
@rax %Note: Object
304.65978 262.76485 458.91553 376.67679 @E
/$fm 0 def
0 J 0 j 22.925585626053735 setmiterlimit
[] 0 d 0 R 0 @G
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
0 1.99984 1.99984 0.00000 @w
304.65978 376.67679 m
458.91553 376.67679 L
458.91553 262.76485 L
304.65978 262.76485 L
304.65978 376.67679 L
@c
S
@rax %Note: Object
313.87124 295.19887 449.70406 344.24277 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
315.83934 327.06283 m
315.83934 344.24277 L
327.43134 344.24277 L
327.43134 342.21487 L
318.11528 342.21487 L
318.11528 336.89480 L
326.17531 336.89480 L
326.17531 334.86690 L
318.11528 334.86690 L
318.11528 327.06283 L
315.83934 327.06283 L
@c
F
@rax %Note: Object
313.87124 295.19887 449.70406 344.24277 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
330.12312 341.81490 m
330.12312 344.24277 L
332.23521 344.24277 L
332.23521 341.81490 L
330.12312 341.81490 L
@c
330.12312 327.06283 m
330.12312 339.50693 L
332.23521 339.50693 L
332.23521 327.06283 L
330.12312 327.06283 L
@c
F
@rax %Note: Object
313.87124 295.19887 449.70406 344.24277 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
335.39924 327.06283 m
335.39924 344.24277 L
337.50709 344.24277 L
337.50709 327.06283 L
335.39924 327.06283 L
@c
F
@rax %Note: Object
313.87124 295.19887 449.70406 344.24277 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
345.38315 328.95071 m
345.68702 327.08693 L
345.09515 326.96277 344.56309 326.89871 344.09509 326.89871 c
343.32718 326.89871 342.73502 327.01890 342.31124 327.26296 c
341.89115 327.50277 341.59521 327.82280 341.42315 328.21880 c
341.25109 328.61083 341.16321 329.44280 341.16321 330.70677 c
341.16321 337.86680 L
339.61521 337.86680 L
339.61521 339.50693 L
341.16321 339.50693 L
341.16321 342.59102 L
343.26312 343.85499 L
343.26312 339.50693 L
345.38315 339.50693 L
345.38315 337.86680 L
343.26312 337.86680 L
343.26312 330.59083 l
343.26312 329.98677 343.29912 329.60296 343.37112 329.43090 c
343.44709 329.25883 343.56728 329.12277 343.73509 329.01874 c
343.90318 328.91896 344.14328 328.86680 344.45509 328.86680 c
344.69121 328.86680 344.99906 328.89487 345.38315 328.95071 C
@c
F
@rax %Note: Object
313.87124 295.19887 449.70406 344.24277 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
355.96318 331.07074 m
358.14302 330.80287 L
357.79918 329.52671 357.16309 328.53883 356.23502 327.83471 c
355.30299 327.13483 354.11499 326.78277 352.67102 326.78277 c
350.85118 326.78277 349.40693 327.34290 348.34309 328.46287 c
347.27499 329.58283 346.74293 331.15493 346.74293 333.17887 c
346.74293 335.27480 347.28293 336.89877 348.35896 338.05474 c
349.43896 339.21099 350.83502 339.79096 352.55509 339.79096 c
354.21902 339.79096 355.57909 339.22290 356.63102 338.09074 c
357.68721 336.95887 358.21502 335.36296 358.21502 333.31096 c
358.21502 333.18283 358.21106 332.99490 358.20312 332.74687 C
348.92306 332.74687 L
348.99902 331.37887 349.38709 330.33090 350.08299 329.60693 c
350.77918 328.87871 351.64318 328.51474 352.68321 328.51474 c
353.45509 328.51474 354.11499 328.71883 354.66321 329.12674 c
355.21115 329.53096 355.64315 330.17896 355.96318 331.07074 C
@c
349.03899 334.48280 m
355.98699 334.48280 L
355.89515 335.52680 355.62699 336.31483 355.19102 336.83499 c
354.51921 337.64683 353.64699 338.05474 352.57918 338.05474 c
351.61115 338.05474 350.79506 337.73074 350.13515 337.08274 c
349.47496 336.43474 349.11099 335.56677 349.03899 334.48280 C
@c
F
@rax %Note: Object
313.87124 295.19887 449.70406 344.24277 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
360.77102 327.06283 m
360.77102 339.50693 L
362.66712 339.50693 L
362.66712 337.62274 L
363.15099 338.50290 363.59915 339.08683 364.01102 339.36690 c
364.41921 339.64696 364.87106 339.79096 365.36315 339.79096 c
366.07521 339.79096 366.79521 339.56277 367.53109 339.11093 C
366.80315 337.15077 L
366.29121 337.45890 365.77502 337.61083 365.25912 337.61083 c
364.79509 337.61083 364.38321 337.47080 364.01528 337.19499 c
363.64706 336.91493 363.38712 336.53083 363.23121 336.03874 c
362.99509 335.29096 362.87915 334.47090 362.87915 333.57883 c
362.87915 327.06283 L
360.77102 327.06283 L
@c
F
@rax %Note: Object
313.87124 295.19887 449.70406 344.24277 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
315.45524 300.25077 m
315.45524 317.43071 L
317.56337 317.43071 L
317.56337 311.26677 L
318.54728 312.40687 319.79140 312.97890 321.29121 312.97890 c
322.21134 312.97890 323.01128 312.79493 323.69131 312.43096 c
324.37134 312.07068 324.85918 311.56668 325.15115 310.92690 c
325.44340 310.28683 325.59137 309.35480 325.59137 308.13874 c
325.59137 300.25077 L
323.47928 300.25077 L
323.47928 308.13874 l
323.47928 309.19068 323.25137 309.95887 322.79528 310.43877 c
322.33918 310.91868 321.69118 311.16274 320.85524 311.16274 c
320.23134 311.16274 319.64315 310.99890 319.09124 310.67490 c
318.53934 310.35090 318.14731 309.91068 317.91515 309.35480 c
317.67931 308.80290 317.56337 308.03471 317.56337 307.05874 c
317.56337 300.25077 L
315.45524 300.25077 L
@c
F
@rax %Note: Object
313.87124 295.19887 449.70406 344.24277 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
332.83134 295.19887 m
331.66743 296.66665 330.68324 298.38671 329.87934 300.35480 c
329.07543 302.32687 328.67121 304.36271 328.67121 306.47480 c
328.67121 308.33490 328.97140 310.11477 329.57518 311.81868 c
330.27931 313.79471 331.36328 315.76280 332.83134 317.72296 C
334.34334 317.72296 L
333.39940 316.09871 332.77521 314.93877 332.47134 314.24287 c
331.99143 313.16683 331.61924 312.03893 331.34343 310.86680 c
331.00724 309.40668 330.83943 307.93890 330.83943 306.46290 c
330.83943 302.70274 332.00731 298.95080 334.34334 295.19887 C
332.83134 295.19887 L
@c
F
@rax %Note: Object
313.87124 295.19887 449.70406 344.24277 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
341.39934 302.13865 m
341.70321 300.27487 L
341.11134 300.15071 340.57928 300.08665 340.11128 300.08665 c
339.34337 300.08665 338.75121 300.20683 338.32743 300.45090 c
337.90734 300.69071 337.61140 301.01074 337.43934 301.40674 c
337.26728 301.79877 337.17940 302.63074 337.17940 303.89471 c
337.17940 311.05474 L
335.63140 311.05474 L
335.63140 312.69487 L
337.17940 312.69487 L
337.17940 315.77896 L
339.27931 317.04293 L
339.27931 312.69487 L
341.39934 312.69487 L
341.39934 311.05474 L
339.27931 311.05474 L
339.27931 303.77877 l
339.27931 303.17471 339.31531 302.79090 339.38731 302.61883 c
339.46328 302.44677 339.58346 302.31071 339.75128 302.20668 c
339.91937 302.10690 340.15946 302.05474 340.47128 302.05474 c
340.70740 302.05474 341.01524 302.08280 341.39934 302.13865 C
@c
F
@rax %Note: Object
313.87124 295.19887 449.70406 344.24277 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
344.84315 295.19887 m
343.33115 295.19887 L
345.66718 298.95080 346.83534 302.70274 346.83534 306.46290 c
346.83534 307.93068 346.66724 309.38683 346.33134 310.83477 c
346.06715 312.00293 345.69524 313.13083 345.21931 314.20687 c
344.91515 314.91071 344.28728 316.08283 343.33115 317.72296 C
344.84315 317.72296 L
346.31121 315.76280 347.39915 313.79471 348.10328 311.81868 c
348.70337 310.11477 349.00328 308.33490 349.00328 306.47480 c
349.00328 304.36271 348.59934 302.32687 347.79118 300.35480 c
346.98331 298.38671 345.99940 296.66665 344.84315 295.19887 C
@c
F
@rax %Note: Object
313.87124 295.19887 449.70406 344.24277 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
357.85106 307.76287 m
357.85106 309.73068 L
369.23131 314.53483 L
369.23131 312.43890 L
360.20721 308.73487 L
369.23131 304.99880 L
369.23131 302.89890 L
357.85106 307.76287 L
@c
F
@rax %Note: Object
313.87124 295.19887 449.70406 344.24277 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
383.23531 310.35090 m
371.89134 310.35090 L
371.89134 312.32296 L
383.23531 312.32296 L
383.23531 310.35090 L
@c
383.23531 305.13883 m
371.89134 305.13883 L
371.89134 307.10693 L
383.23531 307.10693 L
383.23531 305.13883 L
@c
F
@rax %Note: Object