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

pspolar_02.ps 35 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
  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_64f62e5-dirty_2020.01.17 [64-bit] Document from psbasemap
  5. %%Creator: GMT6
  6. %%For: unknown
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Fri Jan 17 23:27: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. /Standard+_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 /threequarters /threesuperior /trademark /twosuperior /yacute /ydieresis /zcaron
  123. /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
  124. /parenleft /parenright /asterisk /plus /comma /hyphen /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 /florin
  135. /Atilde /Ccedilla /Eth /Lslash /Ntilde /Otilde /Scaron /Thorn
  136. /Yacute /Ydieresis /Zcaron /atilde /brokenbar /ccedilla /copyright /degree
  137. /divide /eth /logicalnot /lslash /minus /mu /multiply /ntilde
  138. /onehalf /onequarter /onesuperior /otilde /plusminus /registered /scaron /thorn
  139. /.notdef /exclamdown /cent /sterling /fraction /yen /florin /section
  140. /currency /quotesingle /quotedblleft /guillemotleft /guilsinglleft /guilsinglright /fi /fl
  141. /Aacute /endash /dagger /daggerdbl /periodcentered /Acircumflex /paragraph /bullet
  142. /quotesinglbase /quotedblbase /quotedblright /guillemotright /ellipsis /perthousand /Adieresis /questiondown
  143. /Agrave /grave /acute /circumflex /tilde /macron /breve /dotaccent
  144. /dieresis /Eacute /ring /cedilla /Ecircumflex /hungarumlaut /ogonek /caron
  145. /emdash /Edieresis /Egrave /Iacute /Icircumflex /Idieresis /Igrave /Oacute
  146. /Ocircumflex /Odieresis /Ograve /Uacute /Ucircumflex /Udieresis /Ugrave /aacute
  147. /acircumflex /AE /adieresis /ordfeminine /agrave /eacute /ecircumflex /edieresis
  148. /egrave /Oslash /OE /ordmasculine /iacute /icircumflex /idieresis /igrave
  149. /oacute /ae /ocircumflex /odieresis /ograve /dotlessi /uacute /ucircumflex
  150. /udieresis /oslash /oe /germandbls /ugrave /Aring /aring /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 0 0 0 0 0 0 0 0 47 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. /F39 {/STSong-Light--UniGB-UTF8-H Y}!
  193. /F40 {/STFangsong-Light--UniGB-UTF8-H Y}!
  194. /F41 {/STHeiti-Regular--UniGB-UTF8-H Y}!
  195. /F42 {/STKaiti-Regular--UniGB-UTF8-H Y}!
  196. /F43 {/STSong-Light--UniGB-UTF8-V Y}!
  197. /F44 {/STFangsong-Light--UniGB-UTF8-V Y}!
  198. /F45 {/STHeiti-Regular--UniGB-UTF8-V Y}!
  199. /F46 {/STKaiti-Regular--UniGB-UTF8-V Y}!
  200. /PSL_pathtextdict 26 dict def
  201. /PSL_pathtext
  202. {PSL_pathtextdict begin
  203. /ydepth exch def
  204. /textheight exch def
  205. /just exch def
  206. /offset exch def
  207. /str exch def
  208. /pathdist 0 def
  209. /setdist offset def
  210. /charcount 0 def
  211. /justy just 4 idiv textheight mul 2 div neg ydepth sub def
  212. V flattenpath
  213. {movetoproc} {linetoproc}
  214. {curvetoproc} {closepathproc}
  215. pathforall
  216. U N
  217. end
  218. } def
  219. PSL_pathtextdict begin
  220. /movetoproc
  221. { /newy exch def /newx exch def
  222. /firstx newx def /firsty newy def
  223. /ovr 0 def
  224. newx newy transform
  225. /cpy exch def /cpx exch def
  226. } def
  227. /linetoproc
  228. { /oldx newx def /oldy newy def
  229. /newy exch def /newx exch def
  230. /dx newx oldx sub def
  231. /dy newy oldy sub def
  232. /dist dx dup mul dy dup mul add sqrt def
  233. dist 0 ne
  234. { /dsx dx dist div ovr mul def
  235. /dsy dy dist div ovr mul def
  236. oldx dsx add oldy dsy add transform
  237. /cpy exch def /cpx exch def
  238. /pathdist pathdist dist add def
  239. {setdist pathdist le
  240. {charcount str length lt
  241. {setchar} {exit} ifelse}
  242. { /ovr setdist pathdist sub def
  243. exit}
  244. ifelse
  245. } loop
  246. } if
  247. } def
  248. /curvetoproc
  249. { (ERROR: No curveto's after flattenpath!)
  250. print
  251. } def
  252. /closepathproc
  253. {firstx firsty linetoproc
  254. firstx firsty movetoproc
  255. } def
  256. /setchar
  257. { /char str charcount 1 getinterval def
  258. /charcount charcount 1 add def
  259. /charwidth char stringwidth pop def
  260. V cpx cpy itransform T
  261. dy dx atan R
  262. 0 justy M
  263. char show
  264. 0 justy neg G
  265. currentpoint transform
  266. /cpy exch def /cpx exch def
  267. U /setdist setdist charwidth add def
  268. } def
  269. end
  270. /PSL_set_label_heights
  271. {
  272. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  273. /PSL_heights PSL_n_labels array def
  274. 0 1 PSL_n_labels_minus_1
  275. { /psl_k exch def
  276. /psl_label PSL_label_str psl_k get def
  277. PSL_label_font psl_k get cvx exec
  278. psl_label sH /PSL_height edef
  279. PSL_heights psl_k PSL_height put
  280. } for
  281. } def
  282. /PSL_curved_path_labels
  283. { /psl_bits exch def
  284. /PSL_placetext psl_bits 2 and 2 eq def
  285. /PSL_clippath psl_bits 4 and 4 eq def
  286. /PSL_strokeline false def
  287. /PSL_fillbox psl_bits 128 and 128 eq def
  288. /PSL_drawbox psl_bits 256 and 256 eq def
  289. /PSL_n_paths1 PSL_n_paths 1 sub def
  290. /PSL_usebox PSL_fillbox PSL_drawbox or def
  291. PSL_clippath {clipsave N clippath} if
  292. /psl_k 0 def
  293. /psl_p 0 def
  294. 0 1 PSL_n_paths1
  295. { /psl_kk exch def
  296. /PSL_n PSL_path_n psl_kk get def
  297. /PSL_m PSL_label_n psl_kk get def
  298. /PSL_x PSL_path_x psl_k PSL_n getinterval def
  299. /PSL_y PSL_path_y psl_k PSL_n getinterval def
  300. /PSL_node_tmp PSL_label_node psl_p PSL_m getinterval def
  301. /PSL_angle_tmp PSL_label_angle psl_p PSL_m getinterval def
  302. /PSL_str_tmp PSL_label_str psl_p PSL_m getinterval def
  303. /PSL_fnt_tmp PSL_label_font psl_p PSL_m getinterval def
  304. PSL_curved_path_label
  305. /psl_k psl_k PSL_n add def
  306. /psl_p psl_p PSL_m add def
  307. } for
  308. PSL_clippath {PSL_eoclip} if N
  309. } def
  310. /PSL_curved_path_label
  311. {
  312. /PSL_n1 PSL_n 1 sub def
  313. /PSL_m1 PSL_m 1 sub def
  314. PSL_CT_calcstringwidth
  315. PSL_CT_calclinedist
  316. PSL_CT_excludelabels
  317. PSL_CT_addcutpoints
  318. /PSL_nn1 PSL_nn 1 sub def
  319. /n 0 def
  320. /k 0 def
  321. /j 0 def
  322. /PSL_seg 0 def
  323. /PSL_xp PSL_nn array def
  324. /PSL_yp PSL_nn array def
  325. PSL_xp 0 PSL_xx 0 get put
  326. PSL_yp 0 PSL_yy 0 get put
  327. 1 1 PSL_nn1
  328. { /i exch def
  329. /node_type PSL_kind i get def
  330. /j j 1 add def
  331. PSL_xp j PSL_xx i get put
  332. PSL_yp j PSL_yy i get put
  333. node_type 1 eq
  334. {n 0 eq
  335. {PSL_CT_drawline}
  336. { PSL_CT_reversepath
  337. PSL_CT_textline} ifelse
  338. /j 0 def
  339. PSL_xp j PSL_xx i get put
  340. PSL_yp j PSL_yy i get put
  341. } if
  342. } for
  343. n 0 eq {PSL_CT_drawline} if
  344. } def
  345. /PSL_CT_textline
  346. { PSL_fnt k get cvx exec
  347. /PSL_height PSL_heights k get def
  348. PSL_placetext {PSL_CT_placelabel} if
  349. PSL_clippath {PSL_CT_clippath} if
  350. /n 0 def /k k 1 add def
  351. } def
  352. /PSL_CT_calcstringwidth
  353. { /PSL_width_tmp PSL_m array def
  354. 0 1 PSL_m1
  355. { /i exch def
  356. PSL_fnt_tmp i get cvx exec
  357. PSL_width_tmp i PSL_str_tmp i get stringwidth pop put
  358. } for
  359. } def
  360. /PSL_CT_calclinedist
  361. { /PSL_newx PSL_x 0 get def
  362. /PSL_newy PSL_y 0 get def
  363. /dist 0.0 def
  364. /PSL_dist PSL_n array def
  365. PSL_dist 0 0.0 put
  366. 1 1 PSL_n1
  367. { /i exch def
  368. /PSL_oldx PSL_newx def
  369. /PSL_oldy PSL_newy def
  370. /PSL_newx PSL_x i get def
  371. /PSL_newy PSL_y i get def
  372. /dx PSL_newx PSL_oldx sub def
  373. /dy PSL_newy PSL_oldy sub def
  374. /dist dist dx dx mul dy dy mul add sqrt add def
  375. PSL_dist i dist put
  376. } for
  377. } def
  378. /PSL_CT_excludelabels
  379. { /k 0 def
  380. /PSL_width PSL_m array def
  381. /PSL_angle PSL_m array def
  382. /PSL_node PSL_m array def
  383. /PSL_str PSL_m array def
  384. /PSL_fnt PSL_m array def
  385. /lastdist PSL_dist PSL_n1 get def
  386. 0 1 PSL_m1
  387. { /i exch def
  388. /dist PSL_dist PSL_node_tmp i get get def
  389. /halfwidth PSL_width_tmp i get 2 div PSL_gap_x add def
  390. /L_dist dist halfwidth sub def
  391. /R_dist dist halfwidth add def
  392. L_dist 0 gt R_dist lastdist lt and
  393. {
  394. PSL_width k PSL_width_tmp i get put
  395. PSL_node k PSL_node_tmp i get put
  396. PSL_angle k PSL_angle_tmp i get put
  397. PSL_str k PSL_str_tmp i get put
  398. PSL_fnt k PSL_fnt_tmp i get put
  399. /k k 1 add def
  400. } if
  401. } for
  402. /PSL_m k def
  403. /PSL_m1 PSL_m 1 sub def
  404. } def
  405. /PSL_CT_addcutpoints
  406. { /k 0 def
  407. /PSL_nc PSL_m 2 mul 1 add def
  408. /PSL_cuts PSL_nc array def
  409. /PSL_nc1 PSL_nc 1 sub def
  410. 0 1 PSL_m1
  411. { /i exch def
  412. /dist PSL_dist PSL_node i get get def
  413. /halfwidth PSL_width i get 2 div PSL_gap_x add def
  414. PSL_cuts k dist halfwidth sub put
  415. /k k 1 add def
  416. PSL_cuts k dist halfwidth add put
  417. /k k 1 add def
  418. } for
  419. PSL_cuts k 100000.0 put
  420. /PSL_nn PSL_n PSL_m 2 mul add def
  421. /PSL_xx PSL_nn array def
  422. /PSL_yy PSL_nn array def
  423. /PSL_kind PSL_nn array def
  424. /j 0 def
  425. /k 0 def
  426. /dist 0.0 def
  427. 0 1 PSL_n1
  428. { /i exch def
  429. /last_dist dist def
  430. /dist PSL_dist i get def
  431. k 1 PSL_nc1
  432. { /kk exch def
  433. /this_cut PSL_cuts kk get def
  434. dist this_cut gt
  435. { /ds dist last_dist sub def
  436. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
  437. /i1 i 0 eq {0} {i 1 sub} ifelse def
  438. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
  439. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  440. PSL_kind j 1 put
  441. /j j 1 add def
  442. /k k 1 add def
  443. } if
  444. } for
  445. dist PSL_cuts k get le
  446. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  447. PSL_kind j 0 put
  448. /j j 1 add def
  449. } if
  450. } for
  451. } def
  452. /PSL_CT_reversepath
  453. {PSL_xp j get PSL_xp 0 get lt
  454. {0 1 j 2 idiv
  455. { /left exch def
  456. /right j left sub def
  457. /tmp PSL_xp left get def
  458. PSL_xp left PSL_xp right get put
  459. PSL_xp right tmp put
  460. /tmp PSL_yp left get def
  461. PSL_yp left PSL_yp right get put
  462. PSL_yp right tmp put
  463. } for
  464. } if
  465. } def
  466. /PSL_CT_placelabel
  467. {
  468. /PSL_just PSL_label_justify k get def
  469. /PSL_height PSL_heights k get def
  470. /psl_label PSL_str k get def
  471. /psl_depth psl_label sd def
  472. PSL_usebox
  473. {PSL_CT_clippath
  474. PSL_fillbox
  475. {V PSL_setboxrgb fill U} if
  476. PSL_drawbox
  477. {V PSL_setboxpen S U} if N
  478. } if
  479. PSL_CT_placeline psl_label PSL_gap_x PSL_just PSL_height psl_depth PSL_pathtext
  480. } def
  481. /PSL_CT_clippath
  482. {
  483. /H PSL_height 2 div PSL_gap_y add def
  484. /xoff j 1 add array def
  485. /yoff j 1 add array def
  486. /angle 0 def
  487. 0 1 j {
  488. /ii exch def
  489. /x PSL_xp ii get def
  490. /y PSL_yp ii get def
  491. ii 0 eq {
  492. /x1 PSL_xp 1 get def
  493. /y1 PSL_yp 1 get def
  494. /dx x1 x sub def
  495. /dy y1 y sub def
  496. }
  497. { /i1 ii 1 sub def
  498. /x1 PSL_xp i1 get def
  499. /y1 PSL_yp i1 get def
  500. /dx x x1 sub def
  501. /dy y y1 sub def
  502. } ifelse
  503. dx 0.0 eq dy 0.0 eq and not
  504. { /angle dy dx atan 90 add def} if
  505. /sina angle sin def
  506. /cosa angle cos def
  507. xoff ii H cosa mul put
  508. yoff ii H sina mul put
  509. } for
  510. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  511. 1 1 j {
  512. /ii exch def
  513. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  514. } for
  515. j -1 0 {
  516. /ii exch def
  517. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  518. } for P
  519. } def
  520. /PSL_CT_drawline
  521. {
  522. /str 20 string def
  523. PSL_strokeline
  524. {PSL_CT_placeline S} if
  525. /PSL_seg PSL_seg 1 add def
  526. /n 1 def
  527. } def
  528. /PSL_CT_placeline
  529. {PSL_xp 0 get PSL_yp 0 get M
  530. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
  531. } def
  532. /PSL_draw_path_lines
  533. {
  534. /PSL_n_paths1 PSL_n_paths 1 sub def
  535. V
  536. /psl_start 0 def
  537. 0 1 PSL_n_paths1
  538. { /psl_k exch def
  539. /PSL_n PSL_path_n psl_k get def
  540. /PSL_n1 PSL_n 1 sub def
  541. PSL_path_pen psl_k get cvx exec
  542. N
  543. PSL_path_x psl_start get PSL_path_y psl_start get M
  544. 1 1 PSL_n1
  545. { /psl_i exch def
  546. /psl_kk psl_i psl_start add def
  547. PSL_path_x psl_kk get PSL_path_y psl_kk get L
  548. } for
  549. /psl_xclose PSL_path_x psl_kk get PSL_path_x psl_start get sub def
  550. /psl_yclose PSL_path_y psl_kk get PSL_path_y psl_start get sub def
  551. psl_xclose 0 eq psl_yclose 0 eq and { P } if
  552. S
  553. /psl_start psl_start PSL_n add def
  554. } for
  555. U
  556. } def
  557. /PSL_straight_path_labels
  558. {
  559. /psl_bits exch def
  560. /PSL_placetext psl_bits 2 and 2 eq def
  561. /PSL_rounded psl_bits 32 and 32 eq def
  562. /PSL_fillbox psl_bits 128 and 128 eq def
  563. /PSL_drawbox psl_bits 256 and 256 eq def
  564. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  565. /PSL_usebox PSL_fillbox PSL_drawbox or def
  566. 0 1 PSL_n_labels_minus_1
  567. { /psl_k exch def
  568. PSL_ST_prepare_text
  569. PSL_usebox
  570. { PSL_rounded
  571. {PSL_ST_textbox_round}
  572. {PSL_ST_textbox_rect}
  573. ifelse
  574. PSL_fillbox {V PSL_setboxrgb fill U} if
  575. PSL_drawbox {V PSL_setboxpen S U} if
  576. N
  577. } if
  578. PSL_placetext {PSL_ST_place_label} if
  579. } for
  580. } def
  581. /PSL_straight_path_clip
  582. {
  583. /psl_bits exch def
  584. /PSL_rounded psl_bits 32 and 32 eq def
  585. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  586. N clipsave clippath
  587. 0 1 PSL_n_labels_minus_1
  588. { /psl_k exch def
  589. PSL_ST_prepare_text
  590. PSL_rounded
  591. {PSL_ST_textbox_round}
  592. {PSL_ST_textbox_rect}
  593. ifelse
  594. } for
  595. PSL_eoclip N
  596. } def
  597. /PSL_ST_prepare_text
  598. {
  599. /psl_xp PSL_txt_x psl_k get def
  600. /psl_yp PSL_txt_y psl_k get def
  601. /psl_label PSL_label_str psl_k get def
  602. PSL_label_font psl_k get cvx exec
  603. /PSL_height PSL_heights psl_k get def
  604. /psl_boxH PSL_height PSL_gap_y 2 mul add def
  605. /PSL_just PSL_label_justify psl_k get def
  606. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
  607. /PSL_justy PSL_just 4 idiv 2 div neg def
  608. /psl_SW psl_label stringwidth pop def
  609. /psl_boxW psl_SW PSL_gap_x 2 mul add def
  610. /psl_x0 psl_SW PSL_justx mul def
  611. /psl_y0 PSL_justy PSL_height mul def
  612. /psl_angle PSL_label_angle psl_k get def
  613. } def
  614. /PSL_ST_textbox_rect
  615. {
  616. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  617. PSL_gap_x neg PSL_gap_y neg M
  618. 0 psl_boxH D psl_boxW 0 D 0 psl_boxH neg D P
  619. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  620. } def
  621. /PSL_ST_textbox_round
  622. {
  623. /psl_BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
  624. /psl_xd PSL_gap_x psl_BoxR sub def
  625. /psl_yd PSL_gap_y psl_BoxR sub def
  626. /psl_xL PSL_gap_x neg def
  627. /psl_yB PSL_gap_y neg def
  628. /psl_yT psl_boxH psl_yB add def
  629. /psl_H2 PSL_height psl_yd 2 mul add def
  630. /psl_W2 psl_SW psl_xd 2 mul add def
  631. /psl_xR psl_xL psl_boxW add def
  632. /psl_x0 psl_SW PSL_justx mul def
  633. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  634. psl_xL psl_yd M
  635. psl_xL psl_yT psl_xR psl_yT psl_BoxR arct psl_W2 0 D
  636. psl_xR psl_yT psl_xR psl_yB psl_BoxR arct 0 psl_H2 neg D
  637. psl_xR psl_yB psl_xL psl_yB psl_BoxR arct psl_W2 neg 0 D
  638. psl_xL psl_yB psl_xL psl_yd psl_BoxR arct P
  639. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  640. } def
  641. /PSL_ST_place_label
  642. {
  643. V psl_xp psl_yp T psl_angle R
  644. psl_SW PSL_justx mul psl_y0 M
  645. psl_label dup sd neg 0 exch G show
  646. U
  647. } def
  648. /PSL_nclip 0 def
  649. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
  650. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
  651. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
  652. %%EndProlog
  653. %%BeginSetup
  654. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  655. PSLevel 1 gt { << /WhiteIsOpaque true >> setpagedevice } if
  656. PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  657. %%EndSetup
  658. %%Page: 1 1
  659. %%BeginPageSetup
  660. V 0.06 0.06 scale
  661. %%EndPageSetup
  662. /PSL_page_xsize 10200 def
  663. /PSL_page_ysize 13200 def
  664. /PSL_plot_completion {} def
  665. /PSL_movie_completion {} def
  666. %PSL_End_Header
  667. gsave
  668. 0 A
  669. FQ
  670. O0
  671. -4200 PSL_xorig sub PSL_page_xsize 2 div add 1200 TM
  672. % PostScript produced by:
  673. %@GMT: gmt psbasemap -R-8/8/-10/10 -JX7i -P -Xc -K '-B+tcircles should plot on curves'
  674. %@PROJ: xy -8.00000000 8.00000000 -10.00000000 10.00000000 -8.000 8.000 -10.000 10.000 +xy
  675. %GMTBoundingBox: -252 72 504 504
  676. %%BeginObject PSL_Layer_1
  677. 0 setlinecap
  678. 0 setlinejoin
  679. 3.32551 setmiterlimit
  680. 25 W
  681. /PSL_H_y 233 def
  682. 4200 8400 PSL_H_y add M
  683. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  684. 400 F0
  685. (circles should plot on curves) bc Z
  686. %%EndObject
  687. 0 A
  688. FQ
  689. O0
  690. 0 0 TM
  691. % PostScript produced by:
  692. %@GMT: gmt psmeca -R-8/8/-10/10 -JX7i -P -M -Sa6i -N -W1p -O -K -h4 -C -T
  693. %@PROJ: xy -8.00000000 8.00000000 -10.00000000 10.00000000 -8.000 8.000 -10.000 10.000 +xy
  694. %%BeginObject PSL_Layer_2
  695. 0 setlinecap
  696. 0 setlinejoin
  697. 3.32551 setmiterlimit
  698. 17 W
  699. O1
  700. 3601 4200 4200 Sc
  701. 6317 7113 M
  702. 94 -83 D
  703. 91 -87 D
  704. 88 -89 D
  705. 84 -92 D
  706. 41 -47 D
  707. 117 -145 D
  708. 109 -151 D
  709. 68 -103 D
  710. 64 -104 D
  711. 89 -161 D
  712. 55 -109 D
  713. 50 -111 D
  714. 47 -112 D
  715. 43 -113 D
  716. 39 -115 D
  717. 35 -115 D
  718. 31 -116 D
  719. 27 -117 D
  720. 23 -117 D
  721. 20 -118 D
  722. 15 -118 D
  723. 11 -118 D
  724. 10 -177 D
  725. 1 -177 D
  726. -8 -177 D
  727. -16 -175 D
  728. -25 -174 D
  729. -33 -172 D
  730. -41 -169 D
  731. -49 -168 D
  732. -57 -164 D
  733. -65 -161 D
  734. -73 -158 D
  735. -25 -52 D
  736. -82 -153 D
  737. -59 -99 D
  738. -62 -98 D
  739. -65 -95 D
  740. -33 -47 D
  741. -105 -138 D
  742. -74 -89 D
  743. -116 -129 D
  744. -80 -82 D
  745. -84 -81 D
  746. -85 -77 D
  747. -89 -75 D
  748. -90 -73 D
  749. -93 -69 D
  750. -144 -98 D
  751. -49 -32 D
  752. -100 -60 D
  753. -102 -57 D
  754. -103 -54 D
  755. -53 -26 D
  756. -53 -25 D
  757. -53 -24 D
  758. -54 -23 D
  759. -55 -22 D
  760. -54 -22 D
  761. -55 -20 D
  762. -56 -20 D
  763. -56 -19 D
  764. -56 -18 D
  765. -57 -17 D
  766. -56 -16 D
  767. -58 -15 D
  768. -57 -15 D
  769. -58 -13 D
  770. -58 -12 D
  771. -58 -12 D
  772. -59 -10 D
  773. -59 -10 D
  774. -59 -8 D
  775. -59 -8 D
  776. -60 -7 D
  777. -59 -5 D
  778. -60 -5 D
  779. -60 -4 D
  780. -60 -2 D
  781. -60 -2 D
  782. -60 -1 D
  783. -182 4 D
  784. -121 8 D
  785. -121 12 D
  786. -121 16 D
  787. -180 32 D
  788. -120 27 D
  789. -119 31 D
  790. -119 35 D
  791. -117 39 D
  792. -117 43 D
  793. -115 48 D
  794. -114 51 D
  795. -112 56 D
  796. -55 29 D
  797. -110 62 D
  798. -54 33 D
  799. S
  800. 1287 6317 M
  801. 5826 -4234 D
  802. S
  803. {1 A} FS
  804. O0
  805. 4200 7851 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  806. 150 F0
  807. (1) bc Z
  808. %%EndObject
  809. 0 A
  810. FQ
  811. O0
  812. 0 0 TM
  813. % PostScript produced by:
  814. %@GMT: gmt pspolar -R-8/8/-10/10 -JX7i -D0./0. -M4c -N -Sc0.2i -Qe -O -K -P -h3
  815. %@PROJ: xy -8.00000000 8.00000000 -10.00000000 10.00000000 -8.000 8.000 -10.000 10.000 +xy
  816. %%BeginObject PSL_Layer_3
  817. 0 setlinecap
  818. 0 setlinejoin
  819. 3.32551 setmiterlimit
  820. 4 W
  821. 945 4200 4200 Sc
  822. {0.98 A} FS
  823. O1
  824. 96 4285 4138 Sc
  825. %%EndObject
  826. 0 A
  827. FQ
  828. O0
  829. 0 0 TM
  830. % PostScript produced by:
  831. %@GMT: gmt psmeca -R-8/8/-10/10 -JX7i -P -M -Sa6i -N -W1p -O -K -h4 -C -T
  832. %@PROJ: xy -8.00000000 8.00000000 -10.00000000 10.00000000 -8.000 8.000 -10.000 10.000 +xy
  833. %%BeginObject PSL_Layer_4
  834. 0 setlinecap
  835. 0 setlinejoin
  836. 3.32551 setmiterlimit
  837. 17 W
  838. O1
  839. 3601 4200 4200 Sc
  840. 7625 5313 M
  841. 17 -126 D
  842. 7 -63 D
  843. 10 -126 D
  844. 5 -125 D
  845. 1 -124 D
  846. -3 -124 D
  847. -13 -184 D
  848. -14 -121 D
  849. -29 -179 D
  850. -24 -118 D
  851. -28 -116 D
  852. -49 -171 D
  853. -37 -112 D
  854. -40 -110 D
  855. -67 -161 D
  856. -74 -156 D
  857. -53 -101 D
  858. -85 -148 D
  859. -91 -142 D
  860. -31 -46 D
  861. -65 -91 D
  862. -102 -131 D
  863. -107 -125 D
  864. -74 -81 D
  865. -76 -78 D
  866. -78 -75 D
  867. -121 -108 D
  868. -124 -102 D
  869. -85 -65 D
  870. -86 -62 D
  871. -132 -88 D
  872. -90 -55 D
  873. -91 -53 D
  874. -93 -50 D
  875. -93 -47 D
  876. -48 -23 D
  877. -47 -22 D
  878. -48 -21 D
  879. -48 -21 D
  880. -49 -20 D
  881. -48 -19 D
  882. -49 -18 D
  883. -49 -18 D
  884. -49 -17 D
  885. -50 -17 D
  886. -50 -16 D
  887. -50 -15 D
  888. -50 -14 D
  889. -50 -14 D
  890. -51 -13 D
  891. -51 -12 D
  892. -51 -12 D
  893. -51 -11 D
  894. -52 -10 D
  895. -51 -9 D
  896. -52 -9 D
  897. -52 -8 D
  898. -52 -7 D
  899. -52 -7 D
  900. -52 -6 D
  901. -53 -5 D
  902. -52 -4 D
  903. -53 -4 D
  904. -53 -3 D
  905. -53 -2 D
  906. -53 -1 D
  907. -53 -1 D
  908. -160 2 D
  909. -160 10 D
  910. -107 10 D
  911. -161 22 D
  912. -161 28 D
  913. -160 37 D
  914. -54 13 D
  915. -159 46 D
  916. -106 35 D
  917. -158 59 D
  918. -156 67 D
  919. -103 49 D
  920. -152 80 D
  921. -100 58 D
  922. -148 94 D
  923. -96 67 D
  924. -95 70 D
  925. -93 74 D
  926. -91 78 D
  927. -88 81 D
  928. -87 85 D
  929. -84 88 D
  930. -81 91 D
  931. -40 47 D
  932. -77 97 D
  933. -74 99 D
  934. -70 103 D
  935. -68 106 D
  936. -64 109 D
  937. -60 112 D
  938. S
  939. 3087 7625 M
  940. 2226 -6850 D
  941. S
  942. {1 A} FS
  943. O0
  944. 4200 7851 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  945. 150 F0
  946. (2) bc Z
  947. %%EndObject
  948. 0 A
  949. FQ
  950. O0
  951. 0 0 TM
  952. % PostScript produced by:
  953. %@GMT: gmt pspolar -R-8/8/-10/10 -JX7i -D0./0. -M4c -N -Sc0.2i -Qe -O -K -P -h3
  954. %@PROJ: xy -8.00000000 8.00000000 -10.00000000 10.00000000 -8.000 8.000 -10.000 10.000 +xy
  955. %%BeginObject PSL_Layer_5
  956. 0 setlinecap
  957. 0 setlinejoin
  958. 3.32551 setmiterlimit
  959. 4 W
  960. 945 4200 4200 Sc
  961. {0.98 A} FS
  962. O1
  963. 96 4265 4001 Sc
  964. %%EndObject
  965. 0 A
  966. FQ
  967. O0
  968. 0 0 TM
  969. % PostScript produced by:
  970. %@GMT: gmt psmeca -R-8/8/-10/10 -JX7i -P -M -Sa6i -N -W1p -O -K -h4 -C -T
  971. %@PROJ: xy -8.00000000 8.00000000 -10.00000000 10.00000000 -8.000 8.000 -10.000 10.000 +xy
  972. %%BeginObject PSL_Layer_6
  973. 0 setlinecap
  974. 0 setlinejoin
  975. 3.32551 setmiterlimit
  976. 17 W
  977. O1
  978. 3601 4200 4200 Sc
  979. 7625 3087 M
  980. -71 -108 D
  981. -75 -104 D
  982. -78 -100 D
  983. -81 -97 D
  984. -84 -92 D
  985. -86 -89 D
  986. -89 -85 D
  987. -45 -41 D
  988. -92 -78 D
  989. -94 -75 D
  990. -95 -71 D
  991. -146 -98 D
  992. -98 -61 D
  993. -100 -57 D
  994. -100 -53 D
  995. -50 -26 D
  996. -51 -24 D
  997. -50 -23 D
  998. -51 -23 D
  999. -51 -21 D
  1000. -51 -21 D
  1001. -51 -20 D
  1002. -50 -19 D
  1003. -51 -18 D
  1004. -51 -17 D
  1005. -51 -17 D
  1006. -51 -16 D
  1007. -51 -14 D
  1008. -51 -14 D
  1009. -51 -14 D
  1010. -51 -12 D
  1011. -50 -12 D
  1012. -51 -11 D
  1013. -50 -10 D
  1014. -51 -9 D
  1015. -50 -9 D
  1016. -50 -8 D
  1017. -51 -8 D
  1018. -50 -6 D
  1019. -49 -6 D
  1020. -50 -5 D
  1021. -50 -5 D
  1022. -49 -4 D
  1023. -50 -3 D
  1024. -49 -3 D
  1025. -49 -2 D
  1026. -49 -1 D
  1027. -49 -1 D
  1028. -48 0 D
  1029. -97 1 D
  1030. -144 7 D
  1031. -95 7 D
  1032. -141 16 D
  1033. -93 12 D
  1034. -185 33 D
  1035. -92 19 D
  1036. -180 45 D
  1037. -178 53 D
  1038. -132 46 D
  1039. -130 50 D
  1040. -129 55 D
  1041. -127 59 D
  1042. -126 64 D
  1043. -164 93 D
  1044. -82 50 D
  1045. -120 79 D
  1046. -118 85 D
  1047. -116 89 D
  1048. -77 63 D
  1049. -75 65 D
  1050. -74 68 D
  1051. -109 106 D
  1052. -105 112 D
  1053. -103 118 D
  1054. -66 82 D
  1055. -96 127 D
  1056. -92 134 D
  1057. -86 140 D
  1058. -55 97 D
  1059. -53 99 D
  1060. -50 102 D
  1061. -69 158 D
  1062. -42 108 D
  1063. -39 111 D
  1064. -36 114 D
  1065. -32 115 D
  1066. -28 118 D
  1067. -24 119 D
  1068. -20 122 D
  1069. -22 186 D
  1070. -5 62 D
  1071. -6 127 D
  1072. -2 127 D
  1073. 1 65 D
  1074. 6 129 D
  1075. S
  1076. 5313 7625 M
  1077. -2226 -6850 D
  1078. S
  1079. {1 A} FS
  1080. O0
  1081. 4200 7851 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1082. 150 F0
  1083. (3) bc Z
  1084. %%EndObject
  1085. 0 A
  1086. FQ
  1087. O0
  1088. 0 0 TM
  1089. % PostScript produced by:
  1090. %@GMT: gmt pspolar -R-8/8/-10/10 -JX7i -D0./0. -M4c -N -Sc0.2i -Qe -O -K -P -h3
  1091. %@PROJ: xy -8.00000000 8.00000000 -10.00000000 10.00000000 -8.000 8.000 -10.000 10.000 +xy
  1092. %%BeginObject PSL_Layer_7
  1093. 0 setlinecap
  1094. 0 setlinejoin
  1095. 3.32551 setmiterlimit
  1096. 4 W
  1097. 945 4200 4200 Sc
  1098. {0.98 A} FS
  1099. O1
  1100. 96 4104 3903 Sc
  1101. %%EndObject
  1102. 0 A
  1103. FQ
  1104. O0
  1105. 0 0 TM
  1106. % PostScript produced by:
  1107. %@GMT: gmt psmeca -R-8/8/-10/10 -JX7i -P -M -Sa6i -N -W1p -O -K -h4 -C -T
  1108. %@PROJ: xy -8.00000000 8.00000000 -10.00000000 10.00000000 -8.000 8.000 -10.000 10.000 +xy
  1109. %%BeginObject PSL_Layer_8
  1110. 0 setlinecap
  1111. 0 setlinejoin
  1112. 3.32551 setmiterlimit
  1113. 17 W
  1114. O1
  1115. 3601 4200 4200 Sc
  1116. 6317 1287 M
  1117. -65 -18 D
  1118. -64 -16 D
  1119. -64 -15 D
  1120. -65 -14 D
  1121. -64 -12 D
  1122. -64 -10 D
  1123. -64 -9 D
  1124. -64 -8 D
  1125. -63 -7 D
  1126. -64 -5 D
  1127. -63 -4 D
  1128. -62 -3 D
  1129. -62 -2 D
  1130. -124 1 D
  1131. -122 5 D
  1132. -119 9 D
  1133. -118 13 D
  1134. -172 26 D
  1135. -112 22 D
  1136. -163 39 D
  1137. -158 46 D
  1138. -102 33 D
  1139. -148 55 D
  1140. -95 38 D
  1141. -138 62 D
  1142. -133 66 D
  1143. -127 69 D
  1144. -122 72 D
  1145. -118 75 D
  1146. -112 77 D
  1147. -72 52 D
  1148. -139 108 D
  1149. -131 111 D
  1150. -94 85 D
  1151. -90 87 D
  1152. -115 119 D
  1153. -82 91 D
  1154. -80 93 D
  1155. -76 94 D
  1156. -74 97 D
  1157. -93 131 D
  1158. -45 67 D
  1159. -87 137 D
  1160. -82 142 D
  1161. -58 109 D
  1162. -38 74 D
  1163. -71 152 D
  1164. -50 118 D
  1165. -63 162 D
  1166. -57 168 D
  1167. -38 131 D
  1168. -35 134 D
  1169. -31 139 D
  1170. -26 142 D
  1171. -15 97 D
  1172. -23 200 D
  1173. -10 155 D
  1174. -4 159 D
  1175. 3 163 D
  1176. 16 222 D
  1177. 22 170 D
  1178. 31 173 D
  1179. 41 175 D
  1180. 33 117 D
  1181. 38 118 D
  1182. 66 176 D
  1183. 51 117 D
  1184. 55 116 D
  1185. 62 115 D
  1186. 32 57 D
  1187. 70 113 D
  1188. 36 55 D
  1189. S
  1190. 7113 6317 M
  1191. -2913 -2117 D
  1192. -2913 -2117 D
  1193. S
  1194. {1 A} FS
  1195. O0
  1196. 4200 7851 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1197. 150 F0
  1198. (4) bc Z
  1199. %%EndObject
  1200. 0 A
  1201. FQ
  1202. O0
  1203. 0 0 TM
  1204. % PostScript produced by:
  1205. %@GMT: gmt pspolar -R-8/8/-10/10 -JX7i -D0./0. -M4c -N -Sc0.2i -Qe -O -K -P -h3
  1206. %@PROJ: xy -8.00000000 8.00000000 -10.00000000 10.00000000 -8.000 8.000 -10.000 10.000 +xy
  1207. %%BeginObject PSL_Layer_9
  1208. 0 setlinecap
  1209. 0 setlinejoin
  1210. 3.32551 setmiterlimit
  1211. 4 W
  1212. 945 4200 4200 Sc
  1213. {0.98 A} FS
  1214. O1
  1215. 96 3866 3957 Sc
  1216. %%EndObject
  1217. 0 A
  1218. FQ
  1219. O0
  1220. 0 0 TM
  1221. % PostScript produced by:
  1222. %@GMT: gmt psmeca -R-8/8/-10/10 -JX7i -P -M -Sa6i -N -W1p -O -K -h4 -C -T
  1223. %@PROJ: xy -8.00000000 8.00000000 -10.00000000 10.00000000 -8.000 8.000 -10.000 10.000 +xy
  1224. %%BeginObject PSL_Layer_10
  1225. 0 setlinecap
  1226. 0 setlinejoin
  1227. 3.32551 setmiterlimit
  1228. 17 W
  1229. O1
  1230. 3601 4200 4200 Sc
  1231. 4200 599 M
  1232. -62 32 D
  1233. -121 68 D
  1234. -117 73 D
  1235. -111 77 D
  1236. -107 81 D
  1237. -51 41 D
  1238. -147 129 D
  1239. -91 89 D
  1240. -44 45 D
  1241. -83 91 D
  1242. -79 92 D
  1243. -74 93 D
  1244. -69 93 D
  1245. -65 93 D
  1246. -90 139 D
  1247. -55 92 D
  1248. -75 137 D
  1249. -46 90 D
  1250. -82 177 D
  1251. -54 129 D
  1252. -63 168 D
  1253. -54 163 D
  1254. -35 120 D
  1255. -21 78 D
  1256. -45 191 D
  1257. -23 111 D
  1258. -36 218 D
  1259. -22 176 D
  1260. -10 104 D
  1261. -13 207 D
  1262. -4 170 D
  1263. 2 170 D
  1264. 6 137 D
  1265. 12 172 D
  1266. 15 140 D
  1267. 25 178 D
  1268. 25 146 D
  1269. 40 187 D
  1270. 28 115 D
  1271. 44 158 D
  1272. 52 162 D
  1273. 61 167 D
  1274. 34 85 D
  1275. 36 86 D
  1276. 82 177 D
  1277. 70 135 D
  1278. 51 92 D
  1279. 55 92 D
  1280. 90 139 D
  1281. 99 140 D
  1282. 72 93 D
  1283. 37 46 D
  1284. 79 92 D
  1285. 83 91 D
  1286. 89 90 D
  1287. 46 44 D
  1288. 147 129 D
  1289. 104 82 D
  1290. 109 79 D
  1291. 56 38 D
  1292. 117 73 D
  1293. 121 68 D
  1294. 62 32 D
  1295. S
  1296. 7801 4200 M
  1297. -3601 0 D
  1298. -3601 0 D
  1299. S
  1300. {1 A} FS
  1301. O0
  1302. 4200 7851 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1303. 150 F0
  1304. (5) bc Z
  1305. %%EndObject
  1306. 0 A
  1307. FQ
  1308. O0
  1309. 0 0 TM
  1310. % PostScript produced by:
  1311. %@GMT: gmt pspolar -R-8/8/-10/10 -JX7i -D0./0. -M4c -N -Sc0.2i -Qe -O -K -P -h3
  1312. %@PROJ: xy -8.00000000 8.00000000 -10.00000000 10.00000000 -8.000 8.000 -10.000 10.000 +xy
  1313. %%BeginObject PSL_Layer_11
  1314. 0 setlinecap
  1315. 0 setlinejoin
  1316. 3.32551 setmiterlimit
  1317. 4 W
  1318. 945 4200 4200 Sc
  1319. {0.98 A} FS
  1320. O1
  1321. 96 3689 4200 Sc
  1322. %%EndObject
  1323. 0 A
  1324. FQ
  1325. O0
  1326. 0 0 TM
  1327. % PostScript produced by:
  1328. %@GMT: gmt psmeca -R-8/8/-10/10 -JX7i -P -M -Sa6i -N -W1p -O -K -h4 -C -T
  1329. %@PROJ: xy -8.00000000 8.00000000 -10.00000000 10.00000000 -8.000 8.000 -10.000 10.000 +xy
  1330. %%BeginObject PSL_Layer_12
  1331. 0 setlinecap
  1332. 0 setlinejoin
  1333. 3.32551 setmiterlimit
  1334. 17 W
  1335. O1
  1336. 3601 4200 4200 Sc
  1337. 2083 1287 M
  1338. -24 72 D
  1339. -22 72 D
  1340. -20 73 D
  1341. -34 145 D
  1342. -27 145 D
  1343. -10 72 D
  1344. -15 142 D
  1345. -6 71 D
  1346. -6 138 D
  1347. -1 69 D
  1348. 5 198 D
  1349. 9 128 D
  1350. 20 183 D
  1351. 37 230 D
  1352. 34 160 D
  1353. 50 199 D
  1354. 41 138 D
  1355. 42 130 D
  1356. 58 162 D
  1357. 74 185 D
  1358. 75 169 D
  1359. 75 155 D
  1360. 75 144 D
  1361. 90 161 D
  1362. 90 150 D
  1363. 92 143 D
  1364. 78 114 D
  1365. 96 134 D
  1366. 118 154 D
  1367. 107 131 D
  1368. 115 133 D
  1369. 148 158 D
  1370. 91 93 D
  1371. 125 119 D
  1372. 53 49 D
  1373. 84 74 D
  1374. 153 128 D
  1375. 101 79 D
  1376. 108 80 D
  1377. 116 81 D
  1378. 170 109 D
  1379. 138 82 D
  1380. 149 80 D
  1381. 106 53 D
  1382. 168 76 D
  1383. 119 47 D
  1384. 124 45 D
  1385. 129 42 D
  1386. 133 37 D
  1387. 69 17 D
  1388. 140 29 D
  1389. 144 23 D
  1390. 74 9 D
  1391. 148 13 D
  1392. 151 4 D
  1393. 77 -1 D
  1394. S
  1395. 7113 2083 M
  1396. -5826 4234 D
  1397. S
  1398. {1 A} FS
  1399. O0
  1400. 4200 7851 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1401. 150 F0
  1402. (6) bc Z
  1403. %%EndObject
  1404. 0 A
  1405. FQ
  1406. O0
  1407. 0 0 TM
  1408. % PostScript produced by:
  1409. %@GMT: gmt pspolar -R-8/8/-10/10 -JX7i -D0./0. -M4c -N -Sc0.2i -Qe -O -K -P -h3
  1410. %@PROJ: xy -8.00000000 8.00000000 -10.00000000 10.00000000 -8.000 8.000 -10.000 10.000 +xy
  1411. %%BeginObject PSL_Layer_13
  1412. 0 setlinecap
  1413. 0 setlinejoin
  1414. 3.32551 setmiterlimit
  1415. 4 W
  1416. 945 4200 4200 Sc
  1417. {0.98 A} FS
  1418. O1
  1419. 96 3709 4557 Sc
  1420. %%EndObject
  1421. 0 A
  1422. FQ
  1423. O0
  1424. 0 0 TM
  1425. % PostScript produced by:
  1426. %@GMT: gmt psmeca -R-8/8/-10/10 -JX7i -P -M -Sa6i -N -W1p -O -K -h4 -C -T
  1427. %@PROJ: xy -8.00000000 8.00000000 -10.00000000 10.00000000 -8.000 8.000 -10.000 10.000 +xy
  1428. %%BeginObject PSL_Layer_14
  1429. 0 setlinecap
  1430. 0 setlinejoin
  1431. 3.32551 setmiterlimit
  1432. 17 W
  1433. O1
  1434. 3601 4200 4200 Sc
  1435. 775 3087 M
  1436. 41 78 D
  1437. 43 77 D
  1438. 45 75 D
  1439. 48 73 D
  1440. 99 141 D
  1441. 52 67 D
  1442. 108 129 D
  1443. 54 61 D
  1444. 110 115 D
  1445. 55 55 D
  1446. 110 103 D
  1447. 54 48 D
  1448. 107 91 D
  1449. 155 123 D
  1450. 195 141 D
  1451. 135 91 D
  1452. 127 81 D
  1453. 157 93 D
  1454. 177 98 D
  1455. 159 83 D
  1456. 172 84 D
  1457. 180 81 D
  1458. 162 68 D
  1459. 172 68 D
  1460. 143 52 D
  1461. 158 55 D
  1462. 159 50 D
  1463. 101 31 D
  1464. 235 64 D
  1465. 190 46 D
  1466. 215 46 D
  1467. 152 28 D
  1468. 169 27 D
  1469. 151 21 D
  1470. 167 18 D
  1471. 187 16 D
  1472. 154 8 D
  1473. 168 5 D
  1474. 183 -1 D
  1475. 197 -8 D
  1476. 213 -18 D
  1477. 149 -19 D
  1478. 155 -25 D
  1479. 159 -33 D
  1480. 81 -19 D
  1481. 163 -46 D
  1482. 81 -26 D
  1483. 82 -29 D
  1484. 81 -31 D
  1485. 81 -34 D
  1486. 80 -37 D
  1487. 79 -39 D
  1488. S
  1489. 5313 775 M
  1490. -2226 6850 D
  1491. S
  1492. {1 A} FS
  1493. O0
  1494. 4200 7851 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1495. 150 F0
  1496. (7) bc Z
  1497. %%EndObject
  1498. 0 A
  1499. FQ
  1500. O0
  1501. 0 0 TM
  1502. % PostScript produced by:
  1503. %@GMT: gmt pspolar -R-8/8/-10/10 -JX7i -D0./0. -M4c -N -Sc0.2i -Qe -O -K -P -h3
  1504. %@PROJ: xy -8.00000000 8.00000000 -10.00000000 10.00000000 -8.000 8.000 -10.000 10.000 +xy
  1505. %%BeginObject PSL_Layer_15
  1506. 0 setlinecap
  1507. 0 setlinejoin
  1508. 3.32551 setmiterlimit
  1509. 4 W
  1510. 945 4200 4200 Sc
  1511. {0.98 A} FS
  1512. O1
  1513. 96 3984 4864 Sc
  1514. %%EndObject
  1515. 0 A
  1516. FQ
  1517. O0
  1518. 0 0 TM
  1519. % PostScript produced by:
  1520. %@GMT: gmt psmeca -R-8/8/-10/10 -JX7i -P -M -Sa6i -N -W1p -O -K -h4 -C -T
  1521. %@PROJ: xy -8.00000000 8.00000000 -10.00000000 10.00000000 -8.000 8.000 -10.000 10.000 +xy
  1522. %%BeginObject PSL_Layer_16
  1523. 0 setlinecap
  1524. 0 setlinejoin
  1525. 3.32551 setmiterlimit
  1526. 17 W
  1527. O1
  1528. 3601 4200 4200 Sc
  1529. 775 5313 M
  1530. 113 27 D
  1531. 114 24 D
  1532. 115 19 D
  1533. 115 16 D
  1534. 115 12 D
  1535. 113 9 D
  1536. 111 6 D
  1537. 215 4 D
  1538. 201 -3 D
  1539. 96 -4 D
  1540. 263 -19 D
  1541. 80 -7 D
  1542. 286 -34 D
  1543. 237 -36 D
  1544. 240 -43 D
  1545. 230 -47 D
  1546. 311 -73 D
  1547. 246 -65 D
  1548. 209 -60 D
  1549. 208 -64 D
  1550. 173 -57 D
  1551. 198 -69 D
  1552. 163 -60 D
  1553. 133 -51 D
  1554. 183 -74 D
  1555. 167 -71 D
  1556. 168 -75 D
  1557. 117 -54 D
  1558. 230 -113 D
  1559. 162 -85 D
  1560. 185 -102 D
  1561. 208 -123 D
  1562. 152 -97 D
  1563. 161 -108 D
  1564. 168 -123 D
  1565. 86 -66 D
  1566. 87 -71 D
  1567. 86 -73 D
  1568. 86 -77 D
  1569. 84 -81 D
  1570. 81 -83 D
  1571. 79 -86 D
  1572. 75 -89 D
  1573. S
  1574. 3087 775 M
  1575. 2226 6850 D
  1576. S
  1577. {1 A} FS
  1578. O0
  1579. 4200 7851 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1580. 150 F0
  1581. (8) bc Z
  1582. %%EndObject
  1583. 0 A
  1584. FQ
  1585. O0
  1586. 0 0 TM
  1587. % PostScript produced by:
  1588. %@GMT: gmt pspolar -R-8/8/-10/10 -JX7i -D0./0. -M4c -N -Sc0.2i -Qe -O -K -P -h3
  1589. %@PROJ: xy -8.00000000 8.00000000 -10.00000000 10.00000000 -8.000 8.000 -10.000 10.000 +xy
  1590. %%BeginObject PSL_Layer_17
  1591. 0 setlinecap
  1592. 0 setlinejoin
  1593. 3.32551 setmiterlimit
  1594. 4 W
  1595. 945 4200 4200 Sc
  1596. {0.98 A} FS
  1597. O1
  1598. 96 4443 4947 Sc
  1599. %%EndObject
  1600. 0 A
  1601. FQ
  1602. O0
  1603. 0 0 TM
  1604. % PostScript produced by:
  1605. %@GMT: gmt psmeca -R-8/8/-10/10 -JX7i -P -M -Sa6i -N -W1p -O -K -h4 -C -T
  1606. %@PROJ: xy -8.00000000 8.00000000 -10.00000000 10.00000000 -8.000 8.000 -10.000 10.000 +xy
  1607. %%BeginObject PSL_Layer_18
  1608. 0 setlinecap
  1609. 0 setlinejoin
  1610. 3.32551 setmiterlimit
  1611. 17 W
  1612. O1
  1613. 3601 4200 4200 Sc
  1614. 2083 7113 M
  1615. 168 -129 D
  1616. 165 -139 D
  1617. 159 -143 D
  1618. 151 -143 D
  1619. 139 -138 D
  1620. 128 -131 D
  1621. 117 -123 D
  1622. 199 -218 D
  1623. 229 -261 D
  1624. 255 -305 D
  1625. 212 -263 D
  1626. 144 -185 D
  1627. 162 -213 D
  1628. 97 -130 D
  1629. 34 -46 D
  1630. 31 -43 D
  1631. 9 -11 D
  1632. 136 -188 D
  1633. 120 -170 D
  1634. 109 -157 D
  1635. 79 -115 D
  1636. 15 -24 D
  1637. 35 -50 D
  1638. 191 -290 D
  1639. 148 -234 D
  1640. 150 -243 D
  1641. 123 -209 D
  1642. 146 -257 D
  1643. 81 -149 D
  1644. 85 -162 D
  1645. 88 -175 D
  1646. 89 -187 D
  1647. 87 -196 D
  1648. 81 -200 D
  1649. 72 -199 D
  1650. S
  1651. 1287 2083 M
  1652. 5826 4234 D
  1653. S
  1654. {1 A} FS
  1655. O0
  1656. 4200 7851 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1657. 150 F0
  1658. (9) bc Z
  1659. %%EndObject
  1660. 0 A
  1661. FQ
  1662. O0
  1663. 0 0 TM
  1664. % PostScript produced by:
  1665. %@GMT: gmt pspolar -R-8/8/-10/10 -JX7i -D0./0. -M4c -N -Sc0.2i -Qe -O -K -P -h3
  1666. %@PROJ: xy -8.00000000 8.00000000 -10.00000000 10.00000000 -8.000 8.000 -10.000 10.000 +xy
  1667. %%BeginObject PSL_Layer_19
  1668. 0 setlinecap
  1669. 0 setlinejoin
  1670. 3.32551 setmiterlimit
  1671. 4 W
  1672. 945 4200 4200 Sc
  1673. {0.98 A} FS
  1674. O1
  1675. 96 4902 4710 Sc
  1676. %%EndObject
  1677. 0 A
  1678. FQ
  1679. O0
  1680. 0 0 TM
  1681. % PostScript produced by:
  1682. %@GMT: gmt psmeca -R-8/8/-10/10 -JX7i -P -M -Sa6i -N -W1p -O -K -h4 -C -T
  1683. %@PROJ: xy -8.00000000 8.00000000 -10.00000000 10.00000000 -8.000 8.000 -10.000 10.000 +xy
  1684. %%BeginObject PSL_Layer_20
  1685. 0 setlinecap
  1686. 0 setlinejoin
  1687. 3.32551 setmiterlimit
  1688. 17 W
  1689. O1
  1690. 3601 4200 4200 Sc
  1691. 4200 7801 M
  1692. 0 -4771 D
  1693. S
  1694. 599 4200 M
  1695. 7202 0 D
  1696. S
  1697. {1 A} FS
  1698. O0
  1699. 4200 7851 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1700. 150 F0
  1701. (10) bc Z
  1702. %%EndObject
  1703. 0 A
  1704. FQ
  1705. O0
  1706. 0 0 TM
  1707. % PostScript produced by:
  1708. %@GMT: gmt pspolar -R-8/8/-10/10 -JX7i -D0./0. -M4c -N -Sc0.2i -Qe -O -K -P -h3
  1709. %@PROJ: xy -8.00000000 8.00000000 -10.00000000 10.00000000 -8.000 8.000 -10.000 10.000 +xy
  1710. %%BeginObject PSL_Layer_21
  1711. 0 setlinecap
  1712. 0 setlinejoin
  1713. 3.32551 setmiterlimit
  1714. 4 W
  1715. 945 4200 4200 Sc
  1716. {0.98 A} FS
  1717. O1
  1718. 120 3283 4200 Sc
  1719. %%EndObject
  1720. 0 A
  1721. FQ
  1722. O0
  1723. 0 0 TM
  1724. % PostScript produced by:
  1725. %@GMT: gmt psbasemap -R-8/8/-10/10 -JX7i -P -V -O -B0
  1726. %@PROJ: xy -8.00000000 8.00000000 -10.00000000 10.00000000 -8.000 8.000 -10.000 10.000 +xy
  1727. %%BeginObject PSL_Layer_22
  1728. 0 setlinecap
  1729. 0 setlinejoin
  1730. 3.32551 setmiterlimit
  1731. 25 W
  1732. 2 setlinecap
  1733. N 0 8400 M 0 -8400 D S
  1734. /PSL_A0_y 0 def
  1735. /PSL_A1_y 0 def
  1736. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1737. 8400 0 T
  1738. N 0 8400 M 0 -8400 D S
  1739. /PSL_A0_y 0 def
  1740. /PSL_A1_y 0 def
  1741. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1742. -8400 0 T
  1743. N 0 0 M 8400 0 D S
  1744. /PSL_A0_y 0 def
  1745. /PSL_A1_y 0 def
  1746. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1747. 0 8400 T
  1748. N 0 0 M 8400 0 D S
  1749. /PSL_A0_y 0 def
  1750. /PSL_A1_y 0 def
  1751. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1752. 0 -8400 T
  1753. 0 setlinecap
  1754. %%EndObject
  1755. grestore
  1756. PSL_movie_completion /PSL_movie_completion {} def
  1757. %PSL_Begin_Trailer
  1758. %%PageTrailer
  1759. U
  1760. showpage
  1761. %%Trailer
  1762. end
  1763. %%EOF
Tip!

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

Comments

Loading...