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

time_testing_6.ps 61 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
  1. %!PS-Adobe-3.0
  2. %%BoundingBox: 0 0 612 792
  3. %%HiResBoundingBox: 0 0 612 792
  4. %%Title: GMT v5.1.2_r13153 [64-bit] Document from grdcontour
  5. %%Creator: GMT5
  6. %%For: pwessel
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Fri May 16 14:36:16 2014
  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. /textheight exch def
  196. /just exch def
  197. /offset exch def
  198. /str exch def
  199. /pathdist 0 def
  200. /setdist offset def
  201. /charcount 0 def
  202. /justy just 4 idiv textheight mul 2 div neg def
  203. V flattenpath
  204. {movetoproc} {linetoproc}
  205. {curvetoproc} {closepathproc}
  206. pathforall
  207. U N
  208. end
  209. } def
  210. PSL_pathtextdict begin
  211. /movetoproc
  212. { /newy exch def /newx exch def
  213. /firstx newx def /firsty newy def
  214. /ovr 0 def
  215. newx newy transform
  216. /cpy exch def /cpx exch def
  217. } def
  218. /linetoproc
  219. { /oldx newx def /oldy newy def
  220. /newy exch def /newx exch def
  221. /dx newx oldx sub def
  222. /dy newy oldy sub def
  223. /dist dx dup mul dy dup mul add sqrt def
  224. dist 0 ne
  225. { /dsx dx dist div ovr mul def
  226. /dsy dy dist div ovr mul def
  227. oldx dsx add oldy dsy add transform
  228. /cpy exch def /cpx exch def
  229. /pathdist pathdist dist add def
  230. {setdist pathdist le
  231. {charcount str length lt
  232. {setchar} {exit} ifelse}
  233. { /ovr setdist pathdist sub def
  234. exit}
  235. ifelse
  236. } loop
  237. } if
  238. } def
  239. /curvetoproc
  240. { (ERROR: No curveto's after flattenpath!)
  241. print
  242. } def
  243. /closepathproc
  244. {firstx firsty linetoproc
  245. firstx firsty movetoproc
  246. } def
  247. /setchar
  248. { /char str charcount 1 getinterval def
  249. /charcount charcount 1 add def
  250. /charwidth char stringwidth pop def
  251. V cpx cpy itransform T
  252. dy dx atan R
  253. 0 justy M
  254. char show
  255. 0 justy neg G
  256. currentpoint transform
  257. /cpy exch def /cpx exch def
  258. U /setdist setdist charwidth add def
  259. } def
  260. end
  261. /PSL_set_label_heights
  262. {
  263. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  264. /PSL_heights PSL_n_labels array def
  265. 0 1 PSL_n_labels_minus_1
  266. { /psl_k exch def
  267. /psl_label PSL_label_str psl_k get def
  268. PSL_label_font psl_k get cvx exec
  269. psl_label sH /PSL_height edef
  270. PSL_heights psl_k PSL_height put
  271. } for
  272. } def
  273. %%%%%%%%%%%%%%%%%%% CURVED BASELINE TEXT PLACEMENT FUNCTIONS
  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 PSL_label_node psl_p PSL_m getinterval def
  293. /PSL_angle PSL_label_angle psl_p PSL_m getinterval def
  294. /PSL_str PSL_label_str psl_p PSL_m getinterval def
  295. /PSL_fnt 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_clip} 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_addcutpoints
  309. /PSL_nn1 PSL_nn 1 sub def
  310. /n 0 def
  311. /k 0 def
  312. /j 0 def
  313. /PSL_seg 0 def
  314. /PSL_xp PSL_nn array def
  315. /PSL_yp PSL_nn array def
  316. PSL_xp 0 PSL_xx 0 get put
  317. PSL_yp 0 PSL_yy 0 get put
  318. 1 1 PSL_nn1
  319. { /i exch def
  320. /node_type PSL_kind i get def
  321. /j j 1 add def
  322. PSL_xp j PSL_xx i get put
  323. PSL_yp j PSL_yy i get put
  324. node_type 1 eq
  325. {n 0 eq
  326. {PSL_CT_drawline}
  327. { PSL_CT_reversepath
  328. PSL_CT_textline} ifelse
  329. /j 0 def
  330. PSL_xp j PSL_xx i get put
  331. PSL_yp j PSL_yy i get put
  332. } if
  333. } for
  334. n 0 eq {PSL_CT_drawline} if
  335. } def
  336. /PSL_CT_textline
  337. { PSL_fnt k get cvx exec
  338. /PSL_height PSL_heights k get def
  339. PSL_placetext {PSL_CT_placelabel} if
  340. PSL_clippath {PSL_CT_clippath} if
  341. /n 0 def /k k 1 add def
  342. } def
  343. /PSL_CT_calcstringwidth
  344. { /PSL_width PSL_m array def
  345. 0 1 PSL_m1
  346. { /i exch def
  347. PSL_fnt i get cvx exec
  348. PSL_width i PSL_str i get stringwidth pop put
  349. } for
  350. } def
  351. /PSL_CT_calclinedist
  352. { /PSL_newx PSL_x 0 get def
  353. /PSL_newy PSL_y 0 get def
  354. /dist 0.0 def
  355. /PSL_dist PSL_n array def
  356. PSL_dist 0 0.0 put
  357. 1 1 PSL_n1
  358. { /i exch def
  359. /PSL_oldx PSL_newx def
  360. /PSL_oldy PSL_newy def
  361. /PSL_newx PSL_x i get def
  362. /PSL_newy PSL_y i get def
  363. /dx PSL_newx PSL_oldx sub def
  364. /dy PSL_newy PSL_oldy sub def
  365. /dist dist dx dx mul dy dy mul add sqrt add def
  366. PSL_dist i dist put
  367. } for
  368. } def
  369. /PSL_CT_addcutpoints
  370. { /k 0 def
  371. /PSL_nc PSL_m 2 mul 1 add def
  372. /PSL_cuts PSL_nc array def
  373. /PSL_nc1 PSL_nc 1 sub def
  374. 0 1 PSL_m1
  375. { /i exch def
  376. /dist PSL_dist PSL_node i get get def
  377. /halfwidth PSL_width i get 2 div PSL_gap_x add def
  378. PSL_cuts k dist halfwidth sub put
  379. /k k 1 add def
  380. PSL_cuts k dist halfwidth add put
  381. /k k 1 add def
  382. } for
  383. PSL_cuts k 100000.0 put
  384. /PSL_nn PSL_n PSL_m 2 mul add def
  385. /PSL_xx PSL_nn array def
  386. /PSL_yy PSL_nn array def
  387. /PSL_kind PSL_nn array def
  388. /j 0 def
  389. /k 0 def
  390. /dist 0.0 def
  391. 0 1 PSL_n1
  392. { /i exch def
  393. /last_dist dist def
  394. /dist PSL_dist i get def
  395. k 1 PSL_nc1
  396. { /kk exch def
  397. /this_cut PSL_cuts kk get def
  398. dist this_cut gt
  399. { /ds dist last_dist sub def
  400. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
  401. /i1 i 0 eq {0} {i 1 sub} ifelse def
  402. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
  403. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  404. PSL_kind j 1 put
  405. /j j 1 add def
  406. /k k 1 add def
  407. } if
  408. } for
  409. dist PSL_cuts k get le
  410. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  411. PSL_kind j 0 put
  412. /j j 1 add def
  413. } if
  414. } for
  415. } def
  416. /PSL_CT_reversepath
  417. {PSL_xp j get PSL_xp 0 get lt
  418. {0 1 j 2 idiv
  419. { /left exch def
  420. /right j left sub def
  421. /tmp PSL_xp left get def
  422. PSL_xp left PSL_xp right get put
  423. PSL_xp right tmp put
  424. /tmp PSL_yp left get def
  425. PSL_yp left PSL_yp right get put
  426. PSL_yp right tmp put
  427. } for
  428. } if
  429. } def
  430. /PSL_CT_placelabel
  431. {
  432. /PSL_just PSL_label_justify k get def
  433. /PSL_height PSL_heights k get def
  434. PSL_usebox
  435. {PSL_CT_clippath
  436. PSL_fillbox
  437. {V PSL_setboxrgb fill U} if
  438. PSL_drawbox
  439. {V PSL_setboxpen S U} if N
  440. } if
  441. PSL_CT_placeline PSL_str k get PSL_gap_x PSL_just PSL_height PSL_pathtext
  442. } def
  443. /PSL_CT_clippath
  444. {
  445. /H PSL_height 2 div PSL_gap_y add def
  446. /xoff j 1 add array def
  447. /yoff j 1 add array def
  448. /angle 0 def
  449. 0 1 j {
  450. /ii exch def
  451. /x PSL_xp ii get def
  452. /y PSL_yp ii get def
  453. ii 0 eq {
  454. /x1 PSL_xp 1 get def
  455. /y1 PSL_yp 1 get def
  456. /dx x1 x sub def
  457. /dy y1 y sub def
  458. }
  459. { /i1 ii 1 sub def
  460. /x1 PSL_xp i1 get def
  461. /y1 PSL_yp i1 get def
  462. /dx x x1 sub def
  463. /dy y y1 sub def
  464. } ifelse
  465. dx 0.0 ne dy 0.0 ne and
  466. { /angle dy dx atan 90 add def} if
  467. /sina angle sin def
  468. /cosa angle cos def
  469. xoff ii H cosa mul put
  470. yoff ii H sina mul put
  471. } for
  472. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  473. 1 1 j {
  474. /ii exch def
  475. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  476. } for
  477. j -1 0 {
  478. /ii exch def
  479. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  480. } for P
  481. } def
  482. /PSL_CT_drawline
  483. {
  484. /str 20 string def
  485. PSL_strokeline
  486. {PSL_CT_placeline S} if
  487. /PSL_seg PSL_seg 1 add def
  488. /n 1 def
  489. } def
  490. /PSL_CT_placeline
  491. {PSL_xp 0 get PSL_yp 0 get M
  492. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
  493. } def
  494. %%%%%%%%%%%%%%%%%%% DRAW BASELINE TEXT SEGMENT LINES
  495. /PSL_draw_path_lines
  496. {
  497. /PSL_n_paths1 PSL_n_paths 1 sub def
  498. V
  499. /psl_start 0 def
  500. 0 1 PSL_n_paths1
  501. { /psl_k exch def
  502. /PSL_n PSL_path_n psl_k get def
  503. /PSL_n1 PSL_n 1 sub def
  504. PSL_path_pen psl_k get cvx exec
  505. N
  506. PSL_path_x psl_start get PSL_path_y psl_start get M
  507. 1 1 PSL_n1
  508. { /psl_i exch def
  509. /psl_kk psl_i psl_start add def
  510. PSL_path_x psl_kk get PSL_path_y psl_kk get L
  511. } for
  512. S
  513. /psl_start psl_start PSL_n add def
  514. } for
  515. U
  516. } def
  517. %%%%%%%%%%%%%%%%%%% STRAIGHT BASELINE TEXT PLACEMENT FUNCTIONS
  518. /PSL_straight_path_labels
  519. {
  520. /psl_bits exch def
  521. /PSL_placetext psl_bits 2 and 2 eq def
  522. /PSL_rounded psl_bits 32 and 32 eq def
  523. /PSL_fillbox psl_bits 128 and 128 eq def
  524. /PSL_drawbox psl_bits 256 and 256 eq def
  525. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  526. /PSL_usebox PSL_fillbox PSL_drawbox or def
  527. 0 1 PSL_n_labels_minus_1
  528. { /psl_k exch def
  529. PSL_ST_prepare_text
  530. PSL_usebox
  531. { PSL_rounded
  532. {PSL_ST_textbox_rect}
  533. {PSL_ST_textbox_round}
  534. ifelse
  535. PSL_fillbox {V PSL_setboxrgb fill U} if
  536. PSL_drawbox {V PSL_setboxpen S U} if
  537. N
  538. } if
  539. PSL_placetext {PSL_ST_place_label} if
  540. } for
  541. } def
  542. /PSL_straight_path_clip
  543. {
  544. /psl_bits exch def
  545. /PSL_rounded psl_bits 32 and 32 eq def
  546. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  547. N clipsave clippath
  548. 0 1 PSL_n_labels_minus_1
  549. { /psl_k exch def
  550. PSL_ST_prepare_text
  551. PSL_rounded
  552. {PSL_ST_textbox_round}
  553. {PSL_ST_textbox_rect}
  554. ifelse
  555. } for
  556. PSL_clip
  557. } def
  558. /PSL_ST_prepare_text
  559. {
  560. /psl_xp PSL_txt_x psl_k get def
  561. /psl_yp PSL_txt_y psl_k get def
  562. /psl_label PSL_label_str psl_k get def
  563. PSL_label_font psl_k get cvx exec
  564. /PSL_height PSL_heights psl_k get def
  565. /psl_boxH PSL_height PSL_gap_y 2 mul add def
  566. /PSL_just PSL_label_justify psl_k get def
  567. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
  568. /PSL_justy PSL_just 4 idiv 2 div neg def
  569. /psl_SW psl_label stringwidth pop def
  570. /psl_boxW psl_SW PSL_gap_x 2 mul add def
  571. /psl_x0 psl_SW PSL_justx mul def
  572. /psl_y0 PSL_justy PSL_height mul def
  573. /psl_angle PSL_label_angle psl_k get def
  574. } def
  575. /PSL_ST_textbox_rect
  576. {
  577. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  578. PSL_gap_x neg PSL_gap_y neg M
  579. 0 psl_boxH D psl_boxW 0 D 0 psl_boxH neg D P
  580. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  581. } def
  582. /PSL_ST_textbox_round
  583. {
  584. /psl_BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
  585. /psl_xd PSL_gap_x psl_BoxR sub def
  586. /psl_yd PSL_gap_y psl_BoxR sub def
  587. /psl_xL PSL_gap_x neg def
  588. /psl_yB PSL_gap_y neg def
  589. /psl_yT psl_boxH psl_yB add def
  590. /psl_H2 PSL_height psl_yd 2 mul add def
  591. /psl_W2 psl_SW psl_xd 2 mul add def
  592. /psl_xR psl_xL psl_boxW add def
  593. /psl_x0 psl_SW PSL_justx mul def
  594. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  595. psl_xL psl_yd M
  596. psl_xL psl_yT psl_xR psl_yT psl_BoxR arct psl_W2 0 D
  597. psl_xR psl_yT psl_xR psl_yB psl_BoxR arct 0 psl_H2 neg D
  598. psl_xR psl_yB psl_xL psl_yB psl_BoxR arct psl_W2 neg 0 D
  599. psl_xL psl_yB psl_xL psl_yd psl_BoxR arct P
  600. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  601. } def
  602. /PSL_ST_place_label
  603. {
  604. V psl_xp psl_yp T psl_angle R
  605. psl_SW PSL_justx mul psl_y0 M
  606. psl_label dup sd neg 0 exch G show
  607. U
  608. } def
  609. /PSL_nclip 0 def
  610. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
  611. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
  612. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
  613. %%EndProlog
  614. %%BeginSetup
  615. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  616. PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  617. %%EndSetup
  618. %%Page: 1 1
  619. %%BeginPageSetup
  620. V 0.06 0.06 scale
  621. %%EndPageSetup
  622. /PSL_page_xsize 10200 def
  623. /PSL_page_ysize 13200 def
  624. 0 A
  625. FQ
  626. O0
  627. 1200 1200 TM
  628. % PostScript produced by:
  629. %%GMT: grdcontour tt6.nc -JX6t/6 -C5 -A10 --TIME_EPOCH=2004-01-01T --TIME_UNIT=d -Bpxa7Rf1d -Bpy10 -Bsxa1O -P --FORMAT_DATE_MAP=-o-yy --FONT_ANNOT_PRIMARY=9p
  630. %%PROJ: xy 0.00000000 90.00000000 0.00000000 90.00000000 0.000 90.000 0.000 90.000 +xy +a=6378137.000 +b=6356752.314245
  631. %%BeginObject PSL_Layer_1
  632. 0 setlinecap
  633. 0 setlinejoin
  634. 3.32551 setmiterlimit
  635. clipsave
  636. 0 0 M
  637. 7200 0 D
  638. 0 7200 D
  639. -7200 0 D
  640. PSL_clip N
  641. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  642. /PSL_setboxpen {4 W 0 A [] 0 B} def
  643. /PSL_setboxrgb {1 A} def
  644. /PSL_path_pen [
  645. (4 W 0 A [] 0 B)
  646. (12 W 0 A [] 0 B)
  647. (4 W 0 A [] 0 B)
  648. (12 W 0 A [] 0 B)
  649. (4 W 0 A [] 0 B)
  650. (12 W 0 A [] 0 B)
  651. (4 W 0 A [] 0 B)
  652. (12 W 0 A [] 0 B)
  653. (4 W 0 A [] 0 B)
  654. (12 W 0 A [] 0 B)
  655. (4 W 0 A [] 0 B)
  656. (12 W 0 A [] 0 B)
  657. (4 W 0 A [] 0 B)
  658. (12 W 0 A [] 0 B)
  659. (4 W 0 A [] 0 B)
  660. (12 W 0 A [] 0 B)
  661. (4 W 0 A [] 0 B)
  662. (12 W 0 A [] 0 B)
  663. (4 W 0 A [] 0 B)
  664. (12 W 0 A [] 0 B)
  665. (4 W 0 A [] 0 B)
  666. (12 W 0 A [] 0 B)
  667. (4 W 0 A [] 0 B)
  668. (12 W 0 A [] 0 B)
  669. (4 W 0 A [] 0 B)
  670. (12 W 0 A [] 0 B)
  671. (4 W 0 A [] 0 B)
  672. (12 W 0 A [] 0 B)
  673. (4 W 0 A [] 0 B)
  674. (12 W 0 A [] 0 B)
  675. (4 W 0 A [] 0 B)
  676. (12 W 0 A [] 0 B)
  677. (4 W 0 A [] 0 B)
  678. (12 W 0 A [] 0 B)
  679. (4 W 0 A [] 0 B)
  680. (12 W 0 A [] 0 B)
  681. ] def
  682. /PSL_label_justify [ 6 6 6 6 6 6 6 6 6 6
  683. ] def
  684. /PSL_label_font [
  685. (0 A 150 F0)
  686. (0 A 150 F0)
  687. (0 A 150 F0)
  688. (0 A 150 F0)
  689. (0 A 150 F0)
  690. (0 A 150 F0)
  691. (0 A 150 F0)
  692. (0 A 150 F0)
  693. (0 A 150 F0)
  694. (0 A 150 F0)
  695. ] def
  696. /PSL_gap_x 22 def
  697. /PSL_gap_y 22 def
  698. /PSL_path_x [ 400 320 320 240 240 160 160 80 80 0
  699. 800 720 720 640 640 560 560 480 480 400
  700. 400 320 320 240 240 160 160 80 80 0
  701. 1200 1120 1120 1040 1040 960 960 880 880 800
  702. 800 720 720 640 640 560 560 480 480 400
  703. 400 320 320 240 240 160 160 80 80 0
  704. 1600 1520 1520 1440 1440 1360 1360 1280 1280 1200
  705. 1200 1120 1120 1040 1040 960 960 880 880 800
  706. 800 720 720 640 640 560 560 480 480 400
  707. 400 320 320 240 240 160 160 80 80 0
  708. 2000 1920 1920 1840 1840 1760 1760 1680 1680 1600
  709. 1600 1520 1520 1440 1440 1360 1360 1280 1280 1200
  710. 1200 1120 1120 1040 1040 960 960 880 880 800
  711. 800 720 720 640 640 560 560 480 480 400
  712. 400 320 320 240 240 160 160 80 80 0
  713. 2400 2320 2320 2240 2240 2160 2160 2080 2080 2000
  714. 2000 1920 1920 1840 1840 1760 1760 1680 1680 1600
  715. 1600 1520 1520 1440 1440 1360 1360 1280 1280 1200
  716. 1200 1120 1120 1040 1040 960 960 880 880 800
  717. 800 720 720 640 640 560 560 480 480 400
  718. 400 320 320 240 240 160 160 80 80 0
  719. 2800 2720 2720 2640 2640 2560 2560 2480 2480 2400
  720. 2400 2320 2320 2240 2240 2160 2160 2080 2080 2000
  721. 2000 1920 1920 1840 1840 1760 1760 1680 1680 1600
  722. 1600 1520 1520 1440 1440 1360 1360 1280 1280 1200
  723. 1200 1120 1120 1040 1040 960 960 880 880 800
  724. 800 720 720 640 640 560 560 480 480 400
  725. 400 320 320 240 240 160 160 80 80 0
  726. 3200 3120 3120 3040 3040 2960 2960 2880 2880 2800
  727. 2800 2720 2720 2640 2640 2560 2560 2480 2480 2400
  728. 2400 2320 2320 2240 2240 2160 2160 2080 2080 2000
  729. 2000 1920 1920 1840 1840 1760 1760 1680 1680 1600
  730. 1600 1520 1520 1440 1440 1360 1360 1280 1280 1200
  731. 1200 1120 1120 1040 1040 960 960 880 880 800
  732. 800 720 720 640 640 560 560 480 480 400
  733. 400 320 320 240 240 160 160 80 80 0
  734. 3600 3520 3520 3440 3440 3360 3360 3280 3280 3200
  735. 3200 3120 3120 3040 3040 2960 2960 2880 2880 2800
  736. 2800 2720 2720 2640 2640 2560 2560 2480 2480 2400
  737. 2400 2320 2320 2240 2240 2160 2160 2080 2080 2000
  738. 2000 1920 1920 1840 1840 1760 1760 1680 1680 1600
  739. 1600 1520 1520 1440 1440 1360 1360 1280 1280 1200
  740. 1200 1120 1120 1040 1040 960 960 880 880 800
  741. 800 720 720 640 640 560 560 480 480 400
  742. 400 320 320 240 240 160 160 80 80 0
  743. 4000 3920 3920 3840 3840 3760 3760 3680 3680 3600
  744. 3600 3520 3520 3440 3440 3360 3360 3280 3280 3200
  745. 3200 3120 3120 3040 3040 2960 2960 2880 2880 2800
  746. 2800 2720 2720 2640 2640 2560 2560 2480 2480 2400
  747. 2400 2320 2320 2240 2240 2160 2160 2080 2080 2000
  748. 2000 1920 1920 1840 1840 1760 1760 1680 1680 1600
  749. 1600 1520 1520 1440 1440 1360 1360 1280 1280 1200
  750. 1200 1120 1120 1040 1040 960 960 880 880 800
  751. 800 720 720 640 640 606 560 560 480 480
  752. 400 400 320 320 240 240 160 160 80 80
  753. 0 4400 4320 4320 4240 4240 4160 4160 4080 4080
  754. 4000 4000 3920 3920 3840 3840 3760 3760 3680 3680
  755. 3600 3600 3520 3520 3440 3440 3360 3360 3280 3280
  756. 3200 3200 3120 3120 3040 3040 2960 2960 2880 2880
  757. 2800 2800 2720 2720 2640 2640 2560 2560 2480 2480
  758. 2400 2400 2320 2320 2240 2240 2160 2160 2080 2080
  759. 2000 2000 1920 1920 1840 1840 1760 1760 1680 1680
  760. 1600 1600 1520 1520 1440 1440 1360 1360 1280 1280
  761. 1200 1200 1120 1120 1040 1040 960 960 880 880
  762. 800 800 720 720 640 640 560 560 480 480
  763. 400 400 320 320 240 240 160 160 80 80
  764. 0 4800 4720 4720 4640 4640 4560 4560 4480 4480
  765. 4400 4400 4320 4320 4240 4240 4160 4160 4080 4080
  766. 4000 4000 3920 3920 3840 3840 3760 3760 3680 3680
  767. 3600 3600 3520 3520 3440 3440 3360 3360 3280 3280
  768. 3200 3200 3120 3120 3040 3040 2960 2960 2880 2880
  769. 2800 2800 2720 2720 2640 2640 2560 2560 2480 2480
  770. 2400 2400 2320 2320 2240 2240 2160 2160 2080 2080
  771. 2000 2000 1920 1920 1840 1840 1760 1760 1680 1680
  772. 1600 1600 1520 1520 1440 1440 1406 1360 1360 1280
  773. 1280 1200 1200 1120 1120 1040 1040 960 960 880
  774. 880 800 800 720 720 640 640 560 560 480
  775. 480 400 400 320 320 240 240 160 160 80
  776. 80 0 5200 5120 5120 5040 5040 4960 4960 4880
  777. 4880 4800 4800 4720 4720 4640 4640 4560 4560 4480
  778. 4480 4400 4400 4320 4320 4240 4240 4160 4160 4080
  779. 4080 4000 4000 3920 3920 3840 3840 3760 3760 3680
  780. 3680 3600 3600 3520 3520 3440 3440 3360 3360 3280
  781. 3280 3200 3200 3120 3120 3040 3040 2960 2960 2880
  782. 2880 2800 2800 2720 2720 2640 2640 2560 2560 2480
  783. 2480 2400 2400 2320 2320 2240 2240 2160 2160 2080
  784. 2080 2000 2000 1920 1920 1840 1840 1760 1760 1680
  785. 1680 1600 1600 1520 1520 1440 1440 1360 1360 1280
  786. 1280 1200 1200 1120 1120 1040 1040 960 960 880
  787. 880 800 800 720 720 640 640 560 560 480
  788. 480 400 400 320 320 240 240 160 160 80
  789. 80 0 5600 5520 5520 5440 5440 5360 5360 5280
  790. 5280 5200 5200 5120 5120 5040 5040 4960 4960 4880
  791. 4880 4800 4800 4720 4720 4640 4640 4560 4560 4480
  792. 4480 4400 4400 4320 4320 4240 4240 4160 4160 4080
  793. 4080 4000 4000 3920 3920 3840 3840 3760 3760 3680
  794. 3680 3600 3600 3520 3520 3440 3440 3360 3360 3280
  795. 3280 3200 3200 3120 3120 3040 3040 2960 2960 2880
  796. 2880 2800 2800 2720 2720 2640 2640 2560 2560 2480
  797. 2480 2400 2400 2320 2320 2240 2240 2206 2160 2160
  798. 2080 2080 2000 2000 1920 1920 1840 1840 1760 1760
  799. 1680 1680 1600 1600 1520 1520 1440 1440 1360 1360
  800. 1280 1280 1200 1200 1120 1120 1040 1040 960 960
  801. 880 880 800 800 720 720 640 640 560 560
  802. 480 480 400 400 320 320 240 240 160 160
  803. 80 80 0 6000 5920 5920 5840 5840 5760 5760
  804. 5680 5680 5600 5600 5520 5520 5440 5440 5360 5360
  805. 5280 5280 5200 5200 5120 5120 5040 5040 4960 4960
  806. 4880 4880 4800 4800 4720 4720 4640 4640 4560 4560
  807. 4480 4480 4400 4400 4320 4320 4240 4240 4160 4160
  808. 4080 4080 4000 4000 3920 3920 3840 3840 3760 3760
  809. 3680 3680 3600 3600 3520 3520 3440 3440 3360 3360
  810. 3280 3280 3200 3200 3120 3120 3040 3040 2960 2960
  811. 2880 2880 2800 2800 2720 2720 2640 2640 2560 2560
  812. 2480 2480 2400 2400 2320 2320 2240 2240 2160 2160
  813. 2080 2080 2000 2000 1920 1920 1840 1840 1760 1760
  814. 1680 1680 1600 1600 1520 1520 1440 1440 1360 1360
  815. 1280 1280 1200 1200 1120 1120 1040 1040 960 960
  816. 880 880 800 800 720 720 640 640 560 560
  817. 480 480 400 400 320 320 240 240 160 160
  818. 80 80 0 6400 6320 6320 6240 6240 6160 6160
  819. 6080 6080 6000 6000 5920 5920 5840 5840 5760 5760
  820. 5680 5680 5600 5600 5520 5520 5440 5440 5360 5360
  821. 5280 5280 5200 5200 5120 5120 5040 5040 4960 4960
  822. 4880 4880 4800 4800 4720 4720 4640 4640 4560 4560
  823. 4480 4480 4400 4400 4320 4320 4240 4240 4160 4160
  824. 4080 4080 4000 4000 3920 3920 3840 3840 3760 3760
  825. 3680 3680 3600 3600 3520 3520 3440 3440 3360 3360
  826. 3280 3280 3200 3200 3120 3120 3040 3040 3006 2960
  827. 2960 2880 2880 2800 2800 2720 2720 2640 2640 2560
  828. 2560 2480 2480 2400 2400 2320 2320 2240 2240 2160
  829. 2160 2080 2080 2000 2000 1920 1920 1840 1840 1760
  830. 1760 1680 1680 1600 1600 1520 1520 1440 1440 1360
  831. 1360 1280 1280 1200 1200 1120 1120 1040 1040 960
  832. 960 880 880 800 800 720 720 640 640 560
  833. 560 480 480 400 400 320 320 240 240 160
  834. 160 80 80 0 6800 6720 6720 6640 6640 6560
  835. 6560 6480 6480 6400 6400 6320 6320 6240 6240 6160
  836. 6160 6080 6080 6000 6000 5920 5920 5840 5840 5760
  837. 5760 5680 5680 5600 5600 5520 5520 5440 5440 5360
  838. 5360 5280 5280 5200 5200 5120 5120 5040 5040 4960
  839. 4960 4880 4880 4800 4800 4720 4720 4640 4640 4560
  840. 4560 4480 4480 4400 4400 4320 4320 4240 4240 4160
  841. 4160 4080 4080 4000 4000 3920 3920 3840 3840 3760
  842. 3760 3680 3680 3600 3600 3520 3520 3440 3440 3360
  843. 3360 3280 3280 3200 3200 3120 3120 3040 3040 2960
  844. 2960 2880 2880 2800 2800 2720 2720 2640 2640 2560
  845. 2560 2480 2480 2400 2400 2320 2320 2240 2240 2160
  846. 2160 2080 2080 2000 2000 1920 1920 1840 1840 1760
  847. 1760 1680 1680 1600 1600 1520 1520 1440 1440 1360
  848. 1360 1280 1280 1200 1200 1120 1120 1040 1040 960
  849. 960 880 880 800 800 720 720 640 640 560
  850. 560 480 480 400 400 320 320 240 240 160
  851. 160 80 80 0 7200 7120 7120 7040 7040 6960
  852. 6960 6880 6880 6800 6800 6720 6720 6640 6640 6560
  853. 6560 6480 6480 6400 6400 6320 6320 6240 6240 6160
  854. 6160 6080 6080 6000 6000 5920 5920 5840 5840 5760
  855. 5760 5680 5680 5600 5600 5520 5520 5440 5440 5360
  856. 5360 5280 5280 5200 5200 5120 5120 5040 5040 4960
  857. 4960 4880 4880 4800 4800 4720 4720 4640 4640 4560
  858. 4560 4480 4480 4400 4400 4320 4320 4240 4240 4160
  859. 4160 4080 4080 4000 4000 3920 3920 3840 3840 3806
  860. 3760 3760 3680 3680 3600 3600 3520 3520 3440 3440
  861. 3360 3360 3280 3280 3200 3200 3120 3120 3040 3040
  862. 2960 2960 2880 2880 2800 2800 2720 2720 2640 2640
  863. 2560 2560 2480 2480 2400 2400 2320 2320 2240 2240
  864. 2160 2160 2080 2080 2000 2000 1920 1920 1840 1840
  865. 1760 1760 1680 1680 1600 1600 1520 1520 1440 1440
  866. 1360 1360 1280 1280 1200 1200 1120 1120 1040 1040
  867. 960 960 880 880 800 800 720 720 640 640
  868. 560 560 480 480 412 400 400 320 320 240
  869. 240 160 160 80 80 0 7200 7200 7120 7120
  870. 7040 7040 6960 6960 6880 6880 6800 6800 6720 6720
  871. 6640 6640 6560 6560 6480 6480 6400 6400 6320 6320
  872. 6240 6240 6160 6160 6080 6080 6000 6000 5920 5920
  873. 5840 5840 5760 5760 5680 5680 5600 5600 5520 5520
  874. 5440 5440 5360 5360 5280 5280 5200 5200 5120 5120
  875. 5040 5040 4960 4960 4880 4880 4800 4800 4720 4720
  876. 4640 4640 4560 4560 4480 4480 4400 4400 4320 4320
  877. 4240 4240 4160 4160 4080 4080 4000 4000 3920 3920
  878. 3840 3840 3760 3760 3680 3680 3600 3600 3520 3520
  879. 3440 3440 3360 3360 3280 3280 3200 3200 3120 3120
  880. 3040 3040 2960 2960 2880 2880 2800 2800 2720 2720
  881. 2640 2640 2560 2560 2480 2480 2400 2400 2320 2320
  882. 2240 2240 2160 2160 2080 2080 2000 2000 1920 1920
  883. 1840 1840 1760 1760 1680 1680 1600 1600 1520 1520
  884. 1440 1440 1360 1360 1280 1280 1200 1200 1120 1120
  885. 1040 1040 960 960 880 880 800 800 720 720
  886. 640 640 560 560 480 480 400 400 7200 7200
  887. 7120 7120 7040 7040 6960 6960 6880 6880 6800 6800
  888. 6720 6720 6640 6640 6560 6560 6480 6480 6400 6400
  889. 6320 6320 6240 6240 6160 6160 6080 6080 6000 6000
  890. 5920 5920 5840 5840 5760 5760 5680 5680 5600 5600
  891. 5520 5520 5440 5440 5360 5360 5280 5280 5200 5200
  892. 5120 5120 5040 5040 4960 4960 4880 4880 4800 4800
  893. 4720 4720 4640 4640 4560 4560 4480 4480 4400 4400
  894. 4320 4320 4240 4240 4160 4160 4080 4080 4000 4000
  895. 3920 3920 3840 3840 3806 3760 3760 3680 3680 3600
  896. 3600 3520 3520 3440 3440 3360 3360 3280 3280 3200
  897. 3200 3120 3120 3040 3040 2960 2960 2880 2880 2800
  898. 2800 2720 2720 2640 2640 2560 2560 2480 2480 2400
  899. 2400 2320 2320 2240 2240 2160 2160 2080 2080 2000
  900. 2000 1920 1920 1840 1840 1760 1760 1680 1680 1600
  901. 1600 1520 1520 1440 1440 1360 1360 1280 1280 1200
  902. 1200 1120 1120 1040 1040 960 960 880 880 800
  903. 800 7200 7200 7120 7120 7040 7040 6960 6960 6880
  904. 6880 6800 6800 6720 6720 6640 6640 6560 6560 6480
  905. 6480 6400 6400 6320 6320 6240 6240 6160 6160 6080
  906. 6080 6000 6000 5920 5920 5840 5840 5760 5760 5680
  907. 5680 5600 5600 5520 5520 5440 5440 5360 5360 5280
  908. 5280 5200 5200 5120 5120 5040 5040 4960 4960 4880
  909. 4880 4800 4800 4720 4720 4640 4640 4560 4560 4480
  910. 4480 4400 4400 4320 4320 4240 4240 4160 4160 4080
  911. 4080 4000 4000 3920 3920 3840 3840 3760 3760 3680
  912. 3680 3600 3600 3520 3520 3440 3440 3360 3360 3280
  913. 3280 3200 3200 3120 3120 3040 3040 2960 2960 2880
  914. 2880 2800 2800 2720 2720 2640 2640 2560 2560 2480
  915. 2480 2400 2400 2320 2320 2240 2240 2160 2160 2080
  916. 2080 2000 2000 1920 1920 1840 1840 1760 1760 1680
  917. 1680 1600 1600 1520 1520 1440 1440 1360 1360 1280
  918. 1280 1200 1200 7200 7200 7120 7120 7040 7040 6960
  919. 6960 6880 6880 6800 6800 6720 6720 6640 6640 6560
  920. 6560 6480 6480 6400 6400 6320 6320 6240 6240 6160
  921. 6160 6080 6080 6000 6000 5920 5920 5840 5840 5760
  922. 5760 5680 5680 5600 5600 5520 5520 5440 5440 5360
  923. 5360 5280 5280 5200 5200 5120 5120 5040 5040 4960
  924. 4960 4880 4880 4800 4800 4720 4720 4640 4640 4560
  925. 4560 4480 4480 4400 4400 4320 4320 4240 4240 4160
  926. 4160 4080 4080 4000 4000 3920 3920 3840 3840 3806
  927. 3760 3760 3680 3680 3600 3600 3520 3520 3440 3440
  928. 3360 3360 3280 3280 3200 3200 3120 3120 3040 3040
  929. 2960 2960 2880 2880 2800 2800 2720 2720 2640 2640
  930. 2560 2560 2480 2480 2400 2400 2320 2320 2240 2240
  931. 2160 2160 2080 2080 2000 2000 1920 1920 1840 1840
  932. 1760 1760 1680 1680 1600 1600 7200 7200 7120 7120
  933. 7040 7040 6960 6960 6880 6880 6800 6800 6720 6720
  934. 6640 6640 6560 6560 6480 6480 6400 6400 6320 6320
  935. 6240 6240 6160 6160 6080 6080 6000 6000 5920 5920
  936. 5840 5840 5760 5760 5680 5680 5600 5600 5520 5520
  937. 5440 5440 5360 5360 5280 5280 5200 5200 5120 5120
  938. 5040 5040 4960 4960 4880 4880 4800 4800 4720 4720
  939. 4640 4640 4560 4560 4480 4480 4400 4400 4320 4320
  940. 4240 4240 4160 4160 4080 4080 4000 4000 3920 3920
  941. 3840 3840 3760 3760 3680 3680 3600 3600 3520 3520
  942. 3440 3440 3360 3360 3280 3280 3200 3200 3120 3120
  943. 3040 3040 2960 2960 2880 2880 2800 2800 2720 2720
  944. 2640 2640 2560 2560 2480 2480 2400 2400 2320 2320
  945. 2240 2240 2160 2160 2080 2080 2000 2000 7200 7200
  946. 7120 7120 7040 7040 6960 6960 6880 6880 6800 6800
  947. 6720 6720 6640 6640 6560 6560 6480 6480 6400 6400
  948. 6320 6320 6240 6240 6160 6160 6080 6080 6000 6000
  949. 5920 5920 5840 5840 5760 5760 5680 5680 5600 5600
  950. 5520 5520 5440 5440 5360 5360 5280 5280 5200 5200
  951. 5120 5120 5040 5040 4960 4960 4880 4880 4800 4800
  952. 4720 4720 4640 4640 4560 4560 4480 4480 4400 4400
  953. 4320 4320 4240 4240 4160 4160 4080 4080 4000 4000
  954. 3920 3920 3840 3840 3806 3760 3760 3680 3680 3600
  955. 3600 3520 3520 3440 3440 3360 3360 3280 3280 3200
  956. 3200 3120 3120 3040 3040 2960 2960 2880 2880 2800
  957. 2800 2720 2720 2640 2640 2560 2560 2480 2480 2400
  958. 2400 7200 7200 7120 7120 7040 7040 6960 6960 6880
  959. 6880 6800 6800 6720 6720 6640 6640 6560 6560 6480
  960. 6480 6400 6400 6320 6320 6240 6240 6160 6160 6080
  961. 6080 6000 6000 5920 5920 5840 5840 5760 5760 5680
  962. 5680 5600 5600 5520 5520 5440 5440 5360 5360 5280
  963. 5280 5200 5200 5120 5120 5040 5040 4960 4960 4880
  964. 4880 4800 4800 4720 4720 4640 4640 4560 4560 4480
  965. 4480 4400 4400 4320 4320 4240 4240 4160 4160 4080
  966. 4080 4000 4000 3920 3920 3840 3840 3760 3760 3680
  967. 3680 3600 3600 3520 3520 3440 3440 3360 3360 3280
  968. 3280 3200 3200 3120 3120 3040 3040 2960 2960 2880
  969. 2880 2800 2800 7200 7200 7120 7120 7040 7040 6960
  970. 6960 6880 6880 6800 6800 6720 6720 6640 6640 6560
  971. 6560 6480 6480 6400 6400 6320 6320 6240 6240 6160
  972. 6160 6080 6080 6000 6000 5920 5920 5840 5840 5760
  973. 5760 5680 5680 5600 5600 5520 5520 5440 5440 5360
  974. 5360 5280 5280 5200 5200 5120 5120 5040 5040 4960
  975. 4960 4880 4880 4800 4800 4720 4720 4640 4640 4560
  976. 4560 4480 4480 4400 4400 4320 4320 4240 4240 4160
  977. 4160 4080 4080 4000 4000 3920 3920 3840 3840 3806
  978. 3760 3760 3680 3680 3600 3600 3520 3520 3440 3440
  979. 3360 3360 3280 3280 3200 3200 7200 7200 7120 7120
  980. 7040 7040 6960 6960 6880 6880 6800 6800 6720 6720
  981. 6640 6640 6560 6560 6480 6480 6400 6400 6320 6320
  982. 6240 6240 6160 6160 6080 6080 6000 6000 5920 5920
  983. 5840 5840 5760 5760 5680 5680 5600 5600 5520 5520
  984. 5440 5440 5360 5360 5280 5280 5200 5200 5120 5120
  985. 5040 5040 4960 4960 4880 4880 4800 4800 4720 4720
  986. 4640 4640 4560 4560 4480 4480 4400 4400 4320 4320
  987. 4240 4240 4160 4160 4080 4080 4000 4000 3920 3920
  988. 3840 3840 3760 3760 3680 3680 3600 3600 7200 7200
  989. 7120 7120 7040 7040 6960 6960 6880 6880 6800 6800
  990. 6720 6720 6640 6640 6560 6560 6480 6480 6400 6400
  991. 6320 6320 6240 6240 6160 6160 6080 6080 6000 6000
  992. 5920 5920 5840 5840 5760 5760 5680 5680 5600 5600
  993. 5520 5520 5440 5440 5360 5360 5280 5280 5200 5200
  994. 5120 5120 5040 5040 4960 4960 4880 4880 4800 4800
  995. 4720 4720 4640 4640 4560 4560 4480 4480 4400 4400
  996. 4320 4320 4240 4240 4160 4160 4080 4080 4000 4000
  997. 7200 7200 7120 7120 7040 7040 6960 6960 6880 6880
  998. 6800 6800 6720 6720 6640 6640 6560 6560 6480 6480
  999. 6400 6400 6320 6320 6240 6240 6160 6160 6080 6080
  1000. 6000 6000 5920 5920 5840 5840 5760 5760 5680 5680
  1001. 5600 5600 5520 5520 5440 5440 5360 5360 5280 5280
  1002. 5200 5200 5120 5120 5040 5040 4960 4960 4880 4880
  1003. 4800 4800 4720 4720 4640 4640 4560 4560 4480 4480
  1004. 4400 4400 7200 7200 7120 7120 7040 7040 6960 6960
  1005. 6880 6880 6800 6800 6720 6720 6640 6640 6560 6560
  1006. 6480 6480 6400 6400 6320 6320 6240 6240 6160 6160
  1007. 6080 6080 6000 6000 5920 5920 5840 5840 5760 5760
  1008. 5680 5680 5600 5600 5520 5520 5440 5440 5360 5360
  1009. 5280 5280 5200 5200 5120 5120 5040 5040 4960 4960
  1010. 4880 4880 4800 4800 7200 7200 7120 7120 7040 7040
  1011. 6960 6960 6880 6880 6800 6800 6720 6720 6640 6640
  1012. 6560 6560 6480 6480 6400 6400 6320 6320 6240 6240
  1013. 6160 6160 6080 6080 6000 6000 5920 5920 5840 5840
  1014. 5760 5760 5680 5680 5600 5600 5520 5520 5440 5440
  1015. 5360 5360 5280 5280 5200 5200 7200 7200 7120 7120
  1016. 7040 7040 6960 6960 6880 6880 6800 6800 6720 6720
  1017. 6640 6640 6560 6560 6480 6480 6400 6400 6320 6320
  1018. 6240 6240 6160 6160 6080 6080 6000 6000 5920 5920
  1019. 5840 5840 5760 5760 5680 5680 5600 5600 7200 7200
  1020. 7120 7120 7040 7040 6960 6960 6880 6880 6800 6800
  1021. 6720 6720 6640 6640 6560 6560 6480 6480 6400 6400
  1022. 6320 6320 6240 6240 6160 6160 6080 6080 6000 6000
  1023. 7200 7200 7120 7120 7040 7040 6960 6960 6880 6880
  1024. 6800 6800 6720 6720 6640 6640 6560 6560 6480 6480
  1025. 6400 6400 7200 7200 7120 7120 7040 7040 6960 6960
  1026. 6880 6880 6800 6800 7200 7200 ] def
  1027. /PSL_path_y [ 0 80 80 160 160 240 240 320 320 400
  1028. 0 80 80 160 160 240 240 320 320 400
  1029. 400 480 480 560 560 640 640 720 720 800
  1030. 0 80 80 160 160 240 240 320 320 400
  1031. 400 480 480 560 560 640 640 720 720 800
  1032. 800 880 880 960 960 1040 1040 1120 1120 1200
  1033. 0 80 80 160 160 240 240 320 320 400
  1034. 400 480 480 560 560 640 640 720 720 800
  1035. 800 880 880 960 960 1040 1040 1120 1120 1200
  1036. 1200 1280 1280 1360 1360 1440 1440 1520 1520 1600
  1037. 0 80 80 160 160 240 240 320 320 400
  1038. 400 480 480 560 560 640 640 720 720 800
  1039. 800 880 880 960 960 1040 1040 1120 1120 1200
  1040. 1200 1280 1280 1360 1360 1440 1440 1520 1520 1600
  1041. 1600 1680 1680 1760 1760 1840 1840 1920 1920 2000
  1042. 0 80 80 160 160 240 240 320 320 400
  1043. 400 480 480 560 560 640 640 720 720 800
  1044. 800 880 880 960 960 1040 1040 1120 1120 1200
  1045. 1200 1280 1280 1360 1360 1440 1440 1520 1520 1600
  1046. 1600 1680 1680 1760 1760 1840 1840 1920 1920 2000
  1047. 2000 2080 2080 2160 2160 2240 2240 2320 2320 2400
  1048. 0 80 80 160 160 240 240 320 320 400
  1049. 400 480 480 560 560 640 640 720 720 800
  1050. 800 880 880 960 960 1040 1040 1120 1120 1200
  1051. 1200 1280 1280 1360 1360 1440 1440 1520 1520 1600
  1052. 1600 1680 1680 1760 1760 1840 1840 1920 1920 2000
  1053. 2000 2080 2080 2160 2160 2240 2240 2320 2320 2400
  1054. 2400 2480 2480 2560 2560 2640 2640 2720 2720 2800
  1055. 0 80 80 160 160 240 240 320 320 400
  1056. 400 480 480 560 560 640 640 720 720 800
  1057. 800 880 880 960 960 1040 1040 1120 1120 1200
  1058. 1200 1280 1280 1360 1360 1440 1440 1520 1520 1600
  1059. 1600 1680 1680 1760 1760 1840 1840 1920 1920 2000
  1060. 2000 2080 2080 2160 2160 2240 2240 2320 2320 2400
  1061. 2400 2480 2480 2560 2560 2640 2640 2720 2720 2800
  1062. 2800 2880 2880 2960 2960 3040 3040 3120 3120 3200
  1063. 0 80 80 160 160 240 240 320 320 400
  1064. 400 480 480 560 560 640 640 720 720 800
  1065. 800 880 880 960 960 1040 1040 1120 1120 1200
  1066. 1200 1280 1280 1360 1360 1440 1440 1520 1520 1600
  1067. 1600 1680 1680 1760 1760 1840 1840 1920 1920 2000
  1068. 2000 2080 2080 2160 2160 2240 2240 2320 2320 2400
  1069. 2400 2480 2480 2560 2560 2640 2640 2720 2720 2800
  1070. 2800 2880 2880 2960 2960 3040 3040 3120 3120 3200
  1071. 3200 3280 3280 3360 3360 3440 3440 3520 3520 3600
  1072. 0 80 80 160 160 240 240 320 320 400
  1073. 400 480 480 560 560 640 640 720 720 800
  1074. 800 880 880 960 960 1040 1040 1120 1120 1200
  1075. 1200 1280 1280 1360 1360 1440 1440 1520 1520 1600
  1076. 1600 1680 1680 1760 1760 1840 1840 1920 1920 2000
  1077. 2000 2080 2080 2160 2160 2240 2240 2320 2320 2400
  1078. 2400 2480 2480 2560 2560 2640 2640 2720 2720 2800
  1079. 2800 2880 2880 2960 2960 3040 3040 3120 3120 3200
  1080. 3200 3280 3280 3360 3360 3394 3440 3440 3520 3520
  1081. 3600 3600 3680 3680 3760 3760 3840 3840 3920 3920
  1082. 4000 0 80 80 160 160 240 240 320 320
  1083. 400 400 480 480 560 560 640 640 720 720
  1084. 800 800 880 880 960 960 1040 1040 1120 1120
  1085. 1200 1200 1280 1280 1360 1360 1440 1440 1520 1520
  1086. 1600 1600 1680 1680 1760 1760 1840 1840 1920 1920
  1087. 2000 2000 2080 2080 2160 2160 2240 2240 2320 2320
  1088. 2400 2400 2480 2480 2560 2560 2640 2640 2720 2720
  1089. 2800 2800 2880 2880 2960 2960 3040 3040 3120 3120
  1090. 3200 3200 3280 3280 3360 3360 3440 3440 3520 3520
  1091. 3600 3600 3680 3680 3760 3760 3840 3840 3920 3920
  1092. 4000 4000 4080 4080 4160 4160 4240 4240 4320 4320
  1093. 4400 0 80 80 160 160 240 240 320 320
  1094. 400 400 480 480 560 560 640 640 720 720
  1095. 800 800 880 880 960 960 1040 1040 1120 1120
  1096. 1200 1200 1280 1280 1360 1360 1440 1440 1520 1520
  1097. 1600 1600 1680 1680 1760 1760 1840 1840 1920 1920
  1098. 2000 2000 2080 2080 2160 2160 2240 2240 2320 2320
  1099. 2400 2400 2480 2480 2560 2560 2640 2640 2720 2720
  1100. 2800 2800 2880 2880 2960 2960 3040 3040 3120 3120
  1101. 3200 3200 3280 3280 3360 3360 3394 3440 3440 3520
  1102. 3520 3600 3600 3680 3680 3760 3760 3840 3840 3920
  1103. 3920 4000 4000 4080 4080 4160 4160 4240 4240 4320
  1104. 4320 4400 4400 4480 4480 4560 4560 4640 4640 4720
  1105. 4720 4800 0 80 80 160 160 240 240 320
  1106. 320 400 400 480 480 560 560 640 640 720
  1107. 720 800 800 880 880 960 960 1040 1040 1120
  1108. 1120 1200 1200 1280 1280 1360 1360 1440 1440 1520
  1109. 1520 1600 1600 1680 1680 1760 1760 1840 1840 1920
  1110. 1920 2000 2000 2080 2080 2160 2160 2240 2240 2320
  1111. 2320 2400 2400 2480 2480 2560 2560 2640 2640 2720
  1112. 2720 2800 2800 2880 2880 2960 2960 3040 3040 3120
  1113. 3120 3200 3200 3280 3280 3360 3360 3440 3440 3520
  1114. 3520 3600 3600 3680 3680 3760 3760 3840 3840 3920
  1115. 3920 4000 4000 4080 4080 4160 4160 4240 4240 4320
  1116. 4320 4400 4400 4480 4480 4560 4560 4640 4640 4720
  1117. 4720 4800 4800 4880 4880 4960 4960 5040 5040 5120
  1118. 5120 5200 0 80 80 160 160 240 240 320
  1119. 320 400 400 480 480 560 560 640 640 720
  1120. 720 800 800 880 880 960 960 1040 1040 1120
  1121. 1120 1200 1200 1280 1280 1360 1360 1440 1440 1520
  1122. 1520 1600 1600 1680 1680 1760 1760 1840 1840 1920
  1123. 1920 2000 2000 2080 2080 2160 2160 2240 2240 2320
  1124. 2320 2400 2400 2480 2480 2560 2560 2640 2640 2720
  1125. 2720 2800 2800 2880 2880 2960 2960 3040 3040 3120
  1126. 3120 3200 3200 3280 3280 3360 3360 3394 3440 3440
  1127. 3520 3520 3600 3600 3680 3680 3760 3760 3840 3840
  1128. 3920 3920 4000 4000 4080 4080 4160 4160 4240 4240
  1129. 4320 4320 4400 4400 4480 4480 4560 4560 4640 4640
  1130. 4720 4720 4800 4800 4880 4880 4960 4960 5040 5040
  1131. 5120 5120 5200 5200 5280 5280 5360 5360 5440 5440
  1132. 5520 5520 5600 0 80 80 160 160 240 240
  1133. 320 320 400 400 480 480 560 560 640 640
  1134. 720 720 800 800 880 880 960 960 1040 1040
  1135. 1120 1120 1200 1200 1280 1280 1360 1360 1440 1440
  1136. 1520 1520 1600 1600 1680 1680 1760 1760 1840 1840
  1137. 1920 1920 2000 2000 2080 2080 2160 2160 2240 2240
  1138. 2320 2320 2400 2400 2480 2480 2560 2560 2640 2640
  1139. 2720 2720 2800 2800 2880 2880 2960 2960 3040 3040
  1140. 3120 3120 3200 3200 3280 3280 3360 3360 3440 3440
  1141. 3520 3520 3600 3600 3680 3680 3760 3760 3840 3840
  1142. 3920 3920 4000 4000 4080 4080 4160 4160 4240 4240
  1143. 4320 4320 4400 4400 4480 4480 4560 4560 4640 4640
  1144. 4720 4720 4800 4800 4880 4880 4960 4960 5040 5040
  1145. 5120 5120 5200 5200 5280 5280 5360 5360 5440 5440
  1146. 5520 5520 5600 5600 5680 5680 5760 5760 5840 5840
  1147. 5920 5920 6000 0 80 80 160 160 240 240
  1148. 320 320 400 400 480 480 560 560 640 640
  1149. 720 720 800 800 880 880 960 960 1040 1040
  1150. 1120 1120 1200 1200 1280 1280 1360 1360 1440 1440
  1151. 1520 1520 1600 1600 1680 1680 1760 1760 1840 1840
  1152. 1920 1920 2000 2000 2080 2080 2160 2160 2240 2240
  1153. 2320 2320 2400 2400 2480 2480 2560 2560 2640 2640
  1154. 2720 2720 2800 2800 2880 2880 2960 2960 3040 3040
  1155. 3120 3120 3200 3200 3280 3280 3360 3360 3394 3440
  1156. 3440 3520 3520 3600 3600 3680 3680 3760 3760 3840
  1157. 3840 3920 3920 4000 4000 4080 4080 4160 4160 4240
  1158. 4240 4320 4320 4400 4400 4480 4480 4560 4560 4640
  1159. 4640 4720 4720 4800 4800 4880 4880 4960 4960 5040
  1160. 5040 5120 5120 5200 5200 5280 5280 5360 5360 5440
  1161. 5440 5520 5520 5600 5600 5680 5680 5760 5760 5840
  1162. 5840 5920 5920 6000 6000 6080 6080 6160 6160 6240
  1163. 6240 6320 6320 6400 0 80 80 160 160 240
  1164. 240 320 320 400 400 480 480 560 560 640
  1165. 640 720 720 800 800 880 880 960 960 1040
  1166. 1040 1120 1120 1200 1200 1280 1280 1360 1360 1440
  1167. 1440 1520 1520 1600 1600 1680 1680 1760 1760 1840
  1168. 1840 1920 1920 2000 2000 2080 2080 2160 2160 2240
  1169. 2240 2320 2320 2400 2400 2480 2480 2560 2560 2640
  1170. 2640 2720 2720 2800 2800 2880 2880 2960 2960 3040
  1171. 3040 3120 3120 3200 3200 3280 3280 3360 3360 3440
  1172. 3440 3520 3520 3600 3600 3680 3680 3760 3760 3840
  1173. 3840 3920 3920 4000 4000 4080 4080 4160 4160 4240
  1174. 4240 4320 4320 4400 4400 4480 4480 4560 4560 4640
  1175. 4640 4720 4720 4800 4800 4880 4880 4960 4960 5040
  1176. 5040 5120 5120 5200 5200 5280 5280 5360 5360 5440
  1177. 5440 5520 5520 5600 5600 5680 5680 5760 5760 5840
  1178. 5840 5920 5920 6000 6000 6080 6080 6160 6160 6240
  1179. 6240 6320 6320 6400 6400 6480 6480 6560 6560 6640
  1180. 6640 6720 6720 6800 0 80 80 160 160 240
  1181. 240 320 320 400 400 480 480 560 560 640
  1182. 640 720 720 800 800 880 880 960 960 1040
  1183. 1040 1120 1120 1200 1200 1280 1280 1360 1360 1440
  1184. 1440 1520 1520 1600 1600 1680 1680 1760 1760 1840
  1185. 1840 1920 1920 2000 2000 2080 2080 2160 2160 2240
  1186. 2240 2320 2320 2400 2400 2480 2480 2560 2560 2640
  1187. 2640 2720 2720 2800 2800 2880 2880 2960 2960 3040
  1188. 3040 3120 3120 3200 3200 3280 3280 3360 3360 3394
  1189. 3440 3440 3520 3520 3600 3600 3680 3680 3760 3760
  1190. 3840 3840 3920 3920 4000 4000 4080 4080 4160 4160
  1191. 4240 4240 4320 4320 4400 4400 4480 4480 4560 4560
  1192. 4640 4640 4720 4720 4800 4800 4880 4880 4960 4960
  1193. 5040 5040 5120 5120 5200 5200 5280 5280 5360 5360
  1194. 5440 5440 5520 5520 5600 5600 5680 5680 5760 5760
  1195. 5840 5840 5920 5920 6000 6000 6080 6080 6160 6160
  1196. 6240 6240 6320 6320 6400 6400 6480 6480 6560 6560
  1197. 6640 6640 6720 6720 6788 6800 6800 6880 6880 6960
  1198. 6960 7040 7040 7120 7120 7200 400 400 480 480
  1199. 560 560 640 640 720 720 800 800 880 880
  1200. 960 960 1040 1040 1120 1120 1200 1200 1280 1280
  1201. 1360 1360 1440 1440 1520 1520 1600 1600 1680 1680
  1202. 1760 1760 1840 1840 1920 1920 2000 2000 2080 2080
  1203. 2160 2160 2240 2240 2320 2320 2400 2400 2480 2480
  1204. 2560 2560 2640 2640 2720 2720 2800 2800 2880 2880
  1205. 2960 2960 3040 3040 3120 3120 3200 3200 3280 3280
  1206. 3360 3360 3440 3440 3520 3520 3600 3600 3680 3680
  1207. 3760 3760 3840 3840 3920 3920 4000 4000 4080 4080
  1208. 4160 4160 4240 4240 4320 4320 4400 4400 4480 4480
  1209. 4560 4560 4640 4640 4720 4720 4800 4800 4880 4880
  1210. 4960 4960 5040 5040 5120 5120 5200 5200 5280 5280
  1211. 5360 5360 5440 5440 5520 5520 5600 5600 5680 5680
  1212. 5760 5760 5840 5840 5920 5920 6000 6000 6080 6080
  1213. 6160 6160 6240 6240 6320 6320 6400 6400 6480 6480
  1214. 6560 6560 6640 6640 6720 6720 6800 6800 6880 6880
  1215. 6960 6960 7040 7040 7120 7120 7200 7200 800 800
  1216. 880 880 960 960 1040 1040 1120 1120 1200 1200
  1217. 1280 1280 1360 1360 1440 1440 1520 1520 1600 1600
  1218. 1680 1680 1760 1760 1840 1840 1920 1920 2000 2000
  1219. 2080 2080 2160 2160 2240 2240 2320 2320 2400 2400
  1220. 2480 2480 2560 2560 2640 2640 2720 2720 2800 2800
  1221. 2880 2880 2960 2960 3040 3040 3120 3120 3200 3200
  1222. 3280 3280 3360 3360 3440 3440 3520 3520 3600 3600
  1223. 3680 3680 3760 3760 3840 3840 3920 3920 4000 4000
  1224. 4080 4080 4160 4160 4194 4240 4240 4320 4320 4400
  1225. 4400 4480 4480 4560 4560 4640 4640 4720 4720 4800
  1226. 4800 4880 4880 4960 4960 5040 5040 5120 5120 5200
  1227. 5200 5280 5280 5360 5360 5440 5440 5520 5520 5600
  1228. 5600 5680 5680 5760 5760 5840 5840 5920 5920 6000
  1229. 6000 6080 6080 6160 6160 6240 6240 6320 6320 6400
  1230. 6400 6480 6480 6560 6560 6640 6640 6720 6720 6800
  1231. 6800 6880 6880 6960 6960 7040 7040 7120 7120 7200
  1232. 7200 1200 1200 1280 1280 1360 1360 1440 1440 1520
  1233. 1520 1600 1600 1680 1680 1760 1760 1840 1840 1920
  1234. 1920 2000 2000 2080 2080 2160 2160 2240 2240 2320
  1235. 2320 2400 2400 2480 2480 2560 2560 2640 2640 2720
  1236. 2720 2800 2800 2880 2880 2960 2960 3040 3040 3120
  1237. 3120 3200 3200 3280 3280 3360 3360 3440 3440 3520
  1238. 3520 3600 3600 3680 3680 3760 3760 3840 3840 3920
  1239. 3920 4000 4000 4080 4080 4160 4160 4240 4240 4320
  1240. 4320 4400 4400 4480 4480 4560 4560 4640 4640 4720
  1241. 4720 4800 4800 4880 4880 4960 4960 5040 5040 5120
  1242. 5120 5200 5200 5280 5280 5360 5360 5440 5440 5520
  1243. 5520 5600 5600 5680 5680 5760 5760 5840 5840 5920
  1244. 5920 6000 6000 6080 6080 6160 6160 6240 6240 6320
  1245. 6320 6400 6400 6480 6480 6560 6560 6640 6640 6720
  1246. 6720 6800 6800 6880 6880 6960 6960 7040 7040 7120
  1247. 7120 7200 7200 1600 1600 1680 1680 1760 1760 1840
  1248. 1840 1920 1920 2000 2000 2080 2080 2160 2160 2240
  1249. 2240 2320 2320 2400 2400 2480 2480 2560 2560 2640
  1250. 2640 2720 2720 2800 2800 2880 2880 2960 2960 3040
  1251. 3040 3120 3120 3200 3200 3280 3280 3360 3360 3440
  1252. 3440 3520 3520 3600 3600 3680 3680 3760 3760 3840
  1253. 3840 3920 3920 4000 4000 4080 4080 4160 4160 4240
  1254. 4240 4320 4320 4400 4400 4480 4480 4560 4560 4640
  1255. 4640 4720 4720 4800 4800 4880 4880 4960 4960 4994
  1256. 5040 5040 5120 5120 5200 5200 5280 5280 5360 5360
  1257. 5440 5440 5520 5520 5600 5600 5680 5680 5760 5760
  1258. 5840 5840 5920 5920 6000 6000 6080 6080 6160 6160
  1259. 6240 6240 6320 6320 6400 6400 6480 6480 6560 6560
  1260. 6640 6640 6720 6720 6800 6800 6880 6880 6960 6960
  1261. 7040 7040 7120 7120 7200 7200 2000 2000 2080 2080
  1262. 2160 2160 2240 2240 2320 2320 2400 2400 2480 2480
  1263. 2560 2560 2640 2640 2720 2720 2800 2800 2880 2880
  1264. 2960 2960 3040 3040 3120 3120 3200 3200 3280 3280
  1265. 3360 3360 3440 3440 3520 3520 3600 3600 3680 3680
  1266. 3760 3760 3840 3840 3920 3920 4000 4000 4080 4080
  1267. 4160 4160 4240 4240 4320 4320 4400 4400 4480 4480
  1268. 4560 4560 4640 4640 4720 4720 4800 4800 4880 4880
  1269. 4960 4960 5040 5040 5120 5120 5200 5200 5280 5280
  1270. 5360 5360 5440 5440 5520 5520 5600 5600 5680 5680
  1271. 5760 5760 5840 5840 5920 5920 6000 6000 6080 6080
  1272. 6160 6160 6240 6240 6320 6320 6400 6400 6480 6480
  1273. 6560 6560 6640 6640 6720 6720 6800 6800 6880 6880
  1274. 6960 6960 7040 7040 7120 7120 7200 7200 2400 2400
  1275. 2480 2480 2560 2560 2640 2640 2720 2720 2800 2800
  1276. 2880 2880 2960 2960 3040 3040 3120 3120 3200 3200
  1277. 3280 3280 3360 3360 3440 3440 3520 3520 3600 3600
  1278. 3680 3680 3760 3760 3840 3840 3920 3920 4000 4000
  1279. 4080 4080 4160 4160 4240 4240 4320 4320 4400 4400
  1280. 4480 4480 4560 4560 4640 4640 4720 4720 4800 4800
  1281. 4880 4880 4960 4960 5040 5040 5120 5120 5200 5200
  1282. 5280 5280 5360 5360 5440 5440 5520 5520 5600 5600
  1283. 5680 5680 5760 5760 5794 5840 5840 5920 5920 6000
  1284. 6000 6080 6080 6160 6160 6240 6240 6320 6320 6400
  1285. 6400 6480 6480 6560 6560 6640 6640 6720 6720 6800
  1286. 6800 6880 6880 6960 6960 7040 7040 7120 7120 7200
  1287. 7200 2800 2800 2880 2880 2960 2960 3040 3040 3120
  1288. 3120 3200 3200 3280 3280 3360 3360 3440 3440 3520
  1289. 3520 3600 3600 3680 3680 3760 3760 3840 3840 3920
  1290. 3920 4000 4000 4080 4080 4160 4160 4240 4240 4320
  1291. 4320 4400 4400 4480 4480 4560 4560 4640 4640 4720
  1292. 4720 4800 4800 4880 4880 4960 4960 5040 5040 5120
  1293. 5120 5200 5200 5280 5280 5360 5360 5440 5440 5520
  1294. 5520 5600 5600 5680 5680 5760 5760 5840 5840 5920
  1295. 5920 6000 6000 6080 6080 6160 6160 6240 6240 6320
  1296. 6320 6400 6400 6480 6480 6560 6560 6640 6640 6720
  1297. 6720 6800 6800 6880 6880 6960 6960 7040 7040 7120
  1298. 7120 7200 7200 3200 3200 3280 3280 3360 3360 3440
  1299. 3440 3520 3520 3600 3600 3680 3680 3760 3760 3840
  1300. 3840 3920 3920 4000 4000 4080 4080 4160 4160 4240
  1301. 4240 4320 4320 4400 4400 4480 4480 4560 4560 4640
  1302. 4640 4720 4720 4800 4800 4880 4880 4960 4960 5040
  1303. 5040 5120 5120 5200 5200 5280 5280 5360 5360 5440
  1304. 5440 5520 5520 5600 5600 5680 5680 5760 5760 5840
  1305. 5840 5920 5920 6000 6000 6080 6080 6160 6160 6240
  1306. 6240 6320 6320 6400 6400 6480 6480 6560 6560 6594
  1307. 6640 6640 6720 6720 6800 6800 6880 6880 6960 6960
  1308. 7040 7040 7120 7120 7200 7200 3600 3600 3680 3680
  1309. 3760 3760 3840 3840 3920 3920 4000 4000 4080 4080
  1310. 4160 4160 4240 4240 4320 4320 4400 4400 4480 4480
  1311. 4560 4560 4640 4640 4720 4720 4800 4800 4880 4880
  1312. 4960 4960 5040 5040 5120 5120 5200 5200 5280 5280
  1313. 5360 5360 5440 5440 5520 5520 5600 5600 5680 5680
  1314. 5760 5760 5840 5840 5920 5920 6000 6000 6080 6080
  1315. 6160 6160 6240 6240 6320 6320 6400 6400 6480 6480
  1316. 6560 6560 6640 6640 6720 6720 6800 6800 6880 6880
  1317. 6960 6960 7040 7040 7120 7120 7200 7200 4000 4000
  1318. 4080 4080 4160 4160 4240 4240 4320 4320 4400 4400
  1319. 4480 4480 4560 4560 4640 4640 4720 4720 4800 4800
  1320. 4880 4880 4960 4960 5040 5040 5120 5120 5200 5200
  1321. 5280 5280 5360 5360 5440 5440 5520 5520 5600 5600
  1322. 5680 5680 5760 5760 5840 5840 5920 5920 6000 6000
  1323. 6080 6080 6160 6160 6240 6240 6320 6320 6400 6400
  1324. 6480 6480 6560 6560 6640 6640 6720 6720 6800 6800
  1325. 6880 6880 6960 6960 7040 7040 7120 7120 7200 7200
  1326. 4400 4400 4480 4480 4560 4560 4640 4640 4720 4720
  1327. 4800 4800 4880 4880 4960 4960 5040 5040 5120 5120
  1328. 5200 5200 5280 5280 5360 5360 5440 5440 5520 5520
  1329. 5600 5600 5680 5680 5760 5760 5840 5840 5920 5920
  1330. 6000 6000 6080 6080 6160 6160 6240 6240 6320 6320
  1331. 6400 6400 6480 6480 6560 6560 6640 6640 6720 6720
  1332. 6800 6800 6880 6880 6960 6960 7040 7040 7120 7120
  1333. 7200 7200 4800 4800 4880 4880 4960 4960 5040 5040
  1334. 5120 5120 5200 5200 5280 5280 5360 5360 5440 5440
  1335. 5520 5520 5600 5600 5680 5680 5760 5760 5840 5840
  1336. 5920 5920 6000 6000 6080 6080 6160 6160 6240 6240
  1337. 6320 6320 6400 6400 6480 6480 6560 6560 6640 6640
  1338. 6720 6720 6800 6800 6880 6880 6960 6960 7040 7040
  1339. 7120 7120 7200 7200 5200 5200 5280 5280 5360 5360
  1340. 5440 5440 5520 5520 5600 5600 5680 5680 5760 5760
  1341. 5840 5840 5920 5920 6000 6000 6080 6080 6160 6160
  1342. 6240 6240 6320 6320 6400 6400 6480 6480 6560 6560
  1343. 6640 6640 6720 6720 6800 6800 6880 6880 6960 6960
  1344. 7040 7040 7120 7120 7200 7200 5600 5600 5680 5680
  1345. 5760 5760 5840 5840 5920 5920 6000 6000 6080 6080
  1346. 6160 6160 6240 6240 6320 6320 6400 6400 6480 6480
  1347. 6560 6560 6640 6640 6720 6720 6800 6800 6880 6880
  1348. 6960 6960 7040 7040 7120 7120 7200 7200 6000 6000
  1349. 6080 6080 6160 6160 6240 6240 6320 6320 6400 6400
  1350. 6480 6480 6560 6560 6640 6640 6720 6720 6800 6800
  1351. 6880 6880 6960 6960 7040 7040 7120 7120 7200 7200
  1352. 6400 6400 6480 6480 6560 6560 6640 6640 6720 6720
  1353. 6800 6800 6880 6880 6960 6960 7040 7040 7120 7120
  1354. 7200 7200 6800 6800 6880 6880 6960 6960 7040 7040
  1355. 7120 7120 7200 7200 7200 7200 ] def
  1356. /PSL_path_n [ 10 20 30 40 50 60 70 80 90 101
  1357. 110 121 130 141 150 161 170 182 172 163
  1358. 152 143 132 123 112 103 92 82 72 62
  1359. 52 42 32 22 12 2 ] def
  1360. /PSL_label_angle [ 315.00 315.00 315.00 315.00 315.00 315.00 315.00 315.00 315.00 315.00
  1361. ] def
  1362. /PSL_label_str [
  1363. (50)
  1364. (60)
  1365. (70)
  1366. (80)
  1367. (90)
  1368. (90)
  1369. (100)
  1370. (110)
  1371. (120)
  1372. (130)
  1373. ] def
  1374. /PSL_label_n [ 0 0 0 0 0 0 0 0 0 1
  1375. 0 1 0 1 0 1 0 2 0 1
  1376. 0 1 0 1 0 1 0 0 0 0
  1377. 0 0 0 0 0 0 ] def
  1378. /PSL_n_paths 36 def
  1379. /PSL_n_labels 10 def
  1380. /PSL_txt_x [ 606 1406 2206 3006 3806 412 3806 3806 3806 3806
  1381. ] def
  1382. /PSL_txt_y [ 3394 3394 3394 3394 3394 6788 4194 4994 5794 6594
  1383. ] def
  1384. /PSL_txt_n [ 10 ] def
  1385. PSL_set_label_heights
  1386. 2 PSL_straight_path_labels
  1387. V
  1388. 4 PSL_straight_path_clip
  1389. PSL_draw_path_lines N
  1390. PSL_cliprestore
  1391. U
  1392. PSL_cliprestore
  1393. 25 W
  1394. 2 setlinecap
  1395. N 0 7200 M 0 -7200 D S
  1396. /PSL_A0_y 83 def
  1397. /PSL_A1_y 0 def
  1398. 8 W
  1399. N 0 0 M -83 0 D S
  1400. N 0 800 M -83 0 D S
  1401. N 0 1600 M -83 0 D S
  1402. N 0 2400 M -83 0 D S
  1403. N 0 3200 M -83 0 D S
  1404. N 0 4000 M -83 0 D S
  1405. N 0 4800 M -83 0 D S
  1406. N 0 5600 M -83 0 D S
  1407. N 0 6400 M -83 0 D S
  1408. N 0 7200 M -83 0 D S
  1409. /PSL_AH0 0
  1410. /MM {neg exch M} def
  1411. 150 F0
  1412. (0) sw mx
  1413. (10) sw mx
  1414. (20) sw mx
  1415. (30) sw mx
  1416. (40) sw mx
  1417. (50) sw mx
  1418. (60) sw mx
  1419. (70) sw mx
  1420. (80) sw mx
  1421. (90) sw mx
  1422. def
  1423. /PSL_A0_y PSL_A0_y 83 add def
  1424. 0 PSL_A0_y MM
  1425. (0) mr Z
  1426. 800 PSL_A0_y MM
  1427. (10) mr Z
  1428. 1600 PSL_A0_y MM
  1429. (20) mr Z
  1430. 2400 PSL_A0_y MM
  1431. (30) mr Z
  1432. 3200 PSL_A0_y MM
  1433. (40) mr Z
  1434. 4000 PSL_A0_y MM
  1435. (50) mr Z
  1436. 4800 PSL_A0_y MM
  1437. (60) mr Z
  1438. 5600 PSL_A0_y MM
  1439. (70) mr Z
  1440. 6400 PSL_A0_y MM
  1441. (80) mr Z
  1442. 7200 PSL_A0_y MM
  1443. (90) mr Z
  1444. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1445. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1446. 7200 0 T
  1447. 25 W
  1448. N 0 7200 M 0 -7200 D S
  1449. /PSL_A0_y 83 def
  1450. /PSL_A1_y 0 def
  1451. 8 W
  1452. N 0 0 M 83 0 D S
  1453. N 0 800 M 83 0 D S
  1454. N 0 1600 M 83 0 D S
  1455. N 0 2400 M 83 0 D S
  1456. N 0 3200 M 83 0 D S
  1457. N 0 4000 M 83 0 D S
  1458. N 0 4800 M 83 0 D S
  1459. N 0 5600 M 83 0 D S
  1460. N 0 6400 M 83 0 D S
  1461. N 0 7200 M 83 0 D S
  1462. /PSL_AH0 0
  1463. /MM {exch M} def
  1464. (0) sw mx
  1465. (10) sw mx
  1466. (20) sw mx
  1467. (30) sw mx
  1468. (40) sw mx
  1469. (50) sw mx
  1470. (60) sw mx
  1471. (70) sw mx
  1472. (80) sw mx
  1473. (90) sw mx
  1474. def
  1475. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1476. 0 PSL_A0_y MM
  1477. (0) mr Z
  1478. 800 PSL_A0_y MM
  1479. (10) mr Z
  1480. 1600 PSL_A0_y MM
  1481. (20) mr Z
  1482. 2400 PSL_A0_y MM
  1483. (30) mr Z
  1484. 3200 PSL_A0_y MM
  1485. (40) mr Z
  1486. 4000 PSL_A0_y MM
  1487. (50) mr Z
  1488. 4800 PSL_A0_y MM
  1489. (60) mr Z
  1490. 5600 PSL_A0_y MM
  1491. (70) mr Z
  1492. 6400 PSL_A0_y MM
  1493. (80) mr Z
  1494. 7200 PSL_A0_y MM
  1495. (90) mr Z
  1496. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1497. -7200 0 T
  1498. 25 W
  1499. N 0 0 M 7200 0 D S
  1500. /PSL_A0_y 83 def
  1501. /PSL_A1_y 250 def
  1502. 8 W
  1503. N 240 0 M 0 -83 D S
  1504. N 800 0 M 0 -83 D S
  1505. N 1360 0 M 0 -83 D S
  1506. N 1920 0 M 0 -83 D S
  1507. N 3040 0 M 0 -83 D S
  1508. N 3600 0 M 0 -83 D S
  1509. N 4160 0 M 0 -83 D S
  1510. N 4720 0 M 0 -83 D S
  1511. N 5280 0 M 0 -83 D S
  1512. N 5840 0 M 0 -83 D S
  1513. N 6400 0 M 0 -83 D S
  1514. N 6960 0 M 0 -83 D S
  1515. /PSL_AH0 0
  1516. /MM {neg M} def
  1517. (4) sh mx
  1518. (11) sh mx
  1519. (18) sh mx
  1520. (25) sh mx
  1521. (1) sh mx
  1522. (8) sh mx
  1523. (15) sh mx
  1524. (22) sh mx
  1525. (29) sh mx
  1526. (7) sh mx
  1527. (14) sh mx
  1528. (21) sh mx
  1529. (28) sh mx
  1530. def
  1531. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1532. 280 PSL_A0_y MM
  1533. (4) bc Z
  1534. 840 PSL_A0_y MM
  1535. (11) bc Z
  1536. 1400 PSL_A0_y MM
  1537. (18) bc Z
  1538. 1960 PSL_A0_y MM
  1539. (25) bc Z
  1540. 2520 PSL_A0_y MM
  1541. (1) bc Z
  1542. 3080 PSL_A0_y MM
  1543. (8) bc Z
  1544. 3640 PSL_A0_y MM
  1545. (15) bc Z
  1546. 4200 PSL_A0_y MM
  1547. (22) bc Z
  1548. 4760 PSL_A0_y MM
  1549. (29) bc Z
  1550. 5320 PSL_A0_y MM
  1551. (7) bc Z
  1552. 5880 PSL_A0_y MM
  1553. (14) bc Z
  1554. 6440 PSL_A0_y MM
  1555. (21) bc Z
  1556. 7000 PSL_A0_y MM
  1557. (28) bc Z
  1558. N 0 0 M 0 -250 D S
  1559. N 2480 0 M 0 -250 D S
  1560. N 4800 0 M 0 -250 D S
  1561. /PSL_AH1 0
  1562. 233 F0
  1563. (January-04) sh mx
  1564. (February-04) sh mx
  1565. (March-04) sh mx
  1566. def
  1567. /PSL_A1_y PSL_A0_y PSL_A1_y mx 83 add PSL_AH1 add def
  1568. 1240 PSL_A1_y MM
  1569. (January-04) bc Z
  1570. 3640 PSL_A1_y MM
  1571. (February-04) bc Z
  1572. 6000 PSL_A1_y MM
  1573. (March-04) bc Z
  1574. N 80 0 M 0 -42 D S
  1575. N 160 0 M 0 -42 D S
  1576. N 240 0 M 0 -42 D S
  1577. N 320 0 M 0 -42 D S
  1578. N 400 0 M 0 -42 D S
  1579. N 480 0 M 0 -42 D S
  1580. N 560 0 M 0 -42 D S
  1581. N 640 0 M 0 -42 D S
  1582. N 720 0 M 0 -42 D S
  1583. N 800 0 M 0 -42 D S
  1584. N 880 0 M 0 -42 D S
  1585. N 960 0 M 0 -42 D S
  1586. N 1040 0 M 0 -42 D S
  1587. N 1120 0 M 0 -42 D S
  1588. N 1200 0 M 0 -42 D S
  1589. N 1280 0 M 0 -42 D S
  1590. N 1360 0 M 0 -42 D S
  1591. N 1440 0 M 0 -42 D S
  1592. N 1520 0 M 0 -42 D S
  1593. N 1600 0 M 0 -42 D S
  1594. N 1680 0 M 0 -42 D S
  1595. N 1760 0 M 0 -42 D S
  1596. N 1840 0 M 0 -42 D S
  1597. N 1920 0 M 0 -42 D S
  1598. N 2000 0 M 0 -42 D S
  1599. N 2080 0 M 0 -42 D S
  1600. N 2160 0 M 0 -42 D S
  1601. N 2240 0 M 0 -42 D S
  1602. N 2320 0 M 0 -42 D S
  1603. N 2400 0 M 0 -42 D S
  1604. N 2560 0 M 0 -42 D S
  1605. N 2640 0 M 0 -42 D S
  1606. N 2720 0 M 0 -42 D S
  1607. N 2800 0 M 0 -42 D S
  1608. N 2880 0 M 0 -42 D S
  1609. N 2960 0 M 0 -42 D S
  1610. N 3040 0 M 0 -42 D S
  1611. N 3120 0 M 0 -42 D S
  1612. N 3200 0 M 0 -42 D S
  1613. N 3280 0 M 0 -42 D S
  1614. N 3360 0 M 0 -42 D S
  1615. N 3440 0 M 0 -42 D S
  1616. N 3520 0 M 0 -42 D S
  1617. N 3600 0 M 0 -42 D S
  1618. N 3680 0 M 0 -42 D S
  1619. N 3760 0 M 0 -42 D S
  1620. N 3840 0 M 0 -42 D S
  1621. N 3920 0 M 0 -42 D S
  1622. N 4000 0 M 0 -42 D S
  1623. N 4080 0 M 0 -42 D S
  1624. N 4160 0 M 0 -42 D S
  1625. N 4240 0 M 0 -42 D S
  1626. N 4320 0 M 0 -42 D S
  1627. N 4400 0 M 0 -42 D S
  1628. N 4480 0 M 0 -42 D S
  1629. N 4560 0 M 0 -42 D S
  1630. N 4640 0 M 0 -42 D S
  1631. N 4720 0 M 0 -42 D S
  1632. N 4880 0 M 0 -42 D S
  1633. N 4960 0 M 0 -42 D S
  1634. N 5040 0 M 0 -42 D S
  1635. N 5120 0 M 0 -42 D S
  1636. N 5200 0 M 0 -42 D S
  1637. N 5280 0 M 0 -42 D S
  1638. N 5360 0 M 0 -42 D S
  1639. N 5440 0 M 0 -42 D S
  1640. N 5520 0 M 0 -42 D S
  1641. N 5600 0 M 0 -42 D S
  1642. N 5680 0 M 0 -42 D S
  1643. N 5760 0 M 0 -42 D S
  1644. N 5840 0 M 0 -42 D S
  1645. N 5920 0 M 0 -42 D S
  1646. N 6000 0 M 0 -42 D S
  1647. N 6080 0 M 0 -42 D S
  1648. N 6160 0 M 0 -42 D S
  1649. N 6240 0 M 0 -42 D S
  1650. N 6320 0 M 0 -42 D S
  1651. N 6400 0 M 0 -42 D S
  1652. N 6480 0 M 0 -42 D S
  1653. N 6560 0 M 0 -42 D S
  1654. N 6640 0 M 0 -42 D S
  1655. N 6720 0 M 0 -42 D S
  1656. N 6800 0 M 0 -42 D S
  1657. N 6880 0 M 0 -42 D S
  1658. N 6960 0 M 0 -42 D S
  1659. N 7040 0 M 0 -42 D S
  1660. N 7120 0 M 0 -42 D S
  1661. N 7200 0 M 0 -42 D S
  1662. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1663. 0 7200 T
  1664. 25 W
  1665. N 0 0 M 7200 0 D S
  1666. /PSL_A0_y 83 def
  1667. /PSL_A1_y 250 def
  1668. 8 W
  1669. N 240 0 M 0 83 D S
  1670. N 800 0 M 0 83 D S
  1671. N 1360 0 M 0 83 D S
  1672. N 1920 0 M 0 83 D S
  1673. N 3040 0 M 0 83 D S
  1674. N 3600 0 M 0 83 D S
  1675. N 4160 0 M 0 83 D S
  1676. N 4720 0 M 0 83 D S
  1677. N 5280 0 M 0 83 D S
  1678. N 5840 0 M 0 83 D S
  1679. N 6400 0 M 0 83 D S
  1680. N 6960 0 M 0 83 D S
  1681. /PSL_AH0 0
  1682. /MM {M} def
  1683. 150 F0
  1684. (4) sh mx
  1685. (11) sh mx
  1686. (18) sh mx
  1687. (25) sh mx
  1688. (1) sh mx
  1689. (8) sh mx
  1690. (15) sh mx
  1691. (22) sh mx
  1692. (29) sh mx
  1693. (7) sh mx
  1694. (14) sh mx
  1695. (21) sh mx
  1696. (28) sh mx
  1697. def
  1698. /PSL_A0_y PSL_A0_y 83 add def
  1699. 280 PSL_A0_y MM
  1700. (4) bc Z
  1701. 840 PSL_A0_y MM
  1702. (11) bc Z
  1703. 1400 PSL_A0_y MM
  1704. (18) bc Z
  1705. 1960 PSL_A0_y MM
  1706. (25) bc Z
  1707. 2520 PSL_A0_y MM
  1708. (1) bc Z
  1709. 3080 PSL_A0_y MM
  1710. (8) bc Z
  1711. 3640 PSL_A0_y MM
  1712. (15) bc Z
  1713. 4200 PSL_A0_y MM
  1714. (22) bc Z
  1715. 4760 PSL_A0_y MM
  1716. (29) bc Z
  1717. 5320 PSL_A0_y MM
  1718. (7) bc Z
  1719. 5880 PSL_A0_y MM
  1720. (14) bc Z
  1721. 6440 PSL_A0_y MM
  1722. (21) bc Z
  1723. 7000 PSL_A0_y MM
  1724. (28) bc Z
  1725. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1726. N 0 0 M 0 250 D S
  1727. N 2480 0 M 0 250 D S
  1728. N 4800 0 M 0 250 D S
  1729. /PSL_AH1 0
  1730. 233 F0
  1731. (January-04) sh mx
  1732. (February-04) sh mx
  1733. (March-04) sh mx
  1734. def
  1735. /PSL_A1_y PSL_A0_y PSL_A1_y mx 83 add def
  1736. 1240 PSL_A1_y MM
  1737. (January-04) bc Z
  1738. 3640 PSL_A1_y MM
  1739. (February-04) bc Z
  1740. 6000 PSL_A1_y MM
  1741. (March-04) bc Z
  1742. /PSL_A1_y PSL_A1_y PSL_AH1 add def
  1743. N 80 0 M 0 42 D S
  1744. N 160 0 M 0 42 D S
  1745. N 240 0 M 0 42 D S
  1746. N 320 0 M 0 42 D S
  1747. N 400 0 M 0 42 D S
  1748. N 480 0 M 0 42 D S
  1749. N 560 0 M 0 42 D S
  1750. N 640 0 M 0 42 D S
  1751. N 720 0 M 0 42 D S
  1752. N 800 0 M 0 42 D S
  1753. N 880 0 M 0 42 D S
  1754. N 960 0 M 0 42 D S
  1755. N 1040 0 M 0 42 D S
  1756. N 1120 0 M 0 42 D S
  1757. N 1200 0 M 0 42 D S
  1758. N 1280 0 M 0 42 D S
  1759. N 1360 0 M 0 42 D S
  1760. N 1440 0 M 0 42 D S
  1761. N 1520 0 M 0 42 D S
  1762. N 1600 0 M 0 42 D S
  1763. N 1680 0 M 0 42 D S
  1764. N 1760 0 M 0 42 D S
  1765. N 1840 0 M 0 42 D S
  1766. N 1920 0 M 0 42 D S
  1767. N 2000 0 M 0 42 D S
  1768. N 2080 0 M 0 42 D S
  1769. N 2160 0 M 0 42 D S
  1770. N 2240 0 M 0 42 D S
  1771. N 2320 0 M 0 42 D S
  1772. N 2400 0 M 0 42 D S
  1773. N 2560 0 M 0 42 D S
  1774. N 2640 0 M 0 42 D S
  1775. N 2720 0 M 0 42 D S
  1776. N 2800 0 M 0 42 D S
  1777. N 2880 0 M 0 42 D S
  1778. N 2960 0 M 0 42 D S
  1779. N 3040 0 M 0 42 D S
  1780. N 3120 0 M 0 42 D S
  1781. N 3200 0 M 0 42 D S
  1782. N 3280 0 M 0 42 D S
  1783. N 3360 0 M 0 42 D S
  1784. N 3440 0 M 0 42 D S
  1785. N 3520 0 M 0 42 D S
  1786. N 3600 0 M 0 42 D S
  1787. N 3680 0 M 0 42 D S
  1788. N 3760 0 M 0 42 D S
  1789. N 3840 0 M 0 42 D S
  1790. N 3920 0 M 0 42 D S
  1791. N 4000 0 M 0 42 D S
  1792. N 4080 0 M 0 42 D S
  1793. N 4160 0 M 0 42 D S
  1794. N 4240 0 M 0 42 D S
  1795. N 4320 0 M 0 42 D S
  1796. N 4400 0 M 0 42 D S
  1797. N 4480 0 M 0 42 D S
  1798. N 4560 0 M 0 42 D S
  1799. N 4640 0 M 0 42 D S
  1800. N 4720 0 M 0 42 D S
  1801. N 4880 0 M 0 42 D S
  1802. N 4960 0 M 0 42 D S
  1803. N 5040 0 M 0 42 D S
  1804. N 5120 0 M 0 42 D S
  1805. N 5200 0 M 0 42 D S
  1806. N 5280 0 M 0 42 D S
  1807. N 5360 0 M 0 42 D S
  1808. N 5440 0 M 0 42 D S
  1809. N 5520 0 M 0 42 D S
  1810. N 5600 0 M 0 42 D S
  1811. N 5680 0 M 0 42 D S
  1812. N 5760 0 M 0 42 D S
  1813. N 5840 0 M 0 42 D S
  1814. N 5920 0 M 0 42 D S
  1815. N 6000 0 M 0 42 D S
  1816. N 6080 0 M 0 42 D S
  1817. N 6160 0 M 0 42 D S
  1818. N 6240 0 M 0 42 D S
  1819. N 6320 0 M 0 42 D S
  1820. N 6400 0 M 0 42 D S
  1821. N 6480 0 M 0 42 D S
  1822. N 6560 0 M 0 42 D S
  1823. N 6640 0 M 0 42 D S
  1824. N 6720 0 M 0 42 D S
  1825. N 6800 0 M 0 42 D S
  1826. N 6880 0 M 0 42 D S
  1827. N 6960 0 M 0 42 D S
  1828. N 7040 0 M 0 42 D S
  1829. N 7120 0 M 0 42 D S
  1830. N 7200 0 M 0 42 D S
  1831. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1832. 0 -7200 T
  1833. 0 setlinecap
  1834. %%EndObject
  1835. %%PageTrailer
  1836. U
  1837. showpage
  1838. %%Trailer
  1839. end
  1840. %%EOF
Tip!

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

Comments

Loading...