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

psldemo.ps 88 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
  1. %!PS-Adobe-3.0
  2. %%BoundingBox: 0 0 612 792
  3. %%HiResBoundingBox: 0 0 612 792
  4. %%Title: PSL v5.0 document
  5. %%Creator: PSL
  6. %%For: unknown
  7. %%CreationDate: Sat Oct 14 09:28:26 2017
  8. %%LanguageLevel: 2
  9. %%DocumentData: Clean7Bit
  10. %%Orientation: Portrait
  11. %%Pages: 1
  12. %%EndComments
  13. %%BeginProlog
  14. % Begin pslib header
  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. % Path fill
  46. /FS {/fc edef /fs {V fc F U} def}!
  47. /FQ {/fs {} def}!
  48. % Outline off or on
  49. /O0 {/os {N} def}!
  50. /O1 {/os {P S} def}!
  51. % Set both fill and outline
  52. /FO {fs os}!
  53. % Star: radius xc yc
  54. /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}!
  55. % Box: height width xll yll
  56. /Sb {M dup 0 D exch 0 exch D neg 0 D FO}!
  57. % Rounded box: height width radius xll yll
  58. /SB {MS T /BoxR edef /BoxW edef /BoxH edef BoxR 0 M
  59. 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}!
  60. % Circle: radius xc yc
  61. /Sc {N 3 -1 roll 0 360 arc FO}!
  62. % Diamond: radius xc yc
  63. /Sd {M 4 {dup} repeat 0 G neg dup dup D exch D D FO}!
  64. % Ellipse: major minor angle xc yc
  65. /Se {N MS T R scale 0 0 1 0 360 arc MR FO}!
  66. % Octagon: radius xc yc
  67. /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}!
  68. % Hexagon: radius xc yc
  69. /Sh {M MS dup 0 G -120 R dup 0 D 4 {-60 R dup 0 D} repeat pop MR FO}!
  70. % Inverted triangle: radius xc yc
  71. /Si {M MS dup neg 0 exch G 60 R 1.732050808 mul dup 0 D 120 R 0 D MR FO}!
  72. % Rotated rectangle: height width angle xc yc
  73. /Sj {M MS R dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D MR FO}!
  74. % Pentagon: radius xc yc
  75. /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}!
  76. % Dot: radius xc yc [hardwired as circle with no outline]
  77. /Sp {N 3 -1 roll 0 360 arc fs N}!
  78. % Patch fill: x1 y1 ... xn yn n
  79. /SP {M {D} repeat FO}!
  80. % Rectangle: height width xc yc
  81. /Sr {M dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D FO}!
  82. % Rounded rectangle: height width radius xc yc
  83. /SR {MS T /BoxR edef /BoxW edef /BoxH edef BoxR BoxW -2 div BoxH -2 div T BoxR 0 M
  84. 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}!
  85. % Square: radius xc yc
  86. /Ss {M 1.414213562 mul dup dup dup -2 div dup G 0 D 0 exch D neg 0 D FO}!
  87. % Triangle: radius xc yc
  88. /St {M MS dup 0 exch G -60 R 1.732050808 mul dup 0 D -120 R 0 D MR FO}!
  89. % Single-headed vector
  90. /SV {0 exch M 0 D D D D D 0 D FO}!
  91. % Double-headed vector
  92. /Sv {0 0 M D D 0 D D D D D 0 D D FO}!
  93. % Pie Wedge: radius angle1 angle2 xc yc
  94. /Sw {2 copy M 5 2 roll arc FO}!
  95. % Cross: radius xc yc
  96. /Sx {M 1.414213562 mul 5 {dup} repeat -2 div dup G D neg 0 G neg D S}!
  97. % Y-dash: radius xc yc
  98. /Sy {M dup 0 exch G dup -2 mul dup 0 exch D S}!
  99. % Plus: radius xc yc
  100. /S+ {M dup 0 G dup -2 mul dup 0 D exch dup G 0 exch D S}!
  101. % X-dash: radius xc yc
  102. /S- {M dup 0 G dup -2 mul dup 0 D S}!
  103. % String width, height, depth and total height (height-depth)
  104. /sw {stringwidth pop}!
  105. /sh {V MU 0 0 M FP pathbbox N 4 1 roll pop pop pop U}!
  106. /sd {V MU 0 0 M FP pathbbox N pop pop exch pop U}!
  107. /sH {V MU 0 0 M FP pathbbox N exch pop exch sub exch pop U}!
  108. /sb {E exch sh}!
  109. % To align text {bottom,middle,top}{left,center,right}
  110. /bl {}!
  111. /bc {E -2 div 0 G}!
  112. /br {E neg 0 G}!
  113. /ml {dup 0 exch sh -2 div G}!
  114. /mc {dup E -2 div exch sh -2 div G}!
  115. /mr {dup E neg exch sh -2 div G}!
  116. /tl {dup 0 exch sh neg G}!
  117. /tc {dup E -2 div exch sh neg G}!
  118. /tr {dup E neg exch sh neg G}!
  119. % Maximum of two numbers
  120. /mx {2 copy lt {exch} if pop}!
  121. % Translate and memorize advance
  122. /PSL_xorig 0 def /PSL_yorig 0 def
  123. /TM {2 copy T PSL_yorig add /PSL_yorig edef PSL_xorig add /PSL_xorig edef}!
  124. % To reencode one font with the provided encoding vector
  125. /PSL_reencode {findfont dup length dict begin
  126. {1 index /FID ne {def}{pop pop} ifelse} forall
  127. exch /Encoding edef currentdict end definefont pop
  128. }!
  129. /PSL_eps_begin { % Marks begin of EPSF inclusion
  130. /PSL_eps_state save def % Save state for cleanup
  131. /PSL_dict_count countdictstack def % Count objects on dict stack
  132. /PSL_op_count count 1 sub def % Count objects on operand stack
  133. userdict begin % Push userdict stack
  134. /showpage {} def % Deactivate showpage command
  135. 0 setgray 0 setlinecap 1 setlinewidth % Prepare clean graphics state
  136. 0 setlinejoin 10 setmiterlimit [] 0 setdash newpath
  137. /languagelevel where % If level != 1, set strokeadjust and overprint to their defaults
  138. {pop languagelevel 1 ne {false setstrokeadjust false setoverprint} if} if
  139. }!
  140. /PSL_eps_end { % Marks end of EPSF inclusion
  141. count PSL_op_count sub {pop} repeat % Clean up operand stack
  142. countdictstack PSL_dict_count sub {end} repeat % Clean up dict stack
  143. PSL_eps_state restore % Restore saved state
  144. }!
  145. /PSL_transp { % Set transparency
  146. /.setopacityalpha where {pop .setblendmode .setopacityalpha}{ % Using ghostscript
  147. /pdfmark where {pop [ /BM exch /CA exch dup /ca exch /SetTransparency pdfmark} % Or Adobe
  148. {pop pop} ifelse} ifelse % Or skip if neither are supported
  149. }!
  150. /Standard+_Encoding [
  151. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  152. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  153. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  154. /.notdef /threequarters /threesuperior /trademark /twosuperior /yacute /ydieresis /zcaron
  155. /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
  156. /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash
  157. /zero /one /two /three /four /five /six /seven
  158. /eight /nine /colon /semicolon /less /equal /greater /question
  159. /at /A /B /C /D /E /F /G
  160. /H /I /J /K /L /M /N /O
  161. /P /Q /R /S /T /U /V /W
  162. /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
  163. /quoteleft /a /b /c /d /e /f /g
  164. /h /i /j /k /l /m /n /o
  165. /p /q /r /s /t /u /v /w
  166. /x /y /z /braceleft /bar /braceright /asciitilde /florin
  167. /Atilde /Ccedilla /Eth /Lslash /Ntilde /Otilde /Scaron /Thorn
  168. /Yacute /Ydieresis /Zcaron /atilde /brokenbar /ccedilla /copyright /degree
  169. /divide /eth /logicalnot /lslash /minus /mu /multiply /ntilde
  170. /onehalf /onequarter /onesuperior /otilde /plusminus /registered /scaron /thorn
  171. /.notdef /exclamdown /cent /sterling /fraction /yen /florin /section
  172. /currency /quotesingle /quotedblleft /guillemotleft /guilsinglleft /guilsinglright /fi /fl
  173. /Aacute /endash /dagger /daggerdbl /periodcentered /Acircumflex /paragraph /bullet
  174. /quotesinglbase /quotedblbase /quotedblright /guillemotright /ellipsis /perthousand /Adieresis /questiondown
  175. /Agrave /grave /acute /circumflex /tilde /macron /breve /dotaccent
  176. /dieresis /Eacute /ring /cedilla /Ecircumflex /hungarumlaut /ogonek /caron
  177. /emdash /Edieresis /Egrave /Iacute /Icircumflex /Idieresis /Igrave /Oacute
  178. /Ocircumflex /Odieresis /Ograve /Uacute /Ucircumflex /Udieresis /Ugrave /aacute
  179. /acircumflex /AE /adieresis /ordfeminine /agrave /eacute /ecircumflex /edieresis
  180. /egrave /Oslash /OE /ordmasculine /iacute /icircumflex /idieresis /igrave
  181. /oacute /ae /ocircumflex /odieresis /ograve /dotlessi /uacute /ucircumflex
  182. /udieresis /oslash /oe /germandbls /ugrave /Aring /aring /ydieresis
  183. ] def
  184. /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 % Initially zero
  185. /F0 {/Helvetica Y}!
  186. /F1 {/Helvetica-Bold Y}!
  187. /F2 {/Helvetica-Oblique Y}!
  188. /F3 {/Helvetica-BoldOblique Y}!
  189. /F4 {/Times-Roman Y}!
  190. /F5 {/Times-Bold Y}!
  191. /F6 {/Times-Italic Y}!
  192. /F7 {/Times-BoldItalic Y}!
  193. /F8 {/Courier Y}!
  194. /F9 {/Courier-Bold Y}!
  195. /F10 {/Courier-Oblique Y}!
  196. /F11 {/Courier-BoldOblique Y}!
  197. /F12 {/Symbol Y}!
  198. /F13 {/AvantGarde-Book Y}!
  199. /F14 {/AvantGarde-BookOblique Y}!
  200. /F15 {/AvantGarde-Demi Y}!
  201. /F16 {/AvantGarde-DemiOblique Y}!
  202. /F17 {/Bookman-Demi Y}!
  203. /F18 {/Bookman-DemiItalic Y}!
  204. /F19 {/Bookman-Light Y}!
  205. /F20 {/Bookman-LightItalic Y}!
  206. /F21 {/Helvetica-Narrow Y}!
  207. /F22 {/Helvetica-Narrow-Bold Y}!
  208. /F23 {/Helvetica-Narrow-Oblique Y}!
  209. /F24 {/Helvetica-Narrow-BoldOblique Y}!
  210. /F25 {/NewCenturySchlbk-Roman Y}!
  211. /F26 {/NewCenturySchlbk-Italic Y}!
  212. /F27 {/NewCenturySchlbk-Bold Y}!
  213. /F28 {/NewCenturySchlbk-BoldItalic Y}!
  214. /F29 {/Palatino-Roman Y}!
  215. /F30 {/Palatino-Italic Y}!
  216. /F31 {/Palatino-Bold Y}!
  217. /F32 {/Palatino-BoldItalic Y}!
  218. /F33 {/ZapfChancery-MediumItalic Y}!
  219. /F34 {/ZapfDingbats Y}!
  220. /F35 {/Ryumin-Light-EUC-H Y}!
  221. /F36 {/Ryumin-Light-EUC-V Y}!
  222. /F37 {/GothicBBB-Medium-EUC-H Y}!
  223. /F38 {/GothicBBB-Medium-EUC-V Y}!
  224. /PSL_pathtextdict 26 dict def % Local storage for the procedure PSL_pathtext.
  225. /PSL_pathtext % PSL_pathtext'' will place a string
  226. {PSL_pathtextdict begin % of text along any path. It takes
  227. /ydepth exch def % a string and starting offset
  228. /textheight exch def % distance from the beginning of
  229. /just exch def % the path as its arguments. Note
  230. /offset exch def % that PSL_pathtext assumes that a
  231. /str exch def % path has already been defined
  232. % and after it places the text
  233. % along the path, it clears the
  234. % current path like the ``stroke''
  235. % and ``fill'' operators; it also
  236. % assumes that a font has been
  237. % set. ``pathtext'' begins placing
  238. % the characters along the current
  239. % path, starting at the offset
  240. % distance and continuing until
  241. % either the path length is
  242. % exhausted or the entire string
  243. % has been printed, whichever
  244. % occurs first. The results will
  245. % be more effective when a small
  246. % point size font is used with
  247. % sharp curves in the path.
  248. /pathdist 0 def % Initialize the distance we have
  249. % travelled along the path.
  250. /setdist offset def % Initialize the distance we have
  251. % covered by setting characters.
  252. /charcount 0 def % Initialize the character count.
  253. /justy just 4 idiv textheight mul 2 div neg ydepth sub def % Compute the y-shift
  254. V flattenpath % Reduce the path to a series of
  255. % straight line segments. The
  256. % characters will be placed along
  257. % the line segments in the
  258. % ``linetoproc.''
  259. {movetoproc} {linetoproc} % The basic strategy is to process
  260. {curvetoproc} {closepathproc} % the segments of the path,
  261. pathforall % keeping a running total of the
  262. % distance we have travelled so
  263. % far (pathdist). We also keep
  264. % track of the distance taken up
  265. % by the characters that have been
  266. % set so far (setdist). When the
  267. % distance we have travelled along
  268. % the path is greater than the
  269. % distance taken up by the set
  270. % characters, we are ready to set
  271. % the next character (if there are
  272. % any left to be set). This
  273. % process continues until we have
  274. % exhausted the full length of the
  275. % path.
  276. U N % Clear the current path.
  277. end
  278. } def
  279. PSL_pathtextdict begin
  280. /movetoproc % ``movetoproc'' is executed when
  281. { /newy exch def /newx exch def % a moveto component has been
  282. % encountered in the pathforall
  283. % operation.
  284. /firstx newx def /firsty newy def % Remember the ``first point'' in
  285. % the path so that when we get a
  286. % ``closepath'' component we can
  287. % properly handle the text.
  288. /ovr 0 def
  289. newx newy transform
  290. /cpy exch def /cpx exch def % Explicitly keep track of the
  291. % current position in device
  292. % space.
  293. } def
  294. /linetoproc % ``linetoproc'' is executed when
  295. % a lineto component has been
  296. % encountered in the pathforall
  297. % operation.
  298. { /oldx newx def /oldy newy def % Update the old point.
  299. /newy exch def /newx exch def % Get the new point.
  300. /dx newx oldx sub def
  301. /dy newy oldy sub def
  302. /dist dx dup mul dy dup mul add sqrt def % Calculate the distance between
  303. % the old and the new point.
  304. dist 0 ne
  305. { /dsx dx dist div ovr mul def % dsx and dsy are used to update
  306. /dsy dy dist div ovr mul def % the current position to be just
  307. % beyond the width of the previous
  308. % character.
  309. oldx dsx add oldy dsy add transform
  310. /cpy exch def /cpx exch def % Update the current position.
  311. /pathdist pathdist dist add def % Increment the distance we have
  312. % travelled along the path.
  313. {setdist pathdist le % Keep setting characters along
  314. % this path segment until we have
  315. % exhausted its length.
  316. {charcount str length lt % As long as there are still
  317. {setchar} {exit} ifelse} % characters left in the string,
  318. % set them.
  319. { /ovr setdist pathdist sub def % Keep track of how much we have
  320. exit} % overshot the path segment by
  321. ifelse % setting the previous character.
  322. % This enables us to position the
  323. % origin of the following
  324. % characters properly on the path.
  325. } loop
  326. } if
  327. } def
  328. /curvetoproc % ``curvetoproc'' is executed when
  329. { (ERROR: No curveto's after flattenpath!) % a curveto component has been
  330. print % encountered in the pathforall
  331. } def % operation. It prints an error
  332. % message since there shouldn't be
  333. % any curveto's in a path after
  334. % the flattenpath operator has
  335. % been executed.
  336. /closepathproc % ``closepathproc'' is executed
  337. {firstx firsty linetoproc % when a closepath component has
  338. firstx firsty movetoproc % been encountered in the
  339. } def % pathforall operation. It
  340. % simulates the action of the
  341. % operator ``closepath'' by
  342. % executing ``linetoproc'' with
  343. % the coordinates of the most
  344. % recent ``moveto'' and then
  345. % executing ``movetoproc'' to the
  346. % same point.
  347. /setchar % ``setchar'' sets the next
  348. { /char str charcount 1 getinterval def % character in the string along
  349. % the path and then updates the
  350. % amount of path we have
  351. % exhausted.
  352. /charcount charcount 1 add def % Increment the character count.
  353. /charwidth char stringwidth pop def % Find the width of the character.
  354. V cpx cpy itransform T % Translate to the current
  355. % position in user space.
  356. dy dx atan R % Rotate the x-axis to coincide
  357. % with the current segment.
  358. 0 justy M
  359. char show
  360. 0 justy neg G
  361. currentpoint transform
  362. /cpy exch def /cpx exch def % Update the current position
  363. % before we restore ourselves to
  364. % the untransformed state.
  365. U /setdist setdist charwidth add def % Increment the distance we have
  366. } def % covered by setting characters.
  367. end
  368. % PSL LABEL CLIP FUNCTIONS
  369. % Two main functions deals with label placement and clipping:
  370. % PSL_curved_path_labels: handles texts that must follow curved baselines
  371. % PSL_straight_path_labels: handles texts that have straight baselines
  372. %
  373. % Both functions assume that several variables have been predefined:
  374. %
  375. % First we have these two constant settings for all text boxes:
  376. %
  377. % PSL_setboxpen Function that sets the text box pen attributes (width, texture, color)
  378. % PSL_setboxrgb Function that sets the opaque text box color
  379. %
  380. % Then several arrays are placed. Since a set of several lines segments may each
  381. % have many labels along them, we end up with these variables:
  382. %
  383. % PSL_n_paths Total number of segments
  384. % PSL_path_x x coordinates of the paths (all concatenated one after another)
  385. % PSL_path_y y coordinates of the paths (all concatenated one after another)
  386. % PSL_path_n Array with number of points per segment
  387. % PSL_label_str Array with all the labels for all segments
  388. % PSL_label_n Array with number of labels per segment
  389. % PSL_angle The annotation angle for each label
  390. %
  391. % PSL_curved_path_labels expects those labels to be placed along several
  392. % lines and it needs the node numbers where to place text:
  393. %
  394. % PSL_node Array with (x,y) node number of label position
  395. %
  396. % PSL_straight_path_labels are simpler and instead expects
  397. %
  398. % PSL_txt_x (x,y) coordinates of the location of the m labels
  399. % PSL_txt_y
  400. /PSL_set_label_heights
  401. { % Create array PSL_heights with full label heights
  402. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def % Upper limit in loop over labels
  403. /PSL_heights PSL_n_labels array def % Create array with text heights
  404. 0 1 PSL_n_labels_minus_1 % Loop psl_k = 0 < PSL_n_labels
  405. { /psl_k exch def % Current label index psl_k
  406. /psl_label PSL_label_str psl_k get def % Current text label
  407. PSL_label_font psl_k get cvx exec % Get and set this label's font attributes
  408. psl_label sH /PSL_height edef % Compute the height of this string
  409. PSL_heights psl_k PSL_height put % Store it in the array
  410. } for
  411. } def
  412. % Curved Baseline Text Placement Functions
  413. /PSL_curved_path_labels
  414. { /psl_bits exch def % 4 on/of bit settings as indicated below
  415. /PSL_placetext psl_bits 2 and 2 eq def % true to place text, false to just make space
  416. /PSL_clippath psl_bits 4 and 4 eq def % false inactive, true creates clippath for labels
  417. /PSL_strokeline false def % true draws line, false skips
  418. /PSL_fillbox psl_bits 128 and 128 eq def % true to paint box opaque before placing text, false gives transparent box
  419. /PSL_drawbox psl_bits 256 and 256 eq def % true to draw box outline before placing text, false gives no outline
  420. /PSL_n_paths1 PSL_n_paths 1 sub def % one less is the upper limit in for loop over the paths
  421. /PSL_usebox PSL_fillbox PSL_drawbox or def % true if we need box outline for fill or stroke or both
  422. PSL_clippath {clipsave N clippath} if % Bracket with clipsave/cliprestore and start clip path
  423. /psl_k 0 def
  424. /psl_p 0 def
  425. 0 1 PSL_n_paths1
  426. { /psl_kk exch def % Index into the PSL_n PSL_m arrays
  427. /PSL_n PSL_path_n psl_kk get def % Get the number of points in this line segment
  428. /PSL_m PSL_label_n psl_kk get def % Get the number of labels for this line segment
  429. /PSL_x PSL_path_x psl_k PSL_n getinterval def % Get the subset that is the current line segment x-coordinates
  430. /PSL_y PSL_path_y psl_k PSL_n getinterval def % Get the subset that is the current line segment y-coordinates
  431. /PSL_node_tmp PSL_label_node psl_p PSL_m getinterval def % Get the subset of node values for current line segment
  432. /PSL_angle_tmp PSL_label_angle psl_p PSL_m getinterval def % Get the subset of angle values for current line segment
  433. /PSL_str_tmp PSL_label_str psl_p PSL_m getinterval def % Get the subset of string values for current line segment
  434. /PSL_fnt_tmp PSL_label_font psl_p PSL_m getinterval def % Get the subset of font settings for current line segment
  435. PSL_curved_path_label % Operate on this segment only
  436. /psl_k psl_k PSL_n add def % Go to next segment start index for path
  437. /psl_p psl_p PSL_m add def % Go to next segment start index for nodes
  438. } for % The loop over segments
  439. PSL_clippath {PSL_eoclip} if N % Activate clip path and return
  440. } def
  441. /PSL_curved_path_label
  442. { % Deals with a single line segment and its labels
  443. /PSL_n1 PSL_n 1 sub def % one less is the upper limit in for loops
  444. /PSL_m1 PSL_m 1 sub def % same
  445. PSL_CT_calcstringwidth % Calculate the width of each label string
  446. PSL_CT_calclinedist % Calculate along-track distances
  447. PSL_CT_excludelabels % Possibly eliminate labels outside of line domain
  448. PSL_CT_addcutpoints % Expand path to include the cut points
  449. % Now we have the final xx/yy array and we are ready to simply lay down the lines
  450. % and place the text along the line where there are labels. We will use the
  451. % new array PSL_xp/yp to store the final points prior to use
  452. /PSL_nn1 PSL_nn 1 sub def % End index in for loop
  453. /n 0 def % Toggle: 0 means line, 1 means text
  454. /k 0 def % Index of the current text string
  455. /j 0 def % Output point number counter
  456. /PSL_seg 0 def % Line segment number
  457. /PSL_xp PSL_nn array def
  458. /PSL_yp PSL_nn array def
  459. PSL_xp 0 PSL_xx 0 get put % Place first point in array
  460. PSL_yp 0 PSL_yy 0 get put
  461. 1 1 PSL_nn1 % Loop over rest of points
  462. { /i exch def % Index into PSL_xx/yy arrays
  463. /node_type PSL_kind i get def % Check what kind of point the current point is
  464. /j j 1 add def % Update point count
  465. PSL_xp j PSL_xx i get put % Add this point to the path
  466. PSL_yp j PSL_yy i get put
  467. node_type 1 eq % If this is a cut point we either stroke or place text
  468. {n 0 eq % n is 0 so this is the strokable segment
  469. {PSL_CT_drawline}
  470. { PSL_CT_reversepath % here, n = 1 so this is the segment along which text should be placed
  471. PSL_CT_textline} ifelse % Reverse path if needed to place text correctly
  472. /j 0 def
  473. PSL_xp j PSL_xx i get put % Place new first point in array
  474. PSL_yp j PSL_yy i get put
  475. } if
  476. } for
  477. n 0 eq {PSL_CT_drawline} if % Finish off the last line segment
  478. } def
  479. /PSL_CT_textline
  480. { PSL_fnt k get cvx exec % Get and set this label's font attributes
  481. /PSL_height PSL_heights k get def % Recall the height of this text
  482. PSL_placetext {PSL_CT_placelabel} if % If we want to place the text
  483. PSL_clippath {PSL_CT_clippath} if
  484. /n 0 def /k k 1 add def % Set n back to 0, goto next label
  485. } def
  486. /PSL_CT_calcstringwidth % Calculate the width of each label string
  487. { /PSL_width_tmp PSL_m array def % Assign space for distance
  488. 0 1 PSL_m1
  489. { /i exch def
  490. PSL_fnt_tmp i get cvx exec % Get and set this label's font attributes
  491. PSL_width_tmp i PSL_str_tmp i get stringwidth pop put % Compute width and store in the array
  492. } for
  493. } def
  494. /PSL_CT_calclinedist % Calculate the distance along the line
  495. { /PSL_newx PSL_x 0 get def
  496. /PSL_newy PSL_y 0 get def
  497. /dist 0.0 def % Cumulative distance at first point is 0
  498. /PSL_dist PSL_n array def % Assign array space for distance
  499. PSL_dist 0 0.0 put % Distances start at 0 and the 'th point
  500. 1 1 PSL_n1 % Loop over the remaining points
  501. { /i exch def
  502. /PSL_oldx PSL_newx def
  503. /PSL_oldy PSL_newy def
  504. /PSL_newx PSL_x i get def
  505. /PSL_newy PSL_y i get def
  506. /dx PSL_newx PSL_oldx sub def
  507. /dy PSL_newy PSL_oldy sub def
  508. /dist dist dx dx mul dy dy mul add sqrt add def
  509. PSL_dist i dist put
  510. } for
  511. } def
  512. % Some labels (in particular first and last per segment) may be too long
  513. % to actually fit inside the length of the line. We precalculate the
  514. % start and end distances for each label and those that exceed the length
  515. % of the line cannot be plotted and are thus skipped. The surviving labels
  516. % and their information is copied to the final PSL arrays
  517. /PSL_CT_excludelabels
  518. { /k 0 def % Current cut point
  519. /PSL_width PSL_m array def % New array of distances
  520. /PSL_angle PSL_m array def % New array of angles
  521. /PSL_node PSL_m array def % New array of nodes
  522. /PSL_str PSL_m array def % New array of strings
  523. /PSL_fnt PSL_m array def % New array of fonts
  524. /lastdist PSL_dist PSL_n1 get def % Length of line
  525. 0 1 PSL_m1 % For each of the m labels
  526. { /i exch def % Index for label distance
  527. /dist PSL_dist PSL_node_tmp i get get def % Recall the distance to this label center
  528. /halfwidth PSL_width_tmp i get 2 div PSL_gap_x add def % Set the halfwidth + gap distance
  529. /L_dist dist halfwidth sub def % Distance at beginning of label gap
  530. /R_dist dist halfwidth add def % Distance at the end of label gap
  531. L_dist 0 gt R_dist lastdist lt and % Yes, label is inside line ends
  532. { % These are the labels we will use
  533. PSL_width k PSL_width_tmp i get put % Copy over width
  534. PSL_node k PSL_node_tmp i get put % Copy over node
  535. PSL_angle k PSL_angle_tmp i get put % Copy over angle
  536. PSL_str k PSL_str_tmp i get put % Copy over text
  537. PSL_fnt k PSL_fnt_tmp i get put % Copy over font
  538. /k k 1 add def
  539. } if
  540. } for
  541. /PSL_m k def % New number of labels
  542. /PSL_m1 PSL_m 1 sub def
  543. } def
  544. % Initialize an array with all the original line points plus the set of 2*m
  545. % points at the transition from line to labelspace at each label
  546. % At the end of this section, the PSL_xx/yy array will be the array to use.
  547. /PSL_CT_addcutpoints
  548. { /k 0 def % Current cut point
  549. /PSL_nc PSL_m 2 mul 1 add def % 2*m points + one last acting as infinity
  550. /PSL_cuts PSL_nc array def % The array of distances to each cut
  551. /PSL_nc1 PSL_nc 1 sub def % One less to use in for loop limits
  552. 0 1 PSL_m1 % For each of the m labels
  553. { /i exch def % Index for label distance
  554. /dist PSL_dist PSL_node i get get def % Recall the distance to this label center
  555. /halfwidth PSL_width i get 2 div PSL_gap_x add def % Set the halfwidth + gap distance
  556. PSL_cuts k dist halfwidth sub put % Distance at beginning of label gap
  557. /k k 1 add def % Was at start, now go to end distance node
  558. PSL_cuts k dist halfwidth add put % Distance at the end of label gap
  559. /k k 1 add def % Was at end, move to next
  560. } for
  561. PSL_cuts k 100000.0 put % Last cut has ~infinite distance
  562. /PSL_nn PSL_n PSL_m 2 mul add def % The total path will be 2*m points longer
  563. /PSL_xx PSL_nn array def % Assign new space for x and y
  564. /PSL_yy PSL_nn array def
  565. /PSL_kind PSL_nn array def % 0 = ordinary point, 1 = added point for label gap
  566. /j 0 def % Index for new track array
  567. /k 0 def % Index for current cut distance
  568. /dist 0.0 def % Current distance along track, starting at zero
  569. 0 1 PSL_n1 % Loop over every original line point
  570. { /i exch def % Index into current point on original line xy array
  571. /last_dist dist def % Update distance to last point (initially zero)
  572. /dist PSL_dist i get def % Distance to current point
  573. k 1 PSL_nc1 % Loop over remaining cuts (starting with all)
  574. { /kk exch def % Index into current cut distance
  575. /this_cut PSL_cuts kk get def % Distance to start of this label gap
  576. dist this_cut gt % Oh, oh, we just stepped over a cut point
  577. { /ds dist last_dist sub def % Change in distance
  578. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def % Get fractional change in distance
  579. /i1 i 0 eq {0} {i 1 sub} ifelse def
  580. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put % Calc (x,y) at label start (or stop) point
  581. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  582. PSL_kind j 1 put % Set PSL_kind to 1 since it is an added cut point
  583. /j j 1 add def % Go to next output point
  584. /k k 1 add def % Done with this cut point
  585. } if
  586. } for
  587. dist PSL_cuts k get le % Having dealt with the cut, we may add the regular point
  588. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  589. PSL_kind j 0 put % Ordinary (original) coordinates
  590. /j j 1 add def % Go to next output point
  591. } if
  592. } for
  593. } def
  594. /PSL_CT_reversepath
  595. {PSL_xp j get PSL_xp 0 get lt % Path must first be reversed to avoid upside-down text
  596. {0 1 j 2 idiv % Loop over half the path and swap left/right points
  597. { /left exch def % Current left point
  598. /right j left sub def % Matching right point
  599. /tmp PSL_xp left get def % Swap left and right values for x then y
  600. PSL_xp left PSL_xp right get put
  601. PSL_xp right tmp put
  602. /tmp PSL_yp left get def
  603. PSL_yp left PSL_yp right get put
  604. PSL_yp right tmp put
  605. } for
  606. } if
  607. % Now PSL_xp/yp has the correct order to give proper text angles
  608. } def
  609. /PSL_CT_placelabel
  610. { % Places the curved text label on current segment
  611. /PSL_just PSL_label_justify k get def % Get this labels justification
  612. /PSL_height PSL_heights k get def % Recall the height of this string
  613. /psl_label PSL_str k get def % Get the current label
  614. /psl_depth psl_label sd def % Determine depth beneath baseline
  615. PSL_usebox % Want to lay down box outline or fill
  616. {PSL_CT_clippath % Box path now current path
  617. PSL_fillbox % Want to paint box
  618. {V PSL_setboxrgb fill U} if
  619. PSL_drawbox % Want to draw outline of box
  620. {V PSL_setboxpen S U} if N
  621. } if
  622. PSL_CT_placeline psl_label PSL_gap_x PSL_just PSL_height psl_depth PSL_pathtext
  623. } def
  624. /PSL_CT_clippath
  625. { % Lays down a curved clipbox for one label
  626. /H PSL_height 2 div PSL_gap_y add def
  627. /xoff j 1 add array def
  628. /yoff j 1 add array def
  629. /angle 0 def % So it is at least a defined variable
  630. 0 1 j { % Loop over points along line to calculate angle and offsets
  631. /ii exch def % Index
  632. /x PSL_xp ii get def
  633. /y PSL_yp ii get def
  634. ii 0 eq { % Are we at the first point and hence must calculate angle using 0 and 1?
  635. /x1 PSL_xp 1 get def
  636. /y1 PSL_yp 1 get def
  637. /dx x1 x sub def
  638. /dy y1 y sub def
  639. }
  640. { /i1 ii 1 sub def % Previous point
  641. /x1 PSL_xp i1 get def
  642. /y1 PSL_yp i1 get def
  643. /dx x x1 sub def
  644. /dy y y1 sub def
  645. } ifelse
  646. dx 0.0 eq dy 0.0 eq and not
  647. { /angle dy dx atan 90 add def} if % Only calculate new angle if not duplicates
  648. /sina angle sin def
  649. /cosa angle cos def
  650. xoff ii H cosa mul put
  651. yoff ii H sina mul put
  652. } for
  653. % Lay down next clip segment
  654. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  655. 1 1 j { % Loop over the rest of the upper line
  656. /ii exch def
  657. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  658. } for
  659. j -1 0 { % Loop backwards over the rest of the lower line
  660. /ii exch def
  661. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  662. } for P
  663. } def
  664. /PSL_CT_drawline
  665. {
  666. /str 20 string def
  667. % PSL_strokeline PSL_seg 0 eq and % If we asked to draw lines...
  668. PSL_strokeline % If we asked to draw lines...
  669. {PSL_CT_placeline S} if % Lay down the rest of the path and stroke it
  670. /PSL_seg PSL_seg 1 add def % Goto next segment number
  671. /n 1 def % Set n to 1
  672. } def
  673. /PSL_CT_placeline
  674. {PSL_xp 0 get PSL_yp 0 get M % Set the anchor point of the path
  675. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for % Lay down the rest of the path
  676. } def
  677. % Draw Baseline Text Segment Lines
  678. % PSL_draw_path_lines will draw the lines that have been stored in the concatenated
  679. % PSL_path_x and PSL_path_y arrays using the pen attributes in the PSL_path_pen array
  680. /PSL_draw_path_lines
  681. { % Draws the lines already stored in the PSL_path_x|y arrays
  682. /PSL_n_paths1 PSL_n_paths 1 sub def % One less is the upper limit in for loop over the paths
  683. V
  684. /psl_start 0 def % Start index of segment in concatenated path array
  685. 0 1 PSL_n_paths1 % Loop over all segments
  686. { /psl_k exch def % Index into the PSL arrays
  687. /PSL_n PSL_path_n psl_k get def % Get the number of points in this line segment
  688. /PSL_n1 PSL_n 1 sub def % One less is the upper limit in for loop over points
  689. PSL_path_pen psl_k get cvx exec % Get and set this line's pen
  690. N % Clean path
  691. PSL_path_x psl_start get PSL_path_y psl_start get M % Place anchor point of this segment
  692. 1 1 PSL_n1 % Loop over points in this segment
  693. { /psl_i exch def % Local index of next point in segment
  694. /psl_kk psl_i psl_start add def % Equivalent index in concatenated array of all segments
  695. PSL_path_x psl_kk get PSL_path_y psl_kk get L % Draw to next point
  696. } for
  697. /psl_xclose PSL_path_x psl_kk get PSL_path_x psl_start get sub def % Difference between first and last x coordinate
  698. /psl_yclose PSL_path_y psl_kk get PSL_path_y psl_start get sub def % Difference between first and last y coordinate
  699. psl_xclose 0 eq psl_yclose 0 eq and { P } if % Explicitly close the path
  700. S % Stroke this path
  701. /psl_start psl_start PSL_n add def % Go to next segment and update start index for path
  702. } for
  703. U
  704. } def
  705. % Straight Baseline Text Placement Functions
  706. % PSL_straight_path_labels deals with straight text labels w/wo textboxes (rect or rounded).
  707. % Only the (x,y) location of each label is needed.
  708. % Use <flags> PSL_straight_path_labels to paint|draw textboxes and place text
  709. % Use <flags> PSL_straight_path_clip to use textboxes to define and activate clipping
  710. % Subroutines of these functions are called PSL_ST_*
  711. % Local variables are called psl_*, global are called PSL_*
  712. /PSL_straight_path_labels
  713. { % This function will lay down (a) text box paint, (b) text box outline, and (c) text labels
  714. % All of these are optionals specified by the bit flag.
  715. /psl_bits exch def % Single bitflag argument passed
  716. /PSL_placetext psl_bits 2 and 2 eq def % true to place text, false to just make space
  717. /PSL_rounded psl_bits 32 and 32 eq def % true for rounded box shape, false gives rectangular box
  718. /PSL_fillbox psl_bits 128 and 128 eq def % true to paint box opaque before placing text
  719. /PSL_drawbox psl_bits 256 and 256 eq def % true to draw box outline before placing text
  720. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def % Upper limit in loop over labels
  721. /PSL_usebox PSL_fillbox PSL_drawbox or def % true if we need box outline for fill or stroke or both
  722. 0 1 PSL_n_labels_minus_1 % Loop psl_k = 0 < PSL_n_labels
  723. { /psl_k exch def % Current label index psl_k
  724. PSL_ST_prepare_text % Get all dimensions, coordinates, etc. for this label
  725. PSL_usebox % If a text box is requested we go in here:
  726. { PSL_rounded % Place text box path, either straight or rounded, on stack
  727. {PSL_ST_textbox_round}
  728. {PSL_ST_textbox_rect}
  729. ifelse
  730. PSL_fillbox {V PSL_setboxrgb fill U} if % Paint it, if requested
  731. PSL_drawbox {V PSL_setboxpen S U} if % Outline it, if requested
  732. N % Done, so remove path
  733. } if
  734. PSL_placetext {PSL_ST_place_label} if % Show text, if requested
  735. } for
  736. } def
  737. /PSL_straight_path_clip
  738. { % This function will create a total clip path for all the labels in PSL_txt
  739. /psl_bits exch def % Single bit flag argument passed
  740. /PSL_rounded psl_bits 32 and 32 eq def % true for rounded box shape, false gives rectangular box
  741. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def % Upper limit in loop over labels
  742. N clipsave clippath % Start clip path by selecting the entire mappable area
  743. 0 1 PSL_n_labels_minus_1 % Loop over all labels
  744. { /psl_k exch def % Current label index psl_k
  745. PSL_ST_prepare_text % Get all dimensions, coordinates, etc. for this label
  746. PSL_rounded % Get either straight or rounded text box path
  747. {PSL_ST_textbox_round}
  748. {PSL_ST_textbox_rect}
  749. ifelse
  750. } for
  751. PSL_eoclip N % Set the new clip path, increment clip counter and clear path
  752. } def
  753. /PSL_ST_prepare_text % Compute various dimensions and coordinates for one label
  754. { % The current label has index psl_k
  755. /psl_xp PSL_txt_x psl_k get def % Get text placement x coordinate
  756. /psl_yp PSL_txt_y psl_k get def % Get text placement y coordinate
  757. /psl_label PSL_label_str psl_k get def % Current text label
  758. PSL_label_font psl_k get cvx exec % Get and set this label's font attributes
  759. /PSL_height PSL_heights psl_k get def % Recall the height of this string
  760. /psl_boxH PSL_height PSL_gap_y 2 mul add def % Set height of current label including clearance
  761. /PSL_just PSL_label_justify psl_k get def % Get text justification (1-11)
  762. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def % This is 0, -0.5, or -1 for relative x-shift
  763. /PSL_justy PSL_just 4 idiv 2 div neg def % This is 0, -0.5, or -1 for relative y-shift
  764. /psl_SW psl_label stringwidth pop def % Width of current label space
  765. /psl_boxW psl_SW PSL_gap_x 2 mul add def % Width of current label space including clearance
  766. /psl_x0 psl_SW PSL_justx mul def % (psl_x0,psl_y0) is rotated/adjusted text LL point on inside rectangle relative to psl_xp,psl_yp
  767. /psl_y0 PSL_justy PSL_height mul def %
  768. /psl_angle PSL_label_angle psl_k get def % The angle of text w.r.t. baseline
  769. } def
  770. /PSL_ST_textbox_rect % Compute and place rectangular path for current label
  771. {
  772. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T % Rotate the coordinate system to follow baseline text and make (psl_x0,psl_y0) the new origin
  773. PSL_gap_x neg PSL_gap_y neg M % Set LL anchor point for rectangular box
  774. 0 psl_boxH D psl_boxW 0 D 0 psl_boxH neg D P % Draw text box going CW
  775. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T % Unto trans/rot above
  776. } def
  777. /PSL_ST_textbox_round % Compute and place rounded rectangular path for current label
  778. {
  779. /psl_BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def % Smallest gap distance is our corner radius
  780. /psl_xd PSL_gap_x psl_BoxR sub def % When x_gap exceeds y_gap there will be an adjustment in x, else 0
  781. /psl_yd PSL_gap_y psl_BoxR sub def % When y_gap exceeds x_gap there will be an adjustment in y, else 0
  782. /psl_xL PSL_gap_x neg def % Left-most x coordinate of text box
  783. /psl_yB PSL_gap_y neg def % Bottom y coordinate of text box
  784. /psl_yT psl_boxH psl_yB add def % Top y coordinate of text box
  785. /psl_H2 PSL_height psl_yd 2 mul add def % Inner height when adjusting for any psl_yd offset
  786. /psl_W2 psl_SW psl_xd 2 mul add def % Inner width when adjusting for any psl_xd offset
  787. /psl_xR psl_xL psl_boxW add def % Right-most x coordinate of text box
  788. /psl_x0 psl_SW PSL_justx mul def % (psl_x0,psl_y0) is rotated/adjusted text LL point on inside rectangle relative to psl_xp,psl_yp
  789. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T % Rotate the coordinate system to follow baseline text and make (psl_x0,psl_y0) the new origin
  790. psl_xL psl_yd M % LL anchor point for rounded box is on lower left side just before rounded corner
  791. psl_xL psl_yT psl_xR psl_yT psl_BoxR arct psl_W2 0 D % Draw UL rounded corner and line to start of UR rounded corner
  792. psl_xR psl_yT psl_xR psl_yB psl_BoxR arct 0 psl_H2 neg D % Draw UR rounded corner and line to LR rounded corner
  793. psl_xR psl_yB psl_xL psl_yB psl_BoxR arct psl_W2 neg 0 D % Draw LR rounded corner and line to LL rounded corner
  794. psl_xL psl_yB psl_xL psl_yd psl_BoxR arct P % Draw LL rounded corner and close the clippath segment
  795. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T % Unto trans/rot above
  796. } def
  797. /PSL_ST_place_label % Just place the current label
  798. {
  799. V psl_xp psl_yp T psl_angle R % Set origin at text point and rotate the coordinate system to follow baseline text
  800. psl_SW PSL_justx mul psl_y0 M % Goto LL point on label
  801. psl_label dup sd neg 0 exch G show % Place the text, adjust vertically for any depth below baseline
  802. U % Undo damage to coordinate system
  803. } def
  804. /PSL_nclip 0 def % The depth of clipping in effect
  805. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def % Clip and update PSL_nclip
  806. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def % Even-odd clip and update PSL_nclip
  807. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def % Cliprestore and update PSL_nclip
  808. %%EndProlog
  809. %%BeginSetup
  810. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  811. PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  812. %%EndSetup
  813. %%Page: 1 1
  814. %%BeginPageSetup
  815. %
  816. % Init coordinate system and scales
  817. %
  818. %
  819. % Scale initialized to 0.06, so 1 inch equals 1200 Postscript units
  820. %
  821. V 0.06 0.06 scale
  822. %%EndPageSetup
  823. %
  824. % End of PSL header
  825. %
  826. /PSL_page_xsize 10200 def
  827. /PSL_page_ysize 13200 def
  828. /PSL_completion {} def
  829. 10 setmiterlimit
  830. 0 A
  831. FQ
  832. O0
  833. % Set plot origin:
  834. 1200 1200 TM
  835. 33 W
  836. {0.9 0.9 9 C} FS
  837. O1
  838. 10320 2160 120 -480 Sb
  839. {1 0 0 C} FS
  840. 180 480 0 Sx
  841. 180 480 720 S-
  842. 180 480 1440 Sy
  843. 180 480 2160 S+
  844. 180 480 2880 Sp
  845. 180 480 3600 Sc
  846. 180 480 4320 Sd
  847. 180 480 5040 Sh
  848. 180 480 5760 Si
  849. 180 480 6480 Sg
  850. 180 480 7200 Sn
  851. 180 480 7920 Ss
  852. 180 480 8640 Sa
  853. 180 480 9360 St
  854. {0.5 0.7 0.1 C} FS
  855. O0
  856. 180 1200 0 Sx
  857. 180 1200 720 S-
  858. 180 1200 1440 Sy
  859. 180 1200 2160 S+
  860. 180 1200 2880 Sp
  861. 180 1200 3600 Sc
  862. 180 1200 4320 Sd
  863. 180 1200 5040 Sh
  864. 180 1200 5760 Si
  865. 180 1200 6480 Sg
  866. 180 1200 7200 Sn
  867. 180 1200 7920 Ss
  868. 180 1200 8640 Sa
  869. 180 1200 9360 St
  870. FQ
  871. O1
  872. 180 1920 0 Sx
  873. 180 1920 720 S-
  874. 180 1920 1440 Sy
  875. 180 1920 2160 S+
  876. 180 1920 2880 Sp
  877. 180 1920 3600 Sc
  878. 180 1920 4320 Sd
  879. 180 1920 5040 Sh
  880. 180 1920 5760 Si
  881. 180 1920 6480 Sg
  882. 180 1920 7200 Sn
  883. 180 1920 7920 Ss
  884. 180 1920 8640 Sa
  885. 180 1920 9360 St
  886. 17 W
  887. V 3120 0 T 0 R
  888. N 0 0 M 4800 0 D S
  889. 417 0 M 0 -83 D S
  890. 417 -167 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if % Set this font
  891. 167 F0
  892. (40) tc Z
  893. 1252 0 M 0 -83 D S
  894. 1252 -167 M (60) tc Z
  895. 2087 0 M 0 -83 D S
  896. 2087 -167 M (80) tc Z
  897. 2922 0 M 0 -83 D S
  898. 2922 -167 M (100) tc Z
  899. 3757 0 M 0 -83 D S
  900. 3757 -167 M (120) tc Z
  901. 4591 0 M 0 -83 D S
  902. 4591 -167 M (140) tc Z
  903. 2400 -417 M 250 F0
  904. (Some Axis) tc Z
  905. U
  906. V 3120 0 T 90 R
  907. N 0 0 M 3600 0 D S
  908. 3600 0 M 0 83 D S
  909. 3600 167 M 167 F0
  910. (0) bc Z
  911. 2700 0 M 0 83 D S
  912. 2700 167 M (25) bc Z
  913. 1800 0 M 0 83 D S
  914. 1800 167 M (50) bc Z
  915. 900 0 M 0 83 D S
  916. 900 167 M (75) bc Z
  917. 0 0 M 0 83 D S
  918. 0 167 M (100) bc Z
  919. 1800 417 M 250 F0
  920. (A Reversed Axis) bc Z
  921. U
  922. 83 W
  923. 3329 2700 M
  924. 626 540 D
  925. 417 -1440 D
  926. 1253 -1332 D
  927. 834 792 D
  928. 919 -360 D
  929. S
  930. 17 W
  931. {1 0 0 C} FS
  932. 180 3329 2700 Sa
  933. 180 3955 3240 Sa
  934. 180 4372 1800 Sa
  935. 180 5625 468 Sa
  936. 180 6459 1260 Sa
  937. 180 7378 900 Sa
  938. %
  939. % Define pattern 92
  940. %
  941. /image92 {<~
  942. J-X0td.%*)!Z$]O!mu:$?6CX(TV<U?!-\\c'F3!YCd;8IKEqepfbegM+W-?^d"r0#69l>YKJDDY!'qeEb"'C%JM<$S,`r?X
  943. @Gr>_'ckWB-";]bW)bF3$O#aW3Z9XXOi1+ZoQn1_XpBpf=a7H$:_O<E+kaYU?mc9i"IB]GZ3C[V#6A?CA42GS'9!4un=a5`
  944. +ZKmb-ZX(61_gQ)_LmC>N8Qi*Qc/QZ&9O!Y&XirVj+-E/2Mm?K&G_"%C*49'##gKMN':>YD>-,Jon[?+1^n@+/dDas,WlZ-
  945. `dtXQ^c(?bZm3kg'I[W1EHLet*p]+N&"!NKnj1'7/hd]\r*GFcK@^kB3W#aE9L8B6DES(Bd.#C#^VQsA*C"Ei?8r4n6;I9c
  946. m[LZ=[n_`A-j44P-EDk'!.O.C/b0Ic00qiWr$!]M-n$5*`(nUam,VER0#;=4)+J%BE#>P\^d+8VC/C!G$*j8oL9%:o#8i&U
  947. 3X1ZgBU],8Kn9RoM1U;g>Qr&AZVlL]m-%7T#_BcJ.gZ5[rY)f7f^Kfq5bLp_c+r$[j9VoHC=g%93/\NcaMKe1b0><H*M_hV
  948. I-@f.1fiKh_<i12_+[t#7`176oh$qk)htOC&^hl_]C6c^Uq)R(>W`8a2,QlLmONDHXhd+HgHSGB4Ud,)LsR?$K7jD+['Z(]
  949. lFH?[$6"MJLfk#"XV9b7,KSo^("<[Cf\j=liq<kimI^1k1G%9<C!eb1khK3P6tXsQl.'[2.tQW_,"PTCGVBD:ikIh;QeJs1
  950. #i[g!N`o)epk1+_4q](H$k!:rN.S99,7G`S'G1o9#[BTM/9X..;HF2:M7PLm<tJ0Ml<u.J#pKY-=t`ODF15RW'iWX?7WFED
  951. 1o6W^:K,aX<X5bt-Cdpk]@BjcK>M$El(S>-W9QC^1uR)$o4eG`!5^k^]Ch_6n'Xu/oGN_lDUD%]m[].QAsH2Al*o(eVaeI>
  952. *denqBL?P5[oX'BiG/r;f&3S$S_1(qPT%A_EWP`R(o=_,,:%uTm$&9oZT]%LU$.O9Ko3bB<%SIa^Fs/!I/(Jn_-+HfP0<@-
  953. &O`@1XRcQR9mUQ7e%Q)mqQcPQ55Dim1N<&no;6frj-tMQd8LN"'*6#!>rmf,hS+-'<5/-W!7]T-Z,23:i*<i=%hkj/f+*cd
  954. 4[=@#Gt7^j';GDY?/4^deqpGV9's<cd`-^!klYhCi8$<_fQ5=-q_uY/r":i&$pe8T"n6%=J`'?2T^X9T:DnU2nfn)H@3($j
  955. S<tuA1;a,Rlo(Y5Z[uS`'7f":#QT.Q!JRsP*H3ZG:@oAN+CGD5HR:Gf=G&m1TR>#$gI)PIQC@D)\kU$_JWDCT[tRWb"9PQ4
  956. NNN*\`H2\q,&0("*'=jTT$bZ2hM^PD0JetlBj'/g3\'(^*%2q3hBDVG7'PGhkDp:mZh.m"Q*mS>b+>6\.g=1Vjr:73'2Epf
  957. N:7Z&P=5OXM8<G<%+.JZ1eLf.m!p_PL]mg@+p.iO*J>P==FkE6"=7^n1!(%a[mJ*H_=XT.c."9HjG6;LJSHILXGN][3AR:K
  958. @8$Zg&d(C("Mu9J#(\HO!m#,`c7-J_V8NhA7.dkI\0>)@,k\qX/kqo5G:(?*6bIqM[+l<ZND/=m]`<[0T?3jU:<#3*K#VF;
  959. ,]X.JE'JuRl3kNi7V<>j`ZEh8gW_gJ/k+13.%,GlA)X.ID;mZA,DuMsj:*qD5l&*d>fff03)Qu!!##X><hdqjBdZ&R]@E/'
  960. :DA.C;L"$6oj]Qhibt??E;p'+H4jNLRs4@!QFTUn18\eaM1CF2Jb"pZJg*#UkCR8=Un5(]5]?o3l7&,f&=j?*"&A#eqD_uP
  961. bgB8i1P?oDK4b1/VZG,<a&2!=g'D_dikqEFniB7me8X7.2PDM`3J3226s8G1&)e+j1b0L`%(abhd8[Y&L:nR$`+N5.8C9uj
  962. g1BX9#^UY**iOl)=O-l&#EoGP]_B@i-c&tDm="T96]?";.M7(6'rct=SSG-EKK$r9.0U;)(W(u`$hZZ$3P)0O;RHhB,`W!q
  963. ;Ip"?U^24@)/Xo>TEl=%]g,2_('ri[`Yn$8/>RRcQtU)c.3LZTCJL<#AS0iG9n@0t!sU>LG]jRS$F/_?2+L^@FO1p5;bCT=
  964. fapFU'@dKr=Ghn;B%GL4.ib1DKh=O\6[9>j/3HMhH<Z#i)(gH=D/\,gKN0=8PZ'eGa/-`d[a*T:X#GD+h5q<4U2q#_n5\*u
  965. _&O4YnkR(^#U1B@<;#;a(Uui3i<Vr-J7p9]UHCT\.MG"XDPF@dM.BF;jJ%Eoc#K^n_70uJ]mNf"0UOTsJ\2h"6gh7cQn)Fl
  966. #3+_j1:@n(`?p<Y5#6KW@'3eS<%R=Q`Z-jVn9?M$Z+!#O"5p^mC*6PlJQ-)*GFu_[2cqC_+6`LtZmU6Q:.,r"TN6N5R]\\g
  967. +RhXLrJ2-:Pl&RFp,o%V1EXH6G[m,-,fUM3p0grSdf@E;@d<<FNb(4i7O>I_[j*5YAk@uf7H)%]M^G)AqUWf@9#Zt5OVPaC
  968. h?ra3"IRL/F:m0T[eUB&("bq4No>NPTqsnR#G+g=!skmlIG6hr`Gs(BD76iXn!#]Dj$*8`>TC66oW<&cAX`sVr$5F<M*GJk
  969. 8DSSW)_Ir!3>m\=ap)3\>jP):nLe#QRo<+):k&=Y'#fn?E8g).H(ce!7bXuhB4f!bLU*VB45h%="H^tEDPbk?>]gK83)apW
  970. *`:ib)-d>aiY03PJIQ&c7#0_&,t&SW&]($8K]\QQT&C'/3>dMn\&f[52Vd4n`TnA;GM#dp642]40Em"-(]*,l4YORi@CqU0
  971. ?WH(hV1r@!.]i+FrAKPIXj"*$#`a`[3fZ-f:6IZ!/65?q;Ui\UA%'h30c*c%C:*0%G`%:gL>Sg#']hd^XisZ`&T)cN&Qa^%
  972. gnJqD`F/[s7csJ2c$WW*VadP;E7,PKn58ShK=HZNe,&?V<^$*S.]$kEh[D6RnmR&<$/l^8JRfIG0GX[R!+A&'JPZu0h@cLL
  973. #pA^EkNJ)(`*^Cd?Xg0S"\QT^)T+oTN:,I-mcY1sa:?#,rF"Us+R8CR"q6%A%'VqWbt@TJ#".H>[)pBa,hrN[OG#<.W=XIO
  974. !)P:YhPh''#V(q%!'11S1'5gb#;C1RX%]$uPYL'M$K+n6Lr@jsN9Y9dB4\0qa4,mG&EchG"tVI(YIN<2KPaDEN%]dA,HNG6
  975. ,^b6m6OlRGL<>Wh#[5Q31Z\m1bj8J!Y$Rj".\`s@^q'lg\dK)]llbj)k+Yl\?mWn(#1*#I5qWfo.0Le2&qL`0JKb[L1)'a<
  976. !<FV;5gBZZ!<NB9$DVXE6s;*6rWI.[[;,!T^fM8gFRq1g%%uAc+O^mPS.'qq(X[dNJBA5E^D0#:D/:IlD.GKD/ktY*-:;N7
  977. #<"--b#W<g1Zp5n0jtiY^o-IH70707,N?t-^-Eu6j^=1V/l^q_OV.(Ho-=D%Xorm'N\6%<#Crr\Agdj25`G'BZYb`adG42i
  978. r,6(eJg8]c#\lh:GR5aPgZ:d)+CZh^#^8!#P!aUJm)1<fC^0r_,[b^A6BE[u_Z@QV)23$RnmGThE;Zmg"<dIN+Q"!.jq%O]
  979. (Z<aF0NA86lLN-,\\kfH`0V^od\K7Yhs:u`0-1T'Uq2[&$Nti)U5B4SXpK]J/!1VI@(m9SfRD!VTVG+CW\uIr\IIJGe6m8J
  980. `?7/m]"%7BU!"EMB[g^WA2,k%32]"pi&1rF!-Fl5$@pV1O#%n7#p;#<FO)`05ZgFqMH24=0G43dF"]<16OaFb1T$[YXAi1'
  981. _Y56:f;$bcnZW1nV]t0:_6LQSDdOppE[=%oK8;jI,&nmFO=*Yh]-+gh$-'8;^dCf1,Qb"rY9a&;O"9gd8.YG@L.[i8n8]_`
  982. 3baP?V/U!!f);nT.l4gdb.]c#O=<M<r@eusmASiRY#`C`S7:P/kg\+gjNrP;o70q(AL/XbR5`QMf]I0*de<:mM_o7U3Kl''
  983. +HcfH:]qC4<$TjXUXLn%5!SYui'a#diol,Kd"\?f@"ZocPX,`br&7K_6A+tnk%O&_`jbF_I47p^8mFQ`>XsHb9;ut='5BEo
  984. "ssLn-,_WqZXT).rh[[q-PVI3_VZX`HP#,p$k'#-%q<NiKMD[,1&r[/+@6-+TL;73/a,0GjD.7V1kOh!2aT'JP!M4r>dgC?
  985. ;5-2\-G"-ZnKS3V6Nf7nAapH8'2Lnf'7i/>TfGnF6TOWWE,P[)$l75b#ei%n+>-p;Z/Eh0HpBJE3KrPk`+7B=HUC%m1GSkj
  986. k,Qu8#/3f=$W>\QAW?dVTWMjm>8$_u?qe(_eF<N]*roFYa"V30%&ebt4CWjZ!3cks\57d1#f)6#^j$$5;?dh^'lmV57:Q!<
  987. B0tNM"X#Qm'pbg#k_"Q"W<?i[MOm3MYtIo.k3n=GUd/-NpbRZ509b/oQ';Ifi_$5.<`H_a:i[m\=:??<%OgWIBG`A]njJ"6
  988. 5SEiG`kk''djRK?-ajp&dX>Q_(_ORt@?PsRYN.p-)%;KSghm/sNAgZl%/KQi^D/@_/3.5'I#+]QN[u)_8CYAHOQHOpk^\,s
  989. "R(h8H:8&R6gkX;m<VkGpK"WO3N?9U"h.7$*D"(Z(U6"5<Za5u2-Rqk7cd*;<8L#>OYijG:%Yc,OH,V\PQK!iCh[odP$#;V
  990. _Cag;HXL)dJep:SQra_t3VC/s!0^`NOFrh39Q\<Z.:OY;L^eo'%Z'Dm6_7?fRO2KObV-QT,JGDGW>Dso$\EU0QS2GUKb4=K
  991. %m[)s+JoepcA[PNk)0#XYfLGe>k>lK<06`6kT+?u@s2;i5ctP`j-\I,2cR'<;@NV#AoMNQ5A.4AgB=*i%l6MuaWjSrF!E(_
  992. lad8(U-qO*,fhtP&<JE)Qt4*2KCtsMVjI^`&=4LP!WX*cTG_Qid<uBr8<\I,1u_0tE:q<u<d$U56c<l<&T6Ni-OFgH2<%9;
  993. `e0?#$m?/jn_?*?jonQ/bMmIg:Z0m%9k[Fb2+"2kFHe5kTieV4-W54<:X\5]'2J<n#NU].oH%JJ&il-nKpYkoK:#1uoHG`/
  994. ,up]G+qZZ["WurD+=0Lk77SB$=Slo`NT;O5K8U\#%"fZNWJ=f!j4$4>e3;MsQt"'58BsU7G(\^6G,!k9X.8B@X>L^)7cZj8
  995. 5[_OtqH\u?QSum#@d,-)MRpU;45^oJ0Qr9BAl`GD1i3L]N8ucl>Z+J:%?C:/p;-p@re't#]1g9R#_kH1E4VAd.l++8i;sOq
  996. M-L7TN1rFdoo99BH6Umt,hYm;Pe_oCZ3H]-M$fM".#_1t4p?I9"'9)jiuG..5+5#a"2MDP5X5V5?39E'R3L3/<Sf?qmn6Dn
  997. -Gspm!sY1oTEB6AGm5cTV0r/_s+nX.$KnTDj2=u-O[HDrRjdeUi)F9B?CaE!1QTVfbG["k4t.$!nr.eujiF#)VUo?VJ#ZS"
  998. E#qPP[KOZ(r@s\lkN3r**L3@05-4*>#C?!M;Uk.PD/P$j:;\P[I5fQ@kY+W^7gqO,lLH-F.70U5nW=WkpF)%MeqJ;Q+D_6)
  999. A:unDDr>&MeX(&\7jJGMGJbk.GkI!1:7PfB-9u7k5ahp#2j^M>#68cG=,ntL]9r`kXeY;>Lp)Wq-qWZr?s0LPo+RSgZMDkr
  1000. T*/-<M$c(-krKqn8bpGAD4Cf!66UAW\hPV27?o!_ehpou?',\tkBd.P`Zf\ok8)kI,nd2e*D.tS,?R8u$Z)$$+sM0:UNtQD
  1001. <([:8:4+Z$nO)<Q'jLr;O-05%Ng9AL2aRr6oNX7m3u%/iE==5&Mcd9oV"ZC'E#sI=&Xde)#W$=`FdFB#RP%K@[4Fr]4$'RD
  1002. c<05a[MJ"6q5/6.Gou/]@:gu[M1dA@r>W`'X()>^TKb+D#rRtsXD$t'$M:i&&3)#n7OaQe[9mGX:,$4Wr#73$"q6ec.4kNX
  1003. bMm)jV70`sL*4j3:b(7AA[[JJ#ir1$+X:#VCYUZk`eku32ZpZ3-PSF_:HKCd,?lOrHoo5rIO!")Bh<n-@sm[IcOlt'.92:H
  1004. r*1XZPXiTg-&sBT@VEG/K5>:b>H)+\WJc;BcXofkViOGuEg)C8,gFT.Imo5PBON[f:c%_h$O.RQmnUjj:duXk,%AbJ"qj#D
  1005. #R1!F>%W^9a:K]A#?kM=.3%,U8'ia`]Y!_nbmE<QUa^*0a@'^!oLCU+0VMbV](P2d]nR$p%9#n\L]e<m1ZVU5`O@c!f_'Qn
  1006. 4-_RR[b1p4@P+>3Q*?_`.QC&D9d>'B?58ebkW_&"TEog;VHHYNe;sh/9-f4#$D@"uFA>gR$7!]UI0@-7.<6r$;!:=n<V0r,
  1007. PeMcQD?T/UBbY._aeT;pHj,t%LtQ#8HJQ;tpBW!W,j9S]-"=ON/NcD:gE8\;@VsoT#VRSrbmpnc&frV3\hV<s8](e\TLUjm
  1008. A0^P[cGT+=b2ai4aAsb09%7G"OSl!&V?DutW1uPJ?2r?aJZ*u$Eok(m8P1ON<GdPLO<n@/Y`T85($'c:i,SJcjKiEUd^65o
  1009. >bjlTjPa8[AqN?^"TVk%\O0K,ie*Q;D&[LMPt'E/K^Y`D9B:$45en)Ll&k=]3$LIc1p'LYIF2A!"*p3$^a>P$=G#eZM2@pn
  1010. BO-n6Q^J&hQR(T`e?/$SFbu;1eCpDo=bHkAYTUl_]m86cV49URo"`n=G+oc0,6k-!d)`Om8UD;SDcPdG!s]]M/q3.Ej(_DP
  1011. MCrB!2;9`PSb(h=]m>t516!U``PRl_C=Q9<AVd@2\%TV7-::Bp<Ooh/KiYVICV>dr;WV,rLT'Bh&Wl6X!uM'gpV$5_RJ6bV
  1012. HVmg*jhl48MkK1pEq2LBNQYlY"sF\^:*L9<oKTLAAXXgoXLb!ke.;\siX6l"@N\dA>JM`]F2=VVr#1G<lF5Wc5MX2K.fT0+
  1013. ^N'R]:QOYC?m5S&(DI%Io"_n#5S69>:e4u=THar0"E9J7:iINeNW_(M^jmgu&4`K=5sT<^-l<78nM(k3J/sP<Uu>_fF?hf$
  1014. c:,#V"H$J1&-BfOM;V94+=IVMjag6U^al:>KLLHj/79;*$3\k0,eC2s##4DmC/DELG:&.X"7Y:IF_i.UOQ7@Wg?WYt?EX$B
  1015. H5qog&fq8o/05S\4@#+Lk5m2hH75(iK>R^LY[B,U!^Zn/i?7&V/0G>['0sJa=;,D'+u;LR-rC`]`rX<Cn6fWGKae+.i36I*
  1016. *=,CB.<MI;-\r'$S.X,X^bH!,"r1"6n=V*J%ROI*OW9B!/<W??6;S?8(@VMt"G$M)Vl@"#kM7kG^cO1BLZQn!i3!fO!l.S0
  1017. LP#S5*Y&4L>VlZQ+CsA_@t8m)WW?=s(rHj$Zlk!p@qls;n)>bo^M[9Lj.rBY>`FCbqEEU8JG>3A`NDQZY9W<FI%Da:_FtRi
  1018. Og7TA-dgpqYd4@V_W?>8\t5k;c-(9hXIu@j)5jFS((c'i6;We1iGe9.Y[T"=49hjJ>X,Cn$KSlpF)(\!9nEf#)Su$oMUr)b
  1019. 8FS.F_A^(V"/*.H#W%!=.L^pW\6RAf6MW;n#UD[6ekB!b-81&2#f%B11'0ZE6-_!19XO'UP88aZ3(6NNTO=E(8\n@[ot=h]
  1020. YRh9H:iJCP+X$P3"-t&i?O$Y*e/C>iRR#O-Jq>V;7PSRr%Z'+p2f&T"h6[jM5hn;<5N,iU(Xq?NeTFiqZn-r9YkU3hL*9rT
  1021. )+uAfo_1@[RM:ZNB`s6STi&-F*$oUQ'c>n<&1S4mF=OsC8@TpPKjb!C_R%+bMPBE+19st4`U&jo=3OTZ`ZO<1AEc_oPI=T2
  1022. cBG'j_nl/lM`YMp8H:8uUX5k`N<4oF,DXd!?_WE%M&n=u@pl0-N;6t4_lcqU)TSYQ4MS$p%K55D,1>Pb(^"NEFr=504+D;V
  1023. O*,UW%tk5F7M/"bni@J<QMNrWKAbN3%YN-,.ukg"/QW'J3l;`iFj%[JKn9_&&]Ckp2n9%b1bj/1ogiS:WRB&j&LGU]$l?kp
  1024. -2W<>JH13:84_fLg@fN!DNf^H5W%QFq_MuQUPg)_hpc@H.\ZX#XDl90kfV3HFK2(;-7bJHBU8DWj-ITd;ocp8Y#D)(_G2V"
  1025. cF3Z[7*;sIi1SqlY^r2B-KZKa*\;eM_c.'38XQ%/p'dA:KMKgt*tjgPXB3M@22GDk-rbS7d!DX47\'F15_'(A?t'Fnr'6%a
  1026. jrac9E":j<&I6]3++n)G$%]lK"\/t9!^L-"XY&$aU+Eg8gQhs-8.d"W`fs)9)fuFdqB6u-CeaH*/EiVu06<(@&`HA6jLK^?
  1027. p#_UsYr?jePq%lk^2aSAAKrV2;+?ms#2#?,7kojOOf**N;?BH@a&o=Lj5e9RbR@tJV2,..P2g"[H@/;\4@I:.CXjn_M2\_e
  1028. 29@7VRc1>`M=kun&C;"_:et[TE_Za:VKJ^TVj"&fXsH#K]i?6c2sn-_`,NL'_72`8CXjlP6WC[TM(Ur"O=g]eX;=4=8.#AP
  1029. U]]k!%`5GI$'Q-7baG(3@7XK/6#eH;@!i+iU02Pm\J#PifVf=C$p^`klPbk"I@g>@,GnSe!C1<+J=8AbBZ0g#@Q7&tJ/Uo?
  1030. .Y#I4ZTf%DBm8p&&fFjQ[:B,N">UHGP0!#1Q!Eg(<)=%EU7Btu>^f3(S]DC2>9M3`=]8#%1*#CK'NbACG>@BRdhc[dP0?mL
  1031. 7pmL1PEKe)eM<WXd'0@49#?]r1j6%M.%+S.O-$XXHH7?WL-YkZk)`XR+`oAni6E$)3+#tt2$]Y\3YMQ+/-`oJ*@.Z;$:09)
  1032. -\0hdK-4h7!I.!<5gj?K^p"C]_2sHaE"3$?J-V,,c'?PM(p>WL%KP%="&T(hUC%B?5f,*n28.lJWTt]U)'!ZDehn.Bc:UuE
  1033. $mmC"3[3QZ:COQ27HBar'2log5hR2LUkuDl=oq4Xi$s=)7E:m$(mjM>[uBcDV5I^',D&7%JHnU(W5'tSb6SFW+@bWE<=2lH
  1034. V:`CR7H<5[Dg3oX*Dj4IU>D&OGOE`B]`d.XW,No)$1h4WWnFOA\5jON88+GXr'Z>!![U5RM$sDfUH6=J;SbM="o(?gfs4Lj
  1035. _%8$t+F`f<HoRI24G*d0KEd&s+c-2l/-S:S&:iP;4RmR4TB1hG'pG`b%Tu(@9?tf/`THG+680ga*2#`9FVuq_,.k+MUqOc!
  1036. _+;1E")f4<[Zkt-h4tEolmjOt'BK?hFWdAZ*@k=A,6CO@=YPc4ZD^`=[-;#961R:mY,99Zi6.pJ%Z+"]r:\1I>G4DAM`nX\
  1037. SNAG&Hj7P`lSR6j)lA]r$Gfsl"H\hClBl5nTt!(:Qu3RV6;q/e33QU\[S>0Pa27n+qEV985_;6S?EWPPJedF(@c=_N(n20l
  1038. /TBgs3E@V@S^8hgXE)C0nAh=SEIp,FQSNDsWCP<t38B"#!:4$8KXo+_JhG[Gbo2R;4""Tk;&gNJe29n3W1:8sn*4pMJW[a3
  1039. Q?UP\'>eqB,b<u,ZQ/nZJUB)Hh=:YN,+0Q'H?;Xld@k+?gCk?AB86gc+YY=C'C,!7br8@(n=UC5O@$&lkTU-@NQAsq+4Aqo
  1040. :6q!1%g0UB8npQZ!,rPPDk]M0(XnkJ[&5P(UQ(bae;?X!;%O9hRr`4QrLo&hK[]AS.U!P:+"L=Y[T`YS02ZJrS<uk@G?uI]
  1041. ;d!;U[:kAibM&M91>:K"DBkPj[W^IH-![seqLn0Me7m`%P.R+_)`(4!TH#,.ID3j2/7YM;DB3=N:eBEK"p$t2GonEp]Vh+e
  1042. hII^Q_O'@2?^UDuLWWRl*0eqI<t'Yu1?iM=P.;"Gp%%'fbgq07'TXspGLH3d*cdu+gt\'D@W%>TTA"Vt,KE2m+?A%7JPO9U
  1043. $n,ZMR`FK-C3c^oe!(en*G;X5,dSrr(83ib>#1=-`nHQ=[Pmp##eC)dLe/PqjZ41q(aZei4j3O#$.n">o&5,Yc)M_-2j0%2
  1044. $K[[Y1,s&+PlhmZ#c3a$n$5d3JKa'Z8.u@\o<1/ON0<T8](<+Y%R@&bY0-5bg@-fNnd4NFM^ggtPE;hQbe\hRN_>ZR=;i/M
  1045. -^kSqSRTY@TFh2Kl7CZ"!K\f56$%[/,b!^?*,2lG1!L5RKbipuX;!'!&_9.Ue/tJ;SJsElM1CEAFFd[J1AbH<JJA3+/&Oqm
  1046. N`dSBW1o2"L,RF\_J*)dPB+FciBOZX^JGBF^os[%/e(]]6R]!mb;#JbGVZ#SXh-?PCP2_FS>S-]/`>;+@]#=Re!?Yd#bjIB
  1047. r&Y@Lj1DQ76_$la+J,^Z:&u<PJQ)?+TS==7<kP.5M7X-Ei3!)i[mPtS/TQCC3LGm>':YZuOBDd>^aK4C1'0-J27$LR0GU(N
  1048. ;Q"!=M%L+^GkW#:bITD%%p@I&M!UZ,k`mXUZhe_X"76[cNXkU)&-E,,&Eo-84!%X%MR"BMfiPr*"ueV[U9jV^A3Qe-1:!Z"
  1049. $2\_E+YK#sN5+X$ZgarZ'.h'm(8.`u2k\#,@)KW$K"uUI$oou13Q@J,1)#d/MeSV998,r("#s4@Pq85]M2sIgSf(Zh\+1jT
  1050. @Rq'!;4Z/#7C6;MF:U$_CQ+Fj/&D3S#kbcZ.KXQ!"%/*L0GZOM1'4Zq8rsf/@:u:n1.,S*Ll<_fZ$DZ2D7X-=Ru%,:C9\40
  1051. 3<A2]%^>o>dX+Jp0o.kj#X!@L_!=>YAg/oD6Yq#rd#/s=Bqia#2R2?q\sL@jI(&MRO_FNL<,s*Zi^@3+_tj^rN/Tk+"=[I:
  1052. On#d!W/Qm)U5<rW+M%>.!$Ip[Q%=lHZaeQei%tL+d=V4u!r8IQ$^[Kq-FmW5`-C:O)6Ji"QND-4^!T<W,i]SSI>QCP"'jWO
  1053. kk1UYhNnkl!:pr,kk)lNk`VB3QSOVZZEat`@t>2L&)6:KM._^6%1kN.1de>MXKFuoqD*[DLl'[nP^>5<2lsRNM%VrYMEVJH
  1054. a-,\DRnQ_tWZdLui65<,4*$7M8<,8NPJdi@*Ad_Q=XFQ^;*QIfY3=%e'8Rbbe!X]BM-F!]!E+h,cAeop8P)#P]6lfY::#0c
  1055. %U%?a\3,BD=G;Q1dEkjH+B4$U+,&QGK`F^ILdZlrQN@1M3'<GH_(na,R%64[*]ZY13c7ZsVh4iuNk#83nGl31(!Cl(!I,!A
  1056. UgVX3Z[o\bP+*CdJGkMtmhZ+7Lp<ef=Fs=h+\T^=^C7h3jS>AAQTkPUJ[jaa>,!hD,*9=uUG*?1)ro:,\0H&n(fU-t0UT`X
  1057. &B";a#`GW(Pma0+a\^A:!<XbZYq2^$(mOO=Sts+-o/.T;dKtd43(XAblpqRs!"/)nMHh-S?r$o6^'%h9"AhPjE(&827"h4(
  1058. KM<\DXP6Io>ZImQJWZ6mZdY.qVUj.f;UINHYm`!BGF,PfNq17i3<@6;M%FLk9n=aLATtP-DShi^*JFV&fVP_IF9+6V'['rU
  1059. W?Sr^%8TX]a^GC3!^E7>MDPHV2p11gm/jmZLt%;;)bN&G;u47N4#/f;Xl8--OJS`*:=T%T2eWXXAPsI,ZDg2QSuAPWMuu9u
  1060. V^*8-MTbKb@m%*5WCtqg&B/K)12I$OBdT!O!l^len2*:!1;V$W"3;_38/XN'LJ:W,;Me&kZ;7,22Ln%P!J1C,GqgUqN3RU;
  1061. 7ghSE=U(%Nh%H,A2Cu#*Rp7i9+P>>Ca)okP4EJm]iCU@;NjGaBeF^pPe_+AFPnS5A?,4C2_H?#f*h"VjTkV84MqG.(>[o-K
  1062. E"F&;(7mXA]*1t_'arYZ&jRI88-su>X[KWidm,0@]:b%QdXmI[:C&K0-K-D<N7YpFiEaCa+XfFLPE<J6*Spk*!am&M_IN^X
  1063. :9'Q6aYUcTQlstA(lQn4\om:hkqa8eRAjH8N%6`E3diS&g;:`l1S_o^S*uK5e\2\O-i(asGdGlO)c]G[NICW/V#T*^r/)>m
  1064. b\[]<>l2`ie$idN_.%FT4Hth6.@c(j!<_g8&]Ut:Mbmf83WgV4"8muRI6*)`i5)dg/IjWmYMD9)NBERG/HssG$<4.O:R0-Q
  1065. pmit*\<?[/Qc'^kEsP4U(b98:0XD$O,%ZuRk"-8F@NdOk8dA7&;iU0M.XhM#WL")+_kJ>@(l8)sN15fR77/aEbQYRA&aCU'
  1066. P*UuDMK*bPl1m<HqQl^CgUljOE?F*i]`D@c'^].jI*RU%#ZOCl7jNr@FkF,)6JR6A=J\Tt]Y>IQOXGhggo1!Too[=C5?Y'D
  1067. MB%9U5!:rc<i,/-9H]To@#b`'%GqI0.M@?Oc;U3#5:n)->mWqQU`[G[7_lYPX)eXTiB\aeMkE?oi_5U<Og.p#'$K*,1b7l!
  1068. NETO?pu7qQOc&&1dO9p25s0+m\c_Yo/bIZ1X#1>jV`&F"Q26T6/5',B3WjHXpno<1SAr!!`&SeQSV?'"((dfm@^\P@B\?dl
  1069. Oc6[L=M4psZ@(`?5QM1OhnTneZ&l($G@[9t(h#%ufuD&UlD=95+C#Zf:oVMG&RCbG&[@:Fg6db%FtH7B#[j5aS!qV^$T0=B
  1070. kt3'ag&DICh?""QiZ#_D2CB'Z3*7UA=hs0rL1=c9+'Fu4`F=!\]o9n^TXr4@S8!_6bfU6LR>P<,@o+3le\#-%qFb!$%FiNT
  1071. JE8R=Zq,&[JT-MY&19MNRbl966\4V2NVKmqJ)$-hSk:t,DLC6^2OL@<2?Q/mD,:5k.pQttLf*36fU!_&/;^3]PurjpYo(-L
  1072. #7Ai$4WW#Q0ag/PDMZEpkt:GZ8[GDC2?aXQ)2Yd>YeV-pblRYf+NCM,E7O+p:8O.=D3u']m>!:_X(I%ZJJo[d]<eJkWKdM)
  1073. W."s5`&+l:P[dIjgTVW4L;(\V)aFVL52mtn!?)"^/-3'[1hjQ(GZ+b':2]U!U*M=JM&<L(gloiV't)-(ou3M6bJUlsTV1$+
  1074. I't*8:uq-k14ZP93RR5mZe[4\=fA5@U>?1fL1H.F#X+KmCk"ud0oU0MM%c=<Ys]:-$OKNY)?hQm`6:dr1>_ZRa[iDlG"hul
  1075. >;cqP3gF";\>[0&2m0F@giPE0^-R;]r(f[H;sU*ShPdo7,/8Z]C7s2glfs%5h2=ABcqX4kiX-!Ph7TLXYYZaXgIBb"A6&d6
  1076. KGgpmetEdpR$*1'`#_6'mSuKni5JF6Wc%TIi#8og<FFs</Q1$&f]EoL-/ZeAWY$k`DYnB,S'`pE$MKA@rK&i-pD\13OD^5P
  1077. UKHK(NK!oY\Re2naPsiI71Y42^+!-ELtQcEV`\ag4ui=68Ur:$?=.JZ4Ho4>DD"QIaW4l"21&ISKhTYbHs]\dNjD+6(E9(c
  1078. V`/#;Z'rjlTm[1lU07_o-8K9YO=DD\/j27p.0BolIPUA#-g%@h7&0\KMeVc?c!^mB85son$.<hOYfI<P`?bdd(n7+o@"F8'
  1079. !Do+9#/O\c5_/,'lkpeaL?3;lX"F;N!N`_he_6#1VQ,fY7ibT<1'eQUE8`HI$<^RW&_1W,3dB/mLl#d>nQKSNaWRR5=Hkmd
  1080. JE?&KI!F>!Xis`cC]O/k6L]!\5DuN:YS1beEE@C?20hCeEh+aH*!(tZ\O/tGJ1Iil*T0maUH($7mkT1/1N.X<VgbF<G=&P,
  1081. 8jmRR[nAr!5Ro%>OEYP9A@.0&?=EHh$$5mr$=1oFpl+R!KOjYJETZG82bole('.D%V!:VLIQA294u>T"#WT0]?\@14`.@Yg
  1082. Va0uLTGPcjkn)*%1!?m(*AI">1<G"eI)loH47a&[/9NoaGVC5[,siCMjuQ4bf81!BEtlKBn#-#-aoiK=c5`!GO29Z-0]Lpp
  1083. bO#h&Iq1)?AGI$_?T$4a59iC5o7sLFK6CAbrN^9u)(=#es&/r:[p5kuE&f$7@*$7&j#;aWLl1)UGl2%>)a62f;scm@k8<!k
  1084. V0%3\&Se*cVk4b*,6C+D`d59'!77*"((lB)Ej6`g!u;P?+gN65)\4\;Ka!'YS;p)J`oF>F^n*#(O%5"Z!9"K.)O1N#OHE[.
  1085. J0'ln8B)6u+L!47'Eln40cZi**YJS8Jd?H\5S4DQ_=Bju4>73L700'cL6YH/LoOmVW+7Jg$W]X'9/)`"+r^q[6/b(tV`ZdF
  1086. 7OE^8/5R/f<e>u*BY:Q&&=NeH6GSs::p3e!K)jaj2gl1r`0]uu?m\AU#RCLuQ;AtX%>RFT&Fi"UM\-3<!kh-c@LF"W/com_
  1087. ?mn"Yj8i^$PuonLc%pq)!='F!Qj![\2a"NXc(iAK.K\AUlUfU/LW]b$B,!U-(O*Lq&SDe=8.kF6*1Z2n8+QM'2EN!&QbTWG
  1088. DL3uI&dSMuBHl>c:bp*-"qB4*#sghL=;:p(-pe,iY"U5J__B:e$,[pZ>R?/sCe"^8!9?b9K8G[P/dO`EJ>>$E9M5W,nZ3NG
  1089. W@@t>&&(p+M@[b/__C,b!>$"h"/&moaZHM[^B?)ab08Uo!3dlZ"AnE-&.'SsXr!*+b4aT5Ta8FQ9`_R3'0*#X,j`*YK])UL
  1090. luRFS:12iIn;H6ebl"q&US@Lgb<iS=aNW*moec%I@*?tNP5O^Q%.INE:NM08qR(-Mg'TtRbHE1j9iLW8\PJ.9r6MHSbu$VT
  1091. jPmkSc4g-i[kR#Z))l;(+!q)U'Y=:q<]E(_5#mSMn%@'7HD(FXMtk:O[5Ed7fM0SL,6:-@<?j]p<+Hb4lKdN`]&@%IM-[=.
  1092. "<Up#PD'F]6$mM.9&Q?p#QbAYnh61/@!Fd>'@Qg8"@Bn=f*-?m<C[0LX0g<^oYjkNKM8`^I'iUB'3MLkReG.7mGKCk[)!2/
  1093. 7&u;Ie!N:Vpfde\/L?)7daR5@"#>c40\/H!,l<<YcFUVO]bnppo2Sb*3CVG9,HkR`QiM*)1"ohkY(qU">p.qR9A]Iu6$RW.
  1094. #[u`Y["r.0^_hdC5]42i]=.)]#eOJZ(CC1Z;Ntk_rSrUjWf-J`"gpsjG_Q;#J&d?B2U?'33F.<tm,;oF(PE^JDBK13=#_#-
  1095. iJ<L9;[p=d[D4I8SEl%X35-Mt!iFlm^t@^D28%Ro0Wt.fgU>s6T`n.72pMV$gpiWGXfeX`c:mME$f3o]"S1mLq+-`++[Q>H
  1096. P:lUm5hgA+Kte9FdSh4TB0.o<:g'$:Za`G8j\KO](=UEoC*)rWku!Tp$R$c',Lt4D$ut`;TMQkbn1Lr0nN$upoHArScl#0S
  1097. >mgZM,_VOG(*Kt&%'Z0."G"9$;<^+Ek`p9/p?\Y"(e=u71!kQ^e6L1a<t-<p.u05&"ptJc81n<s1b`1!?=PrJC12@si1TA(
  1098. arNa'a;@?"GT6cX[W_c1+.d(*>ZMMZ#4+?^0rLu?!@'+?ltuh@jW^$5)7`_O,h413YcWiROC`.G-GE"P#TiTq1?O\W)('%B
  1099. JKb%MkS[Vno00(@@>n25WJmGoe9`Iom:m0mq\lAa;\tl578P$.P[r^p%H58p6oYXIkm7:u4?5=]OPriaY(7D#pN6K2+pEL5
  1100. M*dk1"-2J#[ppslSU%\s&<,g%(4^&?!^UWg":r-[:jEPF">4+.1^+Gj*eKbM%KT1@"W3sL!VGWH_+JbN\],?Cn1tUV2;]GH
  1101. %.;C#Ot`QI$)dIG<)06)@_d\V8b\JG'.dZPZmC^F'0=HB/)r^P9\Q2hTPkp*SrO"ditiF9Uu*qmTn$SE7nQNX@sj_GMKV`Z
  1102. 1W_"OU"<<&MGC2e%,"bY<(?(/Z+l#KMNMDhD!\7^!,rPP66JQ"_H^#rEHj-ji.2N8$mGfsBN^6:?O4p(#H]?X$Cm9H5a)Ts
  1103. #;H3!`?;H#K#D%)+YYGMr':`$XJS$YTM^8NfJ<ks-l#9n('>+Q%"\U>LCk.>6O8JVi?UYlH/@DIdfg&o+?Y<rGTXdF,S(*L
  1104. 3!1W0)32gL<7.'?-C,YRf\8BBZlV0@K')Re3W2NI'G*AU!bA)'b5tI=hHJ*Ac/36c1EbHh;PUPoO?pubNu4`mRL)BAN@m#n
  1105. E5ja2,B_BAdOWb'S_K>JBc"&_1.R5g,_VD=AVAb?DCKkBphUTJT\(/Mi-p_knU@[_bSfFjq4&Yk:_o07L*3V?(Ga2V`!Cc-
  1106. K-4G,EK2Q'+M&7R]P!-@jsSc>NW_6+&%j/_I%;bL"sI/heR8\lK<9n<Fu2#8"MPW'Ec"NY\2XS`-lO2149K$M)WUPfh$fEV
  1107. 1Cd$-]sA@N-o9FapI/7l)$+[4,1CjOSlmLqjArMTfsZXt:;-7G+i)f:2oqMqAa#`:Er4(l&qCSCFu"&@Wh:h%c;1Q25hTk2
  1108. 34m4CT7J3#Ai$F+3=lmmWT3)4:.VW*,,Y=rZ*ZNGOR+'aZMfWB5UA-@.n?:H/-64gC7WO\!gb%aki#Hg7[>"1U5N+3+^L$:
  1109. ]8@rn`Zq(oKbcuH(5F&p3/1]q,r"1*`L+b$*c.$QJ]9bTJ;2G3+C65.2U$@mEfhF:m>Xe3SpcqhnRq7-S1X;D1li!uT4f()
  1110. .'@+9O.k\b2']Sh"UdAJc:4OQkp&jU.mp7Xl=TphqWO+\<QC9g?@Z<O=cFJg7oBST;E8V98W4n8Yk`(EVTSE_fc25IFq4&e
  1111. Ui4PBd_(J;%'3--ot&R?9<#d'`TIL.9iDj\OE1mtKJZ-l3u?Vk$0%jU!8I<7ED$VEK>=]'0f=UlJc%okm[tZ,<[nR<<',eb
  1112. !#OZO%b^p+*!<=1#m:5mg3Zo,YiE$+b3Eb:C4sSOg'k+.3S2J.K6V&Z7&A-(N6Vk;.\u:h#1BR+9<rc!)cN`O4B9J5=fsom
  1113. >Wf<aj"kJ?Mo7*oa`V[j8=O#!L:"o.Bb;np$Gg)rDQMc3&e45W5`;D(\9#]FcQjRES(e;_E\0-4Vo8[*+JMmVj]mD)LE]ts
  1114. M,%!q\aZsC_U)-fnPP5b;:c&(>S[3V=4,9o^R+*kRVVuH*!<]g`LTd?:H%T)qYLFPiVXhb^c3G5'q_l<6\$A.OIt!;rLg2t
  1115. W=LJRb#g-G.$>fkJY\<?.OYB(c?eD&bO6.*-8qNR%".5_",RkC-F3/OP+R@^]I^p_c4J=*.0+1Wok^FS8MJI7Qrer-7E7Tj
  1116. &+h=2p+_4u-"T2\VcGE%LA&kC*J)3NTt8!I(_VB67RgF4`MAb$b]bTNHU[AfDJZHVAAR5HkK9G1jl02LZuJKaqZEdF89-[Y
  1117. mO4`]KQ"p@aF&dDiX>gi%Nq?ZjrE_>XGd-arXR!Sm?m5+MRgWLR1!"!_ceN:&2L(5"GP5'9uu4ED!u2A8HbJYbCVS33mAqm
  1118. UB!"]_R*lenF+Au129KUX%]7`ps"_'no%iaW]L@%qHH@Q"O!nMcMWrCE[l[TJakd$K4L36&k58gcAl?;jlSJZX9p);eNrC?
  1119. 9ea=766*g4'd5QN@r;M7cG5#e>!lD5B)XDj=9TgTXUiVb09?ft9G;t:l>E,6Xr?OI^hj.#5g2p9@`VCJPV+H5%&MZpL;7\b
  1120. 7fEtg#VlE';"CsWr`<RI1C&:bltTQ.#W.VqRSZhFAi;CK>7g<J(1Z43MAeDTp/Iro3!6%CXJ2"q4A2ca18huJMj0q!W];[3
  1121. nd:%+K<B^(B`sG9CTfq5_ldaPp,-KA.YKRm6E(+*QK#b@7>@9K7nQ%b#dA(OpZP)K&mteIEsZ<1XAOZ&K'#=Pq>pf,?JpVD
  1122. ^j-ioHo0oq=_#0i-IN(\'Uut<K*K=RjL$ULej+pCSaY>;aM@05#9Y\Xm-KDl.n[@ihMfb:0dBds8GOInrq5\#\&YL*L8rRP
  1123. <s!9jUe)-L8hrCZkQEYOok%$8l^Zc">e.ft\SsONYWg9-9^^*:VU%/45Y!/[qXYroo1QZ)Al/L??9'SB'h2di+q+V6(hhr9
  1124. N5jZ)Lit8.31C3/.>+eTMS9;_=sGG$$-(t20[@VUmZukO/&LG8kfiBA[Ka(^qaSjq_Y.;TcA*_6XTI2\:qCL6Addki$*a%)
  1125. 5n>X?q_-=glm!e#,a@W#(,b03C9I]$"&@f1895/F1<Al_o.8ZO$p,c=0oVW3D_Dl(<]MHK1+Gp@lo][YG.A!93&5I.9<CXA
  1126. qV0GGbVMZ2Z[;gq*@.ET0daU<d$m;H[Vgr]`bOlN!1obRMR+qB$hTP#ChGfE2`h,UEf&FcaANBO/dVRb#683aaaTd3AdEqd
  1127. #nlq:o?//oghNU32PRqI@cFG_W-#?9Z]Y=05ZeWJ_[c5:0Fb!89QF6'ZrGB&0[,\Ndh`Zr8J2-.8CV*o'Hg:0?LnEb!KsBb
  1128. j(c,t-<#V1]CJZ`^aDMP0]3%a2(p1(LXb;S+$n6VQ:X/<.V/3.E21Id:G3EE!j<D;#iLWL81LnLLskDmaDqme=9@c.;>.;K
  1129. `p>&C0P.$e^qKtA*2$\Ceu(S+o$:?E1g1,,Dbe1JK+-?#Sr.(^8P/Xk&MO>Wm4V#GlgDM@[.-B/#daSC0RtLWluMFYP%"Ru
  1130. ;Na;Sn5`KT$qTqb'ac"ZB;&6M9/Djo2RX%r'gU$]1=!b52K;5Skk^Si3E+uKndY$1K7K[&1B:BY<UW"=&U.CB.3sr:'8''=
  1131. 7B-JfIO/L@V;PH?2,tH)1KUI`$-nDV`MG9LdQ)#DU]WB[^a)hi^2ai#"`W[C-ZV*uL^328@Po83`p@_=+:@%9%dEI:e^CfV
  1132. X^.%]%nq["_Y,O5Md&h@TB+^F`HP.uP!"MM0ddf0'gQ<03FH?#473R^ap`R;6r,%X97u)%,LC/E@9Sd\,p5`X[Do$Qqe0LL
  1133. 2R!CH00WWWib4Kn2XUds:eFqlAFPm`1\FjN6WcfGA8"nRP4h7CcT-$`5\)+R9l*'>e-Z@l%*jV>1\,5IV[ttG$rf"rFl64I
  1134. &pZ'0QAcT\`ceAf0#L@VP0#VlljRqFd.RtMM]`T+0\4kXG0GmF7LfEF?DRS?UO<iOYBJO92<PBpaIE>:=*N8KDcPdU/PU0E
  1135. %qC5U9k?n7/eN'n7(4C@+ok/?D\alsQ8A7b2E#Q)DAP34>@c9$<3=&MaR^&sp17b*JO@6i_NI>V!bd=8&jS_tcp<>BrgSPe
  1136. <^iT.bs'W%c%@qI3_<<,B=q1J6TGA83A7VK6Wi[KQu84o$+%l\-K@)ZPD8Cc?@r]'pS%mpJ@,QfHN]Tu%@@.ri)2'h9rtaA
  1137. $_;t[Gn5g"fu*CpA<oeP7L]?C>@S-Pi*gII+AZfh;e.q.f:e0N8Pl',9;ogGP>4o+aB2&7FE`6<aNug/rf%Ko@Kj>'$NXE6
  1138. TIGZm]$%HB,RCHFR=dGiZn)J-R#3dOb4B\K.O\;Q0<j\+Lk<LT?8cg-YC]'8c"[_&FQZQNUY._@eB^Kd+_/5S'P],_1j_aB
  1139. IHIjrJ5;PBD[^8IBW!qZ&34D/<dRHLJ@#U&1rXbGEo5LV3#Q"=)7EW!eo8TG.dKl9$UX2<`3_,p"2em-jg6uLKP^FtZpP6'
  1140. R+>'=*bEpl"]aP;9KQYBW2smMCNe*@@h"OmRPj307,tG@/6KkW(_a_&`Q?tuE!S!.4.c6R"a?Uf$&ShPMG8:tPZ^D,#>1?@
  1141. a:?#-%KO;N!0;0!?)*]g.)878/s^UZ\2bdeLG7$pDcB)7.u[u2Ht+QlVLEkZDEs@917Eooq86X,0JA$cP(LX_PjSf;kDJ2:
  1142. lnBJJUt3UiiK1slN+7cm^j?Ql5AXKa2ms8"(nXZAW!%kb%o:lO5\#jU(:WE?@@+>Op=;.+08A199e/\NR*5eq\llqbJ$!ti
  1143. m\UVJ+qZQOZ(Vf4Th*-oj)QR`T"mBJpsXNmUd^$a5m(G0o=!n0J-0BN5_@4.>#S!'ZtsZ6T2AuNL#ZP@,X\oM9/F:5A!270
  1144. <^;=aYH1'%i'q\9SrD.b?pNB0i9tF$Ei`s!Ei@H+[JDb>KZI*c#WSh>%"R#bZ)P>A5S`OQNo)[9j@NM4fpU)k'e*)b:5m/q
  1145. WM@_@43"Wem$kkZ9k4/Pk(/T<oha?AOLkUfHKgb=<'KU<F/Ue,C75FV`$hR%%KOi_OGjcHVkh,LD!-L[j_d5Kdd1a5-j3\/
  1146. VAsVJIOr\)fPbjIOiZ[<&m_Ob0RI+T/i,bQMjD5Y;\-hT5q!NM=N*k[I7F^(@$5KXWL!.sa"Z^pS!"536k4ao'u9pmT]cdB
  1147. *3nfRrIiWn;j%V!LPZ"RbBT1f=E0j=AD)s5>su\:)qY3`s$.RI>pRl$\F:t("V0b3ra9lMEBoJaF1rQ`Xq&V?q;>:3L.p[V
  1148. :i4K-ReZua9Oo"GYkeg5!,\C-PmcfQLGS!LlI!F_S:kU.#0.Ir>3n4P`Jja"ZgF,`+up-XNc@Fb^2?jBbP'J:fF8tM6`8H2
  1149. 6t.Ss#V%u*.u1O+_&3ULY50;<_Z=3YJPZuDc.DZTDDZH-.4&_A;UkZF#L$;hg/=IuKal:PgA->?BdYIs3LE/t;]0$LeY6Cj
  1150. &8`,aLPX#)HbfX9`N%-t>,Ub6Drgn^`/j&#^!(OoK;`uUYtSCd2#QHp_R*5\o5i[^De_$Y8i6/#gS;ql^pl(3_P1@M/Et@@
  1151. 4lB`cA/;9QoliYg,m3b?G^BrRbLKuVUC0pI!)LR,pDM4XeWHBP7IF`48o-mACrZK@.Ls@8Ws`01dHspR;kPS>pq5DkHo"V_
  1152. L"iFP:#klGl,Z>#Ct)phW%sg%bC]FE7WqiI+NhF@cpF/)R-C29GZ6*iS2e]=pRtB!F[ed1lob8X`7MXEFfVeT9g/IXEd0J-
  1153. LeGDuI._iOgB6trCiJ-d2-]Yf#KC*<Bu,eR[/NL^Go?k"JDHb7"27cop:UAg?"[V,bD,l6.,9/UEo]ti#XQ&qT46>TH8PML
  1154. RflC9h8\DcZBso9_gRQtEQHdN`4*?S#)%D)&p"k>7WM128IT%^BSFG+?]kNDBarZAR2k!h[Q=VW15D"i"8?b$UX+29@Fq%L
  1155. L.<$E7G%IVXLbXV.ThY!grPo:[aT[_>Le$9HlrNB!)QK;&!@*i6GSs:2]"a^@F;lD6s(@Z`W:UgA1\?('Eu>D^oBgKObc[5
  1156. @/5=S'cP2(io,/jHlsO>K>N0nYZ)MS747(CfN9[J%aIJYd6MFl+Vtapo,;F14>7G(8HLUQTOK'(%"sE;pi-3n(_Qr3E]@[?
  1157. ?*4\I"'M#*W[CoQ(/?f(FkHY91#-T2@qgbQF#915Q(Y@#*4h%6+oG_eH"[MH`'XTVq@<lH#/gUpC11MB9<$A)7FI#@\5jgh
  1158. #u,0=Y'D]&nY&:"Lg4=)mm\J[J<!8Q'o:-;d;csD1I)UDL_=ue5]JV2O<&EDJP:/%Tub+2q$+]#&gN7'Z.6=C`YTNtp=jC3
  1159. 9HuA)5/Y^3EngEc,qo%0PQo6e@[AmQ^c78T$&eB8#HI9)#baPb/eK9-TR[S#@IQB%6Kfg5&;!K3hY=jJ5[onV@=eo@2uoaY
  1160. "N)A_>UUaMC5NM@/HS39XjR=(Q8l[I^(\H3*"iF/!5aj=-o'(b(kt;S5RE$u&7@0siS_KpWN]QpP/8o2aqkR$im9'/!:i_h
  1161. %0:"b+/R>gYWrT_!Kt1#ljEB&S;/i?1(Y[8(E3OOi3!fM!QZN:$Kuh[j$E.,(*E^d(tMcVjbZ`BQ.5>09pR$_<'i`DF5Z]r
  1162. !XLiaWh@g%\ZTY)1`m#+J>=]U,6`$8#m10s>;N7"JDgWG^df;4Q:qXI=fDRpOJ)u=3t"N:mBVC7M6L6_W[YTrN3f`,gEM=>
  1163. b"HN)!8M7S=`""XR)eVMg6g%a"N5s?%2JCO6]tP+J>:Na;[C5.<.Aqjj+*<'a-"f*.Y;&!+9l:iC?I0APZ84"KD%it/4f5]
  1164. g@YT$^i>EkJcIdj=S9IRR*bIbk!0FB\R]Fo$pe?%N[.0]Do9C(i#9*6RjX9Ll^YO0LOt,@M<%!HJ3&\NW:)eUnE,On/cnRQ
  1165. 1^Kd_?j\>Jeg@ulN9[9k6O`tP%FuJo5AoB1Ad6T4&R\0IKUZ/I^V^Y%#IpG3k6JZAQlc^TK,ad$"/Kk0?$i7a7C\Fc!@@no
  1166. X-hYqQ7>FrnBSb-#[9q(YdPVk6uZKsY,h"mC?>][J;]+-+lMi;CdK^jHpg5c,qDKIkCHe^!T:1+C&p3'/.)D;N%fu:S<0r7
  1167. q#&ta6J_^*4::cSD/SV?*iZ/VLduD.p9""KV8N#R>7Lra5bkrtorqO@"".!]OON>;&$U_K,a>.N.4dfI1amso.()VbdU)E+
  1168. U*@S1],XItD=D8[0%T%@>M3%r+In$C#6bB`gPph>XGjMW,RThtoH^Zc%6-*G]uUkT1[E8LS7RRrQZtb!Y,-K,[o/13dN!2p
  1169. YsYai\AA_aq+1hn.%bScn.i:J!JMB1!u<fa&'6G,,rJbto[X8!3)B]nII.+`5-#]57Qt@Y$5/Qn$q%O!GR+am0t2HBU^G.E
  1170. mm+qpoG2iT:f%?///US6g]\gJN\d]c/[bn7</Se=L2]8A+4HC!UX2_H&%qG&kkQ:])@o%cGn*;1ZPd>2=^&gR%"corh9aU+
  1171. >HcU_RO,QS(C=5J;H/_t="$M$Enc?:(1!(+B&V/%+XN.BOubIp:$(E),1.]0]$RYhcs$U-//99Mj6hc%62HJS`;1FJ17$SJ
  1172. M'0"s)$@ksM4t-qEs,5oZrWpM>)C$]/?BgA&l)LE3!p#NW_`fN7k+PtIgD*g5QuE7J]L6!<M7\V!C`;lc_:;$ltlcrpOM^!
  1173. "7ARt!4e7q%abtOZ^`k`R`$Y>9+D!<-,n/*_t$:%ek-]\/tCb"G_h>/5m`;=1kCaCM,[=M7$_U4=tR.\Zs;CXS$cpbeGrt]
  1174. OA%\XDB^-sl@;I'\19hNC2HXh-;E&s)bY0.`Y"PK'EO'i5DTA&:>%'!gtRj."R,s2MUn+[HAMfAd&7(Wi6eW;"=oWT,#EKV
  1175. a6[ApZ[mWCf`5r"WS,"^O2U"ad#nd)?lY.Q<66!m%qMUIiN\GShbr3&E=!NMW&9:7JO`Vc,Wa&/nf=/DG!9PQMBAih?+7Z$
  1176. k?(g&Y[?!J`/l2.hB?\p+Eor!UE^^;mg0j]FZ-*b>22KdE=F)\BRqf0h__%r2NHjsQ68'A6_-ifS$gB_1r<sR*,$T`Z!o5U
  1177. X:In^`I8$7VVU"4&Nq)$3[Mt^M];qkomr*d7eF)g,BJeI"*cM5JD;)pq_Zf=hC?K:.aVZ!Y$C>t2?iQn&K*Ri7t@GU_l2?3
  1178. >*+OU!O[l<j^uWg8]"&:49kupcL5%#R,*V4c%ZF[k0'Ul;VOZF.;7rn'P)?R8hijc%APZlU6(EQ%Kg]FqQi-A>BM9W-dIXg
  1179. UGt9*6fGb&"0TfCY#82$)uA6j3U&%3L,XXQ@>um[ZNCrt)5%NVOXl;_qi_cs]T!RDL,`U14Tdcd;0k0_lb=%*CeP)Xliu!Q
  1180. %7Ad"9(r]_93E_aQS_2p:"25ST:glV=R9d+18[nO;WVQ89$i*Gq>o#8%Y>=[/Q\n#\19L;&3srS:!g3?Uf</(lO4k=Tr-e3
  1181. 5dOQ<1l&SK=Y6%?,SLegk,ZVO<&e]^)o5/.T-?(\1\n.mi=qZ6#]u\HgFTPAlM3N*L'e0QM6eQ5O#YQtWKlOJ/@IEd'3OtF
  1182. 6h]IR;kn_[<i'ipA6B#lHl-fC'ob0,3;?^n<BN-F`8%Z-P7_Ai8^9p<3@I[WT?[lG-HIgjW8C/[#RYP5/"#%u-%4;H5-ja,
  1183. ]>*#Ugr)dnd42=gLqP&GTPeXPV[Ckh\6b[->'i5U82&[>]<m4Qs)q7WNB&mA[bf%u64b*R]II3iob%C?A*PM6Hnk@nC"i<J
  1184. [=`P5:JI\!,`/d\)me+7\Cs(g9!F$4?Pgt@S+D$s&j]d?`&X"F=fYV)SkMK![,(+5(s0HURG"k!)oK5bZ2o.'-L]Pfo^H)/
  1185. _%t]O*Wkd-GQW/Zec_?Jp&ktp2tIX")$H,boZMN,aRdqU+F`59rV`i2Z>(VBTQSQn"<TukNtt/:T=l?K^._Qkn96Y(AK/?h
  1186. M90<X@BG)f*tTs<!_aON1,K;NQg#9Ol7001#*6?[SoKac"3\4_PQA,&]#-$.))8ZmpcT3h'iNf"R_uU*'gIoB&@9'+>:$1D
  1187. ql0(C.=6$2Z<OVe@_L0"RNaaA(sF:gAL_\o4R;.8@XkNf'YJ/$0#Q]]i23EWDn[E$52dBn"*0]kEi(YCRNkZn$OFIuon[[[
  1188. &:g"33J7ooBb-?[$@un:aj#ppeWD@-!V$X<EMke<?%W,-K1IVe^aR+K/J?`(MlD5aCP8;M;&^EK3`(o#_0W.S[XiM$[p+nJ
  1189. R-$Y<dCdSBVH`I@S..VSYq0*T]X[)1N#)Mpr&Y5m.eBF:&/Q(fd_r2!^pI#V#`5_*LG$atZ\]3YJ=JK9h`pr,Q.Y>S5Vn$$
  1190. @026PK(pUi\pQ)'%tV<X*P't%@Si,;Q4JP+Z$?$q!>:9?cB$$UK><h130_BtH_rcg7edn?!0!"2GH<#TLdB3;8p_L*W/VEC
  1191. UA,RW3$/mAq7b8jSfrJ+X(;<p80,m=2[e?$'#'GMO?MN`XkNZc,06kVcl+VP(tpGL@qIt[(EHX[\#LO,@A^]<bE%7IJ[?1'
  1192. _#(W8'ZUIo3T(s>ac2n9&L5*gYGjH'Glkhim66B@*@XQ=:mNKE)TG;u`ZR(+gnPeC@flS*U^6d[K7j_+PQA^E'-j0<0]+S6
  1193. Xq-(nVCMJXMRW[cO$^sP'19;Ln:r#E*4*5&J\`':gA%n>'/KA(Lat5(+KHmf5V'>Q%-`G>Mk,l$_n:Yl8Q,a)$VHq`#F=;q
  1194. 5hqSi$IF]gaU<uh!T<VbUS#3@H`D2/%riPV&X"^O3(5+1QpEPuPaIJ%J:I~>
  1195. /LZWDecode filter} def
  1196. %
  1197. % Setup image fill using pattern 92
  1198. %
  1199. /pattern92 {V 1620 1128 scale
  1200. << /PaintType 1 /PatternType 1 /TilingType 1 /BBox [0 0 1 1] /XStep 1 /YStep 1 /PaintProc
  1201. {begin /DeviceRGB setcolorspace
  1202. << /ImageType 1 /Decode [0 1 0 1 0 1] /Width 135 /Height 94 /BitsPerComponent 8
  1203. /ImageMatrix [135 0 0 -94 0 94] /DataSource image92
  1204. >> image end}
  1205. >> matrix makepattern U} def
  1206. {pattern92 I} FS
  1207. O0
  1208. -720 2504 5207 2520 Sb
  1209. %
  1210. % Define pattern 13
  1211. %
  1212. /image13 {<~
  1213. J1tA-3"_/[#D3JZ:q0>B*=mro6]fB"+qXs:7T_BY
  1214. 4Alt.O@/'TW8njS-]Q5Y@qc@+=!]TD,?"nR[QuR0bbHsc*82\uN_Z>_aRo<R5`8I3PXqVh+\7O>TX(Qa3ZV%Lal"9~>
  1215. /LZWDecode filter} def
  1216. %
  1217. % Setup imagemask fill using pattern 13
  1218. %
  1219. /pattern13 {V 768 768 scale
  1220. << /PaintType 1 /PatternType 1 /TilingType 1 /BBox [0 0 1 1] /XStep 1 /YStep 1 /PaintProc
  1221. {begin [/Indexed /DeviceGray 0 <00>] setcolorspace
  1222. << /ImageType 1 /Decode [0 1] /Width 64 /Height 64 /BitsPerComponent 1
  1223. /ImageMatrix [64 0 0 -64 0 64] /DataSource image13
  1224. >> imagemask end}
  1225. >> matrix makepattern U} def
  1226. pattern13 I
  1227. 300 5207 2520 Sp
  1228. 0.5 0.7 0.1 C 0.5 /Normal PSL_transp
  1229. 300 5625 468 Sp
  1230. 1 /Normal PSL_transp 1 0 0 C
  1231. {pattern13 I} FS
  1232. O1
  1233. 300 5833 2520 Ss
  1234. %
  1235. % Define pattern 13
  1236. %
  1237. /image13 {<~
  1238. J1tA-3"_/[
  1239. #D3JZ:q0>B*=mro6]fB"+qXs:7T_BY4Alt.O@/'TW8njS-]Q5Y@qc@+=!]TD,?"nR[QuR0bbHsc*82\uN_Z>_aRo<R5`8I3
  1240. PXqVh+\7O>TX(Qa3ZV%Lal"9~>
  1241. /LZWDecode filter} def
  1242. %
  1243. % Setup imagemask fill using pattern 13
  1244. %
  1245. /pattern13 {V 768 768 scale
  1246. << /PaintType 1 /PatternType 1 /TilingType 1 /BBox [0 0 1 1] /XStep 1 /YStep 1 /PaintProc
  1247. {begin [/Indexed /DeviceGray 0 <00>] setcolorspace
  1248. << /ImageType 1 /Decode [1 0] /Width 64 /Height 64 /BitsPerComponent 1
  1249. /ImageMatrix [64 0 0 -64 0 64] /DataSource image13
  1250. >> imagemask end}
  1251. >> matrix makepattern U} def
  1252. 480 600 100 6459 2520 Sj
  1253. %
  1254. % Define pattern 14
  1255. %
  1256. /image14 {<~
  1257. J1se2-mAZ2!/&-R")(pt(`WND,#K2Q:)Ok&_P'e./.OfGKLfNKLr<%_'oGR-1+5P>59,_RUb\lr
  1258. U/)P[9'0%X'Y6RcK?Yam3Q.qK5(V$&d`N!\CH%s6VuR0)+bNIVe#8PCPqoI6WR.X[$LI2C<if52<]Z4TO$%rC~>
  1259. /LZWDecode filter} def
  1260. %
  1261. % Setup imagemask fill using pattern 14
  1262. %
  1263. /pattern14 {V 768 768 scale
  1264. << /PaintType 1 /PatternType 1 /TilingType 1 /BBox [0 0 1 1] /XStep 1 /YStep 1 /PaintProc
  1265. {begin [/Indexed /DeviceRGB 0 <80B21A>] setcolorspace
  1266. << /ImageType 1 /Decode [0 1] /Width 64 /Height 64 /BitsPerComponent 1
  1267. /ImageMatrix [64 0 0 -64 0 64] /DataSource image14
  1268. >> imagemask end}
  1269. >> matrix makepattern U} def
  1270. {pattern14 I} FS
  1271. 300 240 100 7085 2520 Se
  1272. %
  1273. % Define pattern 14
  1274. %
  1275. /image14 {<~
  1276. J1se2-mAZ2
  1277. !/&-R")(pt(`WND,#K2Q:)Ok&_P'e./.OfGKLfNKLr<%_'oGR-1+5P>59,_RUb\lrU/)P[9'0%X'Y6RcK?Yam3Q.qK5(V$&
  1278. d`N!\CH%s6VuR0)+bNIVe#8PCPqoI6WR.X[$LI2C<if52<]Z4TO$%rC~>
  1279. /LZWDecode filter} def
  1280. %
  1281. % Setup image fill using pattern 14
  1282. %
  1283. /pattern14 {V 768 768 scale
  1284. << /PaintType 1 /PatternType 1 /TilingType 1 /BBox [0 0 1 1] /XStep 1 /YStep 1 /PaintProc
  1285. {begin [/Indexed /DeviceRGB 1 <80B21AFF0000>] setcolorspace
  1286. << /ImageType 1 /Decode [0 1] /Width 64 /Height 64 /BitsPerComponent 1
  1287. /ImageMatrix [64 0 0 -64 0 64] /DataSource image14
  1288. >> image end}
  1289. >> matrix makepattern U} def
  1290. 360 45 315 7711 2520 Sw
  1291. 0 A
  1292. 33 W
  1293. N 2640 3840 M 2760 0 D S
  1294. 1 setlinecap
  1295. N 2640 3960 M 2760 0 D S
  1296. [83 67] 0 B
  1297. N 2640 4080 M 2760 0 D S
  1298. [133 33 67 17 33 17 67 33] 67 B
  1299. 17 W
  1300. 0 setlinecap
  1301. N 2640 4200 M 2760 0 D S
  1302. 2 setlinecap
  1303. [17 17] 0 B
  1304. N 2640 4320 M 2760 0 D S
  1305. 1 setlinecap
  1306. 50 W
  1307. [0 67] 0 B
  1308. N 2640 4440 M 2760 0 D S
  1309. [] 0 B
  1310. 8 W
  1311. 1 0 0 C
  1312. 2640 5520 M 500 F0
  1313. (Hei Verden!) bl Z
  1314. {0.5 0.7 0.1 C} FS
  1315. 5400 5400 M (Hoi Wereld!) tr false charpath fs S
  1316. FQ
  1317. 2640 4800 M (Olß Mundo!) bl false charpath fs S
  1318. {0.5 0.7 0.1 C} FS
  1319. %
  1320. % PSL_plottextbox begin:
  1321. %
  1322. V
  1323. (Hey World!) V MU 0 0 M E /PSL_dim_w edef FP pathbbox N /PSL_dim_h edef /PSL_dim_x1 edef /PSL_dim_d edef /PSL_dim_x0 edef U
  1324. /PSL_dx 120 def
  1325. /PSL_dy 120 def
  1326. 6000 4800 T 90 R PSL_dim_w -2 div 0 T
  1327. PSL_dim_h PSL_dim_d sub PSL_dy 2 mul add PSL_dim_x1 PSL_dim_x0 sub PSL_dx 2 mul add 120 PSL_dim_x0 PSL_dx sub PSL_dim_d PSL_dy sub SB
  1328. U
  1329. %
  1330. % PSL_plottextbox end:
  1331. %
  1332. 0 A
  1333. {1 A} FS
  1334. 6000 4800 M V 90 R (Hey World!) bc false charpath fs S U
  1335. {0 A} FS
  1336. O0
  1337. PSL_font_encode 6 get 0 eq {Standard+_Encoding /Times-Italic /Times-Italic PSL_reencode PSL_font_encode 6 1 put} if % Set this font
  1338. 2640 6360 M 367 F6
  1339. (E = mc) Z
  1340. 0 128 G 257 F6 (2) Z
  1341. 0 -128 G 367 F6 (, ) Z
  1342. 367 F12 (D) Z
  1343. 367 F6 (g = 2) Z
  1344. 367 F12 (pr) Z
  1345. 367 F6 (gh) Z
  1346. 7800 8400 M 300 F6
  1347. V MU 0 0 M (E = mc) FP 0 105 G 210 F6 (2) FP 0 -105 G 300 F6 ( + ) FP 300 F12 (e) FP 300 F6 (?) FP pathbbox N 4 1 roll exch pop add exch U neg exch neg exch G
  1348. (E = mc) Z
  1349. 0 105 G 210 F6 (2) Z
  1350. 0 -105 G 1 0 0 C 300 F6 ( + ) Z
  1351. 300 F12 (e) Z
  1352. 0 A 300 F6 (?) Z
  1353. 7800 7800 M 300 F6
  1354. (1 \375ngstr\371m) tr Z
  1355. PSL_font_encode 33 get 0 eq {Standard+_Encoding /ZapfChancery-MediumItalic /ZapfChancery-MediumItalic PSL_reencode PSL_font_encode 33 1 put} if % Set this font
  1356. 3900 10500 M 533 F33
  1357. (PSL v5.0 Demonstration Page) tc Z
  1358. PSL_font_encode 4 get 0 eq {Standard+_Encoding /Times-Roman /Times-Roman PSL_reencode PSL_font_encode 4 1 put} if % Set this font
  1359. 25 W
  1360. {0.9 0.9 9 C} FS
  1361. O1
  1362. %
  1363. % PSL_setparagraph settings:
  1364. %
  1365. /PSL_linespace 180 def
  1366. /PSL_parwidth 3000 def
  1367. /PSL_parjust 4 def
  1368. PSL_font_encode 5 get 0 eq {Standard+_Encoding /Times-Bold /Times-Bold PSL_reencode PSL_font_encode 5 1 put} if % Set this font
  1369. /PSL_setfont { % Set Font, size, and color if needed
  1370. /f exch def % Gets word flag from stack
  1371. /k1 exch def % Gets word index from stack
  1372. /fz PSL_size k1 get def % Get font size
  1373. /fn PSL_fnt k1 get def % Get font
  1374. fn PSL_lastfn eq fz PSL_lastfz eq and not {
  1375. fz PSL_fontname fn get Y % Set font and size
  1376. /PSL_lastfn fn def
  1377. /PSL_lastfz fz def
  1378. } if
  1379. /fc PSL_color k1 get def
  1380. fc PSL_lastfc ne {
  1381. /PSL_c fc 3 mul def
  1382. 0 1 2 {PSL_c add PSL_rgb exch get} for C % Get and set color
  1383. /PSL_lastfc fc def
  1384. } if
  1385. f 32 and 32 eq { % Underline
  1386. /PSL_UL fz 0.075 mul def
  1387. fz 0.025 mul W
  1388. /PSL_show {PSL_ushow} def
  1389. }
  1390. {
  1391. /PSL_show {ashow} def
  1392. } ifelse
  1393. }!
  1394. /PSL_setfont2 { % Only set font and size
  1395. /f exch def % Gets word flag from stack
  1396. /k1 exch def % Gets word index from stack
  1397. /fz PSL_size k1 get def % Get font size
  1398. /fn PSL_fnt k1 get def % Get font
  1399. fn PSL_lastfn eq fz PSL_lastfz eq and not {
  1400. fz PSL_fontname fn get Y % Set font and size
  1401. /PSL_lastfn fn def
  1402. /PSL_lastfz fz def
  1403. } if
  1404. }!
  1405. /PSL_wordheight { % Gets word from stack, and calculates any adjustment to box height
  1406. 0 0 M false charpath flattenpath pathbbox /up exch def pop /down exch def pop newpath
  1407. down PSL_ymin lt {/PSL_ymin down def} if
  1408. up PSL_ymax gt {/PSL_ymax up def} if
  1409. }!
  1410. /PSL_ushow {
  1411. currentpoint /y0 exch def /x0 exch def
  1412. ashow
  1413. currentpoint pop /x1 exch def
  1414. x0 y0 PSL_UL sub M x1 y0 PSL_UL sub L S
  1415. x1 y0 M
  1416. }!
  1417. % Set font, size, and color. Adjust baseline if needed. Place space and word
  1418. /PSL_placeword {
  1419. /k exch def % Gets word index from stack
  1420. /flag PSL_flag k get def
  1421. k flag PSL_setfont
  1422. /sshow {ashow} def
  1423. PSL_col 0 eq { % First word on a line
  1424. /PSL_t 0 def % 0 spaces before this word
  1425. flag 4 and 4 eq { % Must skip one TAB
  1426. pr_char 0 ( ) ashow
  1427. } if
  1428. }
  1429. { % Need to find spaces before this word
  1430. /f PSL_flag k 1 sub get def % f is flag for previous word
  1431. /PSL_t f 3 and def % PSL_t is index into PSL_spaces and PSL_spacewidths for previous word
  1432. f 32 and 32 eq flag 32 and 32 eq and {/sshow {PSL_ushow} def} if
  1433. } ifelse
  1434. /thisword_bshift PSL_bshift k get def % The baseline shift
  1435. thisword_bshift 0.0 ne {0 thisword_bshift G} if % Shift baseline
  1436. flag 8 and 8 eq { % First composite char
  1437. pr_char 0 PSL_spaces PSL_t get sshow
  1438. k PSL_composite
  1439. } if
  1440. flag 24 and 0 eq { % Anything but composite chars
  1441. pr_char 0 PSL_spaces PSL_t get sshow pr_char 0 PSL_word k get PSL_show
  1442. PSL_width k get 0 gt {/PSL_col PSL_col 1 add def} if
  1443. } if
  1444. thisword_bshift 0.0 ne {0 thisword_bshift neg G} if % Shift baseline
  1445. }!
  1446. /PSL_composite { % Place a composite character
  1447. /k1 exch def % Get word index from stack
  1448. /k2 k1 1 add def
  1449. /char1 PSL_word k1 get def
  1450. /char2 PSL_word k2 get def
  1451. /w1 char1 stringwidth pop def
  1452. /w2 char2 stringwidth pop def
  1453. /delta w1 w2 sub 2 div PSL_scale mul def
  1454. delta 0.0 gt {
  1455. /dx1 0 def
  1456. /dx2 delta def
  1457. }
  1458. { /dx1 delta neg def
  1459. /dx2 0 def
  1460. } ifelse
  1461. dx1 0 G currentpoint
  1462. pr_char 0 char1 PSL_show M
  1463. delta 0 G
  1464. pr_char 0 char2 ashow
  1465. dx2 0 G
  1466. }!
  1467. % Determine how much to expand text and also justify left/center/right
  1468. /PSL_expand {
  1469. /k1 exch def % Get word index from stack
  1470. /extra PSL_parwidth previous_linewidth sub comp_width add def
  1471. PSL_CRLF k1 PSL_n1 eq or {/spread 0 def} {/spread extra def} ifelse
  1472. /PSL_scale previous_linewidth 0.0 gt {PSL_parwidth previous_linewidth div} {1.0} ifelse def
  1473. /ndiv lsum ncomp sub def
  1474. ndiv 0 eq {/ndiv 1 def} if
  1475. PSL_parjust 4 eq {/pr_char spread ndiv div def} {/pr_char 0 def} ifelse
  1476. PSL_parjust 2 eq {extra 2 div 0 G} if
  1477. PSL_parjust 3 eq {extra 0 G} if
  1478. /PSL_col 0 def
  1479. }!
  1480. % Calculate text paragraph height:
  1481. /PSL_textjustifier {
  1482. /PSL_mode exch def % From stack. 0 -> calculate height, no text is placed, 1 -> place text
  1483. /PSL_col 0 def
  1484. /PSL_ybase 0 def
  1485. /PSL_parheight 0 def
  1486. /PSL_ymin 0 def
  1487. /PSL_ymax 0 def
  1488. /PSL_top 0 def
  1489. /PSL_bottom 0 def
  1490. /last_font PSL_fnt 0 get def % The previous font number
  1491. /last_size PSL_size 0 get def % The previous font size
  1492. /last_color PSL_color 0 get def % The previous color index
  1493. /previous_linewidth 0 def
  1494. /stop 0 def
  1495. /start 0 def
  1496. /lsum 0 def
  1497. /line 0 def
  1498. /ncomp 0 def
  1499. /comp_width 0 def
  1500. 0 1 PSL_n1 { % Loop over all the words
  1501. /i exch def % The current loop index
  1502. /thisflag PSL_flag i get def % # of space chars to follow this word
  1503. i 0 eq {
  1504. /PSL_t 0 def
  1505. /lastflag 0 def
  1506. }
  1507. { /lastflag PSL_flag i 1 sub get def
  1508. /PSL_t lastflag 3 and def
  1509. } ifelse
  1510. % PSL_t is index into PSL_spaces and PSL_spacewidths
  1511. i thisflag PSL_setfont2 % Get and set font and size
  1512. /thisword_width PSL_width i get def
  1513. /comp_add 0 def
  1514. /compw_add 0 def
  1515. /PSL_tabwidth ( ) stringwidth pop def % Get width of the TAB
  1516. /PSL_spacewidths PSL_spaces {stringwidth pop} forall 3 array astore def % and the spaces
  1517. /ccount PSL_count i get def % # of characters in this word
  1518. thisflag 4 and 4 eq { % Had leading tab
  1519. /thisword_width thisword_width PSL_tabwidth add def
  1520. /ccount ccount 4 add def
  1521. } if
  1522. lastflag 8 and 8 eq {/PSL_t 0 def /comp_add 1 def /compw_add thisword_width def} if
  1523. /new_linewidth previous_linewidth thisword_width add PSL_spacewidths PSL_t get add def % Width of line if word added
  1524. /PSL_CRLF thisword_width 0.0 eq thisflag 16 and 0 eq and def
  1525. /special thisflag 16 and 16 eq {true} {thisword_width 0.0 gt} ifelse def
  1526. new_linewidth PSL_parwidth le special and
  1527. { % Word will fit on current line
  1528. PSL_col 0 eq {
  1529. /PSL_ymin 0 def
  1530. /PSL_ymax 0 def
  1531. } if
  1532. /stop stop 1 add def % Include this word
  1533. /PSL_col PSL_col 1 add def % Column place of next word
  1534. /previous_linewidth new_linewidth def % Update the unadjusted line width
  1535. /lsum lsum ccount add PSL_t add def % Update character count
  1536. /ncomp ncomp comp_add add def
  1537. /comp_width comp_width compw_add add def
  1538. }
  1539. { % Must process current line and move to next
  1540. 1 PSL_mode eq { % Write out the first word on this line
  1541. % Determine how much to expand text and also justify left/center/right
  1542. start PSL_expand
  1543. start PSL_placeword
  1544. }
  1545. {PSL_word start get PSL_wordheight
  1546. } ifelse
  1547. /last stop 1 sub def
  1548. /start start 1 add def
  1549. 1 PSL_mode eq { % Write out the remaining words on this line
  1550. start 1 last {PSL_placeword} for
  1551. }
  1552. {start 1 last {PSL_word exch get PSL_wordheight} for
  1553. line 0 eq { /PSL_top PSL_ymax def} if % First outputline
  1554. } ifelse
  1555. /start stop def
  1556. /PSL_ybase PSL_ybase PSL_linespace sub def
  1557. 1 PSL_mode eq {0 PSL_ybase M} if % CR/LF
  1558. /stop stop 1 add def % Include this word
  1559. /previous_linewidth thisword_width def
  1560. /lsum ccount def
  1561. /ncomp comp_add def
  1562. /comp_width compw_add def
  1563. /PSL_col 0 def
  1564. /line line 1 add def
  1565. } ifelse
  1566. } for
  1567. /last stop 1 sub def
  1568. last PSL_n lt { % One or more words left hanging on last line
  1569. /PSL_CRLF true def
  1570. 1 PSL_mode eq {
  1571. % Determine how much to expand text and also justify left/center/right
  1572. start PSL_expand
  1573. start PSL_placeword
  1574. /start start 1 add def
  1575. start 1 last {PSL_placeword} for
  1576. }
  1577. { /PSL_ymin 0 def
  1578. PSL_word start get PSL_wordheight
  1579. /start start 1 add def
  1580. start 1 last {PSL_word exch get PSL_wordheight} for
  1581. line 0 eq { % First outputline
  1582. /PSL_top PSL_ymax def
  1583. } if
  1584. } ifelse
  1585. } if
  1586. /PSL_bottom PSL_ymin def
  1587. /PSL_parheight PSL_ybase neg PSL_top add PSL_bottom sub def
  1588. } def % PSL_textjustifier
  1589. %
  1590. % PSL_plotparagraph begin:
  1591. %
  1592. %
  1593. % Define array of fonts:
  1594. %
  1595. /PSL_fontname
  1596. /Times-Roman
  1597. /Times-Bold
  1598. /Times-Italic
  1599. 3 array astore def
  1600. %
  1601. % Initialize variables:
  1602. %
  1603. /PSL_n 89 def
  1604. /PSL_n1 88 def
  1605. /PSL_y0 9720 def
  1606. /PSL_spaces [() ( ) ( ) ] def
  1607. /PSL_lastfn -1 def
  1608. /PSL_lastfz -1 def
  1609. /PSL_lastfc -1 def
  1610. /PSL_UL 0 def
  1611. /PSL_show {ashow} def
  1612. %
  1613. % Define array of words:
  1614. %
  1615. /PSL_word
  1616. () (PSL) (was) (created) (to) (make) (the) (generation) (of) (PostScript) (page) (description)
  1617. (code) (easier.) (PostScript) (is) (a) (page) (description) (language) (that)
  1618. (was) (developed) (by) (Adobe) (for) (specifying) (how) (a) (printer) (should) (render)
  1619. (a) (page) (of) (text) (or) (graphics.) (It) (uses) (a) (reverse) (Polish) (notation)
  1620. (that) (puts) (and) (gets) (items) (from) (a) (stack) (to) (draw) (lines,) (text,) (and)
  1621. (images) (and) (even) (perform) (calculations.) () () (PSL) (is) (a) (self-contained)
  1622. (library) (that) (presents) (a) (series) (of) (functions) (that) (can) (be) (used)
  1623. (to) (create) (plots.) (The) (resulting) (PostScript) (code) (is) (ASCII) (text.)
  1624. 89 array astore def
  1625. %
  1626. % Define array of word font numbers:
  1627. %
  1628. /PSL_fnt
  1629. 0 1 0 0 0 0 0 0 0 2 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0
  1630. 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
  1631. 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
  1632. 0 0 0 0 0 0 0 0 0 2 0 0 0 0
  1633. 89 array astore def
  1634. %
  1635. % Define array of word fontsizes:
  1636. %
  1637. /PSL_size
  1638. 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200
  1639. 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200
  1640. 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200
  1641. 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200
  1642. 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200
  1643. 200 200 200 200 200 200 200 200 200 200 200 200 200 200
  1644. 89 array astore def
  1645. %
  1646. % Define array of word spaces to follow:
  1647. %
  1648. /PSL_flag
  1649. 4 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1
  1650. 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1
  1651. 1 1 1 1 1 1 1 1 1 1 1 0 0 4 1 1 1 33 1 1 1 1 1 1 1
  1652. 1 1 1 1 1 1 2 1 1 1 1 1 1 0
  1653. 89 array astore def
  1654. %
  1655. % Define array of word baseline shifts:
  1656. %
  1657. /PSL_bshift
  1658. 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
  1659. 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
  1660. 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
  1661. 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  1662. 89 array astore def
  1663. %
  1664. % Define array of word colors indices:
  1665. %
  1666. /PSL_color
  1667. 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
  1668. 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
  1669. 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
  1670. 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  1671. 89 array astore def
  1672. %
  1673. % Define array of word colors:
  1674. %
  1675. /PSL_rgb
  1676. 0 0 0
  1677. 1 0 0
  1678. 6 array astore def
  1679. %
  1680. % Define array of word widths:
  1681. %
  1682. /PSL_width 89 array def
  1683. /PSL_max_word_width 0 def
  1684. 0 1 PSL_n1 { % Determine word width given the font and fontsize for each word
  1685. /i edef % Loop index i
  1686. PSL_size i get PSL_fontname PSL_fnt i get get Y % Get and set font and size
  1687. PSL_width i PSL_word i get stringwidth pop put % Calculate and store width
  1688. PSL_width i get PSL_max_word_width gt { /PSL_max_word_width PSL_width i get def} if % Keep track of widest word
  1689. } for
  1690. PSL_max_word_width PSL_parwidth gt { /PSL_parwidth PSL_max_word_width def } if % Auto-widen paragraph width if widest word exceeds it
  1691. %
  1692. % Define array of word char counts:
  1693. %
  1694. /PSL_count 89 array def
  1695. 0 1 PSL_n1 {PSL_count exch dup PSL_word exch get length put} for
  1696. %
  1697. % For composite chars, set width and count to zero for 2nd char:
  1698. %
  1699. 1 1 PSL_n1 {
  1700. /k edef
  1701. PSL_flag k get 16 and 16 eq {
  1702. /k1 k 1 sub def
  1703. /w1 PSL_width k1 get def
  1704. /w2 PSL_width k get def
  1705. PSL_width k1 w1 w2 gt {w1} {w2} ifelse put
  1706. PSL_width k 0 put
  1707. PSL_count k 0 put
  1708. } if
  1709. } for
  1710. V 2640 9720 T
  1711. /PSL_xgap 120 def
  1712. /PSL_ygap 120 def
  1713. 0 0 M
  1714. 0 PSL_textjustifier % Just get paragraph height
  1715. /PSL_justify 9 def
  1716. /PSL_x0 PSL_parwidth PSL_justify 1 sub 4 mod 0.5 mul neg mul def
  1717. /PSL_y0 0 def
  1718. /PSL_txt_y0 PSL_top neg def
  1719. PSL_x0 PSL_y0 T
  1720. %
  1721. % Start PSL box beneath text block:
  1722. %
  1723. /XL PSL_xgap neg def
  1724. /XR PSL_parwidth PSL_xgap add def
  1725. /YT PSL_ygap def
  1726. /YB PSL_parheight PSL_ygap add neg def
  1727. %
  1728. % PSL_path:
  1729. %
  1730. XL YT M XL YB L XR YB L XR YT L
  1731. FO U
  1732. %
  1733. % End PSL box beneath text block:
  1734. %
  1735. V 2640 9720 T
  1736. 0 0 M
  1737. 0 PSL_textjustifier % Just get paragraph height
  1738. /PSL_justify 9 def
  1739. /PSL_x0 PSL_parwidth PSL_justify 1 sub 4 mod 0.5 mul neg mul def
  1740. /PSL_y0 0 def
  1741. /PSL_txt_y0 PSL_top neg def
  1742. PSL_x0 PSL_y0 T
  1743. 0 PSL_txt_y0 T % Move to col 0 on first baseline
  1744. 0 0 M
  1745. 1 PSL_textjustifier U % Place the paragraph
  1746. %
  1747. % Start of Gray image [8 bit]
  1748. %
  1749. V N 6000 8494 T 1800 1346 scale /DeviceGray setcolorspace
  1750. << /ImageType 1 /Decode [0 1] /Width 107 /Height 80 /BitsPerComponent 8
  1751. /ImageMatrix [107 0 0 -80 0 80] /DataSource currentfile /ASCII85Decode filter /LZWDecode filter
  1752. >> image
  1753. J,hhG0E;@a"Tgr^?l2]A'F"OX9u;E_"B^IHT?jEf
  1754. aqYJ>5G4+;<9h;=^0n.0$OK0T]\[,!g2co)9r?-EY\-Vj_V&b0<@F'r,r2/r]MX@elGFG=#6]VYTb,je3Z/B^!5O+GU^FS,
  1755. W<gki5j00h0L6dVB/>t6ru+(n:e=X7SS#<8/elaQo,Y(i>@6.6<h/;r4J+,=$2!@<LoOJ]`5qTo.L?Q:=#07p]jLqGbsL?=
  1756. 8qBDP3sl!R,GW5^gMOHl:FFXA/L[N!/Ct7drUGLu@'&j"7Qq];^0</=MKKPG.$7&snZ'F8:q"gh6L'(Q$p1jsbCI6*MN3Yf
  1757. H5Hd#A5d3#ghi'fXti)AkB<@r:D_6pHLYC2Y\CA0S0]c?<)]"Ad4XWKKXj>g!J/XY2#p>9_X]2'_`I9D?l0"H"XM1%(BQ:h
  1758. MD5J?^r6!Y"2Obm2Pds(>8P803)qsb`!0E\L1.='-HWfM?755./k`b9M%M%s,cH:tKnRQmZU8X-4UrqI>K75c_SIcMKn+1a
  1759. '?)\0fK$BMklBHP78n;.''n7FS?Yr`K#/Cc6"Ze#`2&QT&*-##,(O)Ul>d#G$nEo,DZ$f=1\>>\!lNpr#X].)-q4?4U+B9q
  1760. bk"NXOd$HG:.:BNADCRZ"Z]7c^d_dNSB-D:(BmAC;DL@qj=#T[K4=Ab00Cfq,-Jfl\-DAP!%f`+P_2ea&)"`HQn](\f_R_*
  1761. Mi-@V<.tJ1:_:)LE*X7)@>b/RVC@O7QdR$i><sOrE^UGub1Jh2i!:APQmBhJA^[[W].25#@MI&lAK\u5K#gIa,[3XX"HXkH
  1762. .05?g6s2?D'Lf8Z6Bd*h:0SNg;MJT8V;ZZ(<if.p;\TtaSrXDWS)>%^+@plX(Q*Q&8MitMM1gC4&fh=;AB:to"/oT9&W]>Z
  1763. 5Y@8P"T;U<"C=2cPQdI76"IMdD3Yf(k$$hH`=Y((D=U0)6sF/7g,t8nTE50!jWTWj.lpH0/#q%P0.aHn8fRqp">HPfJG,oC
  1764. )\<-tNcZ9GR@\"<jY8eg'3-Jt:67lk;)]8,?IGJ.H[:EH('T7k;\S5fN^Qs.E+$sHB)$1n["p3(88urI_;hQ_!X8lC,H.%J
  1765. !Ha\/$`ekn^3:S;fpR#NV8JTtjQ+%se+Q3b35)8%3ETK&k'I'O*<s?O@-^n3>T#*;:c(<Sl=pZLS3bqTD]"0L#R#C6q$[CB
  1766. 3$A?4&cr'c*WVn4HO]M:XW(1()=Pg5Md\+1b^c]-_Iuf)Tk#mtpuia9iYE&%l9&L*ocKs=Bo4VJ>6>M.+Q*A3#3!9@a;`$2
  1767. &.!isAr8msiDfl.&0_HH[LU+j!<U'4+T]s>3X3sW>m0f41;j0$7P#Vpm[R6;E@rab;"u,pXF(Q2>!6;%rJ"1jG7);E6k(7>
  1768. "9H#HMFW0tQ:jeHXWA[:<@DO?:h+4TkS""/O;(!"<.2X9@&(P?/-W8hAWO?C%_&_i6hm8fc[j^TTl`GQYjNNA`-W"leiTX[
  1769. /0=uDIuj-t5DP&4$).D2!(8::5ko46ipigp0G<kQ_,WhI+9DOU'`Z=#FV)As*s6K%+9E*bK$:dX$@tSp,fm8-!sKc,JYjX/
  1770. m%P1iW*9SEE'&gH.3>8:G`LskjsRD$*\uGRL7f"^!M"Z?i!9\pEHF%Q6)4MbJYSXN3:Vf,#,4P'8H9n*=M`?p'-RW.,P6d@
  1771. SYTb=;I!<Zi`o.[UEj@OMNWi?HoHgGj;i9fInt;gr$+c2+/<KQJ?W,]fT6jX_T6YHjXi8R9M(&;BnRn3Lf;)CNt.id1(,5S
  1772. #KuVL'nTCM#8C!lK/di^!d3-G!O+?_TSPWqLnfo+?oB0)mMeL_k(U%.%tX4E%"\IP$k^5o.G,[Ai:o/4J/L$C+KQQ5OoL[k
  1773. ]VEW^^FJRr/:fN2(rDrY&-*83N=dWX_9`\n:_\V6YV6Fd@"8uE6t_A'p=4j!?krhIBSo(1&:k)o;RSgt"<db!@q^BDiLEDm
  1774. i/eTSE1J%&rmE*k$>3,q&iE3k.Y)%r('PhK">)GP!N2+m5ViQdUbDq(+M8QmO?*W^^^pM8/.2IFUR1(6AXWdg=25(j%\l^7
  1775. "!@^``?:HYiTN(SdHhJO1drQq'Eh_]W6pD_MF2P\!JE`[-:O"P#/LqK*QIe?$JCn^ejtKD;n,*.0jIk!71GLN&648uQ5JP=
  1776. "pjut/;,^F*l29uROc1[Y8]s:R1(L%+f5r>!%E2.=Ft"d*!F'E&-;h?"4WtD!T3eT1k5u:!0A<+5c.E[i$N(o."VP(m"tn=
  1777. ?sq*MVC[LZ9t,CYL;]99+V\AE!5YUN#G;b:$F*@KmOSNm!%8&f!%.q/_+m5c(^%R($]rr!9*"=m"R).W!?`Wl!8<T$oP%+<
  1778. To9Zkn\-\mOS00q$RWe.LLc9]#QZb/!hIH&7#2aZ"(k_(6kUI?!&t4]ZjZs8E#JhokUm#]3a[F,MAq2H?3m4J#&%Bs!ru6E
  1779. ]Hf<93=lD$[2)sL!4Xcl_6c&\W-Xl.5nAJg'r6lc#U&[W'bE&2[TZ66(P*/k@[+/!!([Kcb:KU8i!9Gcpb2ss6j3_@*%++h
  1780. D%IN!#&1bu!+Z+*_;#83Pimc%J?UsF_e<mVTaUp?DG3-F+V/#BYlZ])bq"Tt)[E#g!$fAbhL&jcibd<O!O,8u@0B(-Tb\aQ
  1781. fHp[21kNer6:4!\$JRTF&*^m.0Lm8Z+6$oS`$Y_0XI_ejJ,h<pS=-Q[Sn'XB/];2Q!!RoR-4,5;&8,U<6LpcR!57TrJ7',o
  1782. SdS.@J8@aKOoHMbq-[(p-PS")_k9VP)8R<NJUgdT^%)?OfVX-&!5KV@!LPVHi4pfEU'6fa;$^&f#QXpU('4j5:+AL3+UiVH
  1783. 0._HC4DcIZOA$V:<*P4)@&+3]"e+Fj5RR3#:]u>gKGFYdD@Bqr&:e/$d0+DSYl%lBKg<YTJ:8O>GVoi%iX,a1akX/@O9,Yn
  1784. Zo3GP9TLW=K+SBIX^4\Uh4PGn=RL-*?j6X'NknDp!"2I'E"E+Z+9<`;!'gqp5X5GZOoZnU#2nbZ_+50Rg]S*J.S6.T/c_ST
  1785. 4s5G""Q=qSiU#HYSE$LYLe!9gD8&Bq#Q\JSrlfoU!#5FV5]FLIfoI0S5ZeADW!qVbGOQ$j!*foLc3jVWYi;t,mPLUbr`R#P
  1786. 4@$u[@33'5r+QN_Z7P,e_?9kS,/ku642:p_8.pJ+nB6=pn]^+rTL&o,c3]"(!FcZak_]C7SjKEH.F;tUOLFm5#i,NY9Ma<.
  1787. XR*5aHso]p;/Kj1jW4HE!)g%+fF<Fo%LCEH((,SF$Ylhj-NsOg87846.\`aRBFtt%]U#4pH:NS]7@#Fn(4ZAd=i.>mE?In)
  1788. FNZ7DmgQ?UJe0*@('_S(&`Fc5ALuS0Yl71[(+GL@Ob1GZ(^$J/++Zu%0C2>)mOIZVZ4!QGYhKs<T`38<Bh%h9,,2GP"p)RX
  1789. !K=%'E(5Xs&no.[)F=Q962hoJ>monSM.3WUbi]4LcD`P;"H>hXmb/gX)!:l+!J$X-^]4G;,"'cUlsc^jU8G5H#Qc0`+5mXK
  1790. _Qo#.<,,3.92B(@Y?l0Z*WXHjWJ)HFXLRi#!36+.Dd\A,N3IOZ]^bMd(b7!Y!;%Al^&cZ0Bk"GY7e[e%m_MJR;N_CXTGY<n
  1791. gEkha).oZGN)BX@FreCiBcn2f?qpe(.,-=3dqfqharDP*6HEOA"E(U^Z?Cd,-@elKehZ;R%G^oDr?EL+2*_EK^aoW(e."Z"
  1792. +CKjDTm7Eh5RYB9"Mchr5V*#q3WibC!H/rU'%X@?ZkS)jBIno)-Bq.K.bG8B9+[u>%;Z%f)?IVn!oQTQ^k<*2gol8;#Ts8L
  1793. +?C6fl766\!'hS15hll8W!.]8e'&f!UpBpA.2K^o+"J3c`%r_&NhT85@3u=<"WHD$'EWeS$NTl6Th#\ZA-%37")TsUVKrBk
  1794. &ck6q$)&CU9"5>'Qj=h%$%Q,snBDkI-icPX+5m5-%p#)N_W)3L"k,jr"r73S0Ef1=$@p2/_)`>t*!\_W!rt@aTGRcFFq6i]
  1795. !IuR",cC]N(^+5a"Mem\T_&tM$jQ-s_rA&>m_YC-[NFJ+*>#hJ8.=s)>;PJrR(rh1TcOi_*9dJR'#:^R5Ss\*Hj!h."TX2[
  1796. ^`Wc1YR-sd!oP%!J/L$P+pEL!"&DI3F$d6rm.MP;h$s0KnB22t,2;Q<1b0][/\3)J":5(`$BIXZ^gTfb5R'Ji"Q1[3+C$FI
  1797. )T<ga#_4Kn[.Xa?M?s97#U!X[6S&3gYnjQ^7KOH%!!!Q?[`&Wp1\B9:WZ\U"15N(D:Ol3f5Y(tb6im?."/&Q:#c%l;*XlU<
  1798. !h`d$^chh8+p&l.!T5@/+Ck[A=9cQa"i*A+?q:C:.\Y'5=jS,g!(\,=aS<#0=X:'kasf>G`)9t]!u6h!Co%gY'Hg#@!NWF@
  1799. JK>1'UG[mg\cNWJ+=0.XO9FK(1;p;#c*RHa3>J9o.Igb+:O+D=gem6d!C/aN+@ZG\K+Fe*^8u\_+JKF_l3dTJ":k(Y-(Fu!
  1800. OGP85@Snpfo0EZ?L`XB'H8A#gD]ZKSf_i)bnR)pfXkL'u0_[/J!$EHhPb,cgWlpN81U1EDmP,=^*DCFf!"?pe@I+*AmolTJ
  1801. 3C4-mBahjV&B%Fo1^T7+9C;i]63Vm7#/FIG!#[]ZSB:7LCD!*f.#err;Y$`]!C4XHi4R6Qi7=*t6gjZlZ9_4NG91=[@#,@s
  1802. F]nou63Y/8"7<D;U(.5)/-1gocHh#D"?.fHJ-5nopC5j:mo[-*/j$C'_o"CgJ-ddr)Cn&q"9:sq?qplU8ONuc/AM_si%P3H
  1803. 67ZUkLsbT/1#l1t5k?WYm;I"G%D>ra+MOnF.j,8O<]+Xo%KO9i!h^oB?m5WO"othk(:5XA'e^H1j]cQ`h-`Ji!;-"DK$,Ar
  1804. 2YWD>EOAb'8-&$;#:)Fdl6PnbWs1Gm`S_@2!%J#47cmd]I1%,*/^,>51:h$I)m$Wn[s[O>&5l?W!HOqacM$+NOt2fa!e:Y6
  1805. @N`je(EN+OLsnQ._@:AON3TL4k6ZP:;ibK9+R]o2mgV+I2R,;p*!61GDa4@,n/5_$!!/`T!k8Bf.$c#8+'Wk;1ZBMZ+gbWZ
  1806. <n37[e&`)]<i5UJfU3/X!:g,00)-U*D@JjI+cC:_,0U#e+9T`HMT(nMC+4eTOT;.E'-Z?9D8%MJK]Qh>"#`#];l#5N\hugi
  1807. ]H^CpmH,nVHju`j;S[YdO('QR('97,!JN'IcW,s+r$fEZ+5jUI[U_`J'opiE>BFnZAsVVS$pq2P!rsMqJ9?s**!d\*YjMLQ
  1808. !#!r$\=m@ShN/\;$Rf].>]:rJ1Op_Q0`uh>AD?T=/(L3kU+83XOpI`S#WYrM,+Jb.57AE)eh_X@;%e\iH[PmM*seUP&7coV
  1809. 2?Lu2P&t+AZIP>"(6H<E#V;2?@$hM9&2dksRE$XUjX5r&&cf]co#V<.G5[a/"p$sn(Qps<Xa2gS&d/1d>?N<>+;Y'1SD_6o
  1810. 4+L]J^ht;<Qk=.Z2.6UpJcqi#!)eq#+LdI&bUDS`E6&"f#_B>aUb_CN$j%P@!_i-DDfkXC<Lb6M=hk:LJK+p3*M+uh!$H.j
  1811. 5fd*DD@Z`7\nQP:?nMPlA#0]=RsB'^^^M,he3bs"b2>#X!$X5O'IkRT!<>XlCma5?WLfuM#U'0VJfFsq!"@tZ"b?(NnM&]c
  1812. 5@FO4%BQ\%aF\XZ`YY)\9,\VJ)T9^?p0`r?#0RkP9UeQ1iX#Z!#2o1`K"(u7p'g25"bq,%E+kWaoEE\o*S8i3ee\bRZj;f(
  1813. J)D:Li$Pp3TpI,:Z+q[lNc,];+Td1%$t,N<+ES*dW;Ic3%Nrm'JBeRR-icLT#YPX-TFM,^0a_*4BUZp@_!6uu_0tbOV&0)j
  1814. 0`3(Z/dB+c"D+)(,Z4mjF:!K=%"O3BJ>*Fpc4.S2\KI7HJ@E'3F9b'%"c^4s5UHnIU''QP"ju_B<VugsL_l)=gIVgrZCeN8
  1815. g7Eh`.psh0^d\Fa9ig1G"MdP0J1(Lb>R+Y=";QXs5[4Da/-/![b_*P4a]9''U;[0W_"0F9+92GYH(hk`!2)9XO*@;n7f^=o
  1816. "9ALV"c6KF.KKt?mb%=DN'O%KL'GKRY$ab&lpRhUg;j>e&ATFhJ--*#;ogoFA)[gs!+aE,ljI2->I@Q6^`!5])pWS/H7_23
  1817. Xt--2V!;$AdQ;=f+ik@J3q(_K]$D1W.@^^K3m^,i%7"JN>6+Dl"q+j1&AU3^!#iunaoe;&6Jt"K^e*#u8C9\!"FsAQQ&YtI
  1818. 2?Nq8H6=n^V%NqSA-2n*,]"i4DsV4\f_-F3$c$u7(XQiG"0c0VOL0-VN4o<eYQ<@EaqFe2F34RB.n\Ei2,E3U"1SH+:'>C\
  1819. ;V:MMneuK,X![$:SBO_.1o(],3$K6kfH;F@^bQ#@!!4qW=$R]Y*EE6p`WI>A!^f0IC*:]M-j>,K=e)kTO!n2?B_]@C"2M-<
  1820. 3CTT./d`a%$6gUdMBi3RT6]%_arWYHIII==0B?Lg:jN6!:RVA=j006Ja[qp%!)a)Q0^4nU@517BTV;ri(j\]&mr)G3THi0=
  1821. l2oe3"!3H_=/&ip$(%_jfq)p>P[Km8C'3#&"kHjbB,8C6/ndsag[eEjTJ,2Q1'4*o!e*Z'^a@Jr[4^bgJGu6Q&S2a(m4>cN
  1822. JP^9F*0o]=ZapVJ!Ii5pF")CM/*PKaO9L\%gUD6jrL=b6JMFKQ/N93#+?[5_1bTPW/`n2V)jfJF"2Hes4o%^s7H!?^\_^KZ
  1823. QTirSHGp<7?t,h(9j)B\/1Q7YU-KOsW$2>n/cr4@Lil.$?6lf_QJTId:i:4R'qJ71\"UkE1C0*hSXJhp,g;;8lr-:EhbHfS
  1824. oY-Vg4#laD/ScUIe1.D[RB=,P)20:6hX.$A+<U~>
  1825. U
  1826. %
  1827. % End of Gray image
  1828. %
  1829. %
  1830. % Undefine patterns and images
  1831. %
  1832. currentdict /image12 undef
  1833. currentdict /pattern12 undef
  1834. currentdict /image13 undef
  1835. currentdict /pattern13 undef
  1836. currentdict /image91 undef
  1837. currentdict /pattern91 undef
  1838. %%PageTrailer
  1839. %
  1840. % Reset transformations and call showpage
  1841. %
  1842. U
  1843. showpage
  1844. %%Trailer
  1845. end
  1846. %%EOF
Tip!

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

Comments

Loading...