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

hexmean.ps 39 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
  1. %!PS-Adobe-3.0
  2. %%BoundingBox: 0 0 612 792
  3. %%HiResBoundingBox: 0 0 612.0000 792.0000
  4. %%Title: GMT v6.2.0_bec0f3a_2020.10.04 [64-bit] Document from psxy
  5. %%Creator: GMT6
  6. %%For: unknown
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Sun Oct 4 21:36:55 2020
  9. %%LanguageLevel: 2
  10. %%DocumentData: Clean7Bit
  11. %%Orientation: Portrait
  12. %%Pages: 1
  13. %%EndComments
  14. %%BeginProlog
  15. 250 dict begin
  16. /! {bind def} bind def
  17. /# {load def}!
  18. /A /setgray #
  19. /B /setdash #
  20. /C /setrgbcolor #
  21. /D /rlineto #
  22. /E {dup stringwidth pop}!
  23. /F /fill #
  24. /G /rmoveto #
  25. /H /sethsbcolor #
  26. /I /setpattern #
  27. /K /setcmykcolor #
  28. /L /lineto #
  29. /M /moveto #
  30. /N /newpath #
  31. /P /closepath #
  32. /R /rotate #
  33. /S /stroke #
  34. /T /translate #
  35. /U /grestore #
  36. /V /gsave #
  37. /W /setlinewidth #
  38. /Y {findfont exch scalefont setfont}!
  39. /Z /show #
  40. /FP {true charpath flattenpath}!
  41. /MU {matrix setmatrix}!
  42. /MS {/SMat matrix currentmatrix def}!
  43. /MR {SMat setmatrix}!
  44. /edef {exch def}!
  45. /FS {/fc edef /fs {V fc F U} def}!
  46. /FQ {/fs {} def}!
  47. /O0 {/os {N} def}!
  48. /O1 {/os {P S} def}!
  49. /FO {fs os}!
  50. /Sa {M MS dup 0 exch G 0.726542528 mul -72 R dup 0 D 4 {72 R dup 0 D -144 R dup 0 D} repeat pop MR FO}!
  51. /Sb {M dup 0 D exch 0 exch D neg 0 D FO}!
  52. /SB {MS T /BoxR edef /BoxW edef /BoxH edef BoxR 0 M
  53. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct MR FO}!
  54. /Sc {N 3 -1 roll 0 360 arc FO}!
  55. /Sd {M 4 {dup} repeat 0 G neg dup dup D exch D D FO}!
  56. /Se {N MS T R scale 0 0 1 0 360 arc MR FO}!
  57. /Sg {M MS 22.5 R dup 0 exch G -22.5 R 0.765366865 mul dup 0 D 6 {-45 R dup 0 D} repeat pop MR FO}!
  58. /Sh {M MS dup 0 G -120 R dup 0 D 4 {-60 R dup 0 D} repeat pop MR FO}!
  59. /Si {M MS dup neg 0 exch G 60 R 1.732050808 mul dup 0 D 120 R 0 D MR FO}!
  60. /Sj {M MS R dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D MR FO}!
  61. /Sn {M MS dup 0 exch G -36 R 1.175570505 mul dup 0 D 3 {-72 R dup 0 D} repeat pop MR FO}!
  62. /Sp {N 3 -1 roll 0 360 arc fs N}!
  63. /SP {M {D} repeat FO}!
  64. /Sr {M dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D FO}!
  65. /SR {MS T /BoxR edef /BoxW edef /BoxH edef BoxR BoxW -2 div BoxH -2 div T BoxR 0 M
  66. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct MR FO}!
  67. /Ss {M 1.414213562 mul dup dup dup -2 div dup G 0 D 0 exch D neg 0 D FO}!
  68. /St {M MS dup 0 exch G -60 R 1.732050808 mul dup 0 D -120 R 0 D MR FO}!
  69. /SV {0 exch M 0 D D D D D 0 D FO}!
  70. /Sv {0 0 M D D 0 D D D D D 0 D D FO}!
  71. /Sw {2 copy M 5 2 roll arc FO}!
  72. /Sx {M 1.414213562 mul 5 {dup} repeat -2 div dup G D neg 0 G neg D S}!
  73. /Sy {M dup 0 exch G dup -2 mul dup 0 exch D S}!
  74. /S+ {M dup 0 G dup -2 mul dup 0 D exch dup G 0 exch D S}!
  75. /S- {M dup 0 G dup -2 mul dup 0 D S}!
  76. /sw {stringwidth pop}!
  77. /sh {V MU 0 0 M FP pathbbox N 4 1 roll pop pop pop U}!
  78. /sd {V MU 0 0 M FP pathbbox N pop pop exch pop U}!
  79. /sH {V MU 0 0 M FP pathbbox N exch pop exch sub exch pop U}!
  80. /sb {E exch sh}!
  81. /bl {}!
  82. /bc {E -2 div 0 G}!
  83. /br {E neg 0 G}!
  84. /ml {dup 0 exch sh -2 div G}!
  85. /mc {dup E -2 div exch sh -2 div G}!
  86. /mr {dup E neg exch sh -2 div G}!
  87. /tl {dup 0 exch sh neg G}!
  88. /tc {dup E -2 div exch sh neg G}!
  89. /tr {dup E neg exch sh neg G}!
  90. /mx {2 copy lt {exch} if pop}!
  91. /PSL_xorig 0 def /PSL_yorig 0 def
  92. /TM {2 copy T PSL_yorig add /PSL_yorig edef PSL_xorig add /PSL_xorig edef}!
  93. /PSL_reencode {findfont dup length dict begin
  94. {1 index /FID ne {def}{pop pop} ifelse} forall
  95. exch /Encoding edef currentdict end definefont pop
  96. }!
  97. /PSL_eps_begin {
  98. /PSL_eps_state save def
  99. /PSL_dict_count countdictstack def
  100. /PSL_op_count count 1 sub def
  101. userdict begin
  102. /showpage {} def
  103. 0 setgray 0 setlinecap 1 setlinewidth
  104. 0 setlinejoin 10 setmiterlimit [] 0 setdash newpath
  105. /languagelevel where
  106. {pop languagelevel 1 ne {false setstrokeadjust false setoverprint} if} if
  107. }!
  108. /PSL_eps_end {
  109. count PSL_op_count sub {pop} repeat
  110. countdictstack PSL_dict_count sub {end} repeat
  111. PSL_eps_state restore
  112. }!
  113. /PSL_transp {
  114. /.setopacityalpha where {pop .setblendmode .setopacityalpha}{
  115. /pdfmark where {pop [ /BM exch /CA exch dup /ca exch /SetTransparency pdfmark}
  116. {pop pop} ifelse} ifelse
  117. }!
  118. /Standard+_Encoding [
  119. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  120. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  121. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  122. /.notdef /threequarters /threesuperior /trademark /twosuperior /yacute /ydieresis /zcaron
  123. /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
  124. /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash
  125. /zero /one /two /three /four /five /six /seven
  126. /eight /nine /colon /semicolon /less /equal /greater /question
  127. /at /A /B /C /D /E /F /G
  128. /H /I /J /K /L /M /N /O
  129. /P /Q /R /S /T /U /V /W
  130. /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
  131. /quoteleft /a /b /c /d /e /f /g
  132. /h /i /j /k /l /m /n /o
  133. /p /q /r /s /t /u /v /w
  134. /x /y /z /braceleft /bar /braceright /asciitilde /florin
  135. /Atilde /Ccedilla /Eth /Lslash /Ntilde /Otilde /Scaron /Thorn
  136. /Yacute /Ydieresis /Zcaron /atilde /brokenbar /ccedilla /copyright /degree
  137. /divide /eth /logicalnot /lslash /minus /mu /multiply /ntilde
  138. /onehalf /onequarter /onesuperior /otilde /plusminus /registered /scaron /thorn
  139. /.notdef /exclamdown /cent /sterling /fraction /yen /florin /section
  140. /currency /quotesingle /quotedblleft /guillemotleft /guilsinglleft /guilsinglright /fi /fl
  141. /Aacute /endash /dagger /daggerdbl /periodcentered /Acircumflex /paragraph /bullet
  142. /quotesinglbase /quotedblbase /quotedblright /guillemotright /ellipsis /perthousand /Adieresis /questiondown
  143. /Agrave /grave /acute /circumflex /tilde /macron /breve /dotaccent
  144. /dieresis /Eacute /ring /cedilla /Ecircumflex /hungarumlaut /ogonek /caron
  145. /emdash /Edieresis /Egrave /Iacute /Icircumflex /Idieresis /Igrave /Oacute
  146. /Ocircumflex /Odieresis /Ograve /Uacute /Ucircumflex /Udieresis /Ugrave /aacute
  147. /acircumflex /AE /adieresis /ordfeminine /agrave /eacute /ecircumflex /edieresis
  148. /egrave /Oslash /OE /ordmasculine /iacute /icircumflex /idieresis /igrave
  149. /oacute /ae /ocircumflex /odieresis /ograve /dotlessi /uacute /ucircumflex
  150. /udieresis /oslash /oe /germandbls /ugrave /Aring /aring /ydieresis
  151. ] def
  152. /PSL_font_encode 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 array astore def
  153. /F0 {/Helvetica Y}!
  154. /F1 {/Helvetica-Bold Y}!
  155. /F2 {/Helvetica-Oblique Y}!
  156. /F3 {/Helvetica-BoldOblique Y}!
  157. /F4 {/Times-Roman Y}!
  158. /F5 {/Times-Bold Y}!
  159. /F6 {/Times-Italic Y}!
  160. /F7 {/Times-BoldItalic Y}!
  161. /F8 {/Courier Y}!
  162. /F9 {/Courier-Bold Y}!
  163. /F10 {/Courier-Oblique Y}!
  164. /F11 {/Courier-BoldOblique Y}!
  165. /F12 {/Symbol Y}!
  166. /F13 {/AvantGarde-Book Y}!
  167. /F14 {/AvantGarde-BookOblique Y}!
  168. /F15 {/AvantGarde-Demi Y}!
  169. /F16 {/AvantGarde-DemiOblique Y}!
  170. /F17 {/Bookman-Demi Y}!
  171. /F18 {/Bookman-DemiItalic Y}!
  172. /F19 {/Bookman-Light Y}!
  173. /F20 {/Bookman-LightItalic Y}!
  174. /F21 {/Helvetica-Narrow Y}!
  175. /F22 {/Helvetica-Narrow-Bold Y}!
  176. /F23 {/Helvetica-Narrow-Oblique Y}!
  177. /F24 {/Helvetica-Narrow-BoldOblique Y}!
  178. /F25 {/NewCenturySchlbk-Roman Y}!
  179. /F26 {/NewCenturySchlbk-Italic Y}!
  180. /F27 {/NewCenturySchlbk-Bold Y}!
  181. /F28 {/NewCenturySchlbk-BoldItalic Y}!
  182. /F29 {/Palatino-Roman Y}!
  183. /F30 {/Palatino-Italic Y}!
  184. /F31 {/Palatino-Bold Y}!
  185. /F32 {/Palatino-BoldItalic Y}!
  186. /F33 {/ZapfChancery-MediumItalic Y}!
  187. /F34 {/ZapfDingbats Y}!
  188. /F35 {/Ryumin-Light-EUC-H Y}!
  189. /F36 {/Ryumin-Light-EUC-V Y}!
  190. /F37 {/GothicBBB-Medium-EUC-H Y}!
  191. /F38 {/GothicBBB-Medium-EUC-V Y}!
  192. /PSL_pathtextdict 26 dict def
  193. /PSL_pathtext
  194. {PSL_pathtextdict begin
  195. /ydepth exch def
  196. /textheight exch def
  197. /just exch def
  198. /offset exch def
  199. /str exch def
  200. /pathdist 0 def
  201. /setdist offset def
  202. /charcount 0 def
  203. /justy just 4 idiv textheight mul 2 div neg ydepth sub def
  204. V flattenpath
  205. {movetoproc} {linetoproc}
  206. {curvetoproc} {closepathproc}
  207. pathforall
  208. U N
  209. end
  210. } def
  211. PSL_pathtextdict begin
  212. /movetoproc
  213. { /newy exch def /newx exch def
  214. /firstx newx def /firsty newy def
  215. /ovr 0 def
  216. newx newy transform
  217. /cpy exch def /cpx exch def
  218. } def
  219. /linetoproc
  220. { /oldx newx def /oldy newy def
  221. /newy exch def /newx exch def
  222. /dx newx oldx sub def
  223. /dy newy oldy sub def
  224. /dist dx dup mul dy dup mul add sqrt def
  225. dist 0 ne
  226. { /dsx dx dist div ovr mul def
  227. /dsy dy dist div ovr mul def
  228. oldx dsx add oldy dsy add transform
  229. /cpy exch def /cpx exch def
  230. /pathdist pathdist dist add def
  231. {setdist pathdist le
  232. {charcount str length lt
  233. {setchar} {exit} ifelse}
  234. { /ovr setdist pathdist sub def
  235. exit}
  236. ifelse
  237. } loop
  238. } if
  239. } def
  240. /curvetoproc
  241. { (ERROR: No curveto's after flattenpath!)
  242. print
  243. } def
  244. /closepathproc
  245. {firstx firsty linetoproc
  246. firstx firsty movetoproc
  247. } def
  248. /setchar
  249. { /char str charcount 1 getinterval def
  250. /charcount charcount 1 add def
  251. /charwidth char stringwidth pop def
  252. V cpx cpy itransform T
  253. dy dx atan R
  254. 0 justy M
  255. char show
  256. 0 justy neg G
  257. currentpoint transform
  258. /cpy exch def /cpx exch def
  259. U /setdist setdist charwidth add def
  260. } def
  261. end
  262. /PSL_set_label_heights
  263. {
  264. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  265. /PSL_heights PSL_n_labels array def
  266. 0 1 PSL_n_labels_minus_1
  267. { /psl_k exch def
  268. /psl_label PSL_label_str psl_k get def
  269. PSL_label_font psl_k get cvx exec
  270. psl_label sH /PSL_height edef
  271. PSL_heights psl_k PSL_height put
  272. } for
  273. } def
  274. /PSL_curved_path_labels
  275. { /psl_bits exch def
  276. /PSL_placetext psl_bits 2 and 2 eq def
  277. /PSL_clippath psl_bits 4 and 4 eq def
  278. /PSL_strokeline false def
  279. /PSL_fillbox psl_bits 128 and 128 eq def
  280. /PSL_drawbox psl_bits 256 and 256 eq def
  281. /PSL_n_paths1 PSL_n_paths 1 sub def
  282. /PSL_usebox PSL_fillbox PSL_drawbox or def
  283. PSL_clippath {clipsave N clippath} if
  284. /psl_k 0 def
  285. /psl_p 0 def
  286. 0 1 PSL_n_paths1
  287. { /psl_kk exch def
  288. /PSL_n PSL_path_n psl_kk get def
  289. /PSL_m PSL_label_n psl_kk get def
  290. /PSL_x PSL_path_x psl_k PSL_n getinterval def
  291. /PSL_y PSL_path_y psl_k PSL_n getinterval def
  292. /PSL_node_tmp PSL_label_node psl_p PSL_m getinterval def
  293. /PSL_angle_tmp PSL_label_angle psl_p PSL_m getinterval def
  294. /PSL_str_tmp PSL_label_str psl_p PSL_m getinterval def
  295. /PSL_fnt_tmp PSL_label_font psl_p PSL_m getinterval def
  296. PSL_curved_path_label
  297. /psl_k psl_k PSL_n add def
  298. /psl_p psl_p PSL_m add def
  299. } for
  300. PSL_clippath {PSL_eoclip} if N
  301. } def
  302. /PSL_curved_path_label
  303. {
  304. /PSL_n1 PSL_n 1 sub def
  305. /PSL_m1 PSL_m 1 sub def
  306. PSL_CT_calcstringwidth
  307. PSL_CT_calclinedist
  308. PSL_CT_excludelabels
  309. PSL_CT_addcutpoints
  310. /PSL_nn1 PSL_nn 1 sub def
  311. /n 0 def
  312. /k 0 def
  313. /j 0 def
  314. /PSL_seg 0 def
  315. /PSL_xp PSL_nn array def
  316. /PSL_yp PSL_nn array def
  317. PSL_xp 0 PSL_xx 0 get put
  318. PSL_yp 0 PSL_yy 0 get put
  319. 1 1 PSL_nn1
  320. { /i exch def
  321. /node_type PSL_kind i get def
  322. /j j 1 add def
  323. PSL_xp j PSL_xx i get put
  324. PSL_yp j PSL_yy i get put
  325. node_type 1 eq
  326. {n 0 eq
  327. {PSL_CT_drawline}
  328. { PSL_CT_reversepath
  329. PSL_CT_textline} ifelse
  330. /j 0 def
  331. PSL_xp j PSL_xx i get put
  332. PSL_yp j PSL_yy i get put
  333. } if
  334. } for
  335. n 0 eq {PSL_CT_drawline} if
  336. } def
  337. /PSL_CT_textline
  338. { PSL_fnt k get cvx exec
  339. /PSL_height PSL_heights k get def
  340. PSL_placetext {PSL_CT_placelabel} if
  341. PSL_clippath {PSL_CT_clippath} if
  342. /n 0 def /k k 1 add def
  343. } def
  344. /PSL_CT_calcstringwidth
  345. { /PSL_width_tmp PSL_m array def
  346. 0 1 PSL_m1
  347. { /i exch def
  348. PSL_fnt_tmp i get cvx exec
  349. PSL_width_tmp i PSL_str_tmp i get stringwidth pop put
  350. } for
  351. } def
  352. /PSL_CT_calclinedist
  353. { /PSL_newx PSL_x 0 get def
  354. /PSL_newy PSL_y 0 get def
  355. /dist 0.0 def
  356. /PSL_dist PSL_n array def
  357. PSL_dist 0 0.0 put
  358. 1 1 PSL_n1
  359. { /i exch def
  360. /PSL_oldx PSL_newx def
  361. /PSL_oldy PSL_newy def
  362. /PSL_newx PSL_x i get def
  363. /PSL_newy PSL_y i get def
  364. /dx PSL_newx PSL_oldx sub def
  365. /dy PSL_newy PSL_oldy sub def
  366. /dist dist dx dx mul dy dy mul add sqrt add def
  367. PSL_dist i dist put
  368. } for
  369. } def
  370. /PSL_CT_excludelabels
  371. { /k 0 def
  372. /PSL_width PSL_m array def
  373. /PSL_angle PSL_m array def
  374. /PSL_node PSL_m array def
  375. /PSL_str PSL_m array def
  376. /PSL_fnt PSL_m array def
  377. /lastdist PSL_dist PSL_n1 get def
  378. 0 1 PSL_m1
  379. { /i exch def
  380. /dist PSL_dist PSL_node_tmp i get get def
  381. /halfwidth PSL_width_tmp i get 2 div PSL_gap_x add def
  382. /L_dist dist halfwidth sub def
  383. /R_dist dist halfwidth add def
  384. L_dist 0 gt R_dist lastdist lt and
  385. {
  386. PSL_width k PSL_width_tmp i get put
  387. PSL_node k PSL_node_tmp i get put
  388. PSL_angle k PSL_angle_tmp i get put
  389. PSL_str k PSL_str_tmp i get put
  390. PSL_fnt k PSL_fnt_tmp i get put
  391. /k k 1 add def
  392. } if
  393. } for
  394. /PSL_m k def
  395. /PSL_m1 PSL_m 1 sub def
  396. } def
  397. /PSL_CT_addcutpoints
  398. { /k 0 def
  399. /PSL_nc PSL_m 2 mul 1 add def
  400. /PSL_cuts PSL_nc array def
  401. /PSL_nc1 PSL_nc 1 sub def
  402. 0 1 PSL_m1
  403. { /i exch def
  404. /dist PSL_dist PSL_node i get get def
  405. /halfwidth PSL_width i get 2 div PSL_gap_x add def
  406. PSL_cuts k dist halfwidth sub put
  407. /k k 1 add def
  408. PSL_cuts k dist halfwidth add put
  409. /k k 1 add def
  410. } for
  411. PSL_cuts k 100000.0 put
  412. /PSL_nn PSL_n PSL_m 2 mul add def
  413. /PSL_xx PSL_nn array def
  414. /PSL_yy PSL_nn array def
  415. /PSL_kind PSL_nn array def
  416. /j 0 def
  417. /k 0 def
  418. /dist 0.0 def
  419. 0 1 PSL_n1
  420. { /i exch def
  421. /last_dist dist def
  422. /dist PSL_dist i get def
  423. k 1 PSL_nc1
  424. { /kk exch def
  425. /this_cut PSL_cuts kk get def
  426. dist this_cut gt
  427. { /ds dist last_dist sub def
  428. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
  429. /i1 i 0 eq {0} {i 1 sub} ifelse def
  430. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
  431. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  432. PSL_kind j 1 put
  433. /j j 1 add def
  434. /k k 1 add def
  435. } if
  436. } for
  437. dist PSL_cuts k get le
  438. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  439. PSL_kind j 0 put
  440. /j j 1 add def
  441. } if
  442. } for
  443. } def
  444. /PSL_CT_reversepath
  445. {PSL_xp j get PSL_xp 0 get lt
  446. {0 1 j 2 idiv
  447. { /left exch def
  448. /right j left sub def
  449. /tmp PSL_xp left get def
  450. PSL_xp left PSL_xp right get put
  451. PSL_xp right tmp put
  452. /tmp PSL_yp left get def
  453. PSL_yp left PSL_yp right get put
  454. PSL_yp right tmp put
  455. } for
  456. } if
  457. } def
  458. /PSL_CT_placelabel
  459. {
  460. /PSL_just PSL_label_justify k get def
  461. /PSL_height PSL_heights k get def
  462. /psl_label PSL_str k get def
  463. /psl_depth psl_label sd def
  464. PSL_usebox
  465. {PSL_CT_clippath
  466. PSL_fillbox
  467. {V PSL_setboxrgb fill U} if
  468. PSL_drawbox
  469. {V PSL_setboxpen S U} if N
  470. } if
  471. PSL_CT_placeline psl_label PSL_gap_x PSL_just PSL_height psl_depth PSL_pathtext
  472. } def
  473. /PSL_CT_clippath
  474. {
  475. /H PSL_height 2 div PSL_gap_y add def
  476. /xoff j 1 add array def
  477. /yoff j 1 add array def
  478. /angle 0 def
  479. 0 1 j {
  480. /ii exch def
  481. /x PSL_xp ii get def
  482. /y PSL_yp ii get def
  483. ii 0 eq {
  484. /x1 PSL_xp 1 get def
  485. /y1 PSL_yp 1 get def
  486. /dx x1 x sub def
  487. /dy y1 y sub def
  488. }
  489. { /i1 ii 1 sub def
  490. /x1 PSL_xp i1 get def
  491. /y1 PSL_yp i1 get def
  492. /dx x x1 sub def
  493. /dy y y1 sub def
  494. } ifelse
  495. dx 0.0 eq dy 0.0 eq and not
  496. { /angle dy dx atan 90 add def} if
  497. /sina angle sin def
  498. /cosa angle cos def
  499. xoff ii H cosa mul put
  500. yoff ii H sina mul put
  501. } for
  502. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  503. 1 1 j {
  504. /ii exch def
  505. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  506. } for
  507. j -1 0 {
  508. /ii exch def
  509. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  510. } for P
  511. } def
  512. /PSL_CT_drawline
  513. {
  514. /str 20 string def
  515. PSL_strokeline
  516. {PSL_CT_placeline S} if
  517. /PSL_seg PSL_seg 1 add def
  518. /n 1 def
  519. } def
  520. /PSL_CT_placeline
  521. {PSL_xp 0 get PSL_yp 0 get M
  522. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
  523. } def
  524. /PSL_draw_path_lines
  525. {
  526. /PSL_n_paths1 PSL_n_paths 1 sub def
  527. V
  528. /psl_start 0 def
  529. 0 1 PSL_n_paths1
  530. { /psl_k exch def
  531. /PSL_n PSL_path_n psl_k get def
  532. /PSL_n1 PSL_n 1 sub def
  533. PSL_path_pen psl_k get cvx exec
  534. N
  535. PSL_path_x psl_start get PSL_path_y psl_start get M
  536. 1 1 PSL_n1
  537. { /psl_i exch def
  538. /psl_kk psl_i psl_start add def
  539. PSL_path_x psl_kk get PSL_path_y psl_kk get L
  540. } for
  541. /psl_xclose PSL_path_x psl_kk get PSL_path_x psl_start get sub def
  542. /psl_yclose PSL_path_y psl_kk get PSL_path_y psl_start get sub def
  543. psl_xclose 0 eq psl_yclose 0 eq and { P } if
  544. S
  545. /psl_start psl_start PSL_n add def
  546. } for
  547. U
  548. } def
  549. /PSL_straight_path_labels
  550. {
  551. /psl_bits exch def
  552. /PSL_placetext psl_bits 2 and 2 eq def
  553. /PSL_rounded psl_bits 32 and 32 eq def
  554. /PSL_fillbox psl_bits 128 and 128 eq def
  555. /PSL_drawbox psl_bits 256 and 256 eq def
  556. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  557. /PSL_usebox PSL_fillbox PSL_drawbox or def
  558. 0 1 PSL_n_labels_minus_1
  559. { /psl_k exch def
  560. PSL_ST_prepare_text
  561. PSL_usebox
  562. { PSL_rounded
  563. {PSL_ST_textbox_round}
  564. {PSL_ST_textbox_rect}
  565. ifelse
  566. PSL_fillbox {V PSL_setboxrgb fill U} if
  567. PSL_drawbox {V PSL_setboxpen S U} if
  568. N
  569. } if
  570. PSL_placetext {PSL_ST_place_label} if
  571. } for
  572. } def
  573. /PSL_straight_path_clip
  574. {
  575. /psl_bits exch def
  576. /PSL_rounded psl_bits 32 and 32 eq def
  577. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  578. N clipsave clippath
  579. 0 1 PSL_n_labels_minus_1
  580. { /psl_k exch def
  581. PSL_ST_prepare_text
  582. PSL_rounded
  583. {PSL_ST_textbox_round}
  584. {PSL_ST_textbox_rect}
  585. ifelse
  586. } for
  587. PSL_eoclip N
  588. } def
  589. /PSL_ST_prepare_text
  590. {
  591. /psl_xp PSL_txt_x psl_k get def
  592. /psl_yp PSL_txt_y psl_k get def
  593. /psl_label PSL_label_str psl_k get def
  594. PSL_label_font psl_k get cvx exec
  595. /PSL_height PSL_heights psl_k get def
  596. /psl_boxH PSL_height PSL_gap_y 2 mul add def
  597. /PSL_just PSL_label_justify psl_k get def
  598. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
  599. /PSL_justy PSL_just 4 idiv 2 div neg def
  600. /psl_SW psl_label stringwidth pop def
  601. /psl_boxW psl_SW PSL_gap_x 2 mul add def
  602. /psl_x0 psl_SW PSL_justx mul def
  603. /psl_y0 PSL_justy PSL_height mul def
  604. /psl_angle PSL_label_angle psl_k get def
  605. } def
  606. /PSL_ST_textbox_rect
  607. {
  608. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  609. PSL_gap_x neg PSL_gap_y neg M
  610. 0 psl_boxH D psl_boxW 0 D 0 psl_boxH neg D P
  611. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  612. } def
  613. /PSL_ST_textbox_round
  614. {
  615. /psl_BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
  616. /psl_xd PSL_gap_x psl_BoxR sub def
  617. /psl_yd PSL_gap_y psl_BoxR sub def
  618. /psl_xL PSL_gap_x neg def
  619. /psl_yB PSL_gap_y neg def
  620. /psl_yT psl_boxH psl_yB add def
  621. /psl_H2 PSL_height psl_yd 2 mul add def
  622. /psl_W2 psl_SW psl_xd 2 mul add def
  623. /psl_xR psl_xL psl_boxW add def
  624. /psl_x0 psl_SW PSL_justx mul def
  625. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  626. psl_xL psl_yd M
  627. psl_xL psl_yT psl_xR psl_yT psl_BoxR arct psl_W2 0 D
  628. psl_xR psl_yT psl_xR psl_yB psl_BoxR arct 0 psl_H2 neg D
  629. psl_xR psl_yB psl_xL psl_yB psl_BoxR arct psl_W2 neg 0 D
  630. psl_xL psl_yB psl_xL psl_yd psl_BoxR arct P
  631. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  632. } def
  633. /PSL_ST_place_label
  634. {
  635. V psl_xp psl_yp T psl_angle R
  636. psl_SW PSL_justx mul psl_y0 M
  637. psl_label dup sd neg 0 exch G show
  638. U
  639. } def
  640. /PSL_nclip 0 def
  641. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
  642. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
  643. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
  644. %%EndProlog
  645. %%BeginSetup
  646. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  647. PSLevel 1 gt { << /WhiteIsOpaque true >> setpagedevice } if
  648. PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  649. %%EndSetup
  650. %%Page: 1 1
  651. %%BeginPageSetup
  652. V 0.06 0.06 scale
  653. %%EndPageSetup
  654. /PSL_page_xsize 10200 def
  655. /PSL_page_ysize 13200 def
  656. /PSL_plot_completion {} def
  657. /PSL_movie_label_completion {} def
  658. /PSL_movie_prog_indicator_completion {} def
  659. %PSL_End_Header
  660. gsave
  661. 0 A
  662. FQ
  663. O0
  664. 1200 1417 TM
  665. % PostScript produced by:
  666. %@GMT: gmt psxy std.txt -R0/5.19615242271/0/3 -Jx3c -P -Baf -BWNse -Cstd.cpt -Sh3.46410161514c -W1p -K -Y3c
  667. %@PROJ: xy 0.00000000 5.19615242 0.00000000 3.00000000 0.000 5.196 0.000 3.000 +xy
  668. %GMTBoundingBox: 72 85.0393700787 441.87752886 255.118110236
  669. %%BeginObject PSL_Layer_1
  670. 0 setlinecap
  671. 0 setlinejoin
  672. 3.32550952342 setmiterlimit
  673. clipsave
  674. 0 0 M
  675. 7365 0 D
  676. 0 4252 D
  677. -7365 0 D
  678. P
  679. PSL_clip N
  680. 17 W
  681. V
  682. {0.0202 0 0 C} FS
  683. O1
  684. 818 2455 4252 Sh
  685. {0.262 0 0 C} FS
  686. 818 4910 4252 Sh
  687. {1 A} FS
  688. 818 7365 4252 Sh
  689. {1 0.847 0 C} FS
  690. 818 1227 3543 Sh
  691. {1 0.41 0 C} FS
  692. 818 3682 3543 Sh
  693. {1 0.0684 0 C} FS
  694. 818 6137 3543 Sh
  695. {1 1 0.00851 C} FS
  696. 818 0 2835 Sh
  697. {1 0.654 0 C} FS
  698. 818 2455 2835 Sh
  699. {1 0.634 0 C} FS
  700. 818 4910 2835 Sh
  701. {1 1 0.493 C} FS
  702. 818 1227 2126 Sh
  703. {0.621 0 0 C} FS
  704. 818 3682 2126 Sh
  705. {1 0.24 0 C} FS
  706. 818 6137 2126 Sh
  707. {1 1 0.333 C} FS
  708. 818 0 1417 Sh
  709. {1 0.308 0 C} FS
  710. 818 2455 1417 Sh
  711. {1 1 0.109 C} FS
  712. 818 4910 1417 Sh
  713. {1 0.235 0 C} FS
  714. 818 1227 709 Sh
  715. {1 0.0752 0 C} FS
  716. 818 3682 709 Sh
  717. {1 0.0219 0 C} FS
  718. 818 6137 709 Sh
  719. {1 0.893 0 C} FS
  720. 818 2455 0 Sh
  721. {0 A} FS
  722. 818 7365 0 Sh
  723. U
  724. PSL_cliprestore
  725. 25 W
  726. /PSL_slant_y 0 def
  727. 2 setlinecap
  728. N 0 4252 M 0 -4252 D S
  729. /PSL_A0_y 83 def
  730. /PSL_A1_y 0 def
  731. 8 W
  732. N 0 0 M -83 0 D S
  733. N 0 1417 M -83 0 D S
  734. N 0 2835 M -83 0 D S
  735. N 0 4252 M -83 0 D S
  736. /MM {neg exch M} def
  737. /PSL_AH0 0
  738. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  739. 200 F0
  740. (0) sw mx
  741. (1) sw mx
  742. (2) sw mx
  743. (3) sw mx
  744. def
  745. /PSL_A0_y PSL_A0_y 83 add def
  746. 0 PSL_A0_y MM
  747. (0) mr Z
  748. 1417 PSL_A0_y MM
  749. (1) mr Z
  750. 2835 PSL_A0_y MM
  751. (2) mr Z
  752. 4252 PSL_A0_y MM
  753. (3) mr Z
  754. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  755. N 0 283 M -42 0 D S
  756. N 0 567 M -42 0 D S
  757. N 0 850 M -42 0 D S
  758. N 0 1134 M -42 0 D S
  759. N 0 1701 M -42 0 D S
  760. N 0 1984 M -42 0 D S
  761. N 0 2268 M -42 0 D S
  762. N 0 2551 M -42 0 D S
  763. N 0 3118 M -42 0 D S
  764. N 0 3402 M -42 0 D S
  765. N 0 3685 M -42 0 D S
  766. N 0 3969 M -42 0 D S
  767. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  768. 7365 0 T
  769. 25 W
  770. N 0 4252 M 0 -4252 D S
  771. /PSL_A0_y 83 def
  772. /PSL_A1_y 0 def
  773. 8 W
  774. N 0 0 M 83 0 D S
  775. N 0 1417 M 83 0 D S
  776. N 0 2835 M 83 0 D S
  777. N 0 4252 M 83 0 D S
  778. N 0 283 M 42 0 D S
  779. N 0 567 M 42 0 D S
  780. N 0 850 M 42 0 D S
  781. N 0 1134 M 42 0 D S
  782. N 0 1701 M 42 0 D S
  783. N 0 1984 M 42 0 D S
  784. N 0 2268 M 42 0 D S
  785. N 0 2551 M 42 0 D S
  786. N 0 3118 M 42 0 D S
  787. N 0 3402 M 42 0 D S
  788. N 0 3685 M 42 0 D S
  789. N 0 3969 M 42 0 D S
  790. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  791. -7365 0 T
  792. 25 W
  793. N 0 0 M 7365 0 D S
  794. /PSL_A0_y 83 def
  795. /PSL_A1_y 0 def
  796. 8 W
  797. N 0 0 M 0 -83 D S
  798. N 1417 0 M 0 -83 D S
  799. N 2835 0 M 0 -83 D S
  800. N 4252 0 M 0 -83 D S
  801. N 5669 0 M 0 -83 D S
  802. N 7087 0 M 0 -83 D S
  803. N 283 0 M 0 -42 D S
  804. N 567 0 M 0 -42 D S
  805. N 850 0 M 0 -42 D S
  806. N 1134 0 M 0 -42 D S
  807. N 1701 0 M 0 -42 D S
  808. N 1984 0 M 0 -42 D S
  809. N 2268 0 M 0 -42 D S
  810. N 2551 0 M 0 -42 D S
  811. N 3118 0 M 0 -42 D S
  812. N 3402 0 M 0 -42 D S
  813. N 3685 0 M 0 -42 D S
  814. N 3969 0 M 0 -42 D S
  815. N 4535 0 M 0 -42 D S
  816. N 4819 0 M 0 -42 D S
  817. N 5102 0 M 0 -42 D S
  818. N 5386 0 M 0 -42 D S
  819. N 5953 0 M 0 -42 D S
  820. N 6236 0 M 0 -42 D S
  821. N 6520 0 M 0 -42 D S
  822. N 6803 0 M 0 -42 D S
  823. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  824. 0 4252 T
  825. 25 W
  826. N 0 0 M 7365 0 D S
  827. /PSL_A0_y 83 def
  828. /PSL_A1_y 0 def
  829. 8 W
  830. N 0 0 M 0 83 D S
  831. N 1417 0 M 0 83 D S
  832. N 2835 0 M 0 83 D S
  833. N 4252 0 M 0 83 D S
  834. N 5669 0 M 0 83 D S
  835. N 7087 0 M 0 83 D S
  836. /MM {M} def
  837. /PSL_AH0 0
  838. (0) sh mx
  839. (1) sh mx
  840. (2) sh mx
  841. (3) sh mx
  842. (4) sh mx
  843. (5) sh mx
  844. def
  845. /PSL_A0_y PSL_A0_y 83 add def
  846. 0 PSL_A0_y MM
  847. (0) bc Z
  848. 1417 PSL_A0_y MM
  849. (1) bc Z
  850. 2835 PSL_A0_y MM
  851. (2) bc Z
  852. 4252 PSL_A0_y MM
  853. (3) bc Z
  854. 5669 PSL_A0_y MM
  855. (4) bc Z
  856. 7087 PSL_A0_y MM
  857. (5) bc Z
  858. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  859. N 283 0 M 0 42 D S
  860. N 567 0 M 0 42 D S
  861. N 850 0 M 0 42 D S
  862. N 1134 0 M 0 42 D S
  863. N 1701 0 M 0 42 D S
  864. N 1984 0 M 0 42 D S
  865. N 2268 0 M 0 42 D S
  866. N 2551 0 M 0 42 D S
  867. N 3118 0 M 0 42 D S
  868. N 3402 0 M 0 42 D S
  869. N 3685 0 M 0 42 D S
  870. N 3969 0 M 0 42 D S
  871. N 4535 0 M 0 42 D S
  872. N 4819 0 M 0 42 D S
  873. N 5102 0 M 0 42 D S
  874. N 5386 0 M 0 42 D S
  875. N 5953 0 M 0 42 D S
  876. N 6236 0 M 0 42 D S
  877. N 6520 0 M 0 42 D S
  878. N 6803 0 M 0 42 D S
  879. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  880. 0 -4252 T
  881. 0 setlinecap
  882. %%EndObject
  883. 0 A
  884. FQ
  885. O0
  886. 0 0 TM
  887. % PostScript produced by:
  888. %@GMT: gmt psxy -R0/5.19615242271/0/3 -Jx3c -O -K /Users/pwessel/GMTdev/gmt-dev/test/gmtbinstats/hex_data.txt -Sc0.1c -Gblack
  889. %@PROJ: xy 0.00000000 5.19615242 0.00000000 3.00000000 0.000 5.196 0.000 3.000 +xy
  890. %%BeginObject PSL_Layer_2
  891. 0 setlinecap
  892. 0 setlinejoin
  893. 3.32550952342 setmiterlimit
  894. clipsave
  895. 0 0 M
  896. 7365 0 D
  897. 0 4252 D
  898. -7365 0 D
  899. P
  900. PSL_clip N
  901. 4 W
  902. V
  903. {0 A} FS
  904. 24 3011 4179 Sc
  905. 24 1825 2315 Sc
  906. 24 5510 1472 Sc
  907. 24 6683 3613 Sc
  908. 24 6204 2764 Sc
  909. 24 1440 2508 Sc
  910. 24 5238 2900 Sc
  911. 24 4163 3894 Sc
  912. 24 5297 2890 Sc
  913. 24 6230 576 Sc
  914. 24 2200 2970 Sc
  915. 24 3000 2254 Sc
  916. 24 4506 3251 Sc
  917. 24 2256 2223 Sc
  918. 24 4440 3135 Sc
  919. 24 4073 2698 Sc
  920. 24 5650 1432 Sc
  921. 24 4143 3637 Sc
  922. 24 930 2563 Sc
  923. 24 699 3851 Sc
  924. 24 1328 1028 Sc
  925. 24 2794 3478 Sc
  926. 24 1733 756 Sc
  927. 24 2243 466 Sc
  928. 24 4099 1933 Sc
  929. 24 946 2487 Sc
  930. 24 3788 3927 Sc
  931. 24 5556 4144 Sc
  932. 24 2193 2633 Sc
  933. 24 6865 3973 Sc
  934. 24 166 1896 Sc
  935. 24 4518 2369 Sc
  936. 24 3583 1344 Sc
  937. 24 1216 2498 Sc
  938. 24 1733 1964 Sc
  939. 24 6728 23 Sc
  940. 24 1249 2478 Sc
  941. 24 4099 870 Sc
  942. 24 2757 3892 Sc
  943. 24 273 2977 Sc
  944. 24 4469 4194 Sc
  945. 24 5221 3385 Sc
  946. 24 6484 682 Sc
  947. 24 466 3965 Sc
  948. 24 4523 2019 Sc
  949. 24 2793 2877 Sc
  950. 24 4568 1894 Sc
  951. 24 3550 2963 Sc
  952. 24 2934 2538 Sc
  953. 24 4962 1142 Sc
  954. 24 7327 3808 Sc
  955. 24 3876 82 Sc
  956. 24 4722 2441 Sc
  957. 24 1457 3029 Sc
  958. 24 1541 409 Sc
  959. 24 5408 695 Sc
  960. 24 6133 2342 Sc
  961. 24 4395 3373 Sc
  962. 24 3948 3270 Sc
  963. 24 7060 333 Sc
  964. 24 2660 770 Sc
  965. 24 6788 1866 Sc
  966. 24 5148 2884 Sc
  967. 24 3803 1923 Sc
  968. 24 5798 1845 Sc
  969. 24 5989 468 Sc
  970. 24 4784 1690 Sc
  971. 24 3786 2733 Sc
  972. 24 2091 280 Sc
  973. 24 5955 3066 Sc
  974. 24 607 1522 Sc
  975. 24 5367 2337 Sc
  976. 24 3264 1361 Sc
  977. 24 3652 3353 Sc
  978. 24 3886 801 Sc
  979. 24 6239 3021 Sc
  980. 24 6907 433 Sc
  981. 24 4657 3252 Sc
  982. 24 250 2995 Sc
  983. 24 3181 3586 Sc
  984. 24 2474 2437 Sc
  985. 24 3419 1667 Sc
  986. 24 4181 1959 Sc
  987. 24 4823 3079 Sc
  988. 24 5867 919 Sc
  989. 24 2114 1491 Sc
  990. 24 1656 1091 Sc
  991. 24 1950 1467 Sc
  992. 24 5992 1045 Sc
  993. 24 6162 2606 Sc
  994. 24 5831 2243 Sc
  995. 24 5760 2649 Sc
  996. 24 3387 4157 Sc
  997. 24 3628 1320 Sc
  998. 24 2805 1938 Sc
  999. 24 1732 1079 Sc
  1000. 24 1810 2562 Sc
  1001. 24 4022 234 Sc
  1002. 24 5695 1969 Sc
  1003. 24 6044 3662 Sc
  1004. U
  1005. PSL_cliprestore
  1006. %%EndObject
  1007. 0 A
  1008. FQ
  1009. O0
  1010. 0 0 TM
  1011. % PostScript produced by:
  1012. %@GMT: gmt psscale -Cstd.cpt -R0/5.19615242271/0/3 -Jx3c -DJBC -Bxaf -By+lstdev -O -K
  1013. %@PROJ: xy 0.00000000 5.19615242 0.00000000 3.00000000 0.000 5.196 0.000 3.000 +xy
  1014. %%BeginObject PSL_Layer_3
  1015. 0 setlinecap
  1016. 0 setlinejoin
  1017. 3.32550952342 setmiterlimit
  1018. 736 -452 T
  1019. 25 W
  1020. V N 0 0 T 5892 236 scale /DeviceRGB setcolorspace
  1021. << /ImageType 1 /Decode [0 1 0 1 0 1] /Width 2946 /Height 1 /BitsPerComponent 8
  1022. /ImageMatrix [2946 0 0 -1 0 1] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  1023. >> image
  1024. G[=Ce!t`fa"30;2[qsgBY%;t5k-Aj5A_X?@ZJDgq]PMK=qX47<]m%6c\`^Tnr\"D/oV!rqL@J\,*/=2"0Hs!WOYI24p"s79
  1025. N:(1`9T8(C@iUHnj'd=/i"KQD9^IsN;G?5:@gYoo;djE7j3qHu9^acF7a0pL@i#!YB>n\Sh<2SDR*4[44IFa`_u*WP(W8XB
  1026. f`-arYc'40`Nb(LM5@G`08!i@S1fp<YbJ=SQ*H4MMUh2D?QEoi9j\9D@i\nmlX>5!!#oAlh\_hj;r8"Q@gh0,>@D=)#2<TK
  1027. s"h+(%_a02_Tok'G/\@548-I]^)-L_5/&]D_u>)b%`CY^0FkpmIM`R8&Ul!c_U3f@Nl?#;(]5#gq[#4o-i(kD"fM323#uZ,
  1028. R5bReq`-VPkP=q`!#PK#\/:S-V76r#q\AlFY4Sc62?*%D^brXQYJ^%C_/I7d\Ckf:XglVo`uV\=n&!nja7$uq\DR=C#OnBN
  1029. KST)R5DmMN\3GNlnWZ7tBCISS2kJ!0r]FN&MuF>q`ddn$]Sb>=FhE8ar@P[AGPkaZL\L`LI#*j]@sil(rP/+L54d+j"hsW4
  1030. n27rMDt+j^pE/lLIe'-$$\%d+3!>!.TeJ<XnR4-lLA)96,"D-c0a^DChd\L%mUKWuN9+PZ*/s4D@=1c,'4N.Zm#tgT9]hOK
  1031. $;B\_@;8Krdpb@3mk\?@biCQi(Au!]`GCptkJ3UTbNHl-R+LN=r)g`N`'RSYs+j+JW%WnEZ%OceV6I<[K4V<X096jPU9B68
  1032. Z&5`BeaOqn*G]%WXQ=5-*N\Sm@=;tM)e(%.m$hB]D!%3s$Z,'3@;B]>gL<8Bfsf!3f[4o[cIg*[`GX>apV<BQbP0"?f[ol8
  1033. r]%\(`'HB8&&Fr!bR_`+37<l)d5].,`Gt[2rtWT7"@!JGiFG.VVrBNt*G=;(57;,a*'Y8&iI&B?(ZHXR(mj/Y^C6Ih$ND'J
  1034. `)V7Drf2L'27OFRq=V5u2u67Y)7TCC\.,qE*Olc,q;&Ocp\K<J+91s<n/reCL[bWkouHP]T(",t'V>#2n1X^oT>bkrhI"'V
  1035. Gfa=4J+/?1MV%@/^O\?6QG8E'n?0N]p[NfaLl_&1ItCJd?iM33_rq"&^;O+P286o9rZ/_n&,mf&_U&2hI`64F6:5K9%35kP
  1036. @5XR0f*E9l,AC\J&r`jJCG_$R0f5cIdb#Hc(g#a3Hqg7?23B6:,apQW9Ts6!9rY*K[AM?YRP't61MB8&UmX)urh*CO>;3\O
  1037. d%$OtF))iAX8+T%Y^dM=6<[K@e08'qMeV]h#q`-Q['Z.HZ<C#HCP?.bXe_5iMH88BqNFt3)SqkG95A;`XfM-%^,F>m_+*-\
  1038. RqP`;VTlN&[a\?of%NUJC-2AsgM7&]W1AO2[>T4YDVABCBM\#l]n:a?YP-HE3^<r8+<@ONJjX[J%bD:R;Fftb*M[+sj7F/d
  1039. <QFD.SZ%`oZ;(^$eS.'MBBW$[V6b<)c4/(Jq78g-l69N896@-c$SL$GqO=Y;<Ou@`f0=k&FKM^pot!FJl6b>g>Cp(%Rr6gu
  1040. \l3h;DV_(7KDTc*ri$.pTH;P!H:3euO6LXITdTMtT%5^oQi8!fX69,f?I4UV8MBBoH6mf9YN^2CTf;Y1hUXc72gA-elN;R6
  1041. O7]\@dAQhZn3;>uch3"+e5uKMhrrhQ4+4:SoV6l`ch^)FlF6coV&7,-~>
  1042. U
  1043. 2 setlinecap
  1044. N 0 236 M 5892 0 D S
  1045. N 0 0 M 0 236 D S
  1046. N 5892 0 M 0 236 D S
  1047. N 0 0 M 5892 0 D S
  1048. /PSL_A0_y 83 def
  1049. /PSL_A1_y 0 def
  1050. 8 W
  1051. N 442 0 M 0 -83 D S
  1052. N 1531 0 M 0 -83 D S
  1053. N 2621 0 M 0 -83 D S
  1054. N 3711 0 M 0 -83 D S
  1055. N 4800 0 M 0 -83 D S
  1056. N 5890 0 M 0 -83 D S
  1057. /MM {neg M} def
  1058. /PSL_AH0 0
  1059. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1060. 200 F0
  1061. (10) sh mx
  1062. (15) sh mx
  1063. (20) sh mx
  1064. (25) sh mx
  1065. (30) sh mx
  1066. (35) sh mx
  1067. def
  1068. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1069. 442 PSL_A0_y MM
  1070. (10) bc Z
  1071. 1531 PSL_A0_y MM
  1072. (15) bc Z
  1073. 2621 PSL_A0_y MM
  1074. (20) bc Z
  1075. 3711 PSL_A0_y MM
  1076. (25) bc Z
  1077. 4800 PSL_A0_y MM
  1078. (30) bc Z
  1079. 5890 PSL_A0_y MM
  1080. (35) bc Z
  1081. N 6 0 M 0 -42 D S
  1082. N 224 0 M 0 -42 D S
  1083. N 660 0 M 0 -42 D S
  1084. N 878 0 M 0 -42 D S
  1085. N 1096 0 M 0 -42 D S
  1086. N 1313 0 M 0 -42 D S
  1087. N 1749 0 M 0 -42 D S
  1088. N 1967 0 M 0 -42 D S
  1089. N 2185 0 M 0 -42 D S
  1090. N 2403 0 M 0 -42 D S
  1091. N 2839 0 M 0 -42 D S
  1092. N 3057 0 M 0 -42 D S
  1093. N 3275 0 M 0 -42 D S
  1094. N 3493 0 M 0 -42 D S
  1095. N 3928 0 M 0 -42 D S
  1096. N 4146 0 M 0 -42 D S
  1097. N 4364 0 M 0 -42 D S
  1098. N 4582 0 M 0 -42 D S
  1099. N 5018 0 M 0 -42 D S
  1100. N 5236 0 M 0 -42 D S
  1101. N 5454 0 M 0 -42 D S
  1102. N 5672 0 M 0 -42 D S
  1103. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1104. 5975 118 M (stdev) ml Z
  1105. 0 setlinecap
  1106. -736 452 T
  1107. %%EndObject
  1108. 0 A
  1109. FQ
  1110. O0
  1111. 0 6142 TM
  1112. % PostScript produced by:
  1113. %@GMT: gmt psxy ave.txt -R0/5.19615242271/0/3 -Jx3c -O -K -Baf -BWNse -Cave.cpt -Sh3.46410161514c -W1p -Y13c
  1114. %@PROJ: xy 0.00000000 5.19615242 0.00000000 3.00000000 0.000 5.196 0.000 3.000 +xy
  1115. %%BeginObject PSL_Layer_4
  1116. 0 setlinecap
  1117. 0 setlinejoin
  1118. 3.32550952342 setmiterlimit
  1119. clipsave
  1120. 0 0 M
  1121. 7365 0 D
  1122. 0 4252 D
  1123. -7365 0 D
  1124. P
  1125. PSL_clip N
  1126. 17 W
  1127. V
  1128. {1 0.655 0 C} FS
  1129. O1
  1130. 818 0 4252 Sh
  1131. {0.936 0 0 C} FS
  1132. 818 2455 4252 Sh
  1133. {0.104 1 0.896 C} FS
  1134. 818 4910 4252 Sh
  1135. {0 0 0.886 C} FS
  1136. 818 7365 4252 Sh
  1137. {0 0 0.498 C} FS
  1138. 818 1227 3543 Sh
  1139. {0 0.225 1 C} FS
  1140. 818 3682 3543 Sh
  1141. {0 0.891 1 C} FS
  1142. 818 6137 3543 Sh
  1143. {0 0 0.755 C} FS
  1144. 818 0 2835 Sh
  1145. {1 0.987 0 C} FS
  1146. 818 2455 2835 Sh
  1147. {0.23 1 0.77 C} FS
  1148. 818 4910 2835 Sh
  1149. {0.488 1 0.512 C} FS
  1150. 818 1227 2126 Sh
  1151. {0.246 1 0.754 C} FS
  1152. 818 3682 2126 Sh
  1153. {0.554 0 0 C} FS
  1154. 818 6137 2126 Sh
  1155. {0 0.752 1 C} FS
  1156. 818 0 1417 Sh
  1157. {1 0.901 0 C} FS
  1158. 818 2455 1417 Sh
  1159. {0 0 0.615 C} FS
  1160. 818 4910 1417 Sh
  1161. {0.344 1 0.656 C} FS
  1162. 818 1227 709 Sh
  1163. {0.931 1 0.0686 C} FS
  1164. 818 3682 709 Sh
  1165. {0 0.171 1 C} FS
  1166. 818 6137 709 Sh
  1167. {0.498 0 0 C} FS
  1168. 818 2455 0 Sh
  1169. {1 0.54 0 C} FS
  1170. 818 7365 0 Sh
  1171. U
  1172. PSL_cliprestore
  1173. 25 W
  1174. /PSL_slant_y 0 def
  1175. 2 setlinecap
  1176. N 0 4252 M 0 -4252 D S
  1177. /PSL_A0_y 83 def
  1178. /PSL_A1_y 0 def
  1179. 8 W
  1180. N 0 0 M -83 0 D S
  1181. N 0 1417 M -83 0 D S
  1182. N 0 2835 M -83 0 D S
  1183. N 0 4252 M -83 0 D S
  1184. /MM {neg exch M} def
  1185. /PSL_AH0 0
  1186. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1187. 200 F0
  1188. (0) sw mx
  1189. (1) sw mx
  1190. (2) sw mx
  1191. (3) sw mx
  1192. def
  1193. /PSL_A0_y PSL_A0_y 83 add def
  1194. 0 PSL_A0_y MM
  1195. (0) mr Z
  1196. 1417 PSL_A0_y MM
  1197. (1) mr Z
  1198. 2835 PSL_A0_y MM
  1199. (2) mr Z
  1200. 4252 PSL_A0_y MM
  1201. (3) mr Z
  1202. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1203. N 0 283 M -42 0 D S
  1204. N 0 567 M -42 0 D S
  1205. N 0 850 M -42 0 D S
  1206. N 0 1134 M -42 0 D S
  1207. N 0 1701 M -42 0 D S
  1208. N 0 1984 M -42 0 D S
  1209. N 0 2268 M -42 0 D S
  1210. N 0 2551 M -42 0 D S
  1211. N 0 3118 M -42 0 D S
  1212. N 0 3402 M -42 0 D S
  1213. N 0 3685 M -42 0 D S
  1214. N 0 3969 M -42 0 D S
  1215. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1216. 7365 0 T
  1217. 25 W
  1218. N 0 4252 M 0 -4252 D S
  1219. /PSL_A0_y 83 def
  1220. /PSL_A1_y 0 def
  1221. 8 W
  1222. N 0 0 M 83 0 D S
  1223. N 0 1417 M 83 0 D S
  1224. N 0 2835 M 83 0 D S
  1225. N 0 4252 M 83 0 D S
  1226. N 0 283 M 42 0 D S
  1227. N 0 567 M 42 0 D S
  1228. N 0 850 M 42 0 D S
  1229. N 0 1134 M 42 0 D S
  1230. N 0 1701 M 42 0 D S
  1231. N 0 1984 M 42 0 D S
  1232. N 0 2268 M 42 0 D S
  1233. N 0 2551 M 42 0 D S
  1234. N 0 3118 M 42 0 D S
  1235. N 0 3402 M 42 0 D S
  1236. N 0 3685 M 42 0 D S
  1237. N 0 3969 M 42 0 D S
  1238. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1239. -7365 0 T
  1240. 25 W
  1241. N 0 0 M 7365 0 D S
  1242. /PSL_A0_y 83 def
  1243. /PSL_A1_y 0 def
  1244. 8 W
  1245. N 0 0 M 0 -83 D S
  1246. N 1417 0 M 0 -83 D S
  1247. N 2835 0 M 0 -83 D S
  1248. N 4252 0 M 0 -83 D S
  1249. N 5669 0 M 0 -83 D S
  1250. N 7087 0 M 0 -83 D S
  1251. N 283 0 M 0 -42 D S
  1252. N 567 0 M 0 -42 D S
  1253. N 850 0 M 0 -42 D S
  1254. N 1134 0 M 0 -42 D S
  1255. N 1701 0 M 0 -42 D S
  1256. N 1984 0 M 0 -42 D S
  1257. N 2268 0 M 0 -42 D S
  1258. N 2551 0 M 0 -42 D S
  1259. N 3118 0 M 0 -42 D S
  1260. N 3402 0 M 0 -42 D S
  1261. N 3685 0 M 0 -42 D S
  1262. N 3969 0 M 0 -42 D S
  1263. N 4535 0 M 0 -42 D S
  1264. N 4819 0 M 0 -42 D S
  1265. N 5102 0 M 0 -42 D S
  1266. N 5386 0 M 0 -42 D S
  1267. N 5953 0 M 0 -42 D S
  1268. N 6236 0 M 0 -42 D S
  1269. N 6520 0 M 0 -42 D S
  1270. N 6803 0 M 0 -42 D S
  1271. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1272. 0 4252 T
  1273. 25 W
  1274. N 0 0 M 7365 0 D S
  1275. /PSL_A0_y 83 def
  1276. /PSL_A1_y 0 def
  1277. 8 W
  1278. N 0 0 M 0 83 D S
  1279. N 1417 0 M 0 83 D S
  1280. N 2835 0 M 0 83 D S
  1281. N 4252 0 M 0 83 D S
  1282. N 5669 0 M 0 83 D S
  1283. N 7087 0 M 0 83 D S
  1284. /MM {M} def
  1285. /PSL_AH0 0
  1286. (0) sh mx
  1287. (1) sh mx
  1288. (2) sh mx
  1289. (3) sh mx
  1290. (4) sh mx
  1291. (5) sh mx
  1292. def
  1293. /PSL_A0_y PSL_A0_y 83 add def
  1294. 0 PSL_A0_y MM
  1295. (0) bc Z
  1296. 1417 PSL_A0_y MM
  1297. (1) bc Z
  1298. 2835 PSL_A0_y MM
  1299. (2) bc Z
  1300. 4252 PSL_A0_y MM
  1301. (3) bc Z
  1302. 5669 PSL_A0_y MM
  1303. (4) bc Z
  1304. 7087 PSL_A0_y MM
  1305. (5) bc Z
  1306. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1307. N 283 0 M 0 42 D S
  1308. N 567 0 M 0 42 D S
  1309. N 850 0 M 0 42 D S
  1310. N 1134 0 M 0 42 D S
  1311. N 1701 0 M 0 42 D S
  1312. N 1984 0 M 0 42 D S
  1313. N 2268 0 M 0 42 D S
  1314. N 2551 0 M 0 42 D S
  1315. N 3118 0 M 0 42 D S
  1316. N 3402 0 M 0 42 D S
  1317. N 3685 0 M 0 42 D S
  1318. N 3969 0 M 0 42 D S
  1319. N 4535 0 M 0 42 D S
  1320. N 4819 0 M 0 42 D S
  1321. N 5102 0 M 0 42 D S
  1322. N 5386 0 M 0 42 D S
  1323. N 5953 0 M 0 42 D S
  1324. N 6236 0 M 0 42 D S
  1325. N 6520 0 M 0 42 D S
  1326. N 6803 0 M 0 42 D S
  1327. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1328. 0 -4252 T
  1329. 0 setlinecap
  1330. %%EndObject
  1331. 0 A
  1332. FQ
  1333. O0
  1334. 0 0 TM
  1335. % PostScript produced by:
  1336. %@GMT: gmt psxy -R0/5.19615242271/0/3 -Jx3c -O -K /Users/pwessel/GMTdev/gmt-dev/test/gmtbinstats/hex_data.txt -Sc0.1c -Gblack
  1337. %@PROJ: xy 0.00000000 5.19615242 0.00000000 3.00000000 0.000 5.196 0.000 3.000 +xy
  1338. %%BeginObject PSL_Layer_5
  1339. 0 setlinecap
  1340. 0 setlinejoin
  1341. 3.32550952342 setmiterlimit
  1342. clipsave
  1343. 0 0 M
  1344. 7365 0 D
  1345. 0 4252 D
  1346. -7365 0 D
  1347. P
  1348. PSL_clip N
  1349. 4 W
  1350. V
  1351. {0 A} FS
  1352. 24 3011 4179 Sc
  1353. 24 1825 2315 Sc
  1354. 24 5510 1472 Sc
  1355. 24 6683 3613 Sc
  1356. 24 6204 2764 Sc
  1357. 24 1440 2508 Sc
  1358. 24 5238 2900 Sc
  1359. 24 4163 3894 Sc
  1360. 24 5297 2890 Sc
  1361. 24 6230 576 Sc
  1362. 24 2200 2970 Sc
  1363. 24 3000 2254 Sc
  1364. 24 4506 3251 Sc
  1365. 24 2256 2223 Sc
  1366. 24 4440 3135 Sc
  1367. 24 4073 2698 Sc
  1368. 24 5650 1432 Sc
  1369. 24 4143 3637 Sc
  1370. 24 930 2563 Sc
  1371. 24 699 3851 Sc
  1372. 24 1328 1028 Sc
  1373. 24 2794 3478 Sc
  1374. 24 1733 756 Sc
  1375. 24 2243 466 Sc
  1376. 24 4099 1933 Sc
  1377. 24 946 2487 Sc
  1378. 24 3788 3927 Sc
  1379. 24 5556 4144 Sc
  1380. 24 2193 2633 Sc
  1381. 24 6865 3973 Sc
  1382. 24 166 1896 Sc
  1383. 24 4518 2369 Sc
  1384. 24 3583 1344 Sc
  1385. 24 1216 2498 Sc
  1386. 24 1733 1964 Sc
  1387. 24 6728 23 Sc
  1388. 24 1249 2478 Sc
  1389. 24 4099 870 Sc
  1390. 24 2757 3892 Sc
  1391. 24 273 2977 Sc
  1392. 24 4469 4194 Sc
  1393. 24 5221 3385 Sc
  1394. 24 6484 682 Sc
  1395. 24 466 3965 Sc
  1396. 24 4523 2019 Sc
  1397. 24 2793 2877 Sc
  1398. 24 4568 1894 Sc
  1399. 24 3550 2963 Sc
  1400. 24 2934 2538 Sc
  1401. 24 4962 1142 Sc
  1402. 24 7327 3808 Sc
  1403. 24 3876 82 Sc
  1404. 24 4722 2441 Sc
  1405. 24 1457 3029 Sc
  1406. 24 1541 409 Sc
  1407. 24 5408 695 Sc
  1408. 24 6133 2342 Sc
  1409. 24 4395 3373 Sc
  1410. 24 3948 3270 Sc
  1411. 24 7060 333 Sc
  1412. 24 2660 770 Sc
  1413. 24 6788 1866 Sc
  1414. 24 5148 2884 Sc
  1415. 24 3803 1923 Sc
  1416. 24 5798 1845 Sc
  1417. 24 5989 468 Sc
  1418. 24 4784 1690 Sc
  1419. 24 3786 2733 Sc
  1420. 24 2091 280 Sc
  1421. 24 5955 3066 Sc
  1422. 24 607 1522 Sc
  1423. 24 5367 2337 Sc
  1424. 24 3264 1361 Sc
  1425. 24 3652 3353 Sc
  1426. 24 3886 801 Sc
  1427. 24 6239 3021 Sc
  1428. 24 6907 433 Sc
  1429. 24 4657 3252 Sc
  1430. 24 250 2995 Sc
  1431. 24 3181 3586 Sc
  1432. 24 2474 2437 Sc
  1433. 24 3419 1667 Sc
  1434. 24 4181 1959 Sc
  1435. 24 4823 3079 Sc
  1436. 24 5867 919 Sc
  1437. 24 2114 1491 Sc
  1438. 24 1656 1091 Sc
  1439. 24 1950 1467 Sc
  1440. 24 5992 1045 Sc
  1441. 24 6162 2606 Sc
  1442. 24 5831 2243 Sc
  1443. 24 5760 2649 Sc
  1444. 24 3387 4157 Sc
  1445. 24 3628 1320 Sc
  1446. 24 2805 1938 Sc
  1447. 24 1732 1079 Sc
  1448. 24 1810 2562 Sc
  1449. 24 4022 234 Sc
  1450. 24 5695 1969 Sc
  1451. 24 6044 3662 Sc
  1452. U
  1453. PSL_cliprestore
  1454. %%EndObject
  1455. 0 A
  1456. FQ
  1457. O0
  1458. 0 0 TM
  1459. % PostScript produced by:
  1460. %@GMT: gmt psscale -Cave.cpt -R0/5.19615242271/0/3 -Jx3c -DJBC -Bxaf -By+lMean -O
  1461. %@PROJ: xy 0.00000000 5.19615242 0.00000000 3.00000000 0.000 5.196 0.000 3.000 +xy
  1462. %%BeginObject PSL_Layer_6
  1463. 0 setlinecap
  1464. 0 setlinejoin
  1465. 3.32550952342 setmiterlimit
  1466. 736 -452 T
  1467. 25 W
  1468. V N 0 0 T 5892 236 scale /DeviceRGB setcolorspace
  1469. << /ImageType 1 /Decode [0 1 0 1 0 1] /Width 2946 /Height 1 /BitsPerComponent 8
  1470. /ImageMatrix [2946 0 0 -1 0 1] /DataSource currentfile /ASCII85Decode filter /FlateDecode filter
  1471. >> image
  1472. G[<Pe!tua,)F`V\8X_JLeC_3HgU:r\D/@t8D;2L9gY)=joA4V%Sfb4Med`=g:QQ]Id1?11!!=q]K/(:^MI@?^&K$@%(l^8q
  1473. =H(.B9Ya%i_IQ>[VICI@@g6OS(1q%djuW)f*t,:aMm+$kYgcg1j]I)!=G>:-K=/ucXN(N]`$T<?(2S-%@68X?-[&oWp0b)1
  1474. &,U>H#B:$)E<Je&@lTJ^3/LQnNAEQ[SATVW^dVMFAR*&Ok8LM`#&`E9DW;5pigt35&+C-kn/+sj'[N<4G_)3+L"CR%[s7)K
  1475. `s7"1-[`oMI)S&-4+?*8Ic36XImNU['+D\h!e2C>6K'SN7MmL(_VoEd7g)4J,XfX::)$)b1djhB`'c/p7N<d.iZUJu+<_@@
  1476. 0p3ZYP75Qq!\'6=WK@C!Oj6OZ%*45uaG_[kMJUB%j?QK$6>kjM?K=J&'Q=DR&.50<MP:rFUBF1MV,/(A:_r.h*YhK`Q(6!q
  1477. JuYc(lDT9&W.ir#*RmM@e40Tt6mFNX';m:JTfH;L-!I!"g7YRs%dhXE*RP1ad03h'c0:60k_WX0NIUI?qOk%@&,e3_"#1(6
  1478. 0a'k7@2P":(l;*,NA29.ER&f&^dLl5A5'g=9Z(sb#%h<[An)>5@NOZAJ[5oGYS^$;'[*^#/$RH)L"0:X[9/4WfRSt6jD;gO
  1479. CrJ;K`t%IS0'mcT?n_4^57ZTo%cK+%3(Irsa)M/.E=/U`#%sKJ30+HWLeG7:/%CIPc?7pX:#*U&gqd:O_gU\K*o[bQisD=:
  1480. )4olBo+J7r)K5*\n*hA?nBq&bchN*qpkJ84JY2`!r.b2(W.(4#oZIBd:D6tt9F-&*J*NL0WNQ>roYpa)cR-"_R5"JN_Wla[
  1481. Vt]=l]eeX?ejRlSJ;AMg,3bALXI&&k]eE=UgdK[K'2;7sF?M?5oJdtj*gp,VBO^:YM50qpY3q^&\ng<kN_,nu-D>;\,goDN
  1482. =>rnd>rP>tbp:b<P?_0_$=,P=FigH-`IQIL@++8O8ZQnZS^*\r3b'r/[)o7F-Bh1/AC_'N7E8,'*AcAje7@/CP=(+":)u+#
  1483. FO9+"JUfl:Dt7Y8aeug!^\4#rg2.13QRS`$VQb62,2+)7<81)$D)K;?`K\_];c9)Y.;^o<[DA*TH;dl1!m55Z.BbV+Jl\@u
  1484. >%K0tV5^O2VM^\/W`j#7Bk]hT/MT,if[SCp;bIKmD(RGa1uHg54B#$s9mt7mBV=%UTk9]^RV<[UL2!CHVQ$G\At!J'CPli"
  1485. aT3tNagBJadomDY)iZdn29rSX=OUSd9F$P8*Ao=>P=D"d)I^3j\EU#%VON=/mM]P\BX$a#6)KtQ#5$IHo<8"[s4#Be;.%dR
  1486. I7um(BDUq$1I/Xu5kPI$Un22&HC,l@DMG0\)5aQK\@S%>l>/qiP8U3W!Me2]N)=pX<pe*j[5I!p`_93E1Jt9u,dfImeKSCY
  1487. R[^9kAu;Q,RB@lKL)QPLC1LqUTp`"eArc-]bZ-e^:Nap0eM.G2gFQ;UZUcsu@b!/*<8B**[=DhgC6koX=eWuMV(.m5Wb>G6
  1488. Jm"l>B!'4DFXe?7?=h=bPr9R]b%ssIZWSTu()8c4<Qo8X;6sOs!d:NHfr7;MQO92;.U_ru^Y,Z8AtSX_rQ8U[.!NHmjYDUU
  1489. di;BuF%"^+;.VQ(PgpaT(3;g1bt2IR32MSrZne")8oN!)SN3UTk.K-0$VG7g.[@Q?PQ@,9_H]rYF&g?+2'k-3Q,MHS@WPJ)
  1490. bUk+L\?,nrNoHP?MJ)?+Y.:_qk(.!2LPfXa.AhBl(]dDHh)n[oo1W$+F%%f:oT+9saQAa3RFd=0hC(_+>D5$)oXB+LE9;ei
  1491. RZ@ec4t3l7XM;sqKed!M1>nZ$1uB%br(qA(;o-[2rF(.*W0&/N^[]MCM')MQDto2Cpl&#Dk^:0m]Ydsd_/$^#9>#58iu+HJ
  1492. #p/+=*o[4g483\1GAnM1E"b0L*S6g^\:Vo6KT!?jo/MN3c5E.l.@e<_*60cR`=_8e%cJN??pF?n0D8e_ZO8k""5C'i>Hn@$
  1493. Z,t[T%9S[6=Go%=NE'*FXMAj-_br&%@P#A_/9'`]*p-oAAn)Tg@Kr\kdkDM80H$'.&JHi>j.*@kK@(NiOViZ.(l"a0&.HQ$
  1494. %)`/<7mHW7+6PldMr*ZOT'1ankiQtU(N`+oF@6A@7m")#g7U<,Td<m83LZWjRQ-;S#S#/]ohc6B;$XM">,[8rW/bVkMCPQ`
  1495. 8kqfS5^AS]=d23dPX7s>"H&rkMP:@`UC[d,J<M)NO;E2()nD%D3KW(=L9/IJbfGHraFNnRkG1NbUdci06jb201*h"*+>FKP
  1496. +VGn]iZTr633a&'0bFN8&IhSL"ogQE&IB$]!TEQ-_BCJI32,jY66RWR6jNoc0`9l4"c^PM+!6&](@n0?V^!]`4tQNZjPuHM
  1497. ;*IhPAE>&%2(bH1I.ZtIb_IpFb'Z>C3R-iXO)7(qq&ni6SW@qXj8#olS^1q5*s-j/oWcd+6Q["j@eA'q)Pg/l5#V5nksM=D
  1498. Rm)#lr+S%<a&/I%I6dHseONZ4?%%O:0'b<q&%=aaqRGj4Y7JE4$!SSH_:U,G+-h7dp>O]&BHO.S<Vpn*A%'_<5'Zr-m\@;<
  1499. jAsNR7/'j?LN]<HI>moGh?SDnpHId;_!dK%56:O`J3OD9l[V,)r3=%E%K-%;h\#cP_-[uUM8A'fm,d/$&,ldlNtM@@iQi2:
  1500. :>l^!p:'Pc$\-7e(CblJn2Ci,m-n'eH[b`7Lqe]>Z\ZAWpd9nQR/#-%T--H!#=AoGNW~>
  1501. U
  1502. 2 setlinecap
  1503. N 0 236 M 5892 0 D S
  1504. N 0 0 M 0 236 D S
  1505. N 5892 0 M 0 236 D S
  1506. N 0 0 M 5892 0 D S
  1507. /PSL_A0_y 83 def
  1508. /PSL_A1_y 0 def
  1509. 8 W
  1510. N 496 0 M 0 -83 D S
  1511. N 1555 0 M 0 -83 D S
  1512. N 2614 0 M 0 -83 D S
  1513. N 3673 0 M 0 -83 D S
  1514. N 4732 0 M 0 -83 D S
  1515. N 5791 0 M 0 -83 D S
  1516. /MM {neg M} def
  1517. /PSL_AH0 0
  1518. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1519. 200 F0
  1520. (30) sh mx
  1521. (40) sh mx
  1522. (50) sh mx
  1523. (60) sh mx
  1524. (70) sh mx
  1525. (80) sh mx
  1526. def
  1527. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1528. 496 PSL_A0_y MM
  1529. (30) bc Z
  1530. 1555 PSL_A0_y MM
  1531. (40) bc Z
  1532. 2614 PSL_A0_y MM
  1533. (50) bc Z
  1534. 3673 PSL_A0_y MM
  1535. (60) bc Z
  1536. 4732 PSL_A0_y MM
  1537. (70) bc Z
  1538. 5791 PSL_A0_y MM
  1539. (80) bc Z
  1540. N 72 0 M 0 -42 D S
  1541. N 284 0 M 0 -42 D S
  1542. N 707 0 M 0 -42 D S
  1543. N 919 0 M 0 -42 D S
  1544. N 1131 0 M 0 -42 D S
  1545. N 1343 0 M 0 -42 D S
  1546. N 1767 0 M 0 -42 D S
  1547. N 1978 0 M 0 -42 D S
  1548. N 2190 0 M 0 -42 D S
  1549. N 2402 0 M 0 -42 D S
  1550. N 2826 0 M 0 -42 D S
  1551. N 3038 0 M 0 -42 D S
  1552. N 3249 0 M 0 -42 D S
  1553. N 3461 0 M 0 -42 D S
  1554. N 3885 0 M 0 -42 D S
  1555. N 4097 0 M 0 -42 D S
  1556. N 4309 0 M 0 -42 D S
  1557. N 4520 0 M 0 -42 D S
  1558. N 4944 0 M 0 -42 D S
  1559. N 5156 0 M 0 -42 D S
  1560. N 5368 0 M 0 -42 D S
  1561. N 5580 0 M 0 -42 D S
  1562. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1563. 5975 118 M (Mean) ml Z
  1564. 0 setlinecap
  1565. -736 452 T
  1566. %%EndObject
  1567. grestore
  1568. PSL_movie_label_completion /PSL_movie_label_completion {} def
  1569. PSL_movie_prog_indicator_completion /PSL_movie_prog_indicator_completion {} def
  1570. %PSL_Begin_Trailer
  1571. %%PageTrailer
  1572. U
  1573. showpage
  1574. %%Trailer
  1575. end
  1576. %%EOF
Tip!

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

Comments

Loading...