-
Notifications
You must be signed in to change notification settings - Fork 2
/
random_NE-RDF.eps
1597 lines (1537 loc) · 23.2 KB
/
random_NE-RDF.eps
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%!PS-Adobe-3.0 EPSF-3.0
%%Title: random_NE-RDF.eps
%%Creator: matplotlib version 2.2.3, http://matplotlib.org/
%%CreationDate: Sat Apr 13 12:48:15 2019
%%Orientation: portrait
%%BoundingBox: 0 180 612 612
%%EndComments
%%BeginProlog
/mpldict 9 dict def
mpldict begin
/m { moveto } bind def
/l { lineto } bind def
/r { rlineto } bind def
/c { curveto } bind def
/cl { closepath } bind def
/box {
m
1 index 0 r
0 exch r
neg 0 r
cl
} bind def
/clipbox {
box
clip
newpath
} bind def
%!PS-Adobe-3.0 Resource-Font
%%Title: Arial
%%Copyright: © 2006 The Monotype Corporation. All Rights Reserved.
%%Creator: Converted from TrueType to type 3 by PPR
25 dict begin
/_d{bind def}bind def
/_m{moveto}_d
/_l{lineto}_d
/_cl{closepath eofill}_d
/_c{curveto}_d
/_sc{7 -1 roll{setcachedevice}{pop pop pop pop pop pop}ifelse}_d
/_e{exec}_d
/FontName /ArialMT def
/PaintType 0 def
/FontMatrix[.001 0 0 .001 0 0]def
/FontBBox[-665 -325 2000 1006]def
/FontType 3 def
/Encoding [ /space /parenleft /parenright /hyphen /period /zero /one /two /three /four /five /six /E /G /I /N /S /g ] def
/FontInfo 10 dict dup begin
/FamilyName (Arial) def
/FullName (Arial) def
/Notice (© 2006 The Monotype Corporation. All Rights Reserved. Arial is a trademark of The Monotype Corporation in the United States and/or other countries.) def
/Weight (Regular) def
/Version (Version 5.01.2x) def
/ItalicAngle 0.0 def
/isFixedPitch false def
/UnderlinePosition -217 def
/UnderlineThickness 150 def
end readonly def
/CharStrings 19 dict dup begin
/.notdef 0 def
/space{278 0 0 0 0 0 _sc
}_d
/parenleft{333 0 61 -209 297 728 _sc
234 -209 _m
185 -148 144 -77 111 4 _c
77 86 61 171 61 259 _c
61 336 73 410 98 482 _c
127 564 172 646 234 728 _c
297 728 _l
257 660 231 611 219 583 _c
199 538 183 491 172 442 _c
158 381 151 320 151 259 _c
151 102 199 -53 297 -209 _c
234 -209 _l
_cl}_d
/parenright{333 0 61 -209 297 728 _sc
124 -209 _m
61 -209 _l
158 -53 207 102 207 259 _c
207 320 200 381 186 441 _c
174 489 159 536 139 582 _c
126 610 100 659 61 728 _c
124 728 _l
184 646 229 564 259 482 _c
284 410 297 336 297 259 _c
297 171 280 86 246 4 _c
212 -77 172 -148 124 -209 _c
_cl}_d
/hyphen{333 0 32 215 302 303 _sc
32 215 _m
32 303 _l
302 303 _l
302 215 _l
32 215 _l
_cl}_d
/period{278 0 91 0 191 100 _sc
91 0 _m
91 100 _l
191 100 _l
191 0 _l
91 0 _l
_cl}_d
/zero{{556 0 42 -11 508 719 _sc
42 353 _m
42 437 50 505 68 557 _c
85 609 111 649 145 677 _c
179 705 223 719 275 719 _c
313 719 347 711 376 695 _c
404 679 428 657 447 628 _c
466 599 481 564 492 522 _c
502 480 508 423 508 353 _c
508 269 499 201 482 149 _c
465 97 439 58 405 30 _c
371 2 327 -11 275 -11 _c
205 -11 151 13 112 62 _c
65 121 42 218 42 353 _c
132 353 _m
}_e{132 235 145 157 173 118 _c
200 79 234 60 275 60 _c
315 60 348 79 376 118 _c
404 157 418 235 418 353 _c
418 471 404 549 376 588 _c
348 626 314 646 274 646 _c
233 646 201 629 177 595 _c
147 551 132 470 132 353 _c
_cl}_e}_d
/one{556 0 109 0 373 719 _sc
373 0 _m
285 0 _l
285 560 _l
263 540 235 519 201 499 _c
167 479 136 464 109 454 _c
109 539 _l
158 562 201 590 238 623 _c
274 655 300 687 316 719 _c
373 719 _l
373 0 _l
_cl}_d
/two{{556 0 29 0 503 719 _sc
503 84 _m
503 0 _l
30 0 _l
29 21 33 41 41 61 _c
53 93 72 124 98 156 _c
124 187 163 223 213 265 _c
291 328 343 378 371 416 _c
398 453 412 488 412 522 _c
412 556 399 586 374 610 _c
349 634 317 646 277 646 _c
235 646 201 633 176 608 _c
150 582 137 547 137 502 _c
47 512 _l
53 579 76 630 116 666 _c
156 701 211 719 279 719 _c
}_e{347 719 402 699 442 661 _c
482 623 502 576 502 520 _c
502 491 496 463 484 435 _c
472 407 453 378 426 348 _c
399 317 354 275 291 222 _c
238 178 204 148 189 132 _c
174 116 162 100 152 84 _c
503 84 _l
_cl}_e}_d
/three{{556 0 42 -12 511 719 _sc
42 189 _m
130 201 _l
140 151 157 115 181 93 _c
205 71 235 60 270 60 _c
311 60 346 74 374 103 _c
402 131 417 167 417 209 _c
417 249 403 283 377 309 _c
351 335 317 349 277 349 _c
260 349 239 345 215 339 _c
225 416 _l
231 415 235 415 239 415 _c
276 415 310 424 340 444 _c
370 464 385 494 385 535 _c
385 567 374 593 352 614 _c
}_e{330 635 302 646 268 646 _c
234 646 205 635 182 614 _c
159 592 145 560 139 518 _c
51 533 _l
61 592 86 638 124 670 _c
162 702 209 719 266 719 _c
305 719 341 710 374 693 _c
406 676 431 653 449 625 _c
467 596 476 565 476 533 _c
476 501 467 473 451 448 _c
434 422 409 402 377 388 _c
419 378 451 357 475 327 _c
499 296 511 257 511 211 _c
511 149 488 96 442 53 _c
}_e{396 9 339 -12 270 -12 _c
206 -12 154 6 113 44 _c
71 81 48 129 42 189 _c
_cl}_e}_d
/four{556 0 13 0 508 716 _sc
323 0 _m
323 171 _l
13 171 _l
13 252 _l
339 716 _l
411 716 _l
411 252 _l
508 252 _l
508 171 _l
411 171 _l
411 0 _l
323 0 _l
323 252 _m
323 575 _l
99 252 _l
323 252 _l
_cl}_d
/five{{556 0 42 -11 516 706 _sc
42 188 _m
134 195 _l
140 150 156 116 181 94 _c
206 71 236 60 271 60 _c
313 60 349 76 379 108 _c
408 140 423 182 423 235 _c
423 285 408 324 380 353 _c
352 382 315 397 270 397 _c
242 397 216 390 193 377 _c
170 364 152 348 140 328 _c
57 338 _l
126 706 _l
482 706 _l
482 622 _l
197 622 _l
158 430 _l
201 460 246 475 293 475 _c
}_e{355 475 408 453 451 410 _c
494 366 516 311 516 243 _c
516 178 497 122 459 75 _c
413 17 351 -11 271 -11 _c
206 -11 153 7 112 43 _c
70 79 47 127 42 188 _c
_cl}_e}_d
/six{{556 0 38 -11 510 719 _sc
498 541 _m
410 534 _l
402 568 391 593 377 609 _c
353 633 323 646 289 646 _c
261 646 236 638 215 623 _c
187 603 166 573 150 535 _c
134 496 125 441 125 369 _c
146 401 172 424 203 440 _c
233 456 265 464 299 464 _c
357 464 407 442 448 399 _c
489 356 510 300 510 232 _c
510 187 500 145 481 107 _c
461 68 435 39 401 19 _c
367 -1 329 -11 286 -11 _c
}_e{212 -11 153 15 107 69 _c
61 122 38 211 38 335 _c
38 473 63 573 114 637 _c
158 691 218 719 294 719 _c
350 719 397 703 433 671 _c
469 639 490 596 498 541 _c
139 232 _m
139 202 145 173 158 145 _c
170 117 188 96 212 82 _c
235 67 259 60 285 60 _c
321 60 353 75 380 105 _c
406 135 420 175 420 227 _c
420 276 406 315 380 344 _c
354 372 321 387 281 387 _c
}_e{241 387 208 372 180 344 _c
152 315 139 278 139 232 _c
_cl}_e}_d
/E{667 0 79 0 613 716 _sc
79 0 _m
79 716 _l
597 716 _l
597 631 _l
174 631 _l
174 412 _l
570 412 _l
570 328 _l
174 328 _l
174 84 _l
613 84 _l
613 0 _l
79 0 _l
_cl}_d
/G{{778 0 53 -11 715 728 _sc
412 281 _m
412 365 _l
715 365 _l
715 100 _l
669 62 621 34 571 16 _c
521 -2 471 -11 419 -11 _c
348 -11 284 3 227 33 _c
169 63 126 106 97 163 _c
67 220 53 284 53 354 _c
53 424 67 489 97 549 _c
126 609 168 654 223 684 _c
277 713 340 728 412 728 _c
463 728 510 719 552 703 _c
594 686 626 663 650 633 _c
674 603 692 564 705 516 _c
619 492 _l
}_e{608 528 595 557 579 578 _c
563 598 540 615 510 628 _c
480 640 448 647 412 647 _c
368 647 331 640 299 627 _c
267 613 242 596 223 575 _c
203 553 188 530 178 504 _c
160 460 151 412 151 360 _c
151 296 162 243 184 200 _c
206 157 238 125 280 104 _c
322 83 366 73 414 73 _c
454 73 494 81 533 97 _c
572 113 602 129 623 147 _c
623 281 _l
412 281 _l
_cl}_e}_d
/I{278 0 93 0 188 716 _sc
93 0 _m
93 716 _l
188 716 _l
188 0 _l
93 0 _l
_cl}_d
/N{722 0 76 0 640 716 _sc
76 0 _m
76 716 _l
173 716 _l
549 154 _l
549 716 _l
640 716 _l
640 0 _l
543 0 _l
167 563 _l
167 0 _l
76 0 _l
_cl}_d
/S{{667 0 45 -11 615 728 _sc
45 230 _m
134 238 _l
138 202 148 172 164 149 _c
179 126 203 108 236 94 _c
268 80 305 73 346 73 _c
382 73 413 78 441 89 _c
469 99 489 114 503 133 _c
516 151 523 172 523 194 _c
523 216 516 236 503 253 _c
490 269 469 283 439 295 _c
420 303 378 314 312 330 _c
246 346 200 361 174 375 _c
140 393 114 415 97 441 _c
80 467 72 497 72 531 _c
}_e{72 567 82 600 103 632 _c
123 663 153 687 193 703 _c
232 719 276 728 324 728 _c
377 728 424 719 464 702 _c
504 685 536 660 558 627 _c
580 593 591 556 593 514 _c
502 507 _l
497 552 481 586 453 610 _c
425 633 383 645 328 645 _c
270 645 229 634 203 613 _c
177 592 164 567 164 537 _c
164 511 173 490 191 474 _c
209 457 257 440 334 422 _c
411 404 464 389 493 377 _c
}_e{534 357 565 333 585 304 _c
605 274 615 240 615 202 _c
615 164 604 128 582 94 _c
560 60 528 34 488 16 _c
447 -2 401 -11 350 -11 _c
285 -11 231 -2 187 16 _c
143 34 109 63 84 101 _c
59 139 46 182 45 230 _c
_cl}_e}_d
/g{{556 0 32 -209 489 530 _sc
50 -42 _m
135 -55 _l
139 -81 149 -100 165 -112 _c
187 -128 216 -137 254 -137 _c
294 -137 326 -128 348 -112 _c
370 -96 386 -73 394 -44 _c
398 -26 400 11 400 68 _c
361 22 313 0 256 0 _c
184 0 129 25 90 77 _c
51 128 32 190 32 262 _c
32 311 41 357 59 399 _c
77 441 103 473 137 496 _c
171 518 211 530 257 530 _c
318 530 368 505 408 456 _c
}_e{408 519 _l
489 519 _l
489 70 _l
489 -10 480 -66 464 -100 _c
448 -134 422 -160 386 -180 _c
350 -199 307 -209 255 -209 _c
193 -209 143 -195 105 -167 _c
67 -139 48 -98 50 -42 _c
123 269 _m
123 201 136 151 163 120 _c
190 88 224 73 265 73 _c
305 73 338 88 366 119 _c
393 150 407 199 407 266 _c
407 329 393 377 365 409 _c
337 441 303 458 263 458 _c
224 458 191 442 164 410 _c
}_e{136 378 123 331 123 269 _c
_cl}_e}_d
end readonly def
/BuildGlyph
{exch begin
CharStrings exch
2 copy known not{pop /.notdef}if
true 3 1 roll get exec
end}_d
/BuildChar {
1 index /Encoding get exch get
1 index /BuildGlyph get exec
}_d
FontName currentdict end definefont pop
%!PS-Adobe-3.0 Resource-Font
%%Title: DejaVu Sans Oblique
%%Copyright: Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. DejaVu changes are in public domain
%%Creator: Converted from TrueType to type 3 by PPR
25 dict begin
/_d{bind def}bind def
/_m{moveto}_d
/_l{lineto}_d
/_cl{closepath eofill}_d
/_c{curveto}_d
/_sc{7 -1 roll{setcachedevice}{pop pop pop pop pop pop}ifelse}_d
/_e{exec}_d
/FontName /DejaVuSans-Oblique def
/PaintType 0 def
/FontMatrix[.001 0 0 .001 0 0]def
/FontBBox[-1016 -350 1659 1068]def
/FontType 3 def
/Encoding [ /m /r /mu /uni03BC ] def
/FontInfo 10 dict dup begin
/FamilyName (DejaVu Sans) def
/FullName (DejaVu Sans Oblique) def
/Notice (Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. DejaVu changes are in public domain ) def
/Weight (Oblique) def
/Version (Version 2.35) def
/ItalicAngle -11.0 def
/isFixedPitch false def
/UnderlinePosition -130 def
/UnderlineThickness 90 def
end readonly def
/CharStrings 5 dict dup begin
/.notdef 0 def
/m{{974 0 35 0 906 560 _sc
898 330 _m
834 0 _l
744 0 _l
807 327 _l
809 341 811 353 813 363 _c
814 373 815 381 815 389 _c
815 418 806 441 790 457 _c
774 473 751 482 722 482 _c
678 482 639 465 605 433 _c
571 400 549 357 539 305 _c
479 0 _l
389 0 _l
453 327 _l
455 339 457 350 459 360 _c
460 370 461 380 461 388 _c
461 418 452 441 436 457 _c
420 473 397 482 369 482 _c
}_e{325 482 285 465 251 433 _c
217 400 195 357 185 305 _c
125 0 _l
35 0 _l
142 547 _l
232 547 _l
215 462 _l
239 494 267 518 300 535 _c
333 551 368 560 406 560 _c
445 560 477 549 503 529 _c
529 508 544 479 550 442 _c
577 480 609 510 645 530 _c
681 550 719 560 759 560 _c
805 560 841 546 867 519 _c
893 492 906 454 906 405 _c
906 394 905 382 904 369 _c
}_e{902 356 900 343 898 330 _c
_cl}_e}_d
/r{411 0 35 0 463 560 _sc
446 464 _m
436 468 426 472 414 475 _c
402 477 390 479 377 479 _c
329 479 287 460 251 424 _c
215 388 192 339 180 279 _c
125 0 _l
35 0 _l
142 547 _l
232 547 _l
215 462 _l
238 493 266 517 300 534 _c
333 551 368 560 406 560 _c
415 560 424 559 434 558 _c
444 557 453 555 463 553 _c
446 464 _l
_cl}_d
/mu{{636 0 -12 -207 592 547 _sc
-12 -207 _m
134 547 _l
224 547 _l
158 207 _l
156 199 155 191 154 183 _c
153 175 153 166 153 158 _c
153 128 162 104 181 88 _c
200 72 227 64 263 64 _c
311 64 349 77 379 105 _c
409 132 429 173 440 228 _c
502 547 _l
592 547 _l
510 126 _l
508 120 507 114 507 110 _c
507 106 507 102 507 98 _c
507 88 509 80 513 76 _c
517 71 523 69 532 69 _c
}_e{535 69 539 69 545 71 _c
551 73 559 76 570 80 _c
556 8 _l
542 1 528 -3 515 -7 _c
502 -11 489 -13 477 -13 _c
455 -13 438 -6 426 7 _c
414 20 408 39 408 63 _c
390 37 368 17 343 5 _c
317 -7 288 -13 254 -13 _c
223 -13 196 -6 174 7 _c
152 21 137 39 130 62 _c
77 -207 _l
-12 -207 _l
_cl}_e}_d
/uni03BC{636 0 -12 -207 592 547 _sc
false CharStrings /mu get exec
}_d
end readonly def
/BuildGlyph
{exch begin
CharStrings exch
2 copy known not{pop /.notdef}if
true 3 1 roll get exec
end}_d
/BuildChar {
1 index /Encoding get exch get
1 index /BuildGlyph get exec
}_d
FontName currentdict end definefont pop
end
%%EndProlog
mpldict begin
0 180 translate
612 432 0 0 clipbox
gsave
0 0 m
612 0 l
612 432 l
0 432 l
cl
1.000 setgray
fill
grestore
gsave
110.16 64.8 m
550.8 64.8 l
550.8 380.16 l
110.16 380.16 l
cl
1.000 setgray
fill
grestore
0.800 setlinewidth
1 setlinejoin
0 setlinecap
[] 0 setdash
0.000 setgray
gsave
/o {
gsave
newpath
translate
0.8 setlinewidth
1 setlinejoin
0 setlinecap
0 0 m
0 3.5 l
gsave
0.000 setgray
fill
grestore
stroke
grestore
} bind def
110.16 64.8 o
grestore
/ArialMT findfont
20.000 scalefont
setfont
gsave
96.253750 44.487500 translate
0.000000 rotate
0.000000 0.000000 m /zero glyphshow
11.123047 0.000000 m /period glyphshow
16.679688 0.000000 m /zero glyphshow
grestore
gsave
/o {
gsave
newpath
translate
0.8 setlinewidth
1 setlinejoin
0 setlinecap
0 0 m
0 3.5 l
gsave
0.000 setgray
fill
grestore
stroke
grestore
} bind def
183.6 64.8 o
grestore
gsave
169.693750 44.487500 translate
0.000000 rotate
0.000000 0.000000 m /zero glyphshow
11.123047 0.000000 m /period glyphshow
16.679688 0.000000 m /one glyphshow
grestore
gsave
/o {
gsave
newpath
translate
0.8 setlinewidth
1 setlinejoin
0 setlinecap
0 0 m
0 3.5 l
gsave
0.000 setgray
fill
grestore
stroke
grestore
} bind def
257.04 64.8 o
grestore
gsave
243.133750 44.487500 translate
0.000000 rotate
0.000000 0.000000 m /zero glyphshow
11.123047 0.000000 m /period glyphshow
16.679688 0.000000 m /two glyphshow
grestore
gsave
/o {
gsave
newpath
translate
0.8 setlinewidth
1 setlinejoin
0 setlinecap
0 0 m
0 3.5 l
gsave
0.000 setgray
fill
grestore
stroke
grestore
} bind def
330.48 64.8 o
grestore
gsave
316.573750 44.487500 translate
0.000000 rotate
0.000000 0.000000 m /zero glyphshow
11.123047 0.000000 m /period glyphshow
16.679688 0.000000 m /three glyphshow
grestore
gsave
/o {
gsave
newpath
translate
0.8 setlinewidth
1 setlinejoin
0 setlinecap
0 0 m
0 3.5 l
gsave
0.000 setgray
fill
grestore
stroke
grestore
} bind def
403.92 64.8 o
grestore
gsave
390.013750 44.487500 translate
0.000000 rotate
0.000000 0.000000 m /zero glyphshow
11.123047 0.000000 m /period glyphshow
16.679688 0.000000 m /four glyphshow
grestore
gsave
/o {
gsave
newpath
translate
0.8 setlinewidth
1 setlinejoin
0 setlinecap
0 0 m
0 3.5 l
gsave
0.000 setgray
fill
grestore
stroke
grestore
} bind def
477.36 64.8 o
grestore
gsave
463.453750 44.487500 translate
0.000000 rotate
0.000000 0.000000 m /zero glyphshow
11.123047 0.000000 m /period glyphshow
16.679688 0.000000 m /five glyphshow
grestore
gsave
/o {
gsave
newpath
translate
0.8 setlinewidth
1 setlinejoin
0 setlinecap
0 0 m
0 3.5 l
gsave
0.000 setgray
fill
grestore
stroke
grestore
} bind def
550.8 64.8 o
grestore
gsave
536.893750 44.487500 translate
0.000000 rotate
0.000000 0.000000 m /zero glyphshow
11.123047 0.000000 m /period glyphshow
16.679688 0.000000 m /six glyphshow
grestore
0.600 setlinewidth
gsave
/o {
gsave
newpath
translate
0.6 setlinewidth
1 setlinejoin
0 setlinecap
0 0 m
0 -2 l
gsave
0.000 setgray
fill
grestore
stroke
grestore
} bind def
110.16 64.8 o
grestore
gsave
/o {
gsave
newpath
translate
0.6 setlinewidth
1 setlinejoin
0 setlinecap
0 0 m
0 -2 l
gsave
0.000 setgray
fill
grestore
stroke
grestore
} bind def
146.88 64.8 o
grestore
gsave
/o {
gsave
newpath
translate
0.6 setlinewidth
1 setlinejoin
0 setlinecap
0 0 m
0 -2 l
gsave
0.000 setgray
fill
grestore
stroke
grestore
} bind def
183.6 64.8 o
grestore
gsave
/o {
gsave
newpath
translate
0.6 setlinewidth
1 setlinejoin
0 setlinecap
0 0 m
0 -2 l
gsave
0.000 setgray
fill
grestore
stroke
grestore
} bind def
220.32 64.8 o
grestore
gsave
/o {
gsave
newpath
translate
0.6 setlinewidth
1 setlinejoin
0 setlinecap
0 0 m
0 -2 l
gsave
0.000 setgray
fill
grestore
stroke
grestore
} bind def
257.04 64.8 o
grestore
gsave
/o {
gsave
newpath
translate
0.6 setlinewidth
1 setlinejoin
0 setlinecap
0 0 m
0 -2 l
gsave
0.000 setgray
fill
grestore
stroke
grestore
} bind def
293.76 64.8 o
grestore
gsave
/o {
gsave
newpath
translate
0.6 setlinewidth
1 setlinejoin
0 setlinecap
0 0 m
0 -2 l
gsave
0.000 setgray
fill
grestore
stroke
grestore
} bind def
330.48 64.8 o
grestore
gsave
/o {
gsave
newpath
translate
0.6 setlinewidth
1 setlinejoin
0 setlinecap
0 0 m
0 -2 l
gsave
0.000 setgray
fill
grestore
stroke
grestore
} bind def
367.2 64.8 o
grestore
gsave
/o {
gsave
newpath
translate
0.6 setlinewidth
1 setlinejoin
0 setlinecap
0 0 m
0 -2 l
gsave
0.000 setgray
fill
grestore
stroke
grestore
} bind def
403.92 64.8 o
grestore
gsave
/o {
gsave
newpath
translate
0.6 setlinewidth
1 setlinejoin
0 setlinecap
0 0 m
0 -2 l
gsave
0.000 setgray
fill
grestore
stroke
grestore
} bind def
440.64 64.8 o
grestore
gsave
/o {
gsave
newpath
translate
0.6 setlinewidth
1 setlinejoin
0 setlinecap
0 0 m
0 -2 l
gsave
0.000 setgray
fill
grestore
stroke
grestore
} bind def
477.36 64.8 o
grestore
gsave
/o {
gsave