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

legend3D.ps 44 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
  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_1ded948 [64-bit] Document from pslegend
  5. %%Creator: GMT6
  6. %%For: unknown
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Thu Dec 6 10:52:29 2018
  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 PSL_fnt k get def
  339. psl_fnt (FS) search {pop pop pop /PSL_fmode 2 def} {pop /PSL_fmode 1 def} ifelse
  340. psl_fnt cvx exec
  341. /PSL_height PSL_heights k get def
  342. PSL_placetext {PSL_CT_placelabel} if
  343. PSL_clippath {PSL_CT_clippath} if
  344. /n 0 def /k k 1 add def
  345. } def
  346. /PSL_CT_calcstringwidth
  347. { /PSL_width_tmp PSL_m array def
  348. 0 1 PSL_m1
  349. { /i exch def
  350. PSL_fnt_tmp i get cvx exec
  351. PSL_width_tmp i PSL_str_tmp i get stringwidth pop put
  352. } for
  353. } def
  354. /PSL_CT_calclinedist
  355. { /PSL_newx PSL_x 0 get def
  356. /PSL_newy PSL_y 0 get def
  357. /dist 0.0 def
  358. /PSL_dist PSL_n array def
  359. PSL_dist 0 0.0 put
  360. 1 1 PSL_n1
  361. { /i exch def
  362. /PSL_oldx PSL_newx def
  363. /PSL_oldy PSL_newy def
  364. /PSL_newx PSL_x i get def
  365. /PSL_newy PSL_y i get def
  366. /dx PSL_newx PSL_oldx sub def
  367. /dy PSL_newy PSL_oldy sub def
  368. /dist dist dx dx mul dy dy mul add sqrt add def
  369. PSL_dist i dist put
  370. } for
  371. } def
  372. /PSL_CT_excludelabels
  373. { /k 0 def
  374. /PSL_width PSL_m array def
  375. /PSL_angle PSL_m array def
  376. /PSL_node PSL_m array def
  377. /PSL_str PSL_m array def
  378. /PSL_fnt PSL_m array def
  379. /lastdist PSL_dist PSL_n1 get def
  380. 0 1 PSL_m1
  381. { /i exch def
  382. /dist PSL_dist PSL_node_tmp i get get def
  383. /halfwidth PSL_width_tmp i get 2 div PSL_gap_x add def
  384. /L_dist dist halfwidth sub def
  385. /R_dist dist halfwidth add def
  386. L_dist 0 gt R_dist lastdist lt and
  387. {
  388. PSL_width k PSL_width_tmp i get put
  389. PSL_node k PSL_node_tmp i get put
  390. PSL_angle k PSL_angle_tmp i get put
  391. PSL_str k PSL_str_tmp i get put
  392. PSL_fnt k PSL_fnt_tmp i get put
  393. /k k 1 add def
  394. } if
  395. } for
  396. /PSL_m k def
  397. /PSL_m1 PSL_m 1 sub def
  398. } def
  399. /PSL_CT_addcutpoints
  400. { /k 0 def
  401. /PSL_nc PSL_m 2 mul 1 add def
  402. /PSL_cuts PSL_nc array def
  403. /PSL_nc1 PSL_nc 1 sub def
  404. 0 1 PSL_m1
  405. { /i exch def
  406. /dist PSL_dist PSL_node i get get def
  407. /halfwidth PSL_width i get 2 div PSL_gap_x add def
  408. PSL_cuts k dist halfwidth sub put
  409. /k k 1 add def
  410. PSL_cuts k dist halfwidth add put
  411. /k k 1 add def
  412. } for
  413. PSL_cuts k 100000.0 put
  414. /PSL_nn PSL_n PSL_m 2 mul add def
  415. /PSL_xx PSL_nn array def
  416. /PSL_yy PSL_nn array def
  417. /PSL_kind PSL_nn array def
  418. /j 0 def
  419. /k 0 def
  420. /dist 0.0 def
  421. 0 1 PSL_n1
  422. { /i exch def
  423. /last_dist dist def
  424. /dist PSL_dist i get def
  425. k 1 PSL_nc1
  426. { /kk exch def
  427. /this_cut PSL_cuts kk get def
  428. dist this_cut gt
  429. { /ds dist last_dist sub def
  430. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
  431. /i1 i 0 eq {0} {i 1 sub} ifelse def
  432. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
  433. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  434. PSL_kind j 1 put
  435. /j j 1 add def
  436. /k k 1 add def
  437. } if
  438. } for
  439. dist PSL_cuts k get le
  440. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  441. PSL_kind j 0 put
  442. /j j 1 add def
  443. } if
  444. } for
  445. } def
  446. /PSL_CT_reversepath
  447. {PSL_xp j get PSL_xp 0 get lt
  448. {0 1 j 2 idiv
  449. { /left exch def
  450. /right j left sub def
  451. /tmp PSL_xp left get def
  452. PSL_xp left PSL_xp right get put
  453. PSL_xp right tmp put
  454. /tmp PSL_yp left get def
  455. PSL_yp left PSL_yp right get put
  456. PSL_yp right tmp put
  457. } for
  458. } if
  459. } def
  460. /PSL_CT_placelabel
  461. {
  462. /PSL_just PSL_label_justify k get def
  463. /PSL_height PSL_heights k get def
  464. /psl_label PSL_str k get def
  465. /psl_depth psl_label sd def
  466. PSL_usebox
  467. {PSL_CT_clippath
  468. PSL_fillbox
  469. {V PSL_setboxrgb fill U} if
  470. PSL_drawbox
  471. {V PSL_setboxpen S U} if N
  472. } if
  473. PSL_CT_placeline psl_label PSL_gap_x PSL_just PSL_height psl_depth PSL_pathtext
  474. } def
  475. /PSL_CT_clippath
  476. {
  477. /H PSL_height 2 div PSL_gap_y add def
  478. /xoff j 1 add array def
  479. /yoff j 1 add array def
  480. /angle 0 def
  481. 0 1 j {
  482. /ii exch def
  483. /x PSL_xp ii get def
  484. /y PSL_yp ii get def
  485. ii 0 eq {
  486. /x1 PSL_xp 1 get def
  487. /y1 PSL_yp 1 get def
  488. /dx x1 x sub def
  489. /dy y1 y sub def
  490. }
  491. { /i1 ii 1 sub def
  492. /x1 PSL_xp i1 get def
  493. /y1 PSL_yp i1 get def
  494. /dx x x1 sub def
  495. /dy y y1 sub def
  496. } ifelse
  497. dx 0.0 eq dy 0.0 eq and not
  498. { /angle dy dx atan 90 add def} if
  499. /sina angle sin def
  500. /cosa angle cos def
  501. xoff ii H cosa mul put
  502. yoff ii H sina mul put
  503. } for
  504. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  505. 1 1 j {
  506. /ii exch def
  507. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  508. } for
  509. j -1 0 {
  510. /ii exch def
  511. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  512. } for P
  513. } def
  514. /PSL_CT_drawline
  515. {
  516. /str 20 string def
  517. PSL_strokeline
  518. {PSL_CT_placeline S} if
  519. /PSL_seg PSL_seg 1 add def
  520. /n 1 def
  521. } def
  522. /PSL_CT_placeline
  523. {PSL_xp 0 get PSL_yp 0 get M
  524. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
  525. } def
  526. /PSL_draw_path_lines
  527. {
  528. /PSL_n_paths1 PSL_n_paths 1 sub def
  529. V
  530. /psl_start 0 def
  531. 0 1 PSL_n_paths1
  532. { /psl_k exch def
  533. /PSL_n PSL_path_n psl_k get def
  534. /PSL_n1 PSL_n 1 sub def
  535. PSL_path_pen psl_k get cvx exec
  536. N
  537. PSL_path_x psl_start get PSL_path_y psl_start get M
  538. 1 1 PSL_n1
  539. { /psl_i exch def
  540. /psl_kk psl_i psl_start add def
  541. PSL_path_x psl_kk get PSL_path_y psl_kk get L
  542. } for
  543. /psl_xclose PSL_path_x psl_kk get PSL_path_x psl_start get sub def
  544. /psl_yclose PSL_path_y psl_kk get PSL_path_y psl_start get sub def
  545. psl_xclose 0 eq psl_yclose 0 eq and { P } if
  546. S
  547. /psl_start psl_start PSL_n add def
  548. } for
  549. U
  550. } def
  551. /PSL_straight_path_labels
  552. {
  553. /psl_bits exch def
  554. /PSL_placetext psl_bits 2 and 2 eq def
  555. /PSL_rounded psl_bits 32 and 32 eq def
  556. /PSL_fillbox psl_bits 128 and 128 eq def
  557. /PSL_drawbox psl_bits 256 and 256 eq def
  558. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  559. /PSL_usebox PSL_fillbox PSL_drawbox or def
  560. 0 1 PSL_n_labels_minus_1
  561. { /psl_k exch def
  562. PSL_ST_prepare_text
  563. PSL_usebox
  564. { PSL_rounded
  565. {PSL_ST_textbox_round}
  566. {PSL_ST_textbox_rect}
  567. ifelse
  568. PSL_fillbox {V PSL_setboxrgb fill U} if
  569. PSL_drawbox {V PSL_setboxpen S U} if
  570. N
  571. } if
  572. PSL_placetext {PSL_ST_place_label} if
  573. } for
  574. } def
  575. /PSL_straight_path_clip
  576. {
  577. /psl_bits exch def
  578. /PSL_rounded psl_bits 32 and 32 eq def
  579. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  580. N clipsave clippath
  581. 0 1 PSL_n_labels_minus_1
  582. { /psl_k exch def
  583. PSL_ST_prepare_text
  584. PSL_rounded
  585. {PSL_ST_textbox_round}
  586. {PSL_ST_textbox_rect}
  587. ifelse
  588. } for
  589. PSL_eoclip N
  590. } def
  591. /PSL_ST_prepare_text
  592. {
  593. /psl_xp PSL_txt_x psl_k get def
  594. /psl_yp PSL_txt_y psl_k get def
  595. /psl_label PSL_label_str psl_k get def
  596. /psl_fnt PSL_label_font psl_k get def
  597. psl_fnt cvx exec
  598. psl_fnt (FS) search {pop pop pop /PSL_fmode 2 def} {pop /PSL_fmode 1 def} ifelse
  599. /PSL_height PSL_heights psl_k get def
  600. /psl_boxH PSL_height PSL_gap_y 2 mul add def
  601. /PSL_just PSL_label_justify psl_k get def
  602. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
  603. /PSL_justy PSL_just 4 idiv 2 div neg def
  604. /psl_SW psl_label stringwidth pop def
  605. /psl_boxW psl_SW PSL_gap_x 2 mul add def
  606. /psl_x0 psl_SW PSL_justx mul def
  607. /psl_y0 PSL_justy PSL_height mul def
  608. /psl_angle PSL_label_angle psl_k get def
  609. } def
  610. /PSL_ST_textbox_rect
  611. {
  612. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  613. PSL_gap_x neg PSL_gap_y neg M
  614. 0 psl_boxH D psl_boxW 0 D 0 psl_boxH neg D P
  615. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  616. } def
  617. /PSL_ST_textbox_round
  618. {
  619. /psl_BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
  620. /psl_xd PSL_gap_x psl_BoxR sub def
  621. /psl_yd PSL_gap_y psl_BoxR sub def
  622. /psl_xL PSL_gap_x neg def
  623. /psl_yB PSL_gap_y neg def
  624. /psl_yT psl_boxH psl_yB add def
  625. /psl_H2 PSL_height psl_yd 2 mul add def
  626. /psl_W2 psl_SW psl_xd 2 mul add def
  627. /psl_xR psl_xL psl_boxW add def
  628. /psl_x0 psl_SW PSL_justx mul def
  629. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  630. psl_xL psl_yd M
  631. psl_xL psl_yT psl_xR psl_yT psl_BoxR arct psl_W2 0 D
  632. psl_xR psl_yT psl_xR psl_yB psl_BoxR arct 0 psl_H2 neg D
  633. psl_xR psl_yB psl_xL psl_yB psl_BoxR arct psl_W2 neg 0 D
  634. psl_xL psl_yB psl_xL psl_yd psl_BoxR arct P
  635. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  636. } def
  637. /PSL_ST_place_label
  638. {
  639. V psl_xp psl_yp T psl_angle R
  640. psl_SW PSL_justx mul psl_y0 M
  641. psl_label dup sd neg 0 exch G
  642. PSL_fmode 1 eq {show} {false charpath V S U fs N} ifelse
  643. U
  644. } def
  645. /PSL_nclip 0 def
  646. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
  647. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
  648. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
  649. %%EndProlog
  650. %%BeginSetup
  651. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  652. PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  653. %%EndSetup
  654. %%Page: 1 1
  655. %%BeginPageSetup
  656. V 0.06 0.06 scale
  657. %%EndPageSetup
  658. /PSL_page_xsize 10200 def
  659. /PSL_page_ysize 13200 def
  660. /PSL_completion {} def
  661. /PSL_movie_completion {} def
  662. %PSL_End_Header
  663. gsave
  664. 0 A
  665. FQ
  666. O0
  667. 600 1200 TM
  668. % PostScript produced by:
  669. %@GMT: gmt pslegend -R0/10/0/9 -JM6i -Dx0.5i/0.5i+w5i+jBL+l1.2 -C0.1i/0.1i -F+p+gazure1+r -B5f1 -P -p200/25 -X0.5i
  670. %@PROJ: merc 0.00000000 10.00000000 0.00000000 9.00000000 -556597.454 556597.454 -0.000 999341.310 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  671. %GMTBoundingBox: 36 72 432 387.817
  672. %%BeginObject PSL_Layer_1
  673. 0 setlinecap
  674. 0 setlinejoin
  675. 3.32551 setmiterlimit
  676. /PSL_GPP matrix currentmatrix def [0.939693 0.144544 -0.34202 0.397131 2210.68 0] concat
  677. 25 W
  678. 8 W
  679. N 0 0 M 0 -83 D S
  680. N 0 6464 M 0 83 D S
  681. N 3600 0 M 0 -83 D S
  682. N 3600 6464 M 0 83 D S
  683. N 7200 0 M 0 -83 D S
  684. N 7200 6464 M 0 83 D S
  685. N 0 0 M -83 0 D S
  686. N 7200 0 M 83 0 D S
  687. N 0 3581 M -83 0 D S
  688. N 7200 3581 M 83 0 D S
  689. 83 W
  690. N -42 0 M 0 715 D S
  691. N 7242 0 M 0 715 D S
  692. 1 A
  693. N -42 715 M 0 716 D S
  694. N 7242 715 M 0 716 D S
  695. 0 A
  696. N -42 1431 M 0 716 D S
  697. N 7242 1431 M 0 716 D S
  698. 1 A
  699. N -42 2147 M 0 716 D S
  700. N 7242 2147 M 0 716 D S
  701. 0 A
  702. N -42 2863 M 0 718 D S
  703. N 7242 2863 M 0 718 D S
  704. 1 A
  705. N -42 3581 M 0 718 D S
  706. N 7242 3581 M 0 718 D S
  707. 0 A
  708. N -42 4299 M 0 720 D S
  709. N 7242 4299 M 0 720 D S
  710. 1 A
  711. N -42 5019 M 0 721 D S
  712. N 7242 5019 M 0 721 D S
  713. 0 A
  714. N -42 5740 M 0 724 D S
  715. N 7242 5740 M 0 724 D S
  716. N 0 -42 M 720 0 D S
  717. N 0 6505 M 720 0 D S
  718. 1 A
  719. N 720 -42 M 720 0 D S
  720. N 720 6505 M 720 0 D S
  721. 0 A
  722. N 1440 -42 M 720 0 D S
  723. N 1440 6505 M 720 0 D S
  724. 1 A
  725. N 2160 -42 M 720 0 D S
  726. N 2160 6505 M 720 0 D S
  727. 0 A
  728. N 2880 -42 M 720 0 D S
  729. N 2880 6505 M 720 0 D S
  730. 1 A
  731. N 3600 -42 M 720 0 D S
  732. N 3600 6505 M 720 0 D S
  733. 0 A
  734. N 4320 -42 M 720 0 D S
  735. N 4320 6505 M 720 0 D S
  736. 1 A
  737. N 5040 -42 M 720 0 D S
  738. N 5040 6505 M 720 0 D S
  739. 0 A
  740. N 5760 -42 M 720 0 D S
  741. N 5760 6505 M 720 0 D S
  742. 1 A
  743. N 6480 -42 M 720 0 D S
  744. N 6480 6505 M 720 0 D S
  745. 0 A
  746. 8 W
  747. N -83 0 M 7366 0 D S
  748. N -83 -83 M 7366 0 D S
  749. N 7200 -83 M 0 6630 D S
  750. N 7283 -83 M 0 6630 D S
  751. N 7283 6464 M -7366 0 D S
  752. N 7283 6547 M -7366 0 D S
  753. N 0 6547 M 0 -6630 D S
  754. N -83 6547 M 0 -6630 D S
  755. 0 -167 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  756. 200 F0
  757. (0�) tc Z
  758. 0 6630 M (0�) bc Z
  759. 3600 -167 M (5�) tc Z
  760. 3600 6630 M (5�) bc Z
  761. 7200 -167 M (10�) tc Z
  762. 7200 6630 M (10�) bc Z
  763. -167 0 M (0�) mr Z
  764. 7367 0 M (0�) ml Z
  765. -167 3581 M (5�) mr Z
  766. 7367 3581 M (5�) ml Z
  767. 600 600 T
  768. {0.941 1 1 C} FS
  769. 4578 6000 100 3000 2289 SR
  770. 17 W
  771. N 240 4038 M 5520 0 D S
  772. N 240 2958 M 5520 0 D S
  773. N 3000 4038 M 0 -1080 D S
  774. 0 A
  775. FQ
  776. O0
  777. 0 0 TM
  778. % PostScript produced by:
  779. %@GMT: gmt psbasemap -R0/10/0/9 -JM6i -O -K -Lx2.5i/2.41492i+c5/5+jTC+w600+u+f --GMT_HISTORY=false
  780. %@PROJ: merc 0.00000000 10.00000000 0.00000000 9.00000000 -556597.454 556597.454 -0.000 999341.310 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  781. %%BeginObject PSL_Layer_2
  782. 0 setlinecap
  783. 0 setlinejoin
  784. 3.32551 setmiterlimit
  785. 8 W
  786. N 1050 2835 M 0 63 D S
  787. {0 A} FS
  788. O1
  789. -42 650 1050 2898 Sb
  790. N 1700 2835 M 0 63 D S
  791. {1 A} FS
  792. -42 650 1700 2898 Sb
  793. N 2350 2835 M 0 63 D S
  794. {0 A} FS
  795. -42 650 2350 2898 Sb
  796. N 3000 2835 M 0 63 D S
  797. {1 A} FS
  798. -42 650 3000 2898 Sb
  799. N 3650 2835 M 0 63 D S
  800. {0 A} FS
  801. -42 650 3650 2898 Sb
  802. N 4300 2835 M 0 63 D S
  803. {1 A} FS
  804. -42 650 4300 2898 Sb
  805. N 4950 2835 M 0 63 D S
  806. N 1050 2815 M 0 83 D S
  807. 1050 2752 M (0 km) tc Z
  808. N 2350 2815 M 0 83 D S
  809. 2350 2752 M (200 km) tc Z
  810. N 3650 2815 M 0 83 D S
  811. 3650 2752 M (400 km) tc Z
  812. N 4950 2815 M 0 83 D S
  813. 4950 2752 M (600 km) tc Z
  814. %%EndObject
  815. 0 A
  816. FQ
  817. O0
  818. 0 0 TM
  819. % PostScript produced by:
  820. %@GMT: gmt psimage -O -K SOEST_block4.png -Dx2.5i/2.10937i+jCT+w3i --GMT_HISTORY=false
  821. %@PROJ: xy 0.00000000 4.00000000 0.00000000 2.10937000 0.000 4.000 0.000 2.109 +xy
  822. %%BeginObject PSL_Layer_3
  823. 0 setlinecap
  824. 0 setlinejoin
  825. 3.32551 setmiterlimit
  826. V N 1200 1807 T 3600 725 scale [/Indexed /DeviceRGB 43 <
  827. FFFFFF555555000000888888EEEEEEDDDDDD333333777777CCCCCC999999222222444444AAAAAA111111666666BBBBBB
  828. CCCCFF6699993366990066996699CC9999CC99CCCC339999CC9999CC99CCFFFFCCCCCC99FFFF00FFCC33FFFF33CC9966
  829. FFFF66999966CCCC660000113399FF33CCCC666633FFCC66FFCCCC6666CC001100110000>] setcolorspace
  830. << /ImageType 1 /Decode [0 255] /Width 472 /Height 95 /BitsPerComponent 8
  831. /ImageMatrix [472 0 0 -95 0 95] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  832. >> image
  833. G[BcC$[^VhNjU/gVB!UW,V/9Kmd86SBkMU%rr<"&iW.n(P3pspg@*l5ga3fo`$%D8!G/apBVUPFRa\ubNA7n?D=iT-qp[II
  834. _16F"h<9ndV?+*Ug'uW*9kGd41ul6';oB"kX4_*1XPi@`!P;OZ7NXqPrlD0jH>X*jC&Hrb+q^`ucF'V@qaP&L*,3#$%7O^]
  835. TfpKg!RtsAqbtS`gt1m'/Yf,JTP<rk6;RqaXXTq1&9O(?c&5)^k>3bSM[D(N59CsdI09Sb]`eRkQus]bGmk</13cVYMHnII
  836. fa1t>,LAR74NA:NNT1-hn%G[Z%G$ReT)7Ns7q>oDX!:FXM'Icg4`e[P_t##H+cd'>3[5W?0H3kYDM^T#hM7@Vf!nNLVbanD
  837. \j_V0IJV"s[o28,&Sp-5*s0=l8>JYh,!pk>[OLEoE-^D\:(WZ"UD&?0d)&=;?,CaAFW"8W:]2s[%;3-s`Y>g!EK+jKRYH)+
  838. H^8jIiSNjKLd(J[I9APH1Yl..jdq??'&*qM!Wdo'-34iD!.r"X,['H7RS,G_$E\b?SdpX'Q=n4fg<ou]hW!EPX=.b>$22*Y
  839. hTg4T*r<83Z@-W1)Y;i[62EV8o6-ZR4F`/MQO6mDQ(E.61bF6C-^kU!^oH<LcU":tNlU2ZFCH2ulWV`BC12,)<^oO+_i/BY
  840. N*]YDIkg<lf,3jU_QVCi9Wu=NPibt9Q8E6jr3qi#nEAadCKJh^.Y0mPMG^Z[^0L**0t%-.C1QMhlVe#),[?C:7RHDIG,X])
  841. GPNDl>*]\md_cnJ`U)l?l-T-P:Yh&9F*:H/eE6MmBACW4#X*BlP.Zf)9nVrM^N1[VU,1DWi=tR_Tdfh+52<<pN73gaG.FL_
  842. YrE8cSdI/VJl'$R5Sssc/$9KWcHAUJa:bNFUH9K;=YD&)KtOuh'$f"ShLiCg>j2nVR2U(GWtjI3A0@pm(eT4BV75p?$C7^[
  843. cCo?4W6?]NIJQYI.uHN3CHF3A"1We$-^h7mp=(-M'Ldg^X4ZhT_C"R!J2o$,Hk'pI:4`'pTQT'>M!0"R#96?!bbHGQ^6i2_
  844. T7M]F"kQTiI]KXuh8f^NiH`g>8U-8.`l?U$UVG(14,E_$4UmhtEi?/,=PLY7\Q/(ub5b8Of[IqAB\A1_'gXqdSTCDk<DbA7
  845. I33H/'C*-g"Y&+oe=m&`;[O1K,LhTd'^uY`0fVNs=tYLu#PZ?mBmOn`)3Df,0MTMaLuP>4+QHpk'Z-8q;-[^hh[rYq"$o'D
  846. Oi5VVMQMRZmZ^jZ[+:57dYsbonP4u('cW>&8g6>@<^FKpH3uO4gmT@/%,+,"9T#,M]6g*a'?Y9SKi#1XlldPlaGUu0SenA]
  847. .(b)d?6r:a28U9T8X!gENS%PI&aPa'"]<CXo2Z(K:.`sKY?.p!D2"Ym@O+;mWo[%!L'McTB$a8WAqtG=bu2V.g8Q.4FTs4i
  848. O$VD[+jR,;@1A1+J[t6(Z=khhkI!`nl+g+o8\G8Xismm?!.F<aXU7n#c?DsG>#N$D]X[sG!sq%m-^If7!dSST#dGL414Ni&
  849. ZDR`]Fi1`L;6@9)`u:^.[@T@[k;DZK70P.,J-eSAmTY0#^$KeB\>phn.L_1Q1%>pp0_'-JlkHkgPr%>_ld70CO<jH5S78)@
  850. )4VC9FsJPjabD65AfQ^X(@48`Ouk.=:qI'mMd:(r4B"UFP+'_Nd/c%:):K+k_ALBf0dBKc4W29WM)&>QUeq4_0%m!F#fQrp
  851. bL\NQ13Tse*N%upE8[osm0]p,2q>m9#eO%[a2`fJf'sN>/t>2)c5>)B$t968A32a^/]<IQZP(U8$um1/I;Ap$)!-.#T#QoW
  852. d7GgAOsE1qB8E=)l4DAoIo-=,Re8WVi9\B!OgQ6'YS_n1a:_#Ep%3\?/W,I'h+],l^be)Q;\"jOfSC\M3siT>J3O1t7%5D7
  853. PVt+?N5NFuRNY@dcCo1R2@dq7HaMR16TFFXmQBnJ@[2csm10"<%Wp\s26L&5`5,9-d>(Y*_8aQo6g&]_[B;SR94=`N(jOEV
  854. mJ_sNMt_NuVtIYF9@IDTP;p*M75PsYZ`OJ5,$1;RF;12W?s?);RG4M\J/<?gP0h_)i`KiL,6?!>/d_0Kacglf7Gn9B?oZUn
  855. S4A:OR/nPO%*fD/qN52F>_>O9l9m,KoEq(SY"V;4,IT=k+t'M];61HEVgJ\4/qVHK*ZSTM93[k;PK"!]3D)ThU&:"dZVa'j
  856. +isR6dHIphEFegR]Xd5_5NaB*9HT0Aep7LC+R+77L8oA%@7)EX4Q[JSO5OE(GR'YrM?[KC(aANcWshkNJn9[^(!qNt:pj$@
  857. 6R`#0Uk:Ze;T]Z>6in<s8,RR%L34k\77&2(Jsm(k\Fh7m)"P*JY6bi\p:]mEM<FEkGT9UVT=WFn<r8CM8RTY@Yo*qSGnQ5:
  858. `7D*?#<JR[YQ3C4%'2%3%66cs#P)]RETR(K4!'*T<E;^M^eDVp0iOb1^cDkh_Y]pS;4diYB7/6I$<;h3"98Y0:Wn`("=_TA
  859. (gCNIP:kf#0sr<c(0`if/;',Hh4ord;1BW@<!59re<VK1*rATXY-gpQVtFi`'u$6W,bsUTj],AK<oaurhMaU_^]Hh,K3+1m
  860. KHOJ)+JWSjC/iu:!oKjI:&unY0ToV9YggT.,,1ttKQ%'q4:-)dio@u$mj'%&1^&OeR,G8\G/=dri)F:'ZjD$VP1Dp_Yg(]2
  861. e9sVD`lVt""@^h!,nW;HQj,'X`,%_36?%A7$,C1H[L_&9@XD5$(,4AXN7C4LB+X]',cI)22OW^oageJnI"+!KZpfpB(Bt38
  862. ,3]d2;U[rX#:9l>WWA&Kb!CD9Mr87e.cRk[^gAHaVFo%9*$q2\Ys]3JngY1n*F"er;Z\dj;udRYKU?,"-7J<d=6q>t[Mj8)
  863. nYsmsqUMfa39]iGlU\;umU[p&B$Qu7?>lP,rcH5knqIu5fqcAb.^Vd5dXX0G#:*iY"muG*b@4*m%Dl2lPipY_!W6AY`900l
  864. l+do3[S\b"cX^NDP^+>3\V*org77<W/?cmaO>PdM7Ze!D<,/NUfPG&l6c:/%f9eiHV*#5&ZsFp2R3d1e4a^oR5F#DcPFXCu
  865. cWu1e5*+!n;T'o9l66YXc`m_VY61*!bYJ.3_jq\(K4Yb&-thJPA,\#ujnXt)3DC>AK<TgQ]WiTg;gJ+6Q4oMMGRe8>Z^S+D
  866. OqW-&)IO4TGS!U)V8hnEO.<Z<?E%<E=13lm6J=O3NFkFuG(i)U6#:XmQTm85`FhJ&XWs6CK?K<A-Kh$8/gmK6.^*_`Ar(P\
  867. (Fu;K@e3=!'NJ99N25IY1)'979HsSDi+MX3mheV#<bFJ.QHKhW5\`p3ipdn[I2Cl1%I8Xt<ZX(-XmMrV*8FI%.Pttr8.E3;
  868. +8>oR^e-[ihWJ),LZ=@-cVr-A\"*mHTNSKj(Y>jt"\)iLp>eF)"BS$p`(qqV[4%#QS""L.-n"1Q"u-l:l,/_/R3.6D/k#jk
  869. )Nb2h-shb:6:9b(Kb!B#A]iKV!4.l4JHHTkSi2E1]IINjK0cLRe)BN;Rq*-*AF5B]1,AQdLJCU.]^Crq-@ln.V359q6'o$3
  870. XQKb4*X+\Wj=e'WRbY*O-ct[LN8$kel):4!s,9/t;*ZL,WasTVWfhrd@+?0j3b?.c>S91?O<c@3/M]$_7VK'!MA:<BIZ8IQ
  871. AXc)G*E)=>b=',LGI#L<f(9#%2O(;d3)bn5WV>,8/2V'$ae_eg@'YnVmTW4Pj19LfSVk\c>Y,1&4g\Xtj`P44Zu2-l)--`q
  872. m39_TRF4TtlnZ^t"<eNBjGT)ahP)]U<?(2e<5$mNHCB()#fC*A',E%JqWZeWlH[Q[Sn*kJHX8K2g?"<>VIKOh%%XK+XIU]k
  873. %c/Ke2KZ4TTl3#1M$uQ--46U1=RCd5MfMpA9PA[<kWG@jTs`C,=#;)NJ-HK3R]=1FTZ4[bP\mK_#.>43ohZAer.WJMA$Ok#
  874. C2^3J1K(fO\"BoQpBabLp)<]JD`m(\L>Aq[/g=L3YD?+0UZ*cX?.c%WcOFg*Vt*Zs^hkbS=LJI1gjmp<(F%<eN*=>ffNMf>
  875. 7=<&T3Nc&NV.a5_Oq$mLV1gp"@_Mo8g^_JBD-;Lb8*'p;afRA1[+BUTf0Y56?SL."XM#6R`mB^2:u=2dl?/fm+6FVJB^nGI
  876. [0d;C.B07NB6W48i#lNNLk23<%M]i"d[T>h+TTe79t/=X=_[2q?-PiaT$[1&@u?F/&Q^JC\Zn&hZ_^Qa?7%rd,ARKeX[J=]
  877. 8Sb@8b+KqnSu*b:GZUNbk30dZ8SUBPk"$krI4*k%@MaabG00mmEXG)L\8.%D\L<-+D8CW')9'L\,'(_XfK.lRnL9YR;rqDN
  878. ![WskjuDb&[WYsZ[kEa/@cV4_Cp(E#2G:uiZpI`8.lF32]C+qFG`^Q%76Rf3rt8e`L@J@.Z5'JAD=ik,)g1C\rM:jSj8YbC
  879. !ILArNg*535XO%u(TQ9S-]h#YLL[hm^e4-.`N8fEYR>"1.;P^Q-J`'Sri[^D#Stbp1B"3*FE2YFBqo$&HHYsV\!E@q[k_26
  880. PL#';C>Y9F0;Kk'?iTs:Y"4sXah1;mDm?oTP*5Y%/n8hdmR,'t0+%W*UgE25qsAUa1Kd@]g1TtD&&qk\XV.^U:\@UHU)X)R
  881. dtf%=GK+%@\SYTFX#3g!e%KUn;HJ5A6"FLbiP0m>qKKr%=g^IP-i`T2[r0Mum2';,Y6u$>Yk5IT.%d<^^EnCiYaF9&.BLq_
  882. W#NaQ1)YkdkIPjVD$'T]B.PMi>V#K\ao(1k^]4;bYQ+Osqa!t5AdRg&6_O#5\[gLh!nQN0_@R=-bBOGs>KA_j,Mn[\43;Mc
  883. <,Yj&]Th"+\p#)'\D=R\XUt3qQQ?#YMQ>%_DdU9Yp@WB@=66i,g@*qiBAZrt%FlhMXhQX/o)2Y$%"$*gNd)As)-;!!_`c)h
  884. \P4[ZndTJ^\2pF)a;XX>r!sB/e((`&c=F"<mb?33gNIAB*fh2gBO'qgHcqqbUGV1Z9jhs!hTLVHIe8*2`G)%umWW4E++(g1
  885. C(0nPG"3M@hTO.QSA"]u6V7klmi$:IGs4Un#t0-^iRE"[dQ\P<cl<Bp%t'@d*S4mm-\#9ci;cfZ%,j0XAM,mni-nH[:o+:6
  886. SShK4@$_;2>'da0Gu_*0;M;[*@ctnc3r2-q!s,tjpVef:YD8uO_;/&5f-4:9I;.in?=j].2>P_[E0c+/T+5J$j)YUh0>6R%
  887. \?=ABFpkc@-7E%5bkgT1G!Pj="HV;.@@Df(X]?S]55jPL3Pg$:`7If-(rnB,qUI<(J3td\`\D^eHl/5me2Z>2H9%9Ilf$@%
  888. EhdM4ER*?_5i"l`_M]Smi`K.i9p1jsg$j\W2BToE9ml)(?.\0&!=\:>L4[?:T$aZ?^QG"J4^XE#lPt=VRA;=6O\6:bAO(jT
  889. 7X^FDP-<c9GH]dQ#&ck*EYr+2'g><7hMF>8(m@`EF"*gY<l4^Hd2@04X>O,%&T_dp&2@+>*LK/B:#O;0cQ"S,_"YoDC;R9;
  890. g!"Su18k$E_mmoe<IWW3D(!rRHX'6%>2gq`k:!@7I-E=jDfY0'RSn(DcTm=.jlX]:k+!ngI=nsJf?PJlg(fKmjn#nfKBF,R
  891. hqD#`H#Z6><OE;e4D`VRof=GN-%@tqZqmh_"4`)OB:SGSH;JCZiB'<HFcGrIT*EFU29n<O=ab=.UO,%C8RQh_9il(#ldUF0
  892. mUfJgod7C]7MgO@ZtNG0oqUF2lSl$h`Y^+6p_N1KG>QX<(_db<lY;gBeSTgUV!%"i"4f?-)6D`-Qh?'Zg>&-J]eJ;B=]-X"
  893. T8it6>`5:=%=3u@_5S5l"Q:'5K+[iQa,q/J\CUu?R`sDQL0T#ggr>[KVm:":*Tk^!"GOu8TMT6#Yg3V=ZHFTmF(UC5cH_cj
  894. IO!#d)PHI:4l8`#!o?5:(M[Y%jn(Is)fSN@^In4!R=Y2DMHDbTl\]9^S=80"E_g5aT8p^@&*'&Tkp!5/,A_lL*T&s\5Bs\*
  895. NH2f0C*)sd(PCifZ?;tC%K];U%+SM?,`k+*S44MEY[LRd,se@XW<(-dk*Z%pYqRAPEPs0d6&b?=N![j0W/M+ZCPgQ[m/2'o
  896. ftF%f>XoOa/jPDg[d!_<(p;]t[A7H$fK$6JJd0m9+IPdWEGUXRJXKdq(k%Pfgp+nu(=tDS3-*#QQt8h5rCeBf\S["@>9OD+
  897. YG?qD/jmeOHJ^Nd9b$A1#_[mrSb`g"VnRV+#I[EaCWrGCn`YT6!U'e]pc_>6ZO9RjR^N!^AF3:G<5'boS[rs#2:ah%]j(-\
  898. nq8-E_;4iO)?&6D1UGFUf<s[QkE+"GU,djD"M?M8?4e./\LfIGe/jqQk(AuKnHJhqKh2c4YL:S(5FqZIAT+:S\>Y(jZg)0K
  899. =lAN"6ZCDmU0A#Vr@f,fcmcc1XRaCj:Q1IdAU`RgIl#88A@XHgrcF5\p0]>pP?;,n>8`tmZhYlMa_bu0VTZV*msO(&Z784m
  900. B@1qFCJfbYQ<1o1p7Ih-a(eeJ7r_Xa%fO7SX)(a)O1aE'X+ne'JiH>1cS=brdS#cp_,q^W%uY3]Qf<KbmuBA5"r3bj?4\;9
  901. 21O5r'mab/XE2(IP!9u%5HnXBZ3LMNVg9GlHZWbTVVWc,:gDW%AeFsB+t!&,e,5XK]os1&#s(qP?`iNpY?-1j:fXddp!IcI
  902. `I37+e<siL3kUR[B'u;oQ%gHM<eu=d<S%[_IYg9+pX@rXlO*Bi88@[o?bc?qo[G-sP<U)&TFh*EN%ZVLlA@>DooI1Xl)?3L
  903. d9sj1?ED3r(uXO].*QZgUrcgX*3GacG0(g!cDnW1.ZGqf>?,,&rigW>WP%@_Z"N\FO13KW!$.7HaIZPfbn^5?I)DTT%<ukH
  904. n2j@qdCW(f(@T:mne#7"VrN&a3mdC.mA?KRkltH0L`FmDH(kI>Q<0L9fUIcrg*1k`[O'R;>V[^JKl^JHEY[3sr0mTIXSY+L
  905. ]uViTLpQ!L+5JR"bg:a28Um*bMVYMYkT/<H=a\*;@X?QY+^NmlA[JY2LYS^$[_p.8RWS")rTP/&eqhGUM>c[.R;U!a$+^JR
  906. MS*Q#!Kp\cLcJV=V$op>e[\D)*@p<]?+&Rcrc;I#'bSGRGnMEK*QC]XF/-624kE("UMnKjM\o-uIG]2CZpDon8&WsU!dW$0
  907. cpler0mL\('?8'7cAASWJea<>O.>:-"a0Ti'k&>*HPkjUYA'tg]c`eq<E+<j_<=^t%:t"-N2HSq,h;CI#dPYlDN`;KlERqi
  908. Vt4K+`L2c.b77C!3(@fhNS">aIEm61ot^Gjq??HTIC]a%c?#W:O+qd`,kd8!rTRdqMlN2+]'2n,m^e.CJK42`A;h7b.i^R^
  909. "nm8i%b&U%i35[O/igE6(#SB2:HbmUkX:`_f7P+pRAlt4En_qD3=_a>4mj)FZ:8#k^4+YR[*hf1Bi0\KnHQA26*EDNr?J5J
  910. ^Hu8;mg:WDl$-M8gA,!QoVXLubms/79@l%"qTT%n3^`2;HD@IA4?kqe/pZJKM;g`YYG,bN^+C:(p81GcF9odGVjTNg=Mmsf
  911. j[Cs9M6$FUnlf]BK4A8T]YcRBmSB1$q7MR%EN;c3kYbN@63`c4P^PILgucQ8Uu"5o(0P?Eks'ruOVGTJE7+s"hC,`T+-T:d
  912. pf>@-5SNVC,#oW4;W]j_h6?kkH^HX$DQ?@qW.KtE@d((5OV/(g#YeSM0Ue`W:btS(EQ274&Y26(77[DVE9<ZZ>?dG&C1k71
  913. -C%#`.rRoK>+IPg`DV0#C3i*i]jl:DeOq7:Ln-9nhD%56N@i"k.3aN`.DX^/d?Lo(lJgt5.\$[H.R9WLQ<eABJ$0cU^.LFE
  914. I0ir&bu\*>4sI.AAU\JK6@CScBs-T^'TJo(C#/Kkj,#u@)7A<k[e.8Gs3].\i(%KM?CQkYa08eS^QS%I5]6dOID,Q\VZ$N=
  915. e*@X((Htq8o+p>fXK-Gu!`ab'KO'kp,(?MH2i;-^TGNF2JdHdjnK2*MG_f:[=")2Q419(hRtR'QNM_gL5h.^f'<1Xrnjs;q
  916. <HF;8^?&P=T9Nk$_"V\SA])$-:pCn/))E*9JeILK8>gJ'3QYco>ibdR'm-.LJa489s8S%rb9gP]=kI>t,'ncSH-Pi-'?SE/
  917. AdLk/<NJc8MqE&h,ahE-R.]rY_skuHL)3Tc/c*+(\sLWY<F.J?h_QMaGX.UkY:7rNE7X,Oo"+)E28ZAk?6DC%QfL#V>JQO)
  918. b0nle24R>85*tXoH/3H<:bj4bKsAP>(E'>#1eDD53^ZrhX"*+,DAVlTc*&3]O6nk`AZgAQ+F/Cf*n]\skb7U<)V07.i;:QU
  919. =p,fC&3V;B'pQtV-.(O*gZI)uVMF7*D'/!#boZjdH:VB"p=\"W5D+E9]Y]eV_t?C=1q2[Unc-B"=4:DtR7m2@[D79W%u\1)
  920. ]@"5(m5>4G4-=C7[JWCAbD1T+G?[OZ?2^.sUo0rO1:k-U[*co*0&d$&]:VU'<OlrWIkVbR&]fGD;CF*2L"YqcW=GuhArlbk
  921. /_k*o7W0H`EL6[;9dh++i(sXm$$03?ZVYq3gUnK,+&.,1:0u5LIgj<d>t]Xp0,uX[MhF*3q(LiKZN=t=B)[cRN!pg*=oKk"
  922. $7.k"2`Vc*haKjnMjUCn9@An\S3Ur`irhQh>u*TcXImoE:8@iH_nnHDSl/50i8'.Q:SUR1hY=k57N63Od7,'l[*_>^rR'j/
  923. !78\HIf~>
  924. U
  925. %%EndObject
  926. 0 A
  927. FQ
  928. O0
  929. 0 0 TM
  930. % PostScript produced by:
  931. %@GMT: gmt psscale -Ctt.cpt -O -K -Dx2.5i/1.45556i+w4.6i/0.2i+h+jTC -B0 --GMT_HISTORY=false
  932. %@PROJ: xy -8.00000000 8.00000000 0.00000000 0.20000000 -8.000 8.000 0.000 0.200 +xy
  933. %%BeginObject PSL_Layer_4
  934. 0 setlinecap
  935. 0 setlinejoin
  936. 3.32551 setmiterlimit
  937. 240 1507 T
  938. 25 W
  939. V N 0 0 T 5520 240 scale /DeviceRGB setcolorspace
  940. << /ImageType 1 /Decode [0 1 0 1 0 1] /Width 16 /Height 1 /BitsPerComponent 8
  941. /ImageMatrix [16 0 0 -1 0 1] /DataSource currentfile /ASCII85Decode filter
  942. >> image
  943. ":j',;#`hIs)#UPL=uTsmf0K`s3CZEs8GOglN$t'!<8,\s%!.i!!(OL!1j/j~>
  944. U
  945. 2 setlinecap
  946. N 0 240 M 5520 0 D S
  947. N 0 0 M 0 240 D S
  948. N 5520 0 M 0 240 D S
  949. N 0 0 M 5520 0 D S
  950. /PSL_A0_y 0 def
  951. /PSL_A1_y 0 def
  952. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  953. 0 setlinecap
  954. -240 -1507 T
  955. %%EndObject
  956. O1
  957. 4578 6000 100 3000 2289 SR
  958. 0 A
  959. FQ
  960. O0
  961. 0 0 TM
  962. % PostScript produced by:
  963. %@GMT: gmt psxy -R0/6/0/5.38634 -Jx1i -O -K -N -Sf0.1i @GMTAPI@-000004 --GMT_HISTORY=false
  964. %@PROJ: xy 0.00000000 6.00000000 0.00000000 5.38634000 0.000 6.000 0.000 5.386 +xy
  965. %%BeginObject PSL_Layer_5
  966. 0 setlinecap
  967. 0 setlinejoin
  968. 3.32551 setmiterlimit
  969. 4 W
  970. 3090 3618 M
  971. 300 0 D
  972. S
  973. {0 0 1 C} FS
  974. O1
  975. 10 setmiterlimit
  976. 0 -45 -90 0 0 45 3 3285 3618 SP
  977. 3.32551 setmiterlimit
  978. %%EndObject
  979. 0 A
  980. FQ
  981. O0
  982. 0 0 TM
  983. % PostScript produced by:
  984. %@GMT: gmt psxy -R0/6/0/5.38634 -Jx1i -O -K -N -S @GMTAPI@-000003 --GMT_HISTORY=false
  985. %@PROJ: xy 0.00000000 6.00000000 0.00000000 5.38634000 0.000 6.000 0.000 5.386 +xy
  986. %%BeginObject PSL_Layer_6
  987. 0 setlinecap
  988. 0 setlinejoin
  989. 3.32551 setmiterlimit
  990. 4 W
  991. V
  992. /image12 {<~
  993. G[=nX`s@D.runV?*Wcl)6f8&l#lMIK
  994. JNqd1n..;X6FAU9[51(U2aFbmJ80Q6ec#TLr<H=!+3%1T#Ln2&OE(:$~>
  995. /FlateDecode filter} def
  996. /pattern12 {V 256 256 scale
  997. << /PaintType 1 /PatternType 1 /TilingType 1 /BBox [0 0 1 1] /XStep 1 /YStep 1 /PaintProc
  998. {begin [/Indexed /DeviceGray 1 <FF00>] setcolorspace
  999. << /ImageType 1 /Decode [0 1] /Width 64 /Height 64 /BitsPerComponent 1
  1000. /ImageMatrix [64 0 0 -64 0 64] /DataSource image12
  1001. >> image end}
  1002. >> matrix makepattern U} def
  1003. {pattern12 I} FS
  1004. O1
  1005. 90 240 3858 Sc
  1006. {1 1 0 C} FS
  1007. 90 58 0 3240 3858 Se
  1008. {0 1 0 C} FS
  1009. 98 -30 30 195 3618 Sw
  1010. FQ
  1011. [33 17] 0 B
  1012. 90 240 3378 S-
  1013. {1 0 1 C} FS
  1014. 8 W
  1015. [] 0 B
  1016. 8 W
  1017. V 3090 3378 T N 0 0 M 210 0 D S
  1018. U
  1019. V 3390 3378 T 0 0 M
  1020. -90 24 D
  1021. 0 -48 D
  1022. P clip fs P S
  1023. U
  1024. {0 1 1 C} FS
  1025. 4 W
  1026. 90 240 3138 Si
  1027. U
  1028. %%EndObject
  1029. currentdict /image11 undef
  1030. currentdict /pattern11 undef
  1031. 0 A
  1032. FQ
  1033. O0
  1034. 0 0 TM
  1035. % PostScript produced by:
  1036. %@GMT: gmt pstext -R0/6/0/5.38634 -Jx1i -O -K -N -F+f+j @GMTAPI@-000002 --GMT_HISTORY=false
  1037. %@PROJ: xy 0.00000000 6.00000000 0.00000000 5.38634000 0.000 6.000 0.000 5.386 +xy
  1038. %%BeginObject PSL_Layer_7
  1039. 0 setlinecap
  1040. 0 setlinejoin
  1041. 3.32551 setmiterlimit
  1042. PSL_font_encode 4 get 0 eq {Standard+_Encoding /Times-Roman /Times-Roman PSL_reencode PSL_font_encode 4 1 put} if
  1043. 3000 4203 M 400 F4
  1044. (My Map Legend) bc Z
  1045. 480 3788 M 200 F0
  1046. (This circle is hachured) bl Z
  1047. 3480 3788 M (This ellipse is yellow) bl Z
  1048. 480 3548 M (This wedge is green) bl Z
  1049. 3480 3548 M (This is a fault) bl Z
  1050. 480 3308 M (A contour) bl Z
  1051. 3480 3308 M (This is a vector) bl Z
  1052. 480 3068 M (This triangle is boring) bl Z
  1053. 5880 1000 M 150 F4
  1054. PSL_font_encode 5 get 0 eq {Standard+_Encoding /Times-Bold /Times-Bold PSL_reencode PSL_font_encode 5 1 put} if
  1055. V MU 0 0 M (Smith et al., ) FP 150 F5 (J. Geophys. Res., 99) FP 150 F4 (, 2000) FP pathbbox N pop exch pop add U neg 0 G
  1056. (Smith et al., ) Z
  1057. 150 F5 (J. Geophys. Res., 99) Z
  1058. 150 F4 (, 2000) Z
  1059. %%EndObject
  1060. 0 A
  1061. FQ
  1062. O0
  1063. 0 0 TM
  1064. % PostScript produced by:
  1065. %@GMT: gmt pstext -R0/6/0/5.38634 -Jx1i -O -K -N -M -F+a+f+j @GMTAPI@-000008 --GMT_HISTORY=false
  1066. %@PROJ: xy 0.00000000 6.00000000 0.00000000 5.38634000 0.000 6.000 0.000 5.386 +xy
  1067. %%BeginObject PSL_Layer_8
  1068. 0 setlinecap
  1069. 0 setlinejoin
  1070. 3.32551 setmiterlimit
  1071. /PSL_linespace 240 def
  1072. /PSL_parwidth 5760 def
  1073. /PSL_parjust 4 def
  1074. 0 A
  1075. /PSL_setfont {
  1076. /f exch def
  1077. /k1 exch def
  1078. /fz PSL_size k1 get def
  1079. /fn PSL_fnt k1 get def
  1080. fn PSL_lastfn eq fz PSL_lastfz eq and not {
  1081. fz PSL_fontname fn get Y
  1082. /PSL_lastfn fn def
  1083. /PSL_lastfz fz def
  1084. } if
  1085. /fc PSL_color k1 get def
  1086. fc PSL_lastfc ne {
  1087. /PSL_c fc 3 mul def
  1088. 0 1 2 {PSL_c add PSL_rgb exch get} for C
  1089. /PSL_lastfc fc def
  1090. } if
  1091. f 32 and 32 eq {
  1092. /PSL_UL fz 0.075 mul def
  1093. fz 0.025 mul W
  1094. /PSL_show {PSL_ushow} def
  1095. }
  1096. {
  1097. /PSL_show {ashow} def
  1098. } ifelse
  1099. }!
  1100. /PSL_setfont2 {
  1101. /f exch def
  1102. /k1 exch def
  1103. /fz PSL_size k1 get def
  1104. /fn PSL_fnt k1 get def
  1105. fn PSL_lastfn eq fz PSL_lastfz eq and not {
  1106. fz PSL_fontname fn get Y
  1107. /PSL_lastfn fn def
  1108. /PSL_lastfz fz def
  1109. } if
  1110. }!
  1111. /PSL_wordheight {
  1112. 0 0 M false charpath flattenpath pathbbox /up exch def pop /down exch def pop newpath
  1113. down PSL_ymin lt {/PSL_ymin down def} if
  1114. up PSL_ymax gt {/PSL_ymax up def} if
  1115. }!
  1116. /PSL_ushow {
  1117. currentpoint /y0 exch def /x0 exch def
  1118. ashow
  1119. currentpoint pop /x1 exch def
  1120. x0 y0 PSL_UL sub M x1 y0 PSL_UL sub L S
  1121. x1 y0 M
  1122. }!
  1123. /PSL_placeword {
  1124. /k exch def
  1125. /flag PSL_flag k get def
  1126. k flag PSL_setfont
  1127. /sshow {ashow} def
  1128. PSL_col 0 eq {
  1129. /PSL_t 0 def
  1130. flag 4 and 4 eq {
  1131. pr_char 0 ( ) ashow
  1132. } if
  1133. }
  1134. {
  1135. /f PSL_flag k 1 sub get def
  1136. /PSL_t f 3 and def
  1137. f 32 and 32 eq flag 32 and 32 eq and {/sshow {PSL_ushow} def} if
  1138. } ifelse
  1139. /thisword_bshift PSL_bshift k get def
  1140. thisword_bshift 0.0 ne {0 thisword_bshift G} if
  1141. flag 8 and 8 eq {
  1142. pr_char 0 PSL_spaces PSL_t get sshow
  1143. k PSL_composite
  1144. } if
  1145. flag 24 and 0 eq {
  1146. pr_char 0 PSL_spaces PSL_t get sshow pr_char 0 PSL_word k get PSL_show
  1147. PSL_width k get 0 gt {/PSL_col PSL_col 1 add def} if
  1148. } if
  1149. thisword_bshift 0.0 ne {0 thisword_bshift neg G} if
  1150. }!
  1151. /PSL_composite {
  1152. /k1 exch def
  1153. /k2 k1 1 add def
  1154. /char1 PSL_word k1 get def
  1155. /char2 PSL_word k2 get def
  1156. /w1 char1 stringwidth pop def
  1157. /w2 char2 stringwidth pop def
  1158. /delta w1 w2 sub 2 div PSL_scale mul def
  1159. delta 0.0 gt {
  1160. /dx1 0 def
  1161. /dx2 delta def
  1162. }
  1163. { /dx1 delta neg def
  1164. /dx2 0 def
  1165. } ifelse
  1166. dx1 0 G currentpoint
  1167. pr_char 0 char1 PSL_show M
  1168. delta 0 G
  1169. pr_char 0 char2 ashow
  1170. dx2 0 G
  1171. }!
  1172. /PSL_expand {
  1173. /k1 exch def
  1174. /extra PSL_parwidth previous_linewidth sub comp_width add def
  1175. PSL_CRLF k1 PSL_n1 eq or {/spread 0 def} {/spread extra def} ifelse
  1176. /PSL_scale previous_linewidth 0.0 gt {PSL_parwidth previous_linewidth div} {1.0} ifelse def
  1177. /ndiv lsum ncomp sub def
  1178. ndiv 0 eq {/ndiv 1 def} if
  1179. PSL_parjust 4 eq {/pr_char spread ndiv div def} {/pr_char 0 def} ifelse
  1180. PSL_parjust 2 eq {extra 2 div 0 G} if
  1181. PSL_parjust 3 eq {extra 0 G} if
  1182. /PSL_col 0 def
  1183. }!
  1184. /PSL_textjustifier {
  1185. /PSL_mode exch def
  1186. /PSL_col 0 def
  1187. /PSL_ybase 0 def
  1188. /PSL_parheight 0 def
  1189. /PSL_ymin 0 def
  1190. /PSL_ymax 0 def
  1191. /PSL_top 0 def
  1192. /PSL_bottom 0 def
  1193. /last_font PSL_fnt 0 get def
  1194. /last_size PSL_size 0 get def
  1195. /last_color PSL_color 0 get def
  1196. /previous_linewidth 0 def
  1197. /stop 0 def
  1198. /start 0 def
  1199. /lsum 0 def
  1200. /line 0 def
  1201. /ncomp 0 def
  1202. /comp_width 0 def
  1203. 0 1 PSL_n1 {
  1204. /i exch def
  1205. /thisflag PSL_flag i get def
  1206. i 0 eq {
  1207. /PSL_t 0 def
  1208. /lastflag 0 def
  1209. }
  1210. { /lastflag PSL_flag i 1 sub get def
  1211. /PSL_t lastflag 3 and def
  1212. } ifelse
  1213. i thisflag PSL_setfont2
  1214. /thisword_width PSL_width i get def
  1215. /comp_add 0 def
  1216. /compw_add 0 def
  1217. /PSL_tabwidth ( ) stringwidth pop def
  1218. /PSL_spacewidths PSL_spaces {stringwidth pop} forall 3 array astore def
  1219. /ccount PSL_count i get def
  1220. thisflag 4 and 4 eq {
  1221. /thisword_width thisword_width PSL_tabwidth add def
  1222. /ccount ccount 4 add def
  1223. } if
  1224. lastflag 8 and 8 eq {/PSL_t 0 def /comp_add 1 def /compw_add thisword_width def} if
  1225. /new_linewidth previous_linewidth thisword_width add PSL_spacewidths PSL_t get add def
  1226. /PSL_CRLF thisword_width 0.0 eq thisflag 16 and 0 eq and def
  1227. /special thisflag 16 and 16 eq {true} {thisword_width 0.0 gt} ifelse def
  1228. new_linewidth PSL_parwidth le special and
  1229. {
  1230. PSL_col 0 eq {
  1231. /PSL_ymin 0 def
  1232. /PSL_ymax 0 def
  1233. } if
  1234. /stop stop 1 add def
  1235. /PSL_col PSL_col 1 add def
  1236. /previous_linewidth new_linewidth def
  1237. /lsum lsum ccount add PSL_t add def
  1238. /ncomp ncomp comp_add add def
  1239. /comp_width comp_width compw_add add def
  1240. }
  1241. {
  1242. 1 PSL_mode eq {
  1243. start PSL_expand
  1244. start PSL_placeword
  1245. }
  1246. {PSL_word start get PSL_wordheight
  1247. } ifelse
  1248. /last stop 1 sub def
  1249. /start start 1 add def
  1250. 1 PSL_mode eq {
  1251. start 1 last {PSL_placeword} for
  1252. }
  1253. {start 1 last {PSL_word exch get PSL_wordheight} for
  1254. line 0 eq { /PSL_top PSL_ymax def} if
  1255. } ifelse
  1256. /start stop def
  1257. /PSL_ybase PSL_ybase PSL_linespace sub def
  1258. 1 PSL_mode eq {0 PSL_ybase M} if
  1259. /stop stop 1 add def
  1260. /previous_linewidth thisword_width def
  1261. /lsum ccount def
  1262. /ncomp comp_add def
  1263. /comp_width compw_add def
  1264. /PSL_col 0 def
  1265. /line line 1 add def
  1266. } ifelse
  1267. } for
  1268. /last stop 1 sub def
  1269. last PSL_n lt {
  1270. /PSL_CRLF true def
  1271. 1 PSL_mode eq {
  1272. start PSL_expand
  1273. start PSL_placeword
  1274. /start start 1 add def
  1275. start 1 last {PSL_placeword} for
  1276. }
  1277. { /PSL_ymin 0 def
  1278. PSL_word start get PSL_wordheight
  1279. /start start 1 add def
  1280. start 1 last {PSL_word exch get PSL_wordheight} for
  1281. line 0 eq {
  1282. /PSL_top PSL_ymax def
  1283. } if
  1284. } ifelse
  1285. } if
  1286. /PSL_bottom PSL_ymin def
  1287. /PSL_parheight PSL_ybase neg PSL_top add PSL_bottom sub def
  1288. } def
  1289. /PSL_fontname
  1290. /Helvetica
  1291. 1 array astore def
  1292. /PSL_n 41 def
  1293. /PSL_n1 40 def
  1294. /PSL_y0 790 def
  1295. /PSL_spaces [() ( ) ( ) ] def
  1296. /PSL_lastfn -1 def
  1297. /PSL_lastfz -1 def
  1298. /PSL_lastfc -1 def
  1299. /PSL_UL 0 def
  1300. /PSL_show {ashow} def
  1301. /PSL_word
  1302. (Let) (us) (just) (try) (some) (simple) (text) (that) (can) (go) (on) (a) (few) (lines.)
  1303. (There) (is) (no) (easy) (way) (to) (predetermine) (how) (many) (lines) (may) (be) (required)
  1304. (so) (we) (may) (have) (to) (adjust) (the) (height) (to) (get) (the) (right) (size) (box.)
  1305. 41 array astore def
  1306. /PSL_fnt
  1307. 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
  1308. 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  1309. 41 array astore def
  1310. /PSL_size
  1311. 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200
  1312. 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200
  1313. 200 200 200 200 200 200 200 200 200 200 200
  1314. 41 array astore def
  1315. /PSL_flag
  1316. 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1
  1317. 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0
  1318. 41 array astore def
  1319. /PSL_bshift
  1320. 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
  1321. 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  1322. 41 array astore def
  1323. /PSL_color
  1324. 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
  1325. 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  1326. 41 array astore def
  1327. /PSL_rgb
  1328. 0 0 0
  1329. 3 array astore def
  1330. /PSL_width 41 array def
  1331. /PSL_max_word_width 0 def
  1332. 0 1 PSL_n1 {
  1333. /i edef
  1334. PSL_size i get PSL_fontname PSL_fnt i get get Y
  1335. PSL_width i PSL_word i get stringwidth pop put
  1336. PSL_width i get PSL_max_word_width gt { /PSL_max_word_width PSL_width i get def} if
  1337. } for
  1338. PSL_max_word_width PSL_parwidth gt { /PSL_parwidth PSL_max_word_width def } if
  1339. /PSL_count 41 array def
  1340. 0 1 PSL_n1 {PSL_count exch dup PSL_word exch get length put} for
  1341. 1 1 PSL_n1 {
  1342. /k edef
  1343. PSL_flag k get 16 and 16 eq {
  1344. /k1 k 1 sub def
  1345. /w1 PSL_width k1 get def
  1346. /w2 PSL_width k get def
  1347. PSL_width k1 w1 w2 gt {w1} {w2} ifelse put
  1348. PSL_width k 0 put
  1349. PSL_count k 0 put
  1350. } if
  1351. } for
  1352. V 120 790 T
  1353. 0 0 M
  1354. 0 PSL_textjustifier
  1355. /PSL_justify 9 def
  1356. /PSL_x0 PSL_parwidth PSL_justify 1 sub 4 mod 0.5 mul neg mul def
  1357. /PSL_y0 0 def
  1358. /PSL_txt_y0 PSL_top neg def
  1359. PSL_x0 PSL_y0 T
  1360. 0 PSL_txt_y0 T
  1361. 0 0 M
  1362. 1 PSL_textjustifier U
  1363. %%EndObject
  1364. -600 -600 T
  1365. PSL_GPP setmatrix
  1366. %%EndObject
  1367. grestore
  1368. PSL_movie_completion /PSL_movie_completion {} def
  1369. %PSL_Begin_Trailer
  1370. %%PageTrailer
  1371. U
  1372. showpage
  1373. %%Trailer
  1374. end
  1375. %%EOF
Tip!

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

Comments

Loading...