-
Notifications
You must be signed in to change notification settings - Fork 1
/
figure-venn.eps
2346 lines (2346 loc) · 72.9 KB
/
figure-venn.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
%Produced by poppler pdftops version: 22.02.0 (http://poppler.freedesktop.org)
%%Creator: diagrams.net
%%LanguageLevel: 2
%%DocumentSuppliedResources: (atend)
%%BoundingBox: 0 0 325 231
%%HiResBoundingBox: 0 0 324.95999 230.87999
%%DocumentSuppliedResources: (atend)
%%EndComments
%%BeginProlog
%%BeginResource: procset xpdf 3.00 0
%%Copyright: Copyright 1996-2011 Glyph & Cog, LLC
/xpdf 75 dict def xpdf begin
% PDF special state
/pdfDictSize 15 def
/pdfSetup {
/setpagedevice where {
pop 2 dict begin
/Policies 1 dict dup begin /PageSize 6 def end def
{ /Duplex true def } if
currentdict end setpagedevice
} {
pop
} ifelse
} def
/pdfSetupPaper {
% Change paper size, but only if different from previous paper size otherwise
% duplex fails. PLRM specifies a tolerance of 5 pts when matching paper size
% so we use the same when checking if the size changes.
/setpagedevice where {
pop currentpagedevice
/PageSize known {
2 copy
currentpagedevice /PageSize get aload pop
exch 4 1 roll
sub abs 5 gt
3 1 roll
sub abs 5 gt
or
} {
true
} ifelse
{
2 array astore
2 dict begin
/PageSize exch def
/ImagingBBox null def
currentdict end
setpagedevice
} {
pop pop
} ifelse
} {
pop
} ifelse
} def
/pdfStartPage {
pdfDictSize dict begin
/pdfFillCS [] def
/pdfFillXform {} def
/pdfStrokeCS [] def
/pdfStrokeXform {} def
/pdfFill [0] def
/pdfStroke [0] def
/pdfFillOP false def
/pdfStrokeOP false def
/pdfLastFill false def
/pdfLastStroke false def
/pdfTextMat [1 0 0 1 0 0] def
/pdfFontSize 0 def
/pdfCharSpacing 0 def
/pdfTextRender 0 def
/pdfPatternCS false def
/pdfTextRise 0 def
/pdfWordSpacing 0 def
/pdfHorizScaling 1 def
/pdfTextClipPath [] def
} def
/pdfEndPage { end } def
% PDF color state
/cs { /pdfFillXform exch def dup /pdfFillCS exch def
setcolorspace } def
/CS { /pdfStrokeXform exch def dup /pdfStrokeCS exch def
setcolorspace } def
/sc { pdfLastFill not { pdfFillCS setcolorspace } if
dup /pdfFill exch def aload pop pdfFillXform setcolor
/pdfLastFill true def /pdfLastStroke false def } def
/SC { pdfLastStroke not { pdfStrokeCS setcolorspace } if
dup /pdfStroke exch def aload pop pdfStrokeXform setcolor
/pdfLastStroke true def /pdfLastFill false def } def
/op { /pdfFillOP exch def
pdfLastFill { pdfFillOP setoverprint } if } def
/OP { /pdfStrokeOP exch def
pdfLastStroke { pdfStrokeOP setoverprint } if } def
/fCol {
pdfLastFill not {
pdfFillCS setcolorspace
pdfFill aload pop pdfFillXform setcolor
pdfFillOP setoverprint
/pdfLastFill true def /pdfLastStroke false def
} if
} def
/sCol {
pdfLastStroke not {
pdfStrokeCS setcolorspace
pdfStroke aload pop pdfStrokeXform setcolor
pdfStrokeOP setoverprint
/pdfLastStroke true def /pdfLastFill false def
} if
} def
% build a font
/pdfMakeFont {
4 3 roll findfont
4 2 roll matrix scale makefont
dup length dict begin
{ 1 index /FID ne { def } { pop pop } ifelse } forall
/Encoding exch def
currentdict
end
definefont pop
} def
/pdfMakeFont16 {
exch findfont
dup length dict begin
{ 1 index /FID ne { def } { pop pop } ifelse } forall
/WMode exch def
currentdict
end
definefont pop
} def
% graphics state operators
/q { gsave pdfDictSize dict begin } def
/Q {
end grestore
/pdfLastFill where {
pop
pdfLastFill {
pdfFillOP setoverprint
} {
pdfStrokeOP setoverprint
} ifelse
} if
} def
/cm { concat } def
/d { setdash } def
/i { setflat } def
/j { setlinejoin } def
/J { setlinecap } def
/M { setmiterlimit } def
/w { setlinewidth } def
% path segment operators
/m { moveto } def
/l { lineto } def
/c { curveto } def
/re { 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto
neg 0 rlineto closepath } def
/h { closepath } def
% path painting operators
/S { sCol stroke } def
/Sf { fCol stroke } def
/f { fCol fill } def
/f* { fCol eofill } def
% clipping operators
/W { clip newpath } def
/W* { eoclip newpath } def
/Ws { strokepath clip newpath } def
% text state operators
/Tc { /pdfCharSpacing exch def } def
/Tf { dup /pdfFontSize exch def
dup pdfHorizScaling mul exch matrix scale
pdfTextMat matrix concatmatrix dup 4 0 put dup 5 0 put
exch findfont exch makefont setfont } def
/Tr { /pdfTextRender exch def } def
/Tp { /pdfPatternCS exch def } def
/Ts { /pdfTextRise exch def } def
/Tw { /pdfWordSpacing exch def } def
/Tz { /pdfHorizScaling exch def } def
% text positioning operators
/Td { pdfTextMat transform moveto } def
/Tm { /pdfTextMat exch def } def
% text string operators
/xyshow where {
pop
/xyshow2 {
dup length array
0 2 2 index length 1 sub {
2 index 1 index 2 copy get 3 1 roll 1 add get
pdfTextMat dtransform
4 2 roll 2 copy 6 5 roll put 1 add 3 1 roll dup 4 2 roll put
} for
exch pop
xyshow
} def
}{
/xyshow2 {
currentfont /FontType get 0 eq {
0 2 3 index length 1 sub {
currentpoint 4 index 3 index 2 getinterval show moveto
2 copy get 2 index 3 2 roll 1 add get
pdfTextMat dtransform rmoveto
} for
} {
0 1 3 index length 1 sub {
currentpoint 4 index 3 index 1 getinterval show moveto
2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get
pdfTextMat dtransform rmoveto
} for
} ifelse
pop pop
} def
} ifelse
/cshow where {
pop
/xycp {
0 3 2 roll
{
pop pop currentpoint 3 2 roll
1 string dup 0 4 3 roll put false charpath moveto
2 copy get 2 index 2 index 1 add get
pdfTextMat dtransform rmoveto
2 add
} exch cshow
pop pop
} def
}{
/xycp {
currentfont /FontType get 0 eq {
0 2 3 index length 1 sub {
currentpoint 4 index 3 index 2 getinterval false charpath moveto
2 copy get 2 index 3 2 roll 1 add get
pdfTextMat dtransform rmoveto
} for
} {
0 1 3 index length 1 sub {
currentpoint 4 index 3 index 1 getinterval false charpath moveto
2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get
pdfTextMat dtransform rmoveto
} for
} ifelse
pop pop
} def
} ifelse
/Tj {
fCol
0 pdfTextRise pdfTextMat dtransform rmoveto
currentpoint 4 2 roll
pdfTextRender 1 and 0 eq {
2 copy xyshow2
} if
pdfTextRender 3 and dup 1 eq exch 2 eq or {
3 index 3 index moveto
2 copy
currentfont /FontType get 3 eq { fCol } { sCol } ifelse
xycp currentpoint stroke moveto
} if
pdfTextRender 4 and 0 ne {
4 2 roll moveto xycp
/pdfTextClipPath [ pdfTextClipPath aload pop
{/moveto cvx}
{/lineto cvx}
{/curveto cvx}
{/closepath cvx}
pathforall ] def
currentpoint newpath moveto
} {
pop pop pop pop
} ifelse
0 pdfTextRise neg pdfTextMat dtransform rmoveto
} def
/TJm { 0.001 mul pdfFontSize mul pdfHorizScaling mul neg 0
pdfTextMat dtransform rmoveto } def
/TJmV { 0.001 mul pdfFontSize mul neg 0 exch
pdfTextMat dtransform rmoveto } def
/Tclip { pdfTextClipPath cvx exec clip newpath
/pdfTextClipPath [] def } def
/Tclip* { pdfTextClipPath cvx exec eoclip newpath
/pdfTextClipPath [] def } def
% Level 2/3 image operators
/pdfImBuf 100 string def
/pdfImStr {
2 copy exch length lt {
2 copy get exch 1 add exch
} {
()
} ifelse
} def
/skipEOD {
{ currentfile pdfImBuf readline
not { pop exit } if
(%-EOD-) eq { exit } if } loop
} def
/pdfIm { image skipEOD } def
/pdfImM { fCol imagemask skipEOD } def
/pr { 2 index 2 index 3 2 roll putinterval 4 add } def
/pdfImClip {
gsave
0 2 4 index length 1 sub {
dup 4 index exch 2 copy
get 5 index div put
1 add 3 index exch 2 copy
get 3 index div put
} for
pop pop rectclip
} def
/pdfImClipEnd { grestore } def
% shading operators
/colordelta {
false 0 1 3 index length 1 sub {
dup 4 index exch get 3 index 3 2 roll get sub abs 0.004 gt {
pop true
} if
} for
exch pop exch pop
} def
/funcCol { func n array astore } def
/funcSH {
dup 0 eq {
true
} {
dup 6 eq {
false
} {
4 index 4 index funcCol dup
6 index 4 index funcCol dup
3 1 roll colordelta 3 1 roll
5 index 5 index funcCol dup
3 1 roll colordelta 3 1 roll
6 index 8 index funcCol dup
3 1 roll colordelta 3 1 roll
colordelta or or or
} ifelse
} ifelse
{
1 add
4 index 3 index add 0.5 mul exch 4 index 3 index add 0.5 mul exch
6 index 6 index 4 index 4 index 4 index funcSH
2 index 6 index 6 index 4 index 4 index funcSH
6 index 2 index 4 index 6 index 4 index funcSH
5 3 roll 3 2 roll funcSH pop pop
} {
pop 3 index 2 index add 0.5 mul 3 index 2 index add 0.5 mul
funcCol sc
dup 4 index exch mat transform m
3 index 3 index mat transform l
1 index 3 index mat transform l
mat transform l pop pop h f*
} ifelse
} def
/axialCol {
dup 0 lt {
pop t0
} {
dup 1 gt {
pop t1
} {
dt mul t0 add
} ifelse
} ifelse
func n array astore
} def
/axialSH {
dup 0 eq {
true
} {
dup 8 eq {
false
} {
2 index axialCol 2 index axialCol colordelta
} ifelse
} ifelse
{
1 add 3 1 roll 2 copy add 0.5 mul
dup 4 3 roll exch 4 index axialSH
exch 3 2 roll axialSH
} {
pop 2 copy add 0.5 mul
axialCol sc
exch dup dx mul x0 add exch dy mul y0 add
3 2 roll dup dx mul x0 add exch dy mul y0 add
dx abs dy abs ge {
2 copy yMin sub dy mul dx div add yMin m
yMax sub dy mul dx div add yMax l
2 copy yMax sub dy mul dx div add yMax l
yMin sub dy mul dx div add yMin l
h f*
} {
exch 2 copy xMin sub dx mul dy div add xMin exch m
xMax sub dx mul dy div add xMax exch l
exch 2 copy xMax sub dx mul dy div add xMax exch l
xMin sub dx mul dy div add xMin exch l
h f*
} ifelse
} ifelse
} def
/radialCol {
dup t0 lt {
pop t0
} {
dup t1 gt {
pop t1
} if
} ifelse
func n array astore
} def
/radialSH {
dup 0 eq {
true
} {
dup 8 eq {
false
} {
2 index dt mul t0 add radialCol
2 index dt mul t0 add radialCol colordelta
} ifelse
} ifelse
{
1 add 3 1 roll 2 copy add 0.5 mul
dup 4 3 roll exch 4 index radialSH
exch 3 2 roll radialSH
} {
pop 2 copy add 0.5 mul dt mul t0 add
radialCol sc
encl {
exch dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add
0 360 arc h
dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add
360 0 arcn h f
} {
2 copy
dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add
a1 a2 arcn
dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add
a2 a1 arcn h
dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add
a1 a2 arc
dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add
a2 a1 arc h f
} ifelse
} ifelse
} def
end
%%EndResource
%%EndProlog
%%BeginSetup
xpdf begin
%%BeginResource: font T3_5_0
8 dict begin
/FontType 3 def
/FontMatrix [0.001 0 0 -0.001 0 0] def
/FontBBox [6 20 984 -728] def
/Encoding 256 array def
0 1 255 { Encoding exch /.notdef put } for
/BuildGlyph {
exch /CharProcs get exch
2 copy known not { pop /.notdef } if
get exec
} bind def
/BuildChar {
1 index /Encoding get exch get
1 index /BuildGlyph get exec
} bind def
/CharProcs 21 dict def
CharProcs begin
/g0 {
500 0 50 -484 450 0 setcachedevice
q
50 0 m
450 0 l
450 -484 l
50 -484 l
50 0 l
h
100 -50 m
100 -434 l
400 -434 l
400 -50 l
100 -50 l
h
f
Q
} def
/g1 {
250 0 0 0 0 0 setcachedevice
q
Q
} def
/gE {
333 0 17 -287 312 -215 setcachedevice
q
17 -220 m
22 -215 l
282 -215 l
312 -282 l
307 -287 l
44 -287 l
17 -220 l
h
f
Q
} def
/g24 {
709 0 22 -709 670 20 setcachedevice
q
22 -342 m
22 -126 180 20 415 20 c
498 20 573 2 642 -34 c
670 -84 l
661 -94 l
599 -54 530 -34 454 -34 c
259 -34 129 -164 129 -361 c
129 -545 243 -667 415 -667 c
513 -667 614 -627 614 -588 c
614 -516 l
645 -516 l
646 -566 650 -602 664 -668 c
579 -696 506 -709 433 -709 c
346 -709 263 -688 196 -649 c
82 -582 22 -477 22 -342 c
h
f
Q
} def
/g30 {
786 0 22 -709 764 20 setcachedevice
q
22 -341 m
22 -131 168 20 370 20 c
594 20 764 -147 764 -367 c
764 -577 624 -709 402 -709 c
174 -709 22 -561 22 -341 c
h
129 -378 m
129 -563 221 -667 385 -667 c
556 -667 657 -545 657 -337 c
657 -139 565 -22 410 -22 c
242 -22 129 -164 129 -378 c
h
f
Q
} def
/g31 {
604 0 22 -692 580 3 setcachedevice
q
22 3 m
71 1 119 0 168 0 c
217 0 266 1 315 3 c
315 -27 l
267 -30 l
221 -33 216 -41 216 -120 c
216 -642 l
251 -650 280 -654 314 -654 c
422 -654 480 -604 480 -509 c
480 -419 419 -356 332 -356 c
311 -356 296 -358 270 -366 c
280 -330 l
304 -325 318 -324 338 -324 c
475 -324 580 -417 580 -537 c
580 -633 502 -692 375 -692 c
318 -692 262 -689 205 -689 c
144 -689 84 -690 23 -692 c
23 -662 l
68 -659 l
113 -656 121 -643 121 -569 c
121 -120 l
121 -41 116 -33 70 -30 c
22 -27 l
22 3 l
h
f
Q
} def
/g33 {
668 0 22 -692 669 3 setcachedevice
q
22 3 m
71 1 119 0 168 0 c
217 0 266 1 315 3 c
315 -27 l
267 -30 l
221 -33 216 -41 216 -120 c
216 -642 l
250 -650 280 -654 314 -654 c
418 -654 476 -606 476 -521 c
476 -429 403 -371 287 -371 c
258 -371 l
258 -355 l
280 -331 288 -320 304 -298 c
488 -51 l
529 3 l
552 1 574 0 597 0 c
621 0 645 1 669 3 c
669 -27 l
637 -30 621 -36 608 -53 c
381 -349 l
437 -363 463 -374 496 -397 c
548 -434 576 -484 576 -542 c
576 -638 511 -692 381 -692 c
321 -692 262 -689 202 -689 c
144 -689 87 -690 29 -692 c
29 -662 l
70 -659 l
116 -656 121 -647 121 -569 c
121 -120 l
121 -41 116 -33 70 -30 c
22 -27 l
22 3 l
h
f
Q
} def
/g38 {
1000 0 8 -700 984 9 setcachedevice
q
8 -662 m
36 -659 l
65 -656 78 -643 86 -609 c
228 9 l
278 9 l
287 -23 295 -47 314 -94 c
488 -536 l
613 -197 l
646 -108 649 -100 684 9 c
734 9 l
761 -92 l
914 -630 l
919 -647 930 -657 952 -659 c
984 -662 l
984 -692 l
949 -690 914 -689 879 -689 c
844 -689 809 -690 774 -692 c
774 -662 l
814 -659 l
856 -656 865 -646 860 -626 c
728 -137 l
564 -598 l
543 -658 539 -666 531 -700 c
499 -700 l
478 -638 462 -593 409 -459 c
285 -144 l
185 -593 l
177 -631 179 -656 218 -659 c
260 -662 l
260 -692 l
218 -690 176 -689 134 -689 c
92 -689 50 -690 8 -692 c
8 -662 l
h
f
Q
} def
/g42 {
500 0 32 -469 471 12 setcachedevice
q
32 -111 m
32 -33 79 12 158 12 c
176 12 193 9 200 4 c
324 -82 l
319 3 l
345 1 371 0 397 0 c
422 0 446 1 471 3 c
471 -27 l
432 -29 l
408 -30 404 -38 404 -87 c
404 -270 l
404 -416 362 -469 246 -469 c
203 -469 163 -458 125 -435 c
72 -403 l
72 -338 l
98 -331 l
111 -362 l
131 -409 142 -416 188 -416 c
282 -416 321 -379 324 -288 c
225 -270 l
89 -245 32 -198 32 -111 c
h
118 -125 m
118 -162 138 -197 168 -216 c
193 -231 248 -245 324 -256 c
324 -124 l
295 -83 232 -45 193 -45 c
153 -45 118 -82 118 -125 c
h
f
Q
} def
/g44 {
444 0 26 -469 413 20 setcachedevice
q
26 -210 m
26 -75 121 20 255 20 c
307 20 382 1 392 -14 c
413 -46 l
403 -61 l
366 -41 334 -32 298 -32 c
187 -32 114 -118 114 -250 c
114 -357 164 -417 254 -417 c
298 -417 346 -397 364 -372 c
371 -311 l
399 -311 l
399 -357 404 -398 413 -434 c
373 -458 338 -469 297 -469 c
249 -469 193 -450 133 -412 c
63 -368 26 -298 26 -210 c
h
f
Q
} def
/g46 {
479 0 26 -469 448 20 setcachedevice
q
26 -219 m
26 -156 40 -102 68 -64 c
107 -11 175 20 250 20 c
287 20 324 12 365 -6 c
392 -17 413 -30 417 -36 c
437 -70 l
424 -80 l
360 -42 337 -33 294 -33 c
229 -33 175 -62 147 -111 c
128 -144 121 -172 119 -230 c
265 -230 l
334 -230 377 -233 446 -244 c
447 -258 448 -267 448 -279 c
448 -394 374 -469 262 -469 c
225 -469 182 -456 141 -432 c
59 -385 26 -323 26 -219 c
h
121 -270 m
121 -317 125 -339 138 -365 c
159 -409 202 -436 250 -436 c
283 -436 309 -423 327 -396 c
349 -363 359 -334 359 -267 c
247 -264 l
201 -264 175 -265 121 -270 c
h
f
Q
} def
/g4C {
556 0 21 -726 549 12 setcachedevice
q
21 3 m
63 1 105 0 147 0 c
188 0 228 1 269 3 c
269 -27 l
225 -30 l
191 -32 188 -39 188 -102 c
188 -240 l
453 12 l
549 -17 l
549 -40 l
525 -40 496 -57 464 -88 c
338 -213 l
302 -248 291 -261 274 -281 c
403 -382 l
450 -418 477 -429 511 -429 c
511 -459 l
411 -459 l
347 -395 300 -351 261 -320 c
188 -261 l
188 -718 l
179 -726 l
135 -709 102 -701 23 -689 c
23 -661 l
79 -661 l
97 -661 104 -650 104 -620 c
104 -102 l
104 -39 101 -32 67 -30 c
21 -27 l
21 3 l
h
f
Q
} def
/g4F {
582 0 6 -469 572 3 setcachedevice
q
6 3 m
47 1 89 0 130 0 c
171 0 213 1 254 3 c
254 -27 l
209 -30 l
175 -32 172 -39 172 -102 c
172 -314 l
172 -359 238 -408 299 -408 c
366 -408 410 -358 410 -281 c
410 3 l
436 1 463 0 489 0 c
517 0 544 1 572 3 c
572 -27 l
531 -30 l
497 -32 494 -38 494 -102 c
494 -295 l
494 -412 439 -469 327 -469 c
290 -469 269 -462 248 -444 c
172 -378 l
172 -465 l
163 -469 l
112 -448 60 -434 7 -428 c
7 -400 l
44 -400 l
84 -400 88 -393 88 -327 c
88 -102 l
88 -39 85 -32 51 -30 c
6 -27 l
6 3 l
h
f
Q
} def
/g50 {
546 0 32 -469 514 20 setcachedevice
q
32 -217 m
32 -76 121 20 250 20 c
404 20 514 -87 514 -237 c
514 -372 416 -469 279 -469 c
133 -469 32 -366 32 -217 c
h
125 -251 m
125 -371 173 -436 261 -436 c
353 -436 421 -336 421 -200 c
421 -85 370 -13 289 -13 c
191 -13 125 -109 125 -251 c
h
f
Q
} def
/g53 {
395 0 21 -469 374 3 setcachedevice
q
21 3 m
62 1 103 0 144 0 c
192 0 239 1 287 3 c
287 -27 l
235 -30 l
190 -33 188 -36 188 -102 c
188 -274 l
188 -334 228 -384 277 -384 c
307 -384 328 -370 344 -338 c
365 -338 l
374 -458 l
363 -465 345 -469 327 -469 c
297 -469 265 -453 244 -428 c
188 -362 l
188 -465 l
179 -469 l
128 -448 76 -434 23 -428 c
23 -400 l
60 -400 l
100 -400 104 -393 104 -327 c
104 -102 l
104 -39 101 -32 67 -30 c
21 -27 l
21 3 l
h
f
Q
} def
/g54 {
424 0 30 -469 391 20 setcachedevice
q
30 -4 m
82 13 121 20 167 20 c
298 20 391 -50 391 -148 c
391 -179 383 -202 363 -222 c
337 -248 304 -259 216 -276 c
134 -292 107 -312 107 -358 c
107 -408 142 -436 203 -436 c
270 -436 321 -401 321 -354 c
321 -331 l
349 -331 l
350 -389 351 -413 354 -444 c
301 -462 265 -469 224 -469 c
108 -469 37 -414 37 -324 c
37 -276 59 -242 105 -221 c
132 -209 185 -193 253 -178 c
298 -168 317 -147 317 -109 c
317 -55 267 -17 196 -17 c
123 -17 71 -52 71 -102 c
71 -143 l
41 -143 l
41 -74 38 -44 30 -4 c
h
f
Q
} def
/g55 {
326 0 22 -621 319 12 setcachedevice
q
22 -378 m
98 -382 l
98 -94 l
98 -20 131 12 208 12 c
231 12 255 7 261 0 c
309 -53 l
296 -70 l
271 -56 256 -51 237 -51 c
198 -51 182 -71 182 -120 c
182 -382 l
310 -382 l
319 -436 l
182 -430 l
182 -468 l
182 -510 185 -546 193 -610 c
181 -621 l
157 -606 127 -593 96 -583 c
99 -553 100 -534 100 -504 c
100 -434 l
22 -399 l
22 -378 l
h
f
Q
} def
/g56 {
603 0 18 -469 581 12 setcachedevice
q
18 -400 m
55 -400 l
95 -400 99 -393 99 -327 c
99 -159 l
99 -89 105 -58 123 -33 c
145 -3 183 12 240 12 c
285 12 325 -2 352 -27 c
419 -89 l
419 -60 418 -44 415 3 c
443 1 470 0 498 0 c
526 0 553 1 581 3 c
581 -27 l
540 -30 l
506 -32 503 -38 503 -102 c
503 -465 l
494 -469 l
443 -448 391 -434 338 -428 c
338 -400 l
375 -400 l
415 -400 419 -393 419 -327 c
419 -164 l
419 -142 405 -114 382 -91 c
354 -63 322 -49 283 -49 c
248 -49 220 -60 204 -79 c
190 -95 183 -126 183 -170 c
183 -465 l
174 -469 l
123 -448 71 -434 18 -428 c
18 -400 l
h
f
Q
} def
/g57 {
565 0 6 -459 539 7 setcachedevice
q
6 -431 m
40 -429 l
58 -428 61 -419 71 -396 c
243 7 l
293 7 l
299 -26 314 -57 334 -102 c
452 -362 l
475 -413 488 -428 508 -429 c
539 -431 l
539 -459 l
508 -457 476 -456 445 -456 c
414 -456 382 -457 351 -459 c
351 -431 l
392 -429 l
424 -427 424 -398 397 -330 c
355 -224 l
293 -84 l
174 -372 l
163 -400 158 -428 190 -429 c
239 -431 l
239 -459 l
200 -457 161 -456 122 -456 c
83 -456 45 -457 6 -459 c
6 -431 l
h
f
Q
} def
/g58 {
834 0 6 -469 808 7 setcachedevice
q
6 -431 m
34 -429 l
62 -427 75 -410 100 -329 c
202 7 l
249 7 l
347 -223 l
365 -265 399 -335 399 -335 c
535 7 l
581 7 l
718 -342 l
746 -413 760 -427 782 -429 c
808 -431 l
808 -459 l
775 -457 743 -456 710 -456 c
677 -456 645 -457 612 -459 c