summaryrefslogtreecommitdiff
path: root/fonts/mpfonts/type3/mpfonts-cm/cmsy8.t3
blob: 13f3631433db095396830ec47d4644184e22389e (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
8 dict dup begin
/FontType 3 def
/FontMatrix [ 0.001 0 0 0.001 0 0 ] def
/FontBBox [ 0 0 0 0 ] def
/Encoding 256 array def
0 1 255 {Encoding exch /.notdef put} for
Encoding 0 /ch0 put
Encoding 1 /ch1 put
Encoding 2 /ch2 put
Encoding 3 /ch3 put
Encoding 4 /ch4 put
Encoding 5 /ch5 put
Encoding 6 /ch6 put
Encoding 7 /ch7 put
Encoding 8 /ch8 put
Encoding 9 /ch9 put
Encoding 10 /ch10 put
Encoding 11 /ch11 put
Encoding 12 /ch12 put
Encoding 13 /ch13 put
Encoding 14 /ch14 put
Encoding 15 /ch15 put
Encoding 16 /ch16 put
Encoding 17 /ch17 put
Encoding 18 /ch18 put
Encoding 19 /ch19 put
Encoding 20 /ch20 put
Encoding 21 /ch21 put
Encoding 22 /ch22 put
Encoding 23 /ch23 put
Encoding 24 /ch24 put
Encoding 25 /ch25 put
Encoding 26 /ch26 put
Encoding 27 /ch27 put
Encoding 28 /ch28 put
Encoding 29 /ch29 put
Encoding 30 /ch30 put
Encoding 31 /ch31 put
Encoding 32 /ch32 put
Encoding 33 /ch33 put
Encoding 34 /ch34 put
Encoding 35 /ch35 put
Encoding 36 /ch36 put
Encoding 37 /ch37 put
Encoding 38 /ch38 put
Encoding 39 /ch39 put
Encoding 40 /ch40 put
Encoding 41 /ch41 put
Encoding 42 /ch42 put
Encoding 43 /ch43 put
Encoding 44 /ch44 put
Encoding 45 /ch45 put
Encoding 46 /ch46 put
Encoding 47 /ch47 put
Encoding 48 /ch48 put
Encoding 49 /ch49 put
Encoding 50 /ch50 put
Encoding 51 /ch51 put
Encoding 52 /ch52 put
Encoding 53 /ch53 put
Encoding 54 /ch54 put
Encoding 55 /ch55 put
Encoding 56 /ch56 put
Encoding 57 /ch57 put
Encoding 58 /ch58 put
Encoding 59 /ch59 put
Encoding 60 /ch60 put
Encoding 61 /ch61 put
Encoding 62 /ch62 put
Encoding 63 /ch63 put
Encoding 64 /ch64 put
Encoding 65 /ch65 put
Encoding 66 /ch66 put
Encoding 67 /ch67 put
Encoding 68 /ch68 put
Encoding 69 /ch69 put
Encoding 70 /ch70 put
Encoding 71 /ch71 put
Encoding 72 /ch72 put
Encoding 73 /ch73 put
Encoding 74 /ch74 put
Encoding 75 /ch75 put
Encoding 76 /ch76 put
Encoding 77 /ch77 put
Encoding 78 /ch78 put
Encoding 79 /ch79 put
Encoding 80 /ch80 put
Encoding 81 /ch81 put
Encoding 82 /ch82 put
Encoding 83 /ch83 put
Encoding 84 /ch84 put
Encoding 85 /ch85 put
Encoding 86 /ch86 put
Encoding 87 /ch87 put
Encoding 88 /ch88 put
Encoding 89 /ch89 put
Encoding 90 /ch90 put
Encoding 91 /ch91 put
Encoding 92 /ch92 put
Encoding 93 /ch93 put
Encoding 94 /ch94 put
Encoding 95 /ch95 put
Encoding 96 /ch96 put
Encoding 97 /ch97 put
Encoding 98 /ch98 put
Encoding 99 /ch99 put
Encoding 100 /ch100 put
Encoding 101 /ch101 put
Encoding 102 /ch102 put
Encoding 103 /ch103 put
Encoding 104 /ch104 put
Encoding 105 /ch105 put
Encoding 106 /ch106 put
Encoding 107 /ch107 put
Encoding 108 /ch108 put
Encoding 109 /ch109 put
Encoding 110 /ch110 put
Encoding 111 /ch111 put
Encoding 112 /ch112 put
Encoding 113 /ch113 put
Encoding 114 /ch114 put
Encoding 115 /ch115 put
Encoding 116 /ch116 put
Encoding 117 /ch117 put
Encoding 118 /ch118 put
Encoding 119 /ch119 put
Encoding 120 /ch120 put
Encoding 121 /ch121 put
Encoding 122 /ch122 put
Encoding 123 /ch123 put
Encoding 124 /ch124 put
Encoding 125 /ch125 put
Encoding 126 /ch126 put
Encoding 127 /ch127 put
/CharProcs 129 dict def
CharProcs /.notdef { } put
CharProcs /ch0 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 110.44763 249.06541 moveto
710.36324 249.06541 lineto stroke
} put
CharProcs /ch1 {
295.143 0 setcharwidth
 0 0 0 setrgbcolor 0 24.2145 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 102.52922 249.06541 moveto
102.52922 225.18408 121.8889 205.8244 145.77023 205.8244 curveto
169.6516 205.82437 189.01128 225.18405 189.01128 249.06541 curveto
189.01128 272.94678 169.6516 292.30646 145.77023 292.30646 curveto
121.8889 292.30646 102.52922 272.94678 102.52922 249.06541 curveto closepath
gsave fill grestore stroke
} put
CharProcs /ch2 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 177.57524 482.6534 moveto
643.23564 15.47748 lineto stroke
newpath 643.23564 482.65337 moveto
177.57524 15.47748 lineto stroke
} put
CharProcs /ch3 {
531.258 0 setcharwidth
 0 0 0 setrgbcolor
newpath 257.43665 259.61122 moveto
257.42258 259.60493 84.57602 182.24649 84.56194 182.24019 curveto
69.58357 175.53653 64.93707 156.6567 73.30153 141.82988 curveto
81.66605 127.00299 100.22824 121.21616 113.71184 130.56946 curveto
113.7245 130.57823 269.32175 238.51266 269.33441 238.52144 curveto
 closepath fill
newpath 251.27826 249.06633 moveto
251.27686 249.0513 233.72374 64.27165 233.72232 64.25662 curveto
232.17044 47.92001 246.34752 34.59341 263.38553 34.59341 curveto
280.42355 34.59341 294.60062 47.91997 293.04874 64.25662 curveto
293.04732 64.27165 275.49422 249.0513 275.4928 249.06633 curveto
 closepath fill
newpath 257.43665 238.52144 moveto
257.44933 238.51266 413.04655 130.57823 413.05922 130.56946 curveto
426.54282 121.21616 445.10503 127.00299 453.46954 141.82988 curveto
461.83398 156.6567 457.18748 175.53653 442.20912 182.24019 curveto
442.19504 182.24649 269.3485 259.60493 269.33441 259.61122 curveto
 closepath fill
newpath 269.33441 238.52144 moveto
269.3485 238.52774 442.19504 315.88617 442.20912 315.89247 curveto
457.18748 322.59613 461.83398 341.47598 453.46954 356.3028 curveto
445.10503 371.12968 426.54282 376.91652 413.05922 367.5632 curveto
413.04655 367.55443 257.44933 259.62 257.43665 259.61122 curveto
 closepath fill
newpath 275.4928 249.06633 moveto
275.49422 249.08136 293.04732 433.86101 293.04874 433.87604 curveto
294.60062 450.21266 280.42355 463.53925 263.38553 463.53925 curveto
246.34752 463.53925 232.17044 450.21269 233.72232 433.87604 curveto
233.72374 433.86101 251.27686 249.08136 251.27826 249.06633 curveto
 closepath fill
newpath 269.33441 259.61122 moveto
269.32175 259.62 113.7245 367.55443 113.71184 367.5632 curveto
100.22824 376.91652 81.66605 371.12968 73.30153 356.3028 curveto
64.93707 341.47598 69.58357 322.59613 84.56194 315.89247 curveto
84.57602 315.88617 257.42258 238.52774 257.43665 238.52144 curveto
 closepath fill
} put
CharProcs /ch4 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 81.13293 249.06541 moveto
739.67798 249.06541 lineto stroke
newpath 367.16444 480.69696 moveto
367.16444 456.81563 386.52412 437.45595 410.40546 437.45595 curveto
434.28682 437.45592 453.6465 456.8156 453.6465 480.69696 curveto
453.6465 504.57832 434.28682 523.938 410.40546 523.938 curveto
386.52412 523.938 367.16444 504.57832 367.16444 480.69696 curveto closepath
gsave fill grestore stroke
newpath 367.16444 17.43391 moveto
367.16444 -6.44742 386.52412 -25.8071 410.40546 -25.8071 curveto
434.28682 -25.80713 453.6465 -6.44745 453.6465 17.43391 curveto
453.6465 41.31528 434.28682 60.67496 410.40546 60.67496 curveto
386.52412 60.67496 367.16444 41.31528 367.16444 17.43391 curveto closepath
gsave fill grestore stroke
} put
CharProcs /ch5 {
531.258 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 491.92941 249.06541 moveto
263.38553 20.52155 lineto
34.84166 249.06541 lineto
263.38553 477.6093 lineto
 closepath stroke
} put
CharProcs /ch6 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 45.00961
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 410.40546 667.35239 moveto
410.40546 6.66653 lineto stroke
 0 45.00961 dtransform truncate idtransform setlinewidth pop
newpath 81.13293 337.00946 moveto
739.67793 337.00946 lineto stroke
newpath 81.13293 6.66653 moveto
739.67793 6.66653 lineto stroke
} put
CharProcs /ch7 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 45.00961
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 410.40546 491.4643 moveto
410.40546 -169.22156 lineto stroke
 0 45.00961 dtransform truncate idtransform setlinewidth pop
newpath 81.13293 161.12137 moveto
739.67793 161.12137 lineto stroke
newpath 81.13293 491.4643 moveto
739.67793 491.4643 lineto stroke
} put
CharProcs /ch8 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 31.13316 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 410.40541 586.34654 moveto
499.62892 586.34654 585.15068 550.75125 648.14171 487.55946 curveto
711.25371 424.2463 746.61491 338.46294 746.61491 249.06541 curveto
746.61491 159.6679 711.25371 73.88454 648.14171 10.57137 curveto
585.15068 -52.62042 499.62892 -88.21571 410.40541 -88.21571 curveto
321.18192 -88.21571 235.66019 -52.62042 172.66917 10.57137 curveto
109.55716 73.88454 74.19595 159.6679 74.19595 249.06541 curveto
74.19595 338.46294 109.55716 424.2463 172.66917 487.55946 curveto
235.66019 550.75125 321.18192 586.34654 410.40541 586.34654 curveto closepath stroke
 1 setlinecap
newpath 746.61491 249.06541 moveto
74.19595 249.06541 lineto stroke
 31.13316 0 dtransform exch truncate exch idtransform pop setlinewidth
newpath 410.40541 -88.21571 moveto
410.40541 586.34654 lineto stroke
} put
CharProcs /ch9 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 31.13316 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 410.40541 586.34654 moveto
499.62892 586.34654 585.15068 550.75125 648.14171 487.55946 curveto
711.25371 424.2463 746.61491 338.46294 746.61491 249.06541 curveto
746.61491 159.6679 711.25371 73.88454 648.14171 10.57137 curveto
585.15068 -52.62042 499.62892 -88.21571 410.40541 -88.21571 curveto
321.18192 -88.21571 235.66019 -52.62042 172.66917 10.57137 curveto
109.55716 73.88454 74.19595 159.6679 74.19595 249.06541 curveto
74.19595 338.46294 109.55716 424.2463 172.66917 487.55946 curveto
235.66019 550.75125 321.18192 586.34654 410.40541 586.34654 curveto closepath stroke
 1 setlinecap
newpath 746.61491 249.06541 moveto
74.19595 249.06541 lineto stroke
} put
CharProcs /ch10 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 31.13316 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 410.40541 586.34654 moveto
499.62892 586.34654 585.15068 550.75125 648.14171 487.55946 curveto
711.25371 424.2463 746.61491 338.46294 746.61491 249.06541 curveto
746.61491 159.6679 711.25371 73.88454 648.14171 10.57137 curveto
585.15068 -52.62042 499.62892 -88.21571 410.40541 -88.21571 curveto
321.18192 -88.21571 235.66019 -52.62042 172.66917 10.57137 curveto
109.55716 73.88454 74.19595 159.6679 74.19595 249.06541 curveto
74.19595 338.46294 109.55716 424.2463 172.66917 487.55946 curveto
235.66019 550.75125 321.18192 586.34654 410.40541 586.34654 curveto closepath stroke
 1 setlinecap
newpath 648.14171 487.55946 moveto
172.66917 10.57137 lineto stroke
newpath 648.14171 10.57137 moveto
172.66917 487.55946 lineto stroke
} put
CharProcs /ch11 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 31.13316 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 410.40541 586.34654 moveto
499.62892 586.34654 585.15068 550.75125 648.14171 487.55946 curveto
711.25371 424.2463 746.61491 338.46294 746.61491 249.06541 curveto
746.61491 159.6679 711.25371 73.88454 648.14171 10.57137 curveto
585.15068 -52.62042 499.62892 -88.21571 410.40541 -88.21571 curveto
321.18192 -88.21571 235.66019 -52.62042 172.66917 10.57137 curveto
109.55716 73.88454 74.19595 159.6679 74.19595 249.06541 curveto
74.19595 338.46294 109.55716 424.2463 172.66917 487.55946 curveto
235.66019 550.75125 321.18192 586.34654 410.40541 586.34654 curveto closepath stroke
 1 setlinecap
