source: MML/trunk/applications/orbit/figure2.eps @ 4

Last change on this file since 4 was 4, checked in by zhangj, 10 years ago

Initial import--MML version from SOLEIL@2013

File size: 13.6 KB
Line 
1%!PS-Adobe-3.0 EPSF-3.0
2%%Creator: MATLAB, The Mathworks, Inc. Version 7.2.0.294 (R2006a). Operating System: Linux 2.6.9-22.ELsmp #1 SMP Mon Sep 19 18:32:14 EDT 2005 i686.
3%%Title: ./figure2.eps
4%%CreationDate: 02/06/2007  20:15:40
5%%DocumentNeededFonts: Helvetica
6%%DocumentProcessColors: Cyan Magenta Yellow Black
7%%LanguageLevel: 2
8%%Pages: 1
9%%BoundingBox:    67   198   546   589
10%%EndComments
11
12%%BeginProlog
13% MathWorks dictionary
14/MathWorks 160 dict begin
15% definition operators
16/bdef {bind def} bind def
17/ldef {load def} bind def
18/xdef {exch def} bdef
19/xstore {exch store} bdef
20% operator abbreviations
21/c  /clip ldef
22/cc /concat ldef
23/cp /closepath ldef
24/gr /grestore ldef
25/gs /gsave ldef
26/mt /moveto ldef
27/np /newpath ldef
28/cm /currentmatrix ldef
29/sm /setmatrix ldef
30/rm /rmoveto ldef
31/rl /rlineto ldef
32/s {show newpath} bdef
33/sc {setcmykcolor} bdef
34/sr /setrgbcolor ldef
35/sg /setgray ldef
36/w /setlinewidth ldef
37/j /setlinejoin ldef
38/cap /setlinecap ldef
39/rc {rectclip} bdef
40/rf {rectfill} bdef
41% page state control
42/pgsv () def
43/bpage {/pgsv save def} bdef
44/epage {pgsv restore} bdef
45/bplot /gsave ldef
46/eplot {stroke grestore} bdef
47% orientation switch
48/portraitMode 0 def /landscapeMode 1 def /rotateMode 2 def
49% coordinate system mappings
50/dpi2point 0 def
51% font control
52/FontSize 0 def
53/FMS {/FontSize xstore findfont [FontSize 0 0 FontSize neg 0 0]
54  makefont setfont} bdef
55/reencode {exch dup where {pop load} {pop StandardEncoding} ifelse
56  exch dup 3 1 roll findfont dup length dict begin
57  { 1 index /FID ne {def}{pop pop} ifelse } forall
58  /Encoding exch def currentdict end definefont pop} bdef
59/isroman {findfont /CharStrings get /Agrave known} bdef
60/FMSR {3 1 roll 1 index dup isroman {reencode} {pop pop} ifelse
61  exch FMS} bdef
62/csm {1 dpi2point div -1 dpi2point div scale neg translate
63 dup landscapeMode eq {pop -90 rotate}
64  {rotateMode eq {90 rotate} if} ifelse} bdef
65% line types: solid, dotted, dashed, dotdash
66/SO { [] 0 setdash } bdef
67/DO { [.5 dpi2point mul 4 dpi2point mul] 0 setdash } bdef
68/DA { [6 dpi2point mul] 0 setdash } bdef
69/DD { [.5 dpi2point mul 4 dpi2point mul 6 dpi2point mul 4
70  dpi2point mul] 0 setdash } bdef
71% macros for lines and objects
72/L {lineto stroke} bdef
73/MP {3 1 roll moveto 1 sub {rlineto} repeat} bdef
74/AP {{rlineto} repeat} bdef
75/PDlw -1 def
76/W {/PDlw currentlinewidth def setlinewidth} def
77/PP {closepath eofill} bdef
78/DP {closepath stroke} bdef
79/MR {4 -2 roll moveto dup  0 exch rlineto exch 0 rlineto
80  neg 0 exch rlineto closepath} bdef
81/FR {MR stroke} bdef
82/PR {MR fill} bdef
83/L1i {{currentfile picstr readhexstring pop} image} bdef
84/tMatrix matrix def
85/MakeOval {newpath tMatrix currentmatrix pop translate scale
860 0 1 0 360 arc tMatrix setmatrix} bdef
87/FO {MakeOval stroke} bdef
88/PO {MakeOval fill} bdef
89/PD {currentlinewidth 2 div 0 360 arc fill
90   PDlw -1 eq not {PDlw w /PDlw -1 def} if} def
91/FA {newpath tMatrix currentmatrix pop translate scale
92  0 0 1 5 -2 roll arc tMatrix setmatrix stroke} bdef
93/PA {newpath tMatrix currentmatrix pop  translate 0 0 moveto scale
94  0 0 1 5 -2 roll arc closepath tMatrix setmatrix fill} bdef
95/FAn {newpath tMatrix currentmatrix pop translate scale
96  0 0 1 5 -2 roll arcn tMatrix setmatrix stroke} bdef
97/PAn {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
98  0 0 1 5 -2 roll arcn closepath tMatrix setmatrix fill} bdef
99/vradius 0 def /hradius 0 def /lry 0 def
100/lrx 0 def /uly 0 def /ulx 0 def /rad 0 def
101/MRR {/vradius xdef /hradius xdef /lry xdef /lrx xdef /uly xdef
102  /ulx xdef newpath tMatrix currentmatrix pop ulx hradius add uly
103  vradius add translate hradius vradius scale 0 0 1 180 270 arc 
104  tMatrix setmatrix lrx hradius sub uly vradius add translate
105  hradius vradius scale 0 0 1 270 360 arc tMatrix setmatrix
106  lrx hradius sub lry vradius sub translate hradius vradius scale
107  0 0 1 0 90 arc tMatrix setmatrix ulx hradius add lry vradius sub
108  translate hradius vradius scale 0 0 1 90 180 arc tMatrix setmatrix
109  closepath} bdef
110/FRR {MRR stroke } bdef
111/PRR {MRR fill } bdef
112/MlrRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lry uly sub 2 div def
113  newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
114  rad rad scale 0 0 1 90 270 arc tMatrix setmatrix lrx rad sub lry rad
115  sub translate rad rad scale 0 0 1 270 90 arc tMatrix setmatrix
116  closepath} bdef
117/FlrRR {MlrRR stroke } bdef
118/PlrRR {MlrRR fill } bdef
119/MtbRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lrx ulx sub 2 div def
120  newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
121  rad rad scale 0 0 1 180 360 arc tMatrix setmatrix lrx rad sub lry rad
122  sub translate rad rad scale 0 0 1 0 180 arc tMatrix setmatrix
123  closepath} bdef
124/FtbRR {MtbRR stroke } bdef
125/PtbRR {MtbRR fill } bdef
126/stri 6 array def /dtri 6 array def
127/smat 6 array def /dmat 6 array def
128/tmat1 6 array def /tmat2 6 array def /dif 3 array def
129/asub {/ind2 exch def /ind1 exch def dup dup
130  ind1 get exch ind2 get sub exch } bdef
131/tri_to_matrix {
132  2 0 asub 3 1 asub 4 0 asub 5 1 asub
133  dup 0 get exch 1 get 7 -1 roll astore } bdef
134/compute_transform {
135  dmat dtri tri_to_matrix tmat1 invertmatrix 
136  smat stri tri_to_matrix tmat2 concatmatrix } bdef
137/ds {stri astore pop} bdef
138/dt {dtri astore pop} bdef
139/db {2 copy /cols xdef /rows xdef mul dup 3 mul string
140  currentfile 
141  3 index 0 eq {/ASCIIHexDecode filter}
142  {/ASCII85Decode filter 3 index 2 eq {/RunLengthDecode filter} if }
143  ifelse exch readstring pop
144  dup 0 3 index getinterval /rbmap xdef
145  dup 2 index dup getinterval /gbmap xdef
146  1 index dup 2 mul exch getinterval /bbmap xdef pop pop}bdef
147/it {gs np dtri aload pop moveto lineto lineto cp c
148  cols rows 8 compute_transform 
149  rbmap gbmap bbmap true 3 colorimage gr}bdef
150/il {newpath moveto lineto stroke}bdef
151currentdict end def
152%%EndProlog
153
154%%BeginSetup
155MathWorks begin
156
1570 cap
158
159end
160%%EndSetup
161
162%%Page: 1 1
163%%BeginPageSetup
164%%PageBoundingBox:    67   198   546   589
165MathWorks begin
166bpage
167%%EndPageSetup
168
169%%BeginObject: obj1
170bplot
171
172/dpi2point 12 def
173portraitMode 0216 7344 csm
174
175  599   274  5746  4690 rc
17692 dict begin %Colortable dictionary
177/c0 { 0.000000 0.000000 0.000000 sr} bdef
178/c1 { 1.000000 1.000000 1.000000 sr} bdef
179/c2 { 0.900000 0.000000 0.000000 sr} bdef
180/c3 { 0.000000 0.820000 0.000000 sr} bdef
181/c4 { 0.000000 0.000000 0.800000 sr} bdef
182/c5 { 0.910000 0.820000 0.320000 sr} bdef
183/c6 { 1.000000 0.260000 0.820000 sr} bdef
184/c7 { 0.000000 0.820000 0.820000 sr} bdef
185c0
1861 j
1871 sg
188   0    0 6921 5188 rf
1896 w
1900 4227 5363 0 0 -4227 900 4616 4 MP
191PP
192-5363 0 0 4227 5363 0 0 -4227 900 4616 5 MP stroke
1934 w
194DO
195SO
1966 w
1970 sg
198 900 4616 mt 6263 4616 L
199 900  389 mt 6263  389 L
200 900 4616 mt  900  389 L
2016263 4616 mt 6263  389 L
202 900 4616 mt 6263 4616 L
203 900 4616 mt  900  389 L
204 900 4616 mt  900 4562 L
205 900  389 mt  900  442 L
206%%IncludeResource: font Helvetica
207/Helvetica /ISOLatin1Encoding 120 FMSR
208
209 867 4761 mt 
210(0) s
2111436 4616 mt 1436 4562 L
2121436  389 mt 1436  442 L
2131353 4761 mt 
214(0.1) s
2151972 4616 mt 1972 4562 L
2161972  389 mt 1972  442 L
2171889 4761 mt 
218(0.2) s
2192508 4616 mt 2508 4562 L
2202508  389 mt 2508  442 L
2212425 4761 mt 
222(0.3) s
2233045 4616 mt 3045 4562 L
2243045  389 mt 3045  442 L
2252962 4761 mt 
226(0.4) s
2273581 4616 mt 3581 4562 L
2283581  389 mt 3581  442 L
2293498 4761 mt 
230(0.5) s
2314117 4616 mt 4117 4562 L
2324117  389 mt 4117  442 L
2334034 4761 mt 
234(0.6) s
2354654 4616 mt 4654 4562 L
2364654  389 mt 4654  442 L
2374571 4761 mt 
238(0.7) s
2395190 4616 mt 5190 4562 L
2405190  389 mt 5190  442 L
2415107 4761 mt 
242(0.8) s
2435726 4616 mt 5726 4562 L
2445726  389 mt 5726  442 L
2455643 4761 mt 
246(0.9) s
2476263 4616 mt 6263 4562 L
2486263  389 mt 6263  442 L
2496230 4761 mt 
250(1) s
2515946 4963 mt 
252(x 10) s
253%%IncludeResource: font Helvetica
254/Helvetica /ISOLatin1Encoding 80 FMSR
255
2566172 4889 mt 
257(-3) s
258 900 4616 mt  953 4616 L
2596263 4616 mt 6209 4616 L
260%%IncludeResource: font Helvetica
261/Helvetica /ISOLatin1Encoding 120 FMSR
262
263 799 4660 mt 
264(0) s
265 900 4193 mt  953 4193 L
2666263 4193 mt 6209 4193 L
267 665 4237 mt 
268(200) s
269 900 3770 mt  953 3770 L
2706263 3770 mt 6209 3770 L
271 665 3814 mt 
272(400) s
273 900 3347 mt  953 3347 L
2746263 3347 mt 6209 3347 L
275 665 3391 mt 
276(600) s
277 900 2925 mt  953 2925 L
2786263 2925 mt 6209 2925 L
279 665 2969 mt 
280(800) s
281 900 2502 mt  953 2502 L
2826263 2502 mt 6209 2502 L
283 599 2546 mt 
284(1000) s
285 900 2079 mt  953 2079 L
2866263 2079 mt 6209 2079 L
287 599 2123 mt 
288(1200) s
289 900 1657 mt  953 1657 L
2906263 1657 mt 6209 1657 L
291 599 1701 mt 
292(1400) s
293 900 1234 mt  953 1234 L
2946263 1234 mt 6209 1234 L
295 599 1278 mt 
296(1600) s
297 900  811 mt  953  811 L
2986263  811 mt 6209  811 L
299 599  855 mt 
300(1800) s
301 900  389 mt  953  389 L
3026263  389 mt 6209  389 L
303 599  433 mt 
304(2000) s
305 900 4616 mt 6263 4616 L
306 900  389 mt 6263  389 L
307 900 4616 mt  900  389 L
3086263 4616 mt 6263  389 L
309gs 900 389 5364 4228 rc
310/c8 { 0.000000 0.000000 1.000000 sr} bdef
311c8
3125 -103 5 -101 5 -93 6 -87 5 -82 6 -77 5 -73 5 -68 
3136 -65 5 -61 5 -58 6 -56 5 -53 5 -50 6 -48 5 -47 
3146 -44 5 -42 5 -41 6 -39 5 -38 5 -36 6 -35 5 -34 
3155 -33 6 -31 5 -31 6 -29 5 -29 5 -28 6 -27 5 -26 
3165 -25 6 -25 5 -24 5 -23 6 -23 5 -22 6 -22 5 -21 
3175 -20 6 -20 5 -20 5 -19 6 -19 5 -18 5 -18 6 -17 
3185 -17 6 -17 5 -16 5 -16 6 -16 5 -15 5 -15 6 -15 
3195 -14 5 -14 6 -14 5 -14 6 -13 5 -13 5 -13 6 -13 
3205 -12 5 -12 6 -12 5 -12 5 -12 6 -11 5 -11 6 -11 
3215 -11 5 -11 6 -10 5 -11 5 -10 6 -10 5 -10 5 -9 
3226 -10 5 -9 6 -10 5 -9 5 -9 6 -9 5 -9 5 -8 
3236 -9 5 -8 5 -9 6 -8 5 -8 6 -8 5 -8 5 -8 
3246 -7 5 -8 5 -8 6 -7 5 -7 5 -8 6 -7 5 -7 
3256 -7 5 -7 5 -7 6 -6 5 -7 5 -7 6 -6 5 -6 
3265 -7 6 -6 5 -6 6 -7 5 -6 5 -6 6 -6 5 -6 
3275 -5 6 -6 5 -6 5 -6 6 -5 5 -6 5 -5 6 -6 
3285 -5 6 -5 5 -6 5 -5 6 -5 5 -5 5 -5 6 -5 
3295 -5 5 -5 6 -5 5 -5 6 -5 5 -5 5 -4 6 -5 
3305 -5 5 -4 6 -5 5 -4 5 -5 6 -4 5 -5 6 -4 
3315 -4 5 -5 6 -4 5 -4 5 -4 6 -5 5 -4 5 -4 
3326 -4 5 -4 6 -4 5 -4 5 -4 6 -4 5 -4 5 -3 
3336 -4 5 -4 5 -4 6 -4 5 -3 6 -4 5 -4 5 -3 
3346 -4 5 -3 5 -4 6 -3 5 -4 5 -3 6 -4 5 -3 
3356 -4 5 -3 5 -3 6 -4 5 -3 5 -3 6 -3 5 -4 
3365 -3 6 -3 5 -3 6 -3 5 -3 5 -4 6 -3 5 -3 
3375 -3 6 -3 5 -3 5 -3 6 -3 5 -3 6 -3 5 -3 
3385 -2 6 -3 5 -3 5 -3 6 -3 5 -3 5 -2 6 -3 
3395 -3 6 -3 5 -2 5 -3 6 -3 5 -2 5 -3 6 -3 
3405 -2 5 -3 6 -3 5 -2 6 -3 5 -2 5 -3 6 -2 
3415 -3 5 -2 6 -3 5 -2 5 -3 6 -2 5 -3 6 -2 
3425 -2 5 -3 6 -2 5 -3 5 -2 6 -2 5 -3 5 -2 
3436 -2 5 -3 6 -2 5 -2 5 -2 6 -3 5 -2 5 -2 
3446 -2 5 -2 5 -3 6 -2 5 -2 6 -2 5 -2 5 -2 
3456 -3 5 -2 5 -2 6 -2 5 -2 5 -2 6 -2 5 -2 
3465 -2 6 -2 5 -2 6 -2 5 -2 5 -2 6 -2 5 -2 
3475 -2 6 -2 5 -2 5 -2 6 -2 5 -2 6 -2 5 -2 
3485 -2 6 -2 5 -1 5 -2 6 -2 5 -2 5 -2 6 -2 
3495 -2 6 -1 5 -2 4557 3668 300 MP stroke
3505 -2 6 -2 5 -2 5 -1 6 -2 5 -2 5 -2 6 -1 
3515 -2 6 -2 5 -2 5 -1 6 -2 5 -2 5 -2 6 -1 
3525 -2 5 -2 6 -1 5 -2 6 -2 5 -1 5 -2 6 -2 
3535 -1 5 -2 6 -2 5 -1 5 -2 6 -1 5 -2 6 -2 
3545 -1 5 -2 6 -1 5 -2 5 -1 6 -2 5 -2 5 -1 
3556 -2 5 -1 6 -2 5 -1 5 -2 6 -1 5 -2 5 -1 
3566 -2 5 -1 5 -2 6 -1 5 -2 6 -1 5 -2 5 -1 
3576 -2 5 -1 5 -2 6 -1 5 -1 5 -2 6 -1 5 -2 
3586 -1 5 -2 5 -1 6 -1 5 -2 5 -1 6 -2 5 -1 
3595 -1 6 -2 5 -1 6 -1 5 -2 5 -1 6 -1 5 -2 
3605 -1 6 -2 5 -1 5 -1 6 -1 5 -2 6 -1 5 -1 
3615 -2 6 -1 5 -1 5 -2 6 -1 5 -1 5 -2 6 -1 
3625 -1 6 -1 5 -2 5 -1 6 -1 5 -1 5 -2 6 -1 
3635 -1 5 -1 6 -2 5 -1 6 -1 5 -1 5 -2 6 -1 
3645 -1 5 -1 6 -1 5 -2 5 -1 6 -1 5 -1 5 -1 
3656 -2 5 -1 6 -1 5 -1 5 -1 6 -2 5 -1 5 -1 
3666 -1 5 -1 5 -1 6 -2 5 -1 6 -1 5 -1 5 -1 
3676 -1 5 -1 5 -2 6 -1 5 -1 5 -1 6 -1 5 -1 
3686 -1 5 -1 5 -1 6 -2 5 -1 5 -1 6 -1 5 -1 
3695 -1 6 -1 5 -1 6 -1 5 -1 5 -1 6 -2 5 -1 
3705 -1 6 -1 5 -1 5 -1 6 -1 5 -1 6 -1 5 -1 
3715 -1 6 -1 5 -1 5 -1 6 -1 5 -1 5 -1 6 -1 
3725 -1 6 -1 5 -2 5 -1 6 -1 5 -1 5 -1 6 -1 
3735 -1 5 -1 6 -1 5 -1 6 -1 5 -1 5 -1 6 -1 
3745 -1 5 -1 6 -1 5 -1 5 -1 6 -1 5 0 6 -1 
3755 -1 5 -1 6 -1 5 -1 5 -1 6 -1 5 -1 5 -1 
3766 -1 5 -1 6 -1 5 -1 5 -1 6 -1 5 -1 5 -1 
3776 -1 5 -1 5 -1 6 -1 5 0 6 -1 5 -1 5 -1 
3786 -1 5 -1 5 -1 6 -1 5 -1 5 -1 6 -1 5 -1 
3796 -1 5 0 5 -1 6 -1 5 -1 5 -1 6 -1 5 -1 
3805 -1 6 -1 5 -1 6 0 5 -1 5 -1 6 -1 5 -1 
3815 -1 6 -1 5 -1 5 -1 6 0 5 -1 5 -1 6 -1 
3825 -1 6 -1 5 -1 5 -1 6 0 5 -1 5 -1 6 -1 
3835 -1 5 -1 6 -1 5 0 6 -1 5 -1 5 -1 6 -1 
3845 -1 5 -1 6 0 5 -1 5 -1 6 -1 5 -1 6 -1 
3855 0 5 -1 6 -1 5 -1 5 -1 6 -1 5 0 5 -1 
3866 -1 5 -1 6 -1 5 -1 5 0 6 -1 5 -1 5 -1 
3876 -1 5 0 5 -1 2954 4017 300 MP stroke
3886 -1 5 -1 6 -1 5 -1 5 0 6 -1 5 -1 5 -1 
3896 -1 5 0 5 -1 6 -1 5 -1 6 -1 5 0 5 -1 
3906 -1 5 -1 5 -1 6 0 5 -1 5 -1 6 -1 5 0 
3916 -1 5 -1 5 -1 6 -1 5 0 5 -1 6 -1 5 -1 
3925 -1 6 0 5 -1 6 -1 5 -1 5 0 6 -1 5 -1 
3935 -1 6 0 5 -1 5 -1 6 -1 5 -1 6 0 5 -1 
3945 -1 6 -1 5 0 5 -1 6 -1 5 -1 5 0 6 -1 
3955 -1 6 -1 5 0 5 -1 6 -1 5 -1 5 0 6 -1 
3965 -1 5 -1 6 0 5 -1 6 -1 5 -1 5 0 6 -1 
3975 -1 5 -1 6 0 5 -1 5 -1 6 -1 5 0 6 -1 
3985 -1 5 -1 6 0 5 -1 5 -1 6 -1 5 0 5 -1 
3996 -1 5 -1 6 0 5 -1 5 -1 6 0 5 -1 5 -1 
4006 -1 5 0 5 -1 6 -1 5 -1 5 0 6 -1 5 -1 
4016 -1 5 0 5 -1 6 -1 5 0 5 -1 6 -1 5 -1 
4025 0 6 -1 5 -1 6 0 5 -1 5 -1 6 -1 5 0 
4035 -1 6 -1 5 -1 5 0 6 -1 5 -1 6 0 5 -1 
4045 -1 6 -1 5 0 5 -1 6 -1 5 0 5 -1 6 -1 
4055 -1 6 0 5 -1 5 -1 6 0 5 -1 5 -1 6 -1 
4065 0 5 -1 6 -1 5 0 6 -1 5 -1 5 -1 6 0 
4075 -1 5 -1 6 0 5 -1 5 -1 6 -1 5 0 6 -1 
4085 -1 5 -1 6 0 5 -1 5 -1 6 0 5 -1 5 -1 
4096 -1 5 0 6 -1 5 -1 5 0 6 -1 5 -1 5 -1 
4106 0 5 -1 5 -1 6 0 5 -1 6 -1 5 -1 5 0 
4116 -1 5 -1 5 0 6 -1 5 -1 5 -1 6 0 5 -1 
4126 -1 5 0 5 -1 6 -1 5 -1 5 0 6 -1 5 -1 
4135 -1 6 0 5 -1 6 -1 5 0 5 -1 6 -1 5 -1 
4145 0 6 -1 5 -1 5 0 6 -1 5 -1 6 -1 5 0 
4155 -1 6 -1 5 -1 5 0 6 -1 5 -1 5 -1 6 0 
4165 -1 6 -1 5 -1 5 0 6 -1 5 -1 5 -1 6 0 
4175 -1 5 -1 6 0 5 -1 6 -1 5 -1 5 -1 6 0 
4185 -1 5 -1 6 -1 5 0 5 -1 6 -1 5 -1 5 0 
4196 -1 5 -1 6 -1 5 0 5 -1 6 -1 5 -1 5 -1 
4206 0 5 -1 5 -1 6 -1 5 0 6 -1 5 -1 5 -1 
4216 -1 5 0 5 -1 6 -1 5 -1 5 -1 6 0 5 -1 
4226 -1 5 -1 5 -1 6 0 5 -1 5 -1 6 -1 5 -1 
4235 -1 6 0 5 -1 6 -1 5 -1 5 -1 6 -1 5 -1 
4245 0 6 -1 5 -1 5 -1 6 -1 5 -1 6 -1 5 0 
4255 -1 6 -1 5 -1 1350 4243 300 MP stroke
4265 -1 6 -1 5 -1 5 -1 6 -1 5 -1 6 0 5 -1 
4275 -1 6 -1 5 -1 5 -1 6 -1 5 -1 5 -1 6 -1 
4285 -1 6 -1 5 -1 5 -1 6 -1 5 -1 5 -1 6 -1 
4295 -1 5 -1 6 -1 5 -1 6 -1 5 -1 5 -2 6 -1 
4305 -1 5 -1 6 -1 5 -1 5 -1 6 -2 5 -1 6 -1 
4315 -1 5 -1 6 -2 5 -1 5 -1 6 -1 5 -2 5 -1 
4326 -1 5 -2 6 -1 5 -2 5 -1 6 -2 5 -1 5 -2 
4336 -1 5 -2 5 -1 6 -2 5 -2 6 -2 5 -1 5 -2 
4346 -2 5 -2 5 -2 6 -2 5 -3 5 -2 6 -2 5 -3 
4356 -3 5 -2 5 -3 6 -4 5 -3 5 -4 6 -5 5 -5 
4365 -6 6 -8 5 -13 5 -223 900 4616 85 MP stroke
437gr
438
439c8
440
441end %%Color Dict
442
443eplot
444%%EndObject
445
446epage
447end
448
449showpage
450
451%%Trailer
452%%EOF
Note: See TracBrowser for help on using the repository browser.