Projects



PTCNets: Trader.eps

File Trader.eps, 69.3 KB (added by 8voss, 2 years ago)
Line 
1%!PS-Adobe-3.0 EPSF-3.0
2%%BoundingBox: 0 0 177 319
3%%Creator: FreeHEP Graphics2D Driver
4%%Producer: org.freehep.graphicsio.ps.EPSGraphics2D Revision: 12753
5%%For:
6%%Title:
7%%CreationDate: Thursday, March 24, 2022 at 7:18:08 PM Central European Standard Time
8%%LanguageLevel: 3
9%%EndComments
10%%BeginProlog
11100 dict dup begin
12
13%
14% File: org/freehep/graphicsio.ps/PSProlog.txt
15% Author: Charles Loomis
16%
17
18% Redefinitions which save some space in the output file.  These are also
19% the same as the PDF operators.
20/q {gsave} def
21/Q {grestore} def
22
23/n {newpath} def
24/m {moveto} def
25/l {lineto} def
26/c {curveto} def
27/h {closepath} def
28
29/re {4 -2 roll moveto
30     dup 0 exch rlineto exch 0 rlineto
31     neg 0 exch rlineto closepath} def
32
33/f {fill} def
34/f* {eofill} def
35/F {gsave vg&FC fill grestore} def
36/F* {gsave vg&FC eofill grestore} def
37
38/s {closepath stroke} def
39/S {stroke} def
40
41/b {closepath gsave vg&FC fill grestore
42    gsave stroke grestore newpath} def
43/B {gsave vg&FC fill grestore gsave stroke grestore newpath} def
44/b* {closepath gsave vg&FC eofill grestore
45    gsave stroke grestore newpath} def
46/B* {gsave vg&FC eofill grestore gsave stroke grestore newpath} def
47
48/g {1 array astore /vg&fcolor exch def} def
49/G {setgray} def
50/k {4 array astore /vg&fcolor exch def} def
51/K {setcmykcolor} def
52/rg {3 array astore /vg&fcolor exch def} def
53/RG {setrgbcolor} def
54
55% Initialize the fill color.
560 0 0 rg
57
58/vg&FC {mark vg&fcolor aload pop
59        counttomark 1 eq {G} if
60        counttomark 3 eq {RG} if
61        counttomark 4 eq {K} if
62        cleartomark } def
63
64/vg&DFC {/vg&fcolor exch def} def
65
66/vg&C {mark exch aload pop
67       counttomark 1 eq {G} if
68       counttomark 3 eq {RG} if
69       counttomark 4 eq {K} if
70       cleartomark } def
71
72/w {setlinewidth} def
73/j {setlinejoin} def
74/J {setlinecap} def
75/M {setmiterlimit} def
76/d {setdash} def
77/i {setflat} def
78
79/W {clip} def
80/W* {eoclip} def
81
82% Setup the default graphics state.
83% (black; 1 pt. linewidth; miter join; butt-ends; solid)
84/defaultGraphicsState {0 g 1 w 0 j 0 J [] 0 d} def
85
86% Emulation of the rectangle operators for PostScript implementations
87% which do not implement all Level 2 features.  This is an INCOMPLETE
88% emulation; only the "x y width height rect..." form is emulated.
89/*rf {gsave newpath re fill grestore} def
90/*rs {gsave newpath re stroke grestore} def
91/*rc {newpath re clip} def
92/rf  /rectfill where {pop /rectfill}{/*rf} ifelse load def
93/rs  /rectstroke where {pop /rectstroke}{/*rs} ifelse load def
94/rc  /rectclip where {pop /rectclip}{/*rc} ifelse load def
95
96% Emulation of the selectfont operator.  This includes a 20% increase in
97% the fontsize which is necessary to get sizes similar to the Java fonts.
98/*sf {exch findfont exch
99      dup type /arraytype eq {makefont}{scalefont} ifelse setfont} bind def
100/sf /selectfont where {pop {1.2 mul selectfont}}{{1.2 mul *sf}} ifelse def
101
102% Special version of stroke which allows the dash pattern to continue
103% across path segments.  (This may be needed for PostScript although
104% modern printers seem to do this correctly.)
105/vg&stroke {
106  currentdash pop length 0 eq
107  {stroke}
108  {
109    currentdash /vg&doffset exch def pop
110    flattenpath
111    {m vg&resetdash}
112    {2 copy
113     currentpoint
114     3 -1 roll sub dup mul
115     3 1 roll sub dup mul
116     add sqrt
117     3 1 roll l
118     currentdash 3 -1 roll add setdash}
119     {}
120     {h vg&resetdash}
121     pathforall
122     stroke
123     vg&resetdash
124  } ifelse
125} def
126/vg&resetdash {currentdash pop vg&doffset setdash} def
127
128% Initialize variables for safety.
129/delta 0 def
130/xv 0 def  /yv 0 def  /width 0 def  /height 0 def
131
132% Initialize to portrait INTERNATIONAL (Letter-height, A4-width) page.
133/pw 595 def  /ph 791  def  /po true def /ftp false def
134
135% Initialize margins to 20 points.
136/ml 20 def  /mr 20 def  /mt 20 def  /mb 20 def
137
138% Temporary matrices.
139/smatrix 0 def  /nmatrix 0 def
140
141% set page size (usage: <page width><page height> setpagesize)
142/setpagesize {/ph exch def /pw exch def} def
143
144% set page orientation (usage: portrait or landscape)
145/portrait {/po true def} def
146/landscape {/po false def} def
147
148% force natural size for image (usage: naturalsize)
149/naturalsize {/ftp false def} def
150
151% resize image to fill page (usage: fittopage)
152/fittopage {/ftp true def} def
153
154% set margins of the page (usage: <left><bottom><top><right> setmargins)
155/setmargins {/mr exch def /mt exch def /mb exch def /ml exch def} def
156
157% set the graphic's size (usage: <width><height> setsize)
158/setsize {/gh exch def /gw exch def} def
159
160% set the graphic's origin (usage: <x0><y0> setorigin)
161/setorigin {/gy exch def /gx exch def} def
162
163% calculate image center
164/imagecenter {pw ml sub mr sub 2 div ml add
165              ph mt sub mb sub 2 div mb add} def
166
167% calculate the necessary scaling
168/imagescale {po {gw}{gh} ifelse pw ml sub mr sub div
169             po {gh}{gw} ifelse ph mt sub mb sub div
170             2 copy lt {exch} if pop
171             ftp not {1 2 copy lt {exch} if pop} if
172             1 exch div /sfactor exch def
173             /gw gw sfactor mul def /gh gh sfactor mul def} def
174
175% calculate image origin
176/imageorigin {pw ml sub mr sub 2 div ml add
177              po {gw}{gh} ifelse 2 div sub
178              ph mt sub mb sub 2 div mb add
179              po {gh}{gw} ifelse 2 div po {add}{sub} ifelse} def
180
181% calculate the clipping origin
182/cliporigin  {pw ml sub mr sub 2 div ml add
183              po {gw}{gh} ifelse 2 div sub floor
184              ph mt sub mb sub 2 div mb add
185              po {gh}{gw} ifelse 2 div sub floor} def
186
187% Set the clipping region to the bounding box.
188/cliptobounds {cliporigin po {gw}{gh} ifelse 1 add
189                          po {gh}{gw} ifelse 1 add rc} def
190
191% set the base transformation matrix (usage: setbasematrix)
192/setbasematrix {imageorigin translate
193                po {0}{90} ifelse rotate
194                sfactor sfactor neg scale
195                /defaultmatrix matrix currentmatrix def} def
196
197% The lower-right bias in drawing 1 pt. wide lines.
198/bias  {q 0.5 0.5 translate} def
199/unbias {Q} def
200
201% Define the composite fonts used to print Unicode strings.
202% Undefine particular values in an encoding array.
203/vg&undef { {exch dup 3 -1 roll /.notdef put} forall } def
204/vg&redef { {3 -1 roll dup 4 2 roll put} forall } def
205
206% usage: key encoding basefontname vg&newbasefont font
207/vg&newbasefont {
208findfont dup length dict copy
209  begin
210    currentdict /FID undef
211    /Encoding exch def
212    dup /FontName exch def
213    currentdict
214  end
215definefont
216} def
217
218% usage: key encoding basefontname vg&newskewedbasefont font
219/vg&newskewedbasefont {
220findfont dup length dict copy
221  begin
222    currentdict /FID undef
223    /Encoding exch def
224    dup /FontName exch def
225    exch FontMatrix exch matrix concatmatrix /FontMatrix exch def
226    currentdict
227  end
228definefont
229} def
230
231% usage: basekey suffix vg&nconcat name
232/vg&nconcat {
233  2 {dup length string cvs exch} repeat
234  dup length 3 -1 roll dup length 3 -1 roll add string
235  dup 0 4 -1 roll dup length 5 1 roll putinterval
236  dup 4 -2 roll exch putinterval cvn
237} def
238
239%usage: fontname vg&skewmatrix matrix
240/vg&skewmatrix {
241findfont dup /FontInfo known
242  {
243    /FontInfo get dup /ItalicAngle known
244    {
245      [ 1 0 4 -1 roll /ItalicAngle get neg dup sin exch cos div 1 0 0 ]
246    }
247    {pop matrix} ifelse
248  }
249  {pop matrix} ifelse
250} def
251
252% usage: newfontname basefontname vg&newcompositefont --
253/vg&newcompositefont {
254/vg&fstyle exch def
255/vg&bfont exch def
256/vg&fname exch def
257<<
258/FontStyleBits vg&fstyle
259/FontType 0
260/FontMatrix matrix
261/FontName vg&fname
262/FMapType 2
263/Encoding [ 0 1 255 {pop 6} for ]
264          dup 16#00 0 put % Latin
265          dup 16#03 1 put % Greek
266          dup 16#20 2 put % Punctuation
267          dup 16#21 3 put % Arrows
268          dup 16#22 4 put % MathOps
269          dup 16#27 5 put % Dingbats
270
271/FDepVector [
272vg&bfont /-UC-Latin vg&nconcat UCLatinEncoding
273vg&bfont vg&newbasefont
274
275vg&bfont vg&skewmatrix
276vg&bfont /-UC-Greek vg&nconcat UCGreekEncoding
277/Symbol vg&newskewedbasefont
278
279vg&bfont /-UC-Punctuation vg&nconcat UCPunctuationEncoding
280vg&bfont vg&newbasefont
281
282/Arrows-UC findfont
283/MathOps-UC findfont
284/Dingbats-UC findfont
285/Undefined-UC findfont ]
286>>
287vg&fname exch definefont pop
288} def
289
290% Null encoding vector (all elements set to .notdef)
291/NullEncoding [ 256 {/.notdef} repeat ] def
292
293% Unicode Latin encoding (unicode codes \u0000-\u00ff)
294/UCLatinEncoding
295  ISOLatin1Encoding dup length array copy
296  dup 16#60 /grave put
297  [ 16#90 16#91 16#92 16#93 16#94 16#95 16#96
298    16#97 16#98 16#9a 16#9b 16#9d 16#9e 16#9f
299  ] vg&undef
300  def
301
302% Unicode Greek encoding (unicode codes \u0370-\u03ff)
303/UCGreekEncoding
304  NullEncoding dup length array copy
305  << 16#91 /Alpha    16#92 /Beta      16#93 /Gamma    16#94 /Delta
306     16#95 /Epsilon  16#96 /Zeta      16#97 /Eta      16#98 /Theta
307     16#99 /Iota     16#9a /Kappa     16#9b /Lambda   16#9c /Mu
308     16#9d /Nu       16#9e /Xi        16#9f /Omicron  16#a0 /Pi
309     16#a1 /Rho      16#a3 /Sigma     16#a4 /Tau      16#a5 /Upsilon
310     16#a6 /Phi      16#a7 /Chi       16#a8 /Psi      16#a9 /Omega
311     16#b1 /alpha    16#b2 /beta      16#b3 /gamma    16#b4 /delta
312     16#b5 /epsilon  16#b6 /zeta      16#b7 /eta      16#b8 /theta
313     16#b9 /iota     16#ba /kappa     16#bb /lambda   16#bc /mu
314     16#bd /nu       16#be /xi        16#bf /omicron  16#c0 /pi
315     16#c1 /rho      16#c2 /sigma1    16#c3 /sigma    16#c4 /tau
316     16#c5 /upsilon  16#c6 /phi1      16#c7 /chi      16#c8 /psi
317     16#c9 /omega    16#7e /semicolon 16#87 /dotmath  16#d1 /theta1
318     16#d2 /Upsilon1 16#d5 /phi       16#d6 /omega1
319  >> vg&redef
320  def
321
322% Unicode punctuation encoding (unicode codes \u2000-\u206f)
323/UCPunctuationEncoding
324  NullEncoding dup length array copy
325  << 16#10 /hyphen          16#11 /hyphen              16#12 /endash
326     16#13 /emdash          16#18 /quoteleft           16#19 /quoteright
327     16#1a /quotesinglbase  16#1b /quotesingle         16#1c /quotedblleft
328     16#1d /quotedblright   16#1e /quotedblbase        16#1f /quotedbl
329     16#20 /dagger          16#21 /daggerdbl           16#22 /bullet
330     16#24 /period          16#26 /ellipsis            16#27 /periodcentered
331     16#30 /perthousand     16#44 /fraction
332     16#70 /zerosuperior    16#74 /foursuperior        16#75 /fivesuperior
333     16#76 /sixsuperior     16#77 /sevensuperior       16#78 /eightsuperior
334     16#79 /ninesuperior    16#7b /hyphensuperior      16#7d /parenleftsuperior
335     16#7e /parenrightsuperior
336     16#80 /zeroinferior    16#84 /fourinferior        16#85 /fiveinferior
337     16#81 /oneinferior     16#82 /twoinferior         16#83 /threeinferior
338     16#86 /sixinferior     16#87 /seveninferior       16#88 /eightinferior
339     16#89 /nineinferior    16#8b /hypheninferior      16#8d /parenleftinferior
340     16#8e /parenrightinferior
341  >> vg&redef
342  def
343
344% Unicode mathematical operators encoding (unicode codes \u2200-\u22ff)
345/UCMathOpsEncoding
346  NullEncoding dup length array copy
347  << 16#00 /universal       16#02 /partialdiff         16#03 /existential
348     16#05 /emptyset        16#06 /Delta               16#07 /gradient
349     16#08 /element         16#09 /notelement          16#0b /suchthat
350     16#0f /product         16#11 /summation           16#12 /minus
351     16#15 /fraction        16#17 /asteriskmath        16#19 /bullet
352     16#1a /radical         16#1d /proportional        16#1e /infinity
353     16#20 /angle           16#23 /bar                 16#27 /logicaland
354     16#28 /logicalor       16#29 /intersection        16#2a /union
355     16#2b /integral        16#34 /therefore           16#36 /colon
356     16#3c /similar         16#45 /congruent           16#48 /approxequal
357     16#60 /notequal        16#61 /equivalence         16#64 /lessequal
358     16#65 /greaterequal    16#82 /propersubset        16#83 /propersuperset
359     16#86 /reflexsubset    16#87 /reflexsuperset      16#95 /circleplus
360     16#97 /circlemultiply  16#a5 /perpendicular       16#03 /existential
361     16#c0 /logicaland      16#c1 /logicalor           16#c2 /intersection
362     16#c3 /union           16#c4 /diamond             16#c5 /dotmath
363  >> vg&redef
364  def
365
366% Unicode arrows encoding (unicode codes \u2190-\u21ff)
367% Also includes those "Letterlike" unicode characters
368% which are available in the symbol font. (unicode codes \u2100-\u214f)
369/UCArrowsEncoding
370  NullEncoding dup length array copy
371  << 16#11 /Ifraktur        16#1c /Rfraktur            16#22 /trademarkserif
372     16#35 /aleph
373     16#90 /arrowleft       16#91 /arrowup             16#92 /arrowright
374     16#93 /arrowdown       16#94 /arrowboth           16#d0 /arrowdblleft
375     16#d1 /arrowdblup      16#d2 /arrowdblright       16#d3 /arrowdbldown
376     16#d4 /arrowdblboth
377  >> vg&redef
378  def
379
380/ZapfDingbats findfont /Encoding get
381dup length array copy /UCDingbatsEncoding exch def
38216#20 1 16#7f {
383  dup 16#20 sub exch
384  UCDingbatsEncoding exch get
385  UCDingbatsEncoding 3 1 roll put
386} for
38716#a0 1 16#ff {
388  dup 16#40 sub exch
389  UCDingbatsEncoding exch get
390  UCDingbatsEncoding 3 1 roll put
391} for
392UCDingbatsEncoding [ 16#c0 1 16#ff {} for ] vg&undef
393[ 16#00  16#05 16#0a 16#0b  16#28 16#4c 16#4e  16#53 16#54 16#55  16#57 16#5f
394  16#60  16#68 16#69 16#6a  16#6b 16#6c 16#6d  16#6e 16#6f 16#70  16#71 16#72
395  16#73  16#74 16#75 16#95  16#96 16#97 16#b0  16#bf
396] vg&undef pop
397
398% Define the base fonts which don't change.
399/Undefined-UC NullEncoding       /Helvetica    vg&newbasefont pop
400/MathOps-UC   UCMathOpsEncoding  /Symbol       vg&newbasefont pop
401/Arrows-UC    UCArrowsEncoding   /Symbol       vg&newbasefont pop
402/Dingbats-UC  UCDingbatsEncoding /ZapfDingbats vg&newbasefont pop
403
404% Make the SansSerif composite fonts.
405/SansSerif /Helvetica 16#00 vg&newcompositefont
406/SansSerif-Bold /Helvetica-Bold 16#01 vg&newcompositefont
407/SansSerif-Italic /Helvetica-Oblique 16#02 vg&newcompositefont
408/SansSerif-BoldItalic /Helvetica-BoldOblique 16#03 vg&newcompositefont
409
410% Make the Serif composite fonts.
411/Serif /Times-Roman 16#00 vg&newcompositefont
412/Serif-Bold /Times-Bold 16#01 vg&newcompositefont
413/Serif-Italic /Times-Italic 16#02 vg&newcompositefont
414/Serif-BoldItalic /Times-BoldItalic 16#03 vg&newcompositefont
415
416% Make the Monospaced composite fonts.
417/Monospaced /Courier 16#00 vg&newcompositefont
418/Monospaced-Bold /Courier-Bold 16#01 vg&newcompositefont
419/Monospaced-Italic /Courier-Oblique 16#02 vg&newcompositefont
420/Monospaced-BoldItalic /Courier-BoldOblique 16#03 vg&newcompositefont
421
422% Make the Dialog composite fonts.
423/Dialog /Helvetica 16#00 vg&newcompositefont
424/Dialog-Bold /Helvetica-Bold 16#01 vg&newcompositefont
425/Dialog-Italic /Helvetica-Oblique 16#02 vg&newcompositefont
426/Dialog-BoldItalic /Helvetica-BoldOblique 16#03 vg&newcompositefont
427
428% Make the DialogInput composite fonts.
429/DialogInput /Courier 16#00 vg&newcompositefont
430/DialogInput-Bold /Courier-Bold 16#01 vg&newcompositefont
431/DialogInput-Italic /Courier-Oblique 16#02 vg&newcompositefont
432/DialogInput-BoldItalic /Courier-BoldOblique 16#03 vg&newcompositefont
433
434% Make the Typewriter composite fonts (JDK 1.1 only).
435/Typewriter /Courier 16#00 vg&newcompositefont
436/Typewriter-Bold /Courier-Bold 16#01 vg&newcompositefont
437/Typewriter-Italic /Courier-Oblique 16#02 vg&newcompositefont
438/Typewriter-BoldItalic /Courier-BoldOblique 16#03 vg&newcompositefont
439
440
441/cfontH {
442 dup /fontsize exch def /SansSerif exch sf
443 /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
444} def
445/cfontHB {
446  dup /fontsize exch def /SansSerif-Bold exch sf
447 /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
448} def
449/cfontHI {
450 dup /fontsize exch def /SansSerif-Italic exch sf
451 /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
452} def
453/cfontHBI {
454 dup /fontsize exch def /SansSerif-BoldItalic exch sf
455 /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
456} def
457
458/cfontT {
459 dup /fontsize exch def /Serif exch sf
460 /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
461} def
462/cfontTB {
463 dup /fontsize exch def /Serif-Bold exch sf
464 /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
465} def
466/cfontTI {
467 dup /fontsize exch def /Serif-Italic exch sf
468 /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
469} def
470/cfontTBI {
471 dup /fontsize exch def /Serif-BoldItalic exch sf
472 /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
473} def
474
475/cfontC {
476 dup /fontsize exch def /Typewriter exch sf
477 /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
478} def
479/cfontCB {
480 dup /fontsize exch def /Typewriter-Bold exch sf
481 /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
482} def
483/cfontCI {
484 dup /fontsize exch def /Typewriter-Italic exch sf
485 /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
486} def
487/cfontCBI {
488 dup /fontsize exch def /Typewriter-BoldItalic exch sf
489 /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
490} def
491
492% Darken or lighten the current color.
493/darken {0.7 exch exp 3 copy
494         q 4 -1 roll vg&C
495         currentrgbcolor 3 {4 -2 roll mul} repeat
496         3 array astore Q} def
497
498/displayColorMap
499<< /Cr   [1.00 0.00 0.00]       /Cg     [0.00 1.00 0.00]
500   /Cb   [0.00 0.00 1.00]       /Cc     [1.00 0.00 0.00 0.00]
501   /Cm   [0.00 1.00 0.00 0.00]  /Cy     [0.00 0.00 1.00 0.00]
502   /Co   [1.00 0.78 0.00]       /Cp     [1.00 0.67 0.67]
503   /Cw   [1   ]                 /Cgrl   [0.75]
504   /Cgr  [0.50]                 /Cgrd   [0.25]
505   /Ck   [0   ]
506   /CGr  [1.00 0.00 0.00]       /CGg    [0.00 1.00 0.00]
507   /CGb  [0.00 0.00 1.00]       /CGc    [1.00 0.00 0.00 0.00]
508   /CGm  [0.00 1.00 0.00 0.00]  /CGy    [0.00 0.00 1.00 0.00]
509   /CGo  [1.00 0.78 0.00]       /CGp    [1.00 0.67 0.67]
510   /CGw  [1   ]                 /CGgrl  [0.75]
511   /CGgr [0.50]                 /CGgrd  [0.25]
512   /CGk  [0   ]
513   /CIr  [1.00 0.00 0.00]       /CIg    [0.00 1.00 0.00]
514   /CIb  [0.00 0.00 1.00]       /CIc    [1.00 0.00 0.00 0.00]
515   /CIm  [0.00 1.00 0.00 0.00]  /CIy    [0.00 0.00 1.00 0.00]
516   /CIo  [1.00 0.78 0.00]       /CIp    [1.00 0.67 0.67]
517   /CIw  [1   ]                 /CIgrl  [0.75]
518   /CIgr [0.50]                 /CIgrd  [0.25]
519   /CIk  [0   ]
520>> def
521
522/printColorMap
523<< /Cr   [1.00 0.33 0.33]       /Cg     [0.33 1.00 0.33]
524   /Cb   [0.33 0.33 1.00]       /Cc     [1.00 0.00 0.00 0.00]
525   /Cm   [0.00 1.00 0.00 0.00]  /Cy     [0.00 0.00 1.00 0.00]
526   /Co   [1.00 0.78 0.00]       /Cp     [1.00 0.67 0.67]
527   /Cw   [1   ]                 /Cgrl   [0.75]
528   /Cgr  [0.50]                 /Cgrd   [0.25]
529   /Ck   [0   ]
530   /CGr  [1.00 0.33 0.33]       /CGg    [0.33 1.00 0.33]
531   /CGb  [0.33 0.33 1.00]       /CGc    [1.00 0.00 0.00 0.00]
532   /CGm  [0.00 1.00 0.00 0.00]  /CGy    [0.00 0.00 1.00 0.00]
533   /CGo  [1.00 0.78 0.00]       /CGp    [1.00 0.67 0.67]
534   /CGw  [1   ]                 /CGgrl  [0.75]
535   /CGgr [0.50]                 /CGgrd  [0.25]
536   /CGk  [0   ]
537   /CIr  [1.00 0.33 0.33]       /CIg    [0.33 1.00 0.33]
538   /CIb  [0.33 0.33 1.00]       /CIc    [1.00 0.00 0.00 0.00]
539   /CIm  [0.00 1.00 0.00 0.00]  /CIy    [0.00 0.00 1.00 0.00]
540   /CIo  [1.00 0.78 0.00]       /CIp    [1.00 0.67 0.67]
541   /CIw  [1   ]                 /CIgrl  [0.75]
542   /CIgr [0.50]                 /CIgrd  [0.25]
543   /CIk  [0   ]
544>> def
545
546/grayColorMap
547<< /Cr   [0   ]                 /Cg     [0   ]
548   /Cb   [0   ]                 /Cc     [0   ]
549   /Cm   [0   ]                 /Cy     [0   ]
550   /Co   [0   ]                 /Cp     [0   ]
551   /Cw   [0   ]                 /Cgrl   [0   ]
552   /Cgr  [0   ]                 /Cgrd   [0   ]
553   /Ck   [0   ]
554   /CGr  [0.75]                 /CGg    [1   ]
555   /CGb  [0.50]                 /CGc    [0.75]
556   /CGm  [0.50]                 /CGy    [1   ]
557   /CGo  [0.75]                 /CGp    [1   ]
558   /CGw  [0   ]                 /CGgrl  [0.25]
559   /CGgr [0.50]                 /CGgrd  [0.75]
560   /CGk  [1   ]
561   /CIr  [1   ]                 /CIg    [1   ]
562   /CIb  [1   ]                 /CIc    [1   ]
563   /CIm  [1   ]                 /CIy    [1   ]
564   /CIo  [1   ]                 /CIp    [1   ]
565   /CIw  [1   ]                 /CIgrl  [1   ]
566   /CIgr [1   ]                 /CIgrd  [1   ]
567   /CIk  [1   ]
568>> def
569
570/bwColorMap
571<< /Cr   [0   ]                 /Cg     [0   ]
572   /Cb   [0   ]                 /Cc     [0   ]
573   /Cm   [0   ]                 /Cy     [0   ]
574   /Co   [0   ]                 /Cp     [0   ]
575   /Cw   [0   ]                 /Cgrl   [0   ]
576   /Cgr  [0   ]                 /Cgrd   [0   ]
577   /Ck   [0   ]
578   /CGr  [1   ]                 /CGg    [1   ]
579   /CGb  [1   ]                 /CGc    [1   ]
580   /CGm  [1   ]                 /CGy    [1   ]
581   /CGo  [1   ]                 /CGp    [1   ]
582   /CGw  [0   ]                 /CGgrl  [1   ]
583   /CGgr [1   ]                 /CGgrd  [1   ]
584   /CGk  [1   ]
585   /CIr  [1   ]                 /CIg    [1   ]
586   /CIb  [1   ]                 /CIc    [1   ]
587   /CIm  [1   ]                 /CIy    [1   ]
588   /CIo  [1   ]                 /CIp    [1   ]
589   /CIw  [1   ]                 /CIgrl  [1   ]
590   /CIgr [1   ]                 /CIgrd  [1   ]
591   /CIk  [1   ]
592>> def
593
594%
595% The following routines handle the alignment of and printing of
596% tagged strings.
597%
598
599% Predefine the bounding box values.
600/bbllx 0 def /bblly 0 def /bburx 0 def /bbury 0 def
601
602% This routine pops the first unicode character off of a string and returns
603% the remainder of the string, the character code of first character,
604% and a "true" if the string was non-zero length.
605% <string>      popfirst <remaining string> <true>
606% <null string> popfirst <false>
607/popfirst {
608  dup length 1 gt
609    {dup 0 get /vg&fbyte exch def
610     dup 1 get /vg&cbyte exch def
611     dup length 2 sub 2 exch getinterval true}
612    {pop false} ifelse
613} def
614
615% This routine shows a single unicode character given the font and
616% character codes.
617% <font code> <char code> unicharshow --
618/unicharshow {
619  2 string
620  dup 0 5 -1 roll put
621  dup 1 4 -1 roll put
622  internalshow
623} def
624
625% This is an internal routine to alternate between determining the
626% bounding box for stringsize and showing the string for recshow.
627% <string> internalshow --
628/internalshow {show} def
629
630% This is an internal routine to alternate between determining the
631% bounding box for stringsize and stroking various ornaments.
632% <string> internalstroke --
633/internalstroke {S} def
634
635% Sets up internalshow to use the null device to determine string size.
636% -- nullinternalshow --
637/nullinternalshow {/internalshow {false charpath flattenpath
638                                  pathbbox updatebbox} def} def
639
640% Sets up internalstroke to use the null device to determine string size.
641% -- nullinternalstroke --
642/nullinternalstroke {
643 /internalstroke {flattenpath pathbbox updatebbox} def} def
644
645% This routine tests to see if the character code matches the first
646% character of a string.
647% <char code> <string> testchar <char code> <true or false>
648/testchar {exch dup 3 -1 roll 0 get eq} def
649
650% Raise the text baseline for superscripts.
651% -- raise --
652/raise {
653  0 fontsize 2 div rmoveto
654  /fontsize fontsize 2 mul 3 div def
655  currentfont /FontName get fontsize sf
656} def
657
658% Un-raise the text baseline for superscripts.
659% -- unraise --
660/unraise {
661  /fontsize fontsize 1.5 mul def
662  0 fontsize 2 div neg rmoveto
663} def
664
665% Lower the text baseline for subscripts.
666% -- lower --
667/lower {
668  0 fontsize 3 div neg rmoveto
669  /fontsize fontsize 2 mul 3 div def
670  currentfont /FontName get fontsize sf
671} def
672
673% Un-lower the text baseline for subscripts.
674% -- unlower --
675/unlower {
676  /fontsize fontsize 1.5 mul def
677  0 fontsize 3 div rmoveto
678} def
679
680% Compare the top two elements on the stack and leave only the
681% larger one.
682/maxval {2 copy gt {pop} {exch pop} ifelse} def
683
684% Tokenize a string.  Do not use the usual PostScript token because
685% parentheses will not be interpreted correctly because of rescanning
686% of the string.
687/vg&token {/vg&string exch def /vg&index -1 def /vg&level 0 def
6880 2 vg&string length 2 sub {
689  dup dup 1 add exch vg&string exch get 8 bitshift vg&string 3 -1 roll get or
690  dup 16#f0fe eq {pop 1}{16#f0ff eq {-1}{0} ifelse} ifelse
691  /vg&level exch vg&level add def
692  vg&level 0 eq {/vg&index exch def exit} if pop
693} for
694vg&index 0 ge {
695  vg&string vg&index 2 add dup vg&string length exch sub getinterval
696  vg&index 2 gt {vg&string 2 vg&index 2 sub getinterval}{()} ifelse
697  true}
698{false} ifelse
699} bind def
700
701% Recursively show an unicode string.
702% <string> recshow --
703/recshow {
704  popfirst
705  {
706    % Test to see if this is a string attribute.
707    vg&fbyte 16#f0 and 16#e0 eq
708    {
709      q
710
711      % Font style.
712      currentfont dup /FontStyleBits known {/FontStyleBits get}{pop 0} ifelse
713      vg&cbyte or vg&fontstyles exch get fontsize exch exec
714
715      vg&token pop recshow currentpoint Q m recshow
716    }
717    {
718      vg&fbyte 16#F8 and 16#F0 eq {
719
720        % Superscript and/or subscript.
721        vg&cbyte 16#00 eq {
722          vg&token pop exch vg&token pop 3 -1 roll
723          q raise recshow unraise currentpoint pop Q exch
724          q lower recshow unlower currentpoint pop Q
725          maxval currentpoint exch pop m recshow } if
726
727        % Strikeout.
728        vg&cbyte 16#01 eq {
729          vg&token pop currentpoint 3 -1 roll recshow
730          q 0 J vg&underline vg&uthick w
731          currentpoint 4 -2 roll fontsize 3 div add moveto
732          fontsize 3 div add lineto internalstroke Q
733          recshow} if
734
735        % Underline.
736        vg&cbyte 16#02 eq {
737          vg&token pop currentpoint 3 -1 roll recshow
738          q 0 J vg&underline vg&uthick w
739          currentpoint 4 -2 roll vg&uoffset add moveto
740          vg&uoffset add lineto internalstroke Q
741          recshow} if
742
743        % Dashed underline.
744        vg&cbyte 16#03 eq {
745          vg&token pop currentpoint 3 -1 roll recshow
746          q 0 J [ vg&uthick 5 mul vg&uthick 2 mul] 0 d
747          vg&underline vg&uthick w
748          currentpoint 4 -2 roll vg&uoffset add moveto
749          vg&uoffset add lineto internalstroke Q
750          recshow} if
751
752        % Dotted underline.
753        vg&cbyte 16#04 eq {
754          vg&token pop currentpoint 3 -1 roll recshow
755          q 1 J [ 0 vg&uthick 3 mul] 0 d
756          vg&underline vg&uthick w
757          currentpoint 4 -2 roll vg&uoffset add moveto
758          vg&uoffset add lineto internalstroke Q
759          recshow} if
760
761        % Thick underline.
762        vg&cbyte 16#05 eq {
763          vg&token pop currentpoint 3 -1 roll recshow
764          q 0 J vg&underline vg&uthick 2 mul w
765          currentpoint 4 -2 roll vg&uoffset vg&uthick 2 div sub add moveto
766          vg&uoffset vg&uthick 2 div sub add lineto internalstroke Q
767          recshow} if
768
769        % Gray thick underline.
770        vg&cbyte 16#06 eq {
771          vg&token pop currentpoint 3 -1 roll recshow
772          q 0 J vg&underline vg&uthick 2 mul w 0.5 setgray
773          currentpoint 4 -2 roll vg&uoffset vg&uthick 2 div sub add moveto
774          vg&uoffset vg&uthick 2 div sub add lineto internalstroke Q
775          recshow} if
776
777        % Overbar.
778        vg&cbyte 16#07 eq {
779          vg&token pop dup stringsize relative 4 1 roll pop pop exch
780          3 -1 roll recshow
781          q 0 J vg&underline vg&uthick w
782          vg&uoffset neg add dup currentpoint pop exch m l internalstroke Q
783          recshow} if
784      }
785      {
786        vg&fbyte vg&cbyte unicharshow recshow
787      } ifelse
788    } ifelse
789  } if
790} def
791
792% Get the underline position and thickness from the current font.
793/vg&underline {
794
795currentfont dup /FontType get 0 eq {/FDepVector get 0 get} if
796dup dup /FontInfo known {
797  /FontInfo get dup
798  dup /UnderlinePosition known {
799    /UnderlinePosition get /vg&uoffset exch def
800  }
801  {
802    pop /vg&uoffset 0 def
803  } ifelse
804  dup /UnderlineThickness known {
805    /UnderlineThickness get /vg&uthick exch def
806  }
807  {
808    pop /vg&uthick 0 def
809  } ifelse
810}
811{
812  pop /vg&uoffset 0 def /vg&uthick 0 def
813} ifelse
814/FontMatrix get
815currentfont dup /FontType get 0 eq
816{/FontMatrix get matrix concatmatrix}{pop} ifelse
817dup 0 vg&uoffset 3 -1 roll transform /vg&uoffset exch def pop
8180 vg&uthick 3 -1 roll transform /vg&uthick exch def pop
819} def
820
821% Make a frame with the coordinates on the stack.
822% <llx> <lly> <urx> <ury> frame --
823/frame {4 copy m 3 1 roll exch l 4 -2 roll l l h} def
824
825% Resets the accumulated bounding box to a degenerate box at the
826% current point.
827% -- resetbbox --
828/resetbbox {
829  currentpoint 2 copy
830  /bbury exch def
831  /bburx exch def
832  /bblly exch def
833  /bbllx exch def
834} def
835
836% Update the accumulated bounding box.
837% <llx'> <lly'> <urx'> <ury'> updatebbox --
838/updatebbox {
839  dup bbury gt {/bbury exch def} {pop} ifelse
840  dup bburx gt {/bburx exch def} {pop} ifelse
841  dup bblly lt {/bblly exch def} {pop} ifelse
842  dup bbllx lt {/bbllx exch def} {pop} ifelse
843} def
844
845% Set the bounding box to the values on the stack.
846% <llx'> <lly'> <urx'> <ury'> updatebbox --
847/restorebbox {
848  /bbury exch def /bburx exch def /bblly exch def /bbllx exch def
849} def
850
851% Push the accumulated bounding box onto the stack.
852% -- pushbbox <llx> <lly> <urx> <ury>
853/pushbbox {bbllx bblly bburx bbury} def
854
855% Make the relative bounding box relative to the currentpoint.
856% <llx'> <lly'> <urx'> <ury'> inflate <llx> <lly> <urx> <ury>
857/inflate {
858  2 {fontsize 0.2 mul add 4 1 roll} repeat
859  2 {fontsize 0.2 mul sub 4 1 roll} repeat
860} def
861
862% Make the relative bounding box relative to the currentpoint.
863% <llx'> <lly'> <urx'> <ury'> relative <llx> <lly> <urx> <ury>
864/relative {
865  currentpoint 3 -1 roll add 3 1 roll add exch 4 2 roll
866  currentpoint 3 -1 roll add 3 1 roll add exch 4 2 roll
867} def
868
869% Returns the size of a string appropriate for recshow.
870% <string> stringsize <llx> <lly> <urx> <ury>
871/stringsize {
872  pushbbox /internalshow load /internalstroke load 7 -1 roll
873  q
874  nulldevice 0 0 m
875  nullinternalshow nullinternalstroke
876  resetbbox
877  recshow
878  /internalstroke exch def /internalshow exch def
879  pushbbox 8 -4 roll restorebbox
880  Q
881} def
882
883% Calculate values for string positioning.
884/calcval {4 copy
885  3 -1 roll sub /widy exch def sub neg /widx exch def
886  pop pop /dy exch def /dx exch def} def
887
888% Utilities to position a string.
889% First letter (U=upper, C=center, B=baseline, L=lower)
890% Second letter (L=left, C=center, R=right)
891/align [
892{calcval dx neg widy dy add neg rmoveto} % UL
893{calcval dx neg widy 2 div dy add neg rmoveto} % CL
894{calcval dx neg 0 rmoveto} % BL
895{calcval dx neg dy neg rmoveto} % LL
896{calcval widx dx add neg widy dy add neg rmoveto} % UR
897{calcval widx dx add neg widy 2 div dy add neg rmoveto} % CR
898{calcval widx dx add neg 0 rmoveto} % BR
899{calcval widx dx add neg dy neg rmoveto} % LR
900{calcval widx 2 div dx add neg widy dy add neg rmoveto} % UC
901{calcval widx 2 div dx add neg widy 2 div dy add neg rmoveto} % CC
902{calcval widx 2 div dx add neg 0 rmoveto} % BC
903{calcval widx 2 div dx add neg dy neg rmoveto} % LC
904] def
905
906/vg&str {m q 1 -1 scale dup stringsize 4 copy align 11 -1 roll get exec
907         q inflate relative frame exch exec Q recshow Q} def
908
909end /procDict exch def
910%%EndProlog
911
912%%BeginSetup
913save
914procDict begin
915printColorMap begin
916177 319 setpagesize
9170 0 0 0 setmargins
9180 0 setorigin
919177 319 setsize
920fittopage
921portrait
922imagescale
923cliptobounds
924setbasematrix
925/Helvetica 10 sf
926defaultGraphicsState
927%%EndSetup
928
9290.00000 0.00000 0.00000 RG
930[ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] defaultmatrix matrix concatmatrix setmatrix
931cliprestore
9321.00000 1.00000 1.00000 RG
933newpath
9340.00000 0.00000 m
935177.000 0.00000 l
936177.000 319.000 l
9370.00000 319.000 l
9380.00000 0.00000 l
939h
940f
9410.00000 0.00000 0.00000 RG
9420.00000 0.00000 0.00000 RG
943[ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] defaultmatrix matrix concatmatrix setmatrix
944cliprestore
9451.00000 1.00000 1.00000 RG
946newpath
9470.00000 0.00000 m
948177.000 0.00000 l
949177.000 319.000 l
9500.00000 319.000 l
9510.00000 0.00000 l
952h
953f
9540.00000 0.00000 0.00000 RG
955[ 1.00000 0.00000 0.00000 1.00000 -44.0000 -33.0000 ] concat
95644 33 177 319 rc
9571.00000 1.00000 1.00000 RG
958newpath
95954.0000 47.0000 m
96054.0000 338.000 l
96154.0000 340.209 55.7909 342.000 58.0000 342.000  c
962207.000 342.000 l
963209.209 342.000 211.000 340.209 211.000 338.000  c
964211.000 47.0000 l
965211.000 44.7909 209.209 43.0000 207.000 43.0000  c
96658.0000 43.0000 l
96755.7909 43.0000 54.0000 44.7909 54.0000 47.0000  c
968h
969f
9700.00000 0.00000 0.00000 RG
9712.00000 w
972newpath
97354.0000 47.0000 m
97454.0000 338.000 l
97554.0000 340.209 55.7909 342.000 58.0000 342.000  c
976207.000 342.000 l
977209.209 342.000 211.000 340.209 211.000 338.000  c
978211.000 47.0000 l
979211.000 44.7909 209.209 43.0000 207.000 43.0000  c
98058.0000 43.0000 l
98155.7909 43.0000 54.0000 44.7909 54.0000 47.0000  c
982h
983S
9841.00000 w
9851.00000 .800000 .800000 RG
986newpath
98754.0000 47.0000 m
98854.0000 116.000 l
98954.0000 118.209 55.7909 120.000 58.0000 120.000  c
990207.000 120.000 l
991209.209 120.000 211.000 118.209 211.000 116.000  c
992211.000 47.0000 l
993211.000 44.7909 209.209 43.0000 207.000 43.0000  c
99458.0000 43.0000 l
99555.7909 43.0000 54.0000 44.7909 54.0000 47.0000  c
996h
997f
9980.00000 0.00000 0.00000 RG
9992.00000 w
1000newpath
100154.0000 47.0000 m
100254.0000 116.000 l
100354.0000 118.209 55.7909 120.000 58.0000 120.000  c
1004207.000 120.000 l
1005209.209 120.000 211.000 118.209 211.000 116.000  c
1006211.000 47.0000 l
1007211.000 44.7909 209.209 43.0000 207.000 43.0000  c
100858.0000 43.0000 l
100955.7909 43.0000 54.0000 44.7909 54.0000 47.0000  c
1010h
1011S
10121.00000 w
10131.00000 1.00000 .600000 RG
1014newpath
101554.0000 269.000 m
101654.0000 338.000 l
101754.0000 340.209 55.7909 342.000 58.0000 342.000  c
1018207.000 342.000 l
1019209.209 342.000 211.000 340.209 211.000 338.000  c
1020211.000 269.000 l
1021211.000 266.791 209.209 265.000 207.000 265.000  c
102258.0000 265.000 l
102355.7909 265.000 54.0000 266.791 54.0000 269.000  c
1024h
1025f
10260.00000 0.00000 0.00000 RG
10272.00000 w
1028newpath
102954.0000 269.000 m
103054.0000 338.000 l
103154.0000 340.209 55.7909 342.000 58.0000 342.000  c
1032207.000 342.000 l
1033209.209 342.000 211.000 340.209 211.000 338.000  c
1034211.000 269.000 l
1035211.000 266.791 209.209 265.000 207.000 265.000  c
103658.0000 265.000 l
103755.7909 265.000 54.0000 266.791 54.0000 269.000  c
1038h
1039S
10401.00000 w
10411.00000 1.00000 1.00000 RG
1042newpath
1043139.000 66.0000 m
1044187.000 66.0000 l
1045187.000 98.0000 l
1046139.000 98.0000 l
1047139.000 66.0000 l
1048h
1049f
10500.00000 0.00000 0.00000 RG
10512.00000 w
1052newpath
1053139.000 66.0000 m
1054187.000 66.0000 l
1055187.000 98.0000 l
1056139.000 98.0000 l
1057139.000 66.0000 l
1058h
1059S
10601.00000 w
1061[ 1.00000 0.00000 0.00000 1.00000 128.000 45.0000 ] concat
1062newpath
10631.40625 10.5156 m
10642.64062 10.5156 l
10652.64062 12.0000 l
10661.40625 12.0000 l
10671.40625 10.5156 l
1068h
10691.40625 5.79688 m
10702.64062 5.79688 l
10712.64062 7.28125 l
10721.40625 7.28125 l
10731.40625 5.79688 l
1074h
10756.24609 3.57812 m
10766.24609 5.43750 l
10778.46484 5.43750 l
10788.46484 6.28125 l
10796.24609 6.28125 l
10806.24609 9.84375 l
10816.24609 10.3750 6.31901 10.7188 6.46484 10.8750  c
10826.61068 11.0208 6.90755 11.0938 7.35547 11.0938  c
10838.46484 11.0938 l
10848.46484 12.0000 l
10857.35547 12.0000 l
10866.52214 12.0000 5.94401 11.8438 5.62109 11.5312  c
10875.30859 11.2188 5.15234 10.6562 5.15234 9.84375  c
10885.15234 6.28125 l
10894.37109 6.28125 l
10904.37109 5.43750 l
10915.15234 5.43750 l
10925.15234 3.57812 l
10936.24609 3.57812 l
1094h
109513.6855 6.43750 m
109613.5605 6.37500 13.4251 6.32812 13.2793 6.29688  c
109713.1439 6.25521 12.9876 6.23438 12.8105 6.23438  c
109812.2064 6.23438 11.7376 6.43229 11.4043 6.82812  c
109911.0814 7.22396 10.9199 7.79688 10.9199 8.54688  c
110010.9199 12.0000 l
11019.84180 12.0000 l
11029.84180 5.43750 l
110310.9199 5.43750 l
110410.9199 6.45312 l
110511.1491 6.05729 11.4460 5.76562 11.8105 5.57812  c
110612.1751 5.38021 12.6178 5.28125 13.1387 5.28125  c
110713.2116 5.28125 13.2897 5.28646 13.3730 5.29688  c
110813.4668 5.30729 13.5658 5.32292 13.6699 5.34375  c
110913.6855 6.43750 l
1110h
111117.7910 8.70312 m
111216.9264 8.70312 16.3223 8.80208 15.9785 9.00000  c
111315.6452 9.19792 15.4785 9.53646 15.4785 10.0156  c
111415.4785 10.4010 15.6035 10.7083 15.8535 10.9375  c
111516.1139 11.1562 16.4577 11.2656 16.8848 11.2656  c
111617.4889 11.2656 17.9681 11.0573 18.3223 10.6406  c
111718.6868 10.2135 18.8691 9.64583 18.8691 8.93750  c
111818.8691 8.70312 l
111917.7910 8.70312 l
1120h
112119.9473 8.25000 m
112219.9473 12.0000 l
112318.8691 12.0000 l
112418.8691 11.0000 l
112518.6191 11.3958 18.3118 11.6927 17.9473 11.8906  c
112617.5827 12.0781 17.1348 12.1719 16.6035 12.1719  c
112715.9264 12.1719 15.3900 11.9844 14.9941 11.6094  c
112814.5983 11.2240 14.4004 10.7188 14.4004 10.0938  c
112914.4004 9.35417 14.6452 8.79688 15.1348 8.42188  c
113015.6348 8.04688 16.3743 7.85938 17.3535 7.85938  c
113118.8691 7.85938 l
113218.8691 7.75000 l
113318.8691 7.25000 18.7025 6.86458 18.3691 6.59375  c
113418.0462 6.32292 17.5931 6.18750 17.0098 6.18750  c
113516.6348 6.18750 16.2650 6.23438 15.9004 6.32812  c
113615.5462 6.42188 15.2077 6.55729 14.8848 6.73438  c
113714.8848 5.73438 l
113815.2806 5.57812 15.6608 5.46354 16.0254 5.39062  c
113916.4004 5.31771 16.7650 5.28125 17.1191 5.28125  c
114018.0671 5.28125 18.7754 5.52604 19.2441 6.01562  c
114119.7129 6.50521 19.9473 7.25000 19.9473 8.25000  c
1142h
114326.4883 6.43750 m
114426.4883 2.87500 l
114527.5664 2.87500 l
114627.5664 12.0000 l
114726.4883 12.0000 l
114826.4883 11.0156 l
114926.2591 11.4010 25.9727 11.6927 25.6289 11.8906  c
115025.2852 12.0781 24.8685 12.1719 24.3789 12.1719  c
115123.5872 12.1719 22.9414 11.8542 22.4414 11.2188  c
115221.9414 10.5833 21.6914 9.75000 21.6914 8.71875  c
115321.6914 7.68750 21.9414 6.85938 22.4414 6.23438  c
115422.9414 5.59896 23.5872 5.28125 24.3789 5.28125  c
115524.8685 5.28125 25.2852 5.37500 25.6289 5.56250  c
115625.9727 5.75000 26.2591 6.04167 26.4883 6.43750  c
1157h
115822.8164 8.71875 m
115922.8164 9.51042 22.9779 10.1354 23.3008 10.5938  c
116023.6237 11.0417 24.0716 11.2656 24.6445 11.2656  c
116125.2174 11.2656 25.6654 11.0417 25.9883 10.5938  c
116226.3216 10.1354 26.4883 9.51042 26.4883 8.71875  c
116326.4883 7.92708 26.3216 7.30729 25.9883 6.85938  c
116425.6654 6.41146 25.2174 6.18750 24.6445 6.18750  c
116524.0716 6.18750 23.6237 6.41146 23.3008 6.85938  c
116622.9779 7.30729 22.8164 7.92708 22.8164 8.71875  c
1167h
116835.4023 8.45312 m
116935.4023 8.96875 l
117030.4336 8.96875 l
117130.4857 9.71875 30.7096 10.2865 31.1055 10.6719  c
117231.5117 11.0573 32.0690 11.2500 32.7773 11.2500  c
117333.1940 11.2500 33.5951 11.2031 33.9805 11.1094  c
117434.3763 11.0052 34.7669 10.8490 35.1523 10.6406  c
117535.1523 11.6719 l
117634.7565 11.8281 34.3555 11.9479 33.9492 12.0312  c
117733.5430 12.1250 33.1315 12.1719 32.7148 12.1719  c
117831.6732 12.1719 30.8451 11.8698 30.2305 11.2656  c
117929.6159 10.6510 29.3086 9.82292 29.3086 8.78125  c
118029.3086 7.70833 29.6003 6.85938 30.1836 6.23438  c
118130.7669 5.59896 31.5482 5.28125 32.5273 5.28125  c
118233.4128 5.28125 34.1107 5.56771 34.6211 6.14062  c
118335.1419 6.70312 35.4023 7.47396 35.4023 8.45312  c
1184h
118534.3242 8.12500 m
118634.3138 7.54167 34.1471 7.07292 33.8242 6.71875  c
118733.5013 6.36458 33.0742 6.18750 32.5430 6.18750  c
118831.9388 6.18750 31.4544 6.35938 31.0898 6.70312  c
118930.7357 7.04688 30.5326 7.52604 30.4805 8.14062  c
119034.3242 8.12500 l
1191h
119239.7539 2.89062 m
119339.2331 3.78646 38.8424 4.67708 38.5820 5.56250  c
119438.3320 6.43750 38.2070 7.32812 38.2070 8.23438  c
119538.2070 9.13021 38.3320 10.0208 38.5820 10.9062  c
119638.8424 11.7917 39.2331 12.6823 39.7539 13.5781  c
119738.8164 13.5781 l
119838.2331 12.6615 37.7956 11.7604 37.5039 10.8750  c
119937.2122 9.98958 37.0664 9.10938 37.0664 8.23438  c
120037.0664 7.35938 37.2122 6.48438 37.5039 5.60938  c
120137.7956 4.72396 38.2331 3.81771 38.8164 2.89062  c
120239.7539 2.89062 l
1203h
120443.0137 11.0000 m
120547.1543 11.0000 l
120647.1543 12.0000 l
120741.5918 12.0000 l
120841.5918 11.0000 l
120942.0397 10.5417 42.6491 9.92188 43.4199 9.14062  c
121044.2012 8.34896 44.6908 7.83854 44.8887 7.60938  c
121145.2741 7.19271 45.5397 6.83854 45.6855 6.54688  c
121245.8418 6.24479 45.9199 5.95312 45.9199 5.67188  c
121345.9199 5.20312 45.7533 4.82292 45.4199 4.53125  c
121445.0970 4.23958 44.6751 4.09375 44.1543 4.09375  c
121543.7793 4.09375 43.3835 4.15625 42.9668 4.28125  c
121642.5605 4.40625 42.1230 4.60417 41.6543 4.87500  c
121741.6543 3.67188 l
121842.1335 3.48438 42.5762 3.34375 42.9824 3.25000  c
121943.3991 3.14583 43.7793 3.09375 44.1230 3.09375  c
122045.0293 3.09375 45.7533 3.32292 46.2949 3.78125  c
122146.8366 4.22917 47.1074 4.83333 47.1074 5.59375  c
122247.1074 5.94792 47.0397 6.28646 46.9043 6.60938  c
122346.7689 6.93229 46.5241 7.31250 46.1699 7.75000  c
122446.0658 7.86458 45.7533 8.19271 45.2324 8.73438  c
122544.7116 9.27604 43.9720 10.0312 43.0137 11.0000  c
1226h
122749.7578 10.5156 m
122850.9922 10.5156 l
122950.9922 11.5156 l
123050.0391 13.3906 l
123149.2734 13.3906 l
123249.7578 11.5156 l
123349.7578 10.5156 l
1234h
123562.5742 5.43750 m
123660.1992 8.62500 l
123762.6836 12.0000 l
123861.4180 12.0000 l
123959.5117 9.42188 l
124057.6055 12.0000 l
124156.3242 12.0000 l
124258.8711 8.56250 l
124356.5430 5.43750 l
124457.8086 5.43750 l
124559.5586 7.78125 l
124661.2930 5.43750 l
124762.5742 5.43750 l
1248h
124964.0508 2.89062 m
125064.9883 2.89062 l
125165.5716 3.81771 66.0091 4.72396 66.3008 5.60938  c
125266.5924 6.48438 66.7383 7.35938 66.7383 8.23438  c
125366.7383 9.10938 66.5924 9.98958 66.3008 10.8750  c
125466.0091 11.7604 65.5716 12.6615 64.9883 13.5781  c
125564.0508 13.5781 l
125664.5612 12.6823 64.9466 11.7917 65.2070 10.9062  c
125765.4674 10.0208 65.5977 9.13021 65.5977 8.23438  c
125865.5977 7.32812 65.4674 6.43750 65.2070 5.56250  c
125964.9466 4.67708 64.5612 3.78646 64.0508 2.89062  c
1260h
1261f
1262[ 1.00000 0.00000 0.00000 1.00000 -128.000 -45.0000 ] concat
12631.00000 1.00000 1.00000 RG
1264newpath
1265139.000 286.000 m
1266187.000 286.000 l
1267187.000 318.000 l
1268139.000 318.000 l
1269139.000 286.000 l
1270h
1271f
12720.00000 0.00000 0.00000 RG
12732.00000 w
1274newpath
1275139.000 286.000 m
1276187.000 286.000 l
1277187.000 318.000 l
1278139.000 318.000 l
1279139.000 286.000 l
1280h
1281S
12821.00000 w
1283[ 1.00000 0.00000 0.00000 1.00000 128.000 325.000 ] concat
1284newpath
12851.40625 10.5156 m
12862.64062 10.5156 l
12872.64062 12.0000 l
12881.40625 12.0000 l
12891.40625 10.5156 l
1290h
12911.40625 5.79688 m
12922.64062 5.79688 l
12932.64062 7.28125 l
12941.40625 7.28125 l
12951.40625 5.79688 l
1296h
12976.24609 3.57812 m
12986.24609 5.43750 l
12998.46484 5.43750 l
13008.46484 6.28125 l
13016.24609 6.28125 l
13026.24609 9.84375 l
13036.24609 10.3750 6.31901 10.7188 6.46484 10.8750  c
13046.61068 11.0208 6.90755 11.0938 7.35547 11.0938  c
13058.46484 11.0938 l
13068.46484 12.0000 l
13077.35547 12.0000 l
13086.52214 12.0000 5.94401 11.8438 5.62109 11.5312  c
13095.30859 11.2188 5.15234 10.6562 5.15234 9.84375  c
13105.15234 6.28125 l
13114.37109 6.28125 l
13124.37109 5.43750 l
13135.15234 5.43750 l
13145.15234 3.57812 l
13156.24609 3.57812 l
1316h
131713.6855 6.43750 m
131813.5605 6.37500 13.4251 6.32812 13.2793 6.29688  c
131913.1439 6.25521 12.9876 6.23438 12.8105 6.23438  c
132012.2064 6.23438 11.7376 6.43229 11.4043 6.82812  c
132111.0814 7.22396 10.9199 7.79688 10.9199 8.54688  c
132210.9199 12.0000 l
13239.84180 12.0000 l
13249.84180 5.43750 l
132510.9199 5.43750 l
132610.9199 6.45312 l
132711.1491 6.05729 11.4460 5.76562 11.8105 5.57812  c
132812.1751 5.38021 12.6178 5.28125 13.1387 5.28125  c
132913.2116 5.28125 13.2897 5.28646 13.3730 5.29688  c
133013.4668 5.30729 13.5658 5.32292 13.6699 5.34375  c
133113.6855 6.43750 l
1332h
133317.7910 8.70312 m
133416.9264 8.70312 16.3223 8.80208 15.9785 9.00000  c
133515.6452 9.19792 15.4785 9.53646 15.4785 10.0156  c
133615.4785 10.4010 15.6035 10.7083 15.8535 10.9375  c
133716.1139 11.1562 16.4577 11.2656 16.8848 11.2656  c
133817.4889 11.2656 17.9681 11.0573 18.3223 10.6406  c
133918.6868 10.2135 18.8691 9.64583 18.8691 8.93750  c
134018.8691 8.70312 l
134117.7910 8.70312 l
1342h
134319.9473 8.25000 m
134419.9473 12.0000 l
134518.8691 12.0000 l
134618.8691 11.0000 l
134718.6191 11.3958 18.3118 11.6927 17.9473 11.8906  c
134817.5827 12.0781 17.1348 12.1719 16.6035 12.1719  c
134915.9264 12.1719 15.3900 11.9844 14.9941 11.6094  c
135014.5983 11.2240 14.4004 10.7188 14.4004 10.0938  c
135114.4004 9.35417 14.6452 8.79688 15.1348 8.42188  c
135215.6348 8.04688 16.3743 7.85938 17.3535 7.85938  c
135318.8691 7.85938 l
135418.8691 7.75000 l
135518.8691 7.25000 18.7025 6.86458 18.3691 6.59375  c
135618.0462 6.32292 17.5931 6.18750 17.0098 6.18750  c
135716.6348 6.18750 16.2650 6.23438 15.9004 6.32812  c
135815.5462 6.42188 15.2077 6.55729 14.8848 6.73438  c
135914.8848 5.73438 l
136015.2806 5.57812 15.6608 5.46354 16.0254 5.39062  c
136116.4004 5.31771 16.7650 5.28125 17.1191 5.28125  c
136218.0671 5.28125 18.7754 5.52604 19.2441 6.01562  c
136319.7129 6.50521 19.9473 7.25000 19.9473 8.25000  c
1364h
136526.4883 6.43750 m
136626.4883 2.87500 l
136727.5664 2.87500 l
136827.5664 12.0000 l
136926.4883 12.0000 l
137026.4883 11.0156 l
137126.2591 11.4010 25.9727 11.6927 25.6289 11.8906  c
137225.2852 12.0781 24.8685 12.1719 24.3789 12.1719  c
137323.5872 12.1719 22.9414 11.8542 22.4414 11.2188  c
137421.9414 10.5833 21.6914 9.75000 21.6914 8.71875  c
137521.6914 7.68750 21.9414 6.85938 22.4414 6.23438  c
137622.9414 5.59896 23.5872 5.28125 24.3789 5.28125  c
137724.8685 5.28125 25.2852 5.37500 25.6289 5.56250  c
137825.9727 5.75000 26.2591 6.04167 26.4883 6.43750  c
1379h
138022.8164 8.71875 m
138122.8164 9.51042 22.9779 10.1354 23.3008 10.5938  c
138223.6237 11.0417 24.0716 11.2656 24.6445 11.2656  c
138325.2174 11.2656 25.6654 11.0417 25.9883 10.5938  c
138426.3216 10.1354 26.4883 9.51042 26.4883 8.71875  c
138526.4883 7.92708 26.3216 7.30729 25.9883 6.85938  c
138625.6654 6.41146 25.2174 6.18750 24.6445 6.18750  c
138724.0716 6.18750 23.6237 6.41146 23.3008 6.85938  c
138822.9779 7.30729 22.8164 7.92708 22.8164 8.71875  c
1389h
139035.4023 8.45312 m
139135.4023 8.96875 l
139230.4336 8.96875 l
139330.4857 9.71875 30.7096 10.2865 31.1055 10.6719  c
139431.5117 11.0573 32.0690 11.2500 32.7773 11.2500  c
139533.1940 11.2500 33.5951 11.2031 33.9805 11.1094  c
139634.3763 11.0052 34.7669 10.8490 35.1523 10.6406  c
139735.1523 11.6719 l
139834.7565 11.8281 34.3555 11.9479 33.9492 12.0312  c
139933.5430 12.1250 33.1315 12.1719 32.7148 12.1719  c
140031.6732 12.1719 30.8451 11.8698 30.2305 11.2656  c
140129.6159 10.6510 29.3086 9.82292 29.3086 8.78125  c
140229.3086 7.70833 29.6003 6.85938 30.1836 6.23438  c
140330.7669 5.59896 31.5482 5.28125 32.5273 5.28125  c
140433.4128 5.28125 34.1107 5.56771 34.6211 6.14062  c
140535.1419 6.70312 35.4023 7.47396 35.4023 8.45312  c
1406h
140734.3242 8.12500 m
140834.3138 7.54167 34.1471 7.07292 33.8242 6.71875  c
140933.5013 6.36458 33.0742 6.18750 32.5430 6.18750  c
141031.9388 6.18750 31.4544 6.35938 31.0898 6.70312  c
141130.7357 7.04688 30.5326 7.52604 30.4805 8.14062  c
141234.3242 8.12500 l
1413h
141439.7539 2.89062 m
141539.2331 3.78646 38.8424 4.67708 38.5820 5.56250  c
141638.3320 6.43750 38.2070 7.32812 38.2070 8.23438  c
141738.2070 9.13021 38.3320 10.0208 38.5820 10.9062  c
141838.8424 11.7917 39.2331 12.6823 39.7539 13.5781  c
141938.8164 13.5781 l
142038.2331 12.6615 37.7956 11.7604 37.5039 10.8750  c
142137.2122 9.98958 37.0664 9.10938 37.0664 8.23438  c
142237.0664 7.35938 37.2122 6.48438 37.5039 5.60938  c
142337.7956 4.72396 38.2331 3.81771 38.8164 2.89062  c
142439.7539 2.89062 l
1425h
142645.5918 7.28125 m
142746.1543 7.40625 46.5918 7.66146 46.9043 8.04688  c
142847.2272 8.42188 47.3887 8.89062 47.3887 9.45312  c
142947.3887 10.3177 47.0918 10.9896 46.4980 11.4688  c
143045.9043 11.9375 45.0605 12.1719 43.9668 12.1719  c
143143.6022 12.1719 43.2220 12.1354 42.8262 12.0625  c
143242.4408 11.9896 42.0449 11.8802 41.6387 11.7344  c
143341.6387 10.5938 l
143441.9616 10.7812 42.3158 10.9271 42.7012 11.0312  c
143543.0970 11.1250 43.5085 11.1719 43.9355 11.1719  c
143644.6751 11.1719 45.2376 11.0260 45.6230 10.7344  c
143746.0189 10.4427 46.2168 10.0156 46.2168 9.45312  c
143846.2168 8.94271 46.0345 8.54167 45.6699 8.25000  c
143945.3053 7.95833 44.8053 7.81250 44.1699 7.81250  c
144043.1387 7.81250 l
144143.1387 6.84375 l
144244.2168 6.84375 l
144344.7897 6.84375 45.2324 6.72917 45.5449 6.50000  c
144445.8574 6.26042 46.0137 5.92188 46.0137 5.48438  c
144546.0137 5.03646 45.8522 4.69271 45.5293 4.45312  c
144645.2168 4.21354 44.7637 4.09375 44.1699 4.09375  c
144743.8366 4.09375 43.4824 4.13021 43.1074 4.20312  c
144842.7428 4.26562 42.3366 4.36979 41.8887 4.51562  c
144941.8887 3.46875 l
145042.3470 3.34375 42.7689 3.25000 43.1543 3.18750  c
145143.5501 3.12500 43.9199 3.09375 44.2637 3.09375  c
145245.1699 3.09375 45.8835 3.29688 46.4043 3.70312  c
145346.9251 4.10938 47.1855 4.66146 47.1855 5.35938  c
145447.1855 5.84896 47.0449 6.26042 46.7637 6.59375  c
145546.4928 6.92708 46.1022 7.15625 45.5918 7.28125  c
1456h
145749.7578 10.5156 m
145850.9922 10.5156 l
145950.9922 11.5156 l
146050.0391 13.3906 l
146149.2734 13.3906 l
146249.7578 11.5156 l
146349.7578 10.5156 l
1464h
146562.5742 5.43750 m
146660.1992 8.62500 l
146762.6836 12.0000 l
146861.4180 12.0000 l
146959.5117 9.42188 l
147057.6055 12.0000 l
147156.3242 12.0000 l
147258.8711 8.56250 l
147356.5430 5.43750 l
147457.8086 5.43750 l
147559.5586 7.78125 l
147661.2930 5.43750 l
147762.5742 5.43750 l
1478h
147964.0508 2.89062 m
148064.9883 2.89062 l
148165.5716 3.81771 66.0091 4.72396 66.3008 5.60938  c
148266.5924 6.48438 66.7383 7.35938 66.7383 8.23438  c
148366.7383 9.10938 66.5924 9.98958 66.3008 10.8750  c
148466.0091 11.7604 65.5716 12.6615 64.9883 13.5781  c
148564.0508 13.5781 l
148664.5612 12.6823 64.9466 11.7917 65.2070 10.9062  c
148765.4674 10.0208 65.5977 9.13021 65.5977 8.23438  c
148865.5977 7.32812 65.4674 6.43750 65.2070 5.56250  c
148964.9466 4.67708 64.5612 3.78646 64.0508 2.89062  c
1490h
1491f
1492[ 1.00000 0.00000 0.00000 1.00000 -128.000 -325.000 ] concat
14931.00000 1.00000 1.00000 RG
1494newpath
1495183.000 192.000 m
1496183.000 203.046 174.046 212.000 163.000 212.000  c
1497151.954 212.000 143.000 203.046 143.000 192.000  c
1498143.000 180.954 151.954 172.000 163.000 172.000  c
1499174.046 172.000 183.000 180.954 183.000 192.000  c
1500h
1501f
15020.00000 0.00000 0.00000 RG
15032.00000 w
1504newpath
1505183.000 192.000 m
1506183.000 203.046 174.046 212.000 163.000 212.000  c
1507151.954 212.000 143.000 203.046 143.000 192.000  c
1508143.000 180.954 151.954 172.000 163.000 172.000  c
1509174.046 172.000 183.000 180.954 183.000 192.000  c
1510h
1511S
15121.00000 w
15131.00000 1.00000 1.00000 RG
15140.00000 0.00000 0.00000 RG
15152.00000 w
1516newpath
1517153.000 98.0000 m
1518153.000 98.0000 l
1519133.000 135.000 l
1520155.000 175.000 l
1521S
15221.00000 w
1523newpath
1524155.000 175.000 m
1525155.000 168.000 l
1526152.000 168.000 l
1527149.000 171.000 l
1528h
1529f
1530newpath
1531155.000 175.000 m
1532155.000 168.000 l
1533152.000 168.000 l
1534149.000 171.000 l
1535h
1536S
15372.00000 w
15381.00000 w
15391.00000 1.00000 1.00000 RG
15400.00000 0.00000 0.00000 RG
15412.00000 w
1542newpath
1543155.000 210.000 m
1544155.000 210.000 l
1545133.000 249.000 l
1546153.000 286.000 l
1547S
15481.00000 w
1549newpath
1550153.000 286.000 m
1551153.000 279.000 l
1552150.000 279.000 l
1553147.000 281.000 l
1554h
1555f
1556newpath
1557153.000 286.000 m
1558153.000 279.000 l
1559150.000 279.000 l
1560147.000 281.000 l
1561h
1562S
15632.00000 w
15641.00000 w
1565.996078 .996078 .996078 RG
1566[ 1.00000 0.00000 0.00000 1.00000 141.000 129.000 ] concat
1567newpath
15680.00000 0.00000 m
15696.00000 0.00000 l
15706.00000 15.0000 l
15710.00000 15.0000 l
15720.00000 0.00000 l
1573h
1574f
15750.00000 0.00000 0.00000 RG
1576newpath
15776.59375 5.43750 m
15784.21875 8.62500 l
15796.70312 12.0000 l
15805.43750 12.0000 l
15813.53125 9.42188 l
15821.62500 12.0000 l
1583.343750 12.0000 l
15842.89062 8.56250 l
1585.562500 5.43750 l
15861.82812 5.43750 l
15873.57812 7.78125 l
15885.31250 5.43750 l
15896.59375 5.43750 l
1590h
1591f
1592[ 1.00000 0.00000 0.00000 1.00000 -141.000 -129.000 ] concat
15931.00000 1.00000 1.00000 RG
15940.00000 0.00000 0.00000 RG
15952.00000 w
1596newpath
1597172.000 175.000 m
1598172.000 175.000 l
1599193.000 135.000 l
1600172.000 98.0000 l
1601S
16021.00000 w
1603newpath
1604172.000 98.0000 m
1605172.000 105.000 l
1606175.000 104.000 l
1607178.000 102.000 l
1608h
1609f
1610newpath
1611172.000 98.0000 m
1612172.000 105.000 l
1613175.000 104.000 l
1614178.000 102.000 l
1615h
1616S
16172.00000 w
16181.00000 w
16191.00000 1.00000 1.00000 RG
16200.00000 0.00000 0.00000 RG
16212.00000 w
1622newpath
1623172.000 286.000 m
1624172.000 286.000 l
1625193.000 249.000 l
1626172.000 210.000 l
1627S
16281.00000 w
1629newpath
1630172.000 210.000 m
1631172.000 217.000 l
1632175.000 217.000 l
1633178.000 215.000 l
1634h
1635f
1636newpath
1637172.000 210.000 m
1638172.000 217.000 l
1639175.000 217.000 l
1640178.000 215.000 l
1641h
1642S
16432.00000 w
16441.00000 w
1645.996078 .996078 .996078 RG
1646[ 1.00000 0.00000 0.00000 1.00000 179.000 241.000 ] concat
1647newpath
16480.00000 0.00000 m
16496.00000 0.00000 l
16506.00000 15.0000 l
16510.00000 15.0000 l
16520.00000 0.00000 l
1653h
1654f
16550.00000 0.00000 0.00000 RG
1656newpath
16576.59375 5.43750 m
16584.21875 8.62500 l
16596.70312 12.0000 l
16605.43750 12.0000 l
16613.53125 9.42188 l
16621.62500 12.0000 l
1663.343750 12.0000 l
16642.89062 8.56250 l
1665.562500 5.43750 l
16661.82812 5.43750 l
16673.57812 7.78125 l
16685.31250 5.43750 l
16696.59375 5.43750 l
1670h
1671f
1672[ 1.00000 0.00000 0.00000 1.00000 -179.000 -241.000 ] concat
1673.996078 .996078 .996078 RG
1674[ 1.00000 0.00000 0.00000 1.00000 140.000 241.000 ] concat
1675newpath
16760.00000 0.00000 m
16778.00000 0.00000 l
16788.00000 15.0000 l
16790.00000 15.0000 l
16800.00000 0.00000 l
1681h
1682f
16830.00000 0.00000 0.00000 RG
1684newpath
16854.87500 7.28125 m
16865.43750 7.40625 5.87500 7.66146 6.18750 8.04688  c
16876.51042 8.42188 6.67188 8.89062 6.67188 9.45312  c
16886.67188 10.3177 6.37500 10.9896 5.78125 11.4688  c
16895.18750 11.9375 4.34375 12.1719 3.25000 12.1719  c
16902.88542 12.1719 2.50521 12.1354 2.10938 12.0625  c
16911.72396 11.9896 1.32812 11.8802 .921875 11.7344  c
1692.921875 10.5938 l
16931.24479 10.7812 1.59896 10.9271 1.98438 11.0312  c
16942.38021 11.1250 2.79167 11.1719 3.21875 11.1719  c
16953.95833 11.1719 4.52083 11.0260 4.90625 10.7344  c
16965.30208 10.4427 5.50000 10.0156 5.50000 9.45312  c
16975.50000 8.94271 5.31771 8.54167 4.95312 8.25000  c
16984.58854 7.95833 4.08854 7.81250 3.45312 7.81250  c
16992.42188 7.81250 l
17002.42188 6.84375 l
17013.50000 6.84375 l
17024.07292 6.84375 4.51562 6.72917 4.82812 6.50000  c
17035.14062 6.26042 5.29688 5.92188 5.29688 5.48438  c
17045.29688 5.03646 5.13542 4.69271 4.81250 4.45312  c
17054.50000 4.21354 4.04688 4.09375 3.45312 4.09375  c
17063.11979 4.09375 2.76562 4.13021 2.39062 4.20312  c
17072.02604 4.26562 1.61979 4.36979 1.17188 4.51562  c
17081.17188 3.46875 l
17091.63021 3.34375 2.05208 3.25000 2.43750 3.18750  c
17102.83333 3.12500 3.20312 3.09375 3.54688 3.09375  c
17114.45312 3.09375 5.16667 3.29688 5.68750 3.70312  c
17126.20833 4.10938 6.46875 4.66146 6.46875 5.35938  c
17136.46875 5.84896 6.32812 6.26042 6.04688 6.59375  c
17145.77604 6.92708 5.38542 7.15625 4.87500 7.28125  c
1715h
1716f
1717[ 1.00000 0.00000 0.00000 1.00000 -140.000 -241.000 ] concat
1718[ 1.00000 0.00000 0.00000 1.00000 84.0000 185.000 ] concat
1719newpath
17201.10938 3.25000 m
17213.96875 3.25000 l
17225.96875 7.93750 l
17237.96875 3.25000 l
172410.8281 3.25000 l
172510.8281 12.0000 l
17268.70312 12.0000 l
17278.70312 5.59375 l
17286.68750 10.3125 l
17295.25000 10.3125 l
17303.23438 5.59375 l
17313.23438 12.0000 l
17321.10938 12.0000 l
17331.10938 3.25000 l
1734h
173516.0664 6.78125 m
173615.6081 6.78125 15.2539 6.94792 15.0039 7.28125  c
173714.7643 7.61458 14.6445 8.09375 14.6445 8.71875  c
173814.6445 9.35417 14.7643 9.83854 15.0039 10.1719  c
173915.2539 10.5052 15.6081 10.6719 16.0664 10.6719  c
174016.5247 10.6719 16.8737 10.5052 17.1133 10.1719  c
174117.3633 9.83854 17.4883 9.35417 17.4883 8.71875  c
174217.4883 8.09375 17.3633 7.61458 17.1133 7.28125  c
174316.8737 6.94792 16.5247 6.78125 16.0664 6.78125  c
1744h
174516.0664 5.28125 m
174617.2018 5.28125 18.0872 5.58854 18.7227 6.20312  c
174719.3581 6.80729 19.6758 7.64583 19.6758 8.71875  c
174819.6758 9.80208 19.3581 10.6510 18.7227 11.2656  c
174918.0872 11.8698 17.2018 12.1719 16.0664 12.1719  c
175014.9414 12.1719 14.0560 11.8698 13.4102 11.2656  c
175112.7747 10.6510 12.4570 9.80208 12.4570 8.71875  c
175212.4570 7.64583 12.7747 6.80729 13.4102 6.20312  c
175314.0560 5.58854 14.9414 5.28125 16.0664 5.28125  c
1754h
175527.7949 8.00000 m
175627.7949 12.0000 l
175725.6855 12.0000 l
175825.6855 11.3438 l
175925.6855 8.93750 l
176025.6855 8.37500 25.6699 7.98958 25.6387 7.78125  c
176125.6178 7.56250 25.5762 7.40104 25.5137 7.29688  c
176225.4303 7.16146 25.3158 7.05729 25.1699 6.98438  c
176325.0345 6.90104 24.8783 6.85938 24.7012 6.85938  c
176424.2637 6.85938 23.9199 7.03125 23.6699 7.37500  c
176523.4199 7.70833 23.2949 8.17188 23.2949 8.76562  c
176623.2949 12.0000 l
176721.2012 12.0000 l
176821.2012 5.43750 l
176923.2949 5.43750 l
177023.2949 6.39062 l
177123.6074 6.01562 23.9408 5.73958 24.2949 5.56250  c
177224.6491 5.37500 25.0449 5.28125 25.4824 5.28125  c
177326.2324 5.28125 26.8053 5.51562 27.2012 5.98438  c
177427.5970 6.44271 27.7949 7.11458 27.7949 8.00000  c
1775h
177636.2910 8.70312 m
177736.2910 9.29688 l
177831.3848 9.29688 l
177931.4368 9.78646 31.6139 10.1562 31.9160 10.4062  c
178032.2181 10.6562 32.6452 10.7812 33.1973 10.7812  c
178133.6348 10.7812 34.0827 10.7135 34.5410 10.5781  c
178235.0098 10.4427 35.4889 10.2448 35.9785 9.98438  c
178335.9785 11.5938 l
178435.4785 11.7812 34.9785 11.9219 34.4785 12.0156  c
178533.9889 12.1198 33.4941 12.1719 32.9941 12.1719  c
178631.8066 12.1719 30.8848 11.8698 30.2285 11.2656  c
178729.5723 10.6615 29.2441 9.81250 29.2441 8.71875  c
178829.2441 7.65625 29.5671 6.81771 30.2129 6.20312  c
178930.8587 5.58854 31.7493 5.28125 32.8848 5.28125  c
179033.9160 5.28125 34.7389 5.59375 35.3535 6.21875  c
179135.9785 6.83333 36.2910 7.66146 36.2910 8.70312  c
1792h
179334.1348 8.00000 m
179434.1348 7.60417 34.0150 7.28646 33.7754 7.04688  c
179533.5462 6.79688 33.2441 6.67188 32.8691 6.67188  c
179632.4629 6.67188 32.1296 6.78646 31.8691 7.01562  c
179731.6191 7.24479 31.4629 7.57292 31.4004 8.00000  c
179834.1348 8.00000 l
1799h
180037.0078 5.43750 m
180139.1172 5.43750 l
180240.8828 9.89062 l
180342.3828 5.43750 l
180444.4766 5.43750 l
180541.7109 12.6250 l
180641.4401 13.3542 41.1172 13.8646 40.7422 14.1562  c
180740.3776 14.4479 39.8932 14.5938 39.2891 14.5938  c
180838.0703 14.5938 l
180938.0703 13.2188 l
181038.7266 13.2188 l
181139.0807 13.2188 39.3359 13.1615 39.4922 13.0469  c
181239.6589 12.9323 39.7891 12.7292 39.8828 12.4375  c
181339.9453 12.2500 l
181437.0078 5.43750 l
1815h
1816f
1817[ 1.00000 0.00000 0.00000 1.00000 -84.0000 -185.000 ] concat
1818[ 1.00000 0.00000 0.00000 1.00000 151.000 185.000 ] concat
1819newpath
18201.48438 11.0000 m
18213.42188 11.0000 l
18223.42188 4.32812 l
18231.31250 4.75000 l
18241.31250 3.67188 l
18253.40625 3.25000 l
18264.59375 3.25000 l
18274.59375 11.0000 l
18286.53125 11.0000 l
18296.53125 12.0000 l
18301.48438 12.0000 l
18311.48438 11.0000 l
1832h
183311.4473 4.03125 m
183410.8431 4.03125 10.3848 4.33333 10.0723 4.93750  c
18359.77018 5.53125 9.61914 6.43229 9.61914 7.64062  c
18369.61914 8.83854 9.77018 9.73958 10.0723 10.3438  c
183710.3848 10.9375 10.8431 11.2344 11.4473 11.2344  c
183812.0618 11.2344 12.5202 10.9375 12.8223 10.3438  c
183913.1348 9.73958 13.2910 8.83854 13.2910 7.64062  c
184013.2910 6.43229 13.1348 5.53125 12.8223 4.93750  c
184112.5202 4.33333 12.0618 4.03125 11.4473 4.03125  c
1842h
184311.4473 3.09375 m
184412.4264 3.09375 13.1764 3.48438 13.6973 4.26562  c
184514.2181 5.03646 14.4785 6.16146 14.4785 7.64062  c
184614.4785 9.10938 14.2181 10.2344 13.6973 11.0156  c
184713.1764 11.7865 12.4264 12.1719 11.4473 12.1719  c
184810.4681 12.1719 9.71810 11.7865 9.19727 11.0156  c
18498.68685 10.2344 8.43164 9.10938 8.43164 7.64062  c
18508.43164 6.16146 8.68685 5.03646 9.19727 4.26562  c
18519.71810 3.48438 10.4681 3.09375 11.4473 3.09375  c
1852h
185319.0820 4.03125 m
185418.4779 4.03125 18.0195 4.33333 17.7070 4.93750  c
185517.4049 5.53125 17.2539 6.43229 17.2539 7.64062  c
185617.2539 8.83854 17.4049 9.73958 17.7070 10.3438  c
185718.0195 10.9375 18.4779 11.2344 19.0820 11.2344  c
185819.6966 11.2344 20.1549 10.9375 20.4570 10.3438  c
185920.7695 9.73958 20.9258 8.83854 20.9258 7.64062  c
186020.9258 6.43229 20.7695 5.53125 20.4570 4.93750  c
186120.1549 4.33333 19.6966 4.03125 19.0820 4.03125  c
1862h
186319.0820 3.09375 m
186420.0612 3.09375 20.8112 3.48438 21.3320 4.26562  c
186521.8529 5.03646 22.1133 6.16146 22.1133 7.64062  c
186622.1133 9.10938 21.8529 10.2344 21.3320 11.0156  c
186720.8112 11.7865 20.0612 12.1719 19.0820 12.1719  c
186818.1029 12.1719 17.3529 11.7865 16.8320 11.0156  c
186916.3216 10.2344 16.0664 9.10938 16.0664 7.64062  c
187016.0664 6.16146 16.3216 5.03646 16.8320 4.26562  c
187117.3529 3.48438 18.1029 3.09375 19.0820 3.09375  c
1872h
1873f
1874[ 1.00000 0.00000 0.00000 1.00000 -151.000 -185.000 ] concat
1875.996078 .996078 .996078 RG
1876[ 1.00000 0.00000 0.00000 1.00000 178.000 129.000 ] concat
1877newpath
18780.00000 0.00000 m
18798.00000 0.00000 l
18808.00000 15.0000 l
18810.00000 15.0000 l
18820.00000 0.00000 l
1883h
1884f
18850.00000 0.00000 0.00000 RG
1886newpath
18872.29688 11.0000 m
18886.43750 11.0000 l
18896.43750 12.0000 l
1890.875000 12.0000 l
1891.875000 11.0000 l
18921.32292 10.5417 1.93229 9.92188 2.70312 9.14062  c
18933.48438 8.34896 3.97396 7.83854 4.17188 7.60938  c
18944.55729 7.19271 4.82292 6.83854 4.96875 6.54688  c
18955.12500 6.24479 5.20312 5.95312 5.20312 5.67188  c
18965.20312 5.20312 5.03646 4.82292 4.70312 4.53125  c
18974.38021 4.23958 3.95833 4.09375 3.43750 4.09375  c
18983.06250 4.09375 2.66667 4.15625 2.25000 4.28125  c
18991.84375 4.40625 1.40625 4.60417 .937500 4.87500  c
1900.937500 3.67188 l
19011.41667 3.48438 1.85938 3.34375 2.26562 3.25000  c
19022.68229 3.14583 3.06250 3.09375 3.40625 3.09375  c
19034.31250 3.09375 5.03646 3.32292 5.57812 3.78125  c
19046.11979 4.22917 6.39062 4.83333 6.39062 5.59375  c
19056.39062 5.94792 6.32292 6.28646 6.18750 6.60938  c
19066.05208 6.93229 5.80729 7.31250 5.45312 7.75000  c
19075.34896 7.86458 5.03646 8.19271 4.51562 8.73438  c
19083.99479 9.27604 3.25521 10.0312 2.29688 11.0000  c
1909h
1910f
1911[ 1.00000 0.00000 0.00000 1.00000 -178.000 -129.000 ] concat
1912[ 1.00000 0.00000 0.00000 1.00000 57.0000 265.000 ] concat
1913newpath
19141.17188 3.25000 m
19152.35938 3.25000 l
19162.35938 6.84375 l
19176.65625 6.84375 l
19186.65625 3.25000 l
19197.84375 3.25000 l
19207.84375 12.0000 l
19216.65625 12.0000 l
19226.65625 7.82812 l
19232.35938 7.82812 l
19242.35938 12.0000 l
19251.17188 12.0000 l
19261.17188 3.25000 l
1927h
192810.1484 5.43750 m
192911.2266 5.43750 l
193011.2266 12.0000 l
193110.1484 12.0000 l
193210.1484 5.43750 l
1933h
193410.1484 2.87500 m
193511.2266 2.87500 l
193611.2266 4.25000 l
193710.1484 4.25000 l
193810.1484 2.87500 l
1939h
194017.8105 8.64062 m
194117.8105 7.85938 17.6491 7.25521 17.3262 6.82812  c
194217.0033 6.40104 16.5501 6.18750 15.9668 6.18750  c
194315.3939 6.18750 14.9460 6.40104 14.6230 6.82812  c
194414.3001 7.25521 14.1387 7.85938 14.1387 8.64062  c
194514.1387 9.42188 14.3001 10.0260 14.6230 10.4531  c
194614.9460 10.8802 15.3939 11.0938 15.9668 11.0938  c
194716.5501 11.0938 17.0033 10.8802 17.3262 10.4531  c
194817.6491 10.0260 17.8105 9.42188 17.8105 8.64062  c
1949h
195018.8887 11.1875 m
195118.8887 12.3021 18.6387 13.1302 18.1387 13.6719  c
195217.6491 14.2240 16.8887 14.5000 15.8574 14.5000  c
195315.4824 14.5000 15.1230 14.4688 14.7793 14.4062  c
195414.4460 14.3542 14.1230 14.2708 13.8105 14.1562  c
195513.8105 13.1094 l
195614.1230 13.2760 14.4355 13.4010 14.7480 13.4844  c
195715.0605 13.5677 15.3730 13.6094 15.6855 13.6094  c
195816.3939 13.6094 16.9251 13.4219 17.2793 13.0469  c
195917.6335 12.6823 17.8105 12.1250 17.8105 11.3750  c
196017.8105 10.8438 l
196117.5814 11.2292 17.2949 11.5208 16.9512 11.7188  c
196216.6074 11.9062 16.1908 12.0000 15.7012 12.0000  c
196314.8991 12.0000 14.2480 11.6927 13.7480 11.0781  c
196413.2585 10.4635 13.0137 9.65104 13.0137 8.64062  c
196513.0137 7.63021 13.2585 6.81771 13.7480 6.20312  c
196614.2480 5.58854 14.8991 5.28125 15.7012 5.28125  c
196716.1908 5.28125 16.6074 5.38021 16.9512 5.57812  c
196817.2949 5.76562 17.5814 6.05208 17.8105 6.43750  c
196917.8105 5.43750 l
197018.8887 5.43750 l
197118.8887 11.1875 l
1972h
197326.5684 8.03125 m
197426.5684 12.0000 l
197525.4902 12.0000 l
197625.4902 8.07812 l
197725.4902 7.45312 25.3652 6.98958 25.1152 6.68750  c
197824.8757 6.37500 24.5163 6.21875 24.0371 6.21875  c
197923.4538 6.21875 22.9902 6.40625 22.6465 6.78125  c
198022.3132 7.14583 22.1465 7.65104 22.1465 8.29688  c
198122.1465 12.0000 l
198221.0684 12.0000 l
198321.0684 2.87500 l
198422.1465 2.87500 l
198522.1465 6.45312 l
198622.4069 6.05729 22.7090 5.76562 23.0527 5.57812  c
198723.4069 5.38021 23.8132 5.28125 24.2715 5.28125  c
198825.0215 5.28125 25.5892 5.51562 25.9746 5.98438  c
198926.3704 6.44271 26.5684 7.12500 26.5684 8.03125  c
1990h
199128.1738 8.23438 m
199231.3301 8.23438 l
199331.3301 9.18750 l
199428.1738 9.18750 l
199528.1738 8.23438 l
1996h
1997f
1998newpath
19994.73438 19.0469 m
20003.86979 19.0469 3.18229 19.3698 2.67188 20.0156  c
20012.17188 20.6510 1.92188 21.5260 1.92188 22.6406  c
20021.92188 23.7344 2.17188 24.6042 2.67188 25.2500  c
20033.18229 25.8854 3.86979 26.2031 4.73438 26.2031  c
20045.58854 26.2031 6.26562 25.8854 6.76562 25.2500  c
20057.27604 24.6042 7.53125 23.7344 7.53125 22.6406  c
20067.53125 21.5260 7.27604 20.6510 6.76562 20.0156  c
20076.26562 19.3698 5.58854 19.0469 4.73438 19.0469  c
2008h
20096.39062 26.8438 m
20107.95312 28.5469 l
20116.51562 28.5469 l
20125.21875 27.1406 l
20135.09375 27.1510 4.99479 27.1562 4.92188 27.1562  c
20144.85938 27.1667 4.79688 27.1719 4.73438 27.1719  c
20153.50521 27.1719 2.52083 26.7604 1.78125 25.9375  c
20161.04167 25.1146 .671875 24.0156 .671875 22.6406  c
2017.671875 21.2552 1.04167 20.1510 1.78125 19.3281  c
20182.52083 18.5052 3.50521 18.0938 4.73438 18.0938  c
20195.95312 18.0938 6.92708 18.5052 7.65625 19.3281  c
20208.39583 20.1510 8.76562 21.2552 8.76562 22.6406  c
20218.76562 23.6510 8.56250 24.5208 8.15625 25.2500  c
20227.75000 25.9688 7.16146 26.5000 6.39062 26.8438  c
2023h
202410.4609 24.4062 m
202510.4609 20.4375 l
202611.5391 20.4375 l
202711.5391 24.3750 l
202811.5391 24.9896 11.6589 25.4531 11.8984 25.7656  c
202912.1484 26.0781 12.5130 26.2344 12.9922 26.2344  c
203013.5755 26.2344 14.0339 26.0521 14.3672 25.6875  c
203114.7109 25.3125 14.8828 24.8021 14.8828 24.1562  c
203214.8828 20.4375 l
203315.9609 20.4375 l
203415.9609 27.0000 l
203514.8828 27.0000 l
203614.8828 25.9844 l
203714.6224 26.3906 14.3203 26.6927 13.9766 26.8906  c
203813.6328 27.0781 13.2318 27.1719 12.7734 27.1719  c
203912.0130 27.1719 11.4349 26.9375 11.0391 26.4688  c
204010.6536 26.0000 10.4609 25.3125 10.4609 24.4062  c
2041h
204213.1797 20.2812 m
204313.1797 20.2812 l
2044h
204521.1602 23.7031 m
204620.2956 23.7031 19.6914 23.8021 19.3477 24.0000  c
204719.0143 24.1979 18.8477 24.5365 18.8477 25.0156  c
204818.8477 25.4010 18.9727 25.7083 19.2227 25.9375  c
204919.4831 26.1562 19.8268 26.2656 20.2539 26.2656  c
205020.8581 26.2656 21.3372 26.0573 21.6914 25.6406  c
205122.0560 25.2135 22.2383 24.6458 22.2383 23.9375  c
205222.2383 23.7031 l
205321.1602 23.7031 l
2054h
205523.3164 23.2500 m
205623.3164 27.0000 l
205722.2383 27.0000 l
205822.2383 26.0000 l
205921.9883 26.3958 21.6810 26.6927 21.3164 26.8906  c
206020.9518 27.0781 20.5039 27.1719 19.9727 27.1719  c
206119.2956 27.1719 18.7591 26.9844 18.3633 26.6094  c
206217.9674 26.2240 17.7695 25.7188 17.7695 25.0938  c
206317.7695 24.3542 18.0143 23.7969 18.5039 23.4219  c
206419.0039 23.0469 19.7435 22.8594 20.7227 22.8594  c
206522.2383 22.8594 l
206622.2383 22.7500 l
206722.2383 22.2500 22.0716 21.8646 21.7383 21.5938  c
206821.4154 21.3229 20.9622 21.1875 20.3789 21.1875  c
206920.0039 21.1875 19.6341 21.2344 19.2695 21.3281  c
207018.9154 21.4219 18.5768 21.5573 18.2539 21.7344  c
207118.2539 20.7344 l
207218.6497 20.5781 19.0299 20.4635 19.3945 20.3906  c
207319.7695 20.3177 20.1341 20.2812 20.4883 20.2812  c
207421.4362 20.2812 22.1445 20.5260 22.6133 21.0156  c
207523.0820 21.5052 23.3164 22.2500 23.3164 23.2500  c
2076h
207725.5293 17.8750 m
207826.6074 17.8750 l
207926.6074 27.0000 l
208025.5293 27.0000 l
208125.5293 17.8750 l
2082h
208328.8633 20.4375 m
208429.9414 20.4375 l
208529.9414 27.0000 l
208628.8633 27.0000 l
208728.8633 20.4375 l
2088h
208928.8633 17.8750 m
209029.9414 17.8750 l
209129.9414 19.2500 l
209228.8633 19.2500 l
209328.8633 17.8750 l
2094h
209533.2754 18.5781 m
209633.2754 20.4375 l
209735.4941 20.4375 l
209835.4941 21.2812 l
209933.2754 21.2812 l
210033.2754 24.8438 l
210133.2754 25.3750 33.3483 25.7188 33.4941 25.8750  c
210233.6400 26.0208 33.9368 26.0938 34.3848 26.0938  c
210335.4941 26.0938 l
210435.4941 27.0000 l
210534.3848 27.0000 l
210633.5514 27.0000 32.9733 26.8438 32.6504 26.5312  c
210732.3379 26.2188 32.1816 25.6562 32.1816 24.8438  c
210832.1816 21.2812 l
210931.4004 21.2812 l
211031.4004 20.4375 l
211132.1816 20.4375 l
211232.1816 18.5781 l
211333.2754 18.5781 l
2114h
211539.6367 27.6094 m
211639.3346 28.3906 39.0378 28.9010 38.7461 29.1406  c
211738.4544 29.3802 38.0690 29.5000 37.5898 29.5000  c
211836.7305 29.5000 l
211936.7305 28.5938 l
212037.3555 28.5938 l
212137.6576 28.5938 37.8867 28.5208 38.0430 28.3750  c
212238.2096 28.2396 38.3919 27.9115 38.5898 27.3906  c
212338.7930 26.8906 l
212436.1367 20.4375 l
212537.2773 20.4375 l
212639.3242 25.5625 l
212741.3867 20.4375 l
212842.5273 20.4375 l
212939.6367 27.6094 l
2130h
2131f
2132[ 1.00000 0.00000 0.00000 1.00000 -57.0000 -265.000 ] concat
2133[ 1.00000 0.00000 0.00000 1.00000 56.0000 89.0000 ] concat
2134newpath
21351.17188 3.25000 m
21362.35938 3.25000 l
21372.35938 11.0000 l
21386.62500 11.0000 l
21396.62500 12.0000 l
21401.17188 12.0000 l
21411.17188 3.25000 l
2142h
214310.3574 6.18750 m
21449.78451 6.18750 9.32617 6.41667 8.98242 6.87500  c
21458.64909 7.32292 8.48242 7.93750 8.48242 8.71875  c
21468.48242 9.51042 8.64909 10.1302 8.98242 10.5781  c
21479.31576 11.0260 9.77409 11.2500 10.3574 11.2500  c
214810.9303 11.2500 11.3835 11.0260 11.7168 10.5781  c
214912.0605 10.1198 12.2324 9.50000 12.2324 8.71875  c
215012.2324 7.94792 12.0605 7.33333 11.7168 6.87500  c
215111.3835 6.41667 10.9303 6.18750 10.3574 6.18750  c
2152h
215310.3574 5.28125 m
215411.2949 5.28125 12.0293 5.58854 12.5605 6.20312  c
215513.1022 6.80729 13.3730 7.64583 13.3730 8.71875  c
215613.3730 9.79167 13.1022 10.6354 12.5605 11.2500  c
215712.0293 11.8646 11.2949 12.1719 10.3574 12.1719  c
21589.41992 12.1719 8.68034 11.8646 8.13867 11.2500  c
21597.60742 10.6354 7.34180 9.79167 7.34180 8.71875  c
21607.34180 7.64583 7.60742 6.80729 8.13867 6.20312  c
21618.68034 5.58854 9.41992 5.28125 10.3574 5.28125  c
2162h
216314.5273 5.43750 m
216415.6055 5.43750 l
216516.9648 10.5625 l
216618.2930 5.43750 l
216719.5742 5.43750 l
216820.9180 10.5625 l
216922.2617 5.43750 l
217023.3398 5.43750 l
217121.6211 12.0000 l
217220.3555 12.0000 l
217318.9336 6.62500 l
217417.5273 12.0000 l
217516.2461 12.0000 l
217614.5273 5.43750 l
2177h
217824.4355 8.23438 m
217927.5918 8.23438 l
218027.5918 9.18750 l
218124.4355 9.18750 l
218224.4355 8.23438 l
2183h
2184f
2185newpath
21864.73438 19.0469 m
21873.86979 19.0469 3.18229 19.3698 2.67188 20.0156  c
21882.17188 20.6510 1.92188 21.5260 1.92188 22.6406  c
21891.92188 23.7344 2.17188 24.6042 2.67188 25.2500  c
21903.18229 25.8854 3.86979 26.2031 4.73438 26.2031  c
21915.58854 26.2031 6.26562 25.8854 6.76562 25.2500  c
21927.27604 24.6042 7.53125 23.7344 7.53125 22.6406  c
21937.53125 21.5260 7.27604 20.6510 6.76562 20.0156  c
21946.26562 19.3698 5.58854 19.0469 4.73438 19.0469  c
2195h
21966.39062 26.8438 m
21977.95312 28.5469 l
21986.51562 28.5469 l
21995.21875 27.1406 l
22005.09375 27.1510 4.99479 27.1562 4.92188 27.1562  c
22014.85938 27.1667 4.79688 27.1719 4.73438 27.1719  c
22023.50521 27.1719 2.52083 26.7604 1.78125 25.9375  c
22031.04167 25.1146 .671875 24.0156 .671875 22.6406  c
2204.671875 21.2552 1.04167 20.1510 1.78125 19.3281  c
22052.52083 18.5052 3.50521 18.0938 4.73438 18.0938  c
22065.95312 18.0938 6.92708 18.5052 7.65625 19.3281  c
22078.39583 20.1510 8.76562 21.2552 8.76562 22.6406  c
22088.76562 23.6510 8.56250 24.5208 8.15625 25.2500  c
22097.75000 25.9688 7.16146 26.5000 6.39062 26.8438  c
2210h
221110.4609 24.4062 m
221210.4609 20.4375 l
221311.5391 20.4375 l
221411.5391 24.3750 l
221511.5391 24.9896 11.6589 25.4531 11.8984 25.7656  c
221612.1484 26.0781 12.5130 26.2344 12.9922 26.2344  c
221713.5755 26.2344 14.0339 26.0521 14.3672 25.6875  c
221814.7109 25.3125 14.8828 24.8021 14.8828 24.1562  c
221914.8828 20.4375 l
222015.9609 20.4375 l
222115.9609 27.0000 l
222214.8828 27.0000 l
222314.8828 25.9844 l
222414.6224 26.3906 14.3203 26.6927 13.9766 26.8906  c
222513.6328 27.0781 13.2318 27.1719 12.7734 27.1719  c
222612.0130 27.1719 11.4349 26.9375 11.0391 26.4688  c
222710.6536 26.0000 10.4609 25.3125 10.4609 24.4062  c
2228h
222913.1797 20.2812 m
223013.1797 20.2812 l
2231h
223221.1602 23.7031 m
223320.2956 23.7031 19.6914 23.8021 19.3477 24.0000  c
223419.0143 24.1979 18.8477 24.5365 18.8477 25.0156  c
223518.8477 25.4010 18.9727 25.7083 19.2227 25.9375  c
223619.4831 26.1562 19.8268 26.2656 20.2539 26.2656  c
223720.8581 26.2656 21.3372 26.0573 21.6914 25.6406  c
223822.0560 25.2135 22.2383 24.6458 22.2383 23.9375  c
223922.2383 23.7031 l
224021.1602 23.7031 l
2241h
224223.3164 23.2500 m
224323.3164 27.0000 l
224422.2383 27.0000 l
224522.2383 26.0000 l
224621.9883 26.3958 21.6810 26.6927 21.3164 26.8906  c
224720.9518 27.0781 20.5039 27.1719 19.9727 27.1719  c
224819.2956 27.1719 18.7591 26.9844 18.3633 26.6094  c
224917.9674 26.2240 17.7695 25.7188 17.7695 25.0938  c
225017.7695 24.3542 18.0143 23.7969 18.5039 23.4219  c
225119.0039 23.0469 19.7435 22.8594 20.7227 22.8594  c
225222.2383 22.8594 l
225322.2383 22.7500 l
225422.2383 22.2500 22.0716 21.8646 21.7383 21.5938  c
225521.4154 21.3229 20.9622 21.1875 20.3789 21.1875  c
225620.0039 21.1875 19.6341 21.2344 19.2695 21.3281  c
225718.9154 21.4219 18.5768 21.5573 18.2539 21.7344  c
225818.2539 20.7344 l
225918.6497 20.5781 19.0299 20.4635 19.3945 20.3906  c
226019.7695 20.3177 20.1341 20.2812 20.4883 20.2812  c
226121.4362 20.2812 22.1445 20.5260 22.6133 21.0156  c
226223.0820 21.5052 23.3164 22.2500 23.3164 23.2500  c
2263h
226425.5293 17.8750 m
226526.6074 17.8750 l
226626.6074 27.0000 l
226725.5293 27.0000 l
226825.5293 17.8750 l
2269h
227028.8633 20.4375 m
227129.9414 20.4375 l
227229.9414 27.0000 l
227328.8633 27.0000 l
227428.8633 20.4375 l
2275h
227628.8633 17.8750 m
227729.9414 17.8750 l
227829.9414 19.2500 l
227928.8633 19.2500 l
228028.8633 17.8750 l
2281h
228233.2754 18.5781 m
228333.2754 20.4375 l
228435.4941 20.4375 l
228535.4941 21.2812 l
228633.2754 21.2812 l
228733.2754 24.8438 l
228833.2754 25.3750 33.3483 25.7188 33.4941 25.8750  c
228933.6400 26.0208 33.9368 26.0938 34.3848 26.0938  c
229035.4941 26.0938 l
229135.4941 27.0000 l
229234.3848 27.0000 l
229333.5514 27.0000 32.9733 26.8438 32.6504 26.5312  c
229432.3379 26.2188 32.1816 25.6562 32.1816 24.8438  c
229532.1816 21.2812 l
229631.4004 21.2812 l
229731.4004 20.4375 l
229832.1816 20.4375 l
229932.1816 18.5781 l
230033.2754 18.5781 l
2301h
230239.6367 27.6094 m
230339.3346 28.3906 39.0378 28.9010 38.7461 29.1406  c
230438.4544 29.3802 38.0690 29.5000 37.5898 29.5000  c
230536.7305 29.5000 l
230636.7305 28.5938 l
230737.3555 28.5938 l
230837.6576 28.5938 37.8867 28.5208 38.0430 28.3750  c
230938.2096 28.2396 38.3919 27.9115 38.5898 27.3906  c
231038.7930 26.8906 l
231136.1367 20.4375 l
231237.2773 20.4375 l
231339.3242 25.5625 l
231441.3867 20.4375 l
231542.5273 20.4375 l
231639.6367 27.6094 l
2317h
2318f
2319[ 1.00000 0.00000 0.00000 1.00000 -56.0000 -89.0000 ] concat
2320
2321%%Trailer
2322%%EOF