open-axiom repository from github
%!PS-Adobe-2.0
%%DocumentFonts: Times-Roman
%%Creator: Axiom
%%CreationDate: today
%%Pages: 1
%%processing (hard) limit: 250 pts or 500 values for the operand stack.
%%EndComments
%------------------------------- prologue -------------------------------%
%-------------------------- support procedures --------------------------%
%--------- first create user dictionary with 100 entries max ------------%
% (number can be changed to accomodate definitions) %
100 dict begin %% using 100 entries in top level dictionary
/FontHeight 12 def
/inch
{ 72 mul }
def
% yVal and hVal are necessary because the Xwindow display origin
% is at the upper left corner, while the postscript display
% origin is at the lower left hand corner.
/yVal %% get Y value -- make upper left corner origin
{ maxY sub abs } %% maxY is viewWindow height
def
/hVal %% get H value -- used for displaying title text
{ maxH sub abs } %% maxH is viewWindow height+titleWindow height
def
% loads in the font
/loadFont
{ /Times-Roman findfont FontHeight scalefont setfont }
def
% draws a rectangle with input operand:
% height
% width
% notice that this function does not "draw" or ink the rectangle.
/drawRect
{ 1 index 1 add 0 rlineto %% draw first side
0 exch 1 add neg rlineto %% draw second side
1 add neg 0 rlineto %% draw third side
closepath } %% draw fourth side
def
% create a rectangle with input operand in the view window:
% y
% x
% height
% width
% notice that this function does not "draw" or ink the rectangle.
/rectangle
{ yVal moveto %% set currentpoint for line
drawRect } %% draws the rectangle
def
% These are global variables that every draw procedure uses
% THe operand should be as follows:
% viewWindow width
% viewWindow height
% title height
/setDim
{ /maxX exch def %% width of display
/maxY exch def %% height of display
/titleH exch def %% height of title
/maxH maxY titleH add def %% height of display + title
} def
%-------------------------- major procedures --------------------------%
/title %% draws a rectangle around the title of picture
{ gsave
newpath
moveto %% lower left of title
titleH 1 add 0 exch rlineto %% draw first side
1 add 0 rlineto %% draw second side
1 add neg 0 exch rlineto
begin installGC stroke end %% draw third side
grestore }
def
/drawFrame %% draw display frame
{ gsave
newpath
maxX maxY 0 0 rectangle
begin installGC stroke end
grestore }
def
% updates the foreground color of existing graphics-context dictionary:
% foreground color
% dictionary name
/setForeground
{ /FGcolor exch put }
def
% updates the background color of existing graphics-context dictionary:
% background color
% dictionary name
/setBackground
{ /BGcolor exch put }
def
% updates the line width, line style, cap style, join style of
% existing graphics-context dictionary:
% dictionary name
% join style
% cap style
% line width
/setLineAttributes
{ begin
/JoinStyle exch def
/CapStyle exch def
/LineWidth exch def
end }
def
% creates a graphics context dictionary with the following information:
% /dictionary name
% foreground color
% background color
% line width
% cap style
% join style
% this creates different graphical contexts for different drawing functions.
/makeDict
{ 5 dict 2 copy def begin pop %% with dict name on top of stack
/FGcolor exch def %% define drawing attributes
/BGcolor exch def %% not heavily used
/LineWidth exch def
/CapStyle exch def
/JoinStyle exch def
end }
def
% makes the current dictionary attributes effective
% this function takes the values in the current dictionary to set the context
% these are the values currently being used: foreground, cap, join, and width
/installGC
{
FGcolor currentgray ne
{FGcolor setgray} if %% foreground color
CapStyle currentlinecap ne
{CapStyle setlinecap} if %% cap style
JoinStyle currentlinejoin ne
{JoinStyle setlinejoin} if %% join style
LineWidth currentlinewidth ne
{LineWidth setlinewidth} if } %% line width
def
% operand stack configuration in order to use psDrawLine:
% psDrawLine
% y0
% x0
% y1
% x1
% graphics-context dictionary
% this draws a line from (x0, y0) to (x1, y1).
/psDrawLine
{ gsave
newpath
yVal moveto
yVal lineto
begin installGC stroke end
grestore }
def
% operand stack configuration in order to use psDrawStr:
% psDrawStr
% y
% x
% string
% graphics-context dictionary
% this function draws a text string at (x,y).
/psDrawStr
{ gsave
newpath
loadFont
yVal moveto
exch begin installGC show end
grestore }
def
%-------------------------- script --------------------------%
% 1 inch 1 inch translate
mark %% mark bottom of our stack
0 0 1
1072693248 0 /globalGC1 makeDict
0 0 1
1072693248 0 /globalGC2 makeDict
0 0 1
1072693248 0 /trashGC makeDict
0 0 1
1072693248 0 /componentGC makeDict
0 0 1
1072693248 0 /opaqueGC makeDict
0 0 1
1072693248 0 /renderGC makeDict
0 0 1
1072693248 0 /globGC makeDict
0 0 1
1072693248 0 /anotherGC makeDict
1 0 1
1072693248 0 /renderGC makeDict
gsave % save graphics state for clipping path
1.000000 1.000000 scale
24 303 300 setDim
maxX maxY 0 0 rectangle clip % set clip path
globalGC1 0.000000 setForeground
globGC 0.000000 setForeground
globalGC1 19 254 258 88 psDrawLine
globGC (X) 14 259 psDrawStr
globalGC1 107.000000 setForeground
globGC 107.000000 setForeground
globalGC1 0.000000 setForeground
globGC 0.000000 setForeground
globalGC1 284 254 48 88 psDrawLine
globGC (Y) 289 259 psDrawStr
globalGC1 107.000000 setForeground
globGC 107.000000 setForeground
globalGC1 0.000000 setForeground
globGC 0.000000 setForeground
globalGC1 151 20 153 263 psDrawLine
globGC (Z) 146 15 psDrawStr
globalGC1 107.000000 setForeground
globGC 107.000000 setForeground
0 0 0 componentGC setLineAttributes
componentGC 0.000000 setForeground
componentGC 0.000000 setForeground
componentGC 254 245 267 243 psDrawLine
componentGC 0.000000 setForeground
componentGC 238 246 254 245 psDrawLine
componentGC 0.000000 setForeground
componentGC 220 245 238 246 psDrawLine
componentGC 0.000000 setForeground
componentGC 200 243 220 245 psDrawLine
componentGC 0.000000 setForeground
componentGC 179 239 200 243 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 234 179 239 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 229 158 234 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 223 139 229 psDrawLine
componentGC 0.000000 setForeground
componentGC 108 218 122 223 psDrawLine
componentGC 0.000000 setForeground
componentGC 98 214 108 218 psDrawLine
componentGC 0.000000 setForeground
componentGC 90 210 98 214 psDrawLine
componentGC 0.000000 setForeground
componentGC 87 208 90 210 psDrawLine
componentGC 0.000000 setForeground
componentGC 87 207 87 208 psDrawLine
componentGC 0.000000 setForeground
componentGC 90 207 87 207 psDrawLine
componentGC 0.000000 setForeground
componentGC 95 209 90 207 psDrawLine
componentGC 0.000000 setForeground
componentGC 102 212 95 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 110 216 102 212 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 221 110 216 psDrawLine
componentGC 0.000000 setForeground
componentGC 130 227 120 221 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 233 130 227 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 240 140 233 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 243 150 240 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 247 154 243 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 250 159 247 psDrawLine
componentGC 0.000000 setForeground
componentGC 167 254 163 250 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 257 167 254 psDrawLine
componentGC 0.000000 setForeground
componentGC 174 261 171 257 psDrawLine
componentGC 0.000000 setForeground
componentGC 177 264 174 261 psDrawLine
componentGC 0.000000 setForeground
componentGC 179 268 177 264 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 271 179 268 psDrawLine
componentGC 0.000000 setForeground
componentGC 183 274 181 271 psDrawLine
componentGC 0.000000 setForeground
componentGC 184 277 183 274 psDrawLine
componentGC 0.000000 setForeground
componentGC 184 280 184 277 psDrawLine
componentGC 0.000000 setForeground
componentGC 183 285 184 280 psDrawLine
componentGC 0.000000 setForeground
componentGC 180 289 183 285 psDrawLine
componentGC 0.000000 setForeground
componentGC 173 291 180 289 psDrawLine
componentGC 0.000000 setForeground
componentGC 164 292 173 291 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 291 164 292 psDrawLine
componentGC 0.000000 setForeground
componentGC 137 287 152 291 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 282 137 287 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 275 121 282 psDrawLine
componentGC 0.000000 setForeground
componentGC 84 266 103 275 psDrawLine
componentGC 0.000000 setForeground
componentGC 66 255 84 266 psDrawLine
componentGC 0.000000 setForeground
componentGC 48 243 66 255 psDrawLine
componentGC 0.000000 setForeground
componentGC 33 231 48 243 psDrawLine
componentGC 0.000000 setForeground
componentGC 21 218 33 231 psDrawLine
componentGC 0.000000 setForeground
componentGC 11 207 21 218 psDrawLine
componentGC 0.000000 setForeground
componentGC 6 196 11 207 psDrawLine
componentGC 0.000000 setForeground
componentGC 4 186 6 196 psDrawLine
componentGC 0.000000 setForeground
componentGC 6 178 4 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 11 172 6 178 psDrawLine
componentGC 0.000000 setForeground
componentGC 18 167 11 172 psDrawLine
componentGC 0.000000 setForeground
componentGC 28 164 18 167 psDrawLine
componentGC 0.000000 setForeground
componentGC 39 162 28 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 52 161 39 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 65 162 52 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 79 163 65 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 92 165 79 163 psDrawLine
componentGC 0.000000 setForeground
componentGC 105 168 92 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 112 169 105 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 118 170 112 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 124 171 118 170 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 173 124 171 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 174 129 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 175 135 174 psDrawLine
componentGC 0.000000 setForeground
componentGC 144 176 140 175 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 177 144 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 156 178 149 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 161 179 156 178 psDrawLine
componentGC 0.000000 setForeground
componentGC 164 178 161 179 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 176 164 178 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 173 165 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 168 163 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 161 159 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 153 152 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 132 143 143 153 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 132 132 143 psDrawLine
componentGC 0.000000 setForeground
componentGC 107 120 120 132 psDrawLine
componentGC 0.000000 setForeground
componentGC 94 107 107 120 psDrawLine
componentGC 0.000000 setForeground
componentGC 82 94 94 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 77 88 82 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 72 81 77 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 68 76 72 81 psDrawLine
componentGC 0.000000 setForeground
componentGC 64 70 68 76 psDrawLine
componentGC 0.000000 setForeground
componentGC 61 65 64 70 psDrawLine
componentGC 0.000000 setForeground
componentGC 59 60 61 65 psDrawLine
componentGC 0.000000 setForeground
componentGC 57 56 59 60 psDrawLine
componentGC 0.000000 setForeground
componentGC 57 52 57 56 psDrawLine
componentGC 0.000000 setForeground
componentGC 58 46 57 52 psDrawLine
componentGC 0.000000 setForeground
componentGC 62 42 58 46 psDrawLine
componentGC 0.000000 setForeground
componentGC 70 40 62 42 psDrawLine
componentGC 0.000000 setForeground
componentGC 79 40 70 40 psDrawLine
componentGC 0.000000 setForeground
componentGC 91 42 79 40 psDrawLine
componentGC 0.000000 setForeground
componentGC 104 45 91 42 psDrawLine
componentGC 0.000000 setForeground
componentGC 119 49 104 45 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 54 119 49 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 60 134 54 psDrawLine
componentGC 0.000000 setForeground
componentGC 166 66 150 60 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 72 166 66 psDrawLine
componentGC 0.000000 setForeground
componentGC 196 78 181 72 psDrawLine
componentGC 0.000000 setForeground
componentGC 211 84 196 78 psDrawLine
componentGC 0.000000 setForeground
componentGC 224 90 211 84 psDrawLine
componentGC 0.000000 setForeground
componentGC 236 95 224 90 psDrawLine
componentGC 0.000000 setForeground
componentGC 247 100 236 95 psDrawLine
componentGC 0.000000 setForeground
componentGC 256 104 247 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 262 106 256 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 267 108 262 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 268 108 267 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 267 107 268 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 264 105 267 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 257 101 264 105 psDrawLine
componentGC 0.000000 setForeground
componentGC 248 96 257 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 236 90 248 96 psDrawLine
componentGC 0.000000 setForeground
componentGC 223 84 236 90 psDrawLine
componentGC 0.000000 setForeground
componentGC 209 77 223 84 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 74 209 77 psDrawLine
componentGC 0.000000 setForeground
componentGC 195 71 202 74 psDrawLine
componentGC 0.000000 setForeground
componentGC 188 68 195 71 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 65 188 68 psDrawLine
componentGC 0.000000 setForeground
componentGC 175 63 181 65 psDrawLine
componentGC 0.000000 setForeground
componentGC 170 61 175 63 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 59 170 61 psDrawLine
componentGC 0.000000 setForeground
componentGC 160 58 165 59 psDrawLine
componentGC 0.000000 setForeground
componentGC 157 58 160 58 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 57 157 58 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 58 154 57 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 58 152 58 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 61 150 58 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 66 150 61 psDrawLine
componentGC 0.000000 setForeground
componentGC 157 72 152 66 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 79 157 72 psDrawLine
componentGC 0.000000 setForeground
componentGC 174 88 165 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 184 98 174 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 196 108 184 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 119 196 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 220 130 208 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 232 141 220 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 244 153 232 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 255 165 244 153 psDrawLine
componentGC 0.000000 setForeground
componentGC 265 176 255 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 273 187 265 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 280 198 273 187 psDrawLine
componentGC 0.000000 setForeground
componentGC 285 208 280 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 287 217 285 208 psDrawLine
componentGC 0.000000 setForeground
componentGC 287 225 287 217 psDrawLine
componentGC 0.000000 setForeground
componentGC 283 233 287 225 psDrawLine
componentGC 0.000000 setForeground
componentGC 277 238 283 233 psDrawLine
componentGC 0.000000 setForeground
componentGC 267 243 277 238 psDrawLine
componentGC 0.000000 setForeground
componentGC 254 245 267 243 psDrawLine
componentGC 0.000000 setForeground
componentGC 238 246 254 245 psDrawLine
componentGC 0.000000 setForeground
componentGC 220 245 238 246 psDrawLine
componentGC 0.000000 setForeground
componentGC 200 243 220 245 psDrawLine
componentGC 0.000000 setForeground
componentGC 179 239 200 243 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 234 179 239 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 229 158 234 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 223 139 229 psDrawLine
componentGC 0.000000 setForeground
componentGC 108 218 122 223 psDrawLine
componentGC 0.000000 setForeground
componentGC 98 214 108 218 psDrawLine
componentGC 0.000000 setForeground
componentGC 90 210 98 214 psDrawLine
componentGC 0.000000 setForeground
componentGC 87 208 90 210 psDrawLine
componentGC 0.000000 setForeground
componentGC 87 207 87 208 psDrawLine
componentGC 0.000000 setForeground
componentGC 90 207 87 207 psDrawLine
componentGC 0.000000 setForeground
componentGC 95 209 90 207 psDrawLine
componentGC 0.000000 setForeground
componentGC 102 212 95 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 110 216 102 212 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 221 110 216 psDrawLine
componentGC 0.000000 setForeground
componentGC 130 227 120 221 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 233 130 227 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 240 140 233 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 243 150 240 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 247 154 243 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 250 159 247 psDrawLine
componentGC 0.000000 setForeground
componentGC 167 254 163 250 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 257 167 254 psDrawLine
componentGC 0.000000 setForeground
componentGC 174 261 171 257 psDrawLine
componentGC 0.000000 setForeground
componentGC 177 264 174 261 psDrawLine
componentGC 0.000000 setForeground
componentGC 179 268 177 264 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 271 179 268 psDrawLine
componentGC 0.000000 setForeground
componentGC 183 274 181 271 psDrawLine
componentGC 0.000000 setForeground
componentGC 184 277 183 274 psDrawLine
componentGC 0.000000 setForeground
componentGC 184 280 184 277 psDrawLine
componentGC 0.000000 setForeground
componentGC 183 285 184 280 psDrawLine
componentGC 0.000000 setForeground
componentGC 180 289 183 285 psDrawLine
componentGC 0.000000 setForeground
componentGC 173 291 180 289 psDrawLine
componentGC 0.000000 setForeground
componentGC 164 292 173 291 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 291 164 292 psDrawLine
componentGC 0.000000 setForeground
componentGC 137 287 152 291 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 282 137 287 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 275 121 282 psDrawLine
componentGC 0.000000 setForeground
componentGC 84 266 103 275 psDrawLine
componentGC 0.000000 setForeground
componentGC 66 255 84 266 psDrawLine
componentGC 0.000000 setForeground
componentGC 48 243 66 255 psDrawLine
componentGC 0.000000 setForeground
componentGC 33 231 48 243 psDrawLine
componentGC 0.000000 setForeground
componentGC 21 218 33 231 psDrawLine
componentGC 0.000000 setForeground
componentGC 11 207 21 218 psDrawLine
componentGC 0.000000 setForeground
componentGC 6 196 11 207 psDrawLine
componentGC 0.000000 setForeground
componentGC 4 186 6 196 psDrawLine
componentGC 0.000000 setForeground
componentGC 6 178 4 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 11 172 6 178 psDrawLine
componentGC 0.000000 setForeground
componentGC 18 167 11 172 psDrawLine
componentGC 0.000000 setForeground
componentGC 28 164 18 167 psDrawLine
componentGC 0.000000 setForeground
componentGC 39 162 28 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 52 161 39 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 65 162 52 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 79 163 65 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 92 165 79 163 psDrawLine
componentGC 0.000000 setForeground
componentGC 105 168 92 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 112 169 105 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 118 170 112 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 124 171 118 170 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 173 124 171 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 174 129 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 175 135 174 psDrawLine
componentGC 0.000000 setForeground
componentGC 144 176 140 175 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 177 144 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 156 178 149 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 161 179 156 178 psDrawLine
componentGC 0.000000 setForeground
componentGC 164 178 161 179 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 176 164 178 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 173 165 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 168 163 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 161 159 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 153 152 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 132 143 143 153 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 132 132 143 psDrawLine
componentGC 0.000000 setForeground
componentGC 107 120 120 132 psDrawLine
componentGC 0.000000 setForeground
componentGC 94 107 107 120 psDrawLine
componentGC 0.000000 setForeground
componentGC 82 94 94 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 77 88 82 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 72 81 77 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 68 76 72 81 psDrawLine
componentGC 0.000000 setForeground
componentGC 64 70 68 76 psDrawLine
componentGC 0.000000 setForeground
componentGC 61 65 64 70 psDrawLine
componentGC 0.000000 setForeground
componentGC 59 60 61 65 psDrawLine
componentGC 0.000000 setForeground
componentGC 57 56 59 60 psDrawLine
componentGC 0.000000 setForeground
componentGC 57 52 57 56 psDrawLine
componentGC 0.000000 setForeground
componentGC 58 46 57 52 psDrawLine
componentGC 0.000000 setForeground
componentGC 62 42 58 46 psDrawLine
componentGC 0.000000 setForeground
componentGC 70 40 62 42 psDrawLine
componentGC 0.000000 setForeground
componentGC 79 40 70 40 psDrawLine
componentGC 0.000000 setForeground
componentGC 91 42 79 40 psDrawLine
componentGC 0.000000 setForeground
componentGC 104 45 91 42 psDrawLine
componentGC 0.000000 setForeground
componentGC 119 49 104 45 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 54 119 49 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 60 134 54 psDrawLine
componentGC 0.000000 setForeground
componentGC 166 66 150 60 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 72 166 66 psDrawLine
componentGC 0.000000 setForeground
componentGC 196 78 181 72 psDrawLine
componentGC 0.000000 setForeground
componentGC 211 84 196 78 psDrawLine
componentGC 0.000000 setForeground
componentGC 224 90 211 84 psDrawLine
componentGC 0.000000 setForeground
componentGC 236 95 224 90 psDrawLine
componentGC 0.000000 setForeground
componentGC 247 100 236 95 psDrawLine
componentGC 0.000000 setForeground
componentGC 256 104 247 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 262 106 256 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 267 108 262 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 268 108 267 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 267 107 268 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 264 105 267 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 257 101 264 105 psDrawLine
componentGC 0.000000 setForeground
componentGC 248 96 257 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 236 90 248 96 psDrawLine
componentGC 0.000000 setForeground
componentGC 223 84 236 90 psDrawLine
componentGC 0.000000 setForeground
componentGC 209 77 223 84 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 74 209 77 psDrawLine
componentGC 0.000000 setForeground
componentGC 195 71 202 74 psDrawLine
componentGC 0.000000 setForeground
componentGC 188 68 195 71 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 65 188 68 psDrawLine
componentGC 0.000000 setForeground
componentGC 175 63 181 65 psDrawLine
componentGC 0.000000 setForeground
componentGC 170 61 175 63 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 59 170 61 psDrawLine
componentGC 0.000000 setForeground
componentGC 160 58 165 59 psDrawLine
componentGC 0.000000 setForeground
componentGC 157 58 160 58 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 57 157 58 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 58 154 57 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 58 152 58 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 61 150 58 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 66 150 61 psDrawLine
componentGC 0.000000 setForeground
componentGC 157 72 152 66 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 79 157 72 psDrawLine
componentGC 0.000000 setForeground
componentGC 174 88 165 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 184 98 174 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 196 108 184 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 119 196 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 220 130 208 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 232 141 220 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 244 153 232 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 255 165 244 153 psDrawLine
componentGC 0.000000 setForeground
componentGC 265 176 255 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 273 187 265 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 280 198 273 187 psDrawLine
componentGC 0.000000 setForeground
componentGC 285 208 280 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 287 217 285 208 psDrawLine
componentGC 0.000000 setForeground
componentGC 287 225 287 217 psDrawLine
componentGC 0.000000 setForeground
componentGC 283 233 287 225 psDrawLine
componentGC 0.000000 setForeground
componentGC 277 238 283 233 psDrawLine
componentGC 0.000000 setForeground
componentGC 267 243 277 238 psDrawLine
componentGC 0.000000 setForeground
componentGC 254 245 267 243 psDrawLine
componentGC 0.000000 setForeground
componentGC 238 246 254 245 psDrawLine
componentGC 0.000000 setForeground
componentGC 220 245 238 246 psDrawLine
componentGC 0.000000 setForeground
componentGC 200 243 220 245 psDrawLine
componentGC 0.000000 setForeground
componentGC 179 239 200 243 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 234 179 239 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 229 158 234 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 223 139 229 psDrawLine
componentGC 0.000000 setForeground
componentGC 108 218 122 223 psDrawLine
componentGC 0.000000 setForeground
componentGC 98 214 108 218 psDrawLine
componentGC 0.000000 setForeground
componentGC 90 210 98 214 psDrawLine
componentGC 0.000000 setForeground
componentGC 87 208 90 210 psDrawLine
componentGC 0.000000 setForeground
componentGC 87 207 87 208 psDrawLine
componentGC 0.000000 setForeground
componentGC 90 207 87 207 psDrawLine
componentGC 0.000000 setForeground
componentGC 95 209 90 207 psDrawLine
componentGC 0.000000 setForeground
componentGC 102 212 95 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 110 216 102 212 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 221 110 216 psDrawLine
componentGC 0.000000 setForeground
componentGC 130 227 120 221 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 233 130 227 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 240 140 233 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 243 150 240 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 247 154 243 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 250 159 247 psDrawLine
componentGC 0.000000 setForeground
componentGC 167 254 163 250 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 257 167 254 psDrawLine
componentGC 0.000000 setForeground
componentGC 174 261 171 257 psDrawLine
componentGC 0.000000 setForeground
componentGC 177 264 174 261 psDrawLine
componentGC 0.000000 setForeground
componentGC 179 268 177 264 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 271 179 268 psDrawLine
componentGC 0.000000 setForeground
componentGC 183 274 181 271 psDrawLine
componentGC 0.000000 setForeground
componentGC 184 277 183 274 psDrawLine
componentGC 0.000000 setForeground
componentGC 184 280 184 277 psDrawLine
componentGC 0.000000 setForeground
componentGC 183 285 184 280 psDrawLine
componentGC 0.000000 setForeground
componentGC 180 289 183 285 psDrawLine
componentGC 0.000000 setForeground
componentGC 173 291 180 289 psDrawLine
componentGC 0.000000 setForeground
componentGC 164 292 173 291 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 291 164 292 psDrawLine
componentGC 0.000000 setForeground
componentGC 137 287 152 291 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 282 137 287 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 275 121 282 psDrawLine
componentGC 0.000000 setForeground
componentGC 84 266 103 275 psDrawLine
componentGC 0.000000 setForeground
componentGC 66 255 84 266 psDrawLine
componentGC 0.000000 setForeground
componentGC 48 243 66 255 psDrawLine
componentGC 0.000000 setForeground
componentGC 33 231 48 243 psDrawLine
componentGC 0.000000 setForeground
componentGC 21 218 33 231 psDrawLine
componentGC 0.000000 setForeground
componentGC 11 207 21 218 psDrawLine
componentGC 0.000000 setForeground
componentGC 6 196 11 207 psDrawLine
componentGC 0.000000 setForeground
componentGC 4 186 6 196 psDrawLine
componentGC 0.000000 setForeground
componentGC 6 178 4 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 11 172 6 178 psDrawLine
componentGC 0.000000 setForeground
componentGC 18 167 11 172 psDrawLine
componentGC 0.000000 setForeground
componentGC 28 164 18 167 psDrawLine
componentGC 0.000000 setForeground
componentGC 39 162 28 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 52 161 39 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 65 162 52 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 79 163 65 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 92 165 79 163 psDrawLine
componentGC 0.000000 setForeground
componentGC 105 168 92 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 112 169 105 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 118 170 112 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 124 171 118 170 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 173 124 171 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 174 129 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 175 135 174 psDrawLine
componentGC 0.000000 setForeground
componentGC 144 176 140 175 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 177 144 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 156 178 149 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 161 179 156 178 psDrawLine
componentGC 0.000000 setForeground
componentGC 164 178 161 179 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 176 164 178 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 173 165 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 168 163 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 161 159 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 153 152 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 132 143 143 153 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 132 132 143 psDrawLine
componentGC 0.000000 setForeground
componentGC 107 120 120 132 psDrawLine
componentGC 0.000000 setForeground
componentGC 94 107 107 120 psDrawLine
componentGC 0.000000 setForeground
componentGC 82 94 94 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 77 88 82 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 72 81 77 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 68 76 72 81 psDrawLine
componentGC 0.000000 setForeground
componentGC 64 70 68 76 psDrawLine
componentGC 0.000000 setForeground
componentGC 61 65 64 70 psDrawLine
componentGC 0.000000 setForeground
componentGC 59 60 61 65 psDrawLine
componentGC 0.000000 setForeground
componentGC 57 56 59 60 psDrawLine
componentGC 0.000000 setForeground
componentGC 57 52 57 56 psDrawLine
componentGC 0.000000 setForeground
componentGC 58 46 57 52 psDrawLine
componentGC 0.000000 setForeground
componentGC 62 42 58 46 psDrawLine
componentGC 0.000000 setForeground
componentGC 70 40 62 42 psDrawLine
componentGC 0.000000 setForeground
componentGC 79 40 70 40 psDrawLine
componentGC 0.000000 setForeground
componentGC 91 42 79 40 psDrawLine
componentGC 0.000000 setForeground
componentGC 104 45 91 42 psDrawLine
componentGC 0.000000 setForeground
componentGC 119 49 104 45 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 54 119 49 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 60 134 54 psDrawLine
componentGC 0.000000 setForeground
componentGC 166 66 150 60 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 72 166 66 psDrawLine
componentGC 0.000000 setForeground
componentGC 196 78 181 72 psDrawLine
componentGC 0.000000 setForeground
componentGC 211 84 196 78 psDrawLine
componentGC 0.000000 setForeground
componentGC 224 90 211 84 psDrawLine
componentGC 0.000000 setForeground
componentGC 236 95 224 90 psDrawLine
componentGC 0.000000 setForeground
componentGC 247 100 236 95 psDrawLine
componentGC 0.000000 setForeground
componentGC 256 104 247 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 262 106 256 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 267 108 262 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 268 108 267 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 267 107 268 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 264 105 267 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 257 101 264 105 psDrawLine
componentGC 0.000000 setForeground
componentGC 248 96 257 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 236 90 248 96 psDrawLine
componentGC 0.000000 setForeground
componentGC 223 84 236 90 psDrawLine
componentGC 0.000000 setForeground
componentGC 209 77 223 84 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 74 209 77 psDrawLine
componentGC 0.000000 setForeground
componentGC 195 71 202 74 psDrawLine
componentGC 0.000000 setForeground
componentGC 188 68 195 71 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 65 188 68 psDrawLine
componentGC 0.000000 setForeground
componentGC 175 63 181 65 psDrawLine
componentGC 0.000000 setForeground
componentGC 170 61 175 63 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 59 170 61 psDrawLine
componentGC 0.000000 setForeground
componentGC 160 58 165 59 psDrawLine
componentGC 0.000000 setForeground
componentGC 157 58 160 58 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 57 157 58 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 58 154 57 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 58 152 58 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 61 150 58 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 66 150 61 psDrawLine
componentGC 0.000000 setForeground
componentGC 157 72 152 66 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 79 157 72 psDrawLine
componentGC 0.000000 setForeground
componentGC 174 88 165 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 184 98 174 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 196 108 184 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 119 196 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 220 130 208 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 232 141 220 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 244 153 232 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 255 165 244 153 psDrawLine
componentGC 0.000000 setForeground
componentGC 265 176 255 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 273 187 265 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 280 198 273 187 psDrawLine
componentGC 0.000000 setForeground
componentGC 285 208 280 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 287 217 285 208 psDrawLine
componentGC 0.000000 setForeground
componentGC 287 225 287 217 psDrawLine
componentGC 0.000000 setForeground
componentGC 283 233 287 225 psDrawLine
componentGC 0.000000 setForeground
componentGC 277 238 283 233 psDrawLine
componentGC 0.000000 setForeground
componentGC 267 243 277 238 psDrawLine
grestore % restore graphics state
cleartomark %% clearing operand stack
end %% pops mainDict from dictionary stack
showpage
%-------------------------- end --------------------------%