%!PS-Adobe-3.0 EPSF-3.0 %%BoundingBox: 76 20 519 771 %%Creator: yExport 1.1.0.2 %%Producer: org.freehep.graphicsio.ps.PSGraphics2D Revision: 12753 %%For: %%Title: %%CreationDate: Saturday, July 17, 2010 3:31:25 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: 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: setmargins) /setmargins {/mr exch def /mt exch def /mb exch def /ml exch def} def % set the graphic's size (usage: setsize) /setsize {/gh exch def /gw exch def} def % set the graphic's origin (usage: 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. % popfirst % popfirst /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. % 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. % internalshow -- /internalshow {show} def % This is an internal routine to alternate between determining the % bounding box for stringsize and stroking various ornaments. % 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. % testchar /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. % 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. % 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. % 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. % updatebbox -- /restorebbox { /bbury exch def /bburx exch def /bblly exch def /bbllx exch def } def % Push the accumulated bounding box onto the stack. % -- pushbbox /pushbbox {bbllx bblly bburx bbury} def % Make the relative bounding box relative to the currentpoint. % inflate /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. % relative /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. % stringsize /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 332 564 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 332.000 0.00000 l 332.000 564.000 l 0.00000 564.000 l 0.00000 0.00000 l h f 0.00000 0.00000 0.00000 RG 0 0 332 564 rc q [ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] concat [ 1.00000 0.00000 0.00000 1.00000 -63.0000 -59.0000 ] concat 1.00000 1.00000 1.00000 RG newpath 63.0000 59.0000 m 395.000 59.0000 l 395.000 623.000 l 63.0000 623.000 l 63.0000 59.0000 l h f 0.00000 0.00000 0.00000 RG [ 1.00000 0.00000 0.00000 1.00000 -63.0000 -59.0000 ] defaultmatrix matrix concatmatrix setmatrix [ 1.00000 0.00000 0.00000 1.00000 -63.0000 -59.0000 ] defaultmatrix matrix concatmatrix setmatrix [ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] defaultmatrix matrix concatmatrix setmatrix [ 1.00000 0.00000 0.00000 1.00000 -63.0000 -59.0000 ] defaultmatrix matrix concatmatrix setmatrix .792157 .925490 1.00000 RG newpath 78.2000 125.499 m 78.2000 553.700 l 78.2000 555.909 79.9909 557.700 82.2000 557.700 c 375.800 557.700 l 378.009 557.700 379.800 555.909 379.800 553.700 c 379.800 125.499 l 379.800 123.290 378.009 121.499 375.800 121.499 c 82.2000 121.499 l 79.9909 121.499 78.2000 123.290 78.2000 125.499 c h f 1.60000 M .600000 .800000 1.00000 RG newpath 78.2000 121.499 m 379.800 121.499 l 379.800 140.200 l 78.2000 140.200 l 78.2000 121.499 l h f .792157 .925490 1.00000 RG 10.0000 M 0.00000 0.00000 0.00000 RG newpath 308.081 135.563 m 308.081 126.970 l 309.206 126.970 l 309.206 130.501 l 313.675 130.501 l 313.675 126.970 l 314.816 126.970 l 314.816 135.563 l 313.675 135.563 l 313.675 131.516 l 309.206 131.516 l 309.206 135.563 l 308.081 135.563 l h 316.544 135.563 m 316.544 126.970 l 317.607 126.970 l 317.607 135.563 l 316.544 135.563 l h 323.304 134.798 m 322.908 135.131 322.530 135.365 322.171 135.501 c 321.812 135.636 321.424 135.704 321.007 135.704 c 320.320 135.704 319.793 135.537 319.429 135.204 c 319.064 134.871 318.882 134.443 318.882 133.923 c 318.882 133.621 318.950 133.342 319.085 133.087 c 319.221 132.832 319.403 132.628 319.632 132.477 c 319.861 132.326 320.116 132.214 320.398 132.141 c 320.596 132.079 320.908 132.022 321.335 131.970 c 322.179 131.876 322.804 131.756 323.210 131.610 c 323.210 131.464 323.210 131.376 323.210 131.345 c 323.210 130.907 323.111 130.600 322.913 130.423 c 322.642 130.193 322.241 130.079 321.710 130.079 c 321.221 130.079 320.856 130.165 320.616 130.337 c 320.377 130.509 320.200 130.813 320.085 131.251 c 319.054 131.110 l 319.148 130.673 319.304 130.318 319.523 130.048 c 319.741 129.777 320.054 129.568 320.460 129.423 c 320.866 129.277 321.335 129.204 321.866 129.204 c 322.398 129.204 322.830 129.266 323.163 129.391 c 323.497 129.516 323.741 129.673 323.898 129.860 c 324.054 130.048 324.163 130.287 324.226 130.579 c 324.257 130.756 324.273 131.079 324.273 131.548 c 324.273 132.954 l 324.273 133.933 324.296 134.553 324.343 134.813 c 324.390 135.074 324.481 135.324 324.616 135.563 c 323.507 135.563 l 323.403 135.345 323.335 135.089 323.304 134.798 c h 323.210 132.438 m 322.825 132.595 322.252 132.730 321.491 132.845 c 321.054 132.907 320.747 132.977 320.570 133.055 c 320.392 133.134 320.254 133.246 320.155 133.391 c 320.056 133.537 320.007 133.704 320.007 133.891 c 320.007 134.173 320.114 134.407 320.327 134.595 c 320.541 134.782 320.851 134.876 321.257 134.876 c 321.663 134.876 322.025 134.787 322.343 134.610 c 322.661 134.433 322.892 134.188 323.038 133.876 c 323.153 133.636 323.210 133.287 323.210 132.829 c 323.210 132.438 l h 327.634 135.563 m 325.275 129.345 l 326.384 129.345 l 327.728 133.063 l 327.863 133.470 327.993 133.886 328.118 134.313 c 328.212 133.990 328.342 133.600 328.509 133.141 c 329.900 129.345 l 330.978 129.345 l 328.618 135.563 l 327.634 135.563 l h 331.915 135.563 m 331.915 129.345 l 332.853 129.345 l 332.853 130.220 l 333.311 129.542 333.973 129.204 334.837 129.204 c 335.212 129.204 335.558 129.272 335.876 129.407 c 336.194 129.542 336.431 129.720 336.587 129.938 c 336.743 130.157 336.853 130.412 336.915 130.704 c 336.946 130.902 336.962 131.246 336.962 131.735 c 336.962 135.563 l 335.915 135.563 l 335.915 131.782 l 335.915 131.345 335.874 131.022 335.790 130.813 c 335.707 130.605 335.561 130.436 335.353 130.305 c 335.144 130.175 334.900 130.110 334.618 130.110 c 334.170 130.110 333.782 130.253 333.454 130.540 c 333.126 130.826 332.962 131.365 332.962 132.157 c 332.962 135.563 l 331.915 135.563 l h 338.948 135.563 m 338.948 129.345 l 340.011 129.345 l 340.011 135.563 l 338.948 135.563 l h 338.917 127.563 m 339.698 125.923 l 341.089 125.923 l 339.792 127.563 l 338.917 127.563 l h 349.320 133.282 m 350.351 133.423 l 350.236 134.131 349.945 134.688 349.476 135.095 c 349.007 135.501 348.434 135.704 347.757 135.704 c 346.903 135.704 346.218 135.425 345.702 134.868 c 345.187 134.311 344.929 133.511 344.929 132.470 c 344.929 131.803 345.041 131.217 345.265 130.712 c 345.489 130.207 345.827 129.829 346.280 129.579 c 346.734 129.329 347.231 129.204 347.773 129.204 c 348.439 129.204 348.989 129.373 349.421 129.712 c 349.853 130.050 350.132 130.537 350.257 131.173 c 349.226 131.329 l 349.132 130.912 348.960 130.597 348.710 130.384 c 348.460 130.170 348.158 130.063 347.804 130.063 c 347.273 130.063 346.840 130.253 346.507 130.634 c 346.174 131.014 346.007 131.615 346.007 132.438 c 346.007 133.282 346.168 133.891 346.491 134.266 c 346.814 134.641 347.231 134.829 347.741 134.829 c 348.158 134.829 348.504 134.704 348.780 134.454 c 349.056 134.204 349.236 133.813 349.320 133.282 c h 351.210 137.954 m 351.085 136.970 l 351.314 137.032 351.517 137.063 351.695 137.063 c 351.924 137.063 352.109 137.024 352.249 136.946 c 352.390 136.868 352.507 136.761 352.601 136.626 c 352.663 136.511 352.773 136.246 352.929 135.829 c 352.939 135.777 352.971 135.693 353.023 135.579 c 350.648 129.345 l 351.788 129.345 l 353.085 132.938 l 353.252 133.397 353.403 133.881 353.538 134.391 c 353.663 133.902 353.809 133.428 353.976 132.970 c 355.304 129.345 l 356.351 129.345 l 353.991 135.673 l 353.731 136.350 353.533 136.818 353.398 137.079 c 353.210 137.433 352.994 137.691 352.749 137.852 c 352.504 138.014 352.215 138.095 351.882 138.095 c 351.684 138.095 351.460 138.048 351.210 137.954 c h 357.257 135.563 m 357.257 126.970 l 358.320 126.970 l 358.320 131.876 l 360.804 129.345 l 362.179 129.345 l 359.788 131.641 l 362.413 135.563 l 361.116 135.563 l 359.054 132.376 l 358.320 133.095 l 358.320 135.563 l 357.257 135.563 l h 363.226 135.563 m 363.226 126.970 l 364.288 126.970 l 364.288 135.563 l 363.226 135.563 l h 370.001 135.563 m 370.001 134.641 l 369.512 135.350 368.850 135.704 368.017 135.704 c 367.652 135.704 367.311 135.634 366.993 135.493 c 366.676 135.352 366.439 135.175 366.282 134.962 c 366.126 134.748 366.017 134.485 365.954 134.173 c 365.913 133.975 365.892 133.647 365.892 133.188 c 365.892 129.345 l 366.954 129.345 l 366.954 132.798 l 366.954 133.339 366.975 133.709 367.017 133.907 c 367.079 134.178 367.217 134.394 367.431 134.555 c 367.644 134.717 367.913 134.798 368.236 134.798 c 368.548 134.798 368.842 134.717 369.118 134.555 c 369.394 134.394 369.592 134.173 369.712 133.891 c 369.832 133.610 369.892 133.204 369.892 132.673 c 369.892 129.345 l 370.939 129.345 l 370.939 135.563 l 370.001 135.563 l h 372.175 133.704 m 373.206 133.548 l 373.269 133.964 373.433 134.282 373.698 134.501 c 373.964 134.720 374.342 134.829 374.831 134.829 c 375.310 134.829 375.667 134.733 375.902 134.540 c 376.136 134.347 376.253 134.115 376.253 133.845 c 376.253 133.605 376.149 133.417 375.941 133.282 c 375.795 133.188 375.435 133.068 374.862 132.923 c 374.092 132.725 373.558 132.555 373.261 132.415 c 372.964 132.274 372.737 132.079 372.581 131.829 c 372.425 131.579 372.347 131.298 372.347 130.985 c 372.347 130.714 372.409 130.459 372.534 130.220 c 372.659 129.980 372.831 129.782 373.050 129.626 c 373.217 129.511 373.441 129.412 373.722 129.329 c 374.003 129.246 374.310 129.204 374.644 129.204 c 375.123 129.204 375.547 129.274 375.917 129.415 c 376.287 129.555 376.560 129.746 376.737 129.985 c 376.915 130.225 377.034 130.542 377.097 130.938 c 376.066 131.079 l 376.024 130.766 375.891 130.519 375.667 130.337 c 375.443 130.154 375.123 130.063 374.706 130.063 c 374.227 130.063 373.883 130.144 373.675 130.305 c 373.467 130.467 373.362 130.657 373.362 130.876 c 373.362 131.011 373.404 131.131 373.487 131.235 c 373.581 131.350 373.717 131.443 373.894 131.516 c 373.998 131.558 374.310 131.647 374.831 131.782 c 375.581 131.990 376.102 132.157 376.394 132.282 c 376.685 132.407 376.915 132.589 377.081 132.829 c 377.248 133.068 377.331 133.371 377.331 133.735 c 377.331 134.089 377.230 134.420 377.027 134.727 c 376.823 135.035 376.529 135.274 376.144 135.446 c 375.758 135.618 375.321 135.704 374.831 135.704 c 374.019 135.704 373.402 135.535 372.980 135.196 c 372.558 134.858 372.290 134.360 372.175 133.704 c h f .792157 .925490 1.00000 RG 1.60000 M 10.0000 M [ 1.00000 0.00000 0.00000 1.00000 .200000 .498828 ] concat q [ 16.0000 0.00000 0.00000 16.0000 81.0000 124.000 ] concat << /ImageType 1 /Width 16 /Height 16 /BitsPerComponent 8 /Decode [0 1 0 1 0 1] /ImageMatrix [16 0 0 16 0 0] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter >> image Gas\M,69oTq@lL"-OstM^)]a2e3>5\5ZA4@oaEe[WTkW6Ydt'@i"(\6+]:HW+VC,++XRkj4s9n+/HA&n ~> Q [ 1.00000 0.00000 0.00000 1.00000 -63.0000 -59.0000 ] defaultmatrix matrix concatmatrix setmatrix 1 J 1.45000 M [ 0.00000 4.00000 ] 2.00000 d .400000 .400000 .600000 RG newpath 78.2000 125.499 m 78.2000 553.700 l 78.2000 555.909 79.9909 557.700 82.2000 557.700 c 375.800 557.700 l 378.009 557.700 379.800 555.909 379.800 553.700 c 379.800 125.499 l 379.800 123.290 378.009 121.499 375.800 121.499 c 82.2000 121.499 l 79.9909 121.499 78.2000 123.290 78.2000 125.499 c h S 2 J 10.0000 M [ ] 0.00000 d 1.60000 M 10.0000 M [ 1.00000 0.00000 0.00000 1.00000 .200000 .498828 ] concat q [ 16.0000 0.00000 0.00000 16.0000 81.0000 124.000 ] concat << /ImageType 1 /Width 16 /Height 16 /BitsPerComponent 8 /Decode [0 1 0 1 0 1] /ImageMatrix [16 0 0 16 0 0] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter >> image Gas\M,69oTq@lL"-OstM^)]a2e3>5\5ZA4@oaEe[WTkW6Ydt'@i"(\6+]:HW+VC,++XRkj4s9n+/HA&n ~> Q [ 1.00000 0.00000 0.00000 1.00000 -63.0000 -59.0000 ] defaultmatrix matrix concatmatrix setmatrix 0.00000 0.00000 0.00000 RG .713725 .847059 .921569 RG newpath 93.2000 205.437 m 93.2000 426.838 l 93.2000 429.047 94.9909 430.838 97.2000 430.838 c 285.924 430.838 l 288.134 430.838 289.924 429.047 289.924 426.838 c 289.924 205.437 l 289.924 203.228 288.134 201.437 285.924 201.437 c 97.2000 201.437 l 94.9909 201.437 93.2000 203.228 93.2000 205.437 c h f 1.60000 M .600000 .800000 1.00000 RG newpath 93.2000 201.437 m 289.924 201.437 l 289.924 220.138 l 93.2000 220.138 l 93.2000 201.437 l h f .713725 .847059 .921569 RG 10.0000 M 0.00000 0.00000 0.00000 RG newpath 189.253 215.502 m 185.924 206.908 l 187.159 206.908 l 189.393 213.158 l 189.570 213.658 189.721 214.127 189.846 214.564 c 189.982 214.095 190.138 213.627 190.315 213.158 c 192.628 206.908 l 193.784 206.908 l 190.424 215.502 l 189.253 215.502 l h 194.631 217.892 m 194.506 216.908 l 194.736 216.970 194.939 217.002 195.116 217.002 c 195.345 217.002 195.530 216.962 195.671 216.884 c 195.811 216.806 195.928 216.699 196.022 216.564 c 196.085 216.449 196.194 216.184 196.350 215.767 c 196.361 215.715 196.392 215.632 196.444 215.517 c 194.069 209.283 l 195.210 209.283 l 196.506 212.877 l 196.673 213.335 196.824 213.819 196.960 214.330 c 197.085 213.840 197.230 213.366 197.397 212.908 c 198.725 209.283 l 199.772 209.283 l 197.413 215.611 l 197.152 216.288 196.954 216.757 196.819 217.017 c 196.631 217.371 196.415 217.629 196.171 217.791 c 195.926 217.952 195.637 218.033 195.303 218.033 c 195.105 218.033 194.881 217.986 194.631 217.892 c h 200.663 208.142 m 200.663 206.908 l 201.725 206.908 l 201.725 208.142 l 200.663 208.142 l h 199.335 217.923 m 199.522 217.017 l 199.741 217.069 199.908 217.095 200.022 217.095 c 200.241 217.095 200.402 217.025 200.506 216.884 c 200.611 216.744 200.663 216.387 200.663 215.814 c 200.663 209.283 l 201.725 209.283 l 201.725 215.845 l 201.725 216.606 201.626 217.137 201.428 217.439 c 201.168 217.835 200.746 218.033 200.163 218.033 c 199.871 218.033 199.595 217.996 199.335 217.923 c h 207.594 213.502 m 208.688 213.627 l 208.521 214.262 208.204 214.757 207.735 215.111 c 207.266 215.465 206.673 215.642 205.954 215.642 c 205.048 215.642 204.326 215.361 203.790 214.798 c 203.253 214.236 202.985 213.449 202.985 212.439 c 202.985 211.397 203.256 210.587 203.798 210.009 c 204.339 209.431 205.037 209.142 205.891 209.142 c 206.725 209.142 207.404 209.423 207.930 209.986 c 208.456 210.548 208.719 211.345 208.719 212.377 c 208.719 212.439 208.719 212.533 208.719 212.658 c 204.079 212.658 l 204.120 213.345 204.313 213.869 204.657 214.228 c 205.001 214.587 205.433 214.767 205.954 214.767 c 206.339 214.767 206.670 214.666 206.946 214.462 c 207.222 214.259 207.438 213.939 207.594 213.502 c h 204.141 211.798 m 207.610 211.798 l 207.568 211.267 207.438 210.871 207.219 210.611 c 206.876 210.205 206.438 210.002 205.907 210.002 c 205.417 210.002 205.008 210.163 204.680 210.486 c 204.352 210.809 204.173 211.246 204.141 211.798 c h 214.049 215.502 m 214.049 214.720 l 213.654 215.335 213.075 215.642 212.315 215.642 c 211.815 215.642 211.357 215.504 210.940 215.228 c 210.523 214.952 210.200 214.569 209.971 214.080 c 209.742 213.590 209.628 213.028 209.628 212.392 c 209.628 211.778 209.732 211.215 209.940 210.705 c 210.148 210.194 210.461 209.806 210.878 209.541 c 211.294 209.275 211.758 209.142 212.268 209.142 c 212.643 209.142 212.977 209.220 213.268 209.377 c 213.560 209.533 213.799 209.736 213.987 209.986 c 213.987 206.908 l 215.034 206.908 l 215.034 215.502 l 214.049 215.502 l h 210.721 212.392 m 210.721 213.194 210.888 213.791 211.221 214.181 c 211.555 214.572 211.950 214.767 212.409 214.767 c 212.867 214.767 213.258 214.580 213.581 214.205 c 213.904 213.830 214.065 213.257 214.065 212.486 c 214.065 211.632 213.901 211.007 213.573 210.611 c 213.245 210.215 212.841 210.017 212.362 210.017 c 211.893 210.017 211.503 210.207 211.190 210.587 c 210.878 210.968 210.721 211.569 210.721 212.392 c h 216.692 215.502 m 216.692 209.283 l 217.630 209.283 l 217.630 210.158 l 218.088 209.481 218.749 209.142 219.614 209.142 c 219.989 209.142 220.335 209.210 220.653 209.345 c 220.971 209.481 221.208 209.658 221.364 209.877 c 221.520 210.095 221.630 210.350 221.692 210.642 c 221.723 210.840 221.739 211.184 221.739 211.673 c 221.739 215.502 l 220.692 215.502 l 220.692 211.720 l 220.692 211.283 220.650 210.960 220.567 210.752 c 220.484 210.543 220.338 210.374 220.130 210.244 c 219.921 210.113 219.676 210.048 219.395 210.048 c 218.947 210.048 218.559 210.192 218.231 210.478 c 217.903 210.765 217.739 211.304 217.739 212.095 c 217.739 215.502 l 216.692 215.502 l h 227.428 214.736 m 227.033 215.069 226.655 215.304 226.296 215.439 c 225.936 215.574 225.548 215.642 225.131 215.642 c 224.444 215.642 223.918 215.475 223.553 215.142 c 223.189 214.809 223.006 214.382 223.006 213.861 c 223.006 213.559 223.074 213.280 223.210 213.025 c 223.345 212.770 223.527 212.567 223.756 212.416 c 223.986 212.265 224.241 212.153 224.522 212.080 c 224.720 212.017 225.033 211.960 225.460 211.908 c 226.303 211.814 226.928 211.694 227.335 211.548 c 227.335 211.403 227.335 211.314 227.335 211.283 c 227.335 210.845 227.236 210.538 227.038 210.361 c 226.767 210.132 226.366 210.017 225.835 210.017 c 225.345 210.017 224.980 210.103 224.741 210.275 c 224.501 210.447 224.324 210.752 224.210 211.189 c 223.178 211.048 l 223.272 210.611 223.428 210.257 223.647 209.986 c 223.866 209.715 224.178 209.507 224.585 209.361 c 224.991 209.215 225.460 209.142 225.991 209.142 c 226.522 209.142 226.954 209.205 227.288 209.330 c 227.621 209.455 227.866 209.611 228.022 209.798 c 228.178 209.986 228.288 210.225 228.350 210.517 c 228.381 210.694 228.397 211.017 228.397 211.486 c 228.397 212.892 l 228.397 213.871 228.421 214.491 228.467 214.752 c 228.514 215.012 228.605 215.262 228.741 215.502 c 227.631 215.502 l 227.527 215.283 227.460 215.028 227.428 214.736 c h 227.335 212.377 m 226.949 212.533 226.376 212.668 225.616 212.783 c 225.178 212.845 224.871 212.916 224.694 212.994 c 224.517 213.072 224.379 213.184 224.280 213.330 c 224.181 213.475 224.131 213.642 224.131 213.830 c 224.131 214.111 224.238 214.345 224.452 214.533 c 224.665 214.720 224.975 214.814 225.381 214.814 c 225.788 214.814 226.150 214.725 226.467 214.548 c 226.785 214.371 227.017 214.127 227.163 213.814 c 227.277 213.574 227.335 213.225 227.335 212.767 c 227.335 212.377 l h 224.694 207.502 m 225.475 205.861 l 226.866 205.861 l 225.569 207.502 l 224.694 207.502 l h 231.758 215.502 m 229.399 209.283 l 230.508 209.283 l 231.852 213.002 l 231.988 213.408 232.118 213.824 232.243 214.252 c 232.337 213.929 232.467 213.538 232.633 213.080 c 234.024 209.283 l 235.102 209.283 l 232.743 215.502 l 231.758 215.502 l h 240.102 214.736 m 239.706 215.069 239.329 215.304 238.969 215.439 c 238.610 215.574 238.222 215.642 237.805 215.642 c 237.118 215.642 236.592 215.475 236.227 215.142 c 235.863 214.809 235.680 214.382 235.680 213.861 c 235.680 213.559 235.748 213.280 235.883 213.025 c 236.019 212.770 236.201 212.567 236.430 212.416 c 236.659 212.265 236.915 212.153 237.196 212.080 c 237.394 212.017 237.706 211.960 238.133 211.908 c 238.977 211.814 239.602 211.694 240.008 211.548 c 240.008 211.403 240.008 211.314 240.008 211.283 c 240.008 210.845 239.909 210.538 239.712 210.361 c 239.441 210.132 239.040 210.017 238.508 210.017 c 238.019 210.017 237.654 210.103 237.415 210.275 c 237.175 210.447 236.998 210.752 236.883 211.189 c 235.852 211.048 l 235.946 210.611 236.102 210.257 236.321 209.986 c 236.540 209.715 236.852 209.507 237.258 209.361 c 237.665 209.215 238.133 209.142 238.665 209.142 c 239.196 209.142 239.628 209.205 239.962 209.330 c 240.295 209.455 240.540 209.611 240.696 209.798 c 240.852 209.986 240.962 210.225 241.024 210.517 c 241.055 210.694 241.071 211.017 241.071 211.486 c 241.071 212.892 l 241.071 213.871 241.094 214.491 241.141 214.752 c 241.188 215.012 241.279 215.262 241.415 215.502 c 240.305 215.502 l 240.201 215.283 240.133 215.028 240.102 214.736 c h 240.008 212.377 m 239.623 212.533 239.050 212.668 238.290 212.783 c 237.852 212.845 237.545 212.916 237.368 212.994 c 237.191 213.072 237.053 213.184 236.954 213.330 c 236.855 213.475 236.805 213.642 236.805 213.830 c 236.805 214.111 236.912 214.345 237.126 214.533 c 237.339 214.720 237.649 214.814 238.055 214.814 c 238.462 214.814 238.824 214.725 239.141 214.548 c 239.459 214.371 239.691 214.127 239.837 213.814 c 239.951 213.574 240.008 213.225 240.008 212.767 c 240.008 212.377 l h 246.776 213.220 m 247.807 213.361 l 247.693 214.069 247.401 214.627 246.932 215.033 c 246.464 215.439 245.891 215.642 245.214 215.642 c 244.359 215.642 243.674 215.363 243.159 214.806 c 242.643 214.249 242.385 213.449 242.385 212.408 c 242.385 211.741 242.497 211.155 242.721 210.650 c 242.945 210.145 243.284 209.767 243.737 209.517 c 244.190 209.267 244.687 209.142 245.229 209.142 c 245.896 209.142 246.445 209.311 246.878 209.650 c 247.310 209.988 247.589 210.475 247.714 211.111 c 246.682 211.267 l 246.589 210.850 246.417 210.535 246.167 210.322 c 245.917 210.108 245.615 210.002 245.260 210.002 c 244.729 210.002 244.297 210.192 243.964 210.572 c 243.630 210.952 243.464 211.554 243.464 212.377 c 243.464 213.220 243.625 213.830 243.948 214.205 c 244.271 214.580 244.687 214.767 245.198 214.767 c 245.615 214.767 245.961 214.642 246.237 214.392 c 246.513 214.142 246.693 213.752 246.776 213.220 c h 249.073 215.502 m 249.073 209.283 l 250.135 209.283 l 250.135 215.502 l 249.073 215.502 l h 249.042 207.502 m 249.823 205.861 l 251.214 205.861 l 249.917 207.502 l 249.042 207.502 l h 259.444 213.220 m 260.475 213.361 l 260.361 214.069 260.069 214.627 259.600 215.033 c 259.131 215.439 258.559 215.642 257.881 215.642 c 257.027 215.642 256.342 215.363 255.827 214.806 c 255.311 214.249 255.053 213.449 255.053 212.408 c 255.053 211.741 255.165 211.155 255.389 210.650 c 255.613 210.145 255.952 209.767 256.405 209.517 c 256.858 209.267 257.355 209.142 257.897 209.142 c 258.564 209.142 259.113 209.311 259.546 209.650 c 259.978 209.988 260.256 210.475 260.381 211.111 c 259.350 211.267 l 259.256 210.850 259.085 210.535 258.835 210.322 c 258.585 210.108 258.283 210.002 257.928 210.002 c 257.397 210.002 256.965 210.192 256.631 210.572 c 256.298 210.952 256.131 211.554 256.131 212.377 c 256.131 213.220 256.293 213.830 256.616 214.205 c 256.939 214.580 257.355 214.767 257.866 214.767 c 258.283 214.767 258.629 214.642 258.905 214.392 c 259.181 214.142 259.361 213.752 259.444 213.220 c h 261.335 217.892 m 261.210 216.908 l 261.439 216.970 261.642 217.002 261.819 217.002 c 262.048 217.002 262.233 216.962 262.374 216.884 c 262.514 216.806 262.631 216.699 262.725 216.564 c 262.788 216.449 262.897 216.184 263.053 215.767 c 263.064 215.715 263.095 215.632 263.147 215.517 c 260.772 209.283 l 261.913 209.283 l 263.210 212.877 l 263.376 213.335 263.527 213.819 263.663 214.330 c 263.788 213.840 263.934 213.366 264.100 212.908 c 265.428 209.283 l 266.475 209.283 l 264.116 215.611 l 263.855 216.288 263.658 216.757 263.522 217.017 c 263.335 217.371 263.118 217.629 262.874 217.791 c 262.629 217.952 262.340 218.033 262.006 218.033 c 261.809 218.033 261.585 217.986 261.335 217.892 c h 267.381 215.502 m 267.381 206.908 l 268.444 206.908 l 268.444 211.814 l 270.928 209.283 l 272.303 209.283 l 269.913 211.580 l 272.538 215.502 l 271.241 215.502 l 269.178 212.314 l 268.444 213.033 l 268.444 215.502 l 267.381 215.502 l h 273.350 215.502 m 273.350 206.908 l 274.413 206.908 l 274.413 215.502 l 273.350 215.502 l h 280.126 215.502 m 280.126 214.580 l 279.636 215.288 278.975 215.642 278.141 215.642 c 277.777 215.642 277.436 215.572 277.118 215.431 c 276.800 215.291 276.563 215.113 276.407 214.900 c 276.251 214.686 276.141 214.423 276.079 214.111 c 276.037 213.913 276.016 213.585 276.016 213.127 c 276.016 209.283 l 277.079 209.283 l 277.079 212.736 l 277.079 213.278 277.100 213.647 277.141 213.845 c 277.204 214.116 277.342 214.332 277.555 214.494 c 277.769 214.655 278.037 214.736 278.360 214.736 c 278.672 214.736 278.967 214.655 279.243 214.494 c 279.519 214.332 279.717 214.111 279.837 213.830 c 279.956 213.548 280.016 213.142 280.016 212.611 c 280.016 209.283 l 281.063 209.283 l 281.063 215.502 l 280.126 215.502 l h 282.299 213.642 m 283.331 213.486 l 283.393 213.903 283.557 214.220 283.823 214.439 c 284.089 214.658 284.466 214.767 284.956 214.767 c 285.435 214.767 285.792 214.671 286.026 214.478 c 286.260 214.285 286.378 214.054 286.378 213.783 c 286.378 213.543 286.273 213.356 286.065 213.220 c 285.919 213.127 285.560 213.007 284.987 212.861 c 284.216 212.663 283.682 212.494 283.385 212.353 c 283.089 212.212 282.862 212.017 282.706 211.767 c 282.549 211.517 282.471 211.236 282.471 210.923 c 282.471 210.653 282.534 210.397 282.659 210.158 c 282.784 209.918 282.956 209.720 283.174 209.564 c 283.341 209.449 283.565 209.350 283.846 209.267 c 284.128 209.184 284.435 209.142 284.768 209.142 c 285.247 209.142 285.672 209.212 286.042 209.353 c 286.411 209.494 286.685 209.684 286.862 209.923 c 287.039 210.163 287.159 210.481 287.221 210.877 c 286.190 211.017 l 286.148 210.705 286.016 210.457 285.792 210.275 c 285.568 210.093 285.247 210.002 284.831 210.002 c 284.352 210.002 284.008 210.082 283.799 210.244 c 283.591 210.405 283.487 210.595 283.487 210.814 c 283.487 210.949 283.529 211.069 283.612 211.173 c 283.706 211.288 283.841 211.382 284.018 211.455 c 284.122 211.496 284.435 211.585 284.956 211.720 c 285.706 211.929 286.227 212.095 286.518 212.220 c 286.810 212.345 287.039 212.528 287.206 212.767 c 287.372 213.007 287.456 213.309 287.456 213.673 c 287.456 214.028 287.354 214.358 287.151 214.666 c 286.948 214.973 286.654 215.212 286.268 215.384 c 285.883 215.556 285.445 215.642 284.956 215.642 c 284.143 215.642 283.526 215.473 283.104 215.134 c 282.682 214.796 282.414 214.298 282.299 213.642 c h f .713725 .847059 .921569 RG 1.60000 M 10.0000 M [ 1.00000 0.00000 0.00000 1.00000 .200000 .437061 ] concat q [ 16.0000 0.00000 0.00000 16.0000 96.0000 204.000 ] concat << /ImageType 1 /Width 16 /Height 16 /BitsPerComponent 8 /Decode [0 1 0 1 0 1] /ImageMatrix [16 0 0 16 0 0] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter >> image Gas\M,69oTq@lL"-OstM^)]a2e3>5\5ZA4@oaEe[WTkW6Ydt'@i"(\6+]:HW+VC,++XRkj4s9n+/HA&n ~> Q [ 1.00000 0.00000 0.00000 1.00000 -63.0000 -59.0000 ] defaultmatrix matrix concatmatrix setmatrix 1 J 1.45000 M [ 0.00000 4.00000 ] 2.00000 d .400000 .400000 .600000 RG newpath 93.2000 205.437 m 93.2000 426.838 l 93.2000 429.047 94.9909 430.838 97.2000 430.838 c 285.924 430.838 l 288.134 430.838 289.924 429.047 289.924 426.838 c 289.924 205.437 l 289.924 203.228 288.134 201.437 285.924 201.437 c 97.2000 201.437 l 94.9909 201.437 93.2000 203.228 93.2000 205.437 c h S 2 J 10.0000 M [ ] 0.00000 d 1.60000 M 10.0000 M [ 1.00000 0.00000 0.00000 1.00000 .200000 .437061 ] concat q [ 16.0000 0.00000 0.00000 16.0000 96.0000 204.000 ] concat << /ImageType 1 /Width 16 /Height 16 /BitsPerComponent 8 /Decode [0 1 0 1 0 1] /ImageMatrix [16 0 0 16 0 0] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter >> image Gas\M,69oTq@lL"-OstM^)]a2e3>5\5ZA4@oaEe[WTkW6Ydt'@i"(\6+]:HW+VC,++XRkj4s9n+/HA&n ~> Q [ 1.00000 0.00000 0.00000 1.00000 -63.0000 -59.0000 ] defaultmatrix matrix concatmatrix setmatrix 0.00000 0.00000 0.00000 RG q 0 J 1.45000 M 1.00000 1.00000 1.00000 RG newpath 119.000 235.138 m 199.000 235.138 l 199.000 270.138 l 119.000 270.138 l h f 0.00000 0.00000 0.00000 RG newpath 119.000 235.138 m 199.000 235.138 l 199.000 270.138 l 119.000 270.138 l h S 2 J 10.0000 M 1.60000 M 10.0000 M newpath 129.174 256.174 m 129.174 249.736 l 131.393 249.736 l 131.903 249.736 132.289 249.767 132.549 249.830 c 132.914 249.913 133.226 250.064 133.487 250.283 c 133.830 250.575 134.086 250.942 134.252 251.385 c 134.419 251.827 134.502 252.340 134.502 252.924 c 134.502 253.413 134.445 253.846 134.330 254.221 c 134.216 254.596 134.070 254.908 133.893 255.158 c 133.716 255.408 133.520 255.603 133.307 255.744 c 133.093 255.885 132.838 255.991 132.541 256.064 c 132.244 256.137 131.898 256.174 131.502 256.174 c 129.174 256.174 l h 130.033 255.408 m 131.408 255.408 l 131.836 255.408 132.169 255.369 132.408 255.291 c 132.648 255.213 132.841 255.101 132.987 254.955 c 133.184 254.757 133.341 254.486 133.455 254.142 c 133.570 253.799 133.627 253.387 133.627 252.908 c 133.627 252.231 133.518 251.713 133.299 251.353 c 133.080 250.994 132.809 250.752 132.487 250.627 c 132.257 250.533 131.893 250.486 131.393 250.486 c 130.033 250.486 l 130.033 255.408 l h 135.283 253.846 m 135.283 252.981 135.523 252.340 136.002 251.924 c 136.408 251.580 136.898 251.408 137.470 251.408 c 138.116 251.408 138.642 251.616 139.049 252.033 c 139.455 252.450 139.658 253.028 139.658 253.767 c 139.658 254.372 139.567 254.846 139.385 255.189 c 139.202 255.533 138.939 255.801 138.595 255.994 c 138.252 256.187 137.877 256.283 137.470 256.283 c 136.814 256.283 136.286 256.072 135.885 255.650 c 135.483 255.228 135.283 254.627 135.283 253.846 c h 136.095 253.846 m 136.095 254.439 136.226 254.885 136.486 255.181 c 136.747 255.478 137.075 255.627 137.470 255.627 c 137.866 255.627 138.194 255.478 138.455 255.181 c 138.715 254.885 138.845 254.429 138.845 253.814 c 138.845 253.241 138.715 252.804 138.455 252.502 c 138.194 252.200 137.866 252.049 137.470 252.049 c 137.075 252.049 136.747 252.197 136.486 252.494 c 136.226 252.791 136.095 253.241 136.095 253.846 c h 140.570 256.174 m 140.570 251.502 l 141.288 251.502 l 141.288 252.221 l 141.465 251.887 141.632 251.668 141.788 251.564 c 141.945 251.460 142.116 251.408 142.304 251.408 c 142.564 251.408 142.835 251.491 143.116 251.658 c 142.835 252.392 l 142.648 252.278 142.455 252.221 142.257 252.221 c 142.090 252.221 141.937 252.273 141.796 252.377 c 141.656 252.481 141.554 252.627 141.491 252.814 c 141.408 253.096 141.366 253.403 141.366 253.736 c 141.366 256.174 l 140.570 256.174 l h 146.645 256.174 m 146.645 255.486 l 146.280 256.017 145.785 256.283 145.160 256.283 c 144.890 256.283 144.634 256.228 144.395 256.119 c 144.155 256.010 143.976 255.877 143.856 255.721 c 143.736 255.564 143.655 255.372 143.614 255.142 c 143.582 254.986 143.567 254.736 143.567 254.392 c 143.567 251.502 l 144.348 251.502 l 144.348 254.096 l 144.348 254.512 144.369 254.788 144.410 254.924 c 144.452 255.132 144.554 255.296 144.715 255.416 c 144.877 255.536 145.077 255.596 145.317 255.596 c 145.556 255.596 145.780 255.536 145.989 255.416 c 146.197 255.296 146.343 255.132 146.426 254.924 c 146.509 254.715 146.551 254.408 146.551 254.002 c 146.551 251.502 l 147.348 251.502 l 147.348 256.174 l 146.645 256.174 l h 151.635 254.471 m 152.416 254.564 l 152.332 255.106 152.114 255.528 151.760 255.830 c 151.405 256.132 150.973 256.283 150.463 256.283 c 149.827 256.283 149.317 256.075 148.931 255.658 c 148.546 255.241 148.353 254.642 148.353 253.861 c 148.353 253.351 148.437 252.908 148.603 252.533 c 148.770 252.158 149.023 251.877 149.361 251.689 c 149.700 251.502 150.072 251.408 150.478 251.408 c 150.978 251.408 151.390 251.536 151.713 251.791 c 152.036 252.046 152.244 252.408 152.338 252.877 c 151.572 253.002 l 151.499 252.689 151.369 252.452 151.181 252.291 c 150.994 252.129 150.770 252.049 150.510 252.049 c 150.103 252.049 149.778 252.192 149.533 252.478 c 149.288 252.765 149.166 253.215 149.166 253.830 c 149.166 254.465 149.286 254.924 149.525 255.205 c 149.765 255.486 150.077 255.627 150.463 255.627 c 150.775 255.627 151.036 255.533 151.244 255.346 c 151.452 255.158 151.582 254.866 151.635 254.471 c h 150.572 249.689 m 151.056 248.939 l 151.947 248.939 l 150.963 250.174 l 150.119 250.174 l 149.166 248.939 l 150.072 248.939 l 150.572 249.689 l h 156.275 254.674 m 157.103 254.767 l 156.968 255.247 156.726 255.619 156.377 255.885 c 156.028 256.150 155.582 256.283 155.041 256.283 c 154.364 256.283 153.825 256.072 153.424 255.650 c 153.023 255.228 152.822 254.637 152.822 253.877 c 152.822 253.096 153.025 252.489 153.431 252.056 c 153.838 251.624 154.364 251.408 155.010 251.408 c 155.635 251.408 156.142 251.619 156.533 252.041 c 156.924 252.463 157.119 253.059 157.119 253.830 c 157.119 253.882 157.119 253.955 157.119 254.049 c 153.635 254.049 l 153.666 254.559 153.812 254.950 154.072 255.221 c 154.332 255.491 154.661 255.627 155.056 255.627 c 155.348 255.627 155.595 255.551 155.799 255.400 c 156.002 255.249 156.161 255.007 156.275 254.674 c h 153.681 253.392 m 156.291 253.392 l 156.260 252.997 156.161 252.700 155.994 252.502 c 155.744 252.200 155.416 252.049 155.010 252.049 c 154.645 252.049 154.340 252.171 154.095 252.416 c 153.851 252.661 153.713 252.986 153.681 253.392 c h 158.093 256.174 m 158.093 251.502 l 158.812 251.502 l 158.812 252.174 l 159.145 251.663 159.640 251.408 160.296 251.408 c 160.577 251.408 160.835 251.457 161.070 251.556 c 161.304 251.655 161.478 251.786 161.593 251.947 c 161.708 252.109 161.791 252.304 161.843 252.533 c 161.874 252.679 161.890 252.934 161.890 253.299 c 161.890 256.174 l 161.093 256.174 l 161.093 253.330 l 161.093 253.007 161.062 252.767 160.999 252.611 c 160.937 252.455 160.827 252.327 160.671 252.228 c 160.515 252.129 160.333 252.080 160.124 252.080 c 159.791 252.080 159.502 252.187 159.257 252.400 c 159.012 252.614 158.890 253.023 158.890 253.627 c 158.890 256.174 l 158.093 256.174 l h 163.380 256.174 m 163.380 251.502 l 164.161 251.502 l 164.161 256.174 l 163.380 256.174 l h 162.848 250.174 m 163.442 248.939 l 164.473 248.939 l 163.505 250.174 l 162.848 250.174 l h 167.677 256.174 m 167.677 255.533 l 170.646 252.127 l 170.313 252.137 170.016 252.142 169.756 252.142 c 167.865 252.142 l 167.865 251.502 l 171.677 251.502 l 171.677 252.033 l 169.146 254.986 l 168.662 255.533 l 169.016 255.502 169.349 255.486 169.662 255.486 c 171.818 255.486 l 171.818 256.174 l 167.677 256.174 l h 172.599 257.955 m 172.599 251.502 l 173.318 251.502 l 173.318 252.111 l 173.485 251.872 173.675 251.694 173.888 251.580 c 174.102 251.465 174.365 251.408 174.677 251.408 c 175.073 251.408 175.422 251.510 175.724 251.713 c 176.026 251.916 176.256 252.205 176.412 252.580 c 176.568 252.955 176.646 253.361 176.646 253.799 c 176.646 254.278 176.560 254.710 176.388 255.096 c 176.217 255.481 175.969 255.775 175.646 255.978 c 175.323 256.181 174.980 256.283 174.615 256.283 c 174.355 256.283 174.120 256.226 173.912 256.111 c 173.704 255.997 173.532 255.856 173.396 255.689 c 173.396 257.955 l 172.599 257.955 l h 173.318 253.861 m 173.318 254.465 173.441 254.911 173.685 255.197 c 173.930 255.484 174.224 255.627 174.568 255.627 c 174.912 255.627 175.211 255.478 175.467 255.181 c 175.722 254.885 175.849 254.424 175.849 253.799 c 175.849 253.205 175.727 252.760 175.482 252.463 c 175.237 252.166 174.943 252.017 174.599 252.017 c 174.266 252.017 173.969 252.176 173.709 252.494 c 173.448 252.812 173.318 253.267 173.318 253.861 c h 177.589 256.174 m 177.589 251.502 l 178.308 251.502 l 178.308 252.221 l 178.485 251.887 178.652 251.668 178.808 251.564 c 178.964 251.460 179.136 251.408 179.323 251.408 c 179.584 251.408 179.855 251.491 180.136 251.658 c 179.855 252.392 l 179.667 252.278 179.475 252.221 179.277 252.221 c 179.110 252.221 178.956 252.273 178.816 252.377 c 178.675 252.481 178.573 252.627 178.511 252.814 c 178.428 253.096 178.386 253.403 178.386 253.736 c 178.386 256.174 l 177.589 256.174 l h 183.649 255.596 m 183.357 255.846 183.076 256.023 182.805 256.127 c 182.534 256.231 182.242 256.283 181.930 256.283 c 181.420 256.283 181.026 256.158 180.750 255.908 c 180.474 255.658 180.336 255.335 180.336 254.939 c 180.336 254.710 180.388 254.502 180.492 254.314 c 180.597 254.127 180.732 253.976 180.899 253.861 c 181.065 253.747 181.253 253.658 181.461 253.596 c 181.617 253.564 181.852 253.528 182.164 253.486 c 182.810 253.413 183.284 253.319 183.586 253.205 c 183.586 253.101 183.586 253.033 183.586 253.002 c 183.586 252.679 183.513 252.455 183.367 252.330 c 183.159 252.142 182.857 252.049 182.461 252.049 c 182.086 252.049 181.810 252.114 181.633 252.244 c 181.456 252.374 181.326 252.606 181.242 252.939 c 180.477 252.846 l 180.539 252.512 180.651 252.244 180.813 252.041 c 180.974 251.838 181.209 251.681 181.516 251.572 c 181.823 251.463 182.175 251.408 182.571 251.408 c 182.977 251.408 183.302 251.455 183.547 251.549 c 183.792 251.642 183.974 251.760 184.094 251.900 c 184.214 252.041 184.295 252.221 184.336 252.439 c 184.367 252.575 184.383 252.814 184.383 253.158 c 184.383 254.221 l 184.383 254.950 184.399 255.413 184.430 255.611 c 184.461 255.809 184.529 255.997 184.633 256.174 c 183.805 256.174 l 183.722 256.007 183.670 255.814 183.649 255.596 c h 183.586 253.830 m 183.295 253.944 182.862 254.043 182.289 254.127 c 181.966 254.179 181.737 254.234 181.602 254.291 c 181.466 254.348 181.362 254.434 181.289 254.549 c 181.216 254.663 181.180 254.788 181.180 254.924 c 181.180 255.132 181.258 255.306 181.414 255.447 c 181.571 255.588 181.805 255.658 182.117 255.658 c 182.420 255.658 182.690 255.590 182.930 255.455 c 183.170 255.319 183.347 255.137 183.461 254.908 c 183.545 254.731 183.586 254.471 183.586 254.127 c 183.586 253.830 l h 182.352 250.174 m 182.946 248.939 l 183.977 248.939 l 183.008 250.174 l 182.352 250.174 l h 186.904 256.174 m 185.123 251.502 l 185.967 251.502 l 186.967 254.299 l 187.071 254.601 187.170 254.913 187.263 255.236 c 187.336 254.997 187.435 254.705 187.560 254.361 c 188.592 251.502 l 189.404 251.502 l 187.638 256.174 l 186.904 256.174 l h f Q q 0 J 1.45000 M 1.00000 1.00000 1.00000 RG newpath 119.000 305.138 m 199.000 305.138 l 199.000 340.138 l 119.000 340.138 l h f 0.00000 0.00000 0.00000 RG newpath 119.000 305.138 m 199.000 305.138 l 199.000 340.138 l 119.000 340.138 l h S 2 J 10.0000 M 1.60000 M 10.0000 M newpath 133.270 326.174 m 130.786 319.736 l 131.708 319.736 l 133.379 324.408 l 133.515 324.783 133.624 325.137 133.708 325.471 c 133.812 325.116 133.931 324.762 134.067 324.408 c 135.801 319.736 l 136.676 319.736 l 134.145 326.174 l 133.270 326.174 l h 137.304 327.971 m 137.210 327.236 l 137.388 327.278 137.539 327.299 137.664 327.299 c 137.841 327.299 137.981 327.270 138.085 327.213 c 138.190 327.155 138.278 327.075 138.351 326.971 c 138.393 326.887 138.471 326.689 138.585 326.377 c 138.606 326.335 138.632 326.273 138.664 326.189 c 136.882 321.502 l 137.742 321.502 l 138.710 324.205 l 138.835 324.549 138.950 324.908 139.054 325.283 c 139.138 324.929 139.242 324.575 139.367 324.221 c 140.367 321.502 l 141.164 321.502 l 139.382 326.252 l 139.195 326.762 139.049 327.116 138.945 327.314 c 138.799 327.575 138.638 327.765 138.460 327.885 c 138.283 328.004 138.065 328.064 137.804 328.064 c 137.658 328.064 137.492 328.033 137.304 327.971 c h 141.523 324.783 m 142.304 324.658 l 142.346 324.971 142.468 325.210 142.671 325.377 c 142.875 325.543 143.153 325.627 143.507 325.627 c 143.872 325.627 144.143 325.554 144.320 325.408 c 144.497 325.262 144.585 325.090 144.585 324.892 c 144.585 324.705 144.507 324.564 144.351 324.471 c 144.236 324.398 143.966 324.304 143.539 324.189 c 142.955 324.043 142.552 323.918 142.328 323.814 c 142.104 323.710 141.934 323.564 141.820 323.377 c 141.705 323.189 141.648 322.981 141.648 322.752 c 141.648 322.543 141.695 322.351 141.789 322.174 c 141.882 321.997 142.013 321.846 142.179 321.721 c 142.304 321.637 142.473 321.564 142.687 321.502 c 142.901 321.439 143.127 321.408 143.367 321.408 c 143.731 321.408 144.052 321.460 144.328 321.564 c 144.604 321.668 144.809 321.809 144.945 321.986 c 145.080 322.163 145.174 322.403 145.226 322.705 c 144.445 322.814 l 144.414 322.575 144.312 322.387 144.140 322.252 c 143.968 322.116 143.731 322.049 143.429 322.049 c 143.065 322.049 142.804 322.109 142.648 322.228 c 142.492 322.348 142.414 322.491 142.414 322.658 c 142.414 322.762 142.445 322.851 142.507 322.924 c 142.570 323.017 142.674 323.090 142.820 323.142 c 142.893 323.174 143.122 323.241 143.507 323.346 c 144.070 323.491 144.463 323.611 144.687 323.705 c 144.911 323.799 145.085 323.937 145.210 324.119 c 145.335 324.301 145.398 324.528 145.398 324.799 c 145.398 325.069 145.320 325.319 145.164 325.549 c 145.007 325.778 144.786 325.957 144.500 326.088 c 144.213 326.218 143.882 326.283 143.507 326.283 c 142.903 326.283 142.442 326.155 142.125 325.900 c 141.807 325.645 141.606 325.273 141.523 324.783 c h 146.617 326.174 m 146.617 321.502 l 147.398 321.502 l 147.398 326.174 l 146.617 326.174 l h 146.085 320.174 m 146.679 318.939 l 147.710 318.939 l 146.742 320.174 l 146.085 320.174 l h 148.820 326.174 m 148.820 319.736 l 149.602 319.736 l 149.602 326.174 l 148.820 326.174 l h 153.882 325.596 m 153.591 325.846 153.309 326.023 153.039 326.127 c 152.768 326.231 152.476 326.283 152.164 326.283 c 151.653 326.283 151.260 326.158 150.984 325.908 c 150.708 325.658 150.570 325.335 150.570 324.939 c 150.570 324.710 150.622 324.502 150.726 324.314 c 150.830 324.127 150.966 323.976 151.132 323.861 c 151.299 323.747 151.486 323.658 151.695 323.596 c 151.851 323.564 152.085 323.528 152.398 323.486 c 153.044 323.413 153.518 323.319 153.820 323.205 c 153.820 323.101 153.820 323.033 153.820 323.002 c 153.820 322.679 153.747 322.455 153.601 322.330 c 153.393 322.142 153.091 322.049 152.695 322.049 c 152.320 322.049 152.044 322.114 151.867 322.244 c 151.690 322.374 151.559 322.606 151.476 322.939 c 150.710 322.846 l 150.773 322.512 150.885 322.244 151.046 322.041 c 151.208 321.838 151.442 321.681 151.750 321.572 c 152.057 321.463 152.408 321.408 152.804 321.408 c 153.210 321.408 153.536 321.455 153.781 321.549 c 154.026 321.642 154.208 321.760 154.328 321.900 c 154.447 322.041 154.528 322.221 154.570 322.439 c 154.601 322.575 154.617 322.814 154.617 323.158 c 154.617 324.221 l 154.617 324.950 154.632 325.413 154.664 325.611 c 154.695 325.809 154.763 325.997 154.867 326.174 c 154.039 326.174 l 153.955 326.007 153.903 325.814 153.882 325.596 c h 153.820 323.830 m 153.528 323.944 153.096 324.043 152.523 324.127 c 152.200 324.179 151.971 324.234 151.835 324.291 c 151.700 324.348 151.596 324.434 151.523 324.549 c 151.450 324.663 151.414 324.788 151.414 324.924 c 151.414 325.132 151.492 325.306 151.648 325.447 c 151.804 325.588 152.039 325.658 152.351 325.658 c 152.653 325.658 152.924 325.590 153.164 325.455 c 153.403 325.319 153.580 325.137 153.695 324.908 c 153.778 324.731 153.820 324.471 153.820 324.127 c 153.820 323.830 l h 152.585 320.174 m 153.179 318.939 l 154.210 318.939 l 153.242 320.174 l 152.585 320.174 l h 155.841 326.174 m 155.841 321.502 l 156.560 321.502 l 156.560 322.174 l 156.893 321.663 157.388 321.408 158.044 321.408 c 158.325 321.408 158.583 321.457 158.817 321.556 c 159.052 321.655 159.226 321.786 159.341 321.947 c 159.455 322.109 159.539 322.304 159.591 322.533 c 159.622 322.679 159.638 322.934 159.638 323.299 c 159.638 326.174 l 158.841 326.174 l 158.841 323.330 l 158.841 323.007 158.810 322.767 158.747 322.611 c 158.685 322.455 158.575 322.327 158.419 322.228 c 158.263 322.129 158.080 322.080 157.872 322.080 c 157.539 322.080 157.250 322.187 157.005 322.400 c 156.760 322.614 156.638 323.023 156.638 323.627 c 156.638 326.174 l 155.841 326.174 l h 161.127 326.174 m 161.127 321.502 l 161.909 321.502 l 161.909 326.174 l 161.127 326.174 l h 160.596 320.174 m 161.190 318.939 l 162.221 318.939 l 161.252 320.174 l 160.596 320.174 l h 165.425 326.174 m 165.425 325.533 l 168.394 322.127 l 168.061 322.137 167.764 322.142 167.503 322.142 c 165.613 322.142 l 165.613 321.502 l 169.425 321.502 l 169.425 322.033 l 166.894 324.986 l 166.410 325.533 l 166.764 325.502 167.097 325.486 167.410 325.486 c 169.566 325.486 l 169.566 326.174 l 165.425 326.174 l h 170.347 327.955 m 170.347 321.502 l 171.066 321.502 l 171.066 322.111 l 171.233 321.872 171.423 321.694 171.636 321.580 c 171.850 321.465 172.113 321.408 172.425 321.408 c 172.821 321.408 173.170 321.510 173.472 321.713 c 173.774 321.916 174.003 322.205 174.160 322.580 c 174.316 322.955 174.394 323.361 174.394 323.799 c 174.394 324.278 174.308 324.710 174.136 325.096 c 173.964 325.481 173.717 325.775 173.394 325.978 c 173.071 326.181 172.727 326.283 172.363 326.283 c 172.102 326.283 171.868 326.226 171.660 326.111 c 171.451 325.997 171.279 325.856 171.144 325.689 c 171.144 327.955 l 170.347 327.955 l h 171.066 323.861 m 171.066 324.465 171.188 324.911 171.433 325.197 c 171.678 325.484 171.972 325.627 172.316 325.627 c 172.660 325.627 172.959 325.478 173.214 325.181 c 173.470 324.885 173.597 324.424 173.597 323.799 c 173.597 323.205 173.475 322.760 173.230 322.463 c 172.985 322.166 172.691 322.017 172.347 322.017 c 172.014 322.017 171.717 322.176 171.457 322.494 c 171.196 322.812 171.066 323.267 171.066 323.861 c h 175.337 326.174 m 175.337 321.502 l 176.056 321.502 l 176.056 322.221 l 176.233 321.887 176.399 321.668 176.556 321.564 c 176.712 321.460 176.884 321.408 177.071 321.408 c 177.332 321.408 177.603 321.491 177.884 321.658 c 177.603 322.392 l 177.415 322.278 177.222 322.221 177.024 322.221 c 176.858 322.221 176.704 322.273 176.563 322.377 c 176.423 322.481 176.321 322.627 176.259 322.814 c 176.175 323.096 176.134 323.403 176.134 323.736 c 176.134 326.174 l 175.337 326.174 l h 181.396 325.596 m 181.105 325.846 180.824 326.023 180.553 326.127 c 180.282 326.231 179.990 326.283 179.678 326.283 c 179.167 326.283 178.774 326.158 178.498 325.908 c 178.222 325.658 178.084 325.335 178.084 324.939 c 178.084 324.710 178.136 324.502 178.240 324.314 c 178.344 324.127 178.480 323.976 178.646 323.861 c 178.813 323.747 179.001 323.658 179.209 323.596 c 179.365 323.564 179.600 323.528 179.912 323.486 c 180.558 323.413 181.032 323.319 181.334 323.205 c 181.334 323.101 181.334 323.033 181.334 323.002 c 181.334 322.679 181.261 322.455 181.115 322.330 c 180.907 322.142 180.605 322.049 180.209 322.049 c 179.834 322.049 179.558 322.114 179.381 322.244 c 179.204 322.374 179.074 322.606 178.990 322.939 c 178.225 322.846 l 178.287 322.512 178.399 322.244 178.561 322.041 c 178.722 321.838 178.956 321.681 179.264 321.572 c 179.571 321.463 179.923 321.408 180.318 321.408 c 180.725 321.408 181.050 321.455 181.295 321.549 c 181.540 321.642 181.722 321.760 181.842 321.900 c 181.962 322.041 182.042 322.221 182.084 322.439 c 182.115 322.575 182.131 322.814 182.131 323.158 c 182.131 324.221 l 182.131 324.950 182.146 325.413 182.178 325.611 c 182.209 325.809 182.277 325.997 182.381 326.174 c 181.553 326.174 l 181.469 326.007 181.417 325.814 181.396 325.596 c h 181.334 323.830 m 181.042 323.944 180.610 324.043 180.037 324.127 c 179.714 324.179 179.485 324.234 179.350 324.291 c 179.214 324.348 179.110 324.434 179.037 324.549 c 178.964 324.663 178.928 324.788 178.928 324.924 c 178.928 325.132 179.006 325.306 179.162 325.447 c 179.318 325.588 179.553 325.658 179.865 325.658 c 180.167 325.658 180.438 325.590 180.678 325.455 c 180.917 325.319 181.094 325.137 181.209 324.908 c 181.292 324.731 181.334 324.471 181.334 324.127 c 181.334 323.830 l h 180.100 320.174 m 180.693 318.939 l 181.725 318.939 l 180.756 320.174 l 180.100 320.174 l h 184.652 326.174 m 182.871 321.502 l 183.714 321.502 l 184.714 324.299 l 184.819 324.601 184.917 324.913 185.011 325.236 c 185.084 324.997 185.183 324.705 185.308 324.361 c 186.339 321.502 l 187.152 321.502 l 185.386 326.174 l 184.652 326.174 l h f Q q 0 J 1.45000 M 1.00000 1.00000 1.00000 RG newpath 159.000 372.638 m 209.800 392.638 l 159.000 412.638 l 108.200 392.638 l h f 0.00000 0.00000 0.00000 RG newpath 159.000 372.638 m 209.800 392.638 l 159.000 412.638 l 108.200 392.638 l h S newpath S 2 J 10.0000 M 1.60000 M 10.0000 M newpath 124.172 396.174 m 124.172 395.377 l 127.469 391.252 l 127.698 390.960 127.922 390.705 128.141 390.486 c 124.531 390.486 l 124.531 389.736 l 129.156 389.736 l 129.156 390.486 l 125.531 394.955 l 125.141 395.408 l 129.266 395.408 l 129.266 396.174 l 124.172 396.174 l h 130.076 397.955 m 130.076 391.502 l 130.794 391.502 l 130.794 392.111 l 130.961 391.872 131.151 391.694 131.365 391.580 c 131.578 391.465 131.841 391.408 132.154 391.408 c 132.550 391.408 132.899 391.510 133.201 391.713 c 133.503 391.916 133.732 392.205 133.888 392.580 c 134.044 392.955 134.123 393.361 134.123 393.799 c 134.123 394.278 134.037 394.710 133.865 395.096 c 133.693 395.481 133.445 395.775 133.123 395.978 c 132.800 396.181 132.456 396.283 132.091 396.283 c 131.831 396.283 131.597 396.226 131.388 396.111 c 131.180 395.997 131.008 395.856 130.873 395.689 c 130.873 397.955 l 130.076 397.955 l h 130.794 393.861 m 130.794 394.465 130.917 394.911 131.162 395.197 c 131.406 395.484 131.701 395.627 132.044 395.627 c 132.388 395.627 132.688 395.478 132.943 395.181 c 133.198 394.885 133.326 394.424 133.326 393.799 c 133.326 393.205 133.203 392.760 132.958 392.463 c 132.714 392.166 132.419 392.017 132.076 392.017 c 131.742 392.017 131.445 392.176 131.185 392.494 c 130.925 392.812 130.794 393.267 130.794 393.861 c h 135.065 396.174 m 135.065 391.502 l 135.784 391.502 l 135.784 392.221 l 135.961 391.887 136.128 391.668 136.284 391.564 c 136.440 391.460 136.612 391.408 136.800 391.408 c 137.060 391.408 137.331 391.491 137.612 391.658 c 137.331 392.392 l 137.144 392.278 136.951 392.221 136.753 392.221 c 136.586 392.221 136.433 392.273 136.292 392.377 c 136.151 392.481 136.050 392.627 135.987 392.814 c 135.904 393.096 135.862 393.403 135.862 393.736 c 135.862 396.174 l 135.065 396.174 l h 141.125 395.596 m 140.833 395.846 140.552 396.023 140.281 396.127 c 140.010 396.231 139.719 396.283 139.406 396.283 c 138.896 396.283 138.503 396.158 138.227 395.908 c 137.951 395.658 137.812 395.335 137.812 394.939 c 137.812 394.710 137.865 394.502 137.969 394.314 c 138.073 394.127 138.208 393.976 138.375 393.861 c 138.542 393.747 138.729 393.658 138.938 393.596 c 139.094 393.564 139.328 393.528 139.641 393.486 c 140.286 393.413 140.760 393.319 141.062 393.205 c 141.062 393.101 141.062 393.033 141.062 393.002 c 141.062 392.679 140.990 392.455 140.844 392.330 c 140.635 392.142 140.333 392.049 139.938 392.049 c 139.562 392.049 139.286 392.114 139.109 392.244 c 138.932 392.374 138.802 392.606 138.719 392.939 c 137.953 392.846 l 138.016 392.512 138.128 392.244 138.289 392.041 c 138.451 391.838 138.685 391.681 138.992 391.572 c 139.299 391.463 139.651 391.408 140.047 391.408 c 140.453 391.408 140.779 391.455 141.023 391.549 c 141.268 391.642 141.451 391.760 141.570 391.900 c 141.690 392.041 141.771 392.221 141.812 392.439 c 141.844 392.575 141.859 392.814 141.859 393.158 c 141.859 394.221 l 141.859 394.950 141.875 395.413 141.906 395.611 c 141.938 395.809 142.005 395.997 142.109 396.174 c 141.281 396.174 l 141.198 396.007 141.146 395.814 141.125 395.596 c h 141.062 393.830 m 140.771 393.944 140.339 394.043 139.766 394.127 c 139.443 394.179 139.214 394.234 139.078 394.291 c 138.943 394.348 138.839 394.434 138.766 394.549 c 138.693 394.663 138.656 394.788 138.656 394.924 c 138.656 395.132 138.734 395.306 138.891 395.447 c 139.047 395.588 139.281 395.658 139.594 395.658 c 139.896 395.658 140.167 395.590 140.406 395.455 c 140.646 395.319 140.823 395.137 140.938 394.908 c 141.021 394.731 141.062 394.471 141.062 394.127 c 141.062 393.830 l h 139.828 390.174 m 140.422 388.939 l 141.453 388.939 l 140.484 390.174 l 139.828 390.174 l h 144.380 396.174 m 142.599 391.502 l 143.443 391.502 l 144.443 394.299 l 144.547 394.601 144.646 394.913 144.740 395.236 c 144.813 394.997 144.912 394.705 145.037 394.361 c 146.068 391.502 l 146.880 391.502 l 145.115 396.174 l 144.380 396.174 l h 147.552 397.971 m 147.458 397.236 l 147.636 397.278 147.787 397.299 147.912 397.299 c 148.089 397.299 148.229 397.270 148.333 397.213 c 148.438 397.155 148.526 397.075 148.599 396.971 c 148.641 396.887 148.719 396.689 148.833 396.377 c 148.854 396.335 148.880 396.273 148.912 396.189 c 147.130 391.502 l 147.990 391.502 l 148.958 394.205 l 149.083 394.549 149.198 394.908 149.302 395.283 c 149.386 394.929 149.490 394.575 149.615 394.221 c 150.615 391.502 l 151.412 391.502 l 149.630 396.252 l 149.443 396.762 149.297 397.116 149.193 397.314 c 149.047 397.575 148.886 397.765 148.708 397.885 c 148.531 398.004 148.313 398.064 148.052 398.064 c 147.906 398.064 147.740 398.033 147.552 397.971 c h 155.881 396.174 m 154.100 391.502 l 154.943 391.502 l 155.943 394.299 l 156.048 394.601 156.146 394.913 156.240 395.236 c 156.313 394.997 156.412 394.705 156.537 394.361 c 157.568 391.502 l 158.381 391.502 l 156.615 396.174 l 155.881 396.174 l h 162.271 394.674 m 163.100 394.767 l 162.964 395.247 162.722 395.619 162.373 395.885 c 162.024 396.150 161.579 396.283 161.037 396.283 c 160.360 396.283 159.821 396.072 159.420 395.650 c 159.019 395.228 158.818 394.637 158.818 393.877 c 158.818 393.096 159.021 392.489 159.428 392.056 c 159.834 391.624 160.360 391.408 161.006 391.408 c 161.631 391.408 162.139 391.619 162.529 392.041 c 162.920 392.463 163.115 393.059 163.115 393.830 c 163.115 393.882 163.115 393.955 163.115 394.049 c 159.631 394.049 l 159.662 394.559 159.808 394.950 160.068 395.221 c 160.329 395.491 160.657 395.627 161.053 395.627 c 161.344 395.627 161.592 395.551 161.795 395.400 c 161.998 395.249 162.157 395.007 162.271 394.674 c h 159.678 393.392 m 162.287 393.392 l 162.256 392.997 162.157 392.700 161.990 392.502 c 161.740 392.200 161.412 392.049 161.006 392.049 c 160.641 392.049 160.337 392.171 160.092 392.416 c 159.847 392.661 159.709 392.986 159.678 393.392 c h 166.777 396.174 m 166.777 392.127 l 166.074 392.127 l 166.074 391.502 l 166.777 391.502 l 166.777 391.017 l 166.777 390.694 166.803 390.460 166.855 390.314 c 166.939 390.106 167.077 389.939 167.270 389.814 c 167.462 389.689 167.730 389.627 168.074 389.627 c 168.293 389.627 168.538 389.653 168.809 389.705 c 168.684 390.392 l 168.527 390.361 168.376 390.346 168.230 390.346 c 167.991 390.346 167.819 390.398 167.715 390.502 c 167.611 390.606 167.559 390.799 167.559 391.080 c 167.559 391.502 l 168.480 391.502 l 168.480 392.127 l 167.559 392.127 l 167.559 396.174 l 166.777 396.174 l h 169.075 396.174 m 169.075 391.502 l 169.793 391.502 l 169.793 392.221 l 169.971 391.887 170.137 391.668 170.293 391.564 c 170.450 391.460 170.622 391.408 170.809 391.408 c 171.069 391.408 171.340 391.491 171.622 391.658 c 171.340 392.392 l 171.153 392.278 170.960 392.221 170.762 392.221 c 170.596 392.221 170.442 392.273 170.301 392.377 c 170.161 392.481 170.059 392.627 169.997 392.814 c 169.913 393.096 169.872 393.403 169.872 393.736 c 169.872 396.174 l 169.075 396.174 l h 171.791 393.846 m 171.791 392.981 172.030 392.340 172.509 391.924 c 172.916 391.580 173.405 391.408 173.978 391.408 c 174.624 391.408 175.150 391.616 175.556 392.033 c 175.962 392.450 176.166 393.028 176.166 393.767 c 176.166 394.372 176.074 394.846 175.892 395.189 c 175.710 395.533 175.447 395.801 175.103 395.994 c 174.759 396.187 174.384 396.283 173.978 396.283 c 173.322 396.283 172.793 396.072 172.392 395.650 c 171.991 395.228 171.791 394.627 171.791 393.846 c h 172.603 393.846 m 172.603 394.439 172.733 394.885 172.994 395.181 c 173.254 395.478 173.582 395.627 173.978 395.627 c 174.374 395.627 174.702 395.478 174.962 395.181 c 175.223 394.885 175.353 394.429 175.353 393.814 c 175.353 393.241 175.223 392.804 174.962 392.502 c 174.702 392.200 174.374 392.049 173.978 392.049 c 173.582 392.049 173.254 392.197 172.994 392.494 c 172.733 392.791 172.603 393.241 172.603 393.846 c h 177.093 396.174 m 177.093 391.502 l 177.812 391.502 l 177.812 392.174 l 178.145 391.663 178.640 391.408 179.296 391.408 c 179.577 391.408 179.835 391.457 180.069 391.556 c 180.304 391.655 180.478 391.786 180.593 391.947 c 180.707 392.109 180.791 392.304 180.843 392.533 c 180.874 392.679 180.890 392.934 180.890 393.299 c 180.890 396.174 l 180.093 396.174 l 180.093 393.330 l 180.093 393.007 180.062 392.767 179.999 392.611 c 179.937 392.455 179.827 392.327 179.671 392.228 c 179.515 392.129 179.332 392.080 179.124 392.080 c 178.791 392.080 178.502 392.187 178.257 392.400 c 178.012 392.614 177.890 393.023 177.890 393.627 c 177.890 396.174 l 177.093 396.174 l h 183.833 395.471 m 183.942 396.158 l 183.713 396.210 183.515 396.236 183.348 396.236 c 183.056 396.236 182.833 396.189 182.676 396.096 c 182.520 396.002 182.408 395.882 182.340 395.736 c 182.273 395.590 182.239 395.283 182.239 394.814 c 182.239 392.127 l 181.661 392.127 l 181.661 391.502 l 182.239 391.502 l 182.239 390.346 l 183.036 389.877 l 183.036 391.502 l 183.833 391.502 l 183.833 392.127 l 183.036 392.127 l 183.036 394.846 l 183.036 395.075 183.049 395.221 183.075 395.283 c 183.101 395.346 183.145 395.398 183.208 395.439 c 183.270 395.481 183.359 395.502 183.473 395.502 c 183.567 395.502 183.687 395.491 183.833 395.471 c h 187.786 394.674 m 188.614 394.767 l 188.479 395.247 188.237 395.619 187.888 395.885 c 187.539 396.150 187.093 396.283 186.552 396.283 c 185.875 396.283 185.336 396.072 184.935 395.650 c 184.534 395.228 184.333 394.637 184.333 393.877 c 184.333 393.096 184.536 392.489 184.942 392.056 c 185.349 391.624 185.875 391.408 186.521 391.408 c 187.146 391.408 187.653 391.619 188.044 392.041 c 188.435 392.463 188.630 393.059 188.630 393.830 c 188.630 393.882 188.630 393.955 188.630 394.049 c 185.146 394.049 l 185.177 394.559 185.323 394.950 185.583 395.221 c 185.843 395.491 186.172 395.627 186.567 395.627 c 186.859 395.627 187.106 395.551 187.310 395.400 c 187.513 395.249 187.672 395.007 187.786 394.674 c h 185.192 393.392 m 187.802 393.392 l 187.771 392.997 187.672 392.700 187.505 392.502 c 187.255 392.200 186.927 392.049 186.521 392.049 c 186.156 392.049 185.851 392.171 185.606 392.416 c 185.362 392.661 185.224 392.986 185.192 393.392 c h 187.005 389.689 m 187.489 388.939 l 188.380 388.939 l 187.396 390.174 l 186.552 390.174 l 185.599 388.939 l 186.505 388.939 l 187.005 389.689 l h 191.088 394.580 m 191.078 394.476 191.073 394.398 191.073 394.346 c 191.073 394.033 191.120 393.767 191.213 393.549 c 191.276 393.372 191.380 393.200 191.526 393.033 c 191.630 392.908 191.820 392.723 192.096 392.478 c 192.372 392.234 192.549 392.041 192.627 391.900 c 192.706 391.760 192.745 391.606 192.745 391.439 c 192.745 391.127 192.625 390.853 192.385 390.619 c 192.146 390.385 191.854 390.267 191.510 390.267 c 191.167 390.267 190.883 390.374 190.659 390.588 c 190.435 390.801 190.286 391.132 190.213 391.580 c 189.401 391.486 l 189.474 390.882 189.693 390.421 190.057 390.103 c 190.422 389.786 190.901 389.627 191.495 389.627 c 192.120 389.627 192.620 389.796 192.995 390.135 c 193.370 390.473 193.557 390.887 193.557 391.377 c 193.557 391.658 193.492 391.918 193.362 392.158 c 193.232 392.398 192.974 392.684 192.588 393.017 c 192.328 393.247 192.159 393.416 192.081 393.525 c 192.002 393.635 191.945 393.760 191.909 393.900 c 191.872 394.041 191.849 394.267 191.838 394.580 c 191.088 394.580 l h 191.042 396.174 m 191.042 395.267 l 191.932 395.267 l 191.932 396.174 l 191.042 396.174 l h f Q q 0 J 1.45000 M 1.00000 1.00000 1.00000 RG newpath 119.000 155.200 m 199.000 155.200 l 199.000 190.200 l 119.000 190.200 l h f 0.00000 0.00000 0.00000 RG newpath 119.000 155.200 m 199.000 155.200 l 199.000 190.200 l 119.000 190.200 l h S 2 J 10.0000 M 1.60000 M 10.0000 M newpath 136.927 176.235 m 136.927 175.439 l 140.224 171.314 l 140.453 171.022 140.677 170.767 140.896 170.548 c 137.286 170.548 l 137.286 169.798 l 141.911 169.798 l 141.911 170.548 l 138.286 175.017 l 137.896 175.470 l 142.021 175.470 l 142.021 176.235 l 136.927 176.235 l h 143.112 176.235 m 143.112 171.564 l 143.893 171.564 l 143.893 176.235 l 143.112 176.235 l h 142.581 170.235 m 143.175 169.001 l 144.206 169.001 l 143.237 170.235 l 142.581 170.235 l h 145.019 174.845 m 145.800 174.720 l 145.842 175.032 145.964 175.272 146.167 175.439 c 146.370 175.605 146.649 175.689 147.003 175.689 c 147.368 175.689 147.639 175.616 147.816 175.470 c 147.993 175.324 148.081 175.152 148.081 174.954 c 148.081 174.767 148.003 174.626 147.847 174.532 c 147.732 174.459 147.462 174.366 147.034 174.251 c 146.451 174.105 146.047 173.980 145.823 173.876 c 145.600 173.772 145.430 173.626 145.316 173.439 c 145.201 173.251 145.144 173.043 145.144 172.814 c 145.144 172.605 145.191 172.412 145.284 172.235 c 145.378 172.058 145.508 171.907 145.675 171.782 c 145.800 171.699 145.969 171.626 146.183 171.564 c 146.396 171.501 146.623 171.470 146.863 171.470 c 147.227 171.470 147.547 171.522 147.823 171.626 c 148.100 171.730 148.305 171.871 148.441 172.048 c 148.576 172.225 148.670 172.465 148.722 172.767 c 147.941 172.876 l 147.909 172.636 147.808 172.449 147.636 172.314 c 147.464 172.178 147.227 172.110 146.925 172.110 c 146.560 172.110 146.300 172.170 146.144 172.290 c 145.988 172.410 145.909 172.553 145.909 172.720 c 145.909 172.824 145.941 172.912 146.003 172.985 c 146.066 173.079 146.170 173.152 146.316 173.204 c 146.389 173.235 146.618 173.303 147.003 173.407 c 147.566 173.553 147.959 173.673 148.183 173.767 c 148.407 173.860 148.581 173.998 148.706 174.181 c 148.831 174.363 148.894 174.590 148.894 174.860 c 148.894 175.131 148.816 175.381 148.659 175.610 c 148.503 175.840 148.282 176.019 147.995 176.149 c 147.709 176.280 147.378 176.345 147.003 176.345 c 146.399 176.345 145.938 176.217 145.620 175.962 c 145.303 175.707 145.102 175.334 145.019 174.845 c h 149.831 176.235 m 149.831 169.798 l 150.628 169.798 l 150.628 173.470 l 152.503 171.564 l 153.519 171.564 l 151.738 173.298 l 153.706 176.235 l 152.722 176.235 l 151.191 173.845 l 150.628 174.392 l 150.628 176.235 l 149.831 176.235 l h 157.378 175.657 m 157.087 175.907 156.805 176.084 156.534 176.189 c 156.264 176.293 155.972 176.345 155.659 176.345 c 155.149 176.345 154.756 176.220 154.480 175.970 c 154.204 175.720 154.066 175.397 154.066 175.001 c 154.066 174.772 154.118 174.564 154.222 174.376 c 154.326 174.189 154.462 174.037 154.628 173.923 c 154.795 173.808 154.982 173.720 155.191 173.657 c 155.347 173.626 155.581 173.590 155.894 173.548 c 156.540 173.475 157.014 173.381 157.316 173.267 c 157.316 173.162 157.316 173.095 157.316 173.064 c 157.316 172.741 157.243 172.517 157.097 172.392 c 156.889 172.204 156.587 172.110 156.191 172.110 c 155.816 172.110 155.540 172.176 155.363 172.306 c 155.185 172.436 155.055 172.668 154.972 173.001 c 154.206 172.907 l 154.269 172.574 154.381 172.306 154.542 172.103 c 154.704 171.899 154.938 171.743 155.245 171.634 c 155.553 171.524 155.904 171.470 156.300 171.470 c 156.706 171.470 157.032 171.517 157.277 171.610 c 157.521 171.704 157.704 171.821 157.823 171.962 c 157.943 172.103 158.024 172.282 158.066 172.501 c 158.097 172.636 158.113 172.876 158.113 173.220 c 158.113 174.282 l 158.113 175.011 158.128 175.475 158.159 175.673 c 158.191 175.871 158.258 176.058 158.363 176.235 c 157.534 176.235 l 157.451 176.069 157.399 175.876 157.378 175.657 c h 157.316 173.892 m 157.024 174.006 156.592 174.105 156.019 174.189 c 155.696 174.241 155.467 174.295 155.331 174.353 c 155.196 174.410 155.092 174.496 155.019 174.610 c 154.946 174.725 154.909 174.850 154.909 174.985 c 154.909 175.194 154.988 175.368 155.144 175.509 c 155.300 175.649 155.534 175.720 155.847 175.720 c 156.149 175.720 156.420 175.652 156.659 175.517 c 156.899 175.381 157.076 175.199 157.191 174.970 c 157.274 174.793 157.316 174.532 157.316 174.189 c 157.316 173.892 l h 159.337 176.235 m 159.337 171.564 l 160.055 171.564 l 160.055 172.235 l 160.389 171.725 160.884 171.470 161.540 171.470 c 161.821 171.470 162.079 171.519 162.313 171.618 c 162.548 171.717 162.722 171.847 162.837 172.009 c 162.951 172.170 163.035 172.366 163.087 172.595 c 163.118 172.741 163.134 172.996 163.134 173.360 c 163.134 176.235 l 162.337 176.235 l 162.337 173.392 l 162.337 173.069 162.305 172.829 162.243 172.673 c 162.180 172.517 162.071 172.389 161.915 172.290 c 161.759 172.191 161.576 172.142 161.368 172.142 c 161.035 172.142 160.746 172.248 160.501 172.462 c 160.256 172.676 160.134 173.084 160.134 173.689 c 160.134 176.235 l 159.337 176.235 l h 164.623 176.235 m 164.623 171.564 l 165.405 171.564 l 165.405 176.235 l 164.623 176.235 l h 164.092 170.235 m 164.686 169.001 l 165.717 169.001 l 164.748 170.235 l 164.092 170.235 l h 172.374 176.235 m 172.374 175.642 l 172.072 176.110 171.635 176.345 171.062 176.345 c 170.697 176.345 170.359 176.241 170.046 176.032 c 169.734 175.824 169.491 175.537 169.320 175.173 c 169.148 174.808 169.062 174.386 169.062 173.907 c 169.062 173.439 169.140 173.014 169.296 172.634 c 169.452 172.254 169.684 171.965 169.991 171.767 c 170.299 171.569 170.645 171.470 171.031 171.470 c 171.312 171.470 171.562 171.527 171.781 171.642 c 171.999 171.756 172.176 171.912 172.312 172.110 c 172.312 169.798 l 173.109 169.798 l 173.109 176.235 l 172.374 176.235 l h 169.874 173.907 m 169.874 174.501 169.999 174.946 170.249 175.243 c 170.499 175.540 170.796 175.689 171.140 175.689 c 171.484 175.689 171.778 175.548 172.023 175.267 c 172.267 174.985 172.390 174.553 172.390 173.970 c 172.390 173.334 172.265 172.866 172.015 172.564 c 171.765 172.261 171.463 172.110 171.109 172.110 c 170.754 172.110 170.460 172.256 170.226 172.548 c 169.991 172.840 169.874 173.293 169.874 173.907 c h 177.395 175.657 m 177.104 175.907 176.822 176.084 176.552 176.189 c 176.281 176.293 175.989 176.345 175.677 176.345 c 175.166 176.345 174.773 176.220 174.497 175.970 c 174.221 175.720 174.083 175.397 174.083 175.001 c 174.083 174.772 174.135 174.564 174.239 174.376 c 174.343 174.189 174.479 174.037 174.645 173.923 c 174.812 173.808 174.999 173.720 175.208 173.657 c 175.364 173.626 175.598 173.590 175.911 173.548 c 176.557 173.475 177.031 173.381 177.333 173.267 c 177.333 173.162 177.333 173.095 177.333 173.064 c 177.333 172.741 177.260 172.517 177.114 172.392 c 176.906 172.204 176.604 172.110 176.208 172.110 c 175.833 172.110 175.557 172.176 175.380 172.306 c 175.203 172.436 175.072 172.668 174.989 173.001 c 174.223 172.907 l 174.286 172.574 174.398 172.306 174.559 172.103 c 174.721 171.899 174.955 171.743 175.262 171.634 c 175.570 171.524 175.921 171.470 176.317 171.470 c 176.723 171.470 177.049 171.517 177.294 171.610 c 177.538 171.704 177.721 171.821 177.841 171.962 c 177.960 172.103 178.041 172.282 178.083 172.501 c 178.114 172.636 178.130 172.876 178.130 173.220 c 178.130 174.282 l 178.130 175.011 178.145 175.475 178.177 175.673 c 178.208 175.871 178.275 176.058 178.380 176.235 c 177.552 176.235 l 177.468 176.069 177.416 175.876 177.395 175.657 c h 177.333 173.892 m 177.041 174.006 176.609 174.105 176.036 174.189 c 175.713 174.241 175.484 174.295 175.348 174.353 c 175.213 174.410 175.109 174.496 175.036 174.610 c 174.963 174.725 174.927 174.850 174.927 174.985 c 174.927 175.194 175.005 175.368 175.161 175.509 c 175.317 175.649 175.552 175.720 175.864 175.720 c 176.166 175.720 176.437 175.652 176.677 175.517 c 176.916 175.381 177.093 175.199 177.208 174.970 c 177.291 174.793 177.333 174.532 177.333 174.189 c 177.333 173.892 l h 181.088 175.532 m 181.198 176.220 l 180.968 176.272 180.770 176.298 180.604 176.298 c 180.312 176.298 180.088 176.251 179.932 176.157 c 179.776 176.064 179.664 175.944 179.596 175.798 c 179.528 175.652 179.494 175.345 179.494 174.876 c 179.494 172.189 l 178.916 172.189 l 178.916 171.564 l 179.494 171.564 l 179.494 170.407 l 180.291 169.939 l 180.291 171.564 l 181.088 171.564 l 181.088 172.189 l 180.291 172.189 l 180.291 174.907 l 180.291 175.136 180.304 175.282 180.330 175.345 c 180.356 175.407 180.401 175.459 180.463 175.501 c 180.526 175.543 180.614 175.564 180.729 175.564 c 180.823 175.564 180.942 175.553 181.088 175.532 c h f Q q 0 J 1.45000 M 1.00000 1.00000 1.00000 RG newpath 119.000 449.269 m 199.000 449.269 l 199.000 484.269 l 119.000 484.269 l h f 0.00000 0.00000 0.00000 RG newpath 119.000 449.269 m 199.000 449.269 l 199.000 484.269 l 119.000 484.269 l h S 2 J 10.0000 M 1.60000 M 10.0000 M newpath 131.397 470.305 m 131.397 463.867 l 132.257 463.867 l 132.257 467.055 l 135.460 463.867 l 136.600 463.867 l 133.913 466.476 l 136.725 470.305 l 135.600 470.305 l 133.303 467.039 l 132.257 468.070 l 132.257 470.305 l 131.397 470.305 l h 137.322 470.305 m 137.322 465.633 l 138.041 465.633 l 138.041 466.351 l 138.218 466.018 138.385 465.799 138.541 465.695 c 138.697 465.591 138.869 465.539 139.056 465.539 c 139.317 465.539 139.588 465.622 139.869 465.789 c 139.588 466.523 l 139.400 466.409 139.207 466.351 139.010 466.351 c 138.843 466.351 138.689 466.403 138.549 466.508 c 138.408 466.612 138.306 466.758 138.244 466.945 c 138.161 467.226 138.119 467.534 138.119 467.867 c 138.119 470.305 l 137.322 470.305 l h 140.038 467.976 m 140.038 467.112 140.277 466.471 140.757 466.055 c 141.163 465.711 141.652 465.539 142.225 465.539 c 142.871 465.539 143.397 465.747 143.803 466.164 c 144.210 466.581 144.413 467.159 144.413 467.898 c 144.413 468.502 144.322 468.976 144.139 469.320 c 143.957 469.664 143.694 469.932 143.350 470.125 c 143.007 470.318 142.632 470.414 142.225 470.414 c 141.569 470.414 141.040 470.203 140.639 469.781 c 140.238 469.359 140.038 468.758 140.038 467.976 c h 140.850 467.976 m 140.850 468.570 140.981 469.015 141.241 469.312 c 141.501 469.609 141.830 469.758 142.225 469.758 c 142.621 469.758 142.949 469.609 143.210 469.312 c 143.470 469.015 143.600 468.560 143.600 467.945 c 143.600 467.372 143.470 466.935 143.210 466.633 c 142.949 466.331 142.621 466.180 142.225 466.180 c 141.830 466.180 141.501 466.328 141.241 466.625 c 140.981 466.922 140.850 467.372 140.850 467.976 c h 145.340 470.305 m 145.340 463.867 l 146.137 463.867 l 146.137 467.539 l 148.012 465.633 l 149.028 465.633 l 147.246 467.367 l 149.215 470.305 l 148.231 470.305 l 146.699 467.914 l 146.137 468.461 l 146.137 470.305 l 145.340 470.305 l h 152.028 468.914 m 152.809 468.789 l 152.851 469.101 152.973 469.341 153.177 469.508 c 153.380 469.674 153.658 469.758 154.012 469.758 c 154.377 469.758 154.648 469.685 154.825 469.539 c 155.002 469.393 155.091 469.221 155.091 469.023 c 155.091 468.836 155.012 468.695 154.856 468.601 c 154.742 468.528 154.471 468.435 154.044 468.320 c 153.460 468.174 153.057 468.049 152.833 467.945 c 152.609 467.841 152.440 467.695 152.325 467.508 c 152.210 467.320 152.153 467.112 152.153 466.883 c 152.153 466.674 152.200 466.482 152.294 466.305 c 152.387 466.127 152.518 465.976 152.684 465.851 c 152.809 465.768 152.979 465.695 153.192 465.633 c 153.406 465.570 153.632 465.539 153.872 465.539 c 154.236 465.539 154.557 465.591 154.833 465.695 c 155.109 465.799 155.315 465.940 155.450 466.117 c 155.585 466.294 155.679 466.534 155.731 466.836 c 154.950 466.945 l 154.919 466.706 154.817 466.518 154.645 466.383 c 154.473 466.247 154.236 466.180 153.934 466.180 c 153.570 466.180 153.309 466.239 153.153 466.359 c 152.997 466.479 152.919 466.622 152.919 466.789 c 152.919 466.893 152.950 466.982 153.012 467.055 c 153.075 467.148 153.179 467.221 153.325 467.273 c 153.398 467.305 153.627 467.372 154.012 467.476 c 154.575 467.622 154.968 467.742 155.192 467.836 c 155.416 467.930 155.591 468.068 155.716 468.250 c 155.841 468.432 155.903 468.659 155.903 468.930 c 155.903 469.200 155.825 469.450 155.669 469.680 c 155.512 469.909 155.291 470.088 155.005 470.219 c 154.718 470.349 154.387 470.414 154.012 470.414 c 153.408 470.414 152.947 470.286 152.630 470.031 c 152.312 469.776 152.111 469.403 152.028 468.914 c h 156.841 464.773 m 156.841 463.867 l 157.637 463.867 l 157.637 464.773 l 156.841 464.773 l h 156.841 470.305 m 156.841 465.633 l 157.637 465.633 l 157.637 470.305 l 156.841 470.305 l h 158.840 470.305 m 158.840 465.633 l 159.543 465.633 l 159.543 466.289 l 159.689 466.060 159.884 465.877 160.129 465.742 c 160.374 465.607 160.653 465.539 160.965 465.539 c 161.309 465.539 161.590 465.609 161.809 465.750 c 162.028 465.890 162.184 466.091 162.278 466.351 c 162.653 465.810 163.132 465.539 163.715 465.539 c 164.184 465.539 164.543 465.666 164.793 465.922 c 165.043 466.177 165.168 466.570 165.168 467.101 c 165.168 470.305 l 164.371 470.305 l 164.371 467.367 l 164.371 467.044 164.348 466.815 164.301 466.680 c 164.254 466.544 164.163 466.432 164.028 466.344 c 163.892 466.255 163.731 466.211 163.543 466.211 c 163.220 466.211 162.949 466.320 162.731 466.539 c 162.512 466.758 162.403 467.107 162.403 467.586 c 162.403 470.305 l 161.606 470.305 l 161.606 467.273 l 161.606 466.919 161.543 466.653 161.418 466.476 c 161.293 466.299 161.085 466.211 160.793 466.211 c 160.564 466.211 160.356 466.271 160.168 466.390 c 159.981 466.510 159.845 466.682 159.762 466.906 c 159.679 467.130 159.637 467.456 159.637 467.883 c 159.637 470.305 l 158.840 470.305 l h 169.400 470.305 m 169.400 469.617 l 169.035 470.148 168.540 470.414 167.915 470.414 c 167.644 470.414 167.389 470.359 167.150 470.250 c 166.910 470.140 166.730 470.008 166.611 469.851 c 166.491 469.695 166.410 469.502 166.368 469.273 c 166.337 469.117 166.322 468.867 166.322 468.523 c 166.322 465.633 l 167.103 465.633 l 167.103 468.226 l 167.103 468.643 167.124 468.919 167.165 469.055 c 167.207 469.263 167.309 469.427 167.470 469.547 c 167.631 469.666 167.832 469.726 168.072 469.726 c 168.311 469.726 168.535 469.666 168.743 469.547 c 168.952 469.427 169.098 469.263 169.181 469.055 c 169.264 468.846 169.306 468.539 169.306 468.133 c 169.306 465.633 l 170.103 465.633 l 170.103 470.305 l 169.400 470.305 l h 171.327 470.305 m 171.327 463.867 l 172.108 463.867 l 172.108 470.305 l 171.327 470.305 l h 176.389 469.726 m 176.097 469.976 175.816 470.153 175.545 470.258 c 175.274 470.362 174.983 470.414 174.670 470.414 c 174.160 470.414 173.767 470.289 173.490 470.039 c 173.214 469.789 173.076 469.466 173.076 469.070 c 173.076 468.841 173.128 468.633 173.233 468.445 c 173.337 468.258 173.472 468.107 173.639 467.992 c 173.806 467.877 173.993 467.789 174.201 467.726 c 174.358 467.695 174.592 467.659 174.905 467.617 c 175.550 467.544 176.024 467.450 176.326 467.336 c 176.326 467.232 176.326 467.164 176.326 467.133 c 176.326 466.810 176.253 466.586 176.108 466.461 c 175.899 466.273 175.597 466.180 175.201 466.180 c 174.826 466.180 174.550 466.245 174.373 466.375 c 174.196 466.505 174.066 466.737 173.983 467.070 c 173.217 466.976 l 173.280 466.643 173.392 466.375 173.553 466.172 c 173.714 465.969 173.949 465.812 174.256 465.703 c 174.563 465.594 174.915 465.539 175.311 465.539 c 175.717 465.539 176.043 465.586 176.287 465.680 c 176.532 465.773 176.714 465.890 176.834 466.031 c 176.954 466.172 177.035 466.351 177.076 466.570 c 177.108 466.706 177.123 466.945 177.123 467.289 c 177.123 468.351 l 177.123 469.081 177.139 469.544 177.170 469.742 c 177.201 469.940 177.269 470.127 177.373 470.305 c 176.545 470.305 l 176.462 470.138 176.410 469.945 176.389 469.726 c h 176.326 467.961 m 176.035 468.075 175.602 468.174 175.030 468.258 c 174.707 468.310 174.477 468.364 174.342 468.422 c 174.207 468.479 174.102 468.565 174.030 468.680 c 173.957 468.794 173.920 468.919 173.920 469.055 c 173.920 469.263 173.998 469.437 174.155 469.578 c 174.311 469.719 174.545 469.789 174.858 469.789 c 175.160 469.789 175.431 469.721 175.670 469.586 c 175.910 469.450 176.087 469.268 176.201 469.039 c 176.285 468.862 176.326 468.601 176.326 468.258 c 176.326 467.961 l h 181.394 468.601 m 182.176 468.695 l 182.092 469.237 181.873 469.659 181.519 469.961 c 181.165 470.263 180.733 470.414 180.222 470.414 c 179.587 470.414 179.077 470.206 178.691 469.789 c 178.306 469.372 178.113 468.773 178.113 467.992 c 178.113 467.482 178.196 467.039 178.363 466.664 c 178.530 466.289 178.782 466.008 179.121 465.820 c 179.459 465.633 179.832 465.539 180.238 465.539 c 180.738 465.539 181.149 465.666 181.472 465.922 c 181.795 466.177 182.004 466.539 182.097 467.008 c 181.332 467.133 l 181.259 466.820 181.129 466.583 180.941 466.422 c 180.754 466.260 180.530 466.180 180.269 466.180 c 179.863 466.180 179.538 466.323 179.293 466.609 c 179.048 466.896 178.926 467.346 178.926 467.961 c 178.926 468.596 179.045 469.055 179.285 469.336 c 179.524 469.617 179.837 469.758 180.222 469.758 c 180.535 469.758 180.795 469.664 181.004 469.476 c 181.212 469.289 181.342 468.997 181.394 468.601 c h 186.035 468.805 m 186.863 468.898 l 186.728 469.377 186.485 469.750 186.136 470.015 c 185.788 470.281 185.342 470.414 184.801 470.414 c 184.123 470.414 183.584 470.203 183.183 469.781 c 182.782 469.359 182.582 468.768 182.582 468.008 c 182.582 467.226 182.785 466.620 183.191 466.187 c 183.597 465.755 184.123 465.539 184.769 465.539 c 185.394 465.539 185.902 465.750 186.293 466.172 c 186.683 466.594 186.879 467.190 186.879 467.961 c 186.879 468.013 186.879 468.086 186.879 468.180 c 183.394 468.180 l 183.426 468.690 183.571 469.081 183.832 469.351 c 184.092 469.622 184.420 469.758 184.816 469.758 c 185.108 469.758 185.355 469.682 185.558 469.531 c 185.761 469.380 185.920 469.138 186.035 468.805 c h 183.441 467.523 m 186.051 467.523 l 186.019 467.127 185.920 466.831 185.754 466.633 c 185.504 466.331 185.176 466.180 184.769 466.180 c 184.405 466.180 184.100 466.302 183.855 466.547 c 183.610 466.791 183.472 467.117 183.441 467.523 c h f Q q 0 J 1.45000 M 1.00000 1.00000 1.00000 RG newpath 159.000 502.700 m 209.800 522.700 l 159.000 542.700 l 108.200 522.700 l h f 0.00000 0.00000 0.00000 RG newpath 159.000 502.700 m 209.800 522.700 l 159.000 542.700 l 108.200 522.700 l h S newpath S 2 J 10.0000 M 1.60000 M 10.0000 M newpath 125.388 526.235 m 125.388 519.798 l 126.247 519.798 l 126.247 522.985 l 129.450 519.798 l 130.591 519.798 l 127.903 522.407 l 130.716 526.235 l 129.591 526.235 l 127.294 522.970 l 126.247 524.001 l 126.247 526.235 l 125.388 526.235 l h 131.031 523.907 m 131.031 523.043 131.271 522.402 131.750 521.985 c 132.156 521.642 132.646 521.470 133.219 521.470 c 133.865 521.470 134.391 521.678 134.797 522.095 c 135.203 522.511 135.406 523.090 135.406 523.829 c 135.406 524.433 135.315 524.907 135.133 525.251 c 134.951 525.595 134.688 525.863 134.344 526.056 c 134.000 526.248 133.625 526.345 133.219 526.345 c 132.562 526.345 132.034 526.134 131.633 525.712 c 131.232 525.290 131.031 524.689 131.031 523.907 c h 131.844 523.907 m 131.844 524.501 131.974 524.946 132.234 525.243 c 132.495 525.540 132.823 525.689 133.219 525.689 c 133.615 525.689 133.943 525.540 134.203 525.243 c 134.464 524.946 134.594 524.491 134.594 523.876 c 134.594 523.303 134.464 522.866 134.203 522.564 c 133.943 522.261 133.615 522.110 133.219 522.110 c 132.823 522.110 132.495 522.259 132.234 522.556 c 131.974 522.853 131.844 523.303 131.844 523.907 c h 136.333 526.235 m 136.333 521.564 l 137.052 521.564 l 137.052 522.235 l 137.386 521.725 137.880 521.470 138.537 521.470 c 138.818 521.470 139.076 521.519 139.310 521.618 c 139.544 521.717 139.719 521.847 139.833 522.009 c 139.948 522.170 140.031 522.366 140.083 522.595 c 140.115 522.741 140.130 522.996 140.130 523.360 c 140.130 526.235 l 139.333 526.235 l 139.333 523.392 l 139.333 523.069 139.302 522.829 139.240 522.673 c 139.177 522.517 139.068 522.389 138.912 522.290 c 138.755 522.191 138.573 522.142 138.365 522.142 c 138.031 522.142 137.742 522.248 137.498 522.462 c 137.253 522.676 137.130 523.084 137.130 523.689 c 137.130 526.235 l 136.333 526.235 l h 144.526 524.735 m 145.354 524.829 l 145.219 525.308 144.977 525.681 144.628 525.946 c 144.279 526.212 143.834 526.345 143.292 526.345 c 142.615 526.345 142.076 526.134 141.675 525.712 c 141.274 525.290 141.073 524.699 141.073 523.939 c 141.073 523.157 141.276 522.551 141.683 522.118 c 142.089 521.686 142.615 521.470 143.261 521.470 c 143.886 521.470 144.394 521.681 144.784 522.103 c 145.175 522.524 145.370 523.121 145.370 523.892 c 145.370 523.944 145.370 524.017 145.370 524.110 c 141.886 524.110 l 141.917 524.621 142.063 525.011 142.323 525.282 c 142.584 525.553 142.912 525.689 143.308 525.689 c 143.599 525.689 143.847 525.613 144.050 525.462 c 144.253 525.311 144.412 525.069 144.526 524.735 c h 141.933 523.454 m 144.542 523.454 l 144.511 523.058 144.412 522.761 144.245 522.564 c 143.995 522.261 143.667 522.110 143.261 522.110 c 142.896 522.110 142.591 522.233 142.347 522.478 c 142.102 522.722 141.964 523.048 141.933 523.454 c h 149.391 524.532 m 150.172 524.626 l 150.089 525.168 149.870 525.590 149.516 525.892 c 149.162 526.194 148.730 526.345 148.219 526.345 c 147.584 526.345 147.073 526.136 146.688 525.720 c 146.303 525.303 146.110 524.704 146.110 523.923 c 146.110 523.412 146.193 522.970 146.360 522.595 c 146.527 522.220 146.779 521.939 147.118 521.751 c 147.456 521.564 147.829 521.470 148.235 521.470 c 148.735 521.470 149.146 521.597 149.469 521.853 c 149.792 522.108 150.000 522.470 150.094 522.939 c 149.329 523.064 l 149.256 522.751 149.125 522.514 148.938 522.353 c 148.750 522.191 148.527 522.110 148.266 522.110 c 147.860 522.110 147.534 522.254 147.290 522.540 c 147.045 522.827 146.922 523.277 146.922 523.892 c 146.922 524.527 147.042 524.985 147.282 525.267 c 147.521 525.548 147.834 525.689 148.219 525.689 c 148.532 525.689 148.792 525.595 149.000 525.407 c 149.209 525.220 149.339 524.928 149.391 524.532 c h 153.032 524.845 m 153.813 524.720 l 153.855 525.032 153.978 525.272 154.181 525.439 c 154.384 525.605 154.662 525.689 155.017 525.689 c 155.381 525.689 155.652 525.616 155.829 525.470 c 156.006 525.324 156.095 525.152 156.095 524.954 c 156.095 524.767 156.017 524.626 155.860 524.532 c 155.746 524.459 155.475 524.366 155.048 524.251 c 154.465 524.105 154.061 523.980 153.837 523.876 c 153.613 523.772 153.444 523.626 153.329 523.439 c 153.215 523.251 153.157 523.043 153.157 522.814 c 153.157 522.605 153.204 522.412 153.298 522.235 c 153.392 522.058 153.522 521.907 153.688 521.782 c 153.813 521.699 153.983 521.626 154.196 521.564 c 154.410 521.501 154.636 521.470 154.876 521.470 c 155.241 521.470 155.561 521.522 155.837 521.626 c 156.113 521.730 156.319 521.871 156.454 522.048 c 156.590 522.225 156.683 522.465 156.735 522.767 c 155.954 522.876 l 155.923 522.636 155.821 522.449 155.649 522.314 c 155.478 522.178 155.241 522.110 154.938 522.110 c 154.574 522.110 154.313 522.170 154.157 522.290 c 154.001 522.410 153.923 522.553 153.923 522.720 c 153.923 522.824 153.954 522.912 154.017 522.985 c 154.079 523.079 154.183 523.152 154.329 523.204 c 154.402 523.235 154.631 523.303 155.017 523.407 c 155.579 523.553 155.972 523.673 156.196 523.767 c 156.420 523.860 156.595 523.998 156.720 524.181 c 156.845 524.363 156.907 524.590 156.907 524.860 c 156.907 525.131 156.829 525.381 156.673 525.610 c 156.517 525.840 156.295 526.019 156.009 526.149 c 155.722 526.280 155.392 526.345 155.017 526.345 c 154.412 526.345 153.951 526.217 153.634 525.962 c 153.316 525.707 153.116 525.334 153.032 524.845 c h 157.845 520.704 m 157.845 519.798 l 158.642 519.798 l 158.642 520.704 l 157.845 520.704 l h 157.845 526.235 m 157.845 521.564 l 158.642 521.564 l 158.642 526.235 l 157.845 526.235 l h 159.844 526.235 m 159.844 521.564 l 160.547 521.564 l 160.547 522.220 l 160.693 521.991 160.889 521.808 161.133 521.673 c 161.378 521.537 161.657 521.470 161.969 521.470 c 162.313 521.470 162.594 521.540 162.813 521.681 c 163.032 521.821 163.188 522.022 163.282 522.282 c 163.657 521.741 164.136 521.470 164.719 521.470 c 165.188 521.470 165.547 521.597 165.797 521.853 c 166.047 522.108 166.172 522.501 166.172 523.032 c 166.172 526.235 l 165.375 526.235 l 165.375 523.298 l 165.375 522.975 165.352 522.746 165.305 522.610 c 165.258 522.475 165.167 522.363 165.032 522.274 c 164.896 522.186 164.735 522.142 164.547 522.142 c 164.224 522.142 163.954 522.251 163.735 522.470 c 163.516 522.689 163.407 523.037 163.407 523.517 c 163.407 526.235 l 162.610 526.235 l 162.610 523.204 l 162.610 522.850 162.547 522.584 162.422 522.407 c 162.297 522.230 162.089 522.142 161.797 522.142 c 161.568 522.142 161.360 522.202 161.172 522.321 c 160.985 522.441 160.849 522.613 160.766 522.837 c 160.683 523.061 160.641 523.386 160.641 523.814 c 160.641 526.235 l 159.844 526.235 l h 170.404 526.235 m 170.404 525.548 l 170.039 526.079 169.544 526.345 168.919 526.345 c 168.649 526.345 168.393 526.290 168.154 526.181 c 167.914 526.071 167.735 525.939 167.615 525.782 c 167.495 525.626 167.414 525.433 167.373 525.204 c 167.341 525.048 167.326 524.798 167.326 524.454 c 167.326 521.564 l 168.107 521.564 l 168.107 524.157 l 168.107 524.574 168.128 524.850 168.169 524.985 c 168.211 525.194 168.313 525.358 168.474 525.478 c 168.636 525.597 168.836 525.657 169.076 525.657 c 169.315 525.657 169.539 525.597 169.748 525.478 c 169.956 525.358 170.102 525.194 170.185 524.985 c 170.268 524.777 170.310 524.470 170.310 524.064 c 170.310 521.564 l 171.107 521.564 l 171.107 526.235 l 170.404 526.235 l h 172.331 526.235 m 172.331 519.798 l 173.112 519.798 l 173.112 526.235 l 172.331 526.235 l h 177.393 525.657 m 177.101 525.907 176.820 526.084 176.549 526.189 c 176.278 526.293 175.987 526.345 175.674 526.345 c 175.164 526.345 174.771 526.220 174.495 525.970 c 174.219 525.720 174.081 525.397 174.081 525.001 c 174.081 524.772 174.133 524.564 174.237 524.376 c 174.341 524.189 174.476 524.037 174.643 523.923 c 174.810 523.808 174.997 523.720 175.206 523.657 c 175.362 523.626 175.596 523.590 175.909 523.548 c 176.555 523.475 177.028 523.381 177.331 523.267 c 177.331 523.162 177.331 523.095 177.331 523.064 c 177.331 522.741 177.258 522.517 177.112 522.392 c 176.903 522.204 176.601 522.110 176.206 522.110 c 175.831 522.110 175.555 522.176 175.377 522.306 c 175.200 522.436 175.070 522.668 174.987 523.001 c 174.221 522.907 l 174.284 522.574 174.396 522.306 174.557 522.103 c 174.719 521.899 174.953 521.743 175.260 521.634 c 175.568 521.524 175.919 521.470 176.315 521.470 c 176.721 521.470 177.047 521.517 177.292 521.610 c 177.536 521.704 177.719 521.821 177.838 521.962 c 177.958 522.103 178.039 522.282 178.081 522.501 c 178.112 522.636 178.127 522.876 178.127 523.220 c 178.127 524.282 l 178.127 525.011 178.143 525.475 178.174 525.673 c 178.206 525.871 178.273 526.058 178.377 526.235 c 177.549 526.235 l 177.466 526.069 177.414 525.876 177.393 525.657 c h 177.331 523.892 m 177.039 524.006 176.607 524.105 176.034 524.189 c 175.711 524.241 175.482 524.295 175.346 524.353 c 175.211 524.410 175.107 524.496 175.034 524.610 c 174.961 524.725 174.924 524.850 174.924 524.985 c 174.924 525.194 175.002 525.368 175.159 525.509 c 175.315 525.649 175.549 525.720 175.862 525.720 c 176.164 525.720 176.435 525.652 176.674 525.517 c 176.914 525.381 177.091 525.199 177.206 524.970 c 177.289 524.793 177.331 524.532 177.331 524.189 c 177.331 523.892 l h 182.398 524.532 m 183.180 524.626 l 183.096 525.168 182.878 525.590 182.523 525.892 c 182.169 526.194 181.737 526.345 181.227 526.345 c 180.591 526.345 180.081 526.136 179.695 525.720 c 179.310 525.303 179.117 524.704 179.117 523.923 c 179.117 523.412 179.201 522.970 179.367 522.595 c 179.534 522.220 179.786 521.939 180.125 521.751 c 180.464 521.564 180.836 521.470 181.242 521.470 c 181.742 521.470 182.154 521.597 182.477 521.853 c 182.799 522.108 183.008 522.470 183.102 522.939 c 182.336 523.064 l 182.263 522.751 182.133 522.514 181.945 522.353 c 181.758 522.191 181.534 522.110 181.273 522.110 c 180.867 522.110 180.542 522.254 180.297 522.540 c 180.052 522.827 179.930 523.277 179.930 523.892 c 179.930 524.527 180.049 524.985 180.289 525.267 c 180.529 525.548 180.841 525.689 181.227 525.689 c 181.539 525.689 181.799 525.595 182.008 525.407 c 182.216 525.220 182.346 524.928 182.398 524.532 c h 187.039 524.735 m 187.867 524.829 l 187.732 525.308 187.490 525.681 187.141 525.946 c 186.792 526.212 186.346 526.345 185.805 526.345 c 185.128 526.345 184.589 526.134 184.188 525.712 c 183.786 525.290 183.586 524.699 183.586 523.939 c 183.586 523.157 183.789 522.551 184.195 522.118 c 184.602 521.686 185.128 521.470 185.773 521.470 c 186.398 521.470 186.906 521.681 187.297 522.103 c 187.688 522.524 187.883 523.121 187.883 523.892 c 187.883 523.944 187.883 524.017 187.883 524.110 c 184.398 524.110 l 184.430 524.621 184.576 525.011 184.836 525.282 c 185.096 525.553 185.424 525.689 185.820 525.689 c 186.112 525.689 186.359 525.613 186.562 525.462 c 186.766 525.311 186.924 525.069 187.039 524.735 c h 184.445 523.454 m 187.055 523.454 l 187.023 523.058 186.924 522.761 186.758 522.564 c 186.508 522.261 186.180 522.110 185.773 522.110 c 185.409 522.110 185.104 522.233 184.859 522.478 c 184.615 522.722 184.477 523.048 184.445 523.454 c h 190.341 524.642 m 190.331 524.537 190.326 524.459 190.326 524.407 c 190.326 524.095 190.373 523.829 190.466 523.610 c 190.529 523.433 190.633 523.261 190.779 523.095 c 190.883 522.970 191.073 522.785 191.349 522.540 c 191.625 522.295 191.802 522.103 191.880 521.962 c 191.958 521.821 191.998 521.668 191.998 521.501 c 191.998 521.189 191.878 520.915 191.638 520.681 c 191.399 520.446 191.107 520.329 190.763 520.329 c 190.419 520.329 190.136 520.436 189.912 520.649 c 189.688 520.863 189.539 521.194 189.466 521.642 c 188.654 521.548 l 188.727 520.944 188.945 520.483 189.310 520.165 c 189.675 519.847 190.154 519.689 190.748 519.689 c 191.373 519.689 191.873 519.858 192.248 520.196 c 192.623 520.535 192.810 520.949 192.810 521.439 c 192.810 521.720 192.745 521.980 192.615 522.220 c 192.485 522.459 192.227 522.746 191.841 523.079 c 191.581 523.308 191.412 523.478 191.333 523.587 c 191.255 523.696 191.198 523.821 191.162 523.962 c 191.125 524.103 191.102 524.329 191.091 524.642 c 190.341 524.642 l h 190.294 526.235 m 190.294 525.329 l 191.185 525.329 l 191.185 526.235 l 190.294 526.235 l h f Q q 0 J 1.45000 M 1.00000 1.00000 1.00000 RG newpath 119.000 74.3000 m 199.000 74.3000 l 199.000 109.300 l 119.000 109.300 l h f 0.00000 0.00000 0.00000 RG newpath 119.000 74.3000 m 199.000 74.3000 l 199.000 109.300 l 119.000 109.300 l h S 2 J 10.0000 M 1.60000 M 10.0000 M newpath 137.834 95.3354 m 137.834 88.8979 l 138.677 88.8979 l 138.677 95.3354 l 137.834 95.3354 l h 140.084 95.3354 m 140.084 90.6635 l 140.803 90.6635 l 140.803 91.3354 l 141.136 90.8250 141.631 90.5698 142.287 90.5698 c 142.569 90.5698 142.826 90.6193 143.061 90.7182 c 143.295 90.8172 143.470 90.9474 143.584 91.1088 c 143.699 91.2703 143.782 91.4656 143.834 91.6948 c 143.865 91.8406 143.881 92.0958 143.881 92.4604 c 143.881 95.3354 l 143.084 95.3354 l 143.084 92.4917 l 143.084 92.1687 143.053 91.9292 142.990 91.7729 c 142.928 91.6167 142.819 91.4890 142.662 91.3901 c 142.506 91.2911 142.324 91.2417 142.115 91.2417 c 141.782 91.2417 141.493 91.3484 141.248 91.5620 c 141.003 91.7755 140.881 92.1844 140.881 92.7885 c 140.881 95.3354 l 140.084 95.3354 l h 145.090 89.8042 m 145.090 88.8979 l 145.886 88.8979 l 145.886 89.8042 l 145.090 89.8042 l h 145.090 95.3354 m 145.090 90.6635 l 145.886 90.6635 l 145.886 95.3354 l 145.090 95.3354 l h 150.136 93.6323 m 150.917 93.7260 l 150.834 94.2677 150.615 94.6896 150.261 94.9917 c 149.907 95.2937 149.475 95.4448 148.964 95.4448 c 148.329 95.4448 147.818 95.2364 147.433 94.8198 c 147.047 94.4031 146.855 93.8042 146.855 93.0229 c 146.855 92.5125 146.938 92.0698 147.105 91.6948 c 147.271 91.3198 147.524 91.0385 147.863 90.8510 c 148.201 90.6635 148.573 90.5698 148.980 90.5698 c 149.480 90.5698 149.891 90.6974 150.214 90.9526 c 150.537 91.2078 150.745 91.5698 150.839 92.0385 c 150.073 92.1635 l 150.001 91.8510 149.870 91.6140 149.683 91.4526 c 149.495 91.2911 149.271 91.2104 149.011 91.2104 c 148.605 91.2104 148.279 91.3536 148.034 91.6401 c 147.790 91.9265 147.667 92.3771 147.667 92.9917 c 147.667 93.6271 147.787 94.0854 148.027 94.3667 c 148.266 94.6479 148.579 94.7885 148.964 94.7885 c 149.277 94.7885 149.537 94.6948 149.745 94.5073 c 149.954 94.3198 150.084 94.0281 150.136 93.6323 c h 151.589 89.8042 m 151.589 88.8979 l 152.386 88.8979 l 152.386 89.8042 l 151.589 89.8042 l h 151.589 95.3354 m 151.589 90.6635 l 152.386 90.6635 l 152.386 95.3354 l 151.589 95.3354 l h 156.635 94.7573 m 156.344 95.0073 156.063 95.1844 155.792 95.2885 c 155.521 95.3927 155.229 95.4448 154.917 95.4448 c 154.406 95.4448 154.013 95.3198 153.737 95.0698 c 153.461 94.8198 153.323 94.4969 153.323 94.1010 c 153.323 93.8719 153.375 93.6635 153.479 93.4760 c 153.583 93.2885 153.719 93.1375 153.885 93.0229 c 154.052 92.9083 154.240 92.8198 154.448 92.7573 c 154.604 92.7260 154.839 92.6896 155.151 92.6479 c 155.797 92.5750 156.271 92.4812 156.573 92.3667 c 156.573 92.2625 156.573 92.1948 156.573 92.1635 c 156.573 91.8406 156.500 91.6167 156.354 91.4917 c 156.146 91.3042 155.844 91.2104 155.448 91.2104 c 155.073 91.2104 154.797 91.2755 154.620 91.4057 c 154.443 91.5359 154.313 91.7677 154.229 92.1010 c 153.464 92.0073 l 153.526 91.6739 153.638 91.4057 153.800 91.2026 c 153.961 90.9995 154.195 90.8432 154.503 90.7338 c 154.810 90.6245 155.162 90.5698 155.557 90.5698 c 155.964 90.5698 156.289 90.6167 156.534 90.7104 c 156.779 90.8042 156.961 90.9213 157.081 91.0620 c 157.201 91.2026 157.281 91.3823 157.323 91.6010 c 157.354 91.7364 157.370 91.9760 157.370 92.3198 c 157.370 93.3823 l 157.370 94.1114 157.385 94.5750 157.417 94.7729 c 157.448 94.9708 157.516 95.1583 157.620 95.3354 c 156.792 95.3354 l 156.708 95.1687 156.656 94.9760 156.635 94.7573 c h 156.573 92.9917 m 156.281 93.1062 155.849 93.2052 155.276 93.2885 c 154.953 93.3406 154.724 93.3953 154.589 93.4526 c 154.453 93.5099 154.349 93.5958 154.276 93.7104 c 154.203 93.8250 154.167 93.9500 154.167 94.0854 c 154.167 94.2937 154.245 94.4682 154.401 94.6088 c 154.557 94.7495 154.792 94.8198 155.104 94.8198 c 155.406 94.8198 155.677 94.7521 155.917 94.6167 c 156.156 94.4812 156.333 94.2989 156.448 94.0698 c 156.531 93.8927 156.573 93.6323 156.573 93.2885 c 156.573 92.9917 l h 158.578 95.3354 m 158.578 88.8979 l 159.360 88.8979 l 159.360 95.3354 l 158.578 95.3354 l h 160.594 89.8042 m 160.594 88.8979 l 161.390 88.8979 l 161.390 89.8042 l 160.594 89.8042 l h 160.594 95.3354 m 160.594 90.6635 l 161.390 90.6635 l 161.390 95.3354 l 160.594 95.3354 l h 162.171 95.3354 m 162.171 94.6948 l 165.140 91.2885 l 164.807 91.2989 164.510 91.3042 164.249 91.3042 c 162.359 91.3042 l 162.359 90.6635 l 166.171 90.6635 l 166.171 91.1948 l 163.640 94.1479 l 163.156 94.6948 l 163.510 94.6635 163.843 94.6479 164.156 94.6479 c 166.312 94.6479 l 166.312 95.3354 l 162.171 95.3354 l h 170.140 94.7573 m 169.848 95.0073 169.567 95.1844 169.296 95.2885 c 169.025 95.3927 168.734 95.4448 168.421 95.4448 c 167.911 95.4448 167.517 95.3198 167.241 95.0698 c 166.965 94.8198 166.827 94.4969 166.827 94.1010 c 166.827 93.8719 166.879 93.6635 166.984 93.4760 c 167.088 93.2885 167.223 93.1375 167.390 93.0229 c 167.557 92.9083 167.744 92.8198 167.952 92.7573 c 168.109 92.7260 168.343 92.6896 168.656 92.6479 c 169.301 92.5750 169.775 92.4812 170.077 92.3667 c 170.077 92.2625 170.077 92.1948 170.077 92.1635 c 170.077 91.8406 170.004 91.6167 169.859 91.4917 c 169.650 91.3042 169.348 91.2104 168.952 91.2104 c 168.577 91.2104 168.301 91.2755 168.124 91.4057 c 167.947 91.5359 167.817 91.7677 167.734 92.1010 c 166.968 92.0073 l 167.031 91.6739 167.142 91.4057 167.304 91.2026 c 167.465 90.9995 167.700 90.8432 168.007 90.7338 c 168.314 90.6245 168.666 90.5698 169.062 90.5698 c 169.468 90.5698 169.794 90.6167 170.038 90.7104 c 170.283 90.8042 170.465 90.9213 170.585 91.0620 c 170.705 91.2026 170.786 91.3823 170.827 91.6010 c 170.859 91.7364 170.874 91.9760 170.874 92.3198 c 170.874 93.3823 l 170.874 94.1114 170.890 94.5750 170.921 94.7729 c 170.952 94.9708 171.020 95.1583 171.124 95.3354 c 170.296 95.3354 l 170.213 95.1687 170.161 94.9760 170.140 94.7573 c h 170.077 92.9917 m 169.786 93.1062 169.353 93.2052 168.781 93.2885 c 168.458 93.3406 168.228 93.3953 168.093 93.4526 c 167.958 93.5099 167.853 93.5958 167.781 93.7104 c 167.708 93.8250 167.671 93.9500 167.671 94.0854 c 167.671 94.2937 167.749 94.4682 167.906 94.6088 c 168.062 94.7495 168.296 94.8198 168.609 94.8198 c 168.911 94.8198 169.182 94.7521 169.421 94.6167 c 169.661 94.4812 169.838 94.2989 169.952 94.0698 c 170.036 93.8927 170.077 93.6323 170.077 93.2885 c 170.077 92.9917 l h 175.145 93.6323 m 175.927 93.7260 l 175.843 94.2677 175.624 94.6896 175.270 94.9917 c 174.916 95.2937 174.484 95.4448 173.973 95.4448 c 173.338 95.4448 172.828 95.2364 172.442 94.8198 c 172.057 94.4031 171.864 93.8042 171.864 93.0229 c 171.864 92.5125 171.947 92.0698 172.114 91.6948 c 172.281 91.3198 172.533 91.0385 172.872 90.8510 c 173.210 90.6635 173.583 90.5698 173.989 90.5698 c 174.489 90.5698 174.900 90.6974 175.223 90.9526 c 175.546 91.2078 175.755 91.5698 175.848 92.0385 c 175.083 92.1635 l 175.010 91.8510 174.880 91.6140 174.692 91.4526 c 174.505 91.2911 174.281 91.2104 174.020 91.2104 c 173.614 91.2104 173.288 91.3536 173.044 91.6401 c 172.799 91.9265 172.677 92.3771 172.677 92.9917 c 172.677 93.6271 172.796 94.0854 173.036 94.3667 c 173.275 94.6479 173.588 94.7885 173.973 94.7885 c 174.286 94.7885 174.546 94.6948 174.755 94.5073 c 174.963 94.3198 175.093 94.0281 175.145 93.6323 c h 179.786 93.8354 m 180.614 93.9292 l 180.479 94.4083 180.236 94.7807 179.887 95.0463 c 179.538 95.3120 179.093 95.4448 178.552 95.4448 c 177.874 95.4448 177.335 95.2338 176.934 94.8120 c 176.533 94.3901 176.333 93.7989 176.333 93.0385 c 176.333 92.2573 176.536 91.6505 176.942 91.2182 c 177.348 90.7859 177.874 90.5698 178.520 90.5698 c 179.145 90.5698 179.653 90.7807 180.044 91.2026 c 180.434 91.6245 180.630 92.2208 180.630 92.9917 c 180.630 93.0437 180.630 93.1167 180.630 93.2104 c 177.145 93.2104 l 177.177 93.7208 177.322 94.1114 177.583 94.3823 c 177.843 94.6531 178.171 94.7885 178.567 94.7885 c 178.859 94.7885 179.106 94.7130 179.309 94.5620 c 179.512 94.4109 179.671 94.1687 179.786 93.8354 c h 177.192 92.5542 m 179.802 92.5542 l 179.770 92.1583 179.671 91.8614 179.505 91.6635 c 179.255 91.3614 178.927 91.2104 178.520 91.2104 c 178.156 91.2104 177.851 91.3328 177.606 91.5776 c 177.361 91.8224 177.223 92.1479 177.192 92.5542 c h f Q q 0 J 1.45000 M 1.00000 1.00000 1.00000 RG newpath 119.000 572.700 m 199.000 572.700 l 199.000 607.700 l 119.000 607.700 l h f 0.00000 0.00000 0.00000 RG newpath 119.000 572.700 m 199.000 572.700 l 199.000 607.700 l 119.000 607.700 l h S 2 J 10.0000 M 1.60000 M 10.0000 M newpath 138.175 593.735 m 138.175 592.939 l 141.472 588.814 l 141.701 588.522 141.925 588.267 142.144 588.048 c 138.534 588.048 l 138.534 587.298 l 143.159 587.298 l 143.159 588.048 l 139.534 592.517 l 139.144 592.970 l 143.269 592.970 l 143.269 593.735 l 138.175 593.735 l h 147.126 593.157 m 146.834 593.407 146.553 593.584 146.282 593.689 c 146.011 593.793 145.719 593.845 145.407 593.845 c 144.897 593.845 144.503 593.720 144.227 593.470 c 143.951 593.220 143.813 592.897 143.813 592.501 c 143.813 592.272 143.865 592.064 143.969 591.876 c 144.074 591.689 144.209 591.537 144.376 591.423 c 144.542 591.308 144.730 591.220 144.938 591.157 c 145.094 591.126 145.329 591.090 145.641 591.048 c 146.287 590.975 146.761 590.881 147.063 590.767 c 147.063 590.662 147.063 590.595 147.063 590.564 c 147.063 590.241 146.990 590.017 146.844 589.892 c 146.636 589.704 146.334 589.610 145.938 589.610 c 145.563 589.610 145.287 589.676 145.110 589.806 c 144.933 589.936 144.803 590.168 144.719 590.501 c 143.954 590.407 l 144.016 590.074 144.128 589.806 144.290 589.603 c 144.451 589.399 144.686 589.243 144.993 589.134 c 145.300 589.024 145.652 588.970 146.048 588.970 c 146.454 588.970 146.779 589.017 147.024 589.110 c 147.269 589.204 147.451 589.321 147.571 589.462 c 147.691 589.603 147.772 589.782 147.813 590.001 c 147.844 590.136 147.860 590.376 147.860 590.720 c 147.860 591.782 l 147.860 592.511 147.876 592.975 147.907 593.173 c 147.938 593.371 148.006 593.558 148.110 593.735 c 147.282 593.735 l 147.199 593.569 147.147 593.376 147.126 593.157 c h 147.063 591.392 m 146.772 591.506 146.339 591.605 145.766 591.689 c 145.443 591.741 145.214 591.795 145.079 591.853 c 144.943 591.910 144.839 591.996 144.766 592.110 c 144.693 592.225 144.657 592.350 144.657 592.485 c 144.657 592.694 144.735 592.868 144.891 593.009 c 145.048 593.149 145.282 593.220 145.594 593.220 c 145.897 593.220 146.167 593.152 146.407 593.017 c 146.647 592.881 146.824 592.699 146.938 592.470 c 147.022 592.293 147.063 592.032 147.063 591.689 c 147.063 591.392 l h 149.084 593.735 m 149.084 587.298 l 149.881 587.298 l 149.881 590.970 l 151.756 589.064 l 152.772 589.064 l 150.990 590.798 l 152.959 593.735 l 151.975 593.735 l 150.444 591.345 l 149.881 591.892 l 149.881 593.735 l 149.084 593.735 l h 153.287 591.407 m 153.287 590.543 153.527 589.902 154.006 589.485 c 154.412 589.142 154.902 588.970 155.475 588.970 c 156.121 588.970 156.647 589.178 157.053 589.595 c 157.459 590.011 157.662 590.590 157.662 591.329 c 157.662 591.933 157.571 592.407 157.389 592.751 c 157.207 593.095 156.944 593.363 156.600 593.556 c 156.256 593.748 155.881 593.845 155.475 593.845 c 154.819 593.845 154.290 593.634 153.889 593.212 c 153.488 592.790 153.287 592.189 153.287 591.407 c h 154.100 591.407 m 154.100 592.001 154.230 592.446 154.490 592.743 c 154.751 593.040 155.079 593.189 155.475 593.189 c 155.871 593.189 156.199 593.040 156.459 592.743 c 156.720 592.446 156.850 591.991 156.850 591.376 c 156.850 590.803 156.720 590.366 156.459 590.064 c 156.199 589.761 155.871 589.610 155.475 589.610 c 155.079 589.610 154.751 589.759 154.490 590.056 c 154.230 590.353 154.100 590.803 154.100 591.407 c h 158.590 593.735 m 158.590 589.064 l 159.308 589.064 l 159.308 589.735 l 159.642 589.225 160.136 588.970 160.793 588.970 c 161.074 588.970 161.332 589.019 161.566 589.118 c 161.801 589.217 161.975 589.347 162.090 589.509 c 162.204 589.670 162.288 589.866 162.340 590.095 c 162.371 590.241 162.386 590.496 162.386 590.860 c 162.386 593.735 l 161.590 593.735 l 161.590 590.892 l 161.590 590.569 161.558 590.329 161.496 590.173 c 161.433 590.017 161.324 589.889 161.168 589.790 c 161.011 589.691 160.829 589.642 160.621 589.642 c 160.288 589.642 159.998 589.748 159.754 589.962 c 159.509 590.176 159.386 590.584 159.386 591.189 c 159.386 593.735 l 158.590 593.735 l h 166.642 592.032 m 167.423 592.126 l 167.340 592.668 167.121 593.090 166.767 593.392 c 166.413 593.694 165.980 593.845 165.470 593.845 c 164.835 593.845 164.324 593.636 163.939 593.220 c 163.553 592.803 163.361 592.204 163.361 591.423 c 163.361 590.912 163.444 590.470 163.611 590.095 c 163.777 589.720 164.030 589.439 164.368 589.251 c 164.707 589.064 165.079 588.970 165.486 588.970 c 165.986 588.970 166.397 589.097 166.720 589.353 c 167.043 589.608 167.251 589.970 167.345 590.439 c 166.579 590.564 l 166.506 590.251 166.376 590.014 166.189 589.853 c 166.001 589.691 165.777 589.610 165.517 589.610 c 165.111 589.610 164.785 589.754 164.540 590.040 c 164.295 590.327 164.173 590.777 164.173 591.392 c 164.173 592.027 164.293 592.485 164.532 592.767 c 164.772 593.048 165.085 593.189 165.470 593.189 c 165.782 593.189 166.043 593.095 166.251 592.907 c 166.460 592.720 166.590 592.428 166.642 592.032 c h 165.579 587.251 m 166.064 586.501 l 166.954 586.501 l 165.970 587.735 l 165.126 587.735 l 164.173 586.501 l 165.079 586.501 l 165.579 587.251 l h 171.282 592.235 m 172.111 592.329 l 171.975 592.808 171.733 593.181 171.384 593.446 c 171.035 593.712 170.590 593.845 170.048 593.845 c 169.371 593.845 168.832 593.634 168.431 593.212 c 168.030 592.790 167.829 592.199 167.829 591.439 c 167.829 590.657 168.032 590.051 168.439 589.618 c 168.845 589.186 169.371 588.970 170.017 588.970 c 170.642 588.970 171.150 589.181 171.540 589.603 c 171.931 590.024 172.126 590.621 172.126 591.392 c 172.126 591.444 172.126 591.517 172.126 591.610 c 168.642 591.610 l 168.673 592.121 168.819 592.511 169.079 592.782 c 169.340 593.053 169.668 593.189 170.064 593.189 c 170.355 593.189 170.603 593.113 170.806 592.962 c 171.009 592.811 171.168 592.569 171.282 592.235 c h 168.689 590.954 m 171.298 590.954 l 171.267 590.558 171.168 590.261 171.001 590.064 c 170.751 589.761 170.423 589.610 170.017 589.610 c 169.652 589.610 169.348 589.733 169.103 589.978 c 168.858 590.222 168.720 590.548 168.689 590.954 c h 173.100 593.735 m 173.100 589.064 l 173.819 589.064 l 173.819 589.735 l 174.152 589.225 174.647 588.970 175.303 588.970 c 175.585 588.970 175.843 589.019 176.077 589.118 c 176.311 589.217 176.486 589.347 176.600 589.509 c 176.715 589.670 176.798 589.866 176.850 590.095 c 176.882 590.241 176.897 590.496 176.897 590.860 c 176.897 593.735 l 176.100 593.735 l 176.100 590.892 l 176.100 590.569 176.069 590.329 176.007 590.173 c 175.944 590.017 175.835 589.889 175.678 589.790 c 175.522 589.691 175.340 589.642 175.132 589.642 c 174.798 589.642 174.509 589.748 174.264 589.962 c 174.020 590.176 173.897 590.584 173.897 591.189 c 173.897 593.735 l 173.100 593.735 l h 178.387 593.735 m 178.387 589.064 l 179.168 589.064 l 179.168 593.735 l 178.387 593.735 l h 177.856 587.735 m 178.449 586.501 l 179.481 586.501 l 178.512 587.735 l 177.856 587.735 l h f Q 0 J 1.45000 M newpath 159.000 270.172 m 159.000 297.141 l S newpath 159.000 305.141 m 164.000 293.141 l 159.000 296.141 l 154.000 293.141 l h f 2 J 10.0000 M 0 J 1.45000 M newpath 159.000 340.172 m 159.000 364.631 l S newpath 159.000 372.631 m 164.000 360.631 l 159.000 363.631 l 154.000 360.631 l h f 2 J 10.0000 M 0 J 1.45000 M newpath 209.813 392.638 m 268.600 392.638 l 268.600 252.638 l 207.003 252.638 l S newpath 199.003 252.638 m 211.003 257.638 l 208.003 252.638 l 211.003 247.638 l h f 2 J 1.60000 M 0 J 1.45000 M newpath 221.909 386.002 m 225.206 377.408 l 226.425 377.408 l 229.941 386.002 l 228.659 386.002 l 227.644 383.392 l 224.066 383.392 l 223.113 386.002 l 221.909 386.002 l h 224.394 382.470 m 227.300 382.470 l 226.409 380.095 l 226.128 379.377 225.925 378.783 225.800 378.314 c 225.685 378.866 225.529 379.413 225.331 379.955 c 224.394 382.470 l h 230.726 386.002 m 230.726 379.783 l 231.663 379.783 l 231.663 380.658 l 232.122 379.981 232.783 379.642 233.648 379.642 c 234.023 379.642 234.369 379.710 234.687 379.845 c 235.004 379.981 235.241 380.158 235.398 380.377 c 235.554 380.595 235.663 380.850 235.726 381.142 c 235.757 381.340 235.773 381.684 235.773 382.173 c 235.773 386.002 l 234.726 386.002 l 234.726 382.220 l 234.726 381.783 234.684 381.460 234.601 381.252 c 234.517 381.043 234.372 380.874 234.163 380.744 c 233.955 380.614 233.710 380.548 233.429 380.548 c 232.981 380.548 232.593 380.692 232.265 380.978 c 231.937 381.265 231.773 381.804 231.773 382.595 c 231.773 386.002 l 230.726 386.002 l h 237.009 382.892 m 237.009 381.736 237.327 380.882 237.962 380.330 c 238.493 379.871 239.144 379.642 239.915 379.642 c 240.769 379.642 241.470 379.921 242.017 380.478 c 242.564 381.035 242.837 381.809 242.837 382.798 c 242.837 383.600 242.717 384.231 242.478 384.689 c 242.238 385.147 241.887 385.504 241.423 385.759 c 240.960 386.015 240.457 386.142 239.915 386.142 c 239.051 386.142 238.350 385.864 237.814 385.306 c 237.277 384.749 237.009 383.944 237.009 382.892 c h 238.087 382.892 m 238.087 383.684 238.262 384.278 238.611 384.673 c 238.960 385.069 239.394 385.267 239.915 385.267 c 240.446 385.267 240.884 385.069 241.228 384.673 c 241.571 384.278 241.743 383.673 241.743 382.861 c 241.743 382.090 241.569 381.507 241.220 381.111 c 240.871 380.715 240.436 380.517 239.915 380.517 c 239.394 380.517 238.960 380.712 238.611 381.103 c 238.262 381.494 238.087 382.090 238.087 382.892 c h f 2 J 10.0000 M 0 J 1.45000 M newpath 159.000 190.226 m 159.000 227.115 l S newpath 159.000 235.115 m 164.000 223.115 l 159.000 226.115 l 154.000 223.115 l h f 2 J 10.0000 M 0 J 1.45000 M newpath 159.000 412.655 m 159.000 441.251 l S newpath 159.000 449.251 m 164.000 437.251 l 159.000 440.251 l 154.000 437.251 l h f 2 J 1.60000 M 0 J 1.45000 M newpath 163.922 435.668 m 163.922 427.074 l 165.078 427.074 l 169.594 433.824 l 169.594 427.074 l 170.688 427.074 l 170.688 435.668 l 169.516 435.668 l 165.000 428.918 l 165.000 435.668 l 163.922 435.668 l h 176.713 433.668 m 177.807 433.793 l 177.640 434.428 177.322 434.923 176.854 435.277 c 176.385 435.631 175.791 435.808 175.072 435.808 c 174.166 435.808 173.445 435.527 172.908 434.964 c 172.372 434.402 172.104 433.615 172.104 432.605 c 172.104 431.563 172.374 430.753 172.916 430.175 c 173.458 429.597 174.156 429.308 175.010 429.308 c 175.843 429.308 176.523 429.589 177.049 430.152 c 177.575 430.714 177.838 431.511 177.838 432.543 c 177.838 432.605 177.838 432.699 177.838 432.824 c 173.197 432.824 l 173.239 433.511 173.432 434.035 173.775 434.394 c 174.119 434.753 174.551 434.933 175.072 434.933 c 175.458 434.933 175.788 434.832 176.064 434.628 c 176.340 434.425 176.557 434.105 176.713 433.668 c h 173.260 431.964 m 176.729 431.964 l 176.687 431.433 176.557 431.037 176.338 430.777 c 175.994 430.371 175.557 430.168 175.025 430.168 c 174.536 430.168 174.127 430.329 173.799 430.652 c 173.471 430.975 173.291 431.412 173.260 431.964 c h f 2 J 10.0000 M 0 J 1.45000 M newpath 159.000 484.275 m 159.000 494.699 l S newpath 159.000 502.699 m 164.000 490.699 l 159.000 493.699 l 154.000 490.699 l h f 2 J 10.0000 M 0 J 1.45000 M newpath 209.817 522.700 m 332.600 522.700 l 332.600 172.700 l 206.967 172.700 l S newpath 198.967 172.700 m 210.967 177.700 l 207.967 172.700 l 210.967 167.700 l h f 2 J 1.60000 M 0 J 1.45000 M newpath 222.847 516.063 m 222.847 507.470 l 224.003 507.470 l 228.519 514.220 l 228.519 507.470 l 229.613 507.470 l 229.613 516.063 l 228.441 516.063 l 223.925 509.313 l 223.925 516.063 l 222.847 516.063 l h 235.638 514.063 m 236.732 514.188 l 236.565 514.824 236.247 515.319 235.779 515.673 c 235.310 516.027 234.716 516.204 233.997 516.204 c 233.091 516.204 232.370 515.923 231.833 515.360 c 231.297 514.798 231.029 514.011 231.029 513.001 c 231.029 511.959 231.299 511.149 231.841 510.571 c 232.383 509.993 233.081 509.704 233.935 509.704 c 234.768 509.704 235.448 509.985 235.974 510.548 c 236.500 511.110 236.763 511.907 236.763 512.938 c 236.763 513.001 236.763 513.095 236.763 513.220 c 232.122 513.220 l 232.164 513.907 232.357 514.430 232.700 514.790 c 233.044 515.149 233.476 515.329 233.997 515.329 c 234.383 515.329 234.713 515.227 234.989 515.024 c 235.265 514.821 235.482 514.501 235.638 514.063 c h 232.185 512.360 m 235.654 512.360 l 235.612 511.829 235.482 511.433 235.263 511.173 c 234.919 510.766 234.482 510.563 233.950 510.563 c 233.461 510.563 233.052 510.725 232.724 511.048 c 232.396 511.371 232.216 511.808 232.185 512.360 c h f 2 J 10.0000 M 0 J 1.45000 M newpath 159.000 109.299 m 159.000 147.209 l S newpath 159.000 155.209 m 164.000 143.209 l 159.000 146.209 l 154.000 143.209 l h f 2 J 10.0000 M 0 J 1.45000 M newpath 159.000 542.706 m 159.000 564.714 l S newpath 159.000 572.714 m 164.000 560.714 l 159.000 563.714 l 154.000 560.714 l h f 2 J 1.60000 M 0 J 1.45000 M newpath 162.984 562.414 m 166.281 553.820 l 167.500 553.820 l 171.016 562.414 l 169.734 562.414 l 168.719 559.805 l 165.141 559.805 l 164.188 562.414 l 162.984 562.414 l h 165.469 558.883 m 168.375 558.883 l 167.484 556.508 l 167.203 555.789 167.000 555.195 166.875 554.726 c 166.760 555.278 166.604 555.825 166.406 556.367 c 165.469 558.883 l h 171.801 562.414 m 171.801 556.195 l 172.738 556.195 l 172.738 557.070 l 173.197 556.393 173.858 556.055 174.723 556.055 c 175.098 556.055 175.444 556.122 175.762 556.258 c 176.079 556.393 176.316 556.570 176.473 556.789 c 176.629 557.008 176.738 557.263 176.801 557.555 c 176.832 557.752 176.848 558.096 176.848 558.586 c 176.848 562.414 l 175.801 562.414 l 175.801 558.633 l 175.801 558.195 175.759 557.872 175.676 557.664 c 175.592 557.456 175.447 557.286 175.238 557.156 c 175.030 557.026 174.785 556.961 174.504 556.961 c 174.056 556.961 173.668 557.104 173.340 557.390 c 173.012 557.677 172.848 558.216 172.848 559.008 c 172.848 562.414 l 171.801 562.414 l h 178.084 559.305 m 178.084 558.148 178.402 557.294 179.037 556.742 c 179.568 556.284 180.219 556.055 180.990 556.055 c 181.844 556.055 182.545 556.333 183.092 556.890 c 183.639 557.448 183.912 558.221 183.912 559.211 c 183.912 560.013 183.792 560.643 183.553 561.101 c 183.313 561.560 182.962 561.916 182.498 562.172 c 182.035 562.427 181.532 562.555 180.990 562.555 c 180.126 562.555 179.425 562.276 178.889 561.719 c 178.352 561.161 178.084 560.357 178.084 559.305 c h 179.162 559.305 m 179.162 560.096 179.337 560.690 179.686 561.086 c 180.035 561.482 180.469 561.680 180.990 561.680 c 181.521 561.680 181.959 561.482 182.303 561.086 c 182.646 560.690 182.818 560.086 182.818 559.273 c 182.818 558.502 182.644 557.919 182.295 557.523 c 181.946 557.127 181.511 556.930 180.990 556.930 c 180.469 556.930 180.035 557.125 179.686 557.515 c 179.337 557.906 179.162 558.502 179.162 559.305 c h f 2 J 10.0000 M Q [ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] defaultmatrix matrix concatmatrix setmatrix cliprestore end end restore showpage %%Trailer %%EOF