source: anuga_core/source/anuga_parallel/small.ps @ 7447

Last change on this file since 7447 was 3460, checked in by jack, 18 years ago

Moved parallel to development from inundation

File size: 30.7 KB
Line 
1%!PS-Adobe-3.0 EPSF-3.0
2%%Creator: Tk Canvas Widget
3%%Title: Window .12643984.12686360.12713056.12713216.12713176
4%%CreationDate: Fri May 06 15:11:53 2005
5%%BoundingBox: -6 222 619 571
6%%Pages: 1
7%%DocumentData: Clean7Bit
8%%Orientation: Portrait
9%%EndComments
10
11%%BeginProlog
12/CurrentEncoding [
13/space/space/space/space/space/space/space/space
14/space/space/space/space/space/space/space/space
15/space/space/space/space/space/space/space/space
16/space/space/space/space/space/space/space/space
17/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle
18/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash
19/zero/one/two/three/four/five/six/seven
20/eight/nine/colon/semicolon/less/equal/greater/question
21/at/A/B/C/D/E/F/G
22/H/I/J/K/L/M/N/O
23/P/Q/R/S/T/U/V/W
24/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore
25/grave/a/b/c/d/e/f/g
26/h/i/j/k/l/m/n/o
27/p/q/r/s/t/u/v/w
28/x/y/z/braceleft/bar/braceright/asciitilde/space
29/Euro/space/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl
30/circumflex/perthousand/Scaron/guilsinglleft/OE/space/Zcaron/space
31/space/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash
32/tilde/trademark/scaron/guilsinglright/oe/space/zcaron/Ydieresis
33/space/exclamdown/cent/sterling/currency/yen/brokenbar/section
34/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron
35/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered
36/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown
37/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla
38/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis
39/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply
40/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls
41/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
42/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
43/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide
44/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis
45] def
46
4750 dict begin
48% This is a standard prolog for Postscript generated by Tk's canvas
49% widget.
50% RCS: @(#) $Id: mkpsenc.tcl,v 1.3 2002/07/19 14:37:21 drh Exp $
51
52% The definitions below just define all of the variables used in
53% any of the procedures here.  This is needed for obscure reasons
54% explained on p. 716 of the Postscript manual (Section H.2.7,
55% "Initializing Variables," in the section on Encapsulated Postscript).
56
57/baseline 0 def
58/stipimage 0 def
59/height 0 def
60/justify 0 def
61/lineLength 0 def
62/spacing 0 def
63/stipple 0 def
64/strings 0 def
65/xoffset 0 def
66/yoffset 0 def
67/tmpstip null def
68
69
70/cstringshow {
71    {
72        dup type /stringtype eq
73        { show } { glyphshow }
74        ifelse
75    }
76    forall
77} bind def
78
79
80
81/cstringwidth {
82    0 exch 0 exch
83    {
84        dup type /stringtype eq
85        { stringwidth } { 
86            currentfont /Encoding get exch 1 exch put (\001) stringwidth 
87        }
88        ifelse 
89        exch 3 1 roll add 3 1 roll add exch
90    }
91    forall
92} bind def
93
94% font ISOEncode font
95% This procedure changes the encoding of a font from the default
96% Postscript encoding to current system encoding.  It's typically invoked just
97% before invoking "setfont".  The body of this procedure comes from
98% Section 5.6.1 of the Postscript book.
99
100/ISOEncode {
101    dup length dict begin
102        {1 index /FID ne {def} {pop pop} ifelse} forall
103        /Encoding CurrentEncoding def
104        currentdict
105    end
106
107    % I'm not sure why it's necessary to use "definefont" on this new
108    % font, but it seems to be important; just use the name "Temporary"
109    % for the font.
110
111    /Temporary exch definefont
112} bind def
113
114% StrokeClip
115%
116% This procedure converts the current path into a clip area under
117% the assumption of stroking.  It's a bit tricky because some Postscript
118% interpreters get errors during strokepath for dashed lines.  If
119% this happens then turn off dashes and try again.
120
121/StrokeClip {
122    {strokepath} stopped {
123        (This Postscript printer gets limitcheck overflows when) =
124        (stippling dashed lines;  lines will be printed solid instead.) =
125        [] 0 setdash strokepath} if
126    clip
127} bind def
128
129% desiredSize EvenPixels closestSize
130%
131% The procedure below is used for stippling.  Given the optimal size
132% of a dot in a stipple pattern in the current user coordinate system,
133% compute the closest size that is an exact multiple of the device's
134% pixel size.  This allows stipple patterns to be displayed without
135% aliasing effects.
136
137/EvenPixels {
138    % Compute exact number of device pixels per stipple dot.
139    dup 0 matrix currentmatrix dtransform
140    dup mul exch dup mul add sqrt
141
142    % Round to an integer, make sure the number is at least 1, and compute
143    % user coord distance corresponding to this.
144    dup round dup 1 lt {pop 1} if
145    exch div mul
146} bind def
147
148% width height string StippleFill --
149%
150% Given a path already set up and a clipping region generated from
151% it, this procedure will fill the clipping region with a stipple
152% pattern.  "String" contains a proper image description of the
153% stipple pattern and "width" and "height" give its dimensions.  Each
154% stipple dot is assumed to be about one unit across in the current
155% user coordinate system.  This procedure trashes the graphics state.
156
157/StippleFill {
158    % The following code is needed to work around a NeWSprint bug.
159
160    /tmpstip 1 index def
161
162    % Change the scaling so that one user unit in user coordinates
163    % corresponds to the size of one stipple dot.
164    1 EvenPixels dup scale
165
166    % Compute the bounding box occupied by the path (which is now
167    % the clipping region), and round the lower coordinates down
168    % to the nearest starting point for the stipple pattern.  Be
169    % careful about negative numbers, since the rounding works
170    % differently on them.
171
172    pathbbox
173    4 2 roll
174    5 index div dup 0 lt {1 sub} if cvi 5 index mul 4 1 roll
175    6 index div dup 0 lt {1 sub} if cvi 6 index mul 3 2 roll
176
177    % Stack now: width height string y1 y2 x1 x2
178    % Below is a doubly-nested for loop to iterate across this area
179    % in units of the stipple pattern size, going up columns then
180    % across rows, blasting out a stipple-pattern-sized rectangle at
181    % each position
182
183    6 index exch {
184        2 index 5 index 3 index {
185            % Stack now: width height string y1 y2 x y
186
187            gsave
188            1 index exch translate
189            5 index 5 index true matrix tmpstip imagemask
190            grestore
191        } for
192        pop
193    } for
194    pop pop pop pop pop
195} bind def
196
197% -- AdjustColor --
198% Given a color value already set for output by the caller, adjusts
199% that value to a grayscale or mono value if requested by the CL
200% variable.
201
202/AdjustColor {
203    CL 2 lt {
204        currentgray
205        CL 0 eq {
206            .5 lt {0} {1} ifelse
207        } if
208        setgray
209    } if
210} bind def
211
212% x y strings spacing xoffset yoffset justify stipple DrawText --
213% This procedure does all of the real work of drawing text.  The
214% color and font must already have been set by the caller, and the
215% following arguments must be on the stack:
216%
217% x, y -        Coordinates at which to draw text.
218% strings -     An array of strings, one for each line of the text item,
219%               in order from top to bottom.
220% spacing -     Spacing between lines.
221% xoffset -     Horizontal offset for text bbox relative to x and y: 0 for
222%               nw/w/sw anchor, -0.5 for n/center/s, and -1.0 for ne/e/se.
223% yoffset -     Vertical offset for text bbox relative to x and y: 0 for
224%               nw/n/ne anchor, +0.5 for w/center/e, and +1.0 for sw/s/se.
225% justify -     0 for left justification, 0.5 for center, 1 for right justify.
226% stipple -     Boolean value indicating whether or not text is to be
227%               drawn in stippled fashion.  If text is stippled,
228%               procedure StippleText must have been defined to call
229%               StippleFill in the right way.
230%
231% Also, when this procedure is invoked, the color and font must already
232% have been set for the text.
233
234/DrawText {
235    /stipple exch def
236    /justify exch def
237    /yoffset exch def
238    /xoffset exch def
239    /spacing exch def
240    /strings exch def
241
242    % First scan through all of the text to find the widest line.
243
244    /lineLength 0 def
245    strings {
246        cstringwidth pop
247        dup lineLength gt {/lineLength exch def} {pop} ifelse
248        newpath
249    } forall
250
251    % Compute the baseline offset and the actual font height.
252
253    0 0 moveto (TXygqPZ) false charpath
254    pathbbox dup /baseline exch def
255    exch pop exch sub /height exch def pop
256    newpath
257
258    % Translate coordinates first so that the origin is at the upper-left
259    % corner of the text's bounding box. Remember that x and y for
260    % positioning are still on the stack.
261
262    translate
263    lineLength xoffset mul
264    strings length 1 sub spacing mul height add yoffset mul translate
265
266    % Now use the baseline and justification information to translate so
267    % that the origin is at the baseline and positioning point for the
268    % first line of text.
269
270    justify lineLength mul baseline neg translate
271
272    % Iterate over each of the lines to output it.  For each line,
273    % compute its width again so it can be properly justified, then
274    % display it.
275
276    strings {
277        dup cstringwidth pop
278        justify neg mul 0 moveto
279        stipple {
280           
281 
282            % The text is stippled, so turn it into a path and print
283            % by calling StippledText, which in turn calls StippleFill.
284            % Unfortunately, many Postscript interpreters will get
285            % overflow errors if we try to do the whole string at
286            % once, so do it a character at a time.
287
288            gsave
289            /char (X) def
290            {
291                dup type /stringtype eq {
292                    % This segment is a string.
293                    {
294                        char 0 3 -1 roll put
295                        currentpoint
296                        gsave
297                        char true charpath clip StippleText
298                        grestore
299                        char stringwidth translate
300                        moveto
301                    } forall
302                } {
303                    % This segment is glyph name
304                    % Temporary override
305                    currentfont /Encoding get exch 1 exch put
306                    currentpoint
307                    gsave (\001) true charpath clip StippleText
308                    grestore
309                    (\001) stringwidth translate
310                    moveto
311                } ifelse
312            } forall
313            grestore 
314        } {cstringshow} ifelse
315        0 spacing neg translate
316    } forall
317} bind def
318
319%%EndProlog
320%%BeginSetup
321/CL 2 def
322%%EndSetup
323
324%%Page: 1 1
325save
326306.0 396.0 translate
3270.7507 0.7507 scale
328-453 -231 translate
32937 463 moveto 869 463 lineto 869 0 lineto 37 0 lineto closepath clip newpath
330gsave
331282 188 moveto
332322.359287054409 249.127494456763 lineto
333369 197 lineto
334282 188 lineto
3351 setlinejoin 1 setlinecap
3361 setlinewidth
337[] 0 setdash
3380.000 1.000 0.000 setrgbcolor AdjustColor
339stroke
340grestore
341gsave
342282 188 moveto
343369 197 lineto
344312 143 lineto
345282 188 lineto
3461 setlinejoin 1 setlinecap
3471 setlinewidth
348[] 0 setdash
3490.000 1.000 0.000 setrgbcolor AdjustColor
350stroke
351grestore
352gsave
353589 209 moveto
354566 155 lineto
355532.621862615588 201.114762219287 lineto
356589 209 lineto
3571 setlinejoin 1 setlinecap
3581 setlinewidth
359[] 0 setdash
3600.000 1.000 0.000 setrgbcolor AdjustColor
361stroke
362grestore
363gsave
364369 197 moveto
365377 157 lineto
366312 143 lineto
367369 197 lineto
3681 setlinejoin 1 setlinecap
3691 setlinewidth
370[] 0 setdash
3710.000 1.000 0.000 setrgbcolor AdjustColor
372stroke
373grestore
374gsave
375333 298 moveto
376386 290 lineto
377372 243 lineto
378333 298 lineto
3791 setlinejoin 1 setlinecap
3801 setlinewidth
381[] 0 setdash
3820.000 1.000 0.000 setrgbcolor AdjustColor
383stroke
384grestore
385gsave
386322.359287054409 249.127494456763 moveto
387372 243 lineto
388369 197 lineto
389322.359287054409 249.127494456763 lineto
3901 setlinejoin 1 setlinecap
3911 setlinewidth
392[] 0 setdash
3930.000 1.000 0.000 setrgbcolor AdjustColor
394stroke
395grestore
396gsave
397387 96 moveto
398312 143 lineto
399377 157 lineto
400387 96 lineto
4011 setlinejoin 1 setlinecap
4021 setlinewidth
403[] 0 setdash
4040.000 1.000 0.000 setrgbcolor AdjustColor
405stroke
406grestore
407gsave
408333 298 moveto
409322.359287054409 249.127494456763 lineto
410278.5 276 lineto
411333 298 lineto
4121 setlinejoin 1 setlinecap
4131 setlinewidth
414[] 0 setdash
4150.000 1.000 0.000 setrgbcolor AdjustColor
416stroke
417grestore
418gsave
419281 221 moveto
420278.5 276 lineto
421322.359287054409 249.127494456763 lineto
422281 221 lineto
4231 setlinejoin 1 setlinecap
4241 setlinewidth
425[] 0 setdash
4260.000 1.000 0.000 setrgbcolor AdjustColor
427stroke
428grestore
429gsave
430333 298 moveto
431278.5 276 lineto
432305 324 lineto
433333 298 lineto
4341 setlinejoin 1 setlinecap
4351 setlinewidth
436[] 0 setdash
4370.000 1.000 0.000 setrgbcolor AdjustColor
438stroke
439grestore
440gsave
441333 298 moveto
442305 324 lineto
443333 343 lineto
444333 298 lineto
4451 setlinejoin 1 setlinecap
4461 setlinewidth
447[] 0 setdash
4480.000 1.000 0.000 setrgbcolor AdjustColor
449stroke
450grestore
451gsave
452305 324 moveto
453276 331 lineto
454333 343 lineto
455305 324 lineto
4561 setlinejoin 1 setlinecap
4571 setlinewidth
458[] 0 setdash
4590.000 1.000 0.000 setrgbcolor AdjustColor
460stroke
461grestore
462gsave
463369 331 moveto
464333 343 lineto
465340 384 lineto
466369 331 lineto
4671 setlinejoin 1 setlinecap
4681 setlinewidth
469[] 0 setdash
4700.000 1.000 0.000 setrgbcolor AdjustColor
471stroke
472grestore
473gsave
474333 343 moveto
475369 331 lineto
476333 298 lineto
477333 343 lineto
4781 setlinejoin 1 setlinecap
4791 setlinewidth
480[] 0 setdash
4810.000 1.000 0.000 setrgbcolor AdjustColor
482stroke
483grestore
484gsave
485369 331 moveto
486340 384 lineto
487443 378 lineto
488369 331 lineto
4891 setlinejoin 1 setlinecap
4901 setlinewidth
491[] 0 setdash
4920.000 1.000 0.000 setrgbcolor AdjustColor
493stroke
494grestore
495gsave
496340 384 moveto
497333 343 lineto
498276 331 lineto
499340 384 lineto
5001 setlinejoin 1 setlinecap
5011 setlinewidth
502[] 0 setdash
5030.000 1.000 0.000 setrgbcolor AdjustColor
504stroke
505grestore
506gsave
507333 298 moveto
508369 331 lineto
509386 290 lineto
510333 298 lineto
5111 setlinejoin 1 setlinecap
5121 setlinewidth
513[] 0 setdash
5140.000 1.000 0.000 setrgbcolor AdjustColor
515stroke
516grestore
517gsave
518571.5 267.5 moveto
519532.621862615588 201.114762219287 lineto
520502 264 lineto
521571.5 267.5 lineto
5221 setlinejoin 1 setlinecap
5231 setlinewidth
524[] 0 setdash
5250.000 1.000 0.000 setrgbcolor AdjustColor
526stroke
527grestore
528gsave
529276 331 moveto
530305 324 lineto
531278.5 276 lineto
532276 331 lineto
5331 setlinejoin 1 setlinecap
5341 setlinewidth
535[] 0 setdash
5360.000 1.000 0.000 setrgbcolor AdjustColor
537stroke
538grestore
539gsave
540465 81 moveto
541387 96 lineto
542433 146 lineto
543465 81 lineto
5441 setlinejoin 1 setlinecap
5451 setlinewidth
546[] 0 setdash
5470.000 1.000 0.000 setrgbcolor AdjustColor
548stroke
549grestore
550gsave
551549 99 moveto
552465 81 lineto
553499.907128169979 144.483550376971 lineto
554549 99 lineto
5551 setlinejoin 1 setlinecap
5561 setlinewidth
557[] 0 setdash
5580.000 1.000 0.000 setrgbcolor AdjustColor
559stroke
560grestore
561gsave
562566 155 moveto
563499.907128169979 144.483550376971 lineto
564532.621862615588 201.114762219287 lineto
565566 155 lineto
5661 setlinejoin 1 setlinecap
5671 setlinewidth
568[] 0 setdash
5690.000 1.000 0.000 setrgbcolor AdjustColor
570stroke
571grestore
572gsave
573476 207 moveto
574499.907128169979 144.483550376971 lineto
575433 146 lineto
576476 207 lineto
5771 setlinejoin 1 setlinecap
5781 setlinewidth
579[] 0 setdash
5800.000 1.000 0.000 setrgbcolor AdjustColor
581stroke
582grestore
583gsave
584499.907128169979 144.483550376971 moveto
585566 155 lineto
586549 99 lineto
587499.907128169979 144.483550376971 lineto
5881 setlinejoin 1 setlinecap
5891 setlinewidth
590[] 0 setdash
5910.000 1.000 0.000 setrgbcolor AdjustColor
592stroke
593grestore
594gsave
595333 298 moveto
596372 243 lineto
597322.359287054409 249.127494456763 lineto
598333 298 lineto
5991 setlinejoin 1 setlinecap
6001 setlinewidth
601[] 0 setdash
6020.000 1.000 0.000 setrgbcolor AdjustColor
603stroke
604grestore
605gsave
606532.621862615588 201.114762219287 moveto
607499.907128169979 144.483550376971 lineto
608476 207 lineto
609532.621862615588 201.114762219287 lineto
6101 setlinejoin 1 setlinecap
6111 setlinewidth
612[] 0 setdash
6130.000 1.000 0.000 setrgbcolor AdjustColor
614stroke
615grestore
616gsave
617281 221 moveto
618322.359287054409 249.127494456763 lineto
619282 188 lineto
620281 221 lineto
6211 setlinejoin 1 setlinecap
6221 setlinewidth
623[] 0 setdash
6240.000 1.000 0.000 setrgbcolor AdjustColor
625stroke
626grestore
627gsave
628443 378 moveto
629428 311 lineto
630369 331 lineto
631443 378 lineto
6321 setlinejoin 1 setlinecap
6331 setlinewidth
634[] 0 setdash
6350.000 1.000 0.000 setrgbcolor AdjustColor
636stroke
637grestore
638gsave
639589 209 moveto
640532.621862615588 201.114762219287 lineto
641571.5 267.5 lineto
642589 209 lineto
6431 setlinejoin 1 setlinecap
6441 setlinewidth
645[] 0 setdash
6460.000 1.000 0.000 setrgbcolor AdjustColor
647stroke
648grestore
649gsave
650428 311 moveto
651443 378 lineto
652472 310 lineto
653428 311 lineto
6541 setlinejoin 1 setlinecap
6551 setlinewidth
656[] 0 setdash
6570.000 1.000 0.000 setrgbcolor AdjustColor
658stroke
659grestore
660gsave
661369 331 moveto
662428 311 lineto
663386 290 lineto
664369 331 lineto
6651 setlinejoin 1 setlinecap
6661 setlinewidth
667[] 0 setdash
6680.000 1.000 0.000 setrgbcolor AdjustColor
669stroke
670grestore
671gsave
672571.5 267.5 moveto
673502 264 lineto
674554 326 lineto
675571.5 267.5 lineto
6761 setlinejoin 1 setlinecap
6771 setlinewidth
678[] 0 setdash
6790.000 1.000 0.000 setrgbcolor AdjustColor
680stroke
681grestore
682gsave
683554 326 moveto
684472 310 lineto
685498.5 352 lineto
686554 326 lineto
6871 setlinejoin 1 setlinecap
6881 setlinewidth
689[] 0 setdash
6900.000 1.000 0.000 setrgbcolor AdjustColor
691stroke
692grestore
693gsave
694498.5 352 moveto
695472 310 lineto
696443 378 lineto
697498.5 352 lineto
6981 setlinejoin 1 setlinecap
6991 setlinewidth
700[] 0 setdash
7010.000 1.000 0.000 setrgbcolor AdjustColor
702stroke
703grestore
704gsave
705472 310 moveto
706554 326 lineto
707502 264 lineto
708472 310 lineto
7091 setlinejoin 1 setlinecap
7101 setlinewidth
711[] 0 setdash
7120.000 1.000 0.000 setrgbcolor AdjustColor
713stroke
714grestore
715gsave
716499.907128169979 144.483550376971 moveto
717465 81 lineto
718433 146 lineto
719499.907128169979 144.483550376971 lineto
7201 setlinejoin 1 setlinecap
7211 setlinewidth
722[] 0 setdash
7230.000 1.000 0.000 setrgbcolor AdjustColor
724stroke
725grestore
726gsave
727502 264 moveto
728532.621862615588 201.114762219287 lineto
729476 207 lineto
730502 264 lineto
7311 setlinejoin 1 setlinecap
7321 setlinewidth
733[] 0 setdash
7340.000 1.000 0.000 setrgbcolor AdjustColor
735stroke
736grestore
737gsave
738377 157 moveto
739433 146 lineto
740387 96 lineto
741377 157 lineto
7421 setlinejoin 1 setlinecap
7431 setlinewidth
744[] 0 setdash
7450.000 1.000 0.000 setrgbcolor AdjustColor
746stroke
747grestore
748gsave
749428 311 moveto
750472 310 lineto
7510 setlinecap
7521 setlinejoin
7531 setlinewidth
754[] 0 setdash
7550.000 0.000 1.000 setrgbcolor AdjustColor
756stroke
757grestore
758gsave
759386 290 moveto
760428 311 lineto
7610 setlinecap
7621 setlinejoin
7631 setlinewidth
764[] 0 setdash
7650.000 0.000 1.000 setrgbcolor AdjustColor
766stroke
767grestore
768gsave
769372 243 moveto
770386 290 lineto
7710 setlinecap
7721 setlinejoin
7731 setlinewidth
774[] 0 setdash
7750.000 0.000 1.000 setrgbcolor AdjustColor
776stroke
777grestore
778gsave
779369 197 moveto
780372 243 lineto
7810 setlinecap
7821 setlinejoin
7831 setlinewidth
784[] 0 setdash
7850.000 0.000 1.000 setrgbcolor AdjustColor
786stroke
787grestore
788gsave
789377 157 moveto
790369 197 lineto
7910 setlinecap
7921 setlinejoin
7931 setlinewidth
794[] 0 setdash
7950.000 0.000 1.000 setrgbcolor AdjustColor
796stroke
797grestore
798gsave
799433 146 moveto
800377 157 lineto
8010 setlinecap
8021 setlinejoin
8031 setlinewidth
804[] 0 setdash
8050.000 0.000 1.000 setrgbcolor AdjustColor
806stroke
807grestore
808gsave
809476 207 moveto
810433 146 lineto
8110 setlinecap
8121 setlinejoin
8131 setlinewidth
814[] 0 setdash
8150.000 0.000 1.000 setrgbcolor AdjustColor
816stroke
817grestore
818gsave
819502 264 moveto
820476 207 lineto
8210 setlinecap
8221 setlinejoin
8231 setlinewidth
824[] 0 setdash
8250.000 0.000 1.000 setrgbcolor AdjustColor
826stroke
827grestore
828gsave
829472 310 moveto
830502 264 lineto
8310 setlinecap
8321 setlinejoin
8331 setlinewidth
834[] 0 setdash
8350.000 0.000 1.000 setrgbcolor AdjustColor
836stroke
837grestore
838gsave
839305 324 moveto
840333 343 lineto
8410 setlinecap
8421 setlinejoin
8431 setlinewidth
844[] 0 setdash
8450.000 0.000 1.000 setrgbcolor AdjustColor
846stroke
847grestore
848gsave
849333 298 moveto
850305 324 lineto
8510 setlinecap
8521 setlinejoin
8531 setlinewidth
854[] 0 setdash
8550.000 0.000 1.000 setrgbcolor AdjustColor
856stroke
857grestore
858gsave
859369 331 moveto
860333 298 lineto
8610 setlinecap
8621 setlinejoin
8631 setlinewidth
864[] 0 setdash
8650.000 0.000 1.000 setrgbcolor AdjustColor
866stroke
867grestore
868gsave
869333 343 moveto
870369 331 lineto
8710 setlinecap
8721 setlinejoin
8731 setlinewidth
874[] 0 setdash
8750.000 0.000 1.000 setrgbcolor AdjustColor
876stroke
877grestore
878gsave
879276 331 moveto
880281 221 lineto
8810 setlinecap
8821 setlinejoin
8831 setlinewidth
884[] 0 setdash
8850.000 0.000 1.000 setrgbcolor AdjustColor
886stroke
887grestore
888gsave
889312 143 moveto
890387 96 lineto
8910 setlinecap
8921 setlinejoin
8931 setlinewidth
894[] 0 setdash
8950.000 0.000 1.000 setrgbcolor AdjustColor
896stroke
897grestore
898gsave
899282 188 moveto
900312 143 lineto
9010 setlinecap
9021 setlinejoin
9031 setlinewidth
904[] 0 setdash
9050.000 0.000 1.000 setrgbcolor AdjustColor
906stroke
907grestore
908gsave
909340 384 moveto
910276 331 lineto
9110 setlinecap
9121 setlinejoin
9131 setlinewidth
914[] 0 setdash
9150.000 0.000 1.000 setrgbcolor AdjustColor
916stroke
917grestore
918gsave
919281 221 moveto
920282 188 lineto
9210 setlinecap
9221 setlinejoin
9231 setlinewidth
924[] 0 setdash
9250.000 0.000 1.000 setrgbcolor AdjustColor
926stroke
927grestore
928gsave
929387 96 moveto
930465 81 lineto
9310 setlinecap
9321 setlinejoin
9331 setlinewidth
934[] 0 setdash
9350.000 0.000 1.000 setrgbcolor AdjustColor
936stroke
937grestore
938gsave
939549 99 moveto
940566 155 lineto
9410 setlinecap
9421 setlinejoin
9431 setlinewidth
944[] 0 setdash
9450.000 0.000 1.000 setrgbcolor AdjustColor
946stroke
947grestore
948gsave
949465 81 moveto
950549 99 lineto
9510 setlinecap
9521 setlinejoin
9531 setlinewidth
954[] 0 setdash
9550.000 0.000 1.000 setrgbcolor AdjustColor
956stroke
957grestore
958gsave
959554 326 moveto
960443 378 lineto
9610 setlinecap
9621 setlinejoin
9631 setlinewidth
964[] 0 setdash
9650.000 0.000 1.000 setrgbcolor AdjustColor
966stroke
967grestore
968gsave
969443 378 moveto
970340 384 lineto
9710 setlinecap
9721 setlinejoin
9731 setlinewidth
974[] 0 setdash
9750.000 0.000 1.000 setrgbcolor AdjustColor
976stroke
977grestore
978gsave
979589 209 moveto
980554 326 lineto
9810 setlinecap
9821 setlinejoin
9831 setlinewidth
984[] 0 setdash
9850.000 0.000 1.000 setrgbcolor AdjustColor
986stroke
987grestore
988gsave
989566 155 moveto
990589 209 lineto
9910 setlinecap
9921 setlinejoin
9931 setlinewidth
994[] 0 setdash
9950.000 0.000 1.000 setrgbcolor AdjustColor
996stroke
997grestore
998gsave
999551 329 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
10001.000 1.000 1.000 setrgbcolor AdjustColor
1001fill
1002551 329 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
10030 setlinejoin 2 setlinecap
10041 setlinewidth
1005[] 0 setdash
10060.000 0.000 0.000 setrgbcolor AdjustColor
1007stroke
1008grestore
1009gsave
1010440 381 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
10111.000 1.000 1.000 setrgbcolor AdjustColor
1012fill
1013440 381 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
10140 setlinejoin 2 setlinecap
10151 setlinewidth
1016[] 0 setdash
10170.000 0.000 0.000 setrgbcolor AdjustColor
1018stroke
1019grestore
1020gsave
1021337 387 moveto 5.99999999999994 0 rlineto 0 -6 rlineto -5.99999999999994 0 rlineto closepath
10221.000 1.000 1.000 setrgbcolor AdjustColor
1023fill
1024337 387 moveto 5.99999999999994 0 rlineto 0 -6 rlineto -5.99999999999994 0 rlineto closepath
10250 setlinejoin 2 setlinecap
10261 setlinewidth
1027[] 0 setdash
10280.000 0.000 0.000 setrgbcolor AdjustColor
1029stroke
1030grestore
1031gsave
1032273 334 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
10331.000 1.000 1.000 setrgbcolor AdjustColor
1034fill
1035273 334 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
10360 setlinejoin 2 setlinecap
10371 setlinewidth
1038[] 0 setdash
10390.000 0.000 0.000 setrgbcolor AdjustColor
1040stroke
1041grestore
1042gsave
1043278 224 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
10441.000 1.000 1.000 setrgbcolor AdjustColor
1045fill
1046278 224 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
10470 setlinejoin 2 setlinecap
10481 setlinewidth
1049[] 0 setdash
10500.000 0.000 0.000 setrgbcolor AdjustColor
1051stroke
1052grestore
1053gsave
1054279 191 moveto 6 0 rlineto 0 -5.99999999999994 rlineto -6 0 rlineto closepath
10551.000 1.000 1.000 setrgbcolor AdjustColor
1056fill
1057279 191 moveto 6 0 rlineto 0 -5.99999999999994 rlineto -6 0 rlineto closepath
10580 setlinejoin 2 setlinecap
10591 setlinewidth
1060[] 0 setdash
10610.000 0.000 0.000 setrgbcolor AdjustColor
1062stroke
1063grestore
1064gsave
1065309 146 moveto 6 0 rlineto 0 -5.99999999999994 rlineto -6 0 rlineto closepath
10661.000 1.000 1.000 setrgbcolor AdjustColor
1067fill
1068309 146 moveto 6 0 rlineto 0 -5.99999999999994 rlineto -6 0 rlineto closepath
10690 setlinejoin 2 setlinecap
10701 setlinewidth
1071[] 0 setdash
10720.000 0.000 0.000 setrgbcolor AdjustColor
1073stroke
1074grestore
1075gsave
1076384 99 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
10771.000 1.000 1.000 setrgbcolor AdjustColor
1078fill
1079384 99 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
10800 setlinejoin 2 setlinecap
10811 setlinewidth
1082[] 0 setdash
10830.000 0.000 0.000 setrgbcolor AdjustColor
1084stroke
1085grestore
1086gsave
1087462 84.0000000000001 moveto 5.99999999999994 0 rlineto 0 -6.00000000000006 rlineto -5.99999999999994 0 rlineto closepath
10881.000 1.000 1.000 setrgbcolor AdjustColor
1089fill
1090462 84.0000000000001 moveto 5.99999999999994 0 rlineto 0 -6.00000000000006 rlineto -5.99999999999994 0 rlineto closepath
10910 setlinejoin 2 setlinecap
10921 setlinewidth
1093[] 0 setdash
10940.000 0.000 0.000 setrgbcolor AdjustColor
1095stroke
1096grestore
1097gsave
1098546 102 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
10991.000 1.000 1.000 setrgbcolor AdjustColor
1100fill
1101546 102 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
11020 setlinejoin 2 setlinecap
11031 setlinewidth
1104[] 0 setdash
11050.000 0.000 0.000 setrgbcolor AdjustColor
1106stroke
1107grestore
1108gsave
1109563 158 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
11101.000 1.000 1.000 setrgbcolor AdjustColor
1111fill
1112563 158 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
11130 setlinejoin 2 setlinecap
11141 setlinewidth
1115[] 0 setdash
11160.000 0.000 0.000 setrgbcolor AdjustColor
1117stroke
1118grestore
1119gsave
1120586 212 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
11211.000 1.000 1.000 setrgbcolor AdjustColor
1122fill
1123586 212 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
11240 setlinejoin 2 setlinecap
11251 setlinewidth
1126[] 0 setdash
11270.000 0.000 0.000 setrgbcolor AdjustColor
1128stroke
1129grestore
1130gsave
1131469 313 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
11321.000 1.000 1.000 setrgbcolor AdjustColor
1133fill
1134469 313 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
11350 setlinejoin 2 setlinecap
11361 setlinewidth
1137[] 0 setdash
11380.000 0.000 0.000 setrgbcolor AdjustColor
1139stroke
1140grestore
1141gsave
1142374 160 moveto 6 0 rlineto 0 -6.00000000000006 rlineto -6 0 rlineto closepath
11431.000 1.000 1.000 setrgbcolor AdjustColor
1144fill
1145374 160 moveto 6 0 rlineto 0 -6.00000000000006 rlineto -6 0 rlineto closepath
11460 setlinejoin 2 setlinecap
11471 setlinewidth
1148[] 0 setdash
11490.000 0.000 0.000 setrgbcolor AdjustColor
1150stroke
1151grestore
1152gsave
1153425 314 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
11541.000 1.000 1.000 setrgbcolor AdjustColor
1155fill
1156425 314 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
11570 setlinejoin 2 setlinecap
11581 setlinewidth
1159[] 0 setdash
11600.000 0.000 0.000 setrgbcolor AdjustColor
1161stroke
1162grestore
1163gsave
1164383 293 moveto 6.00000000000006 0 rlineto 0 -6 rlineto -6.00000000000006 0 rlineto closepath
11651.000 1.000 1.000 setrgbcolor AdjustColor
1166fill
1167383 293 moveto 6.00000000000006 0 rlineto 0 -6 rlineto -6.00000000000006 0 rlineto closepath
11680 setlinejoin 2 setlinecap
11691 setlinewidth
1170[] 0 setdash
11710.000 0.000 0.000 setrgbcolor AdjustColor
1172stroke
1173grestore
1174gsave
1175369 246 moveto 6 0 rlineto 0 -5.99999999999994 rlineto -6 0 rlineto closepath
11761.000 1.000 1.000 setrgbcolor AdjustColor
1177fill
1178369 246 moveto 6 0 rlineto 0 -5.99999999999994 rlineto -6 0 rlineto closepath
11790 setlinejoin 2 setlinecap
11801 setlinewidth
1181[] 0 setdash
11820.000 0.000 0.000 setrgbcolor AdjustColor
1183stroke
1184grestore
1185gsave
1186366 200 moveto 6 0 rlineto 0 -6.00000000000006 rlineto -6 0 rlineto closepath
11871.000 1.000 1.000 setrgbcolor AdjustColor
1188fill
1189366 200 moveto 6 0 rlineto 0 -6.00000000000006 rlineto -6 0 rlineto closepath
11900 setlinejoin 2 setlinecap
11911 setlinewidth
1192[] 0 setdash
11930.000 0.000 0.000 setrgbcolor AdjustColor
1194stroke
1195grestore
1196gsave
1197430 149 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
11981.000 1.000 1.000 setrgbcolor AdjustColor
1199fill
1200430 149 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
12010 setlinejoin 2 setlinecap
12021 setlinewidth
1203[] 0 setdash
12040.000 0.000 0.000 setrgbcolor AdjustColor
1205stroke
1206grestore
1207gsave
1208473 210 moveto 6.00000000000006 0 rlineto 0 -6.00000000000006 rlineto -6.00000000000006 0 rlineto closepath
12091.000 1.000 1.000 setrgbcolor AdjustColor
1210fill
1211473 210 moveto 6.00000000000006 0 rlineto 0 -6.00000000000006 rlineto -6.00000000000006 0 rlineto closepath
12120 setlinejoin 2 setlinecap
12131 setlinewidth
1214[] 0 setdash
12150.000 0.000 0.000 setrgbcolor AdjustColor
1216stroke
1217grestore
1218gsave
1219499 267 moveto 6.00000000000006 0 rlineto 0 -6 rlineto -6.00000000000006 0 rlineto closepath
12201.000 1.000 1.000 setrgbcolor AdjustColor
1221fill
1222499 267 moveto 6.00000000000006 0 rlineto 0 -6 rlineto -6.00000000000006 0 rlineto closepath
12230 setlinejoin 2 setlinecap
12241 setlinewidth
1225[] 0 setdash
12260.000 0.000 0.000 setrgbcolor AdjustColor
1227stroke
1228grestore
1229gsave
1230330 346 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
12311.000 1.000 1.000 setrgbcolor AdjustColor
1232fill
1233330 346 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
12340 setlinejoin 2 setlinecap
12351 setlinewidth
1236[] 0 setdash
12370.000 0.000 0.000 setrgbcolor AdjustColor
1238stroke
1239grestore
1240gsave
1241302 327 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
12421.000 1.000 1.000 setrgbcolor AdjustColor
1243fill
1244302 327 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
12450 setlinejoin 2 setlinecap
12461 setlinewidth
1247[] 0 setdash
12480.000 0.000 0.000 setrgbcolor AdjustColor
1249stroke
1250grestore
1251gsave
1252330 301 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
12531.000 1.000 1.000 setrgbcolor AdjustColor
1254fill
1255330 301 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
12560 setlinejoin 2 setlinecap
12571 setlinewidth
1258[] 0 setdash
12590.000 0.000 0.000 setrgbcolor AdjustColor
1260stroke
1261grestore
1262gsave
1263366 334 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
12641.000 1.000 1.000 setrgbcolor AdjustColor
1265fill
1266366 334 moveto 6 0 rlineto 0 -6 rlineto -6 0 rlineto closepath
12670 setlinejoin 2 setlinecap
12681 setlinewidth
1269[] 0 setdash
12700.000 0.000 0.000 setrgbcolor AdjustColor
1271stroke
1272grestore
1273gsave
1274matrix currentmatrix
1275418 236 translate 3 3 scale 1 0 moveto 0 0 1 0 360 arc
1276setmatrix
12771.000 1.000 1.000 setrgbcolor AdjustColor
1278fill
1279matrix currentmatrix
1280418 236 translate 3 3 scale 1 0 moveto 0 0 1 0 360 arc
1281setmatrix
12820 setlinejoin 2 setlinecap
12831 setlinewidth
1284[] 0 setdash
12850.627 0.125 0.941 setrgbcolor AdjustColor
1286stroke
1287grestore
1288gsave
1289334 328 moveto
1290334 325 lineto
1291337 325 lineto
1292334 325 lineto
1293334 322 lineto
1294334 325 lineto
1295331 325 lineto
1296334 325 lineto
1297334 328 lineto
12981 setlinejoin 1 setlinecap
12991 setlinewidth
1300[] 0 setdash
13010.000 0.000 0.000 setrgbcolor AdjustColor
1302stroke
1303grestore
1304gsave
1305691 226 moveto
1306691 223 lineto
1307694 223 lineto
1308691 223 lineto
1309691 220 lineto
1310691 223 lineto
1311688 223 lineto
1312691 223 lineto
1313691 226 lineto
13141 setlinejoin 1 setlinecap
13151 setlinewidth
1316[] 0 setdash
13170.000 0.000 0.000 setrgbcolor AdjustColor
1318stroke
1319grestore
1320restore showpage
1321
1322%%Trailer
1323end
1324%%EOF
Note: See TracBrowser for help on using the repository browser.