docs/keysigning-help

diff wot-after.ps @ 0:8d616aba351e

the already finished paper
author meillo@marmaro.de
date Wed, 18 Feb 2009 16:57:20 +0100
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/wot-after.ps	Wed Feb 18 16:57:20 2009 +0100
     1.3 @@ -0,0 +1,703 @@
     1.4 +%!PS-Adobe-3.0 EPSF-3.0
     1.5 +%%Creator: Graphviz version 2.20.2 (Sun Oct 12 22:28:10 UTC 2008)
     1.6 +%%For: (meillo) Meillo  r e t u r n s,,,
     1.7 +%%Title: lugu wot 2008-11-30
     1.8 +%%Pages: (atend)
     1.9 +%%BoundingBox: (atend)
    1.10 +%%EndComments
    1.11 +save
    1.12 +%%BeginProlog
    1.13 +/DotDict 200 dict def
    1.14 +DotDict begin
    1.15 +
    1.16 +/setupLatin1 {
    1.17 +mark
    1.18 +/EncodingVector 256 array def
    1.19 + EncodingVector 0
    1.20 +
    1.21 +ISOLatin1Encoding 0 255 getinterval putinterval
    1.22 +EncodingVector 45 /hyphen put
    1.23 +
    1.24 +% Set up ISO Latin 1 character encoding
    1.25 +/starnetISO {
    1.26 +        dup dup findfont dup length dict begin
    1.27 +        { 1 index /FID ne { def }{ pop pop } ifelse
    1.28 +        } forall
    1.29 +        /Encoding EncodingVector def
    1.30 +        currentdict end definefont
    1.31 +} def
    1.32 +/Times-Roman starnetISO def
    1.33 +/Times-Italic starnetISO def
    1.34 +/Times-Bold starnetISO def
    1.35 +/Times-BoldItalic starnetISO def
    1.36 +/Helvetica starnetISO def
    1.37 +/Helvetica-Oblique starnetISO def
    1.38 +/Helvetica-Bold starnetISO def
    1.39 +/Helvetica-BoldOblique starnetISO def
    1.40 +/Courier starnetISO def
    1.41 +/Courier-Oblique starnetISO def
    1.42 +/Courier-Bold starnetISO def
    1.43 +/Courier-BoldOblique starnetISO def
    1.44 +cleartomark
    1.45 +} bind def
    1.46 +
    1.47 +%%BeginResource: procset graphviz 0 0
    1.48 +/coord-font-family /Times-Roman def
    1.49 +/default-font-family /Times-Roman def
    1.50 +/coordfont coord-font-family findfont 8 scalefont def
    1.51 +
    1.52 +/InvScaleFactor 1.0 def
    1.53 +/set_scale {
    1.54 +       dup 1 exch div /InvScaleFactor exch def
    1.55 +       scale
    1.56 +} bind def
    1.57 +
    1.58 +% styles
    1.59 +/solid { [] 0 setdash } bind def
    1.60 +/dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def
    1.61 +/dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def
    1.62 +/invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def
    1.63 +/bold { 2 setlinewidth } bind def
    1.64 +/filled { } bind def
    1.65 +/unfilled { } bind def
    1.66 +/rounded { } bind def
    1.67 +/diagonals { } bind def
    1.68 +
    1.69 +% hooks for setting color 
    1.70 +/nodecolor { sethsbcolor } bind def
    1.71 +/edgecolor { sethsbcolor } bind def
    1.72 +/graphcolor { sethsbcolor } bind def
    1.73 +/nopcolor {pop pop pop} bind def
    1.74 +
    1.75 +/beginpage {	% i j npages
    1.76 +	/npages exch def
    1.77 +	/j exch def
    1.78 +	/i exch def
    1.79 +	/str 10 string def
    1.80 +	npages 1 gt {
    1.81 +		gsave
    1.82 +			coordfont setfont
    1.83 +			0 0 moveto
    1.84 +			(\() show i str cvs show (,) show j str cvs show (\)) show
    1.85 +		grestore
    1.86 +	} if
    1.87 +} bind def
    1.88 +
    1.89 +/set_font {
    1.90 +	findfont exch
    1.91 +	scalefont setfont
    1.92 +} def
    1.93 +
    1.94 +% draw text fitted to its expected width
    1.95 +/alignedtext {			% width text
    1.96 +	/text exch def
    1.97 +	/width exch def
    1.98 +	gsave
    1.99 +		width 0 gt {
   1.100 +			[] 0 setdash
   1.101 +			text stringwidth pop width exch sub text length div 0 text ashow
   1.102 +		} if
   1.103 +	grestore
   1.104 +} def
   1.105 +
   1.106 +/boxprim {				% xcorner ycorner xsize ysize
   1.107 +		4 2 roll
   1.108 +		moveto
   1.109 +		2 copy
   1.110 +		exch 0 rlineto
   1.111 +		0 exch rlineto
   1.112 +		pop neg 0 rlineto
   1.113 +		closepath
   1.114 +} bind def
   1.115 +
   1.116 +/ellipse_path {
   1.117 +	/ry exch def
   1.118 +	/rx exch def
   1.119 +	/y exch def
   1.120 +	/x exch def
   1.121 +	matrix currentmatrix
   1.122 +	newpath
   1.123 +	x y translate
   1.124 +	rx ry scale
   1.125 +	0 0 1 0 360 arc
   1.126 +	setmatrix
   1.127 +} bind def
   1.128 +
   1.129 +/endpage { showpage } bind def
   1.130 +/showpage { } def
   1.131 +
   1.132 +/layercolorseq
   1.133 +	[	% layer color sequence - darkest to lightest
   1.134 +		[0 0 0]
   1.135 +		[.2 .8 .8]
   1.136 +		[.4 .8 .8]
   1.137 +		[.6 .8 .8]
   1.138 +		[.8 .8 .8]
   1.139 +	]
   1.140 +def
   1.141 +
   1.142 +/layerlen layercolorseq length def
   1.143 +
   1.144 +/setlayer {/maxlayer exch def /curlayer exch def
   1.145 +	layercolorseq curlayer 1 sub layerlen mod get
   1.146 +	aload pop sethsbcolor
   1.147 +	/nodecolor {nopcolor} def
   1.148 +	/edgecolor {nopcolor} def
   1.149 +	/graphcolor {nopcolor} def
   1.150 +} bind def
   1.151 +
   1.152 +/onlayer { curlayer ne {invis} if } def
   1.153 +
   1.154 +/onlayers {
   1.155 +	/myupper exch def
   1.156 +	/mylower exch def
   1.157 +	curlayer mylower lt
   1.158 +	curlayer myupper gt
   1.159 +	or
   1.160 +	{invis} if
   1.161 +} def
   1.162 +
   1.163 +/curlayer 0 def
   1.164 +
   1.165 +%%EndResource
   1.166 +%%EndProlog
   1.167 +%%BeginSetup
   1.168 +14 default-font-family set_font
   1.169 +1 setmiterlimit
   1.170 +% /arrowlength 10 def
   1.171 +% /arrowwidth 5 def
   1.172 +
   1.173 +% make sure pdfmark is harmless for PS-interpreters other than Distiller
   1.174 +/pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse
   1.175 +% make '<<' and '>>' safe on PS Level 1 devices
   1.176 +/languagelevel where {pop languagelevel}{1} ifelse
   1.177 +2 lt {
   1.178 +    userdict (<<) cvn ([) cvn load put
   1.179 +    userdict (>>) cvn ([) cvn load put
   1.180 +} if
   1.181 +
   1.182 +%%EndSetup
   1.183 +setupLatin1
   1.184 +%%Page: 1 1
   1.185 +%%PageBoundingBox: 36 36 271 296
   1.186 +%%PageOrientation: Portrait
   1.187 +0 0 1 beginpage
   1.188 +gsave
   1.189 +36 36 235 260 boxprim clip newpath
   1.190 +1 1 set_scale 0 rotate 40 40 translate
   1.191 +% 2A411DFD
   1.192 +gsave
   1.193 +1 setlinewidth
   1.194 +0.000 0.000 0.000 nodecolor
   1.195 +114 144 27 18 ellipse_path stroke
   1.196 +0.000 0.000 0.000 nodecolor
   1.197 +14 /Times-Roman set_font
   1.198 +108 139.9 moveto 12 (aa) alignedtext
   1.199 +grestore
   1.200 +% 656D4094
   1.201 +gsave
   1.202 +1 setlinewidth
   1.203 +0.000 0.000 0.000 nodecolor
   1.204 +173 137 27 18 ellipse_path stroke
   1.205 +0.000 0.000 0.000 nodecolor
   1.206 +14 /Times-Roman set_font
   1.207 +165.5 132.9 moveto 15 (bb) alignedtext
   1.208 +grestore
   1.209 +% 2A411DFD->656D4094
   1.210 +gsave
   1.211 +1 setlinewidth
   1.212 +0.000 0.000 0.000 edgecolor
   1.213 +newpath 141 141 moveto
   1.214 +141 141 141 141 141 141 curveto
   1.215 +stroke
   1.216 +0.000 0.000 0.000 edgecolor
   1.217 +newpath 136.88 145.39 moveto
   1.218 +146 140 lineto
   1.219 +135.51 138.53 lineto
   1.220 +closepath fill
   1.221 +1 setlinewidth
   1.222 +solid
   1.223 +0.000 0.000 0.000 edgecolor
   1.224 +newpath 136.88 145.39 moveto
   1.225 +146 140 lineto
   1.226 +135.51 138.53 lineto
   1.227 +closepath stroke
   1.228 +grestore
   1.229 +% 303FC62A
   1.230 +gsave
   1.231 +1 setlinewidth
   1.232 +0.000 0.000 0.000 nodecolor
   1.233 +119 19 27 18 ellipse_path stroke
   1.234 +0.000 0.000 0.000 nodecolor
   1.235 +14 /Times-Roman set_font
   1.236 +112 14.9 moveto 14 (cc) alignedtext
   1.237 +grestore
   1.238 +% 2A411DFD->303FC62A
   1.239 +gsave
   1.240 +1 setlinewidth
   1.241 +0.000 0.000 0.000 edgecolor
   1.242 +newpath 115 126 moveto
   1.243 +116 105 117 71 118 47 curveto
   1.244 +stroke
   1.245 +0.000 0.000 0.000 edgecolor
   1.246 +newpath 121.5 47 moveto
   1.247 +118 37 lineto
   1.248 +114.5 47 lineto
   1.249 +closepath fill
   1.250 +1 setlinewidth
   1.251 +solid
   1.252 +0.000 0.000 0.000 edgecolor
   1.253 +newpath 121.5 47 moveto
   1.254 +118 37 lineto
   1.255 +114.5 47 lineto
   1.256 +closepath stroke
   1.257 +grestore
   1.258 +% AB69FEE2
   1.259 +gsave
   1.260 +1 setlinewidth
   1.261 +0.000 0.000 0.000 nodecolor
   1.262 +28 185 27 18 ellipse_path stroke
   1.263 +0.000 0.000 0.000 nodecolor
   1.264 +14 /Times-Roman set_font
   1.265 +20.5 180.9 moveto 15 (dd) alignedtext
   1.266 +grestore
   1.267 +% 2A411DFD->AB69FEE2
   1.268 +gsave
   1.269 +1 setlinewidth
   1.270 +0.000 0.000 0.000 edgecolor
   1.271 +newpath 92 155 moveto
   1.272 +82 160 70 165 59 171 curveto
   1.273 +stroke
   1.274 +0.000 0.000 0.000 edgecolor
   1.275 +newpath 57.72 167.74 moveto
   1.276 +50 175 lineto
   1.277 +60.56 174.14 lineto
   1.278 +closepath fill
   1.279 +1 setlinewidth
   1.280 +solid
   1.281 +0.000 0.000 0.000 edgecolor
   1.282 +newpath 57.72 167.74 moveto
   1.283 +50 175 lineto
   1.284 +60.56 174.14 lineto
   1.285 +closepath stroke
   1.286 +grestore
   1.287 +% D2F682BE
   1.288 +gsave
   1.289 +1 setlinewidth
   1.290 +0.000 0.000 0.000 nodecolor
   1.291 +151 233 27 18 ellipse_path stroke
   1.292 +0.000 0.000 0.000 nodecolor
   1.293 +14 /Times-Roman set_font
   1.294 +146.5 228.9 moveto 9 (ff) alignedtext
   1.295 +grestore
   1.296 +% 2A411DFD->D2F682BE
   1.297 +gsave
   1.298 +1 setlinewidth
   1.299 +0.000 0.000 0.000 edgecolor
   1.300 +newpath 121 162 moveto
   1.301 +127 175 134 192 140 206 curveto
   1.302 +stroke
   1.303 +0.000 0.000 0.000 edgecolor
   1.304 +newpath 137.04 208.02 moveto
   1.305 +144 216 lineto
   1.306 +143.54 205.42 lineto
   1.307 +closepath fill
   1.308 +1 setlinewidth
   1.309 +solid
   1.310 +0.000 0.000 0.000 edgecolor
   1.311 +newpath 137.04 208.02 moveto
   1.312 +144 216 lineto
   1.313 +143.54 205.42 lineto
   1.314 +closepath stroke
   1.315 +grestore
   1.316 +% E5FDA812
   1.317 +gsave
   1.318 +1 setlinewidth
   1.319 +0.000 0.000 0.000 nodecolor
   1.320 +77 98 27 18 ellipse_path stroke
   1.321 +0.000 0.000 0.000 nodecolor
   1.322 +14 /Times-Roman set_font
   1.323 +70 93.9 moveto 14 (gg) alignedtext
   1.324 +grestore
   1.325 +% 2A411DFD->E5FDA812
   1.326 +gsave
   1.327 +1 setlinewidth
   1.328 +0.000 0.000 0.000 edgecolor
   1.329 +newpath 101 128 moveto
   1.330 +99 126 98 124 96 122 curveto
   1.331 +stroke
   1.332 +0.000 0.000 0.000 edgecolor
   1.333 +newpath 98.8 119.9 moveto
   1.334 +90 114 lineto
   1.335 +93.2 124.1 lineto
   1.336 +closepath fill
   1.337 +1 setlinewidth
   1.338 +solid
   1.339 +0.000 0.000 0.000 edgecolor
   1.340 +newpath 98.8 119.9 moveto
   1.341 +90 114 lineto
   1.342 +93.2 124.1 lineto
   1.343 +closepath stroke
   1.344 +grestore
   1.345 +% 656D4094->2A411DFD
   1.346 +gsave
   1.347 +1 setlinewidth
   1.348 +0.000 0.000 0.000 edgecolor
   1.349 +newpath 146 140 moveto
   1.350 +146 140 146 140 146 140 curveto
   1.351 +stroke
   1.352 +0.000 0.000 0.000 edgecolor
   1.353 +newpath 150.12 135.61 moveto
   1.354 +141 141 lineto
   1.355 +151.49 142.47 lineto
   1.356 +closepath fill
   1.357 +1 setlinewidth
   1.358 +solid
   1.359 +0.000 0.000 0.000 edgecolor
   1.360 +newpath 150.12 135.61 moveto
   1.361 +141 141 lineto
   1.362 +151.49 142.47 lineto
   1.363 +closepath stroke
   1.364 +grestore
   1.365 +% 656D4094->303FC62A
   1.366 +gsave
   1.367 +1 setlinewidth
   1.368 +0.000 0.000 0.000 edgecolor
   1.369 +newpath 165 120 moveto
   1.370 +156 101 142 69 131 46 curveto
   1.371 +stroke
   1.372 +0.000 0.000 0.000 edgecolor
   1.373 +newpath 134.26 44.72 moveto
   1.374 +127 37 lineto
   1.375 +127.86 47.56 lineto
   1.376 +closepath fill
   1.377 +1 setlinewidth
   1.378 +solid
   1.379 +0.000 0.000 0.000 edgecolor
   1.380 +newpath 134.26 44.72 moveto
   1.381 +127 37 lineto
   1.382 +127.86 47.56 lineto
   1.383 +closepath stroke
   1.384 +grestore
   1.385 +% 656D4094->AB69FEE2
   1.386 +gsave
   1.387 +1 setlinewidth
   1.388 +0.000 0.000 0.000 edgecolor
   1.389 +newpath 153 149 moveto
   1.390 +147 153 140 156 134 158 curveto
   1.391 +112 167 85 174 64 178 curveto
   1.392 +stroke
   1.393 +0.000 0.000 0.000 edgecolor
   1.394 +newpath 63.12 174.61 moveto
   1.395 +54 180 lineto
   1.396 +64.49 181.47 lineto
   1.397 +closepath fill
   1.398 +1 setlinewidth
   1.399 +solid
   1.400 +0.000 0.000 0.000 edgecolor
   1.401 +newpath 63.12 174.61 moveto
   1.402 +54 180 lineto
   1.403 +64.49 181.47 lineto
   1.404 +closepath stroke
   1.405 +grestore
   1.406 +% 38F1C023
   1.407 +gsave
   1.408 +1 setlinewidth
   1.409 +0.000 0.000 0.000 nodecolor
   1.410 +199 52 27 18 ellipse_path stroke
   1.411 +0.000 0.000 0.000 nodecolor
   1.412 +14 /Times-Roman set_font
   1.413 +193 47.9 moveto 12 (ee) alignedtext
   1.414 +grestore
   1.415 +% 656D4094->38F1C023
   1.416 +gsave
   1.417 +1 setlinewidth
   1.418 +0.000 0.000 0.000 edgecolor
   1.419 +newpath 179 119 moveto
   1.420 +182 107 187 92 191 80 curveto
   1.421 +stroke
   1.422 +0.000 0.000 0.000 edgecolor
   1.423 +newpath 194.48 80.58 moveto
   1.424 +194 70 lineto
   1.425 +187.77 78.57 lineto
   1.426 +closepath fill
   1.427 +1 setlinewidth
   1.428 +solid
   1.429 +0.000 0.000 0.000 edgecolor
   1.430 +newpath 194.48 80.58 moveto
   1.431 +194 70 lineto
   1.432 +187.77 78.57 lineto
   1.433 +closepath stroke
   1.434 +grestore
   1.435 +% 656D4094->D2F682BE
   1.436 +gsave
   1.437 +1 setlinewidth
   1.438 +0.000 0.000 0.000 edgecolor
   1.439 +newpath 169 155 moveto
   1.440 +166 169 161 189 157 205 curveto
   1.441 +stroke
   1.442 +0.000 0.000 0.000 edgecolor
   1.443 +newpath 153.53 204.51 moveto
   1.444 +155 215 lineto
   1.445 +160.39 205.88 lineto
   1.446 +closepath fill
   1.447 +1 setlinewidth
   1.448 +solid
   1.449 +0.000 0.000 0.000 edgecolor
   1.450 +newpath 153.53 204.51 moveto
   1.451 +155 215 lineto
   1.452 +160.39 205.88 lineto
   1.453 +closepath stroke
   1.454 +grestore
   1.455 +% 656D4094->E5FDA812
   1.456 +gsave
   1.457 +1 setlinewidth
   1.458 +0.000 0.000 0.000 edgecolor
   1.459 +newpath 150 128 moveto
   1.460 +138 123 123 117 109 112 curveto
   1.461 +stroke
   1.462 +0.000 0.000 0.000 edgecolor
   1.463 +newpath 110.56 108.86 moveto
   1.464 +100 108 lineto
   1.465 +107.72 115.26 lineto
   1.466 +closepath fill
   1.467 +1 setlinewidth
   1.468 +solid
   1.469 +0.000 0.000 0.000 edgecolor
   1.470 +newpath 110.56 108.86 moveto
   1.471 +100 108 lineto
   1.472 +107.72 115.26 lineto
   1.473 +closepath stroke
   1.474 +grestore
   1.475 +% 303FC62A->E5FDA812
   1.476 +gsave
   1.477 +1 setlinewidth
   1.478 +0.000 0.000 0.000 edgecolor
   1.479 +newpath 110 36 moveto
   1.480 +104 46 97 60 91 72 curveto
   1.481 +stroke
   1.482 +0.000 0.000 0.000 edgecolor
   1.483 +newpath 87.8 70.56 moveto
   1.484 +86 81 lineto
   1.485 +93.92 73.96 lineto
   1.486 +closepath fill
   1.487 +1 setlinewidth
   1.488 +solid
   1.489 +0.000 0.000 0.000 edgecolor
   1.490 +newpath 87.8 70.56 moveto
   1.491 +86 81 lineto
   1.492 +93.92 73.96 lineto
   1.493 +closepath stroke
   1.494 +grestore
   1.495 +% 38F1C023->2A411DFD
   1.496 +gsave
   1.497 +1 setlinewidth
   1.498 +0.000 0.000 0.000 edgecolor
   1.499 +newpath 185 68 moveto
   1.500 +171 83 151 104 135 120 curveto
   1.501 +stroke
   1.502 +0.000 0.000 0.000 edgecolor
   1.503 +newpath 131.95 118.17 moveto
   1.504 +128 128 lineto
   1.505 +137.22 122.78 lineto
   1.506 +closepath fill
   1.507 +1 setlinewidth
   1.508 +solid
   1.509 +0.000 0.000 0.000 edgecolor
   1.510 +newpath 131.95 118.17 moveto
   1.511 +128 128 lineto
   1.512 +137.22 122.78 lineto
   1.513 +closepath stroke
   1.514 +grestore
   1.515 +% 38F1C023->656D4094
   1.516 +gsave
   1.517 +1 setlinewidth
   1.518 +0.000 0.000 0.000 edgecolor
   1.519 +newpath 193 70 moveto
   1.520 +190 82 185 97 181 109 curveto
   1.521 +stroke
   1.522 +0.000 0.000 0.000 edgecolor
   1.523 +newpath 177.52 108.42 moveto
   1.524 +178 119 lineto
   1.525 +184.23 110.43 lineto
   1.526 +closepath fill
   1.527 +1 setlinewidth
   1.528 +solid
   1.529 +0.000 0.000 0.000 edgecolor
   1.530 +newpath 177.52 108.42 moveto
   1.531 +178 119 lineto
   1.532 +184.23 110.43 lineto
   1.533 +closepath stroke
   1.534 +grestore
   1.535 +% 38F1C023->303FC62A
   1.536 +gsave
   1.537 +1 setlinewidth
   1.538 +0.000 0.000 0.000 edgecolor
   1.539 +newpath 176 42 moveto
   1.540 +168 39 160 36 151 33 curveto
   1.541 +stroke
   1.542 +0.000 0.000 0.000 edgecolor
   1.543 +newpath 152.56 29.86 moveto
   1.544 +142 29 lineto
   1.545 +149.72 36.26 lineto
   1.546 +closepath fill
   1.547 +1 setlinewidth
   1.548 +solid
   1.549 +0.000 0.000 0.000 edgecolor
   1.550 +newpath 152.56 29.86 moveto
   1.551 +142 29 lineto
   1.552 +149.72 36.26 lineto
   1.553 +closepath stroke
   1.554 +grestore
   1.555 +% 38F1C023->E5FDA812
   1.556 +gsave
   1.557 +1 setlinewidth
   1.558 +0.000 0.000 0.000 edgecolor
   1.559 +newpath 175 61 moveto
   1.560 +157 68 131 78 110 85 curveto
   1.561 +stroke
   1.562 +0.000 0.000 0.000 edgecolor
   1.563 +newpath 108.72 81.74 moveto
   1.564 +101 89 lineto
   1.565 +111.56 88.14 lineto
   1.566 +closepath fill
   1.567 +1 setlinewidth
   1.568 +solid
   1.569 +0.000 0.000 0.000 edgecolor
   1.570 +newpath 108.72 81.74 moveto
   1.571 +101 89 lineto
   1.572 +111.56 88.14 lineto
   1.573 +closepath stroke
   1.574 +grestore
   1.575 +% D2F682BE->2A411DFD
   1.576 +gsave
   1.577 +1 setlinewidth
   1.578 +0.000 0.000 0.000 edgecolor
   1.579 +newpath 144 215 moveto
   1.580 +138 202 131 185 125 171 curveto
   1.581 +stroke
   1.582 +0.000 0.000 0.000 edgecolor
   1.583 +newpath 127.96 168.98 moveto
   1.584 +121 161 lineto
   1.585 +121.46 171.58 lineto
   1.586 +closepath fill
   1.587 +1 setlinewidth
   1.588 +solid
   1.589 +0.000 0.000 0.000 edgecolor
   1.590 +newpath 127.96 168.98 moveto
   1.591 +121 161 lineto
   1.592 +121.46 171.58 lineto
   1.593 +closepath stroke
   1.594 +grestore
   1.595 +% E5FDA812->2A411DFD
   1.596 +gsave
   1.597 +1 setlinewidth
   1.598 +0.000 0.000 0.000 edgecolor
   1.599 +newpath 90 114 moveto
   1.600 +92 116 94 118 95 120 curveto
   1.601 +stroke
   1.602 +0.000 0.000 0.000 edgecolor
   1.603 +newpath 92.2 122.1 moveto
   1.604 +101 128 lineto
   1.605 +97.8 117.9 lineto
   1.606 +closepath fill
   1.607 +1 setlinewidth
   1.608 +solid
   1.609 +0.000 0.000 0.000 edgecolor
   1.610 +newpath 92.2 122.1 moveto
   1.611 +101 128 lineto
   1.612 +97.8 117.9 lineto
   1.613 +closepath stroke
   1.614 +grestore
   1.615 +% E5FDA812->656D4094
   1.616 +gsave
   1.617 +1 setlinewidth
   1.618 +0.000 0.000 0.000 edgecolor
   1.619 +newpath 100 107 moveto
   1.620 +112 112 127 118 141 123 curveto
   1.621 +stroke
   1.622 +0.000 0.000 0.000 edgecolor
   1.623 +newpath 139.44 126.14 moveto
   1.624 +150 127 lineto
   1.625 +142.28 119.74 lineto
   1.626 +closepath fill
   1.627 +1 setlinewidth
   1.628 +solid
   1.629 +0.000 0.000 0.000 edgecolor
   1.630 +newpath 139.44 126.14 moveto
   1.631 +150 127 lineto
   1.632 +142.28 119.74 lineto
   1.633 +closepath stroke
   1.634 +grestore
   1.635 +% E5FDA812->AB69FEE2
   1.636 +gsave
   1.637 +1 setlinewidth
   1.638 +0.000 0.000 0.000 edgecolor
   1.639 +newpath 67 115 moveto
   1.640 +61 128 51 145 43 159 curveto
   1.641 +stroke
   1.642 +0.000 0.000 0.000 edgecolor
   1.643 +newpath 39.8 157.56 moveto
   1.644 +38 168 lineto
   1.645 +45.92 160.96 lineto
   1.646 +closepath fill
   1.647 +1 setlinewidth
   1.648 +solid
   1.649 +0.000 0.000 0.000 edgecolor
   1.650 +newpath 39.8 157.56 moveto
   1.651 +38 168 lineto
   1.652 +45.92 160.96 lineto
   1.653 +closepath stroke
   1.654 +grestore
   1.655 +% E5FDA812->38F1C023
   1.656 +gsave
   1.657 +1 setlinewidth
   1.658 +0.000 0.000 0.000 edgecolor
   1.659 +newpath 101 89 moveto
   1.660 +119 82 145 72 166 65 curveto
   1.661 +stroke
   1.662 +0.000 0.000 0.000 edgecolor
   1.663 +newpath 167.28 68.26 moveto
   1.664 +175 61 lineto
   1.665 +164.44 61.86 lineto
   1.666 +closepath fill
   1.667 +1 setlinewidth
   1.668 +solid
   1.669 +0.000 0.000 0.000 edgecolor
   1.670 +newpath 167.28 68.26 moveto
   1.671 +175 61 lineto
   1.672 +164.44 61.86 lineto
   1.673 +closepath stroke
   1.674 +grestore
   1.675 +% E5FDA812->D2F682BE
   1.676 +gsave
   1.677 +1 setlinewidth
   1.678 +0.000 0.000 0.000 edgecolor
   1.679 +newpath 79 116 moveto
   1.680 +80 125 82 135 85 144 curveto
   1.681 +94 169 114 193 128 210 curveto
   1.682 +stroke
   1.683 +0.000 0.000 0.000 edgecolor
   1.684 +newpath 125.78 212.78 moveto
   1.685 +135 218 lineto
   1.686 +131.05 208.17 lineto
   1.687 +closepath fill
   1.688 +1 setlinewidth
   1.689 +solid
   1.690 +0.000 0.000 0.000 edgecolor
   1.691 +newpath 125.78 212.78 moveto
   1.692 +135 218 lineto
   1.693 +131.05 208.17 lineto
   1.694 +closepath stroke
   1.695 +grestore
   1.696 +endpage
   1.697 +showpage
   1.698 +grestore
   1.699 +%%PageTrailer
   1.700 +%%EndPage: 1
   1.701 +%%Trailer
   1.702 +%%Pages: 1
   1.703 +%%BoundingBox: 36 36 271 296
   1.704 +end
   1.705 +restore
   1.706 +%%EOF