Finished 3
authorpimjager <pim@pimjager.nl>
Thu, 16 Jun 2016 15:25:14 +0000 (17:25 +0200)
committerpimjager <pim@pimjager.nl>
Thu, 16 Jun 2016 15:25:14 +0000 (17:25 +0200)
img/3.eps [new file with mode: 0644]
third.tex
uppaal/3.xml
uppaal/3_v2.xml [deleted file]

diff --git a/img/3.eps b/img/3.eps
new file mode 100644 (file)
index 0000000..199d134
--- /dev/null
+++ b/img/3.eps
@@ -0,0 +1,6165 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%BoundingBox: 20 224 575 567
+%%Creator: FreeHEP Graphics2D Driver
+%%Producer: org.freehep.graphicsio.ps.EPSGraphics2D Revision: 12753 
+%%For: pimjager@167-013.wlan-int.ru.nl
+%%Title: Vessel
+%%CreationDate: Thursday, June 16, 2016 5:21:15 PM 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
+677 418 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
+677.000 0.00000 l
+677.000 418.000 l
+0.00000 418.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
+677.000 0.00000 l
+677.000 418.000 l
+0.00000 418.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 562.000 222.000 ] concat
+.258824 .658824 .282353 RG
+newpath
+-557.425 -112.829 m
+-558.108 -112.829 -558.642 -113.025 -559.024 -113.417  c
+-559.407 -113.809 -559.599 -114.354 -559.599 -115.051  c
+-559.599 -119.412 l
+-560.528 -119.412 l
+-560.528 -120.424 l
+-559.599 -120.424 l
+-559.599 -121.771 l
+-558.252 -121.900 l
+-558.252 -120.424 l
+-556.311 -120.424 l
+-556.311 -119.412 l
+-558.252 -119.412 l
+-558.252 -115.297 l
+-558.252 -114.326 -557.833 -113.841 -556.994 -113.841  c
+-556.816 -113.841 -556.600 -113.870 -556.345 -113.930  c
+-556.345 -113.000 l
+-556.759 -112.886 -557.119 -112.829 -557.425 -112.829  c
+h
+-549.816 -113.000 m
+-541.723 -117.047 l
+-549.816 -121.094 l
+-549.816 -119.966 l
+-543.985 -117.047 l
+-549.816 -114.135 l
+h
+-538.688 -115.276 m
+-538.688 -116.288 l
+-530.594 -116.288 l
+-530.594 -115.276 l
+h
+-538.688 -117.806 m
+-538.688 -118.817 l
+-530.594 -118.817 l
+-530.594 -117.806 l
+h
+-522.541 -113.000 m
+-522.541 -114.012 l
+-520.518 -114.012 l
+-520.518 -121.996 l
+-522.541 -121.490 l
+-522.541 -122.529 l
+-519.164 -123.370 l
+-519.164 -114.012 l
+-517.141 -114.012 l
+-517.141 -113.000 l
+h
+-511.405 -112.747 m
+-512.449 -112.747 -513.293 -113.238 -513.938 -114.220  c
+-514.583 -115.202 -514.905 -116.484 -514.905 -118.065  c
+-514.905 -119.660 -514.581 -120.943 -513.931 -121.914  c
+-513.282 -122.885 -512.426 -123.370 -511.364 -123.370  c
+-510.302 -123.370 -509.447 -122.885 -508.797 -121.914  c
+-508.148 -120.943 -507.823 -119.667 -507.823 -118.086  c
+-507.823 -116.464 -508.148 -115.168 -508.797 -114.200  c
+-509.447 -113.231 -510.316 -112.747 -511.405 -112.747  c
+h
+-511.392 -113.759 m
+-509.965 -113.759 -509.252 -115.208 -509.252 -118.106  c
+-509.252 -120.941 -509.956 -122.358 -511.364 -122.358  c
+-512.768 -122.358 -513.470 -120.927 -513.470 -118.065  c
+-513.470 -115.194 -512.777 -113.759 -511.392 -113.759  c
+h
+-505.779 -113.000 m
+-505.779 -114.183 l
+-505.387 -115.099 -504.594 -116.097 -503.400 -117.177  c
+-502.628 -117.867 l
+-501.634 -118.765 -501.138 -119.656 -501.138 -120.540  c
+-501.138 -121.105 -501.307 -121.549 -501.647 -121.873  c
+-501.986 -122.197 -502.452 -122.358 -503.045 -122.358  c
+-503.747 -122.358 -504.574 -122.087 -505.526 -121.545  c
+-505.526 -122.734 l
+-504.629 -123.158 -503.738 -123.370 -502.854 -123.370  c
+-501.906 -123.370 -501.145 -123.115 -500.570 -122.604  c
+-499.996 -122.094 -499.709 -121.417 -499.709 -120.574  c
+-499.709 -119.968 -499.854 -119.430 -500.143 -118.961  c
+-500.432 -118.492 -500.971 -117.922 -501.760 -117.252  c
+-502.279 -116.808 l
+-503.359 -115.892 -503.984 -115.017 -504.152 -114.183  c
+-499.757 -114.183 l
+-499.757 -113.000 l
+h
+-486.406 -113.000 m
+-486.905 -113.602 l
+-487.653 -113.032 -488.525 -112.747 -489.523 -112.747  c
+-490.581 -112.747 -491.450 -113.054 -492.131 -113.667  c
+-492.813 -114.279 -493.153 -115.060 -493.153 -116.008  c
+-493.153 -117.566 -492.331 -118.624 -490.686 -119.180  c
+-491.141 -120.005 -491.369 -120.690 -491.369 -121.237  c
+-491.369 -121.834 -491.131 -122.339 -490.655 -122.751  c
+-490.179 -123.164 -489.601 -123.370 -488.922 -123.370  c
+-488.266 -123.370 -487.724 -123.178 -487.298 -122.792  c
+-486.872 -122.407 -486.659 -121.919 -486.659 -121.326  c
+-486.659 -120.314 -487.400 -119.435 -488.881 -118.688  c
+-488.202 -117.484 -487.411 -116.361 -486.509 -115.317  c
+-486.094 -115.919 -485.887 -116.771 -485.887 -117.874  c
+-485.894 -118.380 l
+-484.554 -118.380 l
+-484.554 -116.885 -485.000 -115.595 -485.894 -114.511  c
+-485.483 -113.991 -485.016 -113.488 -484.492 -113.000  c
+h
+-487.493 -114.381 m
+-488.450 -115.557 -489.362 -116.890 -490.228 -118.380  c
+-491.280 -117.961 -491.807 -117.279 -491.807 -116.336  c
+-491.807 -115.620 -491.564 -115.012 -491.079 -114.511  c
+-490.593 -114.009 -490.002 -113.759 -489.305 -113.759  c
+-488.671 -113.759 -488.067 -113.966 -487.493 -114.381  c
+h
+-489.373 -119.542 m
+-488.407 -119.984 -487.924 -120.572 -487.924 -121.306  c
+-487.924 -122.007 -488.275 -122.358 -488.977 -122.358  c
+-489.669 -122.358 -490.016 -122.005 -490.016 -121.299  c
+-490.016 -120.834 -489.801 -120.248 -489.373 -119.542  c
+h
+-476.645 -113.000 m
+-477.144 -113.602 l
+-477.891 -113.032 -478.764 -112.747 -479.762 -112.747  c
+-480.819 -112.747 -481.688 -113.054 -482.370 -113.667  c
+-483.051 -114.279 -483.392 -115.060 -483.392 -116.008  c
+-483.392 -117.566 -482.569 -118.624 -480.924 -119.180  c
+-481.380 -120.005 -481.607 -120.690 -481.607 -121.237  c
+-481.607 -121.834 -481.369 -122.339 -480.893 -122.751  c
+-480.417 -123.164 -479.839 -123.370 -479.160 -123.370  c
+-478.504 -123.370 -477.963 -123.178 -477.537 -122.792  c
+-477.111 -122.407 -476.897 -121.919 -476.897 -121.326  c
+-476.897 -120.314 -477.638 -119.435 -479.119 -118.688  c
+-478.440 -117.484 -477.649 -116.361 -476.747 -115.317  c
+-476.332 -115.919 -476.125 -116.771 -476.125 -117.874  c
+-476.132 -118.380 l
+-474.792 -118.380 l
+-474.792 -116.885 -475.239 -115.595 -476.132 -114.511  c
+-475.722 -113.991 -475.255 -113.488 -474.730 -113.000  c
+h
+-477.731 -114.381 m
+-478.688 -115.557 -479.600 -116.890 -480.466 -118.380  c
+-481.519 -117.961 -482.045 -117.279 -482.045 -116.336  c
+-482.045 -115.620 -481.802 -115.012 -481.317 -114.511  c
+-480.832 -114.009 -480.240 -113.759 -479.543 -113.759  c
+-478.910 -113.759 -478.306 -113.966 -477.731 -114.381  c
+h
+-479.611 -119.542 m
+-478.645 -119.984 -478.162 -120.572 -478.162 -121.306  c
+-478.162 -122.007 -478.513 -122.358 -479.215 -122.358  c
+-479.908 -122.358 -480.254 -122.005 -480.254 -121.299  c
+-480.254 -120.834 -480.040 -120.248 -479.611 -119.542  c
+h
+-468.359 -113.000 m
+-468.359 -120.424 l
+-467.013 -120.424 l
+-467.013 -119.029 l
+-466.479 -120.068 -465.705 -120.588 -464.688 -120.588  c
+-464.552 -120.588 -464.408 -120.576 -464.258 -120.554  c
+-464.258 -119.296 l
+-464.490 -119.373 -464.695 -119.412 -464.873 -119.412  c
+-465.725 -119.412 -466.438 -118.906 -467.013 -117.895  c
+-467.013 -113.000 l
+h
+-461.872 -113.000 m
+-461.872 -114.012 l
+-459.849 -114.012 l
+-459.849 -121.996 l
+-461.872 -121.490 l
+-461.872 -122.529 l
+-458.495 -123.370 l
+-458.495 -114.012 l
+-456.472 -114.012 l
+-456.472 -113.000 l
+h
+-449.178 -113.000 m
+-441.084 -117.047 l
+-449.178 -121.094 l
+-449.178 -119.966 l
+-443.347 -117.047 l
+-449.178 -114.135 l
+h
+-433.975 -113.000 m
+-433.975 -114.183 l
+-433.583 -115.099 -432.790 -116.097 -431.596 -117.177  c
+-430.823 -117.867 l
+-429.830 -118.765 -429.333 -119.656 -429.333 -120.540  c
+-429.333 -121.105 -429.503 -121.549 -429.842 -121.873  c
+-430.182 -122.197 -430.648 -122.358 -431.240 -122.358  c
+-431.942 -122.358 -432.769 -122.087 -433.722 -121.545  c
+-433.722 -122.734 l
+-432.824 -123.158 -431.933 -123.370 -431.049 -123.370  c
+-430.101 -123.370 -429.340 -123.115 -428.766 -122.604  c
+-428.191 -122.094 -427.904 -121.417 -427.904 -120.574  c
+-427.904 -119.968 -428.049 -119.430 -428.338 -118.961  c
+-428.628 -118.492 -429.167 -117.922 -429.955 -117.252  c
+-430.475 -116.808 l
+-431.555 -115.892 -432.179 -115.017 -432.348 -114.183  c
+-427.952 -114.183 l
+-427.952 -113.000 l
+h
+-421.896 -112.747 m
+-422.939 -112.747 -423.783 -113.238 -424.428 -114.220  c
+-425.073 -115.202 -425.396 -116.484 -425.396 -118.065  c
+-425.396 -119.660 -425.071 -120.943 -424.421 -121.914  c
+-423.772 -122.885 -422.916 -123.370 -421.854 -123.370  c
+-420.793 -123.370 -419.937 -122.885 -419.288 -121.914  c
+-418.638 -120.943 -418.313 -119.667 -418.313 -118.086  c
+-418.313 -116.464 -418.638 -115.168 -419.288 -114.200  c
+-419.937 -113.231 -420.806 -112.747 -421.896 -112.747  c
+h
+-421.882 -113.759 m
+-420.455 -113.759 -419.742 -115.208 -419.742 -118.106  c
+-419.742 -120.941 -420.446 -122.358 -421.854 -122.358  c
+-423.258 -122.358 -423.960 -120.927 -423.960 -118.065  c
+-423.960 -115.194 -423.267 -113.759 -421.882 -113.759  c
+h
+-405.749 -113.000 m
+-406.248 -113.602 l
+-406.995 -113.032 -407.868 -112.747 -408.866 -112.747  c
+-409.924 -112.747 -410.793 -113.054 -411.474 -113.667  c
+-412.155 -114.279 -412.496 -115.060 -412.496 -116.008  c
+-412.496 -117.566 -411.674 -118.624 -410.028 -119.180  c
+-410.484 -120.005 -410.712 -120.690 -410.712 -121.237  c
+-410.712 -121.834 -410.474 -122.339 -409.998 -122.751  c
+-409.521 -123.164 -408.944 -123.370 -408.265 -123.370  c
+-407.608 -123.370 -407.067 -123.178 -406.641 -122.792  c
+-406.215 -122.407 -406.002 -121.919 -406.002 -121.326  c
+-406.002 -120.314 -406.743 -119.435 -408.224 -118.688  c
+-407.545 -117.484 -406.754 -116.361 -405.852 -115.317  c
+-405.437 -115.919 -405.229 -116.771 -405.229 -117.874  c
+-405.236 -118.380 l
+-403.896 -118.380 l
+-403.896 -116.885 -404.343 -115.595 -405.236 -114.511  c
+-404.826 -113.991 -404.359 -113.488 -403.835 -113.000  c
+h
+-406.836 -114.381 m
+-407.793 -115.557 -408.704 -116.890 -409.570 -118.380  c
+-410.623 -117.961 -411.149 -117.279 -411.149 -116.336  c
+-411.149 -115.620 -410.907 -115.012 -410.421 -114.511  c
+-409.936 -114.009 -409.345 -113.759 -408.647 -113.759  c
+-408.014 -113.759 -407.410 -113.966 -406.836 -114.381  c
+h
+-408.716 -119.542 m
+-407.750 -119.984 -407.267 -120.572 -407.267 -121.306  c
+-407.267 -122.007 -407.618 -122.358 -408.319 -122.358  c
+-409.012 -122.358 -409.358 -122.005 -409.358 -121.299  c
+-409.358 -120.834 -409.144 -120.248 -408.716 -119.542  c
+h
+-395.987 -113.000 m
+-396.486 -113.602 l
+-397.234 -113.032 -398.106 -112.747 -399.104 -112.747  c
+-400.162 -112.747 -401.031 -113.054 -401.712 -113.667  c
+-402.394 -114.279 -402.734 -115.060 -402.734 -116.008  c
+-402.734 -117.566 -401.912 -118.624 -400.267 -119.180  c
+-400.722 -120.005 -400.950 -120.690 -400.950 -121.237  c
+-400.950 -121.834 -400.712 -122.339 -400.236 -122.751  c
+-399.760 -123.164 -399.182 -123.370 -398.503 -123.370  c
+-397.847 -123.370 -397.306 -123.178 -396.879 -122.792  c
+-396.453 -122.407 -396.240 -121.919 -396.240 -121.326  c
+-396.240 -120.314 -396.981 -119.435 -398.462 -118.688  c
+-397.783 -117.484 -396.992 -116.361 -396.090 -115.317  c
+-395.675 -115.919 -395.468 -116.771 -395.468 -117.874  c
+-395.475 -118.380 l
+-394.135 -118.380 l
+-394.135 -116.885 -394.581 -115.595 -395.475 -114.511  c
+-395.064 -113.991 -394.597 -113.488 -394.073 -113.000  c
+h
+-397.074 -114.381 m
+-398.031 -115.557 -398.943 -116.890 -399.809 -118.380  c
+-400.861 -117.961 -401.388 -117.279 -401.388 -116.336  c
+-401.388 -115.620 -401.145 -115.012 -400.660 -114.511  c
+-400.174 -114.009 -399.583 -113.759 -398.886 -113.759  c
+-398.252 -113.759 -397.648 -113.966 -397.074 -114.381  c
+h
+-398.954 -119.542 m
+-397.988 -119.984 -397.505 -120.572 -397.505 -121.306  c
+-397.505 -122.007 -397.856 -122.358 -398.558 -122.358  c
+-399.250 -122.358 -399.597 -122.005 -399.597 -121.299  c
+-399.597 -120.834 -399.382 -120.248 -398.954 -119.542  c
+h
+-387.702 -113.000 m
+-387.702 -120.424 l
+-386.355 -120.424 l
+-386.355 -119.029 l
+-385.822 -120.068 -385.048 -120.588 -384.031 -120.588  c
+-383.895 -120.588 -383.751 -120.576 -383.601 -120.554  c
+-383.601 -119.296 l
+-383.833 -119.373 -384.038 -119.412 -384.216 -119.412  c
+-385.068 -119.412 -385.781 -118.906 -386.355 -117.895  c
+-386.355 -113.000 l
+h
+-382.158 -113.000 m
+-382.158 -114.183 l
+-381.766 -115.099 -380.973 -116.097 -379.779 -117.177  c
+-379.007 -117.867 l
+-378.013 -118.765 -377.517 -119.656 -377.517 -120.540  c
+-377.517 -121.105 -377.686 -121.549 -378.026 -121.873  c
+-378.365 -122.197 -378.831 -122.358 -379.424 -122.358  c
+-380.126 -122.358 -380.953 -122.087 -381.905 -121.545  c
+-381.905 -122.734 l
+-381.007 -123.158 -380.117 -123.370 -379.232 -123.370  c
+-378.285 -123.370 -377.523 -123.115 -376.949 -122.604  c
+-376.375 -122.094 -376.088 -121.417 -376.088 -120.574  c
+-376.088 -119.968 -376.233 -119.430 -376.522 -118.961  c
+-376.811 -118.492 -377.350 -117.922 -378.139 -117.252  c
+-378.658 -116.808 l
+-379.738 -115.892 -380.363 -115.017 -380.531 -114.183  c
+-376.136 -114.183 l
+-376.136 -113.000 l
+h
+-368.521 -113.000 m
+-360.427 -117.047 l
+-368.521 -121.094 l
+-368.521 -119.966 l
+-362.689 -117.047 l
+-368.521 -114.135 l
+h
+-353.317 -113.000 m
+-353.317 -114.183 l
+-352.925 -115.099 -352.132 -116.097 -350.938 -117.177  c
+-350.166 -117.867 l
+-349.173 -118.765 -348.676 -119.656 -348.676 -120.540  c
+-348.676 -121.105 -348.846 -121.549 -349.185 -121.873  c
+-349.525 -122.197 -349.991 -122.358 -350.583 -122.358  c
+-351.285 -122.358 -352.112 -122.087 -353.064 -121.545  c
+-353.064 -122.734 l
+-352.167 -123.158 -351.276 -123.370 -350.392 -123.370  c
+-349.444 -123.370 -348.683 -123.115 -348.108 -122.604  c
+-347.534 -122.094 -347.247 -121.417 -347.247 -120.574  c
+-347.247 -119.968 -347.392 -119.430 -347.681 -118.961  c
+-347.971 -118.492 -348.509 -117.922 -349.298 -117.252  c
+-349.817 -116.808 l
+-350.897 -115.892 -351.522 -115.017 -351.690 -114.183  c
+-347.295 -114.183 l
+-347.295 -113.000 l
+h
+-341.238 -112.747 m
+-342.282 -112.747 -343.126 -113.238 -343.771 -114.220  c
+-344.416 -115.202 -344.738 -116.484 -344.738 -118.065  c
+-344.738 -119.660 -344.414 -120.943 -343.764 -121.914  c
+-343.115 -122.885 -342.259 -123.370 -341.197 -123.370  c
+-340.135 -123.370 -339.280 -122.885 -338.630 -121.914  c
+-337.981 -120.943 -337.656 -119.667 -337.656 -118.086  c
+-337.656 -116.464 -337.981 -115.168 -338.630 -114.200  c
+-339.280 -113.231 -340.149 -112.747 -341.238 -112.747  c
+h
+-341.225 -113.759 m
+-339.798 -113.759 -339.085 -115.208 -339.085 -118.106  c
+-339.085 -120.941 -339.789 -122.358 -341.197 -122.358  c
+-342.601 -122.358 -343.303 -120.927 -343.303 -118.065  c
+-343.303 -115.194 -342.610 -113.759 -341.225 -113.759  c
+h
+f
+newpath
+-404.425 -206.829 m
+-405.108 -206.829 -405.642 -207.025 -406.024 -207.417  c
+-406.407 -207.809 -406.599 -208.354 -406.599 -209.051  c
+-406.599 -213.412 l
+-407.528 -213.412 l
+-407.528 -214.424 l
+-406.599 -214.424 l
+-406.599 -215.771 l
+-405.252 -215.900 l
+-405.252 -214.424 l
+-403.311 -214.424 l
+-403.311 -213.412 l
+-405.252 -213.412 l
+-405.252 -209.297 l
+-405.252 -208.326 -404.833 -207.841 -403.994 -207.841  c
+-403.816 -207.841 -403.600 -207.870 -403.345 -207.930  c
+-403.345 -207.000 l
+-403.759 -206.886 -404.119 -206.829 -404.425 -206.829  c
+h
+-388.723 -207.000 m
+-396.816 -211.047 l
+-388.723 -215.094 l
+-388.723 -213.966 l
+-394.554 -211.047 l
+-388.723 -208.135 l
+h
+-380.670 -207.000 m
+-380.670 -208.012 l
+-378.646 -208.012 l
+-378.646 -215.996 l
+-380.670 -215.490 l
+-380.670 -216.529 l
+-377.293 -217.370 l
+-377.293 -208.012 l
+-375.270 -208.012 l
+-375.270 -207.000 l
+h
+-369.534 -206.747 m
+-370.578 -206.747 -371.422 -207.238 -372.067 -208.220  c
+-372.712 -209.202 -373.034 -210.484 -373.034 -212.065  c
+-373.034 -213.660 -372.709 -214.943 -372.060 -215.914  c
+-371.411 -216.885 -370.555 -217.370 -369.493 -217.370  c
+-368.431 -217.370 -367.576 -216.885 -366.926 -215.914  c
+-366.277 -214.943 -365.952 -213.667 -365.952 -212.086  c
+-365.952 -210.464 -366.277 -209.168 -366.926 -208.200  c
+-367.576 -207.231 -368.445 -206.747 -369.534 -206.747  c
+h
+-369.521 -207.759 m
+-368.094 -207.759 -367.381 -209.208 -367.381 -212.106  c
+-367.381 -214.941 -368.085 -216.358 -369.493 -216.358  c
+-370.897 -216.358 -371.599 -214.927 -371.599 -212.065  c
+-371.599 -209.194 -370.906 -207.759 -369.521 -207.759  c
+h
+-363.908 -207.000 m
+-363.908 -208.183 l
+-363.516 -209.099 -362.723 -210.097 -361.529 -211.177  c
+-360.757 -211.867 l
+-359.763 -212.765 -359.267 -213.656 -359.267 -214.540  c
+-359.267 -215.105 -359.436 -215.549 -359.776 -215.873  c
+-360.115 -216.197 -360.581 -216.358 -361.174 -216.358  c
+-361.876 -216.358 -362.703 -216.087 -363.655 -215.545  c
+-363.655 -216.734 l
+-362.757 -217.158 -361.867 -217.370 -360.982 -217.370  c
+-360.035 -217.370 -359.273 -217.115 -358.699 -216.604  c
+-358.125 -216.094 -357.838 -215.417 -357.838 -214.574  c
+-357.838 -213.968 -357.983 -213.430 -358.272 -212.961  c
+-358.561 -212.492 -359.100 -211.922 -359.889 -211.252  c
+-360.408 -210.808 l
+-361.488 -209.892 -362.113 -209.017 -362.281 -208.183  c
+-357.886 -208.183 l
+-357.886 -207.000 l
+h
+f
+newpath
+-404.425 -36.8291 m
+-405.108 -36.8291 -405.642 -37.0251 -406.024 -37.4170  c
+-406.407 -37.8089 -406.599 -38.3535 -406.599 -39.0508  c
+-406.599 -43.4121 l
+-407.528 -43.4121 l
+-407.528 -44.4238 l
+-406.599 -44.4238 l
+-406.599 -45.7705 l
+-405.252 -45.9004 l
+-405.252 -44.4238 l
+-403.311 -44.4238 l
+-403.311 -43.4121 l
+-405.252 -43.4121 l
+-405.252 -39.2969 l
+-405.252 -38.3262 -404.833 -37.8408 -403.994 -37.8408  c
+-403.816 -37.8408 -403.600 -37.8704 -403.345 -37.9297  c
+-403.345 -37.0000 l
+-403.759 -36.8861 -404.119 -36.8291 -404.425 -36.8291  c
+h
+-396.816 -37.0000 m
+-388.723 -41.0469 l
+-396.816 -45.0938 l
+-396.816 -43.9658 l
+-390.985 -41.0469 l
+-396.816 -38.1348 l
+h
+-385.688 -39.2764 m
+-385.688 -40.2881 l
+-377.594 -40.2881 l
+-377.594 -39.2764 l
+h
+-385.688 -41.8057 m
+-385.688 -42.8174 l
+-377.594 -42.8174 l
+-377.594 -41.8057 l
+h
+-369.541 -37.0000 m
+-369.541 -38.0117 l
+-367.518 -38.0117 l
+-367.518 -45.9961 l
+-369.541 -45.4902 l
+-369.541 -46.5293 l
+-366.164 -47.3701 l
+-366.164 -38.0117 l
+-364.141 -38.0117 l
+-364.141 -37.0000 l
+h
+-360.688 -37.0000 m
+-360.688 -38.0117 l
+-358.665 -38.0117 l
+-358.665 -45.9961 l
+-360.688 -45.4902 l
+-360.688 -46.5293 l
+-357.312 -47.3701 l
+-357.312 -38.0117 l
+-355.288 -38.0117 l
+-355.288 -37.0000 l
+h
+-349.553 -36.7471 m
+-350.596 -36.7471 -351.441 -37.2381 -352.085 -38.2202  c
+-352.730 -39.2023 -353.053 -40.4840 -353.053 -42.0654  c
+-353.053 -43.6605 -352.728 -44.9434 -352.079 -45.9141  c
+-351.429 -46.8848 -350.574 -47.3701 -349.512 -47.3701  c
+-348.450 -47.3701 -347.594 -46.8848 -346.945 -45.9141  c
+-346.295 -44.9434 -345.971 -43.6673 -345.971 -42.0859  c
+-345.971 -40.4635 -346.295 -39.1681 -346.945 -38.1997  c
+-347.594 -37.2313 -348.464 -36.7471 -349.553 -36.7471  c
+h
+-349.539 -37.7588 m
+-348.113 -37.7588 -347.399 -39.2080 -347.399 -42.1064  c
+-347.399 -44.9411 -348.104 -46.3584 -349.512 -46.3584  c
+-350.915 -46.3584 -351.617 -44.9274 -351.617 -42.0654  c
+-351.617 -39.1943 -350.924 -37.7588 -349.539 -37.7588  c
+h
+-333.406 -37.0000 m
+-333.905 -37.6016 l
+-334.653 -37.0319 -335.525 -36.7471 -336.523 -36.7471  c
+-337.581 -36.7471 -338.450 -37.0535 -339.131 -37.6665  c
+-339.813 -38.2795 -340.153 -39.0599 -340.153 -40.0078  c
+-340.153 -41.5664 -339.331 -42.6237 -337.686 -43.1797  c
+-338.141 -44.0046 -338.369 -44.6904 -338.369 -45.2373  c
+-338.369 -45.8343 -338.131 -46.3390 -337.655 -46.7515  c
+-337.179 -47.1639 -336.601 -47.3701 -335.922 -47.3701  c
+-335.266 -47.3701 -334.724 -47.1776 -334.298 -46.7925  c
+-333.872 -46.4074 -333.659 -45.9186 -333.659 -45.3262  c
+-333.659 -44.3145 -334.400 -43.4349 -335.881 -42.6875  c
+-335.202 -41.4844 -334.411 -40.3610 -333.509 -39.3174  c
+-333.094 -39.9189 -332.887 -40.7712 -332.887 -41.8740  c
+-332.894 -42.3799 l
+-331.554 -42.3799 l
+-331.554 -40.8851 -332.000 -39.5954 -332.894 -38.5107  c
+-332.483 -37.9912 -332.016 -37.4876 -331.492 -37.0000  c
+h
+-334.493 -38.3809 m
+-335.450 -39.5566 -336.362 -40.8896 -337.228 -42.3799  c
+-338.280 -41.9606 -338.807 -41.2793 -338.807 -40.3359  c
+-338.807 -39.6204 -338.564 -39.0120 -338.079 -38.5107  c
+-337.593 -38.0094 -337.002 -37.7588 -336.305 -37.7588  c
+-335.671 -37.7588 -335.067 -37.9661 -334.493 -38.3809  c
+h
+-336.373 -43.5420 m
+-335.407 -43.9840 -334.924 -44.5719 -334.924 -45.3057  c
+-334.924 -46.0075 -335.275 -46.3584 -335.977 -46.3584  c
+-336.669 -46.3584 -337.016 -46.0052 -337.016 -45.2988  c
+-337.016 -44.8340 -336.801 -44.2484 -336.373 -43.5420  c
+h
+-323.645 -37.0000 m
+-324.144 -37.6016 l
+-324.891 -37.0319 -325.764 -36.7471 -326.762 -36.7471  c
+-327.819 -36.7471 -328.688 -37.0535 -329.370 -37.6665  c
+-330.051 -38.2795 -330.392 -39.0599 -330.392 -40.0078  c
+-330.392 -41.5664 -329.569 -42.6237 -327.924 -43.1797  c
+-328.380 -44.0046 -328.607 -44.6904 -328.607 -45.2373  c
+-328.607 -45.8343 -328.369 -46.3390 -327.893 -46.7515  c
+-327.417 -47.1639 -326.839 -47.3701 -326.160 -47.3701  c
+-325.504 -47.3701 -324.963 -47.1776 -324.537 -46.7925  c
+-324.111 -46.4074 -323.897 -45.9186 -323.897 -45.3262  c
+-323.897 -44.3145 -324.638 -43.4349 -326.119 -42.6875  c
+-325.440 -41.4844 -324.649 -40.3610 -323.747 -39.3174  c
+-323.332 -39.9189 -323.125 -40.7712 -323.125 -41.8740  c
+-323.132 -42.3799 l
+-321.792 -42.3799 l
+-321.792 -40.8851 -322.239 -39.5954 -323.132 -38.5107  c
+-322.722 -37.9912 -322.255 -37.4876 -321.730 -37.0000  c
+h
+-324.731 -38.3809 m
+-325.688 -39.5566 -326.600 -40.8896 -327.466 -42.3799  c
+-328.519 -41.9606 -329.045 -41.2793 -329.045 -40.3359  c
+-329.045 -39.6204 -328.802 -39.0120 -328.317 -38.5107  c
+-327.832 -38.0094 -327.240 -37.7588 -326.543 -37.7588  c
+-325.910 -37.7588 -325.306 -37.9661 -324.731 -38.3809  c
+h
+-326.611 -43.5420 m
+-325.645 -43.9840 -325.162 -44.5719 -325.162 -45.3057  c
+-325.162 -46.0075 -325.513 -46.3584 -326.215 -46.3584  c
+-326.908 -46.3584 -327.254 -46.0052 -327.254 -45.2988  c
+-327.254 -44.8340 -327.040 -44.2484 -326.611 -43.5420  c
+h
+f
+newpath
+-406.653 -20.0000 m
+-406.653 -27.4238 l
+-405.307 -27.4238 l
+-405.307 -26.0293 l
+-404.773 -27.0684 -403.999 -27.5879 -402.982 -27.5879  c
+-402.846 -27.5879 -402.702 -27.5765 -402.552 -27.5537  c
+-402.552 -26.2959 l
+-402.784 -26.3734 -402.989 -26.4121 -403.167 -26.4121  c
+-404.019 -26.4121 -404.732 -25.9062 -405.307 -24.8945  c
+-405.307 -20.0000 l
+h
+-400.166 -20.0000 m
+-400.166 -21.0117 l
+-398.143 -21.0117 l
+-398.143 -28.9961 l
+-400.166 -28.4902 l
+-400.166 -29.5293 l
+-396.789 -30.3701 l
+-396.789 -21.0117 l
+-394.766 -21.0117 l
+-394.766 -20.0000 l
+h
+-379.378 -20.0000 m
+-387.472 -24.0469 l
+-379.378 -28.0938 l
+-379.378 -26.9658 l
+-385.209 -24.0469 l
+-379.378 -21.1348 l
+h
+-376.343 -22.2764 m
+-376.343 -23.2881 l
+-368.249 -23.2881 l
+-368.249 -22.2764 l
+h
+-376.343 -24.8057 m
+-376.343 -25.8174 l
+-368.249 -25.8174 l
+-368.249 -24.8057 l
+h
+-361.140 -20.0000 m
+-361.140 -21.1826 l
+-360.748 -22.0986 -359.955 -23.0967 -358.761 -24.1768  c
+-357.988 -24.8672 l
+-356.995 -25.7650 -356.498 -26.6559 -356.498 -27.5400  c
+-356.498 -28.1051 -356.668 -28.5495 -357.007 -28.8730  c
+-357.347 -29.1966 -357.813 -29.3584 -358.405 -29.3584  c
+-359.107 -29.3584 -359.934 -29.0872 -360.887 -28.5449  c
+-360.887 -29.7344 l
+-359.989 -30.1582 -359.098 -30.3701 -358.214 -30.3701  c
+-357.266 -30.3701 -356.505 -30.1149 -355.931 -29.6045  c
+-355.356 -29.0941 -355.069 -28.4173 -355.069 -27.5742  c
+-355.069 -26.9681 -355.214 -26.4303 -355.503 -25.9609  c
+-355.793 -25.4915 -356.332 -24.9219 -357.120 -24.2520  c
+-357.640 -23.8076 l
+-358.720 -22.8916 -359.344 -22.0166 -359.513 -21.1826  c
+-355.117 -21.1826 l
+-355.117 -20.0000 l
+h
+-349.061 -19.7471 m
+-350.104 -19.7471 -350.948 -20.2381 -351.593 -21.2202  c
+-352.238 -22.2023 -352.561 -23.4840 -352.561 -25.0654  c
+-352.561 -26.6605 -352.236 -27.9434 -351.586 -28.9141  c
+-350.937 -29.8848 -350.081 -30.3701 -349.020 -30.3701  c
+-347.958 -30.3701 -347.102 -29.8848 -346.453 -28.9141  c
+-345.803 -27.9434 -345.479 -26.6673 -345.479 -25.0859  c
+-345.479 -23.4635 -345.803 -22.1681 -346.453 -21.1997  c
+-347.102 -20.2313 -347.971 -19.7471 -349.061 -19.7471  c
+h
+-349.047 -20.7588 m
+-347.620 -20.7588 -346.907 -22.2080 -346.907 -25.1064  c
+-346.907 -27.9411 -347.611 -29.3584 -349.020 -29.3584  c
+-350.423 -29.3584 -351.125 -27.9274 -351.125 -25.0654  c
+-351.125 -22.1943 -350.432 -20.7588 -349.047 -20.7588  c
+h
+f
+newpath
+-400.747 -3.00000 m
+-401.246 -3.60156 l
+-401.993 -3.03190 -402.866 -2.74707 -403.864 -2.74707  c
+-404.922 -2.74707 -405.791 -3.05355 -406.472 -3.66650  c
+-407.153 -4.27946 -407.494 -5.05990 -407.494 -6.00781  c
+-407.494 -7.56641 -406.672 -8.62370 -405.026 -9.17969  c
+-405.482 -10.0046 -405.710 -10.6904 -405.710 -11.2373  c
+-405.710 -11.8343 -405.472 -12.3390 -404.996 -12.7515  c
+-404.519 -13.1639 -403.942 -13.3701 -403.263 -13.3701  c
+-402.606 -13.3701 -402.065 -13.1776 -401.639 -12.7925  c
+-401.213 -12.4074 -401.000 -11.9186 -401.000 -11.3262  c
+-401.000 -10.3145 -401.741 -9.43490 -403.222 -8.68750  c
+-402.543 -7.48438 -401.752 -6.36100 -400.850 -5.31738  c
+-400.435 -5.91895 -400.228 -6.77116 -400.228 -7.87402  c
+-400.234 -8.37988 l
+-398.895 -8.37988 l
+-398.895 -6.88509 -399.341 -5.59538 -400.234 -4.51074  c
+-399.824 -3.99121 -399.357 -3.48763 -398.833 -3.00000  c
+h
+-401.834 -4.38086 m
+-402.791 -5.55664 -403.702 -6.88965 -404.568 -8.37988  c
+-405.621 -7.96061 -406.147 -7.27930 -406.147 -6.33594  c
+-406.147 -5.62044 -405.905 -5.01204 -405.419 -4.51074  c
+-404.934 -4.00944 -404.343 -3.75879 -403.646 -3.75879  c
+-403.012 -3.75879 -402.408 -3.96615 -401.834 -4.38086  c
+h
+-403.714 -9.54199 m
+-402.748 -9.98405 -402.265 -10.5719 -402.265 -11.3057  c
+-402.265 -12.0075 -402.616 -12.3584 -403.317 -12.3584  c
+-404.010 -12.3584 -404.356 -12.0052 -404.356 -11.2988  c
+-404.356 -10.8340 -404.142 -10.2484 -403.714 -9.54199  c
+h
+-390.985 -3.00000 m
+-391.484 -3.60156 l
+-392.232 -3.03190 -393.104 -2.74707 -394.103 -2.74707  c
+-395.160 -2.74707 -396.029 -3.05355 -396.710 -3.66650  c
+-397.392 -4.27946 -397.732 -5.05990 -397.732 -6.00781  c
+-397.732 -7.56641 -396.910 -8.62370 -395.265 -9.17969  c
+-395.720 -10.0046 -395.948 -10.6904 -395.948 -11.2373  c
+-395.948 -11.8343 -395.710 -12.3390 -395.234 -12.7515  c
+-394.758 -13.1639 -394.180 -13.3701 -393.501 -13.3701  c
+-392.845 -13.3701 -392.304 -13.1776 -391.877 -12.7925  c
+-391.451 -12.4074 -391.238 -11.9186 -391.238 -11.3262  c
+-391.238 -10.3145 -391.979 -9.43490 -393.460 -8.68750  c
+-392.781 -7.48438 -391.990 -6.36100 -391.088 -5.31738  c
+-390.673 -5.91895 -390.466 -6.77116 -390.466 -7.87402  c
+-390.473 -8.37988 l
+-389.133 -8.37988 l
+-389.133 -6.88509 -389.579 -5.59538 -390.473 -4.51074  c
+-390.062 -3.99121 -389.595 -3.48763 -389.071 -3.00000  c
+h
+-392.072 -4.38086 m
+-393.029 -5.55664 -393.941 -6.88965 -394.807 -8.37988  c
+-395.859 -7.96061 -396.386 -7.27930 -396.386 -6.33594  c
+-396.386 -5.62044 -396.143 -5.01204 -395.658 -4.51074  c
+-395.172 -4.00944 -394.581 -3.75879 -393.884 -3.75879  c
+-393.250 -3.75879 -392.646 -3.96615 -392.072 -4.38086  c
+h
+-393.952 -9.54199 m
+-392.986 -9.98405 -392.503 -10.5719 -392.503 -11.3057  c
+-392.503 -12.0075 -392.854 -12.3584 -393.556 -12.3584  c
+-394.248 -12.3584 -394.595 -12.0052 -394.595 -11.2988  c
+-394.595 -10.8340 -394.381 -10.2484 -393.952 -9.54199  c
+h
+-382.700 -3.00000 m
+-382.700 -10.4238 l
+-381.354 -10.4238 l
+-381.354 -9.02930 l
+-380.820 -10.0684 -380.046 -10.5879 -379.029 -10.5879  c
+-378.893 -10.5879 -378.749 -10.5765 -378.599 -10.5537  c
+-378.599 -9.29590 l
+-378.831 -9.37337 -379.036 -9.41211 -379.214 -9.41211  c
+-380.066 -9.41211 -380.779 -8.90625 -381.354 -7.89453  c
+-381.354 -3.00000 l
+h
+-377.156 -3.00000 m
+-377.156 -4.18262 l
+-376.764 -5.09863 -375.971 -6.09668 -374.777 -7.17676  c
+-374.005 -7.86719 l
+-373.011 -8.76497 -372.515 -9.65592 -372.515 -10.5400  c
+-372.515 -11.1051 -372.684 -11.5495 -373.024 -11.8730  c
+-373.363 -12.1966 -373.829 -12.3584 -374.422 -12.3584  c
+-375.124 -12.3584 -375.951 -12.0872 -376.903 -11.5449  c
+-376.903 -12.7344 l
+-376.006 -13.1582 -375.115 -13.3701 -374.230 -13.3701  c
+-373.283 -13.3701 -372.521 -13.1149 -371.947 -12.6045  c
+-371.373 -12.0941 -371.086 -11.4173 -371.086 -10.5742  c
+-371.086 -9.96810 -371.231 -9.43034 -371.520 -8.96094  c
+-371.809 -8.49154 -372.348 -7.92188 -373.137 -7.25195  c
+-373.656 -6.80762 l
+-374.736 -5.89160 -375.361 -5.01660 -375.529 -4.18262  c
+-371.134 -4.18262 l
+-371.134 -3.00000 l
+h
+-355.425 -3.00000 m
+-363.519 -7.04688 l
+-355.425 -11.0938 l
+-355.425 -9.96582 l
+-361.256 -7.04688 l
+-355.425 -4.13477 l
+h
+-352.390 -5.27637 m
+-352.390 -6.28809 l
+-344.296 -6.28809 l
+-344.296 -5.27637 l
+h
+-352.390 -7.80566 m
+-352.390 -8.81738 l
+-344.296 -8.81738 l
+-344.296 -7.80566 l
+h
+-337.187 -3.00000 m
+-337.187 -4.18262 l
+-336.795 -5.09863 -336.002 -6.09668 -334.808 -7.17676  c
+-334.035 -7.86719 l
+-333.042 -8.76497 -332.545 -9.65592 -332.545 -10.5400  c
+-332.545 -11.1051 -332.715 -11.5495 -333.054 -11.8730  c
+-333.394 -12.1966 -333.860 -12.3584 -334.452 -12.3584  c
+-335.154 -12.3584 -335.981 -12.0872 -336.934 -11.5449  c
+-336.934 -12.7344 l
+-336.036 -13.1582 -335.145 -13.3701 -334.261 -13.3701  c
+-333.313 -13.3701 -332.552 -13.1149 -331.978 -12.6045  c
+-331.403 -12.0941 -331.116 -11.4173 -331.116 -10.5742  c
+-331.116 -9.96810 -331.261 -9.43034 -331.550 -8.96094  c
+-331.840 -8.49154 -332.379 -7.92188 -333.167 -7.25195  c
+-333.687 -6.80762 l
+-334.767 -5.89160 -335.391 -5.01660 -335.560 -4.18262  c
+-331.164 -4.18262 l
+-331.164 -3.00000 l
+h
+-325.107 -2.74707 m
+-326.151 -2.74707 -326.995 -3.23812 -327.640 -4.22021  c
+-328.285 -5.20231 -328.607 -6.48405 -328.607 -8.06543  c
+-328.607 -9.66048 -328.283 -10.9434 -327.633 -11.9141  c
+-326.984 -12.8848 -326.128 -13.3701 -325.066 -13.3701  c
+-324.005 -13.3701 -323.149 -12.8848 -322.500 -11.9141  c
+-321.850 -10.9434 -321.525 -9.66732 -321.525 -8.08594  c
+-321.525 -6.46354 -321.850 -5.16813 -322.500 -4.19971  c
+-323.149 -3.23128 -324.018 -2.74707 -325.107 -2.74707  c
+h
+-325.094 -3.75879 m
+-323.667 -3.75879 -322.954 -5.20801 -322.954 -8.10645  c
+-322.954 -10.9411 -323.658 -12.3584 -325.066 -12.3584  c
+-326.470 -12.3584 -327.172 -10.9274 -327.172 -8.06543  c
+-327.172 -5.19434 -326.479 -3.75879 -325.094 -3.75879  c
+h
+f
+newpath
+-183.425 192.171 m
+-184.108 192.171 -184.642 191.975 -185.024 191.583  c
+-185.407 191.191 -185.599 190.646 -185.599 189.949  c
+-185.599 185.588 l
+-186.528 185.588 l
+-186.528 184.576 l
+-185.599 184.576 l
+-185.599 183.229 l
+-184.252 183.100 l
+-184.252 184.576 l
+-182.311 184.576 l
+-182.311 185.588 l
+-184.252 185.588 l
+-184.252 189.703 l
+-184.252 190.674 -183.833 191.159 -182.994 191.159  c
+-182.816 191.159 -182.600 191.130 -182.345 191.070  c
+-182.345 192.000 l
+-182.759 192.114 -183.119 192.171 -183.425 192.171  c
+h
+-175.816 192.000 m
+-167.723 187.953 l
+-175.816 183.906 l
+-175.816 185.034 l
+-169.985 187.953 l
+-175.816 190.865 l
+h
+-164.688 189.724 m
+-164.688 188.712 l
+-156.594 188.712 l
+-156.594 189.724 l
+h
+-164.688 187.194 m
+-164.688 186.183 l
+-156.594 186.183 l
+-156.594 187.194 l
+h
+-148.541 192.000 m
+-148.541 190.988 l
+-146.518 190.988 l
+-146.518 183.004 l
+-148.541 183.510 l
+-148.541 182.471 l
+-145.164 181.630 l
+-145.164 190.988 l
+-143.141 190.988 l
+-143.141 192.000 l
+h
+-137.405 192.253 m
+-138.449 192.253 -139.293 191.762 -139.938 190.780  c
+-140.583 189.798 -140.905 188.516 -140.905 186.935  c
+-140.905 185.340 -140.581 184.057 -139.931 183.086  c
+-139.282 182.115 -138.426 181.630 -137.364 181.630  c
+-136.302 181.630 -135.447 182.115 -134.797 183.086  c
+-134.148 184.057 -133.823 185.333 -133.823 186.914  c
+-133.823 188.536 -134.148 189.832 -134.797 190.800  c
+-135.447 191.769 -136.316 192.253 -137.405 192.253  c
+h
+-137.392 191.241 m
+-135.965 191.241 -135.252 189.792 -135.252 186.894  c
+-135.252 184.059 -135.956 182.642 -137.364 182.642  c
+-138.768 182.642 -139.470 184.073 -139.470 186.935  c
+-139.470 189.806 -138.777 191.241 -137.392 191.241  c
+h
+-131.779 192.000 m
+-131.779 190.817 l
+-131.387 189.901 -130.594 188.903 -129.400 187.823  c
+-128.628 187.133 l
+-127.634 186.235 -127.138 185.344 -127.138 184.460  c
+-127.138 183.895 -127.307 183.451 -127.647 183.127  c
+-127.986 182.803 -128.452 182.642 -129.045 182.642  c
+-129.747 182.642 -130.574 182.913 -131.526 183.455  c
+-131.526 182.266 l
+-130.629 181.842 -129.738 181.630 -128.854 181.630  c
+-127.906 181.630 -127.145 181.885 -126.570 182.396  c
+-125.996 182.906 -125.709 183.583 -125.709 184.426  c
+-125.709 185.032 -125.854 185.570 -126.143 186.039  c
+-126.432 186.508 -126.971 187.078 -127.760 187.748  c
+-128.279 188.192 l
+-129.359 189.108 -129.984 189.983 -130.152 190.817  c
+-125.757 190.817 l
+-125.757 192.000 l
+h
+-112.406 192.000 m
+-112.905 191.398 l
+-113.653 191.968 -114.525 192.253 -115.523 192.253  c
+-116.581 192.253 -117.450 191.946 -118.131 191.333  c
+-118.813 190.721 -119.153 189.940 -119.153 188.992  c
+-119.153 187.434 -118.331 186.376 -116.686 185.820  c
+-117.141 184.995 -117.369 184.310 -117.369 183.763  c
+-117.369 183.166 -117.131 182.661 -116.655 182.249  c
+-116.179 181.836 -115.601 181.630 -114.922 181.630  c
+-114.266 181.630 -113.724 181.822 -113.298 182.208  c
+-112.872 182.593 -112.659 183.081 -112.659 183.674  c
+-112.659 184.686 -113.400 185.565 -114.881 186.312  c
+-114.202 187.516 -113.411 188.639 -112.509 189.683  c
+-112.094 189.081 -111.887 188.229 -111.887 187.126  c
+-111.894 186.620 l
+-110.554 186.620 l
+-110.554 188.115 -111.000 189.405 -111.894 190.489  c
+-111.483 191.009 -111.016 191.512 -110.492 192.000  c
+h
+-113.493 190.619 m
+-114.450 189.443 -115.362 188.110 -116.228 186.620  c
+-117.280 187.039 -117.807 187.721 -117.807 188.664  c
+-117.807 189.380 -117.564 189.988 -117.079 190.489  c
+-116.593 190.991 -116.002 191.241 -115.305 191.241  c
+-114.671 191.241 -114.067 191.034 -113.493 190.619  c
+h
+-115.373 185.458 m
+-114.407 185.016 -113.924 184.428 -113.924 183.694  c
+-113.924 182.993 -114.275 182.642 -114.977 182.642  c
+-115.669 182.642 -116.016 182.995 -116.016 183.701  c
+-116.016 184.166 -115.801 184.752 -115.373 185.458  c
+h
+-102.645 192.000 m
+-103.144 191.398 l
+-103.891 191.968 -104.764 192.253 -105.762 192.253  c
+-106.819 192.253 -107.688 191.946 -108.370 191.333  c
+-109.051 190.721 -109.392 189.940 -109.392 188.992  c
+-109.392 187.434 -108.569 186.376 -106.924 185.820  c
+-107.380 184.995 -107.607 184.310 -107.607 183.763  c
+-107.607 183.166 -107.369 182.661 -106.893 182.249  c
+-106.417 181.836 -105.839 181.630 -105.160 181.630  c
+-104.504 181.630 -103.963 181.822 -103.537 182.208  c
+-103.111 182.593 -102.897 183.081 -102.897 183.674  c
+-102.897 184.686 -103.638 185.565 -105.119 186.312  c
+-104.440 187.516 -103.649 188.639 -102.747 189.683  c
+-102.332 189.081 -102.125 188.229 -102.125 187.126  c
+-102.132 186.620 l
+-100.792 186.620 l
+-100.792 188.115 -101.239 189.405 -102.132 190.489  c
+-101.722 191.009 -101.255 191.512 -100.730 192.000  c
+h
+-103.731 190.619 m
+-104.688 189.443 -105.600 188.110 -106.466 186.620  c
+-107.519 187.039 -108.045 187.721 -108.045 188.664  c
+-108.045 189.380 -107.802 189.988 -107.317 190.489  c
+-106.832 190.991 -106.240 191.241 -105.543 191.241  c
+-104.910 191.241 -104.306 191.034 -103.731 190.619  c
+h
+-105.611 185.458 m
+-104.645 185.016 -104.162 184.428 -104.162 183.694  c
+-104.162 182.993 -104.513 182.642 -105.215 182.642  c
+-105.908 182.642 -106.254 182.995 -106.254 183.701  c
+-106.254 184.166 -106.040 184.752 -105.611 185.458  c
+h
+-92.1309 192.171 m
+-92.8145 192.171 -93.3477 191.975 -93.7305 191.583  c
+-94.1133 191.191 -94.3047 190.646 -94.3047 189.949  c
+-94.3047 185.588 l
+-95.2344 185.588 l
+-95.2344 184.576 l
+-94.3047 184.576 l
+-94.3047 183.229 l
+-92.9580 183.100 l
+-92.9580 184.576 l
+-91.0166 184.576 l
+-91.0166 185.588 l
+-92.9580 185.588 l
+-92.9580 189.703 l
+-92.9580 190.674 -92.5387 191.159 -91.7002 191.159  c
+-91.5225 191.159 -91.3060 191.130 -91.0508 191.070  c
+-91.0508 192.000 l
+-91.4655 192.114 -91.8255 192.171 -92.1309 192.171  c
+h
+-76.4287 192.000 m
+-84.5225 187.953 l
+-76.4287 183.906 l
+-76.4287 185.034 l
+-82.2598 187.953 l
+-76.4287 190.865 l
+h
+-73.3936 189.724 m
+-73.3936 188.712 l
+-65.2998 188.712 l
+-65.2998 189.724 l
+h
+-73.3936 187.194 m
+-73.3936 186.183 l
+-65.2998 186.183 l
+-65.2998 187.194 l
+h
+-57.2471 192.000 m
+-57.2471 190.988 l
+-55.2236 190.988 l
+-55.2236 183.004 l
+-57.2471 183.510 l
+-57.2471 182.471 l
+-53.8701 181.630 l
+-53.8701 190.988 l
+-51.8467 190.988 l
+-51.8467 192.000 l
+h
+-46.1113 192.253 m
+-47.1549 192.253 -47.9992 191.762 -48.6440 190.780  c
+-49.2889 189.798 -49.6113 188.516 -49.6113 186.935  c
+-49.6113 185.340 -49.2866 184.057 -48.6372 183.086  c
+-47.9878 182.115 -47.1322 181.630 -46.0703 181.630  c
+-45.0085 181.630 -44.1528 182.115 -43.5034 183.086  c
+-42.8540 184.057 -42.5293 185.333 -42.5293 186.914  c
+-42.5293 188.536 -42.8540 189.832 -43.5034 190.800  c
+-44.1528 191.769 -45.0221 192.253 -46.1113 192.253  c
+h
+-46.0977 191.241 m
+-44.6712 191.241 -43.9580 189.792 -43.9580 186.894  c
+-43.9580 184.059 -44.6621 182.642 -46.0703 182.642  c
+-47.4740 182.642 -48.1758 184.073 -48.1758 186.935  c
+-48.1758 189.806 -47.4831 191.241 -46.0977 191.241  c
+h
+-39.9453 192.041 m
+-39.9453 190.838 l
+-39.2754 191.107 -38.6374 191.241 -38.0312 191.241  c
+-37.3659 191.241 -36.8429 191.045 -36.4624 190.653  c
+-36.0819 190.261 -35.8916 189.721 -35.8916 189.033  c
+-35.8916 187.516 -36.9375 186.757 -39.0293 186.757  c
+-39.2663 186.757 -39.5146 186.773 -39.7744 186.805  c
+-39.7744 181.883 l
+-34.6543 181.883 l
+-34.6543 183.059 l
+-38.5918 183.059 l
+-38.5918 185.725 l
+-37.2930 185.725 -36.2790 186.023 -35.5498 186.620  c
+-34.8206 187.217 -34.4561 188.044 -34.4561 189.102  c
+-34.4561 190.086 -34.7876 190.857 -35.4507 191.416  c
+-36.1138 191.974 -37.0332 192.253 -38.2090 192.253  c
+-38.7194 192.253 -39.2982 192.182 -39.9453 192.041  c
+h
+f
+.654902 .258824 .658824 RG
+newpath
+-4.42480 82.1709 m
+-5.10840 82.1709 -5.64160 81.9749 -6.02441 81.5830  c
+-6.40723 81.1911 -6.59863 80.6465 -6.59863 79.9492  c
+-6.59863 75.5879 l
+-7.52832 75.5879 l
+-7.52832 74.5762 l
+-6.59863 74.5762 l
+-6.59863 73.2295 l
+-5.25195 73.0996 l
+-5.25195 74.5762 l
+-3.31055 74.5762 l
+-3.31055 75.5879 l
+-5.25195 75.5879 l
+-5.25195 79.7031 l
+-5.25195 80.6738 -4.83268 81.1592 -3.99414 81.1592  c
+-3.81641 81.1592 -3.59993 81.1296 -3.34473 81.0703  c
+-3.34473 82.0000 l
+-3.75944 82.1139 -4.11947 82.1709 -4.42480 82.1709  c
+h
+-1.66992 74.9180 m
+-2.00488 71.2061 l
+-.316406 71.2061 l
+-.658203 74.9180 l
+h
+6.38965 79.7236 m
+6.38965 78.7119 l
+14.4834 78.7119 l
+14.4834 79.7236 l
+h
+6.38965 77.1943 m
+6.38965 76.1826 l
+14.4834 76.1826 l
+14.4834 77.1943 l
+h
+17.5186 79.7236 m
+17.5186 78.7119 l
+25.6123 78.7119 l
+25.6123 79.7236 l
+h
+17.5186 77.1943 m
+17.5186 76.1826 l
+25.6123 76.1826 l
+25.6123 77.1943 l
+h
+35.9482 82.2529 m
+34.9046 82.2529 34.0604 81.7619 33.4155 80.7798  c
+32.7707 79.7977 32.4482 78.5160 32.4482 76.9346  c
+32.4482 75.3395 32.7729 74.0566 33.4224 73.0859  c
+34.0718 72.1152 34.9274 71.6299 35.9893 71.6299  c
+37.0511 71.6299 37.9067 72.1152 38.5562 73.0859  c
+39.2056 74.0566 39.5303 75.3327 39.5303 76.9141  c
+39.5303 78.5365 39.2056 79.8319 38.5562 80.8003  c
+37.9067 81.7687 37.0374 82.2529 35.9482 82.2529  c
+h
+35.9619 81.2412 m
+37.3883 81.2412 38.1016 79.7920 38.1016 76.8936  c
+38.1016 74.0589 37.3975 72.6416 35.9893 72.6416  c
+34.5856 72.6416 33.8838 74.0726 33.8838 76.9346  c
+33.8838 79.8057 34.5765 81.2412 35.9619 81.2412  c
+h
+41.7793 82.0000 m
+41.7793 80.3115 l
+43.4678 80.3115 l
+43.4678 82.0000 l
+h
+46.9473 82.0000 m
+46.9473 80.9883 l
+48.9707 80.9883 l
+48.9707 73.0039 l
+46.9473 73.5098 l
+46.9473 72.4707 l
+50.3242 71.6299 l
+50.3242 80.9883 l
+52.3477 80.9883 l
+52.3477 82.0000 l
+h
+59.3818 73.1885 m
+59.6895 74.1523 l
+57.6182 74.6035 l
+57.6318 74.5534 57.6387 74.5192 57.6387 74.5010  c
+57.6387 74.3141 57.5726 74.1615 57.4404 74.0430  c
+h
+59.0059 76.2715 m
+58.1855 76.8662 l
+57.1123 75.0410 l
+57.3447 75.0137 57.5042 74.8975 57.5908 74.6924  c
+h
+55.9570 76.8662 m
+55.1367 76.2715 l
+56.5449 74.6924 l
+56.6361 74.8975 56.7956 75.0137 57.0234 75.0410  c
+h
+54.4463 74.1523 m
+54.7607 73.1885 l
+56.7021 74.0430 l
+56.5700 74.1569 56.5039 74.3096 56.5039 74.5010  c
+56.5039 74.5192 56.5085 74.5534 56.5176 74.6035  c
+h
+56.5654 71.8828 m
+57.5771 71.8828 l
+57.3652 73.9883 l
+57.2832 73.9382 57.1852 73.9131 57.0713 73.9131  c
+56.9574 73.9131 56.8594 73.9382 56.7773 73.9883  c
+h
+64.0166 82.1709 m
+63.3330 82.1709 62.7998 81.9749 62.4170 81.5830  c
+62.0342 81.1911 61.8428 80.6465 61.8428 79.9492  c
+61.8428 75.5879 l
+60.9131 75.5879 l
+60.9131 74.5762 l
+61.8428 74.5762 l
+61.8428 73.2295 l
+63.1895 73.0996 l
+63.1895 74.5762 l
+65.1309 74.5762 l
+65.1309 75.5879 l
+63.1895 75.5879 l
+63.1895 79.7031 l
+63.1895 80.6738 63.6087 81.1592 64.4473 81.1592  c
+64.6250 81.1592 64.8415 81.1296 65.0967 81.0703  c
+65.0967 82.0000 l
+64.6820 82.1139 64.3219 82.1709 64.0166 82.1709  c
+h
+71.1191 78.4590 m
+71.1191 77.4473 l
+77.1895 77.4473 l
+77.1895 78.4590 l
+h
+84.7432 82.0000 m
+84.7432 80.9883 l
+86.7666 80.9883 l
+86.7666 73.0039 l
+84.7432 73.5098 l
+84.7432 72.4707 l
+88.1201 71.6299 l
+88.1201 80.9883 l
+90.1436 80.9883 l
+90.1436 82.0000 l
+h
+92.6523 82.0000 m
+92.6523 80.8174 l
+93.0443 79.9014 93.8372 78.9033 95.0312 77.8232  c
+95.8037 77.1328 l
+96.7972 76.2350 97.2939 75.3441 97.2939 74.4600  c
+97.2939 73.8949 97.1242 73.4505 96.7847 73.1270  c
+96.4451 72.8034 95.9792 72.6416 95.3867 72.6416  c
+94.6849 72.6416 93.8577 72.9128 92.9053 73.4551  c
+92.9053 72.2656 l
+93.8031 71.8418 94.6940 71.6299 95.5781 71.6299  c
+96.5260 71.6299 97.2871 71.8851 97.8613 72.3955  c
+98.4355 72.9059 98.7227 73.5827 98.7227 74.4258  c
+98.7227 75.0319 98.5780 75.5697 98.2886 76.0391  c
+97.9992 76.5085 97.4603 77.0781 96.6719 77.7480  c
+96.1523 78.1924 l
+95.0723 79.1084 94.4479 79.9834 94.2793 80.8174  c
+98.6748 80.8174 l
+98.6748 82.0000 l
+h
+101.710 82.0000 m
+101.710 80.3115 l
+103.398 80.3115 l
+103.398 82.0000 l
+h
+109.161 82.2529 m
+108.118 82.2529 107.273 81.7619 106.628 80.7798  c
+105.984 79.7977 105.661 78.5160 105.661 76.9346  c
+105.661 75.3395 105.986 74.0566 106.635 73.0859  c
+107.285 72.1152 108.140 71.6299 109.202 71.6299  c
+110.264 71.6299 111.120 72.1152 111.769 73.0859  c
+112.418 74.0566 112.743 75.3327 112.743 76.9141  c
+112.743 78.5365 112.418 79.8319 111.769 80.8003  c
+111.120 81.7687 110.250 82.2529 109.161 82.2529  c
+h
+109.175 81.2412 m
+110.601 81.2412 111.314 79.7920 111.314 76.8936  c
+111.314 74.0589 110.610 72.6416 109.202 72.6416  c
+107.799 72.6416 107.097 74.0726 107.097 76.9346  c
+107.097 79.8057 107.789 81.2412 109.175 81.2412  c
+h
+f
+newpath
+-.747070 99.0000 m
+-1.24609 98.3984 l
+-1.99349 98.9681 -2.86621 99.2529 -3.86426 99.2529  c
+-4.92155 99.2529 -5.79085 98.9465 -6.47217 98.3335  c
+-7.15348 97.7205 -7.49414 96.9401 -7.49414 95.9922  c
+-7.49414 94.4336 -6.67155 93.3763 -5.02637 92.8203  c
+-5.48210 91.9954 -5.70996 91.3096 -5.70996 90.7627  c
+-5.70996 90.1657 -5.47184 89.6610 -4.99561 89.2485  c
+-4.51937 88.8361 -3.94173 88.6299 -3.26270 88.6299  c
+-2.60645 88.6299 -2.06527 88.8224 -1.63916 89.2075  c
+-1.21305 89.5926 -1.00000 90.0814 -1.00000 90.6738  c
+-1.00000 91.6855 -1.74056 92.5651 -3.22168 93.3125  c
+-2.54264 94.5156 -1.75195 95.6390 -.849609 96.6826  c
+-.434896 96.0811 -.227539 95.2288 -.227539 94.1260  c
+-.234375 93.6201 l
+1.10547 93.6201 l
+1.10547 95.1149 .658854 96.4046 -.234375 97.4893  c
+.175781 98.0088 .642904 98.5124 1.16699 99.0000  c
+h
+-1.83398 97.6191 m
+-2.79102 96.4434 -3.70247 95.1104 -4.56836 93.6201  c
+-5.62109 94.0394 -6.14746 94.7207 -6.14746 95.6641  c
+-6.14746 96.3796 -5.90479 96.9880 -5.41943 97.4893  c
+-4.93408 97.9906 -4.34277 98.2412 -3.64551 98.2412  c
+-3.01204 98.2412 -2.40820 98.0339 -1.83398 97.6191  c
+h
+-3.71387 92.4580 m
+-2.74772 92.0160 -2.26465 91.4281 -2.26465 90.6943  c
+-2.26465 89.9925 -2.61556 89.6416 -3.31738 89.6416  c
+-4.01009 89.6416 -4.35645 89.9948 -4.35645 90.7012  c
+-4.35645 91.1660 -4.14225 91.7516 -3.71387 92.4580  c
+h
+9.01465 99.0000 m
+8.51562 98.3984 l
+7.76823 98.9681 6.89551 99.2529 5.89746 99.2529  c
+4.84017 99.2529 3.97087 98.9465 3.28955 98.3335  c
+2.60824 97.7205 2.26758 96.9401 2.26758 95.9922  c
+2.26758 94.4336 3.09017 93.3763 4.73535 92.8203  c
+4.27962 91.9954 4.05176 91.3096 4.05176 90.7627  c
+4.05176 90.1657 4.28988 89.6610 4.76611 89.2485  c
+5.24235 88.8361 5.81999 88.6299 6.49902 88.6299  c
+7.15527 88.6299 7.69645 88.8224 8.12256 89.2075  c
+8.54867 89.5926 8.76172 90.0814 8.76172 90.6738  c
+8.76172 91.6855 8.02116 92.5651 6.54004 93.3125  c
+7.21908 94.5156 8.00977 95.6390 8.91211 96.6826  c
+9.32682 96.0811 9.53418 95.2288 9.53418 94.1260  c
+9.52734 93.6201 l
+10.8672 93.6201 l
+10.8672 95.1149 10.4206 96.4046 9.52734 97.4893  c
+9.93750 98.0088 10.4046 98.5124 10.9287 99.0000  c
+h
+7.92773 97.6191 m
+6.97070 96.4434 6.05924 95.1104 5.19336 93.6201  c
+4.14062 94.0394 3.61426 94.7207 3.61426 95.6641  c
+3.61426 96.3796 3.85693 96.9880 4.34229 97.4893  c
+4.82764 97.9906 5.41895 98.2412 6.11621 98.2412  c
+6.74967 98.2412 7.35352 98.0339 7.92773 97.6191  c
+h
+6.04785 92.4580 m
+7.01400 92.0160 7.49707 91.4281 7.49707 90.6943  c
+7.49707 89.9925 7.14616 89.6416 6.44434 89.6416  c
+5.75163 89.6416 5.40527 89.9948 5.40527 90.7012  c
+5.40527 91.1660 5.61947 91.7516 6.04785 92.4580  c
+h
+17.2998 99.0000 m
+17.2998 91.5762 l
+18.6465 91.5762 l
+18.6465 92.9707 l
+19.1797 91.9316 19.9544 91.4121 20.9707 91.4121  c
+21.1074 91.4121 21.2510 91.4235 21.4014 91.4463  c
+21.4014 92.7041 l
+21.1689 92.6266 20.9639 92.5879 20.7861 92.5879  c
+19.9339 92.5879 19.2207 93.0938 18.6465 94.1055  c
+18.6465 99.0000 l
+h
+23.7871 99.0000 m
+23.7871 97.9883 l
+25.8105 97.9883 l
+25.8105 90.0039 l
+23.7871 90.5098 l
+23.7871 89.4707 l
+27.1641 88.6299 l
+27.1641 97.9883 l
+29.1875 97.9883 l
+29.1875 99.0000 l
+h
+31.6279 91.9180 m
+31.2930 88.2061 l
+32.9814 88.2061 l
+32.6396 91.9180 l
+h
+39.6875 96.7236 m
+39.6875 95.7119 l
+47.7812 95.7119 l
+47.7812 96.7236 l
+h
+39.6875 94.1943 m
+39.6875 93.1826 l
+47.7812 93.1826 l
+47.7812 94.1943 l
+h
+50.8164 96.7236 m
+50.8164 95.7119 l
+58.9102 95.7119 l
+58.9102 96.7236 l
+h
+50.8164 94.1943 m
+50.8164 93.1826 l
+58.9102 93.1826 l
+58.9102 94.1943 l
+h
+66.9629 99.0000 m
+66.9629 97.9883 l
+68.9863 97.9883 l
+68.9863 90.0039 l
+66.9629 90.5098 l
+66.9629 89.4707 l
+70.3398 88.6299 l
+70.3398 97.9883 l
+72.3633 97.9883 l
+72.3633 99.0000 l
+h
+f
+newpath
+-.747070 116.000 m
+-1.24609 115.398 l
+-1.99349 115.968 -2.86621 116.253 -3.86426 116.253  c
+-4.92155 116.253 -5.79085 115.946 -6.47217 115.333  c
+-7.15348 114.721 -7.49414 113.940 -7.49414 112.992  c
+-7.49414 111.434 -6.67155 110.376 -5.02637 109.820  c
+-5.48210 108.995 -5.70996 108.310 -5.70996 107.763  c
+-5.70996 107.166 -5.47184 106.661 -4.99561 106.249  c
+-4.51937 105.836 -3.94173 105.630 -3.26270 105.630  c
+-2.60645 105.630 -2.06527 105.822 -1.63916 106.208  c
+-1.21305 106.593 -1.00000 107.081 -1.00000 107.674  c
+-1.00000 108.686 -1.74056 109.565 -3.22168 110.312  c
+-2.54264 111.516 -1.75195 112.639 -.849609 113.683  c
+-.434896 113.081 -.227539 112.229 -.227539 111.126  c
+-.234375 110.620 l
+1.10547 110.620 l
+1.10547 112.115 .658854 113.405 -.234375 114.489  c
+.175781 115.009 .642904 115.512 1.16699 116.000  c
+h
+-1.83398 114.619 m
+-2.79102 113.443 -3.70247 112.110 -4.56836 110.620  c
+-5.62109 111.039 -6.14746 111.721 -6.14746 112.664  c
+-6.14746 113.380 -5.90479 113.988 -5.41943 114.489  c
+-4.93408 114.991 -4.34277 115.241 -3.64551 115.241  c
+-3.01204 115.241 -2.40820 115.034 -1.83398 114.619  c
+h
+-3.71387 109.458 m
+-2.74772 109.016 -2.26465 108.428 -2.26465 107.694  c
+-2.26465 106.993 -2.61556 106.642 -3.31738 106.642  c
+-4.01009 106.642 -4.35645 106.995 -4.35645 107.701  c
+-4.35645 108.166 -4.14225 108.752 -3.71387 109.458  c
+h
+9.01465 116.000 m
+8.51562 115.398 l
+7.76823 115.968 6.89551 116.253 5.89746 116.253  c
+4.84017 116.253 3.97087 115.946 3.28955 115.333  c
+2.60824 114.721 2.26758 113.940 2.26758 112.992  c
+2.26758 111.434 3.09017 110.376 4.73535 109.820  c
+4.27962 108.995 4.05176 108.310 4.05176 107.763  c
+4.05176 107.166 4.28988 106.661 4.76611 106.249  c
+5.24235 105.836 5.81999 105.630 6.49902 105.630  c
+7.15527 105.630 7.69645 105.822 8.12256 106.208  c
+8.54867 106.593 8.76172 107.081 8.76172 107.674  c
+8.76172 108.686 8.02116 109.565 6.54004 110.312  c
+7.21908 111.516 8.00977 112.639 8.91211 113.683  c
+9.32682 113.081 9.53418 112.229 9.53418 111.126  c
+9.52734 110.620 l
+10.8672 110.620 l
+10.8672 112.115 10.4206 113.405 9.52734 114.489  c
+9.93750 115.009 10.4046 115.512 10.9287 116.000  c
+h
+7.92773 114.619 m
+6.97070 113.443 6.05924 112.110 5.19336 110.620  c
+4.14062 111.039 3.61426 111.721 3.61426 112.664  c
+3.61426 113.380 3.85693 113.988 4.34229 114.489  c
+4.82764 114.991 5.41895 115.241 6.11621 115.241  c
+6.74967 115.241 7.35352 115.034 7.92773 114.619  c
+h
+6.04785 109.458 m
+7.01400 109.016 7.49707 108.428 7.49707 107.694  c
+7.49707 106.993 7.14616 106.642 6.44434 106.642  c
+5.75163 106.642 5.40527 106.995 5.40527 107.701  c
+5.40527 108.166 5.61947 108.752 6.04785 109.458  c
+h
+17.2998 116.000 m
+17.2998 108.576 l
+18.6465 108.576 l
+18.6465 109.971 l
+19.1797 108.932 19.9544 108.412 20.9707 108.412  c
+21.1074 108.412 21.2510 108.424 21.4014 108.446  c
+21.4014 109.704 l
+21.1689 109.627 20.9639 109.588 20.7861 109.588  c
+19.9339 109.588 19.2207 110.094 18.6465 111.105  c
+18.6465 116.000 l
+h
+22.8438 116.000 m
+22.8438 114.817 l
+23.2357 113.901 24.0286 112.903 25.2227 111.823  c
+25.9951 111.133 l
+26.9886 110.235 27.4854 109.344 27.4854 108.460  c
+27.4854 107.895 27.3156 107.451 26.9761 107.127  c
+26.6366 106.803 26.1706 106.642 25.5781 106.642  c
+24.8763 106.642 24.0492 106.913 23.0967 107.455  c
+23.0967 106.266 l
+23.9945 105.842 24.8854 105.630 25.7695 105.630  c
+26.7174 105.630 27.4785 105.885 28.0527 106.396  c
+28.6270 106.906 28.9141 107.583 28.9141 108.426  c
+28.9141 109.032 28.7694 109.570 28.4800 110.039  c
+28.1906 110.508 27.6517 111.078 26.8633 111.748  c
+26.3438 112.192 l
+25.2637 113.108 24.6393 113.983 24.4707 114.817  c
+28.8662 114.817 l
+28.8662 116.000 l
+h
+31.6279 108.918 m
+31.2930 105.206 l
+32.9814 105.206 l
+32.6396 108.918 l
+h
+39.6875 113.724 m
+39.6875 112.712 l
+47.7812 112.712 l
+47.7812 113.724 l
+h
+39.6875 111.194 m
+39.6875 110.183 l
+47.7812 110.183 l
+47.7812 111.194 l
+h
+50.8164 113.724 m
+50.8164 112.712 l
+58.9102 112.712 l
+58.9102 113.724 l
+h
+50.8164 111.194 m
+50.8164 110.183 l
+58.9102 110.183 l
+58.9102 111.194 l
+h
+66.9629 116.000 m
+66.9629 114.988 l
+68.9863 114.988 l
+68.9863 107.004 l
+66.9629 107.510 l
+66.9629 106.471 l
+70.3398 105.630 l
+70.3398 114.988 l
+72.3633 114.988 l
+72.3633 116.000 l
+h
+f
+newpath
+-.747070 133.000 m
+-1.24609 132.398 l
+-1.99349 132.968 -2.86621 133.253 -3.86426 133.253  c
+-4.92155 133.253 -5.79085 132.946 -6.47217 132.333  c
+-7.15348 131.721 -7.49414 130.940 -7.49414 129.992  c
+-7.49414 128.434 -6.67155 127.376 -5.02637 126.820  c
+-5.48210 125.995 -5.70996 125.310 -5.70996 124.763  c
+-5.70996 124.166 -5.47184 123.661 -4.99561 123.249  c
+-4.51937 122.836 -3.94173 122.630 -3.26270 122.630  c
+-2.60645 122.630 -2.06527 122.822 -1.63916 123.208  c
+-1.21305 123.593 -1.00000 124.081 -1.00000 124.674  c
+-1.00000 125.686 -1.74056 126.565 -3.22168 127.312  c
+-2.54264 128.516 -1.75195 129.639 -.849609 130.683  c
+-.434896 130.081 -.227539 129.229 -.227539 128.126  c
+-.234375 127.620 l
+1.10547 127.620 l
+1.10547 129.115 .658854 130.405 -.234375 131.489  c
+.175781 132.009 .642904 132.512 1.16699 133.000  c
+h
+-1.83398 131.619 m
+-2.79102 130.443 -3.70247 129.110 -4.56836 127.620  c
+-5.62109 128.039 -6.14746 128.721 -6.14746 129.664  c
+-6.14746 130.380 -5.90479 130.988 -5.41943 131.489  c
+-4.93408 131.991 -4.34277 132.241 -3.64551 132.241  c
+-3.01204 132.241 -2.40820 132.034 -1.83398 131.619  c
+h
+-3.71387 126.458 m
+-2.74772 126.016 -2.26465 125.428 -2.26465 124.694  c
+-2.26465 123.993 -2.61556 123.642 -3.31738 123.642  c
+-4.01009 123.642 -4.35645 123.995 -4.35645 124.701  c
+-4.35645 125.166 -4.14225 125.752 -3.71387 126.458  c
+h
+9.01465 133.000 m
+8.51562 132.398 l
+7.76823 132.968 6.89551 133.253 5.89746 133.253  c
+4.84017 133.253 3.97087 132.946 3.28955 132.333  c
+2.60824 131.721 2.26758 130.940 2.26758 129.992  c
+2.26758 128.434 3.09017 127.376 4.73535 126.820  c
+4.27962 125.995 4.05176 125.310 4.05176 124.763  c
+4.05176 124.166 4.28988 123.661 4.76611 123.249  c
+5.24235 122.836 5.81999 122.630 6.49902 122.630  c
+7.15527 122.630 7.69645 122.822 8.12256 123.208  c
+8.54867 123.593 8.76172 124.081 8.76172 124.674  c
+8.76172 125.686 8.02116 126.565 6.54004 127.312  c
+7.21908 128.516 8.00977 129.639 8.91211 130.683  c
+9.32682 130.081 9.53418 129.229 9.53418 128.126  c
+9.52734 127.620 l
+10.8672 127.620 l
+10.8672 129.115 10.4206 130.405 9.52734 131.489  c
+9.93750 132.009 10.4046 132.512 10.9287 133.000  c
+h
+7.92773 131.619 m
+6.97070 130.443 6.05924 129.110 5.19336 127.620  c
+4.14062 128.039 3.61426 128.721 3.61426 129.664  c
+3.61426 130.380 3.85693 130.988 4.34229 131.489  c
+4.82764 131.991 5.41895 132.241 6.11621 132.241  c
+6.74967 132.241 7.35352 132.034 7.92773 131.619  c
+h
+6.04785 126.458 m
+7.01400 126.016 7.49707 125.428 7.49707 124.694  c
+7.49707 123.993 7.14616 123.642 6.44434 123.642  c
+5.75163 123.642 5.40527 123.995 5.40527 124.701  c
+5.40527 125.166 5.61947 125.752 6.04785 126.458  c
+h
+19.5283 133.171 m
+18.8447 133.171 18.3115 132.975 17.9287 132.583  c
+17.5459 132.191 17.3545 131.646 17.3545 130.949  c
+17.3545 126.588 l
+16.4248 126.588 l
+16.4248 125.576 l
+17.3545 125.576 l
+17.3545 124.229 l
+18.7012 124.100 l
+18.7012 125.576 l
+20.6426 125.576 l
+20.6426 126.588 l
+18.7012 126.588 l
+18.7012 130.703 l
+18.7012 131.674 19.1204 132.159 19.9590 132.159  c
+20.1367 132.159 20.3532 132.130 20.6084 132.070  c
+20.6084 133.000 l
+20.1937 133.114 19.8337 133.171 19.5283 133.171  c
+h
+27.1367 133.000 m
+35.2305 128.953 l
+27.1367 124.906 l
+27.1367 126.034 l
+32.9678 128.953 l
+27.1367 131.865 l
+h
+38.2656 130.724 m
+38.2656 129.712 l
+46.3594 129.712 l
+46.3594 130.724 l
+h
+38.2656 128.194 m
+38.2656 127.183 l
+46.3594 127.183 l
+46.3594 128.194 l
+h
+54.4121 133.000 m
+54.4121 131.988 l
+56.4355 131.988 l
+56.4355 124.004 l
+54.4121 124.510 l
+54.4121 123.471 l
+57.7891 122.630 l
+57.7891 131.988 l
+59.8125 131.988 l
+59.8125 133.000 l
+h
+65.5479 133.253 m
+64.5042 133.253 63.6600 132.762 63.0151 131.780  c
+62.3703 130.798 62.0479 129.516 62.0479 127.935  c
+62.0479 126.340 62.3726 125.057 63.0220 124.086  c
+63.6714 123.115 64.5270 122.630 65.5889 122.630  c
+66.6507 122.630 67.5063 123.115 68.1558 124.086  c
+68.8052 125.057 69.1299 126.333 69.1299 127.914  c
+69.1299 129.536 68.8052 130.832 68.1558 131.800  c
+67.5063 132.769 66.6370 133.253 65.5479 133.253  c
+h
+65.5615 132.241 m
+66.9880 132.241 67.7012 130.792 67.7012 127.894  c
+67.7012 125.059 66.9971 123.642 65.5889 123.642  c
+64.1852 123.642 63.4834 125.073 63.4834 127.935  c
+63.4834 130.806 64.1761 132.241 65.5615 132.241  c
+h
+71.1738 133.000 m
+71.1738 131.817 l
+71.5658 130.901 72.3587 129.903 73.5527 128.823  c
+74.3252 128.133 l
+75.3187 127.235 75.8154 126.344 75.8154 125.460  c
+75.8154 124.895 75.6457 124.451 75.3062 124.127  c
+74.9666 123.803 74.5007 123.642 73.9082 123.642  c
+73.2064 123.642 72.3792 123.913 71.4268 124.455  c
+71.4268 123.266 l
+72.3245 122.842 73.2155 122.630 74.0996 122.630  c
+75.0475 122.630 75.8086 122.885 76.3828 123.396  c
+76.9570 123.906 77.2441 124.583 77.2441 125.426  c
+77.2441 126.032 77.0994 126.570 76.8101 127.039  c
+76.5207 127.508 75.9818 128.078 75.1934 128.748  c
+74.6738 129.192 l
+73.5938 130.108 72.9694 130.983 72.8008 131.817  c
+77.1963 131.817 l
+77.1963 133.000 l
+h
+f
+newpath
+-310.425 31.1709 m
+-311.108 31.1709 -311.642 30.9749 -312.024 30.5830  c
+-312.407 30.1911 -312.599 29.6465 -312.599 28.9492  c
+-312.599 24.5879 l
+-313.528 24.5879 l
+-313.528 23.5762 l
+-312.599 23.5762 l
+-312.599 22.2295 l
+-311.252 22.0996 l
+-311.252 23.5762 l
+-309.311 23.5762 l
+-309.311 24.5879 l
+-311.252 24.5879 l
+-311.252 28.7031 l
+-311.252 29.6738 -310.833 30.1592 -309.994 30.1592  c
+-309.816 30.1592 -309.600 30.1296 -309.345 30.0703  c
+-309.345 31.0000 l
+-309.759 31.1139 -310.119 31.1709 -310.425 31.1709  c
+h
+-307.670 23.9180 m
+-308.005 20.2061 l
+-306.316 20.2061 l
+-306.658 23.9180 l
+h
+-299.610 28.7236 m
+-299.610 27.7119 l
+-291.517 27.7119 l
+-291.517 28.7236 l
+h
+-299.610 26.1943 m
+-299.610 25.1826 l
+-291.517 25.1826 l
+-291.517 26.1943 l
+h
+-288.481 28.7236 m
+-288.481 27.7119 l
+-280.388 27.7119 l
+-280.388 28.7236 l
+h
+-288.481 26.1943 m
+-288.481 25.1826 l
+-280.388 25.1826 l
+-280.388 26.1943 l
+h
+-270.052 31.2529 m
+-271.095 31.2529 -271.940 30.7619 -272.584 29.7798  c
+-273.229 28.7977 -273.552 27.5160 -273.552 25.9346  c
+-273.552 24.3395 -273.227 23.0566 -272.578 22.0859  c
+-271.928 21.1152 -271.073 20.6299 -270.011 20.6299  c
+-268.949 20.6299 -268.093 21.1152 -267.444 22.0859  c
+-266.794 23.0566 -266.470 24.3327 -266.470 25.9141  c
+-266.470 27.5365 -266.794 28.8319 -267.444 29.8003  c
+-268.093 30.7687 -268.963 31.2529 -270.052 31.2529  c
+h
+-270.038 30.2412 m
+-268.612 30.2412 -267.898 28.7920 -267.898 25.8936  c
+-267.898 23.0589 -268.603 21.6416 -270.011 21.6416  c
+-271.414 21.6416 -272.116 23.0726 -272.116 25.9346  c
+-272.116 28.8057 -271.424 30.2412 -270.038 30.2412  c
+h
+-264.221 31.0000 m
+-264.221 29.3115 l
+-262.532 29.3115 l
+-262.532 31.0000 l
+h
+-259.053 31.0000 m
+-259.053 29.9883 l
+-257.029 29.9883 l
+-257.029 22.0039 l
+-259.053 22.5098 l
+-259.053 21.4707 l
+-255.676 20.6299 l
+-255.676 29.9883 l
+-253.652 29.9883 l
+-253.652 31.0000 l
+h
+-246.618 22.1885 m
+-246.311 23.1523 l
+-248.382 23.6035 l
+-248.368 23.5534 -248.361 23.5192 -248.361 23.5010  c
+-248.361 23.3141 -248.427 23.1615 -248.560 23.0430  c
+h
+-246.994 25.2715 m
+-247.814 25.8662 l
+-248.888 24.0410 l
+-248.655 24.0137 -248.496 23.8975 -248.409 23.6924  c
+h
+-250.043 25.8662 m
+-250.863 25.2715 l
+-249.455 23.6924 l
+-249.364 23.8975 -249.204 24.0137 -248.977 24.0410  c
+h
+-251.554 23.1523 m
+-251.239 22.1885 l
+-249.298 23.0430 l
+-249.430 23.1569 -249.496 23.3096 -249.496 23.5010  c
+-249.496 23.5192 -249.492 23.5534 -249.482 23.6035  c
+h
+-249.435 20.8828 m
+-248.423 20.8828 l
+-248.635 22.9883 l
+-248.717 22.9382 -248.815 22.9131 -248.929 22.9131  c
+-249.043 22.9131 -249.141 22.9382 -249.223 22.9883  c
+h
+-241.983 31.1709 m
+-242.667 31.1709 -243.200 30.9749 -243.583 30.5830  c
+-243.966 30.1911 -244.157 29.6465 -244.157 28.9492  c
+-244.157 24.5879 l
+-245.087 24.5879 l
+-245.087 23.5762 l
+-244.157 23.5762 l
+-244.157 22.2295 l
+-242.811 22.0996 l
+-242.811 23.5762 l
+-240.869 23.5762 l
+-240.869 24.5879 l
+-242.811 24.5879 l
+-242.811 28.7031 l
+-242.811 29.6738 -242.391 30.1592 -241.553 30.1592  c
+-241.375 30.1592 -241.159 30.1296 -240.903 30.0703  c
+-240.903 31.0000 l
+-241.318 31.1139 -241.678 31.1709 -241.983 31.1709  c
+h
+-234.881 27.4590 m
+-234.881 26.4473 l
+-228.811 26.4473 l
+-228.811 27.4590 l
+h
+-221.257 31.0000 m
+-221.257 29.9883 l
+-219.233 29.9883 l
+-219.233 22.0039 l
+-221.257 22.5098 l
+-221.257 21.4707 l
+-217.880 20.6299 l
+-217.880 29.9883 l
+-215.856 29.9883 l
+-215.856 31.0000 l
+h
+-210.121 31.2529 m
+-211.165 31.2529 -212.009 30.7619 -212.654 29.7798  c
+-213.299 28.7977 -213.621 27.5160 -213.621 25.9346  c
+-213.621 24.3395 -213.296 23.0566 -212.647 22.0859  c
+-211.998 21.1152 -211.142 20.6299 -210.080 20.6299  c
+-209.018 20.6299 -208.163 21.1152 -207.513 22.0859  c
+-206.864 23.0566 -206.539 24.3327 -206.539 25.9141  c
+-206.539 27.5365 -206.864 28.8319 -207.513 29.8003  c
+-208.163 30.7687 -209.032 31.2529 -210.121 31.2529  c
+h
+-210.107 30.2412 m
+-208.681 30.2412 -207.968 28.7920 -207.968 25.8936  c
+-207.968 23.0589 -208.672 21.6416 -210.080 21.6416  c
+-211.484 21.6416 -212.186 23.0726 -212.186 25.9346  c
+-212.186 28.8057 -211.493 30.2412 -210.107 30.2412  c
+h
+-204.290 31.0000 m
+-204.290 29.3115 l
+-202.602 29.3115 l
+-202.602 31.0000 l
+h
+-196.839 31.2529 m
+-197.882 31.2529 -198.727 30.7619 -199.372 29.7798  c
+-200.016 28.7977 -200.339 27.5160 -200.339 25.9346  c
+-200.339 24.3395 -200.014 23.0566 -199.365 22.0859  c
+-198.715 21.1152 -197.860 20.6299 -196.798 20.6299  c
+-195.736 20.6299 -194.880 21.1152 -194.231 22.0859  c
+-193.582 23.0566 -193.257 24.3327 -193.257 25.9141  c
+-193.257 27.5365 -193.582 28.8319 -194.231 29.8003  c
+-194.880 30.7687 -195.750 31.2529 -196.839 31.2529  c
+h
+-196.825 30.2412 m
+-195.399 30.2412 -194.686 28.7920 -194.686 25.8936  c
+-194.686 23.0589 -195.390 21.6416 -196.798 21.6416  c
+-198.201 21.6416 -198.903 23.0726 -198.903 25.9346  c
+-198.903 28.8057 -198.211 30.2412 -196.825 30.2412  c
+h
+f
+newpath
+-306.747 48.0000 m
+-307.246 47.3984 l
+-307.993 47.9681 -308.866 48.2529 -309.864 48.2529  c
+-310.922 48.2529 -311.791 47.9465 -312.472 47.3335  c
+-313.153 46.7205 -313.494 45.9401 -313.494 44.9922  c
+-313.494 43.4336 -312.672 42.3763 -311.026 41.8203  c
+-311.482 40.9954 -311.710 40.3096 -311.710 39.7627  c
+-311.710 39.1657 -311.472 38.6610 -310.996 38.2485  c
+-310.519 37.8361 -309.942 37.6299 -309.263 37.6299  c
+-308.606 37.6299 -308.065 37.8224 -307.639 38.2075  c
+-307.213 38.5926 -307.000 39.0814 -307.000 39.6738  c
+-307.000 40.6855 -307.741 41.5651 -309.222 42.3125  c
+-308.543 43.5156 -307.752 44.6390 -306.850 45.6826  c
+-306.435 45.0811 -306.228 44.2288 -306.228 43.1260  c
+-306.234 42.6201 l
+-304.895 42.6201 l
+-304.895 44.1149 -305.341 45.4046 -306.234 46.4893  c
+-305.824 47.0088 -305.357 47.5124 -304.833 48.0000  c
+h
+-307.834 46.6191 m
+-308.791 45.4434 -309.702 44.1104 -310.568 42.6201  c
+-311.621 43.0394 -312.147 43.7207 -312.147 44.6641  c
+-312.147 45.3796 -311.905 45.9880 -311.419 46.4893  c
+-310.934 46.9906 -310.343 47.2412 -309.646 47.2412  c
+-309.012 47.2412 -308.408 47.0339 -307.834 46.6191  c
+h
+-309.714 41.4580 m
+-308.748 41.0160 -308.265 40.4281 -308.265 39.6943  c
+-308.265 38.9925 -308.616 38.6416 -309.317 38.6416  c
+-310.010 38.6416 -310.356 38.9948 -310.356 39.7012  c
+-310.356 40.1660 -310.142 40.7516 -309.714 41.4580  c
+h
+-296.985 48.0000 m
+-297.484 47.3984 l
+-298.232 47.9681 -299.104 48.2529 -300.103 48.2529  c
+-301.160 48.2529 -302.029 47.9465 -302.710 47.3335  c
+-303.392 46.7205 -303.732 45.9401 -303.732 44.9922  c
+-303.732 43.4336 -302.910 42.3763 -301.265 41.8203  c
+-301.720 40.9954 -301.948 40.3096 -301.948 39.7627  c
+-301.948 39.1657 -301.710 38.6610 -301.234 38.2485  c
+-300.758 37.8361 -300.180 37.6299 -299.501 37.6299  c
+-298.845 37.6299 -298.304 37.8224 -297.877 38.2075  c
+-297.451 38.5926 -297.238 39.0814 -297.238 39.6738  c
+-297.238 40.6855 -297.979 41.5651 -299.460 42.3125  c
+-298.781 43.5156 -297.990 44.6390 -297.088 45.6826  c
+-296.673 45.0811 -296.466 44.2288 -296.466 43.1260  c
+-296.473 42.6201 l
+-295.133 42.6201 l
+-295.133 44.1149 -295.579 45.4046 -296.473 46.4893  c
+-296.062 47.0088 -295.595 47.5124 -295.071 48.0000  c
+h
+-298.072 46.6191 m
+-299.029 45.4434 -299.941 44.1104 -300.807 42.6201  c
+-301.859 43.0394 -302.386 43.7207 -302.386 44.6641  c
+-302.386 45.3796 -302.143 45.9880 -301.658 46.4893  c
+-301.172 46.9906 -300.581 47.2412 -299.884 47.2412  c
+-299.250 47.2412 -298.646 47.0339 -298.072 46.6191  c
+h
+-299.952 41.4580 m
+-298.986 41.0160 -298.503 40.4281 -298.503 39.6943  c
+-298.503 38.9925 -298.854 38.6416 -299.556 38.6416  c
+-300.248 38.6416 -300.595 38.9948 -300.595 39.7012  c
+-300.595 40.1660 -300.381 40.7516 -299.952 41.4580  c
+h
+-288.700 48.0000 m
+-288.700 40.5762 l
+-287.354 40.5762 l
+-287.354 41.9707 l
+-286.820 40.9316 -286.046 40.4121 -285.029 40.4121  c
+-284.893 40.4121 -284.749 40.4235 -284.599 40.4463  c
+-284.599 41.7041 l
+-284.831 41.6266 -285.036 41.5879 -285.214 41.5879  c
+-286.066 41.5879 -286.779 42.0938 -287.354 43.1055  c
+-287.354 48.0000 l
+h
+-282.213 48.0000 m
+-282.213 46.9883 l
+-280.189 46.9883 l
+-280.189 39.0039 l
+-282.213 39.5098 l
+-282.213 38.4707 l
+-278.836 37.6299 l
+-278.836 46.9883 l
+-276.812 46.9883 l
+-276.812 48.0000 l
+h
+-274.372 40.9180 m
+-274.707 37.2061 l
+-273.019 37.2061 l
+-273.360 40.9180 l
+h
+-266.312 45.7236 m
+-266.312 44.7119 l
+-258.219 44.7119 l
+-258.219 45.7236 l
+h
+-266.312 43.1943 m
+-266.312 42.1826 l
+-258.219 42.1826 l
+-258.219 43.1943 l
+h
+-255.184 45.7236 m
+-255.184 44.7119 l
+-247.090 44.7119 l
+-247.090 45.7236 l
+h
+-255.184 43.1943 m
+-255.184 42.1826 l
+-247.090 42.1826 l
+-247.090 43.1943 l
+h
+-239.037 48.0000 m
+-239.037 46.9883 l
+-237.014 46.9883 l
+-237.014 39.0039 l
+-239.037 39.5098 l
+-239.037 38.4707 l
+-235.660 37.6299 l
+-235.660 46.9883 l
+-233.637 46.9883 l
+-233.637 48.0000 l
+h
+f
+newpath
+-306.747 65.0000 m
+-307.246 64.3984 l
+-307.993 64.9681 -308.866 65.2529 -309.864 65.2529  c
+-310.922 65.2529 -311.791 64.9465 -312.472 64.3335  c
+-313.153 63.7205 -313.494 62.9401 -313.494 61.9922  c
+-313.494 60.4336 -312.672 59.3763 -311.026 58.8203  c
+-311.482 57.9954 -311.710 57.3096 -311.710 56.7627  c
+-311.710 56.1657 -311.472 55.6610 -310.996 55.2485  c
+-310.519 54.8361 -309.942 54.6299 -309.263 54.6299  c
+-308.606 54.6299 -308.065 54.8224 -307.639 55.2075  c
+-307.213 55.5926 -307.000 56.0814 -307.000 56.6738  c
+-307.000 57.6855 -307.741 58.5651 -309.222 59.3125  c
+-308.543 60.5156 -307.752 61.6390 -306.850 62.6826  c
+-306.435 62.0811 -306.228 61.2288 -306.228 60.1260  c
+-306.234 59.6201 l
+-304.895 59.6201 l
+-304.895 61.1149 -305.341 62.4046 -306.234 63.4893  c
+-305.824 64.0088 -305.357 64.5124 -304.833 65.0000  c
+h
+-307.834 63.6191 m
+-308.791 62.4434 -309.702 61.1104 -310.568 59.6201  c
+-311.621 60.0394 -312.147 60.7207 -312.147 61.6641  c
+-312.147 62.3796 -311.905 62.9880 -311.419 63.4893  c
+-310.934 63.9906 -310.343 64.2412 -309.646 64.2412  c
+-309.012 64.2412 -308.408 64.0339 -307.834 63.6191  c
+h
+-309.714 58.4580 m
+-308.748 58.0160 -308.265 57.4281 -308.265 56.6943  c
+-308.265 55.9925 -308.616 55.6416 -309.317 55.6416  c
+-310.010 55.6416 -310.356 55.9948 -310.356 56.7012  c
+-310.356 57.1660 -310.142 57.7516 -309.714 58.4580  c
+h
+-296.985 65.0000 m
+-297.484 64.3984 l
+-298.232 64.9681 -299.104 65.2529 -300.103 65.2529  c
+-301.160 65.2529 -302.029 64.9465 -302.710 64.3335  c
+-303.392 63.7205 -303.732 62.9401 -303.732 61.9922  c
+-303.732 60.4336 -302.910 59.3763 -301.265 58.8203  c
+-301.720 57.9954 -301.948 57.3096 -301.948 56.7627  c
+-301.948 56.1657 -301.710 55.6610 -301.234 55.2485  c
+-300.758 54.8361 -300.180 54.6299 -299.501 54.6299  c
+-298.845 54.6299 -298.304 54.8224 -297.877 55.2075  c
+-297.451 55.5926 -297.238 56.0814 -297.238 56.6738  c
+-297.238 57.6855 -297.979 58.5651 -299.460 59.3125  c
+-298.781 60.5156 -297.990 61.6390 -297.088 62.6826  c
+-296.673 62.0811 -296.466 61.2288 -296.466 60.1260  c
+-296.473 59.6201 l
+-295.133 59.6201 l
+-295.133 61.1149 -295.579 62.4046 -296.473 63.4893  c
+-296.062 64.0088 -295.595 64.5124 -295.071 65.0000  c
+h
+-298.072 63.6191 m
+-299.029 62.4434 -299.941 61.1104 -300.807 59.6201  c
+-301.859 60.0394 -302.386 60.7207 -302.386 61.6641  c
+-302.386 62.3796 -302.143 62.9880 -301.658 63.4893  c
+-301.172 63.9906 -300.581 64.2412 -299.884 64.2412  c
+-299.250 64.2412 -298.646 64.0339 -298.072 63.6191  c
+h
+-299.952 58.4580 m
+-298.986 58.0160 -298.503 57.4281 -298.503 56.6943  c
+-298.503 55.9925 -298.854 55.6416 -299.556 55.6416  c
+-300.248 55.6416 -300.595 55.9948 -300.595 56.7012  c
+-300.595 57.1660 -300.381 57.7516 -299.952 58.4580  c
+h
+-288.700 65.0000 m
+-288.700 57.5762 l
+-287.354 57.5762 l
+-287.354 58.9707 l
+-286.820 57.9316 -286.046 57.4121 -285.029 57.4121  c
+-284.893 57.4121 -284.749 57.4235 -284.599 57.4463  c
+-284.599 58.7041 l
+-284.831 58.6266 -285.036 58.5879 -285.214 58.5879  c
+-286.066 58.5879 -286.779 59.0938 -287.354 60.1055  c
+-287.354 65.0000 l
+h
+-283.156 65.0000 m
+-283.156 63.8174 l
+-282.764 62.9014 -281.971 61.9033 -280.777 60.8232  c
+-280.005 60.1328 l
+-279.011 59.2350 -278.515 58.3441 -278.515 57.4600  c
+-278.515 56.8949 -278.684 56.4505 -279.024 56.1270  c
+-279.363 55.8034 -279.829 55.6416 -280.422 55.6416  c
+-281.124 55.6416 -281.951 55.9128 -282.903 56.4551  c
+-282.903 55.2656 l
+-282.006 54.8418 -281.115 54.6299 -280.230 54.6299  c
+-279.283 54.6299 -278.521 54.8851 -277.947 55.3955  c
+-277.373 55.9059 -277.086 56.5827 -277.086 57.4258  c
+-277.086 58.0319 -277.231 58.5697 -277.520 59.0391  c
+-277.809 59.5085 -278.348 60.0781 -279.137 60.7480  c
+-279.656 61.1924 l
+-280.736 62.1084 -281.361 62.9834 -281.529 63.8174  c
+-277.134 63.8174 l
+-277.134 65.0000 l
+h
+-274.372 57.9180 m
+-274.707 54.2061 l
+-273.019 54.2061 l
+-273.360 57.9180 l
+h
+-266.312 62.7236 m
+-266.312 61.7119 l
+-258.219 61.7119 l
+-258.219 62.7236 l
+h
+-266.312 60.1943 m
+-266.312 59.1826 l
+-258.219 59.1826 l
+-258.219 60.1943 l
+h
+-255.184 62.7236 m
+-255.184 61.7119 l
+-247.090 61.7119 l
+-247.090 62.7236 l
+h
+-255.184 60.1943 m
+-255.184 59.1826 l
+-247.090 59.1826 l
+-247.090 60.1943 l
+h
+-239.037 65.0000 m
+-239.037 63.9883 l
+-237.014 63.9883 l
+-237.014 56.0039 l
+-239.037 56.5098 l
+-239.037 55.4707 l
+-235.660 54.6299 l
+-235.660 63.9883 l
+-233.637 63.9883 l
+-233.637 65.0000 l
+h
+f
+newpath
+-306.747 82.0000 m
+-307.246 81.3984 l
+-307.993 81.9681 -308.866 82.2529 -309.864 82.2529  c
+-310.922 82.2529 -311.791 81.9465 -312.472 81.3335  c
+-313.153 80.7205 -313.494 79.9401 -313.494 78.9922  c
+-313.494 77.4336 -312.672 76.3763 -311.026 75.8203  c
+-311.482 74.9954 -311.710 74.3096 -311.710 73.7627  c
+-311.710 73.1657 -311.472 72.6610 -310.996 72.2485  c
+-310.519 71.8361 -309.942 71.6299 -309.263 71.6299  c
+-308.606 71.6299 -308.065 71.8224 -307.639 72.2075  c
+-307.213 72.5926 -307.000 73.0814 -307.000 73.6738  c
+-307.000 74.6855 -307.741 75.5651 -309.222 76.3125  c
+-308.543 77.5156 -307.752 78.6390 -306.850 79.6826  c
+-306.435 79.0811 -306.228 78.2288 -306.228 77.1260  c
+-306.234 76.6201 l
+-304.895 76.6201 l
+-304.895 78.1149 -305.341 79.4046 -306.234 80.4893  c
+-305.824 81.0088 -305.357 81.5124 -304.833 82.0000  c
+h
+-307.834 80.6191 m
+-308.791 79.4434 -309.702 78.1104 -310.568 76.6201  c
+-311.621 77.0394 -312.147 77.7207 -312.147 78.6641  c
+-312.147 79.3796 -311.905 79.9880 -311.419 80.4893  c
+-310.934 80.9906 -310.343 81.2412 -309.646 81.2412  c
+-309.012 81.2412 -308.408 81.0339 -307.834 80.6191  c
+h
+-309.714 75.4580 m
+-308.748 75.0160 -308.265 74.4281 -308.265 73.6943  c
+-308.265 72.9925 -308.616 72.6416 -309.317 72.6416  c
+-310.010 72.6416 -310.356 72.9948 -310.356 73.7012  c
+-310.356 74.1660 -310.142 74.7516 -309.714 75.4580  c
+h
+-296.985 82.0000 m
+-297.484 81.3984 l
+-298.232 81.9681 -299.104 82.2529 -300.103 82.2529  c
+-301.160 82.2529 -302.029 81.9465 -302.710 81.3335  c
+-303.392 80.7205 -303.732 79.9401 -303.732 78.9922  c
+-303.732 77.4336 -302.910 76.3763 -301.265 75.8203  c
+-301.720 74.9954 -301.948 74.3096 -301.948 73.7627  c
+-301.948 73.1657 -301.710 72.6610 -301.234 72.2485  c
+-300.758 71.8361 -300.180 71.6299 -299.501 71.6299  c
+-298.845 71.6299 -298.304 71.8224 -297.877 72.2075  c
+-297.451 72.5926 -297.238 73.0814 -297.238 73.6738  c
+-297.238 74.6855 -297.979 75.5651 -299.460 76.3125  c
+-298.781 77.5156 -297.990 78.6390 -297.088 79.6826  c
+-296.673 79.0811 -296.466 78.2288 -296.466 77.1260  c
+-296.473 76.6201 l
+-295.133 76.6201 l
+-295.133 78.1149 -295.579 79.4046 -296.473 80.4893  c
+-296.062 81.0088 -295.595 81.5124 -295.071 82.0000  c
+h
+-298.072 80.6191 m
+-299.029 79.4434 -299.941 78.1104 -300.807 76.6201  c
+-301.859 77.0394 -302.386 77.7207 -302.386 78.6641  c
+-302.386 79.3796 -302.143 79.9880 -301.658 80.4893  c
+-301.172 80.9906 -300.581 81.2412 -299.884 81.2412  c
+-299.250 81.2412 -298.646 81.0339 -298.072 80.6191  c
+h
+-299.952 75.4580 m
+-298.986 75.0160 -298.503 74.4281 -298.503 73.6943  c
+-298.503 72.9925 -298.854 72.6416 -299.556 72.6416  c
+-300.248 72.6416 -300.595 72.9948 -300.595 73.7012  c
+-300.595 74.1660 -300.381 74.7516 -299.952 75.4580  c
+h
+-286.472 82.1709 m
+-287.155 82.1709 -287.688 81.9749 -288.071 81.5830  c
+-288.454 81.1911 -288.646 80.6465 -288.646 79.9492  c
+-288.646 75.5879 l
+-289.575 75.5879 l
+-289.575 74.5762 l
+-288.646 74.5762 l
+-288.646 73.2295 l
+-287.299 73.0996 l
+-287.299 74.5762 l
+-285.357 74.5762 l
+-285.357 75.5879 l
+-287.299 75.5879 l
+-287.299 79.7031 l
+-287.299 80.6738 -286.880 81.1592 -286.041 81.1592  c
+-285.863 81.1592 -285.647 81.1296 -285.392 81.0703  c
+-285.392 82.0000 l
+-285.806 82.1139 -286.166 82.1709 -286.472 82.1709  c
+h
+-278.863 82.0000 m
+-270.770 77.9531 l
+-278.863 73.9062 l
+-278.863 75.0342 l
+-273.032 77.9531 l
+-278.863 80.8652 l
+h
+-267.734 79.7236 m
+-267.734 78.7119 l
+-259.641 78.7119 l
+-259.641 79.7236 l
+h
+-267.734 77.1943 m
+-267.734 76.1826 l
+-259.641 76.1826 l
+-259.641 77.1943 l
+h
+-251.588 82.0000 m
+-251.588 80.9883 l
+-249.564 80.9883 l
+-249.564 73.0039 l
+-251.588 73.5098 l
+-251.588 72.4707 l
+-248.211 71.6299 l
+-248.211 80.9883 l
+-246.188 80.9883 l
+-246.188 82.0000 l
+h
+-240.452 82.2529 m
+-241.496 82.2529 -242.340 81.7619 -242.985 80.7798  c
+-243.630 79.7977 -243.952 78.5160 -243.952 76.9346  c
+-243.952 75.3395 -243.627 74.0566 -242.978 73.0859  c
+-242.329 72.1152 -241.473 71.6299 -240.411 71.6299  c
+-239.349 71.6299 -238.494 72.1152 -237.844 73.0859  c
+-237.195 74.0566 -236.870 75.3327 -236.870 76.9141  c
+-236.870 78.5365 -237.195 79.8319 -237.844 80.8003  c
+-238.494 81.7687 -239.363 82.2529 -240.452 82.2529  c
+h
+-240.438 81.2412 m
+-239.012 81.2412 -238.299 79.7920 -238.299 76.8936  c
+-238.299 74.0589 -239.003 72.6416 -240.411 72.6416  c
+-241.815 72.6416 -242.517 74.0726 -242.517 76.9346  c
+-242.517 79.8057 -241.824 81.2412 -240.438 81.2412  c
+h
+-234.826 82.0000 m
+-234.826 80.8174 l
+-234.434 79.9014 -233.641 78.9033 -232.447 77.8232  c
+-231.675 77.1328 l
+-230.681 76.2350 -230.185 75.3441 -230.185 74.4600  c
+-230.185 73.8949 -230.354 73.4505 -230.694 73.1270  c
+-231.033 72.8034 -231.499 72.6416 -232.092 72.6416  c
+-232.794 72.6416 -233.621 72.9128 -234.573 73.4551  c
+-234.573 72.2656 l
+-233.675 71.8418 -232.785 71.6299 -231.900 71.6299  c
+-230.952 71.6299 -230.191 71.8851 -229.617 72.3955  c
+-229.043 72.9059 -228.756 73.5827 -228.756 74.4258  c
+-228.756 75.0319 -228.901 75.5697 -229.190 76.0391  c
+-229.479 76.5085 -230.018 77.0781 -230.807 77.7480  c
+-231.326 78.1924 l
+-232.406 79.1084 -233.031 79.9834 -233.199 80.8174  c
+-228.804 80.8174 l
+-228.804 82.0000 l
+h
+f
+newpath
+-306.747 99.0000 m
+-307.246 98.3984 l
+-307.993 98.9681 -308.866 99.2529 -309.864 99.2529  c
+-310.922 99.2529 -311.791 98.9465 -312.472 98.3335  c
+-313.153 97.7205 -313.494 96.9401 -313.494 95.9922  c
+-313.494 94.4336 -312.672 93.3763 -311.026 92.8203  c
+-311.482 91.9954 -311.710 91.3096 -311.710 90.7627  c
+-311.710 90.1657 -311.472 89.6610 -310.996 89.2485  c
+-310.519 88.8361 -309.942 88.6299 -309.263 88.6299  c
+-308.606 88.6299 -308.065 88.8224 -307.639 89.2075  c
+-307.213 89.5926 -307.000 90.0814 -307.000 90.6738  c
+-307.000 91.6855 -307.741 92.5651 -309.222 93.3125  c
+-308.543 94.5156 -307.752 95.6390 -306.850 96.6826  c
+-306.435 96.0811 -306.228 95.2288 -306.228 94.1260  c
+-306.234 93.6201 l
+-304.895 93.6201 l
+-304.895 95.1149 -305.341 96.4046 -306.234 97.4893  c
+-305.824 98.0088 -305.357 98.5124 -304.833 99.0000  c
+h
+-307.834 97.6191 m
+-308.791 96.4434 -309.702 95.1104 -310.568 93.6201  c
+-311.621 94.0394 -312.147 94.7207 -312.147 95.6641  c
+-312.147 96.3796 -311.905 96.9880 -311.419 97.4893  c
+-310.934 97.9906 -310.343 98.2412 -309.646 98.2412  c
+-309.012 98.2412 -308.408 98.0339 -307.834 97.6191  c
+h
+-309.714 92.4580 m
+-308.748 92.0160 -308.265 91.4281 -308.265 90.6943  c
+-308.265 89.9925 -308.616 89.6416 -309.317 89.6416  c
+-310.010 89.6416 -310.356 89.9948 -310.356 90.7012  c
+-310.356 91.1660 -310.142 91.7516 -309.714 92.4580  c
+h
+-296.985 99.0000 m
+-297.484 98.3984 l
+-298.232 98.9681 -299.104 99.2529 -300.103 99.2529  c
+-301.160 99.2529 -302.029 98.9465 -302.710 98.3335  c
+-303.392 97.7205 -303.732 96.9401 -303.732 95.9922  c
+-303.732 94.4336 -302.910 93.3763 -301.265 92.8203  c
+-301.720 91.9954 -301.948 91.3096 -301.948 90.7627  c
+-301.948 90.1657 -301.710 89.6610 -301.234 89.2485  c
+-300.758 88.8361 -300.180 88.6299 -299.501 88.6299  c
+-298.845 88.6299 -298.304 88.8224 -297.877 89.2075  c
+-297.451 89.5926 -297.238 90.0814 -297.238 90.6738  c
+-297.238 91.6855 -297.979 92.5651 -299.460 93.3125  c
+-298.781 94.5156 -297.990 95.6390 -297.088 96.6826  c
+-296.673 96.0811 -296.466 95.2288 -296.466 94.1260  c
+-296.473 93.6201 l
+-295.133 93.6201 l
+-295.133 95.1149 -295.579 96.4046 -296.473 97.4893  c
+-296.062 98.0088 -295.595 98.5124 -295.071 99.0000  c
+h
+-298.072 97.6191 m
+-299.029 96.4434 -299.941 95.1104 -300.807 93.6201  c
+-301.859 94.0394 -302.386 94.7207 -302.386 95.6641  c
+-302.386 96.3796 -302.143 96.9880 -301.658 97.4893  c
+-301.172 97.9906 -300.581 98.2412 -299.884 98.2412  c
+-299.250 98.2412 -298.646 98.0339 -298.072 97.6191  c
+h
+-299.952 92.4580 m
+-298.986 92.0160 -298.503 91.4281 -298.503 90.6943  c
+-298.503 89.9925 -298.854 89.6416 -299.556 89.6416  c
+-300.248 89.6416 -300.595 89.9948 -300.595 90.7012  c
+-300.595 91.1660 -300.381 91.7516 -299.952 92.4580  c
+h
+-286.472 99.1709 m
+-287.155 99.1709 -287.688 98.9749 -288.071 98.5830  c
+-288.454 98.1911 -288.646 97.6465 -288.646 96.9492  c
+-288.646 92.5879 l
+-289.575 92.5879 l
+-289.575 91.5762 l
+-288.646 91.5762 l
+-288.646 90.2295 l
+-287.299 90.0996 l
+-287.299 91.5762 l
+-285.357 91.5762 l
+-285.357 92.5879 l
+-287.299 92.5879 l
+-287.299 96.7031 l
+-287.299 97.6738 -286.880 98.1592 -286.041 98.1592  c
+-285.863 98.1592 -285.647 98.1296 -285.392 98.0703  c
+-285.392 99.0000 l
+-285.806 99.1139 -286.166 99.1709 -286.472 99.1709  c
+h
+-270.770 99.0000 m
+-278.863 94.9531 l
+-270.770 90.9062 l
+-270.770 92.0342 l
+-276.601 94.9531 l
+-270.770 97.8652 l
+h
+-267.734 96.7236 m
+-267.734 95.7119 l
+-259.641 95.7119 l
+-259.641 96.7236 l
+h
+-267.734 94.1943 m
+-267.734 93.1826 l
+-259.641 93.1826 l
+-259.641 94.1943 l
+h
+-251.588 99.0000 m
+-251.588 97.9883 l
+-249.564 97.9883 l
+-249.564 90.0039 l
+-251.588 90.5098 l
+-251.588 89.4707 l
+-248.211 88.6299 l
+-248.211 97.9883 l
+-246.188 97.9883 l
+-246.188 99.0000 l
+h
+-242.735 99.0000 m
+-242.735 97.9883 l
+-240.712 97.9883 l
+-240.712 90.0039 l
+-242.735 90.5098 l
+-242.735 89.4707 l
+-239.358 88.6299 l
+-239.358 97.9883 l
+-237.335 97.9883 l
+-237.335 99.0000 l
+h
+-231.600 99.2529 m
+-232.643 99.2529 -233.487 98.7619 -234.132 97.7798  c
+-234.777 96.7977 -235.100 95.5160 -235.100 93.9346  c
+-235.100 92.3395 -234.775 91.0566 -234.125 90.0859  c
+-233.476 89.1152 -232.620 88.6299 -231.559 88.6299  c
+-230.497 88.6299 -229.641 89.1152 -228.992 90.0859  c
+-228.342 91.0566 -228.018 92.3327 -228.018 93.9141  c
+-228.018 95.5365 -228.342 96.8319 -228.992 97.8003  c
+-229.641 98.7687 -230.510 99.2529 -231.600 99.2529  c
+h
+-231.586 98.2412 m
+-230.160 98.2412 -229.446 96.7920 -229.446 93.8936  c
+-229.446 91.0589 -230.150 89.6416 -231.559 89.6416  c
+-232.962 89.6416 -233.664 91.0726 -233.664 93.9346  c
+-233.664 96.8057 -232.971 98.2412 -231.586 98.2412  c
+h
+f
+newpath
+-13.4248 -87.8291 m
+-14.1084 -87.8291 -14.6416 -88.0251 -15.0244 -88.4170  c
+-15.4072 -88.8089 -15.5986 -89.3535 -15.5986 -90.0508  c
+-15.5986 -94.4121 l
+-16.5283 -94.4121 l
+-16.5283 -95.4238 l
+-15.5986 -95.4238 l
+-15.5986 -96.7705 l
+-14.2520 -96.9004 l
+-14.2520 -95.4238 l
+-12.3105 -95.4238 l
+-12.3105 -94.4121 l
+-14.2520 -94.4121 l
+-14.2520 -90.2969 l
+-14.2520 -89.3262 -13.8327 -88.8408 -12.9941 -88.8408  c
+-12.8164 -88.8408 -12.5999 -88.8704 -12.3447 -88.9297  c
+-12.3447 -88.0000 l
+-12.7594 -87.8861 -13.1195 -87.8291 -13.4248 -87.8291  c
+h
+-10.6699 -95.0820 m
+-11.0049 -98.7939 l
+-9.31641 -98.7939 l
+-9.65820 -95.0820 l
+h
+-2.61035 -90.2764 m
+-2.61035 -91.2881 l
+5.48340 -91.2881 l
+5.48340 -90.2764 l
+h
+-2.61035 -92.8057 m
+-2.61035 -93.8174 l
+5.48340 -93.8174 l
+5.48340 -92.8057 l
+h
+8.51855 -90.2764 m
+8.51855 -91.2881 l
+16.6123 -91.2881 l
+16.6123 -90.2764 l
+h
+8.51855 -92.8057 m
+8.51855 -93.8174 l
+16.6123 -93.8174 l
+16.6123 -92.8057 l
+h
+26.9482 -87.7471 m
+25.9046 -87.7471 25.0604 -88.2381 24.4155 -89.2202  c
+23.7707 -90.2023 23.4482 -91.4840 23.4482 -93.0654  c
+23.4482 -94.6605 23.7729 -95.9434 24.4224 -96.9141  c
+25.0718 -97.8848 25.9274 -98.3701 26.9893 -98.3701  c
+28.0511 -98.3701 28.9067 -97.8848 29.5562 -96.9141  c
+30.2056 -95.9434 30.5303 -94.6673 30.5303 -93.0859  c
+30.5303 -91.4635 30.2056 -90.1681 29.5562 -89.1997  c
+28.9067 -88.2313 28.0374 -87.7471 26.9482 -87.7471  c
+h
+26.9619 -88.7588 m
+28.3883 -88.7588 29.1016 -90.2080 29.1016 -93.1064  c
+29.1016 -95.9411 28.3975 -97.3584 26.9893 -97.3584  c
+25.5856 -97.3584 24.8838 -95.9274 24.8838 -93.0654  c
+24.8838 -90.1943 25.5765 -88.7588 26.9619 -88.7588  c
+h
+32.7793 -88.0000 m
+32.7793 -89.6885 l
+34.4678 -89.6885 l
+34.4678 -88.0000 l
+h
+37.9473 -88.0000 m
+37.9473 -89.0117 l
+39.9707 -89.0117 l
+39.9707 -96.9961 l
+37.9473 -96.4902 l
+37.9473 -97.5293 l
+41.3242 -98.3701 l
+41.3242 -89.0117 l
+43.3477 -89.0117 l
+43.3477 -88.0000 l
+h
+50.3818 -96.8115 m
+50.6895 -95.8477 l
+48.6182 -95.3965 l
+48.6318 -95.4466 48.6387 -95.4808 48.6387 -95.4990  c
+48.6387 -95.6859 48.5726 -95.8385 48.4404 -95.9570  c
+h
+50.0059 -93.7285 m
+49.1855 -93.1338 l
+48.1123 -94.9590 l
+48.3447 -94.9863 48.5042 -95.1025 48.5908 -95.3076  c
+h
+46.9570 -93.1338 m
+46.1367 -93.7285 l
+47.5449 -95.3076 l
+47.6361 -95.1025 47.7956 -94.9863 48.0234 -94.9590  c
+h
+45.4463 -95.8477 m
+45.7607 -96.8115 l
+47.7021 -95.9570 l
+47.5700 -95.8431 47.5039 -95.6904 47.5039 -95.4990  c
+47.5039 -95.4808 47.5085 -95.4466 47.5176 -95.3965  c
+h
+47.5654 -98.1172 m
+48.5771 -98.1172 l
+48.3652 -96.0117 l
+48.2832 -96.0618 48.1852 -96.0869 48.0713 -96.0869  c
+47.9574 -96.0869 47.8594 -96.0618 47.7773 -96.0117  c
+h
+55.0166 -87.8291 m
+54.3330 -87.8291 53.7998 -88.0251 53.4170 -88.4170  c
+53.0342 -88.8089 52.8428 -89.3535 52.8428 -90.0508  c
+52.8428 -94.4121 l
+51.9131 -94.4121 l
+51.9131 -95.4238 l
+52.8428 -95.4238 l
+52.8428 -96.7705 l
+54.1895 -96.9004 l
+54.1895 -95.4238 l
+56.1309 -95.4238 l
+56.1309 -94.4121 l
+54.1895 -94.4121 l
+54.1895 -90.2969 l
+54.1895 -89.3262 54.6087 -88.8408 55.4473 -88.8408  c
+55.6250 -88.8408 55.8415 -88.8704 56.0967 -88.9297  c
+56.0967 -88.0000 l
+55.6820 -87.8861 55.3219 -87.8291 55.0166 -87.8291  c
+h
+62.1191 -91.5410 m
+62.1191 -92.5527 l
+68.1895 -92.5527 l
+68.1895 -91.5410 l
+h
+75.7432 -88.0000 m
+75.7432 -89.0117 l
+77.7666 -89.0117 l
+77.7666 -96.9961 l
+75.7432 -96.4902 l
+75.7432 -97.5293 l
+79.1201 -98.3701 l
+79.1201 -89.0117 l
+81.1436 -89.0117 l
+81.1436 -88.0000 l
+h
+84.5957 -88.0000 m
+84.5957 -89.0117 l
+86.6191 -89.0117 l
+86.6191 -96.9961 l
+84.5957 -96.4902 l
+84.5957 -97.5293 l
+87.9727 -98.3701 l
+87.9727 -89.0117 l
+89.9961 -89.0117 l
+89.9961 -88.0000 l
+h
+92.7100 -88.0000 m
+92.7100 -89.6885 l
+94.3984 -89.6885 l
+94.3984 -88.0000 l
+h
+96.9346 -88.0000 m
+96.9346 -89.1826 l
+97.3265 -90.0986 98.1195 -91.0967 99.3135 -92.1768  c
+100.086 -92.8672 l
+101.079 -93.7650 101.576 -94.6559 101.576 -95.5400  c
+101.576 -96.1051 101.406 -96.5495 101.067 -96.8730  c
+100.727 -97.1966 100.261 -97.3584 99.6689 -97.3584  c
+98.9671 -97.3584 98.1400 -97.0872 97.1875 -96.5449  c
+97.1875 -97.7344 l
+98.0853 -98.1582 98.9762 -98.3701 99.8604 -98.3701  c
+100.808 -98.3701 101.569 -98.1149 102.144 -97.6045  c
+102.718 -97.0941 103.005 -96.4173 103.005 -95.5742  c
+103.005 -94.9681 102.860 -94.4303 102.571 -93.9609  c
+102.281 -93.4915 101.743 -92.9219 100.954 -92.2520  c
+100.435 -91.8076 l
+99.3545 -90.8916 98.7301 -90.0166 98.5615 -89.1826  c
+102.957 -89.1826 l
+102.957 -88.0000 l
+h
+f
+newpath
+-9.74707 -71.0000 m
+-10.2461 -71.6016 l
+-10.9935 -71.0319 -11.8662 -70.7471 -12.8643 -70.7471  c
+-13.9215 -70.7471 -14.7909 -71.0535 -15.4722 -71.6665  c
+-16.1535 -72.2795 -16.4941 -73.0599 -16.4941 -74.0078  c
+-16.4941 -75.5664 -15.6715 -76.6237 -14.0264 -77.1797  c
+-14.4821 -78.0046 -14.7100 -78.6904 -14.7100 -79.2373  c
+-14.7100 -79.8343 -14.4718 -80.3390 -13.9956 -80.7515  c
+-13.5194 -81.1639 -12.9417 -81.3701 -12.2627 -81.3701  c
+-11.6064 -81.3701 -11.0653 -81.1776 -10.6392 -80.7925  c
+-10.2131 -80.4074 -10.0000 -79.9186 -10.0000 -79.3262  c
+-10.0000 -78.3145 -10.7406 -77.4349 -12.2217 -76.6875  c
+-11.5426 -75.4844 -10.7520 -74.3610 -9.84961 -73.3174  c
+-9.43490 -73.9189 -9.22754 -74.7712 -9.22754 -75.8740  c
+-9.23438 -76.3799 l
+-7.89453 -76.3799 l
+-7.89453 -74.8851 -8.34115 -73.5954 -9.23438 -72.5107  c
+-8.82422 -71.9912 -8.35710 -71.4876 -7.83301 -71.0000  c
+h
+-10.8340 -72.3809 m
+-11.7910 -73.5566 -12.7025 -74.8896 -13.5684 -76.3799  c
+-14.6211 -75.9606 -15.1475 -75.2793 -15.1475 -74.3359  c
+-15.1475 -73.6204 -14.9048 -73.0120 -14.4194 -72.5107  c
+-13.9341 -72.0094 -13.3428 -71.7588 -12.6455 -71.7588  c
+-12.0120 -71.7588 -11.4082 -71.9661 -10.8340 -72.3809  c
+h
+-12.7139 -77.5420 m
+-11.7477 -77.9840 -11.2646 -78.5719 -11.2646 -79.3057  c
+-11.2646 -80.0075 -11.6156 -80.3584 -12.3174 -80.3584  c
+-13.0101 -80.3584 -13.3564 -80.0052 -13.3564 -79.2988  c
+-13.3564 -78.8340 -13.1423 -78.2484 -12.7139 -77.5420  c
+h
+.0146484 -71.0000 m
+-.484375 -71.6016 l
+-1.23177 -71.0319 -2.10449 -70.7471 -3.10254 -70.7471  c
+-4.15983 -70.7471 -5.02913 -71.0535 -5.71045 -71.6665  c
+-6.39176 -72.2795 -6.73242 -73.0599 -6.73242 -74.0078  c
+-6.73242 -75.5664 -5.90983 -76.6237 -4.26465 -77.1797  c
+-4.72038 -78.0046 -4.94824 -78.6904 -4.94824 -79.2373  c
+-4.94824 -79.8343 -4.71012 -80.3390 -4.23389 -80.7515  c
+-3.75765 -81.1639 -3.18001 -81.3701 -2.50098 -81.3701  c
+-1.84473 -81.3701 -1.30355 -81.1776 -.877441 -80.7925  c
+-.451335 -80.4074 -.238281 -79.9186 -.238281 -79.3262  c
+-.238281 -78.3145 -.978841 -77.4349 -2.45996 -76.6875  c
+-1.78092 -75.4844 -.990234 -74.3610 -.0878906 -73.3174  c
+.326823 -73.9189 .534180 -74.7712 .534180 -75.8740  c
+.527344 -76.3799 l
+1.86719 -76.3799 l
+1.86719 -74.8851 1.42057 -73.5954 .527344 -72.5107  c
+.937500 -71.9912 1.40462 -71.4876 1.92871 -71.0000  c
+h
+-1.07227 -72.3809 m
+-2.02930 -73.5566 -2.94076 -74.8896 -3.80664 -76.3799  c
+-4.85938 -75.9606 -5.38574 -75.2793 -5.38574 -74.3359  c
+-5.38574 -73.6204 -5.14307 -73.0120 -4.65771 -72.5107  c
+-4.17236 -72.0094 -3.58105 -71.7588 -2.88379 -71.7588  c
+-2.25033 -71.7588 -1.64648 -71.9661 -1.07227 -72.3809  c
+h
+-2.95215 -77.5420 m
+-1.98600 -77.9840 -1.50293 -78.5719 -1.50293 -79.3057  c
+-1.50293 -80.0075 -1.85384 -80.3584 -2.55566 -80.3584  c
+-3.24837 -80.3584 -3.59473 -80.0052 -3.59473 -79.2988  c
+-3.59473 -78.8340 -3.38053 -78.2484 -2.95215 -77.5420  c
+h
+8.29980 -71.0000 m
+8.29980 -78.4238 l
+9.64648 -78.4238 l
+9.64648 -77.0293 l
+10.1797 -78.0684 10.9544 -78.5879 11.9707 -78.5879  c
+12.1074 -78.5879 12.2510 -78.5765 12.4014 -78.5537  c
+12.4014 -77.2959 l
+12.1689 -77.3734 11.9639 -77.4121 11.7861 -77.4121  c
+10.9339 -77.4121 10.2207 -76.9062 9.64648 -75.8945  c
+9.64648 -71.0000 l
+h
+14.7871 -71.0000 m
+14.7871 -72.0117 l
+16.8105 -72.0117 l
+16.8105 -79.9961 l
+14.7871 -79.4902 l
+14.7871 -80.5293 l
+18.1641 -81.3701 l
+18.1641 -72.0117 l
+20.1875 -72.0117 l
+20.1875 -71.0000 l
+h
+22.6279 -78.0820 m
+22.2930 -81.7939 l
+23.9814 -81.7939 l
+23.6396 -78.0820 l
+h
+30.6875 -73.2764 m
+30.6875 -74.2881 l
+38.7812 -74.2881 l
+38.7812 -73.2764 l
+h
+30.6875 -75.8057 m
+30.6875 -76.8174 l
+38.7812 -76.8174 l
+38.7812 -75.8057 l
+h
+41.8164 -73.2764 m
+41.8164 -74.2881 l
+49.9102 -74.2881 l
+49.9102 -73.2764 l
+h
+41.8164 -75.8057 m
+41.8164 -76.8174 l
+49.9102 -76.8174 l
+49.9102 -75.8057 l
+h
+57.9629 -71.0000 m
+57.9629 -72.0117 l
+59.9863 -72.0117 l
+59.9863 -79.9961 l
+57.9629 -79.4902 l
+57.9629 -80.5293 l
+61.3398 -81.3701 l
+61.3398 -72.0117 l
+63.3633 -72.0117 l
+63.3633 -71.0000 l
+h
+f
+newpath
+-9.74707 -54.0000 m
+-10.2461 -54.6016 l
+-10.9935 -54.0319 -11.8662 -53.7471 -12.8643 -53.7471  c
+-13.9215 -53.7471 -14.7909 -54.0535 -15.4722 -54.6665  c
+-16.1535 -55.2795 -16.4941 -56.0599 -16.4941 -57.0078  c
+-16.4941 -58.5664 -15.6715 -59.6237 -14.0264 -60.1797  c
+-14.4821 -61.0046 -14.7100 -61.6904 -14.7100 -62.2373  c
+-14.7100 -62.8343 -14.4718 -63.3390 -13.9956 -63.7515  c
+-13.5194 -64.1639 -12.9417 -64.3701 -12.2627 -64.3701  c
+-11.6064 -64.3701 -11.0653 -64.1776 -10.6392 -63.7925  c
+-10.2131 -63.4074 -10.0000 -62.9186 -10.0000 -62.3262  c
+-10.0000 -61.3145 -10.7406 -60.4349 -12.2217 -59.6875  c
+-11.5426 -58.4844 -10.7520 -57.3610 -9.84961 -56.3174  c
+-9.43490 -56.9189 -9.22754 -57.7712 -9.22754 -58.8740  c
+-9.23438 -59.3799 l
+-7.89453 -59.3799 l
+-7.89453 -57.8851 -8.34115 -56.5954 -9.23438 -55.5107  c
+-8.82422 -54.9912 -8.35710 -54.4876 -7.83301 -54.0000  c
+h
+-10.8340 -55.3809 m
+-11.7910 -56.5566 -12.7025 -57.8896 -13.5684 -59.3799  c
+-14.6211 -58.9606 -15.1475 -58.2793 -15.1475 -57.3359  c
+-15.1475 -56.6204 -14.9048 -56.0120 -14.4194 -55.5107  c
+-13.9341 -55.0094 -13.3428 -54.7588 -12.6455 -54.7588  c
+-12.0120 -54.7588 -11.4082 -54.9661 -10.8340 -55.3809  c
+h
+-12.7139 -60.5420 m
+-11.7477 -60.9840 -11.2646 -61.5719 -11.2646 -62.3057  c
+-11.2646 -63.0075 -11.6156 -63.3584 -12.3174 -63.3584  c
+-13.0101 -63.3584 -13.3564 -63.0052 -13.3564 -62.2988  c
+-13.3564 -61.8340 -13.1423 -61.2484 -12.7139 -60.5420  c
+h
+.0146484 -54.0000 m
+-.484375 -54.6016 l
+-1.23177 -54.0319 -2.10449 -53.7471 -3.10254 -53.7471  c
+-4.15983 -53.7471 -5.02913 -54.0535 -5.71045 -54.6665  c
+-6.39176 -55.2795 -6.73242 -56.0599 -6.73242 -57.0078  c
+-6.73242 -58.5664 -5.90983 -59.6237 -4.26465 -60.1797  c
+-4.72038 -61.0046 -4.94824 -61.6904 -4.94824 -62.2373  c
+-4.94824 -62.8343 -4.71012 -63.3390 -4.23389 -63.7515  c
+-3.75765 -64.1639 -3.18001 -64.3701 -2.50098 -64.3701  c
+-1.84473 -64.3701 -1.30355 -64.1776 -.877441 -63.7925  c
+-.451335 -63.4074 -.238281 -62.9186 -.238281 -62.3262  c
+-.238281 -61.3145 -.978841 -60.4349 -2.45996 -59.6875  c
+-1.78092 -58.4844 -.990234 -57.3610 -.0878906 -56.3174  c
+.326823 -56.9189 .534180 -57.7712 .534180 -58.8740  c
+.527344 -59.3799 l
+1.86719 -59.3799 l
+1.86719 -57.8851 1.42057 -56.5954 .527344 -55.5107  c
+.937500 -54.9912 1.40462 -54.4876 1.92871 -54.0000  c
+h
+-1.07227 -55.3809 m
+-2.02930 -56.5566 -2.94076 -57.8896 -3.80664 -59.3799  c
+-4.85938 -58.9606 -5.38574 -58.2793 -5.38574 -57.3359  c
+-5.38574 -56.6204 -5.14307 -56.0120 -4.65771 -55.5107  c
+-4.17236 -55.0094 -3.58105 -54.7588 -2.88379 -54.7588  c
+-2.25033 -54.7588 -1.64648 -54.9661 -1.07227 -55.3809  c
+h
+-2.95215 -60.5420 m
+-1.98600 -60.9840 -1.50293 -61.5719 -1.50293 -62.3057  c
+-1.50293 -63.0075 -1.85384 -63.3584 -2.55566 -63.3584  c
+-3.24837 -63.3584 -3.59473 -63.0052 -3.59473 -62.2988  c
+-3.59473 -61.8340 -3.38053 -61.2484 -2.95215 -60.5420  c
+h
+8.29980 -54.0000 m
+8.29980 -61.4238 l
+9.64648 -61.4238 l
+9.64648 -60.0293 l
+10.1797 -61.0684 10.9544 -61.5879 11.9707 -61.5879  c
+12.1074 -61.5879 12.2510 -61.5765 12.4014 -61.5537  c
+12.4014 -60.2959 l
+12.1689 -60.3734 11.9639 -60.4121 11.7861 -60.4121  c
+10.9339 -60.4121 10.2207 -59.9062 9.64648 -58.8945  c
+9.64648 -54.0000 l
+h
+13.8438 -54.0000 m
+13.8438 -55.1826 l
+14.2357 -56.0986 15.0286 -57.0967 16.2227 -58.1768  c
+16.9951 -58.8672 l
+17.9886 -59.7650 18.4854 -60.6559 18.4854 -61.5400  c
+18.4854 -62.1051 18.3156 -62.5495 17.9761 -62.8730  c
+17.6366 -63.1966 17.1706 -63.3584 16.5781 -63.3584  c
+15.8763 -63.3584 15.0492 -63.0872 14.0967 -62.5449  c
+14.0967 -63.7344 l
+14.9945 -64.1582 15.8854 -64.3701 16.7695 -64.3701  c
+17.7174 -64.3701 18.4785 -64.1149 19.0527 -63.6045  c
+19.6270 -63.0941 19.9141 -62.4173 19.9141 -61.5742  c
+19.9141 -60.9681 19.7694 -60.4303 19.4800 -59.9609  c
+19.1906 -59.4915 18.6517 -58.9219 17.8633 -58.2520  c
+17.3438 -57.8076 l
+16.2637 -56.8916 15.6393 -56.0166 15.4707 -55.1826  c
+19.8662 -55.1826 l
+19.8662 -54.0000 l
+h
+22.6279 -61.0820 m
+22.2930 -64.7939 l
+23.9814 -64.7939 l
+23.6396 -61.0820 l
+h
+30.6875 -56.2764 m
+30.6875 -57.2881 l
+38.7812 -57.2881 l
+38.7812 -56.2764 l
+h
+30.6875 -58.8057 m
+30.6875 -59.8174 l
+38.7812 -59.8174 l
+38.7812 -58.8057 l
+h
+41.8164 -56.2764 m
+41.8164 -57.2881 l
+49.9102 -57.2881 l
+49.9102 -56.2764 l
+h
+41.8164 -58.8057 m
+41.8164 -59.8174 l
+49.9102 -59.8174 l
+49.9102 -58.8057 l
+h
+57.9629 -54.0000 m
+57.9629 -55.0117 l
+59.9863 -55.0117 l
+59.9863 -62.9961 l
+57.9629 -62.4902 l
+57.9629 -63.5293 l
+61.3398 -64.3701 l
+61.3398 -55.0117 l
+63.3633 -55.0117 l
+63.3633 -54.0000 l
+h
+f
+newpath
+-9.74707 -37.0000 m
+-10.2461 -37.6016 l
+-10.9935 -37.0319 -11.8662 -36.7471 -12.8643 -36.7471  c
+-13.9215 -36.7471 -14.7909 -37.0535 -15.4722 -37.6665  c
+-16.1535 -38.2795 -16.4941 -39.0599 -16.4941 -40.0078  c
+-16.4941 -41.5664 -15.6715 -42.6237 -14.0264 -43.1797  c
+-14.4821 -44.0046 -14.7100 -44.6904 -14.7100 -45.2373  c
+-14.7100 -45.8343 -14.4718 -46.3390 -13.9956 -46.7515  c
+-13.5194 -47.1639 -12.9417 -47.3701 -12.2627 -47.3701  c
+-11.6064 -47.3701 -11.0653 -47.1776 -10.6392 -46.7925  c
+-10.2131 -46.4074 -10.0000 -45.9186 -10.0000 -45.3262  c
+-10.0000 -44.3145 -10.7406 -43.4349 -12.2217 -42.6875  c
+-11.5426 -41.4844 -10.7520 -40.3610 -9.84961 -39.3174  c
+-9.43490 -39.9189 -9.22754 -40.7712 -9.22754 -41.8740  c
+-9.23438 -42.3799 l
+-7.89453 -42.3799 l
+-7.89453 -40.8851 -8.34115 -39.5954 -9.23438 -38.5107  c
+-8.82422 -37.9912 -8.35710 -37.4876 -7.83301 -37.0000  c
+h
+-10.8340 -38.3809 m
+-11.7910 -39.5566 -12.7025 -40.8896 -13.5684 -42.3799  c
+-14.6211 -41.9606 -15.1475 -41.2793 -15.1475 -40.3359  c
+-15.1475 -39.6204 -14.9048 -39.0120 -14.4194 -38.5107  c
+-13.9341 -38.0094 -13.3428 -37.7588 -12.6455 -37.7588  c
+-12.0120 -37.7588 -11.4082 -37.9661 -10.8340 -38.3809  c
+h
+-12.7139 -43.5420 m
+-11.7477 -43.9840 -11.2646 -44.5719 -11.2646 -45.3057  c
+-11.2646 -46.0075 -11.6156 -46.3584 -12.3174 -46.3584  c
+-13.0101 -46.3584 -13.3564 -46.0052 -13.3564 -45.2988  c
+-13.3564 -44.8340 -13.1423 -44.2484 -12.7139 -43.5420  c
+h
+.0146484 -37.0000 m
+-.484375 -37.6016 l
+-1.23177 -37.0319 -2.10449 -36.7471 -3.10254 -36.7471  c
+-4.15983 -36.7471 -5.02913 -37.0535 -5.71045 -37.6665  c
+-6.39176 -38.2795 -6.73242 -39.0599 -6.73242 -40.0078  c
+-6.73242 -41.5664 -5.90983 -42.6237 -4.26465 -43.1797  c
+-4.72038 -44.0046 -4.94824 -44.6904 -4.94824 -45.2373  c
+-4.94824 -45.8343 -4.71012 -46.3390 -4.23389 -46.7515  c
+-3.75765 -47.1639 -3.18001 -47.3701 -2.50098 -47.3701  c
+-1.84473 -47.3701 -1.30355 -47.1776 -.877441 -46.7925  c
+-.451335 -46.4074 -.238281 -45.9186 -.238281 -45.3262  c
+-.238281 -44.3145 -.978841 -43.4349 -2.45996 -42.6875  c
+-1.78092 -41.4844 -.990234 -40.3610 -.0878906 -39.3174  c
+.326823 -39.9189 .534180 -40.7712 .534180 -41.8740  c
+.527344 -42.3799 l
+1.86719 -42.3799 l
+1.86719 -40.8851 1.42057 -39.5954 .527344 -38.5107  c
+.937500 -37.9912 1.40462 -37.4876 1.92871 -37.0000  c
+h
+-1.07227 -38.3809 m
+-2.02930 -39.5566 -2.94076 -40.8896 -3.80664 -42.3799  c
+-4.85938 -41.9606 -5.38574 -41.2793 -5.38574 -40.3359  c
+-5.38574 -39.6204 -5.14307 -39.0120 -4.65771 -38.5107  c
+-4.17236 -38.0094 -3.58105 -37.7588 -2.88379 -37.7588  c
+-2.25033 -37.7588 -1.64648 -37.9661 -1.07227 -38.3809  c
+h
+-2.95215 -43.5420 m
+-1.98600 -43.9840 -1.50293 -44.5719 -1.50293 -45.3057  c
+-1.50293 -46.0075 -1.85384 -46.3584 -2.55566 -46.3584  c
+-3.24837 -46.3584 -3.59473 -46.0052 -3.59473 -45.2988  c
+-3.59473 -44.8340 -3.38053 -44.2484 -2.95215 -43.5420  c
+h
+10.5283 -36.8291 m
+9.84473 -36.8291 9.31152 -37.0251 8.92871 -37.4170  c
+8.54590 -37.8089 8.35449 -38.3535 8.35449 -39.0508  c
+8.35449 -43.4121 l
+7.42480 -43.4121 l
+7.42480 -44.4238 l
+8.35449 -44.4238 l
+8.35449 -45.7705 l
+9.70117 -45.9004 l
+9.70117 -44.4238 l
+11.6426 -44.4238 l
+11.6426 -43.4121 l
+9.70117 -43.4121 l
+9.70117 -39.2969 l
+9.70117 -38.3262 10.1204 -37.8408 10.9590 -37.8408  c
+11.1367 -37.8408 11.3532 -37.8704 11.6084 -37.9297  c
+11.6084 -37.0000 l
+11.1937 -36.8861 10.8337 -36.8291 10.5283 -36.8291  c
+h
+18.1367 -37.0000 m
+26.2305 -41.0469 l
+18.1367 -45.0938 l
+18.1367 -43.9658 l
+23.9678 -41.0469 l
+18.1367 -38.1348 l
+h
+29.2656 -39.2764 m
+29.2656 -40.2881 l
+37.3594 -40.2881 l
+37.3594 -39.2764 l
+h
+29.2656 -41.8057 m
+29.2656 -42.8174 l
+37.3594 -42.8174 l
+37.3594 -41.8057 l
+h
+45.4121 -37.0000 m
+45.4121 -38.0117 l
+47.4355 -38.0117 l
+47.4355 -45.9961 l
+45.4121 -45.4902 l
+45.4121 -46.5293 l
+48.7891 -47.3701 l
+48.7891 -38.0117 l
+50.8125 -38.0117 l
+50.8125 -37.0000 l
+h
+56.5479 -36.7471 m
+55.5042 -36.7471 54.6600 -37.2381 54.0151 -38.2202  c
+53.3703 -39.2023 53.0479 -40.4840 53.0479 -42.0654  c
+53.0479 -43.6605 53.3726 -44.9434 54.0220 -45.9141  c
+54.6714 -46.8848 55.5270 -47.3701 56.5889 -47.3701  c
+57.6507 -47.3701 58.5063 -46.8848 59.1558 -45.9141  c
+59.8052 -44.9434 60.1299 -43.6673 60.1299 -42.0859  c
+60.1299 -40.4635 59.8052 -39.1681 59.1558 -38.1997  c
+58.5063 -37.2313 57.6370 -36.7471 56.5479 -36.7471  c
+h
+56.5615 -37.7588 m
+57.9880 -37.7588 58.7012 -39.2080 58.7012 -42.1064  c
+58.7012 -44.9411 57.9971 -46.3584 56.5889 -46.3584  c
+55.1852 -46.3584 54.4834 -44.9274 54.4834 -42.0654  c
+54.4834 -39.1943 55.1761 -37.7588 56.5615 -37.7588  c
+h
+62.1738 -37.0000 m
+62.1738 -38.1826 l
+62.5658 -39.0986 63.3587 -40.0967 64.5527 -41.1768  c
+65.3252 -41.8672 l
+66.3187 -42.7650 66.8154 -43.6559 66.8154 -44.5400  c
+66.8154 -45.1051 66.6457 -45.5495 66.3062 -45.8730  c
+65.9666 -46.1966 65.5007 -46.3584 64.9082 -46.3584  c
+64.2064 -46.3584 63.3792 -46.0872 62.4268 -45.5449  c
+62.4268 -46.7344 l
+63.3245 -47.1582 64.2155 -47.3701 65.0996 -47.3701  c
+66.0475 -47.3701 66.8086 -47.1149 67.3828 -46.6045  c
+67.9570 -46.0941 68.2441 -45.4173 68.2441 -44.5742  c
+68.2441 -43.9681 68.0994 -43.4303 67.8101 -42.9609  c
+67.5207 -42.4915 66.9818 -41.9219 66.1934 -41.2520  c
+65.6738 -40.8076 l
+64.5938 -39.8916 63.9694 -39.0166 63.8008 -38.1826  c
+68.1963 -38.1826 l
+68.1963 -37.0000 l
+h
+f
+newpath
+-497.425 39.1709 m
+-498.108 39.1709 -498.642 38.9749 -499.024 38.5830  c
+-499.407 38.1911 -499.599 37.6465 -499.599 36.9492  c
+-499.599 32.5879 l
+-500.528 32.5879 l
+-500.528 31.5762 l
+-499.599 31.5762 l
+-499.599 30.2295 l
+-498.252 30.0996 l
+-498.252 31.5762 l
+-496.311 31.5762 l
+-496.311 32.5879 l
+-498.252 32.5879 l
+-498.252 36.7031 l
+-498.252 37.6738 -497.833 38.1592 -496.994 38.1592  c
+-496.816 38.1592 -496.600 38.1296 -496.345 38.0703  c
+-496.345 39.0000 l
+-496.759 39.1139 -497.119 39.1709 -497.425 39.1709  c
+h
+-494.670 31.9180 m
+-495.005 28.2061 l
+-493.316 28.2061 l
+-493.658 31.9180 l
+h
+-486.610 36.7236 m
+-486.610 35.7119 l
+-478.517 35.7119 l
+-478.517 36.7236 l
+h
+-486.610 34.1943 m
+-486.610 33.1826 l
+-478.517 33.1826 l
+-478.517 34.1943 l
+h
+-475.481 36.7236 m
+-475.481 35.7119 l
+-467.388 35.7119 l
+-467.388 36.7236 l
+h
+-475.481 34.1943 m
+-475.481 33.1826 l
+-467.388 33.1826 l
+-467.388 34.1943 l
+h
+-457.052 39.2529 m
+-458.095 39.2529 -458.940 38.7619 -459.584 37.7798  c
+-460.229 36.7977 -460.552 35.5160 -460.552 33.9346  c
+-460.552 32.3395 -460.227 31.0566 -459.578 30.0859  c
+-458.928 29.1152 -458.073 28.6299 -457.011 28.6299  c
+-455.949 28.6299 -455.093 29.1152 -454.444 30.0859  c
+-453.794 31.0566 -453.470 32.3327 -453.470 33.9141  c
+-453.470 35.5365 -453.794 36.8319 -454.444 37.8003  c
+-455.093 38.7687 -455.963 39.2529 -457.052 39.2529  c
+h
+-457.038 38.2412 m
+-455.612 38.2412 -454.898 36.7920 -454.898 33.8936  c
+-454.898 31.0589 -455.603 29.6416 -457.011 29.6416  c
+-458.414 29.6416 -459.116 31.0726 -459.116 33.9346  c
+-459.116 36.8057 -458.424 38.2412 -457.038 38.2412  c
+h
+-451.221 39.0000 m
+-451.221 37.3115 l
+-449.532 37.3115 l
+-449.532 39.0000 l
+h
+-446.053 39.0000 m
+-446.053 37.9883 l
+-444.029 37.9883 l
+-444.029 30.0039 l
+-446.053 30.5098 l
+-446.053 29.4707 l
+-442.676 28.6299 l
+-442.676 37.9883 l
+-440.652 37.9883 l
+-440.652 39.0000 l
+h
+-433.618 30.1885 m
+-433.311 31.1523 l
+-435.382 31.6035 l
+-435.368 31.5534 -435.361 31.5192 -435.361 31.5010  c
+-435.361 31.3141 -435.427 31.1615 -435.560 31.0430  c
+h
+-433.994 33.2715 m
+-434.814 33.8662 l
+-435.888 32.0410 l
+-435.655 32.0137 -435.496 31.8975 -435.409 31.6924  c
+h
+-437.043 33.8662 m
+-437.863 33.2715 l
+-436.455 31.6924 l
+-436.364 31.8975 -436.204 32.0137 -435.977 32.0410  c
+h
+-438.554 31.1523 m
+-438.239 30.1885 l
+-436.298 31.0430 l
+-436.430 31.1569 -436.496 31.3096 -436.496 31.5010  c
+-436.496 31.5192 -436.492 31.5534 -436.482 31.6035  c
+h
+-436.435 28.8828 m
+-435.423 28.8828 l
+-435.635 30.9883 l
+-435.717 30.9382 -435.815 30.9131 -435.929 30.9131  c
+-436.043 30.9131 -436.141 30.9382 -436.223 30.9883  c
+h
+-428.983 39.1709 m
+-429.667 39.1709 -430.200 38.9749 -430.583 38.5830  c
+-430.966 38.1911 -431.157 37.6465 -431.157 36.9492  c
+-431.157 32.5879 l
+-432.087 32.5879 l
+-432.087 31.5762 l
+-431.157 31.5762 l
+-431.157 30.2295 l
+-429.811 30.0996 l
+-429.811 31.5762 l
+-427.869 31.5762 l
+-427.869 32.5879 l
+-429.811 32.5879 l
+-429.811 36.7031 l
+-429.811 37.6738 -429.391 38.1592 -428.553 38.1592  c
+-428.375 38.1592 -428.159 38.1296 -427.903 38.0703  c
+-427.903 39.0000 l
+-428.318 39.1139 -428.678 39.1709 -428.983 39.1709  c
+h
+-421.881 35.4590 m
+-421.881 34.4473 l
+-415.811 34.4473 l
+-415.811 35.4590 l
+h
+-408.257 39.0000 m
+-408.257 37.9883 l
+-406.233 37.9883 l
+-406.233 30.0039 l
+-408.257 30.5098 l
+-408.257 29.4707 l
+-404.880 28.6299 l
+-404.880 37.9883 l
+-402.856 37.9883 l
+-402.856 39.0000 l
+h
+-397.121 39.2529 m
+-398.165 39.2529 -399.009 38.7619 -399.654 37.7798  c
+-400.299 36.7977 -400.621 35.5160 -400.621 33.9346  c
+-400.621 32.3395 -400.296 31.0566 -399.647 30.0859  c
+-398.998 29.1152 -398.142 28.6299 -397.080 28.6299  c
+-396.018 28.6299 -395.163 29.1152 -394.513 30.0859  c
+-393.864 31.0566 -393.539 32.3327 -393.539 33.9141  c
+-393.539 35.5365 -393.864 36.8319 -394.513 37.8003  c
+-395.163 38.7687 -396.032 39.2529 -397.121 39.2529  c
+h
+-397.107 38.2412 m
+-395.681 38.2412 -394.968 36.7920 -394.968 33.8936  c
+-394.968 31.0589 -395.672 29.6416 -397.080 29.6416  c
+-398.484 29.6416 -399.186 31.0726 -399.186 33.9346  c
+-399.186 36.8057 -398.493 38.2412 -397.107 38.2412  c
+h
+-391.290 39.0000 m
+-391.290 37.3115 l
+-389.602 37.3115 l
+-389.602 39.0000 l
+h
+-383.839 39.2529 m
+-384.882 39.2529 -385.727 38.7619 -386.372 37.7798  c
+-387.016 36.7977 -387.339 35.5160 -387.339 33.9346  c
+-387.339 32.3395 -387.014 31.0566 -386.365 30.0859  c
+-385.715 29.1152 -384.860 28.6299 -383.798 28.6299  c
+-382.736 28.6299 -381.880 29.1152 -381.231 30.0859  c
+-380.582 31.0566 -380.257 32.3327 -380.257 33.9141  c
+-380.257 35.5365 -380.582 36.8319 -381.231 37.8003  c
+-381.880 38.7687 -382.750 39.2529 -383.839 39.2529  c
+h
+-383.825 38.2412 m
+-382.399 38.2412 -381.686 36.7920 -381.686 33.8936  c
+-381.686 31.0589 -382.390 29.6416 -383.798 29.6416  c
+-385.201 29.6416 -385.903 31.0726 -385.903 33.9346  c
+-385.903 36.8057 -385.211 38.2412 -383.825 38.2412  c
+h
+f
+newpath
+-493.747 56.0000 m
+-494.246 55.3984 l
+-494.993 55.9681 -495.866 56.2529 -496.864 56.2529  c
+-497.922 56.2529 -498.791 55.9465 -499.472 55.3335  c
+-500.153 54.7205 -500.494 53.9401 -500.494 52.9922  c
+-500.494 51.4336 -499.672 50.3763 -498.026 49.8203  c
+-498.482 48.9954 -498.710 48.3096 -498.710 47.7627  c
+-498.710 47.1657 -498.472 46.6610 -497.996 46.2485  c
+-497.519 45.8361 -496.942 45.6299 -496.263 45.6299  c
+-495.606 45.6299 -495.065 45.8224 -494.639 46.2075  c
+-494.213 46.5926 -494.000 47.0814 -494.000 47.6738  c
+-494.000 48.6855 -494.741 49.5651 -496.222 50.3125  c
+-495.543 51.5156 -494.752 52.6390 -493.850 53.6826  c
+-493.435 53.0811 -493.228 52.2288 -493.228 51.1260  c
+-493.234 50.6201 l
+-491.895 50.6201 l
+-491.895 52.1149 -492.341 53.4046 -493.234 54.4893  c
+-492.824 55.0088 -492.357 55.5124 -491.833 56.0000  c
+h
+-494.834 54.6191 m
+-495.791 53.4434 -496.702 52.1104 -497.568 50.6201  c
+-498.621 51.0394 -499.147 51.7207 -499.147 52.6641  c
+-499.147 53.3796 -498.905 53.9880 -498.419 54.4893  c
+-497.934 54.9906 -497.343 55.2412 -496.646 55.2412  c
+-496.012 55.2412 -495.408 55.0339 -494.834 54.6191  c
+h
+-496.714 49.4580 m
+-495.748 49.0160 -495.265 48.4281 -495.265 47.6943  c
+-495.265 46.9925 -495.616 46.6416 -496.317 46.6416  c
+-497.010 46.6416 -497.356 46.9948 -497.356 47.7012  c
+-497.356 48.1660 -497.142 48.7516 -496.714 49.4580  c
+h
+-483.985 56.0000 m
+-484.484 55.3984 l
+-485.232 55.9681 -486.104 56.2529 -487.103 56.2529  c
+-488.160 56.2529 -489.029 55.9465 -489.710 55.3335  c
+-490.392 54.7205 -490.732 53.9401 -490.732 52.9922  c
+-490.732 51.4336 -489.910 50.3763 -488.265 49.8203  c
+-488.720 48.9954 -488.948 48.3096 -488.948 47.7627  c
+-488.948 47.1657 -488.710 46.6610 -488.234 46.2485  c
+-487.758 45.8361 -487.180 45.6299 -486.501 45.6299  c
+-485.845 45.6299 -485.304 45.8224 -484.877 46.2075  c
+-484.451 46.5926 -484.238 47.0814 -484.238 47.6738  c
+-484.238 48.6855 -484.979 49.5651 -486.460 50.3125  c
+-485.781 51.5156 -484.990 52.6390 -484.088 53.6826  c
+-483.673 53.0811 -483.466 52.2288 -483.466 51.1260  c
+-483.473 50.6201 l
+-482.133 50.6201 l
+-482.133 52.1149 -482.579 53.4046 -483.473 54.4893  c
+-483.062 55.0088 -482.595 55.5124 -482.071 56.0000  c
+h
+-485.072 54.6191 m
+-486.029 53.4434 -486.941 52.1104 -487.807 50.6201  c
+-488.859 51.0394 -489.386 51.7207 -489.386 52.6641  c
+-489.386 53.3796 -489.143 53.9880 -488.658 54.4893  c
+-488.172 54.9906 -487.581 55.2412 -486.884 55.2412  c
+-486.250 55.2412 -485.646 55.0339 -485.072 54.6191  c
+h
+-486.952 49.4580 m
+-485.986 49.0160 -485.503 48.4281 -485.503 47.6943  c
+-485.503 46.9925 -485.854 46.6416 -486.556 46.6416  c
+-487.248 46.6416 -487.595 46.9948 -487.595 47.7012  c
+-487.595 48.1660 -487.381 48.7516 -486.952 49.4580  c
+h
+-475.700 56.0000 m
+-475.700 48.5762 l
+-474.354 48.5762 l
+-474.354 49.9707 l
+-473.820 48.9316 -473.046 48.4121 -472.029 48.4121  c
+-471.893 48.4121 -471.749 48.4235 -471.599 48.4463  c
+-471.599 49.7041 l
+-471.831 49.6266 -472.036 49.5879 -472.214 49.5879  c
+-473.066 49.5879 -473.779 50.0938 -474.354 51.1055  c
+-474.354 56.0000 l
+h
+-469.213 56.0000 m
+-469.213 54.9883 l
+-467.189 54.9883 l
+-467.189 47.0039 l
+-469.213 47.5098 l
+-469.213 46.4707 l
+-465.836 45.6299 l
+-465.836 54.9883 l
+-463.812 54.9883 l
+-463.812 56.0000 l
+h
+-461.372 48.9180 m
+-461.707 45.2061 l
+-460.019 45.2061 l
+-460.360 48.9180 l
+h
+-453.312 53.7236 m
+-453.312 52.7119 l
+-445.219 52.7119 l
+-445.219 53.7236 l
+h
+-453.312 51.1943 m
+-453.312 50.1826 l
+-445.219 50.1826 l
+-445.219 51.1943 l
+h
+-442.184 53.7236 m
+-442.184 52.7119 l
+-434.090 52.7119 l
+-434.090 53.7236 l
+h
+-442.184 51.1943 m
+-442.184 50.1826 l
+-434.090 50.1826 l
+-434.090 51.1943 l
+h
+-426.037 56.0000 m
+-426.037 54.9883 l
+-424.014 54.9883 l
+-424.014 47.0039 l
+-426.037 47.5098 l
+-426.037 46.4707 l
+-422.660 45.6299 l
+-422.660 54.9883 l
+-420.637 54.9883 l
+-420.637 56.0000 l
+h
+f
+newpath
+-493.747 73.0000 m
+-494.246 72.3984 l
+-494.993 72.9681 -495.866 73.2529 -496.864 73.2529  c
+-497.922 73.2529 -498.791 72.9465 -499.472 72.3335  c
+-500.153 71.7205 -500.494 70.9401 -500.494 69.9922  c
+-500.494 68.4336 -499.672 67.3763 -498.026 66.8203  c
+-498.482 65.9954 -498.710 65.3096 -498.710 64.7627  c
+-498.710 64.1657 -498.472 63.6610 -497.996 63.2485  c
+-497.519 62.8361 -496.942 62.6299 -496.263 62.6299  c
+-495.606 62.6299 -495.065 62.8224 -494.639 63.2075  c
+-494.213 63.5926 -494.000 64.0814 -494.000 64.6738  c
+-494.000 65.6855 -494.741 66.5651 -496.222 67.3125  c
+-495.543 68.5156 -494.752 69.6390 -493.850 70.6826  c
+-493.435 70.0811 -493.228 69.2288 -493.228 68.1260  c
+-493.234 67.6201 l
+-491.895 67.6201 l
+-491.895 69.1149 -492.341 70.4046 -493.234 71.4893  c
+-492.824 72.0088 -492.357 72.5124 -491.833 73.0000  c
+h
+-494.834 71.6191 m
+-495.791 70.4434 -496.702 69.1104 -497.568 67.6201  c
+-498.621 68.0394 -499.147 68.7207 -499.147 69.6641  c
+-499.147 70.3796 -498.905 70.9880 -498.419 71.4893  c
+-497.934 71.9906 -497.343 72.2412 -496.646 72.2412  c
+-496.012 72.2412 -495.408 72.0339 -494.834 71.6191  c
+h
+-496.714 66.4580 m
+-495.748 66.0160 -495.265 65.4281 -495.265 64.6943  c
+-495.265 63.9925 -495.616 63.6416 -496.317 63.6416  c
+-497.010 63.6416 -497.356 63.9948 -497.356 64.7012  c
+-497.356 65.1660 -497.142 65.7516 -496.714 66.4580  c
+h
+-483.985 73.0000 m
+-484.484 72.3984 l
+-485.232 72.9681 -486.104 73.2529 -487.103 73.2529  c
+-488.160 73.2529 -489.029 72.9465 -489.710 72.3335  c
+-490.392 71.7205 -490.732 70.9401 -490.732 69.9922  c
+-490.732 68.4336 -489.910 67.3763 -488.265 66.8203  c
+-488.720 65.9954 -488.948 65.3096 -488.948 64.7627  c
+-488.948 64.1657 -488.710 63.6610 -488.234 63.2485  c
+-487.758 62.8361 -487.180 62.6299 -486.501 62.6299  c
+-485.845 62.6299 -485.304 62.8224 -484.877 63.2075  c
+-484.451 63.5926 -484.238 64.0814 -484.238 64.6738  c
+-484.238 65.6855 -484.979 66.5651 -486.460 67.3125  c
+-485.781 68.5156 -484.990 69.6390 -484.088 70.6826  c
+-483.673 70.0811 -483.466 69.2288 -483.466 68.1260  c
+-483.473 67.6201 l
+-482.133 67.6201 l
+-482.133 69.1149 -482.579 70.4046 -483.473 71.4893  c
+-483.062 72.0088 -482.595 72.5124 -482.071 73.0000  c
+h
+-485.072 71.6191 m
+-486.029 70.4434 -486.941 69.1104 -487.807 67.6201  c
+-488.859 68.0394 -489.386 68.7207 -489.386 69.6641  c
+-489.386 70.3796 -489.143 70.9880 -488.658 71.4893  c
+-488.172 71.9906 -487.581 72.2412 -486.884 72.2412  c
+-486.250 72.2412 -485.646 72.0339 -485.072 71.6191  c
+h
+-486.952 66.4580 m
+-485.986 66.0160 -485.503 65.4281 -485.503 64.6943  c
+-485.503 63.9925 -485.854 63.6416 -486.556 63.6416  c
+-487.248 63.6416 -487.595 63.9948 -487.595 64.7012  c
+-487.595 65.1660 -487.381 65.7516 -486.952 66.4580  c
+h
+-475.700 73.0000 m
+-475.700 65.5762 l
+-474.354 65.5762 l
+-474.354 66.9707 l
+-473.820 65.9316 -473.046 65.4121 -472.029 65.4121  c
+-471.893 65.4121 -471.749 65.4235 -471.599 65.4463  c
+-471.599 66.7041 l
+-471.831 66.6266 -472.036 66.5879 -472.214 66.5879  c
+-473.066 66.5879 -473.779 67.0938 -474.354 68.1055  c
+-474.354 73.0000 l
+h
+-470.156 73.0000 m
+-470.156 71.8174 l
+-469.764 70.9014 -468.971 69.9033 -467.777 68.8232  c
+-467.005 68.1328 l
+-466.011 67.2350 -465.515 66.3441 -465.515 65.4600  c
+-465.515 64.8949 -465.684 64.4505 -466.024 64.1270  c
+-466.363 63.8034 -466.829 63.6416 -467.422 63.6416  c
+-468.124 63.6416 -468.951 63.9128 -469.903 64.4551  c
+-469.903 63.2656 l
+-469.006 62.8418 -468.115 62.6299 -467.230 62.6299  c
+-466.283 62.6299 -465.521 62.8851 -464.947 63.3955  c
+-464.373 63.9059 -464.086 64.5827 -464.086 65.4258  c
+-464.086 66.0319 -464.231 66.5697 -464.520 67.0391  c
+-464.809 67.5085 -465.348 68.0781 -466.137 68.7480  c
+-466.656 69.1924 l
+-467.736 70.1084 -468.361 70.9834 -468.529 71.8174  c
+-464.134 71.8174 l
+-464.134 73.0000 l
+h
+-461.372 65.9180 m
+-461.707 62.2061 l
+-460.019 62.2061 l
+-460.360 65.9180 l
+h
+-453.312 70.7236 m
+-453.312 69.7119 l
+-445.219 69.7119 l
+-445.219 70.7236 l
+h
+-453.312 68.1943 m
+-453.312 67.1826 l
+-445.219 67.1826 l
+-445.219 68.1943 l
+h
+-442.184 70.7236 m
+-442.184 69.7119 l
+-434.090 69.7119 l
+-434.090 70.7236 l
+h
+-442.184 68.1943 m
+-442.184 67.1826 l
+-434.090 67.1826 l
+-434.090 68.1943 l
+h
+-426.037 73.0000 m
+-426.037 71.9883 l
+-424.014 71.9883 l
+-424.014 64.0039 l
+-426.037 64.5098 l
+-426.037 63.4707 l
+-422.660 62.6299 l
+-422.660 71.9883 l
+-420.637 71.9883 l
+-420.637 73.0000 l
+h
+f
+.549020 .219608 .388235 RG
+newpath
+-50.6533 65.0000 m
+-50.6533 57.5762 l
+-49.3066 57.5762 l
+-49.3066 58.9707 l
+-48.7734 57.9316 -47.9987 57.4121 -46.9824 57.4121  c
+-46.8457 57.4121 -46.7021 57.4235 -46.5518 57.4463  c
+-46.5518 58.7041 l
+-46.7842 58.6266 -46.9893 58.5879 -47.1670 58.5879  c
+-48.0192 58.5879 -48.7324 59.0938 -49.3066 60.1055  c
+-49.3066 65.0000 l
+h
+-42.0195 65.1709 m
+-43.0814 65.1709 -43.9290 64.8188 -44.5625 64.1147  c
+-45.1960 63.4106 -45.5127 62.4684 -45.5127 61.2881  c
+-45.5127 60.0941 -45.1948 59.1496 -44.5591 58.4546  c
+-43.9233 57.7596 -43.0609 57.4121 -41.9717 57.4121  c
+-40.8825 57.4121 -40.0200 57.7596 -39.3843 58.4546  c
+-38.7485 59.1496 -38.4307 60.0895 -38.4307 61.2744  c
+-38.4307 62.4867 -38.7497 63.4391 -39.3877 64.1318  c
+-40.0257 64.8245 -40.9030 65.1709 -42.0195 65.1709  c
+h
+-41.9990 64.1592 m
+-40.5726 64.1592 -39.8594 63.1976 -39.8594 61.2744  c
+-39.8594 59.3740 -40.5635 58.4238 -41.9717 58.4238  c
+-43.3753 58.4238 -44.0771 59.3786 -44.0771 61.2881  c
+-44.0771 63.2021 -43.3844 64.1592 -41.9990 64.1592  c
+h
+-31.5605 65.0000 m
+-31.5605 63.6055 l
+-32.1074 64.6491 -32.9323 65.1709 -34.0352 65.1709  c
+-34.9284 65.1709 -35.6313 64.8451 -36.1440 64.1934  c
+-36.6567 63.5417 -36.9131 62.6507 -36.9131 61.5205  c
+-36.9131 60.2855 -36.6226 59.2920 -36.0415 58.5400  c
+-35.4604 57.7881 -34.6960 57.4121 -33.7480 57.4121  c
+-32.8685 57.4121 -32.1393 57.7493 -31.5605 58.4238  c
+-31.5605 54.2061 l
+-30.2070 54.2061 l
+-30.2070 65.0000 l
+h
+-31.5605 59.3467 m
+-32.2578 58.7314 -32.9186 58.4238 -33.5430 58.4238  c
+-34.8327 58.4238 -35.4775 59.4105 -35.4775 61.3838  c
+-35.4775 63.1201 -34.9033 63.9883 -33.7549 63.9883  c
+-33.0075 63.9883 -32.2760 63.5804 -31.5605 62.7646  c
+h
+-27.6982 65.0000 m
+-27.6982 63.8174 l
+-27.3063 62.9014 -26.5133 61.9033 -25.3193 60.8232  c
+-24.5469 60.1328 l
+-23.5534 59.2350 -23.0566 58.3441 -23.0566 57.4600  c
+-23.0566 56.8949 -23.2264 56.4505 -23.5659 56.1270  c
+-23.9054 55.8034 -24.3714 55.6416 -24.9639 55.6416  c
+-25.6657 55.6416 -26.4928 55.9128 -27.4453 56.4551  c
+-27.4453 55.2656 l
+-26.5475 54.8418 -25.6566 54.6299 -24.7725 54.6299  c
+-23.8245 54.6299 -23.0635 54.8851 -22.4893 55.3955  c
+-21.9150 55.9059 -21.6279 56.5827 -21.6279 57.4258  c
+-21.6279 58.0319 -21.7726 58.5697 -22.0620 59.0391  c
+-22.3514 59.5085 -22.8903 60.0781 -23.6787 60.7480  c
+-24.1982 61.1924 l
+-25.2783 62.1084 -25.9027 62.9834 -26.0713 63.8174  c
+-21.6758 63.8174 l
+-21.6758 65.0000 l
+h
+f
+newpath
+-547.748 -10.8291 m
+-548.810 -10.8291 -549.658 -11.1812 -550.291 -11.8853  c
+-550.924 -12.5894 -551.241 -13.5316 -551.241 -14.7119  c
+-551.241 -15.9059 -550.923 -16.8504 -550.288 -17.5454  c
+-549.652 -18.2404 -548.789 -18.5879 -547.700 -18.5879  c
+-546.611 -18.5879 -545.749 -18.2404 -545.113 -17.5454  c
+-544.477 -16.8504 -544.159 -15.9105 -544.159 -14.7256  c
+-544.159 -13.5133 -544.478 -12.5609 -545.116 -11.8682  c
+-545.754 -11.1755 -546.632 -10.8291 -547.748 -10.8291  c
+h
+-547.728 -11.8408 m
+-546.301 -11.8408 -545.588 -12.8024 -545.588 -14.7256  c
+-545.588 -16.6260 -546.292 -17.5762 -547.700 -17.5762  c
+-549.104 -17.5762 -549.806 -16.6214 -549.806 -14.7119  c
+-549.806 -12.7979 -549.113 -11.8408 -547.728 -11.8408  c
+h
+-540.516 -11.0000 m
+-543.277 -18.4238 l
+-541.931 -18.4238 l
+-539.771 -12.6475 l
+-537.494 -18.4238 l
+-536.236 -18.4238 l
+-539.169 -11.0000 l
+h
+-529.366 -11.2393 m
+-530.269 -10.9658 -531.041 -10.8291 -531.684 -10.8291  c
+-532.777 -10.8291 -533.669 -11.1925 -534.360 -11.9194  c
+-535.050 -12.6463 -535.396 -13.5885 -535.396 -14.7461  c
+-535.396 -15.8717 -535.091 -16.7946 -534.483 -17.5146  c
+-533.875 -18.2347 -533.096 -18.5947 -532.148 -18.5947  c
+-531.251 -18.5947 -530.557 -18.2757 -530.067 -17.6377  c
+-529.577 -16.9997 -529.332 -16.0928 -529.332 -14.9170  c
+-529.339 -14.5000 l
+-534.021 -14.5000 l
+-533.826 -12.7363 -532.962 -11.8545 -531.431 -11.8545  c
+-530.870 -11.8545 -530.182 -12.0049 -529.366 -12.3057  c
+h
+-533.960 -15.5117 m
+-530.686 -15.5117 l
+-530.686 -16.8926 -531.201 -17.5830 -532.230 -17.5830  c
+-533.265 -17.5830 -533.841 -16.8926 -533.960 -15.5117  c
+h
+-527.008 -11.0000 m
+-527.008 -18.4238 l
+-525.661 -18.4238 l
+-525.661 -17.0293 l
+-525.128 -18.0684 -524.353 -18.5879 -523.337 -18.5879  c
+-523.200 -18.5879 -523.057 -18.5765 -522.906 -18.5537  c
+-522.906 -17.2959 l
+-523.139 -17.3734 -523.344 -17.4121 -523.521 -17.4121  c
+-524.374 -17.4121 -525.087 -16.9062 -525.661 -15.8945  c
+-525.661 -11.0000 l
+h
+-521.279 -11.0000 m
+-521.279 -21.7939 l
+-519.933 -21.7939 l
+-519.933 -17.0293 l
+-519.222 -18.0684 -518.351 -18.5879 -517.321 -18.5879  c
+-516.679 -18.5879 -516.166 -18.3840 -515.783 -17.9761  c
+-515.400 -17.5682 -515.209 -17.0202 -515.209 -16.3320  c
+-515.209 -11.0000 l
+-516.556 -11.0000 l
+-516.556 -15.8945 l
+-516.556 -16.4460 -516.637 -16.8390 -516.798 -17.0737  c
+-516.960 -17.3084 -517.228 -17.4258 -517.602 -17.4258  c
+-518.426 -17.4258 -519.203 -16.8857 -519.933 -15.8057  c
+-519.933 -11.0000 l
+h
+-507.149 -11.2393 m
+-508.052 -10.9658 -508.824 -10.8291 -509.467 -10.8291  c
+-510.561 -10.8291 -511.453 -11.1925 -512.143 -11.9194  c
+-512.833 -12.6463 -513.179 -13.5885 -513.179 -14.7461  c
+-513.179 -15.8717 -512.875 -16.7946 -512.266 -17.5146  c
+-511.658 -18.2347 -510.880 -18.5947 -509.932 -18.5947  c
+-509.034 -18.5947 -508.340 -18.2757 -507.850 -17.6377  c
+-507.360 -16.9997 -507.115 -16.0928 -507.115 -14.9170  c
+-507.122 -14.5000 l
+-511.805 -14.5000 l
+-511.609 -12.7363 -510.745 -11.8545 -509.214 -11.8545  c
+-508.653 -11.8545 -507.965 -12.0049 -507.149 -12.3057  c
+h
+-511.743 -15.5117 m
+-508.469 -15.5117 l
+-508.469 -16.8926 -508.984 -17.5830 -510.014 -17.5830  c
+-511.048 -17.5830 -511.625 -16.8926 -511.743 -15.5117  c
+h
+-500.963 -11.9434 m
+-501.770 -11.2005 -502.547 -10.8291 -503.294 -10.8291  c
+-503.909 -10.8291 -504.420 -11.0216 -504.825 -11.4067  c
+-505.231 -11.7918 -505.434 -12.2783 -505.434 -12.8662  c
+-505.434 -13.6774 -505.093 -14.3006 -504.412 -14.7358  c
+-503.730 -15.1711 -502.754 -15.3887 -501.482 -15.3887  c
+-501.161 -15.3887 l
+-501.161 -16.2842 l
+-501.161 -17.1455 -501.603 -17.5762 -502.487 -17.5762  c
+-503.198 -17.5762 -503.966 -17.3574 -504.791 -16.9199  c
+-504.791 -18.0342 l
+-503.884 -18.4033 -503.034 -18.5879 -502.241 -18.5879  c
+-501.412 -18.5879 -500.800 -18.4010 -500.406 -18.0273  c
+-500.012 -17.6536 -499.814 -17.0726 -499.814 -16.2842  c
+-499.814 -12.9209 l
+-499.814 -12.1507 -499.577 -11.7656 -499.104 -11.7656  c
+-499.044 -11.7656 -498.958 -11.7747 -498.844 -11.7930  c
+-498.748 -11.0479 l
+-499.053 -10.9020 -499.391 -10.8291 -499.760 -10.8291  c
+-500.389 -10.8291 -500.790 -11.2005 -500.963 -11.9434  c
+h
+-501.161 -12.6748 m
+-501.161 -14.5957 l
+-501.612 -14.6094 l
+-502.351 -14.6094 -502.948 -14.4692 -503.403 -14.1890  c
+-503.859 -13.9087 -504.087 -13.5407 -504.087 -13.0850  c
+-504.087 -12.7614 -503.973 -12.4880 -503.745 -12.2646  c
+-503.517 -12.0413 -503.239 -11.9297 -502.911 -11.9297  c
+-502.351 -11.9297 -501.767 -12.1781 -501.161 -12.6748  c
+h
+-494.831 -10.8291 m
+-495.515 -10.8291 -496.048 -11.0251 -496.431 -11.4170  c
+-496.813 -11.8089 -497.005 -12.3535 -497.005 -13.0508  c
+-497.005 -17.4121 l
+-497.935 -17.4121 l
+-497.935 -18.4238 l
+-497.005 -18.4238 l
+-497.005 -19.7705 l
+-495.658 -19.9004 l
+-495.658 -18.4238 l
+-493.717 -18.4238 l
+-493.717 -17.4121 l
+-495.658 -17.4121 l
+-495.658 -13.2969 l
+-495.658 -12.3262 -495.239 -11.8408 -494.400 -11.8408  c
+-494.223 -11.8408 -494.006 -11.8704 -493.751 -11.9297  c
+-493.751 -11.0000 l
+-494.166 -10.8861 -494.526 -10.8291 -494.831 -10.8291  c
+h
+-491.823 -11.0000 m
+-491.823 -18.4238 l
+-490.477 -18.4238 l
+-490.477 -11.0000 l
+h
+-491.823 -19.7705 m
+-491.823 -21.1172 l
+-490.477 -21.1172 l
+-490.477 -19.7705 l
+h
+-487.776 -11.0000 m
+-487.776 -18.4238 l
+-486.430 -18.4238 l
+-486.430 -17.0293 l
+-485.719 -18.0684 -484.848 -18.5879 -483.818 -18.5879  c
+-483.176 -18.5879 -482.663 -18.3840 -482.280 -17.9761  c
+-481.897 -17.5682 -481.706 -17.0202 -481.706 -16.3320  c
+-481.706 -11.0000 l
+-483.053 -11.0000 l
+-483.053 -15.8945 l
+-483.053 -16.4460 -483.134 -16.8390 -483.295 -17.0737  c
+-483.457 -17.3084 -483.725 -17.4258 -484.099 -17.4258  c
+-484.924 -17.4258 -485.701 -16.8857 -486.430 -15.8057  c
+-486.430 -11.0000 l
+h
+-479.061 -8.53223 m
+-478.903 -9.70117 l
+-478.124 -9.33203 -477.356 -9.14746 -476.600 -9.14746  c
+-475.082 -9.14746 -474.323 -9.95182 -474.323 -11.5605  c
+-474.323 -12.7295 l
+-474.820 -11.6904 -475.636 -11.1709 -476.771 -11.1709  c
+-477.659 -11.1709 -478.366 -11.4945 -478.890 -12.1416  c
+-479.414 -12.7887 -479.676 -13.6615 -479.676 -14.7598  c
+-479.676 -15.8900 -479.377 -16.8105 -478.780 -17.5215  c
+-478.183 -18.2324 -477.411 -18.5879 -476.463 -18.5879  c
+-475.633 -18.5879 -474.920 -18.2507 -474.323 -17.5762  c
+-474.323 -18.4238 l
+-472.970 -18.4238 l
+-472.970 -13.0234 l
+-472.970 -11.8613 -473.030 -11.0011 -473.151 -10.4429  c
+-473.272 -9.88460 -473.498 -9.42773 -473.831 -9.07227  c
+-474.419 -8.44792 -475.333 -8.13574 -476.572 -8.13574  c
+-477.438 -8.13574 -478.268 -8.26790 -479.061 -8.53223  c
+h
+-474.323 -13.5703 m
+-474.323 -16.6533 l
+-474.916 -17.2686 -475.561 -17.5762 -476.258 -17.5762  c
+-476.878 -17.5762 -477.363 -17.3278 -477.714 -16.8311  c
+-478.065 -16.3343 -478.240 -15.6530 -478.240 -14.7871  c
+-478.240 -13.1602 -477.668 -12.3467 -476.524 -12.3467  c
+-475.745 -12.3467 -475.011 -12.7546 -474.323 -13.5703  c
+h
+f
+newpath
+-50.6533 -88.0000 m
+-50.6533 -95.4238 l
+-49.3066 -95.4238 l
+-49.3066 -94.0293 l
+-48.7734 -95.0684 -47.9987 -95.5879 -46.9824 -95.5879  c
+-46.8457 -95.5879 -46.7021 -95.5765 -46.5518 -95.5537  c
+-46.5518 -94.2959 l
+-46.7842 -94.3734 -46.9893 -94.4121 -47.1670 -94.4121  c
+-48.0192 -94.4121 -48.7324 -93.9062 -49.3066 -92.8945  c
+-49.3066 -88.0000 l
+h
+-42.0195 -87.8291 m
+-43.0814 -87.8291 -43.9290 -88.1812 -44.5625 -88.8853  c
+-45.1960 -89.5894 -45.5127 -90.5316 -45.5127 -91.7119  c
+-45.5127 -92.9059 -45.1948 -93.8504 -44.5591 -94.5454  c
+-43.9233 -95.2404 -43.0609 -95.5879 -41.9717 -95.5879  c
+-40.8825 -95.5879 -40.0200 -95.2404 -39.3843 -94.5454  c
+-38.7485 -93.8504 -38.4307 -92.9105 -38.4307 -91.7256  c
+-38.4307 -90.5133 -38.7497 -89.5609 -39.3877 -88.8682  c
+-40.0257 -88.1755 -40.9030 -87.8291 -42.0195 -87.8291  c
+h
+-41.9990 -88.8408 m
+-40.5726 -88.8408 -39.8594 -89.8024 -39.8594 -91.7256  c
+-39.8594 -93.6260 -40.5635 -94.5762 -41.9717 -94.5762  c
+-43.3753 -94.5762 -44.0771 -93.6214 -44.0771 -91.7119  c
+-44.0771 -89.7979 -43.3844 -88.8408 -41.9990 -88.8408  c
+h
+-31.5605 -88.0000 m
+-31.5605 -89.3945 l
+-32.1074 -88.3509 -32.9323 -87.8291 -34.0352 -87.8291  c
+-34.9284 -87.8291 -35.6313 -88.1549 -36.1440 -88.8066  c
+-36.6567 -89.4583 -36.9131 -90.3493 -36.9131 -91.4795  c
+-36.9131 -92.7145 -36.6226 -93.7080 -36.0415 -94.4600  c
+-35.4604 -95.2119 -34.6960 -95.5879 -33.7480 -95.5879  c
+-32.8685 -95.5879 -32.1393 -95.2507 -31.5605 -94.5762  c
+-31.5605 -98.7939 l
+-30.2070 -98.7939 l
+-30.2070 -88.0000 l
+h
+-31.5605 -93.6533 m
+-32.2578 -94.2686 -32.9186 -94.5762 -33.5430 -94.5762  c
+-34.8327 -94.5762 -35.4775 -93.5895 -35.4775 -91.6162  c
+-35.4775 -89.8799 -34.9033 -89.0117 -33.7549 -89.0117  c
+-33.0075 -89.0117 -32.2760 -89.4196 -31.5605 -90.2354  c
+h
+-26.7549 -88.0000 m
+-26.7549 -89.0117 l
+-24.7314 -89.0117 l
+-24.7314 -96.9961 l
+-26.7549 -96.4902 l
+-26.7549 -97.5293 l
+-23.3779 -98.3701 l
+-23.3779 -89.0117 l
+-21.3545 -89.0117 l
+-21.3545 -88.0000 l
+h
+f
+.258824 .658824 .282353 RG
+newpath
+-132.425 22.1709 m
+-133.108 22.1709 -133.642 21.9749 -134.024 21.5830  c
+-134.407 21.1911 -134.599 20.6465 -134.599 19.9492  c
+-134.599 15.5879 l
+-135.528 15.5879 l
+-135.528 14.5762 l
+-134.599 14.5762 l
+-134.599 13.2295 l
+-133.252 13.0996 l
+-133.252 14.5762 l
+-131.311 14.5762 l
+-131.311 15.5879 l
+-133.252 15.5879 l
+-133.252 19.7031 l
+-133.252 20.6738 -132.833 21.1592 -131.994 21.1592  c
+-131.816 21.1592 -131.600 21.1296 -131.345 21.0703  c
+-131.345 22.0000 l
+-131.759 22.1139 -132.119 22.1709 -132.425 22.1709  c
+h
+-124.816 22.0000 m
+-116.723 17.9531 l
+-124.816 13.9062 l
+-124.816 15.0342 l
+-118.985 17.9531 l
+-124.816 20.8652 l
+h
+-113.688 19.7236 m
+-113.688 18.7119 l
+-105.594 18.7119 l
+-105.594 19.7236 l
+h
+-113.688 17.1943 m
+-113.688 16.1826 l
+-105.594 16.1826 l
+-105.594 17.1943 l
+h
+-97.5410 22.0000 m
+-97.5410 20.9883 l
+-95.5176 20.9883 l
+-95.5176 13.0039 l
+-97.5410 13.5098 l
+-97.5410 12.4707 l
+-94.1641 11.6299 l
+-94.1641 20.9883 l
+-92.1406 20.9883 l
+-92.1406 22.0000 l
+h
+-88.6885 22.0000 m
+-88.6885 20.9883 l
+-86.6650 20.9883 l
+-86.6650 13.0039 l
+-88.6885 13.5098 l
+-88.6885 12.4707 l
+-85.3115 11.6299 l
+-85.3115 20.9883 l
+-83.2881 20.9883 l
+-83.2881 22.0000 l
+h
+-77.5527 22.2529 m
+-78.5964 22.2529 -79.4406 21.7619 -80.0854 20.7798  c
+-80.7303 19.7977 -81.0527 18.5160 -81.0527 16.9346  c
+-81.0527 15.3395 -80.7280 14.0566 -80.0786 13.0859  c
+-79.4292 12.1152 -78.5736 11.6299 -77.5117 11.6299  c
+-76.4499 11.6299 -75.5942 12.1152 -74.9448 13.0859  c
+-74.2954 14.0566 -73.9707 15.3327 -73.9707 16.9141  c
+-73.9707 18.5365 -74.2954 19.8319 -74.9448 20.8003  c
+-75.5942 21.7687 -76.4635 22.2529 -77.5527 22.2529  c
+h
+-77.5391 21.2412 m
+-76.1126 21.2412 -75.3994 19.7920 -75.3994 16.8936  c
+-75.3994 14.0589 -76.1035 12.6416 -77.5117 12.6416  c
+-78.9154 12.6416 -79.6172 14.0726 -79.6172 16.9346  c
+-79.6172 19.8057 -78.9245 21.2412 -77.5391 21.2412  c
+h
+-61.4062 22.0000 m
+-61.9053 21.3984 l
+-62.6527 21.9681 -63.5254 22.2529 -64.5234 22.2529  c
+-65.5807 22.2529 -66.4500 21.9465 -67.1313 21.3335  c
+-67.8127 20.7205 -68.1533 19.9401 -68.1533 18.9922  c
+-68.1533 17.4336 -67.3307 16.3763 -65.6855 15.8203  c
+-66.1413 14.9954 -66.3691 14.3096 -66.3691 13.7627  c
+-66.3691 13.1657 -66.1310 12.6610 -65.6548 12.2485  c
+-65.1785 11.8361 -64.6009 11.6299 -63.9219 11.6299  c
+-63.2656 11.6299 -62.7244 11.8224 -62.2983 12.2075  c
+-61.8722 12.5926 -61.6592 13.0814 -61.6592 13.6738  c
+-61.6592 14.6855 -62.3997 15.5651 -63.8809 16.3125  c
+-63.2018 17.5156 -62.4111 18.6390 -61.5088 19.6826  c
+-61.0941 19.0811 -60.8867 18.2288 -60.8867 17.1260  c
+-60.8936 16.6201 l
+-59.5537 16.6201 l
+-59.5537 18.1149 -60.0003 19.4046 -60.8936 20.4893  c
+-60.4834 21.0088 -60.0163 21.5124 -59.4922 22.0000  c
+h
+-62.4932 20.6191 m
+-63.4502 19.4434 -64.3617 18.1104 -65.2275 16.6201  c
+-66.2803 17.0394 -66.8066 17.7207 -66.8066 18.6641  c
+-66.8066 19.3796 -66.5640 19.9880 -66.0786 20.4893  c
+-65.5933 20.9906 -65.0020 21.2412 -64.3047 21.2412  c
+-63.6712 21.2412 -63.0674 21.0339 -62.4932 20.6191  c
+h
+-64.3730 15.4580 m
+-63.4069 15.0160 -62.9238 14.4281 -62.9238 13.6943  c
+-62.9238 12.9925 -63.2747 12.6416 -63.9766 12.6416  c
+-64.6693 12.6416 -65.0156 12.9948 -65.0156 13.7012  c
+-65.0156 14.1660 -64.8014 14.7516 -64.3730 15.4580  c
+h
+-51.6445 22.0000 m
+-52.1436 21.3984 l
+-52.8910 21.9681 -53.7637 22.2529 -54.7617 22.2529  c
+-55.8190 22.2529 -56.6883 21.9465 -57.3696 21.3335  c
+-58.0509 20.7205 -58.3916 19.9401 -58.3916 18.9922  c
+-58.3916 17.4336 -57.5690 16.3763 -55.9238 15.8203  c
+-56.3796 14.9954 -56.6074 14.3096 -56.6074 13.7627  c
+-56.6074 13.1657 -56.3693 12.6610 -55.8931 12.2485  c
+-55.4168 11.8361 -54.8392 11.6299 -54.1602 11.6299  c
+-53.5039 11.6299 -52.9627 11.8224 -52.5366 12.2075  c
+-52.1105 12.5926 -51.8975 13.0814 -51.8975 13.6738  c
+-51.8975 14.6855 -52.6380 15.5651 -54.1191 16.3125  c
+-53.4401 17.5156 -52.6494 18.6390 -51.7471 19.6826  c
+-51.3324 19.0811 -51.1250 18.2288 -51.1250 17.1260  c
+-51.1318 16.6201 l
+-49.7920 16.6201 l
+-49.7920 18.1149 -50.2386 19.4046 -51.1318 20.4893  c
+-50.7217 21.0088 -50.2546 21.5124 -49.7305 22.0000  c
+h
+-52.7314 20.6191 m
+-53.6885 19.4434 -54.5999 18.1104 -55.4658 16.6201  c
+-56.5186 17.0394 -57.0449 17.7207 -57.0449 18.6641  c
+-57.0449 19.3796 -56.8022 19.9880 -56.3169 20.4893  c
+-55.8315 20.9906 -55.2402 21.2412 -54.5430 21.2412  c
+-53.9095 21.2412 -53.3057 21.0339 -52.7314 20.6191  c
+h
+-54.6113 15.4580 m
+-53.6452 15.0160 -53.1621 14.4281 -53.1621 13.6943  c
+-53.1621 12.9925 -53.5130 12.6416 -54.2148 12.6416  c
+-54.9076 12.6416 -55.2539 12.9948 -55.2539 13.7012  c
+-55.2539 14.1660 -55.0397 14.7516 -54.6113 15.4580  c
+h
+-43.3594 22.0000 m
+-43.3594 14.5762 l
+-42.0127 14.5762 l
+-42.0127 15.9707 l
+-41.4795 14.9316 -40.7048 14.4121 -39.6885 14.4121  c
+-39.5518 14.4121 -39.4082 14.4235 -39.2578 14.4463  c
+-39.2578 15.7041 l
+-39.4902 15.6266 -39.6953 15.5879 -39.8730 15.5879  c
+-40.7253 15.5879 -41.4385 16.0938 -42.0127 17.1055  c
+-42.0127 22.0000 l
+h
+-37.8154 22.0000 m
+-37.8154 20.8174 l
+-37.4235 19.9014 -36.6305 18.9033 -35.4365 17.8232  c
+-34.6641 17.1328 l
+-33.6706 16.2350 -33.1738 15.3441 -33.1738 14.4600  c
+-33.1738 13.8949 -33.3436 13.4505 -33.6831 13.1270  c
+-34.0226 12.8034 -34.4886 12.6416 -35.0811 12.6416  c
+-35.7829 12.6416 -36.6100 12.9128 -37.5625 13.4551  c
+-37.5625 12.2656 l
+-36.6647 11.8418 -35.7738 11.6299 -34.8896 11.6299  c
+-33.9417 11.6299 -33.1807 11.8851 -32.6064 12.3955  c
+-32.0322 12.9059 -31.7451 13.5827 -31.7451 14.4258  c
+-31.7451 15.0319 -31.8898 15.5697 -32.1792 16.0391  c
+-32.4686 16.5085 -33.0075 17.0781 -33.7959 17.7480  c
+-34.3154 18.1924 l
+-35.3955 19.1084 -36.0199 19.9834 -36.1885 20.8174  c
+-31.7930 20.8174 l
+-31.7930 22.0000 l
+h
+-24.1777 22.0000 m
+-16.0840 17.9531 l
+-24.1777 13.9062 l
+-24.1777 15.0342 l
+-18.3467 17.9531 l
+-24.1777 20.8652 l
+h
+-8.97461 22.0000 m
+-8.97461 20.8174 l
+-8.58268 19.9014 -7.78971 18.9033 -6.59570 17.8232  c
+-5.82324 17.1328 l
+-4.82975 16.2350 -4.33301 15.3441 -4.33301 14.4600  c
+-4.33301 13.8949 -4.50277 13.4505 -4.84229 13.1270  c
+-5.18180 12.8034 -5.64779 12.6416 -6.24023 12.6416  c
+-6.94206 12.6416 -7.76921 12.9128 -8.72168 13.4551  c
+-8.72168 12.2656 l
+-7.82389 11.8418 -6.93294 11.6299 -6.04883 11.6299  c
+-5.10091 11.6299 -4.33984 11.8851 -3.76562 12.3955  c
+-3.19141 12.9059 -2.90430 13.5827 -2.90430 14.4258  c
+-2.90430 15.0319 -3.04899 15.5697 -3.33838 16.0391  c
+-3.62777 16.5085 -4.16667 17.0781 -4.95508 17.7480  c
+-5.47461 18.1924 l
+-6.55469 19.1084 -7.17904 19.9834 -7.34766 20.8174  c
+-2.95215 20.8174 l
+-2.95215 22.0000 l
+h
+3.10449 22.2529 m
+2.06087 22.2529 1.21663 21.7619 .571777 20.7798  c
+-.0730794 19.7977 -.395508 18.5160 -.395508 16.9346  c
+-.395508 15.3395 -.0708008 14.0566 .578613 13.0859  c
+1.22803 12.1152 2.08366 11.6299 3.14551 11.6299  c
+4.20736 11.6299 5.06299 12.1152 5.71240 13.0859  c
+6.36182 14.0566 6.68652 15.3327 6.68652 16.9141  c
+6.68652 18.5365 6.36182 19.8319 5.71240 20.8003  c
+5.06299 21.7687 4.19368 22.2529 3.10449 22.2529  c
+h
+3.11816 21.2412 m
+4.54460 21.2412 5.25781 19.7920 5.25781 16.8936  c
+5.25781 14.0589 4.55371 12.6416 3.14551 12.6416  c
+1.74186 12.6416 1.04004 14.0726 1.04004 16.9346  c
+1.04004 19.8057 1.73275 21.2412 3.11816 21.2412  c
+h
+f
+newpath
+-156.425 -163.829 m
+-157.108 -163.829 -157.642 -164.025 -158.024 -164.417  c
+-158.407 -164.809 -158.599 -165.354 -158.599 -166.051  c
+-158.599 -170.412 l
+-159.528 -170.412 l
+-159.528 -171.424 l
+-158.599 -171.424 l
+-158.599 -172.771 l
+-157.252 -172.900 l
+-157.252 -171.424 l
+-155.311 -171.424 l
+-155.311 -170.412 l
+-157.252 -170.412 l
+-157.252 -166.297 l
+-157.252 -165.326 -156.833 -164.841 -155.994 -164.841  c
+-155.816 -164.841 -155.600 -164.870 -155.345 -164.930  c
+-155.345 -164.000 l
+-155.759 -163.886 -156.119 -163.829 -156.425 -163.829  c
+h
+-148.816 -164.000 m
+-140.723 -168.047 l
+-148.816 -172.094 l
+-148.816 -170.966 l
+-142.985 -168.047 l
+-148.816 -165.135 l
+h
+-137.688 -166.276 m
+-137.688 -167.288 l
+-129.594 -167.288 l
+-129.594 -166.276 l
+h
+-137.688 -168.806 m
+-137.688 -169.817 l
+-129.594 -169.817 l
+-129.594 -168.806 l
+h
+-121.541 -164.000 m
+-121.541 -165.012 l
+-119.518 -165.012 l
+-119.518 -172.996 l
+-121.541 -172.490 l
+-121.541 -173.529 l
+-118.164 -174.370 l
+-118.164 -165.012 l
+-116.141 -165.012 l
+-116.141 -164.000 l
+h
+-110.405 -163.747 m
+-111.449 -163.747 -112.293 -164.238 -112.938 -165.220  c
+-113.583 -166.202 -113.905 -167.484 -113.905 -169.065  c
+-113.905 -170.660 -113.581 -171.943 -112.931 -172.914  c
+-112.282 -173.885 -111.426 -174.370 -110.364 -174.370  c
+-109.302 -174.370 -108.447 -173.885 -107.797 -172.914  c
+-107.148 -171.943 -106.823 -170.667 -106.823 -169.086  c
+-106.823 -167.464 -107.148 -166.168 -107.797 -165.200  c
+-108.447 -164.231 -109.316 -163.747 -110.405 -163.747  c
+h
+-110.392 -164.759 m
+-108.965 -164.759 -108.252 -166.208 -108.252 -169.106  c
+-108.252 -171.941 -108.956 -173.358 -110.364 -173.358  c
+-111.768 -173.358 -112.470 -171.927 -112.470 -169.065  c
+-112.470 -166.194 -111.777 -164.759 -110.392 -164.759  c
+h
+-104.779 -164.000 m
+-104.779 -165.183 l
+-104.387 -166.099 -103.594 -167.097 -102.400 -168.177  c
+-101.628 -168.867 l
+-100.634 -169.765 -100.138 -170.656 -100.138 -171.540  c
+-100.138 -172.105 -100.307 -172.549 -100.647 -172.873  c
+-100.986 -173.197 -101.452 -173.358 -102.045 -173.358  c
+-102.747 -173.358 -103.574 -173.087 -104.526 -172.545  c
+-104.526 -173.734 l
+-103.629 -174.158 -102.738 -174.370 -101.854 -174.370  c
+-100.906 -174.370 -100.145 -174.115 -99.5703 -173.604  c
+-98.9961 -173.094 -98.7090 -172.417 -98.7090 -171.574  c
+-98.7090 -170.968 -98.8537 -170.430 -99.1431 -169.961  c
+-99.4325 -169.492 -99.9714 -168.922 -100.760 -168.252  c
+-101.279 -167.808 l
+-102.359 -166.892 -102.984 -166.017 -103.152 -165.183  c
+-98.7568 -165.183 l
+-98.7568 -164.000 l
+h
+-85.4062 -164.000 m
+-85.9053 -164.602 l
+-86.6527 -164.032 -87.5254 -163.747 -88.5234 -163.747  c
+-89.5807 -163.747 -90.4500 -164.054 -91.1313 -164.667  c
+-91.8127 -165.279 -92.1533 -166.060 -92.1533 -167.008  c
+-92.1533 -168.566 -91.3307 -169.624 -89.6855 -170.180  c
+-90.1413 -171.005 -90.3691 -171.690 -90.3691 -172.237  c
+-90.3691 -172.834 -90.1310 -173.339 -89.6548 -173.751  c
+-89.1785 -174.164 -88.6009 -174.370 -87.9219 -174.370  c
+-87.2656 -174.370 -86.7244 -174.178 -86.2983 -173.792  c
+-85.8722 -173.407 -85.6592 -172.919 -85.6592 -172.326  c
+-85.6592 -171.314 -86.3997 -170.435 -87.8809 -169.688  c
+-87.2018 -168.484 -86.4111 -167.361 -85.5088 -166.317  c
+-85.0941 -166.919 -84.8867 -167.771 -84.8867 -168.874  c
+-84.8936 -169.380 l
+-83.5537 -169.380 l
+-83.5537 -167.885 -84.0003 -166.595 -84.8936 -165.511  c
+-84.4834 -164.991 -84.0163 -164.488 -83.4922 -164.000  c
+h
+-86.4932 -165.381 m
+-87.4502 -166.557 -88.3617 -167.890 -89.2275 -169.380  c
+-90.2803 -168.961 -90.8066 -168.279 -90.8066 -167.336  c
+-90.8066 -166.620 -90.5640 -166.012 -90.0786 -165.511  c
+-89.5933 -165.009 -89.0020 -164.759 -88.3047 -164.759  c
+-87.6712 -164.759 -87.0674 -164.966 -86.4932 -165.381  c
+h
+-88.3730 -170.542 m
+-87.4069 -170.984 -86.9238 -171.572 -86.9238 -172.306  c
+-86.9238 -173.007 -87.2747 -173.358 -87.9766 -173.358  c
+-88.6693 -173.358 -89.0156 -173.005 -89.0156 -172.299  c
+-89.0156 -171.834 -88.8014 -171.248 -88.3730 -170.542  c
+h
+-75.6445 -164.000 m
+-76.1436 -164.602 l
+-76.8910 -164.032 -77.7637 -163.747 -78.7617 -163.747  c
+-79.8190 -163.747 -80.6883 -164.054 -81.3696 -164.667  c
+-82.0509 -165.279 -82.3916 -166.060 -82.3916 -167.008  c
+-82.3916 -168.566 -81.5690 -169.624 -79.9238 -170.180  c
+-80.3796 -171.005 -80.6074 -171.690 -80.6074 -172.237  c
+-80.6074 -172.834 -80.3693 -173.339 -79.8931 -173.751  c
+-79.4168 -174.164 -78.8392 -174.370 -78.1602 -174.370  c
+-77.5039 -174.370 -76.9627 -174.178 -76.5366 -173.792  c
+-76.1105 -173.407 -75.8975 -172.919 -75.8975 -172.326  c
+-75.8975 -171.314 -76.6380 -170.435 -78.1191 -169.688  c
+-77.4401 -168.484 -76.6494 -167.361 -75.7471 -166.317  c
+-75.3324 -166.919 -75.1250 -167.771 -75.1250 -168.874  c
+-75.1318 -169.380 l
+-73.7920 -169.380 l
+-73.7920 -167.885 -74.2386 -166.595 -75.1318 -165.511  c
+-74.7217 -164.991 -74.2546 -164.488 -73.7305 -164.000  c
+h
+-76.7314 -165.381 m
+-77.6885 -166.557 -78.5999 -167.890 -79.4658 -169.380  c
+-80.5186 -168.961 -81.0449 -168.279 -81.0449 -167.336  c
+-81.0449 -166.620 -80.8022 -166.012 -80.3169 -165.511  c
+-79.8315 -165.009 -79.2402 -164.759 -78.5430 -164.759  c
+-77.9095 -164.759 -77.3057 -164.966 -76.7314 -165.381  c
+h
+-78.6113 -170.542 m
+-77.6452 -170.984 -77.1621 -171.572 -77.1621 -172.306  c
+-77.1621 -173.007 -77.5130 -173.358 -78.2148 -173.358  c
+-78.9076 -173.358 -79.2539 -173.005 -79.2539 -172.299  c
+-79.2539 -171.834 -79.0397 -171.248 -78.6113 -170.542  c
+h
+-65.1309 -163.829 m
+-65.8145 -163.829 -66.3477 -164.025 -66.7305 -164.417  c
+-67.1133 -164.809 -67.3047 -165.354 -67.3047 -166.051  c
+-67.3047 -170.412 l
+-68.2344 -170.412 l
+-68.2344 -171.424 l
+-67.3047 -171.424 l
+-67.3047 -172.771 l
+-65.9580 -172.900 l
+-65.9580 -171.424 l
+-64.0166 -171.424 l
+-64.0166 -170.412 l
+-65.9580 -170.412 l
+-65.9580 -166.297 l
+-65.9580 -165.326 -65.5387 -164.841 -64.7002 -164.841  c
+-64.5225 -164.841 -64.3060 -164.870 -64.0508 -164.930  c
+-64.0508 -164.000 l
+-64.4655 -163.886 -64.8255 -163.829 -65.1309 -163.829  c
+h
+-49.4287 -164.000 m
+-57.5225 -168.047 l
+-49.4287 -172.094 l
+-49.4287 -170.966 l
+-55.2598 -168.047 l
+-49.4287 -165.135 l
+h
+-46.3936 -166.276 m
+-46.3936 -167.288 l
+-38.2998 -167.288 l
+-38.2998 -166.276 l
+h
+-46.3936 -168.806 m
+-46.3936 -169.817 l
+-38.2998 -169.817 l
+-38.2998 -168.806 l
+h
+-30.2471 -164.000 m
+-30.2471 -165.012 l
+-28.2236 -165.012 l
+-28.2236 -172.996 l
+-30.2471 -172.490 l
+-30.2471 -173.529 l
+-26.8701 -174.370 l
+-26.8701 -165.012 l
+-24.8467 -165.012 l
+-24.8467 -164.000 l
+h
+-19.1113 -163.747 m
+-20.1549 -163.747 -20.9992 -164.238 -21.6440 -165.220  c
+-22.2889 -166.202 -22.6113 -167.484 -22.6113 -169.065  c
+-22.6113 -170.660 -22.2866 -171.943 -21.6372 -172.914  c
+-20.9878 -173.885 -20.1322 -174.370 -19.0703 -174.370  c
+-18.0085 -174.370 -17.1528 -173.885 -16.5034 -172.914  c
+-15.8540 -171.943 -15.5293 -170.667 -15.5293 -169.086  c
+-15.5293 -167.464 -15.8540 -166.168 -16.5034 -165.200  c
+-17.1528 -164.231 -18.0221 -163.747 -19.1113 -163.747  c
+h
+-19.0977 -164.759 m
+-17.6712 -164.759 -16.9580 -166.208 -16.9580 -169.106  c
+-16.9580 -171.941 -17.6621 -173.358 -19.0703 -173.358  c
+-20.4740 -173.358 -21.1758 -171.927 -21.1758 -169.065  c
+-21.1758 -166.194 -20.4831 -164.759 -19.0977 -164.759  c
+h
+-12.9453 -163.959 m
+-12.9453 -165.162 l
+-12.2754 -164.893 -11.6374 -164.759 -11.0312 -164.759  c
+-10.3659 -164.759 -9.84294 -164.955 -9.46240 -165.347  c
+-9.08187 -165.739 -8.89160 -166.279 -8.89160 -166.967  c
+-8.89160 -168.484 -9.93750 -169.243 -12.0293 -169.243  c
+-12.2663 -169.243 -12.5146 -169.227 -12.7744 -169.195  c
+-12.7744 -174.117 l
+-7.65430 -174.117 l
+-7.65430 -172.941 l
+-11.5918 -172.941 l
+-11.5918 -170.275 l
+-10.2930 -170.275 -9.27897 -169.977 -8.54980 -169.380  c
+-7.82064 -168.783 -7.45605 -167.956 -7.45605 -166.898  c
+-7.45605 -165.914 -7.78760 -165.143 -8.45068 -164.584  c
+-9.11377 -164.026 -10.0332 -163.747 -11.2090 -163.747  c
+-11.7194 -163.747 -12.2982 -163.818 -12.9453 -163.959  c
+h
+f
+.549020 .219608 .388235 RG
+newpath
+-380.712 -172.747 m
+-381.391 -172.747 -382.259 -172.895 -383.316 -173.191  c
+-383.316 -174.613 l
+-382.177 -174.085 -381.241 -173.820 -380.507 -173.820  c
+-379.942 -173.820 -379.487 -173.968 -379.143 -174.265  c
+-378.799 -174.561 -378.627 -174.951 -378.627 -175.434  c
+-378.627 -175.830 -378.740 -176.167 -378.965 -176.445  c
+-379.191 -176.723 -379.607 -177.033 -380.213 -177.375  c
+-380.910 -177.778 l
+-381.771 -178.271 -382.379 -178.734 -382.732 -179.169  c
+-383.085 -179.605 -383.262 -180.112 -383.262 -180.690  c
+-383.262 -181.470 -382.979 -182.111 -382.414 -182.615  c
+-381.849 -183.118 -381.129 -183.370 -380.254 -183.370  c
+-379.475 -183.370 -378.652 -183.240 -377.786 -182.980  c
+-377.786 -181.668 l
+-378.853 -182.087 -379.648 -182.297 -380.172 -182.297  c
+-380.669 -182.297 -381.079 -182.165 -381.402 -181.900  c
+-381.726 -181.636 -381.888 -181.303 -381.888 -180.902  c
+-381.888 -180.565 -381.769 -180.267 -381.532 -180.007  c
+-381.295 -179.747 -380.862 -179.437 -380.233 -179.077  c
+-379.509 -178.667 l
+-378.634 -178.170 -378.023 -177.701 -377.677 -177.259  c
+-377.330 -176.817 -377.157 -176.286 -377.157 -175.666  c
+-377.157 -174.786 -377.482 -174.080 -378.131 -173.547  c
+-378.781 -173.014 -379.641 -172.747 -380.712 -172.747  c
+h
+-372.885 -172.829 m
+-373.568 -172.829 -374.102 -173.025 -374.484 -173.417  c
+-374.867 -173.809 -375.059 -174.354 -375.059 -175.051  c
+-375.059 -179.412 l
+-375.988 -179.412 l
+-375.988 -180.424 l
+-375.059 -180.424 l
+-375.059 -181.771 l
+-373.712 -181.900 l
+-373.712 -180.424 l
+-371.771 -180.424 l
+-371.771 -179.412 l
+-373.712 -179.412 l
+-373.712 -175.297 l
+-373.712 -174.326 -373.293 -173.841 -372.454 -173.841  c
+-372.276 -173.841 -372.060 -173.870 -371.805 -173.930  c
+-371.805 -173.000 l
+-372.219 -172.886 -372.579 -172.829 -372.885 -172.829  c
+h
+-366.049 -173.943 m
+-366.855 -173.201 -367.632 -172.829 -368.380 -172.829  c
+-368.995 -172.829 -369.506 -173.022 -369.911 -173.407  c
+-370.317 -173.792 -370.520 -174.278 -370.520 -174.866  c
+-370.520 -175.677 -370.179 -176.301 -369.498 -176.736  c
+-368.816 -177.171 -367.840 -177.389 -366.568 -177.389  c
+-366.247 -177.389 l
+-366.247 -178.284 l
+-366.247 -179.146 -366.689 -179.576 -367.573 -179.576  c
+-368.284 -179.576 -369.052 -179.357 -369.877 -178.920  c
+-369.877 -180.034 l
+-368.970 -180.403 -368.120 -180.588 -367.327 -180.588  c
+-366.498 -180.588 -365.886 -180.401 -365.492 -180.027  c
+-365.097 -179.654 -364.900 -179.073 -364.900 -178.284  c
+-364.900 -174.921 l
+-364.900 -174.151 -364.663 -173.766 -364.189 -173.766  c
+-364.130 -173.766 -364.044 -173.775 -363.930 -173.793  c
+-363.834 -173.048 l
+-364.139 -172.902 -364.477 -172.829 -364.846 -172.829  c
+-365.475 -172.829 -365.876 -173.201 -366.049 -173.943  c
+h
+-366.247 -174.675 m
+-366.247 -176.596 l
+-366.698 -176.609 l
+-367.437 -176.609 -368.034 -176.469 -368.489 -176.189  c
+-368.945 -175.909 -369.173 -175.541 -369.173 -175.085  c
+-369.173 -174.761 -369.059 -174.488 -368.831 -174.265  c
+-368.603 -174.041 -368.325 -173.930 -367.997 -173.930  c
+-367.437 -173.930 -366.853 -174.178 -366.247 -174.675  c
+h
+-362.146 -173.000 m
+-362.146 -180.424 l
+-360.799 -180.424 l
+-360.799 -179.029 l
+-360.266 -180.068 -359.491 -180.588 -358.475 -180.588  c
+-358.338 -180.588 -358.194 -180.576 -358.044 -180.554  c
+-358.044 -179.296 l
+-358.276 -179.373 -358.481 -179.412 -358.659 -179.412  c
+-359.511 -179.412 -360.225 -178.906 -360.799 -177.895  c
+-360.799 -173.000 l
+h
+-354.188 -172.829 m
+-354.872 -172.829 -355.405 -173.025 -355.788 -173.417  c
+-356.171 -173.809 -356.362 -174.354 -356.362 -175.051  c
+-356.362 -179.412 l
+-357.292 -179.412 l
+-357.292 -180.424 l
+-356.362 -180.424 l
+-356.362 -181.771 l
+-355.016 -181.900 l
+-355.016 -180.424 l
+-353.074 -180.424 l
+-353.074 -179.412 l
+-355.016 -179.412 l
+-355.016 -175.297 l
+-355.016 -174.326 -354.596 -173.841 -353.758 -173.841  c
+-353.580 -173.841 -353.364 -173.870 -353.108 -173.930  c
+-353.108 -173.000 l
+-353.523 -172.886 -353.883 -172.829 -354.188 -172.829  c
+h
+f
+.258824 .658824 .282353 RG
+newpath
+-132.425 -2.82910 m
+-133.108 -2.82910 -133.642 -3.02507 -134.024 -3.41699  c
+-134.407 -3.80892 -134.599 -4.35352 -134.599 -5.05078  c
+-134.599 -9.41211 l
+-135.528 -9.41211 l
+-135.528 -10.4238 l
+-134.599 -10.4238 l
+-134.599 -11.7705 l
+-133.252 -11.9004 l
+-133.252 -10.4238 l
+-131.311 -10.4238 l
+-131.311 -9.41211 l
+-133.252 -9.41211 l
+-133.252 -5.29688 l
+-133.252 -4.32617 -132.833 -3.84082 -131.994 -3.84082  c
+-131.816 -3.84082 -131.600 -3.87044 -131.345 -3.92969  c
+-131.345 -3.00000 l
+-131.759 -2.88607 -132.119 -2.82910 -132.425 -2.82910  c
+h
+-124.816 -3.00000 m
+-116.723 -7.04688 l
+-124.816 -11.0938 l
+-124.816 -9.96582 l
+-118.985 -7.04688 l
+-124.816 -4.13477 l
+h
+-113.688 -5.27637 m
+-113.688 -6.28809 l
+-105.594 -6.28809 l
+-105.594 -5.27637 l
+h
+-113.688 -7.80566 m
+-113.688 -8.81738 l
+-105.594 -8.81738 l
+-105.594 -7.80566 l
+h
+-97.5410 -3.00000 m
+-97.5410 -4.01172 l
+-95.5176 -4.01172 l
+-95.5176 -11.9961 l
+-97.5410 -11.4902 l
+-97.5410 -12.5293 l
+-94.1641 -13.3701 l
+-94.1641 -4.01172 l
+-92.1406 -4.01172 l
+-92.1406 -3.00000 l
+h
+-88.6885 -3.00000 m
+-88.6885 -4.01172 l
+-86.6650 -4.01172 l
+-86.6650 -11.9961 l
+-88.6885 -11.4902 l
+-88.6885 -12.5293 l
+-85.3115 -13.3701 l
+-85.3115 -4.01172 l
+-83.2881 -4.01172 l
+-83.2881 -3.00000 l
+h
+-77.5527 -2.74707 m
+-78.5964 -2.74707 -79.4406 -3.23812 -80.0854 -4.22021  c
+-80.7303 -5.20231 -81.0527 -6.48405 -81.0527 -8.06543  c
+-81.0527 -9.66048 -80.7280 -10.9434 -80.0786 -11.9141  c
+-79.4292 -12.8848 -78.5736 -13.3701 -77.5117 -13.3701  c
+-76.4499 -13.3701 -75.5942 -12.8848 -74.9448 -11.9141  c
+-74.2954 -10.9434 -73.9707 -9.66732 -73.9707 -8.08594  c
+-73.9707 -6.46354 -74.2954 -5.16813 -74.9448 -4.19971  c
+-75.5942 -3.23128 -76.4635 -2.74707 -77.5527 -2.74707  c
+h
+-77.5391 -3.75879 m
+-76.1126 -3.75879 -75.3994 -5.20801 -75.3994 -8.10645  c
+-75.3994 -10.9411 -76.1035 -12.3584 -77.5117 -12.3584  c
+-78.9154 -12.3584 -79.6172 -10.9274 -79.6172 -8.06543  c
+-79.6172 -5.19434 -78.9245 -3.75879 -77.5391 -3.75879  c
+h
+-61.4062 -3.00000 m
+-61.9053 -3.60156 l
+-62.6527 -3.03190 -63.5254 -2.74707 -64.5234 -2.74707  c
+-65.5807 -2.74707 -66.4500 -3.05355 -67.1313 -3.66650  c
+-67.8127 -4.27946 -68.1533 -5.05990 -68.1533 -6.00781  c
+-68.1533 -7.56641 -67.3307 -8.62370 -65.6855 -9.17969  c
+-66.1413 -10.0046 -66.3691 -10.6904 -66.3691 -11.2373  c
+-66.3691 -11.8343 -66.1310 -12.3390 -65.6548 -12.7515  c
+-65.1785 -13.1639 -64.6009 -13.3701 -63.9219 -13.3701  c
+-63.2656 -13.3701 -62.7244 -13.1776 -62.2983 -12.7925  c
+-61.8722 -12.4074 -61.6592 -11.9186 -61.6592 -11.3262  c
+-61.6592 -10.3145 -62.3997 -9.43490 -63.8809 -8.68750  c
+-63.2018 -7.48438 -62.4111 -6.36100 -61.5088 -5.31738  c
+-61.0941 -5.91895 -60.8867 -6.77116 -60.8867 -7.87402  c
+-60.8936 -8.37988 l
+-59.5537 -8.37988 l
+-59.5537 -6.88509 -60.0003 -5.59538 -60.8936 -4.51074  c
+-60.4834 -3.99121 -60.0163 -3.48763 -59.4922 -3.00000  c
+h
+-62.4932 -4.38086 m
+-63.4502 -5.55664 -64.3617 -6.88965 -65.2275 -8.37988  c
+-66.2803 -7.96061 -66.8066 -7.27930 -66.8066 -6.33594  c
+-66.8066 -5.62044 -66.5640 -5.01204 -66.0786 -4.51074  c
+-65.5933 -4.00944 -65.0020 -3.75879 -64.3047 -3.75879  c
+-63.6712 -3.75879 -63.0674 -3.96615 -62.4932 -4.38086  c
+h
+-64.3730 -9.54199 m
+-63.4069 -9.98405 -62.9238 -10.5719 -62.9238 -11.3057  c
+-62.9238 -12.0075 -63.2747 -12.3584 -63.9766 -12.3584  c
+-64.6693 -12.3584 -65.0156 -12.0052 -65.0156 -11.2988  c
+-65.0156 -10.8340 -64.8014 -10.2484 -64.3730 -9.54199  c
+h
+-51.6445 -3.00000 m
+-52.1436 -3.60156 l
+-52.8910 -3.03190 -53.7637 -2.74707 -54.7617 -2.74707  c
+-55.8190 -2.74707 -56.6883 -3.05355 -57.3696 -3.66650  c
+-58.0509 -4.27946 -58.3916 -5.05990 -58.3916 -6.00781  c
+-58.3916 -7.56641 -57.5690 -8.62370 -55.9238 -9.17969  c
+-56.3796 -10.0046 -56.6074 -10.6904 -56.6074 -11.2373  c
+-56.6074 -11.8343 -56.3693 -12.3390 -55.8931 -12.7515  c
+-55.4168 -13.1639 -54.8392 -13.3701 -54.1602 -13.3701  c
+-53.5039 -13.3701 -52.9627 -13.1776 -52.5366 -12.7925  c
+-52.1105 -12.4074 -51.8975 -11.9186 -51.8975 -11.3262  c
+-51.8975 -10.3145 -52.6380 -9.43490 -54.1191 -8.68750  c
+-53.4401 -7.48438 -52.6494 -6.36100 -51.7471 -5.31738  c
+-51.3324 -5.91895 -51.1250 -6.77116 -51.1250 -7.87402  c
+-51.1318 -8.37988 l
+-49.7920 -8.37988 l
+-49.7920 -6.88509 -50.2386 -5.59538 -51.1318 -4.51074  c
+-50.7217 -3.99121 -50.2546 -3.48763 -49.7305 -3.00000  c
+h
+-52.7314 -4.38086 m
+-53.6885 -5.55664 -54.5999 -6.88965 -55.4658 -8.37988  c
+-56.5186 -7.96061 -57.0449 -7.27930 -57.0449 -6.33594  c
+-57.0449 -5.62044 -56.8022 -5.01204 -56.3169 -4.51074  c
+-55.8315 -4.00944 -55.2402 -3.75879 -54.5430 -3.75879  c
+-53.9095 -3.75879 -53.3057 -3.96615 -52.7314 -4.38086  c
+h
+-54.6113 -9.54199 m
+-53.6452 -9.98405 -53.1621 -10.5719 -53.1621 -11.3057  c
+-53.1621 -12.0075 -53.5130 -12.3584 -54.2148 -12.3584  c
+-54.9076 -12.3584 -55.2539 -12.0052 -55.2539 -11.2988  c
+-55.2539 -10.8340 -55.0397 -10.2484 -54.6113 -9.54199  c
+h
+-43.3594 -3.00000 m
+-43.3594 -10.4238 l
+-42.0127 -10.4238 l
+-42.0127 -9.02930 l
+-41.4795 -10.0684 -40.7048 -10.5879 -39.6885 -10.5879  c
+-39.5518 -10.5879 -39.4082 -10.5765 -39.2578 -10.5537  c
+-39.2578 -9.29590 l
+-39.4902 -9.37337 -39.6953 -9.41211 -39.8730 -9.41211  c
+-40.7253 -9.41211 -41.4385 -8.90625 -42.0127 -7.89453  c
+-42.0127 -3.00000 l
+h
+-36.8721 -3.00000 m
+-36.8721 -4.01172 l
+-34.8486 -4.01172 l
+-34.8486 -11.9961 l
+-36.8721 -11.4902 l
+-36.8721 -12.5293 l
+-33.4951 -13.3701 l
+-33.4951 -4.01172 l
+-31.4717 -4.01172 l
+-31.4717 -3.00000 l
+h
+-24.1777 -3.00000 m
+-16.0840 -7.04688 l
+-24.1777 -11.0938 l
+-24.1777 -9.96582 l
+-18.3467 -7.04688 l
+-24.1777 -4.13477 l
+h
+-8.97461 -3.00000 m
+-8.97461 -4.18262 l
+-8.58268 -5.09863 -7.78971 -6.09668 -6.59570 -7.17676  c
+-5.82324 -7.86719 l
+-4.82975 -8.76497 -4.33301 -9.65592 -4.33301 -10.5400  c
+-4.33301 -11.1051 -4.50277 -11.5495 -4.84229 -11.8730  c
+-5.18180 -12.1966 -5.64779 -12.3584 -6.24023 -12.3584  c
+-6.94206 -12.3584 -7.76921 -12.0872 -8.72168 -11.5449  c
+-8.72168 -12.7344 l
+-7.82389 -13.1582 -6.93294 -13.3701 -6.04883 -13.3701  c
+-5.10091 -13.3701 -4.33984 -13.1149 -3.76562 -12.6045  c
+-3.19141 -12.0941 -2.90430 -11.4173 -2.90430 -10.5742  c
+-2.90430 -9.96810 -3.04899 -9.43034 -3.33838 -8.96094  c
+-3.62777 -8.49154 -4.16667 -7.92188 -4.95508 -7.25195  c
+-5.47461 -6.80762 l
+-6.55469 -5.89160 -7.17904 -5.01660 -7.34766 -4.18262  c
+-2.95215 -4.18262 l
+-2.95215 -3.00000 l
+h
+3.10449 -2.74707 m
+2.06087 -2.74707 1.21663 -3.23812 .571777 -4.22021  c
+-.0730794 -5.20231 -.395508 -6.48405 -.395508 -8.06543  c
+-.395508 -9.66048 -.0708008 -10.9434 .578613 -11.9141  c
+1.22803 -12.8848 2.08366 -13.3701 3.14551 -13.3701  c
+4.20736 -13.3701 5.06299 -12.8848 5.71240 -11.9141  c
+6.36182 -10.9434 6.68652 -9.66732 6.68652 -8.08594  c
+6.68652 -6.46354 6.36182 -5.16813 5.71240 -4.19971  c
+5.06299 -3.23128 4.19368 -2.74707 3.10449 -2.74707  c
+h
+3.11816 -3.75879 m
+4.54460 -3.75879 5.25781 -5.20801 5.25781 -8.10645  c
+5.25781 -10.9411 4.55371 -12.3584 3.14551 -12.3584  c
+1.74186 -12.3584 1.04004 -10.9274 1.04004 -8.06543  c
+1.04004 -5.19434 1.73275 -3.75879 3.11816 -3.75879  c
+h
+f
+.549020 .219608 .388235 RG
+newpath
+-236.653 -45.0000 m
+-236.653 -52.4238 l
+-235.307 -52.4238 l
+-235.307 -45.0000 l
+h
+-236.653 -53.7705 m
+-236.653 -55.1172 l
+-235.307 -55.1172 l
+-235.307 -53.7705 l
+h
+-232.606 -45.0000 m
+-232.606 -52.4238 l
+-231.260 -52.4238 l
+-231.260 -51.0293 l
+-230.549 -52.0684 -229.678 -52.5879 -228.648 -52.5879  c
+-228.006 -52.5879 -227.493 -52.3840 -227.110 -51.9761  c
+-226.728 -51.5682 -226.536 -51.0202 -226.536 -50.3320  c
+-226.536 -45.0000 l
+-227.883 -45.0000 l
+-227.883 -49.8945 l
+-227.883 -50.4460 -227.964 -50.8390 -228.125 -51.0737  c
+-228.287 -51.3084 -228.555 -51.4258 -228.929 -51.4258  c
+-229.754 -51.4258 -230.531 -50.8857 -231.260 -49.8057  c
+-231.260 -45.0000 l
+h
+-223.959 -45.0000 m
+-223.959 -55.1172 l
+-220.896 -55.1172 l
+-219.926 -55.1172 -219.182 -54.9030 -218.665 -54.4746  c
+-218.147 -54.0462 -217.889 -53.4242 -217.889 -52.6084  c
+-217.889 -51.2594 -218.570 -50.3024 -219.933 -49.7373  c
+-216.556 -45.0000 l
+-218.319 -45.0000 l
+-221.197 -49.2793 l
+-222.537 -49.2793 l
+-222.537 -45.0000 l
+h
+-222.537 -50.3525 m
+-222.072 -50.3525 l
+-220.268 -50.3525 -219.365 -51.0612 -219.365 -52.4785  c
+-219.365 -53.5221 -220.122 -54.0439 -221.635 -54.0439  c
+-222.537 -54.0439 l
+h
+-211.237 -45.9434 m
+-212.044 -45.2005 -212.821 -44.8291 -213.568 -44.8291  c
+-214.184 -44.8291 -214.694 -45.0216 -215.100 -45.4067  c
+-215.505 -45.7918 -215.708 -46.2783 -215.708 -46.8662  c
+-215.708 -47.6774 -215.367 -48.3006 -214.686 -48.7358  c
+-214.005 -49.1711 -213.028 -49.3887 -211.757 -49.3887  c
+-211.436 -49.3887 l
+-211.436 -50.2842 l
+-211.436 -51.1455 -211.878 -51.5762 -212.762 -51.5762  c
+-213.473 -51.5762 -214.241 -51.3574 -215.065 -50.9199  c
+-215.065 -52.0342 l
+-214.159 -52.4033 -213.309 -52.5879 -212.516 -52.5879  c
+-211.686 -52.5879 -211.074 -52.4010 -210.680 -52.0273  c
+-210.286 -51.6536 -210.089 -51.0726 -210.089 -50.2842  c
+-210.089 -46.9209 l
+-210.089 -46.1507 -209.852 -45.7656 -209.378 -45.7656  c
+-209.319 -45.7656 -209.232 -45.7747 -209.118 -45.7930  c
+-209.022 -45.0479 l
+-209.328 -44.9020 -209.665 -44.8291 -210.034 -44.8291  c
+-210.663 -44.8291 -211.064 -45.2005 -211.237 -45.9434  c
+h
+-211.436 -46.6748 m
+-211.436 -48.5957 l
+-211.887 -48.6094 l
+-212.625 -48.6094 -213.222 -48.4692 -213.678 -48.1890  c
+-214.133 -47.9087 -214.361 -47.5407 -214.361 -47.0850  c
+-214.361 -46.7614 -214.247 -46.4880 -214.020 -46.2646  c
+-213.792 -46.0413 -213.514 -45.9297 -213.186 -45.9297  c
+-212.625 -45.9297 -212.042 -46.1781 -211.436 -46.6748  c
+h
+-207.334 -45.0000 m
+-207.334 -52.4238 l
+-205.987 -52.4238 l
+-205.987 -51.0293 l
+-205.276 -52.0684 -204.406 -52.5879 -203.376 -52.5879  c
+-202.733 -52.5879 -202.221 -52.3840 -201.838 -51.9761  c
+-201.455 -51.5682 -201.264 -51.0202 -201.264 -50.3320  c
+-201.264 -45.0000 l
+-202.610 -45.0000 l
+-202.610 -49.8945 l
+-202.610 -50.4460 -202.691 -50.8390 -202.853 -51.0737  c
+-203.015 -51.3084 -203.283 -51.4258 -203.656 -51.4258  c
+-204.481 -51.4258 -205.258 -50.8857 -205.987 -49.8057  c
+-205.987 -45.0000 l
+h
+-198.618 -42.5322 m
+-198.461 -43.7012 l
+-197.682 -43.3320 -196.914 -43.1475 -196.157 -43.1475  c
+-194.640 -43.1475 -193.881 -43.9518 -193.881 -45.5605  c
+-193.881 -46.7295 l
+-194.378 -45.6904 -195.193 -45.1709 -196.328 -45.1709  c
+-197.217 -45.1709 -197.923 -45.4945 -198.447 -46.1416  c
+-198.971 -46.7887 -199.233 -47.6615 -199.233 -48.7598  c
+-199.233 -49.8900 -198.935 -50.8105 -198.338 -51.5215  c
+-197.741 -52.2324 -196.968 -52.5879 -196.021 -52.5879  c
+-195.191 -52.5879 -194.478 -52.2507 -193.881 -51.5762  c
+-193.881 -52.4238 l
+-192.527 -52.4238 l
+-192.527 -47.0234 l
+-192.527 -45.8613 -192.588 -45.0011 -192.708 -44.4429  c
+-192.829 -43.8846 -193.056 -43.4277 -193.389 -43.0723  c
+-193.977 -42.4479 -194.890 -42.1357 -196.130 -42.1357  c
+-196.996 -42.1357 -197.825 -42.2679 -198.618 -42.5322  c
+h
+-193.881 -47.5703 m
+-193.881 -50.6533 l
+-194.473 -51.2686 -195.118 -51.5762 -195.815 -51.5762  c
+-196.435 -51.5762 -196.921 -51.3278 -197.271 -50.8311  c
+-197.622 -50.3343 -197.798 -49.6530 -197.798 -48.7871  c
+-197.798 -47.1602 -197.226 -46.3467 -196.082 -46.3467  c
+-195.303 -46.3467 -194.569 -46.7546 -193.881 -47.5703  c
+h
+-184.475 -45.2393 m
+-185.377 -44.9658 -186.149 -44.8291 -186.792 -44.8291  c
+-187.886 -44.8291 -188.778 -45.1925 -189.468 -45.9194  c
+-190.159 -46.6463 -190.504 -47.5885 -190.504 -48.7461  c
+-190.504 -49.8717 -190.200 -50.7946 -189.591 -51.5146  c
+-188.983 -52.2347 -188.205 -52.5947 -187.257 -52.5947  c
+-186.359 -52.5947 -185.665 -52.2757 -185.175 -51.6377  c
+-184.685 -50.9997 -184.440 -50.0928 -184.440 -48.9170  c
+-184.447 -48.5000 l
+-189.130 -48.5000 l
+-188.934 -46.7363 -188.070 -45.8545 -186.539 -45.8545  c
+-185.979 -45.8545 -185.290 -46.0049 -184.475 -46.3057  c
+h
+-189.068 -49.5117 m
+-185.794 -49.5117 l
+-185.794 -50.8926 -186.309 -51.5830 -187.339 -51.5830  c
+-188.373 -51.5830 -188.950 -50.8926 -189.068 -49.5117  c
+h
+f
+.258824 .258824 .658824 RG
+newpath
+-151.653 -147.000 m
+-151.653 -154.424 l
+-150.307 -154.424 l
+-150.307 -153.029 l
+-149.773 -154.068 -148.999 -154.588 -147.982 -154.588  c
+-147.846 -154.588 -147.702 -154.576 -147.552 -154.554  c
+-147.552 -153.296 l
+-147.784 -153.373 -147.989 -153.412 -148.167 -153.412  c
+-149.019 -153.412 -149.732 -152.906 -150.307 -151.895  c
+-150.307 -147.000 l
+h
+-145.166 -147.000 m
+-145.166 -148.012 l
+-143.143 -148.012 l
+-143.143 -155.996 l
+-145.166 -155.490 l
+-145.166 -156.529 l
+-141.789 -157.370 l
+-141.789 -148.012 l
+-139.766 -148.012 l
+-139.766 -147.000 l
+h
+-132.472 -149.276 m
+-132.472 -150.288 l
+-124.378 -150.288 l
+-124.378 -149.276 l
+h
+-132.472 -151.806 m
+-132.472 -152.817 l
+-124.378 -152.817 l
+-124.378 -151.806 l
+h
+-114.042 -146.747 m
+-115.086 -146.747 -115.930 -147.238 -116.575 -148.220  c
+-117.220 -149.202 -117.542 -150.484 -117.542 -152.065  c
+-117.542 -153.660 -117.217 -154.943 -116.568 -155.914  c
+-115.918 -156.885 -115.063 -157.370 -114.001 -157.370  c
+-112.939 -157.370 -112.083 -156.885 -111.434 -155.914  c
+-110.785 -154.943 -110.460 -153.667 -110.460 -152.086  c
+-110.460 -150.464 -110.785 -149.168 -111.434 -148.200  c
+-112.083 -147.231 -112.953 -146.747 -114.042 -146.747  c
+h
+-114.028 -147.759 m
+-112.602 -147.759 -111.889 -149.208 -111.889 -152.106  c
+-111.889 -154.941 -112.593 -156.358 -114.001 -156.358  c
+-115.405 -156.358 -116.106 -154.927 -116.106 -152.065  c
+-116.106 -149.194 -115.414 -147.759 -114.028 -147.759  c
+h
+f
+.647059 .686275 .803922 RG
+newpath
+-362.000 -153.000 m
+-362.000 -146.373 -367.373 -141.000 -374.000 -141.000  c
+-380.627 -141.000 -386.000 -146.373 -386.000 -153.000  c
+-386.000 -159.627 -380.627 -165.000 -374.000 -165.000  c
+-367.373 -165.000 -362.000 -159.627 -362.000 -153.000  c
+h
+f
+0.00000 0.00000 0.00000 RG
+newpath
+-362.000 -153.000 m
+-362.000 -146.373 -367.373 -141.000 -374.000 -141.000  c
+-380.627 -141.000 -386.000 -146.373 -386.000 -153.000  c
+-386.000 -159.627 -380.627 -165.000 -374.000 -165.000  c
+-367.373 -165.000 -362.000 -159.627 -362.000 -153.000  c
+h
+S
+newpath
+-366.000 -153.000 m
+-366.000 -148.582 -369.582 -145.000 -374.000 -145.000  c
+-378.418 -145.000 -382.000 -148.582 -382.000 -153.000  c
+-382.000 -157.418 -378.418 -161.000 -374.000 -161.000  c
+-369.582 -161.000 -366.000 -157.418 -366.000 -153.000  c
+h
+S
+newpath
+-378.330 -155.500 m
+-379.543 -153.399 -379.073 -150.729 -377.214 -149.170  c
+-375.355 -147.610 -372.645 -147.610 -370.786 -149.170  c
+-368.927 -150.729 -368.457 -153.399 -369.670 -155.500  c
+S
+.258824 .258824 .658824 RG
+newpath
+-158.653 175.000 m
+-158.653 167.576 l
+-157.307 167.576 l
+-157.307 168.971 l
+-156.773 167.932 -155.999 167.412 -154.982 167.412  c
+-154.846 167.412 -154.702 167.424 -154.552 167.446  c
+-154.552 168.704 l
+-154.784 168.627 -154.989 168.588 -155.167 168.588  c
+-156.019 168.588 -156.732 169.094 -157.307 170.105  c
+-157.307 175.000 l
+h
+-153.109 175.000 m
+-153.109 173.817 l
+-152.717 172.901 -151.924 171.903 -150.730 170.823  c
+-149.958 170.133 l
+-148.965 169.235 -148.468 168.344 -148.468 167.460  c
+-148.468 166.895 -148.638 166.451 -148.977 166.127  c
+-149.317 165.803 -149.783 165.642 -150.375 165.642  c
+-151.077 165.642 -151.904 165.913 -152.856 166.455  c
+-152.856 165.266 l
+-151.959 164.842 -151.068 164.630 -150.184 164.630  c
+-149.236 164.630 -148.475 164.885 -147.900 165.396  c
+-147.326 165.906 -147.039 166.583 -147.039 167.426  c
+-147.039 168.032 -147.184 168.570 -147.473 169.039  c
+-147.763 169.508 -148.301 170.078 -149.090 170.748  c
+-149.609 171.192 l
+-150.689 172.108 -151.314 172.983 -151.482 173.817  c
+-147.087 173.817 l
+-147.087 175.000 l
+h
+-139.472 172.724 m
+-139.472 171.712 l
+-131.378 171.712 l
+-131.378 172.724 l
+h
+-139.472 170.194 m
+-139.472 169.183 l
+-131.378 169.183 l
+-131.378 170.194 l
+h
+-121.042 175.253 m
+-122.086 175.253 -122.930 174.762 -123.575 173.780  c
+-124.220 172.798 -124.542 171.516 -124.542 169.935  c
+-124.542 168.340 -124.217 167.057 -123.568 166.086  c
+-122.918 165.115 -122.063 164.630 -121.001 164.630  c
+-119.939 164.630 -119.083 165.115 -118.434 166.086  c
+-117.785 167.057 -117.460 168.333 -117.460 169.914  c
+-117.460 171.536 -117.785 172.832 -118.434 173.800  c
+-119.083 174.769 -119.953 175.253 -121.042 175.253  c
+h
+-121.028 174.241 m
+-119.602 174.241 -118.889 172.792 -118.889 169.894  c
+-118.889 167.059 -119.593 165.642 -121.001 165.642  c
+-122.405 165.642 -123.106 167.073 -123.106 169.935  c
+-123.106 172.806 -122.414 174.241 -121.028 174.241  c
+h
+f
+newpath
+-489.425 -206.829 m
+-490.108 -206.829 -490.642 -207.025 -491.024 -207.417  c
+-491.407 -207.809 -491.599 -208.354 -491.599 -209.051  c
+-491.599 -213.412 l
+-492.528 -213.412 l
+-492.528 -214.424 l
+-491.599 -214.424 l
+-491.599 -215.771 l
+-490.252 -215.900 l
+-490.252 -214.424 l
+-488.311 -214.424 l
+-488.311 -213.412 l
+-490.252 -213.412 l
+-490.252 -209.297 l
+-490.252 -208.326 -489.833 -207.841 -488.994 -207.841  c
+-488.816 -207.841 -488.600 -207.870 -488.345 -207.930  c
+-488.345 -207.000 l
+-488.759 -206.886 -489.119 -206.829 -489.425 -206.829  c
+h
+-481.816 -209.276 m
+-481.816 -210.288 l
+-473.723 -210.288 l
+-473.723 -209.276 l
+h
+-481.816 -211.806 m
+-481.816 -212.817 l
+-473.723 -212.817 l
+-473.723 -211.806 l
+h
+-465.670 -207.000 m
+-465.670 -208.012 l
+-463.646 -208.012 l
+-463.646 -215.996 l
+-465.670 -215.490 l
+-465.670 -216.529 l
+-462.293 -217.370 l
+-462.293 -208.012 l
+-460.270 -208.012 l
+-460.270 -207.000 l
+h
+-454.534 -206.747 m
+-455.578 -206.747 -456.422 -207.238 -457.067 -208.220  c
+-457.712 -209.202 -458.034 -210.484 -458.034 -212.065  c
+-458.034 -213.660 -457.709 -214.943 -457.060 -215.914  c
+-456.411 -216.885 -455.555 -217.370 -454.493 -217.370  c
+-453.431 -217.370 -452.576 -216.885 -451.926 -215.914  c
+-451.277 -214.943 -450.952 -213.667 -450.952 -212.086  c
+-450.952 -210.464 -451.277 -209.168 -451.926 -208.200  c
+-452.576 -207.231 -453.445 -206.747 -454.534 -206.747  c
+h
+-454.521 -207.759 m
+-453.094 -207.759 -452.381 -209.208 -452.381 -212.106  c
+-452.381 -214.941 -453.085 -216.358 -454.493 -216.358  c
+-455.897 -216.358 -456.599 -214.927 -456.599 -212.065  c
+-456.599 -209.194 -455.906 -207.759 -454.521 -207.759  c
+h
+-448.908 -207.000 m
+-448.908 -208.183 l
+-448.516 -209.099 -447.723 -210.097 -446.529 -211.177  c
+-445.757 -211.867 l
+-444.763 -212.765 -444.267 -213.656 -444.267 -214.540  c
+-444.267 -215.105 -444.436 -215.549 -444.776 -215.873  c
+-445.115 -216.197 -445.581 -216.358 -446.174 -216.358  c
+-446.876 -216.358 -447.703 -216.087 -448.655 -215.545  c
+-448.655 -216.734 l
+-447.757 -217.158 -446.867 -217.370 -445.982 -217.370  c
+-445.035 -217.370 -444.273 -217.115 -443.699 -216.604  c
+-443.125 -216.094 -442.838 -215.417 -442.838 -214.574  c
+-442.838 -213.968 -442.983 -213.430 -443.272 -212.961  c
+-443.561 -212.492 -444.100 -211.922 -444.889 -211.252  c
+-445.408 -210.808 l
+-446.488 -209.892 -447.113 -209.017 -447.281 -208.183  c
+-442.886 -208.183 l
+-442.886 -207.000 l
+h
+-439.851 -204.806 m
+-439.851 -205.312 l
+-439.413 -205.435 -439.194 -205.952 -439.194 -206.863  c
+-439.194 -207.000 l
+-439.851 -207.000 l
+-439.851 -208.688 l
+-438.162 -208.688 l
+-438.162 -207.226 l
+-438.162 -205.726 -438.725 -204.920 -439.851 -204.806  c
+h
+f
+newpath
+-491.653 -190.000 m
+-491.653 -197.424 l
+-490.307 -197.424 l
+-490.307 -196.029 l
+-489.773 -197.068 -488.999 -197.588 -487.982 -197.588  c
+-487.846 -197.588 -487.702 -197.576 -487.552 -197.554  c
+-487.552 -196.296 l
+-487.784 -196.373 -487.989 -196.412 -488.167 -196.412  c
+-489.019 -196.412 -489.732 -195.906 -490.307 -194.895  c
+-490.307 -190.000 l
+h
+-485.166 -190.000 m
+-485.166 -191.012 l
+-483.143 -191.012 l
+-483.143 -198.996 l
+-485.166 -198.490 l
+-485.166 -199.529 l
+-481.789 -200.370 l
+-481.789 -191.012 l
+-479.766 -191.012 l
+-479.766 -190.000 l
+h
+-472.472 -192.276 m
+-472.472 -193.288 l
+-464.378 -193.288 l
+-464.378 -192.276 l
+h
+-472.472 -194.806 m
+-472.472 -195.817 l
+-464.378 -195.817 l
+-464.378 -194.806 l
+h
+-457.269 -190.000 m
+-457.269 -191.183 l
+-456.877 -192.099 -456.084 -193.097 -454.890 -194.177  c
+-454.117 -194.867 l
+-453.124 -195.765 -452.627 -196.656 -452.627 -197.540  c
+-452.627 -198.105 -452.797 -198.549 -453.136 -198.873  c
+-453.476 -199.197 -453.942 -199.358 -454.534 -199.358  c
+-455.236 -199.358 -456.063 -199.087 -457.016 -198.545  c
+-457.016 -199.734 l
+-456.118 -200.158 -455.227 -200.370 -454.343 -200.370  c
+-453.395 -200.370 -452.634 -200.115 -452.060 -199.604  c
+-451.485 -199.094 -451.198 -198.417 -451.198 -197.574  c
+-451.198 -196.968 -451.343 -196.430 -451.632 -195.961  c
+-451.922 -195.492 -452.461 -194.922 -453.249 -194.252  c
+-453.769 -193.808 l
+-454.849 -192.892 -455.473 -192.017 -455.642 -191.183  c
+-451.246 -191.183 l
+-451.246 -190.000 l
+h
+-447.876 -189.959 m
+-447.876 -191.162 l
+-447.206 -190.893 -446.568 -190.759 -445.962 -190.759  c
+-445.297 -190.759 -444.774 -190.955 -444.393 -191.347  c
+-444.013 -191.739 -443.822 -192.279 -443.822 -192.967  c
+-443.822 -194.484 -444.868 -195.243 -446.960 -195.243  c
+-447.197 -195.243 -447.445 -195.227 -447.705 -195.195  c
+-447.705 -200.117 l
+-442.585 -200.117 l
+-442.585 -198.941 l
+-446.522 -198.941 l
+-446.522 -196.275 l
+-445.224 -196.275 -444.210 -195.977 -443.480 -195.380  c
+-442.751 -194.783 -442.387 -193.956 -442.387 -192.898  c
+-442.387 -191.914 -442.718 -191.143 -443.381 -190.584  c
+-444.044 -190.026 -444.964 -189.747 -446.140 -189.747  c
+-446.650 -189.747 -447.229 -189.818 -447.876 -189.959  c
+h
+-439.358 -187.806 m
+-439.358 -188.312 l
+-438.921 -188.435 -438.702 -188.952 -438.702 -189.863  c
+-438.702 -190.000 l
+-439.358 -190.000 l
+-439.358 -191.688 l
+-437.670 -191.688 l
+-437.670 -190.226 l
+-437.670 -188.726 -438.233 -187.920 -439.358 -187.806  c
+h
+f
+newpath
+-491.653 -173.000 m
+-491.653 -180.424 l
+-490.307 -180.424 l
+-490.307 -179.029 l
+-489.773 -180.068 -488.999 -180.588 -487.982 -180.588  c
+-487.846 -180.588 -487.702 -180.576 -487.552 -180.554  c
+-487.552 -179.296 l
+-487.784 -179.373 -487.989 -179.412 -488.167 -179.412  c
+-489.019 -179.412 -489.732 -178.906 -490.307 -177.895  c
+-490.307 -173.000 l
+h
+-486.109 -173.000 m
+-486.109 -174.183 l
+-485.717 -175.099 -484.924 -176.097 -483.730 -177.177  c
+-482.958 -177.867 l
+-481.965 -178.765 -481.468 -179.656 -481.468 -180.540  c
+-481.468 -181.105 -481.638 -181.549 -481.977 -181.873  c
+-482.317 -182.197 -482.783 -182.358 -483.375 -182.358  c
+-484.077 -182.358 -484.904 -182.087 -485.856 -181.545  c
+-485.856 -182.734 l
+-484.959 -183.158 -484.068 -183.370 -483.184 -183.370  c
+-482.236 -183.370 -481.475 -183.115 -480.900 -182.604  c
+-480.326 -182.094 -480.039 -181.417 -480.039 -180.574  c
+-480.039 -179.968 -480.184 -179.430 -480.473 -178.961  c
+-480.763 -178.492 -481.301 -177.922 -482.090 -177.252  c
+-482.609 -176.808 l
+-483.689 -175.892 -484.314 -175.017 -484.482 -174.183  c
+-480.087 -174.183 l
+-480.087 -173.000 l
+h
+-472.472 -175.276 m
+-472.472 -176.288 l
+-464.378 -176.288 l
+-464.378 -175.276 l
+h
+-472.472 -177.806 m
+-472.472 -178.817 l
+-464.378 -178.817 l
+-464.378 -177.806 l
+h
+-457.269 -173.000 m
+-457.269 -174.183 l
+-456.877 -175.099 -456.084 -176.097 -454.890 -177.177  c
+-454.117 -177.867 l
+-453.124 -178.765 -452.627 -179.656 -452.627 -180.540  c
+-452.627 -181.105 -452.797 -181.549 -453.136 -181.873  c
+-453.476 -182.197 -453.942 -182.358 -454.534 -182.358  c
+-455.236 -182.358 -456.063 -182.087 -457.016 -181.545  c
+-457.016 -182.734 l
+-456.118 -183.158 -455.227 -183.370 -454.343 -183.370  c
+-453.395 -183.370 -452.634 -183.115 -452.060 -182.604  c
+-451.485 -182.094 -451.198 -181.417 -451.198 -180.574  c
+-451.198 -179.968 -451.343 -179.430 -451.632 -178.961  c
+-451.922 -178.492 -452.461 -177.922 -453.249 -177.252  c
+-453.769 -176.808 l
+-454.849 -175.892 -455.473 -175.017 -455.642 -174.183  c
+-451.246 -174.183 l
+-451.246 -173.000 l
+h
+-447.876 -172.959 m
+-447.876 -174.162 l
+-447.206 -173.893 -446.568 -173.759 -445.962 -173.759  c
+-445.297 -173.759 -444.774 -173.955 -444.393 -174.347  c
+-444.013 -174.739 -443.822 -175.279 -443.822 -175.967  c
+-443.822 -177.484 -444.868 -178.243 -446.960 -178.243  c
+-447.197 -178.243 -447.445 -178.227 -447.705 -178.195  c
+-447.705 -183.117 l
+-442.585 -183.117 l
+-442.585 -181.941 l
+-446.522 -181.941 l
+-446.522 -179.275 l
+-445.224 -179.275 -444.210 -178.977 -443.480 -178.380  c
+-442.751 -177.783 -442.387 -176.956 -442.387 -175.898  c
+-442.387 -174.914 -442.718 -174.143 -443.381 -173.584  c
+-444.044 -173.026 -444.964 -172.747 -446.140 -172.747  c
+-446.650 -172.747 -447.229 -172.818 -447.876 -172.959  c
+h
+f
+.654902 .258824 .658824 RG
+newpath
+-455.425 -146.829 m
+-456.108 -146.829 -456.642 -147.025 -457.024 -147.417  c
+-457.407 -147.809 -457.599 -148.354 -457.599 -149.051  c
+-457.599 -153.412 l
+-458.528 -153.412 l
+-458.528 -154.424 l
+-457.599 -154.424 l
+-457.599 -155.771 l
+-456.252 -155.900 l
+-456.252 -154.424 l
+-454.311 -154.424 l
+-454.311 -153.412 l
+-456.252 -153.412 l
+-456.252 -149.297 l
+-456.252 -148.326 -455.833 -147.841 -454.994 -147.841  c
+-454.816 -147.841 -454.600 -147.870 -454.345 -147.930  c
+-454.345 -147.000 l
+-454.759 -146.886 -455.119 -146.829 -455.425 -146.829  c
+h
+-439.723 -147.000 m
+-447.816 -151.047 l
+-439.723 -155.094 l
+-439.723 -153.966 l
+-445.554 -151.047 l
+-439.723 -148.135 l
+h
+-436.688 -149.276 m
+-436.688 -150.288 l
+-428.594 -150.288 l
+-428.594 -149.276 l
+h
+-436.688 -151.806 m
+-436.688 -152.817 l
+-428.594 -152.817 l
+-428.594 -151.806 l
+h
+-420.541 -147.000 m
+-420.541 -148.012 l
+-418.518 -148.012 l
+-418.518 -155.996 l
+-420.541 -155.490 l
+-420.541 -156.529 l
+-417.164 -157.370 l
+-417.164 -148.012 l
+-415.141 -148.012 l
+-415.141 -147.000 l
+h
+-409.405 -146.747 m
+-410.449 -146.747 -411.293 -147.238 -411.938 -148.220  c
+-412.583 -149.202 -412.905 -150.484 -412.905 -152.065  c
+-412.905 -153.660 -412.581 -154.943 -411.931 -155.914  c
+-411.282 -156.885 -410.426 -157.370 -409.364 -157.370  c
+-408.302 -157.370 -407.447 -156.885 -406.797 -155.914  c
+-406.148 -154.943 -405.823 -153.667 -405.823 -152.086  c
+-405.823 -150.464 -406.148 -149.168 -406.797 -148.200  c
+-407.447 -147.231 -408.316 -146.747 -409.405 -146.747  c
+h
+-409.392 -147.759 m
+-407.965 -147.759 -407.252 -149.208 -407.252 -152.106  c
+-407.252 -154.941 -407.956 -156.358 -409.364 -156.358  c
+-410.768 -156.358 -411.470 -154.927 -411.470 -152.065  c
+-411.470 -149.194 -410.777 -147.759 -409.392 -147.759  c
+h
+-403.779 -147.000 m
+-403.779 -148.183 l
+-403.387 -149.099 -402.594 -150.097 -401.400 -151.177  c
+-400.628 -151.867 l
+-399.634 -152.765 -399.138 -153.656 -399.138 -154.540  c
+-399.138 -155.105 -399.307 -155.549 -399.647 -155.873  c
+-399.986 -156.197 -400.452 -156.358 -401.045 -156.358  c
+-401.747 -156.358 -402.574 -156.087 -403.526 -155.545  c
+-403.526 -156.734 l
+-402.629 -157.158 -401.738 -157.370 -400.854 -157.370  c
+-399.906 -157.370 -399.145 -157.115 -398.570 -156.604  c
+-397.996 -156.094 -397.709 -155.417 -397.709 -154.574  c
+-397.709 -153.968 -397.854 -153.430 -398.143 -152.961  c
+-398.432 -152.492 -398.971 -151.922 -399.760 -151.252  c
+-400.279 -150.808 l
+-401.359 -149.892 -401.984 -149.017 -402.152 -148.183  c
+-397.757 -148.183 l
+-397.757 -147.000 l
+h
+f
+.647059 .686275 .803922 RG
+newpath
+-30.0000 -68.0000 m
+-30.0000 -61.3726 -35.3726 -56.0000 -42.0000 -56.0000  c
+-48.6274 -56.0000 -54.0000 -61.3726 -54.0000 -68.0000  c
+-54.0000 -74.6274 -48.6274 -80.0000 -42.0000 -80.0000  c
+-35.3726 -80.0000 -30.0000 -74.6274 -30.0000 -68.0000  c
+h
+f
+0.00000 0.00000 0.00000 RG
+newpath
+-30.0000 -68.0000 m
+-30.0000 -61.3726 -35.3726 -56.0000 -42.0000 -56.0000  c
+-48.6274 -56.0000 -54.0000 -61.3726 -54.0000 -68.0000  c
+-54.0000 -74.6274 -48.6274 -80.0000 -42.0000 -80.0000  c
+-35.3726 -80.0000 -30.0000 -74.6274 -30.0000 -68.0000  c
+h
+S
+.647059 .686275 .803922 RG
+newpath
+-30.0000 85.0000 m
+-30.0000 91.6274 -35.3726 97.0000 -42.0000 97.0000  c
+-48.6274 97.0000 -54.0000 91.6274 -54.0000 85.0000  c
+-54.0000 78.3726 -48.6274 73.0000 -42.0000 73.0000  c
+-35.3726 73.0000 -30.0000 78.3726 -30.0000 85.0000  c
+h
+f
+0.00000 0.00000 0.00000 RG
+newpath
+-30.0000 85.0000 m
+-30.0000 91.6274 -35.3726 97.0000 -42.0000 97.0000  c
+-48.6274 97.0000 -54.0000 91.6274 -54.0000 85.0000  c
+-54.0000 78.3726 -48.6274 73.0000 -42.0000 73.0000  c
+-35.3726 73.0000 -30.0000 78.3726 -30.0000 85.0000  c
+h
+S
+.647059 .686275 .803922 RG
+newpath
+-166.000 8.00000 m
+-166.000 14.6274 -171.373 20.0000 -178.000 20.0000  c
+-184.627 20.0000 -190.000 14.6274 -190.000 8.00000  c
+-190.000 1.37258 -184.627 -4.00000 -178.000 -4.00000  c
+-171.373 -4.00000 -166.000 1.37258 -166.000 8.00000  c
+h
+f
+0.00000 0.00000 0.00000 RG
+newpath
+-166.000 8.00000 m
+-166.000 14.6274 -171.373 20.0000 -178.000 20.0000  c
+-184.627 20.0000 -190.000 14.6274 -190.000 8.00000  c
+-190.000 1.37258 -184.627 -4.00000 -178.000 -4.00000  c
+-171.373 -4.00000 -166.000 1.37258 -166.000 8.00000  c
+h
+S
+.647059 .686275 .803922 RG
+newpath
+-455.000 8.00000 m
+-455.000 14.6274 -460.373 20.0000 -467.000 20.0000  c
+-473.627 20.0000 -479.000 14.6274 -479.000 8.00000  c
+-479.000 1.37258 -473.627 -4.00000 -467.000 -4.00000  c
+-460.373 -4.00000 -455.000 1.37258 -455.000 8.00000  c
+h
+f
+0.00000 0.00000 0.00000 RG
+newpath
+-455.000 8.00000 m
+-455.000 14.6274 -460.373 20.0000 -467.000 20.0000  c
+-473.627 20.0000 -479.000 14.6274 -479.000 8.00000  c
+-479.000 1.37258 -473.627 -4.00000 -467.000 -4.00000  c
+-460.373 -4.00000 -455.000 1.37258 -455.000 8.00000  c
+h
+S
+1 J
+2 j
+newpath
+-42.0000 -81.0000 m
+-42.0000 -134.000 l
+-42.0000 -140.667 -45.3333 -144.000 -52.0000 -144.000  c
+-168.000 -144.000 l
+-174.667 -144.000 -178.000 -140.667 -178.000 -134.000  c
+-178.000 -5.00000 l
+S
+newpath
+-180.588 -14.6593 m
+-178.000 -5.00000 l
+-175.412 -14.6593 l
+S
+2 J
+0 j
+1 J
+2 j
+newpath
+-166.687 14.4050 m
+-53.3127 78.5950 l
+S
+newpath
+-62.9934 76.0883 m
+-53.3127 78.5950 l
+-60.4430 71.5838 l
+S
+2 J
+0 j
+1 J
+2 j
+newpath
+-166.652 1.65832 m
+-53.3483 -61.6583 l
+S
+newpath
+-60.5177 -54.6870 m
+-53.3483 -61.6583 l
+-63.0428 -59.2057 l
+S
+2 J
+0 j
+1 J
+2 j
+newpath
+-42.0000 98.0000 m
+-42.0000 151.000 l
+-42.0000 157.667 -45.3333 161.000 -52.0000 161.000  c
+-168.000 161.000 l
+-174.667 161.000 -178.000 157.667 -178.000 151.000  c
+-178.000 21.0000 l
+S
+newpath
+-175.412 30.6593 m
+-178.000 21.0000 l
+-180.588 30.6593 l
+S
+2 J
+0 j
+1 J
+2 j
+newpath
+-191.000 8.00000 m
+-193.667 8.00000 -198.333 8.00000 -205.000 8.00000  c
+-454.000 8.00000 l
+S
+newpath
+-444.341 5.41181 m
+-454.000 8.00000 l
+-444.341 10.5882 l
+S
+2 J
+0 j
+1 J
+2 j
+newpath
+-384.591 -160.539 m
+-424.853 -189.201 l
+-430.284 -193.067 -429.680 -195.293 -423.039 -195.879  c
+-340.961 -203.121 l
+-334.320 -203.707 -333.149 -201.452 -337.446 -196.355  c
+-365.620 -162.939 l
+S
+newpath
+-361.373 -171.992 m
+-365.620 -162.939 l
+-357.415 -168.655 l
+S
+2 J
+0 j
+1 J
+2 j
+newpath
+-363.955 -144.748 m
+-188.045 -.251613 l
+S
+newpath
+-197.152 -4.38276 m
+-188.045 -.251613 l
+-193.867 -8.38269 l
+S
+2 J
+0 j
+[ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] defaultmatrix matrix concatmatrix setmatrix
+
+%%Trailer
+%%EOF
index 5681ce0..5050d31 100644 (file)
--- a/third.tex
+++ b/third.tex
@@ -17,7 +17,29 @@ no rod is yet available, the system goes into a state Overheating.}
 \emph{Specify the system in \UPPAAL. Show that unfortunately it may reach state
 \texttt{Overheating}. What is the chance this happens within 100 time units?}
 
