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

spikes.ps 51 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
  1. %!PS-Adobe-3.0
  2. %%BoundingBox: 0 0 612 792
  3. %%HiResBoundingBox: 0 0 612.0000 792.0000
  4. %%Title: GMT v6.0.0_47d22d6_2019.09.01 [64-bit] Document from psscale
  5. %%Creator: GMT6
  6. %%For: unknown
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Sun Sep 1 18:12:30 2019
  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 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 { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  648. %%EndSetup
  649. %%Page: 1 1
  650. %%BeginPageSetup
  651. V 0.06 0.06 scale
  652. %%EndPageSetup
  653. /PSL_page_xsize 10200 def
  654. /PSL_page_ysize 13200 def
  655. /PSL_plot_completion {} def
  656. /PSL_movie_completion {} def
  657. %PSL_End_Header
  658. gsave
  659. 0 A
  660. FQ
  661. O0
  662. 1200 1440 TM
  663. % PostScript produced by:
  664. %@GMT: gmt psscale -D3.25i/-0.35i+w6i/0.1i+h+jTC -P -K -Ba0.1 -Ct.cpt -Y1.2i
  665. %@PROJ: xy 0.00000000 1.00000000 0.00000000 0.10000000 0.000 1.000 0.000 0.100 +xy
  666. %GMTBoundingBox: 72 86.4 432 7.2
  667. %%BeginObject PSL_Layer_1
  668. 0 setlinecap
  669. 0 setlinejoin
  670. 3.32551 setmiterlimit
  671. 300 -540 T
  672. 25 W
  673. V N 0 0 T 7200 120 scale /DeviceRGB setcolorspace
  674. << /ImageType 1 /Decode [0 1 0 1 0 1] /Width 3600 /Height 1 /BitsPerComponent 8
  675. /ImageMatrix [3600 0 0 -1 0 1] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  676. >> image
  677. G[BdiB+r>i*!"nF75TfgO\q??6mSgtdB^p9hD6o:1=JMAKSiT<A]lW^PWd/;A[JO,+a\A+F3dA?7<edDk>OL0Y./S9$_6B"
  678. B/pW#F,H0Oi1FtY@iXTKro-I.bb#m7%h<V&lt7Deq46E[YPc8`lsVib_G5R>7s=A(hhUT8@k1dY/ptiS2R/ARX:OW!b8OEf
  679. MJpA`XQ1m4YWR<T(G'&FTCZ2f_I=:cO9Ni=T/)J<b[G[^`CsktSPT#?I)Ik=153hD$5<5s&"(0-0TPlFb8B*rh=(oL)9#/'
  680. AjdK]0SV?9_-mlW)8KIh8cR.u^:_;J]Z."G&$O?L?M"XhkY='CVCPrh9>&=RFJ]]l6O03\4mdJH[&"56BgkZuK]Y+d.8=JL
  681. UX5),e>F@16QMbp2RTJTNUR?P;k7Z&V+R]1;`r/84<>Q=&f%B2GodEU:l^<VLpE6OV("i)*i)2KJDq:'IYq#Kgdbc[EA.&_
  682. 0GGWoq7)p+6=05%-[1ZA>TkIT\=Mtsj0inW=inN4A.CP^M2^4X#1A8G\Uj(WNc_'+f91m<>f5)8'j#B$.7q>jQ_bfN=)o%T
  683. \2mk^C=7&QBgXqaj*GV$7ad&#gdFUeEAO$#/S$"T[rP]o7WrYs#<Bm@EcVJ0P)$^*(%*Cjq'eSFE"D\@Lr.q;O\h;>.7S:u
  684. TL=$dP*D[tAO9N@iaL""#`j`2<1kG#G`9\\'0OB8<2N9d8i<X?1s\uCe>*kfH'UM@%J?Yq!ufT91o:RRBh!/IKU0!>2/R$M
  685. F.jWAH(GLf%%ZV+$bXPRF9u5uR;R,E#<bF-HLhJlGW!.Rlb#MjqU%O?a]f0]+G1LNL+nj#$thtQRurY=2"0pOG`OS<jaG-'
  686. 5"sl:5%Gk$_ITMtQ"bWaa5I]/1P;+>@Wn-V>itQ*o>:VFZA?INiNr#693K7NI*(r`K!/:uf6e64Z'mPOAKC*S"u`cDc$[]Y
  687. @1-;m`cf',5Hob^q2([/$G5!/chtY`r"a`o0DjDJJT-]835hF/k",9*^H'FkNq6%+_+@CARPWnRk;^ck/op3^A2ob28;8?,
  688. Nat,4iCJ\J)34`?30N,hH6_[6Uc4In89uNFNMJLrhFMr;l&DJtP28`U,O(2`2u_FBnLs;Q"=*~>
  689. U
  690. 2 setlinecap
  691. N 0 120 M 7200 0 D S
  692. N 0 0 M 0 120 D S
  693. N 7200 0 M 0 120 D S
  694. N 0 0 M 7200 0 D S
  695. /PSL_A0_y 83 def
  696. /PSL_A1_y 0 def
  697. 8 W
  698. N 0 0 M 0 -83 D S
  699. N 720 0 M 0 -83 D S
  700. N 1440 0 M 0 -83 D S
  701. N 2160 0 M 0 -83 D S
  702. N 2880 0 M 0 -83 D S
  703. N 3600 0 M 0 -83 D S
  704. N 4320 0 M 0 -83 D S
  705. N 5040 0 M 0 -83 D S
  706. N 5760 0 M 0 -83 D S
  707. N 6480 0 M 0 -83 D S
  708. N 7200 0 M 0 -83 D S
  709. /PSL_AH0 0
  710. /MM {neg M} def
  711. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  712. 200 F0
  713. (0.0) sh mx
  714. (0.1) sh mx
  715. (0.2) sh mx
  716. (0.3) sh mx
  717. (0.4) sh mx
  718. (0.5) sh mx
  719. (0.6) sh mx
  720. (0.7) sh mx
  721. (0.8) sh mx
  722. (0.9) sh mx
  723. (1.0) sh mx
  724. def
  725. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  726. 0 PSL_A0_y MM
  727. (0.0) bc Z
  728. 720 PSL_A0_y MM
  729. (0.1) bc Z
  730. 1440 PSL_A0_y MM
  731. (0.2) bc Z
  732. 2160 PSL_A0_y MM
  733. (0.3) bc Z
  734. 2880 PSL_A0_y MM
  735. (0.4) bc Z
  736. 3600 PSL_A0_y MM
  737. (0.5) bc Z
  738. 4320 PSL_A0_y MM
  739. (0.6) bc Z
  740. 5040 PSL_A0_y MM
  741. (0.7) bc Z
  742. 5760 PSL_A0_y MM
  743. (0.8) bc Z
  744. 6480 PSL_A0_y MM
  745. (0.9) bc Z
  746. 7200 PSL_A0_y MM
  747. (1.0) bc Z
  748. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  749. 0 setlinecap
  750. -300 540 T
  751. %%EndObject
  752. 0 A
  753. FQ
  754. O0
  755. 0 0 TM
  756. % PostScript produced by:
  757. %@GMT: gmt grdimage -JX2.8i -B20f10g10 -BWSne -Ct.cpt -O -K t.nc -X0i -Y0i
  758. %@PROJ: xy 0.00000000 50.00000000 0.00000000 50.00000000 0.000 50.000 0.000 50.000 +xy
  759. %%BeginObject PSL_Layer_2
  760. 0 setlinecap
  761. 0 setlinejoin
  762. 3.32551 setmiterlimit
  763. clipsave
  764. 0 0 M
  765. 3360 0 D
  766. 0 3360 D
  767. -3360 0 D
  768. P
  769. PSL_clip N
  770. V N -17 -17 T 3394 3394 scale [/Indexed /DeviceRGB 1 <
  771. FF00FFFFFFFF>] setcolorspace
  772. << /ImageType 1 /Decode [0 1] /Width 101 /Height 101 /BitsPerComponent 1
  773. /ImageMatrix [101 0 0 -101 0 101] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  774. >> image
  775. G[=lf(^6[Bn,NVY$:_i[TI0^>=$Zg0~>
  776. U
  777. PSL_cliprestore
  778. 25 W
  779. 4 W
  780. 0 0 M
  781. 0 3360 D
  782. S
  783. 672 0 M
  784. 0 3360 D
  785. S
  786. 1344 0 M
  787. 0 3360 D
  788. S
  789. 2016 0 M
  790. 0 3360 D
  791. S
  792. 2688 0 M
  793. 0 3360 D
  794. S
  795. 3360 0 M
  796. 0 3360 D
  797. S
  798. 0 0 M
  799. 3360 0 D
  800. S
  801. 0 672 M
  802. 3360 0 D
  803. S
  804. 0 1344 M
  805. 3360 0 D
  806. S
  807. 0 2016 M
  808. 3360 0 D
  809. S
  810. 0 2688 M
  811. 3360 0 D
  812. S
  813. 0 3360 M
  814. 3360 0 D
  815. S
  816. 2 setlinecap
  817. 25 W
  818. N 0 3360 M 0 -3360 D S
  819. /PSL_A0_y 83 def
  820. /PSL_A1_y 0 def
  821. 8 W
  822. N 0 0 M -83 0 D S
  823. N 0 1344 M -83 0 D S
  824. N 0 2688 M -83 0 D S
  825. /PSL_AH0 0
  826. /MM {neg exch M} def
  827. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  828. 200 F0
  829. (0) sw mx
  830. (20) sw mx
  831. (40) sw mx
  832. def
  833. /PSL_A0_y PSL_A0_y 83 add def
  834. 0 PSL_A0_y MM
  835. (0) mr Z
  836. 1344 PSL_A0_y MM
  837. (20) mr Z
  838. 2688 PSL_A0_y MM
  839. (40) mr Z
  840. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  841. N 0 672 M -42 0 D S
  842. N 0 2016 M -42 0 D S
  843. N 0 3360 M -42 0 D S
  844. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  845. 3360 0 T
  846. 25 W
  847. N 0 3360 M 0 -3360 D S
  848. /PSL_A0_y 83 def
  849. /PSL_A1_y 0 def
  850. 8 W
  851. N 0 0 M 83 0 D S
  852. N 0 1344 M 83 0 D S
  853. N 0 2688 M 83 0 D S
  854. N 0 672 M 42 0 D S
  855. N 0 2016 M 42 0 D S
  856. N 0 3360 M 42 0 D S
  857. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  858. -3360 0 T
  859. 25 W
  860. N 0 0 M 3360 0 D S
  861. /PSL_A0_y 83 def
  862. /PSL_A1_y 0 def
  863. 8 W
  864. N 0 0 M 0 -83 D S
  865. N 1344 0 M 0 -83 D S
  866. N 2688 0 M 0 -83 D S
  867. /PSL_AH0 0
  868. /MM {neg M} def
  869. (0) sh mx
  870. (20) sh mx
  871. (40) sh mx
  872. def
  873. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  874. 0 PSL_A0_y MM
  875. (0) bc Z
  876. 1344 PSL_A0_y MM
  877. (20) bc Z
  878. 2688 PSL_A0_y MM
  879. (40) bc Z
  880. N 672 0 M 0 -42 D S
  881. N 2016 0 M 0 -42 D S
  882. N 3360 0 M 0 -42 D S
  883. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  884. 0 3360 T
  885. 25 W
  886. N 0 0 M 3360 0 D S
  887. /PSL_A0_y 83 def
  888. /PSL_A1_y 0 def
  889. 8 W
  890. N 0 0 M 0 83 D S
  891. N 1344 0 M 0 83 D S
  892. N 2688 0 M 0 83 D S
  893. N 672 0 M 0 42 D S
  894. N 2016 0 M 0 42 D S
  895. N 3360 0 M 0 42 D S
  896. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  897. 0 -3360 T
  898. 0 setlinecap
  899. %%EndObject
  900. 0 A
  901. FQ
  902. O0
  903. 0 0 TM
  904. % PostScript produced by:
  905. %@GMT: gmt pstext -R0/50/0/50 -JX2.8i -O -K -Dj0.1i/0.1i -F+jTR+f18p -W1p -Gwhite
  906. %@PROJ: xy 0.00000000 50.00000000 0.00000000 50.00000000 0.000 50.000 0.000 50.000 +xy
  907. %%BeginObject PSL_Layer_3
  908. 0 setlinecap
  909. 0 setlinejoin
  910. 3.32551 setmiterlimit
  911. clipsave
  912. 0 0 M
  913. 3360 0 D
  914. 0 3360 D
  915. -3360 0 D
  916. P
  917. PSL_clip N
  918. 17 W
  919. {1 A} FS
  920. O1
  921. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  922. 300 F0
  923. V
  924. (Spike) V MU 0 0 M E /PSL_dim_w edef FP pathbbox N /PSL_dim_h edef /PSL_dim_x1 edef /PSL_dim_d edef /PSL_dim_x0 edef U
  925. /PSL_dx 45 def
  926. /PSL_dy 45 def
  927. 3240 3240 T PSL_dim_w neg PSL_dim_h neg T
  928. PSL_dim_h PSL_dim_d sub PSL_dy 2 mul add PSL_dim_x1 PSL_dim_x0 sub PSL_dx 2 mul add PSL_dim_x0 PSL_dx sub PSL_dim_d PSL_dy sub Sb
  929. U
  930. 3240 3240 M (Spike) tr Z
  931. PSL_cliprestore
  932. %%EndObject
  933. 0 A
  934. FQ
  935. O0
  936. 4200 0 TM
  937. % PostScript produced by:
  938. %@GMT: gmt grdimage -JX2.8i -B20f10g10 -BWSne -Ct.cpt -O -K f.nc -X3.5i -Y0i
  939. %@PROJ: xy 0.00000000 50.00000000 0.00000000 50.00000000 0.000 50.000 0.000 50.000 +xy
  940. %%BeginObject PSL_Layer_4
  941. 0 setlinecap
  942. 0 setlinejoin
  943. 3.32551 setmiterlimit
  944. clipsave
  945. 0 0 M
  946. 3360 0 D
  947. 0 3360 D
  948. -3360 0 D
  949. P
  950. PSL_clip N
  951. V N -17 -17 T 3394 3394 scale [/Indexed /DeviceRGB 247 <
  952. FF00FFF100FFF000FFEF00FFEE00FFED00FFEC00FFEB00FFEA00FFE800FFE700FFE600FFE500FFE900FFE300FFE100FF
  953. E000FFDF00FFDE00FFDD00FFE200FFDB00FFD800FFD700FFD500FFD400FFD300FFE400FFD900FFD600FFD000FFCD00FF
  954. CB00FFC900FFC800FFC700FFDC00FFCF00FFC300FFC000FFBD00FFBA00FFB900FFB800FFB700FFB300FFAF00FFAB00FF
  955. A800FFA600FFA500FFA400FFDA00FFCE00FFC100FFAD00FFA000FF9B00FF9600FF9300FF9000FF8E00FFD100FFCA00FF
  956. BB00FFB200FFAA00FFA100FF9900FF9100FF8A00FF8300FF7D00FF7900FF7500FF7300FF7200FFBE00FFB500FF8C00FF
  957. 8200FF7800FF6F00FF6700FF6000FF5A00FF5600FF5300FF5200FFC500FFB000FF8000FF5B00FF5000FF4600FF3D00FF
  958. 3700FF3100FF2E00FF2D00FFC400FF8400FF6600FF5700FF4800FF3A00FF2C00FF2000FF1600FF0E00FF0800FF0400FF
  959. 0300FF9D00FF7E00FF6D00FF4900FF2500FF1400FF000AFF0016FF0020FF0028FF002CFF002EFF9C00FF7A00FF2800FF
  960. 1300FF0002FF0029FF003AFF0048FF0054FF005CFF0062FF0063FF6400FF4D00FF3600FF1D00FF0015FF0045FF005BFF
  961. 006EFF007FFF008DFF0097FF009DFF009FFF4B00FF0006FF0023FF0040FF0078FF0091FF00A7FF00BBFF00CAFF00D6FF
  962. 00DDFF00E0FF000CFF004DFF008FFF00AEFF00E4FF00FBFF00FFF100FFE400FFDC00FFD9002FFF0079FF00C4FF00E7FF
  963. 00FFF700FFC000FFAC00FF9D00FF9300FF90007DFF00D1FF00FFB700FF9700FF7A00FF6300FF5300FF4800FF4500FFF9
  964. 00FFCB00FFA000FF7700FF3300FF1A00FF0704FF0008FF0000FFC600FF3700FF0F14FF0030FF0045FF0051FF0055FF00
  965. 00FF5D00FF2834FF005AFF0078FF008FFF009CFF00A1FF0010FF0074FF00BDFF00D5FF00E4FF00E9FF007DFF00AFFF00
  966. DAFF00FDFF00FFE700FFD700FFD200FFEC00FFC700FFAC00FF9B00FF9600FFBD00FF7900FF6800FF6200FF6E00FF5000
  967. FF3E00FF3800FF3200FF1F00FF1900FF0D00FF0600FF0000>] setcolorspace
  968. << /ImageType 1 /Decode [0 255] /Width 101 /Height 101 /BitsPerComponent 8
  969. /ImageMatrix [101 0 0 -101 0 101] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  970. >> image
  971. G[=lf(^6[B'T@W@0FC:c-ia9;64,+B9[#&hXDB#pb0%TF6qB<UJ=2+NSV*,aMjp2kS"#=oPCoEcKpe#LOoQ^_.m#C#%j/Q:
  972. TTG8>OH?+859CCP00:[?otl`WNJ!-Z6r6ub9O'n^;G'hb6<m2`=AX[+Mh@!]^0tX8i0"ieQB@GqP?1R[;H?h!;H/aEPEM1C
  973. (6I\<@&8H4N%F=cdK1n-;Q:)HC?c_+>1u$k>+-ApC<?m`;IV*Wd[]YTP_L%h.gNP>YaCZfP+%-6Y+E@YTolUBTn0qLY-s(R
  974. P.[$HYR!/m.qL/hM2bS?cpZ;]a\5XbgsEpdb1akdf%.jpb0n/R>Z]BJa]-\V:n!`1&mLaV3;J6Gm-N7B*1`U*>i"0u4MACU
  975. ]Y-Ejgtc4@S=LW?eElS@K_RMULjpbE*Q#+^b.`?$c;soFJO.*qTjcmliF/E'_*NVQr`7>@I_Nt)ZGJk2aRoqn%LLTTLF=A`
  976. s(LlZR+SqDKZ'\IUr7r]\Cd0Vmq@1eUF:mg;[N#3@:\I'g**)_AStqIlBR[,OdVK*PFInGOIql/PF[u,Oe1^#C2IC^Pp-aG
  977. KpS(+1rdBU/L5,#U9.d9>>uS@P#,>J?X?T4<F&O/<EW1j?WNUl&lW%G>H"`r@O`lRc+u`f5V.GRSQeoa2,[)^f"Wgs,/1db
  978. Z(e5.V7!G=UV3e;V7ES"Z(X?F,.Pq5<aR@T<D8LDSW(X&jV0GS;g'iJo_7_=lL)d_Xm,/D0QGP%.9!-<ShtFRIpYogISY/h
  979. Vl,$<\V%2YM$PIZ+X8]A1P`?AUqL]2Kl(,Y[)AL!1M4)?RQY<O]_MpN/snkAm[Vt:g1JWtSs).9Zd.,Gb1Brt=IOkAY;!8%
  980. $&G"Lq&*<O"a;8Y/ZN,>@EHrCbEf>6\SCf;Pq/.RS%!L]KZ2K"aqD=<Ml_p9e4dga\Ca?2H_<l.Um)kk>uHS*\oSXhBjEfC
  981. h>.S]2f@?^Aa>Z,Rl7G+Y^YEX[B43[j`F!,Vn2(R-qUD"lkNQo8*%o7Sc-62id7P([r.\AIJKl`4*U)KZZk<`4hGq*gp(Vi
  982. p,Ul2X/G^1a*@DA4.=7n]g>o(0XL?V9.=R9=[f6ReE>.[]QVTur<EfRg2m&1d::4X*BeFfc_5srp<TA;G4COhqNA4!.jn%;
  983. .:F:G&f;"[LlA@&Y-YleH9t!fbR%4Wmm"'gpW6@3c^[.BrnQ0_Vb`l=^#d33m8GCVlto9ap\&g^<E#.pi?]qVY]0ul.VP3]
  984. "9`A%2V,5e=h"=EQ4"Li?b1XHlF#s0Y$SYdl1i4*>7N2k\"p.'Yr![b^r9PG5us)*NKCtIJ-conb1_TQJMER('n*ESY$Z<j
  985. pVe(aDdL%uqp+"Z[r5QaH1o7sh$7#`?TP6kU+A)Id+(rs)&-C&P[M]TI%kXr\e]0LZ!$lsrNk[(fQ$-9n[%uX5ButenWV"S
  986. *^7)`n*KS.LN[L$2nQgR5:\Y5bsGK+:6^g(oYn\h0.*m*BB^HWQX/H1@Eu1/4858VFS#L&VpCsLGkp@pZ_r$8hn4&Gcd((a
  987. k"KG@c]/BV\("?C(ZX[(+]<gs=Bn-Zho[/h5,Y,dinWW7G9&kqq:^J!Y?nqloCgGpQ`luE\9@]?iE[Chc^i]dOV8hr@AU0$
  988. +APfYB&sYi:t.>+p'a[:X_aObDoJU08'YAMp$gYXGOIbDr:'^Ab@_?(>rct:pSJ\s-FHn:-A6\K)e^]n#a/X')n1p)P*Vf$
  989. ='/p<<SQU1.lZoWHM6Xk8'bPWs7H-1k>1PR5C[ePlIhqZ2QrW8\ZI>71!Ih\:eOAXLms(Y"gUO!gW7r-4=S%VIEI.A>P9+"
  990. GO<]9(N2Kbrqc$Jk7;K;4MGn(gp+Os<\9]e?Cd]&mVQa8X\=m(N,5.$XCH)4'9QNrdkQ"(lE0rDT>,jLaih.8^O5qXmE<PZ
  991. 0;%%5IfB,VXfE75mAMI)Nps;2ecDUU'$<akpk1hN6C61jQ[D,d*)Dp,M_:h[?0W+"e;SLKj6=uqThi:Y/hKW*["[bnWi&Ym
  992. KJ#D>qXbZidefk:5Ft%`'(d&GU!G,!IE&l9kV@/`!d#93A>%7^.L=CM>SmNU5JiB[e.&*K0FC:c-l<,_?ka#X!!#T`..d~>
  993. U
  994. PSL_cliprestore
  995. 25 W
  996. 4 W
  997. 0 0 M
  998. 0 3360 D
  999. S
  1000. 672 0 M
  1001. 0 3360 D
  1002. S
  1003. 1344 0 M
  1004. 0 3360 D
  1005. S
  1006. 2016 0 M
  1007. 0 3360 D
  1008. S
  1009. 2688 0 M
  1010. 0 3360 D
  1011. S
  1012. 3360 0 M
  1013. 0 3360 D
  1014. S
  1015. 0 0 M
  1016. 3360 0 D
  1017. S
  1018. 0 672 M
  1019. 3360 0 D
  1020. S
  1021. 0 1344 M
  1022. 3360 0 D
  1023. S
  1024. 0 2016 M
  1025. 3360 0 D
  1026. S
  1027. 0 2688 M
  1028. 3360 0 D
  1029. S
  1030. 0 3360 M
  1031. 3360 0 D
  1032. S
  1033. 2 setlinecap
  1034. 25 W
  1035. N 0 3360 M 0 -3360 D S
  1036. /PSL_A0_y 83 def
  1037. /PSL_A1_y 0 def
  1038. 8 W
  1039. N 0 0 M -83 0 D S
  1040. N 0 1344 M -83 0 D S
  1041. N 0 2688 M -83 0 D S
  1042. /PSL_AH0 0
  1043. /MM {neg exch M} def
  1044. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1045. 200 F0
  1046. (0) sw mx
  1047. (20) sw mx
  1048. (40) sw mx
  1049. def
  1050. /PSL_A0_y PSL_A0_y 83 add def
  1051. 0 PSL_A0_y MM
  1052. (0) mr Z
  1053. 1344 PSL_A0_y MM
  1054. (20) mr Z
  1055. 2688 PSL_A0_y MM
  1056. (40) mr Z
  1057. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1058. N 0 672 M -42 0 D S
  1059. N 0 2016 M -42 0 D S
  1060. N 0 3360 M -42 0 D S
  1061. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1062. 3360 0 T
  1063. 25 W
  1064. N 0 3360 M 0 -3360 D S
  1065. /PSL_A0_y 83 def
  1066. /PSL_A1_y 0 def
  1067. 8 W
  1068. N 0 0 M 83 0 D S
  1069. N 0 1344 M 83 0 D S
  1070. N 0 2688 M 83 0 D S
  1071. N 0 672 M 42 0 D S
  1072. N 0 2016 M 42 0 D S
  1073. N 0 3360 M 42 0 D S
  1074. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1075. -3360 0 T
  1076. 25 W
  1077. N 0 0 M 3360 0 D S
  1078. /PSL_A0_y 83 def
  1079. /PSL_A1_y 0 def
  1080. 8 W
  1081. N 0 0 M 0 -83 D S
  1082. N 1344 0 M 0 -83 D S
  1083. N 2688 0 M 0 -83 D S
  1084. /PSL_AH0 0
  1085. /MM {neg M} def
  1086. (0) sh mx
  1087. (20) sh mx
  1088. (40) sh mx
  1089. def
  1090. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1091. 0 PSL_A0_y MM
  1092. (0) bc Z
  1093. 1344 PSL_A0_y MM
  1094. (20) bc Z
  1095. 2688 PSL_A0_y MM
  1096. (40) bc Z
  1097. N 672 0 M 0 -42 D S
  1098. N 2016 0 M 0 -42 D S
  1099. N 3360 0 M 0 -42 D S
  1100. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1101. 0 3360 T
  1102. 25 W
  1103. N 0 0 M 3360 0 D S
  1104. /PSL_A0_y 83 def
  1105. /PSL_A1_y 0 def
  1106. 8 W
  1107. N 0 0 M 0 83 D S
  1108. N 1344 0 M 0 83 D S
  1109. N 2688 0 M 0 83 D S
  1110. N 672 0 M 0 42 D S
  1111. N 2016 0 M 0 42 D S
  1112. N 3360 0 M 0 42 D S
  1113. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1114. 0 -3360 T
  1115. 0 setlinecap
  1116. %%EndObject
  1117. 0 A
  1118. FQ
  1119. O0
  1120. 0 0 TM
  1121. % PostScript produced by:
  1122. %@GMT: gmt pstext -R0/50/0/50 -JX2.8i -O -K -Dj0.1i/0.1i -F+jTR+f18p -W1p -Gwhite
  1123. %@PROJ: xy 0.00000000 50.00000000 0.00000000 50.00000000 0.000 50.000 0.000 50.000 +xy
  1124. %%BeginObject PSL_Layer_5
  1125. 0 setlinecap
  1126. 0 setlinejoin
  1127. 3.32551 setmiterlimit
  1128. clipsave
  1129. 0 0 M
  1130. 3360 0 D
  1131. 0 3360 D
  1132. -3360 0 D
  1133. P
  1134. PSL_clip N
  1135. 17 W
  1136. {1 A} FS
  1137. O1
  1138. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1139. 300 F0
  1140. V
  1141. (-D0 -Fg30) V MU 0 0 M E /PSL_dim_w edef FP pathbbox N /PSL_dim_h edef /PSL_dim_x1 edef /PSL_dim_d edef /PSL_dim_x0 edef U
  1142. /PSL_dx 45 def
  1143. /PSL_dy 45 def
  1144. 3240 3240 T PSL_dim_w neg PSL_dim_h neg T
  1145. PSL_dim_h PSL_dim_d sub PSL_dy 2 mul add PSL_dim_x1 PSL_dim_x0 sub PSL_dx 2 mul add PSL_dim_x0 PSL_dx sub PSL_dim_d PSL_dy sub Sb
  1146. U
  1147. 3240 3240 M (-D0 -Fg30) tr Z
  1148. PSL_cliprestore
  1149. %%EndObject
  1150. 0 A
  1151. FQ
  1152. O0
  1153. -4200 3840 TM
  1154. % PostScript produced by:
  1155. %@GMT: gmt grdimage -JX2.8i -B20f10g10 -BWSne -Ct.cpt -O -K f.nc -X-3.5i -Y3.2i
  1156. %@PROJ: xy 0.00000000 50.00000000 0.00000000 50.00000000 0.000 50.000 0.000 50.000 +xy
  1157. %%BeginObject PSL_Layer_6
  1158. 0 setlinecap
  1159. 0 setlinejoin
  1160. 3.32551 setmiterlimit
  1161. clipsave
  1162. 0 0 M
  1163. 3360 0 D
  1164. 0 3360 D
  1165. -3360 0 D
  1166. P
  1167. PSL_clip N
  1168. V N -17 -17 T 3394 3394 scale [/Indexed /DeviceRGB 1 <
  1169. FF00FFFF0000>] setcolorspace
  1170. << /ImageType 1 /Decode [0 1] /Width 101 /Height 101 /BitsPerComponent 1
  1171. /ImageMatrix [101 0 0 -101 0 101] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  1172. >> image
  1173. G[=lf(^6Z7%%.%s_7rhWS21LA!<W>h%;<T~>
  1174. U
  1175. PSL_cliprestore
  1176. 25 W
  1177. 4 W
  1178. 0 0 M
  1179. 0 3360 D
  1180. S
  1181. 672 0 M
  1182. 0 3360 D
  1183. S
  1184. 1344 0 M
  1185. 0 3360 D
  1186. S
  1187. 2016 0 M
  1188. 0 3360 D
  1189. S
  1190. 2688 0 M
  1191. 0 3360 D
  1192. S
  1193. 3360 0 M
  1194. 0 3360 D
  1195. S
  1196. 0 0 M
  1197. 3360 0 D
  1198. S
  1199. 0 672 M
  1200. 3360 0 D
  1201. S
  1202. 0 1344 M
  1203. 3360 0 D
  1204. S
  1205. 0 2016 M
  1206. 3360 0 D
  1207. S
  1208. 0 2688 M
  1209. 3360 0 D
  1210. S
  1211. 0 3360 M
  1212. 3360 0 D
  1213. S
  1214. 2 setlinecap
  1215. 25 W
  1216. N 0 3360 M 0 -3360 D S
  1217. /PSL_A0_y 83 def
  1218. /PSL_A1_y 0 def
  1219. 8 W
  1220. N 0 0 M -83 0 D S
  1221. N 0 1344 M -83 0 D S
  1222. N 0 2688 M -83 0 D S
  1223. /PSL_AH0 0
  1224. /MM {neg exch M} def
  1225. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1226. 200 F0
  1227. (0) sw mx
  1228. (20) sw mx
  1229. (40) sw mx
  1230. def
  1231. /PSL_A0_y PSL_A0_y 83 add def
  1232. 0 PSL_A0_y MM
  1233. (0) mr Z
  1234. 1344 PSL_A0_y MM
  1235. (20) mr Z
  1236. 2688 PSL_A0_y MM
  1237. (40) mr Z
  1238. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1239. N 0 672 M -42 0 D S
  1240. N 0 2016 M -42 0 D S
  1241. N 0 3360 M -42 0 D S
  1242. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1243. 3360 0 T
  1244. 25 W
  1245. N 0 3360 M 0 -3360 D S
  1246. /PSL_A0_y 83 def
  1247. /PSL_A1_y 0 def
  1248. 8 W
  1249. N 0 0 M 83 0 D S
  1250. N 0 1344 M 83 0 D S
  1251. N 0 2688 M 83 0 D S
  1252. N 0 672 M 42 0 D S
  1253. N 0 2016 M 42 0 D S
  1254. N 0 3360 M 42 0 D S
  1255. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1256. -3360 0 T
  1257. 25 W
  1258. N 0 0 M 3360 0 D S
  1259. /PSL_A0_y 83 def
  1260. /PSL_A1_y 0 def
  1261. 8 W
  1262. N 0 0 M 0 -83 D S
  1263. N 1344 0 M 0 -83 D S
  1264. N 2688 0 M 0 -83 D S
  1265. /PSL_AH0 0
  1266. /MM {neg M} def
  1267. (0) sh mx
  1268. (20) sh mx
  1269. (40) sh mx
  1270. def
  1271. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1272. 0 PSL_A0_y MM
  1273. (0) bc Z
  1274. 1344 PSL_A0_y MM
  1275. (20) bc Z
  1276. 2688 PSL_A0_y MM
  1277. (40) bc Z
  1278. N 672 0 M 0 -42 D S
  1279. N 2016 0 M 0 -42 D S
  1280. N 3360 0 M 0 -42 D S
  1281. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1282. 0 3360 T
  1283. 25 W
  1284. N 0 0 M 3360 0 D S
  1285. /PSL_A0_y 83 def
  1286. /PSL_A1_y 0 def
  1287. 8 W
  1288. N 0 0 M 0 83 D S
  1289. N 1344 0 M 0 83 D S
  1290. N 2688 0 M 0 83 D S
  1291. N 672 0 M 0 42 D S
  1292. N 2016 0 M 0 42 D S
  1293. N 3360 0 M 0 42 D S
  1294. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1295. 0 -3360 T
  1296. 0 setlinecap
  1297. %%EndObject
  1298. 0 A
  1299. FQ
  1300. O0
  1301. 0 0 TM
  1302. % PostScript produced by:
  1303. %@GMT: gmt pstext -R0/50/0/50 -JX2.8i -O -K -Dj0.1i/0.1i -F+jTR+f18p -W1p -Gwhite
  1304. %@PROJ: xy 0.00000000 50.00000000 0.00000000 50.00000000 0.000 50.000 0.000 50.000 +xy
  1305. %%BeginObject PSL_Layer_7
  1306. 0 setlinecap
  1307. 0 setlinejoin
  1308. 3.32551 setmiterlimit
  1309. clipsave
  1310. 0 0 M
  1311. 3360 0 D
  1312. 0 3360 D
  1313. -3360 0 D
  1314. P
  1315. PSL_clip N
  1316. 17 W
  1317. {1 A} FS
  1318. O1
  1319. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1320. 300 F0
  1321. V
  1322. (-D0 -Fb20/10) V MU 0 0 M E /PSL_dim_w edef FP pathbbox N /PSL_dim_h edef /PSL_dim_x1 edef /PSL_dim_d edef /PSL_dim_x0 edef U
  1323. /PSL_dx 45 def
  1324. /PSL_dy 45 def
  1325. 3240 3240 T PSL_dim_w neg PSL_dim_h neg T
  1326. PSL_dim_h PSL_dim_d sub PSL_dy 2 mul add PSL_dim_x1 PSL_dim_x0 sub PSL_dx 2 mul add PSL_dim_x0 PSL_dx sub PSL_dim_d PSL_dy sub Sb
  1327. U
  1328. 3240 3240 M (-D0 -Fb20/10) tr Z
  1329. PSL_cliprestore
  1330. %%EndObject
  1331. 0 A
  1332. FQ
  1333. O0
  1334. 4200 0 TM
  1335. % PostScript produced by:
  1336. %@GMT: gmt grdimage -JX2.8i -B20f10g10 -BWSne -Ct.cpt -O -K f.nc -X3.5i -Y0i
  1337. %@PROJ: xy 0.00000000 50.00000000 0.00000000 50.00000000 0.000 50.000 0.000 50.000 +xy
  1338. %%BeginObject PSL_Layer_8
  1339. 0 setlinecap
  1340. 0 setlinejoin
  1341. 3.32551 setmiterlimit
  1342. clipsave
  1343. 0 0 M
  1344. 3360 0 D
  1345. 0 3360 D
  1346. -3360 0 D
  1347. P
  1348. PSL_clip N
  1349. V N -17 -17 T 3394 3394 scale [/Indexed /DeviceRGB 211 <
  1350. FF00FFFE00FFFD00FFFC00FFFB00FFFA00FFF800FFF600FFF400FFF300FFF200FFF100FFEF00FFED00FFEC00FFF500FF
  1351. EA00FFE700FFE600FFE500FFEB00FFE300FFE000FFDE00FFDD00FFF900FFE400FFDF00FFDA00FFD700FFD400FFD300FF
  1352. F700FFD600FFD000FFCB00FFC800FFC700FFDC00FFC300FFBD00FFB900FFB700FFB300FFAB00FFA600FFA400FFF000FF
  1353. E900FFBA00FFAD00FFA000FF9600FF9000FF8D00FFD800FFCA00FFBB00FFAA00FF9900FF8900FF7D00FF7500FF7200FF
  1354. E800FFCF00FFBE00FF8200FF6F00FF6000FF5600FF5200FFD500FFC500FFB000FF8000FF6700FF5000FF3D00FF3100FF
  1355. 2D00FFCD00FF8400FF6600FF4800FF2C00FF1600FF0800FF0300FFEE00FFC400FF8E00FF6D00FF4900FF2500FF0400FF
  1356. 0016FF0028FF002EFF9C00FF7A00FF2800FF0002FF0029FF0048FF005CFF0063FF8C00FF6400FF3600FF005BFF007FFF
  1357. 0097FF009FFF4B00FF0023FF0091FF00BBFF00D6FF00E0FFCE00FFB500FF9300FF000CFF004DFF008FFF00CAFF00FBFF
  1358. 00FFE400FFD9002FFF0079FF00C4FF00FFF700FFC000FF9D00FF90C100FFA100FF0006FF0054FF00A7FF00FFB700FF7A
  1359. 00FF5300FF4500FFCB00FF7700FF3300FF0708FF00E200FF5700FF1300FF0040FF00FFF900FF9300FF3714FF0045FF00
  1360. 55FF0000FF5D5AFF008FFF00A1FF007800FF3A00FF0078FF00E7FF00FFA000FF289CFF00D5FF00E9FF00DB00FF7DFF00
  1361. DAFF00FFE700FFD200D900FFC000FF9B00FF2000FF003AFF34FF00AFFF00FFEC00FFAC00FF9600FFBD00FF7900FF6200
  1362. 5A00FF0E00FF00FFAC00FF1A78FF00FDFF00FF5000FF3800FF3200FF1900B800FF5300FF0062FF00DDFF04FF00FFD700
  1363. FF6800FF1F00FF0600FF0000>] setcolorspace
  1364. << /ImageType 1 /Decode [0 255] /Width 101 /Height 101 /BitsPerComponent 8
  1365. /ImageMatrix [101 0 0 -101 0 101] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  1366. >> image
  1367. G[Bd)q,\2E*6(@3@@1J*"<0W3$rBd5,2b>b%,A'2]t'e*Kp`n6Ah'+3B!.Db\^4qkC9-/ggWQu&Apa:O6Qr"LT"4%.H-a%a
  1368. cKFrb4Qh!&H,&6LfeNa9"pP89LArnX<X>24j["8rJ09XJk!M6`LE46@OU;$k^H>m,'k/",6kPf0(Y4`UQR@A^9Iu<\8gRpT
  1369. Kge,lOpPtX5<U+i.[.rkQK-0+j:W=[J:>(kM5_+AiIjQP.TRrB+petr)51#c;&BZ'ct<t"U?2\Cn>I'?X\Pp"&VUHpphC_B
  1370. "G;LAR3Gh2M:!8O%Jgp$.U!u_6o7@>#(_J+>c#uk)<64)2ob*i.U4HVK2K_Ne-H7M0I[<FU=j!MqE;r80dg]BV(!Q)KhP7$
  1371. V'#h5T"Hgi<U/j,Bku2KXA3&dZ8,RC$'q<Iaf,lh%Ks&qp2m&e,;Uk)Oe%c*@5Xq:EEaOmD'g5DN6-.lX\[d2gmFT*7pbUQ
  1372. kD%LZlZ2&'bi@&\_WF1@$/]9tj;/LG\Va%;>t'GNq%gjpgk7pt2OU'RJ^Z)K6u=in[qsm_.GJ1C^!*g"lP?sLF-NCUE*d'q
  1373. C'7:)VR.:c<&cA.Wb]8ThO<`08k6i1K3]o6S/7T`)I,./MpRmXG4+pcn(tC[Id`lajdoa>lccpG)kuJXaf3+1:^)u!WS$BK
  1374. n2<3#RXInih?MTG$;3FR5TuRi_YI<drW=at]RttL\$d;k5LS,/ps?i>B?Pl)@2M5!9MQ$</<8:"o,Y!/*M$Kl4hX#7?(E!+
  1375. ?&j<-2HgO\aQ1iI,Eh+ta4#')o_#\a4>h)(i7,lWrk9&VBuc8\9+WtKS/P3j.$80pW,1\e%1Wi.pd^'o#(7L$Pm,`,+uB<E
  1376. P>_Q54_'PR4+$CCrIrXWQc:Y=?+N"AU&Ou#ZZU9]1SlprLkJB[3MWh$gGsMt5<^e^1%)e3f]fLfbV3gs64oWU)LNF*MnaS?
  1377. m.u^2\&P:_s*8s+m+0E#f?:=&NS!,E5+.oZYkUtP-*sP]Z"qF1GC!kEB)8Z[W2m27.+8fM7gtU'W<&LVh1+@1po(rUi:3#/
  1378. cfUf^II_WU^&QJIkC`[+9Ji.CCls$ZQE-m^H['r7q>A,-oBGf(m\Un(Q;o#@'9L>8JOjfZ>$el.COPmPc.fdQJ%_=uqr[RP
  1379. f"RJ(>#KAd#aq2$Lm0S=AJ]]A4X1UroC!LQcd,:Do_?)<fguB78tX31pIEQ-c_FjE^4,tYp\/T5VnS+=roEn=r]mAQXP6TM
  1380. gYD+eS6]7pB5q@'dbiea>N0VBdV/b.$%QXiip?g<SH/KFJc*-1r.T^W-U;Q=+Eor0Ba)T5"_<2f1(+2Pl@J:L5W12:4!TjS
  1381. (X*p2U6,H(Xak,BJFm+iRQDW4,cEU95VEPAi<Ic]1GCL:0JG3YkP,'*oE+:~>
  1382. U
  1383. PSL_cliprestore
  1384. 25 W
  1385. 4 W
  1386. 0 0 M
  1387. 0 3360 D
  1388. S
  1389. 672 0 M
  1390. 0 3360 D
  1391. S
  1392. 1344 0 M
  1393. 0 3360 D
  1394. S
  1395. 2016 0 M
  1396. 0 3360 D
  1397. S
  1398. 2688 0 M
  1399. 0 3360 D
  1400. S
  1401. 3360 0 M
  1402. 0 3360 D
  1403. S
  1404. 0 0 M
  1405. 3360 0 D
  1406. S
  1407. 0 672 M
  1408. 3360 0 D
  1409. S
  1410. 0 1344 M
  1411. 3360 0 D
  1412. S
  1413. 0 2016 M
  1414. 3360 0 D
  1415. S
  1416. 0 2688 M
  1417. 3360 0 D
  1418. S
  1419. 0 3360 M
  1420. 3360 0 D
  1421. S
  1422. 2 setlinecap
  1423. 25 W
  1424. N 0 3360 M 0 -3360 D S
  1425. /PSL_A0_y 83 def
  1426. /PSL_A1_y 0 def
  1427. 8 W
  1428. N 0 0 M -83 0 D S
  1429. N 0 1344 M -83 0 D S
  1430. N 0 2688 M -83 0 D S
  1431. /PSL_AH0 0
  1432. /MM {neg exch M} def
  1433. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1434. 200 F0
  1435. (0) sw mx
  1436. (20) sw mx
  1437. (40) sw mx
  1438. def
  1439. /PSL_A0_y PSL_A0_y 83 add def
  1440. 0 PSL_A0_y MM
  1441. (0) mr Z
  1442. 1344 PSL_A0_y MM
  1443. (20) mr Z
  1444. 2688 PSL_A0_y MM
  1445. (40) mr Z
  1446. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1447. N 0 672 M -42 0 D S
  1448. N 0 2016 M -42 0 D S
  1449. N 0 3360 M -42 0 D S
  1450. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1451. 3360 0 T
  1452. 25 W
  1453. N 0 3360 M 0 -3360 D S
  1454. /PSL_A0_y 83 def
  1455. /PSL_A1_y 0 def
  1456. 8 W
  1457. N 0 0 M 83 0 D S
  1458. N 0 1344 M 83 0 D S
  1459. N 0 2688 M 83 0 D S
  1460. N 0 672 M 42 0 D S
  1461. N 0 2016 M 42 0 D S
  1462. N 0 3360 M 42 0 D S
  1463. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1464. -3360 0 T
  1465. 25 W
  1466. N 0 0 M 3360 0 D S
  1467. /PSL_A0_y 83 def
  1468. /PSL_A1_y 0 def
  1469. 8 W
  1470. N 0 0 M 0 -83 D S
  1471. N 1344 0 M 0 -83 D S
  1472. N 2688 0 M 0 -83 D S
  1473. /PSL_AH0 0
  1474. /MM {neg M} def
  1475. (0) sh mx
  1476. (20) sh mx
  1477. (40) sh mx
  1478. def
  1479. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1480. 0 PSL_A0_y MM
  1481. (0) bc Z
  1482. 1344 PSL_A0_y MM
  1483. (20) bc Z
  1484. 2688 PSL_A0_y MM
  1485. (40) bc Z
  1486. N 672 0 M 0 -42 D S
  1487. N 2016 0 M 0 -42 D S
  1488. N 3360 0 M 0 -42 D S
  1489. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1490. 0 3360 T
  1491. 25 W
  1492. N 0 0 M 3360 0 D S
  1493. /PSL_A0_y 83 def
  1494. /PSL_A1_y 0 def
  1495. 8 W
  1496. N 0 0 M 0 83 D S
  1497. N 1344 0 M 0 83 D S
  1498. N 2688 0 M 0 83 D S
  1499. N 672 0 M 0 42 D S
  1500. N 2016 0 M 0 42 D S
  1501. N 3360 0 M 0 42 D S
  1502. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1503. 0 -3360 T
  1504. 0 setlinecap
  1505. %%EndObject
  1506. 0 A
  1507. FQ
  1508. O0
  1509. 0 0 TM
  1510. % PostScript produced by:
  1511. %@GMT: gmt pstext -R0/50/0/50 -JX2.8i -O -K -Dj0.1i/0.1i -F+jTR+f18p -W1p -Gwhite
  1512. %@PROJ: xy 0.00000000 50.00000000 0.00000000 50.00000000 0.000 50.000 0.000 50.000 +xy
  1513. %%BeginObject PSL_Layer_9
  1514. 0 setlinecap
  1515. 0 setlinejoin
  1516. 3.32551 setmiterlimit
  1517. clipsave
  1518. 0 0 M
  1519. 3360 0 D
  1520. 0 3360 D
  1521. -3360 0 D
  1522. P
  1523. PSL_clip N
  1524. 17 W
  1525. {1 A} FS
  1526. O1
  1527. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1528. 300 F0
  1529. V
  1530. (-D0 -Fg15/30) V MU 0 0 M E /PSL_dim_w edef FP pathbbox N /PSL_dim_h edef /PSL_dim_x1 edef /PSL_dim_d edef /PSL_dim_x0 edef U
  1531. /PSL_dx 45 def
  1532. /PSL_dy 45 def
  1533. 3240 3240 T PSL_dim_w neg PSL_dim_h neg T
  1534. PSL_dim_h PSL_dim_d sub PSL_dy 2 mul add PSL_dim_x1 PSL_dim_x0 sub PSL_dx 2 mul add PSL_dim_x0 PSL_dx sub PSL_dim_d PSL_dy sub Sb
  1535. U
  1536. 3240 3240 M (-D0 -Fg15/30) tr Z
  1537. PSL_cliprestore
  1538. %%EndObject
  1539. 0 A
  1540. FQ
  1541. O0
  1542. -4200 3840 TM
  1543. % PostScript produced by:
  1544. %@GMT: gmt grdimage -JX2.8i -B20f10g10 -BWSne -Ct.cpt -O -K f.nc -X-3.5i -Y3.2i
  1545. %@PROJ: xy 0.00000000 50.00000000 0.00000000 50.00000000 0.000 50.000 0.000 50.000 +xy
  1546. %%BeginObject PSL_Layer_10
  1547. 0 setlinecap
  1548. 0 setlinejoin
  1549. 3.32551 setmiterlimit
  1550. clipsave
  1551. 0 0 M
  1552. 3360 0 D
  1553. 0 3360 D
  1554. -3360 0 D
  1555. P
  1556. PSL_clip N
  1557. V N -17 -17 T 3394 3394 scale [/Indexed /DeviceRGB 1 <
  1558. FF00FFFF0000>] setcolorspace
  1559. << /ImageType 1 /Decode [0 1] /Width 101 /Height 101 /BitsPerComponent 1
  1560. /ImageMatrix [101 0 0 -101 0 101] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  1561. >> image
  1562. G[=lf(^38Cf`2!Os1p*rBQ-GW:]pdm:ktS~>
  1563. U
  1564. PSL_cliprestore
  1565. 25 W
  1566. 4 W
  1567. 0 0 M
  1568. 0 3360 D
  1569. S
  1570. 672 0 M
  1571. 0 3360 D
  1572. S
  1573. 1344 0 M
  1574. 0 3360 D
  1575. S
  1576. 2016 0 M
  1577. 0 3360 D
  1578. S
  1579. 2688 0 M
  1580. 0 3360 D
  1581. S
  1582. 3360 0 M
  1583. 0 3360 D
  1584. S
  1585. 0 0 M
  1586. 3360 0 D
  1587. S
  1588. 0 672 M
  1589. 3360 0 D
  1590. S
  1591. 0 1344 M
  1592. 3360 0 D
  1593. S
  1594. 0 2016 M
  1595. 3360 0 D
  1596. S
  1597. 0 2688 M
  1598. 3360 0 D
  1599. S
  1600. 0 3360 M
  1601. 3360 0 D
  1602. S
  1603. 2 setlinecap
  1604. 25 W
  1605. N 0 3360 M 0 -3360 D S
  1606. /PSL_A0_y 83 def
  1607. /PSL_A1_y 0 def
  1608. 8 W
  1609. N 0 0 M -83 0 D S
  1610. N 0 1344 M -83 0 D S
  1611. N 0 2688 M -83 0 D S
  1612. /PSL_AH0 0
  1613. /MM {neg exch M} def
  1614. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1615. 200 F0
  1616. (0) sw mx
  1617. (20) sw mx
  1618. (40) sw mx
  1619. def
  1620. /PSL_A0_y PSL_A0_y 83 add def
  1621. 0 PSL_A0_y MM
  1622. (0) mr Z
  1623. 1344 PSL_A0_y MM
  1624. (20) mr Z
  1625. 2688 PSL_A0_y MM
  1626. (40) mr Z
  1627. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1628. N 0 672 M -42 0 D S
  1629. N 0 2016 M -42 0 D S
  1630. N 0 3360 M -42 0 D S
  1631. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1632. 3360 0 T
  1633. 25 W
  1634. N 0 3360 M 0 -3360 D S
  1635. /PSL_A0_y 83 def
  1636. /PSL_A1_y 0 def
  1637. 8 W
  1638. N 0 0 M 83 0 D S
  1639. N 0 1344 M 83 0 D S
  1640. N 0 2688 M 83 0 D S
  1641. N 0 672 M 42 0 D S
  1642. N 0 2016 M 42 0 D S
  1643. N 0 3360 M 42 0 D S
  1644. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1645. -3360 0 T
  1646. 25 W
  1647. N 0 0 M 3360 0 D S
  1648. /PSL_A0_y 83 def
  1649. /PSL_A1_y 0 def
  1650. 8 W
  1651. N 0 0 M 0 -83 D S
  1652. N 1344 0 M 0 -83 D S
  1653. N 2688 0 M 0 -83 D S
  1654. /PSL_AH0 0
  1655. /MM {neg M} def
  1656. (0) sh mx
  1657. (20) sh mx
  1658. (40) sh mx
  1659. def
  1660. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1661. 0 PSL_A0_y MM
  1662. (0) bc Z
  1663. 1344 PSL_A0_y MM
  1664. (20) bc Z
  1665. 2688 PSL_A0_y MM
  1666. (40) bc Z
  1667. N 672 0 M 0 -42 D S
  1668. N 2016 0 M 0 -42 D S
  1669. N 3360 0 M 0 -42 D S
  1670. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1671. 0 3360 T
  1672. 25 W
  1673. N 0 0 M 3360 0 D S
  1674. /PSL_A0_y 83 def
  1675. /PSL_A1_y 0 def
  1676. 8 W
  1677. N 0 0 M 0 83 D S
  1678. N 1344 0 M 0 83 D S
  1679. N 2688 0 M 0 83 D S
  1680. N 672 0 M 0 42 D S
  1681. N 2016 0 M 0 42 D S
  1682. N 3360 0 M 0 42 D S
  1683. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1684. 0 -3360 T
  1685. 0 setlinecap
  1686. %%EndObject
  1687. 0 A
  1688. FQ
  1689. O0
  1690. 0 0 TM
  1691. % PostScript produced by:
  1692. %@GMT: gmt pstext -R0/50/0/50 -JX2.8i -O -K -Dj0.1i/0.1i -F+jTR+f18p -W1p -Gwhite
  1693. %@PROJ: xy 0.00000000 50.00000000 0.00000000 50.00000000 0.000 50.000 0.000 50.000 +xy
  1694. %%BeginObject PSL_Layer_11
  1695. 0 setlinecap
  1696. 0 setlinejoin
  1697. 3.32551 setmiterlimit
  1698. clipsave
  1699. 0 0 M
  1700. 3360 0 D
  1701. 0 3360 D
  1702. -3360 0 D
  1703. P
  1704. PSL_clip N
  1705. 17 W
  1706. {1 A} FS
  1707. O1
  1708. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1709. 300 F0
  1710. V
  1711. (-Dp -Fb31/31) V MU 0 0 M E /PSL_dim_w edef FP pathbbox N /PSL_dim_h edef /PSL_dim_x1 edef /PSL_dim_d edef /PSL_dim_x0 edef U
  1712. /PSL_dx 45 def
  1713. /PSL_dy 45 def
  1714. 3240 3240 T PSL_dim_w neg PSL_dim_h neg T
  1715. PSL_dim_h PSL_dim_d sub PSL_dy 2 mul add PSL_dim_x1 PSL_dim_x0 sub PSL_dx 2 mul add PSL_dim_x0 PSL_dx sub PSL_dim_d PSL_dy sub Sb
  1716. U
  1717. 3240 3240 M (-Dp -Fb31/31) tr Z
  1718. PSL_cliprestore
  1719. %%EndObject
  1720. 0 A
  1721. FQ
  1722. O0
  1723. 4200 0 TM
  1724. % PostScript produced by:
  1725. %@GMT: gmt grdimage -JX2.8i -B20f10g10 -BWSne -Ct.cpt -O -K f.nc -X3.5i -Y0i
  1726. %@PROJ: xy 0.00000000 50.00000000 0.00000000 50.00000000 0.000 50.000 0.000 50.000 +xy
  1727. %%BeginObject PSL_Layer_12
  1728. 0 setlinecap
  1729. 0 setlinejoin
  1730. 3.32551 setmiterlimit
  1731. clipsave
  1732. 0 0 M
  1733. 3360 0 D
  1734. 0 3360 D
  1735. -3360 0 D
  1736. P
  1737. PSL_clip N
  1738. V N -17 -17 T 3394 3394 scale /DeviceRGB setcolorspace
  1739. << /ImageType 1 /Decode [0 1 0 1 0 1] /Width 101 /Height 101 /BitsPerComponent 8
  1740. /ImageMatrix [101 0 0 -101 0 101] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  1741. >> image
  1742. G[Bd-$Z)(s(<;KJCK?oIdQk/D&/#dM,E3iX$AM):fgl5aM;T`UW6-=cGmJ#K.KkHY!*0+,#R$q+d"k^fMF=27&IL)N;7DEO
  1743. TNo[@>-4#j>AinZ^\N:_;\i';1$$p1,l`8&R5o?6J'L"9baI_/Pt<#<*Zc@D*Zc@D*Zc@D*Zc@D*Zc@D*re`d>n7Cr+SttS
  1744. XhsDXD3Aa6n3:dsB65$@S*E8@kn:L>\cC$.F.fBZKOWo%E;7D^_V2MVqRFqm/o>L/qpeQk7fE^b'D`uAlrd8pl"<q[kss25
  1745. VDG*uVGj@UVA#g6e+Xu*28[??A54=uR^#)MV[B!Fkc]hinlH(Ia'I<DCcp;$=.uBU0*Nlb(Zl?(Wfh's0`>LY,Gm6F+k,&?
  1746. s-QDP#>G"hqb4u+]iUtrpAN's+TF</bKt;=SJC@l`7E8e4W!iskd9L4Z,XMXKk(Xr]8AIbP3ErtG/6!G1AsA5SYea&(T)&H
  1747. Xel0K-`2m#%Ao1\q/LdUb=6dcOPIjS68\$pgHdZ_@3pNE1K^i8aTYd(p/mM7\uCKkmAh?XIc<d$YuAq!8m*+F9ja>Q2goGp
  1748. AGX[FSnYTHV.l?3Z0?,S!n1AN>gjX3jO1>ahSi$gACPs>fS$]ZdC^DKV-#:hH6l81?L>"n];pM\:`&k+'tGW8bMPU7+3Pd/
  1749. %pN-fl^7,RdsTUadnJ4Idm$Qj:#erX9k-kl9I&R77E\eZ-R1X2;01*g"E!JO]EKfIYulnV#Y_8X*ijp+6W;IEW<a`RSh*aV
  1750. gC+o?2gn>Xls^;f&?RnQ0tU[;44Q181tqS\Bt,V81sklNWNW:^WOJjn.?eC_>5HZ/&BWmi)NBKNBZihc*``WP\-qW[_W3PT
  1751. C1(/9m!&p`0jIo4XT&Pg&+H;Xj1VWCNomW$-CJ0o4_YgFlA&.j9Rek+2r/%;275-7Qu7g,KpG\agEW-&W.&E)&oEiZ4;TNK
  1752. Z1o3f&&9FlX6TH]95ZkHm]'hGWZkr#a.(mV=q4m5$IbKA)(^MYe)R>)VB2V[VDMOtMofk'V984gFd.$3V9?HiO\SP>H;gBq
  1753. /W<:h6P$OeNol1#GnZ,%Z+^kuhnc<"L:,:A?'e^W^T\fFP;d[TIKRm=:%JXY+TDj+4`'Cql<n?E\EH^^5O_$plp9;)fauhU
  1754. g!d7iA0YZ\GWnX@E-_a3RDGh$VkGEj\tOBd<i0>G3S$EI8L^ad_!htQPO>R]<')J\Q1g>'np/FM8C#PN#*Xl2$QXAj/<,qd
  1755. O=X&uXDELT<S;3AI+^Te's^iF4J"':R8<:P83Y4qLX;.F['`;C0<@9s`HbS3LWM_^SV5sUB&Kh<C?Zh^&uC7H!BK48hK?X6
  1756. 0iN9p>LQp\?aZ3U0C(:gLMXWiFkItl>1mLjTkpp6<-DAe<*%<90J.Y9h2LD=7ZBo*J$cV,RbM<50e?)=qJ)DaKN//0k@'ib
  1757. GL`te<)P%1kCp&dlcpV6"uD1E0`'MF11`ga0="d<PnhC>NE^jp7E$^[M@)M`[MIhCQ"uF)EtnEO`m.'":is-eqU;Z+(qVT^
  1758. YT?"*iDp92\tlp<!<Qo%<>i4((A@C2jPF=`8DDKm*JgAdA?X(?1?F.o8jP\/au?1A13?Wh"Zf]S%'-D1oR;F'b`+Z>L8AR1
  1759. $I'T]Q*sd7L@r*9hZBi6(nQFu&kfD4[[V#,D-p4Ik>MOYA%-cOXQ!]n*Abj(c'5>mm>t>$UEej[%A`0[p<56cTK(2n]ZTC.
  1760. "PW#]ZN9lX)d@lb2<`7RIlh</53un!@0q=qKNeUBCQn.g94ZEU]CtEhL0SJea4[e&LA<<_2%\!tI9EhV>(g!si;8<TcG,b(
  1761. +DT=09V"it:&"5F6q\VJZ]SM.W+)Zu)K"r<q'iDPFr%\uI1f6)_<N-OIthggh,VG=5VXXrPuQHj:_@gUpVHaK0X%\nK%Z\2
  1762. V9jBd9<`5%:ptSF)RVY;GK\\R>OD5+[$X3114>;2@I/08k<(fWTRSAuDKU."_dOm>5)%`GGUD6P(YNnjE'LR`ofn^f]19B<
  1763. db)<@,gYf_f@:1BU4oIaVFO?dK&XJ/X:&%Y5hQgV&QDsZpcOZ3TXU2-=pjh]13Oge:,ne+d/P;ud[],7E0q!)9lN/qc\ong
  1764. f*-'Wb1O!ajQ&CbaQX[Vpo`uYZcUED?WF?\(:&?O'^V5:<:576Ssgjm7?P!2fe;=U/D?^b-BLo@:.o*`)"_Wg3\/QA)d?U=
  1765. h9Ku,#bMXd<X-kX8Te)K!b]$H/*(#J%d2_u@I]FO"s2+)+7*R!BeaTaNqp,$,O<T(b+YF'5djCq>BW:*(!k^CHpDT[P(A!"
  1766. kHWTO(l,P/VthH9`a^aR=mlTZ3Nsudi>L9;S!qjO6^6<n1gA9B</*3^dP<i9\^O.d<FnHu1IT=43CHeL)eM!32G^bf<^]qf
  1767. *S+Tj=)JSDZlGod4d)QXe`P!mHPC<=3R*gkGo_e`Sb5[Db_4L_0K]g!Uq>q,GJ`+UX4+RgaU$5<)+;jrC.hW8m:'E1Ecm]_
  1768. f#_UBD2[aW\-(6"^agS['_*`JV8i0L6?58bH=)NO/neI>k*WK\#`BSGH3R'?_.jnt:Gi5uS`<+=67KI(,?kpB/af4h5u)]@
  1769. =Waf`gd!.slu"9:7+OI_i&Y@In\M"[S(;W@>K1_9/\C5+3QWk3)F5DhoCk]:#,hJL[O,DVG/ka650Mkb!mbr4^g/=t>Un[e
  1770. 0q!C$p0lr!^q"\Gk8.3`0;j!Ygkrb86[T&Q`qemR.j0mNBtEP?dn;g$dum5i@4->V;)r;tYO%4nj\GhOfQn:EWK+k]pah0S
  1771. !I,sI>r<>?qt]QqgY<E+_JPmVTc1dc<>akn,4]WU?_qq&a(S<eK?*LO0]UbUhEcAqARu;3o/PHj,BMY^(WBmebE[Bi&=SNI
  1772. PsR#3ERsT1a`pp9!lGAt-J_tbF&0*(,Vk\T8.G1gE,s30;=A<I/I1sZMj5aXG:j;>Lp]?m1(l5Dj*PfMm`FWCg0[3ZQ]jYV
  1773. fI?$XK'e3QXj5'q/.QmT;]._6<Z>KBIC!op1$R^MMP35m[b-F?o,V^V>e--Gl0j0bW'"]i+h48SSEuK`.a$ao5+V:14.b]D
  1774. AC6m)A@WYe%1NECeGKiM3T!sg`T#@lH4-+!J^jrA2A::'q"s<r9P>.3$W=4P`QrP=G?AZRlfd\W2mrL0C+:$p-04[^n\\2]
  1775. T6j7Uipf,+S/sok9LlD,NS9AH-TEDlXrN/p;pNr$m%uiS^$3UlgKo+_+*Zi<QbeehU"j6Zf-@g<FWhPEQ@bX^Ys&!<&unc0
  1776. ?gV8,I$m[YP8+gWl*$sKo=U9QT(KaUj;p8F!#e=GY2gk"NW+a?[0jNO*J[tjGlqs/em4]Y\n`"(aQ4V8YG,jG[f`n@Pe,]$
  1777. U.+G@0+i3[M89u&b':@fV)u@D+^*kqI>*ER3Jhg$nI58T4'R!_`Eem]"F'[loippr.j=\Y0d6>'.j=\f4sB\W@mZ"J)i6ro
  1778. p%MaK+R3lD'1(.*eL(FuQ_9#is3?uC)Z3sI'1%9NN^P()nDD#Q":bA-?&9]d^HIqi@fF!=M'1rqq4%_"rd4<p+NBhDf)KLF
  1779. `Xo_^cMo6T`XlWeY4o[j]4!Pkh_QU20HTQYY@VV\@6?IA=H3>4p2;1![E%S10E%A,@ujphs$u&Q&8U@6cu2e]?V52EZ0S+B
  1780. )FT&sY#T^P]1oU(nF5r:nF5r:nF5r:nF5r:nF5r:nF63_iP5:(j<F~>
  1781. U
  1782. PSL_cliprestore
  1783. 25 W
  1784. 4 W
  1785. 0 0 M
  1786. 0 3360 D
  1787. S
  1788. 672 0 M
  1789. 0 3360 D
  1790. S
  1791. 1344 0 M
  1792. 0 3360 D
  1793. S
  1794. 2016 0 M
  1795. 0 3360 D
  1796. S
  1797. 2688 0 M
  1798. 0 3360 D
  1799. S
  1800. 3360 0 M
  1801. 0 3360 D
  1802. S
  1803. 0 0 M
  1804. 3360 0 D
  1805. S
  1806. 0 672 M
  1807. 3360 0 D
  1808. S
  1809. 0 1344 M
  1810. 3360 0 D
  1811. S
  1812. 0 2016 M
  1813. 3360 0 D
  1814. S
  1815. 0 2688 M
  1816. 3360 0 D
  1817. S
  1818. 0 3360 M
  1819. 3360 0 D
  1820. S
  1821. 2 setlinecap
  1822. 25 W
  1823. N 0 3360 M 0 -3360 D S
  1824. /PSL_A0_y 83 def
  1825. /PSL_A1_y 0 def
  1826. 8 W
  1827. N 0 0 M -83 0 D S
  1828. N 0 1344 M -83 0 D S
  1829. N 0 2688 M -83 0 D S
  1830. /PSL_AH0 0
  1831. /MM {neg exch M} def
  1832. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1833. 200 F0
  1834. (0) sw mx
  1835. (20) sw mx
  1836. (40) sw mx
  1837. def
  1838. /PSL_A0_y PSL_A0_y 83 add def
  1839. 0 PSL_A0_y MM
  1840. (0) mr Z
  1841. 1344 PSL_A0_y MM
  1842. (20) mr Z
  1843. 2688 PSL_A0_y MM
  1844. (40) mr Z
  1845. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1846. N 0 672 M -42 0 D S
  1847. N 0 2016 M -42 0 D S
  1848. N 0 3360 M -42 0 D S
  1849. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1850. 3360 0 T
  1851. 25 W
  1852. N 0 3360 M 0 -3360 D S
  1853. /PSL_A0_y 83 def
  1854. /PSL_A1_y 0 def
  1855. 8 W
  1856. N 0 0 M 83 0 D S
  1857. N 0 1344 M 83 0 D S
  1858. N 0 2688 M 83 0 D S
  1859. N 0 672 M 42 0 D S
  1860. N 0 2016 M 42 0 D S
  1861. N 0 3360 M 42 0 D S
  1862. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1863. -3360 0 T
  1864. 25 W
  1865. N 0 0 M 3360 0 D S
  1866. /PSL_A0_y 83 def
  1867. /PSL_A1_y 0 def
  1868. 8 W
  1869. N 0 0 M 0 -83 D S
  1870. N 1344 0 M 0 -83 D S
  1871. N 2688 0 M 0 -83 D S
  1872. /PSL_AH0 0
  1873. /MM {neg M} def
  1874. (0) sh mx
  1875. (20) sh mx
  1876. (40) sh mx
  1877. def
  1878. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1879. 0 PSL_A0_y MM
  1880. (0) bc Z
  1881. 1344 PSL_A0_y MM
  1882. (20) bc Z
  1883. 2688 PSL_A0_y MM
  1884. (40) bc Z
  1885. N 672 0 M 0 -42 D S
  1886. N 2016 0 M 0 -42 D S
  1887. N 3360 0 M 0 -42 D S
  1888. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1889. 0 3360 T
  1890. 25 W
  1891. N 0 0 M 3360 0 D S
  1892. /PSL_A0_y 83 def
  1893. /PSL_A1_y 0 def
  1894. 8 W
  1895. N 0 0 M 0 83 D S
  1896. N 1344 0 M 0 83 D S
  1897. N 2688 0 M 0 83 D S
  1898. N 672 0 M 0 42 D S
  1899. N 2016 0 M 0 42 D S
  1900. N 3360 0 M 0 42 D S
  1901. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1902. 0 -3360 T
  1903. 0 setlinecap
  1904. %%EndObject
  1905. 0 A
  1906. FQ
  1907. O0
  1908. 0 0 TM
  1909. % PostScript produced by:
  1910. %@GMT: gmt pstext -R0/50/0/50 -JX2.8i -O -K -Dj0.1i/0.1i -F+jTR+f18p -W1p -Gwhite
  1911. %@PROJ: xy 0.00000000 50.00000000 0.00000000 50.00000000 0.000 50.000 0.000 50.000 +xy
  1912. %%BeginObject PSL_Layer_13
  1913. 0 setlinecap
  1914. 0 setlinejoin
  1915. 3.32551 setmiterlimit
  1916. clipsave
  1917. 0 0 M
  1918. 3360 0 D
  1919. 0 3360 D
  1920. -3360 0 D
  1921. P
  1922. PSL_clip N
  1923. 17 W
  1924. {1 A} FS
  1925. O1
  1926. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1927. 300 F0
  1928. V
  1929. (-Dp -Fc61/61) V MU 0 0 M E /PSL_dim_w edef FP pathbbox N /PSL_dim_h edef /PSL_dim_x1 edef /PSL_dim_d edef /PSL_dim_x0 edef U
  1930. /PSL_dx 45 def
  1931. /PSL_dy 45 def
  1932. 3240 3240 T PSL_dim_w neg PSL_dim_h neg T
  1933. PSL_dim_h PSL_dim_d sub PSL_dy 2 mul add PSL_dim_x1 PSL_dim_x0 sub PSL_dx 2 mul add PSL_dim_x0 PSL_dx sub PSL_dim_d PSL_dy sub Sb
  1934. U
  1935. 3240 3240 M (-Dp -Fc61/61) tr Z
  1936. PSL_cliprestore
  1937. %%EndObject
  1938. 0 A
  1939. FQ
  1940. O0
  1941. 0 0 TM
  1942. % PostScript produced by:
  1943. %@GMT: gmt psxy -R0/50/0/50 -JX2.8i -O -T
  1944. %@PROJ: xy 0.00000000 50.00000000 0.00000000 50.00000000 0.000 50.000 0.000 50.000 +xy
  1945. %%BeginObject PSL_Layer_14
  1946. 0 setlinecap
  1947. 0 setlinejoin
  1948. 3.32551 setmiterlimit
  1949. %%EndObject
  1950. grestore
  1951. PSL_movie_completion /PSL_movie_completion {} def
  1952. %PSL_Begin_Trailer
  1953. %%PageTrailer
  1954. U
  1955. showpage
  1956. %%Trailer
  1957. end
  1958. %%EOF
Tip!

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

Comments

Loading...