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

arrowline.ps 31 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
  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_fdd3333-dirty [64-bit] Document from psxy
  5. %%Creator: GMT6
  6. %%For: unknown
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Sun Nov 11 10:06:45 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. 1181 709 TM
  668. % PostScript produced by:
  669. %@GMT: gmt psxy -Jx10c -R0.1/0.9/-0.1/0.7 -SV1c+e+h0 -W0.5p,black -P -X2.5c -Y1.5c -K p.txt -Bx0 -Byg0.1 --PROJ_LENGTH_UNIT=cm
  670. %@PROJ: xy 0.10000000 0.90000000 -0.10000000 0.70000000 0.100 0.900 -0.100 0.700 +xy
  671. %GMTBoundingBox: 70.8661 42.5197 226.772 226.772
  672. %%BeginObject PSL_Layer_1
  673. 0 setlinecap
  674. 0 setlinejoin
  675. 3.32551 setmiterlimit
  676. clipsave
  677. 0 0 M
  678. 3780 0 D
  679. 0 3780 D
  680. -3780 0 D
  681. P
  682. PSL_clip N
  683. 8 W
  684. V
  685. O1
  686. 8 W
  687. V 472 472 T 90 R
  688. N 0 0 M 472 0 D S
  689. U
  690. V 472 1417 T 90 R
  691. 0 0 M
  692. -472 127 D
  693. 0 -254 D
  694. P clip fs P S
  695. U
  696. 8 W
  697. 8 W
  698. V 1417 472 T 90 R
  699. N 0 0 M 0 0 D S
  700. U
  701. V 1417 945 T 90 R
  702. 0 0 M
  703. -472 127 D
  704. 0 -254 D
  705. P clip fs P S
  706. U
  707. 8 W
  708. 8 W
  709. V 2362 472 T 90 R
  710. U
  711. V 2362 709 T 90 R
  712. 0 0 M
  713. -472 127 D
  714. 0 -254 D
  715. P clip fs P S
  716. U
  717. 8 W
  718. 8 W
  719. V 3307 472 T 90 R
  720. U
  721. V 3307 591 T 90 R
  722. 0 0 M
  723. -472 127 D
  724. 0 -254 D
  725. P clip fs P S
  726. U
  727. U
  728. PSL_cliprestore
  729. 25 W
  730. 4 W
  731. 0 0 M
  732. 3780 0 D
  733. S
  734. 0 472 M
  735. 3780 0 D
  736. S
  737. 0 945 M
  738. 3780 0 D
  739. S
  740. 0 1417 M
  741. 3780 0 D
  742. S
  743. 0 1890 M
  744. 3780 0 D
  745. S
  746. 0 2362 M
  747. 3780 0 D
  748. S
  749. 0 2835 M
  750. 3780 0 D
  751. S
  752. 0 3307 M
  753. 3780 0 D
  754. S
  755. 0 3780 M
  756. 3780 0 D
  757. S
  758. 2 setlinecap
  759. 25 W
  760. N 0 3780 M 0 -3780 D S
  761. /PSL_A0_y 0 def
  762. /PSL_A1_y 0 def
  763. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  764. 3780 0 T
  765. N 0 3780 M 0 -3780 D S
  766. /PSL_A0_y 0 def
  767. /PSL_A1_y 0 def
  768. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  769. -3780 0 T
  770. N 0 0 M 3780 0 D S
  771. /PSL_A0_y 0 def
  772. /PSL_A1_y 0 def
  773. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  774. 0 3780 T
  775. N 0 0 M 3780 0 D S
  776. /PSL_A0_y 0 def
  777. /PSL_A1_y 0 def
  778. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  779. 0 -3780 T
  780. 0 setlinecap
  781. %%EndObject
  782. 0 A
  783. FQ
  784. O0
  785. 0 0 TM
  786. % PostScript produced by:
  787. %@GMT: gmt pstext -R0.1/0.9/-0.1/0.7 -Jx10c -O -K -F+f18p+cTL -Dj0.1i
  788. %@PROJ: xy 0.10000000 0.90000000 -0.10000000 0.70000000 0.100 0.900 -0.100 0.700 +xy
  789. %%BeginObject PSL_Layer_2
  790. 0 setlinecap
  791. 0 setlinejoin
  792. 3.32551 setmiterlimit
  793. clipsave
  794. 0 0 M
  795. 3780 0 D
  796. 0 3780 D
  797. -3780 0 D
  798. P
  799. PSL_clip N
  800. 120 3660 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  801. 300 F0
  802. (CM) tl Z
  803. PSL_cliprestore
  804. %%EndObject
  805. 0 A
  806. FQ
  807. O0
  808. 4016 0 TM
  809. % PostScript produced by:
  810. %@GMT: gmt psxy -Jx10c -R0.1/0.9/-0.1/0.7 -SV1c+e+h0 -W0.5p,black -O -K p.txt -Bx0 -Byg0.1 -X8.5c --PROJ_LENGTH_UNIT=inch
  811. %@PROJ: xy 0.10000000 0.90000000 -0.10000000 0.70000000 0.100 0.900 -0.100 0.700 +xy
  812. %%BeginObject PSL_Layer_3
  813. 0 setlinecap
  814. 0 setlinejoin
  815. 3.32551 setmiterlimit
  816. clipsave
  817. 0 0 M
  818. 3780 0 D
  819. 0 3780 D
  820. -3780 0 D
  821. P
  822. PSL_clip N
  823. 8 W
  824. V
  825. O1
  826. 8 W
  827. V 472 472 T 90 R
  828. N 0 0 M 1928 0 D S
  829. U
  830. V 472 2872 T 90 R
  831. 0 0 M
  832. -472 127 D
  833. 0 -254 D
  834. P clip fs P S
  835. U
  836. 8 W
  837. 8 W
  838. V 1417 472 T 90 R
  839. N 0 0 M 728 0 D S
  840. U
  841. V 1417 1672 T 90 R
  842. 0 0 M
  843. -472 127 D
  844. 0 -254 D
  845. P clip fs P S
  846. U
  847. 8 W
  848. 8 W
  849. V 2362 472 T 90 R
  850. N 0 0 M 128 0 D S
  851. U
  852. V 2362 1072 T 90 R
  853. 0 0 M
  854. -472 127 D
  855. 0 -254 D
  856. P clip fs P S
  857. U
  858. 8 W
  859. 8 W
  860. V 3307 472 T 90 R
  861. U
  862. V 3307 772 T 90 R
  863. 0 0 M
  864. -472 127 D
  865. 0 -254 D
  866. P clip fs P S
  867. U
  868. U
  869. PSL_cliprestore
  870. 25 W
  871. 4 W
  872. 0 0 M
  873. 3780 0 D
  874. S
  875. 0 472 M
  876. 3780 0 D
  877. S
  878. 0 945 M
  879. 3780 0 D
  880. S
  881. 0 1417 M
  882. 3780 0 D
  883. S
  884. 0 1890 M
  885. 3780 0 D
  886. S
  887. 0 2362 M
  888. 3780 0 D
  889. S
  890. 0 2835 M
  891. 3780 0 D
  892. S
  893. 0 3307 M
  894. 3780 0 D
  895. S
  896. 0 3780 M
  897. 3780 0 D
  898. S
  899. 2 setlinecap
  900. 25 W
  901. N 0 3780 M 0 -3780 D S
  902. /PSL_A0_y 0 def
  903. /PSL_A1_y 0 def
  904. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  905. 3780 0 T
  906. N 0 3780 M 0 -3780 D S
  907. /PSL_A0_y 0 def
  908. /PSL_A1_y 0 def
  909. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  910. -3780 0 T
  911. N 0 0 M 3780 0 D S
  912. /PSL_A0_y 0 def
  913. /PSL_A1_y 0 def
  914. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  915. 0 3780 T
  916. N 0 0 M 3780 0 D S
  917. /PSL_A0_y 0 def
  918. /PSL_A1_y 0 def
  919. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  920. 0 -3780 T
  921. 0 setlinecap
  922. %%EndObject
  923. 0 A
  924. FQ
  925. O0
  926. 0 0 TM
  927. % PostScript produced by:
  928. %@GMT: gmt pstext -R0.1/0.9/-0.1/0.7 -Jx10c -O -K -F+f18p+cTL -Dj0.1i
  929. %@PROJ: xy 0.10000000 0.90000000 -0.10000000 0.70000000 0.100 0.900 -0.100 0.700 +xy
  930. %%BeginObject PSL_Layer_4
  931. 0 setlinecap
  932. 0 setlinejoin
  933. 3.32551 setmiterlimit
  934. clipsave
  935. 0 0 M
  936. 3780 0 D
  937. 0 3780 D
  938. -3780 0 D
  939. P
  940. PSL_clip N
  941. 120 3660 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  942. 300 F0
  943. (INCH) tl Z
  944. PSL_cliprestore
  945. %%EndObject
  946. 0 A
  947. FQ
  948. O0
  949. -4016 4016 TM
  950. % PostScript produced by:
  951. %@GMT: gmt psxy -Jx10c -R0.1/0.9/-0.1/0.7 -SV1c+e+h0+n1c -W0.5p,black -O -K -X-8.5c -Y8.5c p.txt -Bx0 -Byg0.1 --PROJ_LENGTH_UNIT=cm
  952. %@PROJ: xy 0.10000000 0.90000000 -0.10000000 0.70000000 0.100 0.900 -0.100 0.700 +xy
  953. %%BeginObject PSL_Layer_5
  954. 0 setlinecap
  955. 0 setlinejoin
  956. 3.32551 setmiterlimit
  957. clipsave
  958. 0 0 M
  959. 3780 0 D
  960. 0 3780 D
  961. -3780 0 D
  962. P
  963. PSL_clip N
  964. 8 W
  965. V
  966. O1
  967. 8 W
  968. V 472 472 T 90 R
  969. N 0 0 M 472 0 D S
  970. U
  971. V 472 1417 T 90 R
  972. 0 0 M
  973. -472 127 D
  974. 0 -254 D
  975. P clip fs P S
  976. U
  977. 8 W
  978. 8 W
  979. V 1417 472 T 90 R
  980. N 0 0 M 0 0 D S
  981. U
  982. V 1417 945 T 90 R
  983. 0 0 M
  984. -472 127 D
  985. 0 -254 D
  986. P clip fs P S
  987. U
  988. 8 W
  989. 4 W
  990. V 2362 472 T 90 R
  991. U
  992. V 2362 709 T 90 R
  993. 0 0 M
  994. -236 63 D
  995. 0 -126 D
  996. P clip fs P S
  997. U
  998. 8 W
  999. 2 W
  1000. V 3307 472 T 90 R
  1001. U
  1002. V 3307 591 T 90 R
  1003. 0 0 M
  1004. -118 32 D
  1005. 0 -64 D
  1006. P clip fs P S
  1007. U
  1008. U
  1009. PSL_cliprestore
  1010. 25 W
  1011. 4 W
  1012. 0 0 M
  1013. 3780 0 D
  1014. S
  1015. 0 472 M
  1016. 3780 0 D
  1017. S
  1018. 0 945 M
  1019. 3780 0 D
  1020. S
  1021. 0 1417 M
  1022. 3780 0 D
  1023. S
  1024. 0 1890 M
  1025. 3780 0 D
  1026. S
  1027. 0 2362 M
  1028. 3780 0 D
  1029. S
  1030. 0 2835 M
  1031. 3780 0 D
  1032. S
  1033. 0 3307 M
  1034. 3780 0 D
  1035. S
  1036. 0 3780 M
  1037. 3780 0 D
  1038. S
  1039. 2 setlinecap
  1040. 25 W
  1041. N 0 3780 M 0 -3780 D S
  1042. /PSL_A0_y 0 def
  1043. /PSL_A1_y 0 def
  1044. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1045. 3780 0 T
  1046. N 0 3780 M 0 -3780 D S
  1047. /PSL_A0_y 0 def
  1048. /PSL_A1_y 0 def
  1049. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1050. -3780 0 T
  1051. N 0 0 M 3780 0 D S
  1052. /PSL_A0_y 0 def
  1053. /PSL_A1_y 0 def
  1054. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1055. 0 3780 T
  1056. N 0 0 M 3780 0 D S
  1057. /PSL_A0_y 0 def
  1058. /PSL_A1_y 0 def
  1059. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1060. 0 -3780 T
  1061. 0 setlinecap
  1062. %%EndObject
  1063. 0 A
  1064. FQ
  1065. O0
  1066. 0 0 TM
  1067. % PostScript produced by:
  1068. %@GMT: gmt pstext -R0.1/0.9/-0.1/0.7 -Jx10c -O -K -F+f18p+cTL -Dj0.1i
  1069. %@PROJ: xy 0.10000000 0.90000000 -0.10000000 0.70000000 0.100 0.900 -0.100 0.700 +xy
  1070. %%BeginObject PSL_Layer_6
  1071. 0 setlinecap
  1072. 0 setlinejoin
  1073. 3.32551 setmiterlimit
  1074. clipsave
  1075. 0 0 M
  1076. 3780 0 D
  1077. 0 3780 D
  1078. -3780 0 D
  1079. P
  1080. PSL_clip N
  1081. 120 3660 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1082. 300 F0
  1083. (CM) tl Z
  1084. PSL_cliprestore
  1085. %%EndObject
  1086. 0 A
  1087. FQ
  1088. O0
  1089. 4016 0 TM
  1090. % PostScript produced by:
  1091. %@GMT: gmt psxy -Jx10c -R0.1/0.9/-0.1/0.7 -SV1c+e+h0+n2c -W0.5p,black -O -K p.txt -Bx0 -Byg0.1 -X8.5c --PROJ_LENGTH_UNIT=inch
  1092. %@PROJ: xy 0.10000000 0.90000000 -0.10000000 0.70000000 0.100 0.900 -0.100 0.700 +xy
  1093. %%BeginObject PSL_Layer_7
  1094. 0 setlinecap
  1095. 0 setlinejoin
  1096. 3.32551 setmiterlimit
  1097. clipsave
  1098. 0 0 M
  1099. 3780 0 D
  1100. 0 3780 D
  1101. -3780 0 D
  1102. P
  1103. PSL_clip N
  1104. 8 W
  1105. V
  1106. O1
  1107. 8 W
  1108. V 472 472 T 90 R
  1109. N 0 0 M 1928 0 D S
  1110. U
  1111. V 472 2872 T 90 R
  1112. 0 0 M
  1113. -472 127 D
  1114. 0 -254 D
  1115. P clip fs P S
  1116. U
  1117. 8 W
  1118. 8 W
  1119. V 1417 472 T 90 R
  1120. N 0 0 M 728 0 D S
  1121. U
  1122. V 1417 1672 T 90 R
  1123. 0 0 M
  1124. -472 127 D
  1125. 0 -254 D
  1126. P clip fs P S
  1127. U
  1128. 8 W
  1129. 5 W
  1130. V 2362 472 T 90 R
  1131. N 0 0 M 300 0 D S
  1132. U
  1133. V 2362 1072 T 90 R
  1134. 0 0 M
  1135. -300 80 D
  1136. 0 -160 D
  1137. P clip fs P S
  1138. U
  1139. 8 W
  1140. 3 W
  1141. V 3307 472 T 90 R
  1142. N 0 0 M 150 0 D S
  1143. U
  1144. V 3307 772 T 90 R
  1145. 0 0 M
  1146. -150 40 D
  1147. 0 -80 D
  1148. P clip fs P S
  1149. U
  1150. U
  1151. PSL_cliprestore
  1152. 25 W
  1153. 4 W
  1154. 0 0 M
  1155. 3780 0 D
  1156. S
  1157. 0 472 M
  1158. 3780 0 D
  1159. S
  1160. 0 945 M
  1161. 3780 0 D
  1162. S
  1163. 0 1417 M
  1164. 3780 0 D
  1165. S
  1166. 0 1890 M
  1167. 3780 0 D
  1168. S
  1169. 0 2362 M
  1170. 3780 0 D
  1171. S
  1172. 0 2835 M
  1173. 3780 0 D
  1174. S
  1175. 0 3307 M
  1176. 3780 0 D
  1177. S
  1178. 0 3780 M
  1179. 3780 0 D
  1180. S
  1181. 2 setlinecap
  1182. 25 W
  1183. N 0 3780 M 0 -3780 D S
  1184. /PSL_A0_y 0 def
  1185. /PSL_A1_y 0 def
  1186. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1187. 3780 0 T
  1188. N 0 3780 M 0 -3780 D S
  1189. /PSL_A0_y 0 def
  1190. /PSL_A1_y 0 def
  1191. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1192. -3780 0 T
  1193. N 0 0 M 3780 0 D S
  1194. /PSL_A0_y 0 def
  1195. /PSL_A1_y 0 def
  1196. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1197. 0 3780 T
  1198. N 0 0 M 3780 0 D S
  1199. /PSL_A0_y 0 def
  1200. /PSL_A1_y 0 def
  1201. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1202. 0 -3780 T
  1203. 0 setlinecap
  1204. %%EndObject
  1205. 0 A
  1206. FQ
  1207. O0
  1208. 0 0 TM
  1209. % PostScript produced by:
  1210. %@GMT: gmt pstext -R0.1/0.9/-0.1/0.7 -Jx10c -O -K -F+f18p+cTL -Dj0.1i
  1211. %@PROJ: xy 0.10000000 0.90000000 -0.10000000 0.70000000 0.100 0.900 -0.100 0.700 +xy
  1212. %%BeginObject PSL_Layer_8
  1213. 0 setlinecap
  1214. 0 setlinejoin
  1215. 3.32551 setmiterlimit
  1216. clipsave
  1217. 0 0 M
  1218. 3780 0 D
  1219. 0 3780 D
  1220. -3780 0 D
  1221. P
  1222. PSL_clip N
  1223. 120 3660 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1224. 300 F0
  1225. (INCH) tl Z
  1226. PSL_cliprestore
  1227. %%EndObject
  1228. 0 A
  1229. FQ
  1230. O0
  1231. -4016 4016 TM
  1232. % PostScript produced by:
  1233. %@GMT: gmt psxy -Jx10c -R0.1/0.9/-0.1/0.7 -SV1c+e+h0+n1c -W0.5p,black -Gblack -O -K -X-8.5c -Y8.5c p.txt -Bx0 -Byg0.1 --PROJ_LENGTH_UNIT=cm
  1234. %@PROJ: xy 0.10000000 0.90000000 -0.10000000 0.70000000 0.100 0.900 -0.100 0.700 +xy
  1235. %%BeginObject PSL_Layer_9
  1236. 0 setlinecap
  1237. 0 setlinejoin
  1238. 3.32551 setmiterlimit
  1239. clipsave
  1240. 0 0 M
  1241. 3780 0 D
  1242. 0 3780 D
  1243. -3780 0 D
  1244. P
  1245. PSL_clip N
  1246. 8 W
  1247. V
  1248. {0 A} FS
  1249. O1
  1250. 8 W
  1251. V 472 472 T 90 R
  1252. N 0 0 M 472 0 D S
  1253. U
  1254. V 472 1417 T 90 R
  1255. 0 0 M
  1256. -472 127 D
  1257. 0 -254 D
  1258. P clip fs P S
  1259. U
  1260. 8 W
  1261. 8 W
  1262. V 1417 472 T 90 R
  1263. N 0 0 M 0 0 D S
  1264. U
  1265. V 1417 945 T 90 R
  1266. 0 0 M
  1267. -472 127 D
  1268. 0 -254 D
  1269. P clip fs P S
  1270. U
  1271. 8 W
  1272. 4 W
  1273. V 2362 472 T 90 R
  1274. U
  1275. V 2362 709 T 90 R
  1276. 0 0 M
  1277. -236 63 D
  1278. 0 -126 D
  1279. P clip fs P S
  1280. U
  1281. 8 W
  1282. 2 W
  1283. V 3307 472 T 90 R
  1284. U
  1285. V 3307 591 T 90 R
  1286. 0 0 M
  1287. -118 32 D
  1288. 0 -64 D
  1289. P clip fs P S
  1290. U
  1291. U
  1292. PSL_cliprestore
  1293. 25 W
  1294. 4 W
  1295. 0 0 M
  1296. 3780 0 D
  1297. S
  1298. 0 472 M
  1299. 3780 0 D
  1300. S
  1301. 0 945 M
  1302. 3780 0 D
  1303. S
  1304. 0 1417 M
  1305. 3780 0 D
  1306. S
  1307. 0 1890 M
  1308. 3780 0 D
  1309. S
  1310. 0 2362 M
  1311. 3780 0 D
  1312. S
  1313. 0 2835 M
  1314. 3780 0 D
  1315. S
  1316. 0 3307 M
  1317. 3780 0 D
  1318. S
  1319. 0 3780 M
  1320. 3780 0 D
  1321. S
  1322. 2 setlinecap
  1323. 25 W
  1324. N 0 3780 M 0 -3780 D S
  1325. /PSL_A0_y 0 def
  1326. /PSL_A1_y 0 def
  1327. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1328. 3780 0 T
  1329. N 0 3780 M 0 -3780 D S
  1330. /PSL_A0_y 0 def
  1331. /PSL_A1_y 0 def
  1332. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1333. -3780 0 T
  1334. N 0 0 M 3780 0 D S
  1335. /PSL_A0_y 0 def
  1336. /PSL_A1_y 0 def
  1337. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1338. 0 3780 T
  1339. N 0 0 M 3780 0 D S
  1340. /PSL_A0_y 0 def
  1341. /PSL_A1_y 0 def
  1342. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1343. 0 -3780 T
  1344. 0 setlinecap
  1345. %%EndObject
  1346. 0 A
  1347. FQ
  1348. O0
  1349. 0 0 TM
  1350. % PostScript produced by:
  1351. %@GMT: gmt pstext -R0.1/0.9/-0.1/0.7 -Jx10c -O -K -F+f18p+cTL -Dj0.1i
  1352. %@PROJ: xy 0.10000000 0.90000000 -0.10000000 0.70000000 0.100 0.900 -0.100 0.700 +xy
  1353. %%BeginObject PSL_Layer_10
  1354. 0 setlinecap
  1355. 0 setlinejoin
  1356. 3.32551 setmiterlimit
  1357. clipsave
  1358. 0 0 M
  1359. 3780 0 D
  1360. 0 3780 D
  1361. -3780 0 D
  1362. P
  1363. PSL_clip N
  1364. 120 3660 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1365. 300 F0
  1366. (CM) tl Z
  1367. PSL_cliprestore
  1368. %%EndObject
  1369. 0 A
  1370. FQ
  1371. O0
  1372. 4016 0 TM
  1373. % PostScript produced by:
  1374. %@GMT: gmt psxy -Jx10c -R0.1/0.9/-0.1/0.7 -SV1c+e+h0+n1i -W0.5p,black -Gblack -O -K p.txt -Bx0 -Byg0.1 -X8.5c --PROJ_LENGTH_UNIT=inch
  1375. %@PROJ: xy 0.10000000 0.90000000 -0.10000000 0.70000000 0.100 0.900 -0.100 0.700 +xy
  1376. %%BeginObject PSL_Layer_11
  1377. 0 setlinecap
  1378. 0 setlinejoin
  1379. 3.32551 setmiterlimit
  1380. clipsave
  1381. 0 0 M
  1382. 3780 0 D
  1383. 0 3780 D
  1384. -3780 0 D
  1385. P
  1386. PSL_clip N
  1387. 8 W
  1388. V
  1389. {0 A} FS
  1390. O1
  1391. 8 W
  1392. V 472 472 T 90 R
  1393. N 0 0 M 1928 0 D S
  1394. U
  1395. V 472 2872 T 90 R
  1396. 0 0 M
  1397. -472 127 D
  1398. 0 -254 D
  1399. P clip fs P S
  1400. U
  1401. 8 W
  1402. 8 W
  1403. V 1417 472 T 90 R
  1404. N 0 0 M 728 0 D S
  1405. U
  1406. V 1417 1672 T 90 R
  1407. 0 0 M
  1408. -472 127 D
  1409. 0 -254 D
  1410. P clip fs P S
  1411. U
  1412. 8 W
  1413. 4 W
  1414. V 2362 472 T 90 R
  1415. N 0 0 M 364 0 D S
  1416. U
  1417. V 2362 1072 T 90 R
  1418. 0 0 M
  1419. -236 63 D
  1420. 0 -126 D
  1421. P clip fs P S
  1422. U
  1423. 8 W
  1424. 2 W
  1425. V 3307 472 T 90 R
  1426. N 0 0 M 182 0 D S
  1427. U
  1428. V 3307 772 T 90 R
  1429. 0 0 M
  1430. -118 32 D
  1431. 0 -64 D
  1432. P clip fs P S
  1433. U
  1434. U
  1435. PSL_cliprestore
  1436. 25 W
  1437. 4 W
  1438. 0 0 M
  1439. 3780 0 D
  1440. S
  1441. 0 472 M
  1442. 3780 0 D
  1443. S
  1444. 0 945 M
  1445. 3780 0 D
  1446. S
  1447. 0 1417 M
  1448. 3780 0 D
  1449. S
  1450. 0 1890 M
  1451. 3780 0 D
  1452. S
  1453. 0 2362 M
  1454. 3780 0 D
  1455. S
  1456. 0 2835 M
  1457. 3780 0 D
  1458. S
  1459. 0 3307 M
  1460. 3780 0 D
  1461. S
  1462. 0 3780 M
  1463. 3780 0 D
  1464. S
  1465. 2 setlinecap
  1466. 25 W
  1467. N 0 3780 M 0 -3780 D S
  1468. /PSL_A0_y 0 def
  1469. /PSL_A1_y 0 def
  1470. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1471. 3780 0 T
  1472. N 0 3780 M 0 -3780 D S
  1473. /PSL_A0_y 0 def
  1474. /PSL_A1_y 0 def
  1475. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1476. -3780 0 T
  1477. N 0 0 M 3780 0 D S
  1478. /PSL_A0_y 0 def
  1479. /PSL_A1_y 0 def
  1480. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1481. 0 3780 T
  1482. N 0 0 M 3780 0 D S
  1483. /PSL_A0_y 0 def
  1484. /PSL_A1_y 0 def
  1485. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1486. 0 -3780 T
  1487. 0 setlinecap
  1488. %%EndObject
  1489. 0 A
  1490. FQ
  1491. O0
  1492. 0 0 TM
  1493. % PostScript produced by:
  1494. %@GMT: gmt pstext -R0.1/0.9/-0.1/0.7 -Jx10c -O -F+f18p+cTL -Dj0.1i
  1495. %@PROJ: xy 0.10000000 0.90000000 -0.10000000 0.70000000 0.100 0.900 -0.100 0.700 +xy
  1496. %%BeginObject PSL_Layer_12
  1497. 0 setlinecap
  1498. 0 setlinejoin
  1499. 3.32551 setmiterlimit
  1500. clipsave
  1501. 0 0 M
  1502. 3780 0 D
  1503. 0 3780 D
  1504. -3780 0 D
  1505. P
  1506. PSL_clip N
  1507. 120 3660 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1508. 300 F0
  1509. (INCH) tl Z
  1510. PSL_cliprestore
  1511. %%EndObject
  1512. grestore
  1513. PSL_movie_completion /PSL_movie_completion {} def
  1514. %PSL_Begin_Trailer
  1515. %%PageTrailer
  1516. U
  1517. showpage
  1518. %%Trailer
  1519. end
  1520. %%EOF
Tip!

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

Comments

Loading...