-
Notifications
You must be signed in to change notification settings - Fork 3
/
venn2.eps
1165 lines (1089 loc) · 25.4 KB
/
venn2.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: venn2.eps
%%Creator: matplotlib version 1.5.1, http://matplotlib.org/
%%CreationDate: Mon Jun 6 13:22:11 2016
%%Orientation: portrait
%%BoundingBox: 118 214 493 577
%%EndComments
%%BeginProlog
/mpldict 11 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: Bitstream Vera Sans
%%Copyright: Copyright (c) 2003 by Bitstream, Inc. 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 /BitstreamVeraSans-Roman def
/PaintType 0 def
/FontMatrix[.001 0 0 .001 0 0]def
/FontBBox[-183 -236 1287 928]def
/FontType 3 def
/Encoding [ /X /Y /Z ] def
/FontInfo 10 dict dup begin
/FamilyName (Bitstream Vera Sans) def
/FullName (Bitstream Vera Sans) def
/Notice (Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is a trademark of Bitstream, Inc.) def
/Weight (Roman) def
/Version (Release 1.10) def
/ItalicAngle 0.0 def
/isFixedPitch false def
/UnderlinePosition -213 def
/UnderlineThickness 143 def
end readonly def
/CharStrings 3 dict dup begin
/X{685 0 30 0 654 729 _sc
63 729 _m
169 729 _l
350 458 _l
532 729 _l
638 729 _l
404 379 _l
654 0 _l
548 0 _l
343 310 _l
136 0 _l
30 0 _l
290 389 _l
63 729 _l
_cl}_d
/Y{611 0 -1 0 613 729 _sc
-1 729 _m
104 729 _l
306 429 _l
507 729 _l
613 729 _l
355 347 _l
355 0 _l
256 0 _l
256 347 _l
-1 729 _l
_cl}_d
/Z{685 0 45 0 640 729 _sc
56 729 _m
629 729 _l
629 654 _l
168 83 _l
640 83 _l
640 0 _l
45 0 _l
45 75 _l
506 646 _l
56 646 _l
56 729 _l
_cl}_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: cmr10
%%Copyright: Copyright (C) 1994, Basil K. Malyshev. All Rights Reserved.012BaKoMa Fonts Collection, Level-B.
%%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 /Cmr10 def
/PaintType 0 def
/FontMatrix[.001 0 0 .001 0 0]def
/FontBBox[-44 -250 1009 750]def
/FontType 3 def
/Encoding [ /semicolon /parenright /parenleft ] def
/FontInfo 10 dict dup begin
/FamilyName (cmr10) def
/FullName (cmr10) def
/Notice (Copyright (C) 1994, Basil K. Malyshev. All Rights Reserved.012BaKoMa Fonts Collection, Level-B. ) def
/Weight (Regular) def
/Version (1.1/12-Nov-94) def
/ItalicAngle 0.0 def
/isFixedPitch false def
/UnderlinePosition -133 def
/UnderlineThickness 20 def
end readonly def
/CharStrings 3 dict dup begin
/semicolon{{277 0 84 -193 197 431 _sc
99 -179 _m
99 -176 99 -174 101 -173 _c
147 -122 171 -63 171 4 _c
171 9 _l
161 3 150 0 139 0 _c
123 0 110 5 100 16 _c
89 26 84 39 84 55 _c
84 71 89 84 100 94 _c
110 104 123 110 139 110 _c
162 110 177 99 185 78 _c
193 56 197 32 197 4 _c
197 -18 194 -41 188 -64 _c
182 -87 174 -109 162 -131 _c
150 -153 137 -172 121 -190 _c
}_e{119 -192 116 -193 114 -193 _c
110 -193 107 -191 104 -188 _c
100 -185 99 -182 99 -179 _c
84 376 _m
84 385 86 394 91 403 _c
96 411 103 418 112 423 _c
120 428 129 431 139 431 _c
148 431 157 428 166 423 _c
174 418 181 411 186 403 _c
191 394 194 385 194 376 _c
194 361 188 348 178 337 _c
167 326 154 321 139 321 _c
124 321 111 326 100 337 _c
89 348 84 361 84 376 _c
_cl}_e}_d
/parenright{{388 0 56 -249 291 750 _sc
65 -249 _m
59 -249 56 -246 56 -240 _c
56 -237 56 -235 58 -234 _c
172 -122 229 38 229 250 _c
229 462 172 623 60 733 _c
57 734 56 737 56 741 _c
56 743 57 745 59 747 _c
61 749 63 750 65 750 _c
74 750 _l
76 750 77 749 79 748 _c
127 710 167 664 199 610 _c
231 556 254 498 269 437 _c
283 376 291 314 291 250 _c
291 202 287 156 279 110 _c
}_e{271 64 258 20 241 -24 _c
223 -68 201 -108 175 -146 _c
148 -184 116 -217 79 -247 _c
77 -248 76 -249 74 -249 _c
65 -249 _l
_cl}_e}_d
/parenleft{{388 0 97 -249 332 750 _sc
310 -247 _m
272 -217 240 -184 214 -146 _c
187 -108 165 -67 148 -25 _c
131 17 118 62 110 109 _c
101 155 97 202 97 250 _c
97 298 101 345 110 392 _c
118 438 131 483 149 527 _c
166 570 188 611 215 649 _c
242 687 274 720 310 748 _c
310 749 311 750 315 750 _c
324 750 _l
326 750 327 749 329 747 _c
331 745 332 743 332 741 _c
332 738 331 736 330 735 _c
}_e{297 703 270 668 248 632 _c
226 596 209 557 196 516 _c
183 474 174 432 168 388 _c
162 344 159 298 159 250 _c
159 38 215 -122 329 -232 _c
331 -234 332 -236 332 -240 _c
332 -242 331 -244 329 -246 _c
327 -248 326 -249 324 -249 _c
315 -249 _l
311 -249 310 -248 310 -247 _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: cmmi10
%%Copyright: Copyright (C) 1994, Basil K. Malyshev. All Rights Reserved.012BaKoMa Fonts Collection, Level-B.
%%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 /Cmmi10 def
/PaintType 0 def
/FontMatrix[.001 0 0 .001 0 0]def
/FontBBox[-34 -250 1048 750]def
/FontType 3 def
/Encoding [ /comma /Z /H /Y /I /X ] def
/FontInfo 10 dict dup begin
/FamilyName (cmmi10) def
/FullName (cmmi10) def
/Notice (Copyright (C) 1994, Basil K. Malyshev. All Rights Reserved.012BaKoMa Fonts Collection, Level-B. ) def
/Weight (Regular) def
/Version (1.1/12-Nov-94) def
/ItalicAngle 0.0 def
/isFixedPitch false def
/UnderlinePosition -133 def
/UnderlineThickness 20 def
end readonly def
/CharStrings 6 dict dup begin
/comma{277 0 84 -193 205 110 _sc
99 -179 _m
99 -176 100 -173 103 -171 _c
127 -147 145 -120 159 -90 _c
172 -60 179 -28 179 4 _c
179 16 _l
168 5 155 0 139 0 _c
123 0 110 5 100 16 _c
89 26 84 39 84 55 _c
84 71 89 84 100 94 _c
110 104 123 110 139 110 _c
163 110 180 99 190 77 _c
200 55 205 30 205 4 _c
205 -32 197 -67 183 -101 _c
168 -134 147 -164 120 -191 _c
117 -192 115 -193 114 -193 _c
110 -193 107 -191 104 -188 _c
100 -185 99 -182 99 -179 _c
_cl}_d
/Z{{682 0 58 0 722 683 _sc
58 8 _m
58 17 60 25 65 31 _c
615 648 _l
468 648 _l
419 648 378 642 346 630 _c
314 618 287 599 266 573 _c
245 546 228 509 214 463 _c
212 457 209 454 204 454 _c
195 454 _l
188 454 185 458 185 467 _c
248 674 _l
249 680 252 683 258 683 _c
714 683 _l
719 683 722 680 722 675 _c
722 665 720 658 716 654 _c
168 38 _l
320 38 _l
}_e{378 38 424 45 458 60 _c
492 74 518 97 538 128 _c
558 159 577 204 596 262 _c
596 264 598 266 600 268 _c
602 270 604 271 606 271 _c
615 271 _l
621 271 625 266 625 258 _c
546 9 _l
543 3 540 0 536 0 _c
67 0 _l
61 0 58 2 58 8 _c
_cl}_e}_d
/H{{831 0 37 0 883 683 _sc
47 0 _m
40 0 37 4 37 13 _c
37 15 38 18 39 22 _c
40 26 41 29 43 31 _c
45 33 47 35 50 35 _c
90 35 119 37 135 42 _c
143 44 150 53 154 69 _c
291 618 _l
292 624 293 629 293 632 _c
293 639 289 643 281 644 _c
268 646 244 648 209 648 _c
202 648 199 652 199 661 _c
201 669 203 675 205 678 _c
206 681 210 683 216 683 _c
}_e{485 683 _l
491 683 495 678 495 670 _c
495 668 494 665 493 661 _c
492 657 491 654 489 652 _c
487 649 485 648 482 648 _c
441 648 413 645 397 641 _c
388 637 382 628 378 614 _c
318 373 _l
618 373 _l
679 618 _l
680 624 681 629 681 632 _c
681 639 677 643 669 644 _c
656 646 632 648 597 648 _c
590 648 587 652 587 661 _c
589 669 590 675 592 678 _c
593 681 597 683 604 683 _c
}_e{873 683 _l
879 683 883 678 883 670 _c
882 668 881 665 880 661 _c
879 657 878 653 876 651 _c
874 649 872 648 870 648 _c
829 648 801 645 785 641 _c
776 638 770 629 766 614 _c
629 65 _l
627 58 627 53 627 51 _c
627 44 631 40 639 39 _c
651 36 675 35 711 35 _c
717 35 721 30 721 22 _c
719 14 717 8 715 5 _c
713 1 709 0 704 0 _c
435 0 _l
}_e{428 0 425 4 425 13 _c
426 18 427 22 428 24 _c
428 26 429 28 431 31 _c
433 33 435 35 438 35 _c
478 35 507 37 523 42 _c
531 44 538 53 542 69 _c
609 338 _l
309 338 _l
241 65 _l
239 57 239 52 239 51 _c
239 44 243 40 251 39 _c
263 36 287 35 323 35 _c
329 35 333 30 333 22 _c
331 13 329 7 327 4 _c
325 1 322 0 316 0 _c
47 0 _l
_cl}_e}_d
/Y{{580 0 33 0 763 683 _sc
89 13 _m
89 15 89 17 90 21 _c
91 25 92 28 94 31 _c
96 33 98 35 102 35 _c
142 35 171 37 187 42 _c
190 42 193 44 196 48 _c
198 52 200 56 202 60 _c
204 64 205 68 207 72 _c
257 273 _l
128 628 _l
122 636 111 642 96 644 _c
80 646 63 648 43 648 _c
36 648 33 652 33 661 _c
35 669 36 674 38 678 _c
}_e{40 681 44 683 50 683 _c
302 683 _l
308 683 311 678 311 670 _c
308 655 304 648 298 648 _c
250 648 227 640 227 626 _c
340 318 _l
576 591 _l
577 594 579 598 583 603 _c
586 607 588 611 590 615 _c
592 618 593 622 593 626 _c
593 640 579 648 552 648 _c
545 648 542 652 542 661 _c
543 666 544 670 545 673 _c
545 676 547 678 549 680 _c
551 682 555 683 559 683 _c
753 683 _l
}_e{755 683 758 681 760 678 _c
762 675 763 672 763 670 _c
761 665 760 661 760 659 _c
759 657 758 654 756 652 _c
754 649 752 648 749 648 _c
722 648 697 642 673 630 _c
649 618 629 602 611 582 _c
610 581 609 580 608 580 _c
607 580 606 579 606 578 _c
342 273 _l
290 66 _l
290 64 289 61 289 58 _c
288 55 288 53 288 51 _c
288 48 288 46 289 44 _c
290 42 291 41 293 41 _c
}_e{294 40 296 39 300 39 _c
312 36 336 35 372 35 _c
378 35 382 30 382 22 _c
379 12 377 6 376 4 _c
375 1 371 0 365 0 _c
99 0 _l
92 0 89 4 89 13 _c
_cl}_e}_d
/I{{439 0 32 0 500 683 _sc
42 0 _m
35 0 32 4 32 13 _c
34 27 39 35 45 35 _c
84 35 111 36 125 39 _c
140 42 150 52 154 69 _c
291 618 _l
292 624 293 629 293 631 _c
293 635 292 638 290 640 _c
288 642 284 643 280 644 _c
266 646 241 648 204 648 _c
197 648 194 652 194 661 _c
196 669 197 675 199 678 _c
200 681 204 683 211 683 _c
490 683 _l
}_e{496 683 500 678 500 670 _c
500 668 499 665 498 661 _c
497 657 496 654 494 652 _c
492 649 490 648 487 648 _c
447 648 420 646 406 644 _c
391 640 382 630 378 614 _c
241 65 _l
239 57 239 52 239 52 _c
239 50 239 48 239 47 _c
239 45 240 44 242 43 _c
244 42 245 41 247 41 _c
248 40 250 39 252 39 _c
264 36 290 35 328 35 _c
334 35 338 30 338 22 _c
}_e{335 12 333 6 332 4 _c
331 1 327 0 321 0 _c
42 0 _l
_cl}_e}_d
/X{{828 0 26 0 852 683 _sc
36 0 _m
29 0 26 4 26 13 _c
26 15 26 18 28 22 _c
29 26 30 29 32 31 _c
34 33 36 35 40 35 _c
100 35 152 57 196 103 _c
196 103 197 104 198 104 _c
198 104 199 105 199 105 _c
418 341 _l
299 628 _l
292 636 281 642 266 644 _c
250 646 232 648 212 648 _c
205 648 202 652 202 661 _c
204 669 206 675 207 678 _c
}_e{208 681 212 683 219 683 _c
469 683 _l
475 683 479 678 479 670 _c
479 668 478 665 477 661 _c
475 657 474 653 472 651 _c
470 649 468 648 465 648 _c
452 648 439 646 426 642 _c
413 638 404 631 399 622 _c
485 415 _l
649 591 _l
649 593 651 596 655 602 _c
659 608 661 613 661 619 _c
661 629 656 636 648 641 _c
640 645 630 648 618 648 _c
611 648 608 652 608 661 _c
}_e{610 669 611 675 613 678 _c
614 681 618 683 625 683 _c
842 683 _l
845 683 847 681 849 679 _c
851 676 852 673 852 670 _c
852 668 851 665 850 661 _c
849 657 848 654 846 652 _c
844 649 842 648 839 648 _c
807 648 779 642 753 631 _c
727 619 704 602 682 580 _c
682 580 681 579 681 579 _c
680 579 679 578 679 578 _c
498 383 _l
635 55 _l
645 41 674 35 722 35 _c
}_e{728 35 732 30 732 22 _c
730 13 728 7 726 4 _c
724 1 721 0 715 0 _c
465 0 _l
458 0 455 4 455 13 _c
455 15 456 18 457 22 _c
457 26 459 29 461 31 _c
463 33 465 35 468 35 _c
480 35 493 37 507 41 _c
520 45 529 51 535 61 _c
431 310 _l
229 92 _l
228 89 226 85 222 80 _c
218 74 217 69 217 64 _c
217 54 221 46 230 42 _c
}_e{239 37 249 35 260 35 _c
266 35 270 30 270 22 _c
268 12 266 6 265 4 _c
263 1 259 0 253 0 _c
36 0 _l
_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: cmsy10
%%Copyright: Copyright (C) 1994, Basil K. Malyshev. All Rights Reserved.012BaKoMa Fonts Collection, Level-B.
%%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 /Cmsy10 def
/PaintType 0 def
/FontMatrix[.001 0 0 .001 0 0]def
/FontBBox[-29 -960 1123 779]def
/FontType 3 def
/Encoding [ /bar ] def
/FontInfo 10 dict dup begin
/FamilyName (cmsy10) def
/FullName (cmsy10) def
/Notice (Copyright (C) 1994, Basil K. Malyshev. All Rights Reserved.012BaKoMa Fonts Collection, Level-B. ) def
/Weight (Regular) def
/Version (1.1/12-Nov-94) def
/ItalicAngle 0.0 def
/isFixedPitch false def
/UnderlinePosition -133 def
/UnderlineThickness 20 def
end readonly def
/CharStrings 1 dict dup begin
/bar{277 0 119 -249 159 750 _sc
119 -231 _m
119 732 _l
119 737 121 741 125 745 _c
129 748 133 750 139 750 _c
143 750 148 748 152 745 _c
156 741 159 737 159 732 _c
159 -231 _l
159 -236 156 -240 152 -244 _c
148 -247 143 -249 139 -249 _c
133 -249 129 -247 125 -244 _c
121 -240 119 -236 119 -231 _c
_cl}_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
118.238 214.443 translate
375.524 363.115 0 0 clipbox
100000 setmiterlimit
gsave
0 0 m
375.523796 0 l
375.523796 363.114888 l
0 363.114888 l
cl
1.000 setgray
fill
grestore
1.000 setlinewidth
0 setlinejoin
0 setlinecap
[] 0 setdash
0.000 0.750 0.750 setrgbcolor
gsave
361.1 345.6 7.2 10.31 clipbox
187.761898 310.725233 m
176.818941 318.912399 164.263801 324.687733 150.926368 327.669487 c
137.588935 330.651242 123.769696 330.772239 110.382097 328.024482 c
96.994498 325.276725 84.340156 319.722119 73.255519 311.727821 c
62.170882 303.733523 52.905681 293.479642 46.072344 281.643955 c
39.239007 269.808268 34.991486 256.657428 33.610539 243.060702 c
32.229593 229.463976 33.746334 215.727691 38.060506 202.759812 c
42.374677 189.791932 49.389084 177.884618 58.640076 167.82494 c
67.891068 157.765261 79.170223 149.779858 91.731995 144.396563 c
93.742683 161.252076 100.156184 177.284826 110.325248 190.876785 c
120.494312 204.468745 134.064942 215.146762 149.667589 221.833212 c
147.656901 238.688726 150.119021 255.780245 156.805471 271.382892 c
163.491921 286.98554 174.169939 300.556169 187.761898 310.725233 c
gsave
fill
grestore
stroke
grestore
0.900 0.900 0.500 setrgbcolor
gsave
361.1 345.6 7.2 10.31 clipbox
187.761898 310.725233 m
201.353857 300.556169 212.031875 286.98554 218.718325 271.382892 c
225.404775 255.780245 227.866895 238.688726 225.856207 221.833212 c
241.458854 215.146762 255.029484 204.468745 265.198547 190.876785 c
275.367611 177.284826 281.781112 161.252076 283.7918 144.396563 c
296.353572 149.779858 307.632728 157.765261 316.88372 167.82494 c
326.134711 177.884618 333.149118 189.791932 337.46329 202.759812 c
341.777462 215.727691 343.294203 229.463976 341.913256 243.060702 c
340.53231 256.657428 336.284788 269.808268 329.451451 281.643955 c
322.618114 293.479642 313.352914 303.733523 302.268277 311.727821 c
291.18364 319.722119 278.529298 325.276725 265.141699 328.024482 c
251.754099 330.772239 237.93486 330.651242 224.597427 327.669487 c
211.259994 324.687733 198.704854 318.912399 187.761898 310.725233 c
gsave
fill
grestore
stroke
grestore
0.200 0.800 0.200 setrgbcolor
gsave
361.1 345.6 7.2 10.31 clipbox
187.761898 310.725233 m
174.169939 300.556169 163.491921 286.98554 156.805471 271.382892 c
150.119021 255.780245 147.656901 238.688726 149.667589 221.833212 c
161.704984 226.991788 174.665723 229.651934 187.761898 229.651934 c
200.858072 229.651934 213.818812 226.991788 225.856207 221.833212 c
227.866895 238.688726 225.404775 255.780245 218.718325 271.382892 c
212.031875 286.98554 201.353857 300.556169 187.761898 310.725233 c
gsave
fill
grestore
stroke
grestore
0.300 0.600 0.900 setrgbcolor
gsave
361.1 345.6 7.2 10.31 clipbox
91.731995 144.396563 m
90.11318 130.826101 91.389164 117.065365 95.475605 104.023931 c
99.562047 90.982498 106.366879 78.954187 115.440306 68.734065 c
124.513734 58.513943 135.651335 50.332264 148.116918 44.729836 c
160.582502 39.127407 174.095224 36.230449 187.761898 36.230449 c
201.428572 36.230449 214.941294 39.127407 227.406877 44.729836 c
239.872461 50.332264 251.010062 58.513943 260.083489 68.734065 c
269.156916 78.954187 275.961749 90.982498 280.04819 104.023931 c
284.134632 117.065365 285.410616 130.826101 283.7918 144.396563 c
268.189153 137.710113 251.097634 135.247993 234.24212 137.258681 c
217.386607 139.269369 201.353857 145.68287 187.761898 155.851934 c
174.169939 145.68287 158.137189 139.269369 141.281675 137.258681 c
124.426161 135.247993 107.334642 137.710113 91.731995 144.396563 c
gsave
fill
grestore
stroke
grestore
0.700 0.400 0.700 setrgbcolor
gsave
361.1 345.6 7.2 10.31 clipbox
91.731995 144.396563 m
107.334642 137.710113 124.426161 135.247993 141.281675 137.258681 c
158.137189 139.269369 174.169939 145.68287 187.761898 155.851934 c
177.275742 163.697336 168.491619 173.591592 161.943531 184.933212 c
155.395444 196.274832 151.218828 208.829235 149.667589 221.833212 c
134.064942 215.146762 120.494312 204.468745 110.325248 190.876785 c
100.156184 177.284826 93.742683 161.252076 91.731995 144.396563 c
gsave
fill
grestore
stroke
grestore
0.400 0.400 1.000 setrgbcolor
gsave
361.1 345.6 7.2 10.31 clipbox
225.856207 221.833212 m
224.304967 208.829235 220.128351 196.274832 213.580264 184.933212 c
207.032177 173.591592 198.248053 163.697336 187.761898 155.851934 c
201.353857 145.68287 217.386607 139.269369 234.24212 137.258681 c
251.097634 135.247993 268.189153 137.710113 283.7918 144.396563 c
281.781112 161.252076 275.367611 177.284826 265.198547 190.876785 c
255.029484 204.468745 241.458854 215.146762 225.856207 221.833212 c
gsave
fill
grestore
stroke
grestore
0.800 setgray
gsave
361.1 345.6 7.2 10.31 clipbox
149.667589 221.833212 m
151.218828 208.829235 155.395444 196.274832 161.943531 184.933212 c
168.491619 173.591592 177.275742 163.697336 187.761898 155.851934 c
198.248053 163.697336 207.032177 173.591592 213.580264 184.933212 c
220.128351 196.274832 224.304967 208.829235 225.856207 221.833212 c
213.818812 226.991788 200.858072 229.651934 187.761898 229.651934 c
174.665723 229.651934 161.704984 226.991788 149.667589 221.833212 c
gsave
fill
grestore
stroke
grestore
2.000 setlinewidth
0.000 setgray
gsave
361.1 345.6 7.2 10.31 clipbox
129.826304 136.577841 m
155.474293 136.577841 180.075259 146.767895 198.211126 164.903762 c
216.346993 183.039628 226.537047 207.640595 226.537047 233.288583 c
226.537047 258.936572 216.346993 283.537539 198.211126 301.673405 c
180.075259 319.809272 155.474293 329.999326 129.826304 329.999326 c
104.178315 329.999326 79.577349 319.809272 61.441482 301.673405 c
43.305616 283.537539 33.115562 258.936572 33.115562 233.288583 c
33.115562 207.640595 43.305616 183.039628 61.441482 164.903762 c
79.577349 146.767895 104.178315 136.577841 129.826304 136.577841 c
129.826304 136.577841 l
cl
stroke
grestore
gsave
361.1 345.6 7.2 10.31 clipbox
245.697491 136.577841 m
271.34548 136.577841 295.946446 146.767895 314.082313 164.903762 c
332.21818 183.039628 342.408234 207.640595 342.408234 233.288583 c
342.408234 258.936572 332.21818 283.537539 314.082313 301.673405 c
295.946446 319.809272 271.34548 329.999326 245.697491 329.999326 c
220.049503 329.999326 195.448536 319.809272 177.312669 301.673405 c
159.176803 283.537539 148.986749 258.936572 148.986749 233.288583 c
148.986749 207.640595 159.176803 183.039628 177.312669 164.903762 c
195.448536 146.767895 220.049503 136.577841 245.697491 136.577841 c
245.697491 136.577841 l
cl
stroke
grestore
gsave
361.1 345.6 7.2 10.31 clipbox
187.761898 36.230449 m
213.409886 36.230449 238.010853 46.420503 256.14672 64.55637 c
274.282586 82.692237 284.47264 107.293203 284.47264 132.941192 c
284.47264 158.589181 274.282586 183.190147 256.14672 201.326014 c
238.010853 219.46188 213.409886 229.651934 187.761898 229.651934 c
162.113909 229.651934 137.512943 219.46188 119.377076 201.326014 c
101.241209 183.190147 91.051155 158.589181 91.051155 132.941192 c
91.051155 107.293203 101.241209 82.692237 119.377076 64.55637 c
137.512943 46.420503 162.113909 36.230449 187.761898 36.230449 c
187.761898 36.230449 l
cl
stroke
grestore
gsave
48.551249 258.814900 translate
0.000000 rotate
/Cmmi10 findfont
14.0 scalefont
setfont
0.000000 0.500000 moveto
/H glyphshow
/Cmr10 findfont
14.0 scalefont
setfont
11.634766 0.500000 moveto
/parenleft glyphshow
/Cmmi10 findfont
14.0 scalefont
setfont
17.069336 0.500000 moveto
/X glyphshow
/Cmsy10 findfont
14.0 scalefont
setfont
28.663086 0.500000 moveto
/bar glyphshow
/Cmmi10 findfont
14.0 scalefont
setfont
32.539062 0.500000 moveto
/Y glyphshow
40.660156 0.500000 moveto
/comma glyphshow
46.994336 0.500000 moveto
/Z glyphshow
/Cmr10 findfont
14.0 scalefont
setfont
56.544141 0.500000 moveto
/parenright glyphshow
grestore
gsave
264.972546 258.814900 translate
0.000000 rotate
/Cmmi10 findfont
14.0 scalefont
setfont
0.000000 0.500000 moveto
/H glyphshow
/Cmr10 findfont
14.0 scalefont
setfont
11.634766 0.500000 moveto
/parenleft glyphshow
/Cmmi10 findfont
14.0 scalefont
setfont
17.069336 0.500000 moveto
/Y glyphshow
/Cmsy10 findfont
14.0 scalefont
setfont
25.190430 0.500000 moveto
/bar glyphshow
/Cmmi10 findfont
14.0 scalefont
setfont
29.066406 0.500000 moveto
/X glyphshow
40.660156 0.500000 moveto
/comma glyphshow
46.994336 0.500000 moveto
/Z glyphshow
/Cmr10 findfont
14.0 scalefont
setfont
56.544141 0.500000 moveto
/parenright glyphshow
grestore
gsave
159.261898 256.247333 translate
0.000000 rotate
/Cmmi10 findfont
14.0 scalefont
setfont
0.000000 0.500000 moveto
/I glyphshow
/Cmr10 findfont
14.0 scalefont
setfont
6.145508 0.500000 moveto
/parenleft glyphshow
/Cmmi10 findfont
14.0 scalefont
setfont
11.580078 0.500000 moveto
/X glyphshow
/Cmr10 findfont
14.0 scalefont
setfont
23.173828 0.500000 moveto
/semicolon glyphshow
/Cmmi10 findfont
14.0 scalefont
setfont
29.508008 0.500000 moveto
/Y glyphshow
/Cmsy10 findfont
14.0 scalefont
setfont
37.629102 0.500000 moveto
/bar glyphshow
/Cmmi10 findfont
14.0 scalefont
setfont
41.505078 0.500000 moveto
/Z glyphshow
/Cmr10 findfont
14.0 scalefont
setfont
51.054883 0.500000 moveto
/parenright glyphshow
grestore
gsave
156.761898 71.388559 translate
0.000000 rotate
/Cmmi10 findfont
14.0 scalefont
setfont
0.000000 0.500000 moveto
/H glyphshow
/Cmr10 findfont
14.0 scalefont
setfont
11.634766 0.500000 moveto
/parenleft glyphshow
/Cmmi10 findfont
14.0 scalefont
setfont
17.069336 0.500000 moveto
/Z glyphshow
/Cmsy10 findfont
14.0 scalefont
setfont
26.619141 0.500000 moveto
/bar glyphshow
/Cmmi10 findfont
14.0 scalefont
setfont
30.495117 0.500000 moveto
/X glyphshow
42.088867 0.500000 moveto
/comma glyphshow
48.423047 0.500000 moveto
/Y glyphshow
/Cmr10 findfont
14.0 scalefont
setfont
56.544141 0.500000 moveto
/parenright glyphshow
grestore
gsave
107.380152 166.385513 translate
0.000000 rotate
/Cmmi10 findfont
14.0 scalefont
setfont
0.000000 0.500000 moveto
/I glyphshow
/Cmr10 findfont
14.0 scalefont
setfont
6.145508 0.500000 moveto
/parenleft glyphshow