Merge branch 'master' of gitlab.science.ru.nl:mlubbers/mc1516the
[mc1516the.git] / img / 2player.eps
diff --git a/img/2player.eps b/img/2player.eps
new file mode 100644 (file)
index 0000000..40dffa4
--- /dev/null
@@ -0,0 +1,2097 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%BoundingBox: 20 306 575 485
+%%Creator: FreeHEP Graphics2D Driver
+%%Producer: org.freehep.graphicsio.ps.EPSGraphics2D Revision: 12753 
+%%For: pimjager@167-013.wlan-int.ru.nl
+%%Title: Player
+%%CreationDate: Thursday, June 23, 2016 10:05:45 AM CEST
+%%LanguageLevel: 3
+%%EndComments
+%%BeginProlog
+100 dict dup begin
+
+%
+% File: org/freehep/graphicsio.ps/PSProlog.txt
+% Author: Charles Loomis
+%
+
+% Redefinitions which save some space in the output file.  These are also
+% the same as the PDF operators.
+/q {gsave} def
+/Q {grestore} def
+
+/n {newpath} def
+/m {moveto} def
+/l {lineto} def
+/c {curveto} def
+/h {closepath} def
+
+/re {4 -2 roll moveto
+     dup 0 exch rlineto exch 0 rlineto
+     neg 0 exch rlineto closepath} def
+
+/f {fill} def
+/f* {eofill} def
+/F {gsave vg&FC fill grestore} def
+/F* {gsave vg&FC eofill grestore} def
+
+/s {closepath stroke} def
+/S {stroke} def
+
+/b {closepath gsave vg&FC fill grestore
+    gsave stroke grestore newpath} def
+/B {gsave vg&FC fill grestore gsave stroke grestore newpath} def
+/b* {closepath gsave vg&FC eofill grestore
+    gsave stroke grestore newpath} def
+/B* {gsave vg&FC eofill grestore gsave stroke grestore newpath} def
+
+/g {1 array astore /vg&fcolor exch def} def
+/G {setgray} def
+/k {4 array astore /vg&fcolor exch def} def
+/K {setcmykcolor} def
+/rg {3 array astore /vg&fcolor exch def} def
+/RG {setrgbcolor} def
+
+% Initialize the fill color.
+0 0 0 rg
+
+/vg&FC {mark vg&fcolor aload pop
+        counttomark 1 eq {G} if
+        counttomark 3 eq {RG} if
+        counttomark 4 eq {K} if
+        cleartomark } def
+
+/vg&DFC {/vg&fcolor exch def} def
+
+/vg&C {mark exch aload pop
+       counttomark 1 eq {G} if
+       counttomark 3 eq {RG} if
+       counttomark 4 eq {K} if
+       cleartomark } def
+
+/w {setlinewidth} def
+/j {setlinejoin} def
+/J {setlinecap} def
+/M {setmiterlimit} def
+/d {setdash} def
+/i {setflat} def
+
+/W {clip} def
+/W* {eoclip} def
+
+% Setup the default graphics state.
+% (black; 1 pt. linewidth; miter join; butt-ends; solid)
+/defaultGraphicsState {0 g 1 w 0 j 0 J [] 0 d} def
+
+% Emulation of the rectangle operators for PostScript implementations
+% which do not implement all Level 2 features.  This is an INCOMPLETE
+% emulation; only the "x y width height rect..." form is emulated.
+/*rf {gsave newpath re fill grestore} def
+/*rs {gsave newpath re stroke grestore} def
+/*rc {newpath re clip} def
+/rf  /rectfill where {pop /rectfill}{/*rf} ifelse load def
+/rs  /rectstroke where {pop /rectstroke}{/*rs} ifelse load def
+/rc  /rectclip where {pop /rectclip}{/*rc} ifelse load def
+
+% Emulation of the selectfont operator.  This includes a 20% increase in
+% the fontsize which is necessary to get sizes similar to the Java fonts.
+/*sf {exch findfont exch
+      dup type /arraytype eq {makefont}{scalefont} ifelse setfont} bind def
+/sf /selectfont where {pop {1.2 mul selectfont}}{{1.2 mul *sf}} ifelse def
+
+% Special version of stroke which allows the dash pattern to continue
+% across path segments.  (This may be needed for PostScript although
+% modern printers seem to do this correctly.)
+/vg&stroke {
+  currentdash pop length 0 eq
+  {stroke}
+  {
+    currentdash /vg&doffset exch def pop
+    flattenpath
+    {m vg&resetdash}
+    {2 copy
+     currentpoint
+     3 -1 roll sub dup mul
+     3 1 roll sub dup mul
+     add sqrt
+     3 1 roll l
+     currentdash 3 -1 roll add setdash}
+     {}
+     {h vg&resetdash}
+     pathforall
+     stroke
+     vg&resetdash
+  } ifelse
+} def
+/vg&resetdash {currentdash pop vg&doffset setdash} def
+
+% Initialize variables for safety.
+/delta 0 def
+/xv 0 def  /yv 0 def  /width 0 def  /height 0 def
+
+% Initialize to portrait INTERNATIONAL (Letter-height, A4-width) page.
+/pw 595 def  /ph 791  def  /po true def /ftp false def
+
+% Initialize margins to 20 points.
+/ml 20 def  /mr 20 def  /mt 20 def  /mb 20 def
+
+% Temporary matrices.
+/smatrix 0 def  /nmatrix 0 def
+
+% set page size (usage: <page width><page height> setpagesize)
+/setpagesize {/ph exch def /pw exch def} def
+
+% set page orientation (usage: portrait or landscape)
+/portrait {/po true def} def
+/landscape {/po false def} def
+
+% force natural size for image (usage: naturalsize)
+/naturalsize {/ftp false def} def
+
+% resize image to fill page (usage: fittopage)
+/fittopage {/ftp true def} def
+
+% set margins of the page (usage: <left><bottom><top><right> setmargins)
+/setmargins {/mr exch def /mt exch def /mb exch def /ml exch def} def
+
+% set the graphic's size (usage: <width><height> setsize)
+/setsize {/gh exch def /gw exch def} def
+
+% set the graphic's origin (usage: <x0><y0> setorigin)
+/setorigin {/gy exch def /gx exch def} def
+
+% calculate image center
+/imagecenter {pw ml sub mr sub 2 div ml add
+              ph mt sub mb sub 2 div mb add} def
+
+% calculate the necessary scaling
+/imagescale {po {gw}{gh} ifelse pw ml sub mr sub div
+             po {gh}{gw} ifelse ph mt sub mb sub div
+             2 copy lt {exch} if pop
+             ftp not {1 2 copy lt {exch} if pop} if
+             1 exch div /sfactor exch def
+             /gw gw sfactor mul def /gh gh sfactor mul def} def
+
+% calculate image origin
+/imageorigin {pw ml sub mr sub 2 div ml add
+              po {gw}{gh} ifelse 2 div sub
+              ph mt sub mb sub 2 div mb add
+              po {gh}{gw} ifelse 2 div po {add}{sub} ifelse} def
+
+% calculate the clipping origin
+/cliporigin  {pw ml sub mr sub 2 div ml add
+              po {gw}{gh} ifelse 2 div sub floor
+              ph mt sub mb sub 2 div mb add
+              po {gh}{gw} ifelse 2 div sub floor} def
+
+% Set the clipping region to the bounding box.
+/cliptobounds {cliporigin po {gw}{gh} ifelse 1 add
+                          po {gh}{gw} ifelse 1 add rc} def
+
+% set the base transformation matrix (usage: setbasematrix)
+/setbasematrix {imageorigin translate
+                po {0}{90} ifelse rotate
+                sfactor sfactor neg scale
+                /defaultmatrix matrix currentmatrix def} def
+
+% The lower-right bias in drawing 1 pt. wide lines.
+/bias  {q 0.5 0.5 translate} def
+/unbias {Q} def
+
+% Define the composite fonts used to print Unicode strings.
+% Undefine particular values in an encoding array.
+/vg&undef { {exch dup 3 -1 roll /.notdef put} forall } def
+/vg&redef { {3 -1 roll dup 4 2 roll put} forall } def
+
+% usage: key encoding basefontname vg&newbasefont font
+/vg&newbasefont {
+findfont dup length dict copy
+  begin
+    currentdict /FID undef
+    /Encoding exch def
+    dup /FontName exch def
+    currentdict
+  end
+definefont
+} def
+
+% usage: key encoding basefontname vg&newskewedbasefont font
+/vg&newskewedbasefont {
+findfont dup length dict copy
+  begin
+    currentdict /FID undef
+    /Encoding exch def
+    dup /FontName exch def
+    exch FontMatrix exch matrix concatmatrix /FontMatrix exch def
+    currentdict
+  end
+definefont
+} def
+
+% usage: basekey suffix vg&nconcat name
+/vg&nconcat {
+  2 {dup length string cvs exch} repeat
+  dup length 3 -1 roll dup length 3 -1 roll add string
+  dup 0 4 -1 roll dup length 5 1 roll putinterval
+  dup 4 -2 roll exch putinterval cvn
+} def
+
+%usage: fontname vg&skewmatrix matrix
+/vg&skewmatrix {
+findfont dup /FontInfo known
+  {
+    /FontInfo get dup /ItalicAngle known
+    {
+      [ 1 0 4 -1 roll /ItalicAngle get neg dup sin exch cos div 1 0 0 ]
+    }
+    {pop matrix} ifelse
+  }
+  {pop matrix} ifelse
+} def
+
+% usage: newfontname basefontname vg&newcompositefont --
+/vg&newcompositefont {
+/vg&fstyle exch def
+/vg&bfont exch def
+/vg&fname exch def
+<<
+/FontStyleBits vg&fstyle
+/FontType 0
+/FontMatrix matrix
+/FontName vg&fname
+/FMapType 2
+/Encoding [ 0 1 255 {pop 6} for ]
+          dup 16#00 0 put % Latin
+          dup 16#03 1 put % Greek
+          dup 16#20 2 put % Punctuation
+          dup 16#21 3 put % Arrows
+          dup 16#22 4 put % MathOps
+          dup 16#27 5 put % Dingbats
+
+/FDepVector [
+vg&bfont /-UC-Latin vg&nconcat UCLatinEncoding
+vg&bfont vg&newbasefont
+
+vg&bfont vg&skewmatrix
+vg&bfont /-UC-Greek vg&nconcat UCGreekEncoding
+/Symbol vg&newskewedbasefont
+
+vg&bfont /-UC-Punctuation vg&nconcat UCPunctuationEncoding
+vg&bfont vg&newbasefont
+
+/Arrows-UC findfont
+/MathOps-UC findfont
+/Dingbats-UC findfont
+/Undefined-UC findfont ]
+>>
+vg&fname exch definefont pop
+} def
+
+% Null encoding vector (all elements set to .notdef)
+/NullEncoding [ 256 {/.notdef} repeat ] def
+
+% Unicode Latin encoding (unicode codes \u0000-\u00ff)
+/UCLatinEncoding
+  ISOLatin1Encoding dup length array copy
+  dup 16#60 /grave put
+  [ 16#90 16#91 16#92 16#93 16#94 16#95 16#96
+    16#97 16#98 16#9a 16#9b 16#9d 16#9e 16#9f
+  ] vg&undef
+  def
+
+% Unicode Greek encoding (unicode codes \u0370-\u03ff)
+/UCGreekEncoding
+  NullEncoding dup length array copy
+  << 16#91 /Alpha    16#92 /Beta      16#93 /Gamma    16#94 /Delta
+     16#95 /Epsilon  16#96 /Zeta      16#97 /Eta      16#98 /Theta
+     16#99 /Iota     16#9a /Kappa     16#9b /Lambda   16#9c /Mu
+     16#9d /Nu       16#9e /Xi        16#9f /Omicron  16#a0 /Pi
+     16#a1 /Rho      16#a3 /Sigma     16#a4 /Tau      16#a5 /Upsilon
+     16#a6 /Phi      16#a7 /Chi       16#a8 /Psi      16#a9 /Omega
+     16#b1 /alpha    16#b2 /beta      16#b3 /gamma    16#b4 /delta
+     16#b5 /epsilon  16#b6 /zeta      16#b7 /eta      16#b8 /theta
+     16#b9 /iota     16#ba /kappa     16#bb /lambda   16#bc /mu
+     16#bd /nu       16#be /xi        16#bf /omicron  16#c0 /pi
+     16#c1 /rho      16#c2 /sigma1    16#c3 /sigma    16#c4 /tau
+     16#c5 /upsilon  16#c6 /phi1      16#c7 /chi      16#c8 /psi
+     16#c9 /omega    16#7e /semicolon 16#87 /dotmath  16#d1 /theta1
+     16#d2 /Upsilon1 16#d5 /phi       16#d6 /omega1
+  >> vg&redef
+  def
+
+% Unicode punctuation encoding (unicode codes \u2000-\u206f)
+/UCPunctuationEncoding
+  NullEncoding dup length array copy
+  << 16#10 /hyphen          16#11 /hyphen              16#12 /endash
+     16#13 /emdash          16#18 /quoteleft           16#19 /quoteright
+     16#1a /quotesinglbase  16#1b /quotesingle         16#1c /quotedblleft
+     16#1d /quotedblright   16#1e /quotedblbase        16#1f /quotedbl
+     16#20 /dagger          16#21 /daggerdbl           16#22 /bullet
+     16#24 /period          16#26 /ellipsis            16#27 /periodcentered
+     16#30 /perthousand     16#44 /fraction
+     16#70 /zerosuperior    16#74 /foursuperior        16#75 /fivesuperior
+     16#76 /sixsuperior     16#77 /sevensuperior       16#78 /eightsuperior
+     16#79 /ninesuperior    16#7b /hyphensuperior      16#7d /parenleftsuperior
+     16#7e /parenrightsuperior
+     16#80 /zeroinferior    16#84 /fourinferior        16#85 /fiveinferior
+     16#81 /oneinferior     16#82 /twoinferior         16#83 /threeinferior
+     16#86 /sixinferior     16#87 /seveninferior       16#88 /eightinferior
+     16#89 /nineinferior    16#8b /hypheninferior      16#8d /parenleftinferior
+     16#8e /parenrightinferior
+  >> vg&redef
+  def
+
+% Unicode mathematical operators encoding (unicode codes \u2200-\u22ff)
+/UCMathOpsEncoding
+  NullEncoding dup length array copy
+  << 16#00 /universal       16#02 /partialdiff         16#03 /existential
+     16#05 /emptyset        16#06 /Delta               16#07 /gradient
+     16#08 /element         16#09 /notelement          16#0b /suchthat
+     16#0f /product         16#11 /summation           16#12 /minus
+     16#15 /fraction        16#17 /asteriskmath        16#19 /bullet
+     16#1a /radical         16#1d /proportional        16#1e /infinity
+     16#20 /angle           16#23 /bar                 16#27 /logicaland
+     16#28 /logicalor       16#29 /intersection        16#2a /union
+     16#2b /integral        16#34 /therefore           16#36 /colon
+     16#3c /similar         16#45 /congruent           16#48 /approxequal
+     16#60 /notequal        16#61 /equivalence         16#64 /lessequal
+     16#65 /greaterequal    16#82 /propersubset        16#83 /propersuperset
+     16#86 /reflexsubset    16#87 /reflexsuperset      16#95 /circleplus
+     16#97 /circlemultiply  16#a5 /perpendicular       16#03 /existential
+     16#c0 /logicaland      16#c1 /logicalor           16#c2 /intersection
+     16#c3 /union           16#c4 /diamond             16#c5 /dotmath
+  >> vg&redef
+  def
+
+% Unicode arrows encoding (unicode codes \u2190-\u21ff)
+% Also includes those "Letterlike" unicode characters
+% which are available in the symbol font. (unicode codes \u2100-\u214f)
+/UCArrowsEncoding
+  NullEncoding dup length array copy
+  << 16#11 /Ifraktur        16#1c /Rfraktur            16#22 /trademarkserif
+     16#35 /aleph
+     16#90 /arrowleft       16#91 /arrowup             16#92 /arrowright
+     16#93 /arrowdown       16#94 /arrowboth           16#d0 /arrowdblleft
+     16#d1 /arrowdblup      16#d2 /arrowdblright       16#d3 /arrowdbldown
+     16#d4 /arrowdblboth
+  >> vg&redef
+  def
+
+/ZapfDingbats findfont /Encoding get
+dup length array copy /UCDingbatsEncoding exch def
+16#20 1 16#7f {
+  dup 16#20 sub exch
+  UCDingbatsEncoding exch get
+  UCDingbatsEncoding 3 1 roll put
+} for
+16#a0 1 16#ff {
+  dup 16#40 sub exch
+  UCDingbatsEncoding exch get
+  UCDingbatsEncoding 3 1 roll put
+} for
+UCDingbatsEncoding [ 16#c0 1 16#ff {} for ] vg&undef
+[ 16#00  16#05 16#0a 16#0b  16#28 16#4c 16#4e  16#53 16#54 16#55  16#57 16#5f
+  16#60  16#68 16#69 16#6a  16#6b 16#6c 16#6d  16#6e 16#6f 16#70  16#71 16#72
+  16#73  16#74 16#75 16#95  16#96 16#97 16#b0  16#bf
+] vg&undef pop
+
+% Define the base fonts which don't change.
+/Undefined-UC NullEncoding       /Helvetica    vg&newbasefont pop
+/MathOps-UC   UCMathOpsEncoding  /Symbol       vg&newbasefont pop
+/Arrows-UC    UCArrowsEncoding   /Symbol       vg&newbasefont pop
+/Dingbats-UC  UCDingbatsEncoding /ZapfDingbats vg&newbasefont pop
+
+% Make the SansSerif composite fonts.
+/SansSerif /Helvetica 16#00 vg&newcompositefont
+/SansSerif-Bold /Helvetica-Bold 16#01 vg&newcompositefont
+/SansSerif-Italic /Helvetica-Oblique 16#02 vg&newcompositefont
+/SansSerif-BoldItalic /Helvetica-BoldOblique 16#03 vg&newcompositefont
+
+% Make the Serif composite fonts.
+/Serif /Times-Roman 16#00 vg&newcompositefont
+/Serif-Bold /Times-Bold 16#01 vg&newcompositefont
+/Serif-Italic /Times-Italic 16#02 vg&newcompositefont
+/Serif-BoldItalic /Times-BoldItalic 16#03 vg&newcompositefont
+
+% Make the Monospaced composite fonts.
+/Monospaced /Courier 16#00 vg&newcompositefont
+/Monospaced-Bold /Courier-Bold 16#01 vg&newcompositefont
+/Monospaced-Italic /Courier-Oblique 16#02 vg&newcompositefont
+/Monospaced-BoldItalic /Courier-BoldOblique 16#03 vg&newcompositefont
+
+% Make the Dialog composite fonts.
+/Dialog /Helvetica 16#00 vg&newcompositefont
+/Dialog-Bold /Helvetica-Bold 16#01 vg&newcompositefont
+/Dialog-Italic /Helvetica-Oblique 16#02 vg&newcompositefont
+/Dialog-BoldItalic /Helvetica-BoldOblique 16#03 vg&newcompositefont
+
+% Make the DialogInput composite fonts.
+/DialogInput /Courier 16#00 vg&newcompositefont
+/DialogInput-Bold /Courier-Bold 16#01 vg&newcompositefont
+/DialogInput-Italic /Courier-Oblique 16#02 vg&newcompositefont
+/DialogInput-BoldItalic /Courier-BoldOblique 16#03 vg&newcompositefont
+
+% Make the Typewriter composite fonts (JDK 1.1 only).
+/Typewriter /Courier 16#00 vg&newcompositefont
+/Typewriter-Bold /Courier-Bold 16#01 vg&newcompositefont
+/Typewriter-Italic /Courier-Oblique 16#02 vg&newcompositefont
+/Typewriter-BoldItalic /Courier-BoldOblique 16#03 vg&newcompositefont
+
+
+/cfontH {
+ dup /fontsize exch def /SansSerif exch sf
+ /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
+} def
+/cfontHB {
+  dup /fontsize exch def /SansSerif-Bold exch sf
+ /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
+} def
+/cfontHI {
+ dup /fontsize exch def /SansSerif-Italic exch sf
+ /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
+} def
+/cfontHBI {
+ dup /fontsize exch def /SansSerif-BoldItalic exch sf
+ /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
+} def
+
+/cfontT {
+ dup /fontsize exch def /Serif exch sf
+ /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
+} def
+/cfontTB {
+ dup /fontsize exch def /Serif-Bold exch sf
+ /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
+} def
+/cfontTI {
+ dup /fontsize exch def /Serif-Italic exch sf
+ /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
+} def
+/cfontTBI {
+ dup /fontsize exch def /Serif-BoldItalic exch sf
+ /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
+} def
+
+/cfontC {
+ dup /fontsize exch def /Typewriter exch sf
+ /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
+} def
+/cfontCB {
+ dup /fontsize exch def /Typewriter-Bold exch sf
+ /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
+} def
+/cfontCI {
+ dup /fontsize exch def /Typewriter-Italic exch sf
+ /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
+} def
+/cfontCBI {
+ dup /fontsize exch def /Typewriter-BoldItalic exch sf
+ /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
+} def
+
+% Darken or lighten the current color.
+/darken {0.7 exch exp 3 copy
+         q 4 -1 roll vg&C
+         currentrgbcolor 3 {4 -2 roll mul} repeat
+         3 array astore Q} def
+
+/displayColorMap
+<< /Cr   [1.00 0.00 0.00]       /Cg     [0.00 1.00 0.00]
+   /Cb   [0.00 0.00 1.00]       /Cc     [1.00 0.00 0.00 0.00]
+   /Cm   [0.00 1.00 0.00 0.00]  /Cy     [0.00 0.00 1.00 0.00]
+   /Co   [1.00 0.78 0.00]       /Cp     [1.00 0.67 0.67]
+   /Cw   [1   ]                 /Cgrl   [0.75]
+   /Cgr  [0.50]                 /Cgrd   [0.25]
+   /Ck   [0   ]
+   /CGr  [1.00 0.00 0.00]       /CGg    [0.00 1.00 0.00]
+   /CGb  [0.00 0.00 1.00]       /CGc    [1.00 0.00 0.00 0.00]
+   /CGm  [0.00 1.00 0.00 0.00]  /CGy    [0.00 0.00 1.00 0.00]
+   /CGo  [1.00 0.78 0.00]       /CGp    [1.00 0.67 0.67]
+   /CGw  [1   ]                 /CGgrl  [0.75]
+   /CGgr [0.50]                 /CGgrd  [0.25]
+   /CGk  [0   ]
+   /CIr  [1.00 0.00 0.00]       /CIg    [0.00 1.00 0.00]
+   /CIb  [0.00 0.00 1.00]       /CIc    [1.00 0.00 0.00 0.00]
+   /CIm  [0.00 1.00 0.00 0.00]  /CIy    [0.00 0.00 1.00 0.00]
+   /CIo  [1.00 0.78 0.00]       /CIp    [1.00 0.67 0.67]
+   /CIw  [1   ]                 /CIgrl  [0.75]
+   /CIgr [0.50]                 /CIgrd  [0.25]
+   /CIk  [0   ]
+>> def
+
+/printColorMap
+<< /Cr   [1.00 0.33 0.33]       /Cg     [0.33 1.00 0.33]
+   /Cb   [0.33 0.33 1.00]       /Cc     [1.00 0.00 0.00 0.00]
+   /Cm   [0.00 1.00 0.00 0.00]  /Cy     [0.00 0.00 1.00 0.00]
+   /Co   [1.00 0.78 0.00]       /Cp     [1.00 0.67 0.67]
+   /Cw   [1   ]                 /Cgrl   [0.75]
+   /Cgr  [0.50]                 /Cgrd   [0.25]
+   /Ck   [0   ]
+   /CGr  [1.00 0.33 0.33]       /CGg    [0.33 1.00 0.33]
+   /CGb  [0.33 0.33 1.00]       /CGc    [1.00 0.00 0.00 0.00]
+   /CGm  [0.00 1.00 0.00 0.00]  /CGy    [0.00 0.00 1.00 0.00]
+   /CGo  [1.00 0.78 0.00]       /CGp    [1.00 0.67 0.67]
+   /CGw  [1   ]                 /CGgrl  [0.75]
+   /CGgr [0.50]                 /CGgrd  [0.25]
+   /CGk  [0   ]
+   /CIr  [1.00 0.33 0.33]       /CIg    [0.33 1.00 0.33]
+   /CIb  [0.33 0.33 1.00]       /CIc    [1.00 0.00 0.00 0.00]
+   /CIm  [0.00 1.00 0.00 0.00]  /CIy    [0.00 0.00 1.00 0.00]
+   /CIo  [1.00 0.78 0.00]       /CIp    [1.00 0.67 0.67]
+   /CIw  [1   ]                 /CIgrl  [0.75]
+   /CIgr [0.50]                 /CIgrd  [0.25]
+   /CIk  [0   ]
+>> def
+
+/grayColorMap
+<< /Cr   [0   ]                 /Cg     [0   ]
+   /Cb   [0   ]                 /Cc     [0   ]
+   /Cm   [0   ]                 /Cy     [0   ]
+   /Co   [0   ]                 /Cp     [0   ]
+   /Cw   [0   ]                 /Cgrl   [0   ]
+   /Cgr  [0   ]                 /Cgrd   [0   ]
+   /Ck   [0   ]
+   /CGr  [0.75]                 /CGg    [1   ]
+   /CGb  [0.50]                 /CGc    [0.75]
+   /CGm  [0.50]                 /CGy    [1   ]
+   /CGo  [0.75]                 /CGp    [1   ]
+   /CGw  [0   ]                 /CGgrl  [0.25]
+   /CGgr [0.50]                 /CGgrd  [0.75]
+   /CGk  [1   ]
+   /CIr  [1   ]                 /CIg    [1   ]
+   /CIb  [1   ]                 /CIc    [1   ]
+   /CIm  [1   ]                 /CIy    [1   ]
+   /CIo  [1   ]                 /CIp    [1   ]
+   /CIw  [1   ]                 /CIgrl  [1   ]
+   /CIgr [1   ]                 /CIgrd  [1   ]
+   /CIk  [1   ]
+>> def
+
+/bwColorMap
+<< /Cr   [0   ]                 /Cg     [0   ]
+   /Cb   [0   ]                 /Cc     [0   ]
+   /Cm   [0   ]                 /Cy     [0   ]
+   /Co   [0   ]                 /Cp     [0   ]
+   /Cw   [0   ]                 /Cgrl   [0   ]
+   /Cgr  [0   ]                 /Cgrd   [0   ]
+   /Ck   [0   ]
+   /CGr  [1   ]                 /CGg    [1   ]
+   /CGb  [1   ]                 /CGc    [1   ]
+   /CGm  [1   ]                 /CGy    [1   ]
+   /CGo  [1   ]                 /CGp    [1   ]
+   /CGw  [0   ]                 /CGgrl  [1   ]
+   /CGgr [1   ]                 /CGgrd  [1   ]
+   /CGk  [1   ]
+   /CIr  [1   ]                 /CIg    [1   ]
+   /CIb  [1   ]                 /CIc    [1   ]
+   /CIm  [1   ]                 /CIy    [1   ]
+   /CIo  [1   ]                 /CIp    [1   ]
+   /CIw  [1   ]                 /CIgrl  [1   ]
+   /CIgr [1   ]                 /CIgrd  [1   ]
+   /CIk  [1   ]
+>> def
+
+%
+% The following routines handle the alignment of and printing of
+% tagged strings.
+%
+
+% Predefine the bounding box values.
+/bbllx 0 def /bblly 0 def /bburx 0 def /bbury 0 def
+
+% This routine pops the first unicode character off of a string and returns
+% the remainder of the string, the character code of first character,
+% and a "true" if the string was non-zero length.
+% <string>      popfirst <remaining string> <true>
+% <null string> popfirst <false>
+/popfirst {
+  dup length 1 gt
+    {dup 0 get /vg&fbyte exch def
+     dup 1 get /vg&cbyte exch def
+     dup length 2 sub 2 exch getinterval true}
+    {pop false} ifelse
+} def
+
+% This routine shows a single unicode character given the font and
+% character codes.
+% <font code> <char code> unicharshow --
+/unicharshow {
+  2 string
+  dup 0 5 -1 roll put
+  dup 1 4 -1 roll put
+  internalshow
+} def
+
+% This is an internal routine to alternate between determining the
+% bounding box for stringsize and showing the string for recshow.
+% <string> internalshow --
+/internalshow {show} def
+
+% This is an internal routine to alternate between determining the
+% bounding box for stringsize and stroking various ornaments.
+% <string> internalstroke --
+/internalstroke {S} def
+
+% Sets up internalshow to use the null device to determine string size.
+% -- nullinternalshow --
+/nullinternalshow {/internalshow {false charpath flattenpath
+                                  pathbbox updatebbox} def} def
+
+% Sets up internalstroke to use the null device to determine string size.
+% -- nullinternalstroke --
+/nullinternalstroke {
+ /internalstroke {flattenpath pathbbox updatebbox} def} def
+
+% This routine tests to see if the character code matches the first
+% character of a string.
+% <char code> <string> testchar <char code> <true or false>
+/testchar {exch dup 3 -1 roll 0 get eq} def
+
+% Raise the text baseline for superscripts.
+% -- raise --
+/raise {
+  0 fontsize 2 div rmoveto
+  /fontsize fontsize 2 mul 3 div def
+  currentfont /FontName get fontsize sf
+} def
+
+% Un-raise the text baseline for superscripts.
+% -- unraise --
+/unraise {
+  /fontsize fontsize 1.5 mul def
+  0 fontsize 2 div neg rmoveto
+} def
+
+% Lower the text baseline for subscripts.
+% -- lower --
+/lower {
+  0 fontsize 3 div neg rmoveto
+  /fontsize fontsize 2 mul 3 div def
+  currentfont /FontName get fontsize sf
+} def
+
+% Un-lower the text baseline for subscripts.
+% -- unlower --
+/unlower {
+  /fontsize fontsize 1.5 mul def
+  0 fontsize 3 div rmoveto
+} def
+
+% Compare the top two elements on the stack and leave only the
+% larger one.
+/maxval {2 copy gt {pop} {exch pop} ifelse} def
+
+% Tokenize a string.  Do not use the usual PostScript token because
+% parentheses will not be interpreted correctly because of rescanning
+% of the string.
+/vg&token {/vg&string exch def /vg&index -1 def /vg&level 0 def
+0 2 vg&string length 2 sub {
+  dup dup 1 add exch vg&string exch get 8 bitshift vg&string 3 -1 roll get or
+  dup 16#f0fe eq {pop 1}{16#f0ff eq {-1}{0} ifelse} ifelse
+  /vg&level exch vg&level add def
+  vg&level 0 eq {/vg&index exch def exit} if pop
+} for
+vg&index 0 ge {
+  vg&string vg&index 2 add dup vg&string length exch sub getinterval
+  vg&index 2 gt {vg&string 2 vg&index 2 sub getinterval}{()} ifelse
+  true}
+{false} ifelse
+} bind def
+
+% Recursively show an unicode string.
+% <string> recshow --
+/recshow {
+  popfirst
+  {
+    % Test to see if this is a string attribute.
+    vg&fbyte 16#f0 and 16#e0 eq
+    {
+      q
+
+      % Font style.
+      currentfont dup /FontStyleBits known {/FontStyleBits get}{pop 0} ifelse
+      vg&cbyte or vg&fontstyles exch get fontsize exch exec
+
+      vg&token pop recshow currentpoint Q m recshow
+    }
+    {
+      vg&fbyte 16#F8 and 16#F0 eq {
+
+        % Superscript and/or subscript.
+        vg&cbyte 16#00 eq {
+          vg&token pop exch vg&token pop 3 -1 roll
+          q raise recshow unraise currentpoint pop Q exch
+          q lower recshow unlower currentpoint pop Q
+          maxval currentpoint exch pop m recshow } if
+
+        % Strikeout.
+        vg&cbyte 16#01 eq {
+          vg&token pop currentpoint 3 -1 roll recshow
+          q 0 J vg&underline vg&uthick w
+          currentpoint 4 -2 roll fontsize 3 div add moveto
+          fontsize 3 div add lineto internalstroke Q
+          recshow} if
+
+        % Underline.
+        vg&cbyte 16#02 eq {
+          vg&token pop currentpoint 3 -1 roll recshow
+          q 0 J vg&underline vg&uthick w
+          currentpoint 4 -2 roll vg&uoffset add moveto
+          vg&uoffset add lineto internalstroke Q
+          recshow} if
+
+        % Dashed underline.
+        vg&cbyte 16#03 eq {
+          vg&token pop currentpoint 3 -1 roll recshow
+          q 0 J [ vg&uthick 5 mul vg&uthick 2 mul] 0 d
+          vg&underline vg&uthick w
+          currentpoint 4 -2 roll vg&uoffset add moveto
+          vg&uoffset add lineto internalstroke Q
+          recshow} if
+
+        % Dotted underline.
+        vg&cbyte 16#04 eq {
+          vg&token pop currentpoint 3 -1 roll recshow
+          q 1 J [ 0 vg&uthick 3 mul] 0 d
+          vg&underline vg&uthick w
+          currentpoint 4 -2 roll vg&uoffset add moveto
+          vg&uoffset add lineto internalstroke Q
+          recshow} if
+
+        % Thick underline.
+        vg&cbyte 16#05 eq {
+          vg&token pop currentpoint 3 -1 roll recshow
+          q 0 J vg&underline vg&uthick 2 mul w
+          currentpoint 4 -2 roll vg&uoffset vg&uthick 2 div sub add moveto
+          vg&uoffset vg&uthick 2 div sub add lineto internalstroke Q
+          recshow} if
+
+        % Gray thick underline.
+        vg&cbyte 16#06 eq {
+          vg&token pop currentpoint 3 -1 roll recshow
+          q 0 J vg&underline vg&uthick 2 mul w 0.5 setgray
+          currentpoint 4 -2 roll vg&uoffset vg&uthick 2 div sub add moveto
+          vg&uoffset vg&uthick 2 div sub add lineto internalstroke Q
+          recshow} if
+
+        % Overbar.
+        vg&cbyte 16#07 eq {
+          vg&token pop dup stringsize relative 4 1 roll pop pop exch
+          3 -1 roll recshow
+          q 0 J vg&underline vg&uthick w
+          vg&uoffset neg add dup currentpoint pop exch m l internalstroke Q
+          recshow} if
+      }
+      {
+        vg&fbyte vg&cbyte unicharshow recshow
+      } ifelse
+    } ifelse
+  } if
+} def
+
+% Get the underline position and thickness from the current font.
+/vg&underline {
+
+currentfont dup /FontType get 0 eq {/FDepVector get 0 get} if
+dup dup /FontInfo known {
+  /FontInfo get dup
+  dup /UnderlinePosition known {
+    /UnderlinePosition get /vg&uoffset exch def
+  }
+  {
+    pop /vg&uoffset 0 def
+  } ifelse
+  dup /UnderlineThickness known {
+    /UnderlineThickness get /vg&uthick exch def
+  }
+  {
+    pop /vg&uthick 0 def
+  } ifelse
+}
+{
+  pop /vg&uoffset 0 def /vg&uthick 0 def
+} ifelse
+/FontMatrix get
+currentfont dup /FontType get 0 eq
+{/FontMatrix get matrix concatmatrix}{pop} ifelse
+dup 0 vg&uoffset 3 -1 roll transform /vg&uoffset exch def pop
+0 vg&uthick 3 -1 roll transform /vg&uthick exch def pop
+} def
+
+% Make a frame with the coordinates on the stack.
+% <llx> <lly> <urx> <ury> frame --
+/frame {4 copy m 3 1 roll exch l 4 -2 roll l l h} def
+
+% Resets the accumulated bounding box to a degenerate box at the
+% current point.
+% -- resetbbox --
+/resetbbox {
+  currentpoint 2 copy
+  /bbury exch def
+  /bburx exch def
+  /bblly exch def
+  /bbllx exch def
+} def
+
+% Update the accumulated bounding box.
+% <llx'> <lly'> <urx'> <ury'> updatebbox --
+/updatebbox {
+  dup bbury gt {/bbury exch def} {pop} ifelse
+  dup bburx gt {/bburx exch def} {pop} ifelse
+  dup bblly lt {/bblly exch def} {pop} ifelse
+  dup bbllx lt {/bbllx exch def} {pop} ifelse
+} def
+
+% Set the bounding box to the values on the stack.
+% <llx'> <lly'> <urx'> <ury'> updatebbox --
+/restorebbox {
+  /bbury exch def /bburx exch def /bblly exch def /bbllx exch def
+} def
+
+% Push the accumulated bounding box onto the stack.
+% -- pushbbox <llx> <lly> <urx> <ury>
+/pushbbox {bbllx bblly bburx bbury} def
+
+% Make the relative bounding box relative to the currentpoint.
+% <llx'> <lly'> <urx'> <ury'> inflate <llx> <lly> <urx> <ury>
+/inflate {
+  2 {fontsize 0.2 mul add 4 1 roll} repeat
+  2 {fontsize 0.2 mul sub 4 1 roll} repeat
+} def
+
+% Make the relative bounding box relative to the currentpoint.
+% <llx'> <lly'> <urx'> <ury'> relative <llx> <lly> <urx> <ury>
+/relative {
+  currentpoint 3 -1 roll add 3 1 roll add exch 4 2 roll
+  currentpoint 3 -1 roll add 3 1 roll add exch 4 2 roll
+} def
+
+% Returns the size of a string appropriate for recshow.
+% <string> stringsize <llx> <lly> <urx> <ury>
+/stringsize {
+  pushbbox /internalshow load /internalstroke load 7 -1 roll
+  q
+  nulldevice 0 0 m
+  nullinternalshow nullinternalstroke
+  resetbbox
+  recshow
+  /internalstroke exch def /internalshow exch def
+  pushbbox 8 -4 roll restorebbox
+  Q
+} def
+
+% Calculate values for string positioning.
+/calcval {4 copy
+  3 -1 roll sub /widy exch def sub neg /widx exch def
+  pop pop /dy exch def /dx exch def} def
+
+% Utilities to position a string.
+% First letter (U=upper, C=center, B=baseline, L=lower)
+% Second letter (L=left, C=center, R=right)
+/align [
+{calcval dx neg widy dy add neg rmoveto} % UL
+{calcval dx neg widy 2 div dy add neg rmoveto} % CL
+{calcval dx neg 0 rmoveto} % BL
+{calcval dx neg dy neg rmoveto} % LL
+{calcval widx dx add neg widy dy add neg rmoveto} % UR
+{calcval widx dx add neg widy 2 div dy add neg rmoveto} % CR
+{calcval widx dx add neg 0 rmoveto} % BR
+{calcval widx dx add neg dy neg rmoveto} % LR
+{calcval widx 2 div dx add neg widy dy add neg rmoveto} % UC
+{calcval widx 2 div dx add neg widy 2 div dy add neg rmoveto} % CC
+{calcval widx 2 div dx add neg 0 rmoveto} % BC
+{calcval widx 2 div dx add neg dy neg rmoveto} % LC
+] def
+
+/vg&str {m q 1 -1 scale dup stringsize 4 copy align 11 -1 roll get exec
+         q inflate relative frame exch exec Q recshow Q} def
+
+end /procDict exch def
+%%EndProlog
+
+%%BeginSetup
+save
+procDict begin
+printColorMap begin
+595 791 setpagesize
+20 20 20 20 setmargins
+0 0 setorigin
+448 143 setsize
+fittopage
+portrait
+imagescale
+cliptobounds
+setbasematrix
+/Helvetica 10 sf
+defaultGraphicsState
+%%EndSetup
+
+0.00000 0.00000 0.00000 RG
+[ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] defaultmatrix matrix concatmatrix setmatrix
+cliprestore
+1.00000 1.00000 1.00000 RG
+newpath
+0.00000 0.00000 m
+448.000 0.00000 l
+448.000 143.000 l
+0.00000 143.000 l
+0.00000 0.00000 l
+h
+f
+0.00000 0.00000 0.00000 RG
+0.00000 0.00000 0.00000 RG
+[ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] defaultmatrix matrix concatmatrix setmatrix
+cliprestore
+1.00000 1.00000 1.00000 RG
+newpath
+0.00000 0.00000 m
+448.000 0.00000 l
+448.000 143.000 l
+0.00000 143.000 l
+0.00000 0.00000 l
+h
+f
+0.00000 0.00000 0.00000 RG
+q
+q
+1.00000 1.00000 1.00000 RG
+newpath
+0.00000 0.00000 m
+0.00000 0.00000 l
+0.00000 0.00000 l
+0.00000 0.00000 l
+0.00000 0.00000 l
+h
+f
+Q
+Q
+[ 1.00000 0.00000 0.00000 1.00000 910.000 579.000 ] concat
+.258824 .658824 .282353 RG
+newpath
+-762.653 -470.000 m
+-762.653 -477.424 l
+-761.307 -477.424 l
+-761.307 -476.029 l
+-760.773 -477.068 -759.999 -477.588 -758.982 -477.588  c
+-758.846 -477.588 -758.702 -477.576 -758.552 -477.554  c
+-758.552 -476.296 l
+-758.784 -476.373 -758.989 -476.412 -759.167 -476.412  c
+-760.019 -476.412 -760.732 -475.906 -761.307 -474.895  c
+-761.307 -470.000 l
+h
+-751.483 -470.239 m
+-752.386 -469.966 -753.158 -469.829 -753.801 -469.829  c
+-754.895 -469.829 -755.787 -470.193 -756.477 -470.919  c
+-757.167 -471.646 -757.513 -472.589 -757.513 -473.746  c
+-757.513 -474.872 -757.208 -475.795 -756.600 -476.515  c
+-755.992 -477.235 -755.214 -477.595 -754.266 -477.595  c
+-753.368 -477.595 -752.674 -477.276 -752.184 -476.638  c
+-751.694 -476.000 -751.449 -475.093 -751.449 -473.917  c
+-751.456 -473.500 l
+-756.139 -473.500 l
+-755.943 -471.736 -755.079 -470.854 -753.548 -470.854  c
+-752.987 -470.854 -752.299 -471.005 -751.483 -471.306  c
+h
+-756.077 -474.512 m
+-752.803 -474.512 l
+-752.803 -475.893 -753.318 -476.583 -754.348 -476.583  c
+-755.382 -476.583 -755.959 -475.893 -756.077 -474.512  c
+h
+-749.098 -467.532 m
+-748.940 -468.701 l
+-748.161 -468.332 -747.393 -468.147 -746.637 -468.147  c
+-745.119 -468.147 -744.360 -468.952 -744.360 -470.561  c
+-744.360 -471.729 l
+-744.857 -470.690 -745.673 -470.171 -746.808 -470.171  c
+-747.696 -470.171 -748.403 -470.494 -748.927 -471.142  c
+-749.451 -471.789 -749.713 -472.661 -749.713 -473.760  c
+-749.713 -474.890 -749.414 -475.811 -748.817 -476.521  c
+-748.220 -477.232 -747.448 -477.588 -746.500 -477.588  c
+-745.671 -477.588 -744.957 -477.251 -744.360 -476.576  c
+-744.360 -477.424 l
+-743.007 -477.424 l
+-743.007 -472.023 l
+-743.007 -470.861 -743.067 -470.001 -743.188 -469.443  c
+-743.309 -468.885 -743.535 -468.428 -743.868 -468.072  c
+-744.456 -467.448 -745.370 -467.136 -746.609 -467.136  c
+-747.475 -467.136 -748.305 -467.268 -749.098 -467.532  c
+h
+-744.360 -472.570 m
+-744.360 -475.653 l
+-744.953 -476.269 -745.598 -476.576 -746.295 -476.576  c
+-746.915 -476.576 -747.400 -476.328 -747.751 -475.831  c
+-748.102 -475.334 -748.277 -474.653 -748.277 -473.787  c
+-748.277 -472.160 -747.705 -471.347 -746.562 -471.347  c
+-745.782 -471.347 -745.049 -471.755 -744.360 -472.570  c
+h
+-740.396 -470.000 m
+-740.396 -477.424 l
+-739.049 -477.424 l
+-739.049 -470.000 l
+h
+-740.396 -478.771 m
+-740.396 -480.117 l
+-739.049 -480.117 l
+-739.049 -478.771 l
+h
+-734.380 -469.829 m
+-734.995 -469.829 -735.743 -469.973 -736.622 -470.260  c
+-736.622 -471.497 l
+-735.743 -471.060 -734.977 -470.841 -734.325 -470.841  c
+-733.938 -470.841 -733.617 -470.946 -733.361 -471.155  c
+-733.106 -471.365 -732.979 -471.627 -732.979 -471.941  c
+-732.979 -472.402 -733.336 -472.782 -734.052 -473.083  c
+-734.838 -473.418 l
+-736.000 -473.901 -736.581 -474.596 -736.581 -475.503  c
+-736.581 -476.150 -736.352 -476.659 -735.894 -477.031  c
+-735.436 -477.402 -734.808 -477.588 -734.011 -477.588  c
+-733.596 -477.588 -733.083 -477.531 -732.473 -477.417  c
+-732.192 -477.362 l
+-732.192 -476.241 l
+-732.944 -476.465 -733.541 -476.576 -733.983 -476.576  c
+-734.849 -476.576 -735.282 -476.262 -735.282 -475.633  c
+-735.282 -475.227 -734.954 -474.885 -734.298 -474.607  c
+-733.648 -474.334 l
+-732.915 -474.024 -732.395 -473.697 -732.090 -473.353  c
+-731.785 -473.009 -731.632 -472.579 -731.632 -472.064  c
+-731.632 -471.413 -731.889 -470.877 -732.404 -470.458  c
+-732.919 -470.039 -733.578 -469.829 -734.380 -469.829  c
+h
+-726.983 -469.829 m
+-727.667 -469.829 -728.200 -470.025 -728.583 -470.417  c
+-728.966 -470.809 -729.157 -471.354 -729.157 -472.051  c
+-729.157 -476.412 l
+-730.087 -476.412 l
+-730.087 -477.424 l
+-729.157 -477.424 l
+-729.157 -478.771 l
+-727.811 -478.900 l
+-727.811 -477.424 l
+-725.869 -477.424 l
+-725.869 -476.412 l
+-727.811 -476.412 l
+-727.811 -472.297 l
+-727.811 -471.326 -727.391 -470.841 -726.553 -470.841  c
+-726.375 -470.841 -726.159 -470.870 -725.903 -470.930  c
+-725.903 -470.000 l
+-726.318 -469.886 -726.678 -469.829 -726.983 -469.829  c
+h
+-718.534 -470.239 m
+-719.437 -469.966 -720.209 -469.829 -720.852 -469.829  c
+-721.945 -469.829 -722.837 -470.193 -723.528 -470.919  c
+-724.218 -471.646 -724.563 -472.589 -724.563 -473.746  c
+-724.563 -474.872 -724.259 -475.795 -723.651 -476.515  c
+-723.042 -477.235 -722.264 -477.595 -721.316 -477.595  c
+-720.419 -477.595 -719.725 -477.276 -719.235 -476.638  c
+-718.745 -476.000 -718.500 -475.093 -718.500 -473.917  c
+-718.507 -473.500 l
+-723.189 -473.500 l
+-722.993 -471.736 -722.130 -470.854 -720.599 -470.854  c
+-720.038 -470.854 -719.350 -471.005 -718.534 -471.306  c
+h
+-723.128 -474.512 m
+-719.854 -474.512 l
+-719.854 -475.893 -720.368 -476.583 -721.398 -476.583  c
+-722.433 -476.583 -723.009 -475.893 -723.128 -474.512  c
+h
+-716.176 -470.000 m
+-716.176 -477.424 l
+-714.829 -477.424 l
+-714.829 -476.029 l
+-714.296 -477.068 -713.521 -477.588 -712.505 -477.588  c
+-712.368 -477.588 -712.225 -477.576 -712.074 -477.554  c
+-712.074 -476.296 l
+-712.307 -476.373 -712.512 -476.412 -712.689 -476.412  c
+-713.542 -476.412 -714.255 -475.906 -714.829 -474.895  c
+-714.829 -470.000 l
+h
+-705.006 -470.239 m
+-705.908 -469.966 -706.681 -469.829 -707.323 -469.829  c
+-708.417 -469.829 -709.309 -470.193 -710.000 -470.919  c
+-710.690 -471.646 -711.035 -472.589 -711.035 -473.746  c
+-711.035 -474.872 -710.731 -475.795 -710.123 -476.515  c
+-709.514 -477.235 -708.736 -477.595 -707.788 -477.595  c
+-706.890 -477.595 -706.196 -477.276 -705.707 -476.638  c
+-705.217 -476.000 -704.972 -475.093 -704.972 -473.917  c
+-704.979 -473.500 l
+-709.661 -473.500 l
+-709.465 -471.736 -708.602 -470.854 -707.070 -470.854  c
+-706.510 -470.854 -705.822 -471.005 -705.006 -471.306  c
+h
+-709.600 -474.512 m
+-706.325 -474.512 l
+-706.325 -475.893 -706.840 -476.583 -707.870 -476.583  c
+-708.905 -476.583 -709.481 -475.893 -709.600 -474.512  c
+h
+-697.883 -470.000 m
+-697.883 -471.395 l
+-698.430 -470.351 -699.255 -469.829 -700.357 -469.829  c
+-701.251 -469.829 -701.954 -470.155 -702.466 -470.807  c
+-702.979 -471.458 -703.235 -472.349 -703.235 -473.479  c
+-703.235 -474.715 -702.945 -475.708 -702.364 -476.460  c
+-701.783 -477.212 -701.018 -477.588 -700.070 -477.588  c
+-699.191 -477.588 -698.462 -477.251 -697.883 -476.576  c
+-697.883 -480.794 l
+-696.529 -480.794 l
+-696.529 -470.000 l
+h
+-697.883 -475.653 m
+-698.580 -476.269 -699.241 -476.576 -699.865 -476.576  c
+-701.155 -476.576 -701.800 -475.590 -701.800 -473.616  c
+-701.800 -471.880 -701.226 -471.012 -700.077 -471.012  c
+-699.330 -471.012 -698.598 -471.420 -697.883 -472.235  c
+h
+-689.235 -472.276 m
+-689.235 -473.288 l
+-681.142 -473.288 l
+-681.142 -472.276 l
+h
+-689.235 -474.806 m
+-689.235 -475.817 l
+-681.142 -475.817 l
+-681.142 -474.806 l
+h
+-678.106 -472.276 m
+-678.106 -473.288 l
+-670.013 -473.288 l
+-670.013 -472.276 l
+h
+-678.106 -474.806 m
+-678.106 -475.817 l
+-670.013 -475.817 l
+-670.013 -474.806 l
+h
+-662.760 -470.000 m
+-662.760 -480.117 l
+-661.352 -480.117 l
+-656.259 -472.304 l
+-656.259 -480.117 l
+-655.028 -480.117 l
+-655.028 -470.000 l
+-656.430 -470.000 l
+-661.529 -477.813 l
+-661.529 -470.000 l
+h
+f
+.258824 .627451 .658824 RG
+newpath
+-831.653 -547.000 m
+-831.653 -554.424 l
+-830.307 -554.424 l
+-830.307 -553.029 l
+-829.773 -554.068 -828.999 -554.588 -827.982 -554.588  c
+-827.846 -554.588 -827.702 -554.576 -827.552 -554.554  c
+-827.552 -553.296 l
+-827.784 -553.373 -827.989 -553.412 -828.167 -553.412  c
+-829.019 -553.412 -829.732 -552.906 -830.307 -551.895  c
+-830.307 -547.000 l
+h
+-820.483 -547.239 m
+-821.386 -546.966 -822.158 -546.829 -822.801 -546.829  c
+-823.895 -546.829 -824.787 -547.193 -825.477 -547.919  c
+-826.167 -548.646 -826.513 -549.589 -826.513 -550.746  c
+-826.513 -551.872 -826.208 -552.795 -825.600 -553.515  c
+-824.992 -554.235 -824.214 -554.595 -823.266 -554.595  c
+-822.368 -554.595 -821.674 -554.276 -821.184 -553.638  c
+-820.694 -553.000 -820.449 -552.093 -820.449 -550.917  c
+-820.456 -550.500 l
+-825.139 -550.500 l
+-824.943 -548.736 -824.079 -547.854 -822.548 -547.854  c
+-821.987 -547.854 -821.299 -548.005 -820.483 -548.306  c
+h
+-825.077 -551.512 m
+-821.803 -551.512 l
+-821.803 -552.893 -822.318 -553.583 -823.348 -553.583  c
+-824.382 -553.583 -824.959 -552.893 -825.077 -551.512  c
+h
+-818.098 -544.532 m
+-817.940 -545.701 l
+-817.161 -545.332 -816.393 -545.147 -815.637 -545.147  c
+-814.119 -545.147 -813.360 -545.952 -813.360 -547.561  c
+-813.360 -548.729 l
+-813.857 -547.690 -814.673 -547.171 -815.808 -547.171  c
+-816.696 -547.171 -817.403 -547.494 -817.927 -548.142  c
+-818.451 -548.789 -818.713 -549.661 -818.713 -550.760  c
+-818.713 -551.890 -818.414 -552.811 -817.817 -553.521  c
+-817.220 -554.232 -816.448 -554.588 -815.500 -554.588  c
+-814.671 -554.588 -813.957 -554.251 -813.360 -553.576  c
+-813.360 -554.424 l
+-812.007 -554.424 l
+-812.007 -549.023 l
+-812.007 -547.861 -812.067 -547.001 -812.188 -546.443  c
+-812.309 -545.885 -812.535 -545.428 -812.868 -545.072  c
+-813.456 -544.448 -814.370 -544.136 -815.609 -544.136  c
+-816.475 -544.136 -817.305 -544.268 -818.098 -544.532  c
+h
+-813.360 -549.570 m
+-813.360 -552.653 l
+-813.953 -553.269 -814.598 -553.576 -815.295 -553.576  c
+-815.915 -553.576 -816.400 -553.328 -816.751 -552.831  c
+-817.102 -552.334 -817.277 -551.653 -817.277 -550.787  c
+-817.277 -549.160 -816.705 -548.347 -815.562 -548.347  c
+-814.782 -548.347 -814.049 -548.755 -813.360 -549.570  c
+h
+-809.033 -547.000 m
+-809.033 -548.347 l
+-807.687 -548.347 l
+-807.687 -547.000 l
+h
+-809.033 -549.700 m
+-809.033 -550.069 l
+-809.033 -550.940 -808.698 -551.758 -808.028 -552.523  c
+-807.598 -553.022 l
+-806.882 -553.843 -806.524 -554.515 -806.524 -555.039  c
+-806.524 -555.445 -806.682 -555.766 -806.996 -556.003  c
+-807.311 -556.240 -807.734 -556.358 -808.268 -556.358  c
+-808.965 -556.358 -809.705 -556.190 -810.489 -555.853  c
+-810.489 -556.994 l
+-809.646 -557.249 -808.858 -557.377 -808.124 -557.377  c
+-807.194 -557.377 -806.456 -557.168 -805.909 -556.751  c
+-805.362 -556.334 -805.089 -555.771 -805.089 -555.060  c
+-805.089 -554.659 -805.167 -554.313 -805.325 -554.024  c
+-805.482 -553.735 -805.784 -553.378 -806.230 -552.954  c
+-806.654 -552.558 l
+-807.078 -552.157 -807.356 -551.820 -807.488 -551.549  c
+-807.620 -551.278 -807.687 -550.912 -807.687 -550.452  c
+-807.687 -549.700 l
+h
+f
+.647059 .686275 .803922 RG
+newpath
+-464.000 -459.000 m
+-464.000 -452.373 -469.373 -447.000 -476.000 -447.000  c
+-482.627 -447.000 -488.000 -452.373 -488.000 -459.000  c
+-488.000 -465.627 -482.627 -471.000 -476.000 -471.000  c
+-469.373 -471.000 -464.000 -465.627 -464.000 -459.000  c
+h
+f
+0.00000 0.00000 0.00000 RG
+newpath
+-464.000 -459.000 m
+-464.000 -452.373 -469.373 -447.000 -476.000 -447.000  c
+-482.627 -447.000 -488.000 -452.373 -488.000 -459.000  c
+-488.000 -465.627 -482.627 -471.000 -476.000 -471.000  c
+-469.373 -471.000 -464.000 -465.627 -464.000 -459.000  c
+h
+S
+.647059 .686275 .803922 RG
+newpath
+-651.000 -450.000 m
+-651.000 -443.373 -656.373 -438.000 -663.000 -438.000  c
+-669.627 -438.000 -675.000 -443.373 -675.000 -450.000  c
+-675.000 -456.627 -669.627 -462.000 -663.000 -462.000  c
+-656.373 -462.000 -651.000 -456.627 -651.000 -450.000  c
+h
+f
+0.00000 0.00000 0.00000 RG
+newpath
+-651.000 -450.000 m
+-651.000 -443.373 -656.373 -438.000 -663.000 -438.000  c
+-669.627 -438.000 -675.000 -443.373 -675.000 -450.000  c
+-675.000 -456.627 -669.627 -462.000 -663.000 -462.000  c
+-656.373 -462.000 -651.000 -456.627 -651.000 -450.000  c
+h
+S
+.647059 .686275 .803922 RG
+newpath
+-770.000 -450.000 m
+-770.000 -443.373 -775.373 -438.000 -782.000 -438.000  c
+-788.627 -438.000 -794.000 -443.373 -794.000 -450.000  c
+-794.000 -456.627 -788.627 -462.000 -782.000 -462.000  c
+-775.373 -462.000 -770.000 -456.627 -770.000 -450.000  c
+h
+f
+0.00000 0.00000 0.00000 RG
+newpath
+-770.000 -450.000 m
+-770.000 -443.373 -775.373 -438.000 -782.000 -438.000  c
+-788.627 -438.000 -794.000 -443.373 -794.000 -450.000  c
+-794.000 -456.627 -788.627 -462.000 -782.000 -462.000  c
+-775.373 -462.000 -770.000 -456.627 -770.000 -450.000  c
+h
+S
+newpath
+-774.000 -450.000 m
+-774.000 -445.582 -777.582 -442.000 -782.000 -442.000  c
+-786.418 -442.000 -790.000 -445.582 -790.000 -450.000  c
+-790.000 -454.418 -786.418 -458.000 -782.000 -458.000  c
+-777.582 -458.000 -774.000 -454.418 -774.000 -450.000  c
+h
+S
+.258824 .258824 .658824 RG
+newpath
+-907.653 -564.000 m
+-907.653 -571.424 l
+-906.307 -571.424 l
+-906.307 -570.029 l
+-905.773 -571.068 -904.999 -571.588 -903.982 -571.588  c
+-903.846 -571.588 -903.702 -571.576 -903.552 -571.554  c
+-903.552 -570.296 l
+-903.784 -570.373 -903.989 -570.412 -904.167 -570.412  c
+-905.019 -570.412 -905.732 -569.906 -906.307 -568.895  c
+-906.307 -564.000 l
+h
+-896.483 -564.239 m
+-897.386 -563.966 -898.158 -563.829 -898.801 -563.829  c
+-899.895 -563.829 -900.787 -564.193 -901.477 -564.919  c
+-902.167 -565.646 -902.513 -566.589 -902.513 -567.746  c
+-902.513 -568.872 -902.208 -569.795 -901.600 -570.515  c
+-900.992 -571.235 -900.214 -571.595 -899.266 -571.595  c
+-898.368 -571.595 -897.674 -571.276 -897.184 -570.638  c
+-896.694 -570.000 -896.449 -569.093 -896.449 -567.917  c
+-896.456 -567.500 l
+-901.139 -567.500 l
+-900.943 -565.736 -900.079 -564.854 -898.548 -564.854  c
+-897.987 -564.854 -897.299 -565.005 -896.483 -565.306  c
+h
+-901.077 -568.512 m
+-897.803 -568.512 l
+-897.803 -569.893 -898.318 -570.583 -899.348 -570.583  c
+-900.382 -570.583 -900.959 -569.893 -901.077 -568.512  c
+h
+-894.098 -561.532 m
+-893.940 -562.701 l
+-893.161 -562.332 -892.393 -562.147 -891.637 -562.147  c
+-890.119 -562.147 -889.360 -562.952 -889.360 -564.561  c
+-889.360 -565.729 l
+-889.857 -564.690 -890.673 -564.171 -891.808 -564.171  c
+-892.696 -564.171 -893.403 -564.494 -893.927 -565.142  c
+-894.451 -565.789 -894.713 -566.661 -894.713 -567.760  c
+-894.713 -568.890 -894.414 -569.811 -893.817 -570.521  c
+-893.220 -571.232 -892.448 -571.588 -891.500 -571.588  c
+-890.671 -571.588 -889.957 -571.251 -889.360 -570.576  c
+-889.360 -571.424 l
+-888.007 -571.424 l
+-888.007 -566.023 l
+-888.007 -564.861 -888.067 -564.001 -888.188 -563.443  c
+-888.309 -562.885 -888.535 -562.428 -888.868 -562.072  c
+-889.456 -561.448 -890.370 -561.136 -891.609 -561.136  c
+-892.475 -561.136 -893.305 -561.268 -894.098 -561.532  c
+h
+-889.360 -566.570 m
+-889.360 -569.653 l
+-889.953 -570.269 -890.598 -570.576 -891.295 -570.576  c
+-891.915 -570.576 -892.400 -570.328 -892.751 -569.831  c
+-893.102 -569.334 -893.277 -568.653 -893.277 -567.787  c
+-893.277 -566.160 -892.705 -565.347 -891.562 -565.347  c
+-890.782 -565.347 -890.049 -565.755 -889.360 -566.570  c
+h
+-885.396 -564.000 m
+-885.396 -571.424 l
+-884.049 -571.424 l
+-884.049 -564.000 l
+h
+-885.396 -572.771 m
+-885.396 -574.117 l
+-884.049 -574.117 l
+-884.049 -572.771 l
+h
+-879.380 -563.829 m
+-879.995 -563.829 -880.743 -563.973 -881.622 -564.260  c
+-881.622 -565.497 l
+-880.743 -565.060 -879.977 -564.841 -879.325 -564.841  c
+-878.938 -564.841 -878.617 -564.946 -878.361 -565.155  c
+-878.106 -565.365 -877.979 -565.627 -877.979 -565.941  c
+-877.979 -566.402 -878.336 -566.782 -879.052 -567.083  c
+-879.838 -567.418 l
+-881.000 -567.901 -881.581 -568.596 -881.581 -569.503  c
+-881.581 -570.150 -881.352 -570.659 -880.894 -571.031  c
+-880.436 -571.402 -879.808 -571.588 -879.011 -571.588  c
+-878.596 -571.588 -878.083 -571.531 -877.473 -571.417  c
+-877.192 -571.362 l
+-877.192 -570.241 l
+-877.944 -570.465 -878.541 -570.576 -878.983 -570.576  c
+-879.849 -570.576 -880.282 -570.262 -880.282 -569.633  c
+-880.282 -569.227 -879.954 -568.885 -879.298 -568.607  c
+-878.648 -568.334 l
+-877.915 -568.024 -877.395 -567.697 -877.090 -567.353  c
+-876.785 -567.009 -876.632 -566.579 -876.632 -566.064  c
+-876.632 -565.413 -876.889 -564.877 -877.404 -564.458  c
+-877.919 -564.039 -878.578 -563.829 -879.380 -563.829  c
+h
+-871.983 -563.829 m
+-872.667 -563.829 -873.200 -564.025 -873.583 -564.417  c
+-873.966 -564.809 -874.157 -565.354 -874.157 -566.051  c
+-874.157 -570.412 l
+-875.087 -570.412 l
+-875.087 -571.424 l
+-874.157 -571.424 l
+-874.157 -572.771 l
+-872.811 -572.900 l
+-872.811 -571.424 l
+-870.869 -571.424 l
+-870.869 -570.412 l
+-872.811 -570.412 l
+-872.811 -566.297 l
+-872.811 -565.326 -872.391 -564.841 -871.553 -564.841  c
+-871.375 -564.841 -871.159 -564.870 -870.903 -564.930  c
+-870.903 -564.000 l
+-871.318 -563.886 -871.678 -563.829 -871.983 -563.829  c
+h
+-863.534 -564.239 m
+-864.437 -563.966 -865.209 -563.829 -865.852 -563.829  c
+-866.945 -563.829 -867.837 -564.193 -868.528 -564.919  c
+-869.218 -565.646 -869.563 -566.589 -869.563 -567.746  c
+-869.563 -568.872 -869.259 -569.795 -868.651 -570.515  c
+-868.042 -571.235 -867.264 -571.595 -866.316 -571.595  c
+-865.419 -571.595 -864.725 -571.276 -864.235 -570.638  c
+-863.745 -570.000 -863.500 -569.093 -863.500 -567.917  c
+-863.507 -567.500 l
+-868.189 -567.500 l
+-867.993 -565.736 -867.130 -564.854 -865.599 -564.854  c
+-865.038 -564.854 -864.350 -565.005 -863.534 -565.306  c
+h
+-868.128 -568.512 m
+-864.854 -568.512 l
+-864.854 -569.893 -865.368 -570.583 -866.398 -570.583  c
+-867.433 -570.583 -868.009 -569.893 -868.128 -568.512  c
+h
+-861.176 -564.000 m
+-861.176 -571.424 l
+-859.829 -571.424 l
+-859.829 -570.029 l
+-859.296 -571.068 -858.521 -571.588 -857.505 -571.588  c
+-857.368 -571.588 -857.225 -571.576 -857.074 -571.554  c
+-857.074 -570.296 l
+-857.307 -570.373 -857.512 -570.412 -857.689 -570.412  c
+-858.542 -570.412 -859.255 -569.906 -859.829 -568.895  c
+-859.829 -564.000 l
+h
+-850.006 -564.239 m
+-850.908 -563.966 -851.681 -563.829 -852.323 -563.829  c
+-853.417 -563.829 -854.309 -564.193 -855.000 -564.919  c
+-855.690 -565.646 -856.035 -566.589 -856.035 -567.746  c
+-856.035 -568.872 -855.731 -569.795 -855.123 -570.515  c
+-854.514 -571.235 -853.736 -571.595 -852.788 -571.595  c
+-851.890 -571.595 -851.196 -571.276 -850.707 -570.638  c
+-850.217 -570.000 -849.972 -569.093 -849.972 -567.917  c
+-849.979 -567.500 l
+-854.661 -567.500 l
+-854.465 -565.736 -853.602 -564.854 -852.070 -564.854  c
+-851.510 -564.854 -850.822 -565.005 -850.006 -565.306  c
+h
+-854.600 -568.512 m
+-851.325 -568.512 l
+-851.325 -569.893 -851.840 -570.583 -852.870 -570.583  c
+-853.905 -570.583 -854.481 -569.893 -854.600 -568.512  c
+h
+-842.883 -564.000 m
+-842.883 -565.395 l
+-843.430 -564.351 -844.255 -563.829 -845.357 -563.829  c
+-846.251 -563.829 -846.954 -564.155 -847.466 -564.807  c
+-847.979 -565.458 -848.235 -566.349 -848.235 -567.479  c
+-848.235 -568.715 -847.945 -569.708 -847.364 -570.460  c
+-846.783 -571.212 -846.018 -571.588 -845.070 -571.588  c
+-844.191 -571.588 -843.462 -571.251 -842.883 -570.576  c
+-842.883 -574.794 l
+-841.529 -574.794 l
+-841.529 -564.000 l
+h
+-842.883 -569.653 m
+-843.580 -570.269 -844.241 -570.576 -844.865 -570.576  c
+-846.155 -570.576 -846.800 -569.590 -846.800 -567.616  c
+-846.800 -565.880 -846.226 -565.012 -845.077 -565.012  c
+-844.330 -565.012 -843.598 -565.420 -842.883 -566.235  c
+h
+-834.215 -564.000 m
+-834.215 -565.347 l
+-832.868 -565.347 l
+-832.868 -564.000 l
+h
+-834.215 -570.070 m
+-834.215 -571.424 l
+-832.868 -571.424 l
+-832.868 -570.070 l
+h
+-829.806 -566.276 m
+-829.806 -567.288 l
+-821.712 -567.288 l
+-821.712 -566.276 l
+h
+-829.806 -568.806 m
+-829.806 -569.817 l
+-821.712 -569.817 l
+-821.712 -568.806 l
+h
+-814.418 -564.000 m
+-814.418 -571.424 l
+-813.071 -571.424 l
+-813.071 -570.029 l
+-812.538 -571.068 -811.763 -571.588 -810.747 -571.588  c
+-810.610 -571.588 -810.467 -571.576 -810.316 -571.554  c
+-810.316 -570.296 l
+-810.549 -570.373 -810.754 -570.412 -810.932 -570.412  c
+-811.784 -570.412 -812.497 -569.906 -813.071 -568.895  c
+-813.071 -564.000 l
+h
+-803.248 -564.239 m
+-804.150 -563.966 -804.923 -563.829 -805.565 -563.829  c
+-806.659 -563.829 -807.551 -564.193 -808.242 -564.919  c
+-808.932 -565.646 -809.277 -566.589 -809.277 -567.746  c
+-809.277 -568.872 -808.973 -569.795 -808.365 -570.515  c
+-807.756 -571.235 -806.978 -571.595 -806.030 -571.595  c
+-805.132 -571.595 -804.439 -571.276 -803.949 -570.638  c
+-803.459 -570.000 -803.214 -569.093 -803.214 -567.917  c
+-803.221 -567.500 l
+-807.903 -567.500 l
+-807.707 -565.736 -806.844 -564.854 -805.312 -564.854  c
+-804.752 -564.854 -804.064 -565.005 -803.248 -565.306  c
+h
+-807.842 -568.512 m
+-804.567 -568.512 l
+-804.567 -569.893 -805.082 -570.583 -806.112 -570.583  c
+-807.147 -570.583 -807.723 -569.893 -807.842 -568.512  c
+h
+-800.862 -561.532 m
+-800.705 -562.701 l
+-799.926 -562.332 -799.158 -562.147 -798.401 -562.147  c
+-796.884 -562.147 -796.125 -562.952 -796.125 -564.561  c
+-796.125 -565.729 l
+-796.622 -564.690 -797.438 -564.171 -798.572 -564.171  c
+-799.461 -564.171 -800.167 -564.494 -800.691 -565.142  c
+-801.215 -565.789 -801.478 -566.661 -801.478 -567.760  c
+-801.478 -568.890 -801.179 -569.811 -800.582 -570.521  c
+-799.985 -571.232 -799.213 -571.588 -798.265 -571.588  c
+-797.435 -571.588 -796.722 -571.251 -796.125 -570.576  c
+-796.125 -571.424 l
+-794.771 -571.424 l
+-794.771 -566.023 l
+-794.771 -564.861 -794.832 -564.001 -794.953 -563.443  c
+-795.073 -562.885 -795.300 -562.428 -795.633 -562.072  c
+-796.221 -561.448 -797.134 -561.136 -798.374 -561.136  c
+-799.240 -561.136 -800.069 -561.268 -800.862 -561.532  c
+h
+-796.125 -566.570 m
+-796.125 -569.653 l
+-796.717 -570.269 -797.362 -570.576 -798.060 -570.576  c
+-798.679 -570.576 -799.165 -570.328 -799.516 -569.831  c
+-799.867 -569.334 -800.042 -568.653 -800.042 -567.787  c
+-800.042 -566.160 -799.470 -565.347 -798.326 -565.347  c
+-797.547 -565.347 -796.813 -565.755 -796.125 -566.570  c
+h
+-792.160 -564.000 m
+-792.160 -571.424 l
+-790.813 -571.424 l
+-790.813 -564.000 l
+h
+-792.160 -572.771 m
+-792.160 -574.117 l
+-790.813 -574.117 l
+-790.813 -572.771 l
+h
+-786.145 -563.829 m
+-786.760 -563.829 -787.507 -563.973 -788.387 -564.260  c
+-788.387 -565.497 l
+-787.507 -565.060 -786.742 -564.841 -786.090 -564.841  c
+-785.702 -564.841 -785.381 -564.946 -785.126 -565.155  c
+-784.871 -565.365 -784.743 -565.627 -784.743 -565.941  c
+-784.743 -566.402 -785.101 -566.782 -785.816 -567.083  c
+-786.603 -567.418 l
+-787.765 -567.901 -788.346 -568.596 -788.346 -569.503  c
+-788.346 -570.150 -788.117 -570.659 -787.659 -571.031  c
+-787.201 -571.402 -786.573 -571.588 -785.775 -571.588  c
+-785.361 -571.588 -784.848 -571.531 -784.237 -571.417  c
+-783.957 -571.362 l
+-783.957 -570.241 l
+-784.709 -570.465 -785.306 -570.576 -785.748 -570.576  c
+-786.614 -570.576 -787.047 -570.262 -787.047 -569.633  c
+-787.047 -569.227 -786.719 -568.885 -786.062 -568.607  c
+-785.413 -568.334 l
+-784.679 -568.024 -784.160 -567.697 -783.854 -567.353  c
+-783.549 -567.009 -783.396 -566.579 -783.396 -566.064  c
+-783.396 -565.413 -783.654 -564.877 -784.169 -564.458  c
+-784.684 -564.039 -785.342 -563.829 -786.145 -563.829  c
+h
+-778.748 -563.829 m
+-779.432 -563.829 -779.965 -564.025 -780.348 -564.417  c
+-780.730 -564.809 -780.922 -565.354 -780.922 -566.051  c
+-780.922 -570.412 l
+-781.852 -570.412 l
+-781.852 -571.424 l
+-780.922 -571.424 l
+-780.922 -572.771 l
+-779.575 -572.900 l
+-779.575 -571.424 l
+-777.634 -571.424 l
+-777.634 -570.412 l
+-779.575 -570.412 l
+-779.575 -566.297 l
+-779.575 -565.326 -779.156 -564.841 -778.317 -564.841  c
+-778.140 -564.841 -777.923 -564.870 -777.668 -564.930  c
+-777.668 -564.000 l
+-778.083 -563.886 -778.443 -563.829 -778.748 -563.829  c
+h
+-770.299 -564.239 m
+-771.201 -563.966 -771.974 -563.829 -772.616 -563.829  c
+-773.710 -563.829 -774.602 -564.193 -775.292 -564.919  c
+-775.983 -565.646 -776.328 -566.589 -776.328 -567.746  c
+-776.328 -568.872 -776.024 -569.795 -775.416 -570.515  c
+-774.807 -571.235 -774.029 -571.595 -773.081 -571.595  c
+-772.183 -571.595 -771.489 -571.276 -771.000 -570.638  c
+-770.510 -570.000 -770.265 -569.093 -770.265 -567.917  c
+-770.271 -567.500 l
+-774.954 -567.500 l
+-774.758 -565.736 -773.895 -564.854 -772.363 -564.854  c
+-771.803 -564.854 -771.115 -565.005 -770.299 -565.306  c
+h
+-774.893 -568.512 m
+-771.618 -568.512 l
+-771.618 -569.893 -772.133 -570.583 -773.163 -570.583  c
+-774.198 -570.583 -774.774 -569.893 -774.893 -568.512  c
+h
+-767.940 -564.000 m
+-767.940 -571.424 l
+-766.594 -571.424 l
+-766.594 -570.029 l
+-766.061 -571.068 -765.286 -571.588 -764.270 -571.588  c
+-764.133 -571.588 -763.989 -571.576 -763.839 -571.554  c
+-763.839 -570.296 l
+-764.071 -570.373 -764.276 -570.412 -764.454 -570.412  c
+-765.306 -570.412 -766.020 -569.906 -766.594 -568.895  c
+-766.594 -564.000 l
+h
+-756.771 -564.239 m
+-757.673 -563.966 -758.445 -563.829 -759.088 -563.829  c
+-760.182 -563.829 -761.074 -564.193 -761.764 -564.919  c
+-762.455 -565.646 -762.800 -566.589 -762.800 -567.746  c
+-762.800 -568.872 -762.496 -569.795 -761.887 -570.515  c
+-761.279 -571.235 -760.501 -571.595 -759.553 -571.595  c
+-758.655 -571.595 -757.961 -571.276 -757.471 -570.638  c
+-756.981 -570.000 -756.736 -569.093 -756.736 -567.917  c
+-756.743 -567.500 l
+-761.426 -567.500 l
+-761.230 -565.736 -760.366 -564.854 -758.835 -564.854  c
+-758.274 -564.854 -757.586 -565.005 -756.771 -565.306  c
+h
+-761.364 -568.512 m
+-758.090 -568.512 l
+-758.090 -569.893 -758.605 -570.583 -759.635 -570.583  c
+-760.669 -570.583 -761.246 -569.893 -761.364 -568.512  c
+h
+-749.647 -564.000 m
+-749.647 -565.395 l
+-750.194 -564.351 -751.019 -563.829 -752.122 -563.829  c
+-753.015 -563.829 -753.718 -564.155 -754.231 -564.807  c
+-754.744 -565.458 -755.000 -566.349 -755.000 -567.479  c
+-755.000 -568.715 -754.709 -569.708 -754.128 -570.460  c
+-753.547 -571.212 -752.783 -571.588 -751.835 -571.588  c
+-750.955 -571.588 -750.226 -571.251 -749.647 -570.576  c
+-749.647 -574.794 l
+-748.294 -574.794 l
+-748.294 -564.000 l
+h
+-749.647 -569.653 m
+-750.345 -570.269 -751.006 -570.576 -751.630 -570.576  c
+-752.920 -570.576 -753.564 -569.590 -753.564 -567.616  c
+-753.564 -565.880 -752.990 -565.012 -751.842 -565.012  c
+-751.094 -565.012 -750.363 -565.420 -749.647 -566.235  c
+h
+-741.889 -564.000 m
+-741.889 -567.541 l
+-745.430 -567.541 l
+-745.430 -568.553 l
+-741.889 -568.553 l
+-741.889 -572.094 l
+-740.877 -572.094 l
+-740.877 -568.553 l
+-737.336 -568.553 l
+-737.336 -567.541 l
+-740.877 -567.541 l
+-740.877 -564.000 l
+h
+-733.713 -564.000 m
+-733.713 -565.012 l
+-731.689 -565.012 l
+-731.689 -572.996 l
+-733.713 -572.490 l
+-733.713 -573.529 l
+-730.336 -574.370 l
+-730.336 -565.012 l
+-728.312 -565.012 l
+-728.312 -564.000 l
+h
+f
+newpath
+-638.889 -440.000 m
+-638.889 -441.395 l
+-639.436 -440.351 -640.260 -439.829 -641.363 -439.829  c
+-642.257 -439.829 -642.959 -440.155 -643.472 -440.807  c
+-643.985 -441.458 -644.241 -442.349 -644.241 -443.479  c
+-644.241 -444.715 -643.951 -445.708 -643.370 -446.460  c
+-642.789 -447.212 -642.024 -447.588 -641.076 -447.588  c
+-640.197 -447.588 -639.467 -447.251 -638.889 -446.576  c
+-638.889 -450.794 l
+-637.535 -450.794 l
+-637.535 -440.000 l
+h
+-638.889 -445.653 m
+-639.586 -446.269 -640.247 -446.576 -640.871 -446.576  c
+-642.161 -446.576 -642.806 -445.590 -642.806 -443.616  c
+-642.806 -441.880 -642.231 -441.012 -641.083 -441.012  c
+-640.336 -441.012 -639.604 -441.420 -638.889 -442.235  c
+h
+-631.937 -439.829 m
+-632.998 -439.829 -633.846 -440.181 -634.479 -440.885  c
+-635.113 -441.589 -635.430 -442.532 -635.430 -443.712  c
+-635.430 -444.906 -635.112 -445.850 -634.476 -446.545  c
+-633.840 -447.240 -632.978 -447.588 -631.889 -447.588  c
+-630.799 -447.588 -629.937 -447.240 -629.301 -446.545  c
+-628.666 -445.850 -628.348 -444.910 -628.348 -443.726  c
+-628.348 -442.513 -628.667 -441.561 -629.305 -440.868  c
+-629.943 -440.175 -630.820 -439.829 -631.937 -439.829  c
+h
+-631.916 -440.841 m
+-630.490 -440.841 -629.776 -441.802 -629.776 -443.726  c
+-629.776 -445.626 -630.480 -446.576 -631.889 -446.576  c
+-633.292 -446.576 -633.994 -445.621 -633.994 -443.712  c
+-633.994 -441.798 -633.301 -440.841 -631.916 -440.841  c
+h
+-626.242 -440.000 m
+-626.242 -447.424 l
+-624.896 -447.424 l
+-624.896 -446.029 l
+-624.185 -447.068 -623.314 -447.588 -622.284 -447.588  c
+-621.642 -447.588 -621.129 -447.384 -620.746 -446.976  c
+-620.363 -446.568 -620.172 -446.020 -620.172 -445.332  c
+-620.172 -440.000 l
+-621.519 -440.000 l
+-621.519 -444.895 l
+-621.519 -445.446 -621.599 -445.839 -621.761 -446.074  c
+-621.923 -446.308 -622.191 -446.426 -622.564 -446.426  c
+-623.389 -446.426 -624.166 -445.886 -624.896 -444.806  c
+-624.896 -440.000 l
+h
+-612.112 -440.239 m
+-613.015 -439.966 -613.787 -439.829 -614.430 -439.829  c
+-615.523 -439.829 -616.416 -440.193 -617.106 -440.919  c
+-617.796 -441.646 -618.142 -442.589 -618.142 -443.746  c
+-618.142 -444.872 -617.837 -445.795 -617.229 -446.515  c
+-616.621 -447.235 -615.842 -447.595 -614.895 -447.595  c
+-613.997 -447.595 -613.303 -447.276 -612.813 -446.638  c
+-612.323 -446.000 -612.078 -445.093 -612.078 -443.917  c
+-612.085 -443.500 l
+-616.768 -443.500 l
+-616.572 -441.736 -615.708 -440.854 -614.177 -440.854  c
+-613.616 -440.854 -612.928 -441.005 -612.112 -441.306  c
+h
+-616.706 -444.512 m
+-613.432 -444.512 l
+-613.432 -445.893 -613.947 -446.583 -614.977 -446.583  c
+-616.011 -446.583 -616.588 -445.893 -616.706 -444.512  c
+h
+-605.133 -440.000 m
+-605.133 -441.347 l
+-603.786 -441.347 l
+-603.786 -440.000 l
+h
+-605.133 -446.070 m
+-605.133 -447.424 l
+-603.786 -447.424 l
+-603.786 -446.070 l
+h
+-600.724 -442.276 m
+-600.724 -443.288 l
+-592.630 -443.288 l
+-592.630 -442.276 l
+h
+-600.724 -444.806 m
+-600.724 -445.817 l
+-592.630 -445.817 l
+-592.630 -444.806 l
+h
+-584.577 -440.000 m
+-584.577 -441.012 l
+-582.554 -441.012 l
+-582.554 -448.996 l
+-584.577 -448.490 l
+-584.577 -449.529 l
+-581.200 -450.370 l
+-581.200 -441.012 l
+-579.177 -441.012 l
+-579.177 -440.000 l
+h
+f
+.258824 .627451 .658824 RG
+newpath
+-760.685 -452.829 m
+-761.300 -452.829 -762.047 -452.973 -762.927 -453.260  c
+-762.927 -454.497 l
+-762.047 -454.060 -761.282 -453.841 -760.630 -453.841  c
+-760.243 -453.841 -759.921 -453.946 -759.666 -454.155  c
+-759.411 -454.365 -759.283 -454.627 -759.283 -454.941  c
+-759.283 -455.402 -759.641 -455.782 -760.356 -456.083  c
+-761.143 -456.418 l
+-762.305 -456.901 -762.886 -457.596 -762.886 -458.503  c
+-762.886 -459.150 -762.657 -459.659 -762.199 -460.031  c
+-761.741 -460.402 -761.113 -460.588 -760.315 -460.588  c
+-759.901 -460.588 -759.388 -460.531 -758.777 -460.417  c
+-758.497 -460.362 l
+-758.497 -459.241 l
+-759.249 -459.465 -759.846 -459.576 -760.288 -459.576  c
+-761.154 -459.576 -761.587 -459.262 -761.587 -458.633  c
+-761.587 -458.227 -761.259 -457.885 -760.603 -457.607  c
+-759.953 -457.334 l
+-759.219 -457.024 -758.700 -456.697 -758.395 -456.353  c
+-758.089 -456.009 -757.937 -455.579 -757.937 -455.064  c
+-757.937 -454.413 -758.194 -453.877 -758.709 -453.458  c
+-759.224 -453.039 -759.882 -452.829 -760.685 -452.829  c
+h
+-753.288 -452.829 m
+-753.972 -452.829 -754.505 -453.025 -754.888 -453.417  c
+-755.271 -453.809 -755.462 -454.354 -755.462 -455.051  c
+-755.462 -459.412 l
+-756.392 -459.412 l
+-756.392 -460.424 l
+-755.462 -460.424 l
+-755.462 -461.771 l
+-754.115 -461.900 l
+-754.115 -460.424 l
+-752.174 -460.424 l
+-752.174 -459.412 l
+-754.115 -459.412 l
+-754.115 -455.297 l
+-754.115 -454.326 -753.696 -453.841 -752.857 -453.841  c
+-752.680 -453.841 -752.463 -453.870 -752.208 -453.930  c
+-752.208 -453.000 l
+-752.623 -452.886 -752.983 -452.829 -753.288 -452.829  c
+h
+-746.452 -453.943 m
+-747.259 -453.201 -748.036 -452.829 -748.783 -452.829  c
+-749.398 -452.829 -749.909 -453.022 -750.314 -453.407  c
+-750.720 -453.792 -750.923 -454.278 -750.923 -454.866  c
+-750.923 -455.677 -750.582 -456.301 -749.901 -456.736  c
+-749.220 -457.171 -748.243 -457.389 -746.972 -457.389  c
+-746.650 -457.389 l
+-746.650 -458.284 l
+-746.650 -459.146 -747.092 -459.576 -747.977 -459.576  c
+-748.688 -459.576 -749.455 -459.357 -750.280 -458.920  c
+-750.280 -460.034 l
+-749.373 -460.403 -748.523 -460.588 -747.730 -460.588  c
+-746.901 -460.588 -746.289 -460.401 -745.895 -460.027  c
+-745.501 -459.654 -745.304 -459.073 -745.304 -458.284  c
+-745.304 -454.921 l
+-745.304 -454.151 -745.067 -453.766 -744.593 -453.766  c
+-744.534 -453.766 -744.447 -453.775 -744.333 -453.793  c
+-744.237 -453.048 l
+-744.543 -452.902 -744.880 -452.829 -745.249 -452.829  c
+-745.878 -452.829 -746.279 -453.201 -746.452 -453.943  c
+h
+-746.650 -454.675 m
+-746.650 -456.596 l
+-747.102 -456.609 l
+-747.840 -456.609 -748.437 -456.469 -748.893 -456.189  c
+-749.348 -455.909 -749.576 -455.541 -749.576 -455.085  c
+-749.576 -454.761 -749.462 -454.488 -749.234 -454.265  c
+-749.007 -454.041 -748.729 -453.930 -748.400 -453.930  c
+-747.840 -453.930 -747.257 -454.178 -746.650 -454.675  c
+h
+-742.549 -453.000 m
+-742.549 -460.424 l
+-741.202 -460.424 l
+-741.202 -459.029 l
+-740.669 -460.068 -739.894 -460.588 -738.878 -460.588  c
+-738.741 -460.588 -738.598 -460.576 -738.447 -460.554  c
+-738.447 -459.296 l
+-738.680 -459.373 -738.885 -459.412 -739.062 -459.412  c
+-739.915 -459.412 -740.628 -458.906 -741.202 -457.895  c
+-741.202 -453.000 l
+h
+-734.592 -452.829 m
+-735.275 -452.829 -735.809 -453.025 -736.191 -453.417  c
+-736.574 -453.809 -736.766 -454.354 -736.766 -455.051  c
+-736.766 -459.412 l
+-737.695 -459.412 l
+-737.695 -460.424 l
+-736.766 -460.424 l
+-736.766 -461.771 l
+-735.419 -461.900 l
+-735.419 -460.424 l
+-733.478 -460.424 l
+-733.478 -459.412 l
+-735.419 -459.412 l
+-735.419 -455.297 l
+-735.419 -454.326 -735.000 -453.841 -734.161 -453.841  c
+-733.983 -453.841 -733.767 -453.870 -733.512 -453.930  c
+-733.512 -453.000 l
+-733.926 -452.886 -734.286 -452.829 -734.592 -452.829  c
+h
+-731.393 -453.000 m
+-731.393 -454.347 l
+-730.046 -454.347 l
+-730.046 -453.000 l
+h
+-731.222 -455.700 m
+-731.393 -461.094 l
+-731.393 -463.117 l
+-730.046 -463.117 l
+-730.046 -461.094 l
+-730.210 -455.700 l
+h
+f
+newpath
+-609.047 -468.412 m
+-609.047 -462.000 l
+-610.400 -462.000 l
+-610.400 -468.412 l
+-611.453 -468.412 l
+-611.453 -469.424 l
+-610.400 -469.424 l
+-610.400 -470.312 l
+-610.400 -472.081 -609.594 -472.965 -607.980 -472.965  c
+-607.529 -472.965 -607.017 -472.890 -606.442 -472.739  c
+-606.442 -471.673 l
+-607.049 -471.860 -607.534 -471.953 -607.898 -471.953  c
+-608.340 -471.953 -608.642 -471.847 -608.804 -471.635  c
+-608.966 -471.423 -609.047 -471.030 -609.047 -470.456  c
+-609.047 -469.424 l
+-607.194 -469.424 l
+-607.194 -468.412 l
+h
+-605.506 -462.000 m
+-605.506 -469.424 l
+-604.159 -469.424 l
+-604.159 -462.000 l
+h
+-605.506 -470.771 m
+-605.506 -472.117 l
+-604.159 -472.117 l
+-604.159 -470.771 l
+h
+-601.459 -462.000 m
+-601.459 -469.424 l
+-600.112 -469.424 l
+-600.112 -468.029 l
+-599.401 -469.068 -598.531 -469.588 -597.501 -469.588  c
+-596.858 -469.588 -596.346 -469.384 -595.963 -468.976  c
+-595.580 -468.568 -595.389 -468.020 -595.389 -467.332  c
+-595.389 -462.000 l
+-596.735 -462.000 l
+-596.735 -466.895 l
+-596.735 -467.446 -596.816 -467.839 -596.978 -468.074  c
+-597.140 -468.308 -597.408 -468.426 -597.781 -468.426  c
+-598.606 -468.426 -599.383 -467.886 -600.112 -466.806  c
+-600.112 -462.000 l
+h
+-592.771 -462.000 m
+-592.771 -469.424 l
+-591.424 -469.424 l
+-591.424 -462.000 l
+h
+-592.771 -470.771 m
+-592.771 -472.117 l
+-591.424 -472.117 l
+-591.424 -470.771 l
+h
+-586.755 -461.829 m
+-587.370 -461.829 -588.118 -461.973 -588.997 -462.260  c
+-588.997 -463.497 l
+-588.118 -463.060 -587.352 -462.841 -586.700 -462.841  c
+-586.313 -462.841 -585.992 -462.946 -585.736 -463.155  c
+-585.481 -463.365 -585.354 -463.627 -585.354 -463.941  c
+-585.354 -464.402 -585.711 -464.782 -586.427 -465.083  c
+-587.213 -465.418 l
+-588.375 -465.901 -588.956 -466.596 -588.956 -467.503  c
+-588.956 -468.150 -588.727 -468.659 -588.269 -469.031  c
+-587.811 -469.402 -587.183 -469.588 -586.386 -469.588  c
+-585.971 -469.588 -585.458 -469.531 -584.848 -469.417  c
+-584.567 -469.362 l
+-584.567 -468.241 l
+-585.319 -468.465 -585.916 -468.576 -586.358 -468.576  c
+-587.224 -468.576 -587.657 -468.262 -587.657 -467.633  c
+-587.657 -467.227 -587.329 -466.885 -586.673 -466.607  c
+-586.023 -466.334 l
+-585.290 -466.024 -584.770 -465.697 -584.465 -465.353  c
+-584.160 -465.009 -584.007 -464.579 -584.007 -464.064  c
+-584.007 -463.413 -584.264 -462.877 -584.779 -462.458  c
+-585.294 -462.039 -585.953 -461.829 -586.755 -461.829  c
+h
+-581.587 -462.000 m
+-581.587 -472.794 l
+-580.240 -472.794 l
+-580.240 -468.029 l
+-579.529 -469.068 -578.659 -469.588 -577.629 -469.588  c
+-576.986 -469.588 -576.474 -469.384 -576.091 -468.976  c
+-575.708 -468.568 -575.517 -468.020 -575.517 -467.332  c
+-575.517 -462.000 l
+-576.863 -462.000 l
+-576.863 -466.895 l
+-576.863 -467.446 -576.944 -467.839 -577.106 -468.074  c
+-577.268 -468.308 -577.535 -468.426 -577.909 -468.426  c
+-578.734 -468.426 -579.511 -467.886 -580.240 -466.806  c
+-580.240 -462.000 l
+h
+-572.536 -462.000 m
+-572.536 -463.347 l
+-571.189 -463.347 l
+-571.189 -462.000 l
+h
+-572.536 -464.700 m
+-572.536 -465.069 l
+-572.536 -465.940 -572.201 -466.758 -571.531 -467.523  c
+-571.101 -468.022 l
+-570.385 -468.843 -570.027 -469.515 -570.027 -470.039  c
+-570.027 -470.445 -570.185 -470.766 -570.499 -471.003  c
+-570.813 -471.240 -571.237 -471.358 -571.771 -471.358  c
+-572.468 -471.358 -573.208 -471.190 -573.992 -470.853  c
+-573.992 -471.994 l
+-573.149 -472.249 -572.361 -472.377 -571.627 -472.377  c
+-570.697 -472.377 -569.959 -472.168 -569.412 -471.751  c
+-568.865 -471.334 -568.592 -470.771 -568.592 -470.060  c
+-568.592 -469.659 -568.670 -469.313 -568.828 -469.024  c
+-568.985 -468.735 -569.287 -468.378 -569.733 -467.954  c
+-570.157 -467.558 l
+-570.581 -467.157 -570.859 -466.820 -570.991 -466.549  c
+-571.123 -466.278 -571.189 -465.912 -571.189 -465.452  c
+-571.189 -464.700 l
+h
+f
+1 J
+2 j
+0.00000 0.00000 0.00000 RG
+newpath
+-769.000 -450.000 m
+-676.000 -450.000 l
+S
+newpath
+-685.659 -447.412 m
+-676.000 -450.000 l
+-685.659 -452.588 l
+S
+2 J
+0 j
+1 J
+2 j
+newpath
+-650.015 -450.625 m
+-488.985 -458.375 l
+S
+newpath
+-498.509 -455.326 m
+-488.985 -458.375 l
+-498.757 -460.496 l
+S
+2 J
+0 j
+1 J
+2 j
+newpath
+-794.788 -452.338 m
+-865.163 -465.202 l
+-871.721 -466.401 -872.815 -469.518 -868.446 -474.553  c
+-822.554 -527.447 l
+-818.185 -532.482 -812.766 -534.192 -806.299 -532.575  c
+-757.701 -520.425 l
+-751.234 -518.808 -749.491 -515.019 -752.472 -509.056  c
+-776.186 -461.628 l
+S
+newpath
+-774.181 -471.425 m
+-776.186 -461.628 l
+-769.552 -469.110 l
+S
+2 J
+0 j
+[ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] defaultmatrix matrix concatmatrix setmatrix
+
+%%Trailer
+%%EOF