-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathwindow_functions.eps
More file actions
5878 lines (5654 loc) · 221 KB
/
window_functions.eps
File metadata and controls
5878 lines (5654 loc) · 221 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: 27 100 359 489
%%LanguageLevel: 1
%%Creator: CorelDRAW
%%Title: window_functions.eps
%%CreationDate: Fri Jul 03 23:27:25 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
281.72494 324.07030 340.69351 337.03880 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
282.84491 327.01720 m
282.84491 337.03880 L
284.17266 337.03880 L
284.17266 332.92290 L
289.38076 332.92290 L
289.38076 337.03880 L
290.70822 337.03880 L
290.70822 327.01720 L
289.38076 327.01720 L
289.38076 331.74000 L
284.17266 331.74000 L
284.17266 327.01720 L
282.84491 327.01720 L
@c
F
@rax %Note: Object
281.72494 324.07030 340.69351 337.03880 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
297.49606 327.91323 m
297.03855 327.52573 296.60003 327.25276 296.17994 327.09175 c
295.75757 326.93329 295.30488 326.85392 294.82186 326.85392 c
294.02391 326.85392 293.41247 327.04753 292.98331 327.43729 c
292.55641 327.82677 292.34154 328.32624 292.34154 328.93058 c
292.34154 329.28746 292.42091 329.61175 292.58419 329.90598 c
292.74520 330.19994 292.95751 330.43550 293.21887 330.61294 c
293.48249 330.79011 293.77672 330.92561 294.10554 331.01660 c
294.34592 331.07953 294.70989 331.14246 295.19773 331.20085 c
296.19156 331.31991 296.92431 331.45994 297.39317 331.62548 C
297.39798 331.79357 297.40025 331.90101 297.40025 331.94523 c
297.40025 332.44696 297.28375 332.80157 297.05017 333.00454 c
296.73751 333.28460 296.26866 333.42208 295.65043 333.42208 c
295.07159 333.42208 294.64469 333.32202 294.36690 333.11877 c
294.09165 332.91581 293.88869 332.55666 293.75575 332.04076 C
292.55386 332.20658 L
292.66356 332.71994 292.84328 333.13748 293.09301 333.45241 c
293.34274 333.76989 293.70671 334.01480 294.18038 334.18517 c
294.65405 334.35553 295.20227 334.44198 295.82759 334.44198 c
296.44838 334.44198 296.94983 334.36715 297.33732 334.22258 c
297.72454 334.07546 298.00942 333.89348 298.19367 333.67181 c
298.37565 333.45014 298.50151 333.17263 298.57635 332.83417 c
298.61603 332.62413 298.63701 332.24627 298.63701 331.70031 c
298.63701 330.05991 l
298.63701 328.91414 298.66252 328.19074 298.71638 327.88998 c
298.76769 327.58639 298.87257 327.29499 299.02649 327.01720 C
297.74098 327.01720 L
297.61483 327.27146 297.53093 327.57024 297.49606 327.91323 C
@c
297.39317 330.66198 m
296.94529 330.47745 296.27575 330.32353 295.38425 330.19512 c
294.87798 330.12283 294.51855 330.04120 294.31106 329.95020 c
294.10101 329.85921 293.93773 329.72627 293.82548 329.54882 c
293.71124 329.37392 293.65285 329.18031 293.65285 328.96545 c
293.65285 328.63663 293.77899 328.36365 294.02617 328.14425 c
294.27364 327.92712 294.63761 327.81742 295.11581 327.81742 c
295.58948 327.81742 296.01184 327.92031 296.38063 328.12781 c
296.74942 328.33559 297.02239 328.62019 297.19502 328.97962 c
297.32797 329.25713 297.39317 329.66787 297.39317 330.20929 c
297.39317 330.66198 L
@c
F
@rax %Note: Object
281.72494 324.07030 340.69351 337.03880 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
300.54586 327.01720 m
300.54586 334.27616 L
301.64485 334.27616 L
301.64485 333.25880 L
301.87332 333.61342 302.17663 333.90057 302.55477 334.11515 c
302.93263 334.33228 303.36435 334.44198 303.84737 334.44198 c
304.38397 334.44198 304.82504 334.33002 305.16803 334.10580 c
305.51357 333.88186 305.75622 333.57146 305.89625 333.17008 C
306.47254 334.01735 307.21918 334.44198 308.13846 334.44198 c
308.85959 334.44198 309.41235 334.24129 309.79984 333.84217 c
310.18706 333.44334 310.38066 332.82964 310.38066 332.00107 c
310.38066 327.01720 L
309.15808 327.01720 L
309.15808 331.59061 l
309.15808 332.08299 309.11839 332.43761 309.03902 332.65446 c
308.95739 332.86932 308.81282 333.04422 308.60504 333.17717 c
308.39499 333.30784 308.14781 333.37559 307.86548 333.37559 c
307.35439 333.37559 306.93203 333.20523 306.59386 332.86450 c
306.25767 332.52633 306.08731 331.98265 306.08731 331.23600 c
306.08731 327.01720 L
304.85764 327.01720 L
304.85764 331.73291 l
304.85764 332.28113 304.75757 332.69187 304.55688 332.96485 c
304.35619 333.23783 304.02935 333.37559 303.57213 333.37559 c
303.22687 333.37559 302.90712 333.28460 302.61317 333.10035 c
302.31921 332.91808 302.10435 332.65219 301.97367 332.30211 c
301.84072 331.94976 301.77553 331.44350 301.77553 330.78331 c
301.77553 327.01720 L
300.54586 327.01720 L
@c
F
@rax %Note: Object
281.72494 324.07030 340.69351 337.03880 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
312.20787 327.01720 m
312.20787 334.27616 L
313.30687 334.27616 L
313.30687 333.25880 L
313.53534 333.61342 313.83865 333.90057 314.21679 334.11515 c
314.59465 334.33228 315.02636 334.44198 315.50939 334.44198 c
316.04598 334.44198 316.48706 334.33002 316.83005 334.10580 c
317.17559 333.88186 317.41824 333.57146 317.55827 333.17008 C
318.13455 334.01735 318.88120 334.44198 319.80047 334.44198 c
320.52161 334.44198 321.07436 334.24129 321.46186 333.84217 c
321.84907 333.44334 322.04268 332.82964 322.04268 332.00107 c
322.04268 327.01720 L
320.82009 327.01720 L
320.82009 331.59061 l
320.82009 332.08299 320.78041 332.43761 320.70104 332.65446 c
320.61940 332.86932 320.47483 333.04422 320.26706 333.17717 c
320.05701 333.30784 319.80983 333.37559 319.52750 333.37559 c
319.01641 333.37559 318.59405 333.20523 318.25587 332.86450 c
317.91969 332.52633 317.74932 331.98265 317.74932 331.23600 c
317.74932 327.01720 L
316.51965 327.01720 L
316.51965 331.73291 l
316.51965 332.28113 316.41959 332.69187 316.21890 332.96485 c
316.01820 333.23783 315.69137 333.37559 315.23414 333.37559 c
314.88888 333.37559 314.56913 333.28460 314.27518 333.10035 c
313.98123 332.91808 313.76636 332.65219 313.63569 332.30211 c
313.50274 331.94976 313.43754 331.44350 313.43754 330.78331 c
313.43754 327.01720 L
312.20787 327.01720 L
@c
F
@rax %Note: Object
281.72494 324.07030 340.69351 337.03880 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
323.87443 335.62261 m
323.87443 337.03880 L
325.10636 337.03880 L
325.10636 335.62261 L
323.87443 335.62261 L
@c
323.87443 327.01720 m
323.87443 334.27616 L
325.10636 334.27616 L
325.10636 327.01720 L
323.87443 327.01720 L
@c
F
@rax %Note: Object
281.72494 324.07030 340.69351 337.03880 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
326.98035 327.01720 m
326.98035 334.27616 L
328.08614 334.27616 L
328.08614 333.24491 L
328.62047 334.04287 329.39065 334.44198 330.39638 334.44198 c
330.83490 334.44198 331.23628 334.36261 331.60252 334.20614 c
331.97131 334.04769 332.24428 333.84217 332.42627 333.58564 c
332.61052 333.33109 332.73666 333.02778 332.81121 332.67798 c
332.85572 332.44923 332.87896 332.05011 332.87896 331.48091 c
332.87896 327.01720 L
331.64702 327.01720 L
331.64702 331.43414 l
331.64702 331.93361 331.60025 332.30920 331.50472 332.55893 c
331.40891 332.80611 331.23855 333.00454 330.99591 333.15165 c
330.75099 333.30076 330.46639 333.37559 330.13729 333.37559 c
329.61231 333.37559 329.16189 333.20750 328.77921 332.87613 c
328.39880 332.54249 328.21002 331.91263 328.21002 330.98145 c
328.21002 327.01720 L
326.98035 327.01720 L
@c
F
@rax %Note: Object
281.72494 324.07030 340.69351 337.03880 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
334.54035 326.41512 m
335.73742 326.23795 L
335.78646 325.86917 335.92649 325.60072 336.15269 325.43065 c
336.45855 325.20416 336.87609 325.08992 337.40334 325.08992 c
337.97509 325.08992 338.41389 325.20416 338.72400 325.43065 c
339.03439 325.65912 339.24217 325.97887 339.35187 326.38706 c
339.41707 326.63906 339.44513 327.16431 339.44031 327.96680 C
338.90372 327.33439 338.23417 327.01720 337.43140 327.01720 c
336.43276 327.01720 335.66031 327.37663 335.11436 328.09748 c
334.56841 328.81606 334.29317 329.68176 334.29317 330.68750 c
334.29317 331.38057 334.41902 332.01978 334.66876 332.60542 c
334.92076 333.19134 335.28472 333.64375 335.76066 333.96350 c
336.23688 334.28098 336.79672 334.44198 337.43849 334.44198 c
338.29483 334.44198 339.00180 334.09417 339.55710 333.40110 C
339.55710 334.27616 L
340.69351 334.27616 L
340.69351 328.00195 l
340.69351 326.87263 340.57672 326.06986 340.34797 325.59846 c
340.11723 325.12706 339.75298 324.75373 339.25380 324.48076 c
338.75433 324.20778 338.14063 324.07030 337.41043 324.07030 c
336.54472 324.07030 335.84485 324.26617 335.31279 324.65594 c
334.77846 325.04542 334.52164 325.63106 334.54035 326.41512 C
@c
335.55770 330.77622 m
335.55770 329.82406 335.74677 329.12901 336.12718 328.69247 c
336.50504 328.25395 336.97871 328.03682 337.54819 328.03682 c
338.11285 328.03682 338.58652 328.25395 338.96920 328.68794 c
339.35187 329.12419 339.54321 329.80564 339.54321 330.73654 c
339.54321 331.62548 339.34706 332.29531 338.95276 332.74545 c
338.55846 333.19587 338.08252 333.42208 337.52721 333.42208 c
336.98098 333.42208 336.51666 333.20041 336.13172 332.75480 c
335.74904 332.31146 335.55770 331.65128 335.55770 330.77622 c
@c
F
@rax %Note: Object
135.56551 200.40180 186.78302 213.37030 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
136.68548 203.34869 m
136.68548 213.37030 L
138.01323 213.37030 L
138.01323 209.25439 L
143.22132 209.25439 L
143.22132 213.37030 L
144.54879 213.37030 L
144.54879 203.34869 L
143.22132 203.34869 L
143.22132 208.07150 L
138.01323 208.07150 L
138.01323 203.34869 L
136.68548 203.34869 L
@c
F
@rax %Note: Object
135.56551 200.40180 186.78302 213.37030 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
151.33663 204.24472 m
150.87912 203.85723 150.44060 203.58425 150.02050 203.42324 c
149.59814 203.26479 149.14545 203.18542 148.66243 203.18542 c
147.86447 203.18542 147.25304 203.37902 146.82387 203.76879 c
146.39698 204.15827 146.18211 204.65773 146.18211 205.26208 c
146.18211 205.61896 146.26148 205.94324 146.42476 206.23748 c
146.58576 206.53143 146.79808 206.76699 147.05943 206.94444 c
147.32306 207.12161 147.61729 207.25710 147.94611 207.34809 c
148.18649 207.41102 148.55046 207.47395 149.03830 207.53235 c
150.03213 207.65140 150.76488 207.79143 151.23373 207.95698 C
151.23855 208.12507 151.24082 208.23250 151.24082 208.27672 c
151.24082 208.77846 151.12431 209.13307 150.89074 209.33603 c
150.57808 209.61609 150.10923 209.75357 149.49099 209.75357 c
148.91216 209.75357 148.48526 209.65351 148.20746 209.45027 c
147.93222 209.24731 147.72926 208.88816 147.59631 208.37225 C
146.39443 208.53808 L
146.50413 209.05143 146.68384 209.46898 146.93357 209.78391 c
147.18331 210.10139 147.54728 210.34630 148.02094 210.51666 c
148.49461 210.68702 149.04283 210.77348 149.66816 210.77348 c
150.28894 210.77348 150.79039 210.69865 151.17789 210.55408 c
151.56510 210.40696 151.84998 210.22498 152.03424 210.00331 c
152.21622 209.78164 152.34208 209.50413 152.41691 209.16567 c
152.45660 208.95562 152.47757 208.57776 152.47757 208.03181 c
152.47757 206.39140 l
152.47757 205.24564 152.50309 204.52224 152.55694 204.22148 c
152.60825 203.91789 152.71313 203.62649 152.86706 203.34869 C
151.58154 203.34869 L
151.45540 203.60296 151.37150 203.90173 151.33663 204.24472 C
@c
151.23373 206.99348 m
150.78586 206.80894 150.11631 206.65502 149.22482 206.52661 c
148.71855 206.45433 148.35912 206.37269 148.15162 206.28170 c
147.94157 206.19071 147.77830 206.05776 147.66605 205.88031 c
147.55181 205.70542 147.49342 205.51181 147.49342 205.29694 c
147.49342 204.96813 147.61956 204.69515 147.86674 204.47575 c
148.11420 204.25861 148.47817 204.14891 148.95638 204.14891 c
149.43005 204.14891 149.85241 204.25181 150.22120 204.45931 c
150.58998 204.66709 150.86296 204.95169 151.03559 205.31112 c
151.16854 205.58863 151.23373 205.99937 151.23373 206.54079 c
151.23373 206.99348 L
@c
F
@rax %Note: Object
135.56551 200.40180 186.78302 213.37030 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
154.38643 203.34869 m
154.38643 210.60765 L
155.49222 210.60765 L
155.49222 209.57641 L
156.02655 210.37436 156.79672 210.77348 157.80246 210.77348 c
158.24098 210.77348 158.64236 210.69411 159.00860 210.53764 c
159.37739 210.37918 159.65036 210.17367 159.83235 209.91713 c
160.01660 209.66258 160.14274 209.35928 160.21729 209.00948 c
160.26180 208.78072 160.28504 208.38161 160.28504 207.81241 c
160.28504 203.34869 L
159.05310 203.34869 L
159.05310 207.76564 l
159.05310 208.26510 159.00633 208.64069 158.91080 208.89043 c
158.81499 209.13761 158.64463 209.33603 158.40198 209.48315 c
158.15707 209.63225 157.87247 209.70709 157.54337 209.70709 c
157.01839 209.70709 156.56797 209.53899 156.18529 209.20762 c
155.80488 208.87398 155.61609 208.24413 155.61609 207.31294 c
155.61609 203.34869 L
154.38643 203.34869 L
@c
F
@rax %Note: Object
135.56551 200.40180 186.78302 213.37030 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
162.17291 203.34869 m
162.17291 210.60765 L
163.27871 210.60765 L
163.27871 209.57641 L
163.81304 210.37436 164.58321 210.77348 165.58894 210.77348 c
166.02746 210.77348 166.42885 210.69411 166.79509 210.53764 c
167.16387 210.37918 167.43685 210.17367 167.61883 209.91713 c
167.80309 209.66258 167.92923 209.35928 168.00378 209.00948 c
168.04828 208.78072 168.07153 208.38161 168.07153 207.81241 c
168.07153 203.34869 L
166.83959 203.34869 L
166.83959 207.76564 l
166.83959 208.26510 166.79282 208.64069 166.69729 208.89043 c
166.60148 209.13761 166.43112 209.33603 166.18847 209.48315 c
165.94356 209.63225 165.65896 209.70709 165.32986 209.70709 c
164.80488 209.70709 164.35446 209.53899 163.97178 209.20762 c
163.59137 208.87398 163.40258 208.24413 163.40258 207.31294 c
163.40258 203.34869 L
162.17291 203.34869 L
@c
F
@rax %Note: Object
135.56551 200.40180 186.78302 213.37030 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
169.96394 211.95411 m
169.96394 213.37030 L
171.19587 213.37030 L
171.19587 211.95411 L
169.96394 211.95411 L
@c
169.96394 203.34869 m
169.96394 210.60765 L
171.19587 210.60765 L
171.19587 203.34869 L
169.96394 203.34869 L
@c
F
@rax %Note: Object
135.56551 200.40180 186.78302 213.37030 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
173.06986 203.34869 m
173.06986 210.60765 L
174.17565 210.60765 L
174.17565 209.57641 L
174.70998 210.37436 175.48016 210.77348 176.48589 210.77348 c
176.92441 210.77348 177.32580 210.69411 177.69203 210.53764 c
178.06082 210.37918 178.33380 210.17367 178.51578 209.91713 c
178.70003 209.66258 178.82617 209.35928 178.90072 209.00948 c
178.94523 208.78072 178.96847 208.38161 178.96847 207.81241 c
178.96847 203.34869 L
177.73654 203.34869 L
177.73654 207.76564 l
177.73654 208.26510 177.68976 208.64069 177.59424 208.89043 c
177.49843 209.13761 177.32806 209.33603 177.08542 209.48315 c
176.84050 209.63225 176.55591 209.70709 176.22680 209.70709 c
175.70183 209.70709 175.25140 209.53899 174.86872 209.20762 c
174.48831 208.87398 174.29953 208.24413 174.29953 207.31294 c
174.29953 203.34869 L
173.06986 203.34869 L
@c
F
@rax %Note: Object
135.56551 200.40180 186.78302 213.37030 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
180.62986 202.74661 m
181.82693 202.56945 L
181.87597 202.20066 182.01600 201.93222 182.24220 201.76214 c
182.54806 201.53565 182.96561 201.42142 183.49285 201.42142 c
184.06460 201.42142 184.50340 201.53565 184.81351 201.76214 c
185.12391 201.99061 185.33169 202.31036 185.44139 202.71855 c
185.50658 202.97055 185.53465 203.49581 185.52983 204.29830 C
184.99323 203.66589 184.32369 203.34869 183.52091 203.34869 c
182.52227 203.34869 181.74983 203.70813 181.20387 204.42898 c
180.65792 205.14756 180.38268 206.01326 180.38268 207.01899 c
180.38268 207.71206 180.50854 208.35128 180.75827 208.93691 c
181.01027 209.52283 181.37424 209.97524 181.85017 210.29499 c
182.32639 210.61247 182.88624 210.77348 183.52800 210.77348 c
184.38435 210.77348 185.09131 210.42567 185.64661 209.73260 C
185.64661 210.60765 L
186.78302 210.60765 L
186.78302 204.33345 l
186.78302 203.20413 186.66624 202.40135 186.43748 201.92995 c
186.20674 201.45855 185.84249 201.08523 185.34331 200.81225 c
184.84384 200.53928 184.23014 200.40180 183.49994 200.40180 c
182.63424 200.40180 181.93436 200.59767 181.40230 200.98743 c
180.86797 201.37691 180.61115 201.96255 180.62986 202.74661 C
@c
181.64721 207.10772 m
181.64721 206.15556 181.83628 205.46050 182.21669 205.02397 c
182.59455 204.58545 183.06822 204.36831 183.63770 204.36831 c
184.20236 204.36831 184.67603 204.58545 185.05871 205.01943 c
185.44139 205.45569 185.63272 206.13713 185.63272 207.06803 c
185.63272 207.95698 185.43657 208.62680 185.04227 209.07694 c
184.64797 209.52737 184.17203 209.75357 183.61672 209.75357 c
183.07049 209.75357 182.60617 209.53191 182.22123 209.08630 c
181.83855 208.64296 181.64721 207.98277 181.64721 207.10772 c
@c
F
@rax %Note: Object
143.57877 326.85392 187.82872 337.03880 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
144.60321 327.01720 m
144.60321 337.03880 L
148.36450 337.03880 l
149.12986 337.03880 149.74356 336.93619 150.20532 336.73550 c
150.66992 336.53254 151.03134 336.21987 151.29269 335.79751 c
151.55405 335.37742 151.68699 334.93663 151.68699 334.47458 c
151.68699 334.04769 151.57049 333.64375 151.33720 333.26589 c
151.10617 332.88775 150.75383 332.58217 150.28469 332.34888 C
150.89159 332.17143 151.35591 331.86813 151.68246 331.44123 c
152.00901 331.01178 152.17257 330.50551 152.17257 329.92214 c
152.17257 329.45329 152.07222 329.01676 151.87380 328.61310 c
151.67537 328.20945 151.43046 327.89934 151.13877 327.67994 c
150.84709 327.46054 150.48085 327.29726 150.04205 327.18529 c
149.60353 327.07332 149.06438 327.01720 148.42517 327.01720 c
144.60321 327.01720 L
@c
145.93068 332.82709 m
148.09833 332.82709 l
148.68425 332.82709 149.10633 332.86677 149.36315 332.94387 c
149.69906 333.04422 149.95332 333.20976 150.12369 333.44334 c
150.29405 333.67663 150.38050 333.96831 150.38050 334.31811 c
150.38050 334.64948 150.30113 334.94343 150.14239 335.19543 c
149.98139 335.44998 149.75291 335.62261 149.45868 335.71587 c
149.16246 335.80913 148.65392 335.85591 147.93279 335.85591 c
145.93068 335.85591 L
145.93068 332.82709 L
@c
145.93068 328.20009 m
148.42517 328.20009 l
148.85433 328.20009 149.15537 328.21654 149.32800 328.24687 c
149.63386 328.30299 149.88813 328.39398 150.09335 328.52211 c
150.29887 328.64825 150.46668 328.83477 150.59991 329.07742 c
150.73058 329.32261 150.79805 329.60268 150.79805 329.92214 c
150.79805 330.29546 150.70252 330.61975 150.51118 330.89754 c
150.31984 331.17279 150.05367 331.36668 149.71323 331.47865 c
149.37477 331.58835 148.88466 331.64419 148.24772 331.64419 c
145.93068 331.64419 L
145.93068 328.20009 L
@c
F
@rax %Note: Object
143.57877 326.85392 187.82872 337.03880 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
158.57745 327.91323 m
158.11994 327.52573 157.68142 327.25276 157.26132 327.09175 c
156.83896 326.93329 156.38627 326.85392 155.90324 326.85392 c
155.10529 326.85392 154.49386 327.04753 154.06469 327.43729 c
153.63780 327.82677 153.42293 328.32624 153.42293 328.93058 c
153.42293 329.28746 153.50230 329.61175 153.66557 329.90598 c
153.82658 330.19994 154.03890 330.43550 154.30025 330.61294 c
154.56387 330.79011 154.85811 330.92561 155.18693 331.01660 c
155.42731 331.07953 155.79128 331.14246 156.27912 331.20085 c
157.27294 331.31991 158.00570 331.45994 158.47455 331.62548 C
158.47937 331.79357 158.48164 331.90101 158.48164 331.94523 c
158.48164 332.44696 158.36513 332.80157 158.13156 333.00454 c
157.81890 333.28460 157.35005 333.42208 156.73181 333.42208 c
156.15298 333.42208 155.72608 333.32202 155.44828 333.11877 c
155.17304 332.91581 154.97008 332.55666 154.83713 332.04076 C
153.63524 332.20658 L
153.74494 332.71994 153.92466 333.13748 154.17439 333.45241 c
154.42413 333.76989 154.78809 334.01480 155.26176 334.18517 c
155.73543 334.35553 156.28365 334.44198 156.90898 334.44198 c
157.52976 334.44198 158.03121 334.36715 158.41871 334.22258 c
158.80592 334.07546 159.09080 333.89348 159.27506 333.67181 c
159.45704 333.45014 159.58290 333.17263 159.65773 332.83417 c
159.69742 332.62413 159.71839 332.24627 159.71839 331.70031 c
159.71839 330.05991 l
159.71839 328.91414 159.74391 328.19074 159.79776 327.88998 c
159.84907 327.58639 159.95395 327.29499 160.10787 327.01720 C
158.82236 327.01720 L
158.69622 327.27146 158.61231 327.57024 158.57745 327.91323 C
@c
158.47455 330.66198 m
158.02668 330.47745 157.35713 330.32353 156.46564 330.19512 c
155.95937 330.12283 155.59994 330.04120 155.39244 329.95020 c
155.18239 329.85921 155.01912 329.72627 154.90687 329.54882 c
154.79263 329.37392 154.73424 329.18031 154.73424 328.96545 c
154.73424 328.63663 154.86038 328.36365 155.10756 328.14425 c
155.35502 327.92712 155.71899 327.81742 156.19720 327.81742 c
156.67087 327.81742 157.09323 327.92031 157.46202 328.12781 c
157.83080 328.33559 158.10378 328.62019 158.27641 328.97962 c
158.40935 329.25713 158.47455 329.66787 158.47455 330.20929 c
158.47455 330.66198 L
@c
F
@rax %Note: Object
143.57877 326.85392 187.82872 337.03880 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
161.61307 327.01720 m
161.61307 334.27616 L
162.71915 334.27616 L
162.71915 333.17717 L
163.00148 333.69052 163.26283 334.03124 163.50321 334.19452 c
163.74104 334.35780 164.00494 334.44198 164.29181 334.44198 c
164.70709 334.44198 165.12718 334.30876 165.55663 334.04513 C
165.13172 332.90192 L
164.83323 333.08164 164.53219 333.17008 164.23115 333.17008 c
163.96044 333.17008 163.72006 333.08844 163.50548 332.92743 c
163.29090 332.76416 163.13924 332.54022 163.04825 332.25307 c
162.91049 331.81682 162.84274 331.33861 162.84274 330.81817 c
162.84274 327.01720 L
161.61307 327.01720 L
@c
F
@rax %Note: Object
143.57877 326.85392 187.82872 337.03880 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
168.97493 328.11846 m
169.15238 327.03109 L
168.80683 326.95880 168.49672 326.92167 168.22375 326.92167 c
167.77559 326.92167 167.43033 326.99140 167.18287 327.13398 c
166.93795 327.27373 166.76532 327.46054 166.66498 327.69156 c
166.56463 327.92031 166.51332 328.40561 166.51332 329.14290 c
166.51332 333.31946 L
165.61020 333.31946 L
165.61020 334.27616 L
166.51332 334.27616 L
166.51332 336.07531 L
167.73817 336.81260 L
167.73817 334.27616 L
168.97493 334.27616 L
168.97493 333.31946 L
167.73817 333.31946 L
167.73817 329.07515 l
167.73817 328.72280 167.75943 328.49887 167.80139 328.39852 c
167.84561 328.29817 167.91562 328.21880 168.01370 328.15814 c
168.11150 328.09975 168.25153 328.06942 168.43351 328.06942 c
168.57128 328.06942 168.75099 328.08586 168.97493 328.11846 C
@c
F
@rax %Note: Object
143.57877 326.85392 187.82872 337.03880 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
170.15102 327.01720 m
170.15102 337.03880 L
171.38069 337.03880 L
171.38069 327.01720 L
170.15102 327.01720 L
@c
F
@rax %Note: Object