-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsos.eps
2275 lines (2272 loc) · 51.9 KB
/
sos.eps
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-2.0 EPSF-2.0
%%Title: fig1.create
%%Creator: Create
%%CreationDate: Sun Nov 19 11:32:46 1995
%%For: acar
%%DocumentFonts: (atend)
%%Pages: 0 0
%%BoundingBox: 15 230 699 537
%%NXNextStepVersion: 3.0
%%EndComments
%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0
%!
% NeXT Printing Package
% Version: 3.1
% Copyright: 1988, NeXT, Inc.
/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def
/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def
/UserObjects 10 array __NXdef
/defineuserobject{
exch dup 1 add dup UserObjects length gt{
array dup 0 UserObjects putinterval
/UserObjects exch def
}{pop}ifelse UserObjects exch 3 -1 roll put
}__NXbdef
/undefineuserobject{UserObjects exch null put}__NXbdef
/execuserobject{UserObjects exch get exec}__NXbdef
/__NXRectPath{4 2 roll moveto 1 index 0 rlineto
0 exch rlineto neg 0 rlineto closepath}__NXbdef
/__NXProcessRectArgs{
1 index type /arraytype eq{
exch 0 4 2 index length 1 sub{
dup 3 add 1 exch{1 index exch get exch}for
5 1 roll 5 index exec
}for pop pop
}{exec}ifelse
}__NXbdef
/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef
/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef
/rectstroke{
gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{
{gsave __NXRectPath null concat stroke grestore}
dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs
}{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore
}__NXbdef
/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef
/xyshow{
0 1 3 index length 1 sub{
currentpoint 4 index 3 index 1 getinterval show
3 index 3 index 2 mul 1 add get add exch
3 index 3 index 2 mul get add exch moveto pop
}for pop pop
}__NXbdef
/xshow{
0 1 3 index length 1 sub{
currentpoint 4 index 3 index 1 getinterval show
exch 3 index 3 index get add exch moveto pop
}for pop pop
}__NXbdef
/yshow{
0 1 3 index length 1 sub{
currentpoint 4 index 3 index 1 getinterval show
3 index 3 index get add moveto pop
}for pop pop
}__NXbdef
/arct{arcto pop pop pop pop}__NXbdef
/setbbox{pop pop pop pop}__NXbdef
/ucache{}__NXbdef
/ucachestatus{mark 0 0 0 0 0}__NXbdef
/setucacheparams{cleartomark}__NXbdef
/uappend{systemdict begin cvx exec end}__NXbdef
/ueofill{gsave newpath uappend eofill grestore}__NXbdef
/ufill{gsave newpath uappend fill grestore}__NXbdef
/ustroke{
gsave newpath dup length 6 eq
{exch uappend concat}{uappend}ifelse
stroke grestore
}__NXbdef
/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse
/ustrokepath{
newpath dup length 6 eq{
exch uappend __NXustrokepathMatrix currentmatrix exch concat
strokepath setmatrix
}{uappend strokepath}ifelse
} __NXbdef
/upath{
[exch {/ucache cvx}if pathbbox /setbbox cvx
{/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx
} __NXbdef
/setstrokeadjust{pop}__NXbdef
/currentstrokeadjust{false}__NXbdef
/selectfont{exch findfont exch
dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef
/_NXCombineArrays{
counttomark dup 2 add index dup length 3 -1 roll {
2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch
}repeat pop pop pop
}__NXbdef
/flushgraphics{}def
/setwindowtype{pop pop}def
/currentwindowtype{pop 0}def
/setalpha{pop}def
/currentalpha{1.0}def
/hidecursor{}def
/obscurecursor{}def
/revealcursor{}def
/setcursor{4 {pop}repeat}bind def
/showcursor{}def
/NextStepEncoding where not{
/NextStepEncoding StandardEncoding 256 array copy def
0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave
/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis
/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute
/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright
176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior
204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave
/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute
/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth
/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute
/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis]
{dup type /nametype eq
{NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse
}forall pop
/NextStepEncoding NextStepEncoding readonly def
/_NXfstr 128 string dup 0 (_NX) putinterval def
/_NXfindfont /findfont load def
/findfont{
% Because we can never let NextStepEncoding get into
% SharedFontDirectory, we cannot reencode a font to NextStepEncoding
% if we are in shared mode. So if currentshared is true,
% we call the normal findfont and return that
/currentshared where {pop currentshared} {false} ifelse
{_NXfindfont}
{dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll
getinterval cvn exch FontDirectory 2 index known
{pop FontDirectory exch get}
{_NXfindfont dup /Encoding get StandardEncoding eq
{ dup length dict exch
{1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall
dup /Encoding NextStepEncoding put definefont
}{exch pop} ifelse
}ifelse
}ifelse
}bind def
}{pop}ifelse
/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef
/_NXDoImageOp{
3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def
chans 2 add 2 roll parr 0 chans getinterval astore pop
5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse
4 index mul /totbytes exch def pop exch pop
gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore
{0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end
}__NXbdef
/alphaimage{1 add _NXDoImageOp}def
_NXLevel2{
/NXCalibratedRGBColorSpace where{pop}{
/NXCalibratedRGBColorSpace
{mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped
{cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin
/MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def
/WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse
/nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef
/nxsetgray{dup dup nxsetrgbcolor}__NXbdef
/_NXCalibratedImage{exch{array astore dup length true}{false}ifelse
8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if
8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def
currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def}
{2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse
/DataSource exch def /ImageMatrix exch def
/BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef
} {
/setcmykcolor{
1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll
4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef
/currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef
/colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{
pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def
/Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def
1 index 8 eq{/Unpack{.34 Alloc}def}{
/Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def
/Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch
{dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put
2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch
}forall/Lim exch def Str1 exch 0 exch getinterval
}def
}ifelse
/Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def
{0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval}
image end restore}ifelse}ifelse
}__NXbdef
/nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef
/setpattern{pop .5 setgray}__NXbdef
/_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef
} ifelse
/_NXSetCMYKOrRGB where{pop}{
mark{systemdict /currentwindow get exec}stopped
{{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark
}ifelse
%%EndProcSet
% Create(TM) Embedded Graphics
% +.\Jr(<iHsVbEI9FRm3r6RInn!JCLS+[hFmP;E@D:c.Z0N1)M3kQ!"F0b"+MOpFd^'^-2163
% am:W0%0Q(Q*kY:^M/1:)Gs(dYnKC6R/9.:!1fhe+75!Te)-DBF7^PTW")WL3cG,N)qfdTElB
% 6V+SBD2BEEE0Vki*[RlXt"V:Za?+P7K&q]V]YMULH"4YRgfPX)5K/@/^i$76K+;*c:puKb"&
% =8VA'dbIK0-LOLiO7Q9\.Sd9K)gFq5\(F\I:if8AKkXrQUaMsGRESR[nB$p^'ali\9QiGKF"
% AVSq[4G)$L9P(c017-a%'K8$Er'^m5mK]!sc*"iedfCmGGQ&D4dLjBHMT+7c:hS2=g<(a='Y
% -)f:$#nR@C!iuC<-@"?(=C.HD[30/`FHY9c5$3PBAX?-R:P04%<nDg4g1;1;Af/A<+P1uQ5\
% i4#0LBW':]Q2e]E-q0!217mTj=BP#MgfZ!C4eN!"],P%H5^>72fI!Z<hk_S3iirq!#h+,lqZ
% la<:WA"+Udg+SalIG&\AY>nSX,R$jH2#\&T7#(jou,oD6S&24MZ`XX*;fNX=q"sAEr3s*bR!
% >H4JUl@]-^g/C2XO)\/DE,`Z?1(9ehgP=f8'qB;P^s&[<':s%&-6<>M#^^3+lFsR9Mg;-H'&
% C5RqJTi+\V"2'U&q]`":cH>f]3d))-"AL)Y306*(rB\3U??@^*ZPZIcPT"r[6I!Q((kb-Ajl
% 0jHf\*>m$%!YT(K@>@`IKs<ue$?4B^(il._"q<99HZ-W=n>cPoA%]Xt)obo?DF%gS:dY[sS5
% E*#DE&&E[<7^Bn\"OT+\'"]i(F7jFPpR0^EhhOK+'^b>B1-4aP\fp%bi]/$o6_!"3Mq=5XW^
% Df<Fhi2;DS\asY)g/@K"5Rms]+Yi/'YAXGO]%G-W&lkmfqd"VVoH4n#BSQ&L;Q73)!J,fpM5
% c]Kji>SGnN:@7*.`<6`mBXu#)st#_?G!SQgreS-\5eQ)7_*-$S*mlT^.Uu/*8?CT^&hLKYeU
% A\N%hYU/Bj3p&Pl[%_d$TNn\^W=%'mrFo;j^j1W(bbau/(HF36<*4L<@!QRqdr_AbXZdRttB
% 1`&r/&bXXk<8BOZ=`<,=)IP'<2VF?4T]HI]NY=Y[DC69'gh.6h[h!ZB?0ni<o'PeOItK@u[b
% H!&mA>`(CG*2>:`$b!"g9Z%MdDji>e^mgY^U`_?jR3HYssL0M3WX$Uf6*h&El/-KM2k#.p::
% u[^+hj/7p]]*Ue/QZJN\5GXNKSd#8c&V;6'8c$LM^X<rSbEIhmZ!("B:2E!mdm/Z#WO=nOS^
% +l<7I;#'Gh#btSpZX8YbaKW\Uh)c,R=T>R6X5'Sa#M*C&97oDS,k/70*V4<EXa#@%m:^pd5A
% "WVTU)$1:G#ZIE[>J';[email protected]+Udhu_Vb;CL;^tsd1U.KIO-Xi:4o"bFu[/VRR(^R
% m+N#Y=%%ooTF"Kra\poeY;0?/!19\f!ji(3!T>4&(r--R#%K0o6"k\8YuRpong4X]WKr+FAM
% .o^)h/!*:ke0H"VR(?Y:N2$5/=%<C=LHr?"ZD#8V!*@+<YM(5QM4:g\D-89@<h39Q!I0S/*f
% E)9efq6U8F0]OD?n0G@97J`^rsjIAV`ZVc:)O0H3G#>55t!!ObS("1H`1<dR5CMCX"#SMkKS
% ,j(@\4H6u8Wa'26):ZB8h:^MV#pu/)Zd`?!-YnJ#!ju$C@XYE6aRsI#ua4lEbQY(.arlFk*^
% l@W1acf-rs_SRl97QDu=V%8jHcKU8Z!3BIP'Ci)5ndiT1_kqTb_a[$[XLAll`^<+cClW<n`"
% ;kKN-D>oAI#K:F((r4Ze!'gOpUoF1Xda$+%Q)DQb-\.<Sf4@SIW,IYB;[_O5S3jWcGpPj-.a
% \5JSKRuaJ,j8t5o7B2ntpRjCkiWbf[9c`Z_8Bk?.t08a\J&*FJY()UPdYG=d==Dd#o7L'Ft2
% *:S"W$'l"tHc1^6.I`fg-hmaL_07qSjqkMRVrRX"/$8?K(4Q%1M[BBbB0oceBSAHUt7u1:ZK
% ;d6AlT"[[%u.<O[A+`K%9YG$.aj&'oNfUI(c3*GO-7Sr@4%PSalr9ALHlP_p9pmP8j#@357e
% Ag!!%V=L:*n3?*7p6do-h470#TlY_G.X!89nCWH,t[Aa@KChGVn5=04.ZZigL4+Wpb*2XOV?
% 38uj$elF1'5b*-?L`^in`I`^-?t*AD$=3A12eLQX$'EaDB^#mT%d\t7>M-e,R56-99p4N>k!
% 3b8Z$1>+PU259),o`sQjj]&,bUu$J//4fDu^''HWnq%caiN!Rrmmb?#*S%J(PL2\@?=on"u4
% f#]+!ra"&mibn5Q#ZQn_kHb,.&EHO-P?$ug3?P;YuAc/AB,'=,u7LHY<O">5q-[@gI.[YLMK
% V%hu5eTrs08MTTE"U8OJNe^0_h'6-OOJDe.c0R'MXDFY!U&[_62GQug[=)#pUC5r%b$s)1]o
% mH0Mns>@AD+XHr&S=+0HN820?54D3r+BYHZT;*,r'7B4+<Z:lmSGg4FJ2i(cVKCWRnIpF+s&
% !G-e<dUoD5Rqljk6<AWbjnAYeq!IF&Mi?^\UUe:c`lk@Y]^2M*W7`-Y$^NhroU`6.?\`QQla
% r7@oIhF*)/riME-Oc43.<N;_dIPKfU`4WKL\VmbuTA8!WmJ*a'<;`@WSHJ[>RfgZXs1l=mIZ
% ZEc#5Ifd\f?b&OS!N]1_S/HnF*0EAD6Q.g@)Im(?['YB5%Rc6Tf4V2mgZJ&Y*f='k.0tZg"N
% qI]!/V,)2?PTld%K1LWG"1t90)Xf5!GFIIGjUKoZeKnYB.R](C`(N^3'^+I!*nF_)7M'XF39
% YfphC2PR_c3@NC@]&;<3cj*4WC<l#CpVgu)2-GSBjm36'b0&qi1bD6?AmlJ15Y^[DG8p?E:q
% h;A7_faA$;ab',qL.ks!K84k:@tugqBir1[Pg-lMBLs;QB7%-I=FE\V*9V[QJ8N9'7J0SbhP
% PZIf0@P^BkVU+CQrNcQT6b_5bFo[fge?r-#][CIAo\CiKnKD[r8MuF>sAA[tY+j7W>u:F:"g
% `^rBd!AhNa(Fk<r$1;JB/<!aJ9,qmUk!0@0_kX:p'FhH=G$5d'gf7;\357f5W.//*=(ObL:I
% 2ZdI*8#-M-u.KA?R(AAWcitXQ\%KSDj8b'lK:].kC,8OCGqPIo;@46_h7^hKOqIj>+uE+G^H
% t;@_9*"JUi8H#]e\N71U5)iRWBfjBWMAEYq>R?+;n%.!+h]Ju-A5o1"=E#Y7,1C217ckLYGV
% pOY-PIPZdfFJq=mQ\1:(K?"/tq*tO7=:#t?,n_=C[3pb53,Q3HJ,k[]`!:u)fOuLR?-@G4PU
% ;5;-[dRZM<<oREWh,>6uuj_F7N=_4"#pF2b<&NDhj"'0"?@MfS[A.E3OS>$qGem=Gutk"$jA
% !*M=^Gn8&)dGFGFV9Lp=77q+tX-=qsnqNuJ'-;]\G>H8!Q2C<YFYur,UOA-Jjr5a#t3&dC`=
% J1F[KpRi8M3*WSB5GVMO66V-2cUF2AX2`c=oo!+-t[jnOh\8c@0ZdG[2ErcPAUR)VUnM?2eA
% ".A%GZMP/ets"ThkZ$o&&h1V&0fQW!p!A=s/T!5as`q3+_lPQYQ\6j\-.WKMSIOs-JE?BpdN
% R32YmN)Bt,E)W%A"<_@QAf-Vk;V%+Sop$pCQG&!:/1CX(Je(T/O+d:hCZ:XmV-&<%P]gbFH"
% ghHQ=kZ7<?n._&.iGf.998ZJ8K"$k*)!_&LWp%QAo%1O83s]l$?j-<@"4`."I_==XG*>R2h'
% IMAZ]'8X^m'O@&2sOBIg2q+Xpg!l>+E%kp1U&r`=%Q2h4e!sP-rKc3Eg$aVMiK5^iOJ-a__$
% #Uje5qiRNTF2@i-T/o/93#U071'Y=(p1"D%Rh0F,uG@f;;>X_Z3OPQ&-0MEK`2gRL5:Z+W//
% L7LfESob]eaT(l_auBp[IdR>?9#(kS>]L@s+`p4\+)UOoC7CMtV?l'QRqaGuYKNd!I@nT]Pl
% W.2@&!rn%JqO*"ff:ST/T>d1RM`.4<=J1fML^4?I>'PV_etD6WJ_?uM&k[m<#Dsi6NYkAZVT
% =K3aucWEIRlCb+W>hU.Z8@5M^Y$D5:CM;L]U`]!s8#o!J#iU.%>oM79*ln;5fGqB;!O0JNeB
% o5g"f2Ll'`^M'(AVSVX)t(lB,uL)IRWjVXfpL5q>uU?dW3G,V6B)I_8#VIbqmJ*<X()5DoMT
% 2Plc=+lMU8"_,/Kfo3jctB9*a.R_CTR.$>g3BFKQuh*iIS<A4:'tbUqJRBhFGjn1NV[FOqK.
% kRK=FIOQ(S2k-m8>RWGa5\bh8sQ)PB#=L!*S=<bSL9LoSqf7dKc@@JHjP)QQL,NIsi\L&.U#
% WiK$tW4L!In-?$if5Or?U6<(hoE_=`[/q$KBG^K/cDm#6H':E\O<=:2(7B>cAtDtFOt#(Nf<
% JnV`<$aAGQ"P-2!Ian.?GQAFp3eK#@!W)H(*ENRW193/D1(XBs9@,Z-*HXc0:X1AsFf<H>L!
% YGI^\eM425ZRZgk\0!LQiS!en1B'PSb<,%h7&gpdaH?Er.NbN,e$^SVS&hNh[Af7t\WEa5=;
% i(7;[s=95$aRGpZ4;/E_O4CXYa@8ZZC:Tm2&WV:MmP5Y#_KUq9q/AG2muOEZ9)9r4W=KhM0W
% o!['TS6[0`CL+e""0\#5S%Ge(:p/!`=K"0T2E=\H,IEFt`W>'$1&@I(:t$+V>YOCMEO1S>&(
% &-s5*EQ[OS(u'^\.]mWHI#YY2#E#XLAq?qMJZCi-fJmqA)Qqn/L.b^Qj*.Z9$Dm$VW,UCi#P
% P3@(pChXCjH?g`C`aK70?_F%[email protected]()7$!k\"qcb24u82@(r%aOY-I
% =L+BL;)8C>F[ZB1)UMI;;RoMA>-)_s$K1fh7bI-=;QY?UG"h_UCX1nSV^&Y692kVIXd(L5,!
% #hL2hn-9p=Vrkd^4?7j#0aSBl*r]G[f7kgB3P[%TF#l$^%CX%L1R_94MD7U_[qd@]\1%.bEl
% B*_E"7q?pMX/\u@J(^5&bV7sr%1S%a21_,AI_0<>8S;&2;;"G*en*W3a.WPD5u[&62*<=f:<
% %)jYH`B^Mk%6MK/>R<Kb#tTTb/8N.8L;TM(^cH`ZFf`SeWPT&/`^61u=iCJ4/1:%Y`+g41+h
% Yj99>3oT#W:qc2`o*q=iGje_EFOuGH`A5m(kQ\`6TpQpe/Uh9Z^HE=_tafl`8.pqnbN^a+8a
% FMgWR@m'9<4atd2A[_0b'p;=%,`HsVQHM%Asr6%Eb^`_F?,J:oaXN^T(bX$'h/-uGAXNY(rW
% MUZELjKp_1;hN[_,FU`<ZK.GTF!:`#Y8pXD4A`B]?B'4R-WPQ^oXb-RE<Eqc?^c>Zu"(3]U$
% .abt%ZU.9=Ih4jB?6[JRVYEBFA\%+*bA_uuXKHlSTQEPr/Xc>BZ/Df!L[5Qj2#dA,L<h#,5J
% C=#Rr)Df%RQMe,.r6_QJ#t;YIW8PsSgWU$FaZDW&2gs#(SBhTqdsei17\D'3&dVS>>)c?^-*
% =S8m*%sh_F_GjJ^DmP)o]\,d!Q5E!5)nAE<KIN&)DR8!Up*pd^nrG]$8>qc`*9FZ3Ss+#C\o
% Fep.I3?k2)Y"Ca&07YN'QNLiF&$B>/f&E+YHf*,p9"#KG<!K\an`]Zkc-*Yb0X*\)dD:0,XB
% V-cIe/G6n4/\3cWk,gEeYf>0<MZ-UC;X8LpD/ebV4l&$Id>_#mHUb@)SJ-*FOXNQ?])N_Qip
% T5$'riIr41B;%(k+<]?*UU3nfN*383%hg6Ka])q_1J)SE0MM8W&iXEM7cC4<KPFQ[>l1?bkH
% [email protected]*!&TF#8(]#LkORU+&eTb"p$0JG2.SNX)o>.`-5DUP)fPSg40H[XS\g*2o[B#
% n<#6>FYaC+pd/h^skoSZ]?E]H6@N#'Zp5]%cdJ]fj:k1&qA5OGcc)--&j;R!mca4j]_tE<,F
% ^UFN1hST4oeNR`I2XI@kYbMX'!i3&&ojr3+;fO*i4hRa,I<%<YGY1rEdhUQtV^g/ilTI$BK#
% SSmUU($'Yc-8&9D9XZ4bSYm6Y2b_eis<qE^<<Dd._OPBjL'<pj1'\6mY8.*iOAcu\_W:^3oX
% "<Mc@0%Q-]Y;EXn`g)_Z*d@D:DiaP<JXUGj7J3KAeT^7`.)jpJ9FI_+>LqL'-*iN[6u8oBY`
% ^5>qUkNO#H;snVlh)4YLjd"a,>4N)pV$$DHXN6sQb3a1Z53Z!JklVEPC9F4RWiDTWXe&j?J1
% @T85)S9HkIJ1_[`5K5NSCQfjWt7V%i7Xc94:ur"@*n313LA6*R>H0aXXF"TQTZN*6>8+eWK1
% %E=<"P)[J-SmMDAJpH-^"*!g2fn+"]G>:n?1h9`E#[:L!TRW&B$h<;Kmj6Ahj$RkAl8uf?nV
% keb!Ge37oh<`nKg7nT#9hOg5Xlg\LX*t!+cjT('%I;Pk"1]f`Rd^FlhaEKb\N"/VZ2<FbCZa
% 2OWZ47Z*j=qd)Y-2nkm\]4`CoJ\LT[P8W7PqDXGG_+kN^m[gF-e=\Msc`*=,<BlT$!*(([F'
% 8Ejc9X[SlHahI"2&*05$oL&'=hC\+3DX+N^l?ghIg!8kccg=oYob$oP'NR+kn<2Thp(Ca+@N
% Oc!?fl)foG_/qCTcpO#kE#nVp6oth+ariS+fgqpJbLA:B$s@*r%EBimU!Q-u.k!?O9^dgtf"
% 6AC&J3&,A%'oTQKKU4)Am]"=@PpI)UbSPSg_3pLrslD)[WWJKqCTDCFTqQK>SYoZ;e*g)^q"
% e'rBjpkSQi7*_`kbX6dbrU#0m/8[cn?^*]e4dq^CLMO3"^5BP[>`SEJ'q5CdEu+6h)in8/Te
% t=68m;s!!2tHpb1I.20i6LDUS[iJ6M?'+hW++a1+VT\9WX5%GX,NkjR0REf5;^&%!(`*nBf5
% grCXg^ME6X^H#BdN81e`E)U\#<BWP?pKZRI)c;0homJpfQ&E"7fM_nlYi#7;TD&A1TB$r7CQ
% I[^5%H&=XID*$HuTYG&\/ZZk?ah<F+351#"Chm2uR]'bd2cK/)2#R/V(D6_(#_BokOT6&)A&
% gdN0$sI(p3@?,!d,r2ptQ"BSLJmX[R#=,N0-L1>7Pn+:n8pTs7chpujs&Om1L%kaL]E.HS.K
% 6XJ2rAll[">_*Z965-8$(<aqe`i%MaCBeCcfEb/PkPD_h@0%'>L3Qi68-FVW*CoPKL)OEd(V
% bQ:)[L=K60?(#_kSFLZXP$-4G?m0YoJ*:C+"_?aPH&;9ocm5\k$/<#q3MH*"7H&O'?aMnFS+
% YQWbi!80[K3!;AeYe,-tck9MC9UMK'@?9H%_b^Mc_GD$U?(gC[L87TL2T$o?Nc&7RBn\=G(<
% sGCpB<5nj3r8eO8R*Z2@'e4e/S%.Q`_<CX)fZtQ(C#fL7n#QSidi,&"2C@6@E,.'h-#-\-)J
% 6&_S^C5SKfA5QD6YM[A-"\;]FH61^G1&CZFPM'^RLA[OC=n8_RH,AI`>a(1Gh;#e*C9]:20Y
% QM&?P]iP_hbPeJ_+Xpa6ja4J`'@+o>7"+39#?)0!!Ahk'21Z.hG(d$B(,B7(jLq</>,SRbb`
% @9U/gPd@8W_871/1oiYWPXMEafd#/tI>'[L,`ls=[//M9Jp=95Tn)>HGPla*7l1aN^`?($Ns
% W,+faJ[snJBYdutCO<1eOf'.LcNG2^+Dc40!5sK.-3G5,A:$`&U_9$q^^/'e@qI6M/($B9Km
% $P;'Z4B""E]V?4@["B#l'iqHRs\A.pBsYJ/JgNB']OQ^b\H:aEAlT!,4P!B.^6:3M)R@rf12
% eNH!-"1.H"4)^FB[]IUP_i9a!eiYr[Q$kSGfK)('h1nZ.nJ:RCqB.Z+q`rpQ&hcaJW!^WI\[
% "^L^"[IW]WW93[*.0+c5R'-^A-=<ld@^oV_PS4,J-orli/p"mLG[@j"G@!c!";+UmQC3A)F"
% @0CBc=T"LNn!+:B6AF]&n1M&4Ni$1K$B6=gjmQa*auJ6"o?&gV/'&o'[)d"O_mVBR9oA<+m1
% /NlT3R2@eI2?3m2W<L?C8FRc=6\l_E,r.PS_!Tbn=(I5:&t!,f^<$;X#.2;_&.j;F!Mkq.La
% 1g!NoXo&$oKjD"s=umJK!GIZ;HL,VdQ/[email protected]$$qU(k.A5a3PEOqq9!A=J;$@*@B@2l
% $P!XUheqb5L_'pdrB@8LE!dfG!35Cu!PA_'q`l[kK,$P)"[$.+::\KQ%0\3h%=()(<+Aau&5
% mc.T^^T-'enG`#!I.Ed1Ve3\!Sr8/,frV<-g<rJ&-FO_;cWrYcm](55Cei"E]oH*%cJI?efZ
% Z3W,`Fh!Xeu.=p'R#"P!J_Uk;3@ScTjgjGfE[%-5QM&K9PW-K"lTi!(;O;&RnTARa_]lejj5
% -Vgn:]$kj1:ZL]CdE9YBSnt6MZBOfmU/[A8E[BXoQLG'NAZ;@:EiK)_jkT\9!T7)*!`kCYp.
% 8ScQB]d#b/k@>Sf.sMN%"Oc5$a")TF'6N8N\B:E^C8Ze\WPB<Z=l&kb)AT'8Qr;CZ;b_N[rO
% e?A\`E0BX"`//rUp9DlptT^0&F=R:=iO:puukLL#4T[>QH8C%b]^P=6#fV(\QKbP+,VE0$Zo
% t''EP_P!uCD]6&2[<lhJ7*I!dIH24,1m)/U,X-D\8)R45p,j`>a9JJHI2*E/\bgEhFcbuZ[/
% ZI'ro!-3;Bdk&D<N-K+=,3%HoV2i`$>TOtI`3^nR5T2'G?:HqT[pXhuU?%]eMLXIIBE&?\,]
% f^]=,hRo9snbRe:^_qgj^ar^[email protected]/e'b$#1rn]aI%%A"\=2'E%g!30S
% GrF:i\ljV^XQe@3<FX'iB%D6I&^94f?hh7D-l`Nm:m?#IFUpaE=I\,mqVtkLfnVd:@SsclBJ
% S'F<mk+P[r<HZ3jDcQni>:#S4QLjJZ<AuY"I&Tc>?#^_4\Cu.MV7M*t=fj('*'DO/tnYn?tB
% ,!J#T258#:ZR3lV.LilL@oL#K$M)55E-C!."adhE(31"3!g8]s5\k7oG8"a'3INCkM*(bEV&
% TM:aChZptk.dTN+o8:/Ld93^"\]a91%uH`;V`M&Nj9s6Q=8/dYQB!D;/RkS&oF#8Dld:B`ck
% Y@*s6Rp%La3_pV#4U#*pV0.*7ZKY1,g*JaS/hEKa%>62s,'rn>?3tbD6LNMY;,M#iU?3-6Ju
% DM'c63cW6`m<N,b8LV%qngDa@-aZpT/@$%j@+R3`SR>kRf\Fk#7*`:c<%lS)50URdbBUda9P
% E"7KnUiWFNa+8!s_oga;b6+hlb:a$V&Uj5L*BH$PkF>!2?5BuBW?RXHhIT1E<g<o2>7k6kIc
% k7-[5kIbKaUM<a-`r%%FGu+(;//Qn.2o%0C35TL_c>DU+6`lUV&=99b0imcj`6J*^nh*!&8]
% eMpI,I!)#^&C<0W]r3bV2'*&9sZ<)Ak.:%m74QR<2qV:%1*]#*'cMuE]?l<a:M@#iKMkWcg2
% Z"';@:Mp)+np*o1+RrF):"5<::j37@j(Bp.VtlFG)Cp4@+C7A.b+QE>B/[d?$3Fcd3$"a2FI
% YBXe:p@)BeiDZI#rob;ePAf,O$1JDtjkPefraZkQ6<B@<#LNK;qZV8d+r=&.PG.e7cG,[>>A
% 6U@;ufPk/Ut;(&qOhrc,0WEP@7MGBV_4T^0W!"^`BO6T^38Jcm@d/9db<1G/W@S0N1km9MPk
% qo6Bct]I@SSI>@We-:d<muno)O=:qd\L*TLN_2i$:oMN:i2`^du]kq;gM2u@I[$iXH]P:<0n
% Nb%&$XkX0aJj&-;i/KQuW;I=0kXT6a;;)GUU<87e9]OD3jn'Uh3e-n3B1mdhVde],`jjXQtI
% 7=h*C:f[T/"to4*NL_0`UW,U)MYTa,O"72B'qJB#Fh0b@B^&HtDj@`];/5r2-`S>WX]Eu\o$
% >PV;uPu@%&KP<XHM&K>#6TE*b;!APGoU)kU/lc.j^aa;[9`PJr89qe:;W]Lt&i9Ia[O3<!DR
% I,cKkTTI/4,)I=0DGf?/uclSe1LmhWt.O)[.(\PIB4ML)PcR(mdT-KSbEnC6S>tHPk?)mm(*
% [94u$!/.JCIM+R0*h`56i\@<g^_T0?'M,L6BB8l5q6fLK>+a1;V9s=?P.%&9rq'3_koal$<+
% 4l%LfUR,7l7)!9"Bu="VXpL6JMZcAn>t>O67PY.YRWVSf/i>1_sn?)P\B_iiUO.mXEA9Eh]*
% FV0kj];f8hTN>^06M/Bc^aNDdmpL)lX>Uj3in48L7ChdJoWlpWqZ3Cl&dT>*>^CTk1!'LA]%
% @YYeldTKHBEod`NI:FXr;hh>OZO)Q,!8&-8CtC6F?0AhXO$r('kl\J/D"Cp8OljWbBd0D>s^
% GPq3!R1iqg+oL^7I@$U'T!Q>L/BN_(]$@')fdfr&D`bH<]X#4=j((:=L>.[X'/\AVh\OkFc7
% @3hm'OCrY[#s:oJeiqcBa:*/I:cn#.dFWF9,!SbU@i8<dFCj@:FdQdXf/(X4,m'kQ?(/cjW1
% ZJJC]\*:'(EXS':9p)mp*Ye>h8LgMRIl[r&Q50ocD=8cU"#+%a)Rk]Vp0/VDerPN&TrJ,HCq
% `eap9(9=QGUpTEQi\k%h[MK`s?f\QG&:U=l@CoHR/]Q%B,Bqi?>Bh*,q(-MIJ:Sgq>27VpDB
% 0j+gpfYPj+:K)b@`O1JC%XYpY>$jKhK:50$`")3nN&>gI@Y=!!N%R\KmNBY0Lg`_m8[Yc&8!
% 5/ahDTb7ZX_"7q@H=0GBTP8j!4fMP>L!1*]ZX?_:Y7.*kX]D.]=hV,N:^Wp`J9tCAWeS9j0o
% latbaXsssp=KS^Ve^L#D)m6YXgZW#K!,OsrN=XMZ>pc9>2#@u]s&\YjLF)Jl1/)FE#m`:jdi
% qKOm;MP`:\1%n'QQm^%U.M=dQpJ5HiFnC,L5)RU29VE'9ZDr?d7!x
% EndEmbeddedGraphics N 8624 21b0 E cc S 10256c R ab04fa8
gsave
-20 -28 translate
/__NXbasematrix matrix currentmatrix def
grestore
%%EndProlog
%%BeginSetup
/acsRect {
moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath
} def /oval {
translate scale newpath 0.5 0.5 0.5 0 360 arc
} def /ovalPath {
4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate
} def /ff02 {
oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke
} def /ffr2 {
4 copy rectfill 5 -1 roll setgray rectstroke
} def /line {
moveto rlineto stroke
} def /SU {
setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave
} def /arrow {
newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate
} def /plainarrow {
gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore
} def /frrb {
/rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate
} def /firb {
/rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate
} def /rbp {
/rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath
} def /pieceOfRadius {
exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate
} def /strokedRoundBox {
dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke
} def /filledRoundBox {
dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill
} def /roundBoxPath {
dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath
} def /ffrb {
5 copy firb 6 -1 roll setgray frrb
} def /rbox {
/h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke
} def /rboxfilled {
/h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill
} def /rffb {
5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox
} def /roval {
/h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval
} def /rovalstroke {
roval matrix defaultmatrix setmatrix stroke grestore
} def /rovalfill {
roval matrix defaultmatrix setmatrix fill grestore
} def /rofs {
5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke
} def /flipH {
0 translate -1 1 scale
} def /flipV {
0 exch translate 1 -1 scale
} def /pathtextdict 28 dict def /pathtext {
pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath {
movetoproc
} {
linetoproc
} {
curvetoproc
} {
closepathproc
} pathforall grestore newpath end
} def pathtextdict begin /movetoproc {
/newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def
} def /linetoproc {
/oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne {
/dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def {
getNextWidth setdist nextCharHalfWidth add pathdist le {
charcount str length lt {
setchar
} {
exit
} ifelse
} {
/ovr setdist pathdist sub def exit
} ifelse
} loop
} if
} def /curvetoproc {
(Error) print
} def /closepathproc {
firstx firsty linetoproc firstx firsty movetoproc
} def /getNextWidth {
charcount 1 add str length lt {
/nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def
} if
} def /setchar {
/char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist setdist charwidth add def
} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def
%%EndSetup
gsave
15 230 684 307 rectclip
0 0 0.15 1 10 SU
[1 0 0 -1 216 528] concat
[1 0 0 1 0 0] concat
N
0.15 L
0 nxsetgray
0 0 24 24 rectstroke
0 0 T
grestore
0 0 0.15 1 10 SU
[1 0 0 -1 192 528] concat
[1 0 0 1 0 0] concat
N
0.15 L
0 nxsetgray
0 0 24 24 rectstroke
0 0 T
grestore
0 0 0.15 1 10 SU
[1 0 0 -1 168 528] concat
[1 0 0 1 0 0] concat
N
0.15 L
0 nxsetgray
0 0 24 24 rectstroke
0 0 T
grestore
0 0 0.15 1 10 SU
[1 0 0 -1 216 496] concat
[1 0 0 1 0 0] concat
N
0.15 L
0 nxsetgray
0 0 24 24 rectstroke
0 0 T
grestore
0 0 0.15 1 10 SU
[1 0 0 -1 192 496] concat
[1 0 0 1 0 0] concat
N
0.15 L
0 nxsetgray
0 0 24 24 rectstroke
0 0 T
grestore
0 0 0.15 1 10 SU
[1 0 0 -1 168 496] concat
[1 0 0 1 0 0] concat
N
0.15 L
0 nxsetgray
0 0 24 24 rectstroke
0 0 T
grestore
0 0 0.15 1 10 SU
[1 0 0 -1 216 448] concat
[1 0 0 1 0 0] concat
N
0.15 L
0 nxsetgray
0 0 24 24 rectstroke
0 0 T
grestore
0 0 0.15 1 10 SU
[1 0 0 -1 192 448] concat
[1 0 0 1 0 0] concat
N
0.15 L
0 nxsetgray
0 0 24 24 rectstroke
0 0 T
grestore
0 0 0.15 1 10 SU
[1 0 0 -1 168 448] concat
[1 0 0 1 0 0] concat
N
0.15 L
0 nxsetgray
0 0 24 24 rectstroke
0 0 T
grestore
0 0 0.15 1 10 SU
[1 0 0 -1 192 416] concat
[1 0 0 1 0 0] concat
N
0.15 L
0 nxsetgray
0 0 24 24 rectstroke
0 0 T
grestore
0 0 0.15 1 10 SU
[1 0 0 -1 168 416] concat
[1 0 0 1 0 0] concat
N
0.15 L
0 nxsetgray
0 0 24 24 rectstroke
0 0 T
grestore
0 0 0.15 1 10 SU
[1 0 0 -1 144 352] concat
[1 0 0 1 0 0] concat
N
0.15 L
0 nxsetgray
0 0 24 24 rectstroke
0 0 T
grestore
0 0 0.15 1 10 SU
[1 0 0 -1 552 408] concat
[1 0 0 1 0 0] concat
N
0.15 L
0 nxsetgray
0 0 24 24 rectstroke
0 0 T
grestore
0 0 0.15 1 10 SU
[1 0 0 -1 528 408] concat
[1 0 0 1 0 0] concat
N
0.15 L
0 nxsetgray
0 0 24 24 rectstroke
0 0 T
grestore
0 0 0.15 1 10 SU
[1 0 0 -1 504 408] concat
[1 0 0 1 0 0] concat
N
0.15 L
0 nxsetgray
0 0 24 24 rectstroke
0 0 T
grestore
0 0 0.15 1 10 SU
[1 0 0 -1 552 376] concat
[1 0 0 1 0 0] concat
N
0.15 L
0 nxsetgray
0 0 24 24 rectstroke
0 0 T
grestore
0 0 0.15 1 10 SU
[1 0 0 -1 552 336] concat
[1 0 0 1 0 0] concat
N
0.15 L
0 nxsetgray
0 0 24 24 rectstroke
0 0 T
grestore
0 0 0.15 1 10 SU
[1 0 0 -1 528 336] concat
[1 0 0 1 0 0] concat
N
0.15 L
0 nxsetgray
0 0 24 24 rectstroke
0 0 T
grestore
0 0 0.15 1 10 SU
[1 0 0 -1 504 336] concat
[1 0 0 1 0 0] concat
N
0.15 L
0 nxsetgray
0 0 24 24 rectstroke
0 0 T
grestore
0 0 0.15 1 10 SU
[1 0 0 -1 480 336] concat
[1 0 0 1 0 0] concat
N
0.15 L
0 nxsetgray
0 0 24 24 rectstroke
0 0 T
grestore
0 nxsetgray
0 0 0.15 1 10 SU
gsave
/Courier findfont 16 scalefont [1 0 0 -1 0 0] makefont
341
exch
defineuserobject
341 execuserobject setfont
0 nxsetgray
[1 0 0 -1 0 1029] concat
gsave
225 505 9 19 rectclip
341 execuserobject setfont
0 nxsetgray
225 518 moveto (0) show
grestore
grestore
grestore
0 nxsetgray
0 0 0.15 1 10 SU
gsave
341 execuserobject setfont
0 nxsetgray
[1 0 0 -1 0 967] concat
gsave
224 474 9 19 rectclip
341 execuserobject setfont
0 nxsetgray
224 487 moveto (0) show
grestore
grestore
grestore
0 nxsetgray
0 0 0.15 1 10 SU
gsave
341 execuserobject setfont
0 nxsetgray
[1 0 0 -1 0 871] concat
gsave
225 426 9 19 rectclip
341 execuserobject setfont
0 nxsetgray
225 439 moveto (0) show
grestore
grestore
grestore
0 nxsetgray
0 0 0.15 1 10 SU
gsave
341 execuserobject setfont
0 nxsetgray
[1 0 0 -1 0 807] concat
gsave
201 394 9 19 rectclip
341 execuserobject setfont
0 nxsetgray
201 407 moveto (0) show
grestore
grestore
grestore
0 nxsetgray
0 0 0.15 1 10 SU
gsave
341 execuserobject setfont
0 nxsetgray
[1 0 0 -1 0 743] concat
gsave
177 362 9 19 rectclip
341 execuserobject setfont
0 nxsetgray
177 375 moveto (0) show
grestore
grestore
grestore
0 nxsetgray
0 0 0.15 1 10 SU
gsave
341 execuserobject setfont
0 nxsetgray
[1 0 0 -1 0 791] concat
gsave
561 386 9 19 rectclip
341 execuserobject setfont
0 nxsetgray
561 399 moveto (0) show
grestore
grestore
grestore
0 nxsetgray
0 0 0.15 1 10 SU
gsave
341 execuserobject setfont
0 nxsetgray
[1 0 0 -1 0 725] concat
gsave
561 353 9 19 rectclip
341 execuserobject setfont
0 nxsetgray
561 366 moveto (0) show
grestore
grestore
grestore
0 nxsetgray
0 0 0.15 1 10 SU
gsave
341 execuserobject setfont
0 nxsetgray
[1 0 0 -1 0 647] concat
gsave
561 314 9 19 rectclip
341 execuserobject setfont
0 nxsetgray
561 327 moveto (0) show
grestore
grestore
grestore
0 nxsetgray
0 0 0.15 1 10 SU
gsave
341 execuserobject setfont
0 nxsetgray
[1 0 0 -1 0 1029] concat
gsave
202 505 9 19 rectclip
341 execuserobject setfont
0 nxsetgray
202 518 moveto (1) show
grestore
grestore
grestore
0 nxsetgray
0 0 0.15 1 10 SU
gsave
341 execuserobject setfont
0 nxsetgray
[1 0 0 -1 0 967] concat
gsave
201 474 9 19 rectclip
341 execuserobject setfont
0 nxsetgray
201 487 moveto (1) show
grestore
grestore
grestore
0 nxsetgray
0 0 0.15 1 10 SU
gsave
341 execuserobject setfont
0 nxsetgray
[1 0 0 -1 0 871] concat
gsave
201 426 9 19 rectclip
341 execuserobject setfont
0 nxsetgray
201 439 moveto (1) show
grestore
grestore
grestore
0 nxsetgray
0 0 0.15 1 10 SU
gsave
341 execuserobject setfont
0 nxsetgray
[1 0 0 -1 0 807] concat
gsave
177 394 9 19 rectclip
341 execuserobject setfont
0 nxsetgray
177 407 moveto (1) show
grestore
grestore
grestore
0 nxsetgray
0 0 0.15 1 10 SU
gsave
341 execuserobject setfont
0 nxsetgray
[1 0 0 -1 0 745] concat
gsave
154 363 9 19 rectclip
341 execuserobject setfont
0 nxsetgray
154 376 moveto (1) show
grestore
grestore
grestore
0 nxsetgray
0 0 0.15 1 10 SU
gsave
341 execuserobject setfont
0 nxsetgray
[1 0 0 -1 0 791] concat
gsave
537 386 9 19 rectclip
341 execuserobject setfont
0 nxsetgray
537 399 moveto (1) show
grestore
grestore
grestore
0 nxsetgray
0 0 0.15 1 10 SU
gsave
341 execuserobject setfont
0 nxsetgray
[1 0 0 -1 0 647] concat
gsave
537 314 9 19 rectclip
341 execuserobject setfont
0 nxsetgray
537 327 moveto (1) show
grestore
grestore
grestore
0 nxsetgray
0 0 0.15 1 10 SU
gsave
341 execuserobject setfont
0 nxsetgray
[1 0 0 -1 0 1029] concat
gsave
178 505 9 19 rectclip
341 execuserobject setfont
0 nxsetgray
178 518 moveto (2) show
grestore
grestore
grestore
0 nxsetgray
0 0 0.15 1 10 SU
gsave
341 execuserobject setfont
0 nxsetgray
[1 0 0 -1 0 967] concat
gsave
178 474 9 19 rectclip
341 execuserobject setfont
0 nxsetgray
178 487 moveto (2) show
grestore
grestore
grestore
0 nxsetgray
0 0 0.15 1 10 SU
gsave
341 execuserobject setfont
0 nxsetgray
[1 0 0 -1 0 871] concat
gsave
178 426 9 19 rectclip
341 execuserobject setfont
0 nxsetgray
178 439 moveto (2) show
grestore
grestore
grestore
0 nxsetgray
0 0 0.15 1 10 SU
gsave
341 execuserobject setfont
0 nxsetgray
[1 0 0 -1 0 871] concat
gsave
152 426 9 19 rectclip
341 execuserobject setfont
0 nxsetgray
152 439 moveto (3) show
grestore
grestore
grestore
0 nxsetgray
0 0 0.15 1 10 SU
gsave
341 execuserobject setfont
0 nxsetgray
[1 0 0 -1 0 807] concat
gsave
129 394 9 19 rectclip
341 execuserobject setfont
0 nxsetgray
129 407 moveto (3) show
grestore
grestore
grestore
0 nxsetgray
0 0 0.15 1 10 SU
gsave
341 execuserobject setfont
0 nxsetgray
[1 0 0 -1 0 745] concat
gsave
105 363 9 19 rectclip
341 execuserobject setfont
0 nxsetgray
105 376 moveto (3) show
grestore
grestore
grestore
0 nxsetgray
0 0 0.15 1 10 SU
gsave
341 execuserobject setfont
0 nxsetgray
[1 0 0 -1 0 647] concat
gsave
490 314 9 19 rectclip
341 execuserobject setfont
0 nxsetgray
490 327 moveto (3) show
grestore
grestore
grestore
0 nxsetgray
0 0 0.15 1 10 SU
gsave
341 execuserobject setfont
0 nxsetgray
[1 0 0 -1 0 809] concat
/Times-Roman findfont 16 scalefont [1 0 0 -1 0 0] makefont
133
exch
defineuserobject
133 execuserobject setfont
0 nxsetgray
153 410 moveto (2) show
grestore
grestore
0 nxsetgray
0 0 0.15 1 10 SU
gsave
133 execuserobject setfont
0 nxsetgray
[1 0 0 -1 0 745] concat
gsave
129 363 9 19 rectclip
341 execuserobject setfont
0 nxsetgray
129 376 moveto (2) show
grestore
grestore
grestore
0 nxsetgray
0 0 0.15 1 10 SU
gsave
341 execuserobject setfont
0 nxsetgray
[1 0 0 -1 0 793] concat
gsave
514 387 9 19 rectclip
341 execuserobject setfont
0 nxsetgray
514 400 moveto (2) show
grestore
grestore
grestore
0 nxsetgray
0 0 0.15 1 10 SU
gsave
341 execuserobject setfont
0 nxsetgray
[1 0 0 -1 0 647] concat
gsave
513 314 9 19 rectclip
341 execuserobject setfont
0 nxsetgray
513 327 moveto (2) show
grestore
grestore