-
Notifications
You must be signed in to change notification settings - Fork 11
/
xis.ps
8230 lines (8208 loc) · 205 KB
/
xis.ps
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
%!PS-Adobe-3.0
%%Creator: graphviz version 2.40.1 (20161225.0304)
%%Title: the_lot
%%Pages: (atend)
%%BoundingBox: (atend)
%%EndComments
save
%%BeginProlog
/DotDict 200 dict def
DotDict begin
/setupLatin1 {
mark
/EncodingVector 256 array def
EncodingVector 0
ISOLatin1Encoding 0 255 getinterval putinterval
EncodingVector 45 /hyphen put
% Set up ISO Latin 1 character encoding
/starnetISO {
dup dup findfont dup length dict begin
{ 1 index /FID ne { def }{ pop pop } ifelse
} forall
/Encoding EncodingVector def
currentdict end definefont
} def
/Times-Roman starnetISO def
/Times-Italic starnetISO def
/Times-Bold starnetISO def
/Times-BoldItalic starnetISO def
/Helvetica starnetISO def
/Helvetica-Oblique starnetISO def
/Helvetica-Bold starnetISO def
/Helvetica-BoldOblique starnetISO def
/Courier starnetISO def
/Courier-Oblique starnetISO def
/Courier-Bold starnetISO def
/Courier-BoldOblique starnetISO def
cleartomark
} bind def
%%BeginResource: procset graphviz 0 0
/coord-font-family /Times-Roman def
/default-font-family /Times-Roman def
/coordfont coord-font-family findfont 8 scalefont def
/InvScaleFactor 1.0 def
/set_scale {
dup 1 exch div /InvScaleFactor exch def
scale
} bind def
% styles
/solid { [] 0 setdash } bind def
/dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def
/dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def
/invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def
/bold { 2 setlinewidth } bind def
/filled { } bind def
/unfilled { } bind def
/rounded { } bind def
/diagonals { } bind def
/tapered { } bind def
% hooks for setting color
/nodecolor { sethsbcolor } bind def
/edgecolor { sethsbcolor } bind def
/graphcolor { sethsbcolor } bind def
/nopcolor {pop pop pop} bind def
/beginpage { % i j npages
/npages exch def
/j exch def
/i exch def
/str 10 string def
npages 1 gt {
gsave
coordfont setfont
0 0 moveto
(\() show i str cvs show (,) show j str cvs show (\)) show
grestore
} if
} bind def
/set_font {
findfont exch
scalefont setfont
} def
% draw text fitted to its expected width
/alignedtext { % width text
/text exch def
/width exch def
gsave
width 0 gt {
[] 0 setdash
text stringwidth pop width exch sub text length div 0 text ashow
} if
grestore
} def
/boxprim { % xcorner ycorner xsize ysize
4 2 roll
moveto
2 copy
exch 0 rlineto
0 exch rlineto
pop neg 0 rlineto
closepath
} bind def
/ellipse_path {
/ry exch def
/rx exch def
/y exch def
/x exch def
matrix currentmatrix
newpath
x y translate
rx ry scale
0 0 1 0 360 arc
setmatrix
} bind def
/endpage { showpage } bind def
/showpage { } def
/layercolorseq
[ % layer color sequence - darkest to lightest
[0 0 0]
[.2 .8 .8]
[.4 .8 .8]
[.6 .8 .8]
[.8 .8 .8]
]
def
/layerlen layercolorseq length def
/setlayer {/maxlayer exch def /curlayer exch def
layercolorseq curlayer 1 sub layerlen mod get
aload pop sethsbcolor
/nodecolor {nopcolor} def
/edgecolor {nopcolor} def
/graphcolor {nopcolor} def
} bind def
/onlayer { curlayer ne {invis} if } def
/onlayers {
/myupper exch def
/mylower exch def
curlayer mylower lt
curlayer myupper gt
or
{invis} if
} def
/curlayer 0 def
%%EndResource
%%EndProlog
%%BeginSetup
14 default-font-family set_font
% /arrowlength 10 def
% /arrowwidth 5 def
% make sure pdfmark is harmless for PS-interpreters other than Distiller
/pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse
% make '<<' and '>>' safe on PS Level 1 devices
/languagelevel where {pop languagelevel}{1} ifelse
2 lt {
userdict (<<) cvn ([) cvn load put
userdict (>>) cvn ([) cvn load put
} if
%%EndSetup
setupLatin1
%%Page: 1 1
%%PageBoundingBox: 36 36 7261 3231
%%PageOrientation: Portrait
0 0 1 beginpage
gsave
36 36 7225 3195 boxprim clip newpath
1 1 set_scale 0 rotate 40 40 translate
% C_acid
gsave
[ /Rect [ 232.5986 294.5572 293.6932 330.5572 ]
/Border [ 0 0 0 ]
/Action << /Subtype /URI /URI (cargos.html#acid) >>
/Subtype /Link
/ANN pdfmark
1 setlinewidth
0 0 0 nodecolor
263.1459 312.5572 30.5947 18 ellipse_path stroke
0 0 0 nodecolor
14 /sans-serif set_font
247.6459 308.8572 moveto 31 (Acid) alignedtext
grestore
% I_aluminium_plant
gsave
[ /Rect [ 363.2918 544.5572 504.2918 580.5572 ]
/Border [ 0 0 0 ]
/Action << /Subtype /URI /URI (industries.html#aluminium_plant) >>
/Subtype /Link
/ANN pdfmark
1 setlinewidth
0 0 0 nodecolor
newpath 504.2918 580.5572 moveto
363.2918 580.5572 lineto
363.2918 544.5572 lineto
504.2918 544.5572 lineto
closepath stroke
0 0 0 nodecolor
14 /sans-serif set_font
375.7918 558.3572 moveto 117 (Aluminium Plant) alignedtext
grestore
% C_acid->I_aluminium_plant
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 268.6302 330.4028 moveto
279.1411 362.7435 304.4008 432.2513 341.2918 481.5572 curveto
357.5554 503.294 380.4892 523.4246 399.4518 538.1801 curveto
stroke
0 0 0 edgecolor
newpath 397.4983 541.0919 moveto
407.5747 544.3655 lineto
401.7391 535.5226 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 397.4983 541.0919 moveto
407.5747 544.3655 lineto
401.7391 535.5226 lineto
closepath stroke
grestore
% I_smithy_forge
gsave
[ /Rect [ 3579.7987 1009.5572 3696.7987 1045.5572 ]
/Border [ 0 0 0 ]
/Action << /Subtype /URI /URI (industries.html#smithy_forge) >>
/Subtype /Link
/ANN pdfmark
1 setlinewidth
0 0 0 nodecolor
newpath 3696.7987 1045.5572 moveto
3579.7987 1045.5572 lineto
3579.7987 1009.5572 lineto
3696.7987 1009.5572 lineto
closepath stroke
0 0 0 nodecolor
14 /sans-serif set_font
3592.2987 1023.3572 moveto 93 (Battery Plant) alignedtext
grestore
% C_acid->I_smithy_forge
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 294.0626 312.5572 moveto
355.7824 312.5572 498.6629 312.5572 618.7364 312.5572 curveto
618.7364 312.5572 618.7364 312.5572 2657.8305 312.5572 curveto
3134.625 312.5572 3534.6834 871.3692 3621.0425 1000.9509 curveto
stroke
0 0 0 edgecolor
newpath 3618.2784 1003.1164 moveto
3626.715 1009.5254 lineto
3624.1165 999.2541 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 3618.2784 1003.1164 moveto
3626.715 1009.5254 lineto
3624.1165 999.2541 lineto
closepath stroke
grestore
% I_copper_refinery
gsave
[ /Rect [ 3191.41 1211.5572 3331.41 1247.5572 ]
/Border [ 0 0 0 ]
/Action << /Subtype /URI /URI (industries.html#copper_refinery) >>
/Subtype /Link
/ANN pdfmark
1 setlinewidth
0 0 0 nodecolor
newpath 3331.41 1247.5572 moveto
3191.41 1247.5572 lineto
3191.41 1211.5572 lineto
3331.41 1211.5572 lineto
closepath stroke
0 0 0 nodecolor
14 /sans-serif set_font
3203.41 1225.3572 moveto 116 (Copper Refinery) alignedtext
grestore
% C_acid->I_copper_refinery
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 277.4467 328.7867 moveto
292.0472 344.4143 316.0887 367.6678 341.2918 381.5572 curveto
453.7949 443.558 490.2801 462.5572 618.7364 462.5572 curveto
618.7364 462.5572 618.7364 462.5572 1677.0588 462.5572 curveto
1993.7145 462.5572 1980.3099 724.2621 2261.1453 870.5572 curveto
2482.5406 985.8883 2548.9039 993.8974 2788.6217 1063.5572 curveto
2940.7654 1107.7688 3010.5739 1043.9457 3136.91 1139.5572 curveto
3161.0089 1157.7953 3145.741 1180.1517 3168.91 1199.5572 curveto
3172.9323 1202.9262 3177.3413 1205.9193 3181.9837 1208.5781 curveto
stroke
0 0 0 edgecolor
newpath 3180.6644 1211.8351 moveto
3191.1589 1213.2902 lineto
3183.8624 1205.6083 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 3180.6644 1211.8351 moveto
3191.1589 1213.2902 lineto
3183.8624 1205.6083 lineto
closepath stroke
grestore
% I_diamond_mine
gsave
[ /Rect [ 3564.2987 284.5572 3712.2987 320.5572 ]
/Border [ 0 0 0 ]
/Action << /Subtype /URI /URI (industries.html#diamond_mine) >>
/Subtype /Link
/ANN pdfmark
1 setlinewidth
0 0 0 nodecolor
newpath 3712.2987 320.5572 moveto
3564.2987 320.5572 lineto
3564.2987 284.5572 lineto
3712.2987 284.5572 lineto
closepath stroke
0 0 0 nodecolor
14 /sans-serif set_font
3576.2987 298.3572 moveto 124 (Galvanising Plant) alignedtext
grestore
% C_acid->I_diamond_mine
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 281.9976 298.1746 moveto
333.1488 260.6308 480.0416 162.5572 618.7364 162.5572 curveto
618.7364 162.5572 618.7364 162.5572 2295.5923 162.5572 curveto
2773.7906 162.5572 3342.647 251.4878 3553.8911 287.5926 curveto
stroke
0 0 0 edgecolor
newpath 3553.5323 291.0821 moveto
3563.9801 289.3233 lineto
3554.7159 284.1829 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 3553.5323 291.0821 moveto
3563.9801 289.3233 lineto
3554.7159 284.1829 lineto
closepath stroke
grestore
% I_ranch
gsave
[ /Rect [ 4931.9556 1075.5572 5053.9556 1111.5572 ]
/Border [ 0 0 0 ]
/Action << /Subtype /URI /URI (industries.html#ranch) >>
/Subtype /Link
/ANN pdfmark
1 setlinewidth
0 0 0 nodecolor
newpath 5053.9556 1111.5572 moveto
4931.9556 1111.5572 lineto
4931.9556 1075.5572 lineto
5053.9556 1075.5572 lineto
closepath stroke
0 0 0 nodecolor
14 /sans-serif set_font
4943.9556 1089.3572 moveto 98 (Polymer Plant) alignedtext
grestore
% C_acid->I_ranch
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 268.5623 294.7226 moveto
278.4354 264.9817 302.0405 205.0297 341.2918 169.5572 curveto
440.5787 79.829 484.9118 52.5572 618.7364 52.5572 curveto
618.7364 52.5572 618.7364 52.5572 3449.6044 52.5572 curveto
3637.2444 52.5572 3692.5454 62.162 3862.09 142.5572 curveto
4124.3999 266.9402 4723.2646 713.7842 4885.4556 954.5572 curveto
4913.6633 996.4316 4883.4464 1026.2409 4917.4556 1063.5572 curveto
4919.4151 1065.7073 4921.549 1067.7057 4923.8163 1069.5628 curveto
stroke
0 0 0 edgecolor
newpath 4921.7977 1072.422 moveto
4931.9805 1075.3481 lineto
4925.845 1066.7106 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 4921.7977 1072.422 moveto
4931.9805 1075.3481 lineto
4925.845 1066.7106 lineto
closepath stroke
grestore
% C_alcohol
gsave
[ /Rect [ 4439.7284 1484.5572 4528.1205 1520.5572 ]
/Border [ 0 0 0 ]
/Action << /Subtype /URI /URI (cargos.html#alcohol) >>
/Subtype /Link
/ANN pdfmark
1 setlinewidth
0 0 0 nodecolor
4483.9245 1502.5572 44.393 18 ellipse_path stroke
0 0 0 nodecolor
14 /sans-serif set_font
4457.9245 1498.8572 moveto 52 (Alcohol) alignedtext
grestore
% I_general_store
gsave
[ /Rect [ 4566.47 1659.5572 4690.47 1695.5572 ]
/Border [ 0 0 0 ]
/Action << /Subtype /URI /URI (industries.html#general_store) >>
/Subtype /Link
/ANN pdfmark
1 setlinewidth
0 0 0 nodecolor
newpath 4690.47 1695.5572 moveto
4566.47 1695.5572 lineto
4566.47 1659.5572 lineto
4690.47 1659.5572 lineto
closepath stroke
0 0 0 nodecolor
14 /sans-serif set_font
4578.47 1673.3572 moveto 100 (General Store) alignedtext
grestore
% C_alcohol->I_general_store
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 4498.0473 1519.6556 moveto
4523.4738 1550.4393 4577.0895 1615.3513 4607.0549 1651.6302 curveto
stroke
0 0 0 edgecolor
newpath 4604.3587 1653.8619 moveto
4613.4255 1659.343 lineto
4609.7557 1649.404 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 4604.3587 1653.8619 moveto
4613.4255 1659.343 lineto
4609.7557 1649.404 lineto
closepath stroke
grestore
% I_hotel
gsave
[ /Rect [ 4597.47 1484.5572 4659.47 1520.5572 ]
/Border [ 0 0 0 ]
/Action << /Subtype /URI /URI (industries.html#hotel) >>
/Subtype /Link
/ANN pdfmark
1 setlinewidth
0 0 0 nodecolor
newpath 4659.47 1520.5572 moveto
4597.47 1520.5572 lineto
4597.47 1484.5572 lineto
4659.47 1484.5572 lineto
closepath stroke
0 0 0 nodecolor
14 /sans-serif set_font
4609.47 1498.3572 moveto 38 (Hotel) alignedtext
grestore
% C_alcohol->I_hotel
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 4528.4723 1502.5572 moveto
4547.1428 1502.5572 4568.7228 1502.5572 4587.0462 1502.5572 curveto
stroke
0 0 0 edgecolor
newpath 4587.1309 1506.0573 moveto
4597.1308 1502.5572 lineto
4587.1308 1499.0573 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 4587.1309 1506.0573 moveto
4597.1308 1502.5572 lineto
4587.1308 1499.0573 lineto
closepath stroke
grestore
% I_wharf
gsave
[ /Rect [ 2847.1217 644.5572 2915.1217 680.5572 ]
/Border [ 0 0 0 ]
/Action << /Subtype /URI /URI (industries.html#wharf) >>
/Subtype /Link
/ANN pdfmark
1 setlinewidth
0 0 0 nodecolor
newpath 2915.1217 680.5572 moveto
2847.1217 680.5572 lineto
2847.1217 644.5572 lineto
2915.1217 644.5572 lineto
closepath stroke
0 0 0 nodecolor
14 /sans-serif set_font
2859.1217 658.3572 moveto 44 (Wharf) alignedtext
grestore
% C_alcohol->I_wharf
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 4482.8397 1484.5371 moveto
4477.9298 1408.0988 4455.6512 1111.2166 4401.8789 1037.5572 curveto
4178.9522 732.1841 4016.3848 662.5572 3638.2987 662.5572 curveto
3261.41 662.5572 3261.41 662.5572 3261.41 662.5572 curveto
3139.8949 662.5572 2996.5388 662.5572 2925.5572 662.5572 curveto
stroke
0 0 0 edgecolor
newpath 2925.2107 659.0573 moveto
2915.2107 662.5572 lineto
2925.2106 666.0573 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 2925.2107 659.0573 moveto
2915.2107 662.5572 lineto
2925.2106 666.0573 lineto
closepath stroke
grestore
% C_metal
gsave
[ /Rect [ 558.2918 544.5572 679.1811 580.5572 ]
/Border [ 0 0 0 ]
/Action << /Subtype /URI /URI (cargos.html#metal) >>
/Subtype /Link
/ANN pdfmark
1 setlinewidth
0 0 0 nodecolor
618.7364 562.5572 60.3893 18 ellipse_path stroke
0 0 0 nodecolor
14 /sans-serif set_font
580.2364 558.8572 moveto 77 (Aluminium) alignedtext
grestore
% I_foundry
gsave
[ /Rect [ 762.6811 2180.5572 844.6811 2216.5572 ]
/Border [ 0 0 0 ]
/Action << /Subtype /URI /URI (industries.html#foundry) >>
/Subtype /Link
/ANN pdfmark
1 setlinewidth
0 0 0 nodecolor
newpath 844.6811 2216.5572 moveto
762.6811 2216.5572 lineto
762.6811 2180.5572 lineto
844.6811 2180.5572 lineto
closepath stroke
0 0 0 nodecolor
14 /sans-serif set_font
774.6811 2194.3572 moveto 58 (Foundry) alignedtext
grestore
% C_metal->I_foundry
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 620.0606 580.638 moveto
627.379 679.5666 664.2529 1165.2954 711.1811 1560.5572 curveto
739.2673 1797.1191 784.5937 2081.3493 799.0764 2170.4496 curveto
stroke
0 0 0 edgecolor
newpath 795.6239 2171.0248 moveto
800.6865 2180.3318 lineto
802.5328 2169.8991 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 795.6239 2171.0248 moveto
800.6865 2180.3318 lineto
802.5328 2169.8991 lineto
closepath stroke
grestore
% I_vineyard
gsave
[ /Rect [ 6006.8166 602.5572 6173.8166 638.5572 ]
/Border [ 0 0 0 ]
/Action << /Subtype /URI /URI (industries.html#vineyard) >>
/Subtype /Link
/ANN pdfmark
1 setlinewidth
0 0 0 nodecolor
newpath 6173.8166 638.5572 moveto
6006.8166 638.5572 lineto
6006.8166 602.5572 lineto
6173.8166 602.5572 lineto
closepath stroke
0 0 0 nodecolor
14 /sans-serif set_font
6019.3166 616.3572 moveto 143 (Manufacturing Plant) alignedtext
grestore
% C_metal->I_vineyard
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 650.4303 547.03 moveto
749.3658 500.0391 1062.3015 362.5572 1337.0669 362.5572 curveto
1337.0669 362.5572 1337.0669 362.5572 1967.9994 362.5572 curveto
2163.0069 362.5572 2175.2812 225.6766 2362.0392 169.5572 curveto
2584.8158 102.6145 2648.5045 102.5572 2881.1217 102.5572 curveto
2881.1217 102.5572 2881.1217 102.5572 3449.6044 102.5572 curveto
3976.0623 102.5572 5622.1878 504.0175 6008.5622 600.0853 curveto
stroke
0 0 0 edgecolor
newpath 6007.7207 603.4825 moveto
6018.2699 602.5006 lineto
6009.4109 596.6896 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 6007.7207 603.4825 moveto
6018.2699 602.5006 lineto
6009.4109 596.6896 lineto
closepath stroke
grestore
% I_metal_fabrication_plant
gsave
[ /Rect [ 3545.2987 394.5572 3731.2987 430.5572 ]
/Border [ 0 0 0 ]
/Action << /Subtype /URI /URI (industries.html#metal_fabrication_plant) >>
/Subtype /Link
/ANN pdfmark
1 setlinewidth
0 0 0 nodecolor
newpath 3731.2987 430.5572 moveto
3545.2987 430.5572 lineto
3545.2987 394.5572 lineto
3731.2987 394.5572 lineto
closepath stroke
0 0 0 nodecolor
14 /sans-serif set_font
3557.2987 408.3572 moveto 162 (Metal Fabrication Plant) alignedtext
grestore
% C_metal->I_metal_fabrication_plant
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 679.269 562.5572 moveto
753.1929 562.5572 882.0435 562.5572 992.5254 562.5572 curveto
992.5254 562.5572 992.5254 562.5572 1967.9994 562.5572 curveto
2335.7505 562.5572 2422.3622 489.6463 2788.6217 456.5572 curveto
3057.0908 432.3029 3374.5807 420.2689 3534.7717 415.3579 curveto
stroke
0 0 0 edgecolor
newpath 3535.2043 418.8465 moveto
3545.0935 415.0446 lineto
3534.9919 411.8497 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 3535.2043 418.8465 moveto
3545.0935 415.0446 lineto
3534.9919 411.8497 lineto
closepath stroke
grestore
% C_bauxite
gsave
[ /Rect [ 217 544.5572 309.2918 580.5572 ]
/Border [ 0 0 0 ]
/Action << /Subtype /URI /URI (cargos.html#bauxite) >>
/Subtype /Link
/ANN pdfmark
1 setlinewidth
0 0 0 nodecolor
263.1459 562.5572 46.2923 18 ellipse_path stroke
0 0 0 nodecolor
14 /sans-serif set_font
235.6459 558.8572 moveto 55 (Bauxite) alignedtext
grestore
% C_bauxite->I_aluminium_plant
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 309.3251 562.5572 moveto
322.7985 562.5572 337.9345 562.5572 352.8889 562.5572 curveto
stroke
0 0 0 edgecolor
newpath 353.1904 566.0573 moveto
363.1903 562.5572 lineto
353.1903 559.0573 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 353.1904 566.0573 moveto
363.1903 562.5572 lineto
353.1903 559.0573 lineto
closepath stroke
grestore
% C_peat
gsave
[ /Rect [ 4433.8789 1929.5572 4533.97 1965.5572 ]
/Border [ 0 0 0 ]
/Action << /Subtype /URI /URI (cargos.html#peat) >>
/Subtype /Link
/ANN pdfmark
1 setlinewidth
0 0 0 nodecolor
4483.9245 1947.5572 50.0912 18 ellipse_path stroke
0 0 0 nodecolor
14 /sans-serif set_font
4453.4245 1943.8572 moveto 61 (Biomass) alignedtext
grestore
% I_ammonia_plant
gsave
[ /Rect [ 4926.4556 1763.5572 5059.4556 1799.5572 ]
/Border [ 0 0 0 ]
/Action << /Subtype /URI /URI (industries.html#ammonia_plant) >>
/Subtype /Link
/ANN pdfmark
1 setlinewidth
0 0 0 nodecolor
newpath 5059.4556 1799.5572 moveto
4926.4556 1799.5572 lineto
4926.4556 1763.5572 lineto
5059.4556 1763.5572 lineto
closepath stroke
0 0 0 nodecolor
14 /sans-serif set_font
4938.9556 1777.3572 moveto 109 (Ammonia Plant) alignedtext
grestore
% C_peat->I_ammonia_plant
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 4521.3547 1935.3509 moveto
4607.2968 1907.3243 4819.6396 1838.0773 4927.6298 1802.8606 curveto
stroke
0 0 0 edgecolor
newpath 4929.0095 1806.0922 moveto
4937.4315 1799.6642 lineto
4926.8391 1799.4371 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 4929.0095 1806.0922 moveto
4937.4315 1799.6642 lineto
4926.8391 1799.4371 lineto
closepath stroke
grestore
% I_biorefinery
gsave
[ /Rect [ 4576.97 1775.5572 4679.97 1811.5572 ]
/Border [ 0 0 0 ]
/Action << /Subtype /URI /URI (industries.html#biorefinery) >>
/Subtype /Link
/ANN pdfmark
1 setlinewidth
0 0 0 nodecolor
newpath 4679.97 1811.5572 moveto
4576.97 1811.5572 lineto
4576.97 1775.5572 lineto
4679.97 1775.5572 lineto
closepath stroke
0 0 0 nodecolor
14 /sans-serif set_font
4589.47 1789.3572 moveto 79 (Biorefinery) alignedtext
grestore
% C_peat->I_biorefinery
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 4499.9456 1930.4881 moveto
4525.2885 1903.4876 4574.7814 1850.7576 4604.4067 1819.1944 curveto
stroke
0 0 0 edgecolor
newpath 4607.192 1821.3412 moveto
4611.4838 1811.6545 lineto
4602.0881 1816.5506 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 4607.192 1821.3412 moveto
4611.4838 1811.6545 lineto
4602.0881 1816.5506 lineto
closepath stroke
grestore
% I_supply_yard
gsave
[ /Rect [ 6382.406 1699.5572 6555.406 1735.5572 ]
/Border [ 0 0 0 ]
/Action << /Subtype /URI /URI (industries.html#supply_yard) >>
/Subtype /Link
/ANN pdfmark
1 setlinewidth
0 0 0 nodecolor
newpath 6555.406 1735.5572 moveto
6382.406 1735.5572 lineto
6382.406 1699.5572 lineto
6555.406 1699.5572 lineto
closepath stroke
0 0 0 nodecolor
14 /sans-serif set_font
6394.906 1713.3572 moveto 149 (Farm Supplies Depot) alignedtext
grestore
% C_peat->I_supply_yard
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 4491.4327 1965.4747 moveto
4503.3572 1991.7626 4529.1081 2040.5792 4565.97 2067.5572 curveto
4927.9155 2332.4537 5083.7605 2358.5572 5532.2855 2358.5572 curveto
5532.2855 2358.5572 5532.2855 2358.5572 6090.3166 2358.5572 curveto
6099.5781 2358.5572 6350.3871 1753.5995 6357.406 1747.5572 curveto
6362.1915 1743.4376 6367.4876 1739.8775 6373.096 1736.8017 curveto
stroke
0 0 0 edgecolor
newpath 6374.7082 1739.9093 moveto
6382.1379 1732.3561 lineto
6371.6196 1733.6275 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 6374.7082 1739.9093 moveto
6382.1379 1732.3561 lineto
6371.6196 1733.6275 lineto
closepath stroke
grestore
% I_power_plant
gsave
[ /Rect [ 5319.2405 2030.5572 5427.2405 2066.5572 ]
/Border [ 0 0 0 ]
/Action << /Subtype /URI /URI (industries.html#power_plant) >>
/Subtype /Link
/ANN pdfmark
1 setlinewidth
0 0 0 nodecolor
newpath 5427.2405 2066.5572 moveto
5319.2405 2066.5572 lineto
5319.2405 2030.5572 lineto
5427.2405 2030.5572 lineto
closepath stroke
0 0 0 nodecolor
14 /sans-serif set_font
5331.2405 2044.3572 moveto 84 (Power Plant) alignedtext
grestore
% C_peat->I_power_plant
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 4495.0667 1965.2747 moveto
4508.9406 1985.6243 4534.6711 2018.1772 4565.97 2033.5572 curveto
4661.5237 2080.5117 4697.7457 2058.5572 4804.2128 2058.5572 curveto
4804.2128 2058.5572 4804.2128 2058.5572 4992.9556 2058.5572 curveto
5103.9723 2058.5572 5233.1561 2054.2458 5308.7852 2051.2848 curveto
stroke
0 0 0 edgecolor
newpath 5309.2402 2054.7696 moveto
5319.0938 2050.8766 lineto
5308.9631 2047.7751 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 5309.2402 2054.7696 moveto
5319.0938 2050.8766 lineto
5308.9631 2047.7751 lineto
closepath stroke
grestore
% C_building_materials
gsave
[ /Rect [ 6612.406 1759.5572 6798.2895 1795.5572 ]
/Border [ 0 0 0 ]
/Action << /Subtype /URI /URI (cargos.html#building_materials) >>
/Subtype /Link
/ANN pdfmark
1 setlinewidth
0 0 0 nodecolor
6705.3478 1777.5572 92.8835 18 ellipse_path stroke
0 0 0 nodecolor
14 /sans-serif set_font
6641.8478 1773.8572 moveto 127 (Building Materials) alignedtext
grestore
% I_bulk_terminal
gsave
[ /Rect [ 1120.8697 1986.5572 1241.8697 2022.5572 ]
/Border [ 0 0 0 ]
/Action << /Subtype /URI /URI (industries.html#bulk_terminal) >>
/Subtype /Link
/ANN pdfmark
1 setlinewidth
0 0 0 nodecolor
newpath 1241.8697 2022.5572 moveto
1120.8697 2022.5572 lineto
1120.8697 1986.5572 lineto
1241.8697 1986.5572 lineto
closepath stroke
0 0 0 nodecolor
14 /sans-serif set_font
1133.3697 2000.3572 moveto 97 (Bulk Terminal) alignedtext
grestore
% C_building_materials->I_bulk_terminal
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 6704.811 1759.3541 moveto
6699.9525 1598.9576 6661.8644 429.6145 6580.406 299.5572 curveto
6494.0263 161.6425 6428.344 112.5572 6265.6113 112.5572 curveto
4628.47 112.5572 4628.47 112.5572 4628.47 112.5572 curveto
4602.7491 112.5572 2813.7179 317.9229 2788.6217 323.5572 curveto
2590.4344 368.0523 2522.4379 362.9368 2362.0392 487.5572 curveto
1753.5232 960.3387 1282.214 1814.3784 1195.6443 1977.3029 curveto
stroke
0 0 0 edgecolor
newpath 1192.5154 1975.7325 moveto
1190.9307 1986.2082 lineto
1198.7023 1979.0072 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1192.5154 1975.7325 moveto
1190.9307 1986.2082 lineto
1198.7023 1979.0072 lineto
closepath stroke
grestore
% I_hardware_store
gsave
[ /Rect [ 6830.2895 1825.5572 6968.2895 1861.5572 ]
/Border [ 0 0 0 ]
/Action << /Subtype /URI /URI (industries.html#hardware_store) >>
/Subtype /Link
/ANN pdfmark
1 setlinewidth
0 0 0 nodecolor
newpath 6968.2895 1861.5572 moveto
6830.2895 1861.5572 lineto
6830.2895 1825.5572 lineto
6968.2895 1825.5572 lineto
closepath stroke
0 0 0 nodecolor
14 /sans-serif set_font
6842.2895 1839.3572 moveto 114 (Hardware Store) alignedtext
grestore
% C_building_materials->I_hardware_store
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 6751.8016 1793.3659 moveto
6777.2634 1802.0307 6809.172 1812.8895 6836.7914 1822.2886 curveto
stroke
0 0 0 edgecolor
newpath 6835.7697 1825.638 moveto
6846.3642 1825.5463 lineto
6838.0249 1819.0112 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 6835.7697 1825.638 moveto
6846.3642 1825.5463 lineto
6838.0249 1819.0112 lineto
closepath stroke
grestore
% I_port
gsave
[ /Rect [ 6872.2895 1693.5572 6926.2895 1729.5572 ]
/Border [ 0 0 0 ]
/Action << /Subtype /URI /URI (industries.html#port) >>
/Subtype /Link
/ANN pdfmark
1 setlinewidth
0 0 0 nodecolor
newpath 6926.2895 1729.5572 moveto
6872.2895 1729.5572 lineto
6872.2895 1693.5572 lineto
6926.2895 1693.5572 lineto
closepath stroke
0 0 0 nodecolor
14 /sans-serif set_font
6885.2895 1707.3572 moveto 28 (Port) alignedtext
grestore
% C_building_materials->I_port
gsave
1 setlinewidth
0 0 0 edgecolor