Projects



PTCNets: Supplier.eps

File Supplier.eps, 68.9 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:15:49 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 -254.000 -33.0000 ] concat
956254 33 177 319 rc
9571.00000 1.00000 1.00000 RG
958newpath
959264.000 47.0000 m
960264.000 338.000 l
961264.000 340.209 265.791 342.000 268.000 342.000  c
962417.000 342.000 l
963419.209 342.000 421.000 340.209 421.000 338.000  c
964421.000 47.0000 l
965421.000 44.7909 419.209 43.0000 417.000 43.0000  c
966268.000 43.0000 l
967265.791 43.0000 264.000 44.7909 264.000 47.0000  c
968h
969f
9700.00000 0.00000 0.00000 RG
9712.00000 w
972newpath
973264.000 47.0000 m
974264.000 338.000 l
975264.000 340.209 265.791 342.000 268.000 342.000  c
976417.000 342.000 l
977419.209 342.000 421.000 340.209 421.000 338.000  c
978421.000 47.0000 l
979421.000 44.7909 419.209 43.0000 417.000 43.0000  c
980268.000 43.0000 l
981265.791 43.0000 264.000 44.7909 264.000 47.0000  c
982h
983S
9841.00000 w
9851.00000 .800000 .800000 RG
986newpath
987264.000 47.0000 m
988264.000 116.000 l
989264.000 118.209 265.791 120.000 268.000 120.000  c
990417.000 120.000 l
991419.209 120.000 421.000 118.209 421.000 116.000  c
992421.000 47.0000 l
993421.000 44.7909 419.209 43.0000 417.000 43.0000  c
994268.000 43.0000 l
995265.791 43.0000 264.000 44.7909 264.000 47.0000  c
996h
997f
9980.00000 0.00000 0.00000 RG
9992.00000 w
1000newpath
1001264.000 47.0000 m
1002264.000 116.000 l
1003264.000 118.209 265.791 120.000 268.000 120.000  c
1004417.000 120.000 l
1005419.209 120.000 421.000 118.209 421.000 116.000  c
1006421.000 47.0000 l
1007421.000 44.7909 419.209 43.0000 417.000 43.0000  c
1008268.000 43.0000 l
1009265.791 43.0000 264.000 44.7909 264.000 47.0000  c
1010h
1011S
10121.00000 w
10131.00000 1.00000 .600000 RG
1014newpath
1015264.000 269.000 m
1016264.000 338.000 l
1017264.000 340.209 265.791 342.000 268.000 342.000  c
1018417.000 342.000 l
1019419.209 342.000 421.000 340.209 421.000 338.000  c
1020421.000 269.000 l
1021421.000 266.791 419.209 265.000 417.000 265.000  c
1022268.000 265.000 l
1023265.791 265.000 264.000 266.791 264.000 269.000  c
1024h
1025f
10260.00000 0.00000 0.00000 RG
10272.00000 w
1028newpath
1029264.000 269.000 m
1030264.000 338.000 l
1031264.000 340.209 265.791 342.000 268.000 342.000  c
1032417.000 342.000 l
1033419.209 342.000 421.000 340.209 421.000 338.000  c
1034421.000 269.000 l
1035421.000 266.791 419.209 265.000 417.000 265.000  c
1036268.000 265.000 l
1037265.791 265.000 264.000 266.791 264.000 269.000  c
1038h
1039S
10401.00000 w
10411.00000 1.00000 1.00000 RG
1042newpath
1043283.000 66.0000 m
1044331.000 66.0000 l
1045331.000 98.0000 l
1046283.000 98.0000 l
1047283.000 66.0000 l
1048h
1049f
10500.00000 0.00000 0.00000 RG
10512.00000 w
1052newpath
1053283.000 66.0000 m
1054331.000 66.0000 l
1055331.000 98.0000 l
1056283.000 98.0000 l
1057283.000 66.0000 l
1058h
1059S
10601.00000 w
1061[ 1.00000 0.00000 0.00000 1.00000 272.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
120444.5762 12.6094 m
120544.2741 13.3906 43.9772 13.9010 43.6855 14.1406  c
120643.3939 14.3802 43.0085 14.5000 42.5293 14.5000  c
120741.6699 14.5000 l
120841.6699 13.5938 l
120942.2949 13.5938 l
121042.5970 13.5938 42.8262 13.5208 42.9824 13.3750  c
121143.1491 13.2396 43.3314 12.9115 43.5293 12.3906  c
121243.7324 11.8906 l
121341.0762 5.43750 l
121442.2168 5.43750 l
121544.2637 10.5625 l
121646.3262 5.43750 l
121747.4668 5.43750 l
121844.5762 12.6094 l
1219h
122049.2246 10.5156 m
122150.4590 10.5156 l
122250.4590 11.5156 l
122349.5059 13.3906 l
122448.7402 13.3906 l
122549.2246 11.5156 l
122649.2246 10.5156 l
1227h
122857.7441 11.0000 m
122961.8848 11.0000 l
123061.8848 12.0000 l
123156.3223 12.0000 l
123256.3223 11.0000 l
123356.7702 10.5417 57.3796 9.92188 58.1504 9.14062  c
123458.9316 8.34896 59.4212 7.83854 59.6191 7.60938  c
123560.0046 7.19271 60.2702 6.83854 60.4160 6.54688  c
123660.5723 6.24479 60.6504 5.95312 60.6504 5.67188  c
123760.6504 5.20312 60.4837 4.82292 60.1504 4.53125  c
123859.8275 4.23958 59.4056 4.09375 58.8848 4.09375  c
123958.5098 4.09375 58.1139 4.15625 57.6973 4.28125  c
124057.2910 4.40625 56.8535 4.60417 56.3848 4.87500  c
124156.3848 3.67188 l
124256.8639 3.48438 57.3066 3.34375 57.7129 3.25000  c
124358.1296 3.14583 58.5098 3.09375 58.8535 3.09375  c
124459.7598 3.09375 60.4837 3.32292 61.0254 3.78125  c
124561.5671 4.22917 61.8379 4.83333 61.8379 5.59375  c
124661.8379 5.94792 61.7702 6.28646 61.6348 6.60938  c
124761.4993 6.93229 61.2546 7.31250 60.9004 7.75000  c
124860.7962 7.86458 60.4837 8.19271 59.9629 8.73438  c
124959.4421 9.27604 58.7025 10.0312 57.7441 11.0000  c
1250h
125164.0508 2.89062 m
125264.9883 2.89062 l
125365.5716 3.81771 66.0091 4.72396 66.3008 5.60938  c
125466.5924 6.48438 66.7383 7.35938 66.7383 8.23438  c
125566.7383 9.10938 66.5924 9.98958 66.3008 10.8750  c
125666.0091 11.7604 65.5716 12.6615 64.9883 13.5781  c
125764.0508 13.5781 l
125864.5612 12.6823 64.9466 11.7917 65.2070 10.9062  c
125965.4674 10.0208 65.5977 9.13021 65.5977 8.23438  c
126065.5977 7.32812 65.4674 6.43750 65.2070 5.56250  c
126164.9466 4.67708 64.5612 3.78646 64.0508 2.89062  c
1262h
1263f
1264[ 1.00000 0.00000 0.00000 1.00000 -272.000 -45.0000 ] concat
12651.00000 1.00000 1.00000 RG
1266newpath
1267283.000 286.000 m
1268331.000 286.000 l
1269331.000 318.000 l
1270283.000 318.000 l
1271283.000 286.000 l
1272h
1273f
12740.00000 0.00000 0.00000 RG
12752.00000 w
1276newpath
1277283.000 286.000 m
1278331.000 286.000 l
1279331.000 318.000 l
1280283.000 318.000 l
1281283.000 286.000 l
1282h
1283S
12841.00000 w
1285[ 1.00000 0.00000 0.00000 1.00000 272.000 325.000 ] concat
1286newpath
12871.40625 10.5156 m
12882.64062 10.5156 l
12892.64062 12.0000 l
12901.40625 12.0000 l
12911.40625 10.5156 l
1292h
12931.40625 5.79688 m
12942.64062 5.79688 l
12952.64062 7.28125 l
12961.40625 7.28125 l
12971.40625 5.79688 l
1298h
12996.24609 3.57812 m
13006.24609 5.43750 l
13018.46484 5.43750 l
13028.46484 6.28125 l
13036.24609 6.28125 l
13046.24609 9.84375 l
13056.24609 10.3750 6.31901 10.7188 6.46484 10.8750  c
13066.61068 11.0208 6.90755 11.0938 7.35547 11.0938  c
13078.46484 11.0938 l
13088.46484 12.0000 l
13097.35547 12.0000 l
13106.52214 12.0000 5.94401 11.8438 5.62109 11.5312  c
13115.30859 11.2188 5.15234 10.6562 5.15234 9.84375  c
13125.15234 6.28125 l
13134.37109 6.28125 l
13144.37109 5.43750 l
13155.15234 5.43750 l
13165.15234 3.57812 l
13176.24609 3.57812 l
1318h
131913.6855 6.43750 m
132013.5605 6.37500 13.4251 6.32812 13.2793 6.29688  c
132113.1439 6.25521 12.9876 6.23438 12.8105 6.23438  c
132212.2064 6.23438 11.7376 6.43229 11.4043 6.82812  c
132311.0814 7.22396 10.9199 7.79688 10.9199 8.54688  c
132410.9199 12.0000 l
13259.84180 12.0000 l
13269.84180 5.43750 l
132710.9199 5.43750 l
132810.9199 6.45312 l
132911.1491 6.05729 11.4460 5.76562 11.8105 5.57812  c
133012.1751 5.38021 12.6178 5.28125 13.1387 5.28125  c
133113.2116 5.28125 13.2897 5.28646 13.3730 5.29688  c
133213.4668 5.30729 13.5658 5.32292 13.6699 5.34375  c
133313.6855 6.43750 l
1334h
133517.7910 8.70312 m
133616.9264 8.70312 16.3223 8.80208 15.9785 9.00000  c
133715.6452 9.19792 15.4785 9.53646 15.4785 10.0156  c
133815.4785 10.4010 15.6035 10.7083 15.8535 10.9375  c
133916.1139 11.1562 16.4577 11.2656 16.8848 11.2656  c
134017.4889 11.2656 17.9681 11.0573 18.3223 10.6406  c
134118.6868 10.2135 18.8691 9.64583 18.8691 8.93750  c
134218.8691 8.70312 l
134317.7910 8.70312 l
1344h
134519.9473 8.25000 m
134619.9473 12.0000 l
134718.8691 12.0000 l
134818.8691 11.0000 l
134918.6191 11.3958 18.3118 11.6927 17.9473 11.8906  c
135017.5827 12.0781 17.1348 12.1719 16.6035 12.1719  c
135115.9264 12.1719 15.3900 11.9844 14.9941 11.6094  c
135214.5983 11.2240 14.4004 10.7188 14.4004 10.0938  c
135314.4004 9.35417 14.6452 8.79688 15.1348 8.42188  c
135415.6348 8.04688 16.3743 7.85938 17.3535 7.85938  c
135518.8691 7.85938 l
135618.8691 7.75000 l
135718.8691 7.25000 18.7025 6.86458 18.3691 6.59375  c
135818.0462 6.32292 17.5931 6.18750 17.0098 6.18750  c
135916.6348 6.18750 16.2650 6.23438 15.9004 6.32812  c
136015.5462 6.42188 15.2077 6.55729 14.8848 6.73438  c
136114.8848 5.73438 l
136215.2806 5.57812 15.6608 5.46354 16.0254 5.39062  c
136316.4004 5.31771 16.7650 5.28125 17.1191 5.28125  c
136418.0671 5.28125 18.7754 5.52604 19.2441 6.01562  c
136519.7129 6.50521 19.9473 7.25000 19.9473 8.25000  c
1366h
136726.4883 6.43750 m
136826.4883 2.87500 l
136927.5664 2.87500 l
137027.5664 12.0000 l
137126.4883 12.0000 l
137226.4883 11.0156 l
137326.2591 11.4010 25.9727 11.6927 25.6289 11.8906  c
137425.2852 12.0781 24.8685 12.1719 24.3789 12.1719  c
137523.5872 12.1719 22.9414 11.8542 22.4414 11.2188  c
137621.9414 10.5833 21.6914 9.75000 21.6914 8.71875  c
137721.6914 7.68750 21.9414 6.85938 22.4414 6.23438  c
137822.9414 5.59896 23.5872 5.28125 24.3789 5.28125  c
137924.8685 5.28125 25.2852 5.37500 25.6289 5.56250  c
138025.9727 5.75000 26.2591 6.04167 26.4883 6.43750  c
1381h
138222.8164 8.71875 m
138322.8164 9.51042 22.9779 10.1354 23.3008 10.5938  c
138423.6237 11.0417 24.0716 11.2656 24.6445 11.2656  c
138525.2174 11.2656 25.6654 11.0417 25.9883 10.5938  c
138626.3216 10.1354 26.4883 9.51042 26.4883 8.71875  c
138726.4883 7.92708 26.3216 7.30729 25.9883 6.85938  c
138825.6654 6.41146 25.2174 6.18750 24.6445 6.18750  c
138924.0716 6.18750 23.6237 6.41146 23.3008 6.85938  c
139022.9779 7.30729 22.8164 7.92708 22.8164 8.71875  c
1391h
139235.4023 8.45312 m
139335.4023 8.96875 l
139430.4336 8.96875 l
139530.4857 9.71875 30.7096 10.2865 31.1055 10.6719  c
139631.5117 11.0573 32.0690 11.2500 32.7773 11.2500  c
139733.1940 11.2500 33.5951 11.2031 33.9805 11.1094  c
139834.3763 11.0052 34.7669 10.8490 35.1523 10.6406  c
139935.1523 11.6719 l
140034.7565 11.8281 34.3555 11.9479 33.9492 12.0312  c
140133.5430 12.1250 33.1315 12.1719 32.7148 12.1719  c
140231.6732 12.1719 30.8451 11.8698 30.2305 11.2656  c
140329.6159 10.6510 29.3086 9.82292 29.3086 8.78125  c
140429.3086 7.70833 29.6003 6.85938 30.1836 6.23438  c
140530.7669 5.59896 31.5482 5.28125 32.5273 5.28125  c
140633.4128 5.28125 34.1107 5.56771 34.6211 6.14062  c
140735.1419 6.70312 35.4023 7.47396 35.4023 8.45312  c
1408h
140934.3242 8.12500 m
141034.3138 7.54167 34.1471 7.07292 33.8242 6.71875  c
141133.5013 6.36458 33.0742 6.18750 32.5430 6.18750  c
141231.9388 6.18750 31.4544 6.35938 31.0898 6.70312  c
141330.7357 7.04688 30.5326 7.52604 30.4805 8.14062  c
141434.3242 8.12500 l
1415h
141639.7539 2.89062 m
141739.2331 3.78646 38.8424 4.67708 38.5820 5.56250  c
141838.3320 6.43750 38.2070 7.32812 38.2070 8.23438  c
141938.2070 9.13021 38.3320 10.0208 38.5820 10.9062  c
142038.8424 11.7917 39.2331 12.6823 39.7539 13.5781  c
142138.8164 13.5781 l
142238.2331 12.6615 37.7956 11.7604 37.5039 10.8750  c
142337.2122 9.98958 37.0664 9.10938 37.0664 8.23438  c
142437.0664 7.35938 37.2122 6.48438 37.5039 5.60938  c
142537.7956 4.72396 38.2331 3.81771 38.8164 2.89062  c
142639.7539 2.89062 l
1427h
142844.5762 12.6094 m
142944.2741 13.3906 43.9772 13.9010 43.6855 14.1406  c
143043.3939 14.3802 43.0085 14.5000 42.5293 14.5000  c
143141.6699 14.5000 l
143241.6699 13.5938 l
143342.2949 13.5938 l
143442.5970 13.5938 42.8262 13.5208 42.9824 13.3750  c
143543.1491 13.2396 43.3314 12.9115 43.5293 12.3906  c
143643.7324 11.8906 l
143741.0762 5.43750 l
143842.2168 5.43750 l
143944.2637 10.5625 l
144046.3262 5.43750 l
144147.4668 5.43750 l
144244.5762 12.6094 l
1443h
144449.2246 10.5156 m
144550.4590 10.5156 l
144650.4590 11.5156 l
144749.5059 13.3906 l
144848.7402 13.3906 l
144949.2246 11.5156 l
145049.2246 10.5156 l
1451h
145259.9785 4.28125 m
145356.9941 8.95312 l
145459.9785 8.95312 l
145559.9785 4.28125 l
1456h
145759.6660 3.25000 m
145861.1660 3.25000 l
145961.1660 8.95312 l
146062.4160 8.95312 l
146162.4160 9.93750 l
146261.1660 9.93750 l
146361.1660 12.0000 l
146459.9785 12.0000 l
146559.9785 9.93750 l
146656.0410 9.93750 l
146756.0410 8.79688 l
146859.6660 3.25000 l
1469h
147064.0508 2.89062 m
147164.9883 2.89062 l
147265.5716 3.81771 66.0091 4.72396 66.3008 5.60938  c
147366.5924 6.48438 66.7383 7.35938 66.7383 8.23438  c
147466.7383 9.10938 66.5924 9.98958 66.3008 10.8750  c
147566.0091 11.7604 65.5716 12.6615 64.9883 13.5781  c
147664.0508 13.5781 l
147764.5612 12.6823 64.9466 11.7917 65.2070 10.9062  c
147865.4674 10.0208 65.5977 9.13021 65.5977 8.23438  c
147965.5977 7.32812 65.4674 6.43750 65.2070 5.56250  c
148064.9466 4.67708 64.5612 3.78646 64.0508 2.89062  c
1481h
1482f
1483[ 1.00000 0.00000 0.00000 1.00000 -272.000 -325.000 ] concat
14841.00000 1.00000 1.00000 RG
1485newpath
1486327.000 192.000 m
1487327.000 203.046 318.046 212.000 307.000 212.000  c
1488295.954 212.000 287.000 203.046 287.000 192.000  c
1489287.000 180.954 295.954 172.000 307.000 172.000  c
1490318.046 172.000 327.000 180.954 327.000 192.000  c
1491h
1492f
14930.00000 0.00000 0.00000 RG
14942.00000 w
1495newpath
1496327.000 192.000 m
1497327.000 203.046 318.046 212.000 307.000 212.000  c
1498295.954 212.000 287.000 203.046 287.000 192.000  c
1499287.000 180.954 295.954 172.000 307.000 172.000  c
1500318.046 172.000 327.000 180.954 327.000 192.000  c
1501h
1502S
15031.00000 w
15041.00000 1.00000 1.00000 RG
15050.00000 0.00000 0.00000 RG
15062.00000 w
1507newpath
1508297.000 98.0000 m
1509297.000 98.0000 l
1510277.000 135.000 l
1511299.000 175.000 l
1512S
15131.00000 w
1514newpath
1515299.000 175.000 m
1516299.000 168.000 l
1517296.000 168.000 l
1518293.000 171.000 l
1519h
1520f
1521newpath
1522299.000 175.000 m
1523299.000 168.000 l
1524296.000 168.000 l
1525293.000 171.000 l
1526h
1527S
15282.00000 w
15291.00000 w
15301.00000 1.00000 1.00000 RG
15310.00000 0.00000 0.00000 RG
15322.00000 w
1533newpath
1534299.000 210.000 m
1535299.000 210.000 l
1536277.000 249.000 l
1537297.000 286.000 l
1538S
15391.00000 w
1540newpath
1541297.000 286.000 m
1542297.000 279.000 l
1543294.000 279.000 l
1544291.000 281.000 l
1545h
1546f
1547newpath
1548297.000 286.000 m
1549297.000 279.000 l
1550294.000 279.000 l
1551291.000 281.000 l
1552h
1553S
15542.00000 w
15551.00000 w
1556.996078 .996078 .996078 RG
1557[ 1.00000 0.00000 0.00000 1.00000 285.000 129.000 ] concat
1558newpath
15590.00000 0.00000 m
15606.00000 0.00000 l
15616.00000 15.0000 l
15620.00000 15.0000 l
15630.00000 0.00000 l
1564h
1565f
15660.00000 0.00000 0.00000 RG
1567newpath
15683.85938 12.6094 m
15693.55729 13.3906 3.26042 13.9010 2.96875 14.1406  c
15702.67708 14.3802 2.29167 14.5000 1.81250 14.5000  c
1571.953125 14.5000 l
1572.953125 13.5938 l
15731.57812 13.5938 l
15741.88021 13.5938 2.10938 13.5208 2.26562 13.3750  c
15752.43229 13.2396 2.61458 12.9115 2.81250 12.3906  c
15763.01562 11.8906 l
1577.359375 5.43750 l
15781.50000 5.43750 l
15793.54688 10.5625 l
15805.60938 5.43750 l
15816.75000 5.43750 l
15823.85938 12.6094 l
1583h
1584f
1585[ 1.00000 0.00000 0.00000 1.00000 -285.000 -129.000 ] concat
15861.00000 1.00000 1.00000 RG
15870.00000 0.00000 0.00000 RG
15882.00000 w
1589newpath
1590316.000 286.000 m
1591316.000 286.000 l
1592337.000 249.000 l
1593316.000 210.000 l
1594S
15951.00000 w
1596newpath
1597316.000 210.000 m
1598316.000 217.000 l
1599319.000 217.000 l
1600322.000 215.000 l
1601h
1602f
1603newpath
1604316.000 210.000 m
1605316.000 217.000 l
1606319.000 217.000 l
1607322.000 215.000 l
1608h
1609S
16102.00000 w
16111.00000 w
1612.996078 .996078 .996078 RG
1613[ 1.00000 0.00000 0.00000 1.00000 323.000 241.000 ] concat
1614newpath
16150.00000 0.00000 m
16166.00000 0.00000 l
16176.00000 15.0000 l
16180.00000 15.0000 l
16190.00000 0.00000 l
1620h
1621f
16220.00000 0.00000 0.00000 RG
1623newpath
16243.85938 12.6094 m
16253.55729 13.3906 3.26042 13.9010 2.96875 14.1406  c
16262.67708 14.3802 2.29167 14.5000 1.81250 14.5000  c
1627.953125 14.5000 l
1628.953125 13.5938 l
16291.57812 13.5938 l
16301.88021 13.5938 2.10938 13.5208 2.26562 13.3750  c
16312.43229 13.2396 2.61458 12.9115 2.81250 12.3906  c
16323.01562 11.8906 l
1633.359375 5.43750 l
16341.50000 5.43750 l
16353.54688 10.5625 l
16365.60938 5.43750 l
16376.75000 5.43750 l
16383.85938 12.6094 l
1639h
1640f
1641[ 1.00000 0.00000 0.00000 1.00000 -323.000 -241.000 ] concat
1642[ 1.00000 0.00000 0.00000 1.00000 295.000 185.000 ] concat
1643newpath
16441.48438 11.0000 m
16453.42188 11.0000 l
16463.42188 4.32812 l
16471.31250 4.75000 l
16481.31250 3.67188 l
16493.40625 3.25000 l
16504.59375 3.25000 l
16514.59375 11.0000 l
16526.53125 11.0000 l
16536.53125 12.0000 l
16541.48438 12.0000 l
16551.48438 11.0000 l
1656h
165711.4473 4.03125 m
165810.8431 4.03125 10.3848 4.33333 10.0723 4.93750  c
16599.77018 5.53125 9.61914 6.43229 9.61914 7.64062  c
16609.61914 8.83854 9.77018 9.73958 10.0723 10.3438  c
166110.3848 10.9375 10.8431 11.2344 11.4473 11.2344  c
166212.0618 11.2344 12.5202 10.9375 12.8223 10.3438  c
166313.1348 9.73958 13.2910 8.83854 13.2910 7.64062  c
166413.2910 6.43229 13.1348 5.53125 12.8223 4.93750  c
166512.5202 4.33333 12.0618 4.03125 11.4473 4.03125  c
1666h
166711.4473 3.09375 m
166812.4264 3.09375 13.1764 3.48438 13.6973 4.26562  c
166914.2181 5.03646 14.4785 6.16146 14.4785 7.64062  c
167014.4785 9.10938 14.2181 10.2344 13.6973 11.0156  c
167113.1764 11.7865 12.4264 12.1719 11.4473 12.1719  c
167210.4681 12.1719 9.71810 11.7865 9.19727 11.0156  c
16738.68685 10.2344 8.43164 9.10938 8.43164 7.64062  c
16748.43164 6.16146 8.68685 5.03646 9.19727 4.26562  c
16759.71810 3.48438 10.4681 3.09375 11.4473 3.09375  c
1676h
167719.0820 4.03125 m
167818.4779 4.03125 18.0195 4.33333 17.7070 4.93750  c
167917.4049 5.53125 17.2539 6.43229 17.2539 7.64062  c
168017.2539 8.83854 17.4049 9.73958 17.7070 10.3438  c
168118.0195 10.9375 18.4779 11.2344 19.0820 11.2344  c
168219.6966 11.2344 20.1549 10.9375 20.4570 10.3438  c
168320.7695 9.73958 20.9258 8.83854 20.9258 7.64062  c
168420.9258 6.43229 20.7695 5.53125 20.4570 4.93750  c
168520.1549 4.33333 19.6966 4.03125 19.0820 4.03125  c
1686h
168719.0820 3.09375 m
168820.0612 3.09375 20.8112 3.48438 21.3320 4.26562  c
168921.8529 5.03646 22.1133 6.16146 22.1133 7.64062  c
169022.1133 9.10938 21.8529 10.2344 21.3320 11.0156  c
169120.8112 11.7865 20.0612 12.1719 19.0820 12.1719  c
169218.1029 12.1719 17.3529 11.7865 16.8320 11.0156  c
169316.3216 10.2344 16.0664 9.10938 16.0664 7.64062  c
169416.0664 6.16146 16.3216 5.03646 16.8320 4.26562  c
169517.3529 3.48438 18.1029 3.09375 19.0820 3.09375  c
1696h
1697f
1698[ 1.00000 0.00000 0.00000 1.00000 -295.000 -185.000 ] concat
1699.996078 .996078 .996078 RG
1700[ 1.00000 0.00000 0.00000 1.00000 284.000 241.000 ] concat
1701newpath
17020.00000 0.00000 m
17038.00000 0.00000 l
17048.00000 15.0000 l
17050.00000 15.0000 l
17060.00000 0.00000 l
1707h
1708f
17090.00000 0.00000 0.00000 RG
1710newpath
17114.87500 7.28125 m
17125.43750 7.40625 5.87500 7.66146 6.18750 8.04688  c
17136.51042 8.42188 6.67188 8.89062 6.67188 9.45312  c
17146.67188 10.3177 6.37500 10.9896 5.78125 11.4688  c
17155.18750 11.9375 4.34375 12.1719 3.25000 12.1719  c
17162.88542 12.1719 2.50521 12.1354 2.10938 12.0625  c
17171.72396 11.9896 1.32812 11.8802 .921875 11.7344  c
1718.921875 10.5938 l
17191.24479 10.7812 1.59896 10.9271 1.98438 11.0312  c
17202.38021 11.1250 2.79167 11.1719 3.21875 11.1719  c
17213.95833 11.1719 4.52083 11.0260 4.90625 10.7344  c
17225.30208 10.4427 5.50000 10.0156 5.50000 9.45312  c
17235.50000 8.94271 5.31771 8.54167 4.95312 8.25000  c
17244.58854 7.95833 4.08854 7.81250 3.45312 7.81250  c
17252.42188 7.81250 l
17262.42188 6.84375 l
17273.50000 6.84375 l
17284.07292 6.84375 4.51562 6.72917 4.82812 6.50000  c
17295.14062 6.26042 5.29688 5.92188 5.29688 5.48438  c
17305.29688 5.03646 5.13542 4.69271 4.81250 4.45312  c
17314.50000 4.21354 4.04688 4.09375 3.45312 4.09375  c
17323.11979 4.09375 2.76562 4.13021 2.39062 4.20312  c
17332.02604 4.26562 1.61979 4.36979 1.17188 4.51562  c
17341.17188 3.46875 l
17351.63021 3.34375 2.05208 3.25000 2.43750 3.18750  c
17362.83333 3.12500 3.20312 3.09375 3.54688 3.09375  c
17374.45312 3.09375 5.16667 3.29688 5.68750 3.70312  c
17386.20833 4.10938 6.46875 4.66146 6.46875 5.35938  c
17396.46875 5.84896 6.32812 6.26042 6.04688 6.59375  c
17405.77604 6.92708 5.38542 7.15625 4.87500 7.28125  c
1741h
1742f
1743[ 1.00000 0.00000 0.00000 1.00000 -284.000 -241.000 ] concat
17441.00000 1.00000 1.00000 RG
17450.00000 0.00000 0.00000 RG
17462.00000 w
1747newpath
1748316.000 175.000 m
1749316.000 175.000 l
1750337.000 135.000 l
1751316.000 98.0000 l
1752S
17531.00000 w
1754newpath
1755316.000 98.0000 m
1756316.000 105.000 l
1757319.000 104.000 l
1758322.000 102.000 l
1759h
1760f
1761newpath
1762316.000 98.0000 m
1763316.000 105.000 l
1764319.000 104.000 l
1765322.000 102.000 l
1766h
1767S
17682.00000 w
17691.00000 w
1770.996078 .996078 .996078 RG
1771[ 1.00000 0.00000 0.00000 1.00000 322.000 129.000 ] concat
1772newpath
17730.00000 0.00000 m
17748.00000 0.00000 l
17758.00000 15.0000 l
17760.00000 15.0000 l
17770.00000 0.00000 l
1778h
1779f
17800.00000 0.00000 0.00000 RG
1781newpath
17822.29688 11.0000 m
17836.43750 11.0000 l
17846.43750 12.0000 l
1785.875000 12.0000 l
1786.875000 11.0000 l
17871.32292 10.5417 1.93229 9.92188 2.70312 9.14062  c
17883.48438 8.34896 3.97396 7.83854 4.17188 7.60938  c
17894.55729 7.19271 4.82292 6.83854 4.96875 6.54688  c
17905.12500 6.24479 5.20312 5.95312 5.20312 5.67188  c
17915.20312 5.20312 5.03646 4.82292 4.70312 4.53125  c
17924.38021 4.23958 3.95833 4.09375 3.43750 4.09375  c
17933.06250 4.09375 2.66667 4.15625 2.25000 4.28125  c
17941.84375 4.40625 1.40625 4.60417 .937500 4.87500  c
1795.937500 3.67188 l
17961.41667 3.48438 1.85938 3.34375 2.26562 3.25000  c
17972.68229 3.14583 3.06250 3.09375 3.40625 3.09375  c
17984.31250 3.09375 5.03646 3.32292 5.57812 3.78125  c
17996.11979 4.22917 6.39062 4.83333 6.39062 5.59375  c
18006.39062 5.94792 6.32292 6.28646 6.18750 6.60938  c
18016.05208 6.93229 5.80729 7.31250 5.45312 7.75000  c
18025.34896 7.86458 5.03646 8.19271 4.51562 8.73438  c
18033.99479 9.27604 3.25521 10.0312 2.29688 11.0000  c
1804h
1805f
1806[ 1.00000 0.00000 0.00000 1.00000 -322.000 -129.000 ] concat
1807[ 1.00000 0.00000 0.00000 1.00000 334.000 185.000 ] concat
1808newpath
18091.10938 3.25000 m
18103.96875 3.25000 l
18115.96875 7.93750 l
18127.96875 3.25000 l
181310.8281 3.25000 l
181410.8281 12.0000 l
18158.70312 12.0000 l
18168.70312 5.59375 l
18176.68750 10.3125 l
18185.25000 10.3125 l
18193.23438 5.59375 l
18203.23438 12.0000 l
18211.10938 12.0000 l
18221.10938 3.25000 l
1823h
182416.0664 6.78125 m
182515.6081 6.78125 15.2539 6.94792 15.0039 7.28125  c
182614.7643 7.61458 14.6445 8.09375 14.6445 8.71875  c
182714.6445 9.35417 14.7643 9.83854 15.0039 10.1719  c
182815.2539 10.5052 15.6081 10.6719 16.0664 10.6719  c
182916.5247 10.6719 16.8737 10.5052 17.1133 10.1719  c
183017.3633 9.83854 17.4883 9.35417 17.4883 8.71875  c
183117.4883 8.09375 17.3633 7.61458 17.1133 7.28125  c
183216.8737 6.94792 16.5247 6.78125 16.0664 6.78125  c
1833h
183416.0664 5.28125 m
183517.2018 5.28125 18.0872 5.58854 18.7227 6.20312  c
183619.3581 6.80729 19.6758 7.64583 19.6758 8.71875  c
183719.6758 9.80208 19.3581 10.6510 18.7227 11.2656  c
183818.0872 11.8698 17.2018 12.1719 16.0664 12.1719  c
183914.9414 12.1719 14.0560 11.8698 13.4102 11.2656  c
184012.7747 10.6510 12.4570 9.80208 12.4570 8.71875  c
184112.4570 7.64583 12.7747 6.80729 13.4102 6.20312  c
184214.0560 5.58854 14.9414 5.28125 16.0664 5.28125  c
1843h
184427.7949 8.00000 m
184527.7949 12.0000 l
184625.6855 12.0000 l
184725.6855 11.3438 l
184825.6855 8.93750 l
184925.6855 8.37500 25.6699 7.98958 25.6387 7.78125  c
185025.6178 7.56250 25.5762 7.40104 25.5137 7.29688  c
185125.4303 7.16146 25.3158 7.05729 25.1699 6.98438  c
185225.0345 6.90104 24.8783 6.85938 24.7012 6.85938  c
185324.2637 6.85938 23.9199 7.03125 23.6699 7.37500  c
185423.4199 7.70833 23.2949 8.17188 23.2949 8.76562  c
185523.2949 12.0000 l
185621.2012 12.0000 l
185721.2012 5.43750 l
185823.2949 5.43750 l
185923.2949 6.39062 l
186023.6074 6.01562 23.9408 5.73958 24.2949 5.56250  c
186124.6491 5.37500 25.0449 5.28125 25.4824 5.28125  c
186226.2324 5.28125 26.8053 5.51562 27.2012 5.98438  c
186327.5970 6.44271 27.7949 7.11458 27.7949 8.00000  c
1864h
186536.2910 8.70312 m
186636.2910 9.29688 l
186731.3848 9.29688 l
186831.4368 9.78646 31.6139 10.1562 31.9160 10.4062  c
186932.2181 10.6562 32.6452 10.7812 33.1973 10.7812  c
187033.6348 10.7812 34.0827 10.7135 34.5410 10.5781  c
187135.0098 10.4427 35.4889 10.2448 35.9785 9.98438  c
187235.9785 11.5938 l
187335.4785 11.7812 34.9785 11.9219 34.4785 12.0156  c
187433.9889 12.1198 33.4941 12.1719 32.9941 12.1719  c
187531.8066 12.1719 30.8848 11.8698 30.2285 11.2656  c
187629.5723 10.6615 29.2441 9.81250 29.2441 8.71875  c
187729.2441 7.65625 29.5671 6.81771 30.2129 6.20312  c
187830.8587 5.58854 31.7493 5.28125 32.8848 5.28125  c
187933.9160 5.28125 34.7389 5.59375 35.3535 6.21875  c
188035.9785 6.83333 36.2910 7.66146 36.2910 8.70312  c
1881h
188234.1348 8.00000 m
188334.1348 7.60417 34.0150 7.28646 33.7754 7.04688  c
188433.5462 6.79688 33.2441 6.67188 32.8691 6.67188  c
188532.4629 6.67188 32.1296 6.78646 31.8691 7.01562  c
188631.6191 7.24479 31.4629 7.57292 31.4004 8.00000  c
188734.1348 8.00000 l
1888h
188937.0078 5.43750 m
189039.1172 5.43750 l
189140.8828 9.89062 l
189242.3828 5.43750 l
189344.4766 5.43750 l
189441.7109 12.6250 l
189541.4401 13.3542 41.1172 13.8646 40.7422 14.1562  c
189640.3776 14.4479 39.8932 14.5938 39.2891 14.5938  c
189738.0703 14.5938 l
189838.0703 13.2188 l
189938.7266 13.2188 l
190039.0807 13.2188 39.3359 13.1615 39.4922 13.0469  c
190139.6589 12.9323 39.7891 12.7292 39.8828 12.4375  c
190239.9453 12.2500 l
190337.0078 5.43750 l
1904h
1905f
1906[ 1.00000 0.00000 0.00000 1.00000 -334.000 -185.000 ] concat
1907[ 1.00000 0.00000 0.00000 1.00000 377.000 88.0000 ] concat
1908newpath
19091.17188 3.25000 m
19102.35938 3.25000 l
19112.35938 11.0000 l
19126.62500 11.0000 l
19136.62500 12.0000 l
19141.17188 12.0000 l
19151.17188 3.25000 l
1916h
191710.3574 6.18750 m
19189.78451 6.18750 9.32617 6.41667 8.98242 6.87500  c
19198.64909 7.32292 8.48242 7.93750 8.48242 8.71875  c
19208.48242 9.51042 8.64909 10.1302 8.98242 10.5781  c
19219.31576 11.0260 9.77409 11.2500 10.3574 11.2500  c
192210.9303 11.2500 11.3835 11.0260 11.7168 10.5781  c
192312.0605 10.1198 12.2324 9.50000 12.2324 8.71875  c
192412.2324 7.94792 12.0605 7.33333 11.7168 6.87500  c
192511.3835 6.41667 10.9303 6.18750 10.3574 6.18750  c
1926h
192710.3574 5.28125 m
192811.2949 5.28125 12.0293 5.58854 12.5605 6.20312  c
192913.1022 6.80729 13.3730 7.64583 13.3730 8.71875  c
193013.3730 9.79167 13.1022 10.6354 12.5605 11.2500  c
193112.0293 11.8646 11.2949 12.1719 10.3574 12.1719  c
19329.41992 12.1719 8.68034 11.8646 8.13867 11.2500  c
19337.60742 10.6354 7.34180 9.79167 7.34180 8.71875  c
19347.34180 7.64583 7.60742 6.80729 8.13867 6.20312  c
19358.68034 5.58854 9.41992 5.28125 10.3574 5.28125  c
1936h
193714.5273 5.43750 m
193815.6055 5.43750 l
193916.9648 10.5625 l
194018.2930 5.43750 l
194119.5742 5.43750 l
194220.9180 10.5625 l
194322.2617 5.43750 l
194423.3398 5.43750 l
194521.6211 12.0000 l
194620.3555 12.0000 l
194718.9336 6.62500 l
194817.5273 12.0000 l
194916.2461 12.0000 l
195014.5273 5.43750 l
1951h
195224.4355 8.23438 m
195327.5918 8.23438 l
195427.5918 9.18750 l
195524.4355 9.18750 l
195624.4355 8.23438 l
1957h
1958f
1959newpath
19604.73438 19.0469 m
19613.86979 19.0469 3.18229 19.3698 2.67188 20.0156  c
19622.17188 20.6510 1.92188 21.5260 1.92188 22.6406  c
19631.92188 23.7344 2.17188 24.6042 2.67188 25.2500  c
19643.18229 25.8854 3.86979 26.2031 4.73438 26.2031  c
19655.58854 26.2031 6.26562 25.8854 6.76562 25.2500  c
19667.27604 24.6042 7.53125 23.7344 7.53125 22.6406  c
19677.53125 21.5260 7.27604 20.6510 6.76562 20.0156  c
19686.26562 19.3698 5.58854 19.0469 4.73438 19.0469  c
1969h
19706.39062 26.8438 m
19717.95312 28.5469 l
19726.51562 28.5469 l
19735.21875 27.1406 l
19745.09375 27.1510 4.99479 27.1562 4.92188 27.1562  c
19754.85938 27.1667 4.79688 27.1719 4.73438 27.1719  c
19763.50521 27.1719 2.52083 26.7604 1.78125 25.9375  c
19771.04167 25.1146 .671875 24.0156 .671875 22.6406  c
1978.671875 21.2552 1.04167 20.1510 1.78125 19.3281  c
19792.52083 18.5052 3.50521 18.0938 4.73438 18.0938  c
19805.95312 18.0938 6.92708 18.5052 7.65625 19.3281  c
19818.39583 20.1510 8.76562 21.2552 8.76562 22.6406  c
19828.76562 23.6510 8.56250 24.5208 8.15625 25.2500  c
19837.75000 25.9688 7.16146 26.5000 6.39062 26.8438  c
1984h
198510.4609 24.4062 m
198610.4609 20.4375 l
198711.5391 20.4375 l
198811.5391 24.3750 l
198911.5391 24.9896 11.6589 25.4531 11.8984 25.7656  c
199012.1484 26.0781 12.5130 26.2344 12.9922 26.2344  c
199113.5755 26.2344 14.0339 26.0521 14.3672 25.6875  c
199214.7109 25.3125 14.8828 24.8021 14.8828 24.1562  c
199314.8828 20.4375 l
199415.9609 20.4375 l
199515.9609 27.0000 l
199614.8828 27.0000 l
199714.8828 25.9844 l
199814.6224 26.3906 14.3203 26.6927 13.9766 26.8906  c
199913.6328 27.0781 13.2318 27.1719 12.7734 27.1719  c
200012.0130 27.1719 11.4349 26.9375 11.0391 26.4688  c
200110.6536 26.0000 10.4609 25.3125 10.4609 24.4062  c
2002h
200313.1797 20.2812 m
200413.1797 20.2812 l
2005h
200621.1602 23.7031 m
200720.2956 23.7031 19.6914 23.8021 19.3477 24.0000  c
200819.0143 24.1979 18.8477 24.5365 18.8477 25.0156  c
200918.8477 25.4010 18.9727 25.7083 19.2227 25.9375  c
201019.4831 26.1562 19.8268 26.2656 20.2539 26.2656  c
201120.8581 26.2656 21.3372 26.0573 21.6914 25.6406  c
201222.0560 25.2135 22.2383 24.6458 22.2383 23.9375  c
201322.2383 23.7031 l
201421.1602 23.7031 l
2015h
201623.3164 23.2500 m
201723.3164 27.0000 l
201822.2383 27.0000 l
201922.2383 26.0000 l
202021.9883 26.3958 21.6810 26.6927 21.3164 26.8906  c
202120.9518 27.0781 20.5039 27.1719 19.9727 27.1719  c
202219.2956 27.1719 18.7591 26.9844 18.3633 26.6094  c
202317.9674 26.2240 17.7695 25.7188 17.7695 25.0938  c
202417.7695 24.3542 18.0143 23.7969 18.5039 23.4219  c
202519.0039 23.0469 19.7435 22.8594 20.7227 22.8594  c
202622.2383 22.8594 l
202722.2383 22.7500 l
202822.2383 22.2500 22.0716 21.8646 21.7383 21.5938  c
202921.4154 21.3229 20.9622 21.1875 20.3789 21.1875  c
203020.0039 21.1875 19.6341 21.2344 19.2695 21.3281  c
203118.9154 21.4219 18.5768 21.5573 18.2539 21.7344  c
203218.2539 20.7344 l
203318.6497 20.5781 19.0299 20.4635 19.3945 20.3906  c
203419.7695 20.3177 20.1341 20.2812 20.4883 20.2812  c
203521.4362 20.2812 22.1445 20.5260 22.6133 21.0156  c
203623.0820 21.5052 23.3164 22.2500 23.3164 23.2500  c
2037h
203825.5293 17.8750 m
203926.6074 17.8750 l
204026.6074 27.0000 l
204125.5293 27.0000 l
204225.5293 17.8750 l
2043h
204428.8633 20.4375 m
204529.9414 20.4375 l
204629.9414 27.0000 l
204728.8633 27.0000 l
204828.8633 20.4375 l
2049h
205028.8633 17.8750 m
205129.9414 17.8750 l
205229.9414 19.2500 l
205328.8633 19.2500 l
205428.8633 17.8750 l
2055h
205633.2754 18.5781 m
205733.2754 20.4375 l
205835.4941 20.4375 l
205935.4941 21.2812 l
206033.2754 21.2812 l
206133.2754 24.8438 l
206233.2754 25.3750 33.3483 25.7188 33.4941 25.8750  c
206333.6400 26.0208 33.9368 26.0938 34.3848 26.0938  c
206435.4941 26.0938 l
206535.4941 27.0000 l
206634.3848 27.0000 l
206733.5514 27.0000 32.9733 26.8438 32.6504 26.5312  c
206832.3379 26.2188 32.1816 25.6562 32.1816 24.8438  c
206932.1816 21.2812 l
207031.4004 21.2812 l
207131.4004 20.4375 l
207232.1816 20.4375 l
207332.1816 18.5781 l
207433.2754 18.5781 l
2075h
207639.6367 27.6094 m
207739.3346 28.3906 39.0378 28.9010 38.7461 29.1406  c
207838.4544 29.3802 38.0690 29.5000 37.5898 29.5000  c
207936.7305 29.5000 l
208036.7305 28.5938 l
208137.3555 28.5938 l
208237.6576 28.5938 37.8867 28.5208 38.0430 28.3750  c
208338.2096 28.2396 38.3919 27.9115 38.5898 27.3906  c
208438.7930 26.8906 l
208536.1367 20.4375 l
208637.2773 20.4375 l
208739.3242 25.5625 l
208841.3867 20.4375 l
208942.5273 20.4375 l
209039.6367 27.6094 l
2091h
2092f
2093[ 1.00000 0.00000 0.00000 1.00000 -377.000 -88.0000 ] concat
2094[ 1.00000 0.00000 0.00000 1.00000 376.000 266.000 ] concat
2095newpath
20961.17188 3.25000 m
20972.35938 3.25000 l
20982.35938 6.84375 l
20996.65625 6.84375 l
21006.65625 3.25000 l
21017.84375 3.25000 l
21027.84375 12.0000 l
21036.65625 12.0000 l
21046.65625 7.82812 l
21052.35938 7.82812 l
21062.35938 12.0000 l
21071.17188 12.0000 l
21081.17188 3.25000 l
2109h
211010.1484 5.43750 m
211111.2266 5.43750 l
211211.2266 12.0000 l
211310.1484 12.0000 l
211410.1484 5.43750 l
2115h
211610.1484 2.87500 m
211711.2266 2.87500 l
211811.2266 4.25000 l
211910.1484 4.25000 l
212010.1484 2.87500 l
2121h
212217.8105 8.64062 m
212317.8105 7.85938 17.6491 7.25521 17.3262 6.82812  c
212417.0033 6.40104 16.5501 6.18750 15.9668 6.18750  c
212515.3939 6.18750 14.9460 6.40104 14.6230 6.82812  c
212614.3001 7.25521 14.1387 7.85938 14.1387 8.64062  c
212714.1387 9.42188 14.3001 10.0260 14.6230 10.4531  c
212814.9460 10.8802 15.3939 11.0938 15.9668 11.0938  c
212916.5501 11.0938 17.0033 10.8802 17.3262 10.4531  c
213017.6491 10.0260 17.8105 9.42188 17.8105 8.64062  c
2131h
213218.8887 11.1875 m
213318.8887 12.3021 18.6387 13.1302 18.1387 13.6719  c
213417.6491 14.2240 16.8887 14.5000 15.8574 14.5000  c
213515.4824 14.5000 15.1230 14.4688 14.7793 14.4062  c
213614.4460 14.3542 14.1230 14.2708 13.8105 14.1562  c
213713.8105 13.1094 l
213814.1230 13.2760 14.4355 13.4010 14.7480 13.4844  c
213915.0605 13.5677 15.3730 13.6094 15.6855 13.6094  c
214016.3939 13.6094 16.9251 13.4219 17.2793 13.0469  c
214117.6335 12.6823 17.8105 12.1250 17.8105 11.3750  c
214217.8105 10.8438 l
214317.5814 11.2292 17.2949 11.5208 16.9512 11.7188  c
214416.6074 11.9062 16.1908 12.0000 15.7012 12.0000  c
214514.8991 12.0000 14.2480 11.6927 13.7480 11.0781  c
214613.2585 10.4635 13.0137 9.65104 13.0137 8.64062  c
214713.0137 7.63021 13.2585 6.81771 13.7480 6.20312  c
214814.2480 5.58854 14.8991 5.28125 15.7012 5.28125  c
214916.1908 5.28125 16.6074 5.38021 16.9512 5.57812  c
215017.2949 5.76562 17.5814 6.05208 17.8105 6.43750  c
215117.8105 5.43750 l
215218.8887 5.43750 l
215318.8887 11.1875 l
2154h
215526.5684 8.03125 m
215626.5684 12.0000 l
215725.4902 12.0000 l
215825.4902 8.07812 l
215925.4902 7.45312 25.3652 6.98958 25.1152 6.68750  c
216024.8757 6.37500 24.5163 6.21875 24.0371 6.21875  c
216123.4538 6.21875 22.9902 6.40625 22.6465 6.78125  c
216222.3132 7.14583 22.1465 7.65104 22.1465 8.29688  c
216322.1465 12.0000 l
216421.0684 12.0000 l
216521.0684 2.87500 l
216622.1465 2.87500 l
216722.1465 6.45312 l
216822.4069 6.05729 22.7090 5.76562 23.0527 5.57812  c
216923.4069 5.38021 23.8132 5.28125 24.2715 5.28125  c
217025.0215 5.28125 25.5892 5.51562 25.9746 5.98438  c
217126.3704 6.44271 26.5684 7.12500 26.5684 8.03125  c
2172h
217328.1738 8.23438 m
217431.3301 8.23438 l
217531.3301 9.18750 l
217628.1738 9.18750 l
217728.1738 8.23438 l
2178h
2179f
2180newpath
21814.73438 19.0469 m
21823.86979 19.0469 3.18229 19.3698 2.67188 20.0156  c
21832.17188 20.6510 1.92188 21.5260 1.92188 22.6406  c
21841.92188 23.7344 2.17188 24.6042 2.67188 25.2500  c
21853.18229 25.8854 3.86979 26.2031 4.73438 26.2031  c
21865.58854 26.2031 6.26562 25.8854 6.76562 25.2500  c
21877.27604 24.6042 7.53125 23.7344 7.53125 22.6406  c
21887.53125 21.5260 7.27604 20.6510 6.76562 20.0156  c
21896.26562 19.3698 5.58854 19.0469 4.73438 19.0469  c
2190h
21916.39062 26.8438 m
21927.95312 28.5469 l
21936.51562 28.5469 l
21945.21875 27.1406 l
21955.09375 27.1510 4.99479 27.1562 4.92188 27.1562  c
21964.85938 27.1667 4.79688 27.1719 4.73438 27.1719  c
21973.50521 27.1719 2.52083 26.7604 1.78125 25.9375  c
21981.04167 25.1146 .671875 24.0156 .671875 22.6406  c
2199.671875 21.2552 1.04167 20.1510 1.78125 19.3281  c
22002.52083 18.5052 3.50521 18.0938 4.73438 18.0938  c
22015.95312 18.0938 6.92708 18.5052 7.65625 19.3281  c
22028.39583 20.1510 8.76562 21.2552 8.76562 22.6406  c
22038.76562 23.6510 8.56250 24.5208 8.15625 25.2500  c
22047.75000 25.9688 7.16146 26.5000 6.39062 26.8438  c
2205h
220610.4609 24.4062 m
220710.4609 20.4375 l
220811.5391 20.4375 l
220911.5391 24.3750 l
221011.5391 24.9896 11.6589 25.4531 11.8984 25.7656  c
221112.1484 26.0781 12.5130 26.2344 12.9922 26.2344  c
221213.5755 26.2344 14.0339 26.0521 14.3672 25.6875  c
221314.7109 25.3125 14.8828 24.8021 14.8828 24.1562  c
221414.8828 20.4375 l
221515.9609 20.4375 l
221615.9609 27.0000 l
221714.8828 27.0000 l
221814.8828 25.9844 l
221914.6224 26.3906 14.3203 26.6927 13.9766 26.8906  c
222013.6328 27.0781 13.2318 27.1719 12.7734 27.1719  c
222112.0130 27.1719 11.4349 26.9375 11.0391 26.4688  c
222210.6536 26.0000 10.4609 25.3125 10.4609 24.4062  c
2223h
222413.1797 20.2812 m
222513.1797 20.2812 l
2226h
222721.1602 23.7031 m
222820.2956 23.7031 19.6914 23.8021 19.3477 24.0000  c
222919.0143 24.1979 18.8477 24.5365 18.8477 25.0156  c
223018.8477 25.4010 18.9727 25.7083 19.2227 25.9375  c
223119.4831 26.1562 19.8268 26.2656 20.2539 26.2656  c
223220.8581 26.2656 21.3372 26.0573 21.6914 25.6406  c
223322.0560 25.2135 22.2383 24.6458 22.2383 23.9375  c
223422.2383 23.7031 l
223521.1602 23.7031 l
2236h
223723.3164 23.2500 m
223823.3164 27.0000 l
223922.2383 27.0000 l
224022.2383 26.0000 l
224121.9883 26.3958 21.6810 26.6927 21.3164 26.8906  c
224220.9518 27.0781 20.5039 27.1719 19.9727 27.1719  c
224319.2956 27.1719 18.7591 26.9844 18.3633 26.6094  c
224417.9674 26.2240 17.7695 25.7188 17.7695 25.0938  c
224517.7695 24.3542 18.0143 23.7969 18.5039 23.4219  c
224619.0039 23.0469 19.7435 22.8594 20.7227 22.8594  c
224722.2383 22.8594 l
224822.2383 22.7500 l
224922.2383 22.2500 22.0716 21.8646 21.7383 21.5938  c
225021.4154 21.3229 20.9622 21.1875 20.3789 21.1875  c
225120.0039 21.1875 19.6341 21.2344 19.2695 21.3281  c
225218.9154 21.4219 18.5768 21.5573 18.2539 21.7344  c
225318.2539 20.7344 l
225418.6497 20.5781 19.0299 20.4635 19.3945 20.3906  c
225519.7695 20.3177 20.1341 20.2812 20.4883 20.2812  c
225621.4362 20.2812 22.1445 20.5260 22.6133 21.0156  c
225723.0820 21.5052 23.3164 22.2500 23.3164 23.2500  c
2258h
225925.5293 17.8750 m
226026.6074 17.8750 l
226126.6074 27.0000 l
226225.5293 27.0000 l
226325.5293 17.8750 l
2264h
226528.8633 20.4375 m
226629.9414 20.4375 l
226729.9414 27.0000 l
226828.8633 27.0000 l
226928.8633 20.4375 l
2270h
227128.8633 17.8750 m
227229.9414 17.8750 l
227329.9414 19.2500 l
227428.8633 19.2500 l
227528.8633 17.8750 l
2276h
227733.2754 18.5781 m
227833.2754 20.4375 l
227935.4941 20.4375 l
228035.4941 21.2812 l
228133.2754 21.2812 l
228233.2754 24.8438 l
228333.2754 25.3750 33.3483 25.7188 33.4941 25.8750  c
228433.6400 26.0208 33.9368 26.0938 34.3848 26.0938  c
228535.4941 26.0938 l
228635.4941 27.0000 l
228734.3848 27.0000 l
228833.5514 27.0000 32.9733 26.8438 32.6504 26.5312  c
228932.3379 26.2188 32.1816 25.6562 32.1816 24.8438  c
229032.1816 21.2812 l
229131.4004 21.2812 l
229231.4004 20.4375 l
229332.1816 20.4375 l
229432.1816 18.5781 l
229533.2754 18.5781 l
2296h
229739.6367 27.6094 m
229839.3346 28.3906 39.0378 28.9010 38.7461 29.1406  c
229938.4544 29.3802 38.0690 29.5000 37.5898 29.5000  c
230036.7305 29.5000 l
230136.7305 28.5938 l
230237.3555 28.5938 l
230337.6576 28.5938 37.8867 28.5208 38.0430 28.3750  c
230438.2096 28.2396 38.3919 27.9115 38.5898 27.3906  c
230538.7930 26.8906 l
230636.1367 20.4375 l
230737.2773 20.4375 l
230839.3242 25.5625 l
230941.3867 20.4375 l
231042.5273 20.4375 l
231139.6367 27.6094 l
2312h
2313f
2314[ 1.00000 0.00000 0.00000 1.00000 -376.000 -266.000 ] concat
2315
2316%%Trailer
2317%%EOF