% This junk string is used by the show operators
/PATsstr 1 string def
/PATawidthshow { % cx cy cchar rx ry string
% Loop over each character in the string
{ % cx cy cchar rx ry char
% Show the character
dup % cx cy cchar rx ry char char
PATsstr dup 0 4 -1 roll put % cx cy cchar rx ry char (char)
false charpath % cx cy cchar rx ry char
/clip load PATdraw
% Move past the character (charpath modified the
% current point)
currentpoint % cx cy cchar rx ry char x y
newpath
moveto % cx cy cchar rx ry char
% Reposition by cx,cy if the character in the string is cchar
3 index eq { % cx cy cchar rx ry
4 index 4 index rmoveto
} if
% Reposition all characters by rx ry
2 copy rmoveto % cx cy cchar rx ry
} forall
pop pop pop pop pop % -
currentpoint
newpath
moveto
} bind def
/PATcg {
7 dict dup begin
/lw currentlinewidth def
/lc currentlinecap def
/lj currentlinejoin def
/ml currentmiterlimit def
/ds [ currentdash ] def
/cc [ currentrgbcolor ] def
/cm matrix currentmatrix def end
} bind def
% PATdraw - calculates the boundaries of the object and
% fills it with the current pattern
/PATdraw { % proc
save exch
PATpcalc % proc nw nh px py
5 -1 roll exec % nw nh px py
newpath
PATfill % -
restore
} bind def
% PATfill - performs the tiling for the shape
/PATfill { % nw nh px py PATfill -
PATDict /CurrentPattern get dup begin
setfont
% Set the coordinate system to Pattern Space
PatternGState PATsg
% Set the color for uncolored pattezns
PaintType 2 eq { PATDict /PColor get PATsc } if
% Create the string for showing
3 index string % nw nh px py str
% Loop for each of the pattern sources
0 1 Multi 1 sub { % nw nh px py str source
% Move to the starting location
3 index 3 index % nw nh px py str source px py
moveto % nw nh px py str source
% For multiple sources, set the appropriate color
Multi 1 ne { dup PC exch get PATsc } if
% Set the appropriate string for the source
0 1 7 index 1 sub { 2 index exch 2 index put } for pop
% Loop over the number of vertical cells
3 index % nw nh px py str nh
{ % nw nh px py str
currentpoint % nw nh px py str cx cy
2 index oldshow % nw nh px py str cx cy
YStep add moveto % nw nh px py str
} repeat % nw nh px py str
} for
5 { pop } repeat end
} bind def
% PATkshow - kshow with the current pattezn
/PATkshow { % proc string
exch bind % string proc
1 index 0 get % string proc char
% Loop over all but the last character in the string
0 1 4 index length 2 sub {
% string proc char idx
% Find the n+1th character in the string
3 index exch 1 add get % string proc char char+1
exch 2 copy % strinq proc char+1 char char+1 char
% Now show the nth character
PATsstr dup 0 4 -1 roll put % string proc chr+1 chr chr+1 (chr)
false charpath % string proc char+1 char char+1
/clip load PATdraw
% Move past the character (charpath modified the current point)
currentpoint newpath moveto
% Execute the user proc (should consume char and char+1)
mark 3 1 roll % string proc char+1 mark char char+1
4 index exec % string proc char+1 mark...
cleartomark % string proc char+1
} for
% Now display the last character
PATsstr dup 0 4 -1 roll put % string proc (char+1)
false charpath % string proc
/clip load PATdraw
neewath
pop pop % -
} bind def
% PATmp - the makepattern equivalent
/PATmp { % patdict patmtx PATmp patinstance
exch dup length 7 add % We will add 6 new entries plus 1 FID
dict copy % Create a new dictionary begin
% Matrix to install when painting the pattern
TilingType PATtcalc
/PatternGState PATcg def
PatternGState /cm 3 -1 roll put
% Check for multi pattern sources (Level 1 fast color patterns)
currentdict /Multi known not { /Multi 1 def } if
% Font dictionary definitions
/FontType 3 def
% Create a dummy encoding vector
/Encoding 256 array def
3 string 0 1 255 {
Encoding exch dup 3 index cvs cvn put } for pop
/FontMatrix matrix def
/FontBBox BBox def
/BuildChar {
mark 3 1 roll % mark dict char
exch begin
Multi 1 ne {PaintData exch get}{pop} ifelse % mark [paintdata]
PaintType 2 eq Multi 1 ne or
{ XStep 0 FontBBox aload pop setcachedevice }
{ XStep 0 setcharwidth } ifelse
currentdict % mark [paintdata] dict
/PaintProc load % mark [paintdata] dict paintproc end
gsave
false PATredef exec true PATredef
grestore
cleartomark % -
} bind def
currentdict end % newdict
/foo exch % /foo newlict
definefont % newfont
} bind def
% PATpcalc - calculates the starting point and width/height
% of the tile fill for the shape
/PATpcalc { % - PATpcalc nw nh px py
PATDict /CurrentPattern get begin
gsave
% Set up the coordinate system to Pattern Space
% and lock down pattern
PatternGState /cm get setmatrix
BBox aload pop pop pop translate
% Determine the bounding box of the shape
pathbbox % llx lly urx ury
grestore
% Determine (nw, nh) the # of cells to paint width and height
PatHeight div ceiling % llx lly urx qh
4 1 roll % qh llx lly urx
PatWidth div ceiling % qh llx lly qw
4 1 roll % qw qh llx lly
PatHeight div floor % qw qh llx ph
4 1 roll % ph qw qh llx
PatWidth div floor % ph qw qh pw
4 1 roll % pw ph qw qh
2 index sub cvi abs % pw ph qs qh-ph
exch 3 index sub cvi abs exch % pw ph nw=qw-pw nh=qh-ph
% Determine the starting point of the pattern fill
%(px, py)
4 2 roll % nw nh pw ph
PatHeight mul % nw nh pw py
exch % nw nh py pw
PatWidth mul exch % nw nh px py end
} bind def
% Save the original routines so that we can use them later on
/oldfill /fill load def
/oldeofill /eofill load def
/oldstroke /stroke load def
/oldshow /show load def
/oldashow /ashow load def
/oldwidthshow /widthshow load def
/oldawidthshow /awidthshow load def
/oldkshow /kshow load def
% These defs are necessary so that subsequent procs don't bind in
% the originals
/fill { oldfill } bind def
/eofill { oldeofill } bind def
/stroke { oldstroke } bind def
/show { oldshow } bind def
/ashow { oldashow } bind def
/widthshow { oldwidthshow } bind def
/awidthshow { oldawidthshow } bind def
/kshow { oldkshow } bind def
/PATredef {
MyAppDict begin
{
/fill { /clip load PATdraw newpath } bind def
/eofill { /eoclip load PATdraw newpath } bind def
/stroke { PATstroke } bind def
/show { 0 0 null 0 0 6 -1 roll PATawidthshow } bind def
/ashow { 0 0 null 6 3 roll PATawidthshow }
bind def
/widthshow { 0 0 3 -1 roll PATawidthshow }
bind def
/awidthshow { PATawidthshow } bind def
/kshow { PATkshow } bind def
} {
/fill { oldfill } bind def
/eofill { oldeofill } bind def
/stroke { oldstroke } bind def
/show { oldshow } bind def
/ashow { oldashow } bind def
/widthshow { oldwidthshow } bind def
/awidthshow { oldawidthshow } bind def
/kshow { oldkshow } bind def
} ifelse end
} bind def
false PATredef
% Conditionally define setcmykcolor if not available
/setcmykcolor where { pop } {
/setcmykcolor {
1 sub 4 1 roll
3 {
3 index add neg dup 0 lt { pop 0 } if 3 1 roll
} repeat
setrgbcolor - pop
} bind def
} ifelse
/PATsc { % colorarray
aload length % c1 ... cn length
dup 1 eq { pop setgray } { 3 eq { setrgbcolor } { setcmykcolor
} ifelse } ifelse
} bind def
/PATsg { % dict begin
lw setlinewidth
lc setlinecap
lj setlinejoin
ml setmiterlimit
ds aload pop setdash
cc aload pop setrgbcolor
cm setmatrix end
} bind def
/PATDict 3 dict def
/PATsp {
true PATredef
PATDict begin
/CurrentPattern exch def
% If it's an uncolored pattern, save the color
CurrentPattern /PaintType get 2 eq {
/PColor exch def
} if
/CColor [ currentrgbcolor ] def end
} bind def
% PATstroke - stroke with the current pattern
/PATstroke {
countdictstack
save
mark
{
currentpoint strokepath moveto
PATpcalc % proc nw nh px py
clip newpath PATfill
} stopped {
(*** PATstroke Warning: Path is too complex, stroking
with gray) =
cleartomark
restore
countdictstack exch sub dup 0 gt
{ { end } repeat } { pop } ifelse
gsave 0.5 setgray oldstroke grestore
} { pop restore pop } ifelse
newpath
} bind def
/PATtcalc { % modmtx tilingtype PATtcalc tilematrix
% Note: tiling types 2 and 3 are not supported
gsave
exch concat % tilingtype
matrix currentmatrix exch % cmtx tilingtype
% Tiling type 1 and 3: constant spacing
2 ne {
% Distort the pattern so that it occupies
% an integral number of device pixels
dup 4 get exch dup 5 get exch % tx ty cmtx
XStep 0 dtransform
round exch round exch % tx ty cmtx dx.x dx.y
XStep div exch XStep div exch % tx ty cmtx a b
0 YStep dtransform
round exch round exch % tx ty cmtx a b dy.x dy.y
YStep div exch YStep div exch % tx ty cmtx a b c d
7 -3 roll astore % { a b c d tx ty }
} if
grestore
} bind def
/PATusp {
false PATredef
PATDict begin
CColor PATsc end
} bind def
/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def
/$F2psEnd {$F2psEnteredState restore end} def
$F2psBegin
10 setmiterlimit
0 slj 0 slc
0.06299 0.06299 sc
%
% Fig objects follow
%
%
% here starts figure with depth 50
% Ellipse
7.500 slw
n 2070 382 22 22 0 360 DrawEllipse gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 136.53 24.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Ellipse
n 720 -203 22 22 0 360 DrawEllipse gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 46.53 -15.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Ellipse
n 1665 652 22 22 0 360 DrawEllipse gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 109.53 42.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Ellipse
n 1170 652 22 22 0 360 DrawEllipse gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 76.53 42.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Ellipse
n 720 652 22 22 0 360 DrawEllipse gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 46.53 42.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Ellipse
n 720 922 22 22 0 360 DrawEllipse gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 46.53 60.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Ellipse
n -540 382 22 22 0 360 DrawEllipse gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 -37.47 24.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Ellipse
n -135 382 22 22 0 360 DrawEllipse gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 -10.47 24.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Ellipse
n 315 382 22 22 0 360 DrawEllipse gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 19.53 24.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Ellipse
n 765 382 22 22 0 360 DrawEllipse gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 49.53 24.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Ellipse
n 1215 382 22 22 0 360 DrawEllipse gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 79.53 24.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Ellipse
n 1665 382 22 22 0 360 DrawEllipse gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 109.53 24.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Ellipse
n 2475 382 22 22 0 360 DrawEllipse gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 163.53 24.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Ellipse
n -945 382 22 22 0 360 DrawEllipse gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 -64.47 24.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Ellipse
n -1350 382 22 22 0 360 DrawEllipse gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 -91.47 24.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Ellipse
n 1440 112 22 22 0 360 DrawEllipse gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 94.53 6.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Ellipse
n 360 112 22 22 0 360 DrawEllipse gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 22.53 6.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Ellipse
n 0 112 22 22 0 360 DrawEllipse gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 -1.47 6.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Ellipse
n 720 112 22 22 0 360 DrawEllipse gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 46.53 6.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Ellipse
n 1080 112 22 22 0 360 DrawEllipse gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 70.53 6.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Ellipse
n -360 112 22 22 0 360 DrawEllipse gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 -25.47 6.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Ellipse
n 1800 112 22 22 0 360 DrawEllipse gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 118.53 6.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
0 slj
0 slc
n 0 90 m
720 -180 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 0.00 -12.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n 360 90 m
720 -180 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 24.00 -12.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n 720 -180 m
720 90 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 48.00 -12.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n 720 -180 m
1080 90 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 48.00 -12.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n 720 -180 m
1440 90 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 48.00 -12.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n 720 -180 m
1800 90 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 48.00 -12.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n 720 900 m
720 630 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 48.00 42.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n 720 945 m
-1350 405 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 -90.00 27.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n 720 945 m
1665 675 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 48.00 45.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n 720 945 m
1170 675 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 48.00 45.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n 720 945 m
-945 405 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 -63.00 27.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n 720 630 m
-540 405 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 -36.00 27.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n 720 630 m
-135 405 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 -9.00 27.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n 1170 630 m
315 405 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 21.00 27.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n 1170 630 m
765 405 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 51.00 27.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n 1665 630 m
1215 405 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 81.00 27.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n 1665 630 m
1665 405 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 111.00 27.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n 1665 630 m
2070 405 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 111.00 27.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n 1665 630 m
2475 405 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 111.00 27.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n -1350 360 m
-360 135 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 -90.00 9.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n -945 360 m
-360 135 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 -63.00 9.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n -540 360 m
0 135 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 -36.00 9.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n -540 360 m
360 135 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 -36.00 9.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n -135 360 m
0 135 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 -9.00 9.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n 315 360 m
360 135 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 21.00 9.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n 315 360 m
720 135 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 21.00 9.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n 1215 360 m
720 135 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 48.00 9.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n 1215 360 m
1080 135 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 72.00 9.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n 2475 360 m
1440 135 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 96.00 9.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n -360 90 m
720 -180 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 -24.00 -12.00] PATmp PATsp ef gr PATusp gs col0 s gr
% Polyline
n -945 360 m
1440 135 l gs /PC [[0.00 0.00 0.00] [0.00 0.00 0.00]] def
15.00 15.00 sc P2 [16 0 0 -8 -63.00 9.00] PATmp PATsp ef gr PATusp gs col0 s gr
% here ends figure;
%
% here starts figure with depth 40
% Polyline
0 slj
0 slc
7.500 slw
n 720 630 m
765 405 l gs 0.50 setgray ef gr gs col0 s gr
% Polyline
n 1170 630 m
1665 405 l gs 0.50 setgray ef gr gs col0 s gr
% Polyline
n -135 360 m
1800 135 l gs 0.50 setgray ef gr gs col0 s gr
% Polyline
n 765 360 m
360 135 l gs 0.50 setgray ef gr gs col0 s gr
% Polyline
n 765 360 m
1800 135 l gs 0.50 setgray ef gr gs col0 s gr
% Polyline
n 1665 360 m
720 135 l gs 0.50 setgray ef gr gs col0 s gr
% Polyline
n 1665 360 m
1800 135 l gs 0.50 setgray ef gr gs col0 s gr
% Polyline
n 2070 360 m
1080 135 l gs 0.50 setgray ef gr gs col0 s gr
% Polyline
n 2070 360 m
1440 135 l gs 0.50 setgray ef gr gs col0 s gr
% Polyline
n 2475 360 m
1800 135 l gs 0.50 setgray ef gr gs col0 s gr
/Times-Roman-iso ff 127.00 scf sf
-315 135 m
gs 1 -1 sc ({1}) col20 sh gr
/Times-Roman-iso ff 127.00 scf sf
45 135 m
gs 1 -1 sc ({2}) col20 sh gr
/Times-Roman-iso ff 127.00 scf sf
-1305 405 m
gs 1 -1 sc ({12}) col20 sh gr
/Times-Roman-iso ff 127.00 scf sf
-900 405 m
gs 1 -1 sc ({16}) col20 sh gr
/Times-Roman-iso ff 127.00 scf sf
-495 405 m
gs 1 -1 sc ({23}) col20 sh gr
/Times-Roman-iso ff 127.00 scf sf
-90 405 m
gs 1 -1 sc ({27}) col20 sh gr
/Times-Roman-iso ff 127.00 scf sf
405 135 m
gs 1 -1 sc ({3}) col20 sh gr
/Times-Roman-iso ff 127.00 scf sf
360 405 m
gs 1 -1 sc ({34}) col20 sh gr
/Times-Roman-iso ff 127.00 scf sf
765 -225 m
gs 1 -1 sc (\370) col20 sh gr
/Times-Roman-iso ff 127.00 scf sf
810 405 m
gs 1 -1 sc ({37}) col20 sh gr
/Times-Roman-iso ff 127.00 scf sf
765 135 m
gs 1 -1 sc ({4}) col20 sh gr
/Times-Roman-iso ff 127.00 scf sf
1125 135 m
gs 1 -1 sc ({5}) col20 sh gr
/Times-Roman-iso ff 127.00 scf sf
1485 135 m
gs 1 -1 sc ({6}) col20 sh gr
/Times-Roman-iso ff 127.00 scf sf
1845 135 m
gs 1 -1 sc ({7}) col20 sh gr
/Times-Roman-iso ff 127.00 scf sf
1710 405 m
gs 1 -1 sc ({47}) col20 sh gr
/Times-Roman-iso ff 127.00 scf sf
1260 405 m
gs 1 -1 sc ({45}) col20 sh gr
/Times-Roman-iso ff 127.00 scf sf
765 720 m
gs 1 -1 sc ({237}) col20 sh gr
/Times-Roman-iso ff 127.00 scf sf
1215 720 m
gs 1 -1 sc ({347}) col20 sh gr
/Times-Roman-iso ff 127.00 scf sf
765 1080 m
gs 1 -1 sc (C) col20 sh gr
/Times-Roman-iso ff 127.00 scf sf
1710 720 m
gs 1 -1 sc ({4567}) col20 sh gr
/Times-Roman-iso ff 127.00 scf sf
2115 405 m
gs 1 -1 sc ({56}) col20 sh gr
/Times-Roman-iso ff 127.00 scf sf
2520 405 m
gs 1 -1 sc ({67}) col20 sh gr
% here ends figure;
$F2psEnd
rs end
showpage
%%Trailer
%EOF
Messung V0.5
¤ Dauer der Verarbeitung: 0.13 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.