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

timecpt.ps 45 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
  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_831abca_2019.06.27 [64-bit] Document from psxy
  5. %%Creator: GMT6
  6. %%For: unknown
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Thu Jun 27 12:16:23 2019
  9. %%LanguageLevel: 2
  10. %%DocumentData: Clean7Bit
  11. %%Orientation: Portrait
  12. %%Pages: 1
  13. %%EndComments
  14. %%BeginProlog
  15. 250 dict begin
  16. /! {bind def} bind def
  17. /# {load def}!
  18. /A /setgray #
  19. /B /setdash #
  20. /C /setrgbcolor #
  21. /D /rlineto #
  22. /E {dup stringwidth pop}!
  23. /F /fill #
  24. /G /rmoveto #
  25. /H /sethsbcolor #
  26. /I /setpattern #
  27. /K /setcmykcolor #
  28. /L /lineto #
  29. /M /moveto #
  30. /N /newpath #
  31. /P /closepath #
  32. /R /rotate #
  33. /S /stroke #
  34. /T /translate #
  35. /U /grestore #
  36. /V /gsave #
  37. /W /setlinewidth #
  38. /Y {findfont exch scalefont setfont}!
  39. /Z /show #
  40. /FP {true charpath flattenpath}!
  41. /MU {matrix setmatrix}!
  42. /MS {/SMat matrix currentmatrix def}!
  43. /MR {SMat setmatrix}!
  44. /edef {exch def}!
  45. /FS {/fc edef /fs {V fc F U} def}!
  46. /FQ {/fs {} def}!
  47. /O0 {/os {N} def}!
  48. /O1 {/os {P S} def}!
  49. /FO {fs os}!
  50. /Sa {M MS dup 0 exch G 0.726542528 mul -72 R dup 0 D 4 {72 R dup 0 D -144 R dup 0 D} repeat pop MR FO}!
  51. /Sb {M dup 0 D exch 0 exch D neg 0 D FO}!
  52. /SB {MS T /BoxR edef /BoxW edef /BoxH edef BoxR 0 M
  53. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct MR FO}!
  54. /Sc {N 3 -1 roll 0 360 arc FO}!
  55. /Sd {M 4 {dup} repeat 0 G neg dup dup D exch D D FO}!
  56. /Se {N MS T R scale 0 0 1 0 360 arc MR FO}!
  57. /Sg {M MS 22.5 R dup 0 exch G -22.5 R 0.765366865 mul dup 0 D 6 {-45 R dup 0 D} repeat pop MR FO}!
  58. /Sh {M MS dup 0 G -120 R dup 0 D 4 {-60 R dup 0 D} repeat pop MR FO}!
  59. /Si {M MS dup neg 0 exch G 60 R 1.732050808 mul dup 0 D 120 R 0 D MR FO}!
  60. /Sj {M MS R dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D MR FO}!
  61. /Sn {M MS dup 0 exch G -36 R 1.175570505 mul dup 0 D 3 {-72 R dup 0 D} repeat pop MR FO}!
  62. /Sp {N 3 -1 roll 0 360 arc fs N}!
  63. /SP {M {D} repeat FO}!
  64. /Sr {M dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D FO}!
  65. /SR {MS T /BoxR edef /BoxW edef /BoxH edef BoxR BoxW -2 div BoxH -2 div T BoxR 0 M
  66. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct MR FO}!
  67. /Ss {M 1.414213562 mul dup dup dup -2 div dup G 0 D 0 exch D neg 0 D FO}!
  68. /St {M MS dup 0 exch G -60 R 1.732050808 mul dup 0 D -120 R 0 D MR FO}!
  69. /SV {0 exch M 0 D D D D D 0 D FO}!
  70. /Sv {0 0 M D D 0 D D D D D 0 D D FO}!
  71. /Sw {2 copy M 5 2 roll arc FO}!
  72. /Sx {M 1.414213562 mul 5 {dup} repeat -2 div dup G D neg 0 G neg D S}!
  73. /Sy {M dup 0 exch G dup -2 mul dup 0 exch D S}!
  74. /S+ {M dup 0 G dup -2 mul dup 0 D exch dup G 0 exch D S}!
  75. /S- {M dup 0 G dup -2 mul dup 0 D S}!
  76. /sw {stringwidth pop}!
  77. /sh {V MU 0 0 M FP pathbbox N 4 1 roll pop pop pop U}!
  78. /sd {V MU 0 0 M FP pathbbox N pop pop exch pop U}!
  79. /sH {V MU 0 0 M FP pathbbox N exch pop exch sub exch pop U}!
  80. /sb {E exch sh}!
  81. /bl {}!
  82. /bc {E -2 div 0 G}!
  83. /br {E neg 0 G}!
  84. /ml {dup 0 exch sh -2 div G}!
  85. /mc {dup E -2 div exch sh -2 div G}!
  86. /mr {dup E neg exch sh -2 div G}!
  87. /tl {dup 0 exch sh neg G}!
  88. /tc {dup E -2 div exch sh neg G}!
  89. /tr {dup E neg exch sh neg G}!
  90. /mx {2 copy lt {exch} if pop}!
  91. /PSL_xorig 0 def /PSL_yorig 0 def
  92. /TM {2 copy T PSL_yorig add /PSL_yorig edef PSL_xorig add /PSL_xorig edef}!
  93. /PSL_reencode {findfont dup length dict begin
  94. {1 index /FID ne {def}{pop pop} ifelse} forall
  95. exch /Encoding edef currentdict end definefont pop
  96. }!
  97. /PSL_eps_begin {
  98. /PSL_eps_state save def
  99. /PSL_dict_count countdictstack def
  100. /PSL_op_count count 1 sub def
  101. userdict begin
  102. /showpage {} def
  103. 0 setgray 0 setlinecap 1 setlinewidth
  104. 0 setlinejoin 10 setmiterlimit [] 0 setdash newpath
  105. /languagelevel where
  106. {pop languagelevel 1 ne {false setstrokeadjust false setoverprint} if} if
  107. }!
  108. /PSL_eps_end {
  109. count PSL_op_count sub {pop} repeat
  110. countdictstack PSL_dict_count sub {end} repeat
  111. PSL_eps_state restore
  112. }!
  113. /PSL_transp {
  114. /.setopacityalpha where {pop .setblendmode .setopacityalpha}{
  115. /pdfmark where {pop [ /BM exch /CA exch dup /ca exch /SetTransparency pdfmark}
  116. {pop pop} ifelse} ifelse
  117. }!
  118. /Standard+_Encoding [
  119. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  120. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  121. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  122. /.notdef /threequarters /threesuperior /trademark /twosuperior /yacute /ydieresis /zcaron
  123. /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
  124. /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash
  125. /zero /one /two /three /four /five /six /seven
  126. /eight /nine /colon /semicolon /less /equal /greater /question
  127. /at /A /B /C /D /E /F /G
  128. /H /I /J /K /L /M /N /O
  129. /P /Q /R /S /T /U /V /W
  130. /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
  131. /quoteleft /a /b /c /d /e /f /g
  132. /h /i /j /k /l /m /n /o
  133. /p /q /r /s /t /u /v /w
  134. /x /y /z /braceleft /bar /braceright /asciitilde /florin
  135. /Atilde /Ccedilla /Eth /Lslash /Ntilde /Otilde /Scaron /Thorn
  136. /Yacute /Ydieresis /Zcaron /atilde /brokenbar /ccedilla /copyright /degree
  137. /divide /eth /logicalnot /lslash /minus /mu /multiply /ntilde
  138. /onehalf /onequarter /onesuperior /otilde /plusminus /registered /scaron /thorn
  139. /.notdef /exclamdown /cent /sterling /fraction /yen /florin /section
  140. /currency /quotesingle /quotedblleft /guillemotleft /guilsinglleft /guilsinglright /fi /fl
  141. /Aacute /endash /dagger /daggerdbl /periodcentered /Acircumflex /paragraph /bullet
  142. /quotesinglbase /quotedblbase /quotedblright /guillemotright /ellipsis /perthousand /Adieresis /questiondown
  143. /Agrave /grave /acute /circumflex /tilde /macron /breve /dotaccent
  144. /dieresis /Eacute /ring /cedilla /Ecircumflex /hungarumlaut /ogonek /caron
  145. /emdash /Edieresis /Egrave /Iacute /Icircumflex /Idieresis /Igrave /Oacute
  146. /Ocircumflex /Odieresis /Ograve /Uacute /Ucircumflex /Udieresis /Ugrave /aacute
  147. /acircumflex /AE /adieresis /ordfeminine /agrave /eacute /ecircumflex /edieresis
  148. /egrave /Oslash /OE /ordmasculine /iacute /icircumflex /idieresis /igrave
  149. /oacute /ae /ocircumflex /odieresis /ograve /dotlessi /uacute /ucircumflex
  150. /udieresis /oslash /oe /germandbls /ugrave /Aring /aring /ydieresis
  151. ] def
  152. /PSL_font_encode 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 array astore def
  153. /F0 {/Helvetica Y}!
  154. /F1 {/Helvetica-Bold Y}!
  155. /F2 {/Helvetica-Oblique Y}!
  156. /F3 {/Helvetica-BoldOblique Y}!
  157. /F4 {/Times-Roman Y}!
  158. /F5 {/Times-Bold Y}!
  159. /F6 {/Times-Italic Y}!
  160. /F7 {/Times-BoldItalic Y}!
  161. /F8 {/Courier Y}!
  162. /F9 {/Courier-Bold Y}!
  163. /F10 {/Courier-Oblique Y}!
  164. /F11 {/Courier-BoldOblique Y}!
  165. /F12 {/Symbol Y}!
  166. /F13 {/AvantGarde-Book Y}!
  167. /F14 {/AvantGarde-BookOblique Y}!
  168. /F15 {/AvantGarde-Demi Y}!
  169. /F16 {/AvantGarde-DemiOblique Y}!
  170. /F17 {/Bookman-Demi Y}!
  171. /F18 {/Bookman-DemiItalic Y}!
  172. /F19 {/Bookman-Light Y}!
  173. /F20 {/Bookman-LightItalic Y}!
  174. /F21 {/Helvetica-Narrow Y}!
  175. /F22 {/Helvetica-Narrow-Bold Y}!
  176. /F23 {/Helvetica-Narrow-Oblique Y}!
  177. /F24 {/Helvetica-Narrow-BoldOblique Y}!
  178. /F25 {/NewCenturySchlbk-Roman Y}!
  179. /F26 {/NewCenturySchlbk-Italic Y}!
  180. /F27 {/NewCenturySchlbk-Bold Y}!
  181. /F28 {/NewCenturySchlbk-BoldItalic Y}!
  182. /F29 {/Palatino-Roman Y}!
  183. /F30 {/Palatino-Italic Y}!
  184. /F31 {/Palatino-Bold Y}!
  185. /F32 {/Palatino-BoldItalic Y}!
  186. /F33 {/ZapfChancery-MediumItalic Y}!
  187. /F34 {/ZapfDingbats Y}!
  188. /F35 {/Ryumin-Light-EUC-H Y}!
  189. /F36 {/Ryumin-Light-EUC-V Y}!
  190. /F37 {/GothicBBB-Medium-EUC-H Y}!
  191. /F38 {/GothicBBB-Medium-EUC-V Y}!
  192. /PSL_pathtextdict 26 dict def
  193. /PSL_pathtext
  194. {PSL_pathtextdict begin
  195. /ydepth exch def
  196. /textheight exch def
  197. /just exch def
  198. /offset exch def
  199. /str exch def
  200. /pathdist 0 def
  201. /setdist offset def
  202. /charcount 0 def
  203. /justy just 4 idiv textheight mul 2 div neg ydepth sub def
  204. V flattenpath
  205. {movetoproc} {linetoproc}
  206. {curvetoproc} {closepathproc}
  207. pathforall
  208. U N
  209. end
  210. } def
  211. PSL_pathtextdict begin
  212. /movetoproc
  213. { /newy exch def /newx exch def
  214. /firstx newx def /firsty newy def
  215. /ovr 0 def
  216. newx newy transform
  217. /cpy exch def /cpx exch def
  218. } def
  219. /linetoproc
  220. { /oldx newx def /oldy newy def
  221. /newy exch def /newx exch def
  222. /dx newx oldx sub def
  223. /dy newy oldy sub def
  224. /dist dx dup mul dy dup mul add sqrt def
  225. dist 0 ne
  226. { /dsx dx dist div ovr mul def
  227. /dsy dy dist div ovr mul def
  228. oldx dsx add oldy dsy add transform
  229. /cpy exch def /cpx exch def
  230. /pathdist pathdist dist add def
  231. {setdist pathdist le
  232. {charcount str length lt
  233. {setchar} {exit} ifelse}
  234. { /ovr setdist pathdist sub def
  235. exit}
  236. ifelse
  237. } loop
  238. } if
  239. } def
  240. /curvetoproc
  241. { (ERROR: No curveto's after flattenpath!)
  242. print
  243. } def
  244. /closepathproc
  245. {firstx firsty linetoproc
  246. firstx firsty movetoproc
  247. } def
  248. /setchar
  249. { /char str charcount 1 getinterval def
  250. /charcount charcount 1 add def
  251. /charwidth char stringwidth pop def
  252. V cpx cpy itransform T
  253. dy dx atan R
  254. 0 justy M
  255. char show
  256. 0 justy neg G
  257. currentpoint transform
  258. /cpy exch def /cpx exch def
  259. U /setdist setdist charwidth add def
  260. } def
  261. end
  262. /PSL_set_label_heights
  263. {
  264. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  265. /PSL_heights PSL_n_labels array def
  266. 0 1 PSL_n_labels_minus_1
  267. { /psl_k exch def
  268. /psl_label PSL_label_str psl_k get def
  269. PSL_label_font psl_k get cvx exec
  270. psl_label sH /PSL_height edef
  271. PSL_heights psl_k PSL_height put
  272. } for
  273. } def
  274. /PSL_curved_path_labels
  275. { /psl_bits exch def
  276. /PSL_placetext psl_bits 2 and 2 eq def
  277. /PSL_clippath psl_bits 4 and 4 eq def
  278. /PSL_strokeline false def
  279. /PSL_fillbox psl_bits 128 and 128 eq def
  280. /PSL_drawbox psl_bits 256 and 256 eq def
  281. /PSL_n_paths1 PSL_n_paths 1 sub def
  282. /PSL_usebox PSL_fillbox PSL_drawbox or def
  283. PSL_clippath {clipsave N clippath} if
  284. /psl_k 0 def
  285. /psl_p 0 def
  286. 0 1 PSL_n_paths1
  287. { /psl_kk exch def
  288. /PSL_n PSL_path_n psl_kk get def
  289. /PSL_m PSL_label_n psl_kk get def
  290. /PSL_x PSL_path_x psl_k PSL_n getinterval def
  291. /PSL_y PSL_path_y psl_k PSL_n getinterval def
  292. /PSL_node_tmp PSL_label_node psl_p PSL_m getinterval def
  293. /PSL_angle_tmp PSL_label_angle psl_p PSL_m getinterval def
  294. /PSL_str_tmp PSL_label_str psl_p PSL_m getinterval def
  295. /PSL_fnt_tmp PSL_label_font psl_p PSL_m getinterval def
  296. PSL_curved_path_label
  297. /psl_k psl_k PSL_n add def
  298. /psl_p psl_p PSL_m add def
  299. } for
  300. PSL_clippath {PSL_eoclip} if N
  301. } def
  302. /PSL_curved_path_label
  303. {
  304. /PSL_n1 PSL_n 1 sub def
  305. /PSL_m1 PSL_m 1 sub def
  306. PSL_CT_calcstringwidth
  307. PSL_CT_calclinedist
  308. PSL_CT_excludelabels
  309. PSL_CT_addcutpoints
  310. /PSL_nn1 PSL_nn 1 sub def
  311. /n 0 def
  312. /k 0 def
  313. /j 0 def
  314. /PSL_seg 0 def
  315. /PSL_xp PSL_nn array def
  316. /PSL_yp PSL_nn array def
  317. PSL_xp 0 PSL_xx 0 get put
  318. PSL_yp 0 PSL_yy 0 get put
  319. 1 1 PSL_nn1
  320. { /i exch def
  321. /node_type PSL_kind i get def
  322. /j j 1 add def
  323. PSL_xp j PSL_xx i get put
  324. PSL_yp j PSL_yy i get put
  325. node_type 1 eq
  326. {n 0 eq
  327. {PSL_CT_drawline}
  328. { PSL_CT_reversepath
  329. PSL_CT_textline} ifelse
  330. /j 0 def
  331. PSL_xp j PSL_xx i get put
  332. PSL_yp j PSL_yy i get put
  333. } if
  334. } for
  335. n 0 eq {PSL_CT_drawline} if
  336. } def
  337. /PSL_CT_textline
  338. { PSL_fnt k get cvx exec
  339. /PSL_height PSL_heights k get def
  340. PSL_placetext {PSL_CT_placelabel} if
  341. PSL_clippath {PSL_CT_clippath} if
  342. /n 0 def /k k 1 add def
  343. } def
  344. /PSL_CT_calcstringwidth
  345. { /PSL_width_tmp PSL_m array def
  346. 0 1 PSL_m1
  347. { /i exch def
  348. PSL_fnt_tmp i get cvx exec
  349. PSL_width_tmp i PSL_str_tmp i get stringwidth pop put
  350. } for
  351. } def
  352. /PSL_CT_calclinedist
  353. { /PSL_newx PSL_x 0 get def
  354. /PSL_newy PSL_y 0 get def
  355. /dist 0.0 def
  356. /PSL_dist PSL_n array def
  357. PSL_dist 0 0.0 put
  358. 1 1 PSL_n1
  359. { /i exch def
  360. /PSL_oldx PSL_newx def
  361. /PSL_oldy PSL_newy def
  362. /PSL_newx PSL_x i get def
  363. /PSL_newy PSL_y i get def
  364. /dx PSL_newx PSL_oldx sub def
  365. /dy PSL_newy PSL_oldy sub def
  366. /dist dist dx dx mul dy dy mul add sqrt add def
  367. PSL_dist i dist put
  368. } for
  369. } def
  370. /PSL_CT_excludelabels
  371. { /k 0 def
  372. /PSL_width PSL_m array def
  373. /PSL_angle PSL_m array def
  374. /PSL_node PSL_m array def
  375. /PSL_str PSL_m array def
  376. /PSL_fnt PSL_m array def
  377. /lastdist PSL_dist PSL_n1 get def
  378. 0 1 PSL_m1
  379. { /i exch def
  380. /dist PSL_dist PSL_node_tmp i get get def
  381. /halfwidth PSL_width_tmp i get 2 div PSL_gap_x add def
  382. /L_dist dist halfwidth sub def
  383. /R_dist dist halfwidth add def
  384. L_dist 0 gt R_dist lastdist lt and
  385. {
  386. PSL_width k PSL_width_tmp i get put
  387. PSL_node k PSL_node_tmp i get put
  388. PSL_angle k PSL_angle_tmp i get put
  389. PSL_str k PSL_str_tmp i get put
  390. PSL_fnt k PSL_fnt_tmp i get put
  391. /k k 1 add def
  392. } if
  393. } for
  394. /PSL_m k def
  395. /PSL_m1 PSL_m 1 sub def
  396. } def
  397. /PSL_CT_addcutpoints
  398. { /k 0 def
  399. /PSL_nc PSL_m 2 mul 1 add def
  400. /PSL_cuts PSL_nc array def
  401. /PSL_nc1 PSL_nc 1 sub def
  402. 0 1 PSL_m1
  403. { /i exch def
  404. /dist PSL_dist PSL_node i get get def
  405. /halfwidth PSL_width i get 2 div PSL_gap_x add def
  406. PSL_cuts k dist halfwidth sub put
  407. /k k 1 add def
  408. PSL_cuts k dist halfwidth add put
  409. /k k 1 add def
  410. } for
  411. PSL_cuts k 100000.0 put
  412. /PSL_nn PSL_n PSL_m 2 mul add def
  413. /PSL_xx PSL_nn array def
  414. /PSL_yy PSL_nn array def
  415. /PSL_kind PSL_nn array def
  416. /j 0 def
  417. /k 0 def
  418. /dist 0.0 def
  419. 0 1 PSL_n1
  420. { /i exch def
  421. /last_dist dist def
  422. /dist PSL_dist i get def
  423. k 1 PSL_nc1
  424. { /kk exch def
  425. /this_cut PSL_cuts kk get def
  426. dist this_cut gt
  427. { /ds dist last_dist sub def
  428. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
  429. /i1 i 0 eq {0} {i 1 sub} ifelse def
  430. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
  431. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  432. PSL_kind j 1 put
  433. /j j 1 add def
  434. /k k 1 add def
  435. } if
  436. } for
  437. dist PSL_cuts k get le
  438. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  439. PSL_kind j 0 put
  440. /j j 1 add def
  441. } if
  442. } for
  443. } def
  444. /PSL_CT_reversepath
  445. {PSL_xp j get PSL_xp 0 get lt
  446. {0 1 j 2 idiv
  447. { /left exch def
  448. /right j left sub def
  449. /tmp PSL_xp left get def
  450. PSL_xp left PSL_xp right get put
  451. PSL_xp right tmp put
  452. /tmp PSL_yp left get def
  453. PSL_yp left PSL_yp right get put
  454. PSL_yp right tmp put
  455. } for
  456. } if
  457. } def
  458. /PSL_CT_placelabel
  459. {
  460. /PSL_just PSL_label_justify k get def
  461. /PSL_height PSL_heights k get def
  462. /psl_label PSL_str k get def
  463. /psl_depth psl_label sd def
  464. PSL_usebox
  465. {PSL_CT_clippath
  466. PSL_fillbox
  467. {V PSL_setboxrgb fill U} if
  468. PSL_drawbox
  469. {V PSL_setboxpen S U} if N
  470. } if
  471. PSL_CT_placeline psl_label PSL_gap_x PSL_just PSL_height psl_depth PSL_pathtext
  472. } def
  473. /PSL_CT_clippath
  474. {
  475. /H PSL_height 2 div PSL_gap_y add def
  476. /xoff j 1 add array def
  477. /yoff j 1 add array def
  478. /angle 0 def
  479. 0 1 j {
  480. /ii exch def
  481. /x PSL_xp ii get def
  482. /y PSL_yp ii get def
  483. ii 0 eq {
  484. /x1 PSL_xp 1 get def
  485. /y1 PSL_yp 1 get def
  486. /dx x1 x sub def
  487. /dy y1 y sub def
  488. }
  489. { /i1 ii 1 sub def
  490. /x1 PSL_xp i1 get def
  491. /y1 PSL_yp i1 get def
  492. /dx x x1 sub def
  493. /dy y y1 sub def
  494. } ifelse
  495. dx 0.0 eq dy 0.0 eq and not
  496. { /angle dy dx atan 90 add def} if
  497. /sina angle sin def
  498. /cosa angle cos def
  499. xoff ii H cosa mul put
  500. yoff ii H sina mul put
  501. } for
  502. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  503. 1 1 j {
  504. /ii exch def
  505. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  506. } for
  507. j -1 0 {
  508. /ii exch def
  509. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  510. } for P
  511. } def
  512. /PSL_CT_drawline
  513. {
  514. /str 20 string def
  515. PSL_strokeline
  516. {PSL_CT_placeline S} if
  517. /PSL_seg PSL_seg 1 add def
  518. /n 1 def
  519. } def
  520. /PSL_CT_placeline
  521. {PSL_xp 0 get PSL_yp 0 get M
  522. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
  523. } def
  524. /PSL_draw_path_lines
  525. {
  526. /PSL_n_paths1 PSL_n_paths 1 sub def
  527. V
  528. /psl_start 0 def
  529. 0 1 PSL_n_paths1
  530. { /psl_k exch def
  531. /PSL_n PSL_path_n psl_k get def
  532. /PSL_n1 PSL_n 1 sub def
  533. PSL_path_pen psl_k get cvx exec
  534. N
  535. PSL_path_x psl_start get PSL_path_y psl_start get M
  536. 1 1 PSL_n1
  537. { /psl_i exch def
  538. /psl_kk psl_i psl_start add def
  539. PSL_path_x psl_kk get PSL_path_y psl_kk get L
  540. } for
  541. /psl_xclose PSL_path_x psl_kk get PSL_path_x psl_start get sub def
  542. /psl_yclose PSL_path_y psl_kk get PSL_path_y psl_start get sub def
  543. psl_xclose 0 eq psl_yclose 0 eq and { P } if
  544. S
  545. /psl_start psl_start PSL_n add def
  546. } for
  547. U
  548. } def
  549. /PSL_straight_path_labels
  550. {
  551. /psl_bits exch def
  552. /PSL_placetext psl_bits 2 and 2 eq def
  553. /PSL_rounded psl_bits 32 and 32 eq def
  554. /PSL_fillbox psl_bits 128 and 128 eq def
  555. /PSL_drawbox psl_bits 256 and 256 eq def
  556. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  557. /PSL_usebox PSL_fillbox PSL_drawbox or def
  558. 0 1 PSL_n_labels_minus_1
  559. { /psl_k exch def
  560. PSL_ST_prepare_text
  561. PSL_usebox
  562. { PSL_rounded
  563. {PSL_ST_textbox_round}
  564. {PSL_ST_textbox_rect}
  565. ifelse
  566. PSL_fillbox {V PSL_setboxrgb fill U} if
  567. PSL_drawbox {V PSL_setboxpen S U} if
  568. N
  569. } if
  570. PSL_placetext {PSL_ST_place_label} if
  571. } for
  572. } def
  573. /PSL_straight_path_clip
  574. {
  575. /psl_bits exch def
  576. /PSL_rounded psl_bits 32 and 32 eq def
  577. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  578. N clipsave clippath
  579. 0 1 PSL_n_labels_minus_1
  580. { /psl_k exch def
  581. PSL_ST_prepare_text
  582. PSL_rounded
  583. {PSL_ST_textbox_round}
  584. {PSL_ST_textbox_rect}
  585. ifelse
  586. } for
  587. PSL_eoclip N
  588. } def
  589. /PSL_ST_prepare_text
  590. {
  591. /psl_xp PSL_txt_x psl_k get def
  592. /psl_yp PSL_txt_y psl_k get def
  593. /psl_label PSL_label_str psl_k get def
  594. PSL_label_font psl_k get cvx exec
  595. /PSL_height PSL_heights psl_k get def
  596. /psl_boxH PSL_height PSL_gap_y 2 mul add def
  597. /PSL_just PSL_label_justify psl_k get def
  598. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
  599. /PSL_justy PSL_just 4 idiv 2 div neg def
  600. /psl_SW psl_label stringwidth pop def
  601. /psl_boxW psl_SW PSL_gap_x 2 mul add def
  602. /psl_x0 psl_SW PSL_justx mul def
  603. /psl_y0 PSL_justy PSL_height mul def
  604. /psl_angle PSL_label_angle psl_k get def
  605. } def
  606. /PSL_ST_textbox_rect
  607. {
  608. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  609. PSL_gap_x neg PSL_gap_y neg M
  610. 0 psl_boxH D psl_boxW 0 D 0 psl_boxH neg D P
  611. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  612. } def
  613. /PSL_ST_textbox_round
  614. {
  615. /psl_BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
  616. /psl_xd PSL_gap_x psl_BoxR sub def
  617. /psl_yd PSL_gap_y psl_BoxR sub def
  618. /psl_xL PSL_gap_x neg def
  619. /psl_yB PSL_gap_y neg def
  620. /psl_yT psl_boxH psl_yB add def
  621. /psl_H2 PSL_height psl_yd 2 mul add def
  622. /psl_W2 psl_SW psl_xd 2 mul add def
  623. /psl_xR psl_xL psl_boxW add def
  624. /psl_x0 psl_SW PSL_justx mul def
  625. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  626. psl_xL psl_yd M
  627. psl_xL psl_yT psl_xR psl_yT psl_BoxR arct psl_W2 0 D
  628. psl_xR psl_yT psl_xR psl_yB psl_BoxR arct 0 psl_H2 neg D
  629. psl_xR psl_yB psl_xL psl_yB psl_BoxR arct psl_W2 neg 0 D
  630. psl_xL psl_yB psl_xL psl_yd psl_BoxR arct P
  631. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  632. } def
  633. /PSL_ST_place_label
  634. {
  635. V psl_xp psl_yp T psl_angle R
  636. psl_SW PSL_justx mul psl_y0 M
  637. psl_label dup sd neg 0 exch G show
  638. U
  639. } def
  640. /PSL_nclip 0 def
  641. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
  642. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
  643. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
  644. %%EndProlog
  645. %%BeginSetup
  646. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  647. PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  648. %%EndSetup
  649. %%Page: 1 1
  650. %%BeginPageSetup
  651. V 0.06 0.06 scale
  652. %%EndPageSetup
  653. /PSL_page_xsize 10200 def
  654. /PSL_page_ysize 13200 def
  655. /PSL_completion {} def
  656. /PSL_movie_completion {} def
  657. %PSL_End_Header
  658. gsave
  659. 0 A
  660. FQ
  661. O0
  662. -3600 PSL_xorig sub PSL_page_xsize 2 div add 1800 TM
  663. % PostScript produced by:
  664. %@GMT: gmt psxy -R2017-01-01T/2018-01-01T/10000/40000 @HI_arrivals_2017.txt -JX6iT/3.5i -Ct.cpt -i0,1,0 -Sc0.1c -BWsNe -P -Bxa1Og1o -Byafg -K -Xc -Y1.5i
  665. %@PROJ: xy 1483228800.00000000 1514764800.00000000 10000.00000000 40000.00000000 1483228800.000 1514764800.000 10000.000 40000.000 +xy
  666. %GMTBoundingBox: -216 108 432 252
  667. %%BeginObject PSL_Layer_1
  668. 0 setlinecap
  669. 0 setlinejoin
  670. 3.32551 setmiterlimit
  671. 25 W
  672. 4 W
  673. N 0 0 M 0 4200 D S
  674. N 612 0 M 0 4200 D S
  675. N 1164 0 M 0 4200 D S
  676. N 1775 0 M 0 4200 D S
  677. N 2367 0 M 0 4200 D S
  678. N 2979 0 M 0 4200 D S
  679. N 3570 0 M 0 4200 D S
  680. N 4182 0 M 0 4200 D S
  681. N 4793 0 M 0 4200 D S
  682. N 5385 0 M 0 4200 D S
  683. N 5997 0 M 0 4200 D S
  684. N 6588 0 M 0 4200 D S
  685. N 7200 0 M 0 4200 D S
  686. 0 0 M
  687. 7200 0 D
  688. S
  689. 0 1400 M
  690. 7200 0 D
  691. S
  692. 0 2800 M
  693. 7200 0 D
  694. S
  695. 0 4200 M
  696. 7200 0 D
  697. S
  698. 2 setlinecap
  699. 25 W
  700. N 0 4200 M 0 -4200 D S
  701. /PSL_A0_y 83 def
  702. /PSL_A1_y 0 def
  703. 8 W
  704. N 0 0 M -83 0 D S
  705. N 0 1400 M -83 0 D S
  706. N 0 2800 M -83 0 D S
  707. N 0 4200 M -83 0 D S
  708. /PSL_AH0 0
  709. /MM {neg exch M} def
  710. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  711. 200 F0
  712. (10000) sw mx
  713. (20000) sw mx
  714. (30000) sw mx
  715. (40000) sw mx
  716. def
  717. /PSL_A0_y PSL_A0_y 83 add def
  718. 0 PSL_A0_y MM
  719. (10000) mr Z
  720. 1400 PSL_A0_y MM
  721. (20000) mr Z
  722. 2800 PSL_A0_y MM
  723. (30000) mr Z
  724. 4200 PSL_A0_y MM
  725. (40000) mr Z
  726. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  727. N 0 280 M -42 0 D S
  728. N 0 560 M -42 0 D S
  729. N 0 840 M -42 0 D S
  730. N 0 1120 M -42 0 D S
  731. N 0 1680 M -42 0 D S
  732. N 0 1960 M -42 0 D S
  733. N 0 2240 M -42 0 D S
  734. N 0 2520 M -42 0 D S
  735. N 0 3080 M -42 0 D S
  736. N 0 3360 M -42 0 D S
  737. N 0 3640 M -42 0 D S
  738. N 0 3920 M -42 0 D S
  739. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  740. 7200 0 T
  741. 25 W
  742. N 0 4200 M 0 -4200 D S
  743. /PSL_A0_y 83 def
  744. /PSL_A1_y 0 def
  745. 8 W
  746. N 0 0 M 83 0 D S
  747. N 0 1400 M 83 0 D S
  748. N 0 2800 M 83 0 D S
  749. N 0 4200 M 83 0 D S
  750. N 0 280 M 42 0 D S
  751. N 0 560 M 42 0 D S
  752. N 0 840 M 42 0 D S
  753. N 0 1120 M 42 0 D S
  754. N 0 1680 M 42 0 D S
  755. N 0 1960 M 42 0 D S
  756. N 0 2240 M 42 0 D S
  757. N 0 2520 M 42 0 D S
  758. N 0 3080 M 42 0 D S
  759. N 0 3360 M 42 0 D S
  760. N 0 3640 M 42 0 D S
  761. N 0 3920 M 42 0 D S
  762. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  763. -7200 0 T
  764. 25 W
  765. N 0 0 M 7200 0 D S
  766. /PSL_A0_y 83 def
  767. /PSL_A1_y 0 def
  768. 8 W
  769. N 0 0 M 0 -83 D S
  770. N 612 0 M 0 -83 D S
  771. N 1164 0 M 0 -83 D S
  772. N 1775 0 M 0 -83 D S
  773. N 2367 0 M 0 -83 D S
  774. N 2979 0 M 0 -83 D S
  775. N 3570 0 M 0 -83 D S
  776. N 4182 0 M 0 -83 D S
  777. N 4793 0 M 0 -83 D S
  778. N 5385 0 M 0 -83 D S
  779. N 5997 0 M 0 -83 D S
  780. N 6588 0 M 0 -83 D S
  781. N 7200 0 M 0 -83 D S
  782. N 0 0 M 0 -42 D S
  783. N 612 0 M 0 -42 D S
  784. N 1164 0 M 0 -42 D S
  785. N 1775 0 M 0 -42 D S
  786. N 2367 0 M 0 -42 D S
  787. N 2979 0 M 0 -42 D S
  788. N 3570 0 M 0 -42 D S
  789. N 4182 0 M 0 -42 D S
  790. N 4793 0 M 0 -42 D S
  791. N 5385 0 M 0 -42 D S
  792. N 5997 0 M 0 -42 D S
  793. N 6588 0 M 0 -42 D S
  794. N 7200 0 M 0 -42 D S
  795. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  796. 0 4200 T
  797. 25 W
  798. N 0 0 M 7200 0 D S
  799. /PSL_A0_y 83 def
  800. /PSL_A1_y 0 def
  801. 8 W
  802. N 0 0 M 0 83 D S
  803. N 612 0 M 0 83 D S
  804. N 1164 0 M 0 83 D S
  805. N 1775 0 M 0 83 D S
  806. N 2367 0 M 0 83 D S
  807. N 2979 0 M 0 83 D S
  808. N 3570 0 M 0 83 D S
  809. N 4182 0 M 0 83 D S
  810. N 4793 0 M 0 83 D S
  811. N 5385 0 M 0 83 D S
  812. N 5997 0 M 0 83 D S
  813. N 6588 0 M 0 83 D S
  814. N 7200 0 M 0 83 D S
  815. /PSL_AH0 0
  816. /MM {M} def
  817. (JAN) sh mx
  818. (FEB) sh mx
  819. (MAR) sh mx
  820. (APR) sh mx
  821. (MAY) sh mx
  822. (JUN) sh mx
  823. (JUL) sh mx
  824. (AUG) sh mx
  825. (SEP) sh mx
  826. (OCT) sh mx
  827. (NOV) sh mx
  828. (DEC) sh mx
  829. def
  830. /PSL_A0_y PSL_A0_y 83 add def
  831. 306 PSL_A0_y MM
  832. (JAN) bc Z
  833. 888 PSL_A0_y MM
  834. (FEB) bc Z
  835. 1470 PSL_A0_y MM
  836. (MAR) bc Z
  837. 2071 PSL_A0_y MM
  838. (APR) bc Z
  839. 2673 PSL_A0_y MM
  840. (MAY) bc Z
  841. 3275 PSL_A0_y MM
  842. (JUN) bc Z
  843. 3876 PSL_A0_y MM
  844. (JUL) bc Z
  845. 4488 PSL_A0_y MM
  846. (AUG) bc Z
  847. 5089 PSL_A0_y MM
  848. (SEP) bc Z
  849. 5691 PSL_A0_y MM
  850. (OCT) bc Z
  851. 6293 PSL_A0_y MM
  852. (NOV) bc Z
  853. 6894 PSL_A0_y MM
  854. (DEC) bc Z
  855. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  856. N 0 0 M 0 42 D S
  857. N 612 0 M 0 42 D S
  858. N 1164 0 M 0 42 D S
  859. N 1775 0 M 0 42 D S
  860. N 2367 0 M 0 42 D S
  861. N 2979 0 M 0 42 D S
  862. N 3570 0 M 0 42 D S
  863. N 4182 0 M 0 42 D S
  864. N 4793 0 M 0 42 D S
  865. N 5385 0 M 0 42 D S
  866. N 5997 0 M 0 42 D S
  867. N 6588 0 M 0 42 D S
  868. N 7200 0 M 0 42 D S
  869. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  870. 0 -4200 T
  871. 0 setlinecap
  872. clipsave
  873. 0 0 M
  874. 7200 0 D
  875. 0 4200 D
  876. -7200 0 D
  877. P
  878. PSL_clip N
  879. 4 W
  880. V
  881. {0 0 0.669 C} FS
  882. 24 0 3088 Sc
  883. 24 20 3107 Sc
  884. 24 39 2844 Sc
  885. 24 59 2768 Sc
  886. 24 79 2749 Sc
  887. 24 99 2796 Sc
  888. 24 118 3009 Sc
  889. 24 138 2457 Sc
  890. 24 158 2305 Sc
  891. 24 178 1956 Sc
  892. 24 197 2277 Sc
  893. 24 217 2319 Sc
  894. 24 237 2593 Sc
  895. 24 256 2735 Sc
  896. 24 276 2302 Sc
  897. 24 296 1930 Sc
  898. 24 316 1685 Sc
  899. 24 335 1951 Sc
  900. 24 355 2136 Sc
  901. 24 375 2298 Sc
  902. 24 395 2668 Sc
  903. 24 414 2034 Sc
  904. 24 434 1653 Sc
  905. 24 454 1515 Sc
  906. 24 473 1906 Sc
  907. 24 493 2013 Sc
  908. 24 513 1916 Sc
  909. 24 533 2364 Sc
  910. 24 552 1810 Sc
  911. 24 572 1549 Sc
  912. 24 592 1617 Sc
  913. {0 0 0.993 C} FS
  914. 24 612 2165 Sc
  915. 24 631 2230 Sc
  916. 24 651 2232 Sc
  917. 24 671 2418 Sc
  918. 24 690 1886 Sc
  919. 24 710 1765 Sc
  920. 24 730 1656 Sc
  921. 24 750 2181 Sc
  922. 24 769 2144 Sc
  923. 24 789 2503 Sc
  924. 24 809 2704 Sc
  925. 24 828 2480 Sc
  926. 24 848 2034 Sc
  927. 24 868 1825 Sc
  928. 24 888 2467 Sc
  929. 24 907 2603 Sc
  930. 24 927 2353 Sc
  931. 24 947 3051 Sc
  932. 24 967 2755 Sc
  933. 24 986 2142 Sc
  934. 24 1006 2097 Sc
  935. 24 1026 2302 Sc
  936. 24 1045 2314 Sc
  937. 24 1065 2308 Sc
  938. 24 1085 2524 Sc
  939. 24 1105 2316 Sc
  940. 24 1124 1706 Sc
  941. 24 1144 1683 Sc
  942. {0 0.316 1 C} FS
  943. 24 1164 2338 Sc
  944. 24 1184 2428 Sc
  945. 24 1203 2381 Sc
  946. 24 1223 2592 Sc
  947. 24 1243 2342 Sc
  948. 24 1262 1881 Sc
  949. 24 1282 1738 Sc
  950. 24 1302 2322 Sc
  951. 24 1322 2615 Sc
  952. 24 1341 2806 Sc
  953. 24 1361 3100 Sc
  954. 24 1381 2867 Sc
  955. 24 1401 2172 Sc
  956. 24 1420 1841 Sc
  957. 24 1440 2337 Sc
  958. 24 1460 2438 Sc
  959. 24 1479 2656 Sc
  960. 24 1499 2829 Sc
  961. 24 1519 2702 Sc
  962. 24 1539 2273 Sc
  963. 24 1558 2159 Sc
  964. 24 1578 2497 Sc
  965. 24 1598 2836 Sc
  966. 24 1618 3027 Sc
  967. 24 1637 3406 Sc
  968. 24 1657 2948 Sc
  969. 24 1677 2607 Sc
  970. 24 1696 2337 Sc
  971. 24 1716 2398 Sc
  972. 24 1736 2629 Sc
  973. 24 1756 2714 Sc
  974. {0 0.651 1 C} FS
  975. 24 1775 3146 Sc
  976. 24 1795 2855 Sc
  977. 24 1815 2232 Sc
  978. 24 1835 1968 Sc
  979. 24 1854 2027 Sc
  980. 24 1874 2279 Sc
  981. 24 1894 2567 Sc
  982. 24 1913 3012 Sc
  983. 24 1933 2772 Sc
  984. 24 1953 2255 Sc
  985. 24 1973 1978 Sc
  986. 24 1992 2137 Sc
  987. 24 2012 2243 Sc
  988. 24 2032 2370 Sc
  989. 24 2052 2392 Sc
  990. 24 2071 2265 Sc
  991. 24 2091 1981 Sc
  992. 24 2111 1981 Sc
  993. 24 2130 2215 Sc
  994. 24 2150 2386 Sc
  995. 24 2170 2319 Sc
  996. 24 2190 2518 Sc
  997. 24 2209 2262 Sc
  998. 24 2229 1837 Sc
  999. 24 2249 1770 Sc
  1000. 24 2268 2041 Sc
  1001. 24 2288 2372 Sc
  1002. 24 2308 2349 Sc
  1003. 24 2328 2642 Sc
  1004. 24 2347 2412 Sc
  1005. {0 0.985 1 C} FS
  1006. 24 2367 2153 Sc
  1007. 24 2387 2206 Sc
  1008. 24 2407 2086 Sc
  1009. 24 2426 2282 Sc
  1010. 24 2446 2184 Sc
  1011. 24 2466 2372 Sc
  1012. 24 2485 2315 Sc
  1013. 24 2505 2002 Sc
  1014. 24 2525 1982 Sc
  1015. 24 2545 2145 Sc
  1016. 24 2564 2418 Sc
  1017. 24 2584 2432 Sc
  1018. 24 2604 2658 Sc
  1019. 24 2624 2570 Sc
  1020. 24 2643 2401 Sc
  1021. 24 2663 2188 Sc
  1022. 24 2683 2298 Sc
  1023. 24 2702 2403 Sc
  1024. 24 2722 2548 Sc
  1025. 24 2742 2902 Sc
  1026. 24 2762 2638 Sc
  1027. 24 2781 2459 Sc
  1028. 24 2801 2281 Sc
  1029. 24 2821 2577 Sc
  1030. 24 2841 2672 Sc
  1031. 24 2860 2628 Sc
  1032. 24 2880 2994 Sc
  1033. 24 2900 2681 Sc
  1034. 24 2919 2408 Sc
  1035. 24 2939 2222 Sc
  1036. 24 2959 2601 Sc
  1037. {0.319 1 0.681 C} FS
  1038. 24 2979 2781 Sc
  1039. 24 2998 2682 Sc
  1040. 24 3018 3025 Sc
  1041. 24 3038 3073 Sc
  1042. 24 3058 2692 Sc
  1043. 24 3077 2544 Sc
  1044. 24 3097 2646 Sc
  1045. 24 3117 2969 Sc
  1046. 24 3136 2963 Sc
  1047. 24 3156 3145 Sc
  1048. 24 3176 3254 Sc
  1049. 24 3196 2989 Sc
  1050. 24 3215 2851 Sc
  1051. 24 3235 2908 Sc
  1052. 24 3255 3071 Sc
  1053. 24 3275 3224 Sc
  1054. 24 3294 3384 Sc
  1055. 24 3314 3356 Sc
  1056. 24 3334 2986 Sc
  1057. 24 3353 3266 Sc
  1058. 24 3373 3024 Sc
  1059. 24 3393 3120 Sc
  1060. 24 3413 3253 Sc
  1061. 24 3432 3434 Sc
  1062. 24 3452 3176 Sc
  1063. 24 3472 2974 Sc
  1064. 24 3492 2903 Sc
  1065. 24 3511 3189 Sc
  1066. 24 3531 3226 Sc
  1067. 24 3551 3405 Sc
  1068. {0.653 1 0.347 C} FS
  1069. 24 3570 3650 Sc
  1070. 24 3590 3292 Sc
  1071. 24 3610 3009 Sc
  1072. 24 3630 2846 Sc
  1073. 24 3649 3053 Sc
  1074. 24 3669 3074 Sc
  1075. 24 3689 3098 Sc
  1076. 24 3708 3240 Sc
  1077. 24 3728 3164 Sc
  1078. 24 3748 3039 Sc
  1079. 24 3768 2834 Sc
  1080. 24 3787 3033 Sc
  1081. 24 3807 2950 Sc
  1082. 24 3827 3207 Sc
  1083. 24 3847 3356 Sc
  1084. 24 3866 3125 Sc
  1085. 24 3886 2857 Sc
  1086. 24 3906 2726 Sc
  1087. 24 3925 3025 Sc
  1088. 24 3945 3252 Sc
  1089. 24 3965 3203 Sc
  1090. 24 3985 3513 Sc
  1091. 24 4004 3230 Sc
  1092. 24 4024 3166 Sc
  1093. 24 4044 3035 Sc
  1094. 24 4064 3082 Sc
  1095. 24 4083 3144 Sc
  1096. 24 4103 3133 Sc
  1097. 24 4123 3466 Sc
  1098. 24 4142 3369 Sc
  1099. 24 4162 3164 Sc
  1100. {0.993 1 0.00685 C} FS
  1101. 24 4182 3158 Sc
  1102. 24 4202 3300 Sc
  1103. 24 4221 3239 Sc
  1104. 24 4241 3187 Sc
  1105. 24 4261 3450 Sc
  1106. 24 4281 3276 Sc
  1107. 24 4300 2996 Sc
  1108. 24 4320 2935 Sc
  1109. 24 4340 3021 Sc
  1110. 24 4359 3079 Sc
  1111. 24 4379 2832 Sc
  1112. 24 4399 3260 Sc
  1113. 24 4419 3010 Sc
  1114. 24 4438 2826 Sc
  1115. 24 4458 2696 Sc
  1116. 24 4478 2898 Sc
  1117. 24 4498 2854 Sc
  1118. 24 4517 2730 Sc
  1119. 24 4537 3130 Sc
  1120. 24 4557 2826 Sc
  1121. 24 4576 2749 Sc
  1122. 24 4596 2254 Sc
  1123. 24 4616 2337 Sc
  1124. 24 4636 2516 Sc
  1125. 24 4655 2293 Sc
  1126. 24 4675 2680 Sc
  1127. 24 4695 2330 Sc
  1128. 24 4715 1986 Sc
  1129. 24 4734 1549 Sc
  1130. 24 4754 2183 Sc
  1131. 24 4774 2594 Sc
  1132. {1 0.673 0 C} FS
  1133. 24 4793 2831 Sc
  1134. 24 4813 3006 Sc
  1135. 24 4833 2180 Sc
  1136. 24 4853 2244 Sc
  1137. 24 4872 1928 Sc
  1138. 24 4892 2067 Sc
  1139. 24 4912 2125 Sc
  1140. 24 4932 2084 Sc
  1141. 24 4951 2579 Sc
  1142. 24 4971 2371 Sc
  1143. 24 4991 2229 Sc
  1144. 24 5010 1768 Sc
  1145. 24 5030 2253 Sc
  1146. 24 5050 2322 Sc
  1147. 24 5070 2339 Sc
  1148. 24 5089 2741 Sc
  1149. 24 5109 2478 Sc
  1150. 24 5129 2329 Sc
  1151. 24 5148 1858 Sc
  1152. 24 5168 2189 Sc
  1153. 24 5188 2287 Sc
  1154. 24 5208 2128 Sc
  1155. 24 5227 2706 Sc
  1156. 24 5247 2489 Sc
  1157. 24 5267 2192 Sc
  1158. 24 5287 1753 Sc
  1159. 24 5306 2064 Sc
  1160. 24 5326 2402 Sc
  1161. 24 5346 2400 Sc
  1162. 24 5365 2982 Sc
  1163. {1 0.338 0 C} FS
  1164. 24 5385 2726 Sc
  1165. 24 5405 2434 Sc
  1166. 24 5425 2046 Sc
  1167. 24 5444 2288 Sc
  1168. 24 5464 2568 Sc
  1169. 24 5484 2639 Sc
  1170. 24 5504 2957 Sc
  1171. 24 5523 2691 Sc
  1172. 24 5543 2444 Sc
  1173. 24 5563 2170 Sc
  1174. 24 5582 2206 Sc
  1175. 24 5602 2714 Sc
  1176. 24 5622 2603 Sc
  1177. 24 5642 3133 Sc
  1178. 24 5661 2809 Sc
  1179. 24 5681 2598 Sc
  1180. 24 5701 2141 Sc
  1181. 24 5721 2398 Sc
  1182. 24 5740 2470 Sc
  1183. 24 5760 2592 Sc
  1184. 24 5780 3037 Sc
  1185. 24 5799 2528 Sc
  1186. 24 5819 2417 Sc
  1187. 24 5839 1835 Sc
  1188. 24 5859 2157 Sc
  1189. 24 5878 2396 Sc
  1190. 24 5898 2270 Sc
  1191. 24 5918 2570 Sc
  1192. 24 5938 2186 Sc
  1193. 24 5957 1924 Sc
  1194. 24 5977 1645 Sc
  1195. {1 0.00411 0 C} FS
  1196. 24 5997 2168 Sc
  1197. 24 6016 2586 Sc
  1198. 24 6036 2353 Sc
  1199. 24 6056 2934 Sc
  1200. 24 6076 2689 Sc
  1201. 24 6095 2346 Sc
  1202. 24 6115 1894 Sc
  1203. 24 6135 2248 Sc
  1204. 24 6155 2588 Sc
  1205. 24 6174 2562 Sc
  1206. 24 6194 2638 Sc
  1207. 24 6214 2581 Sc
  1208. 24 6233 2096 Sc
  1209. 24 6253 1912 Sc
  1210. 24 6273 2293 Sc
  1211. 24 6293 2548 Sc
  1212. 24 6312 2637 Sc
  1213. 24 6332 2958 Sc
  1214. 24 6352 2832 Sc
  1215. 24 6372 2611 Sc
  1216. 24 6391 2189 Sc
  1217. 24 6411 2611 Sc
  1218. 24 6431 2489 Sc
  1219. 24 6450 2324 Sc
  1220. 24 6470 2389 Sc
  1221. 24 6490 2448 Sc
  1222. 24 6510 2266 Sc
  1223. 24 6529 1879 Sc
  1224. 24 6549 1841 Sc
  1225. 24 6569 2336 Sc
  1226. {0.669 0 0 C} FS
  1227. 24 6588 2455 Sc
  1228. 24 6608 2483 Sc
  1229. 24 6628 2196 Sc
  1230. 24 6648 2097 Sc
  1231. 24 6667 1620 Sc
  1232. 24 6687 1964 Sc
  1233. 24 6707 2191 Sc
  1234. 24 6727 2521 Sc
  1235. 24 6746 2494 Sc
  1236. 24 6766 2276 Sc
  1237. 24 6786 2083 Sc
  1238. 24 6805 1948 Sc
  1239. 24 6825 2170 Sc
  1240. 24 6845 2457 Sc
  1241. 24 6865 2987 Sc
  1242. 24 6884 3129 Sc
  1243. 24 6904 3098 Sc
  1244. 24 6924 2785 Sc
  1245. 24 6944 2673 Sc
  1246. 24 6963 3285 Sc
  1247. 24 6983 3793 Sc
  1248. 24 7003 3967 Sc
  1249. 24 7022 4033 Sc
  1250. 24 7042 3735 Sc
  1251. 24 7062 3729 Sc
  1252. 24 7082 3634 Sc
  1253. 24 7101 3635 Sc
  1254. 24 7121 3802 Sc
  1255. 24 7141 3680 Sc
  1256. 24 7161 3687 Sc
  1257. 24 7180 3179 Sc
  1258. U
  1259. PSL_cliprestore
  1260. %%EndObject
  1261. 0 A
  1262. FQ
  1263. O0
  1264. 0 0 TM
  1265. % PostScript produced by:
  1266. %@GMT: gmt psscale -Ct.cpt -DJBC -O -K -R2017-01-01T/2018-01-01T/10000/40000 -JX6iT/3.5i -Bxa1Og1o
  1267. %@PROJ: xy 1483228800.00000000 1514764800.00000000 10000.00000000 40000.00000000 1483228800.000 1514764800.000 10000.000 40000.000 +xy
  1268. %%BeginObject PSL_Layer_2
  1269. 0 setlinecap
  1270. 0 setlinejoin
  1271. 3.32551 setmiterlimit
  1272. 720 -447 T
  1273. 25 W
  1274. {0 0 0.669 C} FS
  1275. 230 489 0 0 Sb
  1276. {0 0 0.993 C} FS
  1277. 230 442 489 0 Sb
  1278. {0 0.316 1 C} FS
  1279. 230 489 931 0 Sb
  1280. {0 0.651 1 C} FS
  1281. 230 474 1420 0 Sb
  1282. {0 0.985 1 C} FS
  1283. 230 489 1894 0 Sb
  1284. {0.319 1 0.681 C} FS
  1285. 230 473 2383 0 Sb
  1286. {0.653 1 0.347 C} FS
  1287. 230 490 2856 0 Sb
  1288. {0.993 1 0.00685 C} FS
  1289. 230 489 3346 0 Sb
  1290. {1 0.673 0 C} FS
  1291. 230 473 3835 0 Sb
  1292. {1 0.338 0 C} FS
  1293. 230 489 4308 0 Sb
  1294. {1 0.00411 0 C} FS
  1295. 230 474 4797 0 Sb
  1296. {0.669 0 0 C} FS
  1297. 230 489 5271 0 Sb
  1298. 2 setlinecap
  1299. N 0 230 M 5760 0 D S
  1300. N 0 0 M 0 230 D S
  1301. N 5760 0 M 0 230 D S
  1302. N 0 0 M 5760 0 D S
  1303. /PSL_A0_y 83 def
  1304. /PSL_A1_y 0 def
  1305. 8 W
  1306. N 0 0 M 0 -83 D S
  1307. N 489 0 M 0 -83 D S
  1308. N 931 0 M 0 -83 D S
  1309. N 1420 0 M 0 -83 D S
  1310. N 1894 0 M 0 -83 D S
  1311. N 2383 0 M 0 -83 D S
  1312. N 2856 0 M 0 -83 D S
  1313. N 3346 0 M 0 -83 D S
  1314. N 3835 0 M 0 -83 D S
  1315. N 4308 0 M 0 -83 D S
  1316. N 4797 0 M 0 -83 D S
  1317. N 5271 0 M 0 -83 D S
  1318. N 5760 0 M 0 -83 D S
  1319. /PSL_AH0 0
  1320. /MM {neg M} def
  1321. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1322. 200 F0
  1323. (JAN) sh mx
  1324. (FEB) sh mx
  1325. (MAR) sh mx
  1326. (APR) sh mx
  1327. (MAY) sh mx
  1328. (JUN) sh mx
  1329. (JUL) sh mx
  1330. (AUG) sh mx
  1331. (SEP) sh mx
  1332. (OCT) sh mx
  1333. (NOV) sh mx
  1334. (DEC) sh mx
  1335. def
  1336. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1337. 245 PSL_A0_y MM
  1338. (JAN) bc Z
  1339. 710 PSL_A0_y MM
  1340. (FEB) bc Z
  1341. 1176 PSL_A0_y MM
  1342. (MAR) bc Z
  1343. 1657 PSL_A0_y MM
  1344. (APR) bc Z
  1345. 2138 PSL_A0_y MM
  1346. (MAY) bc Z
  1347. 2620 PSL_A0_y MM
  1348. (JUN) bc Z
  1349. 3101 PSL_A0_y MM
  1350. (JUL) bc Z
  1351. 3590 PSL_A0_y MM
  1352. (AUG) bc Z
  1353. 4071 PSL_A0_y MM
  1354. (SEP) bc Z
  1355. 4553 PSL_A0_y MM
  1356. (OCT) bc Z
  1357. 5034 PSL_A0_y MM
  1358. (NOV) bc Z
  1359. 5515 PSL_A0_y MM
  1360. (DEC) bc Z
  1361. N 0 0 M 0 -42 D S
  1362. N 489 0 M 0 -42 D S
  1363. N 931 0 M 0 -42 D S
  1364. N 1420 0 M 0 -42 D S
  1365. N 1894 0 M 0 -42 D S
  1366. N 2383 0 M 0 -42 D S
  1367. N 2856 0 M 0 -42 D S
  1368. N 3346 0 M 0 -42 D S
  1369. N 3835 0 M 0 -42 D S
  1370. N 4308 0 M 0 -42 D S
  1371. N 4797 0 M 0 -42 D S
  1372. N 5271 0 M 0 -42 D S
  1373. N 5760 0 M 0 -42 D S
  1374. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1375. 4 W
  1376. N 0 0 M 0 230 D S
  1377. N 489 0 M 0 230 D S
  1378. N 931 0 M 0 230 D S
  1379. N 1420 0 M 0 230 D S
  1380. N 1894 0 M 0 230 D S
  1381. N 2383 0 M 0 230 D S
  1382. N 2856 0 M 0 230 D S
  1383. N 3346 0 M 0 230 D S
  1384. N 3835 0 M 0 230 D S
  1385. N 4308 0 M 0 230 D S
  1386. N 4797 0 M 0 230 D S
  1387. N 5271 0 M 0 230 D S
  1388. N 5760 0 M 0 230 D S
  1389. 0 setlinecap
  1390. -720 447 T
  1391. %%EndObject
  1392. 0 A
  1393. FQ
  1394. O0
  1395. 0 5400 TM
  1396. % PostScript produced by:
  1397. %@GMT: gmt psxy -R10000/40000/2017-01-01T/2018-01-01T @HI_arrivals_2017.txt -JX6i/3.5iT -Ct.cpt -i1,0,0 -Sc0.1c '-BWSne+tHawaii 2017 Visitor Arrivals' -Bya1Og1o -Bxafg -O -K -Y4.5i
  1398. %@PROJ: xy 10000.00000000 40000.00000000 1483228800.00000000 1514764800.00000000 10000.000 40000.000 1483228800.000 1514764800.000 +xy
  1399. %%BeginObject PSL_Layer_3
  1400. 0 setlinecap
  1401. 0 setlinejoin
  1402. 3.32551 setmiterlimit
  1403. 25 W
  1404. 4 W
  1405. 0 0 M
  1406. 0 4200 D
  1407. S
  1408. 1200 0 M
  1409. 0 4200 D
  1410. S
  1411. 2400 0 M
  1412. 0 4200 D
  1413. S
  1414. 3600 0 M
  1415. 0 4200 D
  1416. S
  1417. 4800 0 M
  1418. 0 4200 D
  1419. S
  1420. 6000 0 M
  1421. 0 4200 D
  1422. S
  1423. 7200 0 M
  1424. 0 4200 D
  1425. S
  1426. N 0 0 M 7200 0 D S
  1427. N 0 357 M 7200 0 D S
  1428. N 0 679 M 7200 0 D S
  1429. N 0 1036 M 7200 0 D S
  1430. N 0 1381 M 7200 0 D S
  1431. N 0 1738 M 7200 0 D S
  1432. N 0 2083 M 7200 0 D S
  1433. N 0 2439 M 7200 0 D S
  1434. N 0 2796 M 7200 0 D S
  1435. N 0 3141 M 7200 0 D S
  1436. N 0 3498 M 7200 0 D S
  1437. N 0 3843 M 7200 0 D S
  1438. N 0 4200 M 7200 0 D S
  1439. 2 setlinecap
  1440. 25 W
  1441. N 0 4200 M 0 -4200 D S
  1442. /PSL_A0_y 83 def
  1443. /PSL_A1_y 0 def
  1444. 8 W
  1445. N 0 0 M -83 0 D S
  1446. N 0 357 M -83 0 D S
  1447. N 0 679 M -83 0 D S
  1448. N 0 1036 M -83 0 D S
  1449. N 0 1381 M -83 0 D S
  1450. N 0 1738 M -83 0 D S
  1451. N 0 2083 M -83 0 D S
  1452. N 0 2439 M -83 0 D S
  1453. N 0 2796 M -83 0 D S
  1454. N 0 3141 M -83 0 D S
  1455. N 0 3498 M -83 0 D S
  1456. N 0 3843 M -83 0 D S
  1457. N 0 4200 M -83 0 D S
  1458. /PSL_AH0 0
  1459. /MM {neg exch M} def
  1460. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1461. 200 F0
  1462. (JAN) sw mx
  1463. (FEB) sw mx
  1464. (MAR) sw mx
  1465. (APR) sw mx
  1466. (MAY) sw mx
  1467. (JUN) sw mx
  1468. (JUL) sw mx
  1469. (AUG) sw mx
  1470. (SEP) sw mx
  1471. (OCT) sw mx
  1472. (NOV) sw mx
  1473. (DEC) sw mx
  1474. def
  1475. /PSL_A0_y PSL_A0_y 83 add def
  1476. 178 PSL_A0_y MM
  1477. (JAN) mr Z
  1478. 518 PSL_A0_y MM
  1479. (FEB) mr Z
  1480. 857 PSL_A0_y MM
  1481. (MAR) mr Z
  1482. 1208 PSL_A0_y MM
  1483. (APR) mr Z
  1484. 1559 PSL_A0_y MM
  1485. (MAY) mr Z
  1486. 1910 PSL_A0_y MM
  1487. (JUN) mr Z
  1488. 2261 PSL_A0_y MM
  1489. (JUL) mr Z
  1490. 2618 PSL_A0_y MM
  1491. (AUG) mr Z
  1492. 2969 PSL_A0_y MM
  1493. (SEP) mr Z
  1494. 3320 PSL_A0_y MM
  1495. (OCT) mr Z
  1496. 3671 PSL_A0_y MM
  1497. (NOV) mr Z
  1498. 4022 PSL_A0_y MM
  1499. (DEC) mr Z
  1500. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1501. N 0 0 M -42 0 D S
  1502. N 0 357 M -42 0 D S
  1503. N 0 679 M -42 0 D S
  1504. N 0 1036 M -42 0 D S
  1505. N 0 1381 M -42 0 D S
  1506. N 0 1738 M -42 0 D S
  1507. N 0 2083 M -42 0 D S
  1508. N 0 2439 M -42 0 D S
  1509. N 0 2796 M -42 0 D S
  1510. N 0 3141 M -42 0 D S
  1511. N 0 3498 M -42 0 D S
  1512. N 0 3843 M -42 0 D S
  1513. N 0 4200 M -42 0 D S
  1514. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1515. 7200 0 T
  1516. 25 W
  1517. N 0 4200 M 0 -4200 D S
  1518. /PSL_A0_y 83 def
  1519. /PSL_A1_y 0 def
  1520. 8 W
  1521. N 0 0 M 83 0 D S
  1522. N 0 357 M 83 0 D S
  1523. N 0 679 M 83 0 D S
  1524. N 0 1036 M 83 0 D S
  1525. N 0 1381 M 83 0 D S
  1526. N 0 1738 M 83 0 D S
  1527. N 0 2083 M 83 0 D S
  1528. N 0 2439 M 83 0 D S
  1529. N 0 2796 M 83 0 D S
  1530. N 0 3141 M 83 0 D S
  1531. N 0 3498 M 83 0 D S
  1532. N 0 3843 M 83 0 D S
  1533. N 0 4200 M 83 0 D S
  1534. N 0 0 M 42 0 D S
  1535. N 0 357 M 42 0 D S
  1536. N 0 679 M 42 0 D S
  1537. N 0 1036 M 42 0 D S
  1538. N 0 1381 M 42 0 D S
  1539. N 0 1738 M 42 0 D S
  1540. N 0 2083 M 42 0 D S
  1541. N 0 2439 M 42 0 D S
  1542. N 0 2796 M 42 0 D S
  1543. N 0 3141 M 42 0 D S
  1544. N 0 3498 M 42 0 D S
  1545. N 0 3843 M 42 0 D S
  1546. N 0 4200 M 42 0 D S
  1547. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1548. -7200 0 T
  1549. 25 W
  1550. N 0 0 M 7200 0 D S
  1551. /PSL_A0_y 83 def
  1552. /PSL_A1_y 0 def
  1553. 8 W
  1554. N 0 0 M 0 -83 D S
  1555. N 1200 0 M 0 -83 D S
  1556. N 2400 0 M 0 -83 D S
  1557. N 3600 0 M 0 -83 D S
  1558. N 4800 0 M 0 -83 D S
  1559. N 6000 0 M 0 -83 D S
  1560. N 7200 0 M 0 -83 D S
  1561. /PSL_AH0 0
  1562. /MM {neg M} def
  1563. (10000) sh mx
  1564. (15000) sh mx
  1565. (20000) sh mx
  1566. (25000) sh mx
  1567. (30000) sh mx
  1568. (35000) sh mx
  1569. (40000) sh mx
  1570. def
  1571. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1572. 0 PSL_A0_y MM
  1573. (10000) bc Z
  1574. 1200 PSL_A0_y MM
  1575. (15000) bc Z
  1576. 2400 PSL_A0_y MM
  1577. (20000) bc Z
  1578. 3600 PSL_A0_y MM
  1579. (25000) bc Z
  1580. 4800 PSL_A0_y MM
  1581. (30000) bc Z
  1582. 6000 PSL_A0_y MM
  1583. (35000) bc Z
  1584. 7200 PSL_A0_y MM
  1585. (40000) bc Z
  1586. N 240 0 M 0 -42 D S
  1587. N 480 0 M 0 -42 D S
  1588. N 720 0 M 0 -42 D S
  1589. N 960 0 M 0 -42 D S
  1590. N 1440 0 M 0 -42 D S
  1591. N 1680 0 M 0 -42 D S
  1592. N 1920 0 M 0 -42 D S
  1593. N 2160 0 M 0 -42 D S
  1594. N 2640 0 M 0 -42 D S
  1595. N 2880 0 M 0 -42 D S
  1596. N 3120 0 M 0 -42 D S
  1597. N 3360 0 M 0 -42 D S
  1598. N 3840 0 M 0 -42 D S
  1599. N 4080 0 M 0 -42 D S
  1600. N 4320 0 M 0 -42 D S
  1601. N 4560 0 M 0 -42 D S
  1602. N 5040 0 M 0 -42 D S
  1603. N 5280 0 M 0 -42 D S
  1604. N 5520 0 M 0 -42 D S
  1605. N 5760 0 M 0 -42 D S
  1606. N 6240 0 M 0 -42 D S
  1607. N 6480 0 M 0 -42 D S
  1608. N 6720 0 M 0 -42 D S
  1609. N 6960 0 M 0 -42 D S
  1610. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1611. 0 4200 T
  1612. 25 W
  1613. N 0 0 M 7200 0 D S
  1614. /PSL_A0_y 83 def
  1615. /PSL_A1_y 0 def
  1616. 8 W
  1617. N 0 0 M 0 83 D S
  1618. N 1200 0 M 0 83 D S
  1619. N 2400 0 M 0 83 D S
  1620. N 3600 0 M 0 83 D S
  1621. N 4800 0 M 0 83 D S
  1622. N 6000 0 M 0 83 D S
  1623. N 7200 0 M 0 83 D S
  1624. N 240 0 M 0 42 D S
  1625. N 480 0 M 0 42 D S
  1626. N 720 0 M 0 42 D S
  1627. N 960 0 M 0 42 D S
  1628. N 1440 0 M 0 42 D S
  1629. N 1680 0 M 0 42 D S
  1630. N 1920 0 M 0 42 D S
  1631. N 2160 0 M 0 42 D S
  1632. N 2640 0 M 0 42 D S
  1633. N 2880 0 M 0 42 D S
  1634. N 3120 0 M 0 42 D S
  1635. N 3360 0 M 0 42 D S
  1636. N 3840 0 M 0 42 D S
  1637. N 4080 0 M 0 42 D S
  1638. N 4320 0 M 0 42 D S
  1639. N 4560 0 M 0 42 D S
  1640. N 5040 0 M 0 42 D S
  1641. N 5280 0 M 0 42 D S
  1642. N 5520 0 M 0 42 D S
  1643. N 5760 0 M 0 42 D S
  1644. N 6240 0 M 0 42 D S
  1645. N 6480 0 M 0 42 D S
  1646. N 6720 0 M 0 42 D S
  1647. N 6960 0 M 0 42 D S
  1648. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1649. 0 -4200 T
  1650. 0 setlinecap
  1651. /PSL_H_y PSL_L_y PSL_LH add 233 add def
  1652. 3600 4200 PSL_H_y add M
  1653. 400 F0
  1654. (Hawaii 2017 Visitor Arrivals) bc Z
  1655. clipsave
  1656. 0 0 M
  1657. 7200 0 D
  1658. 0 4200 D
  1659. -7200 0 D
  1660. P
  1661. PSL_clip N
  1662. 4 W
  1663. V
  1664. {0 0 0.669 C} FS
  1665. 24 5293 0 Sc
  1666. 24 5327 12 Sc
  1667. 24 4875 23 Sc
  1668. 24 4744 35 Sc
  1669. 24 4712 46 Sc
  1670. 24 4793 58 Sc
  1671. 24 5158 69 Sc
  1672. 24 4212 81 Sc
  1673. 24 3951 92 Sc
  1674. 24 3353 104 Sc
  1675. 24 3903 115 Sc
  1676. 24 3976 127 Sc
  1677. 24 4444 138 Sc
  1678. 24 4688 150 Sc
  1679. 24 3947 161 Sc
  1680. 24 3308 173 Sc
  1681. 24 2889 184 Sc
  1682. 24 3345 196 Sc
  1683. 24 3662 207 Sc
  1684. 24 3939 219 Sc
  1685. 24 4574 230 Sc
  1686. 24 3486 242 Sc
  1687. 24 2833 253 Sc
  1688. 24 2597 265 Sc
  1689. 24 3267 276 Sc
  1690. 24 3450 288 Sc
  1691. 24 3284 299 Sc
  1692. 24 4053 311 Sc
  1693. 24 3102 322 Sc
  1694. 24 2655 334 Sc
  1695. 24 2772 345 Sc
  1696. {0 0 0.993 C} FS
  1697. 24 3711 357 Sc
  1698. 24 3823 368 Sc
  1699. 24 3827 380 Sc
  1700. 24 4145 391 Sc
  1701. 24 3234 403 Sc
  1702. 24 3026 414 Sc
  1703. 24 2839 426 Sc
  1704. 24 3740 437 Sc
  1705. 24 3676 449 Sc
  1706. 24 4290 460 Sc
  1707. 24 4635 472 Sc
  1708. 24 4251 483 Sc
  1709. 24 3487 495 Sc
  1710. 24 3129 506 Sc
  1711. 24 4230 518 Sc
  1712. 24 4463 529 Sc
  1713. 24 4033 541 Sc
  1714. 24 5230 552 Sc
  1715. 24 4723 564 Sc
  1716. 24 3672 575 Sc
  1717. 24 3595 587 Sc
  1718. 24 3946 598 Sc
  1719. 24 3966 610 Sc
  1720. 24 3957 621 Sc
  1721. 24 4327 633 Sc
  1722. 24 3971 644 Sc
  1723. 24 2925 656 Sc
  1724. 24 2885 667 Sc
  1725. {0 0.316 1 C} FS
  1726. 24 4009 679 Sc
  1727. 24 4163 690 Sc
  1728. 24 4081 702 Sc
  1729. 24 4444 713 Sc
  1730. 24 4015 725 Sc
  1731. 24 3224 736 Sc
  1732. 24 2979 748 Sc
  1733. 24 3980 759 Sc
  1734. 24 4484 771 Sc
  1735. 24 4811 782 Sc
  1736. 24 5314 794 Sc
  1737. 24 4916 805 Sc
  1738. 24 3723 817 Sc
  1739. 24 3157 828 Sc
  1740. 24 4006 840 Sc
  1741. 24 4180 852 Sc
  1742. 24 4554 863 Sc
  1743. 24 4849 875 Sc
  1744. 24 4632 886 Sc
  1745. 24 3896 898 Sc
  1746. 24 3701 909 Sc
  1747. 24 4280 921 Sc
  1748. 24 4862 932 Sc
  1749. 24 5189 944 Sc
  1750. 24 5839 955 Sc
  1751. 24 5054 967 Sc
  1752. 24 4470 978 Sc
  1753. 24 4006 990 Sc
  1754. 24 4111 1001 Sc
  1755. 24 4507 1013 Sc
  1756. 24 4653 1024 Sc
  1757. {0 0.651 1 C} FS
  1758. 24 5393 1036 Sc
  1759. 24 4895 1047 Sc
  1760. 24 3826 1059 Sc
  1761. 24 3374 1070 Sc
  1762. 24 3476 1082 Sc
  1763. 24 3907 1093 Sc
  1764. 24 4400 1105 Sc
  1765. 24 5163 1116 Sc
  1766. 24 4752 1128 Sc
  1767. 24 3866 1139 Sc
  1768. 24 3390 1151 Sc
  1769. 24 3663 1162 Sc
  1770. 24 3844 1174 Sc
  1771. 24 4063 1185 Sc
  1772. 24 4100 1197 Sc
  1773. 24 3883 1208 Sc
  1774. 24 3397 1220 Sc
  1775. 24 3396 1231 Sc
  1776. 24 3797 1243 Sc
  1777. 24 4090 1254 Sc
  1778. 24 3975 1266 Sc
  1779. 24 4317 1277 Sc
  1780. 24 3877 1289 Sc
  1781. 24 3150 1300 Sc
  1782. 24 3035 1312 Sc
  1783. 24 3499 1323 Sc
  1784. 24 4067 1335 Sc
  1785. 24 4027 1346 Sc
  1786. 24 4530 1358 Sc
  1787. 24 4134 1369 Sc
  1788. {0 0.985 1 C} FS
  1789. 24 3691 1381 Sc
  1790. 24 3782 1392 Sc
  1791. 24 3576 1404 Sc
  1792. 24 3912 1415 Sc
  1793. 24 3744 1427 Sc
  1794. 24 4067 1438 Sc
  1795. 24 3969 1450 Sc
  1796. 24 3432 1461 Sc
  1797. 24 3397 1473 Sc
  1798. 24 3676 1484 Sc
  1799. 24 4146 1496 Sc
  1800. 24 4169 1507 Sc
  1801. 24 4556 1519 Sc
  1802. 24 4405 1530 Sc
  1803. 24 4116 1542 Sc
  1804. 24 3751 1553 Sc
  1805. 24 3940 1565 Sc
  1806. 24 4119 1576 Sc
  1807. 24 4367 1588 Sc
  1808. 24 4974 1599 Sc
  1809. 24 4522 1611 Sc
  1810. 24 4215 1622 Sc
  1811. 24 3910 1634 Sc
  1812. 24 4418 1645 Sc
  1813. 24 4581 1657 Sc
  1814. 24 4504 1668 Sc
  1815. 24 5133 1680 Sc
  1816. 24 4597 1692 Sc
  1817. 24 4128 1703 Sc
  1818. 24 3809 1715 Sc
  1819. 24 4459 1726 Sc
  1820. {0.319 1 0.681 C} FS
  1821. 24 4768 1738 Sc
  1822. 24 4597 1749 Sc
  1823. 24 5186 1761 Sc
  1824. 24 5268 1772 Sc
  1825. 24 4615 1784 Sc
  1826. 24 4361 1795 Sc
  1827. 24 4537 1807 Sc
  1828. 24 5089 1818 Sc
  1829. 24 5079 1830 Sc
  1830. 24 5391 1841 Sc
  1831. 24 5578 1853 Sc
  1832. 24 5125 1864 Sc
  1833. 24 4887 1876 Sc
  1834. 24 4986 1887 Sc
  1835. 24 5265 1899 Sc
  1836. 24 5527 1910 Sc
  1837. 24 5802 1922 Sc
  1838. 24 5753 1933 Sc
  1839. 24 5119 1945 Sc
  1840. 24 5599 1956 Sc
  1841. 24 5185 1968 Sc
  1842. 24 5348 1979 Sc
  1843. 24 5577 1991 Sc
  1844. 24 5887 2002 Sc
  1845. 24 5445 2014 Sc
  1846. 24 5098 2025 Sc
  1847. 24 4977 2037 Sc
  1848. 24 5467 2048 Sc
  1849. 24 5531 2060 Sc
  1850. 24 5836 2071 Sc
  1851. {0.653 1 0.347 C} FS
  1852. 24 6258 2083 Sc
  1853. 24 5644 2094 Sc
  1854. 24 5158 2106 Sc
  1855. 24 4879 2117 Sc
  1856. 24 5233 2129 Sc
  1857. 24 5269 2140 Sc
  1858. 24 5310 2152 Sc
  1859. 24 5554 2163 Sc
  1860. 24 5424 2175 Sc
  1861. 24 5209 2186 Sc
  1862. 24 4858 2198 Sc
  1863. 24 5200 2209 Sc
  1864. 24 5058 2221 Sc
  1865. 24 5497 2232 Sc
  1866. 24 5753 2244 Sc
  1867. 24 5357 2255 Sc
  1868. 24 4897 2267 Sc
  1869. 24 4674 2278 Sc
  1870. 24 5185 2290 Sc
  1871. 24 5575 2301 Sc
  1872. 24 5491 2313 Sc
  1873. 24 6022 2324 Sc
  1874. 24 5538 2336 Sc
  1875. 24 5428 2347 Sc
  1876. 24 5203 2359 Sc
  1877. 24 5283 2370 Sc
  1878. 24 5389 2382 Sc
  1879. 24 5370 2393 Sc
  1880. 24 5941 2405 Sc
  1881. 24 5776 2416 Sc
  1882. 24 5423 2428 Sc
  1883. {0.993 1 0.00685 C} FS
  1884. 24 5413 2439 Sc
  1885. 24 5657 2451 Sc
  1886. 24 5552 2462 Sc
  1887. 24 5463 2474 Sc
  1888. 24 5914 2485 Sc
  1889. 24 5616 2497 Sc
  1890. 24 5136 2508 Sc
  1891. 24 5031 2520 Sc
  1892. 24 5179 2532 Sc
  1893. 24 5278 2543 Sc
  1894. 24 4856 2555 Sc
  1895. 24 5589 2566 Sc
  1896. 24 5159 2578 Sc
  1897. 24 4845 2589 Sc
  1898. 24 4621 2601 Sc
  1899. 24 4968 2612 Sc
  1900. 24 4892 2624 Sc
  1901. 24 4680 2635 Sc
  1902. 24 5366 2647 Sc
  1903. 24 4844 2658 Sc
  1904. 24 4713 2670 Sc
  1905. 24 3864 2681 Sc
  1906. 24 4006 2693 Sc
  1907. 24 4312 2704 Sc
  1908. 24 3932 2716 Sc
  1909. 24 4595 2727 Sc
  1910. 24 3995 2739 Sc
  1911. 24 3404 2750 Sc
  1912. 24 2656 2762 Sc
  1913. 24 3742 2773 Sc
  1914. 24 4446 2785 Sc
  1915. {1 0.673 0 C} FS
  1916. 24 4853 2796 Sc
  1917. 24 5154 2808 Sc
  1918. 24 3737 2819 Sc
  1919. 24 3846 2831 Sc
  1920. 24 3305 2842 Sc
  1921. 24 3544 2854 Sc
  1922. 24 3644 2865 Sc
  1923. 24 3573 2877 Sc
  1924. 24 4421 2888 Sc
  1925. 24 4065 2900 Sc
  1926. 24 3821 2911 Sc
  1927. 24 3030 2923 Sc
  1928. 24 3862 2934 Sc
  1929. 24 3981 2946 Sc
  1930. 24 4010 2957 Sc
  1931. 24 4699 2969 Sc
  1932. 24 4248 2980 Sc
  1933. 24 3992 2992 Sc
  1934. 24 3185 3003 Sc
  1935. 24 3752 3015 Sc
  1936. 24 3921 3026 Sc
  1937. 24 3648 3038 Sc
  1938. 24 4638 3049 Sc
  1939. 24 4268 3061 Sc
  1940. 24 3757 3072 Sc
  1941. 24 3005 3084 Sc
  1942. 24 3538 3095 Sc
  1943. 24 4118 3107 Sc
  1944. 24 4114 3118 Sc
  1945. 24 5112 3130 Sc
  1946. {1 0.338 0 C} FS
  1947. 24 4673 3141 Sc
  1948. 24 4172 3153 Sc
  1949. 24 3507 3164 Sc
  1950. 24 3922 3176 Sc
  1951. 24 4402 3187 Sc
  1952. 24 4523 3199 Sc
  1953. 24 5069 3210 Sc
  1954. 24 4613 3222 Sc
  1955. 24 4189 3233 Sc
  1956. 24 3719 3245 Sc
  1957. 24 3782 3256 Sc
  1958. 24 4653 3268 Sc
  1959. 24 4462 3279 Sc
  1960. 24 5370 3291 Sc
  1961. 24 4816 3302 Sc
  1962. 24 4453 3314 Sc
  1963. 24 3670 3325 Sc
  1964. 24 4111 3337 Sc
  1965. 24 4235 3348 Sc
  1966. 24 4443 3360 Sc
  1967. 24 5207 3372 Sc
  1968. 24 4333 3383 Sc
  1969. 24 4143 3395 Sc
  1970. 24 3145 3406 Sc
  1971. 24 3697 3418 Sc
  1972. 24 4108 3429 Sc
  1973. 24 3892 3441 Sc
  1974. 24 4405 3452 Sc
  1975. 24 3747 3464 Sc
  1976. 24 3299 3475 Sc
  1977. 24 2820 3487 Sc
  1978. {1 0.00411 0 C} FS
  1979. 24 3717 3498 Sc
  1980. 24 4434 3510 Sc
  1981. 24 4034 3521 Sc
  1982. 24 5030 3533 Sc
  1983. 24 4610 3544 Sc
  1984. 24 4021 3556 Sc
  1985. 24 3246 3567 Sc
  1986. 24 3854 3579 Sc
  1987. 24 4436 3590 Sc
  1988. 24 4392 3602 Sc
  1989. 24 4523 3613 Sc
  1990. 24 4424 3625 Sc
  1991. 24 3594 3636 Sc
  1992. 24 3278 3648 Sc
  1993. 24 3931 3659 Sc
  1994. 24 4368 3671 Sc
  1995. 24 4521 3682 Sc
  1996. 24 5071 3694 Sc
  1997. 24 4854 3705 Sc
  1998. 24 4476 3717 Sc
  1999. 24 3753 3728 Sc
  2000. 24 4476 3740 Sc
  2001. 24 4267 3751 Sc
  2002. 24 3984 3763 Sc
  2003. 24 4096 3774 Sc
  2004. 24 4196 3786 Sc
  2005. 24 3884 3797 Sc
  2006. 24 3221 3809 Sc
  2007. 24 3156 3820 Sc
  2008. 24 4005 3832 Sc
  2009. {0.669 0 0 C} FS
  2010. 24 4209 3843 Sc
  2011. 24 4257 3855 Sc
  2012. 24 3765 3866 Sc
  2013. 24 3595 3878 Sc
  2014. 24 2777 3889 Sc
  2015. 24 3367 3901 Sc
  2016. 24 3755 3912 Sc
  2017. 24 4321 3924 Sc
  2018. 24 4276 3935 Sc
  2019. 24 3901 3947 Sc
  2020. 24 3572 3958 Sc
  2021. 24 3339 3970 Sc
  2022. 24 3720 3981 Sc
  2023. 24 4212 3993 Sc
  2024. 24 5120 4004 Sc
  2025. 24 5363 4016 Sc
  2026. 24 5310 4027 Sc
  2027. 24 4774 4039 Sc
  2028. 24 4582 4050 Sc
  2029. 24 5631 4062 Sc
  2030. 24 6503 4073 Sc
  2031. 24 6800 4085 Sc
  2032. 24 6914 4096 Sc
  2033. 24 6403 4108 Sc
  2034. 24 6392 4119 Sc
  2035. 24 6229 4131 Sc
  2036. 24 6232 4142 Sc
  2037. 24 6518 4154 Sc
  2038. 24 6309 4165 Sc
  2039. 24 6320 4177 Sc
  2040. 24 5450 4188 Sc
  2041. U
  2042. PSL_cliprestore
  2043. %%EndObject
  2044. 0 A
  2045. FQ
  2046. O0
  2047. 0 0 TM
  2048. % PostScript produced by:
  2049. %@GMT: gmt psscale -Ct.cpt -DJRM -O -R10000/40000/2017-01-01T/2018-01-01T -JX6i/3.5iT -Bxa1Og1o
  2050. %@PROJ: xy 10000.00000000 40000.00000000 1483228800.00000000 1514764800.00000000 10000.000 40000.000 1483228800.000 1514764800.000 +xy
  2051. %%BeginObject PSL_Layer_4
  2052. 0 setlinecap
  2053. 0 setlinejoin
  2054. 3.32551 setmiterlimit
  2055. 7417 420 T
  2056. 25 W
  2057. 134 0 T
  2058. 90 R
  2059. {0 0 0.669 C} FS
  2060. 134 285 0 0 Sb
  2061. {0 0 0.993 C} FS
  2062. 134 258 285 0 Sb
  2063. {0 0.316 1 C} FS
  2064. 134 285 543 0 Sb
  2065. {0 0.651 1 C} FS
  2066. 134 277 828 0 Sb
  2067. {0 0.985 1 C} FS
  2068. 134 285 1105 0 Sb
  2069. {0.319 1 0.681 C} FS
  2070. 134 276 1390 0 Sb
  2071. {0.653 1 0.347 C} FS
  2072. 134 286 1666 0 Sb
  2073. {0.993 1 0.00685 C} FS
  2074. 134 285 1952 0 Sb
  2075. {1 0.673 0 C} FS
  2076. 134 276 2237 0 Sb
  2077. {1 0.338 0 C} FS
  2078. 134 285 2513 0 Sb
  2079. {1 0.00411 0 C} FS
  2080. 134 277 2798 0 Sb
  2081. {0.669 0 0 C} FS
  2082. 134 285 3075 0 Sb
  2083. 2 setlinecap
  2084. N 0 134 M 3360 0 D S
  2085. N 0 0 M 0 134 D S
  2086. N 3360 0 M 0 134 D S
  2087. 4 W
  2088. N 0 0 M 0 134 D S
  2089. N 285 0 M 0 134 D S
  2090. N 543 0 M 0 134 D S
  2091. N 828 0 M 0 134 D S
  2092. N 1105 0 M 0 134 D S
  2093. N 1390 0 M 0 134 D S
  2094. N 1666 0 M 0 134 D S
  2095. N 1952 0 M 0 134 D S
  2096. N 2237 0 M 0 134 D S
  2097. N 2513 0 M 0 134 D S
  2098. N 2798 0 M 0 134 D S
  2099. N 3075 0 M 0 134 D S
  2100. N 3360 0 M 0 134 D S
  2101. -90 R
  2102. 25 W
  2103. N 0 3360 M 0 -3360 D S
  2104. /PSL_A0_y 83 def
  2105. /PSL_A1_y 0 def
  2106. 8 W
  2107. N 0 0 M 83 0 D S
  2108. N 0 285 M 83 0 D S
  2109. N 0 543 M 83 0 D S
  2110. N 0 828 M 83 0 D S
  2111. N 0 1105 M 83 0 D S
  2112. N 0 1390 M 83 0 D S
  2113. N 0 1666 M 83 0 D S
  2114. N 0 1952 M 83 0 D S
  2115. N 0 2237 M 83 0 D S
  2116. N 0 2513 M 83 0 D S
  2117. N 0 2798 M 83 0 D S
  2118. N 0 3075 M 83 0 D S
  2119. N 0 3360 M 83 0 D S
  2120. /PSL_AH0 0
  2121. /MM {exch M} def
  2122. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2123. 200 F0
  2124. (JAN) sw mx
  2125. (FEB) sw mx
  2126. (MAR) sw mx
  2127. (APR) sw mx
  2128. (MAY) sw mx
  2129. (JUN) sw mx
  2130. (JUL) sw mx
  2131. (AUG) sw mx
  2132. (SEP) sw mx
  2133. (OCT) sw mx
  2134. (NOV) sw mx
  2135. (DEC) sw mx
  2136. def
  2137. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  2138. 143 PSL_A0_y MM
  2139. (JAN) mr Z
  2140. 414 PSL_A0_y MM
  2141. (FEB) mr Z
  2142. 686 PSL_A0_y MM
  2143. (MAR) mr Z
  2144. 967 PSL_A0_y MM
  2145. (APR) mr Z
  2146. 1247 PSL_A0_y MM
  2147. (MAY) mr Z
  2148. 1528 PSL_A0_y MM
  2149. (JUN) mr Z
  2150. 1809 PSL_A0_y MM
  2151. (JUL) mr Z
  2152. 2094 PSL_A0_y MM
  2153. (AUG) mr Z
  2154. 2375 PSL_A0_y MM
  2155. (SEP) mr Z
  2156. 2656 PSL_A0_y MM
  2157. (OCT) mr Z
  2158. 2937 PSL_A0_y MM
  2159. (NOV) mr Z
  2160. 3217 PSL_A0_y MM
  2161. (DEC) mr Z
  2162. N 0 0 M 42 0 D S
  2163. N 0 285 M 42 0 D S
  2164. N 0 543 M 42 0 D S
  2165. N 0 828 M 42 0 D S
  2166. N 0 1105 M 42 0 D S
  2167. N 0 1390 M 42 0 D S
  2168. N 0 1666 M 42 0 D S
  2169. N 0 1952 M 42 0 D S
  2170. N 0 2237 M 42 0 D S
  2171. N 0 2513 M 42 0 D S
  2172. N 0 2798 M 42 0 D S
  2173. N 0 3075 M 42 0 D S
  2174. N 0 3360 M 42 0 D S
  2175. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2176. 90 R
  2177. -90 R
  2178. -134 0 T
  2179. 0 setlinecap
  2180. -7417 -420 T
  2181. %%EndObject
  2182. grestore
  2183. PSL_movie_completion /PSL_movie_completion {} def
  2184. %PSL_Begin_Trailer
  2185. %%PageTrailer
  2186. U
  2187. showpage
  2188. %%Trailer
  2189. end
  2190. %%EOF
Tip!

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

Comments

Loading...