+Figure~\ref{fig:uppaal3} shows our \UPPAAL{} specification of the vessel and
+rods. It is also included in \tt{3.xml}. 
+Here \tt{t, r1} and \tt{r2} are simple \tt{clock}s tracking the 
+temperature and idle times for rod1 and rod2. When querying for 
+\tt{Pr [<=100] (<> v.overheating)} \UPPAAL{} gives a probability interval of 
+$[0.0486043,0.148433]$ with a confidence of 0.95. The chance of overheating 
+in 100 time units thus lies between Â±0\% and Â±1\%.
+
+\begin{figure}[h]
+       \centering
+       \includegraphics[width=.8\linewidth]{3}
+       \label{fig:uppaal3}
+       \caption{Modeling vessel and rods in \UPPAAL{}}
+\end{figure}
+
 \subsection*{3.b}
 \emph{Someone forwards the idea that the fact that the \texttt{Overheating}
 state can be reached is due to rod2 cooling too well, and proposes to replace
 rod2 by a rod that is similar to rod1. What do you think of this idea?}
+
+At first this idea appears to make sense. If rod2 cools too well then rod1 does
+not have time to recover when rod2 is done cooling. When we replace rod2 with a 
+rod which has the same cooling constant ($T'=0.1T âˆ’ 11.2$) as rod1 in the model
+then running the same query returns an interval of $[0,0.0973938]$, so chances
+appear to have decreased a bit, but there still is a considerable chance of
+overheating.
\ No newline at end of file
index 6824ba4..3351546 100644 (file)
 <!DOCTYPE nta PUBLIC '-//Uppaal Team//DTD Flat System 1.1//EN' 'http://www.it.uu.se/research/group/darts/uppaal/flat-1_2.dtd'>\r
 <nta>\r
        <declaration>// Place global declarations here.
-broadcast chan cool, inr[2], outr[2];
-</declaration>\r
+
+clock r1, r2;
+clock t;</declaration>\r
        <template>\r
-               <name x="5" y="5">Tank</name>\r
-               <declaration>// Place local declarations here.
-clock temp = 102.0;</declaration>\r
-               <location id="id0" x="-535" y="42">\r
-                       <name x="-612" y="8">overheating</name>\r
-                       <label kind="invariant" x="-620" y="59">temp' == 1.0</label>\r
+               <name x="5" y="5">Vessel</name>\r
+               <declaration>// Place local declarations here.</declaration>\r
+               <location id="id0" x="-374" y="-153">\r
+                       <name x="-384" y="-187">Start</name>\r
+                       <label kind="invariant" x="-459" y="-161">t &lt;= 102</label>\r
+                       <urgent/>\r
                </location>\r
-               <location id="id1" x="-119" y="0">\r
-                       <name x="-93" y="-8">cooling2</name>\r
-                       <label kind="invariant" x="-93" y="17">temp' == 0.1*temp - 12.0
-&amp;&amp; temp &gt; 102</label>\r
+               <location id="id1" x="-467" y="8">\r
+                       <name x="-552" y="-25">overheating</name>\r
+                       <label kind="invariant" x="-501" y="25">t' == 0.1*t - 10.0
+&amp;&amp; r1' == 1 
+&amp;&amp; r2' == 1</label>\r
                </location>\r
-               <location id="id2" x="-127" y="-127">\r
-                       <name x="-93" y="-136">cooling1</name>\r
-                       <label kind="invariant" x="-137" y="-110">temp' == 0.1*temp - 11.2
-&amp;&amp; temp &gt; 102</label>\r
+               <location id="id2" x="-42" y="85">\r
+                       <name x="-52" y="51">rod2</name>\r
+                       <label kind="invariant" x="-8" y="68">t' == 0.1*t - 11.2
+&amp;&amp; r1' == 1 
+&amp;&amp; r2' == 1
+&amp;&amp; t &gt;= 102</label>\r
                </location>\r
-               <location id="id3" x="-238" y="-76">\r
-                       <label kind="invariant" x="-365" y="-59">temp' == 0.1*temp - 10.0</label>\r
-                       <urgent/>\r
+               <location id="id3" x="-42" y="-68">\r
+                       <name x="-52" y="-102">rod1</name>\r
+                       <label kind="invariant" x="-17" y="-102">t' == 0.1*t - 11.2
+&amp;&amp; r1' == 1 
+&amp;&amp; r2' == 1
+&amp;&amp; t &gt;= 102</label>\r
                </location>\r
-               <location id="id4" x="-416" y="-76">\r
-                       <name x="-492" y="-110">inRange</name>\r
-                       <label kind="invariant" x="-731" y="-85">temp' == 0.1*temp - 10.0 &amp;&amp; temp &lt; 110</label>\r
-                       <urgent/>\r
+               <location id="id4" x="-178" y="8">\r
+                       <name x="-238" y="-59">inRange</name>\r
+                       <label kind="invariant" x="-314" y="17">t' == 0.1*t - 10.0 
+&amp;&amp; r1' == 1 
+&amp;&amp; r2' == 1
+&amp;&amp; t &gt;= 102
+&amp;&amp; t &lt;= 110</label>\r
                </location>\r
-               <init ref="id4"/>\r
+               <init ref="id0"/>\r
                <transition>\r
-                       <source ref="id4"/>\r
+                       <source ref="id0"/>\r
                        <target ref="id0"/>\r
-                       <label kind="synchronisation" x="-517" y="-34">temp &gt;= 110</label>\r
+                       <label kind="guard" x="-408" y="-221">t &lt; 102</label>\r
+                       <label kind="assignment" x="-493" y="-221">t = 102,
+r1 = 25,
+r2 = 25</label>\r
+                       <nail x="-433" y="-195"/>\r
+                       <nail x="-331" y="-204"/>\r
                </transition>\r
                <transition>\r
-                       <source ref="id1"/>\r
+                       <source ref="id0"/>\r
                        <target ref="id4"/>\r
-                       <label kind="guard" x="-390" y="38">temp &gt;= 102 &amp;&amp; temp &lt;= 105</label>\r
-                       <label kind="synchronisation" x="-390" y="55">outr[1]!</label>\r
-                       <nail x="-119" y="76"/>\r
-                       <nail x="-408" y="68"/>\r
+                       <label kind="guard" x="-561" y="-127">t &gt;= 102 &amp;&amp; r1 &gt; 20 &amp;&amp; r2 &gt; 20</label>\r
+               </transition>\r
+               <transition>\r
+                       <source ref="id4"/>\r
+                       <target ref="id1"/>\r
+                       <label kind="guard" x="-408" y="-51">t &gt;= 110 &amp;&amp; 
+r1 &lt;= 20 
+&amp;&amp; r2 &lt;= 20</label>\r
+                       <nail x="-195" y="8"/>\r
                </transition>\r
                <transition>\r
                        <source ref="id2"/>\r
                        <target ref="id4"/>\r
-                       <label kind="guard" x="-398" y="-246">temp &gt;= 102 &amp;&amp; temp &lt;= 105</label>\r
-                       <label kind="synchronisation" x="-398" y="-229">outr[0]!</label>\r
-                       <nail x="-127" y="-212"/>\r
-                       <nail x="-416" y="-212"/>\r
+                       <label kind="guard" x="-187" y="178">t &gt;= 102 &amp;&amp; t &lt;= 105</label>\r
+                       <label kind="assignment" x="-160" y="161">r2 = 0</label>\r
+                       <nail x="-42" y="161"/>\r
+                       <nail x="-178" y="161"/>\r
                </transition>\r
                <transition>\r
-                       <source ref="id3"/>\r
-                       <target ref="id1"/>\r
-                       <label kind="synchronisation" x="-204" y="-25">inr[1]?</label>\r
+                       <source ref="id4"/>\r
+                       <target ref="id2"/>\r
+                       <label kind="guard" x="-136" y="8">t &gt;= 110 &amp;&amp; r2 &gt; 20</label>\r
                </transition>\r
                <transition>\r
                        <source ref="id3"/>\r
-                       <target ref="id2"/>\r
-                       <label kind="synchronisation" x="-220" y="-118">inr[0]?</label>\r
+                       <target ref="id4"/>\r
+                       <label kind="guard" x="-160" y="-178">t &gt;= 102 &amp;&amp; t &lt;= 105</label>\r
+                       <label kind="assignment" x="-153" y="-161">r1 = 0</label>\r
+                       <nail x="-42" y="-144"/>\r
+                       <nail x="-178" y="-144"/>\r
                </transition>\r
                <transition>\r
                        <source ref="id4"/>\r
                        <target ref="id3"/>\r
-                       <label kind="guard" x="-357" y="-110">temp &gt;= 110</label>\r
-                       <label kind="synchronisation" x="-340" y="-93">cool!</label>\r
-               </transition>\r
-       </template>\r
-       <template>\r
-               <name>Rod</name>\r
-               <parameter>int[0,1] id</parameter>\r
-               <declaration>clock t;</declaration>\r
-               <location id="id5" x="-221" y="-144">\r
-                       <name x="-246" y="-127">cooling</name>\r
-                       <urgent/>\r
-               </location>\r
-               <location id="id6" x="-323" y="-144">\r
-                       <name x="-357" y="-127">inVessel</name>\r
-               </location>\r
-               <location id="id7" x="-391" y="-144">\r
-                       <urgent/>\r
-               </location>\r
-               <location id="id8" x="-459" y="-144">\r
-                       <name x="-493" y="-127">available</name>\r
-               </location>\r
-               <init ref="id8"/>\r
-               <transition>\r
-                       <source ref="id5"/>\r
-                       <target ref="id8"/>\r
-                       <label kind="guard" x="-449" y="-272">t &gt;= 20</label>\r
-                       <nail x="-221" y="-238"/>\r
-                       <nail x="-467" y="-238"/>\r
-               </transition>\r
-               <transition>\r
-                       <source ref="id6"/>\r
-                       <target ref="id5"/>\r
-                       <label kind="synchronisation" x="-305" y="-161">outr[id]?</label>\r
-                       <label kind="assignment" x="-305" y="-144">t=0</label>\r
-               </transition>\r
-               <transition>\r
-                       <source ref="id7"/>\r
-                       <target ref="id6"/>\r
-                       <label kind="synchronisation" x="-374" y="-170">inr[id]!</label>\r
-               </transition>\r
-               <transition>\r
-                       <source ref="id8"/>\r
-                       <target ref="id7"/>\r
-                       <label kind="synchronisation" x="-441" y="-161">cool?</label>\r
+                       <label kind="guard" x="-136" y="-17">t &gt;= 110 &amp;&amp; r1 &gt; 20</label>\r
                </transition>\r
        </template>\r
        <system>// Place template instantiations here.
 // List one or more processes to be composed into a system.
-r1 = Rod(0);
-r2 = Rod(1);
-system Tank, r1, r2;
+v = Vessel();
+system v;
     </system>\r
        <queries>\r
                <query>\r
-                       <formula>Pr [&lt;=100]  (&lt;&gt; Tank.overheating)\r
+                       <formula>Pr [&lt;=100] (&lt;&gt; v.overheating)\r
+                       </formula>\r
+                       <comment>\r
+                       </comment>\r
+               </query>\r
+               <query>\r
+                       <formula>simulate 5 [&lt;=100] { t }\r
                        </formula>\r
                        <comment>\r
                        </comment>\r
diff --git a/uppaal/3_v2.xml b/uppaal/3_v2.xml
deleted file mode 100644 (file)
index a49f41c..0000000
+++ /dev/null
@@ -1,109 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>\r
-<!DOCTYPE nta PUBLIC '-//Uppaal Team//DTD Flat System 1.1//EN' 'http://www.it.uu.se/research/group/darts/uppaal/flat-1_2.dtd'>\r
-<nta>\r
-       <declaration>// Place global declarations here.
-
-clock r1, r2;
-clock t;
-clock time;</declaration>\r
-       <template>\r
-               <name x="5" y="5">Vessel</name>\r
-               <declaration>// Place local declarations here.</declaration>\r
-               <location id="id0" x="-374" y="-153">\r
-                       <name x="-384" y="-187">Start</name>\r
-                       <label kind="invariant" x="-459" y="-161">t &lt;= 102</label>\r
-                       <urgent/>\r
-               </location>\r
-               <location id="id1" x="-467" y="8">\r
-                       <name x="-552" y="-25">overheating</name>\r
-                       <label kind="invariant" x="-501" y="25">t' == 0.1*t - 10.0
-&amp;&amp; r1' == 1 
-&amp;&amp; r2' == 1</label>\r
-               </location>\r
-               <location id="id2" x="-42" y="85">\r
-                       <name x="-52" y="51">rod2</name>\r
-                       <label kind="invariant" x="-8" y="68">t' == 0.1*t - 12.0
-&amp;&amp; r1' == 1 
-&amp;&amp; r2' == 1
-&amp;&amp; t &gt;= 102</label>\r
-               </location>\r
-               <location id="id3" x="-42" y="-68">\r
-                       <name x="-52" y="-102">rod1</name>\r
-                       <label kind="invariant" x="-17" y="-102">t' == 0.1*t - 11.2
-&amp;&amp; r1' == 1 
-&amp;&amp; r2' == 1
-&amp;&amp; t &gt;= 102</label>\r
-               </location>\r
-               <location id="id4" x="-178" y="8">\r
-                       <name x="-238" y="-59">inRange</name>\r
-                       <label kind="invariant" x="-314" y="17">t' == 0.1*t - 10.0 
-&amp;&amp; r1' == 1 
-&amp;&amp; r2' == 1
-&amp;&amp; t &gt;= 102
-&amp;&amp; t &lt;= 110</label>\r
-               </location>\r
-               <init ref="id0"/>\r
-               <transition>\r
-                       <source ref="id0"/>\r
-                       <target ref="id0"/>\r
-                       <label kind="guard" x="-408" y="-221">t &lt; 102</label>\r
-                       <label kind="assignment" x="-493" y="-221">t = 102,
-r1 = 25,
-r2 = 25</label>\r
-                       <nail x="-433" y="-195"/>\r
-                       <nail x="-331" y="-204"/>\r
-               </transition>\r
-               <transition>\r
-                       <source ref="id0"/>\r
-                       <target ref="id4"/>\r
-                       <label kind="guard" x="-561" y="-127">t &gt;= 102 &amp;&amp; r1 &gt; 20 &amp;&amp; r2 &gt; 20</label>\r
-               </transition>\r
-               <transition>\r
-                       <source ref="id4"/>\r
-                       <target ref="id1"/>\r
-                       <label kind="guard" x="-408" y="-51">t &gt;= 110 &amp;&amp; 
-r1 &lt;= 20 
-&amp;&amp; r2 &lt;= 20</label>\r
-                       <nail x="-195" y="8"/>\r
-               </transition>\r
-               <transition>\r
-                       <source ref="id2"/>\r
-                       <target ref="id4"/>\r
-                       <label kind="guard" x="-187" y="178">t &gt;= 102 &amp;&amp; t &lt;= 105</label>\r
-                       <label kind="assignment" x="-160" y="161">r2 = 0</label>\r
-                       <nail x="-42" y="161"/>\r
-                       <nail x="-178" y="161"/>\r
-               </transition>\r
-               <transition>\r
-                       <source ref="id4"/>\r
-                       <target ref="id2"/>\r
-                       <label kind="guard" x="-136" y="8">t &gt;= 110 &amp;&amp; r2 &gt; 20</label>\r
-               </transition>\r
-               <transition>\r
-                       <source ref="id3"/>\r
-                       <target ref="id4"/>\r
-                       <label kind="guard" x="-160" y="-178">t &gt;= 102 &amp;&amp; t &lt;= 105</label>\r
-                       <label kind="assignment" x="-153" y="-161">r1 = 0</label>\r
-                       <nail x="-42" y="-144"/>\r
-                       <nail x="-178" y="-144"/>\r
-               </transition>\r
-               <transition>\r
-                       <source ref="id4"/>\r
-                       <target ref="id3"/>\r
-                       <label kind="guard" x="-136" y="-17">t &gt;= 110 &amp;&amp; r1 &gt; 20</label>\r
-               </transition>\r
-       </template>\r
-       <system>// Place template instantiations here.
-// List one or more processes to be composed into a system.
-v = Vessel();
-system v;
-    </system>\r
-       <queries>\r
-               <query>\r
-                       <formula>simulate 5 [&lt;=50] { t }\r
-                       </formula>\r
-                       <comment>\r
-                       </comment>\r
-               </query>\r
-       </queries>\r
-</nta>\r