%!PS-Adobe-3.0 EPSF-3.0 %%BoundingBox: 20 273 575 518 %%Creator: yExport 1.1.0.2 %%Producer: org.freehep.graphicsio.ps.PSGraphics2D Revision: 12753 %%For: %%Title: %%CreationDate: Saturday, July 3, 2010 1:32:54 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 400 176 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 400.000 0.00000 l 400.000 176.000 l 0.00000 176.000 l 0.00000 0.00000 l h f 0.00000 0.00000 0.00000 RG 0 0 400 176 rc q [ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] concat [ 1.00000 0.00000 0.00000 1.00000 -47.0000 -173.000 ] concat 1.00000 1.00000 1.00000 RG newpath 47.0000 173.000 m 447.000 173.000 l 447.000 349.000 l 47.0000 349.000 l 47.0000 173.000 l h f 0.00000 0.00000 0.00000 RG [ 1.00000 0.00000 0.00000 1.00000 -47.0000 -173.000 ] defaultmatrix matrix concatmatrix setmatrix [ 1.00000 0.00000 0.00000 1.00000 -47.0000 -173.000 ] 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 -47.0000 -173.000 ] defaultmatrix matrix concatmatrix setmatrix q 0 J 1.45000 M << /PatternType 2 /Shading << /ShadingType 2 /ColorSpace /DeviceRGB /Coords [62.0 188.0 166.0 334.0] /Function << /FunctionType 2 /Domain [0 1] /Range [0 1 0 1 0 1] /C0 [0.9098039 0.93333334 0.96862745] /C1 [0.7176471 0.7882353 0.8901961] /N 1 >> /Extend [true true] >> >> matrix makepattern setpattern newpath 62.0000 188.000 m 166.000 188.000 l 166.000 334.000 l 62.0000 334.000 l h f 0.00000 0.00000 0.00000 RG newpath 62.0000 188.000 m 166.000 188.000 l 166.000 334.000 l 62.0000 334.000 l h S 2 J 10.0000 M 1.60000 M 10.0000 M newpath 89.2051 255.598 m 90.2676 255.504 l 90.3197 255.941 90.4395 256.296 90.6270 256.566 c 90.8145 256.837 91.1035 257.059 91.4941 257.230 c 91.8848 257.402 92.3249 257.488 92.8145 257.488 c 93.2415 257.488 93.6217 257.423 93.9551 257.293 c 94.2884 257.163 94.5358 256.986 94.6973 256.762 c 94.8587 256.538 94.9395 256.296 94.9395 256.035 c 94.9395 255.764 94.8613 255.527 94.7051 255.324 c 94.5488 255.121 94.2936 254.952 93.9395 254.816 c 93.6999 254.723 93.1868 254.582 92.4004 254.395 c 91.6139 254.207 91.0645 254.030 90.7520 253.863 c 90.3353 253.645 90.0280 253.376 89.8301 253.059 c 89.6322 252.741 89.5332 252.384 89.5332 251.988 c 89.5332 251.561 89.6556 251.158 89.9004 250.777 c 90.1452 250.397 90.5046 250.111 90.9785 249.918 c 91.4525 249.725 91.9759 249.629 92.5488 249.629 c 93.1842 249.629 93.7467 249.730 94.2363 249.934 c 94.7259 250.137 95.1009 250.439 95.3613 250.840 c 95.6217 251.241 95.7624 251.691 95.7832 252.191 c 94.6895 252.270 l 94.6270 251.728 94.4264 251.319 94.0879 251.043 c 93.7493 250.767 93.2520 250.629 92.5957 250.629 c 91.9082 250.629 91.4082 250.754 91.0957 251.004 c 90.7832 251.254 90.6270 251.556 90.6270 251.910 c 90.6270 252.223 90.7363 252.478 90.9551 252.676 c 91.1738 252.874 91.7441 253.077 92.6660 253.285 c 93.5879 253.493 94.2207 253.676 94.5645 253.832 c 95.0645 254.072 95.4342 254.366 95.6738 254.715 c 95.9134 255.064 96.0332 255.473 96.0332 255.941 c 96.0332 256.400 95.9030 256.829 95.6426 257.230 c 95.3822 257.632 95.0072 257.944 94.5176 258.168 c 94.0280 258.392 93.4759 258.504 92.8613 258.504 c 92.0801 258.504 91.4264 258.392 90.9004 258.168 c 90.3743 257.944 89.9629 257.603 89.6660 257.145 c 89.3691 256.686 89.2155 256.171 89.2051 255.598 c h 97.4590 250.988 m 97.4590 249.770 l 98.5215 249.770 l 98.5215 250.988 l 97.4590 250.988 l h 97.4590 258.363 m 97.4590 252.145 l 98.5215 252.145 l 98.5215 258.363 l 97.4590 258.363 l h 100.125 258.363 m 100.125 252.145 l 101.062 252.145 l 101.062 253.020 l 101.260 252.707 101.521 252.460 101.844 252.277 c 102.167 252.095 102.536 252.004 102.953 252.004 c 103.411 252.004 103.789 252.098 104.086 252.285 c 104.383 252.473 104.589 252.738 104.703 253.082 c 105.203 252.363 105.844 252.004 106.625 252.004 c 107.250 252.004 107.727 252.173 108.055 252.512 c 108.383 252.850 108.547 253.379 108.547 254.098 c 108.547 258.363 l 107.500 258.363 l 107.500 254.441 l 107.500 254.025 107.466 253.723 107.398 253.535 c 107.331 253.348 107.208 253.197 107.031 253.082 c 106.854 252.967 106.641 252.910 106.391 252.910 c 105.953 252.910 105.591 253.056 105.305 253.348 c 105.018 253.639 104.875 254.108 104.875 254.754 c 104.875 258.363 l 103.812 258.363 l 103.812 254.316 l 103.812 253.848 103.727 253.496 103.555 253.262 c 103.383 253.027 103.104 252.910 102.719 252.910 c 102.417 252.910 102.141 252.988 101.891 253.145 c 101.641 253.301 101.458 253.530 101.344 253.832 c 101.229 254.134 101.172 254.566 101.172 255.129 c 101.172 258.363 l 100.125 258.363 l h 114.199 258.363 m 114.199 257.441 l 113.710 258.150 113.048 258.504 112.215 258.504 c 111.850 258.504 111.509 258.434 111.191 258.293 c 110.874 258.152 110.637 257.975 110.480 257.762 c 110.324 257.548 110.215 257.285 110.152 256.973 c 110.111 256.775 110.090 256.447 110.090 255.988 c 110.090 252.145 l 111.152 252.145 l 111.152 255.598 l 111.152 256.139 111.173 256.509 111.215 256.707 c 111.277 256.978 111.415 257.194 111.629 257.355 c 111.842 257.517 112.111 257.598 112.434 257.598 c 112.746 257.598 113.040 257.517 113.316 257.355 c 113.592 257.194 113.790 256.973 113.910 256.691 c 114.030 256.410 114.090 256.004 114.090 255.473 c 114.090 252.145 l 115.137 252.145 l 115.137 258.363 l 114.199 258.363 l h 116.764 258.363 m 116.764 249.770 l 117.826 249.770 l 117.826 258.363 l 116.764 258.363 l h 123.523 257.598 m 123.128 257.931 122.750 258.165 122.391 258.301 c 122.031 258.436 121.643 258.504 121.227 258.504 c 120.539 258.504 120.013 258.337 119.648 258.004 c 119.284 257.671 119.102 257.243 119.102 256.723 c 119.102 256.421 119.169 256.142 119.305 255.887 c 119.440 255.632 119.622 255.428 119.852 255.277 c 120.081 255.126 120.336 255.014 120.617 254.941 c 120.815 254.879 121.128 254.822 121.555 254.770 c 122.398 254.676 123.023 254.556 123.430 254.410 c 123.430 254.264 123.430 254.176 123.430 254.145 c 123.430 253.707 123.331 253.400 123.133 253.223 c 122.862 252.993 122.461 252.879 121.930 252.879 c 121.440 252.879 121.076 252.965 120.836 253.137 c 120.596 253.309 120.419 253.613 120.305 254.051 c 119.273 253.910 l 119.367 253.473 119.523 253.118 119.742 252.848 c 119.961 252.577 120.273 252.368 120.680 252.223 c 121.086 252.077 121.555 252.004 122.086 252.004 c 122.617 252.004 123.049 252.066 123.383 252.191 c 123.716 252.316 123.961 252.473 124.117 252.660 c 124.273 252.848 124.383 253.087 124.445 253.379 c 124.477 253.556 124.492 253.879 124.492 254.348 c 124.492 255.754 l 124.492 256.733 124.516 257.353 124.562 257.613 c 124.609 257.874 124.701 258.124 124.836 258.363 c 123.727 258.363 l 123.622 258.145 123.555 257.889 123.523 257.598 c h 123.430 255.238 m 123.044 255.395 122.471 255.530 121.711 255.645 c 121.273 255.707 120.966 255.777 120.789 255.855 c 120.612 255.934 120.474 256.046 120.375 256.191 c 120.276 256.337 120.227 256.504 120.227 256.691 c 120.227 256.973 120.333 257.207 120.547 257.395 c 120.760 257.582 121.070 257.676 121.477 257.676 c 121.883 257.676 122.245 257.587 122.562 257.410 c 122.880 257.233 123.112 256.988 123.258 256.676 c 123.372 256.436 123.430 256.087 123.430 255.629 c 123.430 255.238 l h 120.789 250.363 m 121.570 248.723 l 122.961 248.723 l 121.664 250.363 l 120.789 250.363 l h 128.432 257.426 m 128.588 258.348 l 128.286 258.410 128.020 258.441 127.791 258.441 c 127.406 258.441 127.109 258.382 126.900 258.262 c 126.692 258.142 126.544 257.983 126.455 257.785 c 126.367 257.587 126.322 257.171 126.322 256.535 c 126.322 252.957 l 125.557 252.957 l 125.557 252.145 l 126.322 252.145 l 126.322 250.598 l 127.369 249.973 l 127.369 252.145 l 128.432 252.145 l 128.432 252.957 l 127.369 252.957 l 127.369 256.598 l 127.369 256.900 127.387 257.092 127.424 257.176 c 127.460 257.259 127.520 257.327 127.604 257.379 c 127.687 257.431 127.807 257.457 127.963 257.457 c 128.088 257.457 128.244 257.447 128.432 257.426 c h 129.078 255.254 m 129.078 254.098 129.396 253.243 130.031 252.691 c 130.562 252.233 131.214 252.004 131.984 252.004 c 132.839 252.004 133.539 252.283 134.086 252.840 c 134.633 253.397 134.906 254.171 134.906 255.160 c 134.906 255.962 134.786 256.592 134.547 257.051 c 134.307 257.509 133.956 257.866 133.492 258.121 c 133.029 258.376 132.526 258.504 131.984 258.504 c 131.120 258.504 130.419 258.225 129.883 257.668 c 129.346 257.111 129.078 256.306 129.078 255.254 c h 130.156 255.254 m 130.156 256.046 130.331 256.639 130.680 257.035 c 131.029 257.431 131.464 257.629 131.984 257.629 c 132.516 257.629 132.953 257.431 133.297 257.035 c 133.641 256.639 133.812 256.035 133.812 255.223 c 133.812 254.452 133.638 253.868 133.289 253.473 c 132.940 253.077 132.505 252.879 131.984 252.879 c 131.464 252.879 131.029 253.074 130.680 253.465 c 130.331 253.855 130.156 254.452 130.156 255.254 c h 136.127 258.363 m 136.127 252.145 l 137.080 252.145 l 137.080 253.082 l 137.320 252.645 137.541 252.355 137.744 252.215 c 137.947 252.074 138.174 252.004 138.424 252.004 c 138.778 252.004 139.137 252.113 139.502 252.332 c 139.143 253.316 l 138.882 253.160 138.627 253.082 138.377 253.082 c 138.137 253.082 137.926 253.152 137.744 253.293 c 137.562 253.434 137.434 253.629 137.361 253.879 c 137.236 254.254 137.174 254.660 137.174 255.098 c 137.174 258.363 l 136.127 258.363 l h f newpath 93.9775 273.064 m 97.2744 264.471 l 98.4932 264.471 l 102.009 273.064 l 100.728 273.064 l 99.7119 270.455 l 96.1338 270.455 l 95.1807 273.064 l 93.9775 273.064 l h 96.4619 269.533 m 99.3682 269.533 l 98.4775 267.158 l 98.1963 266.439 97.9932 265.846 97.8682 265.377 c 97.7536 265.929 97.5973 266.476 97.3994 267.018 c 96.4619 269.533 l h 102.794 265.689 m 102.794 264.471 l 103.856 264.471 l 103.856 265.689 l 102.794 265.689 l h 102.794 273.064 m 102.794 266.846 l 103.856 266.846 l 103.856 273.064 l 102.794 273.064 l h 105.460 273.064 m 105.460 266.846 l 106.397 266.846 l 106.397 267.721 l 106.595 267.408 106.856 267.161 107.179 266.979 c 107.502 266.796 107.871 266.705 108.288 266.705 c 108.746 266.705 109.124 266.799 109.421 266.986 c 109.718 267.174 109.924 267.439 110.038 267.783 c 110.538 267.064 111.179 266.705 111.960 266.705 c 112.585 266.705 113.062 266.874 113.390 267.213 c 113.718 267.551 113.882 268.080 113.882 268.799 c 113.882 273.064 l 112.835 273.064 l 112.835 269.143 l 112.835 268.726 112.801 268.424 112.733 268.236 c 112.666 268.049 112.543 267.898 112.366 267.783 c 112.189 267.669 111.976 267.611 111.726 267.611 c 111.288 267.611 110.926 267.757 110.640 268.049 c 110.353 268.340 110.210 268.809 110.210 269.455 c 110.210 273.064 l 109.147 273.064 l 109.147 269.018 l 109.147 268.549 109.062 268.197 108.890 267.963 c 108.718 267.729 108.439 267.611 108.054 267.611 c 107.752 267.611 107.476 267.689 107.226 267.846 c 106.976 268.002 106.793 268.231 106.679 268.533 c 106.564 268.835 106.507 269.268 106.507 269.830 c 106.507 273.064 l 105.460 273.064 l h 115.034 271.205 m 116.065 271.049 l 116.128 271.465 116.292 271.783 116.558 272.002 c 116.823 272.221 117.201 272.330 117.690 272.330 c 118.170 272.330 118.526 272.234 118.761 272.041 c 118.995 271.848 119.112 271.617 119.112 271.346 c 119.112 271.106 119.008 270.919 118.800 270.783 c 118.654 270.689 118.295 270.570 117.722 270.424 c 116.951 270.226 116.417 270.057 116.120 269.916 c 115.823 269.775 115.597 269.580 115.440 269.330 c 115.284 269.080 115.206 268.799 115.206 268.486 c 115.206 268.215 115.269 267.960 115.394 267.721 c 115.519 267.481 115.690 267.283 115.909 267.127 c 116.076 267.012 116.300 266.913 116.581 266.830 c 116.862 266.747 117.170 266.705 117.503 266.705 c 117.982 266.705 118.407 266.775 118.776 266.916 c 119.146 267.057 119.420 267.247 119.597 267.486 c 119.774 267.726 119.894 268.044 119.956 268.439 c 118.925 268.580 l 118.883 268.268 118.750 268.020 118.526 267.838 c 118.302 267.656 117.982 267.564 117.565 267.564 c 117.086 267.564 116.743 267.645 116.534 267.807 c 116.326 267.968 116.222 268.158 116.222 268.377 c 116.222 268.512 116.263 268.632 116.347 268.736 c 116.440 268.851 116.576 268.945 116.753 269.018 c 116.857 269.059 117.170 269.148 117.690 269.283 c 118.440 269.492 118.961 269.658 119.253 269.783 c 119.545 269.908 119.774 270.090 119.940 270.330 c 120.107 270.570 120.190 270.872 120.190 271.236 c 120.190 271.590 120.089 271.921 119.886 272.229 c 119.683 272.536 119.388 272.775 119.003 272.947 c 118.618 273.119 118.180 273.205 117.690 273.205 c 116.878 273.205 116.261 273.036 115.839 272.697 c 115.417 272.359 115.149 271.861 115.034 271.205 c h 125.534 273.064 m 125.534 272.143 l 125.045 272.851 124.383 273.205 123.550 273.205 c 123.185 273.205 122.844 273.135 122.526 272.994 c 122.209 272.854 121.972 272.676 121.815 272.463 c 121.659 272.249 121.550 271.986 121.487 271.674 c 121.446 271.476 121.425 271.148 121.425 270.689 c 121.425 266.846 l 122.487 266.846 l 122.487 270.299 l 122.487 270.840 122.508 271.210 122.550 271.408 c 122.612 271.679 122.750 271.895 122.964 272.057 c 123.177 272.218 123.446 272.299 123.769 272.299 c 124.081 272.299 124.375 272.218 124.651 272.057 c 124.927 271.895 125.125 271.674 125.245 271.393 c 125.365 271.111 125.425 270.705 125.425 270.174 c 125.425 266.846 l 126.472 266.846 l 126.472 273.064 l 125.534 273.064 l h 128.130 273.064 m 128.130 266.846 l 129.067 266.846 l 129.067 267.721 l 129.526 267.044 130.187 266.705 131.052 266.705 c 131.427 266.705 131.773 266.773 132.091 266.908 c 132.409 267.044 132.646 267.221 132.802 267.439 c 132.958 267.658 133.067 267.913 133.130 268.205 c 133.161 268.403 133.177 268.747 133.177 269.236 c 133.177 273.064 l 132.130 273.064 l 132.130 269.283 l 132.130 268.846 132.088 268.523 132.005 268.314 c 131.922 268.106 131.776 267.937 131.567 267.807 c 131.359 267.676 131.114 267.611 130.833 267.611 c 130.385 267.611 129.997 267.755 129.669 268.041 c 129.341 268.327 129.177 268.867 129.177 269.658 c 129.177 273.064 l 128.130 273.064 l h f Q q 0 J 1.45000 M << /PatternType 2 /Shading << /ShadingType 2 /ColorSpace /DeviceRGB /Coords [328.0 188.0 432.0 334.0] /Function << /FunctionType 2 /Domain [0 1] /Range [0 1 0 1 0 1] /C0 [0.9098039 0.93333334 0.96862745] /C1 [0.7176471 0.7882353 0.8901961] /N 1 >> /Extend [true true] >> >> matrix makepattern setpattern newpath 328.000 188.000 m 432.000 188.000 l 432.000 334.000 l 328.000 334.000 l h f 0.00000 0.00000 0.00000 RG newpath 328.000 188.000 m 432.000 188.000 l 432.000 334.000 l 328.000 334.000 l h S 2 J 10.0000 M 1.60000 M 10.0000 M newpath 338.265 265.714 m 338.265 257.120 l 344.468 257.120 l 344.468 258.136 l 339.405 258.136 l 339.405 260.761 l 344.155 260.761 l 344.155 261.776 l 339.405 261.776 l 339.405 264.698 l 344.671 264.698 l 344.671 265.714 l 338.265 265.714 l h 345.409 265.714 m 347.675 262.479 l 345.581 259.495 l 346.894 259.495 l 347.847 260.948 l 348.024 261.229 348.170 261.464 348.284 261.651 c 348.451 261.391 348.607 261.162 348.753 260.964 c 349.800 259.495 l 351.065 259.495 l 348.909 262.417 l 351.222 265.714 l 349.940 265.714 l 348.659 263.776 l 348.315 263.261 l 346.675 265.714 l 345.409 265.714 l h 354.409 264.776 m 354.565 265.698 l 354.263 265.761 353.998 265.792 353.769 265.792 c 353.383 265.792 353.086 265.732 352.878 265.612 c 352.670 265.493 352.521 265.334 352.433 265.136 c 352.344 264.938 352.300 264.521 352.300 263.886 c 352.300 260.308 l 351.534 260.308 l 351.534 259.495 l 352.300 259.495 l 352.300 257.948 l 353.347 257.323 l 353.347 259.495 l 354.409 259.495 l 354.409 260.308 l 353.347 260.308 l 353.347 263.948 l 353.347 264.250 353.365 264.443 353.401 264.526 c 353.438 264.610 353.498 264.677 353.581 264.729 c 353.664 264.782 353.784 264.808 353.940 264.808 c 354.065 264.808 354.222 264.797 354.409 264.776 c h 359.696 263.714 m 360.790 263.839 l 360.623 264.474 360.306 264.969 359.837 265.323 c 359.368 265.677 358.774 265.854 358.056 265.854 c 357.149 265.854 356.428 265.573 355.892 265.011 c 355.355 264.448 355.087 263.662 355.087 262.651 c 355.087 261.610 355.358 260.800 355.899 260.222 c 356.441 259.644 357.139 259.354 357.993 259.354 c 358.826 259.354 359.506 259.636 360.032 260.198 c 360.558 260.761 360.821 261.558 360.821 262.589 c 360.821 262.651 360.821 262.745 360.821 262.870 c 356.181 262.870 l 356.222 263.558 356.415 264.081 356.759 264.440 c 357.103 264.800 357.535 264.979 358.056 264.979 c 358.441 264.979 358.772 264.878 359.048 264.675 c 359.324 264.472 359.540 264.151 359.696 263.714 c h 356.243 262.011 m 359.712 262.011 l 359.670 261.479 359.540 261.084 359.321 260.823 c 358.978 260.417 358.540 260.214 358.009 260.214 c 357.519 260.214 357.110 260.375 356.782 260.698 c 356.454 261.021 356.274 261.459 356.243 262.011 c h 362.104 265.714 m 362.104 259.495 l 363.058 259.495 l 363.058 260.433 l 363.297 259.995 363.519 259.706 363.722 259.565 c 363.925 259.425 364.151 259.354 364.401 259.354 c 364.756 259.354 365.115 259.464 365.479 259.683 c 365.120 260.667 l 364.860 260.511 364.604 260.433 364.354 260.433 c 364.115 260.433 363.904 260.503 363.722 260.644 c 363.539 260.784 363.412 260.979 363.339 261.229 c 363.214 261.604 363.151 262.011 363.151 262.448 c 363.151 265.714 l 362.104 265.714 l h 366.116 265.714 m 366.116 259.495 l 367.054 259.495 l 367.054 260.370 l 367.512 259.693 368.174 259.354 369.038 259.354 c 369.413 259.354 369.759 259.422 370.077 259.558 c 370.395 259.693 370.632 259.870 370.788 260.089 c 370.944 260.308 371.054 260.563 371.116 260.854 c 371.147 261.052 371.163 261.396 371.163 261.886 c 371.163 265.714 l 370.116 265.714 l 370.116 261.933 l 370.116 261.495 370.075 261.172 369.991 260.964 c 369.908 260.756 369.762 260.586 369.554 260.456 c 369.345 260.326 369.101 260.261 368.819 260.261 c 368.371 260.261 367.983 260.404 367.655 260.690 c 367.327 260.977 367.163 261.516 367.163 262.308 c 367.163 265.714 l 366.116 265.714 l h 373.149 265.714 m 373.149 259.495 l 374.212 259.495 l 374.212 265.714 l 373.149 265.714 l h 373.118 257.714 m 373.899 256.073 l 375.290 256.073 l 373.993 257.714 l 373.118 257.714 l h 383.521 264.948 m 383.125 265.282 382.747 265.516 382.388 265.651 c 382.028 265.787 381.640 265.854 381.224 265.854 c 380.536 265.854 380.010 265.688 379.646 265.354 c 379.281 265.021 379.099 264.594 379.099 264.073 c 379.099 263.771 379.166 263.493 379.302 263.237 c 379.437 262.982 379.619 262.779 379.849 262.628 c 380.078 262.477 380.333 262.365 380.614 262.292 c 380.812 262.229 381.125 262.172 381.552 262.120 c 382.396 262.026 383.021 261.907 383.427 261.761 c 383.427 261.615 383.427 261.526 383.427 261.495 c 383.427 261.058 383.328 260.750 383.130 260.573 c 382.859 260.344 382.458 260.229 381.927 260.229 c 381.437 260.229 381.073 260.315 380.833 260.487 c 380.593 260.659 380.416 260.964 380.302 261.401 c 379.271 261.261 l 379.364 260.823 379.521 260.469 379.739 260.198 c 379.958 259.927 380.271 259.719 380.677 259.573 c 381.083 259.427 381.552 259.354 382.083 259.354 c 382.614 259.354 383.047 259.417 383.380 259.542 c 383.713 259.667 383.958 259.823 384.114 260.011 c 384.271 260.198 384.380 260.438 384.442 260.729 c 384.474 260.907 384.489 261.229 384.489 261.698 c 384.489 263.104 l 384.489 264.084 384.513 264.703 384.560 264.964 c 384.606 265.224 384.698 265.474 384.833 265.714 c 383.724 265.714 l 383.619 265.495 383.552 265.240 383.521 264.948 c h 383.427 262.589 m 383.041 262.745 382.468 262.881 381.708 262.995 c 381.271 263.058 380.963 263.128 380.786 263.206 c 380.609 263.284 380.471 263.396 380.372 263.542 c 380.273 263.688 380.224 263.854 380.224 264.042 c 380.224 264.323 380.330 264.558 380.544 264.745 c 380.757 264.933 381.067 265.026 381.474 265.026 c 381.880 265.026 382.242 264.938 382.560 264.761 c 382.877 264.584 383.109 264.339 383.255 264.026 c 383.369 263.787 383.427 263.438 383.427 262.979 c 383.427 262.589 l h 386.132 268.104 m 386.132 259.495 l 387.085 259.495 l 387.085 260.292 l 387.314 259.979 387.572 259.745 387.858 259.589 c 388.145 259.433 388.491 259.354 388.897 259.354 c 389.429 259.354 389.897 259.490 390.304 259.761 c 390.710 260.032 391.015 260.417 391.218 260.917 c 391.421 261.417 391.522 261.964 391.522 262.558 c 391.522 263.193 391.410 263.766 391.187 264.276 c 390.963 264.787 390.632 265.177 390.194 265.448 c 389.757 265.719 389.299 265.854 388.819 265.854 c 388.465 265.854 388.147 265.779 387.866 265.628 c 387.585 265.477 387.356 265.292 387.179 265.073 c 387.179 268.104 l 386.132 268.104 l h 387.085 262.636 m 387.085 263.438 387.246 264.029 387.569 264.409 c 387.892 264.789 388.283 264.979 388.741 264.979 c 389.210 264.979 389.611 264.782 389.944 264.386 c 390.278 263.990 390.444 263.375 390.444 262.542 c 390.444 261.750 390.283 261.159 389.960 260.769 c 389.637 260.378 389.246 260.183 388.788 260.183 c 388.340 260.183 387.944 260.391 387.601 260.808 c 387.257 261.224 387.085 261.834 387.085 262.636 c h 392.774 265.714 m 392.774 257.120 l 393.837 257.120 l 393.837 265.714 l 392.774 265.714 l h 395.472 258.339 m 395.472 257.120 l 396.534 257.120 l 396.534 258.339 l 395.472 258.339 l h 395.472 265.714 m 395.472 259.495 l 396.534 259.495 l 396.534 265.714 l 395.472 265.714 l h 398.138 265.714 m 398.138 257.120 l 399.200 257.120 l 399.200 262.026 l 401.685 259.495 l 403.060 259.495 l 400.669 261.792 l 403.294 265.714 l 401.997 265.714 l 399.935 262.526 l 399.200 263.245 l 399.200 265.714 l 398.138 265.714 l h 408.200 264.948 m 407.804 265.282 407.427 265.516 407.067 265.651 c 406.708 265.787 406.320 265.854 405.903 265.854 c 405.216 265.854 404.690 265.688 404.325 265.354 c 403.961 265.021 403.778 264.594 403.778 264.073 c 403.778 263.771 403.846 263.493 403.981 263.237 c 404.117 262.982 404.299 262.779 404.528 262.628 c 404.757 262.477 405.013 262.365 405.294 262.292 c 405.492 262.229 405.804 262.172 406.231 262.120 c 407.075 262.026 407.700 261.907 408.106 261.761 c 408.106 261.615 408.106 261.526 408.106 261.495 c 408.106 261.058 408.007 260.750 407.810 260.573 c 407.539 260.344 407.138 260.229 406.606 260.229 c 406.117 260.229 405.752 260.315 405.513 260.487 c 405.273 260.659 405.096 260.964 404.981 261.401 c 403.950 261.261 l 404.044 260.823 404.200 260.469 404.419 260.198 c 404.638 259.927 404.950 259.719 405.356 259.573 c 405.763 259.427 406.231 259.354 406.763 259.354 c 407.294 259.354 407.726 259.417 408.060 259.542 c 408.393 259.667 408.638 259.823 408.794 260.011 c 408.950 260.198 409.060 260.438 409.122 260.729 c 409.153 260.907 409.169 261.229 409.169 261.698 c 409.169 263.104 l 409.169 264.084 409.192 264.703 409.239 264.964 c 409.286 265.224 409.377 265.474 409.513 265.714 c 408.403 265.714 l 408.299 265.495 408.231 265.240 408.200 264.948 c h 408.106 262.589 m 407.721 262.745 407.148 262.881 406.388 262.995 c 405.950 263.058 405.643 263.128 405.466 263.206 c 405.289 263.284 405.151 263.396 405.052 263.542 c 404.953 263.688 404.903 263.854 404.903 264.042 c 404.903 264.323 405.010 264.558 405.224 264.745 c 405.437 264.933 405.747 265.026 406.153 265.026 c 406.560 265.026 406.922 264.938 407.239 264.761 c 407.557 264.584 407.789 264.339 407.935 264.026 c 408.049 263.787 408.106 263.438 408.106 262.979 c 408.106 262.589 l h 414.874 263.433 m 415.905 263.573 l 415.791 264.282 415.499 264.839 415.030 265.245 c 414.562 265.651 413.989 265.854 413.312 265.854 c 412.457 265.854 411.772 265.576 411.257 265.019 c 410.741 264.461 410.483 263.662 410.483 262.620 c 410.483 261.953 410.595 261.368 410.819 260.862 c 411.043 260.357 411.382 259.979 411.835 259.729 c 412.288 259.479 412.785 259.354 413.327 259.354 c 413.994 259.354 414.543 259.524 414.976 259.862 c 415.408 260.201 415.687 260.688 415.812 261.323 c 414.780 261.479 l 414.687 261.063 414.515 260.748 414.265 260.534 c 414.015 260.321 413.713 260.214 413.358 260.214 c 412.827 260.214 412.395 260.404 412.062 260.784 c 411.728 261.164 411.562 261.766 411.562 262.589 c 411.562 263.433 411.723 264.042 412.046 264.417 c 412.369 264.792 412.785 264.979 413.296 264.979 c 413.713 264.979 414.059 264.854 414.335 264.604 c 414.611 264.354 414.791 263.964 414.874 263.433 c h 421.062 263.714 m 422.155 263.839 l 421.989 264.474 421.671 264.969 421.202 265.323 c 420.733 265.677 420.140 265.854 419.421 265.854 c 418.515 265.854 417.793 265.573 417.257 265.011 c 416.720 264.448 416.452 263.662 416.452 262.651 c 416.452 261.610 416.723 260.800 417.265 260.222 c 417.806 259.644 418.504 259.354 419.358 259.354 c 420.192 259.354 420.871 259.636 421.397 260.198 c 421.924 260.761 422.187 261.558 422.187 262.589 c 422.187 262.651 422.187 262.745 422.187 262.870 c 417.546 262.870 l 417.588 263.558 417.780 264.081 418.124 264.440 c 418.468 264.800 418.900 264.979 419.421 264.979 c 419.806 264.979 420.137 264.878 420.413 264.675 c 420.689 264.472 420.905 264.151 421.062 263.714 c h 417.608 262.011 m 421.077 262.011 l 421.035 261.479 420.905 261.084 420.687 260.823 c 420.343 260.417 419.905 260.214 419.374 260.214 c 418.884 260.214 418.476 260.375 418.147 260.698 c 417.819 261.021 417.640 261.459 417.608 262.011 c h f Q 0 J 1.45000 M newpath 165.986 224.000 m 319.986 224.000 l S newpath 327.986 224.000 m 315.986 219.000 l 318.986 224.000 l 315.986 229.000 l h f 2 J 1.60000 M 0 J 1.45000 M newpath 206.906 217.363 m 206.906 208.770 l 209.875 208.770 l 210.542 208.770 211.052 208.811 211.406 208.895 c 211.896 209.009 212.312 209.212 212.656 209.504 c 213.115 209.889 213.456 210.382 213.680 210.980 c 213.904 211.579 214.016 212.259 214.016 213.020 c 214.016 213.676 213.940 214.254 213.789 214.754 c 213.638 215.254 213.443 215.671 213.203 216.004 c 212.964 216.337 212.701 216.598 212.414 216.785 c 212.128 216.973 211.786 217.116 211.391 217.215 c 210.995 217.314 210.536 217.363 210.016 217.363 c 206.906 217.363 l h 208.047 216.348 m 209.875 216.348 l 210.448 216.348 210.896 216.296 211.219 216.191 c 211.542 216.087 211.797 215.936 211.984 215.738 c 212.255 215.478 212.466 215.118 212.617 214.660 c 212.768 214.202 212.844 213.650 212.844 213.004 c 212.844 212.108 212.695 211.418 212.398 210.934 c 212.102 210.449 211.745 210.124 211.328 209.957 c 211.016 209.842 210.526 209.785 209.859 209.785 c 208.047 209.785 l 208.047 216.348 l h 219.510 216.598 m 219.114 216.931 218.736 217.165 218.377 217.301 c 218.018 217.436 217.630 217.504 217.213 217.504 c 216.525 217.504 215.999 217.337 215.635 217.004 c 215.270 216.671 215.088 216.243 215.088 215.723 c 215.088 215.421 215.156 215.142 215.291 214.887 c 215.426 214.632 215.609 214.428 215.838 214.277 c 216.067 214.126 216.322 214.014 216.604 213.941 c 216.801 213.879 217.114 213.822 217.541 213.770 c 218.385 213.676 219.010 213.556 219.416 213.410 c 219.416 213.264 219.416 213.176 219.416 213.145 c 219.416 212.707 219.317 212.400 219.119 212.223 c 218.848 211.993 218.447 211.879 217.916 211.879 c 217.426 211.879 217.062 211.965 216.822 212.137 c 216.583 212.309 216.406 212.613 216.291 213.051 c 215.260 212.910 l 215.354 212.473 215.510 212.118 215.729 211.848 c 215.947 211.577 216.260 211.368 216.666 211.223 c 217.072 211.077 217.541 211.004 218.072 211.004 c 218.604 211.004 219.036 211.066 219.369 211.191 c 219.702 211.316 219.947 211.473 220.104 211.660 c 220.260 211.848 220.369 212.087 220.432 212.379 c 220.463 212.556 220.479 212.879 220.479 213.348 c 220.479 214.754 l 220.479 215.733 220.502 216.353 220.549 216.613 c 220.596 216.874 220.687 217.124 220.822 217.363 c 219.713 217.363 l 219.609 217.145 219.541 216.889 219.510 216.598 c h 219.416 214.238 m 219.031 214.395 218.458 214.530 217.697 214.645 c 217.260 214.707 216.952 214.777 216.775 214.855 c 216.598 214.934 216.460 215.046 216.361 215.191 c 216.262 215.337 216.213 215.504 216.213 215.691 c 216.213 215.973 216.320 216.207 216.533 216.395 c 216.747 216.582 217.057 216.676 217.463 216.676 c 217.869 216.676 218.231 216.587 218.549 216.410 c 218.867 216.233 219.098 215.988 219.244 215.676 c 219.359 215.436 219.416 215.087 219.416 214.629 c 219.416 214.238 l h 224.418 216.426 m 224.574 217.348 l 224.272 217.410 224.007 217.441 223.777 217.441 c 223.392 217.441 223.095 217.382 222.887 217.262 c 222.678 217.142 222.530 216.983 222.441 216.785 c 222.353 216.587 222.309 216.171 222.309 215.535 c 222.309 211.957 l 221.543 211.957 l 221.543 211.145 l 222.309 211.145 l 222.309 209.598 l 223.355 208.973 l 223.355 211.145 l 224.418 211.145 l 224.418 211.957 l 223.355 211.957 l 223.355 215.598 l 223.355 215.900 223.374 216.092 223.410 216.176 c 223.447 216.259 223.507 216.327 223.590 216.379 c 223.673 216.431 223.793 216.457 223.949 216.457 c 224.074 216.457 224.230 216.447 224.418 216.426 c h 229.518 216.598 m 229.122 216.931 228.744 217.165 228.385 217.301 c 228.025 217.436 227.637 217.504 227.221 217.504 c 226.533 217.504 226.007 217.337 225.643 217.004 c 225.278 216.671 225.096 216.243 225.096 215.723 c 225.096 215.421 225.163 215.142 225.299 214.887 c 225.434 214.632 225.617 214.428 225.846 214.277 c 226.075 214.126 226.330 214.014 226.611 213.941 c 226.809 213.879 227.122 213.822 227.549 213.770 c 228.393 213.676 229.018 213.556 229.424 213.410 c 229.424 213.264 229.424 213.176 229.424 213.145 c 229.424 212.707 229.325 212.400 229.127 212.223 c 228.856 211.993 228.455 211.879 227.924 211.879 c 227.434 211.879 227.070 211.965 226.830 212.137 c 226.590 212.309 226.413 212.613 226.299 213.051 c 225.268 212.910 l 225.361 212.473 225.518 212.118 225.736 211.848 c 225.955 211.577 226.268 211.368 226.674 211.223 c 227.080 211.077 227.549 211.004 228.080 211.004 c 228.611 211.004 229.044 211.066 229.377 211.191 c 229.710 211.316 229.955 211.473 230.111 211.660 c 230.268 211.848 230.377 212.087 230.439 212.379 c 230.471 212.556 230.486 212.879 230.486 213.348 c 230.486 214.754 l 230.486 215.733 230.510 216.353 230.557 216.613 c 230.604 216.874 230.695 217.124 230.830 217.363 c 229.721 217.363 l 229.617 217.145 229.549 216.889 229.518 216.598 c h 229.424 214.238 m 229.038 214.395 228.465 214.530 227.705 214.645 c 227.268 214.707 226.960 214.777 226.783 214.855 c 226.606 214.934 226.468 215.046 226.369 215.191 c 226.270 215.337 226.221 215.504 226.221 215.691 c 226.221 215.973 226.327 216.207 226.541 216.395 c 226.755 216.582 227.064 216.676 227.471 216.676 c 227.877 216.676 228.239 216.587 228.557 216.410 c 228.874 216.233 229.106 215.988 229.252 215.676 c 229.367 215.436 229.424 215.087 229.424 214.629 c 229.424 214.238 l h 235.072 214.254 m 235.072 213.098 235.390 212.243 236.025 211.691 c 236.557 211.233 237.208 211.004 237.979 211.004 c 238.833 211.004 239.533 211.283 240.080 211.840 c 240.627 212.397 240.900 213.171 240.900 214.160 c 240.900 214.962 240.781 215.592 240.541 216.051 c 240.301 216.509 239.950 216.866 239.486 217.121 c 239.023 217.376 238.520 217.504 237.979 217.504 c 237.114 217.504 236.413 217.225 235.877 216.668 c 235.340 216.111 235.072 215.306 235.072 214.254 c h 236.150 214.254 m 236.150 215.046 236.325 215.639 236.674 216.035 c 237.023 216.431 237.458 216.629 237.979 216.629 c 238.510 216.629 238.947 216.431 239.291 216.035 c 239.635 215.639 239.807 215.035 239.807 214.223 c 239.807 213.452 239.632 212.868 239.283 212.473 c 238.934 212.077 238.499 211.879 237.979 211.879 c 237.458 211.879 237.023 212.074 236.674 212.465 c 236.325 212.855 236.150 213.452 236.150 214.254 c h 245.049 215.504 m 246.080 215.348 l 246.143 215.764 246.307 216.082 246.572 216.301 c 246.838 216.520 247.215 216.629 247.705 216.629 c 248.184 216.629 248.541 216.533 248.775 216.340 c 249.010 216.147 249.127 215.915 249.127 215.645 c 249.127 215.405 249.023 215.217 248.814 215.082 c 248.669 214.988 248.309 214.868 247.736 214.723 c 246.965 214.525 246.432 214.355 246.135 214.215 c 245.838 214.074 245.611 213.879 245.455 213.629 c 245.299 213.379 245.221 213.098 245.221 212.785 c 245.221 212.514 245.283 212.259 245.408 212.020 c 245.533 211.780 245.705 211.582 245.924 211.426 c 246.090 211.311 246.314 211.212 246.596 211.129 c 246.877 211.046 247.184 211.004 247.518 211.004 c 247.997 211.004 248.421 211.074 248.791 211.215 c 249.161 211.355 249.434 211.546 249.611 211.785 c 249.788 212.025 249.908 212.342 249.971 212.738 c 248.939 212.879 l 248.898 212.566 248.765 212.319 248.541 212.137 c 248.317 211.954 247.997 211.863 247.580 211.863 c 247.101 211.863 246.757 211.944 246.549 212.105 c 246.340 212.267 246.236 212.457 246.236 212.676 c 246.236 212.811 246.278 212.931 246.361 213.035 c 246.455 213.150 246.590 213.243 246.768 213.316 c 246.872 213.358 247.184 213.447 247.705 213.582 c 248.455 213.790 248.976 213.957 249.268 214.082 c 249.559 214.207 249.788 214.389 249.955 214.629 c 250.122 214.868 250.205 215.171 250.205 215.535 c 250.205 215.889 250.104 216.220 249.900 216.527 c 249.697 216.835 249.403 217.074 249.018 217.246 c 248.632 217.418 248.195 217.504 247.705 217.504 c 246.893 217.504 246.275 217.335 245.854 216.996 c 245.432 216.658 245.163 216.160 245.049 215.504 c h 251.471 209.988 m 251.471 208.770 l 252.533 208.770 l 252.533 209.988 l 251.471 209.988 l h 251.471 217.363 m 251.471 211.145 l 252.533 211.145 l 252.533 217.363 l 251.471 217.363 l h 254.137 217.363 m 254.137 211.145 l 255.074 211.145 l 255.074 212.020 l 255.272 211.707 255.533 211.460 255.855 211.277 c 256.178 211.095 256.548 211.004 256.965 211.004 c 257.423 211.004 257.801 211.098 258.098 211.285 c 258.395 211.473 258.600 211.738 258.715 212.082 c 259.215 211.363 259.855 211.004 260.637 211.004 c 261.262 211.004 261.738 211.173 262.066 211.512 c 262.395 211.850 262.559 212.379 262.559 213.098 c 262.559 217.363 l 261.512 217.363 l 261.512 213.441 l 261.512 213.025 261.478 212.723 261.410 212.535 c 261.342 212.348 261.220 212.197 261.043 212.082 c 260.866 211.967 260.652 211.910 260.402 211.910 c 259.965 211.910 259.603 212.056 259.316 212.348 c 259.030 212.639 258.887 213.108 258.887 213.754 c 258.887 217.363 l 257.824 217.363 l 257.824 213.316 l 257.824 212.848 257.738 212.496 257.566 212.262 c 257.395 212.027 257.116 211.910 256.730 211.910 c 256.428 211.910 256.152 211.988 255.902 212.145 c 255.652 212.301 255.470 212.530 255.355 212.832 c 255.241 213.134 255.184 213.566 255.184 214.129 c 255.184 217.363 l 254.137 217.363 l h 268.211 217.363 m 268.211 216.441 l 267.721 217.150 267.060 217.504 266.227 217.504 c 265.862 217.504 265.521 217.434 265.203 217.293 c 264.885 217.152 264.648 216.975 264.492 216.762 c 264.336 216.548 264.227 216.285 264.164 215.973 c 264.122 215.775 264.102 215.447 264.102 214.988 c 264.102 211.145 l 265.164 211.145 l 265.164 214.598 l 265.164 215.139 265.185 215.509 265.227 215.707 c 265.289 215.978 265.427 216.194 265.641 216.355 c 265.854 216.517 266.122 216.598 266.445 216.598 c 266.758 216.598 267.052 216.517 267.328 216.355 c 267.604 216.194 267.802 215.973 267.922 215.691 c 268.042 215.410 268.102 215.004 268.102 214.473 c 268.102 211.145 l 269.148 211.145 l 269.148 217.363 l 268.211 217.363 l h 270.775 217.363 m 270.775 208.770 l 271.838 208.770 l 271.838 217.363 l 270.775 217.363 l h 277.535 216.598 m 277.139 216.931 276.762 217.165 276.402 217.301 c 276.043 217.436 275.655 217.504 275.238 217.504 c 274.551 217.504 274.025 217.337 273.660 217.004 c 273.296 216.671 273.113 216.243 273.113 215.723 c 273.113 215.421 273.181 215.142 273.316 214.887 c 273.452 214.632 273.634 214.428 273.863 214.277 c 274.092 214.126 274.348 214.014 274.629 213.941 c 274.827 213.879 275.139 213.822 275.566 213.770 c 276.410 213.676 277.035 213.556 277.441 213.410 c 277.441 213.264 277.441 213.176 277.441 213.145 c 277.441 212.707 277.342 212.400 277.145 212.223 c 276.874 211.993 276.473 211.879 275.941 211.879 c 275.452 211.879 275.087 211.965 274.848 212.137 c 274.608 212.309 274.431 212.613 274.316 213.051 c 273.285 212.910 l 273.379 212.473 273.535 212.118 273.754 211.848 c 273.973 211.577 274.285 211.368 274.691 211.223 c 275.098 211.077 275.566 211.004 276.098 211.004 c 276.629 211.004 277.061 211.066 277.395 211.191 c 277.728 211.316 277.973 211.473 278.129 211.660 c 278.285 211.848 278.395 212.087 278.457 212.379 c 278.488 212.556 278.504 212.879 278.504 213.348 c 278.504 214.754 l 278.504 215.733 278.527 216.353 278.574 216.613 c 278.621 216.874 278.712 217.124 278.848 217.363 c 277.738 217.363 l 277.634 217.145 277.566 216.889 277.535 216.598 c h 277.441 214.238 m 277.056 214.395 276.483 214.530 275.723 214.645 c 275.285 214.707 274.978 214.777 274.801 214.855 c 274.624 214.934 274.486 215.046 274.387 215.191 c 274.288 215.337 274.238 215.504 274.238 215.691 c 274.238 215.973 274.345 216.207 274.559 216.395 c 274.772 216.582 275.082 216.676 275.488 216.676 c 275.895 216.676 276.257 216.587 276.574 216.410 c 276.892 216.233 277.124 215.988 277.270 215.676 c 277.384 215.436 277.441 215.087 277.441 214.629 c 277.441 214.238 l h 284.209 215.082 m 285.240 215.223 l 285.126 215.931 284.834 216.488 284.365 216.895 c 283.896 217.301 283.324 217.504 282.646 217.504 c 281.792 217.504 281.107 217.225 280.592 216.668 c 280.076 216.111 279.818 215.311 279.818 214.270 c 279.818 213.603 279.930 213.017 280.154 212.512 c 280.378 212.007 280.717 211.629 281.170 211.379 c 281.623 211.129 282.120 211.004 282.662 211.004 c 283.329 211.004 283.878 211.173 284.311 211.512 c 284.743 211.850 285.021 212.337 285.146 212.973 c 284.115 213.129 l 284.021 212.712 283.850 212.397 283.600 212.184 c 283.350 211.970 283.048 211.863 282.693 211.863 c 282.162 211.863 281.730 212.053 281.396 212.434 c 281.063 212.814 280.896 213.415 280.896 214.238 c 280.896 215.082 281.058 215.691 281.381 216.066 c 281.704 216.441 282.120 216.629 282.631 216.629 c 283.048 216.629 283.394 216.504 283.670 216.254 c 283.946 216.004 284.126 215.613 284.209 215.082 c h 286.146 209.988 m 286.146 208.770 l 287.209 208.770 l 287.209 209.988 l 286.146 209.988 l h 286.146 217.363 m 286.146 211.145 l 287.209 211.145 l 287.209 217.363 l 286.146 217.363 l h f 2 J 10.0000 M 0 J 1.45000 M newpath 327.969 291.000 m 173.979 291.000 l S newpath 165.979 291.000 m 177.979 296.000 l 174.979 291.000 l 177.979 286.000 l h f 2 J 1.60000 M 0 J 1.45000 M newpath 176.897 307.064 m 176.897 298.471 l 180.147 298.471 l 180.710 298.471 181.142 298.497 181.444 298.549 c 181.871 298.622 182.228 298.757 182.515 298.955 c 182.801 299.153 183.030 299.429 183.202 299.783 c 183.374 300.137 183.460 300.528 183.460 300.955 c 183.460 301.684 183.228 302.301 182.765 302.807 c 182.301 303.312 181.460 303.564 180.241 303.564 c 178.038 303.564 l 178.038 307.064 l 176.897 307.064 l h 178.038 302.564 m 180.257 302.564 l 180.996 302.564 181.520 302.426 181.827 302.150 c 182.134 301.874 182.288 301.486 182.288 300.986 c 182.288 300.632 182.197 300.327 182.015 300.072 c 181.832 299.817 181.595 299.648 181.304 299.564 c 181.106 299.512 180.752 299.486 180.241 299.486 c 178.038 299.486 l 178.038 302.564 l h 184.386 303.955 m 184.386 302.799 184.703 301.945 185.339 301.393 c 185.870 300.934 186.521 300.705 187.292 300.705 c 188.146 300.705 188.847 300.984 189.394 301.541 c 189.940 302.098 190.214 302.872 190.214 303.861 c 190.214 304.663 190.094 305.294 189.854 305.752 c 189.615 306.210 189.263 306.567 188.800 306.822 c 188.336 307.077 187.834 307.205 187.292 307.205 c 186.427 307.205 185.727 306.926 185.190 306.369 c 184.654 305.812 184.386 305.007 184.386 303.955 c h 185.464 303.955 m 185.464 304.747 185.638 305.340 185.987 305.736 c 186.336 306.132 186.771 306.330 187.292 306.330 c 187.823 306.330 188.261 306.132 188.604 305.736 c 188.948 305.340 189.120 304.736 189.120 303.924 c 189.120 303.153 188.946 302.570 188.597 302.174 c 188.248 301.778 187.813 301.580 187.292 301.580 c 186.771 301.580 186.336 301.775 185.987 302.166 c 185.638 302.557 185.464 303.153 185.464 303.955 c h 191.450 307.064 m 191.450 298.471 l 192.513 298.471 l 192.513 303.377 l 194.997 300.846 l 196.372 300.846 l 193.981 303.143 l 196.606 307.064 l 195.310 307.064 l 193.247 303.877 l 192.513 304.596 l 192.513 307.064 l 191.450 307.064 l h 197.403 309.455 m 197.278 308.471 l 197.507 308.533 197.711 308.564 197.888 308.564 c 198.117 308.564 198.302 308.525 198.442 308.447 c 198.583 308.369 198.700 308.262 198.794 308.127 c 198.856 308.012 198.966 307.747 199.122 307.330 c 199.132 307.278 199.164 307.195 199.216 307.080 c 196.841 300.846 l 197.981 300.846 l 199.278 304.439 l 199.445 304.898 199.596 305.382 199.731 305.893 c 199.856 305.403 200.002 304.929 200.169 304.471 c 201.497 300.846 l 202.544 300.846 l 200.185 307.174 l 199.924 307.851 199.726 308.320 199.591 308.580 c 199.403 308.934 199.187 309.192 198.942 309.354 c 198.698 309.515 198.409 309.596 198.075 309.596 c 197.877 309.596 197.653 309.549 197.403 309.455 c h 203.450 307.064 m 203.450 300.846 l 204.388 300.846 l 204.388 301.721 l 204.846 301.044 205.507 300.705 206.372 300.705 c 206.747 300.705 207.093 300.773 207.411 300.908 c 207.729 301.044 207.966 301.221 208.122 301.439 c 208.278 301.658 208.388 301.913 208.450 302.205 c 208.481 302.403 208.497 302.747 208.497 303.236 c 208.497 307.064 l 207.450 307.064 l 207.450 303.283 l 207.450 302.846 207.409 302.523 207.325 302.314 c 207.242 302.106 207.096 301.937 206.888 301.807 c 206.679 301.676 206.435 301.611 206.153 301.611 c 205.705 301.611 205.317 301.755 204.989 302.041 c 204.661 302.327 204.497 302.867 204.497 303.658 c 204.497 307.064 l 203.450 307.064 l h 210.077 309.455 m 209.952 308.471 l 210.181 308.533 210.384 308.564 210.562 308.564 c 210.791 308.564 210.976 308.525 211.116 308.447 c 211.257 308.369 211.374 308.262 211.468 308.127 c 211.530 308.012 211.640 307.747 211.796 307.330 c 211.806 307.278 211.838 307.195 211.890 307.080 c 209.515 300.846 l 210.655 300.846 l 211.952 304.439 l 212.119 304.898 212.270 305.382 212.405 305.893 c 212.530 305.403 212.676 304.929 212.843 304.471 c 214.171 300.846 l 215.218 300.846 l 212.858 307.174 l 212.598 307.851 212.400 308.320 212.265 308.580 c 212.077 308.934 211.861 309.192 211.616 309.354 c 211.371 309.515 211.082 309.596 210.749 309.596 c 210.551 309.596 210.327 309.549 210.077 309.455 c h 219.067 303.955 m 219.067 302.799 219.385 301.945 220.021 301.393 c 220.552 300.934 221.203 300.705 221.974 300.705 c 222.828 300.705 223.528 300.984 224.075 301.541 c 224.622 302.098 224.896 302.872 224.896 303.861 c 224.896 304.663 224.776 305.294 224.536 305.752 c 224.297 306.210 223.945 306.567 223.481 306.822 c 223.018 307.077 222.515 307.205 221.974 307.205 c 221.109 307.205 220.409 306.926 219.872 306.369 c 219.336 305.812 219.067 305.007 219.067 303.955 c h 220.146 303.955 m 220.146 304.747 220.320 305.340 220.669 305.736 c 221.018 306.132 221.453 306.330 221.974 306.330 c 222.505 306.330 222.942 306.132 223.286 305.736 c 223.630 305.340 223.802 304.736 223.802 303.924 c 223.802 303.153 223.627 302.570 223.278 302.174 c 222.929 301.778 222.494 301.580 221.974 301.580 c 221.453 301.580 221.018 301.775 220.669 302.166 c 220.320 302.557 220.146 303.153 220.146 303.955 c h 227.851 307.064 m 225.491 300.846 l 226.601 300.846 l 227.944 304.564 l 228.080 304.971 228.210 305.387 228.335 305.814 c 228.429 305.492 228.559 305.101 228.726 304.643 c 230.116 300.846 l 231.194 300.846 l 228.835 307.064 l 227.851 307.064 l h 232.101 307.064 m 232.101 298.471 l 233.163 298.471 l 233.163 307.064 l 232.101 307.064 l h 234.798 299.689 m 234.798 298.471 l 235.860 298.471 l 235.860 299.689 l 234.798 299.689 l h 234.798 307.064 m 234.798 300.846 l 235.860 300.846 l 235.860 307.064 l 234.798 307.064 l h 239.183 307.064 m 236.823 300.846 l 237.933 300.846 l 239.276 304.564 l 239.412 304.971 239.542 305.387 239.667 305.814 c 239.761 305.492 239.891 305.101 240.058 304.643 c 241.448 300.846 l 242.526 300.846 l 240.167 307.064 l 239.183 307.064 l h 243.464 307.064 m 243.464 300.846 l 244.401 300.846 l 244.401 301.721 l 244.860 301.044 245.521 300.705 246.386 300.705 c 246.761 300.705 247.107 300.773 247.425 300.908 c 247.743 301.044 247.979 301.221 248.136 301.439 c 248.292 301.658 248.401 301.913 248.464 302.205 c 248.495 302.403 248.511 302.747 248.511 303.236 c 248.511 307.064 l 247.464 307.064 l 247.464 303.283 l 247.464 302.846 247.422 302.523 247.339 302.314 c 247.256 302.106 247.110 301.937 246.901 301.807 c 246.693 301.676 246.448 301.611 246.167 301.611 c 245.719 301.611 245.331 301.755 245.003 302.041 c 244.675 302.327 244.511 302.867 244.511 303.658 c 244.511 307.064 l 243.464 307.064 l h 245.776 298.424 m 246.417 297.424 l 247.604 297.424 l 246.292 299.064 l 245.167 299.064 l 243.901 297.424 l 245.104 297.424 l 245.776 298.424 l h 254.216 307.064 m 254.216 306.143 l 253.726 306.851 253.065 307.205 252.231 307.205 c 251.867 307.205 251.526 307.135 251.208 306.994 c 250.890 306.854 250.653 306.676 250.497 306.463 c 250.341 306.249 250.231 305.986 250.169 305.674 c 250.127 305.476 250.106 305.148 250.106 304.689 c 250.106 300.846 l 251.169 300.846 l 251.169 304.299 l 251.169 304.840 251.190 305.210 251.231 305.408 c 251.294 305.679 251.432 305.895 251.646 306.057 c 251.859 306.218 252.127 306.299 252.450 306.299 c 252.763 306.299 253.057 306.218 253.333 306.057 c 253.609 305.895 253.807 305.674 253.927 305.393 c 254.047 305.111 254.106 304.705 254.106 304.174 c 254.106 300.846 l 255.153 300.846 l 255.153 307.064 l 254.216 307.064 l h 256.796 299.705 m 256.796 298.471 l 257.858 298.471 l 257.858 299.705 l 256.796 299.705 l h 255.468 309.486 m 255.655 308.580 l 255.874 308.632 256.041 308.658 256.155 308.658 c 256.374 308.658 256.535 308.588 256.640 308.447 c 256.744 308.307 256.796 307.950 256.796 307.377 c 256.796 300.846 l 257.858 300.846 l 257.858 307.408 l 257.858 308.169 257.759 308.700 257.562 309.002 c 257.301 309.398 256.879 309.596 256.296 309.596 c 256.004 309.596 255.728 309.559 255.468 309.486 c h 259.837 307.064 m 259.837 300.846 l 260.899 300.846 l 260.899 307.064 l 259.837 307.064 l h 259.806 299.064 m 260.587 297.424 l 261.978 297.424 l 260.681 299.064 l 259.806 299.064 l h 266.874 304.783 m 267.905 304.924 l 267.791 305.632 267.499 306.189 267.030 306.596 c 266.562 307.002 265.989 307.205 265.312 307.205 c 264.457 307.205 263.772 306.926 263.257 306.369 c 262.741 305.812 262.483 305.012 262.483 303.971 c 262.483 303.304 262.595 302.718 262.819 302.213 c 263.043 301.708 263.382 301.330 263.835 301.080 c 264.288 300.830 264.785 300.705 265.327 300.705 c 265.994 300.705 266.543 300.874 266.976 301.213 c 267.408 301.551 267.687 302.038 267.812 302.674 c 266.780 302.830 l 266.687 302.413 266.515 302.098 266.265 301.885 c 266.015 301.671 265.713 301.564 265.358 301.564 c 264.827 301.564 264.395 301.755 264.062 302.135 c 263.728 302.515 263.562 303.117 263.562 303.939 c 263.562 304.783 263.723 305.393 264.046 305.768 c 264.369 306.143 264.785 306.330 265.296 306.330 c 265.713 306.330 266.059 306.205 266.335 305.955 c 266.611 305.705 266.791 305.314 266.874 304.783 c h 269.171 307.064 m 269.171 300.846 l 270.233 300.846 l 270.233 307.064 l 269.171 307.064 l h 269.140 299.064 m 269.921 297.424 l 271.312 297.424 l 270.015 299.064 l 269.140 299.064 l h 275.058 305.205 m 276.089 305.049 l 276.151 305.465 276.315 305.783 276.581 306.002 c 276.847 306.221 277.224 306.330 277.714 306.330 c 278.193 306.330 278.550 306.234 278.784 306.041 c 279.019 305.848 279.136 305.617 279.136 305.346 c 279.136 305.106 279.032 304.919 278.823 304.783 c 278.677 304.689 278.318 304.570 277.745 304.424 c 276.974 304.226 276.440 304.057 276.144 303.916 c 275.847 303.775 275.620 303.580 275.464 303.330 c 275.308 303.080 275.229 302.799 275.229 302.486 c 275.229 302.215 275.292 301.960 275.417 301.721 c 275.542 301.481 275.714 301.283 275.933 301.127 c 276.099 301.012 276.323 300.913 276.604 300.830 c 276.886 300.747 277.193 300.705 277.526 300.705 c 278.006 300.705 278.430 300.775 278.800 300.916 c 279.170 301.057 279.443 301.247 279.620 301.486 c 279.797 301.726 279.917 302.044 279.979 302.439 c 278.948 302.580 l 278.907 302.268 278.774 302.020 278.550 301.838 c 278.326 301.656 278.006 301.564 277.589 301.564 c 277.110 301.564 276.766 301.645 276.558 301.807 c 276.349 301.968 276.245 302.158 276.245 302.377 c 276.245 302.512 276.287 302.632 276.370 302.736 c 276.464 302.851 276.599 302.945 276.776 303.018 c 276.881 303.059 277.193 303.148 277.714 303.283 c 278.464 303.492 278.985 303.658 279.276 303.783 c 279.568 303.908 279.797 304.090 279.964 304.330 c 280.131 304.570 280.214 304.872 280.214 305.236 c 280.214 305.590 280.112 305.921 279.909 306.229 c 279.706 306.536 279.412 306.775 279.026 306.947 c 278.641 307.119 278.203 307.205 277.714 307.205 c 276.901 307.205 276.284 307.036 275.862 306.697 c 275.440 306.359 275.172 305.861 275.058 305.205 c h 281.479 299.689 m 281.479 298.471 l 282.542 298.471 l 282.542 299.689 l 281.479 299.689 l h 281.479 307.064 m 281.479 300.846 l 282.542 300.846 l 282.542 307.064 l 281.479 307.064 l h 284.146 307.064 m 284.146 300.846 l 285.083 300.846 l 285.083 301.721 l 285.281 301.408 285.541 301.161 285.864 300.979 c 286.187 300.796 286.557 300.705 286.974 300.705 c 287.432 300.705 287.810 300.799 288.106 300.986 c 288.403 301.174 288.609 301.439 288.724 301.783 c 289.224 301.064 289.864 300.705 290.646 300.705 c 291.271 300.705 291.747 300.874 292.075 301.213 c 292.403 301.551 292.567 302.080 292.567 302.799 c 292.567 307.064 l 291.521 307.064 l 291.521 303.143 l 291.521 302.726 291.487 302.424 291.419 302.236 c 291.351 302.049 291.229 301.898 291.052 301.783 c 290.875 301.669 290.661 301.611 290.411 301.611 c 289.974 301.611 289.612 301.757 289.325 302.049 c 289.039 302.340 288.896 302.809 288.896 303.455 c 288.896 307.064 l 287.833 307.064 l 287.833 303.018 l 287.833 302.549 287.747 302.197 287.575 301.963 c 287.403 301.729 287.125 301.611 286.739 301.611 c 286.437 301.611 286.161 301.689 285.911 301.846 c 285.661 302.002 285.479 302.231 285.364 302.533 c 285.250 302.835 285.192 303.268 285.192 303.830 c 285.192 307.064 l 284.146 307.064 l h 298.220 307.064 m 298.220 306.143 l 297.730 306.851 297.069 307.205 296.235 307.205 c 295.871 307.205 295.530 307.135 295.212 306.994 c 294.894 306.854 294.657 306.676 294.501 306.463 c 294.345 306.249 294.235 305.986 294.173 305.674 c 294.131 305.476 294.110 305.148 294.110 304.689 c 294.110 300.846 l 295.173 300.846 l 295.173 304.299 l 295.173 304.840 295.194 305.210 295.235 305.408 c 295.298 305.679 295.436 305.895 295.649 306.057 c 295.863 306.218 296.131 306.299 296.454 306.299 c 296.767 306.299 297.061 306.218 297.337 306.057 c 297.613 305.895 297.811 305.674 297.931 305.393 c 298.050 305.111 298.110 304.705 298.110 304.174 c 298.110 300.846 l 299.157 300.846 l 299.157 307.064 l 298.220 307.064 l h 300.784 307.064 m 300.784 298.471 l 301.847 298.471 l 301.847 307.064 l 300.784 307.064 l h 307.544 306.299 m 307.148 306.632 306.771 306.867 306.411 307.002 c 306.052 307.137 305.664 307.205 305.247 307.205 c 304.560 307.205 304.034 307.038 303.669 306.705 c 303.304 306.372 303.122 305.945 303.122 305.424 c 303.122 305.122 303.190 304.843 303.325 304.588 c 303.461 304.333 303.643 304.130 303.872 303.979 c 304.101 303.827 304.356 303.715 304.638 303.643 c 304.836 303.580 305.148 303.523 305.575 303.471 c 306.419 303.377 307.044 303.257 307.450 303.111 c 307.450 302.965 307.450 302.877 307.450 302.846 c 307.450 302.408 307.351 302.101 307.153 301.924 c 306.882 301.695 306.481 301.580 305.950 301.580 c 305.461 301.580 305.096 301.666 304.856 301.838 c 304.617 302.010 304.440 302.314 304.325 302.752 c 303.294 302.611 l 303.388 302.174 303.544 301.820 303.763 301.549 c 303.981 301.278 304.294 301.070 304.700 300.924 c 305.106 300.778 305.575 300.705 306.106 300.705 c 306.638 300.705 307.070 300.768 307.403 300.893 c 307.737 301.018 307.981 301.174 308.138 301.361 c 308.294 301.549 308.403 301.788 308.466 302.080 c 308.497 302.257 308.513 302.580 308.513 303.049 c 308.513 304.455 l 308.513 305.434 308.536 306.054 308.583 306.314 c 308.630 306.575 308.721 306.825 308.856 307.064 c 307.747 307.064 l 307.643 306.846 307.575 306.590 307.544 306.299 c h 307.450 303.939 m 307.065 304.096 306.492 304.231 305.731 304.346 c 305.294 304.408 304.987 304.479 304.810 304.557 c 304.632 304.635 304.494 304.747 304.396 304.893 c 304.297 305.038 304.247 305.205 304.247 305.393 c 304.247 305.674 304.354 305.908 304.567 306.096 c 304.781 306.283 305.091 306.377 305.497 306.377 c 305.903 306.377 306.265 306.288 306.583 306.111 c 306.901 305.934 307.132 305.689 307.278 305.377 c 307.393 305.137 307.450 304.788 307.450 304.330 c 307.450 303.939 l h 314.218 304.783 m 315.249 304.924 l 315.134 305.632 314.843 306.189 314.374 306.596 c 313.905 307.002 313.332 307.205 312.655 307.205 c 311.801 307.205 311.116 306.926 310.601 306.369 c 310.085 305.812 309.827 305.012 309.827 303.971 c 309.827 303.304 309.939 302.718 310.163 302.213 c 310.387 301.708 310.726 301.330 311.179 301.080 c 311.632 300.830 312.129 300.705 312.671 300.705 c 313.338 300.705 313.887 300.874 314.319 301.213 c 314.752 301.551 315.030 302.038 315.155 302.674 c 314.124 302.830 l 314.030 302.413 313.858 302.098 313.608 301.885 c 313.358 301.671 313.056 301.564 312.702 301.564 c 312.171 301.564 311.739 301.755 311.405 302.135 c 311.072 302.515 310.905 303.117 310.905 303.939 c 310.905 304.783 311.067 305.393 311.390 305.768 c 311.713 306.143 312.129 306.330 312.640 306.330 c 313.056 306.330 313.403 306.205 313.679 305.955 c 313.955 305.705 314.134 305.314 314.218 304.783 c h 316.155 299.689 m 316.155 298.471 l 317.218 298.471 l 317.218 299.689 l 316.155 299.689 l h 316.155 307.064 m 316.155 300.846 l 317.218 300.846 l 317.218 307.064 l 316.155 307.064 l 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