-
Notifications
You must be signed in to change notification settings - Fork 0
/
m++fit.eps
3698 lines (3696 loc) · 72.7 KB
/
m++fit.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
%%BoundingBox: 0 0 822 575
%%LanguageLevel: 2
%%Creator: OriginLab Corporation
%%Title: (C:\Users\Matthew\git\lgt\m++fit.eps)
%%CreationDate: Wed Apr 19 22:24:44 2017
%%EndComments
/OriginLab::PSL1 128 dict dup begin def
/Save0 save def
%%BeginResource: procset OriginLab::PSL1
/wd{1 index where{pop pop pop}{bind def}ifelse}bind def
/setcmykcolor{1 sub 4 1 roll 3{3 index add neg dup 0 lt{pop 0}if 3 1 roll}repeat setrgbcolor pop}wd
/selectfont{dup type/arraytype eq{exch findfont exch makefont setfont}{exch findfont exch scalefont setfont}ifelse}wd
/xshow{1 index length 0 le{}{currentpoint exch 3 index length 1 sub 0 exch 1 exch{dup 5 index exch 1 getinterval show 3 index exch get add 2 copy exch moveto}for pop pop}ifelse pop pop}wd
/glyphshow{matrix currentmatrix exch currentfont dup/FontMatrix get concat currentpoint translate
dup/Metrics get 2 index get 0 4 2 roll gsave/CharProcs get exch 2 copy known not{pop/.notdef}if
get exec fill grestore moveto setmatrix}wd
/grayimage/image load def/rgbtogray{cvx exec dup length 3 idiv 1 sub 0 exch 1 exch{dup 3 mul dup 3 index exch get 255 div .3 mul exch
1 add dup 4 index exch get 255 div .59 mul exch 1 add 4 index exch get 255 div .11 mul add add
255 mul dup 255 gt{255}if round cvi 2 index 3 1 roll put}for dup length 3 idiv 0 exch getinterval}bind def
/colorimage{0 setgray pop pop cvlit/rgbtogray cvx 2 packedarray cvx grayimage}wd
/bd{bind def}bind def/ld{load def}bd/ed{exch def}bd/xd{cvx def}bd
/np/newpath ld/a/arc ld/m/moveto ld/l/lineto ld/c/curveto ld/rm/rmoveto ld/rl/rlineto ld/rc/rcurveto ld/cp/closepath ld/cpt/currentpoint ld
/tr/translate ld/sc/scale ld/ro/rotate ld/t/transform ld/it/itransform ld/dt/dtransform ld/idt/idtransform ld
/mtx/matrix ld/cmtx/currentmatrix ld/dmtx/defaultmatrix ld/smtx/setmatrix ld/catmtx/concatmatrix ld
/sw/setlinewidth ld/scap/setlinecap ld/sj/setlinejoin ld/sm/setmiterlimit ld/sd/setdash ld/rgb/setrgbcolor ld/crgb/currentrgbcolor ld/cmyk/setcmykcolor ld/gs/gsave ld/gr/grestore ld
/st/stroke ld/fi/fill ld/eofi/eofill ld/cl/clip ld/eocl/eoclip ld
/df/definefont ld/ff/findfont ld/sf/setfont ld/scf/scalefont ld/self/selectfont ld/cf/currentfont ld
/s/show ld/xs/xshow ld/gls/glyphshow ld/xgls{cpt 3 1 roll add exch 3 -1 roll gls m}bd
/cd/currentdict ld/i/index ld
/DrawBox{4 2 roll m 1 index 0 rl 0 exch rl neg 0 rl cp}bd
/plus.re { 6 { 3 index } repeat moveto 0 exch rlineto 0 rlineto pop pop neg 0 exch rlineto pop lineto closepath } def
/DrawBcc{4 2 roll m 2 copy 0 lt exch 0 lt xor{dup 0 exch rl exch 0 rl neg 0 exch rl}{exch dup 0 rl exch 0 exch rl neg 0 rl}ifelse cp}bd
/rectline{dup type/arraytype eq{dup length 0 exch 4 exch 4 sub{0 1 3{3 copy add get 4 1 roll pop}for pop 5 1 roll DrawBox}for pop}{DrawBox}ifelse}bd
/rectpath{dup type/arraytype eq{dup length 0 exch 4 exch 4 sub{0 1 3{3 copy add get 4 1 roll pop}for pop 5 1 roll DrawBcc}for pop}{DrawBcc}ifelse}bd
/pathproc{[{/m cvx}{/l cvx}{/c cvx}{/cp cvx}pathforall]cvx}bd
/L1img/image ld/L1idx[{0}
{dup 7 and 3 1 roll -3 bitshift get exch 7 sub 1 mul bitshift 1 and}bind 1 index dup
{dup 1 and 3 1 roll -1 bitshift get exch 1 sub 4 mul bitshift 15 and}bind 1 index dup dup
{get}bind]def
/image{dup type/dicttype eq {dup/ImgCS get 0 get/Indexed eq}{false}ifelse
{begin Width Height 8 ImageMatrix {rgb_string rgb_lookup
cd/DataSource get dup type/filetype eq
{mystring readstring pop}{exec}ifelse
dup length 0 ne
{L1idx BitsPerComponent get 0 1 Width 1 sub
{3 copy exch exec exch 3 mul exch
3 mul dup 5 index exch get exch 1 add dup 6 index exch get exch 1 add 6 index exch get
7 index exch 4 index 2 add exch put 6 index exch 3 index 1 add exch put 5 index exch 2 index exch put pop
}for pop pop pop }{pop pop pop ()}ifelse }false 3 colorimage end} {dup type/dicttype eq
{{dup mark exch L1img pop pop}stopped{cleartomark begin Width Height BitsPerComponent ImageMatrix
{cd/DataSource get dup type/filetype eq {mystring readstring pop}{exec}ifelse
}false 3 colorimage end} if}{L1img}ifelse}ifelse
}bd
/L1imgmask/imagemask ld/imagemask{dup type/dicttype eq
{{dup mark exch L1imgmask pop pop}stopped {cleartomark begin Width Height polarityflag ImageMatrix
{cd/DataSource get dup type/filetype eq {mystring readstring pop}{exec}ifelse
}L1imgmask end}if}{L1imgmask}ifelse
}bd
% Gradient function
/GradientStep 1 150 div def
/GradientStartRGB { /R1 exch def /G1 exch def /B1 exch def } def
/GradientEndRGB { /R2 exch def /G2 exch def /B2 exch def
/GradientSteps GradientLength GradientStep div def
/GradientRStep R2 R1 sub GradientSteps div def
/GradientGStep G2 G1 sub GradientSteps div def
/GradientBStep B2 B1 sub GradientSteps div def
} def
/GradientStepRGB { /R1 R1 GradientRStep add def
/G1 G1 GradientGStep add def
/B1 B1 GradientBStep add def
R1 G1 B1 setrgbcolor
} def
%%EndResource
/rectclip{np rectpath clip np}wd
/rectfill{gs np rectpath fi gr}wd
/rectstroke{gs np dup type/arraytype eq{dup length 6 eq}{false}ifelse{1 index type/arraytype eq{exch}{5 1 roll}ifelse rectline concat st}{rectline st}ifelse gr}wd
%%BeginResource: procset OriginLab::Image
/OriginLab::Image 32 dict dup begin
/BinProc{[currentfile mystring /readstring cvx /pop cvx] cvx bind}bd
/HexProc{[currentfile mystring /readhexstring cvx /pop cvx] cvx bind}bd
/Ascii85Proc{currentfile /ASCII85Decode filter}bd
/LZWA85{currentfile /ASCII85Decode filter /LZWDecode filter}bd
/ImgProcArray[/BinProc /HexProc /Ascii85Proc /LZWA85]def
/ImgDict{/ImgDict 16 dict def ImgDict dup begin /ImageType 1 def /MultipleDataSource false def end}bd
/L2Dec{{[1 0]}{[0 1]}ifelse}bd
/BegImg{ /Img_sv save def
/ImgDir ed ImgProcArray exch get /ImgProc exch ld
dup /polarityflag ed L2Dec /polarity ed /smoothflag ed
tr /dx 2 index def /dy 1 index abs def sc
string /mystring ed /bpc ed /ih ed /iw ed
}bd
/EndImg {Img_sv restore}bd
/DoXImg{ /rgb_lookup ed /hival ed ImgDict dup begin
[/Indexed /DeviceRGB hival rgb_lookup] /L1img where{pop/ImgCS ed}{setcolorspace}ifelse
/rgb_string iw 3 mul string def
/Width iw def
/Height ih def
/Decode [0 1 bpc{2 mul}repeat 1 sub] def
/ImageMatrix
ImgDir 0 eq{[iw 0 0 ih 0 0]}if
ImgDir 1 eq{[iw neg 0 0 ih iw 0]}if
ImgDir 2 eq{[iw 0 0 ih neg 0 ih]}if
ImgDir 3 eq{[iw neg 0 0 ih neg iw ih]}if
def
/DataSource ImgProc def
/BitsPerComponent bpc def
/Interpolate smoothflag def
end image}bd
/DoImg{ ImgDict dup begin
[/DeviceRGB] /L1img where{pop/ImgCS ed}{setcolorspace}ifelse
/rgb_string iw 3 mul string def
/Width iw def
/Height ih def
/Decode [0 1 0 1 0 1] def
/ImageMatrix
ImgDir 0 eq{[iw 0 0 ih 0 0]}if
ImgDir 1 eq{[iw neg 0 0 ih iw 0]}if
ImgDir 2 eq{[iw 0 0 ih neg 0 ih]}if
ImgDir 3 eq{[iw neg 0 0 ih neg iw ih]}if
def
/DataSource ImgProc def
/BitsPerComponent 8 def
/Interpolate smoothflag def
end image}bd
end def
%%EndResource
/initmtx mtx cmtx def
%%BeginFont: /MC1_Arial
12 dict begin
/FontInfo 8 dict dup begin
/ItalicAngle 0 def
/UnderlinePosition -217.00 def
/UnderlineThickness 150.00 def
/StrikeoutPosition 530.00 def
/StrikeoutThickness 102.00 def
/isFixedPitch false def
end readonly def
/FontName /MC1_Arial def
/FontType 3 def
/FontMatrix [1 2048 div 0 0 1 2048 div 0 0] def
/FontBBox [-1361 -665 4096 2129] def
/Encoding 256 array def 0 1 255{Encoding exch/.notdef put}for
Encoding 32/s32 put
Encoding 40/s40 put
Encoding 41/s41 put
Encoding 43/s43 put
Encoding 45/s45 put
Encoding 46/s46 put
Encoding 48/s48 put
Encoding 49/s49 put
Encoding 50/s50 put
Encoding 51/s51 put
Encoding 52/s52 put
Encoding 53/s53 put
Encoding 56/s56 put
Encoding 57/s57 put
Encoding 61/s61 put
Encoding 66/s66 put
Encoding 67/s67 put
Encoding 77/s77 put
Encoding 95/s95 put
Encoding 97/s97 put
Encoding 101/s101 put
Encoding 116/s116 put
Encoding 120/s120 put
/BoundingBoxes 24 dict def
BoundingBoxes begin
/s32 [0 -434 569 1854] def
/s40 [0 -434 682 1854] def
/s41 [0 -434 682 1854] def
/s43 [0 -434 1196 1854] def
/s45 [0 -434 682 1854] def
/s46 [0 -434 569 1854] def
/s48 [0 -434 1139 1854] def
/s49 [0 -434 1139 1854] def
/s50 [0 -434 1139 1854] def
/s51 [0 -434 1139 1854] def
/s52 [0 -434 1139 1854] def
/s53 [0 -434 1139 1854] def
/s56 [0 -434 1139 1854] def
/s57 [0 -434 1139 1854] def
/s61 [0 -434 1196 1854] def
/s66 [0 -434 1366 1854] def
/s67 [0 -434 1479 1854] def
/s77 [0 -434 1706 1854] def
/s95 [-31 -434 1139 1854] def
/s97 [0 -434 1139 1854] def
/s101 [0 -434 1139 1854] def
/s116 [0 -434 569 1854] def
/s120 [0 -434 1024 1854] def
end
/Metrics 24 dict def
Metrics begin
/s32 569 def
/s40 682 def
/s41 682 def
/s43 1196 def
/s45 682 def
/s46 569 def
/s48 1139 def
/s49 1139 def
/s50 1139 def
/s51 1139 def
/s52 1139 def
/s53 1139 def
/s56 1139 def
/s57 1139 def
/s61 1196 def
/s66 1366 def
/s67 1479 def
/s77 1706 def
/s95 1139 def
/s97 1139 def
/s101 1139 def
/s116 569 def
/s120 1024 def
end
/CharProcs 24 dict def
CharProcs begin
/.notdef {} def
/s40 {
479 -431 m
379.67 -305.67 295.67 -159 227 9 c
158.33 177 124 351 124 531 c
124 689.67 149.67 841.67 201 987 c
261 1155.67 353.67 1323.67 479 1491 c
608 1491 479 1491 608 1491 c
527.33 1352.33 474 1253.33 448 1194 c
407.33 1102 375.33 1006 352 906 c
323.33 781.33 309 656 309 530 c
309 209.33 408.67 -111 608 -431 c
479 -431 608 -431 479 -431 c
closepath } bind def
/s41 {
253 -431 m
124 -431 253 -431 124 -431 c
323.33 -111 423 209.33 423 530 c
423 655.33 408.67 779.67 380 903 c
357.33 1003 325.67 1099 285 1191 c
259 1251 205.33 1351 124 1491 c
253 1491 124 1491 253 1491 c
378.33 1323.67 471 1155.67 531 987 c
582.33 841.67 608 689.67 608 531 c
608 351 573.5 177 504.5 9 c
435.5 -159 351.67 -305.67 253 -431 c
closepath } bind def
/s43 {
513 237 m
513 639 513 237 513 639 c
114 639 513 639 114 639 c
114 807 114 639 114 807 c
513 807 114 807 513 807 c
513 1206 513 807 513 1206 c
683 1206 513 1206 683 1206 c
683 807 683 1206 683 807 c
1082 807 683 807 1082 807 c
1082 639 1082 807 1082 639 c
683 639 1082 639 683 639 c
683 237 683 639 683 237 c
513 237 683 237 513 237 c
closepath } bind def
/s45 {
65 440 m
65 621 65 440 65 621 c
618 621 65 621 618 621 c
618 440 618 621 618 440 c
65 440 618 440 65 440 c
closepath } bind def
/s46 {
186 0 m
186 205 186 0 186 205 c
391 205 186 205 391 205 c
391 0 391 205 391 0 c
186 0 391 0 186 0 c
closepath } bind def
/s48 {
85 723 m
85 896.33 102.83 1035.83 138.5 1141.5 c
174.17 1247.17 227.17 1328.67 297.5 1386 c
367.83 1443.33 456.33 1472 563 1472 c
641.67 1472 710.67 1456.17 770 1424.5 c
829.33 1392.83 878.33 1347.17 917 1287.5 c
955.67 1227.83 986 1155.17 1008 1069.5 c
1030 983.83 1041 868.33 1041 723 c
1041 551 1023.33 412.17 988 306.5 c
952.67 200.83 899.83 119.17 829.5 61.5 c
759.17 3.83 670.33 -25 563 -25 c
421.67 -25 310.67 25.67 230 127 c
133.33 249 85 447.67 85 723 c
closepath 270 723 m
270 482.33 298.17 322.17 354.5 242.5 c
410.83 162.83 480.33 123 563 123 c
645.67 123 715.17 163 771.5 243 c
827.83 323 856 483 856 723 c
856 964.33 827.83 1124.67 771.5 1204 c
715.17 1283.33 645 1323 561 1323 c
478.33 1323 412.33 1288 363 1218 c
301 1128.67 270 963.67 270 723 c
closepath } bind def
/s49 {
763 0 m
583 0 763 0 583 0 c
583 1147 583 0 583 1147 c
539.67 1105.67 482.83 1064.33 412.5 1023 c
342.17 981.67 279 950.67 223 930 c
223 1104 223 930 223 1104 c
323.67 1151.33 411.67 1208.67 487 1276 c
562.33 1343.33 615.67 1408.67 647 1472 c
763 1472 647 1472 763 1472 c
763 0 763 1472 763 0 c
closepath } bind def
/s50 {
1031 173 m
1031 0 1031 173 1031 0 c
62 0 1031 0 62 0 c
60.67 43.33 67.67 85 83 125 c
107.67 191 147.17 256 201.5 320 c
255.83 384 334.33 458 437 542 c
596.33 672.67 704 776.17 760 852.5 c
816 928.83 844 1001 844 1069 c
844 1140.33 818.5 1200.5 767.5 1249.5 c
716.5 1298.5 650 1323 568 1323 c
481.33 1323 412 1297 360 1245 c
308 1193 281.67 1121 281 1029 c
96 1048 281 1029 96 1048 c
108.67 1186 156.33 1291.17 239 1363.5 c
321.67 1435.83 432.67 1472 572 1472 c
712.67 1472 824 1433 906 1355 c
988 1277 1029 1180.33 1029 1065 c
1029 1006.33 1017 948.67 993 892 c
969 835.33 929.17 775.67 873.5 713 c
817.83 650.33 725.33 564.33 596 455 c
488 364.33 418.67 302.83 388 270.5 c
357.33 238.17 332 205.67 312 173 c
1031 173 312 173 1031 173 c
closepath } bind def
/s51 {
86 387 m
266 411 86 387 266 411 c
286.67 309 321.83 235.5 371.5 190.5 c
421.17 145.5 481.67 123 553 123 c
637.67 123 709.17 152.33 767.5 211 c
825.83 269.67 855 342.33 855 429 c
855 511.67 828 579.83 774 633.5 c
720 687.17 651.33 714 568 714 c
534 714 491.67 707.33 441 694 c
461 852 441 694 461 852 c
473 850.67 482.67 850 490 850 c
566.67 850 635.67 870 697 910 c
758.33 950 789 1011.67 789 1095 c
789 1161 766.67 1215.67 722 1259 c
677.33 1302.33 619.67 1324 549 1324 c
479 1324 420.67 1302 374 1258 c
327.33 1214 297.33 1148 284 1060 c
104 1092 284 1060 104 1092 c
126 1212.67 176 1306.17 254 1372.5 c
332 1438.83 429 1472 545 1472 c
625 1472 698.67 1454.83 766 1420.5 c
833.33 1386.17 884.83 1339.33 920.5 1280 c
956.17 1220.67 974 1157.67 974 1091 c
974 1027.67 957 970 923 918 c
889 866 838.67 824.67 772 794 c
858.67 774 926 732.5 974 669.5 c
1022 606.5 1046 527.67 1046 433 c
1046 305 999.33 196.5 906 107.5 c
812.67 18.5 694.67 -26 552 -26 c
423.33 -26 316.5 12.33 231.5 89 c
146.5 165.67 98 265 86 387 c
closepath } bind def
/s52 {
662 0 m
662 351 662 0 662 351 c
26 351 662 351 26 351 c
26 516 26 351 26 516 c
695 1466 26 516 695 1466 c
842 1466 695 1466 842 1466 c
842 516 842 1466 842 516 c
1040 516 842 516 1040 516 c
1040 351 1040 516 1040 351 c
842 351 1040 351 842 351 c
842 0 842 351 842 0 c
662 0 842 0 662 0 c
closepath 662 516 m
662 1177 662 516 662 1177 c
203 516 662 1177 203 516 c
662 516 203 516 662 516 c
closepath } bind def
/s53 {
85 384 m
274 400 85 384 274 400 c
288 308 320.5 238.83 371.5 192.5 c
422.5 146.17 484 123 556 123 c
642.67 123 716 155.67 776 221 c
836 286.33 866 373 866 481 c
866 583.67 837.17 664.67 779.5 724 c
721.83 783.33 646.33 813 553 813 c
495 813 442.67 799.83 396 773.5 c
349.33 747.17 312.67 713 286 671 c
117 693 286 671 117 693 c
259 1446 117 693 259 1446 c
988 1446 259 1446 988 1446 c
988 1274 988 1446 988 1274 c
403 1274 988 1274 403 1274 c
324 880 403 1274 324 880 c
412 941.33 504.33 972 601 972 c
729 972 837 927.67 925 839 c
1013 750.33 1057 636.33 1057 497 c
1057 364.33 1018.33 249.67 941 153 c
847 34.33 718.67 -25 556 -25 c
422.67 -25 313.83 12.33 229.5 87 c
145.17 161.67 97 260.67 85 384 c
closepath } bind def
/s56 {
362 795 m
287.33 822.33 232 861.33 196 912 c
160 962.67 142 1023.33 142 1094 c
142 1200.67 180.33 1290.33 257 1363 c
333.67 1435.67 435.67 1472 563 1472 c
691 1472 794 1434.83 872 1360.5 c
950 1286.17 989 1195.67 989 1089 c
989 1021 971.17 961.83 935.5 911.5 c
899.83 861.17 845.67 822.33 773 795 c
863 765.67 931.5 718.33 978.5 653 c
1025.5 587.67 1049 509.67 1049 419 c
1049 293.67 1004.67 188.33 916 103 c
827.33 17.67 710.67 -25 566 -25 c
421.33 -25 304.67 17.83 216 103.5 c
127.33 189.17 83 296 83 424 c
83 519.33 107.17 599.17 155.5 663.5 c
203.83 727.83 272.67 771.67 362 795 c
closepath 326 1100 m
326 1030.67 348.33 974 393 930 c
437.67 886 495.67 864 567 864 c
636.33 864 693.17 885.83 737.5 929.5 c
781.83 973.17 804 1026.67 804 1090 c
804 1156 781.17 1211.5 735.5 1256.5 c
689.83 1301.5 633 1324 565 1324 c
496.33 1324 439.33 1302 394 1258 c
348.67 1214 326 1161.33 326 1100 c
closepath 268 423 m
268 371.67 280.17 322 304.5 274 c
328.83 226 365 188.83 413 162.5 c
461 136.17 512.67 123 568 123 c
654 123 725 150.67 781 206 c
837 261.33 865 331.67 865 417 c
865 503.67 836.17 575.33 778.5 632 c
720.83 688.67 648.67 717 562 717 c
477.33 717 407.17 689 351.5 633 c
295.83 577 268 507 268 423 c
closepath } bind def
/s57 {
112 339 m
285 355 112 339 285 355 c
299.67 273.67 327.67 214.67 369 178 c
410.33 141.33 463.33 123 528 123 c
583.33 123 631.83 135.67 673.5 161 c
715.17 186.33 749.33 220.17 776 262.5 c
802.67 304.83 825 362 843 434 c
861 506 870 579.33 870 654 c
870 662 869.67 674 869 690 c
833 632.67 783.83 586.17 721.5 550.5 c
659.17 514.83 591.67 497 519 497 c
397.67 497 295 541 211 629 c
127 717 85 833 85 977 c
85 1125.67 128.83 1245.33 216.5 1336 c
304.17 1426.67 414 1472 546 1472 c
641.33 1472 728.5 1446.33 807.5 1395 c
886.5 1343.67 946.5 1270.5 987.5 1175.5 c
1028.5 1080.5 1049 943 1049 763 c
1049 575.67 1028.67 426.5 988 315.5 c
947.33 204.5 886.83 120 806.5 62 c
726.17 4 632 -25 524 -25 c
409.33 -25 315.67 6.83 243 70.5 c
170.33 134.17 126.67 223.67 112 339 c
closepath 849 986 m
849 1089.33 821.5 1171.33 766.5 1232 c
711.5 1292.67 645.33 1323 568 1323 c
488 1323 418.33 1290.33 359 1225 c
299.67 1159.67 270 1075 270 971 c
270 877.67 298.17 801.83 354.5 743.5 c
410.83 685.17 480.33 656 563 656 c
646.33 656 714.83 685.17 768.5 743.5 c
822.17 801.83 849 882.67 849 986 c
closepath } bind def
/s61 {
1082 862 m
114 862 1082 862 114 862 c
114 1030 114 862 114 1030 c
1082 1030 114 1030 1082 1030 c
1082 862 1082 1030 1082 862 c
closepath 1082 417 m
114 417 1082 417 114 417 c
114 585 114 417 114 585 c
1082 585 114 585 1082 585 c
1082 417 1082 585 1082 417 c
closepath } bind def
/s66 {
150 0 m
150 1466 150 0 150 1466 c
700 1466 150 1466 700 1466 c
812 1466 901.83 1451.17 969.5 1421.5 c
1037.17 1391.83 1090.17 1346.17 1128.5 1284.5 c
1166.83 1222.83 1186 1158.33 1186 1091 c
1186 1028.33 1169 969.33 1135 914 c
1101 858.67 1049.67 814 981 780 c
1069.67 754 1137.83 709.67 1185.5 647 c
1233.17 584.33 1257 510.33 1257 425 c
1257 356.33 1242.5 292.5 1213.5 233.5 c
1184.5 174.5 1148.67 129 1106 97 c
1063.33 65 1009.83 40.83 945.5 24.5 c
881.17 8.17 802.33 0 709 0 c
150 0 709 0 150 0 c
closepath 344 850 m
661 850 344 850 661 850 c
747 850 808.67 855.67 846 867 c
895.33 881.67 932.5 906 957.5 940 c
982.5 974 995 1016.67 995 1068 c
995 1116.67 983.33 1159.5 960 1196.5 c
936.67 1233.5 903.33 1258.83 860 1272.5 c
816.67 1286.17 742.33 1293 637 1293 c
344 1293 637 1293 344 1293 c
344 850 344 1293 344 850 c
closepath 344 173 m
709 173 344 173 709 173 c
771.67 173 815.67 175.33 841 180 c
885.67 188 923 201.33 953 220 c
983 238.67 1007.67 265.83 1027 301.5 c
1046.33 337.17 1056 378.33 1056 425 c
1056 479.67 1042 527.17 1014 567.5 c
986 607.83 947.17 636.17 897.5 652.5 c
847.83 668.83 776.33 677 683 677 c
344 677 683 677 344 677 c
344 173 344 677 344 173 c
closepath } bind def
/s67 {
1204 514 m
1398 465 1204 514 1398 465 c
1357.33 305.67 1284.17 184.17 1178.5 100.5 c
1072.83 16.83 943.67 -25 791 -25 c
633 -25 504.5 7.17 405.5 71.5 c
306.5 135.83 231.17 229 179.5 351 c
127.83 473 102 604 102 744 c
102 896.67 131.17 1029.83 189.5 1143.5 c
247.83 1257.17 330.83 1343.5 438.5 1402.5 c
546.17 1461.5 664.67 1491 794 1491 c
940.67 1491 1064 1453.67 1164 1379 c
1264 1304.33 1333.67 1199.33 1373 1064 c
1182 1019 1373 1064 1182 1019 c
1148 1125.67 1098.67 1203.33 1034 1252 c
969.33 1300.67 888 1325 790 1325 c
677.33 1325 583.17 1298 507.5 1244 c
431.83 1190 378.67 1117.5 348 1026.5 c
317.33 935.5 302 841.67 302 745 c
302 620.33 320.17 511.5 356.5 418.5 c
392.83 325.5 449.33 256 526 210 c
602.67 164 685.67 141 775 141 c
883.67 141 975.67 172.33 1051 235 c
1126.33 297.67 1177.33 390.67 1204 514 c
closepath } bind def
/s77 {
152 0 m
152 1466 152 0 152 1466 c
444 1466 152 1466 444 1466 c
791 428 444 1466 791 428 c
823 331.33 846.33 259 861 211 c
877.67 264.33 903.67 342.67 939 446 c
1290 1466 939 446 1290 1466 c
1551 1466 1290 1466 1551 1466 c
1551 0 1551 1466 1551 0 c
1364 0 1551 0 1364 0 c
1364 1227 1364 0 1364 1227 c
938 0 1364 1227 938 0 c
763 0 938 0 763 0 c
339 1248 763 0 339 1248 c
339 0 339 1248 339 0 c
152 0 339 0 152 0 c
closepath } bind def
/s95 {
-31 -407 m
-31 -277 -31 -407 -31 -277 c
1162 -277 -31 -277 1162 -277 c
1162 -407 1162 -277 1162 -407 c
-31 -407 1162 -407 -31 -407 c
closepath } bind def
/s97 {
828 131 m
761.33 74.33 697.17 34.33 635.5 11 c
573.83 -12.33 507.67 -24 437 -24 c
320.33 -24 230.67 4.5 168 61.5 c
105.33 118.5 74 191.33 74 280 c
74 332 85.83 379.5 109.5 422.5 c
133.17 465.5 164.17 500 202.5 526 c
240.83 552 284 571.67 332 585 c
367.33 594.33 420.67 603.33 492 612 c
637.33 629.33 744.33 650 813 674 c
813.67 698.67 814 714.33 814 721 c
814 794.33 797 846 763 876 c
717 916.67 648.67 937 558 937 c
473.33 937 410.83 922.17 370.5 892.5 c
330.17 862.83 300.33 810.33 281 735 c
105 759 281 735 105 759 c
121 834.33 147.33 895.17 184 941.5 c
220.67 987.83 273.67 1023.5 343 1048.5 c
412.33 1073.5 492.67 1086 584 1086 c
674.67 1086 748.33 1075.33 805 1054 c
861.67 1032.67 903.33 1005.83 930 973.5 c
956.67 941.17 975.33 900.33 986 851 c
992 820.33 995 765 995 685 c
995 445 995 685 995 445 c
995 277.67 998.83 171.83 1006.5 127.5 c
1014.17 83.17 1029.33 40.67 1052 0 c
864 0 1052 0 864 0 c
845.33 37.33 833.33 81 828 131 c
closepath 813 533 m
747.67 506.33 649.67 483.67 519 465 c
445 454.33 392.67 442.33 362 429 c
331.33 415.67 307.67 396.17 291 370.5 c
274.33 344.83 266 316.33 266 285 c
266 237 284.17 197 320.5 165 c
356.83 133 410 117 480 117 c
549.33 117 611 132.17 665 162.5 c
719 192.83 758.67 234.33 784 287 c
803.33 327.67 813 387.67 813 467 c
813 533 813 467 813 533 c
closepath } bind def
/s101 {
862 342 m
1048 319 862 342 1048 319 c
1018.67 210.33 964.33 126 885 66 c
805.67 6 704.33 -24 581 -24 c
425.67 -24 302.5 23.83 211.5 119.5 c
120.5 215.17 75 349.33 75 522 c
75 700.67 121 839.33 213 938 c
305 1036.67 424.33 1086 571 1086 c
713 1086 829 1037.67 919 941 c
1009 844.33 1054 708.33 1054 533 c
1054 522.33 1053.67 506.33 1053 485 c
261 485 1053 485 261 485 c
267.67 368.33 300.67 279 360 217 c
419.33 155 493.33 124 582 124 c
648 124 704.33 141.33 751 176 c
797.67 210.67 834.67 266 862 342 c
closepath 271 633 m
864 633 271 633 864 633 c
856 722.33 833.33 789.33 796 834 c
738.67 903.33 664.33 938 573 938 c
490.33 938 420.83 910.33 364.5 855 c
308.17 799.67 277 725.67 271 633 c
closepath } bind def
/s116 {
528 161 m
554 2 528 161 554 2 c
503.33 -8.67 458 -14 418 -14 c
352.67 -14 302 -3.67 266 17 c
230 37.67 204.67 64.83 190 98.5 c
175.33 132.17 168 203 168 311 c
168 922 168 311 168 922 c
36 922 168 922 36 922 c
36 1062 36 922 36 1062 c
168 1062 36 1062 168 1062 c
168 1325 168 1062 168 1325 c
347 1433 168 1325 347 1433 c
347 1062 347 1433 347 1062 c
528 1062 347 1062 528 1062 c
528 922 528 1062 528 922 c
347 922 528 922 347 922 c
347 301 347 922 347 301 c
347 249.67 350.17 216.67 356.5 202 c
362.83 187.33 373.17 175.67 387.5 167 c
401.83 158.33 422.33 154 449 154 c
469 154 495.33 156.33 528 161 c
closepath } bind def
/s120 {
15 0 m
403 552 15 0 403 552 c
44 1062 403 552 44 1062 c
269 1062 44 1062 269 1062 c
432 813 269 1062 432 813 c
462.67 765.67 487.33 726 506 694 c
535.33 738 562.33 777 587 811 c
766 1062 587 811 766 1062 c
981 1062 766 1062 981 1062 c
614 562 981 1062 614 562 c
1009 0 614 562 1009 0 c
788 0 1009 0 788 0 c
570 330 788 0 570 330 c
512 419 570 330 512 419 c
233 0 512 419 233 0 c
15 0 233 0 15 0 c
closepath } bind def
end
/BuildGlyph {
exch dup /Metrics get 2 index get 0 setcharwidth
/CharProcs get exch 2 copy known not{pop/.notdef}if get exec fill}bind def
/BuildChar {
1 index /Encoding get exch get
1 index /BuildGlyph get exec
} bind def
currentdict end /MC1_Arial exch definefont pop
%%EndFont
%%BeginFont: /MC2_Arial
12 dict begin
/FontInfo 8 dict dup begin
/ItalicAngle 0 def
/UnderlinePosition -217.00 def
/UnderlineThickness 150.00 def
/StrikeoutPosition 530.00 def
/StrikeoutThickness 102.00 def
/isFixedPitch false def
end readonly def
/FontName /MC2_Arial def
/FontType 3 def
/FontMatrix [1 2048 div 0 0 1 2048 div 0 0] def
/FontBBox [-1361 -665 4096 2129] def
/Encoding 256 array def 0 1 255{Encoding exch/.notdef put}for
Encoding 32/s32 put
Encoding 40/s40 put
Encoding 41/s41 put
Encoding 67/s67 put
Encoding 116/s116 put
/BoundingBoxes 6 dict def
BoundingBoxes begin
/s32 [0 -434 569 1854] def
/s40 [0 -434 682 1854] def
/s41 [0 -434 682 1854] def
/s67 [0 -434 1479 1854] def
/s116 [0 -434 569 1854] def
end
/Metrics 6 dict def
Metrics begin
/s32 569 def
/s40 682 def
/s41 682 def
/s67 1479 def
/s116 569 def
end
/CharProcs 6 dict def
CharProcs begin
/.notdef {} def
/s40 {
479 -431 m
379.67 -305.67 295.67 -159 227 9 c
158.33 177 124 351 124 531 c
124 689.67 149.67 841.67 201 987 c
261 1155.67 353.67 1323.67 479 1491 c
608 1491 479 1491 608 1491 c
527.33 1352.33 474 1253.33 448 1194 c
407.33 1102 375.33 1006 352 906 c
323.33 781.33 309 656 309 530 c
309 209.33 408.67 -111 608 -431 c
479 -431 608 -431 479 -431 c
closepath } bind def
/s41 {
253 -431 m
124 -431 253 -431 124 -431 c
323.33 -111 423 209.33 423 530 c
423 655.33 408.67 779.67 380 903 c
357.33 1003 325.67 1099 285 1191 c
259 1251 205.33 1351 124 1491 c
253 1491 124 1491 253 1491 c
378.33 1323.67 471 1155.67 531 987 c
582.33 841.67 608 689.67 608 531 c
608 351 573.5 177 504.5 9 c
435.5 -159 351.67 -305.67 253 -431 c
closepath } bind def
/s67 {
1204 514 m
1398 465 1204 514 1398 465 c
1357.33 305.67 1284.17 184.17 1178.5 100.5 c
1072.83 16.83 943.67 -25 791 -25 c
633 -25 504.5 7.17 405.5 71.5 c
306.5 135.83 231.17 229 179.5 351 c
127.83 473 102 604 102 744 c
102 896.67 131.17 1029.83 189.5 1143.5 c
247.83 1257.17 330.83 1343.5 438.5 1402.5 c
546.17 1461.5 664.67 1491 794 1491 c
940.67 1491 1064 1453.67 1164 1379 c
1264 1304.33 1333.67 1199.33 1373 1064 c
1182 1019 1373 1064 1182 1019 c
1148 1125.67 1098.67 1203.33 1034 1252 c
969.33 1300.67 888 1325 790 1325 c
677.33 1325 583.17 1298 507.5 1244 c
431.83 1190 378.67 1117.5 348 1026.5 c
317.33 935.5 302 841.67 302 745 c
302 620.33 320.17 511.5 356.5 418.5 c
392.83 325.5 449.33 256 526 210 c
602.67 164 685.67 141 775 141 c
883.67 141 975.67 172.33 1051 235 c
1126.33 297.67 1177.33 390.67 1204 514 c
closepath } bind def
/s116 {
528 161 m
554 2 528 161 554 2 c
503.33 -8.67 458 -14 418 -14 c
352.67 -14 302 -3.67 266 17 c
230 37.67 204.67 64.83 190 98.5 c
175.33 132.17 168 203 168 311 c
168 922 168 311 168 922 c
36 922 168 922 36 922 c
36 1062 36 922 36 1062 c
168 1062 36 1062 168 1062 c
168 1325 168 1062 168 1325 c
347 1433 168 1325 347 1433 c
347 1062 347 1433 347 1062 c
528 1062 347 1062 528 1062 c
528 922 528 1062 528 922 c
347 922 528 922 347 922 c
347 301 347 922 347 301 c
347 249.67 350.17 216.67 356.5 202 c
362.83 187.33 373.17 175.67 387.5 167 c
401.83 158.33 422.33 154 449 154 c
469 154 495.33 156.33 528 161 c
closepath } bind def
end
/BuildGlyph {
exch dup /Metrics get 2 index get 0 setcharwidth
/CharProcs get exch 2 copy known not{pop/.notdef}if get exec fill}bind def
/BuildChar {
1 index /Encoding get exch get
1 index /BuildGlyph get exec
} bind def
currentdict end /MC2_Arial exch definefont pop
%%EndFont
%%BeginFont: /MC3_Arial
12 dict begin
/FontInfo 8 dict dup begin
/ItalicAngle 0 def
/UnderlinePosition -217.00 def
/UnderlineThickness 150.00 def
/StrikeoutPosition 530.00 def
/StrikeoutThickness 102.00 def
/isFixedPitch false def
end readonly def
/FontName /MC3_Arial def
/FontType 3 def
/FontMatrix [1 2048 div 0 0 1 2048 div 0 0] def
/FontBBox [-1361 -665 4096 2129] def
/Encoding 256 array def 0 1 255{Encoding exch/.notdef put}for
Encoding 32/s32 put
Encoding 40/s40 put
Encoding 41/s41 put
Encoding 42/s42 put
Encoding 43/s43 put
Encoding 45/s45 put
Encoding 46/s46 put
Encoding 48/s48 put
Encoding 49/s49 put
Encoding 50/s50 put
Encoding 51/s51 put
Encoding 52/s52 put
Encoding 53/s53 put
Encoding 54/s54 put
Encoding 55/s55 put
Encoding 57/s57 put
Encoding 61/s61 put
Encoding 65/s65 put
Encoding 67/s67 put
Encoding 69/s69 put
Encoding 77/s77 put
Encoding 82/s82 put
Encoding 83/s83 put
Encoding 86/s86 put
Encoding 97/s97 put
Encoding 100/s100 put
Encoding 101/s101 put
Encoding 104/s104 put
Encoding 105/s105 put
Encoding 106/s106 put
Encoding 108/s108 put
Encoding 110/s110 put
Encoding 111/s111 put
Encoding 112/s112 put
Encoding 113/s113 put
Encoding 114/s114 put
Encoding 116/s116 put
Encoding 117/s117 put
Encoding 120/s120 put
Encoding 121/s121 put
/BoundingBoxes 41 dict def
BoundingBoxes begin
/s32 [0 -434 569 1854] def
/s40 [0 -434 682 1854] def
/s41 [0 -434 682 1854] def
/s42 [0 -434 797 1854] def
/s43 [0 -434 1196 1854] def
/s45 [0 -434 682 1854] def
/s46 [0 -434 569 1854] def
/s48 [0 -434 1139 1854] def
/s49 [0 -434 1139 1854] def
/s50 [0 -434 1139 1854] def
/s51 [0 -434 1139 1854] def
/s52 [0 -434 1139 1854] def
/s53 [0 -434 1139 1854] def
/s54 [0 -434 1139 1854] def
/s55 [0 -434 1139 1854] def
/s57 [0 -434 1139 1854] def
/s61 [0 -434 1196 1854] def
/s65 [-3 -434 1366 1854] def
/s67 [0 -434 1479 1854] def
/s69 [0 -434 1366 1854] def
/s77 [0 -434 1706 1854] def
/s82 [0 -434 1479 1854] def
/s83 [0 -434 1366 1854] def
/s86 [0 -434 1366 1854] def
/s97 [0 -434 1139 1854] def
/s100 [0 -434 1139 1854] def
/s101 [0 -434 1139 1854] def
/s104 [0 -434 1139 1854] def
/s105 [0 -434 455 1854] def
/s106 [-94 -434 455 1854] def
/s108 [0 -434 455 1854] def
/s110 [0 -434 1139 1854] def
/s111 [0 -434 1139 1854] def
/s112 [0 -434 1139 1854] def
/s113 [0 -434 1139 1854] def
/s114 [0 -434 682 1854] def
/s116 [0 -434 569 1854] def
/s117 [0 -434 1139 1854] def
/s120 [0 -434 1024 1854] def
/s121 [0 -434 1024 1854] def
end
/Metrics 41 dict def
Metrics begin
/s32 569 def
/s40 682 def
/s41 682 def
/s42 797 def
/s43 1196 def
/s45 682 def
/s46 569 def
/s48 1139 def
/s49 1139 def
/s50 1139 def
/s51 1139 def
/s52 1139 def
/s53 1139 def
/s54 1139 def
/s55 1139 def
/s57 1139 def
/s61 1196 def
/s65 1366 def
/s67 1479 def
/s69 1366 def
/s77 1706 def
/s82 1479 def
/s83 1366 def
/s86 1366 def
/s97 1139 def
/s100 1139 def
/s101 1139 def
/s104 1139 def
/s105 455 def
/s106 455 def
/s108 455 def
/s110 1139 def
/s111 1139 def
/s112 1139 def
/s113 1139 def
/s114 682 def
/s116 569 def
/s117 1139 def
/s120 1024 def
/s121 1024 def
end
/CharProcs 41 dict def
CharProcs begin
/.notdef {} def
/s40 {
479 -431 m
379.67 -305.67 295.67 -159 227 9 c
158.33 177 124 351 124 531 c
124 689.67 149.67 841.67 201 987 c
261 1155.67 353.67 1323.67 479 1491 c
608 1491 479 1491 608 1491 c
527.33 1352.33 474 1253.33 448 1194 c
407.33 1102 375.33 1006 352 906 c
323.33 781.33 309 656 309 530 c
309 209.33 408.67 -111 608 -431 c
479 -431 608 -431 479 -431 c
closepath } bind def
/s41 {
253 -431 m
124 -431 253 -431 124 -431 c
323.33 -111 423 209.33 423 530 c
423 655.33 408.67 779.67 380 903 c
357.33 1003 325.67 1099 285 1191 c
259 1251 205.33 1351 124 1491 c
253 1491 124 1491 253 1491 c
378.33 1323.67 471 1155.67 531 987 c
582.33 841.67 608 689.67 608 531 c
608 351 573.5 177 504.5 9 c
435.5 -159 351.67 -305.67 253 -431 c
closepath } bind def
/s42 {
64 1197 m
110 1339 64 1197 110 1339 c
216 1301.67 293 1269.33 341 1242 c
328.33 1362.67 321.67 1445.67 321 1491 c