newpath 648.14171 487.55946 moveto
172.66917 10.57137 lineto stroke
} put
CharProcs /ch12 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 31.13316 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 410.40541 586.34654 moveto
499.62892 586.34654 585.15068 550.75125 648.14171 487.55946 curveto
711.25371 424.2463 746.61491 338.46294 746.61491 249.06541 curveto
746.61491 159.6679 711.25371 73.88454 648.14171 10.57137 curveto
585.15068 -52.62042 499.62892 -88.21571 410.40541 -88.21571 curveto
321.18192 -88.21571 235.66019 -52.62042 172.66917 10.57137 curveto
109.55716 73.88454 74.19595 159.6679 74.19595 249.06541 curveto
74.19595 338.46294 109.55716 424.2463 172.66917 487.55946 curveto
235.66019 550.75125 321.18192 586.34654 410.40541 586.34654 curveto closepath stroke
newpath 482.35815 249.06541 moveto
482.35815 268.1493 474.77597 286.44931 461.28264 299.94264 curveto
447.7893 313.43597 429.48932 321.01816 410.40541 321.01816 curveto
391.32152 321.01816 373.02153 313.43597 359.5282 299.94264 curveto
346.03487 286.44931 338.45268 268.1493 338.45268 249.06541 curveto
338.45268 229.98152 346.03487 211.68152 359.5282 198.1882 curveto
373.02153 184.69487 391.32152 177.11269 410.40541 177.11269 curveto
429.48932 177.11269 447.7893 184.69487 461.28264 198.1882 curveto
474.77597 211.68152 482.35815 229.98152 482.35815 249.06541 curveto closepath fill
} put
CharProcs /ch13 {
1062.515 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 528.02133 690.09985 moveto
646.23494 690.09985 759.86017 643.96005 843.99045 560.92421 curveto
927.45917 478.54135 974.86867 366.33499 974.86867 249.06541 curveto
974.86867 131.79584 927.45917 19.5895 843.99045 -62.79337 curveto
759.86017 -145.82922 646.23494 -191.96902 528.02133 -191.96902 curveto
409.80772 -191.96902 296.1825 -145.82922 212.05225 -62.79337 curveto
128.58356 19.5895 81.17403 131.79588 81.17403 249.06541 curveto
81.17403 366.33496 128.58356 478.54135 212.05225 560.92421 curveto
296.1825 643.96005 409.80772 690.09985 528.02133 690.09985 curveto closepath stroke
} put
CharProcs /ch14 {
531.258 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 263.38553 432.38846 moveto
311.74783 432.38846 358.1294 413.17677 392.32672 378.97945 curveto
426.52405 344.78215 445.73572 298.40056 445.73572 250.03825 curveto
445.73572 201.67595 426.52405 155.29436 392.32672 121.09706 curveto
358.1294 86.89973 311.74783 67.68806 263.38553 67.68806 curveto
215.02322 67.68806 168.64166 86.89973 134.44434 121.09706 curveto
100.24701 155.29436 81.03534 201.67595 81.03534 250.03825 curveto
81.03534 298.40056 100.24701 344.78215 134.44434 378.97945 curveto
168.64166 413.17677 215.02322 432.38846 263.38553 432.38846 curveto closepath stroke
} put
CharProcs /ch15 {
531.258 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 263.38553 432.38846 moveto
311.74783 432.38846 358.1294 413.17677 392.32672 378.97945 curveto
426.52405 344.78215 445.73572 298.40056 445.73572 250.03825 curveto
445.73572 201.67595 426.52405 155.29436 392.32672 121.09706 curveto
358.1294 86.89973 311.74783 67.68806 263.38553 67.68806 curveto
215.02322 67.68806 168.64166 86.89973 134.44434 121.09706 curveto
100.24701 155.29436 81.03534 201.67595 81.03534 250.03825 curveto
81.03534 298.40056 100.24701 344.78215 134.44434 378.97945 curveto
168.64166 413.17677 215.02322 432.38846 263.38553 432.38846 curveto closepath
gsave fill grestore stroke
} put
CharProcs /ch16 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 81.13293 481.66545 moveto
175.02536 402.07321 287.4083 342.104 410.40546 342.104 curveto
533.40257 342.104 645.7855 402.07321 739.67793 481.66545 curveto stroke
newpath 81.13293 16.46538 moveto
175.02536 96.05762 287.4083 156.02682 410.40546 156.02682 curveto
533.40257 156.02682 645.7855 96.05762 739.67793 16.46538 curveto stroke
} put
CharProcs /ch17 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 81.13293 464.11256 moveto
739.67793 464.11256 lineto stroke
newpath 81.13293 249.06541 moveto
739.67793 249.06541 lineto stroke
newpath 81.13293 34.01826 moveto
739.67793 34.01826 lineto stroke
} put
CharProcs /ch18 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 710.36324 643.60724 moveto
710.33882 643.60724 410.42987 643.60724 410.40546 643.60724 curveto
246.51207 643.60724 110.44763 515.5723 110.44763 353.54468 curveto
110.44763 191.51704 246.51207 63.48212 410.40546 63.48212 curveto
410.42987 63.48212 710.33882 63.48212 710.36324 63.48212 curveto stroke
newpath 710.36324 -151.56503 moveto
132.95244 -151.56503 lineto stroke
} put
CharProcs /ch19 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 110.44763 643.60724 moveto
110.47205 643.60724 410.38104 643.60724 410.40546 643.60724 curveto
574.29883 643.60724 710.36324 515.57227 710.36324 353.54468 curveto
710.36324 191.51707 574.29883 63.48212 410.40546 63.48212 curveto
410.38104 63.48212 110.47205 63.48212 110.44763 63.48212 curveto stroke
newpath 110.44763 -151.56503 moveto
687.85843 -151.56503 lineto stroke
} put
CharProcs /ch20 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 710.36324 643.60724 moveto
110.44763 353.54468 lineto
710.36324 63.48212 lineto stroke
newpath 710.36324 -151.56503 moveto
110.44763 -151.56503 lineto stroke
} put
CharProcs /ch21 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 110.44763 643.60724 moveto
710.36324 353.54468 lineto
110.44763 63.48212 lineto stroke
newpath 110.44763 -151.56503 moveto
710.36324 -151.56503 lineto stroke
} put
CharProcs /ch22 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 710.36324 643.60724 moveto
685.8234 400.79059 384.59897 353.54468 110.44763 353.54468 curveto stroke
newpath 710.36324 63.48212 moveto
685.8234 306.29875 384.59897 353.54468 110.44763 353.54468 curveto stroke
newpath 710.36324 -151.56503 moveto
110.44763 -151.56503 lineto stroke
} put
CharProcs /ch23 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 110.44763 643.60724 moveto
134.98747 400.79059 436.2119 353.54468 710.36324 353.54468 curveto stroke
newpath 110.44763 63.48212 moveto
134.98747 306.29875 436.2119 353.54468 710.36324 353.54468 curveto stroke
newpath 110.44763 -151.56503 moveto
710.36324 -151.56503 lineto stroke
} put
CharProcs /ch24 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 63.01318 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 74.38264 153.06354 moveto
74.38264 253.77907 139.67949 345.06729 234.51741 345.06729 curveto
376.80159 345.06729 444.00928 153.06354 586.29347 153.06354 curveto
681.13138 153.06354 746.42822 244.35178 746.42822 345.06729 curveto
0.5 1 scale stroke grestore
} put
CharProcs /ch25 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 63.01318 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 74.38264 319.14131 moveto
74.38264 404.62056 147.51239 471.17528 234.51741 471.17528 curveto
367.72438 471.17528 453.0865 319.14131 586.29347 319.14131 curveto
673.29848 319.14131 746.42822 385.69601 746.42822 471.17528 curveto
0.5 1 scale stroke grestore
gsave newpath 74.38264 64.08562 moveto
74.38264 149.56487 147.51239 216.11958 234.51741 216.11958 curveto
367.72438 216.11958 453.0865 64.08562 586.29347 64.08562 curveto
673.29848 64.08562 746.42822 130.64032 746.42822 216.11958 curveto
0.5 1 scale stroke grestore
} put
CharProcs /ch26 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 710.36324 539.12798 moveto
710.33882 539.12798 410.42987 539.12798 410.40546 539.12798 curveto
246.51207 539.12798 110.44763 411.09305 110.44763 249.06541 curveto
110.44763 87.03778 246.51207 -40.99715 410.40546 -40.99715 curveto
410.42987 -40.99715 710.33882 -40.99715 710.36324 -40.99715 curveto stroke
} put
CharProcs /ch27 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 110.44763 539.12798 moveto
110.47205 539.12798 410.38104 539.12798 410.40546 539.12798 curveto
574.29883 539.12798 710.36324 411.09302 710.36324 249.06541 curveto
710.36324 87.03783 574.29883 -40.99715 410.40546 -40.99715 curveto
410.38104 -40.99715 110.47205 -40.99715 110.44763 -40.99715 curveto stroke
} put
CharProcs /ch28 {
1062.515 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 652.1913 569.13377 moveto
81.174 249.06541 lineto
652.1913 -71.00294 lineto stroke
newpath 974.8687 569.13377 moveto
403.8514 249.06541 lineto
974.8687 -71.00294 lineto stroke
} put
CharProcs /ch29 {
1062.515 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 81.174 569.13377 moveto
652.1913 249.06541 lineto
81.174 -71.00294 lineto stroke
newpath 403.8514 569.13377 moveto
974.8687 249.06541 lineto
403.8514 -71.00294 lineto stroke
} put
CharProcs /ch30 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 710.36206 538.51567 moveto
685.82228 295.69983 384.59924 248.45311 110.4488 248.45311 curveto stroke
newpath 710.36206 -41.60945 moveto
685.82228 201.20638 384.59924 248.45311 110.4488 248.45311 curveto stroke
} put
CharProcs /ch31 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 110.4488 538.51567 moveto
134.98859 295.69983 436.21164 248.45311 710.36206 248.45311 curveto stroke
newpath 110.4488 -41.60945 moveto
134.98859 201.20638 436.21164 248.45311 710.36206 248.45311 curveto stroke
} put
CharProcs /ch32 {
1062.515 0 setcharwidth
 0 0 0 setrgbcolor 0 27.67479 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 72.50664 249.06541 moveto
188.73824 215.23328 276.09932 118.95981 298.51674 -0.00172 curveto
315.85278 -0.00172 lineto
296.14021 104.60608 229.02963 192.86621 136.08597 240.39752 curveto
135.93732 240.47353 974.76366 240.39745 974.86867 240.39742 curveto
986.42853 240.39493 986.42853 257.73595 974.86867 257.73346 curveto
974.76366 257.73341 135.93732 257.6573 136.08597 257.7333 curveto
229.02963 305.26463 296.14021 393.52475 315.85278 498.13255 curveto
298.51674 498.13255 lineto
276.09932 379.17102 188.73824 282.89757 72.50664 249.06541 curveto closepath
gsave fill grestore stroke
} put
CharProcs /ch33 {
1062.515 0 setcharwidth
 0 0 0 setrgbcolor 0 27.67479 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 983.53606 249.06541 moveto
867.30449 215.23328 779.94342 118.95981 757.52599 -0.00172 curveto
740.18994 -0.00172 lineto
759.90251 104.60605 827.0131 192.86621 919.95673 240.39752 curveto
920.10538 240.47353 81.27904 240.39745 81.17403 240.39742 curveto
69.61417 240.39493 69.61417 257.73595 81.17403 257.73346 curveto
81.27904 257.73341 920.10538 257.6573 919.95673 257.7333 curveto
827.0131 305.26463 759.90251 393.5248 740.18994 498.13255 curveto
757.52599 498.13255 lineto
779.94342 379.17102 867.30449 282.89757 983.53606 249.06541 curveto closepath
gsave fill grestore stroke
} put
CharProcs /ch34 {
531.258 0 setcharwidth
 0 0 0 setrgbcolor 0 27.67479 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 263.38614 678.01117 moveto
285.63684 557.90854 378.03732 463.03125 497.50948 437.61208 curveto
497.50948 420.27603 lineto
396.2879 441.8122 313.19109 510.52065 272.05338 602.65366 curveto
271.9897 602.79628 272.05414 -171.11317 272.05418 -171.21103 curveto
272.05673 -182.77097 254.71558 -182.77094 254.71814 -171.21103 curveto
254.71817 -171.11317 254.78258 602.79628 254.7189 602.65366 curveto
213.58119 510.52065 130.48438 441.8122 29.2628 420.27603 curveto
29.2628 437.61208 lineto
148.73495 463.03125 241.13545 557.90854 263.38614 678.01117 curveto closepath
gsave fill grestore stroke
} put
CharProcs /ch35 {
531.258 0 setcharwidth
 0 0 0 setrgbcolor 0 27.67479 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 263.38614 -179.87843 moveto
285.63684 -59.7758 378.03728 35.10149 497.50948 60.5207 curveto
497.50948 77.85675 lineto
396.2879 56.32059 313.19109 -12.3879 272.05338 -104.52092 curveto
271.9897 -104.66354 272.05414 669.24591 272.05418 669.34378 curveto
272.05673 680.90372 254.71558 680.90367 254.71814 669.34378 curveto
254.71817 669.24591 254.78258 -104.66354 254.7189 -104.52092 curveto
213.58119 -12.3879 130.48438 56.32059 29.2628 77.85675 curveto
29.2628 60.5207 lineto
148.735 35.10149 241.13545 -59.7758 263.38614 -179.87843 curveto closepath
gsave fill grestore stroke
} put
CharProcs /ch36 {
1062.515 0 setcharwidth
 0 0 0 setrgbcolor 0 27.67479 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 72.50664 249.06541 moveto
188.73824 215.23328 276.09932 118.95981 298.51674 -0.00172 curveto
315.85278 -0.00172 lineto
296.14021 104.60608 229.02963 192.86621 136.08597 240.39752 curveto
136.01648 240.43304 527.9723 240.39742 528.02136 240.39742 curveto
539.58122 240.39493 539.58122 257.73598 528.02136 257.73346 curveto
527.9723 257.73346 136.01648 257.69778 136.08597 257.7333 curveto
229.02963 305.26463 296.14021 393.52475 315.85278 498.13255 curveto
298.51674 498.13255 lineto
276.09932 379.17102 188.73824 282.89757 72.50664 249.06541 curveto closepath
gsave fill grestore stroke
newpath 983.53606 249.06541 moveto
867.30449 215.23328 779.94342 118.95981 757.52599 -0.00172 curveto
740.18994 -0.00172 lineto
759.90251 104.60605 827.0131 192.86621 919.95673 240.39752 curveto
920.02621 240.43304 528.07043 240.39742 528.02136 240.39742 curveto
516.4615 240.39493 516.4615 257.73598 528.02136 257.73346 curveto
528.07043 257.73346 920.02621 257.69778 919.95673 257.7333 curveto
827.0131 305.26463 759.90251 393.5248 740.18994 498.13255 curveto
757.52599 498.13255 lineto
779.94342 379.17102 867.30449 282.89757 983.53606 249.06541 curveto closepath
gsave fill grestore stroke
} put
CharProcs /ch37 {
1062.515 0 setcharwidth
 0 0 0 setrgbcolor 0 27.67479 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 983.53606 678.01117 moveto
925.27113 571.90051 931.57317 442.05185 999.83986 342.08223 curveto
987.58142 329.82379 lineto
927.5008 417.80573 912.62859 527.81052 944.97005 627.18233 curveto
945.04478 627.41202 87.4106 -230.37265 87.30322 -230.48006 curveto
79.13094 -238.65582 66.86902 -226.3939 75.04478 -218.22162 curveto
75.15219 -218.11424 932.9369 639.5199 932.70721 639.44516 curveto
833.3354 607.1037 723.3306 621.9759 635.34866 682.05653 curveto
647.60712 694.31497 lineto
747.57674 626.04828 877.4254 619.74625 983.53606 678.01117 curveto closepath
gsave fill grestore stroke
} put
CharProcs /ch38 {
1062.515 0 setcharwidth
 0 0 0 setrgbcolor 0 27.67479 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 983.53606 -179.87843 moveto
877.4254 -121.6135 747.57674 -127.91554 647.60712 -196.18222 curveto
635.34866 -183.92378 lineto
723.3306 -123.84317 833.3354 -108.97095 932.70721 -141.31241 curveto
932.9369 -141.38716 75.15224 716.24702 75.04483 716.3544 curveto
66.86906 724.52669 79.13098 736.7886 87.30327 728.61284 curveto
87.41063 728.50543 945.04478 -129.27928 944.97005 -129.04959 curveto
912.62859 -29.67778 927.5008 80.32703 987.58142 168.30896 curveto
999.83986 156.05052 lineto
931.57317 56.08089 925.27113 -73.76778 983.53606 -179.87843 curveto closepath
gsave fill grestore stroke
} put
CharProcs /ch39 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 63.01318 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 74.38264 279.05946 moveto
74.38264 371.62611 144.01346 450.15886 234.51741 450.15886 curveto
371.82613 450.15886 448.98474 279.05946 586.29347 279.05946 curveto
676.79742 279.05946 746.42822 357.59221 746.42822 450.15886 curveto
0.5 1 scale stroke grestore
 0 45.00961 dtransform truncate idtransform setlinewidth pop
newpath 81.13293 34.01826 moveto
739.67793 34.01826 lineto stroke
} put
CharProcs /ch40 {
1062.515 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 974.86989 356.58899 moveto
81.1728 356.58899 lineto stroke
newpath 974.86989 141.54184 moveto
81.1728 141.54184 lineto stroke
 1 1 1 setrgbcolor 0 27.67479 dtransform truncate idtransform setlinewidth pop
newpath 72.50542 249.06541 moveto
225.66438 281.28467 355.48474 382.1755 424.52197 522.63768 curveto
0 522.63768 lineto
0 -24.50685 lineto
424.52197 -24.50685 lineto
355.48474 115.95532 225.66438 216.84616 72.50542 249.06541 curveto closepath
gsave fill grestore stroke
 0 0 0 setrgbcolor
newpath 72.50542 249.06541 moveto
222.0984 213.79077 348.05869 113.4285 415.85397 -24.50685 curveto
433.19002 -24.50685 lineto
369.57272 104.928 257.14758 203.10521 121.50278 249.06653 curveto
121.50278 249.06432 lineto
257.14758 295.02562 369.57272 393.20284 433.19002 522.63768 curveto
415.85397 522.63768 lineto
348.05869 384.70233 222.0984 284.34006 72.50542 249.06541 curveto closepath
gsave fill grestore stroke
} put
CharProcs /ch41 {
1062.515 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 81.1728 356.58899 moveto
974.86989 356.58899 lineto stroke
newpath 81.1728 141.54184 moveto
974.86989 141.54184 lineto stroke
 1 1 1 setrgbcolor 0 27.67479 dtransform truncate idtransform setlinewidth pop
newpath 983.53728 249.06541 moveto
830.37831 281.28467 700.55795 382.1755 631.52072 522.63768 curveto
1056.0427 522.63768 lineto
1056.0427 -24.50685 lineto
631.52072 -24.50685 lineto
700.55795 115.95532 830.37831 216.84616 983.53728 249.06541 curveto closepath
gsave fill grestore stroke
 0 0 0 setrgbcolor
newpath 983.53728 249.06541 moveto
833.94432 213.79074 707.98404 113.4285 640.18877 -24.50685 curveto
622.85272 -24.50685 lineto
686.47002 104.928 798.89511 203.10521 934.53992 249.06653 curveto
934.53992 249.06432 lineto
798.89511 295.02562 686.47002 393.20284 622.85272 522.63768 curveto
640.18877 522.63768 lineto
707.98404 384.70233 833.94432 284.34009 983.53728 249.06541 curveto closepath
gsave fill grestore stroke
} put
CharProcs /ch42 {
649.315 0 setcharwidth
 0 0 0 setrgbcolor 45.00961
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 429.7171 -171.21225 moveto
429.7171 669.34378 lineto stroke
newpath 214.66995 -171.21225 moveto
214.66995 669.34378 lineto stroke
 1 1 1 setrgbcolor 0 27.67479 dtransform truncate idtransform setlinewidth pop
newpath 322.19353 678.01239 moveto
282.48943 530.36406 178.46489 408.41327 38.92319 345.9268 curveto
38.92319 691.84859 lineto
605.46387 691.84859 lineto
605.46387 345.9268 lineto
465.92215 408.41327 361.89763 530.36406 322.19353 678.01239 curveto closepath
gsave fill grestore stroke
 0 0 0 setrgbcolor
newpath 322.19353 678.01239 moveto
364.96861 534.0743 468.41742 415.96393 605.46387 354.59485 curveto
605.46387 337.2588 lineto
475.58325 395.41904 374.13023 502.004 322.19409 633.55832 curveto
322.19295 633.55832 lineto
270.2568 502.004 168.80379 395.41904 38.92319 337.2588 curveto
38.92319 354.59485 lineto
175.96964 415.96393 279.41843 534.0743 322.19353 678.01239 curveto closepath
gsave fill grestore stroke
} put
CharProcs /ch43 {
649.315 0 setcharwidth
 0 0 0 setrgbcolor 45.00961
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 429.7171 669.345 moveto
429.7171 -171.21103 lineto stroke
newpath 214.66995 669.345 moveto
214.66995 -171.21103 lineto stroke
 1 1 1 setrgbcolor 0 27.67479 dtransform truncate idtransform setlinewidth pop
newpath 322.19353 -179.87965 moveto
282.48892 -32.2322 178.46443 89.71768 38.92319 152.20349 curveto
38.92319 -193.71584 lineto
605.46387 -193.71584 lineto
605.46387 152.20349 lineto
465.9226 89.71768 361.89812 -32.2322 322.19353 -179.87965 curveto closepath
gsave fill grestore stroke
 0 0 0 setrgbcolor
newpath 322.19353 -179.87965 moveto
364.96912 -35.9424 468.41788 82.16705 605.46387 143.53549 curveto
605.46387 160.87154 lineto
475.58363 102.71191 374.13069 -3.87221 322.19417 -135.42577 curveto
322.19287 -135.42577 lineto
270.25635 -3.87221 168.8034 102.71191 38.92319 160.87154 curveto
38.92319 143.53549 lineto
175.96918 82.16705 279.41794 -35.9424 322.19353 -179.87965 curveto closepath
gsave fill grestore stroke
} put
CharProcs /ch44 {
1062.515 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 974.86989 356.58899 moveto
81.1728 356.58899 lineto stroke
newpath 974.86989 141.54184 moveto
81.1728 141.54184 lineto stroke
 1 1 1 setrgbcolor 0 27.67479 dtransform truncate idtransform setlinewidth pop
newpath 51.75055 249.06541 moveto
184.8091 293.01286 291.98592 392.96475 345.09789 522.63768 curveto
0 522.63768 lineto
0 -24.50685 lineto
345.09789 -24.50685 lineto
291.98592 105.16609 184.8091 205.11797 51.75055 249.06541 curveto closepath
gsave fill grestore stroke
 0 0 0 setrgbcolor
newpath 51.75055 249.06541 moveto
180.94983 202.05713 284.31969 102.72034 336.42989 -24.50685 curveto
353.76593 -24.50685 lineto
304.08289 96.79431 210.38928 194.36223 92.0804 249.06569 curveto
92.0804 249.06516 lineto
210.38928 303.7686 304.08289 401.33652 353.76593 522.63768 curveto
336.42989 522.63768 lineto
284.31969 395.41049 180.94983 296.07372 51.75055 249.06541 curveto closepath
gsave fill grestore stroke
 1 1 1 setrgbcolor
newpath 1004.29214 249.06541 moveto
871.2336 293.01286 764.05678 392.96475 710.94481 522.63768 curveto
1056.0427 522.63768 lineto
1056.0427 -24.50685 lineto
710.94481 -24.50685 lineto
764.05678 105.16609 871.2336 205.11797 1004.29214 249.06541 curveto closepath
gsave fill grestore stroke
 0 0 0 setrgbcolor
newpath 1004.29214 249.06541 moveto
875.09291 202.05708 771.72305 102.72034 719.61284 -24.50685 curveto
702.2768 -24.50685 lineto
751.95984 96.79431 845.65344 194.36223 963.9623 249.06569 curveto
963.9623 249.06516 lineto
845.65344 303.7686 751.95984 401.33652 702.2768 522.63768 curveto
719.61284 522.63768 lineto
771.72305 395.41049 875.09291 296.07375 1004.29214 249.06541 curveto closepath
gsave fill grestore stroke
} put
CharProcs /ch45 {
1062.515 0 setcharwidth
 0 0 0 setrgbcolor 0 27.67479 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 72.50664 678.01117 moveto
178.6173 619.74625 308.46596 626.04828 408.43558 694.31497 curveto
420.69402 682.05653 lineto
332.71208 621.9759 222.70729 607.1037 123.33548 639.44516 curveto
123.10579 639.5199 980.89046 -218.11429 980.99786 -218.22165 curveto
989.17363 -226.39395 976.91171 -238.65585 968.73943 -230.4801 curveto
968.63205 -230.3727 110.99791 627.41202 111.07265 627.18233 curveto
143.41411 527.81052 128.5419 417.80573 68.46127 329.82379 curveto
56.20284 342.08223 lineto
124.46953 442.05185 130.77156 571.90051 72.50664 678.01117 curveto closepath
gsave fill grestore stroke
} put
CharProcs /ch46 {
1062.515 0 setcharwidth
 0 0 0 setrgbcolor 0 27.67479 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 72.50664 -179.87843 moveto
130.77156 -73.76778 124.46953 56.08089 56.20284 156.05052 curveto
68.46127 168.30896 lineto
128.5419 80.32703 143.41411 -29.67778 111.07265 -129.04959 curveto
110.99791 -129.27928 968.6321 728.50539 968.73946 728.6128 curveto
976.91176 736.78856 989.17366 724.52666 980.99791 716.35435 curveto
980.8905 716.247 123.10579 -141.38716 123.33548 -141.31241 curveto
222.70729 -108.97095 332.71208 -123.84317 420.69402 -183.92378 curveto
408.43558 -196.18222 lineto
308.46596 -127.91554 178.6173 -121.6135 72.50664 -179.87843 curveto closepath
gsave fill grestore stroke
} put
CharProcs /ch47 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 24.2145 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 74.22472 214.47292 moveto
74.22472 313.46524 137.78635 403.50594 230.80373 403.50594 curveto
310.47063 403.50594 368.69463 338.55714 414.33185 271.8082 curveto
414.33983 271.79655 512.0828 128.83786 512.09076 128.82623 curveto
561.72623 56.2295 637.18988 1.72705 724.51445 1.72705 curveto
828.013 1.72705 897.06755 103.61755 897.06755 214.47292 curveto
897.06755 324.92688 829.84746 427.21873 727.20575 427.21873 curveto
609.42555 427.21873 521.79361 329.8242 475.83328 217.7884 curveto
431.14578 108.85527 347.79332 12.35878 233.49504 12.35878 curveto
136.64322 12.35878 74.22472 109.84901 74.22472 214.47292 curveto
70.76321 214.47292 lineto
70.76321 104.0189 137.9833 1.72705 240.62505 1.72705 curveto
358.40521 1.72705 446.03716 99.12163 491.99747 211.1574 curveto
536.68501 320.09053 620.03745 416.587 734.33577 416.587 curveto
831.18758 416.587 893.60603 319.09682 893.60603 214.47292 curveto
893.60603 115.48059 830.04445 25.43985 737.02707 25.43985 curveto
657.36014 25.43985 599.13618 90.38869 553.49892 157.13763 curveto
553.49094 157.14928 455.74797 300.10797 455.73999 300.1196 curveto
406.10454 372.71632 330.64091 427.21873 243.31636 427.21873 curveto
139.81781 427.21873 70.76321 325.32828 70.76321 214.47292 curveto
 closepath
gsave fill grestore stroke
 1 1 1 setrgbcolor
newpath 762.53496 449.70187 moveto
967.83076 449.70187 lineto
967.83076 -20.75609 lineto
762.53496 -20.75609 lineto
 closepath fill
} put
CharProcs /ch48 {
288.195 0 setcharwidth
 0 0 0 setrgbcolor 0 24.2145 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 174.05585 512.89915 moveto
42.06007 62.23177 lineto
67.25958 53.0763 lineto
255.33678 483.36824 lineto
279.99342 539.77887 191.36041 571.98141 174.05585 512.89915 curveto closepath
gsave fill grestore stroke
} put
CharProcs /ch49 {
1062.515 0 setcharwidth
 0 0 0 setrgbcolor 0 24.2145 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 74.238 214.47292 moveto
74.238 313.86395 150.09923 397.50948 247.6842 397.50948 curveto
330.80055 397.50948 392.0955 331.02696 445.28503 266.21313 curveto
445.29457 266.20149 562.61378 123.2428 562.62334 123.23116 curveto
620.85957 52.26767 702.83124 1.72705 794.30669 1.72705 curveto
903.9666 1.72705 985.2662 100.73512 985.2662 214.47292 curveto
985.2662 327.70026 906.02484 427.21873 797.45146 427.21873 curveto
673.78168 427.21873 579.27419 330.13818 518.76443 219.5374 curveto
459.97507 112.08116 370.77899 14.82193 250.82898 14.82193 curveto
148.8228 14.82193 74.238 108.16061 74.238 214.47292 curveto
70.77649 214.47292 lineto
70.77649 101.24557 150.01785 1.72705 258.59123 1.72705 curveto
382.26102 1.72705 476.76854 98.80762 537.27834 209.40843 curveto
596.06767 316.86467 685.26373 414.12386 805.21371 414.12386 curveto
907.2199 414.12386 981.80469 320.78519 981.80469 214.47292 curveto
981.80469 115.08188 905.94345 31.43631 808.35846 31.43631 curveto
725.24214 31.43631 663.94727 97.91887 610.75774 162.7327 curveto
610.7482 162.74434 493.42899 305.70303 493.41943 305.71468 curveto
435.18317 376.67819 353.21146 427.21873 261.73598 427.21873 curveto
152.07605 427.21873 70.77649 328.2107 70.77649 214.47292 curveto
 closepath
gsave fill grestore stroke
} put
CharProcs /ch50 {
708.3435 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 592.79297 539.12798 moveto
592.77812 539.12798 410.21129 539.12798 410.19644 539.12798 curveto
246.36456 539.12798 110.402 411.0623 110.402 249.06541 curveto
110.402 87.06854 246.36456 -40.99715 410.19644 -40.99715 curveto
410.21129 -40.99715 592.77812 -40.99715 592.79297 -40.99715 curveto stroke
newpath 110.402 249.06541 moveto
592.79297 249.06541 lineto stroke
} put
CharProcs /ch51 {
708.3435 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 110.402 539.12798 moveto
110.41684 539.12798 292.98372 539.12798 292.99857 539.12798 curveto
456.83043 539.12798 592.79297 411.0623 592.79297 249.06541 curveto
592.79297 87.06854 456.83043 -40.99715 292.99857 -40.99715 curveto
292.98372 -40.99715 110.41684 -40.99715 110.402 -40.99715 curveto stroke
newpath 592.79297 249.06541 moveto
110.402 249.06541 lineto stroke
} put
CharProcs /ch52 {
944.458 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 85.3641 22.5048 moveto
853.06271 22.5048 lineto
469.21341 690.09985 lineto
 closepath stroke
} put
CharProcs /ch53 {
944.458 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 85.3641 475.62602 moveto
853.06271 475.62602 lineto
469.21341 -191.96902 lineto
 closepath stroke
} put
CharProcs /ch54 {
0 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 651.73145 690.09985 moveto
169.07942 -191.96902 lineto stroke
} put
CharProcs /ch55 {
0 0 setcharwidth
 0 0 0 setrgbcolor 45.00961
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 81.13416 83.01672 moveto
81.13416 415.1141 lineto stroke
 0 45.00961 dtransform truncate idtransform setlinewidth pop
newpath 81.13416 249.06541 moveto
110.44885 249.06541 lineto stroke
} put
CharProcs /ch56 {
590.286 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 22.5048 669.34378 moveto
292.78955 1.74872 lineto
563.07428 669.34378 lineto stroke
newpath 119.83269 428.94579 moveto
465.74515 428.94579 lineto stroke
} put
CharProcs /ch57 {
590.286 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 81.06071 669.34378 moveto
504.51834 669.34378 lineto
504.51834 22.5048 lineto
81.06071 22.5048 lineto stroke
newpath 504.51834 345.92429 moveto
95.7 345.92429 lineto stroke
} put
CharProcs /ch58 {
708.3435 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 81.10252 334.85457 moveto
622.09244 334.85457 lineto
622.09244 109.03624 lineto stroke
} put
CharProcs /ch59 {
531.258 0 setcharwidth
 0 0 0 setrgbcolor
newpath 263.38553 684.92987 moveto
212.8387 684.92987 168.70462 652.29492 148.42934 605.64621 curveto
122.06282 544.98296 122.05637 443.12762 122.05637 359.76422 curveto
122.05637 269.1162 122.06282 157.55615 148.42934 91.72891 curveto
167.9202 43.06763 211.58107 6.9187 263.38553 6.9187 curveto
315.19 6.9187 358.85086 43.06763 378.34172 91.72891 curveto
404.70825 157.55615 404.71469 269.1162 404.71469 359.76422 curveto
404.71469 443.12762 404.70825 544.98296 378.34172 605.64621 curveto
358.06644 652.29492 313.93237 684.92987 263.38553 684.92987 curveto
263.38553 712.60466 lineto
329.91386 712.60466 391.17355 676.76842 424.68936 619.25667 curveto
472.96239 536.42209 479.08925 438.18898 479.08925 342.46591 curveto
479.08925 248.40846 472.78923 151.8425 424.68936 70.8475 curveto
390.90811 13.96352 329.55544 -20.75609 263.38553 -20.75609 curveto
197.21562 -20.75609 135.86295 13.96352 102.0817 70.8475 curveto
53.98183 151.8425 47.68181 248.40846 47.68181 342.46591 curveto
47.68181 438.18898 53.80869 536.42209 102.0817 619.25667 curveto
135.5975 676.76842 196.8572 712.60466 263.38553 712.60466 curveto
 closepath fill
 0 45.00961 dtransform truncate idtransform setlinewidth pop [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 387.20642 745.44753 moveto
139.56464 -53.59894 lineto stroke
} put
CharProcs /ch60 {
767.372 0 setcharwidth
 0 0 0 setrgbcolor 0 24.2145 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 70.7233 325.16966 moveto
70.7233 289.5385 87.17671 254.25848 118.94633 254.25848 curveto
179.51505 254.25848 193.04886 330.84691 193.04886 401.34743 curveto
193.04886 446.24231 161.8828 482.59384 128.18915 512.65627 curveto
106.58545 531.93166 82.86105 552.57346 82.86105 581.3605 curveto
82.86105 637.40729 122.09982 686.66002 175.8481 686.66002 curveto
215.97592 686.66002 245.29893 653.10297 262.48178 615.63815 curveto
287.095 561.97252 287.70007 501.69868 287.70007 442.78267 curveto
287.70007 252.38937 lineto
287.70007 190.9164 287.69603 121.74094 271.06589 69.847 curveto
259.37462 33.36472 241.26709 -5.1873 205.15613 -5.1873 curveto
156.92252 -5.1873 117.46939 30.363 100.14021 76.24367 curveto
100.13861 76.24786 80.60258 127.97148 80.60098 127.97568 curveto
75.70789 123.08258 lineto
75.70949 123.07838 95.24553 71.35477 95.24713 71.35057 curveto
112.88483 24.65302 155.61261 -8.64882 205.15613 -8.64882 curveto
250.92644 -8.64882 285.95154 27.14897 308.77615 67.8073 curveto
340.22446 123.82726 351.69682 188.18277 351.69682 252.38937 curveto
351.69682 442.78267 lineto
351.69682 505.03564 336.2675 566.93619 300.19206 617.67786 curveto
270.64874 659.2318 226.51837 690.12154 175.8481 690.12154 curveto
116.70935 690.12154 70.7233 639.44691 70.7233 579.2203 curveto
70.7233 549.21982 91.28593 524.83183 112.83427 503.79115 curveto
143.88292 473.47389 179.13654 442.1681 179.13654 398.89436 curveto
179.13654 332.6937 175.96432 257.71999 118.94633 257.71999 curveto
89.83673 257.71999 77.64319 291.88466 77.64319 325.16966 curveto
 closepath
gsave fill grestore stroke
newpath 59.83986 87.33272 moveto
118.4559 109.47185 lineto
116.00824 111.91951 lineto
57.39221 89.78038 lineto
 closepath
gsave fill grestore stroke
newpath 324.02298 518.88646 moveto
324.02298 635.71352 456.73447 691.84831 588.84456 691.84831 curveto
588.84456 700.49739 lineto
452.01907 700.49739 315.3739 640.28076 315.3739 518.88646 curveto
 closepath
gsave fill grestore stroke
newpath 519.88406 690.95682 moveto
588.84456 700.49739 lineto
744.03369 442.78267 lineto
689.20932 409.76872 lineto
 closepath
gsave fill grestore stroke
newpath 689.20932 409.76872 moveto
639.5916 379.89009 585.51697 355.43907 527.53877 355.43907 curveto
527.52188 355.43907 319.71535 355.43907 319.69844 355.43907 curveto
319.69844 364.08815 lineto
319.71535 364.08815 527.52188 364.08815 527.53877 364.08815 curveto
583.94835 364.08815 636.47398 388.10898 684.74753 417.17818 curveto
 closepath
gsave fill grestore stroke
newpath 495.5404 364.08815 moveto
510.19441 121.3627 lineto
495.95488 54.41031 547.01292 -8.64882 615.46283 -8.64882 curveto
679.45958 -8.64882 lineto
611.00967 -8.64882 559.95163 54.41031 574.19116 121.3627 curveto
559.53716 364.08815 lineto
 closepath
gsave fill grestore stroke
 1 1 1 setrgbcolor
newpath 624.11191 -8.64882 moveto
679.45958 -8.64882 lineto
732.6949 62.26385 lineto
 closepath
gsave fill grestore stroke
 0 0 0 setrgbcolor
newpath 615.46283 -8.64882 moveto
725.20456 66.5884 lineto
732.6949 62.26385 lineto
624.11191 -8.64882 lineto
 closepath
gsave fill grestore stroke
} put
CharProcs /ch61 {
767.372 0 setcharwidth
 0 0 0 setrgbcolor 0 24.2145 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 293.08017 333.81702 moveto
181.25705 333.81702 79.37238 405.27386 79.37238 510.23853 curveto
79.37238 614.49281 179.3143 686.66002 289.85896 686.66002 curveto
384.38313 686.66002 432.46255 586.33945 504.67009 528.82912 curveto
535.71942 504.0996 572.9451 487.20874 612.62886 487.20874 curveto
665.31116 487.20874 720.58763 503.12599 720.58763 548.7755 curveto
711.93855 548.7755 lineto
711.93855 506.49199 661.28217 490.67024 612.62886 490.67024 curveto
591.92303 490.67024 579.59236 510.69455 568.66684 528.82912 curveto
509.37553 627.24277 404.55269 690.12154 289.85896 690.12154 curveto
175.35037 690.12154 70.7233 617.53798 70.7233 510.23853 curveto
70.7233 402.21336 177.28654 330.35551 293.08017 330.35551 curveto
 closepath
gsave fill grestore stroke
newpath 70.7233 172.96216 moveto
70.72849 172.96216 134.71486 172.96216 134.72005 172.96216 curveto
267.92061 172.96216 338.41533 1.72827 471.61589 1.72827 curveto
471.61589 1.72705 lineto
471.6107 1.72705 407.62433 1.72705 407.61914 1.72705 curveto
275.22456 1.72705 203.11787 169.50066 70.7233 169.50066 curveto
 closepath
gsave fill grestore stroke
newpath 407.61914 1.72827 moveto
498.3632 1.72827 583.46446 54.70319 583.46446 138.36925 curveto
647.46121 138.36925 lineto
647.46121 54.7028 562.36014 1.72705 471.61589 1.72705 curveto
471.6107 1.72705 407.62433 1.72705 407.61914 1.72705 curveto
 closepath
gsave fill grestore stroke
newpath 583.46446 138.36925 moveto
583.46446 208.09003 490.01608 241.61006 490.01608 311.33084 curveto
490.01608 372.97437 547.80785 416.83852 612.62886 416.83852 curveto
668.46632 416.83852 720.58763 383.71922 720.58763 332.08623 curveto
711.93855 332.08623 lineto
711.93855 380.63858 664.48796 413.37701 612.62886 413.37701 curveto
569.39774 413.37701 554.01283 361.18271 554.01283 311.33084 curveto
554.01283 241.61006 647.46121 208.09003 647.46121 138.36925 curveto
 closepath
gsave fill grestore stroke
} put
CharProcs /ch62 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 45.00961
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 410.40546 22.5048 moveto
410.40546 669.34378 lineto stroke
 0 45.00961 dtransform truncate idtransform setlinewidth pop
newpath 81.13416 669.34378 moveto
739.67676 669.34378 lineto stroke
} put
CharProcs /ch63 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 45.00961
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 410.40546 22.5048 moveto
410.40546 669.34378 lineto stroke
 0 45.00961 dtransform truncate idtransform setlinewidth pop
newpath 81.13416 22.5048 moveto
739.67676 22.5048 lineto stroke
} put
CharProcs /ch64 {
649.315 0 setcharwidth
 0 0 0 setrgbcolor 0 24.2145 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 87.2515 679.74132 moveto
70.9327 664.51567 70.6879 640.3495 70.6879 617.92514 curveto
70.6879 585.93454 114.10042 538.97665 146.45462 503.98596 curveto
146.48323 503.95502 497.90378 123.89796 497.93239 123.86702 curveto
527.69373 91.68047 557.13551 55.86292 557.13551 12.10727 curveto
573.45432 27.33292 573.69911 51.49907 573.69911 73.92345 curveto
573.69911 105.91515 530.28682 152.87285 497.93239 187.86377 curveto
497.90378 187.8947 146.48323 567.95177 146.45462 567.98271 curveto
116.69347 600.169 87.2515 635.98605 87.2515 679.74132 curveto closepath
gsave fill grestore stroke
newpath 438.72926 679.74132 moveto
422.41046 664.51567 422.16566 640.3495 422.16566 617.92514 curveto
422.16566 585.9342 464.97636 547.55728 497.93239 518.02042 curveto
527.78175 491.26791 557.13551 460.14104 557.13551 420.29698 curveto
573.45432 435.52263 573.69911 459.68878 573.69911 482.11316 curveto
573.69911 527.05818 522.27917 546.36765 497.93239 582.01715 curveto
475.80638 614.41493 438.72926 668.70738 438.72926 679.74132 curveto closepath
gsave fill grestore stroke
newpath 493.60785 550.01878 moveto
493.60785 433.08467 449.67146 320.31618 449.67146 203.38206 curveto
458.32054 203.38206 lineto
458.32054 320.31618 502.25693 433.08467 502.25693 550.01878 curveto
 closepath
gsave fill grestore stroke
newpath 200.16745 476.00647 moveto
151.16159 402.38388 99.98004 325.47105 99.98004 236.92213 curveto
99.98004 171.90149 165.86017 124.85944 165.86017 59.83879 curveto
241.96509 59.83879 lineto
241.96509 130.2841 150.14133 166.47682 150.14133 236.92213 curveto
150.14133 319.28252 161.99176 403.07681 207.6578 471.68193 curveto
 closepath
gsave fill grestore stroke
newpath 241.96509 59.83879 moveto
241.96509 20.67859 192.38174 12.10727 146.79405 12.10727 curveto
146.78787 12.10727 70.6953 12.10727 70.68912 12.10727 curveto
70.68912 15.56877 lineto
115.81786 15.56877 165.86017 21.09349 165.86017 59.83879 curveto
 closepath
gsave fill grestore stroke
} put
CharProcs /ch65 {
849.453 0 setcharwidth
 0 0 0 setrgbcolor 0 94.93645 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 51.68683 65.39009 moveto
55.05345 46.88101 68.96649 28.6002 86.94075 15.64952 curveto
101.30875 5.2972 118.86537 -0.98112 138.23044 -2.69185 curveto
193.57268 -7.58081 274.36363 106.86131 334.94794 192.69562 curveto
443.74364 346.83449 537.7723 507.97974 615.46133 673.43637 curveto
[0.3614 0.99297 -0.32527 0.11838 0 0] concat stroke grestore
 1 1 1 setrgbcolor
newpath 135.84776 663.23404 moveto
980.18146 663.23404 lineto
994.59909 720.90459 lineto
150.2654 720.90459 lineto
 closepath fill
 0 0 0 setrgbcolor 88.41852
 0 dtransform exch truncate exch idtransform pop setlinewidth
gsave newpath 643.20038 692.0693 moveto
642.89908 523.03761 652.10457 356.34633 670.77814 192.69562 curveto
677.26042 135.88641 689.14449 81.0297 706.275 28.74278 curveto
715.57423 0.35893 750.08188 -8.47032 782.88223 8.0785 curveto
799.16684 16.29457 lineto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
 0 57.67053 dtransform truncate idtransform setlinewidth pop
gsave newpath 379.15721 192.69562 moveto
670.77814 192.69562 lineto
[1.50645 0.86975 -0.28491 0.49348 0 0] concat stroke grestore
} put
CharProcs /ch66 {
694.662 0 setcharwidth
 0 0 0 setrgbcolor 88.41852
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 167.22432 635.07938 moveto
241.78793 672.69872 lineto
222.79507 518.3949 193.76938 363.00859 154.884 207.46706 curveto
137.99829 139.92426 111.29712 72.7467 75.63307 8.0792 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
gsave newpath 154.884 207.46706 moveto
208.27881 421.04631 317.50899 650.98303 513.53558 672.69872 curveto
598.82971 682.14754 664.64073 630.88594 645.26752 553.39304 curveto
622.88385 463.85834 474.47351 414.32605 354.88708 374.42995 curveto
514.6454 401.40997 643.35838 313.86324 608.12656 172.93591 curveto
581.0215 64.51566 446.71574 8.0792 325.19347 8.0792 curveto
266.01666 8.0792 214.14142 29.37814 179.05229 68.08194 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
} put
CharProcs /ch67 {
562.647 0 setcharwidth
 0 0 0 setrgbcolor 88.41852
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 458.9765 476.54248 moveto
478.32764 508.42352 494.53212 541.36337 507.3536 574.8103 curveto
522.04372 613.13174 516.58093 652.64165 484.58366 665.13733 curveto
471.89067 670.09425 457.73749 672.69872 442.66087 672.69872 curveto
257.0205 672.69872 122.41429 535.59409 73.613 340.38898 curveto
34.25017 182.93756 79.14673 31.04942 221.47327 8.0792 curveto
314.90189 -6.99933 423.13873 45.718 484.42947 136.1535 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
} put
CharProcs /ch68 {
821.749 0 setcharwidth
 0 0 0 setrgbcolor 88.41852
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 335.67438 651.94264 moveto
329.55907 549.24461 313.32593 444.93294 287.18993 340.38898 curveto
261.05394 235.84502 225.13124 131.5333 179.89754 28.83528 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
gsave newpath 335.67438 651.94264 moveto
335.68246 651.94264 435.09685 651.94264 435.10493 651.94264 curveto
662.55782 651.94264 808.7526 555.61351 756.50339 346.61662 curveto
706.93652 148.34917 470.02951 28.83528 252.80229 28.83528 curveto
252.79276 28.83528 135.69781 28.83528 135.68826 28.83528 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
gsave newpath 335.67438 651.94264 moveto
220.33476 651.94264 90.92715 613.88103 65.85066 513.57504 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
} put
CharProcs /ch69 {
560.772 0 setcharwidth
 0 0 0 setrgbcolor 88.41852
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 526.75179 565.37012 moveto
528.89305 568.70079 530.94821 572.06355 532.91548 575.4544 curveto
553.00308 610.07819 542.49841 647.08438 510.65915 659.12701 curveto
487.02109 668.06772 460.8714 672.69872 433.22462 672.69872 curveto
330.67018 672.69872 218.6899 616.98137 195.33563 523.56435 curveto
170.27531 423.32306 271.4432 374.42995 384.62721 374.42995 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
gsave newpath 384.62721 374.42995 moveto
251.15079 374.42995 110.12445 282.19917 78.22894 154.61726 curveto
54.81769 60.9721 142.30182 8.0792 246.06876 8.0792 curveto
333.13263 8.0792 424.97942 57.81947 482.56155 136.1535 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
} put
CharProcs /ch70 {
758.339 0 setcharwidth
 0 0 0 setrgbcolor 88.41852
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 479.29419 651.94264 moveto
458.80557 544.54547 428.46382 436.79259 388.6425 330.01094 curveto
355.19954 240.33296 315.4675 151.60503 269.77335 64.5316 curveto
250.54546 27.89151 215.6164 -3.3641 178.60425 -4.11801 curveto
124.97523 -5.21039 79.54947 20.94987 60.98036 68.08194 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
 0 57.67053 dtransform truncate idtransform setlinewidth pop
gsave newpath 235.41374 617.34811 moveto
244.06027 651.9342 309.02478 651.94264 362.04694 651.94264 curveto
362.0765 651.94264 725.30948 651.94264 725.33905 651.94264 curveto
773.98398 651.94264 830.78596 651.93306 820.9767 612.69597 curveto
[1.50645 0.86975 -0.28491 0.49348 0 0] concat stroke grestore
gsave newpath 388.6425 330.01094 moveto
665.63976 330.01094 lineto
663.13164 319.9785 lineto
[1.50645 0.86975 -0.28491 0.49348 0 0] concat stroke grestore
} put
CharProcs /ch71 {
630.981 0 setcharwidth
 0 0 0 setrgbcolor 88.41852
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 519.70267 497.29855 moveto
542.23158 522.76924 561.16443 550.51225 575.90845 579.48264 curveto
593.44255 613.93518 581.73785 649.07898 549.97952 659.18257 curveto
521.89163 668.11847 491.4942 672.69872 459.68115 672.69872 curveto
283.80508 672.69872 145.8077 561.08667 101.73804 384.80798 curveto
64.93597 237.59976 122.95099 102.3007 260.70303 96.91722 curveto
389.32272 91.89066 518.91927 206.03159 552.50864 340.38898 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
gsave newpath 552.50864 340.38898 moveto
502.44052 140.11656 442.2583 -88.78064 269.30713 -88.78064 curveto
208.37668 -88.78064 151.68571 -74.98558 103.48566 -48.42992 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
} put
CharProcs /ch72 {
904.249 0 setcharwidth
 0 0 0 setrgbcolor 88.41852
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 65.74806 513.57504 moveto
117.66646 610.91673 202.83942 651.88892 306.16951 651.9426 curveto
340.61351 651.9605 364.59706 627.99702 362.02689 594.26277 curveto
356.79872 525.6427 345.41591 456.08733 327.9855 386.36574 curveto
294.65201 253.03183 251.53592 119.87927 198.98766 -12.00975 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
gsave newpath 784.06184 651.94264 moveto
731.04396 518.17815 687.46407 383.16751 653.66672 247.97807 curveto
635.92847 177.02507 624.28265 106.23726 618.83723 36.38187 curveto
616.19286 2.45891 640.055 -22.00139 674.76703 -20.44374 curveto
738.7605 -17.57214 797.89227 -5.3408 810.91675 46.75716 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
 0 57.67053 dtransform truncate idtransform setlinewidth pop
gsave newpath 203.78696 306.34811 moveto
624.66481 306.34694 lineto
[1.50645 0.86975 -0.28491 0.49348 0 0] concat stroke grestore
} put
CharProcs /ch73 {
585.493 0 setcharwidth
 0 0 0 setrgbcolor 88.41852
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 73.61299 544.62442 moveto
100.436 651.91643 246.15887 651.94264 372.54562 651.94264 curveto
372.56622 651.94264 625.571 651.94264 625.59161 651.94264 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
gsave newpath 499.06862 651.94264 moveto
401.9733 651.94264 359.28946 481.30214 324.06119 340.38898 curveto
287.83344 195.47797 246.14243 28.83528 121.8741 28.83528 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
gsave newpath 26.97945 28.83528 moveto
27.01036 28.83528 406.52718 28.83528 406.55809 28.83528 curveto
463.25003 28.83528 526.32716 52.12413 538.82426 102.11253 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
} put
CharProcs /ch74 {
720.15 0 setcharwidth
 0 0 0 setrgbcolor 88.41852
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 833.7337 651.94264 moveto
833.71497 651.94264 603.74455 651.94264 603.72581 651.94264 curveto
480.93005 651.94264 349.58119 572.88611 320.71834 457.43466 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
gsave newpath 833.7337 651.94264 moveto
662.38718 651.94264 592.1244 371.05879 533.39807 136.1535 curveto
502.87444 14.05898 384.1147 -88.78064 264.29129 -88.78064 curveto
151.36247 -88.78064 70.86409 -10.99664 97.8282 96.85983 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
} put
CharProcs /ch75 {
807.446 0 setcharwidth
 0 0 0 setrgbcolor 88.41852
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 167.22432 635.07938 moveto
241.78793 672.69872 lineto
239.51488 585.4343 227.08745 496.28096 204.73096 406.85497 curveto
171.36427 273.38817 128.21498 140.10252 75.63307 8.0792 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
 66.4732 0 dtransform exch truncate exch idtransform pop setlinewidth
gsave newpath 729.28578 612.69597 moveto
738.2747 648.65164 716.96968 678.1201 681.19919 678.1201 curveto
595.20697 678.1201 301.73787 507.09763 282.17682 428.85327 curveto
263.35829 353.57916 437.90205 2.6578 545.58 2.6578 curveto
626.54495 2.6578 715.65585 42.63525 733.84639 115.39742 curveto
[0.96896 0.55942 -0.24718 0.42813 0 0] concat stroke grestore
} put
CharProcs /ch76 {
730.703 0 setcharwidth
 0 0 0 setrgbcolor 98.73949
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 81.46046 10.747 moveto
104.7425 44.76527 143.79819 66.77249 180.88748 66.77249 curveto
297.07025 66.77249 392.38747 10.747 508.57022 10.747 curveto
567.1583 10.747 626.96146 57.21025 641.50824 115.39742 curveto
[0.98605 0.56929 -0.1664 0.28822 0 0] concat stroke grestore
gsave newpath 81.46046 10.747 moveto
154.08728 77.23169 197.0691 164.56853 218.8147 251.55092 curveto
268.2605 449.33406 343.3281 670.03091 513.22401 670.03091 curveto
576.56773 670.03091 607.26787 611.06061 590.6588 544.62442 curveto
[0.98605 0.56929 -0.1664 0.28822 0 0] concat stroke grestore
} put
CharProcs /ch77 {
1264.521 0 setcharwidth
 0 0 0 setrgbcolor 0 94.93645 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 51.56044 31.34912 moveto
58.72952 23.67853 69.74673 16.46317 82.21747 10.66672 curveto
98.54129 3.07932 116.76537 -1.43475 136.14836 -2.69185 curveto
193.51263 -6.41223 248.07388 135.42401 290.13304 244.7888 curveto
346.68695 391.84367 384.22421 540.86827 401.7712 687.99675 curveto
[0.3614 0.99297 -0.32527 0.11838 0 0] concat stroke grestore
 1 1 1 setrgbcolor
newpath 378.6904 656.72176 moveto
649.5742 656.72176 lineto
669.26 735.46497 lineto
163.65366 735.46497 lineto
 closepath fill
 0 0 0 setrgbcolor 78.13945
 0 dtransform exch truncate exch idtransform pop setlinewidth
gsave newpath 417.76009 675.28893 moveto
445.78748 528.05322 482.44557 384.35222 527.58061 244.7888 curveto
549.03828 178.43887 578.91493 116.55318 616.65312 60.28604 curveto
[0.97763 0.56444 -0.21027 0.36421 0 0] concat stroke grestore
 88.41852 0 dtransform exch truncate exch idtransform pop setlinewidth
gsave newpath 1115.7792 663.34247 moveto
1083.34303 502.68744 1060.72154 342.6431 1048.03745 184.07748 curveto
1043.90132 132.37137 1045.08592 81.70363 1051.54543 32.79865 curveto
1055.40283 3.59444 1087.80305 -7.8075 1119.28966 8.0785 curveto
1135.57426 16.29457 lineto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
 1 1 1 setrgbcolor
newpath 589.01306 34.04097 moveto
503.9158 -306.348 lineto
638.82347 -306.348 lineto
778.72998 253.2779 lineto
723.20871 193.60115 664.9468 136.25443 604.2201 81.50919 curveto
 closepath fill
newpath 1159.98846 685.34077 moveto
1245.08572 1025.72975 lineto
971.84293 1025.72975 lineto
778.72998 253.2779 lineto
900.96231 384.65877 1020.39372 518.29814 1136.90767 654.06578 curveto
 closepath fill
 0 0 0 setrgbcolor 0 94.93645 dtransform truncate idtransform setlinewidth pop
gsave newpath 604.2201 81.50919 moveto
664.9468 136.25443 723.20871 193.60115 778.72998 253.2779 curveto
900.96231 384.65877 1020.39372 518.29814 1136.90767 654.06578 curveto
[0.3614 0.99297 -0.32527 0.11838 0 0] concat stroke grestore
} put
CharProcs /ch78 {
869.108 0 setcharwidth
 0 0 0 setrgbcolor 0 94.93645 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath -6.16467 31.34912 moveto
1.19911 23.59196 12.51236 16.30353 25.28273 10.47652 curveto
41.67395 2.99734 59.92145 -1.45058 79.30531 -2.69185 curveto
136.86613 -6.37778 175.61937 109.34969 206.83041 202.58878 curveto
261.03288 364.51175 295.84543 527.5005 310.50803 687.99675 curveto
[0.3614 0.99297 -0.32527 0.11838 0 0] concat stroke grestore
gsave newpath 642.19913 -12.70782 moveto
677.48491 149.05997 717.70006 310.94676 762.78923 472.73009 curveto
782.92123 544.96518 815.65575 662.40607 835.47438 680.77791 curveto
881.91516 723.82841 943.46994 728.24612 999.85226 728.24612 curveto
[0.3614 0.99297 -0.32527 0.11838 0 0] concat stroke grestore
 1 1 1 setrgbcolor
newpath 287.42723 656.72176 moveto
566.07484 656.72176 lineto
657.18611 1021.16689 lineto
144.41638 1021.16689 lineto
 closepath fill
newpath 665.27992 18.56715 moveto
406.5362 18.56715 lineto
316.79713 -340.38898 lineto
809.66298 -340.38898 lineto
 closepath fill
 0 0 0 setrgbcolor 78.13945
 0 dtransform exch truncate exch idtransform pop setlinewidth
gsave newpath 326.49693 675.28893 moveto
378.71309 513.49342 438.90077 355.7795 506.89133 202.58878 curveto
539.10216 130.01404 579.0418 62.20148 626.21017 0 curveto
[0.97763 0.56444 -0.21027 0.36421 0 0] concat stroke grestore
} put
CharProcs /ch79 {
841.608 0 setcharwidth
 0 0 0 setrgbcolor 88.41852
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 368.06604 672.69872 moveto
243.91504 613.27605 147.263 498.83461 116.16185 374.42995 curveto
67.3521 179.19095 162.08582 8.0792 349.60497 8.0792 curveto
530.45299 8.0792 712.1579 158.16786 757.71317 340.38898 curveto
800.33115 510.86087 745.58545 672.69872 589.61235 672.69872 curveto
483.40222 672.69872 395.63838 577.43602 345.65544 462.82663 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
} put
CharProcs /ch80 {
743.311 0 setcharwidth
 0 0 0 setrgbcolor 88.41852
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 335.67438 651.94264 moveto
327.47774 540.89479 309.18056 428.35156 280.99103 315.59329 curveto
252.80145 202.83504 214.827 90.29176 167.49968 -20.75609 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
gsave newpath 335.67438 651.94264 moveto
220.33476 651.94264 90.92715 613.88103 65.85066 513.57504 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
gsave newpath 335.67438 651.94264 moveto
335.68506 651.94264 467.1708 651.94264 467.18149 651.94264 curveto
618.68114 651.94264 760.04388 596.01039 726.90413 463.45152 curveto
691.01431 319.89224 519.65161 233.07071 362.4635 233.07071 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
} put
CharProcs /ch81 {
867.722 0 setcharwidth
 0 0 0 setrgbcolor 88.41852
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 483.28876 170.19447 moveto
435.74042 144.54503 384.83553 130.9478 336.35808 130.9478 curveto
206.74585 130.9478 134.24524 242.52795 167.29678 374.73404 curveto
208.46451 539.40506 375.57059 672.69872 540.35535 672.69872 curveto
711.74464 672.69872 800.27177 518.0949 755.84529 340.38898 curveto
720.48988 198.96732 594.09108 77.36168 447.94899 28.83528 curveto
361.12984 0.00702 272.82141 0 187.0783 0 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
gsave newpath 187.0783 0 moveto
353.1189 0 480.49248 -96.85983 646.53308 -96.85983 curveto
707.87083 -96.85983 773.53905 -57.59698 787.9383 0 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
} put
CharProcs /ch82 {
906.889 0 setcharwidth
 0 0 0 setrgbcolor 88.41852
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 335.67438 651.94264 moveto
328.68771 545.7483 311.59067 437.99199 284.59543 330.01094 curveto
257.60014 222.02988 220.81902 114.27356 174.70853 8.0792 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
gsave newpath 335.67438 651.94264 moveto
220.33476 651.94264 90.92715 613.88103 65.85066 513.57504 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
gsave newpath 335.67438 651.94264 moveto
335.68307 651.94264 442.7945 651.94264 442.80319 651.94264 curveto
613.36896 651.94264 761.33696 640.53189 724.72487 494.08353 curveto
694.65947 373.82187 551.07465 301.14227 419.37778 301.14227 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
gsave newpath 419.37778 301.14227 moveto
531.73389 301.14227 564.72018 8.0792 677.0763 8.0792 curveto
740.392 8.0792 807.1458 44.74394 848.2784 102.11253 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
} put
CharProcs /ch83 {
643.412 0 setcharwidth
 0 0 0 setrgbcolor 88.41852
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 621.0031 544.62442 moveto
623.31912 553.88847 lineto
632.59444 590.98976 623.9895 626.79361 594.62502 642.31752 curveto
556.9622 662.22842 512.88312 672.69872 465.35097 672.69872 curveto
370.09933 672.69872 265.52782 624.08932 244.03427 538.11511 curveto
222.48125 451.90297 297.26387 402.66035 376.09068 373.62198 curveto
477.8365 336.14067 584.66402 283.32124 556.97679 172.57233 curveto
529.62967 63.18393 393.29773 8.0792 270.21384 8.0792 curveto
192.17082 8.0792 125.65076 38.47571 83.65533 91.47366 curveto
62.42238 118.2695 58.28275 156.90718 75.0692 194.8381 curveto
86.10359 219.77151 101.51077 238.27641 125.59906 238.27641 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
} put
CharProcs /ch84 {
586.319 0 setcharwidth
 0 0 0 setrgbcolor 98.73949
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 465.82619 617.77174 moveto
465.81708 617.73523 353.68723 169.21587 353.6781 169.17935 curveto
336.3775 99.97687 311.56839 30.9815 279.69238 -36.57886 curveto
[0.98605 0.56929 -0.1664 0.28822 0 0] concat stroke grestore
gsave newpath 84.8512 510.58345 moveto
90.26498 586.4035 176.77104 649.27483 260.65508 649.27483 curveto
717.86145 649.27483 lineto
764.7544 649.27483 820.89207 649.28316 829.40024 683.3158 curveto
[0.98605 0.56929 -0.1664 0.28822 0 0] concat stroke grestore
} put
CharProcs /ch85 {
662.817 0 setcharwidth
 0 0 0 setrgbcolor 88.41852
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 47.90407 617.90167 moveto
80.8087 639.93243 117.91238 651.94264 153.06844 651.94264 curveto
268.57852 651.94264 83.56544 373.93068 38.4123 193.31807 curveto
14.9736 99.56331 38.71005 8.0792 123.03935 8.0792 curveto
308.07396 8.0792 623.89198 440.24829 676.81558 651.94264 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
gsave newpath 676.81558 651.94264 moveto
618.14906 495.61111 568.97864 338.21085 529.5903 180.65749 curveto
517.39993 131.896 510.28966 83.31773 508.33951 35.69019 curveto
507.15811 6.83656 536.90381 -6.99384 566.7777 8.0785 curveto
583.0623 16.29457 lineto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
} put
CharProcs /ch86 {
656.193 0 setcharwidth
 0 0 0 setrgbcolor 78.13945
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 73.00226 654.53284 moveto
348.01144 654.53284 241.7447 -12.62831 241.71791 -12.70782 curveto
[0.97763 0.56444 -0.21027 0.36421 0 0] concat stroke grestore
 1 1 1 setrgbcolor
newpath 202.64818 -31.275 moveto
117.55092 -371.66397 lineto
452.46124 -371.66397 lineto
669.66751 497.1562 lineto
669.66629 497.1562 lineto
617.75923 289.52797 292.37814 41.52472 225.72897 0 curveto
 closepath fill
 0 0 0 setrgbcolor 0 94.93645 dtransform truncate idtransform setlinewidth pop
gsave newpath 225.72897 0 moveto
292.37814 41.52472 617.75923 289.52797 669.66629 497.1562 curveto
688.27122 571.5759 645.49068 633.3097 571.88887 633.3097 curveto
[0.3614 0.99297 -0.32527 0.11838 0 0] concat stroke grestore
} put
CharProcs /ch87 {
1054.636 0 setcharwidth
 0 0 0 setrgbcolor 78.13945
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 73.00226 654.53284 moveto
341.7502 654.53284 199.96426 -12.62851 199.93138 -12.70782 curveto
[0.97763 0.56444 -0.21027 0.36421 0 0] concat stroke grestore
 1 1 1 setrgbcolor
newpath 160.86165 -31.275 moveto
75.76439 -371.66397 lineto
365.59978 -371.66397 lineto
616.8432 633.3097 lineto
561.87376 525.19342 499.34724 419.34097 429.7968 316.65485 curveto
355.3824 206.78752 273.16365 100.8916 183.94244 0 curveto
 closepath fill
 0 0 0 setrgbcolor 0 94.93645 dtransform truncate idtransform setlinewidth pop
gsave newpath 183.94244 0 moveto
273.16365 100.8916 355.3824 206.78752 429.7968 316.65485 curveto
499.34724 419.34097 561.87376 525.19342 616.8432 633.3097 curveto
[0.3614 0.99297 -0.32527 0.11838 0 0] concat stroke grestore
 1 1 1 setrgbcolor
newpath 383.25702 628.28777 moveto
1122.48369 628.28777 lineto
1135.60623 680.77791 lineto
396.37955 680.77791 lineto
 closepath fill
 0 0 0 setrgbcolor 78.13945
 0 dtransform exch truncate exch idtransform pop setlinewidth
gsave newpath 622.14897 654.53284 moveto
663.61787 548.01076 695.67244 436.4852 718.03772 320.9125 curveto
738.98 212.69336 751.37134 101.20703 755.11842 -12.70782 curveto
[0.97763 0.56444 -0.21027 0.36421 0 0] concat stroke grestore
 1 1 1 setrgbcolor
newpath 716.04869 -31.275 moveto
630.95143 -371.66397 lineto
849.41496 -371.66397 lineto
1066.62123 497.1562 lineto
1066.62001 497.1562 lineto
1020.65279 313.28732 787.80092 49.32823 739.12949 0 curveto
 closepath fill
 0 0 0 setrgbcolor 0 94.93645 dtransform truncate idtransform setlinewidth pop
gsave newpath 739.12949 0 moveto
787.80092 49.32823 1020.65279 313.28732 1066.62001 497.1562 curveto
1084.17854 567.39024 1059.7709 633.3097 995.04768 633.3097 curveto
[0.3614 0.99297 -0.32527 0.11838 0 0] concat stroke grestore
} put
CharProcs /ch88 {
756.359 0 setcharwidth
 0 0 0 setrgbcolor 88.41852
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 278.33124 605.13593 moveto
287.80534 643.03242 326.56358 651.94264 370.17885 651.94264 curveto
430.91353 651.94264 444.91084 587.20882 452.25334 527.32304 curveto
452.25708 527.29265 498.08913 153.48528 498.09286 153.45486 curveto
505.43541 93.5691 519.43272 28.83528 580.1674 28.83528 curveto
623.78267 28.83528 662.54088 37.74548 672.01501 75.642 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
gsave newpath 757.50073 651.94264 moveto
792.88045 651.94264 807.285 616.72198 797.77086 578.66539 curveto
772.27997 476.70184 124.63225 204.07607 99.14139 102.11253 curveto
89.62721 64.05592 104.03181 28.83528 139.41153 28.83528 curveto
[0.98257 0.56729 -0.18582 0.32187 0 0] concat stroke grestore
} put
CharProcs /ch89 {
705.843 0 setcharwidth
 0 0 0 setrgbcolor 78.13945
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 100.18471 620.49187 moveto
117.447 641.53885 143.06221 654.53284 167.29007 654.53284 curveto
448.01424 654.53284 382.75891 -7.66048 382.73895 -7.73953 curveto
[0.97763 0.56444 -0.21027 0.36421 0 0] concat stroke grestore
 1 1 1 setrgbcolor
newpath 722.44327 503.60468 moveto
647.57098 204.11552 268.86896 -96.85983 180.60773 -96.85983 curveto
572.32713 -96.85983 lineto
722.44449 503.60468 lineto
 closepath fill
 0 0 0 setrgbcolor 0 82.03938 dtransform truncate idtransform setlinewidth pop
gsave newpath 54.08 0 moveto
66.2871 -59.00754 115.73341 -96.85983 180.60773 -96.85983 curveto
268.86896 -96.85983 647.57098 204.11552 722.44327 503.60468 curveto
740.92175 577.51863 700.1223 639.75818 627.57254 639.75818 curveto
[0.36053 0.99057 -0.3764 0.137 0 0] concat stroke grestore
} put
CharProcs /ch90 {
763.622 0 setcharwidth
 0 0 0 setrgbcolor 98.73949
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 242.37315 532.57002 moveto
261.0802 607.39825 352.32451 649.27483 435.35971 649.27483 curveto
520.3634 649.27483 596.52072 622.42554 681.52441 622.42554 curveto
705.36751 622.42554 730.60934 632.11697 751.45482 649.27483 curveto
[0.98605 0.56929 -0.1664 0.28822 0 0] concat stroke grestore
gsave newpath 751.45482 649.27483 moveto
666.66711 552.28986 576.55109 459.42148 481.69841 371.27943 curveto
354.40587 252.99257 222.56284 139.59608 86.64948 31.50308 curveto
[0.98605 0.56929 -0.1664 0.28822 0 0] concat stroke grestore
gsave newpath 86.64948 31.50308 moveto
118.29462 49.0323 152.35298 58.35239 184.76495 58.35239 curveto
307.13065 58.35239 421.30656 31.50308 543.67226 31.50308 curveto
613.35846 31.50308 675.54308 101.97223 694.39601 177.38408 curveto
[0.98605 0.56929 -0.1664 0.28822 0 0] concat stroke grestore
 0 46.82787 dtransform truncate idtransform setlinewidth pop
gsave newpath 335.28183 371.27943 moveto
481.69841 371.27943 lineto
533.10344 371.27943 598.83002 371.27287 592.11934 344.43013 curveto
[1.37546 0.79411 -0.35088 0.60774 0 0] concat stroke grestore
} put
CharProcs /ch91 {
708.3435 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 81.10374 574.2365 moveto
81.10374 574.20543 81.10374 192.60614 81.10374 192.57507 curveto
81.10374 69.53683 214.74405 1.74872 351.5975 1.74872 curveto
488.45091 1.74872 622.09122 69.53683 622.09122 192.57507 curveto
622.09122 192.60614 622.09122 574.20543 622.09122 574.2365 curveto stroke
} put
CharProcs /ch92 {
708.3435 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 81.10374 1.74872 moveto
81.10374 1.77979 81.10374 383.37907 81.10374 383.41014 curveto
81.10374 506.44838 214.74405 574.2365 351.5975 574.2365 curveto
488.45091 574.2365 622.09122 506.44838 622.09122 383.41014 curveto
622.09122 383.37907 622.09122 1.77979 622.09122 1.74872 curveto stroke
} put
CharProcs /ch93 {
708.3435 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 81.10374 574.2365 moveto
81.10374 574.20543 81.10374 192.60614 81.10374 192.57507 curveto
81.10374 69.53683 214.74405 1.74872 351.5975 1.74872 curveto
488.45091 1.74872 622.09122 69.53683 622.09122 192.57507 curveto
622.09122 192.60614 622.09122 574.20543 622.09122 574.2365 curveto stroke
newpath 171.12419 305.16653 moveto
532.07077 305.16653 lineto stroke
 45.00961 0 dtransform exch truncate exch idtransform pop setlinewidth
newpath 351.5975 124.69327 moveto
351.5975 485.6398 lineto stroke
} put
CharProcs /ch94 {
708.3435 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 81.10252 1.74872 moveto
351.5975 574.2365 lineto
622.09244 1.74872 lineto stroke
} put
CharProcs /ch95 {
708.3435 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 81.10252 574.2365 moveto
351.5975 1.74872 lineto
622.09244 574.2365 lineto stroke
} put
CharProcs /ch96 {
649.315 0 setcharwidth
 0 0 0 setrgbcolor 45.00961
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 81.08665 669.34378 moveto
81.08665 22.5048 lineto stroke
 0 45.00961 dtransform truncate idtransform setlinewidth pop
newpath 81.08665 345.92429 moveto
563.30035 345.92429 lineto stroke
} put
CharProcs /ch97 {
649.315 0 setcharwidth
 0 0 0 setrgbcolor 45.00961
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 563.30035 669.34378 moveto
563.30035 22.5048 lineto stroke
 0 45.00961 dtransform truncate idtransform setlinewidth pop
newpath 81.08665 345.92429 moveto
563.30035 345.92429 lineto stroke
} put
CharProcs /ch98 {
472.229 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 204.73706 724.69145 moveto
204.73706 -226.56061 lineto
424.09944 -226.56061 lineto stroke
} put
CharProcs /ch99 {
472.229 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 263.22604 724.69145 moveto
263.22604 -226.56061 lineto
43.86366 -226.56061 lineto stroke
} put
CharProcs /ch100 {
472.229 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 424.09944 724.69145 moveto
204.73706 724.69145 lineto
204.73706 -226.56061 lineto stroke
} put
CharProcs /ch101 {
472.229 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 43.86366 724.69145 moveto
263.22604 724.69145 lineto
263.22604 -226.56061 lineto stroke
} put
CharProcs /ch102 {
531.258 0 setcharwidth
 0 0 0 setrgbcolor 0 24.2145 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 437.24388 735.08899 moveto
339.16992 735.08899 238.30553 699.70763 238.30553 614.0158 curveto
238.30553 613.99611 238.30553 371.88904 238.30553 371.86935 curveto
238.30553 298.57059 165.03505 250.79617 86.06567 250.79617 curveto
86.06567 247.33466 lineto
165.03505 247.33466 238.30553 199.56026 238.30553 126.26147 curveto
238.30553 126.24179 238.30553 -115.86528 238.30553 -115.88496 curveto
238.30553 -201.57678 339.16992 -236.95815 437.24388 -236.95815 curveto
440.7054 -236.95815 lineto
440.7054 -233.49664 lineto
362.24297 -233.49664 288.4668 -188.10864 288.4668 -115.88496 curveto
288.4668 -115.86528 288.4668 126.24179 288.4668 126.26147 curveto
288.4668 212.33856 187.8287 249.06541 89.52718 249.06541 curveto
187.8287 249.06541 288.4668 285.79228 288.4668 371.86935 curveto
288.4668 371.88904 288.4668 613.99611 288.4668 614.0158 curveto
288.4668 686.23947 362.24297 731.62747 440.7054 731.62747 curveto
440.7054 735.08899 lineto
 closepath
gsave fill grestore stroke
} put
CharProcs /ch103 {
531.258 0 setcharwidth
 0 0 0 setrgbcolor 0 24.2145 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 89.52718 735.08899 moveto
187.60114 735.08899 288.46555 699.70763 288.46555 614.0158 curveto
288.46555 613.99611 288.46555 371.88904 288.46555 371.86935 curveto
288.46555 298.57059 361.73601 250.79617 440.7054 250.79617 curveto
440.7054 247.33466 lineto
361.73601 247.33466 288.46555 199.56026 288.46555 126.26147 curveto
288.46555 126.24179 288.46555 -115.86528 288.46555 -115.88496 curveto
288.46555 -201.57678 187.60114 -236.95815 89.52718 -236.95815 curveto
86.06567 -236.95815 lineto
86.06567 -233.49664 lineto
164.52809 -233.49664 238.30426 -188.10864 238.30426 -115.88496 curveto
238.30426 -115.86528 238.30426 126.24179 238.30426 126.26147 curveto
238.30426 212.33856 338.94237 249.06541 437.24388 249.06541 curveto
338.94237 249.06541 238.30426 285.79228 238.30426 371.86935 curveto
238.30426 371.88904 238.30426 613.99611 238.30426 614.0158 curveto
238.30426 686.23947 164.52809 731.62747 86.06567 731.62747 curveto
86.06567 735.08899 lineto
 closepath
gsave fill grestore stroke
} put
CharProcs /ch104 {
413.2 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 328.20085 724.69267 moveto
136.90446 249.06541 lineto
328.20085 -226.56183 lineto stroke
} put
CharProcs /ch105 {
413.2 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 80.9543 724.69267 moveto
272.25069 249.06541 lineto
80.9543 -226.56183 lineto stroke
} put
CharProcs /ch106 {
295.143 0 setcharwidth
 0 0 0 setrgbcolor 45.00961
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 145.76962 724.69267 moveto
145.76962 -226.56183 lineto stroke
} put
CharProcs /ch107 {
531.258 0 setcharwidth
 0 0 0 setrgbcolor 45.00961
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 155.86195 724.69145 moveto
155.86195 -226.56061 lineto stroke
newpath 370.9091 724.69145 moveto
370.9091 -226.56061 lineto stroke
} put
CharProcs /ch108 {
531.258 0 setcharwidth
 0 0 0 setrgbcolor 0 27.67479 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 263.38614 -255.98409 moveto
285.63684 -135.88145 378.03728 -41.00417 497.50948 -15.58496 curveto
497.50948 1.7511 lineto
396.2879 -19.78506 313.19109 -88.49356 272.05338 -180.62657 curveto
272.018 -180.70578 272.05418 249.01108 272.05418 249.06541 curveto
272.05673 260.62535 254.71558 260.62535 254.71814 249.06541 curveto
254.71814 249.01108 254.75427 -180.70578 254.7189 -180.62657 curveto
213.58119 -88.49356 130.48438 -19.78506 29.2628 1.7511 curveto
29.2628 -15.58496 lineto
148.735 -41.00417 241.13545 -135.88145 263.38614 -255.98409 curveto closepath
gsave fill grestore stroke
newpath 263.38614 754.11491 moveto
285.63684 634.01228 378.03732 539.135 497.50948 513.71582 curveto
497.50948 496.37978 lineto
396.2879 517.91594 313.19109 586.62439 272.05338 678.75742 curveto
272.018 678.83662 272.05418 249.11975 272.05418 249.06541 curveto
272.05673 237.50548 254.71558 237.50548 254.71814 249.06541 curveto
254.71814 249.11975 254.75427 678.83662 254.7189 678.75742 curveto
213.58119 586.62439 130.48438 517.91594 29.2628 496.37978 curveto
29.2628 513.71582 lineto
148.73495 539.135 241.13545 634.01228 263.38614 754.11491 curveto closepath
gsave fill grestore stroke
} put
CharProcs /ch109 {
649.315 0 setcharwidth
 0 0 0 setrgbcolor 45.00961
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 429.7171 -226.56183 moveto
429.7171 724.69145 lineto stroke
newpath 214.66995 -226.56183 moveto
214.66995 724.69145 lineto stroke
 1 1 1 setrgbcolor 0 27.67479 dtransform truncate idtransform setlinewidth pop
newpath 322.19353 754.11491 moveto
270.9803 626.07693 168.1212 525.5904 38.92319 477.3785 curveto
38.92319 747.19626 lineto
605.46387 747.19626 lineto
605.46387 477.3785 lineto
476.26585 525.5904 373.40674 626.07693 322.19353 754.11491 curveto closepath
gsave fill grestore stroke
 0 0 0 setrgbcolor
newpath 322.19353 754.11491 moveto
376.43411 630.09589 478.64441 533.37083 605.46387 486.04654 curveto
605.46387 468.7105 lineto
483.55852 514.201 382.91924 602.74123 322.19356 717.09511 curveto
322.19348 717.09511 lineto
261.46782 602.74123 160.82854 514.201 38.92319 468.7105 curveto
38.92319 486.04654 lineto
165.74265 533.37083 267.95293 630.09589 322.19353 754.11491 curveto closepath
gsave fill grestore stroke
 1 1 1 setrgbcolor
newpath 322.19353 -255.98409 moveto
270.97981 -127.94702 168.12074 -27.46138 38.92319 20.7499 curveto
38.92319 -249.06541 lineto
605.46387 -249.06541 lineto
605.46387 20.7499 lineto
476.26631 -27.46138 373.40724 -127.94702 322.19353 -255.98409 curveto closepath
gsave fill grestore stroke
 0 0 0 setrgbcolor
newpath 322.19353 -255.98409 moveto
376.43462 -131.96597 478.64487 -35.24179 605.46387 12.0819 curveto
605.46387 29.41794 lineto
483.55885 -16.07208 382.91962 -104.61142 322.1934 -218.9645 curveto
322.19363 -218.9645 lineto
261.46744 -104.61142 160.82819 -16.07208 38.92319 29.41794 curveto
38.92319 12.0819 lineto
165.74219 -35.24179 267.95244 -131.96597 322.19353 -255.98409 curveto closepath
gsave fill grestore stroke
} put
CharProcs /ch110 {
531.258 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 81.03412 724.69267 moveto
445.73694 -226.56183 lineto stroke
} put
CharProcs /ch111 {
295.143 0 setcharwidth
 0 0 0 setrgbcolor 63.01318
 0 dtransform exch truncate exch idtransform pop setlinewidth [] 0 setdash
 1 setlinecap 1 setlinejoin 10 setmiterlimit
gsave newpath 89.81479 565.39949 moveto
161.84982 565.39949 201.72446 487.30035 201.72446 407.23248 curveto
201.72446 292.08752 89.81479 206.0433 89.81479 90.89836 curveto
89.81479 10.83052 129.68945 -67.26863 201.72446 -67.26863 curveto
1 0.5 scale stroke grestore
} put
CharProcs /ch112 {
885.429 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 390.9417 -928.92502 moveto
880.8691 22.5048 lineto stroke
 0 27.67479 dtransform truncate idtransform setlinewidth pop
newpath 87.33813 -535.85072 moveto
161.00584 -484.01599 lineto
382.27368 -937.5924 lineto
390.9417 -937.5924 lineto
414.51659 -883.14299 lineto
204.78525 -453.21008 lineto
87.33727 -535.84984 lineto
 closepath
gsave fill grestore stroke
} put
CharProcs /ch113 {
795.845 0 setcharwidth
 0 0 0 setrgbcolor 0 27.67479 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 159.7637 666.9405 moveto
159.7637 13.83742 lineto
220.30016 13.83742 lineto
220.30016 666.9405 lineto
 closepath
gsave fill grestore stroke
newpath 570.06923 666.9405 moveto
570.06923 13.83742 lineto
630.60568 13.83742 lineto
630.60568 666.9405 lineto
 closepath
gsave fill grestore stroke
newpath 190.03192 0 moveto
600.33745 0 lineto
600.33745 32.86235 lineto
190.03192 32.86235 lineto
 closepath fill
newpath 159.7637 611.59283 moveto
159.7637 628.16124 157.45917 646.18922 143.09872 653.39307 curveto
126.43779 661.75095 88.12024 661.75298 59.77232 661.75298 curveto
59.77232 666.94173 lineto
190.03192 666.94173 lineto
190.03192 611.59283 lineto
 closepath
gsave fill grestore stroke
newpath 220.30016 611.59283 moveto
220.30016 628.16124 222.60469 646.18922 236.96513 653.39307 curveto
253.62605 661.75095 291.9436 661.75298 320.29153 661.75298 curveto
320.29153 666.94173 lineto
190.03192 666.94173 lineto
190.03192 611.59283 lineto
 closepath
gsave fill grestore stroke
 1 1 1 setrgbcolor
newpath 59.77232 680.77791 moveto
103.15393 678.47273 146.58911 677.31953 190.03192 677.31953 curveto
233.47473 677.31953 276.90991 678.47273 320.29153 680.77791 curveto
 closepath fill
 0 0 0 setrgbcolor
newpath 159.7637 69.18507 moveto
159.7637 52.61667 157.45917 34.58868 143.09872 27.38484 curveto
126.43779 19.02696 88.12024 19.02495 59.77232 19.02495 curveto
59.77232 13.8362 lineto
190.03192 13.8362 lineto
190.03192 69.18507 lineto
 closepath
gsave fill grestore stroke
newpath 220.30016 69.18507 moveto
220.30016 55.25166 220.30016 35.21477 220.30035 27.38484 curveto
220.30043 24.09244 220.30054 19.02495 220.30138 19.02495 curveto
220.30138 13.8362 lineto
190.03192 13.8362 lineto
190.03192 69.18507 lineto
 closepath
gsave fill grestore stroke
newpath 570.06923 611.59283 moveto
570.06923 628.16124 567.7647 646.18922 553.40425 653.39307 curveto
536.74332 661.75095 498.42577 661.75298 470.07785 661.75298 curveto
470.07785 666.94173 lineto
600.33745 666.94173 lineto
600.33745 611.59283 lineto
 closepath
gsave fill grestore stroke
newpath 630.60568 611.59283 moveto
630.60568 628.16124 632.91022 646.18922 647.27066 653.39307 curveto
663.9316 661.75095 702.24913 661.75298 730.59706 661.75298 curveto
730.59706 666.94173 lineto
600.33745 666.94173 lineto
600.33745 611.59283 lineto
 closepath
gsave fill grestore stroke
 1 1 1 setrgbcolor
newpath 470.07785 680.77791 moveto
513.45946 678.47273 556.89464 677.31953 600.33745 677.31953 curveto
643.78026 677.31953 687.21544 678.47273 730.59706 680.77791 curveto
 closepath fill
 0 0 0 setrgbcolor
newpath 570.06923 69.18507 moveto
570.06923 55.25166 570.06923 35.21477 570.06903 27.38484 curveto
570.06895 24.09244 570.06885 19.02495 570.06801 19.02495 curveto
570.06801 13.8362 lineto
600.33745 13.8362 lineto
600.33745 69.18507 lineto
 closepath
gsave fill grestore stroke
newpath 630.60568 69.18507 moveto
630.60568 52.61667 632.91022 34.58868 647.27066 27.38484 curveto
663.9316 19.02696 702.24913 19.02495 730.59706 19.02495 curveto
730.59706 13.8362 lineto
600.33745 13.8362 lineto
600.33745 69.18507 lineto
 closepath
gsave fill grestore stroke
} put
CharProcs /ch114 {
885.429 0 setcharwidth
 0 0 0 setrgbcolor
newpath 51.30876 666.9405 moveto
47.9827 673.2174 52.53392 680.77791 59.63867 680.77791 curveto
819.97821 680.77791 lineto
827.0819 680.77791 831.632 673.21744 828.30595 666.9405 curveto
465.73302 -17.29889 lineto
461.22263 -25.81087 452.37964 -31.13629 442.74673 -31.13629 curveto
436.87411 -31.13629 lineto
427.2392 -31.13629 418.39288 -25.81244 413.8817 -17.29889 curveto
 closepath fill
 1 1 1 setrgbcolor
newpath 471.13036 63.06462 moveto
184.13551 604.67474 lineto
758.12521 604.67474 lineto
 closepath fill
} put
CharProcs /ch115 {
443.583 0 setcharwidth
 0 0 0 setrgbcolor 0 24.2145 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 416.5303 697.03589 moveto
453.64131 697.03589 479.4668 661.60588 479.4668 622.31648 curveto
486.38669 622.31648 lineto
486.38669 664.06143 456.71822 700.49739 416.5303 700.49739 curveto
 closepath
gsave fill grestore stroke
newpath 424.11913 622.31648 moveto
424.11913 653.21275 458.6122 661.1136 476.2535 646.01901 curveto
486.38669 622.31648 lineto
486.38669 580.80478 424.11913 580.80478 424.11913 622.31648 curveto closepath
gsave fill grestore stroke
newpath 140.50937 -198.90506 moveto
103.39836 -198.90506 77.57288 -163.47505 77.57288 -124.18565 curveto
70.65298 -124.18565 lineto
70.65298 -165.9306 100.32146 -202.36656 140.50937 -202.36656 curveto
 closepath
gsave fill grestore stroke
newpath 132.92053 -124.18565 moveto
132.92053 -155.08191 98.42747 -162.98277 80.78618 -147.88818 curveto
70.65298 -124.18565 lineto
70.65298 -82.67395 132.92053 -82.67395 132.92053 -124.18565 curveto closepath
gsave fill grestore stroke
newpath 416.5303 697.03589 moveto
358.04637 697.03589 347.69362 617.12654 338.86227 548.86623 curveto
325.95032 449.0658 321.83075 373.53235 303.6011 249.06541 curveto
253.43982 249.06541 lineto
270.03429 362.36797 286.78386 449.2321 305.99728 548.86623 curveto
320.14108 622.21118 348.15343 700.49739 416.5303 700.49739 curveto
 closepath
gsave fill grestore stroke
newpath 253.43987 249.06541 moveto
235.21022 124.5985 231.09065 49.06505 218.1787 -50.7354 curveto
209.3473 -118.99594 198.9946 -198.90506 140.50937 -198.90506 curveto
140.50937 -202.36656 lineto
208.8865 -202.36656 236.89981 -124.08054 251.04369 -50.7354 curveto
270.25711 48.89873 287.00668 135.76286 303.60115 249.06541 curveto
 closepath
gsave fill grestore stroke
} put
CharProcs /ch116 {
708.3435 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 86.96399 574.2365 moveto
86.92595 574.19968 86.92595 22.54163 86.96399 22.5048 curveto
87.00002 22.46994 616.19495 22.46994 616.23097 22.5048 curveto
616.26901 22.54163 616.26901 574.19968 616.23097 574.2365 curveto stroke
} put
CharProcs /ch117 {
708.3435 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 86.96399 22.5048 moveto
86.92595 22.54163 86.92595 574.19968 86.96399 574.2365 curveto
87.00002 574.27136 616.19495 574.27136 616.23097 574.2365 curveto
616.26901 574.19968 616.26901 22.54163 616.23097 22.5048 curveto stroke
} put
CharProcs /ch118 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 732.86804 643.60724 moveto
120.82907 643.60724 lineto
120.82907 63.48212 lineto
732.86804 63.48212 lineto stroke
newpath 732.86804 -151.56503 moveto
110.44763 -151.56503 lineto stroke
} put
CharProcs /ch119 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 87.94283 643.60724 moveto
699.98181 643.60724 lineto
699.98181 63.48212 lineto
87.94283 63.48212 lineto stroke
newpath 87.94283 -151.56503 moveto
710.36324 -151.56503 lineto stroke
} put
CharProcs /ch120 {
472.229 0 setcharwidth
 0 0 0 setrgbcolor 0 24.2145 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 233.98155 686.66002 moveto
301.01945 686.66002 361.1915 642.05717 361.1915 578.55943 curveto
368.11137 578.55943 lineto
368.11137 644.71126 304.29263 690.12154 233.98155 690.12154 curveto
 closepath
gsave fill grestore stroke
newpath 317.9501 578.55943 moveto
317.9501 603.01144 344.76907 609.58408 359.18694 598.27742 curveto
368.11137 578.55943 lineto
368.11137 545.11856 317.9501 545.11856 317.9501 578.55943 curveto closepath
gsave fill grestore stroke
newpath 233.98155 -188.52919 moveto
166.94365 -188.52919 106.7716 -143.92635 106.7716 -80.42859 curveto
99.85173 -80.42859 lineto
99.85173 -146.58041 163.67047 -191.99069 233.98155 -191.99069 curveto
 closepath
gsave fill grestore stroke
newpath 150.013 -80.42859 moveto
150.013 -104.88062 123.19403 -111.45325 108.77617 -100.14659 curveto
99.85173 -80.42859 lineto
99.85173 -46.98773 150.013 -46.98773 150.013 -80.42859 curveto closepath
gsave fill grestore stroke
newpath 233.98155 686.66002 moveto
167.44936 686.66002 124.57861 619.6821 124.57861 547.80792 curveto
124.57861 480.16481 170.4638 422.2197 233.98155 397.23798 curveto
308.72087 367.8428 382.7354 320.20026 382.7354 243.20651 curveto
382.7354 163.41075 314.9909 100.8929 233.98155 100.8929 curveto
233.98155 104.35442 lineto
300.51375 104.35442 343.38446 171.33234 343.38446 243.20651 curveto
343.38446 310.84962 297.4993 368.79474 233.98155 393.77646 curveto
159.24223 423.17163 85.22766 470.81416 85.22766 547.80792 curveto
85.22766 627.60368 152.97217 690.12154 233.98155 690.12154 curveto
 closepath
gsave fill grestore stroke
newpath 233.98155 397.23798 moveto
152.9722 397.23798 85.2277 334.72012 85.2277 254.92436 curveto
85.2277 177.9306 159.24226 130.28807 233.98155 100.8929 curveto
297.4993 75.91118 343.38449 17.96602 343.38449 -49.6771 curveto
343.38449 -121.55127 300.51375 -188.52919 233.98155 -188.52919 curveto
233.98155 -191.99069 lineto
314.99094 -191.99069 382.73544 -129.47284 382.73544 -49.6771 curveto
382.73544 27.31667 308.72087 74.95921 233.98155 104.35442 curveto
170.4638 129.33614 124.57864 187.28125 124.57864 254.92436 curveto
124.57864 326.79854 167.44936 393.77646 233.98155 393.77646 curveto
 closepath
gsave fill grestore stroke
} put
CharProcs /ch121 {
472.229 0 setcharwidth
 0 0 0 setrgbcolor 0 24.2145 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 208.90092 665.04152 moveto
208.90092 585.33646 233.98094 507.61711 233.98094 427.91205 curveto
233.98094 365.72704 208.90092 306.098 208.90092 243.913 curveto
208.90092 94.89137 216.11629 -54.04283 230.5216 -202.36656 curveto
237.4415 -202.36656 lineto
251.84685 -54.04283 259.06221 94.89137 259.06221 243.913 curveto
259.06221 306.098 233.98216 365.72704 233.98216 427.91205 curveto
233.98216 507.61711 259.06221 585.33646 259.06221 665.04152 curveto
259.06221 698.48239 208.90092 698.48239 208.90092 665.04152 curveto closepath
gsave fill grestore stroke
newpath 95.68358 402.83144 moveto
142.91379 402.83144 186.75134 427.91144 233.98155 427.91144 curveto
233.98155 427.91266 lineto
186.75134 427.91266 142.91379 452.99272 95.68358 452.99272 curveto
62.24272 452.99272 62.24272 402.83144 95.68358 402.83144 curveto closepath
gsave fill grestore stroke
newpath 372.27953 402.83144 moveto
325.04932 402.83144 281.21176 427.91144 233.98155 427.91144 curveto
233.98155 427.91266 lineto
281.21176 427.91266 325.04932 452.99272 372.27953 452.99272 curveto
405.72038 452.99272 405.72038 402.83144 372.27953 402.83144 curveto closepath
gsave fill grestore stroke
} put
CharProcs /ch122 {
472.229 0 setcharwidth
 0 0 0 setrgbcolor 0 24.2145 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 208.90092 665.04152 moveto
208.90092 601.24467 233.98094 539.93794 233.98094 476.14108 curveto
233.98216 476.14108 lineto
233.98216 539.93794 259.06221 601.24467 259.06221 665.04152 curveto
259.06221 698.48239 208.90092 698.48239 208.90092 665.04152 curveto closepath
gsave fill grestore stroke
newpath 208.90092 287.24069 moveto
208.90092 351.03749 233.98094 412.34427 233.98094 476.14108 curveto
233.98216 476.14108 lineto
233.98216 412.34427 259.06221 351.03749 259.06221 287.24069 curveto
259.06221 253.79982 208.90092 253.79982 208.90092 287.24069 curveto closepath
gsave fill grestore stroke
newpath 95.68358 451.06046 moveto
142.91379 451.06046 186.75134 476.14047 233.98155 476.14047 curveto
233.98155 476.1417 lineto
186.75134 476.1417 142.91379 501.22174 95.68358 501.22174 curveto
62.24272 501.22174 62.24272 451.06046 95.68358 451.06046 curveto closepath
gsave fill grestore stroke
newpath 372.27953 451.06046 moveto
325.04932 451.06046 281.21176 476.14047 233.98155 476.14047 curveto
233.98155 476.1417 lineto
281.21176 476.1417 325.04932 501.22174 372.27953 501.22174 curveto
405.72038 501.22174 405.72038 451.06046 372.27953 451.06046 curveto closepath
gsave fill grestore stroke
newpath 208.90092 210.36559 moveto
208.90092 146.65501 233.98094 85.43802 233.98094 21.72743 curveto
233.98216 21.72743 lineto
233.98216 85.43802 259.06221 146.65501 259.06221 210.36559 curveto
259.06221 243.80646 208.90092 243.80646 208.90092 210.36559 curveto closepath
gsave fill grestore stroke
newpath 208.90092 -166.91069 moveto
208.90092 -103.20013 233.98094 -41.98311 233.98094 21.72743 curveto
233.98216 21.72743 lineto
233.98216 -41.98311 259.06221 -103.20013 259.06221 -166.91069 curveto
259.06221 -200.35155 208.90092 -200.35155 208.90092 -166.91069 curveto closepath
gsave fill grestore stroke
newpath 95.68358 -3.35318 moveto
142.91379 -3.35318 186.75134 21.72682 233.98155 21.72682 curveto
233.98155 21.72804 lineto
186.75134 21.72804 142.91379 46.80809 95.68358 46.80809 curveto
62.24272 46.80809 62.24272 -3.35318 95.68358 -3.35318 curveto closepath
gsave fill grestore stroke
newpath 372.27953 -3.35318 moveto
325.04932 -3.35318 281.21176 21.72682 233.98155 21.72682 curveto
233.98155 21.72804 lineto
281.21176 21.72804 325.04932 46.80809 372.27953 46.80809 curveto
405.72038 46.80809 405.72038 -3.35318 372.27953 -3.35318 curveto closepath
gsave fill grestore stroke
} put
CharProcs /ch123 {
649.315 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 384.69287 669.34378 moveto
322.19353 669.34378 lineto
194.30637 669.34378 81.08665 581.32414 81.08665 459.20428 curveto
81.08665 322.20653 231.63997 249.0648 384.69287 249.0648 curveto
 closepath
gsave fill grestore stroke
 1 setlinecap
newpath 592.59128 669.34378 moveto
384.69287 669.34378 lineto
384.69287 -171.21416 lineto stroke
 45.00961 0 dtransform exch truncate exch idtransform pop setlinewidth
newpath 504.7185 669.34378 moveto
504.7185 -171.21416 lineto stroke
} put
CharProcs /ch124 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 410.40546 700.48007 moveto
318.25943 700.48007 245.76985 622.65317 245.76985 529.26736 curveto
245.76985 435.88159 318.25943 358.05469 410.40546 358.05469 curveto
502.55148 358.05469 575.0411 435.88156 575.0411 529.26736 curveto
575.0411 622.65317 502.55148 700.48007 410.40546 700.48007 curveto closepath
gsave fill grestore stroke
newpath 177.4745 344.17412 moveto
98.2196 344.17412 51.8195 260.26036 51.8195 172.96144 curveto
51.8195 81.89691 115.35373 1.74872 202.60701 1.74872 curveto
252.99315 1.74872 303.12947 24.39215 303.12947 69.18909 curveto
303.12947 199.28023 289.2015 344.17412 177.4745 344.17412 curveto closepath
gsave fill grestore stroke
newpath 643.33641 344.17412 moveto
531.60939 344.17412 517.68144 199.28023 517.68144 69.18909 curveto
517.68144 24.39215 567.81776 1.74872 618.2039 1.74872 curveto
705.45718 1.74872 768.99141 81.89691 768.99141 172.96144 curveto
768.99141 260.26036 722.59131 344.17412 643.33641 344.17412 curveto closepath
gsave fill grestore stroke
newpath 410.40546 69.18909 moveto
410.40546 9.3802 400.00696 -49.90897 381.08954 -106.63976 curveto
439.72137 -106.63976 lineto
420.80394 -49.90897 410.40546 9.3802 410.40546 69.18909 curveto closepath
gsave fill grestore stroke
newpath 410.40546 529.26736 moveto
177.4745 93.56929 lineto
643.33641 93.56929 lineto
 closepath
gsave fill grestore stroke
} put
CharProcs /ch125 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 410.40546 700.48007 moveto
493.59354 541.6455 602.93173 397.39342 739.67676 281.35202 curveto stroke
newpath 410.40546 700.48007 moveto
327.21738 541.6455 217.87918 397.39342 81.13416 281.35202 curveto stroke
newpath 410.40546 -137.77605 moveto
327.21738 21.05853 217.87918 165.31061 81.13416 281.35202 curveto stroke
newpath 410.40546 -137.77605 moveto
493.59354 21.05853 602.93173 165.31061 739.67676 281.35202 curveto stroke
} put
CharProcs /ch126 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinecap 1 setlinejoin 10 setmiterlimit
newpath 410.40546 532.72635 moveto
422.86002 621.87468 496.93529 690.09985 586.2935 690.09985 curveto
692.90735 690.09985 739.67676 601.25714 739.67676 484.2919 curveto
739.67676 343.23009 618.18127 235.50139 508.59956 138.3676 curveto
463.86787 98.71718 432.21988 46.98845 410.40546 -8.63148 curveto stroke
newpath 410.40546 532.72635 moveto
397.9509 621.87468 323.87563 690.09985 234.51741 690.09985 curveto
127.90356 690.09985 81.13416 601.25714 81.13416 484.2919 curveto
81.13416 343.23009 202.62964 235.50139 312.21135 138.3676 curveto
356.94304 98.71718 388.59103 46.98845 410.40546 -8.63148 curveto stroke
} put
CharProcs /ch127 {
826.401 0 setcharwidth
 0 0 0 setrgbcolor 0 45.00961 dtransform truncate idtransform setlinewidth pop
 [] 0 setdash 1 setlinejoin 10 setmiterlimit
newpath 410.40546 700.48007 moveto
378.04793 618.65904 333.32349 541.0436 265.99309 484.2919 curveto
176.17657 408.58698 81.13416 324.10872 81.13416 207.55669 curveto
81.13416 107.95508 106.25896 1.74872 192.13184 1.74872 curveto
246.83746 1.74872 303.1295 21.40201 303.12947 69.18909 curveto
303.12947 69.19107 303.12947 93.5673 303.12947 93.56929 curveto
517.68144 93.56929 lineto
517.68144 93.5673 517.68144 69.19107 517.68144 69.18909 curveto
517.68144 21.40201 573.97345 1.74872 628.67908 1.74872 curveto
714.55196 1.74872 739.67676 107.95508 739.67676 207.55669 curveto
739.67676 324.10872 644.63432 408.58698 554.81783 484.2919 curveto
487.48743 541.0436 442.76299 618.65904 410.40546 700.48007 curveto closepath
gsave fill grestore stroke
newpath 410.40546 69.18909 moveto
410.40546 9.3802 400.00696 -49.90897 381.08954 -106.63976 curveto
439.72137 -106.63976 lineto
420.80394 -49.90897 410.40546 9.3802 410.40546 69.18909 curveto closepath
gsave fill grestore stroke
} put
/BuildGlyph {exch begin CharProcs exch get exec end} bind def
/BuildChar {1 index /Encoding get exch get 1 index /BuildGlyph get exec} bind def
end
/cmsy8 exch definefont pop