summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-nl-cmyk-mono-white.eps
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-nl-cmyk-mono-white.eps')
-rw-r--r--Master/texmf-dist/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-nl-cmyk-mono-white.eps1453
1 files changed, 1453 insertions, 0 deletions
diff --git a/Master/texmf-dist/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-nl-cmyk-mono-white.eps b/Master/texmf-dist/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-nl-cmyk-mono-white.eps
new file mode 100644
index 00000000000..cc47b69566b
--- /dev/null
+++ b/Master/texmf-dist/tex/latex/uantwerpendocs/Logos/logo-uantwerpen-be-nl-cmyk-mono-white.eps
@@ -0,0 +1,1453 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%Produced by poppler pdftops version: 20.09.0 (http://poppler.freedesktop.org)
+%%Creator: Adobe Illustrator(R) 25.0
+%%LanguageLevel: 2
+%%DocumentSuppliedResources: (atend)
+%%BoundingBox: 0 0 449 103
+%%HiResBoundingBox: 0 0 449 103
+%%DocumentSuppliedResources: (atend)
+%%EndComments
+%%BeginProlog
+%%BeginResource: procset xpdf 3.00 0
+%%Copyright: Copyright 1996-2011 Glyph & Cog, LLC
+/xpdf 75 dict def xpdf begin
+% PDF special state
+/pdfDictSize 15 def
+/pdfSetup {
+ /setpagedevice where {
+ pop 2 dict begin
+ /Policies 1 dict dup begin /PageSize 6 def end def
+ { /Duplex true def } if
+ currentdict end setpagedevice
+ } {
+ pop
+ } ifelse
+} def
+/pdfSetupPaper {
+ % Change paper size, but only if different from previous paper size otherwise
+ % duplex fails. PLRM specifies a tolerance of 5 pts when matching paper size
+ % so we use the same when checking if the size changes.
+ /setpagedevice where {
+ pop currentpagedevice
+ /PageSize known {
+ 2 copy
+ currentpagedevice /PageSize get aload pop
+ exch 4 1 roll
+ sub abs 5 gt
+ 3 1 roll
+ sub abs 5 gt
+ or
+ } {
+ true
+ } ifelse
+ {
+ 2 array astore
+ 2 dict begin
+ /PageSize exch def
+ /ImagingBBox null def
+ currentdict end
+ setpagedevice
+ } {
+ pop pop
+ } ifelse
+ } {
+ pop
+ } ifelse
+} def
+/pdfStartPage {
+ pdfDictSize dict begin
+ /pdfFillCS [] def
+ /pdfFillXform {} def
+ /pdfStrokeCS [] def
+ /pdfStrokeXform {} def
+ /pdfFill [0] def
+ /pdfStroke [0] def
+ /pdfFillOP false def
+ /pdfStrokeOP false def
+ /pdfLastFill false def
+ /pdfLastStroke false def
+ /pdfTextMat [1 0 0 1 0 0] def
+ /pdfFontSize 0 def
+ /pdfCharSpacing 0 def
+ /pdfTextRender 0 def
+ /pdfPatternCS false def
+ /pdfTextRise 0 def
+ /pdfWordSpacing 0 def
+ /pdfHorizScaling 1 def
+ /pdfTextClipPath [] def
+} def
+/pdfEndPage { end } def
+% PDF color state
+/cs { /pdfFillXform exch def dup /pdfFillCS exch def
+ setcolorspace } def
+/CS { /pdfStrokeXform exch def dup /pdfStrokeCS exch def
+ setcolorspace } def
+/sc { pdfLastFill not { pdfFillCS setcolorspace } if
+ dup /pdfFill exch def aload pop pdfFillXform setcolor
+ /pdfLastFill true def /pdfLastStroke false def } def
+/SC { pdfLastStroke not { pdfStrokeCS setcolorspace } if
+ dup /pdfStroke exch def aload pop pdfStrokeXform setcolor
+ /pdfLastStroke true def /pdfLastFill false def } def
+/op { /pdfFillOP exch def
+ pdfLastFill { pdfFillOP setoverprint } if } def
+/OP { /pdfStrokeOP exch def
+ pdfLastStroke { pdfStrokeOP setoverprint } if } def
+/fCol {
+ pdfLastFill not {
+ pdfFillCS setcolorspace
+ pdfFill aload pop pdfFillXform setcolor
+ pdfFillOP setoverprint
+ /pdfLastFill true def /pdfLastStroke false def
+ } if
+} def
+/sCol {
+ pdfLastStroke not {
+ pdfStrokeCS setcolorspace
+ pdfStroke aload pop pdfStrokeXform setcolor
+ pdfStrokeOP setoverprint
+ /pdfLastStroke true def /pdfLastFill false def
+ } if
+} def
+% build a font
+/pdfMakeFont {
+ 4 3 roll findfont
+ 4 2 roll matrix scale makefont
+ dup length dict begin
+ { 1 index /FID ne { def } { pop pop } ifelse } forall
+ /Encoding exch def
+ currentdict
+ end
+ definefont pop
+} def
+/pdfMakeFont16 {
+ exch findfont
+ dup length dict begin
+ { 1 index /FID ne { def } { pop pop } ifelse } forall
+ /WMode exch def
+ currentdict
+ end
+ definefont pop
+} def
+% graphics state operators
+/q { gsave pdfDictSize dict begin } def
+/Q {
+ end grestore
+ /pdfLastFill where {
+ pop
+ pdfLastFill {
+ pdfFillOP setoverprint
+ } {
+ pdfStrokeOP setoverprint
+ } ifelse
+ } if
+} def
+/cm { concat } def
+/d { setdash } def
+/i { setflat } def
+/j { setlinejoin } def
+/J { setlinecap } def
+/M { setmiterlimit } def
+/w { setlinewidth } def
+% path segment operators
+/m { moveto } def
+/l { lineto } def
+/c { curveto } def
+/re { 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto
+ neg 0 rlineto closepath } def
+/h { closepath } def
+% path painting operators
+/S { sCol stroke } def
+/Sf { fCol stroke } def
+/f { fCol fill } def
+/f* { fCol eofill } def
+% clipping operators
+/W { clip newpath } def
+/W* { eoclip newpath } def
+/Ws { strokepath clip newpath } def
+% text state operators
+/Tc { /pdfCharSpacing exch def } def
+/Tf { dup /pdfFontSize exch def
+ dup pdfHorizScaling mul exch matrix scale
+ pdfTextMat matrix concatmatrix dup 4 0 put dup 5 0 put
+ exch findfont exch makefont setfont } def
+/Tr { /pdfTextRender exch def } def
+/Tp { /pdfPatternCS exch def } def
+/Ts { /pdfTextRise exch def } def
+/Tw { /pdfWordSpacing exch def } def
+/Tz { /pdfHorizScaling exch def } def
+% text positioning operators
+/Td { pdfTextMat transform moveto } def
+/Tm { /pdfTextMat exch def } def
+% text string operators
+/xyshow where {
+ pop
+ /xyshow2 {
+ dup length array
+ 0 2 2 index length 1 sub {
+ 2 index 1 index 2 copy get 3 1 roll 1 add get
+ pdfTextMat dtransform
+ 4 2 roll 2 copy 6 5 roll put 1 add 3 1 roll dup 4 2 roll put
+ } for
+ exch pop
+ xyshow
+ } def
+}{
+ /xyshow2 {
+ currentfont /FontType get 0 eq {
+ 0 2 3 index length 1 sub {
+ currentpoint 4 index 3 index 2 getinterval show moveto
+ 2 copy get 2 index 3 2 roll 1 add get
+ pdfTextMat dtransform rmoveto
+ } for
+ } {
+ 0 1 3 index length 1 sub {
+ currentpoint 4 index 3 index 1 getinterval show moveto
+ 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get
+ pdfTextMat dtransform rmoveto
+ } for
+ } ifelse
+ pop pop
+ } def
+} ifelse
+/cshow where {
+ pop
+ /xycp {
+ 0 3 2 roll
+ {
+ pop pop currentpoint 3 2 roll
+ 1 string dup 0 4 3 roll put false charpath moveto
+ 2 copy get 2 index 2 index 1 add get
+ pdfTextMat dtransform rmoveto
+ 2 add
+ } exch cshow
+ pop pop
+ } def
+}{
+ /xycp {
+ currentfont /FontType get 0 eq {
+ 0 2 3 index length 1 sub {
+ currentpoint 4 index 3 index 2 getinterval false charpath moveto
+ 2 copy get 2 index 3 2 roll 1 add get
+ pdfTextMat dtransform rmoveto
+ } for
+ } {
+ 0 1 3 index length 1 sub {
+ currentpoint 4 index 3 index 1 getinterval false charpath moveto
+ 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get
+ pdfTextMat dtransform rmoveto
+ } for
+ } ifelse
+ pop pop
+ } def
+} ifelse
+/Tj {
+ fCol
+ 0 pdfTextRise pdfTextMat dtransform rmoveto
+ currentpoint 4 2 roll
+ pdfTextRender 1 and 0 eq {
+ 2 copy xyshow2
+ } if
+ pdfTextRender 3 and dup 1 eq exch 2 eq or {
+ 3 index 3 index moveto
+ 2 copy
+ currentfont /FontType get 3 eq { fCol } { sCol } ifelse
+ xycp currentpoint stroke moveto
+ } if
+ pdfTextRender 4 and 0 ne {
+ 4 2 roll moveto xycp
+ /pdfTextClipPath [ pdfTextClipPath aload pop
+ {/moveto cvx}
+ {/lineto cvx}
+ {/curveto cvx}
+ {/closepath cvx}
+ pathforall ] def
+ currentpoint newpath moveto
+ } {
+ pop pop pop pop
+ } ifelse
+ 0 pdfTextRise neg pdfTextMat dtransform rmoveto
+} def
+/TJm { 0.001 mul pdfFontSize mul pdfHorizScaling mul neg 0
+ pdfTextMat dtransform rmoveto } def
+/TJmV { 0.001 mul pdfFontSize mul neg 0 exch
+ pdfTextMat dtransform rmoveto } def
+/Tclip { pdfTextClipPath cvx exec clip newpath
+ /pdfTextClipPath [] def } def
+/Tclip* { pdfTextClipPath cvx exec eoclip newpath
+ /pdfTextClipPath [] def } def
+% Level 2/3 image operators
+/pdfImBuf 100 string def
+/pdfImStr {
+ 2 copy exch length lt {
+ 2 copy get exch 1 add exch
+ } {
+ ()
+ } ifelse
+} def
+/skipEOD {
+ { currentfile pdfImBuf readline
+ not { pop exit } if
+ (%-EOD-) eq { exit } if } loop
+} def
+/pdfIm { image skipEOD } def
+/pdfImM { fCol imagemask skipEOD } def
+/pr { 2 index 2 index 3 2 roll putinterval 4 add } def
+/pdfImClip {
+ gsave
+ 0 2 4 index length 1 sub {
+ dup 4 index exch 2 copy
+ get 5 index div put
+ 1 add 3 index exch 2 copy
+ get 3 index div put
+ } for
+ pop pop rectclip
+} def
+/pdfImClipEnd { grestore } def
+% shading operators
+/colordelta {
+ false 0 1 3 index length 1 sub {
+ dup 4 index exch get 3 index 3 2 roll get sub abs 0.004 gt {
+ pop true
+ } if
+ } for
+ exch pop exch pop
+} def
+/funcCol { func n array astore } def
+/funcSH {
+ dup 0 eq {
+ true
+ } {
+ dup 6 eq {
+ false
+ } {
+ 4 index 4 index funcCol dup
+ 6 index 4 index funcCol dup
+ 3 1 roll colordelta 3 1 roll
+ 5 index 5 index funcCol dup
+ 3 1 roll colordelta 3 1 roll
+ 6 index 8 index funcCol dup
+ 3 1 roll colordelta 3 1 roll
+ colordelta or or or
+ } ifelse
+ } ifelse
+ {
+ 1 add
+ 4 index 3 index add 0.5 mul exch 4 index 3 index add 0.5 mul exch
+ 6 index 6 index 4 index 4 index 4 index funcSH
+ 2 index 6 index 6 index 4 index 4 index funcSH
+ 6 index 2 index 4 index 6 index 4 index funcSH
+ 5 3 roll 3 2 roll funcSH pop pop
+ } {
+ pop 3 index 2 index add 0.5 mul 3 index 2 index add 0.5 mul
+ funcCol sc
+ dup 4 index exch mat transform m
+ 3 index 3 index mat transform l
+ 1 index 3 index mat transform l
+ mat transform l pop pop h f*
+ } ifelse
+} def
+/axialCol {
+ dup 0 lt {
+ pop t0
+ } {
+ dup 1 gt {
+ pop t1
+ } {
+ dt mul t0 add
+ } ifelse
+ } ifelse
+ func n array astore
+} def
+/axialSH {
+ dup 0 eq {
+ true
+ } {
+ dup 8 eq {
+ false
+ } {
+ 2 index axialCol 2 index axialCol colordelta
+ } ifelse
+ } ifelse
+ {
+ 1 add 3 1 roll 2 copy add 0.5 mul
+ dup 4 3 roll exch 4 index axialSH
+ exch 3 2 roll axialSH
+ } {
+ pop 2 copy add 0.5 mul
+ axialCol sc
+ exch dup dx mul x0 add exch dy mul y0 add
+ 3 2 roll dup dx mul x0 add exch dy mul y0 add
+ dx abs dy abs ge {
+ 2 copy yMin sub dy mul dx div add yMin m
+ yMax sub dy mul dx div add yMax l
+ 2 copy yMax sub dy mul dx div add yMax l
+ yMin sub dy mul dx div add yMin l
+ h f*
+ } {
+ exch 2 copy xMin sub dx mul dy div add xMin exch m
+ xMax sub dx mul dy div add xMax exch l
+ exch 2 copy xMax sub dx mul dy div add xMax exch l
+ xMin sub dx mul dy div add xMin exch l
+ h f*
+ } ifelse
+ } ifelse
+} def
+/radialCol {
+ dup t0 lt {
+ pop t0
+ } {
+ dup t1 gt {
+ pop t1
+ } if
+ } ifelse
+ func n array astore
+} def
+/radialSH {
+ dup 0 eq {
+ true
+ } {
+ dup 8 eq {
+ false
+ } {
+ 2 index dt mul t0 add radialCol
+ 2 index dt mul t0 add radialCol colordelta
+ } ifelse
+ } ifelse
+ {
+ 1 add 3 1 roll 2 copy add 0.5 mul
+ dup 4 3 roll exch 4 index radialSH
+ exch 3 2 roll radialSH
+ } {
+ pop 2 copy add 0.5 mul dt mul t0 add
+ radialCol sc
+ encl {
+ exch dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add
+ 0 360 arc h
+ dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add
+ 360 0 arcn h f
+ } {
+ 2 copy
+ dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add
+ a1 a2 arcn
+ dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add
+ a2 a1 arcn h
+ dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add
+ a1 a2 arc
+ dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add
+ a2 a1 arc h f
+ } ifelse
+ } ifelse
+} def
+end
+%%EndResource
+%%EndProlog
+%%BeginSetup
+xpdf begin
+%%EndSetup
+pdfStartPage
+%%EndPageSetup
+[] 0 d
+1 i
+0 j
+0 J
+10 M
+1 w
+/DeviceGray {} cs
+[0] sc
+/DeviceGray {} CS
+[0] SC
+false op
+false OP
+{} settransfer
+0 0 449 103 re
+W
+q
+q
+[0.1 0 0 0.1 0 0] cm
+q
+0 0 4481.83 1020.47 re
+W
+/DeviceCMYK {} cs
+[0 0 0 0] sc
+757.438 446.738 m
+756.523 327.148 675.668 182.93 474.719 182.93 c
+267.688 182.93 177.816 320.539 177.816 454.707 c
+177.816 808.926 l
+321.211 808.926 l
+321.211 461.992 l
+321.211 332.629 409.387 267.402 496.469 267.402 c
+608.285 267.402 659.023 356.613 654.691 479.992 c
+500.082 558.086 406.051 506.379 406.051 506.379 c
+406.051 506.379 453.633 689.551 654.691 623.547 c
+654.691 808.926 l
+757.613 808.926 l
+757.613 588.652 l
+885.637 552.344 926.609 578.547 952.234 608.145 c
+971.418 533.605 904.16 424.121 757.438 446.738 c
+h
+969.449 1020.47 m
+51.0195 1020.47 l
+22.9609 1020.47 0 997.512 0 969.445 c
+0 51.0156 l
+0 22.9609 22.9609 0 51.0195 0 c
+969.449 0 l
+997.512 0 1020.47 22.9609 1020.47 51.0156 c
+1020.47 969.445 l
+1020.47 997.512 997.512 1020.47 969.449 1020.47 c
+f
+1354.85 725.012 m
+1314.38 725.012 1282.08 746.027 1282.08 789.387 c
+1282.08 906.836 l
+1319.91 906.836 l
+1319.91 793.848 l
+1319.91 765.469 1341.2 754.699 1359.33 754.699 c
+1378.76 754.699 1396.9 765.469 1396.9 792.805 c
+1396.9 906.836 l
+1434.21 906.836 l
+1434.21 792.805 l
+1434.21 748.652 1402.69 725.012 1354.85 725.012 c
+f
+1561.96 728.164 m
+1561.96 809.094 l
+1561.96 827.746 1551.98 837.207 1535.42 837.207 c
+1525.97 837.207 1516.77 834.316 1510.21 830.109 c
+1510.21 728.164 l
+1475.24 728.164 l
+1475.24 860.852 l
+1508.88 863.477 l
+1508.37 845.09 l
+1509.4 845.09 l
+1519.13 855.859 1535.17 865.324 1553.56 865.324 c
+1577.2 865.324 1596.65 849.551 1596.65 819.336 c
+1596.65 728.164 l
+1561.96 728.164 l
+f
+1633.47 728.164 m
+1633.47 862.168 l
+1668.68 862.168 l
+1668.68 728.164 l
+1633.47 728.164 l
+h
+1651.08 886.867 m
+1641.08 886.867 1632.69 895.273 1632.69 905.52 c
+1632.69 915.773 1641.08 923.652 1651.08 923.652 c
+1661.32 923.652 1669.46 915.773 1669.46 905.52 c
+1669.46 895.273 1661.32 886.867 1651.08 886.867 c
+f
+1770.65 727.375 m
+1741.22 727.375 l
+1687.61 862.168 l
+1727.02 862.168 l
+1750.95 791.223 l
+1754.87 780.188 1758.04 761.27 1758.04 761.27 c
+1758.04 761.27 1761.18 779.922 1765.13 791.223 c
+1789.03 862.168 l
+1824.5 862.168 l
+1770.65 727.375 l
+f
+1897.06 842.461 m
+1880.24 842.461 1869.74 826.438 1867.9 810.402 c
+1924.38 810.402 l
+1924.38 828.008 1914.4 842.461 1897.06 842.461 c
+h
+1955.4 790.176 m
+1866.59 790.176 l
+1867.37 768.105 1882.1 751.289 1906.79 751.289 c
+1922.55 751.289 1936.75 754.699 1952.51 760.742 c
+1950.93 736.047 l
+1934.64 729.473 1918.62 725.273 1897.33 725.273 c
+1857.12 725.273 1832.69 753.125 1832.69 792.539 c
+1832.69 835.371 1860.54 865.324 1899.95 865.324 c
+1938.06 865.324 1956.71 839.309 1956.71 809.355 c
+1956.71 803.313 1956.18 794.902 1955.4 790.176 c
+f
+2062.9 825.645 m
+2056.06 829.59 2047.14 832.219 2038.74 832.219 c
+2030.6 832.219 2022.71 828.801 2018.23 824.074 c
+2018.23 728.164 l
+1983.29 728.164 l
+1983.29 860.852 l
+2016.4 863.742 l
+2015.34 839.836 l
+2016.4 839.836 l
+2023.23 854.816 2036.1 865.324 2050.56 865.324 c
+2056.87 865.324 2063.96 863.742 2068.43 861.113 c
+2062.9 825.645 l
+f
+2120.48 725.273 m
+2103.13 725.273 2089.21 728.945 2077.65 735.254 c
+2081.59 761.535 l
+2093.66 755.227 2108.64 751.027 2121.53 751.027 c
+2132.57 751.027 2142.55 754.699 2142.55 764.426 c
+2142.55 785.703 2081.85 780.977 2081.85 823.809 c
+2081.85 850.871 2106.55 865.324 2135.19 865.324 c
+2149.38 865.324 2164.09 861.379 2173.82 857.18 c
+2169.87 831.953 l
+2159.62 835.891 2145.97 839.57 2133.35 839.57 c
+2123.9 839.57 2115.75 835.891 2115.75 828.273 c
+2115.75 807.258 2176.71 811.457 2176.71 769.152 c
+2176.71 739.992 2151.22 725.273 2120.48 725.273 c
+f
+2204.31 728.164 m
+2204.31 862.168 l
+2239.52 862.168 l
+2239.52 728.164 l
+2204.31 728.164 l
+h
+2221.92 886.867 m
+2211.92 886.867 2203.53 895.273 2203.53 905.52 c
+2203.53 915.773 2211.92 923.652 2221.92 923.652 c
+2232.16 923.652 2240.3 915.773 2240.3 905.52 c
+2240.3 895.273 2232.16 886.867 2221.92 886.867 c
+f
+2317.59 725.273 m
+2293.94 725.273 2278.7 739.992 2278.7 762.578 c
+2278.7 770.207 2279.48 805.148 2279.48 826.172 c
+2279.48 837.473 l
+2266.87 837.473 l
+2266.87 851.133 l
+2310.22 891.34 l
+2313.64 891.34 l
+2313.64 862.168 l
+2356.2 862.168 l
+2356.2 837.473 l
+2313.64 837.473 l
+2313.64 835.371 2313.12 792.539 2313.12 774.406 c
+2313.12 760.215 2321.53 753.918 2334.4 753.918 c
+2341.24 753.918 2349.38 754.699 2357.26 757.324 c
+2357.26 733.156 l
+2345.97 728.43 2332.57 725.273 2317.59 725.273 c
+f
+2433.49 842.461 m
+2416.67 842.461 2406.16 826.438 2404.33 810.402 c
+2460.81 810.402 l
+2460.81 828.008 2450.83 842.461 2433.49 842.461 c
+h
+2491.81 790.176 m
+2403 790.176 l
+2403.8 768.105 2418.51 751.289 2443.21 751.289 c
+2458.97 751.289 2473.15 754.699 2488.92 760.742 c
+2487.35 736.047 l
+2471.06 729.473 2455.03 725.273 2433.74 725.273 c
+2393.54 725.273 2369.11 753.125 2369.11 792.539 c
+2369.11 835.371 2396.96 865.324 2436.38 865.324 c
+2474.48 865.324 2493.13 839.309 2493.13 809.355 c
+2493.13 803.313 2492.61 794.902 2491.81 790.176 c
+f
+2520.48 728.164 m
+2520.48 862.168 l
+2555.69 862.168 l
+2555.69 728.164 l
+2520.48 728.164 l
+h
+2538.1 886.867 m
+2528.1 886.867 2519.7 895.273 2519.7 905.52 c
+2519.7 915.773 2528.1 923.652 2538.1 923.652 c
+2548.33 923.652 2556.47 915.773 2556.47 905.52 c
+2556.47 895.273 2548.33 886.867 2538.1 886.867 c
+f
+2633.76 725.273 m
+2610.11 725.273 2594.87 739.992 2594.87 762.578 c
+2594.87 770.207 2595.65 805.148 2595.65 826.172 c
+2595.65 837.473 l
+2583.04 837.473 l
+2583.04 851.133 l
+2626.4 891.34 l
+2629.81 891.34 l
+2629.81 862.168 l
+2672.37 862.168 l
+2672.37 837.473 l
+2629.81 837.473 l
+2629.81 835.371 2629.29 792.539 2629.29 774.406 c
+2629.29 760.215 2637.71 753.918 2650.58 753.918 c
+2657.41 753.918 2665.56 754.699 2673.43 757.324 c
+2673.43 733.156 l
+2662.14 728.43 2648.74 725.273 2633.76 725.273 c
+f
+2822.18 854.289 m
+2819.81 861.379 2817.71 875.305 2817.71 875.305 c
+2817.71 875.305 2815.62 861.906 2812.98 854.289 c
+2794.6 800.684 l
+2840.83 800.684 l
+2822.18 854.289 l
+h
+2863.96 728.164 m
+2847.67 775.195 l
+2788.02 775.195 l
+2772.26 728.164 l
+2733.62 728.164 l
+2798.53 906.836 l
+2840.05 906.836 l
+2904.95 728.164 l
+2863.96 728.164 l
+f
+3012.47 728.164 m
+3012.47 809.094 l
+3012.47 827.746 3002.49 837.207 2985.93 837.207 c
+2976.47 837.207 2967.28 834.316 2960.71 830.109 c
+2960.71 728.164 l
+2925.75 728.164 l
+2925.75 860.852 l
+2959.38 863.477 l
+2958.88 845.09 l
+2959.91 845.09 l
+2969.64 855.859 2985.67 865.324 3004.07 865.324 c
+3027.71 865.324 3047.16 849.551 3047.16 819.336 c
+3047.16 728.164 l
+3012.47 728.164 l
+f
+3123.13 725.273 m
+3099.48 725.273 3084.25 739.992 3084.25 762.578 c
+3084.25 770.207 3085.03 805.148 3085.03 826.172 c
+3085.03 837.473 l
+3072.41 837.473 l
+3072.41 851.133 l
+3115.77 891.34 l
+3119.19 891.34 l
+3119.19 862.168 l
+3161.75 862.168 l
+3161.75 837.473 l
+3119.19 837.473 l
+3119.19 835.371 3118.66 792.539 3118.66 774.406 c
+3118.66 760.215 3127.08 753.918 3139.95 753.918 c
+3146.79 753.918 3154.93 754.699 3162.8 757.324 c
+3162.8 733.156 l
+3151.51 728.43 3138.12 725.273 3123.13 725.273 c
+f
+3333.37 727.375 m
+3305.52 727.375 l
+3280.03 793.848 l
+3276.08 804.102 3273.45 821.699 3273.45 821.699 c
+3273.45 821.699 3269.5 804.367 3265.83 793.848 c
+3241.12 727.375 l
+3214.07 727.375 l
+3168.1 862.168 l
+3206.46 862.168 l
+3225.36 796.211 l
+3228.53 785.703 3231.67 765.469 3231.67 765.469 c
+3231.67 765.469 3235.62 785.176 3239.29 795.957 c
+3262.69 862.168 l
+3288.43 862.168 l
+3312.86 795.957 l
+3317.06 785.176 3320.22 765.996 3320.22 765.996 c
+3320.22 765.996 3323.12 785.703 3326.53 796.477 c
+3345.19 862.168 l
+3379.6 862.168 l
+3333.37 727.375 l
+f
+3454.27 842.461 m
+3437.45 842.461 3426.94 826.438 3425.11 810.402 c
+3481.59 810.402 l
+3481.59 828.008 3471.61 842.461 3454.27 842.461 c
+h
+3512.61 790.176 m
+3423.8 790.176 l
+3424.58 768.105 3439.31 751.289 3463.99 751.289 c
+3479.76 751.289 3493.96 754.699 3509.72 760.742 c
+3508.13 736.047 l
+3491.85 729.473 3475.83 725.273 3454.54 725.273 c
+3414.33 725.273 3389.89 753.125 3389.89 792.539 c
+3389.89 835.371 3417.74 865.324 3457.16 865.324 c
+3495.26 865.324 3513.92 839.309 3513.92 809.355 c
+3513.92 803.313 3513.39 794.902 3512.61 790.176 c
+f
+3620.11 825.645 m
+3613.27 829.59 3604.35 832.219 3595.95 832.219 c
+3587.8 832.219 3579.91 828.801 3575.44 824.074 c
+3575.44 728.164 l
+3540.5 728.164 l
+3540.5 860.852 l
+3573.6 863.742 l
+3572.55 839.836 l
+3573.6 839.836 l
+3580.44 854.816 3593.31 865.324 3607.76 865.324 c
+3614.07 865.324 3621.16 863.742 3625.63 861.113 c
+3620.11 825.645 l
+f
+3704.21 837.734 m
+3695.28 837.734 3686.36 834.844 3680.3 830.637 c
+3680.3 756.809 l
+3685.3 753.391 3694.23 751.027 3701.85 751.027 c
+3724.97 751.027 3738.12 769.414 3738.12 793.848 c
+3738.12 821.184 3724.72 837.734 3704.21 837.734 c
+h
+3700.28 726.32 m
+3692.92 726.32 3684.78 728.164 3680.3 730.527 c
+3680.3 661.164 l
+3645.36 661.164 l
+3645.36 860.852 l
+3678.99 863.477 l
+3678.47 845.617 l
+3679.52 845.617 l
+3689.25 857.441 3704.48 865.324 3719.46 865.324 c
+3752.57 865.324 3773.58 837.207 3773.58 799.895 c
+3773.58 755.754 3744.95 726.32 3700.28 726.32 c
+f
+3853.76 842.461 m
+3836.94 842.461 3826.44 826.438 3824.6 810.402 c
+3881.08 810.402 l
+3881.08 828.008 3871.1 842.461 3853.76 842.461 c
+h
+3912.1 790.176 m
+3823.29 790.176 l
+3824.07 768.105 3838.8 751.289 3863.49 751.289 c
+3879.25 751.289 3893.45 754.699 3909.21 760.742 c
+3907.63 736.047 l
+3891.34 729.473 3875.32 725.273 3854.03 725.273 c
+3813.82 725.273 3789.38 753.125 3789.38 792.539 c
+3789.38 835.371 3817.24 865.324 3856.65 865.324 c
+3894.76 865.324 3913.41 839.309 3913.41 809.355 c
+3913.41 803.313 3912.88 794.902 3912.1 790.176 c
+f
+4026.69 728.164 m
+4026.69 809.094 l
+4026.69 827.746 4016.71 837.207 4000.15 837.207 c
+3990.69 837.207 3981.49 834.316 3974.93 830.109 c
+3974.93 728.164 l
+3939.97 728.164 l
+3939.97 860.852 l
+3973.6 863.477 l
+3973.1 845.09 l
+3974.13 845.09 l
+3983.86 855.859 3999.89 865.324 4018.29 865.324 c
+4041.92 865.324 4061.38 849.551 4061.38 819.336 c
+4061.38 728.164 l
+4026.69 728.164 l
+f
+1512.61 390.449 m
+1512.61 584.238 l
+1590.13 584.238 l
+1590.13 562.531 l
+1535.87 562.531 l
+1535.87 494.941 l
+1578.66 494.941 l
+1578.66 473.234 l
+1535.87 473.234 l
+1535.87 390.449 l
+1512.61 390.449 l
+f
+1655.54 461.457 m
+1631.67 457.422 1622.67 442.852 1622.67 427.344 c
+1622.67 414.016 1629.19 407.5 1638.17 407.5 c
+1644.68 407.5 1651.2 414.328 1655.54 421.457 c
+1655.54 461.457 l
+h
+1686.24 387.656 m
+1670.42 385.801 1660.5 390.449 1656.79 402.238 c
+1655.54 402.238 l
+1651.2 393.555 1643.13 386.418 1629.5 386.418 c
+1613.06 386.418 1600.03 402.539 1600.03 424.863 c
+1600.03 450.91 1616.79 474.785 1655.54 478.195 c
+1655.54 490.91 l
+1655.54 505.793 1650.26 516.34 1636.32 516.34 c
+1627.94 516.34 1616.16 509.512 1607.18 499.902 c
+1603.76 520.676 l
+1612.43 530.598 1627.02 536.484 1639.11 536.484 c
+1666.08 536.484 1677.55 514.785 1677.55 491.836 c
+1677.55 416.496 l
+1677.55 409.367 1680.34 406.262 1688.1 406.262 c
+1686.24 387.656 l
+f
+1787.92 399.758 m
+1780.77 391.379 1770.56 386.418 1758.15 386.418 c
+1728.39 386.418 1711.32 411.848 1711.32 461.145 c
+1711.32 510.137 1728.68 536.484 1759.38 536.484 c
+1771.47 536.484 1780.77 531.836 1788.21 524.082 c
+1782.96 502.07 l
+1778 510.137 1768.37 516.641 1760.63 516.641 c
+1742.02 516.641 1734.27 497.734 1734.27 461.457 c
+1734.27 424.25 1742.33 406.262 1761.55 406.262 c
+1769.62 406.262 1777.06 412.461 1782.96 420.84 c
+1787.92 399.758 l
+f
+1875.03 387.043 m
+1875.03 405.332 l
+1867.59 392.617 1855.48 386.418 1844.64 386.418 c
+1826.03 386.418 1815.79 403.477 1815.79 422.082 c
+1815.79 532.461 l
+1837.82 532.461 l
+1837.82 426.418 l
+1837.82 413.398 1843.39 407.813 1852.39 407.813 c
+1859.83 407.813 1867.88 414.941 1875.03 424.25 c
+1875.03 532.461 l
+1897.04 532.461 l
+1897.04 391.074 l
+1875.03 387.043 l
+f
+1933.29 390.449 m
+1933.29 599.434 l
+1955.3 603.457 l
+1955.3 390.449 l
+1933.29 390.449 l
+f
+2045.52 392.93 m
+2039.62 388.898 2031.26 386.418 2025.05 386.418 c
+2009.25 386.418 1994.05 394.484 1994.05 430.449 c
+1994.05 511.066 l
+1979.78 512.617 l
+1979.78 527.5 l
+1994.05 533.078 l
+1994.05 565.012 l
+2016.06 565.012 l
+2016.06 532.461 l
+2044.58 532.461 l
+2043.35 512.617 l
+2016.06 512.617 l
+2016.06 428.281 l
+2016.06 411.848 2021.65 406.574 2028.78 406.574 c
+2033.43 406.574 2039.01 409.68 2042.72 413.086 c
+2045.52 392.93 l
+f
+2122.71 479.746 m
+2122.71 506.418 2116.51 516.641 2105.34 516.641 c
+2094.5 516.641 2085.5 501.457 2084.27 474.473 c
+2122.71 474.473 l
+2122.71 479.746 l
+h
+2138.21 399.758 m
+2130.46 391.379 2122.08 386.418 2108.45 386.418 c
+2077.74 386.418 2061.32 411.848 2061.32 461.145 c
+2061.32 511.066 2081.16 536.484 2106.59 536.484 c
+2132.31 536.484 2143.8 515.098 2143.8 478.82 c
+2143.8 475.098 2143.17 463.313 2142.24 457.109 c
+2083.96 457.109 l
+2084.58 422.695 2092.63 406.262 2110.93 406.262 c
+2120.54 406.262 2127.04 412.461 2133.25 420.84 c
+2138.21 399.758 l
+f
+2174.46 390.449 m
+2174.46 531.836 l
+2196.49 535.871 l
+2196.49 390.449 l
+2174.46 390.449 l
+h
+2169.81 582.375 m
+2169.81 591.992 2175.4 600.363 2185.63 600.363 c
+2195.87 600.363 2201.46 591.992 2201.46 582.375 c
+2201.46 572.766 2195.87 564.395 2185.63 564.395 c
+2175.4 564.395 2169.81 572.766 2169.81 582.375 c
+f
+2287.31 392.93 m
+2281.44 388.898 2273.06 386.418 2266.87 386.418 c
+2251.04 386.418 2235.85 394.484 2235.85 430.449 c
+2235.85 511.066 l
+2221.59 512.617 l
+2221.59 527.5 l
+2235.85 533.078 l
+2235.85 565.012 l
+2257.86 565.012 l
+2257.86 532.461 l
+2286.4 532.461 l
+2285.15 512.617 l
+2257.86 512.617 l
+2257.86 428.281 l
+2257.86 411.848 2263.45 406.574 2270.58 406.574 c
+2275.22 406.574 2280.81 409.68 2284.54 413.086 c
+2287.31 392.93 l
+f
+2400.77 411.848 m
+2420.93 411.848 2431.47 423.625 2431.47 445.645 c
+2431.47 467.656 2419.07 477.578 2394.89 477.578 c
+2390.85 477.578 l
+2390.85 411.848 l
+2400.77 411.848 l
+h
+2394.27 498.039 m
+2416.28 498.039 2427.45 508.273 2427.45 531.836 c
+2427.45 552.305 2417.84 562.844 2399.23 562.844 c
+2390.85 562.844 l
+2390.85 498.039 l
+2394.27 498.039 l
+h
+2367.61 390.449 m
+2367.61 584.238 l
+2403.56 584.238 l
+2434.58 584.238 2451.32 565.949 2451.32 533.391 c
+2451.32 511.379 2443.88 496.797 2428.37 489.98 c
+2444.81 482.539 2455.34 465.793 2455.34 445.332 c
+2455.34 410.605 2437.69 390.449 2404.81 390.449 c
+2367.61 390.449 l
+f
+2541.83 479.746 m
+2541.83 506.418 2535.63 516.641 2524.46 516.641 c
+2513.62 516.641 2504.62 501.457 2503.39 474.473 c
+2541.83 474.473 l
+2541.83 479.746 l
+h
+2557.33 399.758 m
+2549.58 391.379 2541.2 386.418 2527.57 386.418 c
+2496.87 386.418 2480.44 411.848 2480.44 461.145 c
+2480.44 511.066 2500.28 536.484 2525.71 536.484 c
+2551.44 536.484 2562.92 515.098 2562.92 478.82 c
+2562.92 475.098 2562.29 463.313 2561.36 457.109 c
+2503.08 457.109 l
+2503.7 422.695 2511.75 406.262 2530.05 406.262 c
+2539.66 406.262 2546.16 412.461 2552.37 420.84 c
+2557.33 399.758 l
+f
+2652.2 508.586 m
+2648.15 513.234 2641.96 516.641 2635.75 516.641 c
+2619.64 516.641 2610.34 493.703 2610.34 461.145 c
+2610.34 430.137 2619.01 408.438 2633.9 408.438 c
+2641.03 408.438 2647.55 414.328 2652.2 422.383 c
+2652.2 508.586 l
+h
+2652.2 390.449 m
+2652.2 403.477 l
+2645.99 393.859 2636.69 386.418 2626.14 386.418 c
+2602.28 386.418 2587.39 416.184 2587.39 459.59 c
+2587.39 505.793 2604.44 536.484 2631.1 536.484 c
+2639.48 536.484 2646.3 534.629 2652.2 530.91 c
+2652.2 599.434 l
+2674.21 603.457 l
+2674.21 390.449 l
+2652.2 390.449 l
+f
+2710.46 390.449 m
+2710.46 531.836 l
+2732.47 535.871 l
+2732.47 510.754 l
+2737.43 526.875 2745.81 536.484 2757.28 536.484 c
+2762.86 536.484 2768.13 533.703 2772.47 529.98 c
+2767.82 507.031 l
+2764.11 510.441 2759.76 513.859 2755.11 513.859 c
+2747.04 513.859 2738.68 501.758 2732.47 479.746 c
+2732.47 390.449 l
+2710.46 390.449 l
+f
+2795.71 390.449 m
+2795.71 531.836 l
+2817.72 535.871 l
+2817.72 390.449 l
+2795.71 390.449 l
+h
+2791.06 582.375 m
+2791.06 591.992 2796.65 600.363 2806.87 600.363 c
+2817.1 600.363 2822.69 591.992 2822.69 582.375 c
+2822.69 572.766 2817.1 564.395 2806.87 564.395 c
+2796.65 564.395 2791.06 572.766 2791.06 582.375 c
+f
+2850.58 582.375 m
+2850.58 591.992 2856.16 600.363 2866.4 600.363 c
+2876.63 600.363 2882.22 591.992 2882.22 582.375 c
+2882.22 572.766 2876.63 564.395 2866.4 564.395 c
+2856.16 564.395 2850.58 572.766 2850.58 582.375 c
+h
+2837.86 329.68 m
+2850.89 339.602 2855.22 351.387 2855.22 373.398 c
+2855.22 531.836 l
+2877.26 535.871 l
+2877.26 377.121 l
+2877.26 348.906 2871.67 328.438 2850.26 313.242 c
+2837.86 329.68 l
+f
+2916.3 390.449 m
+2916.3 511.066 l
+2902.04 512.617 l
+2902.04 527.5 l
+2916.3 533.078 l
+2916.3 559.746 l
+2916.3 596.953 2931.49 606.25 2948.54 606.25 c
+2955.36 606.25 2961.88 604.082 2968.39 600.051 c
+2964.05 579.895 l
+2959.72 583.313 2955.36 585.793 2951.34 585.793 c
+2943.58 585.793 2938.31 580.207 2938.31 561.914 c
+2938.31 532.461 l
+2963.74 532.461 l
+2962.51 512.617 l
+2938.31 512.617 l
+2938.31 390.449 l
+2916.3 390.449 l
+f
+2984.19 417.121 m
+2992.57 410.293 3001.55 405.957 3010.56 405.957 c
+3022.33 405.957 3029.46 414.641 3029.46 426.105 c
+3029.46 437.578 3023.27 445.332 3008.39 454.016 c
+2990.09 464.863 2979.23 477.578 2979.23 498.039 c
+2979.23 520.988 2996.59 536.484 3018.31 536.484 c
+3029.78 536.484 3040.32 531.836 3047.14 526.875 c
+3042.49 507.031 l
+3034.74 512.617 3026.67 516.641 3018 516.641 c
+3007.76 516.641 3000.32 509.824 3000.32 498.352 c
+3000.32 487.5 3004.97 480.371 3020.17 471.066 c
+3038.15 459.902 3050.56 447.188 3050.56 426.418 c
+3050.56 402.539 3033.19 386.418 3011.18 386.418 c
+2999.7 386.418 2987.92 390.762 2979.54 397.277 c
+2984.19 417.121 l
+f
+3158.12 389.523 m
+3137.98 496.797 l
+3117.82 389.523 l
+3095.5 389.523 l
+3068.21 532.461 l
+3090.22 532.461 l
+3107.59 425.176 l
+3127.43 532.461 l
+3148.51 532.461 l
+3168.35 425.176 l
+3185.71 532.461 l
+3207.72 532.461 l
+3180.44 389.523 l
+3158.12 389.523 l
+f
+3288.02 479.746 m
+3288.02 506.418 3281.81 516.641 3270.65 516.641 c
+3259.79 516.641 3250.81 501.457 3249.56 474.473 c
+3288.02 474.473 l
+3288.02 479.746 l
+h
+3303.51 399.758 m
+3295.77 391.379 3287.39 386.418 3273.74 386.418 c
+3243.06 386.418 3226.61 411.848 3226.61 461.145 c
+3226.61 511.066 3246.46 536.484 3271.88 536.484 c
+3297.63 536.484 3309.09 515.098 3309.09 478.82 c
+3309.09 475.098 3308.47 463.313 3307.55 457.109 c
+3249.25 457.109 l
+3249.87 422.695 3257.94 406.262 3276.22 406.262 c
+3285.85 406.262 3292.35 412.461 3298.54 420.84 c
+3303.51 399.758 l
+f
+3390.62 392.93 m
+3384.74 388.898 3376.36 386.418 3370.17 386.418 c
+3354.35 386.418 3339.15 394.484 3339.15 430.449 c
+3339.15 511.066 l
+3324.89 512.617 l
+3324.89 527.5 l
+3339.15 533.078 l
+3339.15 565.012 l
+3361.16 565.012 l
+3361.16 532.461 l
+3389.7 532.461 l
+3388.45 512.617 l
+3361.16 512.617 l
+3361.16 428.281 l
+3361.16 411.848 3366.75 406.574 3373.88 406.574 c
+3378.53 406.574 3384.11 409.68 3387.84 413.086 c
+3390.62 392.93 l
+f
+3467.82 479.746 m
+3467.82 506.418 3461.61 516.641 3450.46 516.641 c
+3439.6 516.641 3430.62 501.457 3429.37 474.473 c
+3467.82 474.473 l
+3467.82 479.746 l
+h
+3483.31 399.758 m
+3475.58 391.379 3467.2 386.418 3453.54 386.418 c
+3422.86 386.418 3406.42 411.848 3406.42 461.145 c
+3406.42 511.066 3426.26 536.484 3451.69 536.484 c
+3477.43 536.484 3488.9 515.098 3488.9 478.82 c
+3488.9 475.098 3488.27 463.313 3487.35 457.109 c
+3429.05 457.109 l
+3429.68 422.695 3437.74 406.262 3456.03 406.262 c
+3465.65 406.262 3472.16 412.461 3478.35 420.84 c
+3483.31 399.758 l
+f
+3578.17 390.449 m
+3578.17 496.496 l
+3578.17 509.512 3572.61 515.098 3563.6 515.098 c
+3556.16 515.098 3547.8 507.961 3540.97 498.664 c
+3540.97 390.449 l
+3518.96 390.449 l
+3518.96 531.836 l
+3540.97 535.871 l
+3540.97 517.578 l
+3548.41 530.285 3560.5 536.484 3571.36 536.484 c
+3589.97 536.484 3600.19 519.434 3600.19 500.832 c
+3600.19 390.449 l
+3578.17 390.449 l
+f
+3633.96 417.121 m
+3642.33 410.293 3651.32 405.957 3660.32 405.957 c
+3672.1 405.957 3679.23 414.641 3679.23 426.105 c
+3679.23 437.578 3673.04 445.332 3658.15 454.016 c
+3639.85 464.863 3628.99 477.578 3628.99 498.039 c
+3628.99 520.988 3646.36 536.484 3668.08 536.484 c
+3679.54 536.484 3690.09 531.836 3696.9 526.875 c
+3692.26 507.031 l
+3684.5 512.617 3676.44 516.641 3667.76 516.641 c
+3657.53 516.641 3650.09 509.824 3650.09 498.352 c
+3650.09 487.5 3654.74 480.371 3669.93 471.066 c
+3687.92 459.902 3700.32 447.188 3700.32 426.418 c
+3700.32 402.539 3682.96 386.418 3660.95 386.418 c
+3649.46 386.418 3637.69 390.762 3629.31 397.277 c
+3633.96 417.121 l
+f
+3800.77 399.758 m
+3793.62 391.379 3783.41 386.418 3771.01 386.418 c
+3741.24 386.418 3724.17 411.848 3724.17 461.145 c
+3724.17 510.137 3741.53 536.484 3772.24 536.484 c
+3784.33 536.484 3793.62 531.836 3801.06 524.082 c
+3795.81 502.07 l
+3790.85 510.137 3781.22 516.641 3773.49 516.641 c
+3754.87 516.641 3747.12 497.734 3747.12 461.457 c
+3747.12 424.25 3755.19 406.262 3774.4 406.262 c
+3782.47 406.262 3789.91 412.461 3795.81 420.84 c
+3800.77 399.758 l
+f
+3888.49 390.449 m
+3888.49 496.496 l
+3888.49 509.512 3882.92 515.098 3873.92 515.098 c
+3866.47 515.098 3858.12 507.961 3851.28 498.664 c
+3851.28 390.449 l
+3829.27 390.449 l
+3829.27 599.434 l
+3851.28 603.457 l
+3851.28 517.578 l
+3858.72 530.285 3870.81 536.484 3881.67 536.484 c
+3900.28 536.484 3910.5 519.434 3910.5 500.832 c
+3910.5 390.449 l
+3888.49 390.449 l
+f
+3994.81 461.457 m
+3970.95 457.422 3961.94 442.852 3961.94 427.344 c
+3961.94 414.016 3968.47 407.5 3977.45 407.5 c
+3983.96 407.5 3990.48 414.328 3994.81 421.457 c
+3994.81 461.457 l
+h
+4025.52 387.656 m
+4009.7 385.801 3999.78 390.449 3996.06 402.238 c
+3994.81 402.238 l
+3990.48 393.555 3982.41 386.418 3968.78 386.418 c
+3952.33 386.418 3939.31 402.539 3939.31 424.863 c
+3939.31 450.91 3956.06 474.785 3994.81 478.195 c
+3994.81 490.91 l
+3994.81 505.793 3989.54 516.34 3975.6 516.34 c
+3967.22 516.34 3955.44 509.512 3946.46 499.902 c
+3943.04 520.676 l
+3951.71 530.598 3966.3 536.484 3978.39 536.484 c
+4005.36 536.484 4016.83 514.785 4016.83 491.836 c
+4016.83 416.496 l
+4016.83 409.367 4019.62 406.262 4027.37 406.262 c
+4025.52 387.656 l
+f
+4078.19 414.328 m
+4082.24 409.68 4088.43 406.262 4094.64 406.262 c
+4110.75 406.262 4120.05 429.211 4120.05 461.77 c
+4120.05 492.773 4111.38 514.473 4096.49 514.473 c
+4089.37 514.473 4082.84 508.898 4078.19 500.52 c
+4078.19 414.328 l
+h
+4056.18 320.996 m
+4056.18 531.836 l
+4078.19 535.871 l
+4078.19 519.434 l
+4084.09 529.355 4093.7 536.484 4104.25 536.484 c
+4128.12 536.484 4143 506.719 4143 463.313 c
+4143 417.121 4125.95 386.418 4099.29 386.418 c
+4090.91 386.418 4084.09 388.281 4078.19 392.004 c
+4078.19 320.996 l
+4056.18 320.996 l
+f
+4195.69 414.328 m
+4199.74 409.68 4205.93 406.262 4212.14 406.262 c
+4228.25 406.262 4237.55 429.211 4237.55 461.77 c
+4237.55 492.773 4228.88 514.473 4213.99 514.473 c
+4206.87 514.473 4200.34 508.898 4195.69 500.52 c
+4195.69 414.328 l
+h
+4173.68 320.996 m
+4173.68 531.836 l
+4195.69 535.871 l
+4195.69 519.434 l
+4201.59 529.355 4211.2 536.484 4221.75 536.484 c
+4245.62 536.484 4260.5 506.719 4260.5 463.313 c
+4260.5 417.121 4243.45 386.418 4216.79 386.418 c
+4208.41 386.418 4201.59 388.281 4195.69 392.004 c
+4195.69 320.996 l
+4173.68 320.996 l
+f
+4349.46 479.746 m
+4349.46 506.418 4343.25 516.641 4332.1 516.641 c
+4321.24 516.641 4312.26 501.457 4311.01 474.473 c
+4349.46 474.473 l
+4349.46 479.746 l
+h
+4364.95 399.758 m
+4357.22 391.379 4348.84 386.418 4335.19 386.418 c
+4304.5 386.418 4288.06 411.848 4288.06 461.145 c
+4288.06 511.066 4307.9 536.484 4333.33 536.484 c
+4359.07 536.484 4370.54 515.098 4370.54 478.82 c
+4370.54 475.098 4369.91 463.313 4368.99 457.109 c
+4310.69 457.109 l
+4311.32 422.695 4319.38 406.262 4337.67 406.262 c
+4347.29 406.262 4353.8 412.461 4359.99 420.84 c
+4364.95 399.758 l
+f
+4459.81 390.449 m
+4459.81 496.496 l
+4459.81 509.512 4454.25 515.098 4445.24 515.098 c
+4437.8 515.098 4429.44 507.961 4422.61 498.664 c
+4422.61 390.449 l
+4400.6 390.449 l
+4400.6 531.836 l
+4422.61 535.871 l
+4422.61 517.578 l
+4430.05 530.285 4442.14 536.484 4453 536.484 c
+4471.61 536.484 4481.83 519.434 4481.83 500.832 c
+4481.83 390.449 l
+4459.81 390.449 l
+f
+1566.26 204.746 m
+1566.26 231.418 1560.05 241.641 1548.9 241.641 c
+1538.04 241.641 1529.05 226.457 1527.8 199.473 c
+1566.26 199.473 l
+1566.26 204.746 l
+h
+1581.75 124.758 m
+1574.01 116.379 1565.63 111.418 1551.98 111.418 c
+1521.3 111.418 1504.85 136.848 1504.85 186.145 c
+1504.85 236.066 1524.7 261.484 1550.13 261.484 c
+1575.87 261.484 1587.33 240.098 1587.33 203.82 c
+1587.33 200.098 1586.71 188.313 1585.79 182.109 c
+1527.49 182.109 l
+1528.12 147.695 1536.18 131.262 1554.46 131.262 c
+1564.09 131.262 1570.6 137.461 1576.79 145.84 c
+1581.75 124.758 l
+f
+1676.61 115.449 m
+1676.61 221.496 l
+1676.61 234.512 1671.04 240.098 1662.04 240.098 c
+1654.6 240.098 1646.24 232.961 1639.4 223.664 c
+1639.4 115.449 l
+1617.39 115.449 l
+1617.39 256.836 l
+1639.4 260.871 l
+1639.4 242.578 l
+1646.85 255.285 1658.94 261.484 1669.79 261.484 c
+1688.41 261.484 1698.62 244.434 1698.62 225.832 c
+1698.62 115.449 l
+1676.61 115.449 l
+f
+1790.69 115.449 m
+1790.69 309.238 l
+1867.59 309.238 l
+1867.59 287.531 l
+1813.94 287.531 l
+1813.94 223.664 l
+1857.35 223.664 l
+1857.35 201.953 l
+1813.94 201.953 l
+1813.94 137.16 l
+1867.59 137.16 l
+1867.59 115.449 l
+1790.69 115.449 l
+f
+1966.16 124.758 m
+1959.03 116.379 1948.8 111.418 1936.4 111.418 c
+1906.63 111.418 1889.58 136.848 1889.58 186.145 c
+1889.58 235.137 1906.94 261.484 1937.65 261.484 c
+1949.74 261.484 1959.03 256.836 1966.47 249.082 c
+1961.2 227.07 l
+1956.24 235.137 1946.63 241.641 1938.88 241.641 c
+1920.28 241.641 1912.53 222.734 1912.53 186.457 c
+1912.53 149.25 1920.58 131.262 1939.81 131.262 c
+1947.86 131.262 1955.3 137.461 1961.2 145.84 c
+1966.16 124.758 l
+f
+2055.75 186.145 m
+2055.75 223.352 2048.31 241.641 2032.18 241.641 c
+2016.06 241.641 2008.94 222.734 2008.94 186.457 c
+2008.94 149.25 2016.06 131.262 2032.18 131.262 c
+2048.31 131.262 2055.75 150.488 2055.75 186.145 c
+h
+1985.99 186.145 m
+1985.99 235.137 2003.04 261.484 2032.8 261.484 c
+2062.57 261.484 2078.7 236.066 2078.7 186.77 c
+2078.7 137.773 2061.03 111.418 2031.87 111.418 c
+2002.41 111.418 1985.99 136.848 1985.99 186.145 c
+f
+2168.58 115.449 m
+2168.58 221.496 l
+2168.58 234.512 2163.02 240.098 2154.01 240.098 c
+2146.57 240.098 2138.21 232.961 2131.38 223.664 c
+2131.38 115.449 l
+2109.37 115.449 l
+2109.37 256.836 l
+2131.38 260.871 l
+2131.38 242.578 l
+2138.82 255.285 2150.91 261.484 2161.77 261.484 c
+2180.38 261.484 2190.6 244.434 2190.6 225.832 c
+2190.6 115.449 l
+2168.58 115.449 l
+f
+2290.42 186.145 m
+2290.42 223.352 2282.98 241.641 2266.87 241.641 c
+2250.73 241.641 2243.6 222.734 2243.6 186.457 c
+2243.6 149.25 2250.73 131.262 2266.87 131.262 c
+2282.98 131.262 2290.42 150.488 2290.42 186.145 c
+h
+2220.65 186.145 m
+2220.65 235.137 2237.72 261.484 2267.49 261.484 c
+2297.26 261.484 2313.37 236.066 2313.37 186.77 c
+2313.37 137.773 2295.69 111.418 2266.55 111.418 c
+2237.1 111.418 2220.65 136.848 2220.65 186.145 c
+f
+2456.9 115.449 m
+2456.9 224.277 l
+2456.9 237.305 2451.94 240.098 2443.27 240.098 c
+2435.83 240.098 2429.31 232.656 2422.49 222.422 c
+2422.49 115.449 l
+2400.48 115.449 l
+2400.48 224.277 l
+2400.48 237.305 2395.52 240.098 2386.83 240.098 c
+2379.38 240.098 2372.88 232.656 2366.06 222.422 c
+2366.06 115.449 l
+2344.05 115.449 l
+2344.05 256.836 l
+2366.06 260.871 l
+2366.06 241.641 l
+2373.19 254.98 2383.74 261.484 2394.58 261.484 c
+2408.54 261.484 2417.53 250.949 2420.63 239.16 c
+2428.08 254.043 2439.54 261.484 2451.03 261.484 c
+2468.99 261.484 2478.92 244.434 2478.92 225.832 c
+2478.92 115.449 l
+2456.9 115.449 l
+f
+2515.17 115.449 m
+2515.17 256.836 l
+2537.2 260.871 l
+2537.2 115.449 l
+2515.17 115.449 l
+h
+2510.52 307.375 m
+2510.52 316.992 2516.1 325.363 2526.34 325.363 c
+2536.57 325.363 2542.16 316.992 2542.16 307.375 c
+2542.16 297.766 2536.57 289.395 2526.34 289.395 c
+2516.1 289.395 2510.52 297.766 2510.52 307.375 c
+f
+2629.89 204.746 m
+2629.89 231.418 2623.68 241.641 2612.53 241.641 c
+2601.67 241.641 2592.69 226.457 2591.44 199.473 c
+2629.89 199.473 l
+2629.89 204.746 l
+h
+2645.38 124.758 m
+2637.65 116.379 2629.27 111.418 2615.62 111.418 c
+2584.93 111.418 2568.49 136.848 2568.49 186.145 c
+2568.49 236.066 2588.33 261.484 2613.76 261.484 c
+2639.5 261.484 2650.97 240.098 2650.97 203.82 c
+2650.97 200.098 2650.34 188.313 2649.42 182.109 c
+2591.12 182.109 l
+2591.75 147.695 2599.81 131.262 2618.1 131.262 c
+2627.72 131.262 2634.23 137.461 2640.42 145.84 c
+2645.38 124.758 l
+f
+1310.06 115.098 m
+1310.06 115.098 l
+1294.4 115.098 1281.71 127.785 1281.71 143.438 c
+1281.71 557.297 l
+1281.71 572.949 1294.4 585.645 1310.06 585.645 c
+1325.72 585.645 1338.41 572.949 1338.41 557.297 c
+1338.41 143.438 l
+1338.41 127.785 1325.72 115.098 1310.06 115.098 c
+f
+Q
+Q
+Q
+showpage
+%%PageTrailer
+pdfEndPage
+%%Trailer
+end
+%%DocumentSuppliedResources:
+%%EOF