1 |
%!PS-Adobe-3.0 |
2 |
%%Creator: graphviz version 2.28.0 (20110507.0327) |
3 |
%%Title: G |
4 |
%%Pages: (atend) |
5 |
%%BoundingBox: (atend) |
6 |
%%EndComments |
7 |
save |
8 |
%%BeginProlog |
9 |
/DotDict 200 dict def |
10 |
DotDict begin |
11 |
|
12 |
/setupLatin1 { |
13 |
mark |
14 |
/EncodingVector 256 array def |
15 |
EncodingVector 0 |
16 |
|
17 |
ISOLatin1Encoding 0 255 getinterval putinterval |
18 |
EncodingVector 45 /hyphen put |
19 |
|
20 |
% Set up ISO Latin 1 character encoding |
21 |
/starnetISO { |
22 |
dup dup findfont dup length dict begin |
23 |
{ 1 index /FID ne { def }{ pop pop } ifelse |
24 |
} forall |
25 |
/Encoding EncodingVector def |
26 |
currentdict end definefont |
27 |
} def |
28 |
/Times-Roman starnetISO def |
29 |
/Times-Italic starnetISO def |
30 |
/Times-Bold starnetISO def |
31 |
/Times-BoldItalic starnetISO def |
32 |
/Helvetica starnetISO def |
33 |
/Helvetica-Oblique starnetISO def |
34 |
/Helvetica-Bold starnetISO def |
35 |
/Helvetica-BoldOblique starnetISO def |
36 |
/Courier starnetISO def |
37 |
/Courier-Oblique starnetISO def |
38 |
/Courier-Bold starnetISO def |
39 |
/Courier-BoldOblique starnetISO def |
40 |
cleartomark |
41 |
} bind def |
42 |
|
43 |
%%BeginResource: procset graphviz 0 0 |
44 |
/coord-font-family /Times-Roman def |
45 |
/default-font-family /Times-Roman def |
46 |
/coordfont coord-font-family findfont 8 scalefont def |
47 |
|
48 |
/InvScaleFactor 1.0 def |
49 |
/set_scale { |
50 |
dup 1 exch div /InvScaleFactor exch def |
51 |
scale |
52 |
} bind def |
53 |
|
54 |
% styles |
55 |
/solid { [] 0 setdash } bind def |
56 |
/dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def |
57 |
/dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def |
58 |
/invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def |
59 |
/bold { 2 setlinewidth } bind def |
60 |
/filled { } bind def |
61 |
/unfilled { } bind def |
62 |
/rounded { } bind def |
63 |
/diagonals { } bind def |
64 |
|
65 |
% hooks for setting color |
66 |
/nodecolor { sethsbcolor } bind def |
67 |
/edgecolor { sethsbcolor } bind def |
68 |
/graphcolor { sethsbcolor } bind def |
69 |
/nopcolor {pop pop pop} bind def |
70 |
|
71 |
/beginpage { % i j npages |
72 |
/npages exch def |
73 |
/j exch def |
74 |
/i exch def |
75 |
/str 10 string def |
76 |
npages 1 gt { |
77 |
gsave |
78 |
coordfont setfont |
79 |
0 0 moveto |
80 |
(\() show i str cvs show (,) show j str cvs show (\)) show |
81 |
grestore |
82 |
} if |
83 |
} bind def |
84 |
|
85 |
/set_font { |
86 |
findfont exch |
87 |
scalefont setfont |
88 |
} def |
89 |
|
90 |
% draw text fitted to its expected width |
91 |
/alignedtext { % width text |
92 |
/text exch def |
93 |
/width exch def |
94 |
gsave |
95 |
width 0 gt { |
96 |
[] 0 setdash |
97 |
text stringwidth pop width exch sub text length div 0 text ashow |
98 |
} if |
99 |
grestore |
100 |
} def |
101 |
|
102 |
/boxprim { % xcorner ycorner xsize ysize |
103 |
4 2 roll |
104 |
moveto |
105 |
2 copy |
106 |
exch 0 rlineto |
107 |
0 exch rlineto |
108 |
pop neg 0 rlineto |
109 |
closepath |
110 |
} bind def |
111 |
|
112 |
/ellipse_path { |
113 |
/ry exch def |
114 |
/rx exch def |
115 |
/y exch def |
116 |
/x exch def |
117 |
matrix currentmatrix |
118 |
newpath |
119 |
x y translate |
120 |
rx ry scale |
121 |
0 0 1 0 360 arc |
122 |
setmatrix |
123 |
} bind def |
124 |
|
125 |
/endpage { showpage } bind def |
126 |
/showpage { } def |
127 |
|
128 |
/layercolorseq |
129 |
[ % layer color sequence - darkest to lightest |
130 |
[0 0 0] |
131 |
[.2 .8 .8] |
132 |
[.4 .8 .8] |
133 |
[.6 .8 .8] |
134 |
[.8 .8 .8] |
135 |
] |
136 |
def |
137 |
|
138 |
/layerlen layercolorseq length def |
139 |
|
140 |
/setlayer {/maxlayer exch def /curlayer exch def |
141 |
layercolorseq curlayer 1 sub layerlen mod get |
142 |
aload pop sethsbcolor |
143 |
/nodecolor {nopcolor} def |
144 |
/edgecolor {nopcolor} def |
145 |
/graphcolor {nopcolor} def |
146 |
} bind def |
147 |
|
148 |
/onlayer { curlayer ne {invis} if } def |
149 |
|
150 |
/onlayers { |
151 |
/myupper exch def |
152 |
/mylower exch def |
153 |
curlayer mylower lt |
154 |
curlayer myupper gt |
155 |
or |
156 |
{invis} if |
157 |
} def |
158 |
|
159 |
/curlayer 0 def |
160 |
|
161 |
%%EndResource |
162 |
%%EndProlog |
163 |
%%BeginSetup |
164 |
14 default-font-family set_font |
165 |
1 setmiterlimit |
166 |
% /arrowlength 10 def |
167 |
% /arrowwidth 5 def |
168 |
|
169 |
% make sure pdfmark is harmless for PS-interpreters other than Distiller |
170 |
/pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse |
171 |
% make '<<' and '>>' safe on PS Level 1 devices |
172 |
/languagelevel where {pop languagelevel}{1} ifelse |
173 |
2 lt { |
174 |
userdict (<<) cvn ([) cvn load put |
175 |
userdict (>>) cvn ([) cvn load put |
176 |
} if |
177 |
|
178 |
%%EndSetup |
179 |
setupLatin1 |
180 |
%%Page: 1 1 |
181 |
%%PageBoundingBox: 36 36 563 212 |
182 |
%%PageOrientation: Portrait |
183 |
0 0 1 beginpage |
184 |
gsave |
185 |
36 36 527 176 boxprim clip newpath |
186 |
1 1 set_scale 0 rotate 40 41 translate |
187 |
% Node1 |
188 |
gsave |
189 |
0 0 0.74902 nodecolor |
190 |
newpath -.5 90.5 moveto |
191 |
-.5 109.5 lineto |
192 |
46.5 109.5 lineto |
193 |
46.5 90.5 lineto |
194 |
closepath fill |
195 |
1 setlinewidth |
196 |
filled |
197 |
0 0 0 nodecolor |
198 |
newpath -.5 90.5 moveto |
199 |
-.5 109.5 lineto |
200 |
46.5 109.5 lineto |
201 |
46.5 90.5 lineto |
202 |
closepath stroke |
203 |
0 0 0 nodecolor |
204 |
10 /Helvetica set_font |
205 |
7.5 97.5 moveto 31 (QuaZip) alignedtext |
206 |
grestore |
207 |
% Node2 |
208 |
gsave |
209 |
[ /Rect [ 175.5 0 252 20 ] |
210 |
/Border [ 0 0 0 ] |
211 |
/Action << /Subtype /URI /URI ($classQuaZipPrivate.html) >> |
212 |
/Subtype /Link |
213 |
/ANN pdfmark |
214 |
0 0 1 nodecolor |
215 |
newpath 175.5 .5 moveto |
216 |
175.5 19.5 lineto |
217 |
252.5 19.5 lineto |
218 |
252.5 .5 lineto |
219 |
closepath fill |
220 |
1 setlinewidth |
221 |
filled |
222 |
0 0 0 nodecolor |
223 |
newpath 175.5 .5 moveto |
224 |
175.5 19.5 lineto |
225 |
252.5 19.5 lineto |
226 |
252.5 .5 lineto |
227 |
closepath stroke |
228 |
0 0 0 nodecolor |
229 |
10 /Helvetica set_font |
230 |
183.5 7.5 moveto 61 (QuaZipPrivate) alignedtext |
231 |
grestore |
232 |
% Node1->Node2 |
233 |
gsave |
234 |
1 setlinewidth |
235 |
dashed |
236 |
0.77647 0.75294 0.80392 edgecolor |
237 |
newpath 29.58 80.72 moveto |
238 |
35.58 66.76 45.84 48.24 61 38 curveto |
239 |
79.22 25.69 136.26 18.11 175.31 14.23 curveto |
240 |
stroke |
241 |
0.77647 0.75294 0.80392 edgecolor |
242 |
newpath 26.22 79.7 moveto |
243 |
25.81 90.29 lineto |
244 |
32.73 82.27 lineto |
245 |
closepath fill |
246 |
1 setlinewidth |
247 |
solid |
248 |
0.77647 0.75294 0.80392 edgecolor |
249 |
newpath 26.22 79.7 moveto |
250 |
25.81 90.29 lineto |
251 |
32.73 82.27 lineto |
252 |
closepath stroke |
253 |
0 0 0 edgecolor |
254 |
10 /Helvetica set_font |
255 |
61 52.5 moveto 6 (q) alignedtext |
256 |
grestore |
257 |
% Node2->Node1 |
258 |
gsave |
259 |
1 setlinewidth |
260 |
dashed |
261 |
0.77647 0.75294 0.80392 edgecolor |
262 |
newpath 175.41 22.73 moveto |
263 |
162.4 27.07 147.9 32.33 135 38 curveto |
264 |
98.51 54.03 57.96 77.68 37.1 90.3 curveto |
265 |
stroke |
266 |
0.77647 0.75294 0.80392 edgecolor |
267 |
newpath 176.61 26.03 moveto |
268 |
185.03 19.6 lineto |
269 |
174.44 19.37 lineto |
270 |
closepath fill |
271 |
1 setlinewidth |
272 |
solid |
273 |
0.77647 0.75294 0.80392 edgecolor |
274 |
newpath 176.61 26.03 moveto |
275 |
185.03 19.6 lineto |
276 |
174.44 19.37 lineto |
277 |
closepath stroke |
278 |
0 0 0 edgecolor |
279 |
10 /Helvetica set_font |
280 |
135 52.5 moveto 6 (p) alignedtext |
281 |
grestore |
282 |
% Node3 |
283 |
gsave |
284 |
[ /Rect [ 65 90 233 110 ] |
285 |
/Border [ 0 0 0 ] |
286 |
/Action << /Subtype /URI /URI (qtcore.tags$qhash.html) >> |
287 |
/Subtype /Link |
288 |
/ANN pdfmark |
289 |
0 0 1 nodecolor |
290 |
newpath 65 90.5 moveto |
291 |
65 109.5 lineto |
292 |
233 109.5 lineto |
293 |
233 90.5 lineto |
294 |
closepath fill |
295 |
1 setlinewidth |
296 |
filled |
297 |
0 0 0 nodecolor |
298 |
newpath 65 90.5 moveto |
299 |
65 109.5 lineto |
300 |
233 109.5 lineto |
301 |
233 90.5 lineto |
302 |
closepath stroke |
303 |
0 0 0 nodecolor |
304 |
10 /Helvetica set_font |
305 |
73 97.5 moveto 152 (QHash< QString, unz64_file_pos >) alignedtext |
306 |
grestore |
307 |
% Node3->Node2 |
308 |
gsave |
309 |
1 setlinewidth |
310 |
dashed |
311 |
0.77647 0.75294 0.80392 edgecolor |
312 |
newpath 145.06 80.08 moveto |
313 |
143.46 67.12 143.61 50.14 152 38 curveto |
314 |
157.94 29.4 167.24 23.52 176.85 19.5 curveto |
315 |
stroke |
316 |
0.77647 0.75294 0.80392 edgecolor |
317 |
newpath 141.66 80.93 moveto |
318 |
146.77 90.22 lineto |
319 |
148.56 79.77 lineto |
320 |
closepath fill |
321 |
1 setlinewidth |
322 |
solid |
323 |
0.77647 0.75294 0.80392 edgecolor |
324 |
newpath 141.66 80.93 moveto |
325 |
146.77 90.22 lineto |
326 |
148.56 79.77 lineto |
327 |
closepath stroke |
328 |
0 0 0 edgecolor |
329 |
10 /Helvetica set_font |
330 |
155 58 moveto 100 (directoryCaseSensitive) alignedtext |
331 |
0 0 0 edgecolor |
332 |
10 /Helvetica set_font |
333 |
152 47 moveto 106 (directoryCaseInsensitive) alignedtext |
334 |
grestore |
335 |
% Node4 |
336 |
gsave |
337 |
[ /Rect [ 251 90 313 110 ] |
338 |
/Border [ 0 0 0 ] |
339 |
/Action << /Subtype /URI /URI (qtcore.tags$qiodevice.html) >> |
340 |
/Subtype /Link |
341 |
/ANN pdfmark |
342 |
0 0 1 nodecolor |
343 |
newpath 251 90.5 moveto |
344 |
251 109.5 lineto |
345 |
313 109.5 lineto |
346 |
313 90.5 lineto |
347 |
closepath fill |
348 |
1 setlinewidth |
349 |
filled |
350 |
0 0 0 nodecolor |
351 |
newpath 251 90.5 moveto |
352 |
251 109.5 lineto |
353 |
313 109.5 lineto |
354 |
313 90.5 lineto |
355 |
closepath stroke |
356 |
0 0 0 nodecolor |
357 |
10 /Helvetica set_font |
358 |
259 97.5 moveto 46 (QIODevice) alignedtext |
359 |
grestore |
360 |
% Node4->Node2 |
361 |
gsave |
362 |
1 setlinewidth |
363 |
dashed |
364 |
0.77647 0.75294 0.80392 edgecolor |
365 |
newpath 278.03 80.47 moveto |
366 |
274.51 67.46 268.28 50.26 258 38 curveto |
367 |
251.55 30.31 242.32 24.18 233.98 19.72 curveto |
368 |
stroke |
369 |
0.77647 0.75294 0.80392 edgecolor |
370 |
newpath 274.64 81.32 moveto |
371 |
280.39 90.21 lineto |
372 |
281.44 79.67 lineto |
373 |
closepath fill |
374 |
1 setlinewidth |
375 |
solid |
376 |
0.77647 0.75294 0.80392 edgecolor |
377 |
newpath 274.64 81.32 moveto |
378 |
280.39 90.21 lineto |
379 |
281.44 79.67 lineto |
380 |
closepath stroke |
381 |
0 0 0 edgecolor |
382 |
10 /Helvetica set_font |
383 |
276 52.5 moveto 37 (ioDevice) alignedtext |
384 |
grestore |
385 |
% Node5 |
386 |
gsave |
387 |
[ /Rect [ 255.5 148 308 168 ] |
388 |
/Border [ 0 0 0 ] |
389 |
/Action << /Subtype /URI /URI (qtcore.tags$qobject.html) >> |
390 |
/Subtype /Link |
391 |
/ANN pdfmark |
392 |
0 0 1 nodecolor |
393 |
newpath 255.5 148.5 moveto |
394 |
255.5 167.5 lineto |
395 |
308.5 167.5 lineto |
396 |
308.5 148.5 lineto |
397 |
closepath fill |
398 |
1 setlinewidth |
399 |
filled |
400 |
0 0 0 nodecolor |
401 |
newpath 255.5 148.5 moveto |
402 |
255.5 167.5 lineto |
403 |
308.5 167.5 lineto |
404 |
308.5 148.5 lineto |
405 |
closepath stroke |
406 |
0 0 0 nodecolor |
407 |
10 /Helvetica set_font |
408 |
263.5 155.5 moveto 37 (QObject) alignedtext |
409 |
grestore |
410 |
% Node5->Node4 |
411 |
gsave |
412 |
1 setlinewidth |
413 |
solid |
414 |
0.66667 0.77647 0.43922 edgecolor |
415 |
newpath 282 137.95 moveto |
416 |
282 128.29 282 117.03 282 109.51 curveto |
417 |
stroke |
418 |
0.66667 0.77647 0.43922 edgecolor |
419 |
newpath 278.5 138.25 moveto |
420 |
282 148.25 lineto |
421 |
285.5 138.25 lineto |
422 |
closepath fill |
423 |
1 setlinewidth |
424 |
solid |
425 |
0.66667 0.77647 0.43922 edgecolor |
426 |
newpath 278.5 138.25 moveto |
427 |
282 148.25 lineto |
428 |
285.5 138.25 lineto |
429 |
closepath stroke |
430 |
grestore |
431 |
% Node6 |
432 |
gsave |
433 |
[ /Rect [ 331 90 381 110 ] |
434 |
/Border [ 0 0 0 ] |
435 |
/Action << /Subtype /URI /URI (qtcore.tags$qstring.html) >> |
436 |
/Subtype /Link |
437 |
/ANN pdfmark |
438 |
0 0 1 nodecolor |
439 |
newpath 331 90.5 moveto |
440 |
331 109.5 lineto |
441 |
381 109.5 lineto |
442 |
381 90.5 lineto |
443 |
closepath fill |
444 |
1 setlinewidth |
445 |
filled |
446 |
0 0 0 nodecolor |
447 |
newpath 331 90.5 moveto |
448 |
331 109.5 lineto |
449 |
381 109.5 lineto |
450 |
381 90.5 lineto |
451 |
closepath stroke |
452 |
0 0 0 nodecolor |
453 |
10 /Helvetica set_font |
454 |
339 97.5 moveto 34 (QString) alignedtext |
455 |
grestore |
456 |
% Node6->Node2 |
457 |
gsave |
458 |
1 setlinewidth |
459 |
dashed |
460 |
0.77647 0.75294 0.80392 edgecolor |
461 |
newpath 348.89 81.05 moveto |
462 |
342.53 67.28 331.9 48.85 317 38 curveto |
463 |
298.32 24.4 273.32 17.65 252.63 14.29 curveto |
464 |
stroke |
465 |
0.77647 0.75294 0.80392 edgecolor |
466 |
newpath 345.77 82.65 moveto |
467 |
352.92 90.47 lineto |
468 |
352.2 79.9 lineto |
469 |
closepath fill |
470 |
1 setlinewidth |
471 |
solid |
472 |
0.77647 0.75294 0.80392 edgecolor |
473 |
newpath 345.77 82.65 moveto |
474 |
352.92 90.47 lineto |
475 |
352.2 79.9 lineto |
476 |
closepath stroke |
477 |
0 0 0 edgecolor |
478 |
10 /Helvetica set_font |
479 |
344 58 moveto 41 (comment) alignedtext |
480 |
0 0 0 edgecolor |
481 |
10 /Helvetica set_font |
482 |
345 47 moveto 39 (zipName) alignedtext |
483 |
grestore |
484 |
% Node7 |
485 |
gsave |
486 |
[ /Rect [ 399.5 90 470 110 ] |
487 |
/Border [ 0 0 0 ] |
488 |
/Action << /Subtype /URI /URI (qtcore.tags$qtextcodec.html) >> |
489 |
/Subtype /Link |
490 |
/ANN pdfmark |
491 |
0 0 1 nodecolor |
492 |
newpath 399.5 90.5 moveto |
493 |
399.5 109.5 lineto |
494 |
470.5 109.5 lineto |
495 |
470.5 90.5 lineto |
496 |
closepath fill |
497 |
1 setlinewidth |
498 |
filled |
499 |
0 0 0 nodecolor |
500 |
newpath 399.5 90.5 moveto |
501 |
399.5 109.5 lineto |
502 |
470.5 109.5 lineto |
503 |
470.5 90.5 lineto |
504 |
closepath stroke |
505 |
0 0 0 nodecolor |
506 |
10 /Helvetica set_font |
507 |
407.5 97.5 moveto 55 (QTextCodec) alignedtext |
508 |
grestore |
509 |
% Node7->Node2 |
510 |
gsave |
511 |
1 setlinewidth |
512 |
dashed |
513 |
0.77647 0.75294 0.80392 edgecolor |
514 |
newpath 426.35 80.99 moveto |
515 |
418.6 66.9 405.86 48.08 389 38 curveto |
516 |
366.64 24.63 297.17 17.13 252.78 13.59 curveto |
517 |
stroke |
518 |
0.77647 0.75294 0.80392 edgecolor |
519 |
newpath 423.41 82.92 moveto |
520 |
431.1 90.21 lineto |
521 |
429.64 79.72 lineto |
522 |
closepath fill |
523 |
1 setlinewidth |
524 |
solid |
525 |
0.77647 0.75294 0.80392 edgecolor |
526 |
newpath 423.41 82.92 moveto |
527 |
431.1 90.21 lineto |
528 |
429.64 79.72 lineto |
529 |
closepath stroke |
530 |
0 0 0 edgecolor |
531 |
10 /Helvetica set_font |
532 |
435.5 63.5 moveto 69 (commentCodec) alignedtext |
533 |
0 0 0 edgecolor |
534 |
10 /Helvetica set_font |
535 |
421 52.5 moveto 98 (defaultFileNameCodec) alignedtext |
536 |
0 0 0 edgecolor |
537 |
10 /Helvetica set_font |
538 |
437 41.5 moveto 66 (fileNameCodec) alignedtext |
539 |
grestore |
540 |
endpage |
541 |
showpage |
542 |
grestore |
543 |
%%PageTrailer |
544 |
%%EndPage: 1 |
545 |
%%Trailer |
546 |
%%Pages: 1 |
547 |
%%BoundingBox: 36 36 563 212 |
548 |
end |
549 |
restore |
550 |
%%EOF |