Mercurial > docs > keysigning-help
comparison wot-before.ps @ 0:8d616aba351e
the already finished paper
author | meillo@marmaro.de |
---|---|
date | Wed, 18 Feb 2009 16:57:20 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:8d616aba351e |
---|---|
1 %!PS-Adobe-3.0 EPSF-3.0 | |
2 %%Creator: Graphviz version 2.20.2 (Sun Oct 12 22:28:10 UTC 2008) | |
3 %%For: (meillo) Meillo r e t u r n s,,, | |
4 %%Title: lugu wot 2008-11-11 | |
5 %%Pages: (atend) | |
6 %%BoundingBox: (atend) | |
7 %%EndComments | |
8 save | |
9 %%BeginProlog | |
10 /DotDict 200 dict def | |
11 DotDict begin | |
12 | |
13 /setupLatin1 { | |
14 mark | |
15 /EncodingVector 256 array def | |
16 EncodingVector 0 | |
17 | |
18 ISOLatin1Encoding 0 255 getinterval putinterval | |
19 EncodingVector 45 /hyphen put | |
20 | |
21 % Set up ISO Latin 1 character encoding | |
22 /starnetISO { | |
23 dup dup findfont dup length dict begin | |
24 { 1 index /FID ne { def }{ pop pop } ifelse | |
25 } forall | |
26 /Encoding EncodingVector def | |
27 currentdict end definefont | |
28 } def | |
29 /Times-Roman starnetISO def | |
30 /Times-Italic starnetISO def | |
31 /Times-Bold starnetISO def | |
32 /Times-BoldItalic starnetISO def | |
33 /Helvetica starnetISO def | |
34 /Helvetica-Oblique starnetISO def | |
35 /Helvetica-Bold starnetISO def | |
36 /Helvetica-BoldOblique starnetISO def | |
37 /Courier starnetISO def | |
38 /Courier-Oblique starnetISO def | |
39 /Courier-Bold starnetISO def | |
40 /Courier-BoldOblique starnetISO def | |
41 cleartomark | |
42 } bind def | |
43 | |
44 %%BeginResource: procset graphviz 0 0 | |
45 /coord-font-family /Times-Roman def | |
46 /default-font-family /Times-Roman def | |
47 /coordfont coord-font-family findfont 8 scalefont def | |
48 | |
49 /InvScaleFactor 1.0 def | |
50 /set_scale { | |
51 dup 1 exch div /InvScaleFactor exch def | |
52 scale | |
53 } bind def | |
54 | |
55 % styles | |
56 /solid { [] 0 setdash } bind def | |
57 /dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def | |
58 /dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def | |
59 /invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def | |
60 /bold { 2 setlinewidth } bind def | |
61 /filled { } bind def | |
62 /unfilled { } bind def | |
63 /rounded { } bind def | |
64 /diagonals { } bind def | |
65 | |
66 % hooks for setting color | |
67 /nodecolor { sethsbcolor } bind def | |
68 /edgecolor { sethsbcolor } bind def | |
69 /graphcolor { sethsbcolor } bind def | |
70 /nopcolor {pop pop pop} bind def | |
71 | |
72 /beginpage { % i j npages | |
73 /npages exch def | |
74 /j exch def | |
75 /i exch def | |
76 /str 10 string def | |
77 npages 1 gt { | |
78 gsave | |
79 coordfont setfont | |
80 0 0 moveto | |
81 (\() show i str cvs show (,) show j str cvs show (\)) show | |
82 grestore | |
83 } if | |
84 } bind def | |
85 | |
86 /set_font { | |
87 findfont exch | |
88 scalefont setfont | |
89 } def | |
90 | |
91 % draw text fitted to its expected width | |
92 /alignedtext { % width text | |
93 /text exch def | |
94 /width exch def | |
95 gsave | |
96 width 0 gt { | |
97 [] 0 setdash | |
98 text stringwidth pop width exch sub text length div 0 text ashow | |
99 } if | |
100 grestore | |
101 } def | |
102 | |
103 /boxprim { % xcorner ycorner xsize ysize | |
104 4 2 roll | |
105 moveto | |
106 2 copy | |
107 exch 0 rlineto | |
108 0 exch rlineto | |
109 pop neg 0 rlineto | |
110 closepath | |
111 } bind def | |
112 | |
113 /ellipse_path { | |
114 /ry exch def | |
115 /rx exch def | |
116 /y exch def | |
117 /x exch def | |
118 matrix currentmatrix | |
119 newpath | |
120 x y translate | |
121 rx ry scale | |
122 0 0 1 0 360 arc | |
123 setmatrix | |
124 } bind def | |
125 | |
126 /endpage { showpage } bind def | |
127 /showpage { } def | |
128 | |
129 /layercolorseq | |
130 [ % layer color sequence - darkest to lightest | |
131 [0 0 0] | |
132 [.2 .8 .8] | |
133 [.4 .8 .8] | |
134 [.6 .8 .8] | |
135 [.8 .8 .8] | |
136 ] | |
137 def | |
138 | |
139 /layerlen layercolorseq length def | |
140 | |
141 /setlayer {/maxlayer exch def /curlayer exch def | |
142 layercolorseq curlayer 1 sub layerlen mod get | |
143 aload pop sethsbcolor | |
144 /nodecolor {nopcolor} def | |
145 /edgecolor {nopcolor} def | |
146 /graphcolor {nopcolor} def | |
147 } bind def | |
148 | |
149 /onlayer { curlayer ne {invis} if } def | |
150 | |
151 /onlayers { | |
152 /myupper exch def | |
153 /mylower exch def | |
154 curlayer mylower lt | |
155 curlayer myupper gt | |
156 or | |
157 {invis} if | |
158 } def | |
159 | |
160 /curlayer 0 def | |
161 | |
162 %%EndResource | |
163 %%EndProlog | |
164 %%BeginSetup | |
165 14 default-font-family set_font | |
166 1 setmiterlimit | |
167 % /arrowlength 10 def | |
168 % /arrowwidth 5 def | |
169 | |
170 % make sure pdfmark is harmless for PS-interpreters other than Distiller | |
171 /pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse | |
172 % make '<<' and '>>' safe on PS Level 1 devices | |
173 /languagelevel where {pop languagelevel}{1} ifelse | |
174 2 lt { | |
175 userdict (<<) cvn ([) cvn load put | |
176 userdict (>>) cvn ([) cvn load put | |
177 } if | |
178 | |
179 %%EndSetup | |
180 setupLatin1 | |
181 %%Page: 1 1 | |
182 %%PageBoundingBox: 36 36 253 253 | |
183 %%PageOrientation: Portrait | |
184 0 0 1 beginpage | |
185 gsave | |
186 36 36 217 217 boxprim clip newpath | |
187 1 1 set_scale 0 rotate 40 40 translate | |
188 % 2A411DFD | |
189 gsave | |
190 1 setlinewidth | |
191 0.000 0.000 0.000 nodecolor | |
192 52 88 27 18 ellipse_path stroke | |
193 0.000 0.000 0.000 nodecolor | |
194 14 /Times-Roman set_font | |
195 46 83.9 moveto 12 (aa) alignedtext | |
196 grestore | |
197 % 656D4094 | |
198 gsave | |
199 1 setlinewidth | |
200 0.000 0.000 0.000 nodecolor | |
201 96 145 27 18 ellipse_path stroke | |
202 0.000 0.000 0.000 nodecolor | |
203 14 /Times-Roman set_font | |
204 88.5 140.9 moveto 15 (bb) alignedtext | |
205 grestore | |
206 % 2A411DFD->656D4094 | |
207 gsave | |
208 1 setlinewidth | |
209 0.000 0.000 0.000 edgecolor | |
210 newpath 64 104 moveto | |
211 68 109 73 115 77 121 curveto | |
212 stroke | |
213 0.000 0.000 0.000 edgecolor | |
214 newpath 74.2 123.1 moveto | |
215 83 129 lineto | |
216 79.8 118.9 lineto | |
217 closepath fill | |
218 1 setlinewidth | |
219 solid | |
220 0.000 0.000 0.000 edgecolor | |
221 newpath 74.2 123.1 moveto | |
222 83 129 lineto | |
223 79.8 118.9 lineto | |
224 closepath stroke | |
225 grestore | |
226 % 656D4094->2A411DFD | |
227 gsave | |
228 1 setlinewidth | |
229 0.000 0.000 0.000 edgecolor | |
230 newpath 84 129 moveto | |
231 80 124 75 118 71 112 curveto | |
232 stroke | |
233 0.000 0.000 0.000 edgecolor | |
234 newpath 73.8 109.9 moveto | |
235 65 104 lineto | |
236 68.2 114.1 lineto | |
237 closepath fill | |
238 1 setlinewidth | |
239 solid | |
240 0.000 0.000 0.000 edgecolor | |
241 newpath 73.8 109.9 moveto | |
242 65 104 lineto | |
243 68.2 114.1 lineto | |
244 closepath stroke | |
245 grestore | |
246 % 303FC62A | |
247 gsave | |
248 1 setlinewidth | |
249 0.000 0.000 0.000 nodecolor | |
250 118 82 27 18 ellipse_path stroke | |
251 0.000 0.000 0.000 nodecolor | |
252 14 /Times-Roman set_font | |
253 111 77.9 moveto 14 (cc) alignedtext | |
254 grestore | |
255 % AB69FEE2 | |
256 gsave | |
257 1 setlinewidth | |
258 0.000 0.000 0.000 nodecolor | |
259 163 136 27 18 ellipse_path stroke | |
260 0.000 0.000 0.000 nodecolor | |
261 14 /Times-Roman set_font | |
262 155.5 131.9 moveto 15 (dd) alignedtext | |
263 grestore | |
264 % 38F1C023 | |
265 gsave | |
266 1 setlinewidth | |
267 0.000 0.000 0.000 nodecolor | |
268 118 28 27 18 ellipse_path stroke | |
269 0.000 0.000 0.000 nodecolor | |
270 14 /Times-Roman set_font | |
271 112 23.9 moveto 12 (ee) alignedtext | |
272 grestore | |
273 % D2F682BE | |
274 gsave | |
275 1 setlinewidth | |
276 0.000 0.000 0.000 nodecolor | |
277 28 19 27 18 ellipse_path stroke | |
278 0.000 0.000 0.000 nodecolor | |
279 14 /Times-Roman set_font | |
280 23.5 14.9 moveto 9 (ff) alignedtext | |
281 grestore | |
282 % D2F682BE->2A411DFD | |
283 gsave | |
284 1 setlinewidth | |
285 0.000 0.000 0.000 edgecolor | |
286 newpath 34 37 moveto | |
287 37 44 40 53 42 60 curveto | |
288 stroke | |
289 0.000 0.000 0.000 edgecolor | |
290 newpath 39.04 62.02 moveto | |
291 46 70 lineto | |
292 45.54 59.42 lineto | |
293 closepath fill | |
294 1 setlinewidth | |
295 solid | |
296 0.000 0.000 0.000 edgecolor | |
297 newpath 39.04 62.02 moveto | |
298 46 70 lineto | |
299 45.54 59.42 lineto | |
300 closepath stroke | |
301 grestore | |
302 % E5FDA812 | |
303 gsave | |
304 1 setlinewidth | |
305 0.000 0.000 0.000 nodecolor | |
306 181 190 27 18 ellipse_path stroke | |
307 0.000 0.000 0.000 nodecolor | |
308 14 /Times-Roman set_font | |
309 174 185.9 moveto 14 (gg) alignedtext | |
310 grestore | |
311 endpage | |
312 showpage | |
313 grestore | |
314 %%PageTrailer | |
315 %%EndPage: 1 | |
316 %%Trailer | |
317 %%Pages: 1 | |
318 %%BoundingBox: 36 36 253 253 | |
319 end | |
320 restore | |
321 %%EOF |