-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscenario-tree.eps
2641 lines (2638 loc) · 63.1 KB
/
scenario-tree.eps
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 EPSF-3.0
%%Creator: Tk Canvas Widget
%%Title: Window .!canvas
%%CreationDate: Thu Sep 15 13:25:03 2022
%%BoundingBox: 19 153 593 639
%%Pages: 1
%%DocumentData: Clean7Bit
%%Orientation: Portrait
%%EndComments
%%BeginProlog
% This is a standard prolog for Postscript generated by Tk's canvas
% widget.
/CurrentEncoding [
/space/space/space/space/space/space/space/space
/space/space/space/space/space/space/space/space
/space/space/space/space/space/space/space/space
/space/space/space/space/space/space/space/space
/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle
/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash
/zero/one/two/three/four/five/six/seven
/eight/nine/colon/semicolon/less/equal/greater/question
/at/A/B/C/D/E/F/G
/H/I/J/K/L/M/N/O
/P/Q/R/S/T/U/V/W
/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore
/grave/a/b/c/d/e/f/g
/h/i/j/k/l/m/n/o
/p/q/r/s/t/u/v/w
/x/y/z/braceleft/bar/braceright/asciitilde/space
/space/space/space/space/space/space/space/space
/space/space/space/space/space/space/space/space
/space/space/space/space/space/space/space/space
/space/space/space/space/space/space/space/space
/space/exclamdown/cent/sterling/currency/yen/brokenbar/section
/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron
/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered
/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown
/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla
/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis
/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply
/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls
/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide
/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis
] def
50 dict begin
/baseline 0 def
/stipimage 0 def
/height 0 def
/justify 0 def
/lineLength 0 def
/spacing 0 def
/stipple 0 def
/strings 0 def
/xoffset 0 def
/yoffset 0 def
/tmpstip null def
/baselineSampler ( TXygqPZ) def
baselineSampler 0 196 put
/cstringshow {{ dup type /stringtype eq { show } { glyphshow } ifelse } forall } bind def
/cstringwidth {0 exch 0 exch { dup type /stringtype eq { stringwidth } { currentfont /Encoding get exch 1 exch put (\001) stringwidth } ifelse exch 3 1 roll add 3 1 roll add exch } forall } bind def
/ISOEncode {dup length dict begin {1 index /FID ne {def} {pop pop} ifelse} forall /Encoding CurrentEncoding def currentdict end /Temporary exch definefont } bind def
/StrokeClip {{strokepath} stopped { (This Postscript printer gets limitcheck overflows when) = (stippling dashed lines; lines will be printed solid instead.) = [] 0 setdash strokepath} if clip } bind def
/EvenPixels {dup 0 matrix currentmatrix dtransform dup mul exch dup mul add sqrt dup round dup 1 lt {pop 1} if exch div mul } bind def
/StippleFill {/tmpstip 1 index def 1 EvenPixels dup scale pathbbox 4 2 roll 5 index div dup 0 lt {1 sub} if cvi 5 index mul 4 1 roll 6 index div dup 0 lt {1 sub} if cvi 6 index mul 3 2 roll 6 index exch { 2 index 5 index 3 index { gsave 1 index exch translate 5 index 5 index true matrix tmpstip imagemask grestore } for pop } for pop pop pop pop pop } bind def
/AdjustColor {CL 2 lt { currentgray CL 0 eq { .5 lt {0} {1} ifelse } if setgray } if } bind def
/DrawText {/stipple exch def /justify exch def /yoffset exch def /xoffset exch def /spacing exch def /strings exch def /lineLength 0 def strings { cstringwidth pop dup lineLength gt {/lineLength exch def} {pop} ifelse newpath } forall 0 0 moveto baselineSampler false charpath pathbbox dup /baseline exch def exch pop exch sub /height exch def pop newpath translate rotate lineLength xoffset mul strings length 1 sub spacing mul height add yoffset mul translate justify lineLength mul baseline neg translate strings { dup cstringwidth pop justify neg mul 0 moveto stipple { gsave /char (X) def { dup type /stringtype eq { { char 0 3 -1 roll put currentpoint gsave char true charpath clip StippleText grestore char stringwidth translate moveto } forall } { currentfont /Encoding get exch 1 exch put currentpoint gsave (\001) true charpath clip StippleText grestore (\001) stringwidth translate moveto } ifelse } forall grestore } {cstringshow} ifelse 0 spacing neg translate } forall } bind def
/TkPhotoColor {gsave 32 dict begin /tinteger exch def /transparent 1 string def transparent 0 tinteger put /olddict exch def olddict /DataSource get dup type /filetype ne { olddict /DataSource 3 -1 roll 0 () /SubFileDecode filter put } { pop } ifelse /newdict olddict maxlength dict def olddict newdict copy pop /w newdict /Width get def /crpp newdict /Decode get length 2 idiv def /str w string def /pix w crpp mul string def /substrlen 2 w log 2 log div floor exp cvi def /substrs [ { substrlen string 0 1 substrlen 1 sub { 1 index exch tinteger put } for /substrlen substrlen 2 idiv def substrlen 0 eq {exit} if } loop ] def /h newdict /Height get def 1 w div 1 h div matrix scale olddict /ImageMatrix get exch matrix concatmatrix matrix invertmatrix concat newdict /Height 1 put newdict /DataSource pix put /mat [w 0 0 h 0 0] def newdict /ImageMatrix mat put 0 1 h 1 sub { mat 5 3 -1 roll neg put olddict /DataSource get str readstring pop pop /tail str def /x 0 def olddict /DataSource get pix readstring pop pop { tail transparent search dup /done exch not def {exch pop exch pop} if /w1 exch length def w1 0 ne { newdict /DataSource pix x crpp mul w1 crpp mul getinterval put newdict /Width w1 put mat 4 x neg put /x x w1 add def newdict image /tail tail w1 tail length w1 sub getinterval def } if done {exit} if tail substrs { anchorsearch {pop} if } forall /tail exch def tail length 0 eq {exit} if /x w tail length sub def } loop } for end grestore } bind def
/TkPhotoMono {gsave 32 dict begin /dummyInteger exch def /olddict exch def olddict /DataSource get dup type /filetype ne { olddict /DataSource 3 -1 roll 0 () /SubFileDecode filter put } { pop } ifelse /newdict olddict maxlength dict def olddict newdict copy pop /w newdict /Width get def /pix w 7 add 8 idiv string def /h newdict /Height get def 1 w div 1 h div matrix scale olddict /ImageMatrix get exch matrix concatmatrix matrix invertmatrix concat newdict /Height 1 put newdict /DataSource pix put /mat [w 0 0 h 0 0] def newdict /ImageMatrix mat put 0 1 h 1 sub { mat 5 3 -1 roll neg put 0.000 0.000 0.000 setrgbcolor olddict /DataSource get pix readstring pop pop newdict /DataSource pix put newdict imagemask 1.000 1.000 1.000 setrgbcolor olddict /DataSource get pix readstring pop pop newdict /DataSource pix put newdict imagemask } for end grestore } bind def
%%EndProlog
%%BeginSetup
/CL 2 def
%%EndSetup
%%Page: 1 1
save
306.0 396.0 translate
0.7493 0.7493 scale
3 -323 translate
-386 646 moveto 380 646 lineto 380 0 lineto -386 0 lineto closepath clip newpath
gsave
grestore
gsave
grestore
gsave
grestore
gsave
0 20 moveto
31.358538980296 21.643431389518 lineto
62.3735072453278 26.5557197798584 lineto
92.7050983124842 34.683045111454 lineto
122.02099292274 45.9363627072198 lineto
150 60.1923788646685 lineto
176.335575687742 77.2949016875158 lineto
200.739181907657 97.0565523567818 lineto
222.943447643218 119.260818092343 lineto
242.705098312484 143.664424312258 lineto
259.807621135332 170 lineto
274.06363729278 197.97900707726 lineto
285.316954888546 227.294901687516 lineto
293.444280220142 257.626492754672 lineto
298.356568610482 288.641461019704 lineto
300 320 lineto
298.356568610482 351.358538980296 lineto
293.444280220142 382.373507245328 lineto
285.316954888546 412.705098312484 lineto
274.06363729278 442.02099292274 lineto
259.807621135332 470 lineto
242.705098312484 496.335575687742 lineto
222.943447643218 520.739181907657 lineto
200.739181907658 542.943447643218 lineto
176.335575687742 562.705098312484 lineto
150 579.807621135331 lineto
122.02099292274 594.06363729278 lineto
92.7050983124844 605.316954888546 lineto
62.3735072453281 613.444280220141 lineto
31.3585389802964 618.356568610481 lineto
3.76587649952853e-13 620 lineto
-31.3585389802956 618.356568610481 lineto
-62.3735072453273 613.444280220141 lineto
-92.7050983124837 605.316954888546 lineto
-122.020992922739 594.06363729278 lineto
-149.999999999999 579.807621135331 lineto
-176.335575687741 562.705098312484 lineto
-200.739181907657 542.943447643218 lineto
-222.943447643217 520.739181907657 lineto
-242.705098312483 496.335575687742 lineto
-259.807621135331 470 lineto
-274.063637292779 442.02099292274 lineto
-285.316954888545 412.705098312484 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.502 0.502 0.502 setrgbcolor AdjustColor
stroke
grestore
gsave
-285.316954888545 412.705098312484 moveto
-293.444280220141 382.373507245328 lineto
-298.356568610481 351.358538980296 lineto
-299.999999999999 320 lineto
-298.356568610481 288.641461019704 lineto
-293.444280220141 257.626492754672 lineto
-285.316954888545 227.294901687516 lineto
-274.063637292779 197.97900707726 lineto
-259.807621135331 170.000000000001 lineto
-242.705098312483 143.664424312259 lineto
-222.943447643217 119.260818092343 lineto
-200.739181907657 97.0565523567825 lineto
-176.335575687741 77.2949016875166 lineto
-149.999999999999 60.1923788646693 lineto
-122.02099292274 45.9363627072206 lineto
-92.7050983124838 34.6830451114549 lineto
-62.3735072453274 26.5557197798593 lineto
-31.3585389802958 21.643431389519 lineto
1.88293824976427e-13 20.000000000001 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.502 0.502 0.502 setrgbcolor AdjustColor
stroke
grestore
gsave
300 320 moveto
300 320 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
277.163859753386 434.805029709527 moveto
277.163859753386 434.805029709527 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
212.132034355964 532.132034355964 moveto
212.132034355964 532.132034355964 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
114.805029709527 597.163859753386 moveto
114.805029709527 597.163859753386 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
1.83697019872103e-14 620 moveto
1.83697019872103e-14 620 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-114.805029709527 597.163859753386 moveto
-114.805029709527 597.163859753386 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-212.132034355964 532.132034355964 moveto
-212.132034355964 532.132034355964 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-277.163859753386 434.805029709527 moveto
-277.163859753386 434.805029709527 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-300 320 moveto
-300 320 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-277.163859753386 205.194970290473 moveto
-277.163859753386 205.194970290473 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-212.132034355964 107.867965644036 moveto
-212.132034355964 107.867965644036 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-114.805029709527 42.8361402466139 moveto
-114.805029709527 42.8361402466139 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-5.51091059616309e-14 20 moveto
-5.51091059616309e-14 20 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
114.805029709527 42.836140246614 moveto
114.805029709527 42.836140246614 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
212.132034355964 107.867965644036 moveto
212.132034355964 107.867965644036 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
277.163859753386 205.194970290473 moveto
277.163859753386 205.194970290473 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
0 57.5 moveto
29.9227450962668 59.2110444710056 lineto
59.455401449263 64.3218718026374 lineto
88.2129657190501 72.7658545446247 lineto
115.820539076345 84.4329124685183 lineto
141.918214582094 99.1709476318148 lineto
166.165769124828 116.787827207241 lineto
188.247098749227 137.053888227985 lineto
207.874339554597 159.704931595697 lineto
224.791620441041 184.445666319772 lineto
238.77839878056 210.953559087004 lineto
249.652335527477 238.883038976576 lineto
257.271672286752 267.870002505491 lineto
261.537079351456 297.536560274304 lineto
262.392950617399 327.495963333344 lineto
259.828128493744 357.357645046736 lineto
253.876049359263 386.732312725789 lineto
244.614307668005 415.237022654542 lineto
232.163644386925 442.500172346738 lineto
216.686372952727 468.166344952526 lineto
198.384263267992 491.900942660636 lineto
177.495911321929 513.394548692555 lineto
154.293628726774 532.366961023422 lineto
129.07989271947 548.57084524394 lineto
102.183402908315 561.794958942647 lineto
73.9547961708749 571.866905573804 lineto
44.7620755660634 578.655381910018 lineto
14.9858128514763 582.071889780609 lineto
-14.9858128514768 582.071889780609 lineto
-44.7620755660638 578.655381910018 lineto
-73.9547961708753 571.866905573804 lineto
-102.183402908315 561.794958942647 lineto
-129.079892719471 548.57084524394 lineto
-154.293628726774 532.366961023422 lineto
-177.49591132193 513.394548692555 lineto
-198.384263267992 491.900942660636 lineto
-216.686372952728 468.166344952526 lineto
-232.163644386926 442.500172346738 lineto
-244.614307668006 415.237022654542 lineto
-253.876049359263 386.732312725789 lineto
-259.828128493744 357.357645046736 lineto
-262.392950617399 327.495963333344 lineto
-261.537079351456 297.536560274304 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.502 0.502 0.502 setrgbcolor AdjustColor
stroke
grestore
gsave
-261.537079351456 297.536560274304 moveto
-257.271672286753 267.870002505491 lineto
-249.652335527477 238.883038976576 lineto
-238.778398780561 210.953559087004 lineto
-224.791620441042 184.445666319772 lineto
-207.874339554597 159.704931595697 lineto
-188.247098749228 137.053888227985 lineto
-166.165769124828 116.78782720724 lineto
-141.918214582094 99.1709476318145 lineto
-115.820539076345 84.432912468518 lineto
-88.2129657190503 72.7658545446244 lineto
-59.4554014492631 64.3218718026371 lineto
-29.9227450962669 59.2110444710053 lineto
-2.8421709430404e-14 57.4999999999997 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.502 0.502 0.502 setrgbcolor AdjustColor
stroke
grestore
gsave
262.5 320 moveto
262.5 320 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
262.5 320 moveto
300 320 lineto
262.5 320 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
242.518377284213 420.454400995836 moveto
242.518377284213 420.454400995836 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
242.518377284213 420.454400995836 moveto
277.163859753386 434.805029709527 lineto
242.518377284213 420.454400995836 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
185.615530061469 505.615530061469 moveto
185.615530061469 505.615530061469 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
185.615530061469 505.615530061469 moveto
212.132034355964 532.132034355964 lineto
185.615530061469 505.615530061469 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
100.454400995836 562.518377284213 moveto
100.454400995836 562.518377284213 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
100.454400995836 562.518377284213 moveto
114.805029709527 597.163859753386 lineto
100.454400995836 562.518377284213 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
1.6073489238809e-14 582.5 moveto
1.6073489238809e-14 582.5 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
1.6073489238809e-14 582.5 moveto
1.83697019872103e-14 620 lineto
1.6073489238809e-14 582.5 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-100.454400995836 562.518377284213 moveto
-100.454400995836 562.518377284213 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-100.454400995836 562.518377284213 moveto
-114.805029709527 597.163859753386 lineto
-100.454400995836 562.518377284213 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-185.615530061469 505.615530061469 moveto
-185.615530061469 505.615530061469 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-185.615530061469 505.615530061469 moveto
-212.132034355964 532.132034355964 lineto
-185.615530061469 505.615530061469 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-242.518377284213 420.454400995836 moveto
-242.518377284213 420.454400995836 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-242.518377284213 420.454400995836 moveto
-277.163859753386 434.805029709527 lineto
-242.518377284213 420.454400995836 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-262.5 320 moveto
-262.5 320 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-262.5 320 moveto
-300 320 lineto
-262.5 320 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-242.518377284213 219.545599004164 moveto
-242.518377284213 219.545599004164 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-242.518377284213 219.545599004164 moveto
-277.163859753386 205.194970290473 lineto
-242.518377284213 219.545599004164 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-185.615530061469 134.384469938531 moveto
-185.615530061469 134.384469938531 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-185.615530061469 134.384469938531 moveto
-212.132034355964 107.867965644036 lineto
-185.615530061469 134.384469938531 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-100.454400995836 77.4816227157872 moveto
-100.454400995836 77.4816227157872 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-100.454400995836 77.4816227157872 moveto
-114.805029709527 42.8361402466139 lineto
-100.454400995836 77.4816227157872 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-4.8220467716427e-14 57.5 moveto
-4.8220467716427e-14 57.5 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-4.8220467716427e-14 57.5 moveto
-5.51091059616309e-14 20 lineto
-4.8220467716427e-14 57.5 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
100.454400995836 77.4816227157873 moveto
100.454400995836 77.4816227157873 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
100.454400995836 77.4816227157873 moveto
114.805029709527 42.836140246614 lineto
100.454400995836 77.4816227157873 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
185.615530061469 134.384469938531 moveto
185.615530061469 134.384469938531 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
185.615530061469 134.384469938531 moveto
212.132034355964 107.867965644036 lineto
185.615530061469 134.384469938531 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
242.518377284213 219.545599004164 moveto
242.518377284213 219.545599004164 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
242.518377284213 219.545599004164 moveto
277.163859753386 205.194970290473 lineto
242.518377284213 219.545599004164 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
0 95 moveto
28.7723613790138 96.8472468897697 lineto
57.072281379639 102.358655816218 lineto
84.435076097859 111.443729597145 lineto
110.411449200886 123.953291572237 lineto
134.574869360523 139.68193507971 lineto
156.528573885784 158.371396228011 lineto
175.912083555306 179.714794581785 lineto
192.407121676202 203.361672130132 lineto
205.742840178557 228.923747797461 lineto
215.700266933248 255.981293008018 lineto
222.115901268251 284.090023617489 lineto
224.884398645154 312.788395046377 lineto
223.960300413569 341.605180829228 lineto
219.35878024091 370.06721014017 lineto
211.155394961196 397.707137244794 lineto
199.484843933924 424.071115304188 lineto
184.538757284315 448.726248527488 lineto
166.562549341945 471.267700308796 lineto
145.851388944252 491.325340633055 lineto
122.745352772373 508.569823600664 lineto
97.6238413014501 522.717995278044 lineto
70.8993490553142 533.5375430774 lineto
43.0106914578084 540.850810322989 lineto
14.4157994956601 544.537713368825 lineto
-14.4157994956607 544.537713368825 lineto
-43.0106914578091 540.850810322989 lineto
-70.8993490553149 533.5375430774 lineto
-97.6238413014509 522.717995278044 lineto
-122.745352772374 508.569823600663 lineto
-145.851388944253 491.325340633055 lineto
-166.562549341946 471.267700308796 lineto
-184.538757284315 448.726248527488 lineto
-199.484843933925 424.071115304187 lineto
-211.155394961196 397.707137244794 lineto
-219.35878024091 370.06721014017 lineto
-223.96030041357 341.605180829228 lineto
-224.884398645155 312.788395046377 lineto
-222.115901268251 284.090023617489 lineto
-215.700266933249 255.981293008017 lineto
-205.742840178558 228.923747797461 lineto
-192.407121676203 203.361672130131 lineto
-175.912083555307 179.714794581784 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.502 0.502 0.502 setrgbcolor AdjustColor
stroke
grestore
gsave
-175.912083555307 179.714794581784 moveto
-156.528573885785 158.371396228011 lineto
-134.574869360524 139.681935079709 lineto
-110.411449200886 123.953291572237 lineto
-84.4350760978594 111.443729597145 lineto
-57.0722813796394 102.358655816218 lineto
-28.7723613790141 96.847246889769 lineto
-2.16715534406831e-13 94.9999999999993 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.502 0.502 0.502 setrgbcolor AdjustColor
stroke
grestore
gsave
225 320 moveto
225 320 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
225 320 moveto
262.5 320 lineto
225 320 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
207.87289481504 406.103772282145 moveto
207.87289481504 406.103772282145 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
207.87289481504 406.103772282145 moveto
242.518377284213 420.454400995836 lineto
207.87289481504 406.103772282145 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
159.099025766973 479.099025766973 moveto
159.099025766973 479.099025766973 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
159.099025766973 479.099025766973 moveto
185.615530061469 505.615530061469 lineto
159.099025766973 479.099025766973 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
86.1037722821452 527.87289481504 moveto
86.1037722821452 527.87289481504 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
86.1037722821452 527.87289481504 moveto
100.454400995836 562.518377284213 lineto
86.1037722821452 527.87289481504 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
1.37772764904077e-14 545 moveto
1.37772764904077e-14 545 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
1.37772764904077e-14 545 moveto
1.6073489238809e-14 582.5 lineto
1.37772764904077e-14 545 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-86.1037722821452 527.87289481504 moveto
-86.1037722821452 527.87289481504 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-86.1037722821452 527.87289481504 moveto
-100.454400995836 562.518377284213 lineto
-86.1037722821452 527.87289481504 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-159.099025766973 479.099025766973 moveto
-159.099025766973 479.099025766973 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-159.099025766973 479.099025766973 moveto
-185.615530061469 505.615530061469 lineto
-159.099025766973 479.099025766973 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-207.87289481504 406.103772282145 moveto
-207.87289481504 406.103772282145 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-207.87289481504 406.103772282145 moveto
-242.518377284213 420.454400995836 lineto
-207.87289481504 406.103772282145 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-225 320 moveto
-225 320 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-225 320 moveto
-262.5 320 lineto
-225 320 lineto
1 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
-207.87289481504 233.896227717855 moveto
-207.87289481504 233.896227717855 lineto
1 setlinecap
1 setlinejoin
6 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke