Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

daynight.ps 108 KB

You have to be logged in to leave a comment. Sign In
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
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
  1. %!PS-Adobe-3.0
  2. %%BoundingBox: 0 0 612 792
  3. %%HiResBoundingBox: 0 0 612.0000 792.0000
  4. %%Title: GMT v6.1.0_d0ac7b1-dirty_2020.05.11 [64-bit] Document from grdimage
  5. %%Creator: GMT6
  6. %%For: unknown
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Mon May 11 22:01:52 2020
  9. %%LanguageLevel: 2
  10. %%DocumentData: Clean7Bit
  11. %%Orientation: Portrait
  12. %%Pages: 1
  13. %%EndComments
  14. %%BeginProlog
  15. 250 dict begin
  16. /! {bind def} bind def
  17. /# {load def}!
  18. /A /setgray #
  19. /B /setdash #
  20. /C /setrgbcolor #
  21. /D /rlineto #
  22. /E {dup stringwidth pop}!
  23. /F /fill #
  24. /G /rmoveto #
  25. /H /sethsbcolor #
  26. /I /setpattern #
  27. /K /setcmykcolor #
  28. /L /lineto #
  29. /M /moveto #
  30. /N /newpath #
  31. /P /closepath #
  32. /R /rotate #
  33. /S /stroke #
  34. /T /translate #
  35. /U /grestore #
  36. /V /gsave #
  37. /W /setlinewidth #
  38. /Y {findfont exch scalefont setfont}!
  39. /Z /show #
  40. /FP {true charpath flattenpath}!
  41. /MU {matrix setmatrix}!
  42. /MS {/SMat matrix currentmatrix def}!
  43. /MR {SMat setmatrix}!
  44. /edef {exch def}!
  45. /FS {/fc edef /fs {V fc F U} def}!
  46. /FQ {/fs {} def}!
  47. /O0 {/os {N} def}!
  48. /O1 {/os {P S} def}!
  49. /FO {fs os}!
  50. /Sa {M MS dup 0 exch G 0.726542528 mul -72 R dup 0 D 4 {72 R dup 0 D -144 R dup 0 D} repeat pop MR FO}!
  51. /Sb {M dup 0 D exch 0 exch D neg 0 D FO}!
  52. /SB {MS T /BoxR edef /BoxW edef /BoxH edef BoxR 0 M
  53. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct MR FO}!
  54. /Sc {N 3 -1 roll 0 360 arc FO}!
  55. /Sd {M 4 {dup} repeat 0 G neg dup dup D exch D D FO}!
  56. /Se {N MS T R scale 0 0 1 0 360 arc MR FO}!
  57. /Sg {M MS 22.5 R dup 0 exch G -22.5 R 0.765366865 mul dup 0 D 6 {-45 R dup 0 D} repeat pop MR FO}!
  58. /Sh {M MS dup 0 G -120 R dup 0 D 4 {-60 R dup 0 D} repeat pop MR FO}!
  59. /Si {M MS dup neg 0 exch G 60 R 1.732050808 mul dup 0 D 120 R 0 D MR FO}!
  60. /Sj {M MS R dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D MR FO}!
  61. /Sn {M MS dup 0 exch G -36 R 1.175570505 mul dup 0 D 3 {-72 R dup 0 D} repeat pop MR FO}!
  62. /Sp {N 3 -1 roll 0 360 arc fs N}!
  63. /SP {M {D} repeat FO}!
  64. /Sr {M dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D FO}!
  65. /SR {MS T /BoxR edef /BoxW edef /BoxH edef BoxR BoxW -2 div BoxH -2 div T BoxR 0 M
  66. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct MR FO}!
  67. /Ss {M 1.414213562 mul dup dup dup -2 div dup G 0 D 0 exch D neg 0 D FO}!
  68. /St {M MS dup 0 exch G -60 R 1.732050808 mul dup 0 D -120 R 0 D MR FO}!
  69. /SV {0 exch M 0 D D D D D 0 D FO}!
  70. /Sv {0 0 M D D 0 D D D D D 0 D D FO}!
  71. /Sw {2 copy M 5 2 roll arc FO}!
  72. /Sx {M 1.414213562 mul 5 {dup} repeat -2 div dup G D neg 0 G neg D S}!
  73. /Sy {M dup 0 exch G dup -2 mul dup 0 exch D S}!
  74. /S+ {M dup 0 G dup -2 mul dup 0 D exch dup G 0 exch D S}!
  75. /S- {M dup 0 G dup -2 mul dup 0 D S}!
  76. /sw {stringwidth pop}!
  77. /sh {V MU 0 0 M FP pathbbox N 4 1 roll pop pop pop U}!
  78. /sd {V MU 0 0 M FP pathbbox N pop pop exch pop U}!
  79. /sH {V MU 0 0 M FP pathbbox N exch pop exch sub exch pop U}!
  80. /sb {E exch sh}!
  81. /bl {}!
  82. /bc {E -2 div 0 G}!
  83. /br {E neg 0 G}!
  84. /ml {dup 0 exch sh -2 div G}!
  85. /mc {dup E -2 div exch sh -2 div G}!
  86. /mr {dup E neg exch sh -2 div G}!
  87. /tl {dup 0 exch sh neg G}!
  88. /tc {dup E -2 div exch sh neg G}!
  89. /tr {dup E neg exch sh neg G}!
  90. /mx {2 copy lt {exch} if pop}!
  91. /PSL_xorig 0 def /PSL_yorig 0 def
  92. /TM {2 copy T PSL_yorig add /PSL_yorig edef PSL_xorig add /PSL_xorig edef}!
  93. /PSL_reencode {findfont dup length dict begin
  94. {1 index /FID ne {def}{pop pop} ifelse} forall
  95. exch /Encoding edef currentdict end definefont pop
  96. }!
  97. /PSL_eps_begin {
  98. /PSL_eps_state save def
  99. /PSL_dict_count countdictstack def
  100. /PSL_op_count count 1 sub def
  101. userdict begin
  102. /showpage {} def
  103. 0 setgray 0 setlinecap 1 setlinewidth
  104. 0 setlinejoin 10 setmiterlimit [] 0 setdash newpath
  105. /languagelevel where
  106. {pop languagelevel 1 ne {false setstrokeadjust false setoverprint} if} if
  107. }!
  108. /PSL_eps_end {
  109. count PSL_op_count sub {pop} repeat
  110. countdictstack PSL_dict_count sub {end} repeat
  111. PSL_eps_state restore
  112. }!
  113. /PSL_transp {
  114. /.setopacityalpha where {pop .setblendmode .setopacityalpha}{
  115. /pdfmark where {pop [ /BM exch /CA exch dup /ca exch /SetTransparency pdfmark}
  116. {pop pop} ifelse} ifelse
  117. }!
  118. /ISOLatin1+_Encoding [
  119. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  120. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  121. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  122. /.notdef /bullet /ellipsis /trademark /emdash /endash /fi /zcaron
  123. /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
  124. /parenleft /parenright /asterisk /plus /comma /minus /period /slash
  125. /zero /one /two /three /four /five /six /seven
  126. /eight /nine /colon /semicolon /less /equal /greater /question
  127. /at /A /B /C /D /E /F /G
  128. /H /I /J /K /L /M /N /O
  129. /P /Q /R /S /T /U /V /W
  130. /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
  131. /quoteleft /a /b /c /d /e /f /g
  132. /h /i /j /k /l /m /n /o
  133. /p /q /r /s /t /u /v /w
  134. /x /y /z /braceleft /bar /braceright /asciitilde /scaron
  135. /OE /dagger /daggerdbl /Lslash /fraction /guilsinglleft /Scaron /guilsinglright
  136. /oe /Ydieresis /Zcaron /lslash /perthousand /quotedblbase /quotedblleft /quotedblright
  137. /dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent
  138. /dieresis /quotesinglbase /ring /cedilla /quotesingle /hungarumlaut /ogonek /caron
  139. /space /exclamdown /cent /sterling /currency /yen /brokenbar /section
  140. /dieresis /copyright /ordfeminine /guillemotleft /logicalnot /hyphen /registered /macron
  141. /degree /plusminus /twosuperior /threesuperior /acute /mu /paragraph /periodcentered
  142. /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf /threequarters /questiondown
  143. /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla
  144. /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis
  145. /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply
  146. /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls
  147. /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla
  148. /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis
  149. /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide
  150. /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis
  151. ] def
  152. /PSL_font_encode 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 array astore def
  153. /F0 {/Helvetica Y}!
  154. /F1 {/Helvetica-Bold Y}!
  155. /F2 {/Helvetica-Oblique Y}!
  156. /F3 {/Helvetica-BoldOblique Y}!
  157. /F4 {/Times-Roman Y}!
  158. /F5 {/Times-Bold Y}!
  159. /F6 {/Times-Italic Y}!
  160. /F7 {/Times-BoldItalic Y}!
  161. /F8 {/Courier Y}!
  162. /F9 {/Courier-Bold Y}!
  163. /F10 {/Courier-Oblique Y}!
  164. /F11 {/Courier-BoldOblique Y}!
  165. /F12 {/Symbol Y}!
  166. /F13 {/AvantGarde-Book Y}!
  167. /F14 {/AvantGarde-BookOblique Y}!
  168. /F15 {/AvantGarde-Demi Y}!
  169. /F16 {/AvantGarde-DemiOblique Y}!
  170. /F17 {/Bookman-Demi Y}!
  171. /F18 {/Bookman-DemiItalic Y}!
  172. /F19 {/Bookman-Light Y}!
  173. /F20 {/Bookman-LightItalic Y}!
  174. /F21 {/Helvetica-Narrow Y}!
  175. /F22 {/Helvetica-Narrow-Bold Y}!
  176. /F23 {/Helvetica-Narrow-Oblique Y}!
  177. /F24 {/Helvetica-Narrow-BoldOblique Y}!
  178. /F25 {/NewCenturySchlbk-Roman Y}!
  179. /F26 {/NewCenturySchlbk-Italic Y}!
  180. /F27 {/NewCenturySchlbk-Bold Y}!
  181. /F28 {/NewCenturySchlbk-BoldItalic Y}!
  182. /F29 {/Palatino-Roman Y}!
  183. /F30 {/Palatino-Italic Y}!
  184. /F31 {/Palatino-Bold Y}!
  185. /F32 {/Palatino-BoldItalic Y}!
  186. /F33 {/ZapfChancery-MediumItalic Y}!
  187. /F34 {/ZapfDingbats Y}!
  188. /F35 {/Ryumin-Light-EUC-H Y}!
  189. /F36 {/Ryumin-Light-EUC-V Y}!
  190. /F37 {/GothicBBB-Medium-EUC-H Y}!
  191. /F38 {/GothicBBB-Medium-EUC-V Y}!
  192. /PSL_pathtextdict 26 dict def
  193. /PSL_pathtext
  194. {PSL_pathtextdict begin
  195. /ydepth exch def
  196. /textheight exch def
  197. /just exch def
  198. /offset exch def
  199. /str exch def
  200. /pathdist 0 def
  201. /setdist offset def
  202. /charcount 0 def
  203. /justy just 4 idiv textheight mul 2 div neg ydepth sub def
  204. V flattenpath
  205. {movetoproc} {linetoproc}
  206. {curvetoproc} {closepathproc}
  207. pathforall
  208. U N
  209. end
  210. } def
  211. PSL_pathtextdict begin
  212. /movetoproc
  213. { /newy exch def /newx exch def
  214. /firstx newx def /firsty newy def
  215. /ovr 0 def
  216. newx newy transform
  217. /cpy exch def /cpx exch def
  218. } def
  219. /linetoproc
  220. { /oldx newx def /oldy newy def
  221. /newy exch def /newx exch def
  222. /dx newx oldx sub def
  223. /dy newy oldy sub def
  224. /dist dx dup mul dy dup mul add sqrt def
  225. dist 0 ne
  226. { /dsx dx dist div ovr mul def
  227. /dsy dy dist div ovr mul def
  228. oldx dsx add oldy dsy add transform
  229. /cpy exch def /cpx exch def
  230. /pathdist pathdist dist add def
  231. {setdist pathdist le
  232. {charcount str length lt
  233. {setchar} {exit} ifelse}
  234. { /ovr setdist pathdist sub def
  235. exit}
  236. ifelse
  237. } loop
  238. } if
  239. } def
  240. /curvetoproc
  241. { (ERROR: No curveto's after flattenpath!)
  242. print
  243. } def
  244. /closepathproc
  245. {firstx firsty linetoproc
  246. firstx firsty movetoproc
  247. } def
  248. /setchar
  249. { /char str charcount 1 getinterval def
  250. /charcount charcount 1 add def
  251. /charwidth char stringwidth pop def
  252. V cpx cpy itransform T
  253. dy dx atan R
  254. 0 justy M
  255. char show
  256. 0 justy neg G
  257. currentpoint transform
  258. /cpy exch def /cpx exch def
  259. U /setdist setdist charwidth add def
  260. } def
  261. end
  262. /PSL_set_label_heights
  263. {
  264. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  265. /PSL_heights PSL_n_labels array def
  266. 0 1 PSL_n_labels_minus_1
  267. { /psl_k exch def
  268. /psl_label PSL_label_str psl_k get def
  269. PSL_label_font psl_k get cvx exec
  270. psl_label sH /PSL_height edef
  271. PSL_heights psl_k PSL_height put
  272. } for
  273. } def
  274. /PSL_curved_path_labels
  275. { /psl_bits exch def
  276. /PSL_placetext psl_bits 2 and 2 eq def
  277. /PSL_clippath psl_bits 4 and 4 eq def
  278. /PSL_strokeline false def
  279. /PSL_fillbox psl_bits 128 and 128 eq def
  280. /PSL_drawbox psl_bits 256 and 256 eq def
  281. /PSL_n_paths1 PSL_n_paths 1 sub def
  282. /PSL_usebox PSL_fillbox PSL_drawbox or def
  283. PSL_clippath {clipsave N clippath} if
  284. /psl_k 0 def
  285. /psl_p 0 def
  286. 0 1 PSL_n_paths1
  287. { /psl_kk exch def
  288. /PSL_n PSL_path_n psl_kk get def
  289. /PSL_m PSL_label_n psl_kk get def
  290. /PSL_x PSL_path_x psl_k PSL_n getinterval def
  291. /PSL_y PSL_path_y psl_k PSL_n getinterval def
  292. /PSL_node_tmp PSL_label_node psl_p PSL_m getinterval def
  293. /PSL_angle_tmp PSL_label_angle psl_p PSL_m getinterval def
  294. /PSL_str_tmp PSL_label_str psl_p PSL_m getinterval def
  295. /PSL_fnt_tmp PSL_label_font psl_p PSL_m getinterval def
  296. PSL_curved_path_label
  297. /psl_k psl_k PSL_n add def
  298. /psl_p psl_p PSL_m add def
  299. } for
  300. PSL_clippath {PSL_eoclip} if N
  301. } def
  302. /PSL_curved_path_label
  303. {
  304. /PSL_n1 PSL_n 1 sub def
  305. /PSL_m1 PSL_m 1 sub def
  306. PSL_CT_calcstringwidth
  307. PSL_CT_calclinedist
  308. PSL_CT_excludelabels
  309. PSL_CT_addcutpoints
  310. /PSL_nn1 PSL_nn 1 sub def
  311. /n 0 def
  312. /k 0 def
  313. /j 0 def
  314. /PSL_seg 0 def
  315. /PSL_xp PSL_nn array def
  316. /PSL_yp PSL_nn array def
  317. PSL_xp 0 PSL_xx 0 get put
  318. PSL_yp 0 PSL_yy 0 get put
  319. 1 1 PSL_nn1
  320. { /i exch def
  321. /node_type PSL_kind i get def
  322. /j j 1 add def
  323. PSL_xp j PSL_xx i get put
  324. PSL_yp j PSL_yy i get put
  325. node_type 1 eq
  326. {n 0 eq
  327. {PSL_CT_drawline}
  328. { PSL_CT_reversepath
  329. PSL_CT_textline} ifelse
  330. /j 0 def
  331. PSL_xp j PSL_xx i get put
  332. PSL_yp j PSL_yy i get put
  333. } if
  334. } for
  335. n 0 eq {PSL_CT_drawline} if
  336. } def
  337. /PSL_CT_textline
  338. { PSL_fnt k get cvx exec
  339. /PSL_height PSL_heights k get def
  340. PSL_placetext {PSL_CT_placelabel} if
  341. PSL_clippath {PSL_CT_clippath} if
  342. /n 0 def /k k 1 add def
  343. } def
  344. /PSL_CT_calcstringwidth
  345. { /PSL_width_tmp PSL_m array def
  346. 0 1 PSL_m1
  347. { /i exch def
  348. PSL_fnt_tmp i get cvx exec
  349. PSL_width_tmp i PSL_str_tmp i get stringwidth pop put
  350. } for
  351. } def
  352. /PSL_CT_calclinedist
  353. { /PSL_newx PSL_x 0 get def
  354. /PSL_newy PSL_y 0 get def
  355. /dist 0.0 def
  356. /PSL_dist PSL_n array def
  357. PSL_dist 0 0.0 put
  358. 1 1 PSL_n1
  359. { /i exch def
  360. /PSL_oldx PSL_newx def
  361. /PSL_oldy PSL_newy def
  362. /PSL_newx PSL_x i get def
  363. /PSL_newy PSL_y i get def
  364. /dx PSL_newx PSL_oldx sub def
  365. /dy PSL_newy PSL_oldy sub def
  366. /dist dist dx dx mul dy dy mul add sqrt add def
  367. PSL_dist i dist put
  368. } for
  369. } def
  370. /PSL_CT_excludelabels
  371. { /k 0 def
  372. /PSL_width PSL_m array def
  373. /PSL_angle PSL_m array def
  374. /PSL_node PSL_m array def
  375. /PSL_str PSL_m array def
  376. /PSL_fnt PSL_m array def
  377. /lastdist PSL_dist PSL_n1 get def
  378. 0 1 PSL_m1
  379. { /i exch def
  380. /dist PSL_dist PSL_node_tmp i get get def
  381. /halfwidth PSL_width_tmp i get 2 div PSL_gap_x add def
  382. /L_dist dist halfwidth sub def
  383. /R_dist dist halfwidth add def
  384. L_dist 0 gt R_dist lastdist lt and
  385. {
  386. PSL_width k PSL_width_tmp i get put
  387. PSL_node k PSL_node_tmp i get put
  388. PSL_angle k PSL_angle_tmp i get put
  389. PSL_str k PSL_str_tmp i get put
  390. PSL_fnt k PSL_fnt_tmp i get put
  391. /k k 1 add def
  392. } if
  393. } for
  394. /PSL_m k def
  395. /PSL_m1 PSL_m 1 sub def
  396. } def
  397. /PSL_CT_addcutpoints
  398. { /k 0 def
  399. /PSL_nc PSL_m 2 mul 1 add def
  400. /PSL_cuts PSL_nc array def
  401. /PSL_nc1 PSL_nc 1 sub def
  402. 0 1 PSL_m1
  403. { /i exch def
  404. /dist PSL_dist PSL_node i get get def
  405. /halfwidth PSL_width i get 2 div PSL_gap_x add def
  406. PSL_cuts k dist halfwidth sub put
  407. /k k 1 add def
  408. PSL_cuts k dist halfwidth add put
  409. /k k 1 add def
  410. } for
  411. PSL_cuts k 100000.0 put
  412. /PSL_nn PSL_n PSL_m 2 mul add def
  413. /PSL_xx PSL_nn array def
  414. /PSL_yy PSL_nn array def
  415. /PSL_kind PSL_nn array def
  416. /j 0 def
  417. /k 0 def
  418. /dist 0.0 def
  419. 0 1 PSL_n1
  420. { /i exch def
  421. /last_dist dist def
  422. /dist PSL_dist i get def
  423. k 1 PSL_nc1
  424. { /kk exch def
  425. /this_cut PSL_cuts kk get def
  426. dist this_cut gt
  427. { /ds dist last_dist sub def
  428. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
  429. /i1 i 0 eq {0} {i 1 sub} ifelse def
  430. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
  431. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  432. PSL_kind j 1 put
  433. /j j 1 add def
  434. /k k 1 add def
  435. } if
  436. } for
  437. dist PSL_cuts k get le
  438. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  439. PSL_kind j 0 put
  440. /j j 1 add def
  441. } if
  442. } for
  443. } def
  444. /PSL_CT_reversepath
  445. {PSL_xp j get PSL_xp 0 get lt
  446. {0 1 j 2 idiv
  447. { /left exch def
  448. /right j left sub def
  449. /tmp PSL_xp left get def
  450. PSL_xp left PSL_xp right get put
  451. PSL_xp right tmp put
  452. /tmp PSL_yp left get def
  453. PSL_yp left PSL_yp right get put
  454. PSL_yp right tmp put
  455. } for
  456. } if
  457. } def
  458. /PSL_CT_placelabel
  459. {
  460. /PSL_just PSL_label_justify k get def
  461. /PSL_height PSL_heights k get def
  462. /psl_label PSL_str k get def
  463. /psl_depth psl_label sd def
  464. PSL_usebox
  465. {PSL_CT_clippath
  466. PSL_fillbox
  467. {V PSL_setboxrgb fill U} if
  468. PSL_drawbox
  469. {V PSL_setboxpen S U} if N
  470. } if
  471. PSL_CT_placeline psl_label PSL_gap_x PSL_just PSL_height psl_depth PSL_pathtext
  472. } def
  473. /PSL_CT_clippath
  474. {
  475. /H PSL_height 2 div PSL_gap_y add def
  476. /xoff j 1 add array def
  477. /yoff j 1 add array def
  478. /angle 0 def
  479. 0 1 j {
  480. /ii exch def
  481. /x PSL_xp ii get def
  482. /y PSL_yp ii get def
  483. ii 0 eq {
  484. /x1 PSL_xp 1 get def
  485. /y1 PSL_yp 1 get def
  486. /dx x1 x sub def
  487. /dy y1 y sub def
  488. }
  489. { /i1 ii 1 sub def
  490. /x1 PSL_xp i1 get def
  491. /y1 PSL_yp i1 get def
  492. /dx x x1 sub def
  493. /dy y y1 sub def
  494. } ifelse
  495. dx 0.0 eq dy 0.0 eq and not
  496. { /angle dy dx atan 90 add def} if
  497. /sina angle sin def
  498. /cosa angle cos def
  499. xoff ii H cosa mul put
  500. yoff ii H sina mul put
  501. } for
  502. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  503. 1 1 j {
  504. /ii exch def
  505. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  506. } for
  507. j -1 0 {
  508. /ii exch def
  509. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  510. } for P
  511. } def
  512. /PSL_CT_drawline
  513. {
  514. /str 20 string def
  515. PSL_strokeline
  516. {PSL_CT_placeline S} if
  517. /PSL_seg PSL_seg 1 add def
  518. /n 1 def
  519. } def
  520. /PSL_CT_placeline
  521. {PSL_xp 0 get PSL_yp 0 get M
  522. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
  523. } def
  524. /PSL_draw_path_lines
  525. {
  526. /PSL_n_paths1 PSL_n_paths 1 sub def
  527. V
  528. /psl_start 0 def
  529. 0 1 PSL_n_paths1
  530. { /psl_k exch def
  531. /PSL_n PSL_path_n psl_k get def
  532. /PSL_n1 PSL_n 1 sub def
  533. PSL_path_pen psl_k get cvx exec
  534. N
  535. PSL_path_x psl_start get PSL_path_y psl_start get M
  536. 1 1 PSL_n1
  537. { /psl_i exch def
  538. /psl_kk psl_i psl_start add def
  539. PSL_path_x psl_kk get PSL_path_y psl_kk get L
  540. } for
  541. /psl_xclose PSL_path_x psl_kk get PSL_path_x psl_start get sub def
  542. /psl_yclose PSL_path_y psl_kk get PSL_path_y psl_start get sub def
  543. psl_xclose 0 eq psl_yclose 0 eq and { P } if
  544. S
  545. /psl_start psl_start PSL_n add def
  546. } for
  547. U
  548. } def
  549. /PSL_straight_path_labels
  550. {
  551. /psl_bits exch def
  552. /PSL_placetext psl_bits 2 and 2 eq def
  553. /PSL_rounded psl_bits 32 and 32 eq def
  554. /PSL_fillbox psl_bits 128 and 128 eq def
  555. /PSL_drawbox psl_bits 256 and 256 eq def
  556. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  557. /PSL_usebox PSL_fillbox PSL_drawbox or def
  558. 0 1 PSL_n_labels_minus_1
  559. { /psl_k exch def
  560. PSL_ST_prepare_text
  561. PSL_usebox
  562. { PSL_rounded
  563. {PSL_ST_textbox_round}
  564. {PSL_ST_textbox_rect}
  565. ifelse
  566. PSL_fillbox {V PSL_setboxrgb fill U} if
  567. PSL_drawbox {V PSL_setboxpen S U} if
  568. N
  569. } if
  570. PSL_placetext {PSL_ST_place_label} if
  571. } for
  572. } def
  573. /PSL_straight_path_clip
  574. {
  575. /psl_bits exch def
  576. /PSL_rounded psl_bits 32 and 32 eq def
  577. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  578. N clipsave clippath
  579. 0 1 PSL_n_labels_minus_1
  580. { /psl_k exch def
  581. PSL_ST_prepare_text
  582. PSL_rounded
  583. {PSL_ST_textbox_round}
  584. {PSL_ST_textbox_rect}
  585. ifelse
  586. } for
  587. PSL_eoclip N
  588. } def
  589. /PSL_ST_prepare_text
  590. {
  591. /psl_xp PSL_txt_x psl_k get def
  592. /psl_yp PSL_txt_y psl_k get def
  593. /psl_label PSL_label_str psl_k get def
  594. PSL_label_font psl_k get cvx exec
  595. /PSL_height PSL_heights psl_k get def
  596. /psl_boxH PSL_height PSL_gap_y 2 mul add def
  597. /PSL_just PSL_label_justify psl_k get def
  598. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
  599. /PSL_justy PSL_just 4 idiv 2 div neg def
  600. /psl_SW psl_label stringwidth pop def
  601. /psl_boxW psl_SW PSL_gap_x 2 mul add def
  602. /psl_x0 psl_SW PSL_justx mul def
  603. /psl_y0 PSL_justy PSL_height mul def
  604. /psl_angle PSL_label_angle psl_k get def
  605. } def
  606. /PSL_ST_textbox_rect
  607. {
  608. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  609. PSL_gap_x neg PSL_gap_y neg M
  610. 0 psl_boxH D psl_boxW 0 D 0 psl_boxH neg D P
  611. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  612. } def
  613. /PSL_ST_textbox_round
  614. {
  615. /psl_BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
  616. /psl_xd PSL_gap_x psl_BoxR sub def
  617. /psl_yd PSL_gap_y psl_BoxR sub def
  618. /psl_xL PSL_gap_x neg def
  619. /psl_yB PSL_gap_y neg def
  620. /psl_yT psl_boxH psl_yB add def
  621. /psl_H2 PSL_height psl_yd 2 mul add def
  622. /psl_W2 psl_SW psl_xd 2 mul add def
  623. /psl_xR psl_xL psl_boxW add def
  624. /psl_x0 psl_SW PSL_justx mul def
  625. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  626. psl_xL psl_yd M
  627. psl_xL psl_yT psl_xR psl_yT psl_BoxR arct psl_W2 0 D
  628. psl_xR psl_yT psl_xR psl_yB psl_BoxR arct 0 psl_H2 neg D
  629. psl_xR psl_yB psl_xL psl_yB psl_BoxR arct psl_W2 neg 0 D
  630. psl_xL psl_yB psl_xL psl_yd psl_BoxR arct P
  631. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  632. } def
  633. /PSL_ST_place_label
  634. {
  635. V psl_xp psl_yp T psl_angle R
  636. psl_SW PSL_justx mul psl_y0 M
  637. psl_label dup sd neg 0 exch G show
  638. U
  639. } def
  640. /PSL_nclip 0 def
  641. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
  642. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
  643. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
  644. %%EndProlog
  645. %%BeginSetup
  646. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  647. PSLevel 1 gt { << /WhiteIsOpaque true >> setpagedevice } if
  648. PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  649. %%EndSetup
  650. %%Page: 1 1
  651. %%BeginPageSetup
  652. V 0.06 0.06 scale
  653. %%EndPageSetup
  654. /PSL_page_xsize 10200 def
  655. /PSL_page_ysize 13200 def
  656. /PSL_plot_completion {} def
  657. /PSL_movie_label_completion {} def
  658. /PSL_movie_prog_indicator_completion {} def
  659. %PSL_End_Header
  660. gsave
  661. 0 A
  662. FQ
  663. O0
  664. 1200 1200 TM
  665. % PostScript produced by:
  666. %@GMT: gmt grdimage a.grd -Ct.cpt -Baf '-B+tTransition = 0' -P -K -JQ6.5i
  667. %@PROJ: eqc -180.00000000 180.00000000 -90.00000000 90.00000000 -20015109.356 20015109.356 -10007554.678 10007554.678 +proj=eqc +lat_ts=0 +lat_0=0 +lon_0=0 +x_0=0 +y_0=0 +units=m +a=6371007.181 +b=6371007.181 +units=m +no_defs
  668. %GMTBoundingBox: 72 72 468 234
  669. %%BeginObject PSL_Layer_1
  670. 0 setlinecap
  671. 0 setlinejoin
  672. 3.32550952342 setmiterlimit
  673. clipsave
  674. 0 0 M
  675. 7800 0 D
  676. 0 3900 D
  677. -7800 0 D
  678. P
  679. PSL_clip N
  680. V N -11 -11 T 7973 3922 scale [/Indexed /DeviceGray 1 <00FF>] setcolorspace
  681. << /ImageType 1 /Decode [0 1] /Width 368 /Height 181 /BitsPerComponent 1
  682. /ImageMatrix [368 0 0 -181 0 181] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  683. >> image
  684. G[Bdg95_]k$jBJ-%Q`qh=:.]RV6L`#^bCCsf5HJ]+&X!H3f&RM-mJAmPfMge]C,NF<QscbS<_<2\WQ`jCqe)Rge[n,CR6LL
  685. ='rO3WqsTUMlHQibqm^iKHCfiiDka9g5P[TBK+;;dI./X)Z;S@VU7%PhHN/<bcT?#e@F%/e?RJC;aRDDVO1,:ZS0!->IaE2
  686. CuL,U(N`.##s'5H"W`k3)G`V%)NR0f(f/Oo@@0.-_D!pVp8lPSm9#q/g9Nc>2'8llepIa_>-fA'HHep&f5!:MgB?m]IJfG5
  687. duMgiK!pVub;Ha=@CbNda%Xk(ns&g9=g`[kAeoH7K(c"c;m[clH@iT$N_e$o@YQ>#?HhGOV'[#M=NdP0>g-\0Q'tscA'rkB
  688. :Zu$oFkREg:"#?SEK[2b-VVt<3n-Nn-3@N6XjohTCV7'DLhmO%>'m(:H)B($kp0r#FI]4J#_SdiXNiW';,GQ*W&4q))&#?3
  689. d@Z&h[-r)@7p*Au-W/Vn7oB$@$)6k."-*ZC2&rumdTm5H"%hl!%2qcPfB>'<D,\;:[nVE$P\tLF1.CNk1Z:jPg&`:M)U&H3
  690. L='BmE&O4MY7`MPg6JN[S?=N+m:/U)lINUs+n!24YKK?+N7V%b)V;*2h&=leo`rN?5Oe~>
  691. U
  692. PSL_cliprestore
  693. 25 W
  694. 8 W
  695. N 0 0 M 0 -83 D S
  696. N 0 3900 M 0 83 D S
  697. N 1300 0 M 0 -83 D S
  698. N 1300 3900 M 0 83 D S
  699. N 2600 0 M 0 -83 D S
  700. N 2600 3900 M 0 83 D S
  701. N 3900 0 M 0 -83 D S
  702. N 3900 3900 M 0 83 D S
  703. N 5200 0 M 0 -83 D S
  704. N 5200 3900 M 0 83 D S
  705. N 6500 0 M 0 -83 D S
  706. N 6500 3900 M 0 83 D S
  707. N 7800 0 M 0 -83 D S
  708. N 7800 3900 M 0 83 D S
  709. N 7800 650 M 83 0 D S
  710. N 0 650 M -83 0 D S
  711. N 7800 650 M 83 0 D S
  712. N 0 650 M -83 0 D S
  713. N 7800 1950 M 83 0 D S
  714. N 0 1950 M -83 0 D S
  715. N 7800 1950 M 83 0 D S
  716. N 0 1950 M -83 0 D S
  717. N 7800 3250 M 83 0 D S
  718. N 0 3250 M -83 0 D S
  719. N 7800 3250 M 83 0 D S
  720. N 0 3250 M -83 0 D S
  721. 83 W
  722. N -42 0 M 0 325 D S
  723. N 7842 0 M 0 325 D S
  724. 1 A
  725. N -42 325 M 0 325 D S
  726. N 7842 325 M 0 325 D S
  727. 0 A
  728. N -42 650 M 0 325 D S
  729. N 7842 650 M 0 325 D S
  730. 1 A
  731. N -42 975 M 0 325 D S
  732. N 7842 975 M 0 325 D S
  733. 0 A
  734. N -42 1300 M 0 325 D S
  735. N 7842 1300 M 0 325 D S
  736. 1 A
  737. N -42 1625 M 0 325 D S
  738. N 7842 1625 M 0 325 D S
  739. 0 A
  740. N -42 1950 M 0 325 D S
  741. N 7842 1950 M 0 325 D S
  742. 1 A
  743. N -42 2275 M 0 325 D S
  744. N 7842 2275 M 0 325 D S
  745. 0 A
  746. N -42 2600 M 0 325 D S
  747. N 7842 2600 M 0 325 D S
  748. 1 A
  749. N -42 2925 M 0 325 D S
  750. N 7842 2925 M 0 325 D S
  751. 0 A
  752. N -42 3250 M 0 325 D S
  753. N 7842 3250 M 0 325 D S
  754. 1 A
  755. N -42 3575 M 0 325 D S
  756. N 7842 3575 M 0 325 D S
  757. 0 A
  758. N 0 -42 M 325 0 D S
  759. N 0 3942 M 325 0 D S
  760. 1 A
  761. N 325 -42 M 325 0 D S
  762. N 325 3942 M 325 0 D S
  763. 0 A
  764. N 650 -42 M 325 0 D S
  765. N 650 3942 M 325 0 D S
  766. 1 A
  767. N 975 -42 M 325 0 D S
  768. N 975 3942 M 325 0 D S
  769. 0 A
  770. N 1300 -42 M 325 0 D S
  771. N 1300 3942 M 325 0 D S
  772. 1 A
  773. N 1625 -42 M 325 0 D S
  774. N 1625 3942 M 325 0 D S
  775. 0 A
  776. N 1950 -42 M 325 0 D S
  777. N 1950 3942 M 325 0 D S
  778. 1 A
  779. N 2275 -42 M 325 0 D S
  780. N 2275 3942 M 325 0 D S
  781. 0 A
  782. N 2600 -42 M 325 0 D S
  783. N 2600 3942 M 325 0 D S
  784. 1 A
  785. N 2925 -42 M 325 0 D S
  786. N 2925 3942 M 325 0 D S
  787. 0 A
  788. N 3250 -42 M 325 0 D S
  789. N 3250 3942 M 325 0 D S
  790. 1 A
  791. N 3575 -42 M 325 0 D S
  792. N 3575 3942 M 325 0 D S
  793. 0 A
  794. N 3900 -42 M 325 0 D S
  795. N 3900 3942 M 325 0 D S
  796. 1 A
  797. N 4225 -42 M 325 0 D S
  798. N 4225 3942 M 325 0 D S
  799. 0 A
  800. N 4550 -42 M 325 0 D S
  801. N 4550 3942 M 325 0 D S
  802. 1 A
  803. N 4875 -42 M 325 0 D S
  804. N 4875 3942 M 325 0 D S
  805. 0 A
  806. N 5200 -42 M 325 0 D S
  807. N 5200 3942 M 325 0 D S
  808. 1 A
  809. N 5525 -42 M 325 0 D S
  810. N 5525 3942 M 325 0 D S
  811. 0 A
  812. N 5850 -42 M 325 0 D S
  813. N 5850 3942 M 325 0 D S
  814. 1 A
  815. N 6175 -42 M 325 0 D S
  816. N 6175 3942 M 325 0 D S
  817. 0 A
  818. N 6500 -42 M 325 0 D S
  819. N 6500 3942 M 325 0 D S
  820. 1 A
  821. N 6825 -42 M 325 0 D S
  822. N 6825 3942 M 325 0 D S
  823. 0 A
  824. N 7150 -42 M 325 0 D S
  825. N 7150 3942 M 325 0 D S
  826. 1 A
  827. N 7475 -42 M 325 0 D S
  828. N 7475 3942 M 325 0 D S
  829. 0 A
  830. 8 W
  831. N -83 0 M 7966 0 D S
  832. N -83 -83 M 7966 0 D S
  833. N 7800 -83 M 0 4066 D S
  834. N 7883 -83 M 0 4066 D S
  835. N 7883 3900 M -7966 0 D S
  836. N 7883 3983 M -7966 0 D S
  837. N 0 3983 M 0 -4066 D S
  838. N -83 3983 M 0 -4066 D S
  839. /PSL_H_y 400 PSL_font_encode 0 get 0 eq {ISOLatin1+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  840. 200 F0
  841. (100°) sh add def
  842. 3900 3900 PSL_H_y add M
  843. 400 F0
  844. (Transition = 0) bc Z
  845. 0 -167 M 200 F0
  846. (-180°) tc Z
  847. 0 4067 M (-180°) bc Z
  848. 1300 -167 M (-120°) tc Z
  849. 1300 4067 M (-120°) bc Z
  850. 2600 -167 M (-60°) tc Z
  851. 2600 4067 M (-60°) bc Z
  852. 3900 -167 M (0°) tc Z
  853. 3900 4067 M (0°) bc Z
  854. 5200 -167 M (60°) tc Z
  855. 5200 4067 M (60°) bc Z
  856. 6500 -167 M (120°) tc Z
  857. 6500 4067 M (120°) bc Z
  858. 7800 -167 M (180°) tc Z
  859. 7800 4067 M (180°) bc Z
  860. -167 650 M (-60°) mr Z
  861. 7967 650 M (-60°) ml Z
  862. -167 1950 M (0°) mr Z
  863. 7967 1950 M (0°) ml Z
  864. -167 3250 M (60°) mr Z
  865. 7967 3250 M (60°) ml Z
  866. %%EndObject
  867. 0 A
  868. FQ
  869. O0
  870. 0 0 TM
  871. % PostScript produced by:
  872. %@GMT: gmt psxy -Rd -JQ6.5i -O -K -Sk@sunglasses/1.5c
  873. %@PROJ: eqc -180.00000000 180.00000000 -90.00000000 90.00000000 -20015109.356 20015109.356 -10007554.678 10007554.678 +proj=eqc +lat_ts=0 +lat_0=0 +lon_0=0 +x_0=0 +y_0=0 +units=m +a=6371007.181 +b=6371007.181 +units=m +no_defs
  874. %%BeginObject PSL_Layer_2
  875. 0 setlinecap
  876. 0 setlinejoin
  877. 3.32550952342 setmiterlimit
  878. clipsave
  879. 0 0 M
  880. 7800 0 D
  881. 0 3900 D
  882. -7800 0 D
  883. P
  884. PSL_clip N
  885. 4 W
  886. V
  887. O1
  888. /Sk_sunglasses {
  889. PSL_eps_begin
  890. 0.25399961 dup scale
  891. 1200 72 div dup scale
  892. %%BeginDocument: sunglasses.eps
  893. -10.711 -12.201 translate
  894. % Recalculate translation and scale to obtain a resized image
  895. 5.80456 6.61202 translate
  896. gsave 0.458074 0.458074 scale
  897. newpath
  898. 278.68 633.29 moveto
  899. 275.12 630.04 275.65 624.62 273.44 620.58 curveto
  900. 268.94 611.85 261.56 604.76 253.07 599.91 curveto
  901. 242.69 593.40 232.11 587.13 222.58 579.39 curveto
  902. 219.58 576.72 217.04 573.59 214.38 570.60 curveto
  903. 208.70 564.47 206.00 556.35 203.46 548.58 curveto
  904. 199.26 534.65 200.12 519.56 205.11 505.96 curveto
  905. 200.44 508.17 196.08 510.96 191.74 513.74 curveto
  906. 186.53 517.18 183.14 522.55 179.37 527.39 curveto
  907. 172.86 536.98 171.19 548.68 169.65 559.90 curveto
  908. 168.17 570.30 164.70 581.42 156.01 588.05 curveto
  909. 151.59 591.25 146.70 595.24 140.84 593.93 curveto
  910. 140.20 588.39 142.27 582.94 141.41 577.41 curveto
  911. 140.30 569.57 136.32 562.51 132.01 556.01 curveto
  912. 126.09 548.00 119.86 540.21 113.79 532.31 curveto
  913. 105.00 519.64 100.87 503.41 104.24 488.22 curveto
  914. 107.90 475.49 113.44 463.11 121.70 452.68 curveto
  915. 126.98 445.86 134.63 441.52 140.81 435.63 curveto
  916. 123.82 428.66 103.16 431.38 88.59 442.58 curveto
  917. 82.15 447.43 75.90 452.52 69.81 457.80 curveto
  918. 65.51 461.65 59.92 463.46 54.72 465.74 curveto
  919. 46.01 469.49 35.93 469.97 26.90 467.16 curveto
  920. 23.92 466.41 23.04 462.23 25.19 460.16 curveto
  921. 29.78 454.52 35.03 448.81 36.52 441.44 curveto
  922. 39.39 428.75 36.15 415.79 36.86 402.98 curveto
  923. 37.96 390.64 39.86 378.17 44.87 366.75 curveto
  924. 48.95 358.08 55.55 350.95 62.24 344.23 curveto
  925. 66.86 339.49 72.92 336.68 78.74 333.76 curveto
  926. 84.71 330.86 91.30 329.71 97.57 327.65 curveto
  927. 87.78 316.13 79.68 303.21 73.50 289.40 curveto
  928. 68.69 280.50 65.12 270.93 59.49 262.50 curveto
  929. 55.36 257.02 50.30 252.27 44.85 248.13 curveto
  930. 38.09 243.71 29.98 239.67 21.69 241.79 curveto
  931. 18.55 242.92 15.35 243.99 11.96 243.84 curveto
  932. 10.72 236.72 15.05 230.42 18.83 224.82 curveto
  933. 32.74 205.07 55.70 193.25 79.08 189.01 curveto
  934. 92.39 187.41 105.48 193.16 115.82 201.17 curveto
  935. 122.12 205.22 126.73 211.26 132.72 215.70 curveto
  936. 131.13 209.06 128.00 202.80 127.49 195.91 curveto
  937. 126.85 186.65 126.80 177.36 126.53 168.09 curveto
  938. 125.62 163.61 124.23 159.23 123.50 154.69 curveto
  939. 120.50 143.35 110.61 135.54 100.61 130.37 curveto
  940. 95.77 127.55 90.12 126.97 84.70 126.13 curveto
  941. 82.08 126.11 80.90 122.49 82.75 120.78 curveto
  942. 94.06 106.48 109.61 95.54 126.96 89.87 curveto
  943. 137.42 86.67 148.57 87.30 159.30 88.49 curveto
  944. 167.95 90.10 176.07 94.51 182.31 100.69 curveto
  945. 193.63 111.77 200.67 126.18 207.88 140.06 curveto
  946. 210.07 143.89 211.66 148.32 215.38 150.99 curveto
  947. 214.84 146.20 212.94 141.71 212.21 136.96 curveto
  948. 211.88 132.35 212.04 127.69 212.28 123.07 curveto
  949. 213.71 109.66 220.48 97.33 229.32 87.36 curveto
  950. 239.06 77.10 249.62 67.63 258.93 56.97 curveto
  951. 265.06 48.29 271.35 37.92 269.14 26.84 curveto
  952. 268.59 22.18 263.13 18.59 265.64 13.63 curveto
  953. 284.57 12.21 303.19 22.77 313.72 38.25 curveto
  954. 317.75 44.44 321.88 51.01 322.60 58.53 curveto
  955. 323.59 67.19 323.86 76.01 322.83 84.68 curveto
  956. 321.03 92.76 318.19 100.57 315.72 108.46 curveto
  957. 314.53 114.21 315.09 120.22 316.22 125.94 curveto
  958. 317.92 125.31 318.16 123.33 318.89 121.89 curveto
  959. 321.26 115.31 325.37 109.19 331.26 105.29 curveto
  960. 337.66 101.13 344.30 97.26 351.45 94.51 curveto
  961. 369.29 86.88 387.17 76.51 397.43 59.42 curveto
  962. 400.60 52.97 401.32 45.69 402.46 38.68 curveto
  963. 402.76 37.38 402.74 35.83 403.74 34.80 curveto
  964. 405.65 33.97 407.87 34.22 409.58 35.40 curveto
  965. 414.23 38.37 419.40 40.68 423.23 44.76 curveto
  966. 429.04 50.65 434.63 56.83 439.30 63.68 curveto
  967. 444.57 72.31 446.47 82.45 447.70 92.35 curveto
  968. 448.15 103.87 445.79 115.42 440.93 125.87 curveto
  969. 438.21 134.04 431.86 140.05 426.58 146.57 curveto
  970. 422.33 151.76 417.48 156.83 415.52 163.42 curveto
  971. 430.67 158.52 446.87 154.84 459.48 144.52 curveto
  972. 465.85 140.30 469.30 133.29 472.75 126.73 curveto
  973. 477.06 118.78 477.60 109.47 481.29 101.28 curveto
  974. 483.79 96.34 486.12 91.10 490.20 87.20 curveto
  975. 492.05 85.30 495.29 84.71 497.44 86.50 curveto
  976. 498.63 89.40 499.44 92.43 500.69 95.31 curveto
  977. 503.00 101.23 507.31 106.03 510.52 111.44 curveto
  978. 517.29 122.71 522.91 134.75 526.53 147.41 curveto
  979. 528.08 154.16 528.06 161.19 527.93 168.08 curveto
  980. 526.06 182.37 518.05 195.02 508.54 205.53 curveto
  981. 499.25 215.52 488.86 224.82 476.50 230.83 curveto
  982. 476.62 231.20 476.86 231.94 476.98 232.31 curveto
  983. 481.41 232.37 485.76 231.42 489.92 229.94 curveto
  984. 503.39 224.82 513.93 214.57 526.11 207.21 curveto
  985. 541.44 199.52 559.20 195.28 576.27 198.64 curveto
  986. 588.86 201.88 600.75 208.77 608.80 219.12 curveto
  987. 612.01 224.10 614.48 229.51 617.15 234.79 curveto
  988. 618.22 236.58 617.89 238.93 616.25 240.26 curveto
  989. 611.93 243.99 605.90 244.34 600.96 246.87 curveto
  990. 595.43 249.86 589.91 252.99 585.24 257.24 curveto
  991. 572.08 268.24 562.92 282.92 551.76 295.76 curveto
  992. 546.20 302.87 538.34 307.57 531.89 313.77 curveto
  993. 537.58 314.96 543.34 315.75 549.01 317.01 curveto
  994. 563.12 320.22 576.29 326.71 588.19 334.83 curveto
  995. 594.64 339.26 600.45 344.65 605.11 350.95 curveto
  996. 609.37 356.72 614.21 362.14 617.44 368.60 curveto
  997. 621.43 375.60 623.66 383.40 626.05 391.05 curveto
  998. 629.27 407.51 629.52 425.00 623.78 440.96 curveto
  999. 622.94 443.82 620.15 444.94 617.40 444.96 curveto
  1000. 614.48 439.78 612.26 434.17 608.65 429.40 curveto
  1001. 605.10 424.99 599.78 422.63 594.78 420.27 curveto
  1002. 590.69 418.64 586.50 416.90 582.03 416.81 curveto
  1003. 574.13 416.55 566.14 416.62 558.40 418.39 curveto
  1004. 547.10 420.76 536.35 425.19 525.01 427.36 curveto
  1005. 518.37 428.20 511.64 428.43 504.95 428.06 curveto
  1006. 498.88 427.81 493.44 424.87 487.70 423.27 curveto
  1007. 495.95 443.01 514.36 455.35 528.71 470.31 curveto
  1008. 537.58 480.47 543.39 493.39 544.55 506.88 curveto
  1009. 545.27 514.80 546.03 523.00 543.79 530.76 curveto
  1010. 542.33 537.53 539.05 543.70 535.65 549.67 curveto
  1011. 530.25 558.91 523.09 567.52 513.52 572.62 curveto
  1012. 511.14 573.90 509.33 576.03 506.91 577.23 curveto
  1013. 505.04 577.62 502.47 576.87 502.30 574.64 curveto
  1014. 501.71 570.18 503.19 565.70 502.43 561.24 curveto
  1015. 501.05 553.11 497.07 545.53 491.53 539.46 curveto
  1016. 482.15 528.94 468.07 524.49 454.73 521.45 curveto
  1017. 439.66 518.75 424.30 516.29 410.36 509.62 curveto
  1018. 405.19 507.29 400.62 503.92 395.80 500.98 curveto
  1019. 396.95 512.20 403.69 521.83 411.14 529.89 curveto
  1020. 419.07 538.89 429.68 545.79 435.25 556.69 curveto
  1021. 442.00 573.77 441.46 594.46 430.87 609.88 curveto
  1022. 423.06 619.72 411.73 625.84 400.13 630.11 curveto
  1023. 397.86 630.88 395.00 631.57 393.02 629.74 curveto
  1024. 392.93 626.12 395.68 622.89 394.69 619.22 curveto
  1025. 393.30 611.93 388.09 605.94 382.01 601.98 curveto
  1026. 366.77 591.61 348.26 587.81 332.45 578.53 curveto
  1027. 324.99 573.47 318.50 567.02 313.33 559.64 curveto
  1028. 305.40 548.27 300.97 534.83 298.87 521.22 curveto
  1029. 294.14 525.91 291.59 532.23 289.47 538.41 curveto
  1030. 287.31 544.58 287.21 551.28 288.33 557.66 curveto
  1031. 290.94 570.70 298.47 581.99 302.32 594.60 curveto
  1032. 304.32 601.09 303.97 607.98 303.75 614.67 curveto
  1033. 303.39 622.27 299.05 629.78 292.08 633.07 curveto
  1034. 287.80 634.26 282.89 634.89 278.68 633.29 curveto
  1035. closepath
  1036. 1.000 1.000 1.000 setrgbcolor
  1037. fill
  1038. newpath
  1039. 278.68 633.29 moveto
  1040. 282.89 634.89 287.80 634.26 292.08 633.07 curveto
  1041. 299.05 629.78 303.39 622.27 303.75 614.67 curveto
  1042. 303.97 607.98 304.32 601.09 302.32 594.60 curveto
  1043. 298.47 581.99 290.94 570.70 288.33 557.66 curveto
  1044. 287.21 551.28 287.31 544.58 289.47 538.41 curveto
  1045. 291.59 532.23 294.14 525.91 298.87 521.22 curveto
  1046. 300.97 534.83 305.40 548.27 313.33 559.64 curveto
  1047. 318.50 567.02 324.99 573.47 332.45 578.53 curveto
  1048. 348.26 587.81 366.77 591.61 382.01 601.98 curveto
  1049. 388.09 605.94 393.30 611.93 394.69 619.22 curveto
  1050. 395.68 622.89 392.93 626.12 393.02 629.74 curveto
  1051. 395.00 631.57 397.86 630.88 400.13 630.11 curveto
  1052. 411.73 625.84 423.06 619.72 430.87 609.88 curveto
  1053. 441.46 594.46 442.00 573.77 435.25 556.69 curveto
  1054. 429.68 545.79 419.07 538.89 411.14 529.89 curveto
  1055. 403.69 521.83 396.95 512.20 395.80 500.98 curveto
  1056. 400.62 503.92 405.19 507.29 410.36 509.62 curveto
  1057. 424.30 516.29 439.66 518.75 454.73 521.45 curveto
  1058. 468.07 524.49 482.15 528.94 491.53 539.46 curveto
  1059. 497.07 545.53 501.05 553.11 502.43 561.24 curveto
  1060. 503.19 565.70 501.71 570.18 502.30 574.64 curveto
  1061. 502.47 576.87 505.04 577.62 506.91 577.23 curveto
  1062. 509.33 576.03 511.14 573.90 513.52 572.62 curveto
  1063. 523.09 567.52 530.25 558.91 535.65 549.67 curveto
  1064. 539.05 543.70 542.33 537.53 543.79 530.76 curveto
  1065. 546.03 523.00 545.27 514.80 544.55 506.88 curveto
  1066. 543.39 493.39 537.58 480.47 528.71 470.31 curveto
  1067. 514.36 455.35 495.95 443.01 487.70 423.27 curveto
  1068. 493.44 424.87 498.88 427.81 504.95 428.06 curveto
  1069. 511.64 428.43 518.37 428.20 525.01 427.36 curveto
  1070. 536.35 425.19 547.10 420.76 558.40 418.39 curveto
  1071. 566.14 416.62 574.13 416.55 582.03 416.81 curveto
  1072. 586.50 416.90 590.69 418.64 594.78 420.27 curveto
  1073. 599.78 422.63 605.10 424.99 608.65 429.40 curveto
  1074. 612.26 434.17 614.48 439.78 617.40 444.96 curveto
  1075. 620.15 444.94 622.94 443.82 623.78 440.96 curveto
  1076. 629.52 425.00 629.27 407.51 626.05 391.05 curveto
  1077. 623.66 383.40 621.43 375.60 617.44 368.60 curveto
  1078. 614.21 362.14 609.37 356.72 605.11 350.95 curveto
  1079. 600.45 344.65 594.64 339.26 588.19 334.83 curveto
  1080. 576.29 326.71 563.12 320.22 549.01 317.01 curveto
  1081. 543.34 315.75 537.58 314.96 531.89 313.77 curveto
  1082. 538.34 307.57 546.20 302.87 551.76 295.76 curveto
  1083. 562.92 282.92 572.08 268.24 585.24 257.24 curveto
  1084. 589.91 252.99 595.43 249.86 600.96 246.87 curveto
  1085. 605.90 244.34 611.93 243.99 616.25 240.26 curveto
  1086. 617.89 238.93 618.22 236.58 617.15 234.79 curveto
  1087. 614.48 229.51 612.01 224.10 608.80 219.12 curveto
  1088. 600.75 208.77 588.86 201.88 576.27 198.64 curveto
  1089. 559.20 195.28 541.44 199.52 526.11 207.21 curveto
  1090. 513.93 214.57 503.39 224.82 489.92 229.94 curveto
  1091. 485.76 231.42 481.41 232.37 476.98 232.31 curveto
  1092. 478.21 238.11 480.75 243.47 483.14 248.85 curveto
  1093. 489.80 265.47 495.34 282.71 497.43 300.56 curveto
  1094. 499.49 322.11 498.32 344.03 493.13 365.08 curveto
  1095. 487.91 390.76 476.29 414.84 460.94 435.97 curveto
  1096. 452.79 448.22 441.84 458.21 430.78 467.77 curveto
  1097. 415.97 481.19 398.47 491.36 380.16 499.20 curveto
  1098. 362.52 506.19 343.87 510.33 325.16 513.21 curveto
  1099. 315.30 514.42 305.30 514.16 295.40 513.57 curveto
  1100. 276.83 511.36 258.22 508.07 240.71 501.29 curveto
  1101. 231.08 497.79 222.00 493.00 213.19 487.81 curveto
  1102. 206.15 483.61 198.95 479.61 192.57 474.42 curveto
  1103. 181.13 465.31 169.79 455.79 160.86 444.12 curveto
  1104. 157.37 439.62 153.43 435.46 150.32 430.67 curveto
  1105. 140.99 415.64 132.15 400.09 126.76 383.15 curveto
  1106. 126.03 380.70 125.74 378.15 125.54 375.61 curveto
  1107. 122.68 372.31 119.87 368.76 118.65 364.50 curveto
  1108. 116.42 357.02 116.84 349.07 117.68 341.40 curveto
  1109. 114.58 309.48 120.18 276.96 132.59 247.46 curveto
  1110. 143.27 225.14 157.22 204.27 174.72 186.71 curveto
  1111. 182.53 178.37 191.84 171.66 201.20 165.19 curveto
  1112. 208.48 160.35 215.82 155.51 223.75 151.78 curveto
  1113. 232.26 147.68 241.16 144.50 249.95 141.09 curveto
  1114. 265.95 136.53 282.34 132.99 299.01 132.27 curveto
  1115. 325.24 130.47 351.46 136.09 376.01 145.02 curveto
  1116. 386.65 148.69 396.31 154.53 406.17 159.86 curveto
  1117. 411.11 162.60 416.51 164.53 421.10 167.89 curveto
  1118. 443.67 184.73 462.41 206.50 476.50 230.83 curveto
  1119. 488.86 224.82 499.25 215.52 508.54 205.53 curveto
  1120. 518.05 195.02 526.06 182.37 527.93 168.08 curveto
  1121. 528.06 161.19 528.08 154.16 526.53 147.41 curveto
  1122. 522.91 134.75 517.29 122.71 510.52 111.44 curveto
  1123. 507.31 106.03 503.00 101.23 500.69 95.31 curveto
  1124. 499.44 92.43 498.63 89.40 497.44 86.50 curveto
  1125. 495.29 84.71 492.05 85.30 490.20 87.20 curveto
  1126. 486.12 91.10 483.79 96.34 481.29 101.28 curveto
  1127. 477.60 109.47 477.06 118.78 472.75 126.73 curveto
  1128. 469.30 133.29 465.85 140.30 459.48 144.52 curveto
  1129. 446.87 154.84 430.67 158.52 415.52 163.42 curveto
  1130. 417.48 156.83 422.33 151.76 426.58 146.57 curveto
  1131. 431.86 140.05 438.21 134.04 440.93 125.87 curveto
  1132. 445.79 115.42 448.15 103.87 447.70 92.35 curveto
  1133. 446.47 82.45 444.57 72.31 439.30 63.68 curveto
  1134. 434.63 56.83 429.04 50.65 423.23 44.76 curveto
  1135. 419.40 40.68 414.23 38.37 409.58 35.40 curveto
  1136. 407.87 34.22 405.65 33.97 403.74 34.80 curveto
  1137. 402.74 35.83 402.76 37.38 402.46 38.68 curveto
  1138. 401.32 45.69 400.60 52.97 397.43 59.42 curveto
  1139. 387.17 76.51 369.29 86.88 351.45 94.51 curveto
  1140. 344.30 97.26 337.66 101.13 331.26 105.29 curveto
  1141. 325.37 109.19 321.26 115.31 318.89 121.89 curveto
  1142. 318.16 123.33 317.92 125.31 316.22 125.94 curveto
  1143. 315.09 120.22 314.53 114.21 315.72 108.46 curveto
  1144. 318.19 100.57 321.03 92.76 322.83 84.68 curveto
  1145. 323.86 76.01 323.59 67.19 322.60 58.53 curveto
  1146. 321.88 51.01 317.75 44.44 313.72 38.25 curveto
  1147. 303.19 22.77 284.57 12.21 265.64 13.63 curveto
  1148. 263.13 18.59 268.59 22.18 269.14 26.84 curveto
  1149. 271.35 37.92 265.06 48.29 258.93 56.97 curveto
  1150. 249.62 67.63 239.06 77.10 229.32 87.36 curveto
  1151. 220.48 97.33 213.71 109.66 212.28 123.07 curveto
  1152. 212.04 127.69 211.88 132.35 212.21 136.96 curveto
  1153. 212.94 141.71 214.84 146.20 215.38 150.99 curveto
  1154. 211.66 148.32 210.07 143.89 207.88 140.06 curveto
  1155. 200.67 126.18 193.63 111.77 182.31 100.69 curveto
  1156. 176.07 94.51 167.95 90.10 159.30 88.49 curveto
  1157. 148.57 87.30 137.42 86.67 126.96 89.87 curveto
  1158. 109.61 95.54 94.06 106.48 82.75 120.78 curveto
  1159. 80.90 122.49 82.08 126.11 84.70 126.13 curveto
  1160. 90.12 126.97 95.77 127.55 100.61 130.37 curveto
  1161. 110.61 135.54 120.50 143.35 123.50 154.69 curveto
  1162. 124.23 159.23 125.62 163.61 126.53 168.09 curveto
  1163. 126.80 177.36 126.85 186.65 127.49 195.91 curveto
  1164. 128.00 202.80 131.13 209.06 132.72 215.70 curveto
  1165. 126.73 211.26 122.12 205.22 115.82 201.17 curveto
  1166. 105.48 193.16 92.39 187.41 79.08 189.01 curveto
  1167. 55.70 193.25 32.74 205.07 18.83 224.82 curveto
  1168. 15.05 230.42 10.72 236.72 11.96 243.84 curveto
  1169. 15.35 243.99 18.55 242.92 21.69 241.79 curveto
  1170. 29.98 239.67 38.09 243.71 44.85 248.13 curveto
  1171. 50.30 252.27 55.36 257.02 59.49 262.50 curveto
  1172. 65.12 270.93 68.69 280.50 73.50 289.40 curveto
  1173. 79.68 303.21 87.78 316.13 97.57 327.65 curveto
  1174. 91.30 329.71 84.71 330.86 78.74 333.76 curveto
  1175. 72.92 336.68 66.86 339.49 62.24 344.23 curveto
  1176. 55.55 350.95 48.95 358.08 44.87 366.75 curveto
  1177. 39.86 378.17 37.96 390.64 36.86 402.98 curveto
  1178. 36.15 415.79 39.39 428.75 36.52 441.44 curveto
  1179. 35.03 448.81 29.78 454.52 25.19 460.16 curveto
  1180. 23.04 462.23 23.92 466.41 26.90 467.16 curveto
  1181. 35.93 469.97 46.01 469.49 54.72 465.74 curveto
  1182. 59.92 463.46 65.51 461.65 69.81 457.80 curveto
  1183. 75.90 452.52 82.15 447.43 88.59 442.58 curveto
  1184. 103.16 431.38 123.82 428.66 140.81 435.63 curveto
  1185. 134.63 441.52 126.98 445.86 121.70 452.68 curveto
  1186. 113.44 463.11 107.90 475.49 104.24 488.22 curveto
  1187. 100.87 503.41 105.00 519.64 113.79 532.31 curveto
  1188. 119.86 540.21 126.09 548.00 132.01 556.01 curveto
  1189. 136.32 562.51 140.30 569.57 141.41 577.41 curveto
  1190. 142.27 582.94 140.20 588.39 140.84 593.93 curveto
  1191. 146.70 595.24 151.59 591.25 156.01 588.05 curveto
  1192. 164.70 581.42 168.17 570.30 169.65 559.90 curveto
  1193. 171.19 548.68 172.86 536.98 179.37 527.39 curveto
  1194. 183.14 522.55 186.53 517.18 191.74 513.74 curveto
  1195. 196.08 510.96 200.44 508.17 205.11 505.96 curveto
  1196. 200.12 519.56 199.26 534.65 203.46 548.58 curveto
  1197. 206.00 556.35 208.70 564.47 214.38 570.60 curveto
  1198. 217.04 573.59 219.58 576.72 222.58 579.39 curveto
  1199. 232.11 587.13 242.69 593.40 253.07 599.91 curveto
  1200. 261.56 604.76 268.94 611.85 273.44 620.58 curveto
  1201. 275.65 624.62 275.12 630.04 278.68 633.29 curveto
  1202. 248.08 211.12 moveto
  1203. 251.21 212.54 254.55 213.79 258.04 213.54 curveto
  1204. 260.62 213.78 262.25 211.45 264.11 210.06 curveto
  1205. 263.73 208.56 263.35 207.06 263.00 205.54 curveto
  1206. 268.77 208.91 275.11 212.12 282.03 211.40 curveto
  1207. 290.61 210.56 299.17 206.64 305.03 200.25 curveto
  1208. 296.36 192.80 284.50 189.18 273.19 191.23 curveto
  1209. 262.54 193.95 253.57 201.75 248.08 211.12 curveto
  1210. closepath
  1211. 0.973 0.580 0.004 setrgbcolor
  1212. fill
  1213. newpath
  1214. 295.40 513.57 moveto
  1215. 305.30 514.16 315.30 514.42 325.16 513.21 curveto
  1216. 343.87 510.33 362.52 506.19 380.16 499.20 curveto
  1217. 398.47 491.36 415.97 481.19 430.78 467.77 curveto
  1218. 441.84 458.21 452.79 448.22 460.94 435.97 curveto
  1219. 476.29 414.84 487.91 390.76 493.13 365.08 curveto
  1220. 498.32 344.03 499.49 322.11 497.43 300.56 curveto
  1221. 495.34 282.71 489.80 265.47 483.14 248.85 curveto
  1222. 480.75 243.47 478.21 238.11 476.98 232.31 curveto
  1223. 476.86 231.94 476.62 231.20 476.50 230.83 curveto
  1224. 462.41 206.50 443.67 184.73 421.10 167.89 curveto
  1225. 416.51 164.53 411.11 162.60 406.17 159.86 curveto
  1226. 396.31 154.53 386.65 148.69 376.01 145.02 curveto
  1227. 351.46 136.09 325.24 130.47 299.01 132.27 curveto
  1228. 282.34 132.99 265.95 136.53 249.95 141.09 curveto
  1229. 241.16 144.50 232.26 147.68 223.75 151.78 curveto
  1230. 215.82 155.51 208.48 160.35 201.20 165.19 curveto
  1231. 191.84 171.66 182.53 178.37 174.72 186.71 curveto
  1232. 157.22 204.27 143.27 225.14 132.59 247.46 curveto
  1233. 120.18 276.96 114.58 309.48 117.68 341.40 curveto
  1234. 118.93 337.55 119.78 332.85 123.66 330.70 curveto
  1235. 126.77 328.53 131.47 327.78 134.45 330.60 curveto
  1236. 139.09 334.27 138.75 340.72 139.15 346.04 curveto
  1237. 139.40 353.43 141.07 361.88 147.59 366.33 curveto
  1238. 152.74 369.54 158.47 371.78 164.36 373.21 curveto
  1239. 164.98 359.11 169.57 344.80 179.28 334.30 curveto
  1240. 188.51 323.69 201.37 317.25 214.27 312.25 curveto
  1241. 222.10 309.03 230.83 308.82 239.12 309.93 curveto
  1242. 254.11 312.19 267.70 322.45 273.59 336.46 curveto
  1243. 278.41 350.46 278.48 365.62 283.45 379.58 curveto
  1244. 285.40 385.04 288.47 390.29 293.06 393.93 curveto
  1245. 298.13 397.92 305.46 396.83 310.71 393.78 curveto
  1246. 316.16 389.69 319.00 382.76 319.20 376.06 curveto
  1247. 319.63 364.93 315.86 354.15 316.19 343.02 curveto
  1248. 315.50 330.71 320.36 318.50 328.04 309.03 curveto
  1249. 335.42 302.23 343.04 295.37 352.25 291.12 curveto
  1250. 357.84 287.93 364.24 286.84 370.40 285.29 curveto
  1251. 379.29 282.79 388.76 284.16 397.50 286.64 curveto
  1252. 406.33 289.50 414.15 294.85 420.96 301.07 curveto
  1253. 426.08 305.72 429.69 311.68 433.73 317.23 curveto
  1254. 437.29 322.12 439.13 327.92 441.65 333.35 curveto
  1255. 443.59 337.56 444.57 342.10 446.01 346.48 curveto
  1256. 450.75 343.13 455.07 339.24 459.35 335.34 curveto
  1257. 463.51 331.49 467.07 326.65 468.13 320.97 curveto
  1258. 470.03 313.01 464.26 305.10 467.21 297.23 curveto
  1259. 467.96 294.61 470.42 292.98 473.04 292.68 curveto
  1260. 476.67 291.89 479.38 295.03 481.94 297.07 curveto
  1261. 488.71 302.99 490.57 312.41 490.79 321.00 curveto
  1262. 491.05 325.01 488.86 328.57 486.77 331.79 curveto
  1263. 480.92 340.49 472.44 346.86 464.48 353.50 curveto
  1264. 458.34 358.42 452.20 363.45 445.32 367.31 curveto
  1265. 439.44 370.68 434.04 374.79 428.19 378.20 curveto
  1266. 403.09 392.47 375.94 402.93 348.04 410.22 curveto
  1267. 333.24 413.79 318.28 417.31 303.01 417.89 curveto
  1268. 291.02 418.69 279.02 419.41 267.01 419.34 curveto
  1269. 245.19 418.99 223.39 416.19 202.27 410.69 curveto
  1270. 188.41 407.11 175.16 401.57 162.01 395.98 curveto
  1271. 149.37 390.19 135.83 385.31 125.54 375.61 curveto
  1272. 125.74 378.15 126.03 380.70 126.76 383.15 curveto
  1273. 132.15 400.09 140.99 415.64 150.32 430.67 curveto
  1274. 153.43 435.46 157.37 439.62 160.86 444.12 curveto
  1275. 169.79 455.79 181.13 465.31 192.57 474.42 curveto
  1276. 198.95 479.61 206.15 483.61 213.19 487.81 curveto
  1277. 222.00 493.00 231.08 497.79 240.71 501.29 curveto
  1278. 258.22 508.07 276.83 511.36 295.40 513.57 curveto
  1279. 209.44 451.56 moveto
  1280. 203.23 444.58 199.95 435.21 200.03 425.90 curveto
  1281. 204.76 430.57 208.43 436.50 214.49 439.62 curveto
  1282. 219.85 443.08 226.63 442.61 232.62 441.48 curveto
  1283. 242.23 439.38 249.79 432.47 259.13 429.73 curveto
  1284. 256.88 445.56 241.79 457.98 226.00 458.29 curveto
  1285. 219.91 458.35 213.54 456.22 209.44 451.56 curveto
  1286. 368.04 443.97 moveto
  1287. 361.46 440.70 355.66 436.06 349.07 432.82 curveto
  1288. 345.14 430.87 340.83 429.89 336.64 428.69 curveto
  1289. 340.28 423.95 346.59 423.72 352.04 423.23 curveto
  1290. 360.61 422.36 368.78 425.66 377.15 426.87 curveto
  1291. 384.52 428.54 392.59 428.15 399.21 424.20 curveto
  1292. 405.14 421.17 408.74 415.34 413.93 411.37 curveto
  1293. 415.73 421.71 410.18 431.99 402.18 438.23 curveto
  1294. 396.62 442.30 390.19 446.15 383.04 445.80 curveto
  1295. 378.03 445.67 372.64 446.39 368.04 443.97 curveto
  1296. 205.30 288.67 moveto
  1297. 200.90 285.83 197.02 281.65 195.60 276.50 curveto
  1298. 198.88 279.93 201.33 284.29 205.82 286.37 curveto
  1299. 209.94 271.92 222.03 262.15 230.11 250.05 curveto
  1300. 234.12 242.32 236.26 233.79 238.23 225.35 curveto
  1301. 242.33 209.48 254.45 196.18 269.17 189.32 curveto
  1302. 281.28 185.93 295.06 189.24 304.63 197.35 curveto
  1303. 310.19 200.80 313.41 206.63 317.37 211.62 curveto
  1304. 321.00 216.34 324.31 221.31 328.12 225.89 curveto
  1305. 331.34 228.69 335.75 229.52 339.45 231.54 curveto
  1306. 349.36 236.11 357.92 243.27 364.56 251.89 curveto
  1307. 369.47 250.14 371.31 245.07 373.66 240.90 curveto
  1308. 373.16 244.70 372.89 249.06 369.69 251.69 curveto
  1309. 364.75 256.95 357.21 259.14 350.18 257.68 curveto
  1310. 350.26 257.19 350.42 256.20 350.50 255.71 curveto
  1311. 354.53 255.28 358.56 254.71 362.49 253.67 curveto
  1312. 359.14 247.56 353.60 243.05 348.23 238.79 curveto
  1313. 335.20 230.91 320.43 224.82 304.99 224.76 curveto
  1314. 289.84 224.90 274.52 228.04 260.92 234.82 curveto
  1315. 250.55 240.84 239.82 246.70 231.39 255.39 curveto
  1316. 221.92 264.79 211.95 274.94 208.29 288.16 curveto
  1317. 212.06 288.19 215.85 287.91 219.60 288.37 curveto
  1318. 215.82 292.20 209.51 291.32 205.30 288.67 curveto
  1319. 253.73 182.39 moveto
  1320. 259.27 175.16 268.40 168.16 278.03 170.92 curveto
  1321. 282.12 171.68 286.96 173.50 287.41 178.32 curveto
  1322. 282.88 176.78 279.11 172.72 274.00 173.33 curveto
  1323. 267.51 173.44 262.65 178.13 257.86 181.87 curveto
  1324. 256.73 183.02 255.12 182.56 253.73 182.39 curveto
  1325. closepath
  1326. 1.000 0.937 0.012 setrgbcolor
  1327. fill
  1328. newpath
  1329. 209.44 451.56 moveto
  1330. 213.54 456.22 219.91 458.35 226.00 458.29 curveto
  1331. 241.79 457.98 256.88 445.56 259.13 429.73 curveto
  1332. 249.79 432.47 242.23 439.38 232.62 441.48 curveto
  1333. 226.63 442.61 219.85 443.08 214.49 439.62 curveto
  1334. 208.43 436.50 204.76 430.57 200.03 425.90 curveto
  1335. 199.95 435.21 203.23 444.58 209.44 451.56 curveto
  1336. 368.04 443.97 moveto
  1337. 372.64 446.39 378.03 445.67 383.04 445.80 curveto
  1338. 390.19 446.15 396.62 442.30 402.18 438.23 curveto
  1339. 410.18 431.99 415.73 421.71 413.93 411.37 curveto
  1340. 408.74 415.34 405.14 421.17 399.21 424.20 curveto
  1341. 392.59 428.15 384.52 428.54 377.15 426.87 curveto
  1342. 368.78 425.66 360.61 422.36 352.04 423.23 curveto
  1343. 346.59 423.72 340.28 423.95 336.64 428.69 curveto
  1344. 340.83 429.89 345.14 430.87 349.07 432.82 curveto
  1345. 355.66 436.06 361.46 440.70 368.04 443.97 curveto
  1346. 235.52 246.70 moveto
  1347. 240.99 243.99 245.90 240.35 251.09 237.15 curveto
  1348. 262.87 229.73 276.28 225.21 289.99 223.08 curveto
  1349. 295.98 222.67 301.98 222.40 307.98 222.48 curveto
  1350. 313.25 222.48 318.26 224.35 323.45 224.92 curveto
  1351. 321.58 219.77 318.10 215.47 315.07 210.97 curveto
  1352. 313.06 208.33 311.21 205.21 308.06 203.81 curveto
  1353. 303.68 205.57 300.15 208.90 295.81 210.74 curveto
  1354. 287.63 214.12 278.19 215.21 269.75 212.11 curveto
  1355. 266.42 210.29 263.95 213.78 261.17 215.07 curveto
  1356. 256.29 217.80 250.79 214.87 246.03 213.28 curveto
  1357. 240.66 223.71 237.84 235.27 235.52 246.70 curveto
  1358. 253.73 182.39 moveto
  1359. 255.12 182.56 256.73 183.02 257.86 181.87 curveto
  1360. 262.65 178.13 267.51 173.44 274.00 173.33 curveto
  1361. 279.11 172.72 282.88 176.78 287.41 178.32 curveto
  1362. 286.96 173.50 282.12 171.68 278.03 170.92 curveto
  1363. 268.40 168.16 259.27 175.16 253.73 182.39 curveto
  1364. closepath
  1365. 0.941 0.353 0.075 setrgbcolor
  1366. fill
  1367. newpath
  1368. 202.27 410.69 moveto
  1369. 223.39 416.19 245.19 418.99 267.01 419.34 curveto
  1370. 279.02 419.41 291.02 418.69 303.01 417.89 curveto
  1371. 318.28 417.31 333.24 413.79 348.04 410.22 curveto
  1372. 375.94 402.93 403.09 392.47 428.19 378.20 curveto
  1373. 434.04 374.79 439.44 370.68 445.32 367.31 curveto
  1374. 452.20 363.45 458.34 358.42 464.48 353.50 curveto
  1375. 472.44 346.86 480.92 340.49 486.77 331.79 curveto
  1376. 488.86 328.57 491.05 325.01 490.79 321.00 curveto
  1377. 490.57 312.41 488.71 302.99 481.94 297.07 curveto
  1378. 479.38 295.03 476.67 291.89 473.04 292.68 curveto
  1379. 470.42 292.98 467.96 294.61 467.21 297.23 curveto
  1380. 464.26 305.10 470.03 313.01 468.13 320.97 curveto
  1381. 467.07 326.65 463.51 331.49 459.35 335.34 curveto
  1382. 455.07 339.24 450.75 343.13 446.01 346.48 curveto
  1383. 444.57 342.10 443.59 337.56 441.65 333.35 curveto
  1384. 439.13 327.92 437.29 322.12 433.73 317.23 curveto
  1385. 429.69 311.68 426.08 305.72 420.96 301.07 curveto
  1386. 414.15 294.85 406.33 289.50 397.50 286.64 curveto
  1387. 388.76 284.16 379.29 282.79 370.40 285.29 curveto
  1388. 364.24 286.84 357.84 287.93 352.25 291.12 curveto
  1389. 343.04 295.37 335.42 302.23 328.04 309.03 curveto
  1390. 320.36 318.50 315.50 330.71 316.19 343.02 curveto
  1391. 315.86 354.15 319.63 364.93 319.20 376.06 curveto
  1392. 319.00 382.76 316.16 389.69 310.71 393.78 curveto
  1393. 305.46 396.83 298.13 397.92 293.06 393.93 curveto
  1394. 288.47 390.29 285.40 385.04 283.45 379.58 curveto
  1395. 278.48 365.62 278.41 350.46 273.59 336.46 curveto
  1396. 267.70 322.45 254.11 312.19 239.12 309.93 curveto
  1397. 230.83 308.82 222.10 309.03 214.27 312.25 curveto
  1398. 201.37 317.25 188.51 323.69 179.28 334.30 curveto
  1399. 169.57 344.80 164.98 359.11 164.36 373.21 curveto
  1400. 158.47 371.78 152.74 369.54 147.59 366.33 curveto
  1401. 141.07 361.88 139.40 353.43 139.15 346.04 curveto
  1402. 138.75 340.72 139.09 334.27 134.45 330.60 curveto
  1403. 131.47 327.78 126.77 328.53 123.66 330.70 curveto
  1404. 119.78 332.85 118.93 337.55 117.68 341.40 curveto
  1405. 116.84 349.07 116.42 357.02 118.65 364.50 curveto
  1406. 119.87 368.76 122.68 372.31 125.54 375.61 curveto
  1407. 135.83 385.31 149.37 390.19 162.01 395.98 curveto
  1408. 175.16 401.57 188.41 407.11 202.27 410.69 curveto
  1409. 206.01 381.98 moveto
  1410. 202.05 379.14 197.90 376.50 194.54 372.92 curveto
  1411. 200.98 373.32 207.00 375.84 213.29 377.07 curveto
  1412. 207.29 366.51 198.63 357.71 192.65 347.12 curveto
  1413. 199.67 349.50 206.10 353.37 213.24 355.45 curveto
  1414. 209.69 347.57 204.26 340.70 200.81 332.77 curveto
  1415. 210.47 337.65 218.77 344.86 228.56 349.50 curveto
  1416. 224.47 340.79 218.88 332.86 214.86 324.10 curveto
  1417. 222.86 328.27 229.86 334.09 237.88 338.23 curveto
  1418. 236.95 333.09 235.88 327.95 235.71 322.71 curveto
  1419. 241.31 328.35 245.97 334.81 251.28 340.69 curveto
  1420. 257.87 347.63 260.88 356.93 264.82 365.44 curveto
  1421. 261.19 363.69 257.55 361.94 253.77 360.51 curveto
  1422. 255.55 365.52 258.62 369.95 260.21 375.03 curveto
  1423. 255.25 372.20 251.25 367.92 245.98 365.58 curveto
  1424. 249.31 373.45 255.33 379.71 259.38 387.16 curveto
  1425. 249.73 382.97 241.34 376.41 231.79 372.00 curveto
  1426. 234.81 378.72 239.58 384.51 242.26 391.39 curveto
  1427. 236.75 388.75 232.30 384.45 226.91 381.62 curveto
  1428. 228.39 388.27 231.35 394.46 232.95 401.08 curveto
  1429. 223.65 395.18 215.01 388.31 206.01 381.98 curveto
  1430. 362.14 367.87 moveto
  1431. 356.06 363.34 349.61 359.28 343.96 354.20 curveto
  1432. 350.45 354.47 356.59 356.67 362.88 358.05 curveto
  1433. 355.97 348.12 348.13 338.83 341.73 328.55 curveto
  1434. 349.46 329.82 355.81 334.72 363.05 337.35 curveto
  1435. 359.05 329.28 353.96 321.81 349.70 313.88 curveto
  1436. 359.65 318.87 368.20 326.24 378.17 331.20 curveto
  1437. 374.13 322.36 368.34 314.46 364.12 305.71 curveto
  1438. 372.21 309.56 379.06 315.51 387.11 319.42 curveto
  1439. 386.53 314.19 385.28 309.06 384.89 303.80 curveto
  1440. 390.60 311.38 395.29 319.64 400.52 327.55 curveto
  1441. 404.09 333.42 408.29 338.92 411.28 345.14 curveto
  1442. 408.43 344.04 405.66 342.77 402.82 341.65 curveto
  1443. 404.80 346.36 407.40 350.79 409.22 355.57 curveto
  1444. 404.43 353.37 400.38 349.92 395.71 347.50 curveto
  1445. 399.43 354.68 404.81 360.85 408.27 368.17 curveto
  1446. 398.64 363.86 390.18 357.41 380.70 352.82 curveto
  1447. 383.71 359.57 388.25 365.51 391.09 372.34 curveto
  1448. 385.76 369.53 381.23 365.48 375.90 362.67 curveto
  1449. 377.17 369.01 379.97 374.90 381.26 381.24 curveto
  1450. 374.58 377.23 368.54 372.29 362.14 367.87 curveto
  1451. 205.30 288.67 moveto
  1452. 209.51 291.32 215.82 292.20 219.60 288.37 curveto
  1453. 215.85 287.91 212.06 288.19 208.29 288.16 curveto
  1454. 211.95 274.94 221.92 264.79 231.39 255.39 curveto
  1455. 239.82 246.70 250.55 240.84 260.92 234.82 curveto
  1456. 274.52 228.04 289.84 224.90 304.99 224.76 curveto
  1457. 320.43 224.82 335.20 230.91 348.23 238.79 curveto
  1458. 353.60 243.05 359.14 247.56 362.49 253.67 curveto
  1459. 358.56 254.71 354.53 255.28 350.50 255.71 curveto
  1460. 350.42 256.20 350.26 257.19 350.18 257.68 curveto
  1461. 357.21 259.14 364.75 256.95 369.69 251.69 curveto
  1462. 372.89 249.06 373.16 244.70 373.66 240.90 curveto
  1463. 371.31 245.07 369.47 250.14 364.56 251.89 curveto
  1464. 357.92 243.27 349.36 236.11 339.45 231.54 curveto
  1465. 335.75 229.52 331.34 228.69 328.12 225.89 curveto
  1466. 324.31 221.31 321.00 216.34 317.37 211.62 curveto
  1467. 313.41 206.63 310.19 200.80 304.63 197.35 curveto
  1468. 295.06 189.24 281.28 185.93 269.17 189.32 curveto
  1469. 254.45 196.18 242.33 209.48 238.23 225.35 curveto
  1470. 236.26 233.79 234.12 242.32 230.11 250.05 curveto
  1471. 222.03 262.15 209.94 271.92 205.82 286.37 curveto
  1472. 201.33 284.29 198.88 279.93 195.60 276.50 curveto
  1473. 197.02 281.65 200.90 285.83 205.30 288.67 curveto
  1474. 235.52 246.70 moveto
  1475. 237.84 235.27 240.66 223.71 246.03 213.28 curveto
  1476. 250.79 214.87 256.29 217.80 261.17 215.07 curveto
  1477. 263.95 213.78 266.42 210.29 269.75 212.11 curveto
  1478. 278.19 215.21 287.63 214.12 295.81 210.74 curveto
  1479. 300.15 208.90 303.68 205.57 308.06 203.81 curveto
  1480. 311.21 205.21 313.06 208.33 315.07 210.97 curveto
  1481. 318.10 215.47 321.58 219.77 323.45 224.92 curveto
  1482. 318.26 224.35 313.25 222.48 307.98 222.48 curveto
  1483. 301.98 222.40 295.98 222.67 289.99 223.08 curveto
  1484. 276.28 225.21 262.87 229.73 251.09 237.15 curveto
  1485. 245.90 240.35 240.99 243.99 235.52 246.70 curveto
  1486. 248.08 211.12 moveto
  1487. 253.57 201.75 262.54 193.95 273.19 191.23 curveto
  1488. 284.50 189.18 296.36 192.80 305.03 200.25 curveto
  1489. 299.17 206.64 290.61 210.56 282.03 211.40 curveto
  1490. 275.11 212.12 268.77 208.91 263.00 205.54 curveto
  1491. 263.35 207.06 263.73 208.56 264.11 210.06 curveto
  1492. 262.25 211.45 260.62 213.78 258.04 213.54 curveto
  1493. 254.55 213.79 251.21 212.54 248.08 211.12 curveto
  1494. closepath
  1495. 0.000 0.000 0.000 setrgbcolor
  1496. fill
  1497. newpath
  1498. 206.01 381.98 moveto
  1499. 215.01 388.31 223.65 395.18 232.95 401.08 curveto
  1500. 231.35 394.46 228.39 388.27 226.91 381.62 curveto
  1501. 232.30 384.45 236.75 388.75 242.26 391.39 curveto
  1502. 239.58 384.51 234.81 378.72 231.79 372.00 curveto
  1503. 241.34 376.41 249.73 382.97 259.38 387.16 curveto
  1504. 255.33 379.71 249.31 373.45 245.98 365.58 curveto
  1505. 251.25 367.92 255.25 372.20 260.21 375.03 curveto
  1506. 258.62 369.95 255.55 365.52 253.77 360.51 curveto
  1507. 257.55 361.94 261.19 363.69 264.82 365.44 curveto
  1508. 260.88 356.93 257.87 347.63 251.28 340.69 curveto
  1509. 245.97 334.81 241.31 328.35 235.71 322.71 curveto
  1510. 235.88 327.95 236.95 333.09 237.88 338.23 curveto
  1511. 229.86 334.09 222.86 328.27 214.86 324.10 curveto
  1512. 218.88 332.86 224.47 340.79 228.56 349.50 curveto
  1513. 218.77 344.86 210.47 337.65 200.81 332.77 curveto
  1514. 204.26 340.70 209.69 347.57 213.24 355.45 curveto
  1515. 206.10 353.37 199.67 349.50 192.65 347.12 curveto
  1516. 198.63 357.71 207.29 366.51 213.29 377.07 curveto
  1517. 207.00 375.84 200.98 373.32 194.54 372.92 curveto
  1518. 197.90 376.50 202.05 379.14 206.01 381.98 curveto
  1519. 362.14 367.87 moveto
  1520. 368.54 372.29 374.58 377.23 381.26 381.24 curveto
  1521. 379.97 374.90 377.17 369.01 375.90 362.67 curveto
  1522. 381.23 365.48 385.76 369.53 391.09 372.34 curveto
  1523. 388.25 365.51 383.71 359.57 380.70 352.82 curveto
  1524. 390.18 357.41 398.64 363.86 408.27 368.17 curveto
  1525. 404.81 360.85 399.43 354.68 395.71 347.50 curveto
  1526. 400.38 349.92 404.43 353.37 409.22 355.57 curveto
  1527. 407.40 350.79 404.80 346.36 402.82 341.65 curveto
  1528. 405.66 342.77 408.43 344.04 411.28 345.14 curveto
  1529. 408.29 338.92 404.09 333.42 400.52 327.55 curveto
  1530. 395.29 319.64 390.60 311.38 384.89 303.80 curveto
  1531. 385.28 309.06 386.53 314.19 387.11 319.42 curveto
  1532. 379.06 315.51 372.21 309.56 364.12 305.71 curveto
  1533. 368.34 314.46 374.13 322.36 378.17 331.20 curveto
  1534. 368.20 326.24 359.65 318.87 349.70 313.88 curveto
  1535. 353.96 321.81 359.05 329.28 363.05 337.35 curveto
  1536. 355.81 334.72 349.46 329.82 341.73 328.55 curveto
  1537. 348.13 338.83 355.97 348.12 362.88 358.05 curveto
  1538. 356.59 356.67 350.45 354.47 343.96 354.20 curveto
  1539. 349.61 359.28 356.06 363.34 362.14 367.87 curveto
  1540. closepath
  1541. 0.388 0.388 0.388 setrgbcolor
  1542. fill
  1543. grestore
  1544. %%EndDocument
  1545. PSL_eps_end } def
  1546. V 4196 2027 T
  1547. 0.590551181102 dup scale Sk_sunglasses U
  1548. V -3604 2027 T
  1549. 0.590551181102 dup scale Sk_sunglasses U
  1550. U
  1551. PSL_cliprestore
  1552. %%EndObject
  1553. 0 A
  1554. FQ
  1555. O0
  1556. 0 6000 TM
  1557. % PostScript produced by:
  1558. %@GMT: gmt grdimage b.grd -Ct.cpt -Baf '-B+tTransition = 5' -JQ6.5i -O -K -Y5i
  1559. %@PROJ: eqc -180.00000000 180.00000000 -90.00000000 90.00000000 -20015109.356 20015109.356 -10007554.678 10007554.678 +proj=eqc +lat_ts=0 +lat_0=0 +lon_0=0 +x_0=0 +y_0=0 +units=m +a=6371007.181 +b=6371007.181 +units=m +no_defs
  1560. %%BeginObject PSL_Layer_3
  1561. 0 setlinecap
  1562. 0 setlinejoin
  1563. 3.32550952342 setmiterlimit
  1564. clipsave
  1565. 0 0 M
  1566. 7800 0 D
  1567. 0 3900 D
  1568. -7800 0 D
  1569. P
  1570. PSL_clip N
  1571. V N -11 -11 T 7822 3922 scale /DeviceGray setcolorspace
  1572. << /ImageType 1 /Decode [0 1] /Width 361 /Height 181 /BitsPerComponent 8
  1573. /ImageMatrix [361 0 0 -181 0 181] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  1574. >> image
  1575. G[BdnBg>bQI5gXsBq)P&-HdZK-^c6NaZ+8eNXL`C+M2Ha#cJ#b/>@_I+ta/,LuO$-+tgq\+tbEu/-<+,..5jV1RVdB1f)Ra
  1576. Bfg2'4AX_EH@EVMcFrtBHd?!5RA;M4H]^Vn$h3DihfJ3-rqHEc\,S76OSRd@d+EbPlhRGCf%>C\ememSO.Y$+I1[IbDp]%[
  1577. R=G3``pV"uA,T-VrQ'T:5C>*DQsT@NRf/=k=PE\2e_!#e)maHNnib0F1oZ$qoG_6<hJRce+%pfNC;Z)Y8$K@jrlDjA*OQWd
  1578. :-qJJ^SX11rs+X;Ro!<.S,%Fir@rXkCMa_s.54Q6$2p<^^N21."+DhQ2gQFEV9[Z/G(-'3p92K@H\d@2bZa"B+?&e*49YC[
  1579. h#,THpq,hU7<)1/B5N;[7@*..8>e5+B/IRc6HbW_@25,i0Co(D18!9]H=)5p([&;RCmhZXg"b53mbb+cic4,7VUC&PO3A4-
  1580. ^05mrmh]M`Y089a;/`@VkM.q7Q!;_gXEeOmg;n))Caj-_f%``0&_b%%+`#(In1W<+K+rD*):$9=5*CnG,Is^!YF%+a?<a\c
  1581. ;&c5%bbiAqJH%5@Mu/uYl`#lj&nV;M0kS9pM@k`VIL,NGRJ5CIViC6rH3_)5P@s%->N=;=H#&8De6/efP`j0mO#=Ct>*,%0
  1582. l]`9m5YV'+KUC2>k.<>9^q<D(R5ji&GVe39g/E&:::q<Z*h-=hC-gPRX^a7X[aT=PVV!qE.5^M;R")7).26<HR'[!UnH\Lq
  1583. >HiMOoZ<:EO's*g4;<Qu%W@$t4FKi_#s*s=2rdAE%@^J#e1B*=B\qFXCeO[f-R4&8'O.BqU]kE`c3c@)er\:H&S$nW`_TGJ
  1584. @37VAJ,eB=H["r8]`U&>%Xnb&J_TYNJ+*Hsd2^6bI[bR<D@IPe8ZkXd<GJ)3"t_f-Pk@XlZmK:6XeY$S<G9c_@4#D0=[ls;
  1585. R1Wq'5`hU%7:*3hS@j:If#5N%ps#9eDql1^):\rkH/f+a1-RlVEU3=8J-U0=7r[reDQ9gHCY!7#p!NoKbh5D;cI0Or=IVnR
  1586. coPg*AklJpVT).88VS?PQiu;dZlL/)*Zc4>]RG:%^V@OeYO@o<n1XRl_"I#GK1!Po,GV2$%cS%An-3d19s>eoBMENl;j1%Y
  1587. dN#V0BK<C.o)E\bP/g.r"_od?)RSMJiiFo!/>FsGR35GgLCYNL:_<sq"Lrm3H@*68\up4"FBiNuDej-(`G$Lq$ias[^XCNW
  1588. H*s]R];PC,+.s,Vn=/IZX_8Aac'lS>V`%'Rcr+LtA34&<Qt)UXo?_erNgYW)<@5eE0glnB4P&EAgB5)ig=oda?b1KUq0^Z%
  1589. `l>=o%JBDeF`cQ:L5*$oNTZbU2da(>l#LQDq\:7Bl0[fO4ubAS9!nu6Adup.M)A#8:>,]M"knY*\W+!OYnj=X8F)p;B:<E@
  1590. 1G!sC1-qeWUE`-YfD@Y`!VjP-VT,t8F_>GaSNKbt]W/93U:gEVYqeA\Ng5r4<)cm=Y<Hss<6^iBqQl/Uk:Zg[HUh^McaEb'
  1591. _;UM2`.heiYW6KfC7p;XCXOKV>'C7'(7_5FEkVKg2Y+Ia;<t"q[+ZKFd&Jn?R?kk=53A(Qb)g.%*ZGt<*9b/ge(*,kr`hhH
  1592. RF<OaX")<98rjrQ=E:'Z?Vs[/6%4:^?97RQ6"*X<^>]5@#7hh(/M"$+W]k_)9O5Ori,38p\D#cn#M>.)#m`H62,B51Tp+U`
  1593. D1pJ#>:H$Clc7.O-7sf"!\HB!CN.KSb7NbA82;=^ola^0BPW/IT<,1H5C2Be8T@U9IbpZd>s!7Hce>fZ1F",-4cN3_H:CBd
  1594. [V]1%GO4+MZR7E@Yc,(md#k*bQ.76tC)\);?bG0;"gIm-%mdEIDVr!K+(J$D5?.I]l[qd8o&-3Qc:6r1'(]UF/Q*O`3G;S9
  1595. MDM[sD2f&Do:q*8n(e$+Z&taGrIB9lmIJ6fN=E9Q-P%4G0$MYdfpSCrR@]_5Z?]Ah;IX*%r.YZ#EH1;ai4g3h`$ZfW-7*Ta
  1596. S<B>,SsbkW1FG,rYkZ#-dUSQmVp<coG"[0p=)[!hU!Xh>[kQBt=q.kdbsg=dD02("gNct_-+-KO#H\/uGG]AWbS]JHj#9G_
  1597. Y4qU4FgeaZErDD)eWn0I&+/&8SX$H;ATMli_M5SQQuu8Af;t!kN!Kq)?_n0Y*"a(!HHk0BFYU.@)\S<s2lCK:aNEAIB5_5K
  1598. _'<NVeYd3/2I3iJh?g_6*/7RreBf:2qGSlGQ%pZmhUu62s2i:A^+sG0g)O9J%c[C8F,&7BR3BelK953?p<+8@cISSiXt2YT
  1599. YdeZ@Sul4[PN(V3USHC.7]Zr$\KZ-@88qC%?sl5b^bRt?;.*d.:iOMHckS(K<^fEZM2I=QMbct%!no_Vnd>+5/1j)8Wj\Vc
  1600. @`t%;4akq;7gV%poeYeB%(.M.Fb^Q4k%r!f"kJ_JC;$tq>&=bs)<2.-nI3!s0TQ]Nn*@N1V<)/b6g^l5jeW4V(ZsiGJ1Sa[
  1601. XBQV]*k!7L,WIJcRD5AtO12TbQ`'"E(_7Va^sgcUbM1dlf?\qL5[\P%k_cV6aL1>CiY".e:<gl6\L2l6$!Pq<2IC@flmC5k
  1602. #W2oGeq_Zp>^6V%Z9T@rVhM42\[<PsLpRB2(C078g<L7B_L.7qGB^K$DJlOCjcY&fHZj"4Ui,%V&/Pqe@X2qN14K;tnm(J=
  1603. ^1?cn7>osV(;dT0_%5AW(+i_&G_s&Q;GSqGpKn[Q]R3.M`9Jbd:>V/BD9&7Gie'`O:Rl-4]%#;^e77OJmbE/>U"6#Zn%hLt
  1604. !c?oo*6?9i:s5][TJ=f8^S*VSS0-OuF)-.3R60+T2)Uma;0heAEW2OMgX<MU-cEtlXc<YonFuVL6=Jqt?*I_NMp&bYoB,&V
  1605. _''o:B3\^(03I.ijQQ!mmHYi*'EZp&eub"j\0W_BB5Z[Z,N[H5oh?7W3d^]-7rCSA5Z9nb2,TJ_jZt)mQF%7XhUrCg@[p$U
  1606. Tp:M4JYpCPS8f9k#42i$EFWO`YG\_o@T.\LFnq.%Kt0:Od^EtN?b^IfKK1=!gXF&gnKKnn!!_:?F(WaIl`F<rB)Rt>S*[oZ
  1607. RCD%A4WE$>I/X1K[mc524Zj&Ens/17f<%h>:<CT&aY,i*m!)7Bq+L*VHO#;F`c'`Xog,B<@FA7!I&'bU1!hso#Km(?+1"%$
  1608. W-N)@dMfJ.BNcC_T>?rF`gtlE@m^@3=5,C!Dl>[Flu6rn:3K*!El.ZqX2A!k-Xg?J[LeG]c9Yj"IIiFWB$QqB'0<>3r]9o^
  1609. 553&9Dh:'&"#jmHF<fFebKtQ0FBmhf[&i)1J\&GTCiddbD@#o0W"5X[7bRptg0"Ji&@V8?QSsICJ^unMD;9e(G@,&u5$Lqp
  1610. b^4PHV/8tdMdD%YbPXnukI[DW//1S2f3b.)A&`:<5NW28!M;l*!!hsqW/]GfQCr@cE+i?aeG=hm>I/M9mls]iUA!B]2@/t0
  1611. e-?[F8q6UJmddkY4+XhQ[R!s6T%Xd`(22LT5sM.9K6pE6_[u">Ms"hN<#jS`^H65sVM+V>O^Xs"!N<YA&VQPp^Oa</%&gAD
  1612. qW]RjJ"mJK2gh3YK/[ba6*]U`:hq0Q^lXfnCL\#9V/=O-3,l7iFMmp?Nh1]u%piFuZk7V!c??e1RBj1@=pQtR%(4L?e'W3M
  1613. iH3Vt!sL^>dl&MjY)QO$''SdOQ!NOsR>o:$N5A!W7kd.a%Xsk6UGpRIfZ`&t.E"8X"]B86cd"+'<">V9eDA_73')Nc/kX%<
  1614. K._t%4f"3PgC=m1^%6;"j-W[7dP>LIkthEj.j81(@D@B=GAiP'%eb%Q?\18(+"GFX:>_#S.mbB&9AQ!kKGhA\2.fO4IfT'q
  1615. SaY$9s2#]\37E<cRtOqjGBI-LiT2!YWK(/SP`iR-+$s7Sp0q7X23`hh__.#"1`'l.3t0J`TV]qWUo%WFX[UqDXYbeOBN!3]
  1616. YCes4o<ka0Me?fJcM>(-;j,^%6(.n']f_Uj\^%+qDuA[=82;uu^e">cAR9]I-1tce*4^na8N*i&$i51#gL<Ji()ae/3A!=:
  1617. hr0Gk%F)"VWUrP-:!80t1tNagBO.:%1&iUAMgJ!jooYP-@rl$FZf3+Q&#o0Nf&h]c'o2PFAu?qnLlMlgb_t9m_#!d@;2-d>
  1618. U*<OpQZ2rX399\\>K*JUL(8c:;eg6c^u_WJ`$V?tgKf'.r+%sST"Oge$.^r!#E(E^LB,TM6@Eo7FT,)3aR3dm/T_5'%0^G!
  1619. *+UA6ict4b-P)oCWH8$[nq2Y.\"t@iY$&.pd*J1:6^XR8Bk8^6PSd!lMU$FR@@pE0;4D!(Y%asdooc.8bCWeb7`TGifU6)E
  1620. G,"Ce8rl\?hL>Y9,*iIn[*fs=Zm=!fB;:t'Z8o@qZl3Wf>&=`^BIF?m#TqlpS/=WVo5uG'9(I1<Cl4:6>T(2uBB^&ObeadZ
  1621. nY72+aGcM-I`FFJ37VWn1tOs@9qc`9jR2+K\3,.Ugr?_f]_t@$M=f0I`1?ddT9Acl,#,\e)76r\NA;MYBfg"93EVrZ31`=J
  1622. IqN5,LcAHXh4L%)[P;Z:q!p[W0D@o<$8Y]]d1:`r1/TC<RdddtUNmMiAdu<5W*rh6\/7OQ'"0,F.<TtiPO9C$E=92rc`fNN
  1623. 4lj5m%,-iM*ABF4V+mXdF-)XuM?=X2]=2YdoeGXbmAW[^CViC\cANLU'$)e;B70aV<1+V&dMM#?GnY#=>,-g`ObDFABLQH*
  1624. @S0[=0h=74FnH:&]T"eNM_s$+4L?9Y-I-eC]!7J8,L&OGc+sW'$i9SAiVp!gAoKBJbt:QdM-LYR8)aqM+NI/;6WI0D^L];Q
  1625. [pZ=8cZjjboZ+W?DG**?"%+<-'0pmDd1c0hg:ISZ`j)Du&L&fZ(7RZ5kiZ?nO\55-k.AM6RK`O./ElVdJaW4>od:m.=Xa[)
  1626. &YXciSkIl$c\'f9q>(M[):PZ0F2m+%O/PdWM)E5?;8WkH69Wp(lQ]e_pc9U)G-^)dQ!RQ(mlkuJlQM7p;UT1(dQg$pZ_b%&
  1627. 4*8iVU6S!]NoRr]=9s8W>\lB&7\&(a0+YkPE1)W(T(/8dN+'^_/':!E2e9gI/(Qarljj@Zeq]%T1*XCpmm-^5`ljq)L2Pe\
  1628. #EaIr6sAsf[A9YG\j/J51QFk,+))$<WG(!*,g`b.5.Yt8`mD-=bDiFC&*.RTcHEj`YVn2\cl+,"GJBn&Mo8s=8*&6(X4/]M
  1629. :`g&Zl.#(5#:jPX>.aX94E*HZOk.+](>?%bIu,DbPGto8[*fpNd's]tEV+I_2UtbHgmak73%og9?uabb^J!!KPW@g.>E+G5
  1630. XAs!]e6!g!k:U^p8*T6UXZHk"=4K1;pKSfPFViZI%rj63Ok.*r6@WSLD=.7.nr__V-uB1e)1ttZ!sAK0$oG&=GAiIHmqH^C
  1631. X#aLi@r#O13kN!UQoc7&6]JF7R5]T2Cj9e!oh-sC:h+o=;9pW<&MZjk]8B3V1gK=U2KVlW['grX6(8&3WNqAg!Lf31LK9a.
  1632. -."T+Y'!ua3)Nkd.kN1sJiM)3HH+ZHEJ>c9AU[KUekj+.N_Wf_-IgDm/C[K<:t/H*+>bi33?tHsf]dH/>m$i8GEbY!h*F\;
  1633. J@5jXPaH%3%O0.`o+__Z_#f$t@W\9DjkT*1`AngXZ&t^\e/@TJeQ7tpZR(^0=](Im9>)'UN`tf\X:IbR_^Aj2lF>)AGpS``
  1634. c0`2s\/mgY)\8c,`0,9H4]Q)61MJpaZ(f?<Lg,mP\.T;F[Puf=QK2UoNa'1@^rJfb`kuZ$2>GVHPVpjll:6o[X9ga"#T%5U
  1635. )HK7u^m/]q;mHdk<&\(Ill-hWo=toO)eb^+gC^bHJJP&`TQPg7E+aQoYObXZooXjmPk_X:"+=Pt<1WhEPF[HLCdou7Q;Fna
  1636. Z_E1#O\.;"$XU4n0l;,Sg$,Bbmd"@6dUYAfQaAR4kqM/=V4BlP'hsu\(?i$hh5sDLbDLMA-*CGem'i3?j"dR_L)O].c@RfA
  1637. qA!uYfSVOVNM2+'@+)P/c?!:XkoUNMPFS%F;H\4;j4Z1V)@d;BEi>;2**V&9drdR22KX]_RT21M$K7Wh"$M%6j$I$_8T&-\
  1638. 9LO]Ok@3%g\.19,;B$n,)Y;PqAM[dE[q`$A/"n<_6)8Mh0mfMX'!Gl?X5gX!(R1M-D!Af-_oC^=V*!1i<]AGRd*b26dHX1*
  1639. r?%o`au3G&BVd^3d#Tp.>qM$`9+/&7`2sMTk-`-MhX$kth>h1h)bQWsbSJ:B=AZ'kTh<XN=m58e(`!;:Z+p31o+d5V_l)t9
  1640. :R=GOUeRO7!c80X(n%bF464a\F5YpCSYluQcrZ[^PjaCeL^FO^EF7ob7rY?5+Y^[(.Vk?".3C^]5g@o9.fIAg3V0MQ_dek=
  1641. m6+^&p+f,6raWAV.c!B`HHOTXXHJu41fr)O*-<WWHliH=q/#`_^"\][_Qfcsc^FG1n#Y)p3O9$t*a>;'9&ndg-b(9Op4W"h
  1642. OLfMjZ't88dUYAVmP(euEbP.Gdqte.:Ifl/"St@,TuFF$2?tde/C<QqNpYSh\cI]+F"o;#5G@r`\[,0PEoau37ZK&ue+sWO
  1643. ?\,!B2eUH@kjBH.[Os!RpYbQG/^d78d#p;gL*k9ucG(/cEY"#6&_aH)6:EELT`r$dpqbaEUig*shX1d7c$g=d]3c/@[Cq=9
  1644. //&f>?nDgFPQ!b2L74_&[aZrU@f;VZU9`5bl&!$5fQ*p6LK`-P"9!T,Hk+M<7FUD7^"qKN%.reiU?jJt,=;<o]$6"^VU"(#
  1645. S0`1+0q0:)YU.eN1`dn@bpuoF:``rd<if"dhc!F,OhNQ,41pW'`c]<YTH,`0W2C)!RKJnn-P%PB@%aPmp7s(;?*VT]M?=7_
  1646. Q+t/q6(P>GcH_N:O\m'niQ-^(LeuPs*^2mKZ(&0<*ed/ZND.,RMqT32C1m^o"k&gF6(3-)-dZTsX3CYM.ha.U&EomCgGd*+
  1647. #JlF1*\HRtrW%sWABn6"Ir65^C8j$Q7T@Q@d8L"k2=YB@--$s.\d*/:jcFS>]"oU;c##Q/TUe,J86\IAVF.=r]"+T\!DDCr
  1648. _=!VDj!?^"nS:JiEQ>nQK,tPl3ZF;0a:`<O=tWNa)U$$@M0ImX(l39:9lii)kUfmH=a(]UH90Cgc?a3fd(5+3blLJrXjR-.
  1649. k*e%2FNgaMmj5,=*8Ek/ERs.9"BcTK[2Nd,r?@HFR`=ocm/lV4o$o#6B3T_;`c4$:n71[B^LQ*iI*e2)3pGlpj'goE5QCLG
  1650. >RJN,H<SXX5d+K(/"t.&=r_?%<;%9pC`6qJ@lB@D8PMQtbaJY"@:31o7f(>_c@N7TA3"2V_+K#Gd":)<TJ^Frd%mC=F-*6f
  1651. p=MXnKejS0kcd<S$0TNaiZJDAk:BX4Z@8V#`qiN-nS"GXa(qm=HK[X=^#rdG@pAEk`'(Dkk.?7Q%G;>O;eR+_ZUd`_l1#+q
  1652. (37ZNS*524_nBoHeHbi15^VE]#WiN"*;$aFFOo&u-*dq`:G#,<2,25GXG8X\fgY#1QXGS=QUB1AibHPQ48qdtlDB2<$Ya[D
  1653. V%E?DQYO^%Z>#uR9#qeR'XZ_"b%urO`-*>!G93s&TgUq)p[H;%.t+WAC>E<(dXOMqX,9rH".$g<.nqB%kGBb\VCS?<*"JP,
  1654. Pf_!5Xcle$)Tm]6LG[G[@Q*['Y,K+j9pS/p*TZ.?^*Z!KBKPA6MpbOV`n-s<@3O;l_c#-8\\=e_a(EtEO?h9[OR/WC5oZAm
  1655. _i,fH[4;-,.]ns@DXg8nf-Fnn/NqnubMhLa8U()VK/PX.K1T/PRnoC=bt(r(!f^DG^,VMO$Pq#KbWcc]KN]jB-kEW&,E\#B
  1656. ZKo<rZYdB#\/^C^Tj&!+R*b];:h^DE$:fEsc5o3SCJ-2b1tgSSMo3cl$<`6<:eRWVH*BicTTK^iS$];jm**F$3'--36RulW
  1657. D9!G%/_bBG(!ST@*#3X&4B#:b/ST&M%J1&EBN?*bc4X_&AYZY<R]gFB4es[s*>BQ]RWIs$/r-oqh-h_r574d#U;c9)ND&5e
  1658. K/ooNiBc>-U%st805,-694^/MdcuF_Pm:G&+k!Ub=R*Y1?1R]`MY`X1+cGcMPk6%!g9dUMjr!AtWNR`(T"Jrps&.WmO?g.;
  1659. O;8)1&F,d``/LIh2Fsn1+\$do&te+'%I&..E&iTRZrqU?YD-Ba[%sGrh5iVE'9,ZDOhC;qOhj4S()R*)(5J<aSM)p^Um:MD
  1660. OiG)AgX9YAd@5@JYA.mc2L6=Nd^2+*i(uKBGI/:ZEq[qu]k)aQY(c022a&_1k($1umEo]dNE,k"DN532[a^<'Tt*Fh`F8!^
  1661. oDDNJZC@qk[ISk@ODOI:8Ge.C8^&_6X1a0jBsg#r2gCrn8^!Xk.pC]_.F!F5kY&<p"dt3_6@?1+j46t.$+5A.k5;-sE?oBA
  1662. BpV8m_crb%F6M]\NrBu]8p?YhoR@6^;UM:#-?&O#S3M9I-ZqT=m2!7b#27@*U+EQ-9'aVe=V$e2oZWrQFbLiBeAgnQ.N2K;
  1663. 7rIkQ+kbd6?4H:tL&7<*lZUZJ7J"cDCS\GITjlpQNDZphF.N3WRE?RS=:)t+&=aai)m.A]FmC2?qNW/;NX%/m5nU=@QI`iP
  1664. )@jYVGPq#5Oq"!g8P^Y\[a'24h<+-,^Eh&)LYo=mXso($0EUulZep0/a00H5elG*Bc8Nm+2UZ&[n<':s'+S33/mB4,H.RW4
  1665. F'&4Y-6GGMI(Eep^L8i+Zu'kHI5j7<J)sr.JR+b?="]-=h5m##`'?tQj#NW(V%#<,7iDjJ@6&]KGBg>3DC[9ACZu]pmuAjb
  1666. Ud#B'PKfZF*5aokFle>3?n'%-*?9LBJd7!WTVVg/E4-E\a';eT*[K1DQR8n/_fFu')&U):l^l"lS$-/5C!n#^2L(7Ym@?s1
  1667. GIlqHH2VLLl,.kVXq)'8FG$EO]FOm'ZK:!HXY5_!453<lejK.g#Mn@`F`mG2UVe+VQ#<LTiL`ni3;mn#dm2YF#<i!&LJ@CN
  1668. 3%FQALS[i#gSoai(Pgl#c;lm4dV>RbI.99LdVLoPNf;<*0<;eA1H]['fH$!5_OX8f386=2B?')D2_j*/\[F%R,<dlM/VPb&
  1669. h][>[1!ij<rY'`sV01lCNO5u2L;g%J<k@o!br_!Ya"5^,%MNR4IAG/3bs@Ck*o4AP]b<?P.C!=:;CDp[Uc;&=s26lqOOcj(
  1670. gYn:Vd!,:hfLf5:`PZZC*C$0&GM)pqR/RTXJ[TBTT<m[ieonJ72UQ<,qi[dPgtPs9g;I-g/@-+c^FY;MH?_u(G]YrNjFph&
  1671. ]gpDa@JIdSa3OE"p<k.miE!LqZTSQ-E7]O&bgF,6M'b`HYS=*a4*j^O$+-ipS1tt]SOAq$iN_K`TnbjMV+XQ?FU['@QiAAf
  1672. Tg*./(hjsGjo;Uo[+Wh62@$tWIq,.HksPhqUA[4jW_;;Xl'fLFd*A1&8]r=&08F'gSQ,fJiR^QKmSI4?S^MEdV:)7$4O@ha
  1673. OB4tUF,X@V_sa<NZAI_16Ba[h386.IQqCRQ>$DJV.il)VpBWbfL[KEej%n1mpoW*4*VOt]C,OeAbb;Gr3I\"ea!VtD&'[BM
  1674. ^Q7GnNPeJtku&o;["?4`gEDb8K/Q,$Z5hk^V.;*iBdYnLQb7uanI)J^Og]9g/;6];#VXuliV1VlA.q[D+I+U6NWO&fbf3Q7
  1675. (hmhI,VPIHXn:n3beirI(@i(Zq:-YgHPYB(R"huqfs3X;8Snt.b<kd:>t]Tk@:mAkZABn]ORc&</C;`//<_t[g:5&\\moHi
  1676. WqE?1(k1H/+FEokr]AikR72GEd[&00d'BJZRtJH95Bui&*.Ffg?PTfpfGoXZSMAL?EOM06,HWPQg'\sD/+)a@)?koTa5J_"
  1677. be_L&`f136m6mDX])XF#3@nM-++qK"j)Fc6($atbDPHrn3OGVZ)X-EGo?n,[iu<`T[!*'A%'RRdE1<3om3?I@/_nr=ct4rd
  1678. iSeu$3W'BX2Jf*^Q9l6u)<[@MaDR/6M]32EE_*Xe1M=s4%`;("9+SqB,!?BL#L56B/0p#.c)6fDn%#c:MOS9f.?n^11bL$F
  1679. QhYP+/W6uU.rB;DDXf)Igj1B82Q%>Z-9C`KTueB)aUc/JS*4PiqFg[)-7rL5q5q%%0V!$Wc2V<G(29>He67><os%PK(7.@n
  1680. M3]33Rr>#Q!c>t/Tlpu]>RlbL_%+@m[O?piVTYYcdWX&"CZEYTc=VR[W;PH[3W._H,<brOc/EUjFPs6e2NP5e<gl)Y-bn&$
  1681. ,)>-ghhM/``Lfcgb<mIj3BCfR5`:+N6\"u=Pa+XcLLiUG2I-ZfkA2V2V=+*jlOGl_:P6Q(ZB]lLnJAj(dSljj*b=DLneZM2
  1682. a<hf8^XM-1Rl,u_iO@:u0Qkr<9;1aaj(7p'/J%jrd;TqOr#BUNl#N_L_1R[<k94^,X:)DD[j+NhDPGGtLVrTE(&f9@G??Lo
  1683. X#Z\24-=]nmsr;pT9.T[R0CXP<Z7;l4?DPIGkuUoR7TK8k3fEs(';aq5Nl20W">:^gdE57a@ohZij7;0KtAcma6*G>f,Z[)
  1684. Rcig)%`<9:D>_:L0%0UeR%C[AZ_TRfG8?'c6@.o.3W/SmS+i6)$[3)M_pV\PQ9soL6\!>NZMN<p3"4+c`iV(%%YYppBmE7F
  1685. mATimb++1F&GL?i.E"r&EAfiT2JE["dE;&=LXSd%-#M'NjL=*PQ,`Q$^iK5,7q/9:l_.0ZTJj7pm\N$FiiK88>bF<-&-&.%
  1686. hbA*4YOT*ZP*c*;2i!C!K1J)h%e:6=(iH1NcUm#,+Y=3TBrSN.*_'dPECet]ENU3=d:'<sm_5@VG[>(VQt;;Y3uiu&AJLNK
  1687. E[\TH6@%=ZluZ:ZdQG#*-FpH\*9u+8CcR/m;d?IU0?d%?_f,73^Z@*Vc(TEoWBmT54LF>Wmp"dYdbnOnCo%Z7C5/M$8]+bu
  1688. %?ZrJ9;tWTI>lD'1sca\iMa!Ve7$utj5IKBG;J-FroVLdq+I$9Q9^?I4Mr8,DV>-7@4QaB5)hE!/pmoP:8tW+=?.l^+[(Ah
  1689. %J4UX.kHB92TbrOeB&(jWmTu8D06Q<QaHTQMq&+Oq+'E-OM2,&6U&qGGt=a/7]g;]3qFkq''KkjHgK^in7[8?_J8Vs'UHM!
  1690. r>[<@+gdr=L#:9mn$@gEfj.M3fT&$U6_q]M4'G20=S$a$33*4b59h".h9<sJp;ZB\h'oVWG>hWB''g&7D=T&IUc[]k,k&(\
  1691. .QgaY$/\>OOI_Vj^#EHK%th5SD.YBT7sUcQR4f'D.L/&k%%]\_lVd,T_CY7q$@Ks&hAih.It-G(ZCSA841p1j2Jh2jLc_l[
  1692. caZN89?X:DfXb8jB"9]6kauiBNB":Xl\:4'Di<asZ5.o*d)HNdg)Y(&\/],L_\5\i8:U-6jP6t?dX#[";'-s((5d_Kq?%XL
  1693. 4DDaJCg7=h+.qkfA(n[LZr?tP[%Z`V8q6`M>^,+,H;-^qhN:b"8YjJ-_mK)5XD+6t'WH6!U9dnIg.J<6&?P?Cq,9fSn>$Z#
  1694. M<:7Z]s1E52l$qVmA5M`:CULo%e[aQ482hAcA#s_%piE]C3s^_Xr=Y'=Y('^%!S!6GB,'ji1&cA"#Rd[@&oup47HPNTkfiI
  1695. o1Mk<GL/lr-\o*rk,9l9q)`S92L":Yp'QB=BKf^jT:*&EPeP2pclDoV#Q=H?$!OVQikZf&%f.gULq(sj#HF"Z^S@=f=?BTq
  1696. :>1q9Jh>i\B,7&CT`7kPn+fHq]V>V@lG2i;\-VpPHdWleoC&s9s-^W3BKKqucIU@^P,90\[6%V/_/d&'@ogEC)X2U0T=p"a
  1697. 4T>!QK!Z;.Kj&,+3m-9.a2_>)<f7'hG4.S@I#eL.BL14hFg)Q4Em^=Cs3<s93Lp&-dSumIVf2jBPVbIS#?_O(+ua>_.3XgS
  1698. :;b8?LBD6<eEVI!S^m>Tj%4AbTM'=6DMS]E9;-BL%\&?!#!I[tYY5_!FU(!N=?ou11.I_&L0$OEoIm`_4>CP;I;%,rf\F.s
  1699. B!jN2B;M9O$RS!Ib>,'AOHge+(8.0/N,Oa>KQd::fr74EX!-j?mVI+ndWfA<rque.dQBC*/]6^hrgh,Hilmt6T:I8hB<1G/
  1700. G;&p&\/%,\Ft@LqC]gfAL<9^]T&=V>g]d%$]Fa>)G5dX?./inO.n^5t12;a+RH;_)#L+k^`\'s4h?8CA-e2Kf2UU68WkN'A
  1701. *_q&qB7E/k$+)RsDupPnN]%\4G%Tt@Q1^KH%`!B]00H%:9?SGpUpe6CmjBe.Sa!PdfVO4<N=K4,<*sp$SL'_q<0s,-eEZZG
  1702. 7VGG/)7AEeguG:<Xe&)tcReGs"Hh!P00OT`XU!EE[60CL9=:EN`THS3@2>EUF\Z(Z^e38.G4&mTIMN&Ia@A<b[.0)_cNS0Y
  1703. QJ?!8d%mK%##@BBllo5ao[_jq.r$_Zi)RrA4s<u-<Yn/HmidFS;=i@j\*ikfXtfNf<q[Kf6AUtAHAL/mlaTbqZ%)LK%(,1A
  1704. iFK.aUq2::<B5SqrcPU0ha^>1-.'N;iu?c&g;s)Mhk904?cB1'e'^*-Fpfrs.pO]l84u:O>3iHdUYP7o6tRaj]JD-Q.#tQ`
  1705. Xql1LRoT)Crbj2t0/fE.nLNnpM@A2kdWQjdrj"PkYSo"ITgbDU%u4E\&?k(b/pV+W/YP)Af'XY7bFR>*$?=*@f\=]SBVPab
  1706. GZNW:?I5=EMM%KmUb.=NYX<*,Ut)g"ZUdT)bfi4P<Hk^C&$HN<QsQ^sOoC>`rG\?s=``5mo5C)'`m!`D+5%CqR55O6?JDTc
  1707. j'l<E_;*7odB!$M;]*gR3b@NS9$<b#k-0C8[X,)u>RopJ^e!MYi<m^"i<Db!a<c?sl+\Uo(=\Z&l@!3eo[94\o94rRa]2(T
  1708. :R2cZCV)m*(X1hjR.+DC]]Z0=<o#K!C#P2[5`="eC8c:\/r-sS_aoQb92*[b?X@ffNF$Gs.7eq^Ug``.f*=f?XYjns2g<H[
  1709. WlceI<uY\b!R;d>o2Bs\jL4Y;jnj,I'A%qHTQ+m/j&PV;rpmBRo$A_GSr0o)g!C^:BWaFG`%F.TO^9(H].#6@b2^>RH=^9#
  1710. V04>jeH\mp>P$Leq,^F]B3&c"3@i]]+7-[]!K&*TCK#'1EXXe<FO6)E-^Y^DV;7i3G"O>M8:<BdctZ.%:Uuc,7bSfb9UiVg
  1711. &2.hTff+;B8q0,#*ku1WJY=u"/(QInmAA2TbV[Vhq%ohcM"Al"]UJ2Dd_[$(GVrWB%((%,XRC-D4U('68a@EBFgcs8h=384
  1712. j<;2lD0U/#H;8J5WQ(7)rPLQAn#Om/&nruJN1.*8YU/n/TM1c]3"tIN<Tj7C2i%:6[PXR*/'^^^M@QOcP@YO\ACn]p[Onk'
  1713. U`E:t+!;*$$sHdC%?[6kOBaG]rMFFW,o&:3X^1lMj/V`!^\F$([6RHf'l9YSG/M'Caum!Gk>-TtM<[2edbiU/<)ZYW[r'T?
  1714. Eg>+-o*g1Nf0ZC^&nu,r_n?N)`jLn`k"8gfBGk-qe'5ch-k%bESU[T<p3^*=!0tR;a2agVU8CXZW"%=j[VjabJhgoWG%UFF
  1715. aiCpKT[!YqD<G]8%cu_^W5F474l#PlS*EG_F;:oEb?%&HBiAfh4gcXm&$uICkmf#fjC6<kd>;R!$]c:2CMkNJpDuJCqq_!d
  1716. 8Q8#nTOui6[XA'W6.RhBEQ2SZrHI.Jo&q-7DJu[>I\^pq>%2S5]f\%X[!3<K1MF*cs4O$eXnC?;3uOS`Ta`<M?7qL2g>+h5
  1717. 1bpsLA,!^clM:l:%4gGU-dP$rl@Xh[ULr(>[aA=X]RihB2.dWeT7$jfc^m7PFV()se5r")gRXHH)]9RPmB-XsCC[&4XeC#S
  1718. P>jU];eKlZ[6*m+P3S=dI=kS'M;+9*VtfH^7JcG)a3UugePHooSMeCK\G9RBrDoht0k6`YStA/pE*%$CEO9sdk,,XG.t`6"
  1719. l`/FW6CM/&9EHf4SfTch"No3aJMr-]\q=6>Q#&QjMs%[idk>rG<;`&`h#1eP\psLpXZI&dW*-(leBF@q/):!sX^]M=ouo8<
  1720. :sT[?gq#5q:RoW%k@SRfO'3:bkIJMG[WZ3)+hQ%!'Nu=;kEiVrecK[ibq4_3$G^T)`U[->4FCF$b'"ubgt("71c@(6+6iqp
  1721. %8G*Gag+I=))eZM)9%se;e>0)L&'a>1!WQ9hOg;T)sZa(CF7?];\IZ8040IQJ_*C=JQA+(F(f9`Fja3b(*9M?V]jE'G@q-)
  1722. ,)tpIJjg_E!ML+QM5f8$5e?B2ld]d'UZ5Gu(i&CJQ!1C=fSnQEoYu@lPW@le5/9-fD2aMc?G"p;^(-\)[\kHA7t_*AGV!$k
  1723. >ehB_D$p5A!EpRZ^%>:&`<Y\!NQn.^F!WD+)V.7lf>UC2"'7n1J9:5YUXcbHQTKKtYWhJ>KVmn1H#(>Fg5<@WkY8f8aIG$+
  1724. %.3u^51[_=:WMRog?PGpkL@G;a;'9?9,G4Oi(D&qR]gB*g<^iUdLNDP&$g.4LXnojc*uiZ?b"&'2i($AQWBYk][Yfo2ag"2
  1725. kQsb=Z"DR;NS9&TGmj3_7L[:e9U.?V*:o@a,gJc*h<gOIcW$/F1ZolfcQrt^c[h?X%(%=fF(nioir]_8[a;*;kRJ-td^U?-
  1726. 9uDQRUf4R>M@N^XDJ3qTm"J839\r^H5@h%=>V"I*9t1r.hl+8R(l]9k^\sCNq*Tl3hW+gX\[SoQ\`%YLiM)jD']KN/+Vlo;
  1727. KXcf7HTSJmm%A3ks3)0]G$"(Abad?i-pVS(5pD<MJMliWmY0*:$!T0/(E>P\U9<bOQ0uB&Odig.p"SrLpHDL(>Vg3C-JZOD
  1728. 2nu6.@&tKG1,?WEhRd])k$'c7#5c!8>]-Q'EU7)Lm`[6hdHKrYmY1n)`PD_H2MV:7XG5<SB%1oRJD$;N9*-\3PO;h@-KQst
  1729. %P3E03du.icFs*JX(op<[s%E9%ujJ%=;G&@1"Rm5iC7`He<\C`#dK8G=_;)s-'0mC%e]R<Zo4PYW@H`=GA"qXGifDBiLF&H
  1730. 3*;i]k0Tbq+t](g_6t9MBiJ_/ckau#G<hsD4f$LY<&ui[C.!$qp,tj"b"pNY]@b\+W$`q\_QjHP7dCRuYaICg;fH?oF9sW6
  1731. ;e$a-%uBe_-a3a1SX^hHSS]1heXe0R<4$:b>4REHLf!C'6Cl4j8-;SU_\-,hBjR6K:OU//coI$/+[R\*9tCEc*je%Arq%ep
  1732. HD#@fB_^<S8L^(>o(SJOSuQ_?e986tIrOJgq!C0;*\cpS+P7sm6lWWB\:3qr5A.ud$rMJ7.6k=dkP"\1Ohq$gX)42ll;(EG
  1733. ma'dUR?Fq+D0T_:3l?^4Xe3n7`IV5'V)`3XbFk\o2FpW/g4WUJQ9t3!TgTgB")AgNTr1&%"%'k*a2DnJ:`#E;XZDHkSNVDQ
  1734. LW=:-0^GVNRqMm_GQ[^g`*=2Nn"6<C`ubn'MYr\f:YZp/^>9*/#3OB77nX14cC<g'<elA3pj,7kUGET@.h3lP>'$&s)l/JC
  1735. Nj0%SF5UkbAs$]k+YUN>WR%m.'bO:SlAQao70h"rT<:D&Z*g@-(Lg+@mmCFqCsYXhn-3huXpog]55tWrK/#fDo\_o5L+r@F
  1736. FgPI;=+C'kftjE<*>oFOW/)2)bC#U.iLSXoW!:rU4WWc?gL<es@:3]mG0kW48PKl_GmbB?p@.b`>eXrqoS2GVD*.@_*A"6P
  1737. <S,lN\\5?Hg&P<;hjQt"LSt[;kRHGm:?DYS,m0cd(PRDWN?9A8jK3E$*k9eWfm^KBZ0kRkfti)^41D%5Dhq`5C3cJE\&[K^
  1738. YR[B`.;1H_%\OPN>A>ogKZRoRB'O1>X[ZKUT"f4Ve-CXfHu2Q)nlDD9.OhJZ;,_u4646uk?QUKE[jUX=2K1m0K&Ft*SBO(]
  1739. ^[N*@Ie">3dJ3.jD1Xll]cWMD/tAuG3DiXW;?Y3JPN-0(L-qK)2ARm7Dfhk-2M\`'7VXGk]A]>QAJUg35]b:eGL6$PA\'"Y
  1740. oUE1!cZO5]qLDCtXGhsm9h8%(gp*bbs5C8`P@kfZ?+A\@EOCR0O5@B,5&kpio$6'<!"S!!+5o?%+WnO5*WY]C]6>SLDbl>L
  1741. ]J3$?H`hP!?+t9\iQTEDZGZPIp?]jo9hpM(MHC_tEJE1dFdY=<esjVR<TZsWXY^7n/Oinsbu6.L;]kNYbaf3i6DR1u.+5?o
  1742. !,3kHKo=bMIJa26LIJ;(NSg+d^3t33d=EO_W_V-p2kIe:!nc>BI08)VL.=_Rd/2CrgIMfqQO\HM]XMh86K,2sOl<#""+@l=
  1743. JD>28Ht.TLaf8i@%M\$lhO^=E0g9bt7+h&qIihI1W"#(Ri!fJl`L.Eq(ha5_6g:RZlQ<2lZ&,e9Zr.s81oV!e\&BCp8A-cf
  1744. 9lsY"k,k')3I?Yo*%n:j5'7(603i7/n$q*%e(`J=E.&;57n-"h`brTI`5)u(`^WHg!-n#05_!-Z:Y4-Wp=;kQ!;Xj<lADmb
  1745. #E&6;A7of9S/<'U-=S8VH[./cF!\613@i'W"`5P;UNVH1Ga.ot$8Z`]"Iau*,>H=5p@O<qB4?9#l6V*EAAtS!;6fX_BY?L:
  1746. TXa&R=iKop273mQ:!FJ-\$fT,ke,X"h:$`<>$kWdJ,]Khpo(Cbg9oe/m]NU]*EUru04/O5C2BiN3I/93lps]f61/Vi:5Y*l
  1747. >.nZ>#[q%+R'AP]^-72CZVhcHTQt3RU_RU(>&I'S))*';Zbb;pbt"4h-:NofL8H<ISj%T(_95o7Y?;[R+_akiHIe,4Gm4'T
  1748. *%D-Z';oS[ld%IIS\K.6dcHeGf!b;Gp++;$a).r\/XJ+r]PtTanSEVjc)D@a>^GVL^4O#R40m:52^N<s?+2/.jmq=059E\<
  1749. %.-aJN:e__F+KWB9;S1V3um\!1hOSW!h(VMV*.Y$#-Ndioj[Zl?G?Di_4`Bs=%C6J-#DA,R_CA#f:KX,UAZBn9?YI.X/\sc
  1750. 3aGZg='+9up2"5Kj#J+Sn(G#VolYDb25a6@W33-O0.T1jZG3=\DpPTQD<\$h2^ZJ^7'-r+)&aLYn*@C2IBgp'X5FEKquc5c
  1751. 'o+ZR6(4_NMa*glpg4;:@+IF*Tin0_H#V38d&*\ioB%].\-QR2mHY:n?Ekth%:I4(-#Z@LceQ6E=&*(N5uI0'P!b"c*%a6q
  1752. XLt:%ZEf?_AS";!q6=F@7unWR<-"YAW$";XB@i12RH^\TP*=l+Gtl5W'p*!V?Z-5AU4j!;c_J^kSR2u!YrK,Qcp:=#9rQUI
  1753. P?#Zm8F;7VbXQ4d=t:+-NI)0ne<G:)4H)."0D4o+>8@Ls@1fQlY)?F)T=AmiQIN;6bcL.O]6<B(akN;W?Vjj(<4%\rHrO40
  1754. T>*=':X8B640l1Je'h4(Ctb6n^HQ8cg=6dDJ/l)Ccc9fM-tAX<RjkZVB=?]jc<?kuBW8@l>&I'S3A;?=3E9\-=U(ur=t^>Y
  1755. k,E!%XBcUO/mPd9*J+aQ!C7m&/&T4Kf)U#2gkLL#NQI[!Unhm&9@(]#bhTWYMpAbJR@+p1l"O@#;mpL;hO'\7+YFOdf0k@K
  1756. XUGXF$34UmZMWWM$XFRY@$kTsbd<s1B/S%VBY?5uD.2gRr_aRrZeei9(*fqQPPS,PK<rR&07[F4p/3P^?U+R@^u1=$'e<@>
  1757. 7f[e`]',O6ol4sjio:[b&eaHE8+H*gio8P0`^I"g!oSn(<@_.(L'._cq"sl56]qK'c#j'3ZDt"5#,r'W=Vk`d=s>Pr#41T;
  1758. s.sV_kLVFeB/S%^BUptoC78mr[:VRg?n\>0SmL8;^Ac:W!eZ(lQA5Ne=P0YCn;)mV8=\5kJ)ObniN'i4J2_Rq88qC5^bUCH
  1759. +)`f.C:oWNcde77bV[S?Sb:8tBJ%Y+g.8?Pf#A2dN9"tciC<WX7V;bU+O*iK!o^40[]5>B9>I$IqtU$`q#bq.5[[u-O>cS]
  1760. ptRWSIm6/)*s)kf99<75VT>8_.h.NlkU]'DV)`:3m&:KpS=6b)9V'_ri1O(a&o+#,`0sdqLJVfaNSNG$nTJ+>i_/(_4ZlO]
  1761. `_.9K-eN`i\@XBphaMDo@Lu"<Ak\>\0o.Rm1WN2KX?#n!>'DZ7"1;P8'aA5:Bf9>GNV5dTAtu[4Xd:B.-IeKlMTrL72gQ_D
  1762. 4;T8M!9au8#eE"j.C]P!#@<aB#`QWRQl2sGS2+MRi[d-Kcr+S<>-o'bNg>XrOkeEdapKrnX?l0J<GI\3&o1sY@DA[Y'5n#G
  1763. 7EE:be`S-h0][;"j(uRoMZBNV6MqaW9U&,9Pr(:/]e]mF8upIS[0?8'kGuII9cK4_G8?lLRY=qAVUc_Fd8mcn)o+`Za9ao+
  1764. j3/-kIe$3bMnIsU^`]]i'4VN?.Vm6ZcGWij/P$h[7;U+0?2(N@LANa+ZGOhUp!A;t6HuTWClKCI!?B(@*6fooR@2bWT;$Os
  1765. 6$^9_JO*Ba(6P#j_CR_eTbV:,R^^jVbJp6W3aWOjrMh?RkY.[mdY+'u<j5Gjj$mr2:<aBAb\OL]DL@`6&mlj,&YlU_/1;0D
  1766. ]eb;l95E%/295+"h/pACQl!80^B]HqETWso[#USW'5U[<E2,?,VrgZYPrF_L42!_(.!_,F'k5^\+;8<L1NaJ,'krYrZSlJi
  1767. Ar<nZ]HGGM\P^'ceX8]ZBqCbs;f#3uE&2G_cHJ.ib>I`O*rC@#Qk=DZ'U^EYbfj4D<i%fk&_dW$ds8bh?PhiDg?>)MdY]p"
  1768. B%iJR!GCCA\j10lr*@jn^Vg.'`6=SlIn0=C6t_ppBW]l5,GgS&?UB''@D8n:Dt*?mD:EK,OZ$=Bg8_V3Y+b1FX[[Pgp-e1e
  1769. X'\U"qDr35=b@Kgp"0Ie)8FWT4>iUHki\H5I#FI1[J@6hlAqukoAk4Ba.mtcrlMQ$aaG8dGK53^_G=\:=j9c,^G1+-1>gU-
  1770. \&<PhQu<B(*HAeDT>.ZNPK2pZ?2W.1\#&tn%6p'S8%7WC,F[E@Hjnm?Rr92-7EKp]2W+=X8,>)Rhi-WC2Z*%2=Is<P^8QK+
  1771. h_-poT9(-DbO^bM(Ua7.m=&GSVT(HPZ2QZK`X^r8(qX_.HG348ru&lKrrLV!k[=~>
  1772. U
  1773. PSL_cliprestore
  1774. 25 W
  1775. 8 W
  1776. N 0 0 M 0 -83 D S
  1777. N 0 3900 M 0 83 D S
  1778. N 1300 0 M 0 -83 D S
  1779. N 1300 3900 M 0 83 D S
  1780. N 2600 0 M 0 -83 D S
  1781. N 2600 3900 M 0 83 D S
  1782. N 3900 0 M 0 -83 D S
  1783. N 3900 3900 M 0 83 D S
  1784. N 5200 0 M 0 -83 D S
  1785. N 5200 3900 M 0 83 D S
  1786. N 6500 0 M 0 -83 D S
  1787. N 6500 3900 M 0 83 D S
  1788. N 7800 0 M 0 -83 D S
  1789. N 7800 3900 M 0 83 D S
  1790. N 7800 650 M 83 0 D S
  1791. N 0 650 M -83 0 D S
  1792. N 7800 650 M 83 0 D S
  1793. N 0 650 M -83 0 D S
  1794. N 7800 1950 M 83 0 D S
  1795. N 0 1950 M -83 0 D S
  1796. N 7800 1950 M 83 0 D S
  1797. N 0 1950 M -83 0 D S
  1798. N 7800 3250 M 83 0 D S
  1799. N 0 3250 M -83 0 D S
  1800. N 7800 3250 M 83 0 D S
  1801. N 0 3250 M -83 0 D S
  1802. 83 W
  1803. N -42 0 M 0 325 D S
  1804. N 7842 0 M 0 325 D S
  1805. 1 A
  1806. N -42 325 M 0 325 D S
  1807. N 7842 325 M 0 325 D S
  1808. 0 A
  1809. N -42 650 M 0 325 D S
  1810. N 7842 650 M 0 325 D S
  1811. 1 A
  1812. N -42 975 M 0 325 D S
  1813. N 7842 975 M 0 325 D S
  1814. 0 A
  1815. N -42 1300 M 0 325 D S
  1816. N 7842 1300 M 0 325 D S
  1817. 1 A
  1818. N -42 1625 M 0 325 D S
  1819. N 7842 1625 M 0 325 D S
  1820. 0 A
  1821. N -42 1950 M 0 325 D S
  1822. N 7842 1950 M 0 325 D S
  1823. 1 A
  1824. N -42 2275 M 0 325 D S
  1825. N 7842 2275 M 0 325 D S
  1826. 0 A
  1827. N -42 2600 M 0 325 D S
  1828. N 7842 2600 M 0 325 D S
  1829. 1 A
  1830. N -42 2925 M 0 325 D S
  1831. N 7842 2925 M 0 325 D S
  1832. 0 A
  1833. N -42 3250 M 0 325 D S
  1834. N 7842 3250 M 0 325 D S
  1835. 1 A
  1836. N -42 3575 M 0 325 D S
  1837. N 7842 3575 M 0 325 D S
  1838. 0 A
  1839. N 0 -42 M 325 0 D S
  1840. N 0 3942 M 325 0 D S
  1841. 1 A
  1842. N 325 -42 M 325 0 D S
  1843. N 325 3942 M 325 0 D S
  1844. 0 A
  1845. N 650 -42 M 325 0 D S
  1846. N 650 3942 M 325 0 D S
  1847. 1 A
  1848. N 975 -42 M 325 0 D S
  1849. N 975 3942 M 325 0 D S
  1850. 0 A
  1851. N 1300 -42 M 325 0 D S
  1852. N 1300 3942 M 325 0 D S
  1853. 1 A
  1854. N 1625 -42 M 325 0 D S
  1855. N 1625 3942 M 325 0 D S
  1856. 0 A
  1857. N 1950 -42 M 325 0 D S
  1858. N 1950 3942 M 325 0 D S
  1859. 1 A
  1860. N 2275 -42 M 325 0 D S
  1861. N 2275 3942 M 325 0 D S
  1862. 0 A
  1863. N 2600 -42 M 325 0 D S
  1864. N 2600 3942 M 325 0 D S
  1865. 1 A
  1866. N 2925 -42 M 325 0 D S
  1867. N 2925 3942 M 325 0 D S
  1868. 0 A
  1869. N 3250 -42 M 325 0 D S
  1870. N 3250 3942 M 325 0 D S
  1871. 1 A
  1872. N 3575 -42 M 325 0 D S
  1873. N 3575 3942 M 325 0 D S
  1874. 0 A
  1875. N 3900 -42 M 325 0 D S
  1876. N 3900 3942 M 325 0 D S
  1877. 1 A
  1878. N 4225 -42 M 325 0 D S
  1879. N 4225 3942 M 325 0 D S
  1880. 0 A
  1881. N 4550 -42 M 325 0 D S
  1882. N 4550 3942 M 325 0 D S
  1883. 1 A
  1884. N 4875 -42 M 325 0 D S
  1885. N 4875 3942 M 325 0 D S
  1886. 0 A
  1887. N 5200 -42 M 325 0 D S
  1888. N 5200 3942 M 325 0 D S
  1889. 1 A
  1890. N 5525 -42 M 325 0 D S
  1891. N 5525 3942 M 325 0 D S
  1892. 0 A
  1893. N 5850 -42 M 325 0 D S
  1894. N 5850 3942 M 325 0 D S
  1895. 1 A
  1896. N 6175 -42 M 325 0 D S
  1897. N 6175 3942 M 325 0 D S
  1898. 0 A
  1899. N 6500 -42 M 325 0 D S
  1900. N 6500 3942 M 325 0 D S
  1901. 1 A
  1902. N 6825 -42 M 325 0 D S
  1903. N 6825 3942 M 325 0 D S
  1904. 0 A
  1905. N 7150 -42 M 325 0 D S
  1906. N 7150 3942 M 325 0 D S
  1907. 1 A
  1908. N 7475 -42 M 325 0 D S
  1909. N 7475 3942 M 325 0 D S
  1910. 0 A
  1911. 8 W
  1912. N -83 0 M 7966 0 D S
  1913. N -83 -83 M 7966 0 D S
  1914. N 7800 -83 M 0 4066 D S
  1915. N 7883 -83 M 0 4066 D S
  1916. N 7883 3900 M -7966 0 D S
  1917. N 7883 3983 M -7966 0 D S
  1918. N 0 3983 M 0 -4066 D S
  1919. N -83 3983 M 0 -4066 D S
  1920. /PSL_H_y 400 PSL_font_encode 0 get 0 eq {ISOLatin1+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1921. 200 F0
  1922. (100°) sh add def
  1923. 3900 3900 PSL_H_y add M
  1924. 400 F0
  1925. (Transition = 5) bc Z
  1926. 0 -167 M 200 F0
  1927. (-180°) tc Z
  1928. 0 4067 M (-180°) bc Z
  1929. 1300 -167 M (-120°) tc Z
  1930. 1300 4067 M (-120°) bc Z
  1931. 2600 -167 M (-60°) tc Z
  1932. 2600 4067 M (-60°) bc Z
  1933. 3900 -167 M (0°) tc Z
  1934. 3900 4067 M (0°) bc Z
  1935. 5200 -167 M (60°) tc Z
  1936. 5200 4067 M (60°) bc Z
  1937. 6500 -167 M (120°) tc Z
  1938. 6500 4067 M (120°) bc Z
  1939. 7800 -167 M (180°) tc Z
  1940. 7800 4067 M (180°) bc Z
  1941. -167 650 M (-60°) mr Z
  1942. 7967 650 M (-60°) ml Z
  1943. -167 1950 M (0°) mr Z
  1944. 7967 1950 M (0°) ml Z
  1945. -167 3250 M (60°) mr Z
  1946. 7967 3250 M (60°) ml Z
  1947. %%EndObject
  1948. 0 A
  1949. FQ
  1950. O0
  1951. 0 0 TM
  1952. % PostScript produced by:
  1953. %@GMT: gmt psxy -Rd -JQ6.5i -O -Sc0.25c -Sk@sunglasses/1.5c
  1954. %@PROJ: eqc -180.00000000 180.00000000 -90.00000000 90.00000000 -20015109.356 20015109.356 -10007554.678 10007554.678 +proj=eqc +lat_ts=0 +lat_0=0 +lon_0=0 +x_0=0 +y_0=0 +units=m +a=6371007.181 +b=6371007.181 +units=m +no_defs
  1955. %%BeginObject PSL_Layer_4
  1956. 0 setlinecap
  1957. 0 setlinejoin
  1958. 3.32550952342 setmiterlimit
  1959. clipsave
  1960. 0 0 M
  1961. 7800 0 D
  1962. 0 3900 D
  1963. -7800 0 D
  1964. P
  1965. PSL_clip N
  1966. 4 W
  1967. V
  1968. O1
  1969. /Sk_sunglasses {
  1970. PSL_eps_begin
  1971. 0.25399961 dup scale
  1972. 1200 72 div dup scale
  1973. %%BeginDocument: sunglasses.eps
  1974. -10.711 -12.201 translate
  1975. % Recalculate translation and scale to obtain a resized image
  1976. 5.80456 6.61202 translate
  1977. gsave 0.458074 0.458074 scale
  1978. newpath
  1979. 278.68 633.29 moveto
  1980. 275.12 630.04 275.65 624.62 273.44 620.58 curveto
  1981. 268.94 611.85 261.56 604.76 253.07 599.91 curveto
  1982. 242.69 593.40 232.11 587.13 222.58 579.39 curveto
  1983. 219.58 576.72 217.04 573.59 214.38 570.60 curveto
  1984. 208.70 564.47 206.00 556.35 203.46 548.58 curveto
  1985. 199.26 534.65 200.12 519.56 205.11 505.96 curveto
  1986. 200.44 508.17 196.08 510.96 191.74 513.74 curveto
  1987. 186.53 517.18 183.14 522.55 179.37 527.39 curveto
  1988. 172.86 536.98 171.19 548.68 169.65 559.90 curveto
  1989. 168.17 570.30 164.70 581.42 156.01 588.05 curveto
  1990. 151.59 591.25 146.70 595.24 140.84 593.93 curveto
  1991. 140.20 588.39 142.27 582.94 141.41 577.41 curveto
  1992. 140.30 569.57 136.32 562.51 132.01 556.01 curveto
  1993. 126.09 548.00 119.86 540.21 113.79 532.31 curveto
  1994. 105.00 519.64 100.87 503.41 104.24 488.22 curveto
  1995. 107.90 475.49 113.44 463.11 121.70 452.68 curveto
  1996. 126.98 445.86 134.63 441.52 140.81 435.63 curveto
  1997. 123.82 428.66 103.16 431.38 88.59 442.58 curveto
  1998. 82.15 447.43 75.90 452.52 69.81 457.80 curveto
  1999. 65.51 461.65 59.92 463.46 54.72 465.74 curveto
  2000. 46.01 469.49 35.93 469.97 26.90 467.16 curveto
  2001. 23.92 466.41 23.04 462.23 25.19 460.16 curveto
  2002. 29.78 454.52 35.03 448.81 36.52 441.44 curveto
  2003. 39.39 428.75 36.15 415.79 36.86 402.98 curveto
  2004. 37.96 390.64 39.86 378.17 44.87 366.75 curveto
  2005. 48.95 358.08 55.55 350.95 62.24 344.23 curveto
  2006. 66.86 339.49 72.92 336.68 78.74 333.76 curveto
  2007. 84.71 330.86 91.30 329.71 97.57 327.65 curveto
  2008. 87.78 316.13 79.68 303.21 73.50 289.40 curveto
  2009. 68.69 280.50 65.12 270.93 59.49 262.50 curveto
  2010. 55.36 257.02 50.30 252.27 44.85 248.13 curveto
  2011. 38.09 243.71 29.98 239.67 21.69 241.79 curveto
  2012. 18.55 242.92 15.35 243.99 11.96 243.84 curveto
  2013. 10.72 236.72 15.05 230.42 18.83 224.82 curveto
  2014. 32.74 205.07 55.70 193.25 79.08 189.01 curveto
  2015. 92.39 187.41 105.48 193.16 115.82 201.17 curveto
  2016. 122.12 205.22 126.73 211.26 132.72 215.70 curveto
  2017. 131.13 209.06 128.00 202.80 127.49 195.91 curveto
  2018. 126.85 186.65 126.80 177.36 126.53 168.09 curveto
  2019. 125.62 163.61 124.23 159.23 123.50 154.69 curveto
  2020. 120.50 143.35 110.61 135.54 100.61 130.37 curveto
  2021. 95.77 127.55 90.12 126.97 84.70 126.13 curveto
  2022. 82.08 126.11 80.90 122.49 82.75 120.78 curveto
  2023. 94.06 106.48 109.61 95.54 126.96 89.87 curveto
  2024. 137.42 86.67 148.57 87.30 159.30 88.49 curveto
  2025. 167.95 90.10 176.07 94.51 182.31 100.69 curveto
  2026. 193.63 111.77 200.67 126.18 207.88 140.06 curveto
  2027. 210.07 143.89 211.66 148.32 215.38 150.99 curveto
  2028. 214.84 146.20 212.94 141.71 212.21 136.96 curveto
  2029. 211.88 132.35 212.04 127.69 212.28 123.07 curveto
  2030. 213.71 109.66 220.48 97.33 229.32 87.36 curveto
  2031. 239.06 77.10 249.62 67.63 258.93 56.97 curveto
  2032. 265.06 48.29 271.35 37.92 269.14 26.84 curveto
  2033. 268.59 22.18 263.13 18.59 265.64 13.63 curveto
  2034. 284.57 12.21 303.19 22.77 313.72 38.25 curveto
  2035. 317.75 44.44 321.88 51.01 322.60 58.53 curveto
  2036. 323.59 67.19 323.86 76.01 322.83 84.68 curveto
  2037. 321.03 92.76 318.19 100.57 315.72 108.46 curveto
  2038. 314.53 114.21 315.09 120.22 316.22 125.94 curveto
  2039. 317.92 125.31 318.16 123.33 318.89 121.89 curveto
  2040. 321.26 115.31 325.37 109.19 331.26 105.29 curveto
  2041. 337.66 101.13 344.30 97.26 351.45 94.51 curveto
  2042. 369.29 86.88 387.17 76.51 397.43 59.42 curveto
  2043. 400.60 52.97 401.32 45.69 402.46 38.68 curveto
  2044. 402.76 37.38 402.74 35.83 403.74 34.80 curveto
  2045. 405.65 33.97 407.87 34.22 409.58 35.40 curveto
  2046. 414.23 38.37 419.40 40.68 423.23 44.76 curveto
  2047. 429.04 50.65 434.63 56.83 439.30 63.68 curveto
  2048. 444.57 72.31 446.47 82.45 447.70 92.35 curveto
  2049. 448.15 103.87 445.79 115.42 440.93 125.87 curveto
  2050. 438.21 134.04 431.86 140.05 426.58 146.57 curveto
  2051. 422.33 151.76 417.48 156.83 415.52 163.42 curveto
  2052. 430.67 158.52 446.87 154.84 459.48 144.52 curveto
  2053. 465.85 140.30 469.30 133.29 472.75 126.73 curveto
  2054. 477.06 118.78 477.60 109.47 481.29 101.28 curveto
  2055. 483.79 96.34 486.12 91.10 490.20 87.20 curveto
  2056. 492.05 85.30 495.29 84.71 497.44 86.50 curveto
  2057. 498.63 89.40 499.44 92.43 500.69 95.31 curveto
  2058. 503.00 101.23 507.31 106.03 510.52 111.44 curveto
  2059. 517.29 122.71 522.91 134.75 526.53 147.41 curveto
  2060. 528.08 154.16 528.06 161.19 527.93 168.08 curveto
  2061. 526.06 182.37 518.05 195.02 508.54 205.53 curveto
  2062. 499.25 215.52 488.86 224.82 476.50 230.83 curveto
  2063. 476.62 231.20 476.86 231.94 476.98 232.31 curveto
  2064. 481.41 232.37 485.76 231.42 489.92 229.94 curveto
  2065. 503.39 224.82 513.93 214.57 526.11 207.21 curveto
  2066. 541.44 199.52 559.20 195.28 576.27 198.64 curveto
  2067. 588.86 201.88 600.75 208.77 608.80 219.12 curveto
  2068. 612.01 224.10 614.48 229.51 617.15 234.79 curveto
  2069. 618.22 236.58 617.89 238.93 616.25 240.26 curveto
  2070. 611.93 243.99 605.90 244.34 600.96 246.87 curveto
  2071. 595.43 249.86 589.91 252.99 585.24 257.24 curveto
  2072. 572.08 268.24 562.92 282.92 551.76 295.76 curveto
  2073. 546.20 302.87 538.34 307.57 531.89 313.77 curveto
  2074. 537.58 314.96 543.34 315.75 549.01 317.01 curveto
  2075. 563.12 320.22 576.29 326.71 588.19 334.83 curveto
  2076. 594.64 339.26 600.45 344.65 605.11 350.95 curveto
  2077. 609.37 356.72 614.21 362.14 617.44 368.60 curveto
  2078. 621.43 375.60 623.66 383.40 626.05 391.05 curveto
  2079. 629.27 407.51 629.52 425.00 623.78 440.96 curveto
  2080. 622.94 443.82 620.15 444.94 617.40 444.96 curveto
  2081. 614.48 439.78 612.26 434.17 608.65 429.40 curveto
  2082. 605.10 424.99 599.78 422.63 594.78 420.27 curveto
  2083. 590.69 418.64 586.50 416.90 582.03 416.81 curveto
  2084. 574.13 416.55 566.14 416.62 558.40 418.39 curveto
  2085. 547.10 420.76 536.35 425.19 525.01 427.36 curveto
  2086. 518.37 428.20 511.64 428.43 504.95 428.06 curveto
  2087. 498.88 427.81 493.44 424.87 487.70 423.27 curveto
  2088. 495.95 443.01 514.36 455.35 528.71 470.31 curveto
  2089. 537.58 480.47 543.39 493.39 544.55 506.88 curveto
  2090. 545.27 514.80 546.03 523.00 543.79 530.76 curveto
  2091. 542.33 537.53 539.05 543.70 535.65 549.67 curveto
  2092. 530.25 558.91 523.09 567.52 513.52 572.62 curveto
  2093. 511.14 573.90 509.33 576.03 506.91 577.23 curveto
  2094. 505.04 577.62 502.47 576.87 502.30 574.64 curveto
  2095. 501.71 570.18 503.19 565.70 502.43 561.24 curveto
  2096. 501.05 553.11 497.07 545.53 491.53 539.46 curveto
  2097. 482.15 528.94 468.07 524.49 454.73 521.45 curveto
  2098. 439.66 518.75 424.30 516.29 410.36 509.62 curveto
  2099. 405.19 507.29 400.62 503.92 395.80 500.98 curveto
  2100. 396.95 512.20 403.69 521.83 411.14 529.89 curveto
  2101. 419.07 538.89 429.68 545.79 435.25 556.69 curveto
  2102. 442.00 573.77 441.46 594.46 430.87 609.88 curveto
  2103. 423.06 619.72 411.73 625.84 400.13 630.11 curveto
  2104. 397.86 630.88 395.00 631.57 393.02 629.74 curveto
  2105. 392.93 626.12 395.68 622.89 394.69 619.22 curveto
  2106. 393.30 611.93 388.09 605.94 382.01 601.98 curveto
  2107. 366.77 591.61 348.26 587.81 332.45 578.53 curveto
  2108. 324.99 573.47 318.50 567.02 313.33 559.64 curveto
  2109. 305.40 548.27 300.97 534.83 298.87 521.22 curveto
  2110. 294.14 525.91 291.59 532.23 289.47 538.41 curveto
  2111. 287.31 544.58 287.21 551.28 288.33 557.66 curveto
  2112. 290.94 570.70 298.47 581.99 302.32 594.60 curveto
  2113. 304.32 601.09 303.97 607.98 303.75 614.67 curveto
  2114. 303.39 622.27 299.05 629.78 292.08 633.07 curveto
  2115. 287.80 634.26 282.89 634.89 278.68 633.29 curveto
  2116. closepath
  2117. 1.000 1.000 1.000 setrgbcolor
  2118. fill
  2119. newpath
  2120. 278.68 633.29 moveto
  2121. 282.89 634.89 287.80 634.26 292.08 633.07 curveto
  2122. 299.05 629.78 303.39 622.27 303.75 614.67 curveto
  2123. 303.97 607.98 304.32 601.09 302.32 594.60 curveto
  2124. 298.47 581.99 290.94 570.70 288.33 557.66 curveto
  2125. 287.21 551.28 287.31 544.58 289.47 538.41 curveto
  2126. 291.59 532.23 294.14 525.91 298.87 521.22 curveto
  2127. 300.97 534.83 305.40 548.27 313.33 559.64 curveto
  2128. 318.50 567.02 324.99 573.47 332.45 578.53 curveto
  2129. 348.26 587.81 366.77 591.61 382.01 601.98 curveto
  2130. 388.09 605.94 393.30 611.93 394.69 619.22 curveto
  2131. 395.68 622.89 392.93 626.12 393.02 629.74 curveto
  2132. 395.00 631.57 397.86 630.88 400.13 630.11 curveto
  2133. 411.73 625.84 423.06 619.72 430.87 609.88 curveto
  2134. 441.46 594.46 442.00 573.77 435.25 556.69 curveto
  2135. 429.68 545.79 419.07 538.89 411.14 529.89 curveto
  2136. 403.69 521.83 396.95 512.20 395.80 500.98 curveto
  2137. 400.62 503.92 405.19 507.29 410.36 509.62 curveto
  2138. 424.30 516.29 439.66 518.75 454.73 521.45 curveto
  2139. 468.07 524.49 482.15 528.94 491.53 539.46 curveto
  2140. 497.07 545.53 501.05 553.11 502.43 561.24 curveto
  2141. 503.19 565.70 501.71 570.18 502.30 574.64 curveto
  2142. 502.47 576.87 505.04 577.62 506.91 577.23 curveto
  2143. 509.33 576.03 511.14 573.90 513.52 572.62 curveto
  2144. 523.09 567.52 530.25 558.91 535.65 549.67 curveto
  2145. 539.05 543.70 542.33 537.53 543.79 530.76 curveto
  2146. 546.03 523.00 545.27 514.80 544.55 506.88 curveto
  2147. 543.39 493.39 537.58 480.47 528.71 470.31 curveto
  2148. 514.36 455.35 495.95 443.01 487.70 423.27 curveto
  2149. 493.44 424.87 498.88 427.81 504.95 428.06 curveto
  2150. 511.64 428.43 518.37 428.20 525.01 427.36 curveto
  2151. 536.35 425.19 547.10 420.76 558.40 418.39 curveto
  2152. 566.14 416.62 574.13 416.55 582.03 416.81 curveto
  2153. 586.50 416.90 590.69 418.64 594.78 420.27 curveto
  2154. 599.78 422.63 605.10 424.99 608.65 429.40 curveto
  2155. 612.26 434.17 614.48 439.78 617.40 444.96 curveto
  2156. 620.15 444.94 622.94 443.82 623.78 440.96 curveto
  2157. 629.52 425.00 629.27 407.51 626.05 391.05 curveto
  2158. 623.66 383.40 621.43 375.60 617.44 368.60 curveto
  2159. 614.21 362.14 609.37 356.72 605.11 350.95 curveto
  2160. 600.45 344.65 594.64 339.26 588.19 334.83 curveto
  2161. 576.29 326.71 563.12 320.22 549.01 317.01 curveto
  2162. 543.34 315.75 537.58 314.96 531.89 313.77 curveto
  2163. 538.34 307.57 546.20 302.87 551.76 295.76 curveto
  2164. 562.92 282.92 572.08 268.24 585.24 257.24 curveto
  2165. 589.91 252.99 595.43 249.86 600.96 246.87 curveto
  2166. 605.90 244.34 611.93 243.99 616.25 240.26 curveto
  2167. 617.89 238.93 618.22 236.58 617.15 234.79 curveto
  2168. 614.48 229.51 612.01 224.10 608.80 219.12 curveto
  2169. 600.75 208.77 588.86 201.88 576.27 198.64 curveto
  2170. 559.20 195.28 541.44 199.52 526.11 207.21 curveto
  2171. 513.93 214.57 503.39 224.82 489.92 229.94 curveto
  2172. 485.76 231.42 481.41 232.37 476.98 232.31 curveto
  2173. 478.21 238.11 480.75 243.47 483.14 248.85 curveto
  2174. 489.80 265.47 495.34 282.71 497.43 300.56 curveto
  2175. 499.49 322.11 498.32 344.03 493.13 365.08 curveto
  2176. 487.91 390.76 476.29 414.84 460.94 435.97 curveto
  2177. 452.79 448.22 441.84 458.21 430.78 467.77 curveto
  2178. 415.97 481.19 398.47 491.36 380.16 499.20 curveto
  2179. 362.52 506.19 343.87 510.33 325.16 513.21 curveto
  2180. 315.30 514.42 305.30 514.16 295.40 513.57 curveto
  2181. 276.83 511.36 258.22 508.07 240.71 501.29 curveto
  2182. 231.08 497.79 222.00 493.00 213.19 487.81 curveto
  2183. 206.15 483.61 198.95 479.61 192.57 474.42 curveto
  2184. 181.13 465.31 169.79 455.79 160.86 444.12 curveto
  2185. 157.37 439.62 153.43 435.46 150.32 430.67 curveto
  2186. 140.99 415.64 132.15 400.09 126.76 383.15 curveto
  2187. 126.03 380.70 125.74 378.15 125.54 375.61 curveto
  2188. 122.68 372.31 119.87 368.76 118.65 364.50 curveto
  2189. 116.42 357.02 116.84 349.07 117.68 341.40 curveto
  2190. 114.58 309.48 120.18 276.96 132.59 247.46 curveto
  2191. 143.27 225.14 157.22 204.27 174.72 186.71 curveto
  2192. 182.53 178.37 191.84 171.66 201.20 165.19 curveto
  2193. 208.48 160.35 215.82 155.51 223.75 151.78 curveto
  2194. 232.26 147.68 241.16 144.50 249.95 141.09 curveto
  2195. 265.95 136.53 282.34 132.99 299.01 132.27 curveto
  2196. 325.24 130.47 351.46 136.09 376.01 145.02 curveto
  2197. 386.65 148.69 396.31 154.53 406.17 159.86 curveto
  2198. 411.11 162.60 416.51 164.53 421.10 167.89 curveto
  2199. 443.67 184.73 462.41 206.50 476.50 230.83 curveto
  2200. 488.86 224.82 499.25 215.52 508.54 205.53 curveto
  2201. 518.05 195.02 526.06 182.37 527.93 168.08 curveto
  2202. 528.06 161.19 528.08 154.16 526.53 147.41 curveto
  2203. 522.91 134.75 517.29 122.71 510.52 111.44 curveto
  2204. 507.31 106.03 503.00 101.23 500.69 95.31 curveto
  2205. 499.44 92.43 498.63 89.40 497.44 86.50 curveto
  2206. 495.29 84.71 492.05 85.30 490.20 87.20 curveto
  2207. 486.12 91.10 483.79 96.34 481.29 101.28 curveto
  2208. 477.60 109.47 477.06 118.78 472.75 126.73 curveto
  2209. 469.30 133.29 465.85 140.30 459.48 144.52 curveto
  2210. 446.87 154.84 430.67 158.52 415.52 163.42 curveto
  2211. 417.48 156.83 422.33 151.76 426.58 146.57 curveto
  2212. 431.86 140.05 438.21 134.04 440.93 125.87 curveto
  2213. 445.79 115.42 448.15 103.87 447.70 92.35 curveto
  2214. 446.47 82.45 444.57 72.31 439.30 63.68 curveto
  2215. 434.63 56.83 429.04 50.65 423.23 44.76 curveto
  2216. 419.40 40.68 414.23 38.37 409.58 35.40 curveto
  2217. 407.87 34.22 405.65 33.97 403.74 34.80 curveto
  2218. 402.74 35.83 402.76 37.38 402.46 38.68 curveto
  2219. 401.32 45.69 400.60 52.97 397.43 59.42 curveto
  2220. 387.17 76.51 369.29 86.88 351.45 94.51 curveto
  2221. 344.30 97.26 337.66 101.13 331.26 105.29 curveto
  2222. 325.37 109.19 321.26 115.31 318.89 121.89 curveto
  2223. 318.16 123.33 317.92 125.31 316.22 125.94 curveto
  2224. 315.09 120.22 314.53 114.21 315.72 108.46 curveto
  2225. 318.19 100.57 321.03 92.76 322.83 84.68 curveto
  2226. 323.86 76.01 323.59 67.19 322.60 58.53 curveto
  2227. 321.88 51.01 317.75 44.44 313.72 38.25 curveto
  2228. 303.19 22.77 284.57 12.21 265.64 13.63 curveto
  2229. 263.13 18.59 268.59 22.18 269.14 26.84 curveto
  2230. 271.35 37.92 265.06 48.29 258.93 56.97 curveto
  2231. 249.62 67.63 239.06 77.10 229.32 87.36 curveto
  2232. 220.48 97.33 213.71 109.66 212.28 123.07 curveto
  2233. 212.04 127.69 211.88 132.35 212.21 136.96 curveto
  2234. 212.94 141.71 214.84 146.20 215.38 150.99 curveto
  2235. 211.66 148.32 210.07 143.89 207.88 140.06 curveto
  2236. 200.67 126.18 193.63 111.77 182.31 100.69 curveto
  2237. 176.07 94.51 167.95 90.10 159.30 88.49 curveto
  2238. 148.57 87.30 137.42 86.67 126.96 89.87 curveto
  2239. 109.61 95.54 94.06 106.48 82.75 120.78 curveto
  2240. 80.90 122.49 82.08 126.11 84.70 126.13 curveto
  2241. 90.12 126.97 95.77 127.55 100.61 130.37 curveto
  2242. 110.61 135.54 120.50 143.35 123.50 154.69 curveto
  2243. 124.23 159.23 125.62 163.61 126.53 168.09 curveto
  2244. 126.80 177.36 126.85 186.65 127.49 195.91 curveto
  2245. 128.00 202.80 131.13 209.06 132.72 215.70 curveto
  2246. 126.73 211.26 122.12 205.22 115.82 201.17 curveto
  2247. 105.48 193.16 92.39 187.41 79.08 189.01 curveto
  2248. 55.70 193.25 32.74 205.07 18.83 224.82 curveto
  2249. 15.05 230.42 10.72 236.72 11.96 243.84 curveto
  2250. 15.35 243.99 18.55 242.92 21.69 241.79 curveto
  2251. 29.98 239.67 38.09 243.71 44.85 248.13 curveto
  2252. 50.30 252.27 55.36 257.02 59.49 262.50 curveto
  2253. 65.12 270.93 68.69 280.50 73.50 289.40 curveto
  2254. 79.68 303.21 87.78 316.13 97.57 327.65 curveto
  2255. 91.30 329.71 84.71 330.86 78.74 333.76 curveto
  2256. 72.92 336.68 66.86 339.49 62.24 344.23 curveto
  2257. 55.55 350.95 48.95 358.08 44.87 366.75 curveto
  2258. 39.86 378.17 37.96 390.64 36.86 402.98 curveto
  2259. 36.15 415.79 39.39 428.75 36.52 441.44 curveto
  2260. 35.03 448.81 29.78 454.52 25.19 460.16 curveto
  2261. 23.04 462.23 23.92 466.41 26.90 467.16 curveto
  2262. 35.93 469.97 46.01 469.49 54.72 465.74 curveto
  2263. 59.92 463.46 65.51 461.65 69.81 457.80 curveto
  2264. 75.90 452.52 82.15 447.43 88.59 442.58 curveto
  2265. 103.16 431.38 123.82 428.66 140.81 435.63 curveto
  2266. 134.63 441.52 126.98 445.86 121.70 452.68 curveto
  2267. 113.44 463.11 107.90 475.49 104.24 488.22 curveto
  2268. 100.87 503.41 105.00 519.64 113.79 532.31 curveto
  2269. 119.86 540.21 126.09 548.00 132.01 556.01 curveto
  2270. 136.32 562.51 140.30 569.57 141.41 577.41 curveto
  2271. 142.27 582.94 140.20 588.39 140.84 593.93 curveto
  2272. 146.70 595.24 151.59 591.25 156.01 588.05 curveto
  2273. 164.70 581.42 168.17 570.30 169.65 559.90 curveto
  2274. 171.19 548.68 172.86 536.98 179.37 527.39 curveto
  2275. 183.14 522.55 186.53 517.18 191.74 513.74 curveto
  2276. 196.08 510.96 200.44 508.17 205.11 505.96 curveto
  2277. 200.12 519.56 199.26 534.65 203.46 548.58 curveto
  2278. 206.00 556.35 208.70 564.47 214.38 570.60 curveto
  2279. 217.04 573.59 219.58 576.72 222.58 579.39 curveto
  2280. 232.11 587.13 242.69 593.40 253.07 599.91 curveto
  2281. 261.56 604.76 268.94 611.85 273.44 620.58 curveto
  2282. 275.65 624.62 275.12 630.04 278.68 633.29 curveto
  2283. 248.08 211.12 moveto
  2284. 251.21 212.54 254.55 213.79 258.04 213.54 curveto
  2285. 260.62 213.78 262.25 211.45 264.11 210.06 curveto
  2286. 263.73 208.56 263.35 207.06 263.00 205.54 curveto
  2287. 268.77 208.91 275.11 212.12 282.03 211.40 curveto
  2288. 290.61 210.56 299.17 206.64 305.03 200.25 curveto
  2289. 296.36 192.80 284.50 189.18 273.19 191.23 curveto
  2290. 262.54 193.95 253.57 201.75 248.08 211.12 curveto
  2291. closepath
  2292. 0.973 0.580 0.004 setrgbcolor
  2293. fill
  2294. newpath
  2295. 295.40 513.57 moveto
  2296. 305.30 514.16 315.30 514.42 325.16 513.21 curveto
  2297. 343.87 510.33 362.52 506.19 380.16 499.20 curveto
  2298. 398.47 491.36 415.97 481.19 430.78 467.77 curveto
  2299. 441.84 458.21 452.79 448.22 460.94 435.97 curveto
  2300. 476.29 414.84 487.91 390.76 493.13 365.08 curveto
  2301. 498.32 344.03 499.49 322.11 497.43 300.56 curveto
  2302. 495.34 282.71 489.80 265.47 483.14 248.85 curveto
  2303. 480.75 243.47 478.21 238.11 476.98 232.31 curveto
  2304. 476.86 231.94 476.62 231.20 476.50 230.83 curveto
  2305. 462.41 206.50 443.67 184.73 421.10 167.89 curveto
  2306. 416.51 164.53 411.11 162.60 406.17 159.86 curveto
  2307. 396.31 154.53 386.65 148.69 376.01 145.02 curveto
  2308. 351.46 136.09 325.24 130.47 299.01 132.27 curveto
  2309. 282.34 132.99 265.95 136.53 249.95 141.09 curveto
  2310. 241.16 144.50 232.26 147.68 223.75 151.78 curveto
  2311. 215.82 155.51 208.48 160.35 201.20 165.19 curveto
  2312. 191.84 171.66 182.53 178.37 174.72 186.71 curveto
  2313. 157.22 204.27 143.27 225.14 132.59 247.46 curveto
  2314. 120.18 276.96 114.58 309.48 117.68 341.40 curveto
  2315. 118.93 337.55 119.78 332.85 123.66 330.70 curveto
  2316. 126.77 328.53 131.47 327.78 134.45 330.60 curveto
  2317. 139.09 334.27 138.75 340.72 139.15 346.04 curveto
  2318. 139.40 353.43 141.07 361.88 147.59 366.33 curveto
  2319. 152.74 369.54 158.47 371.78 164.36 373.21 curveto
  2320. 164.98 359.11 169.57 344.80 179.28 334.30 curveto
  2321. 188.51 323.69 201.37 317.25 214.27 312.25 curveto
  2322. 222.10 309.03 230.83 308.82 239.12 309.93 curveto
  2323. 254.11 312.19 267.70 322.45 273.59 336.46 curveto
  2324. 278.41 350.46 278.48 365.62 283.45 379.58 curveto
  2325. 285.40 385.04 288.47 390.29 293.06 393.93 curveto
  2326. 298.13 397.92 305.46 396.83 310.71 393.78 curveto
  2327. 316.16 389.69 319.00 382.76 319.20 376.06 curveto
  2328. 319.63 364.93 315.86 354.15 316.19 343.02 curveto
  2329. 315.50 330.71 320.36 318.50 328.04 309.03 curveto
  2330. 335.42 302.23 343.04 295.37 352.25 291.12 curveto
  2331. 357.84 287.93 364.24 286.84 370.40 285.29 curveto
  2332. 379.29 282.79 388.76 284.16 397.50 286.64 curveto
  2333. 406.33 289.50 414.15 294.85 420.96 301.07 curveto
  2334. 426.08 305.72 429.69 311.68 433.73 317.23 curveto
  2335. 437.29 322.12 439.13 327.92 441.65 333.35 curveto
  2336. 443.59 337.56 444.57 342.10 446.01 346.48 curveto
  2337. 450.75 343.13 455.07 339.24 459.35 335.34 curveto
  2338. 463.51 331.49 467.07 326.65 468.13 320.97 curveto
  2339. 470.03 313.01 464.26 305.10 467.21 297.23 curveto
  2340. 467.96 294.61 470.42 292.98 473.04 292.68 curveto
  2341. 476.67 291.89 479.38 295.03 481.94 297.07 curveto
  2342. 488.71 302.99 490.57 312.41 490.79 321.00 curveto
  2343. 491.05 325.01 488.86 328.57 486.77 331.79 curveto
  2344. 480.92 340.49 472.44 346.86 464.48 353.50 curveto
  2345. 458.34 358.42 452.20 363.45 445.32 367.31 curveto
  2346. 439.44 370.68 434.04 374.79 428.19 378.20 curveto
  2347. 403.09 392.47 375.94 402.93 348.04 410.22 curveto
  2348. 333.24 413.79 318.28 417.31 303.01 417.89 curveto
  2349. 291.02 418.69 279.02 419.41 267.01 419.34 curveto
  2350. 245.19 418.99 223.39 416.19 202.27 410.69 curveto
  2351. 188.41 407.11 175.16 401.57 162.01 395.98 curveto
  2352. 149.37 390.19 135.83 385.31 125.54 375.61 curveto
  2353. 125.74 378.15 126.03 380.70 126.76 383.15 curveto
  2354. 132.15 400.09 140.99 415.64 150.32 430.67 curveto
  2355. 153.43 435.46 157.37 439.62 160.86 444.12 curveto
  2356. 169.79 455.79 181.13 465.31 192.57 474.42 curveto
  2357. 198.95 479.61 206.15 483.61 213.19 487.81 curveto
  2358. 222.00 493.00 231.08 497.79 240.71 501.29 curveto
  2359. 258.22 508.07 276.83 511.36 295.40 513.57 curveto
  2360. 209.44 451.56 moveto
  2361. 203.23 444.58 199.95 435.21 200.03 425.90 curveto
  2362. 204.76 430.57 208.43 436.50 214.49 439.62 curveto
  2363. 219.85 443.08 226.63 442.61 232.62 441.48 curveto
  2364. 242.23 439.38 249.79 432.47 259.13 429.73 curveto
  2365. 256.88 445.56 241.79 457.98 226.00 458.29 curveto
  2366. 219.91 458.35 213.54 456.22 209.44 451.56 curveto
  2367. 368.04 443.97 moveto
  2368. 361.46 440.70 355.66 436.06 349.07 432.82 curveto
  2369. 345.14 430.87 340.83 429.89 336.64 428.69 curveto
  2370. 340.28 423.95 346.59 423.72 352.04 423.23 curveto
  2371. 360.61 422.36 368.78 425.66 377.15 426.87 curveto
  2372. 384.52 428.54 392.59 428.15 399.21 424.20 curveto
  2373. 405.14 421.17 408.74 415.34 413.93 411.37 curveto
  2374. 415.73 421.71 410.18 431.99 402.18 438.23 curveto
  2375. 396.62 442.30 390.19 446.15 383.04 445.80 curveto
  2376. 378.03 445.67 372.64 446.39 368.04 443.97 curveto
  2377. 205.30 288.67 moveto
  2378. 200.90 285.83 197.02 281.65 195.60 276.50 curveto
  2379. 198.88 279.93 201.33 284.29 205.82 286.37 curveto
  2380. 209.94 271.92 222.03 262.15 230.11 250.05 curveto
  2381. 234.12 242.32 236.26 233.79 238.23 225.35 curveto
  2382. 242.33 209.48 254.45 196.18 269.17 189.32 curveto
  2383. 281.28 185.93 295.06 189.24 304.63 197.35 curveto
  2384. 310.19 200.80 313.41 206.63 317.37 211.62 curveto
  2385. 321.00 216.34 324.31 221.31 328.12 225.89 curveto
  2386. 331.34 228.69 335.75 229.52 339.45 231.54 curveto
  2387. 349.36 236.11 357.92 243.27 364.56 251.89 curveto
  2388. 369.47 250.14 371.31 245.07 373.66 240.90 curveto
  2389. 373.16 244.70 372.89 249.06 369.69 251.69 curveto
  2390. 364.75 256.95 357.21 259.14 350.18 257.68 curveto
  2391. 350.26 257.19 350.42 256.20 350.50 255.71 curveto
  2392. 354.53 255.28 358.56 254.71 362.49 253.67 curveto
  2393. 359.14 247.56 353.60 243.05 348.23 238.79 curveto
  2394. 335.20 230.91 320.43 224.82 304.99 224.76 curveto
  2395. 289.84 224.90 274.52 228.04 260.92 234.82 curveto
  2396. 250.55 240.84 239.82 246.70 231.39 255.39 curveto
  2397. 221.92 264.79 211.95 274.94 208.29 288.16 curveto
  2398. 212.06 288.19 215.85 287.91 219.60 288.37 curveto
  2399. 215.82 292.20 209.51 291.32 205.30 288.67 curveto
  2400. 253.73 182.39 moveto
  2401. 259.27 175.16 268.40 168.16 278.03 170.92 curveto
  2402. 282.12 171.68 286.96 173.50 287.41 178.32 curveto
  2403. 282.88 176.78 279.11 172.72 274.00 173.33 curveto
  2404. 267.51 173.44 262.65 178.13 257.86 181.87 curveto
  2405. 256.73 183.02 255.12 182.56 253.73 182.39 curveto
  2406. closepath
  2407. 1.000 0.937 0.012 setrgbcolor
  2408. fill
  2409. newpath
  2410. 209.44 451.56 moveto
  2411. 213.54 456.22 219.91 458.35 226.00 458.29 curveto
  2412. 241.79 457.98 256.88 445.56 259.13 429.73 curveto
  2413. 249.79 432.47 242.23 439.38 232.62 441.48 curveto
  2414. 226.63 442.61 219.85 443.08 214.49 439.62 curveto
  2415. 208.43 436.50 204.76 430.57 200.03 425.90 curveto
  2416. 199.95 435.21 203.23 444.58 209.44 451.56 curveto
  2417. 368.04 443.97 moveto
  2418. 372.64 446.39 378.03 445.67 383.04 445.80 curveto
  2419. 390.19 446.15 396.62 442.30 402.18 438.23 curveto
  2420. 410.18 431.99 415.73 421.71 413.93 411.37 curveto
  2421. 408.74 415.34 405.14 421.17 399.21 424.20 curveto
  2422. 392.59 428.15 384.52 428.54 377.15 426.87 curveto
  2423. 368.78 425.66 360.61 422.36 352.04 423.23 curveto
  2424. 346.59 423.72 340.28 423.95 336.64 428.69 curveto
  2425. 340.83 429.89 345.14 430.87 349.07 432.82 curveto
  2426. 355.66 436.06 361.46 440.70 368.04 443.97 curveto
  2427. 235.52 246.70 moveto
  2428. 240.99 243.99 245.90 240.35 251.09 237.15 curveto
  2429. 262.87 229.73 276.28 225.21 289.99 223.08 curveto
  2430. 295.98 222.67 301.98 222.40 307.98 222.48 curveto
  2431. 313.25 222.48 318.26 224.35 323.45 224.92 curveto
  2432. 321.58 219.77 318.10 215.47 315.07 210.97 curveto
  2433. 313.06 208.33 311.21 205.21 308.06 203.81 curveto
  2434. 303.68 205.57 300.15 208.90 295.81 210.74 curveto
  2435. 287.63 214.12 278.19 215.21 269.75 212.11 curveto
  2436. 266.42 210.29 263.95 213.78 261.17 215.07 curveto
  2437. 256.29 217.80 250.79 214.87 246.03 213.28 curveto
  2438. 240.66 223.71 237.84 235.27 235.52 246.70 curveto
  2439. 253.73 182.39 moveto
  2440. 255.12 182.56 256.73 183.02 257.86 181.87 curveto
  2441. 262.65 178.13 267.51 173.44 274.00 173.33 curveto
  2442. 279.11 172.72 282.88 176.78 287.41 178.32 curveto
  2443. 286.96 173.50 282.12 171.68 278.03 170.92 curveto
  2444. 268.40 168.16 259.27 175.16 253.73 182.39 curveto
  2445. closepath
  2446. 0.941 0.353 0.075 setrgbcolor
  2447. fill
  2448. newpath
  2449. 202.27 410.69 moveto
  2450. 223.39 416.19 245.19 418.99 267.01 419.34 curveto
  2451. 279.02 419.41 291.02 418.69 303.01 417.89 curveto
  2452. 318.28 417.31 333.24 413.79 348.04 410.22 curveto
  2453. 375.94 402.93 403.09 392.47 428.19 378.20 curveto
  2454. 434.04 374.79 439.44 370.68 445.32 367.31 curveto
  2455. 452.20 363.45 458.34 358.42 464.48 353.50 curveto
  2456. 472.44 346.86 480.92 340.49 486.77 331.79 curveto
  2457. 488.86 328.57 491.05 325.01 490.79 321.00 curveto
  2458. 490.57 312.41 488.71 302.99 481.94 297.07 curveto
  2459. 479.38 295.03 476.67 291.89 473.04 292.68 curveto
  2460. 470.42 292.98 467.96 294.61 467.21 297.23 curveto
  2461. 464.26 305.10 470.03 313.01 468.13 320.97 curveto
  2462. 467.07 326.65 463.51 331.49 459.35 335.34 curveto
  2463. 455.07 339.24 450.75 343.13 446.01 346.48 curveto
  2464. 444.57 342.10 443.59 337.56 441.65 333.35 curveto
  2465. 439.13 327.92 437.29 322.12 433.73 317.23 curveto
  2466. 429.69 311.68 426.08 305.72 420.96 301.07 curveto
  2467. 414.15 294.85 406.33 289.50 397.50 286.64 curveto
  2468. 388.76 284.16 379.29 282.79 370.40 285.29 curveto
  2469. 364.24 286.84 357.84 287.93 352.25 291.12 curveto
  2470. 343.04 295.37 335.42 302.23 328.04 309.03 curveto
  2471. 320.36 318.50 315.50 330.71 316.19 343.02 curveto
  2472. 315.86 354.15 319.63 364.93 319.20 376.06 curveto
  2473. 319.00 382.76 316.16 389.69 310.71 393.78 curveto
  2474. 305.46 396.83 298.13 397.92 293.06 393.93 curveto
  2475. 288.47 390.29 285.40 385.04 283.45 379.58 curveto
  2476. 278.48 365.62 278.41 350.46 273.59 336.46 curveto
  2477. 267.70 322.45 254.11 312.19 239.12 309.93 curveto
  2478. 230.83 308.82 222.10 309.03 214.27 312.25 curveto
  2479. 201.37 317.25 188.51 323.69 179.28 334.30 curveto
  2480. 169.57 344.80 164.98 359.11 164.36 373.21 curveto
  2481. 158.47 371.78 152.74 369.54 147.59 366.33 curveto
  2482. 141.07 361.88 139.40 353.43 139.15 346.04 curveto
  2483. 138.75 340.72 139.09 334.27 134.45 330.60 curveto
  2484. 131.47 327.78 126.77 328.53 123.66 330.70 curveto
  2485. 119.78 332.85 118.93 337.55 117.68 341.40 curveto
  2486. 116.84 349.07 116.42 357.02 118.65 364.50 curveto
  2487. 119.87 368.76 122.68 372.31 125.54 375.61 curveto
  2488. 135.83 385.31 149.37 390.19 162.01 395.98 curveto
  2489. 175.16 401.57 188.41 407.11 202.27 410.69 curveto
  2490. 206.01 381.98 moveto
  2491. 202.05 379.14 197.90 376.50 194.54 372.92 curveto
  2492. 200.98 373.32 207.00 375.84 213.29 377.07 curveto
  2493. 207.29 366.51 198.63 357.71 192.65 347.12 curveto
  2494. 199.67 349.50 206.10 353.37 213.24 355.45 curveto
  2495. 209.69 347.57 204.26 340.70 200.81 332.77 curveto
  2496. 210.47 337.65 218.77 344.86 228.56 349.50 curveto
  2497. 224.47 340.79 218.88 332.86 214.86 324.10 curveto
  2498. 222.86 328.27 229.86 334.09 237.88 338.23 curveto
  2499. 236.95 333.09 235.88 327.95 235.71 322.71 curveto
  2500. 241.31 328.35 245.97 334.81 251.28 340.69 curveto
  2501. 257.87 347.63 260.88 356.93 264.82 365.44 curveto
  2502. 261.19 363.69 257.55 361.94 253.77 360.51 curveto
  2503. 255.55 365.52 258.62 369.95 260.21 375.03 curveto
  2504. 255.25 372.20 251.25 367.92 245.98 365.58 curveto
  2505. 249.31 373.45 255.33 379.71 259.38 387.16 curveto
  2506. 249.73 382.97 241.34 376.41 231.79 372.00 curveto
  2507. 234.81 378.72 239.58 384.51 242.26 391.39 curveto
  2508. 236.75 388.75 232.30 384.45 226.91 381.62 curveto
  2509. 228.39 388.27 231.35 394.46 232.95 401.08 curveto
  2510. 223.65 395.18 215.01 388.31 206.01 381.98 curveto
  2511. 362.14 367.87 moveto
  2512. 356.06 363.34 349.61 359.28 343.96 354.20 curveto
  2513. 350.45 354.47 356.59 356.67 362.88 358.05 curveto
  2514. 355.97 348.12 348.13 338.83 341.73 328.55 curveto
  2515. 349.46 329.82 355.81 334.72 363.05 337.35 curveto
  2516. 359.05 329.28 353.96 321.81 349.70 313.88 curveto
  2517. 359.65 318.87 368.20 326.24 378.17 331.20 curveto
  2518. 374.13 322.36 368.34 314.46 364.12 305.71 curveto
  2519. 372.21 309.56 379.06 315.51 387.11 319.42 curveto
  2520. 386.53 314.19 385.28 309.06 384.89 303.80 curveto
  2521. 390.60 311.38 395.29 319.64 400.52 327.55 curveto
  2522. 404.09 333.42 408.29 338.92 411.28 345.14 curveto
  2523. 408.43 344.04 405.66 342.77 402.82 341.65 curveto
  2524. 404.80 346.36 407.40 350.79 409.22 355.57 curveto
  2525. 404.43 353.37 400.38 349.92 395.71 347.50 curveto
  2526. 399.43 354.68 404.81 360.85 408.27 368.17 curveto
  2527. 398.64 363.86 390.18 357.41 380.70 352.82 curveto
  2528. 383.71 359.57 388.25 365.51 391.09 372.34 curveto
  2529. 385.76 369.53 381.23 365.48 375.90 362.67 curveto
  2530. 377.17 369.01 379.97 374.90 381.26 381.24 curveto
  2531. 374.58 377.23 368.54 372.29 362.14 367.87 curveto
  2532. 205.30 288.67 moveto
  2533. 209.51 291.32 215.82 292.20 219.60 288.37 curveto
  2534. 215.85 287.91 212.06 288.19 208.29 288.16 curveto
  2535. 211.95 274.94 221.92 264.79 231.39 255.39 curveto
  2536. 239.82 246.70 250.55 240.84 260.92 234.82 curveto
  2537. 274.52 228.04 289.84 224.90 304.99 224.76 curveto
  2538. 320.43 224.82 335.20 230.91 348.23 238.79 curveto
  2539. 353.60 243.05 359.14 247.56 362.49 253.67 curveto
  2540. 358.56 254.71 354.53 255.28 350.50 255.71 curveto
  2541. 350.42 256.20 350.26 257.19 350.18 257.68 curveto
  2542. 357.21 259.14 364.75 256.95 369.69 251.69 curveto
  2543. 372.89 249.06 373.16 244.70 373.66 240.90 curveto
  2544. 371.31 245.07 369.47 250.14 364.56 251.89 curveto
  2545. 357.92 243.27 349.36 236.11 339.45 231.54 curveto
  2546. 335.75 229.52 331.34 228.69 328.12 225.89 curveto
  2547. 324.31 221.31 321.00 216.34 317.37 211.62 curveto
  2548. 313.41 206.63 310.19 200.80 304.63 197.35 curveto
  2549. 295.06 189.24 281.28 185.93 269.17 189.32 curveto
  2550. 254.45 196.18 242.33 209.48 238.23 225.35 curveto
  2551. 236.26 233.79 234.12 242.32 230.11 250.05 curveto
  2552. 222.03 262.15 209.94 271.92 205.82 286.37 curveto
  2553. 201.33 284.29 198.88 279.93 195.60 276.50 curveto
  2554. 197.02 281.65 200.90 285.83 205.30 288.67 curveto
  2555. 235.52 246.70 moveto
  2556. 237.84 235.27 240.66 223.71 246.03 213.28 curveto
  2557. 250.79 214.87 256.29 217.80 261.17 215.07 curveto
  2558. 263.95 213.78 266.42 210.29 269.75 212.11 curveto
  2559. 278.19 215.21 287.63 214.12 295.81 210.74 curveto
  2560. 300.15 208.90 303.68 205.57 308.06 203.81 curveto
  2561. 311.21 205.21 313.06 208.33 315.07 210.97 curveto
  2562. 318.10 215.47 321.58 219.77 323.45 224.92 curveto
  2563. 318.26 224.35 313.25 222.48 307.98 222.48 curveto
  2564. 301.98 222.40 295.98 222.67 289.99 223.08 curveto
  2565. 276.28 225.21 262.87 229.73 251.09 237.15 curveto
  2566. 245.90 240.35 240.99 243.99 235.52 246.70 curveto
  2567. 248.08 211.12 moveto
  2568. 253.57 201.75 262.54 193.95 273.19 191.23 curveto
  2569. 284.50 189.18 296.36 192.80 305.03 200.25 curveto
  2570. 299.17 206.64 290.61 210.56 282.03 211.40 curveto
  2571. 275.11 212.12 268.77 208.91 263.00 205.54 curveto
  2572. 263.35 207.06 263.73 208.56 264.11 210.06 curveto
  2573. 262.25 211.45 260.62 213.78 258.04 213.54 curveto
  2574. 254.55 213.79 251.21 212.54 248.08 211.12 curveto
  2575. closepath
  2576. 0.000 0.000 0.000 setrgbcolor
  2577. fill
  2578. newpath
  2579. 206.01 381.98 moveto
  2580. 215.01 388.31 223.65 395.18 232.95 401.08 curveto
  2581. 231.35 394.46 228.39 388.27 226.91 381.62 curveto
  2582. 232.30 384.45 236.75 388.75 242.26 391.39 curveto
  2583. 239.58 384.51 234.81 378.72 231.79 372.00 curveto
  2584. 241.34 376.41 249.73 382.97 259.38 387.16 curveto
  2585. 255.33 379.71 249.31 373.45 245.98 365.58 curveto
  2586. 251.25 367.92 255.25 372.20 260.21 375.03 curveto
  2587. 258.62 369.95 255.55 365.52 253.77 360.51 curveto
  2588. 257.55 361.94 261.19 363.69 264.82 365.44 curveto
  2589. 260.88 356.93 257.87 347.63 251.28 340.69 curveto
  2590. 245.97 334.81 241.31 328.35 235.71 322.71 curveto
  2591. 235.88 327.95 236.95 333.09 237.88 338.23 curveto
  2592. 229.86 334.09 222.86 328.27 214.86 324.10 curveto
  2593. 218.88 332.86 224.47 340.79 228.56 349.50 curveto
  2594. 218.77 344.86 210.47 337.65 200.81 332.77 curveto
  2595. 204.26 340.70 209.69 347.57 213.24 355.45 curveto
  2596. 206.10 353.37 199.67 349.50 192.65 347.12 curveto
  2597. 198.63 357.71 207.29 366.51 213.29 377.07 curveto
  2598. 207.00 375.84 200.98 373.32 194.54 372.92 curveto
  2599. 197.90 376.50 202.05 379.14 206.01 381.98 curveto
  2600. 362.14 367.87 moveto
  2601. 368.54 372.29 374.58 377.23 381.26 381.24 curveto
  2602. 379.97 374.90 377.17 369.01 375.90 362.67 curveto
  2603. 381.23 365.48 385.76 369.53 391.09 372.34 curveto
  2604. 388.25 365.51 383.71 359.57 380.70 352.82 curveto
  2605. 390.18 357.41 398.64 363.86 408.27 368.17 curveto
  2606. 404.81 360.85 399.43 354.68 395.71 347.50 curveto
  2607. 400.38 349.92 404.43 353.37 409.22 355.57 curveto
  2608. 407.40 350.79 404.80 346.36 402.82 341.65 curveto
  2609. 405.66 342.77 408.43 344.04 411.28 345.14 curveto
  2610. 408.29 338.92 404.09 333.42 400.52 327.55 curveto
  2611. 395.29 319.64 390.60 311.38 384.89 303.80 curveto
  2612. 385.28 309.06 386.53 314.19 387.11 319.42 curveto
  2613. 379.06 315.51 372.21 309.56 364.12 305.71 curveto
  2614. 368.34 314.46 374.13 322.36 378.17 331.20 curveto
  2615. 368.20 326.24 359.65 318.87 349.70 313.88 curveto
  2616. 353.96 321.81 359.05 329.28 363.05 337.35 curveto
  2617. 355.81 334.72 349.46 329.82 341.73 328.55 curveto
  2618. 348.13 338.83 355.97 348.12 362.88 358.05 curveto
  2619. 356.59 356.67 350.45 354.47 343.96 354.20 curveto
  2620. 349.61 359.28 356.06 363.34 362.14 367.87 curveto
  2621. closepath
  2622. 0.388 0.388 0.388 setrgbcolor
  2623. fill
  2624. grestore
  2625. %%EndDocument
  2626. PSL_eps_end } def
  2627. V 4196 2027 T
  2628. 0.590551181102 dup scale Sk_sunglasses U
  2629. V -3604 2027 T
  2630. 0.590551181102 dup scale Sk_sunglasses U
  2631. U
  2632. PSL_cliprestore
  2633. %%EndObject
  2634. grestore
  2635. PSL_movie_label_completion /PSL_movie_label_completion {} def
  2636. PSL_movie_prog_indicator_completion /PSL_movie_prog_indicator_completion {} def
  2637. %PSL_Begin_Trailer
  2638. %%PageTrailer
  2639. U
  2640. showpage
  2641. %%Trailer
  2642. end
  2643. %%EOF
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...