-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDigraph.gv
1117 lines (1117 loc) · 67.9 KB
/
Digraph.gv
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
digraph {
node [fontsize=9 height=0.2 shape=circle width=0.2]
-1 [fillcolor=lightgray shape=box style=filled]
-2 [fillcolor=lightgray shape=box style=filled]
-3 [fillcolor=lightgray shape=box style=filled]
-4 [fillcolor=lightgray shape=box style=filled]
-5 [fillcolor=lightgray shape=box style=filled]
-6 [fillcolor=lightgray shape=box style=filled]
-7 [fillcolor=lightgray shape=box style=filled]
-8 [fillcolor=lightgray shape=box style=filled]
-9 [fillcolor=lightgray shape=box style=filled]
-10 [fillcolor=lightgray shape=box style=filled]
-11 [fillcolor=lightgray shape=box style=filled]
-12 [fillcolor=lightgray shape=box style=filled]
-13 [fillcolor=lightgray shape=box style=filled]
-14 [fillcolor=lightgray shape=box style=filled]
-15 [fillcolor=lightgray shape=box style=filled]
-16 [fillcolor=lightgray shape=box style=filled]
-17 [fillcolor=lightgray shape=box style=filled]
-18 [fillcolor=lightgray shape=box style=filled]
-19 [fillcolor=lightgray shape=box style=filled]
-20 [fillcolor=lightgray shape=box style=filled]
-21 [fillcolor=lightgray shape=box style=filled]
-22 [fillcolor=lightgray shape=box style=filled]
-23 [fillcolor=lightgray shape=box style=filled]
-24 [fillcolor=lightgray shape=box style=filled]
-25 [fillcolor=lightgray shape=box style=filled]
-26 [fillcolor=lightgray shape=box style=filled]
-27 [fillcolor=lightgray shape=box style=filled]
-28 [fillcolor=lightgray shape=box style=filled]
-29 [fillcolor=lightgray shape=box style=filled]
-30 [fillcolor=lightgray shape=box style=filled]
-31 [fillcolor=lightgray shape=box style=filled]
-32 [fillcolor=lightgray shape=box style=filled]
-33 [fillcolor=lightgray shape=box style=filled]
-34 [fillcolor=lightgray shape=box style=filled]
-35 [fillcolor=lightgray shape=box style=filled]
-36 [fillcolor=lightgray shape=box style=filled]
-37 [fillcolor=lightgray shape=box style=filled]
-38 [fillcolor=lightgray shape=box style=filled]
-39 [fillcolor=lightgray shape=box style=filled]
-40 [fillcolor=lightgray shape=box style=filled]
-41 [fillcolor=lightgray shape=box style=filled]
-42 [fillcolor=lightgray shape=box style=filled]
-43 [fillcolor=lightgray shape=box style=filled]
-44 [fillcolor=lightgray shape=box style=filled]
-45 [fillcolor=lightgray shape=box style=filled]
-46 [fillcolor=lightgray shape=box style=filled]
-47 [fillcolor=lightgray shape=box style=filled]
-48 [fillcolor=lightgray shape=box style=filled]
-49 [fillcolor=lightgray shape=box style=filled]
-50 [fillcolor=lightgray shape=box style=filled]
-51 [fillcolor=lightgray shape=box style=filled]
-52 [fillcolor=lightgray shape=box style=filled]
-53 [fillcolor=lightgray shape=box style=filled]
-54 [fillcolor=lightgray shape=box style=filled]
-55 [fillcolor=lightgray shape=box style=filled]
-56 [fillcolor=lightgray shape=box style=filled]
-57 [fillcolor=lightgray shape=box style=filled]
-58 [fillcolor=lightgray shape=box style=filled]
-59 [fillcolor=lightgray shape=box style=filled]
-60 [fillcolor=lightgray shape=box style=filled]
-61 [fillcolor=lightgray shape=box style=filled]
-62 [fillcolor=lightgray shape=box style=filled]
-63 [fillcolor=lightgray shape=box style=filled]
-64 [fillcolor=lightgray shape=box style=filled]
-65 [fillcolor=lightgray shape=box style=filled]
-66 [fillcolor=lightgray shape=box style=filled]
-67 [fillcolor=lightgray shape=box style=filled]
-68 [fillcolor=lightgray shape=box style=filled]
-69 [fillcolor=lightgray shape=box style=filled]
-70 [fillcolor=lightgray shape=box style=filled]
-71 [fillcolor=lightgray shape=box style=filled]
-72 [fillcolor=lightgray shape=box style=filled]
-73 [fillcolor=lightgray shape=box style=filled]
-74 [fillcolor=lightgray shape=box style=filled]
-75 [fillcolor=lightgray shape=box style=filled]
-76 [fillcolor=lightgray shape=box style=filled]
-77 [fillcolor=lightgray shape=box style=filled]
-78 [fillcolor=lightgray shape=box style=filled]
-79 [fillcolor=lightgray shape=box style=filled]
-80 [fillcolor=lightgray shape=box style=filled]
-81 [fillcolor=lightgray shape=box style=filled]
-82 [fillcolor=lightgray shape=box style=filled]
-83 [fillcolor=lightgray shape=box style=filled]
-84 [fillcolor=lightgray shape=box style=filled]
-85 [fillcolor=lightgray shape=box style=filled]
-86 [fillcolor=lightgray shape=box style=filled]
-87 [fillcolor=lightgray shape=box style=filled]
-88 [fillcolor=lightgray shape=box style=filled]
-89 [fillcolor=lightgray shape=box style=filled]
-90 [fillcolor=lightgray shape=box style=filled]
-91 [fillcolor=lightgray shape=box style=filled]
-92 [fillcolor=lightgray shape=box style=filled]
-93 [fillcolor=lightgray shape=box style=filled]
-94 [fillcolor=lightgray shape=box style=filled]
-95 [fillcolor=lightgray shape=box style=filled]
-96 [fillcolor=lightgray shape=box style=filled]
-97 [fillcolor=lightgray shape=box style=filled]
-98 [fillcolor=lightgray shape=box style=filled]
-99 [fillcolor=lightgray shape=box style=filled]
-100 [fillcolor=lightgray shape=box style=filled]
-101 [fillcolor=lightgray shape=box style=filled]
-102 [fillcolor=lightgray shape=box style=filled]
-103 [fillcolor=lightgray shape=box style=filled]
-104 [fillcolor=lightgray shape=box style=filled]
-105 [fillcolor=lightgray shape=box style=filled]
-106 [fillcolor=lightgray shape=box style=filled]
-107 [fillcolor=lightgray shape=box style=filled]
-108 [fillcolor=lightgray shape=box style=filled]
-109 [fillcolor=lightgray shape=box style=filled]
-110 [fillcolor=lightgray shape=box style=filled]
-111 [fillcolor=lightgray shape=box style=filled]
-112 [fillcolor=lightgray shape=box style=filled]
-113 [fillcolor=lightgray shape=box style=filled]
-114 [fillcolor=lightgray shape=box style=filled]
-115 [fillcolor=lightgray shape=box style=filled]
-116 [fillcolor=lightgray shape=box style=filled]
-117 [fillcolor=lightgray shape=box style=filled]
-118 [fillcolor=lightgray shape=box style=filled]
-119 [fillcolor=lightgray shape=box style=filled]
-120 [fillcolor=lightgray shape=box style=filled]
-121 [fillcolor=lightgray shape=box style=filled]
-122 [fillcolor=lightgray shape=box style=filled]
-123 [fillcolor=lightgray shape=box style=filled]
-124 [fillcolor=lightgray shape=box style=filled]
-125 [fillcolor=lightgray shape=box style=filled]
-126 [fillcolor=lightgray shape=box style=filled]
-127 [fillcolor=lightgray shape=box style=filled]
-128 [fillcolor=lightgray shape=box style=filled]
-129 [fillcolor=lightgray shape=box style=filled]
-130 [fillcolor=lightgray shape=box style=filled]
-131 [fillcolor=lightgray shape=box style=filled]
-132 [fillcolor=lightgray shape=box style=filled]
-133 [fillcolor=lightgray shape=box style=filled]
-134 [fillcolor=lightgray shape=box style=filled]
-135 [fillcolor=lightgray shape=box style=filled]
-136 [fillcolor=lightgray shape=box style=filled]
-137 [fillcolor=lightgray shape=box style=filled]
-138 [fillcolor=lightgray shape=box style=filled]
-139 [fillcolor=lightgray shape=box style=filled]
-140 [fillcolor=lightgray shape=box style=filled]
-141 [fillcolor=lightgray shape=box style=filled]
-142 [fillcolor=lightgray shape=box style=filled]
-143 [fillcolor=lightgray shape=box style=filled]
-144 [fillcolor=lightgray shape=box style=filled]
-145 [fillcolor=lightgray shape=box style=filled]
-146 [fillcolor=lightgray shape=box style=filled]
-147 [fillcolor=lightgray shape=box style=filled]
-148 [fillcolor=lightgray shape=box style=filled]
-149 [fillcolor=lightgray shape=box style=filled]
-150 [fillcolor=lightgray shape=box style=filled]
-151 [fillcolor=lightgray shape=box style=filled]
-152 [fillcolor=lightgray shape=box style=filled]
-153 [fillcolor=lightgray shape=box style=filled]
-154 [fillcolor=lightgray shape=box style=filled]
-155 [fillcolor=lightgray shape=box style=filled]
-156 [fillcolor=lightgray shape=box style=filled]
-157 [fillcolor=lightgray shape=box style=filled]
-158 [fillcolor=lightgray shape=box style=filled]
-159 [fillcolor=lightgray shape=box style=filled]
-160 [fillcolor=lightgray shape=box style=filled]
-161 [fillcolor=lightgray shape=box style=filled]
-162 [fillcolor=lightgray shape=box style=filled]
-163 [fillcolor=lightgray shape=box style=filled]
-164 [fillcolor=lightgray shape=box style=filled]
-165 [fillcolor=lightgray shape=box style=filled]
-166 [fillcolor=lightgray shape=box style=filled]
-167 [fillcolor=lightgray shape=box style=filled]
-168 [fillcolor=lightgray shape=box style=filled]
-169 [fillcolor=lightgray shape=box style=filled]
-170 [fillcolor=lightgray shape=box style=filled]
-171 [fillcolor=lightgray shape=box style=filled]
-172 [fillcolor=lightgray shape=box style=filled]
-173 [fillcolor=lightgray shape=box style=filled]
-174 [fillcolor=lightgray shape=box style=filled]
-175 [fillcolor=lightgray shape=box style=filled]
-176 [fillcolor=lightgray shape=box style=filled]
-177 [fillcolor=lightgray shape=box style=filled]
-178 [fillcolor=lightgray shape=box style=filled]
-179 [fillcolor=lightgray shape=box style=filled]
-180 [fillcolor=lightgray shape=box style=filled]
-181 [fillcolor=lightgray shape=box style=filled]
-182 [fillcolor=lightgray shape=box style=filled]
-183 [fillcolor=lightgray shape=box style=filled]
-184 [fillcolor=lightgray shape=box style=filled]
-185 [fillcolor=lightgray shape=box style=filled]
-186 [fillcolor=lightgray shape=box style=filled]
-187 [fillcolor=lightgray shape=box style=filled]
-188 [fillcolor=lightgray shape=box style=filled]
-189 [fillcolor=lightgray shape=box style=filled]
-190 [fillcolor=lightgray shape=box style=filled]
-191 [fillcolor=lightgray shape=box style=filled]
-192 [fillcolor=lightgray shape=box style=filled]
-193 [fillcolor=lightgray shape=box style=filled]
-194 [fillcolor=lightgray shape=box style=filled]
-195 [fillcolor=lightgray shape=box style=filled]
-196 [fillcolor=lightgray shape=box style=filled]
-197 [fillcolor=lightgray shape=box style=filled]
-198 [fillcolor=lightgray shape=box style=filled]
-199 [fillcolor=lightgray shape=box style=filled]
-200 [fillcolor=lightgray shape=box style=filled]
-201 [fillcolor=lightgray shape=box style=filled]
-202 [fillcolor=lightgray shape=box style=filled]
-203 [fillcolor=lightgray shape=box style=filled]
-204 [fillcolor=lightgray shape=box style=filled]
-205 [fillcolor=lightgray shape=box style=filled]
-206 [fillcolor=lightgray shape=box style=filled]
-207 [fillcolor=lightgray shape=box style=filled]
-208 [fillcolor=lightgray shape=box style=filled]
0 [fillcolor=lightblue style=filled]
1 [fillcolor=lightblue style=filled]
13568 [fillcolor=white style=filled]
22912 [fillcolor=white style=filled]
25091 [fillcolor=white style=filled]
14471 [fillcolor=white style=filled]
21768 [fillcolor=white style=filled]
12425 [fillcolor=white style=filled]
16650 [fillcolor=white style=filled]
21257 [fillcolor=white style=filled]
22028 [fillcolor=white style=filled]
28169 [fillcolor=white style=filled]
17552 [fillcolor=white style=filled]
26002 [fillcolor=white style=filled]
8980 [fillcolor=white style=filled]
11924 [fillcolor=white style=filled]
21756 [fillcolor=white style=filled]
16151 [fillcolor=white style=filled]
24727 [fillcolor=white style=filled]
21657 [fillcolor=white style=filled]
22682 [fillcolor=white style=filled]
27162 [fillcolor=white style=filled]
5532 [fillcolor=white style=filled]
26013 [fillcolor=white style=filled]
14626 [fillcolor=white style=filled]
24739 [fillcolor=white style=filled]
24228 [fillcolor=white style=filled]
23719 [fillcolor=white style=filled]
19112 [fillcolor=white style=filled]
27304 [fillcolor=white style=filled]
24106 [fillcolor=white style=filled]
15532 [fillcolor=white style=filled]
7981 [fillcolor=white style=filled]
16691 [fillcolor=white style=filled]
25014 [fillcolor=white style=filled]
20408 [fillcolor=white style=filled]
16445 [fillcolor=white style=filled]
20797 [fillcolor=white style=filled]
22466 [fillcolor=white style=filled]
20804 [fillcolor=white style=filled]
14662 [fillcolor=white style=filled]
27465 [fillcolor=white style=filled]
22859 [fillcolor=white style=filled]
15308 [fillcolor=white style=filled]
20430 [fillcolor=white style=filled]
11215 [fillcolor=white style=filled]
19279 [fillcolor=white style=filled]
25810 [fillcolor=white style=filled]
27731 [fillcolor=white style=filled]
16980 [fillcolor=white style=filled]
23124 [fillcolor=white style=filled]
25173 [fillcolor=white style=filled]
26070 [fillcolor=white style=filled]
984 [fillcolor=white style=filled]
27223 [fillcolor=white style=filled]
14940 [fillcolor=white style=filled]
26591 [fillcolor=white style=filled]
14048 [fillcolor=white style=filled]
5217 [fillcolor=white style=filled]
15456 [fillcolor=white style=filled]
19811 [fillcolor=white style=filled]
17895 [fillcolor=white style=filled]
16616 [fillcolor=white style=filled]
21865 [fillcolor=white style=filled]
25207 [fillcolor=white style=filled]
14059 [fillcolor=white style=filled]
15851 [fillcolor=white style=filled]
18797 [fillcolor=white style=filled]
25706 [fillcolor=white style=filled]
21487 [fillcolor=white style=filled]
14197 [fillcolor=white style=filled]
21879 [fillcolor=white style=filled]
16121 [fillcolor=white style=filled]
13820 [fillcolor=white style=filled]
-172 -> 1 [color=red penwidth=5.743317692019022 style=solid]
-83 -> 0 [color=green penwidth=0.4941800665357473 style=solid]
-129 -> 1 [color=green penwidth=0.5383793231321075 style=solid]
-41 -> 0 [color=green penwidth=0.6719504922884784 style=dotted]
-149 -> 0 [color=red penwidth=0.11597323632684221 style=solid]
-134 -> 984 [color=red penwidth=0.41184677474286757 style=dotted]
-99 -> 1 [color=red penwidth=0.8346006433284275 style=dotted]
-67 -> 1 [color=red penwidth=0.2002559195972582 style=solid]
-97 -> 1 [color=green penwidth=0.19306062836448323 style=dotted]
-61 -> 1 [color=red penwidth=1.6329544165604848 style=solid]
-91 -> 0 [color=red penwidth=2.7712052132492775 style=solid]
-119 -> 0 [color=green penwidth=1.204269265008013 style=solid]
-151 -> 984 [color=red penwidth=1.0477976602722632 style=dotted]
-120 -> 984 [color=green penwidth=0.5949446381787522 style=solid]
-27 -> 984 [color=red penwidth=1.5777896187464602 style=solid]
-180 -> 0 [color=green penwidth=0.5673629997138157 style=dotted]
-195 -> 1 [color=green penwidth=2.8166436726300517 style=solid]
-18 -> 0 [color=green penwidth=1.2275987607303411 style=solid]
-203 -> 1 [color=green penwidth=5.555369591653783 style=solid]
-108 -> 0 [color=red penwidth=0.40859513667582004 style=solid]
-208 -> 984 [color=green penwidth=0.448928127101083 style=solid]
-93 -> 1 [color=red penwidth=0.31776417175144367 style=solid]
-176 -> 0 [color=red penwidth=0.6153386774723707 style=dotted]
-92 -> 1 [color=red penwidth=0.6653716337823181 style=dotted]
-29 -> 984 [color=red penwidth=0.7175798443582428 style=dotted]
-119 -> 1 [color=green penwidth=0.35249739543232184 style=solid]
-63 -> 984 [color=red penwidth=1.6330186485323226 style=dotted]
-71 -> 1 [color=red penwidth=0.5672075104397757 style=solid]
-135 -> 0 [color=red penwidth=2.115941163016507 style=solid]
-127 -> 1 [color=green penwidth=1.001959409676868 style=solid]
-100 -> 1 [color=red penwidth=1.6514881599210054 style=dotted]
-90 -> 0 [color=green penwidth=0.7687962371375512 style=solid]
-57 -> 1 [color=red penwidth=0.34776737970690974 style=dotted]
-40 -> 0 [color=red penwidth=0.5842614929821736 style=solid]
-154 -> 0 [color=red penwidth=0.9149423671021907 style=solid]
-82 -> 984 [color=red penwidth=0.5421811626449331 style=dotted]
-35 -> 0 [color=green penwidth=3.288089491629903 style=solid]
-22 -> 984 [color=green penwidth=0.9081470330510999 style=solid]
-161 -> 984 [color=green penwidth=0.23136413671796632 style=dotted]
-124 -> 5217 [color=red penwidth=0.9744049805364708 style=dotted]
-70 -> 1 [color=red penwidth=0.3490857843299122 style=solid]
-177 -> 0 [color=green penwidth=0.20602936721475584 style=dotted]
-7 -> 1 [color=green penwidth=0.9647484390577352 style=solid]
-50 -> 5217 [color=red penwidth=0.5335223939595417 style=solid]
-136 -> 0 [color=red penwidth=1.6917618424207097 style=solid]
-137 -> 5532 [color=green penwidth=2.0146042530808925 style=solid]
-205 -> 1 [color=red penwidth=0.11454662412055612 style=dotted]
-21 -> 1 [color=red penwidth=0.8916648435666065 style=solid]
-102 -> 0 [color=green penwidth=0.781968319394136 style=solid]
-59 -> 984 [color=red penwidth=2.043614024837119 style=solid]
-28 -> 984 [color=green penwidth=0.5059079721924061 style=dotted]
-90 -> 1 [color=green penwidth=0.5911543421783991 style=solid]
-73 -> 1 [color=red penwidth=2.3858375468725286 style=solid]
-168 -> 5532 [color=green penwidth=2.0226237547342025 style=solid]
-42 -> 5532 [color=red penwidth=1.1378234868811992 style=solid]
-180 -> 5217 [color=red penwidth=1.2604345480184098 style=dotted]
-53 -> 1 [color=green penwidth=0.17642865386470935 style=dotted]
-98 -> 1 [color=red penwidth=0.43703507981400447 style=solid]
-87 -> 0 [color=green penwidth=0.871643565510184 style=solid]
-99 -> 984 [color=red penwidth=2.270251629718023 style=dotted]
-89 -> 5532 [color=green penwidth=0.19814178797205156 style=dotted]
-73 -> 5532 [color=red penwidth=1.750893123134226 style=solid]
-150 -> 0 [color=red penwidth=0.38061982410066764 style=solid]
-58 -> 5532 [color=red penwidth=0.2543697564591376 style=dotted]
-92 -> 5217 [color=green penwidth=1.5323383964154385 style=dotted]
-205 -> 0 [color=green penwidth=0.43071662984841086 style=dotted]
-34 -> 5217 [color=green penwidth=0.22267560638845468 style=solid]
-191 -> 5217 [color=green penwidth=0.17244604427638038 style=dotted]
-110 -> 7981 [color=red penwidth=0.3698460266149495 style=dotted]
-5 -> 0 [color=red penwidth=0.7860794298334286 style=solid]
-85 -> 0 [color=green penwidth=0.36059884837333966 style=solid]
-56 -> 0 [color=green penwidth=1.2280240457397529 style=solid]
-135 -> 1 [color=red penwidth=2.1434053592656044 style=solid]
-56 -> 7981 [color=red penwidth=0.1233751162380754 style=solid]
-157 -> 984 [color=green penwidth=1.5593079652343849 style=dotted]
-75 -> 5532 [color=red penwidth=0.1210580876549558 style=solid]
-97 -> 5217 [color=red penwidth=0.231157595139037 style=dotted]
-117 -> 0 [color=green penwidth=0.6863366211616307 style=dotted]
-79 -> 0 [color=green penwidth=3.150533527615296 style=solid]
-34 -> 1 [color=green penwidth=1.4494061375160803 style=solid]
-84 -> 1 [color=green penwidth=0.6869022063984399 style=solid]
-179 -> 8980 [color=red penwidth=0.11846307989884593 style=dotted]
-100 -> 5532 [color=green penwidth=0.7802526239599389 style=dotted]
-207 -> 5217 [color=green penwidth=0.8147389419025842 style=dotted]
-136 -> 984 [color=red penwidth=1.5430883106095554 style=dotted]
-12 -> 7981 [color=green penwidth=1.6682730237514694 style=solid]
-73 -> 8980 [color=red penwidth=0.9316300676155297 style=dotted]
-9 -> 5217 [color=green penwidth=0.4343622216918873 style=dotted]
-168 -> 5217 [color=red penwidth=0.2956405297214372 style=solid]
-62 -> 1 [color=red penwidth=0.49849365501258525 style=solid]
-208 -> 1 [color=red penwidth=4.571242171501138 style=solid]
-107 -> 7981 [color=green penwidth=0.24108011938170854 style=solid]
-190 -> 8980 [color=red penwidth=0.5534572029926588 style=solid]
-147 -> 5532 [color=green penwidth=5.084559245678321 style=dotted]
-202 -> 8980 [color=red penwidth=0.19660166844467314 style=dotted]
-177 -> 5217 [color=red penwidth=0.20504481962142157 style=dotted]
-73 -> 5217 [color=green penwidth=1.6038506775968433 style=solid]
-30 -> 7981 [color=green penwidth=0.8207350490551073 style=dotted]
-27 -> 11215 [color=red penwidth=1.077452572822535 style=solid]
-91 -> 7981 [color=red penwidth=1.8858844056799897 style=solid]
-9 -> 0 [color=green penwidth=0.38228699891274875 style=dotted]
-27 -> 7981 [color=red penwidth=0.4795394985631867 style=solid]
-205 -> 5532 [color=red penwidth=0.12031050106531505 style=dotted]
-32 -> 7981 [color=red penwidth=0.41907417206172337 style=dotted]
-167 -> 984 [color=red penwidth=0.42426569177003226 style=solid]
-47 -> 984 [color=red penwidth=0.2656562004174243 style=dotted]
-160 -> 0 [color=green penwidth=0.843418821701491 style=solid]
-4 -> 11215 [color=green penwidth=0.10891302231690814 style=dotted]
-32 -> 8980 [color=green penwidth=1.2307742915493796 style=dotted]
-85 -> 984 [color=red penwidth=0.25283967563620446 style=solid]
-183 -> 8980 [color=red penwidth=0.2223657531456496 style=solid]
-104 -> 11924 [color=red penwidth=0.7902708851884193 style=dotted]
11924 -> 5532 [color=green penwidth=0.204300444193096 style=dotted]
-45 -> 5217 [color=red penwidth=0.5467169647715524 style=solid]
8980 -> 1 [color=green penwidth=1.095962358020694 style=dotted]
-128 -> 0 [color=red penwidth=2.130004771772515 style=solid]
-104 -> 984 [color=green penwidth=0.8932655537802114 style=solid]
-179 -> 984 [color=red penwidth=0.33428861907233254 style=dotted]
-67 -> 11924 [color=green penwidth=1.072050949511887 style=solid]
-111 -> 7981 [color=red penwidth=0.42474210758457487 style=dotted]
-33 -> 12425 [color=red penwidth=0.39383244451879096 style=solid]
-106 -> 5217 [color=red penwidth=2.1368571351726158 style=dotted]
-94 -> 12425 [color=green penwidth=3.4388122420218012 style=solid]
-43 -> 0 [color=red penwidth=0.9673724906021111 style=solid]
-72 -> 7981 [color=red penwidth=0.9920359971343441 style=dotted]
-166 -> 5532 [color=red penwidth=0.9480279457690713 style=solid]
-95 -> 1 [color=green penwidth=0.42575793150343977 style=solid]
-112 -> 0 [color=green penwidth=0.8122607025824299 style=dotted]
-131 -> 12425 [color=green penwidth=2.5509714866370263 style=solid]
-103 -> 5532 [color=green penwidth=0.13294440694260246 style=dotted]
-191 -> 0 [color=green penwidth=0.4917605575255358 style=solid]
-40 -> 11215 [color=green penwidth=0.3031540013561765 style=dotted]
-178 -> 8980 [color=red penwidth=0.2057012831614003 style=dotted]
-74 -> 8980 [color=red penwidth=0.45107252660083075 style=dotted]
-201 -> 5532 [color=red penwidth=0.3369758911174311 style=solid]
-23 -> 11924 [color=green penwidth=2.460580712959092 style=solid]
-136 -> 11924 [color=red penwidth=0.3317278890394009 style=dotted]
-149 -> 8980 [color=red penwidth=0.41246632481088263 style=solid]
-117 -> 5217 [color=red penwidth=1.1963039096074057 style=dotted]
-200 -> 11215 [color=red penwidth=0.6821579160968799 style=solid]
-140 -> 11924 [color=green penwidth=0.10598167710119649 style=dotted]
-189 -> 13568 [color=green penwidth=0.8091478390150257 style=solid]
-80 -> 5217 [color=red penwidth=1.22839340385725 style=solid]
-100 -> 11924 [color=green penwidth=0.1827604410375524 style=solid]
-171 -> 11924 [color=green penwidth=0.7965430431206981 style=dotted]
-134 -> 13820 [color=green penwidth=0.24635606119661163 style=dotted]
13820 -> 984 [color=red penwidth=0.8019855160387666 style=dotted]
-122 -> 7981 [color=green penwidth=5.683952167999972 style=solid]
-64 -> 7981 [color=red penwidth=0.11342586265630868 style=dotted]
-108 -> 5532 [color=green penwidth=0.6814855080560794 style=solid]
-168 -> 11924 [color=red penwidth=0.31794091240931177 style=solid]
-87 -> 13568 [color=green penwidth=0.33079852388599806 style=dotted]
-80 -> 14048 [color=red penwidth=1.236391517018496 style=dotted]
14048 -> 5217 [color=red penwidth=0.20534562444203197 style=dotted]
-42 -> 13820 [color=red penwidth=0.9641064646693601 style=dotted]
-160 -> 984 [color=red penwidth=3.0491291308216275 style=dotted]
13820 -> 8980 [color=green penwidth=1.5419835007116536 style=dotted]
-135 -> 984 [color=red penwidth=0.8134053965855003 style=solid]
-170 -> 14197 [color=green penwidth=0.4361945708654762 style=solid]
-151 -> 12425 [color=green penwidth=0.8022719931390421 style=solid]
-147 -> 7981 [color=green penwidth=0.3240138495005052 style=solid]
-42 -> 11215 [color=red penwidth=3.2834504234182793 style=solid]
-194 -> 5217 [color=green penwidth=0.3771345406458222 style=solid]
-134 -> 5532 [color=red penwidth=0.262471405439861 style=solid]
-182 -> 7981 [color=green penwidth=0.6055060712123433 style=solid]
-44 -> 1 [color=green penwidth=0.5452390285080208 style=solid]
-157 -> 13820 [color=red penwidth=0.3744904177320403 style=dotted]
-9 -> 14471 [color=red penwidth=0.7533401252842982 style=solid]
14471 -> 0 [color=green penwidth=0.5602828702607854 style=dotted]
-59 -> 7981 [color=red penwidth=0.33716033154019065 style=solid]
-26 -> 7981 [color=red penwidth=0.8762988401900431 style=dotted]
-93 -> 7981 [color=red penwidth=1.0409160992816338 style=dotted]
-47 -> 14662 [color=green penwidth=0.9595498378179484 style=solid]
14662 -> 984 [color=green penwidth=0.19602062637139406 style=solid]
14197 -> 1 [color=red penwidth=0.2453507054599309 style=dotted]
-138 -> 14048 [color=green penwidth=1.2912363816055383 style=dotted]
-58 -> 13568 [color=green penwidth=2.777738506455038 style=dotted]
-99 -> 14197 [color=red penwidth=2.1064463701152376 style=solid]
-151 -> 5532 [color=red penwidth=1.138985952370225 style=solid]
-134 -> 14940 [color=red penwidth=1.8797290744310151 style=dotted]
14940 -> 984 [color=green penwidth=0.19749729098176694 style=solid]
-85 -> 11924 [color=red penwidth=0.19210930126073883 style=solid]
-58 -> 14048 [color=green penwidth=0.5588234346616684 style=solid]
-45 -> 5532 [color=red penwidth=0.3416461282752218 style=solid]
-98 -> 7981 [color=green penwidth=0.8668733573305284 style=dotted]
-105 -> 14197 [color=green penwidth=0.9838035979394704 style=solid]
-159 -> 13568 [color=green penwidth=0.7801444278591919 style=dotted]
-102 -> 13568 [color=green penwidth=2.1705536838069373 style=solid]
-4 -> 5532 [color=red penwidth=0.533797263491085 style=dotted]
-190 -> 12425 [color=green penwidth=0.777002579358677 style=solid]
-35 -> 5217 [color=red penwidth=0.23059257739376912 style=solid]
-32 -> 14471 [color=red penwidth=0.9036912269340515 style=dotted]
-124 -> 15456 [color=green penwidth=0.1478518621710731 style=dotted]
-150 -> 14197 [color=green penwidth=0.6292868185212361 style=dotted]
-82 -> 13820 [color=red penwidth=0.7132397067896382 style=dotted]
-133 -> 0 [color=red penwidth=2.5423997655463286 style=solid]
984 -> 5532 [color=green penwidth=1.6220493910321734 style=solid]
13568 -> 15532 [color=red penwidth=1.5396238862513458 style=solid]
-157 -> 13568 [color=green penwidth=0.48001959268939165 style=dotted]
-48 -> 15532 [color=red penwidth=0.7669440652888622 style=solid]
-53 -> 14197 [color=green penwidth=5.321777534133409 style=solid]
-19 -> 14048 [color=green penwidth=0.2809868659382645 style=dotted]
-91 -> 5217 [color=green penwidth=4.380625249993761 style=dotted]
-172 -> 15456 [color=green penwidth=1.1014768063731897 style=dotted]
-2 -> 15851 [color=red penwidth=1.410164241335289 style=solid]
-78 -> 15456 [color=green penwidth=0.6394289455519848 style=dotted]
-180 -> 14471 [color=green penwidth=0.6915622736272377 style=solid]
-186 -> 14048 [color=red penwidth=3.837320547161198 style=solid]
-167 -> 14048 [color=green penwidth=0.6496394580539897 style=solid]
-101 -> 984 [color=red penwidth=0.22538765661625823 style=dotted]
-145 -> 14048 [color=red penwidth=0.44442512549848767 style=solid]
-128 -> 11924 [color=red penwidth=0.35223363624787696 style=dotted]
13568 -> 14626 [color=green penwidth=1.6358703421024345 style=solid]
-18 -> 15532 [color=green penwidth=0.14843904094092203 style=solid]
-66 -> 14059 [color=green penwidth=2.4422974833876125 style=solid]
-73 -> 16121 [color=red penwidth=1.3610582104797062 style=solid]
-72 -> 12425 [color=green penwidth=0.40063411441961994 style=dotted]
-103 -> 0 [color=green penwidth=2.0312744968612657 style=dotted]
-106 -> 16151 [color=red penwidth=0.21488820402849776 style=solid]
-40 -> 15308 [color=green penwidth=0.5204699326563211 style=solid]
-142 -> 14940 [color=green penwidth=0.9518577936768672 style=solid]
-44 -> 12425 [color=red penwidth=1.7134842440661762 style=dotted]
-43 -> 14197 [color=green penwidth=1.8189414737695342 style=dotted]
15308 -> 984 [color=green penwidth=0.42054867557583286 style=dotted]
14059 -> 8980 [color=red penwidth=0.6464937871649644 style=solid]
-89 -> 14662 [color=green penwidth=0.16479199001440153 style=solid]
14059 -> 14662 [color=red penwidth=1.2101511030754637 style=dotted]
-196 -> 5217 [color=green penwidth=0.1047823886811853 style=solid]
-47 -> 14626 [color=red penwidth=1.9989271393495107 style=dotted]
-73 -> 16445 [color=red penwidth=0.8116709756489126 style=dotted]
16445 -> 5217 [color=green penwidth=0.6963280687137324 style=solid]
-196 -> 16121 [color=red penwidth=1.5571738713006846 style=dotted]
-15 -> 14059 [color=red penwidth=0.4065916879168596 style=solid]
-182 -> 15456 [color=red penwidth=0.7008234908543993 style=dotted]
-14 -> 13568 [color=red penwidth=1.9172965734549998 style=solid]
-145 -> 16121 [color=green penwidth=0.9945914024099389 style=solid]
-202 -> 16616 [color=red penwidth=0.5028269143800864 style=dotted]
-103 -> 984 [color=red penwidth=2.9104406856940908 style=solid]
-62 -> 11924 [color=red penwidth=1.4315660612455678 style=solid]
-207 -> 16650 [color=green penwidth=1.1289753899577075 style=dotted]
16650 -> 5217 [color=red penwidth=3.5931779266087056 style=solid]
-27 -> 16691 [color=red penwidth=0.17670079955637574 style=solid]
-187 -> 11924 [color=green penwidth=0.11207145512471496 style=dotted]
-123 -> 14048 [color=green penwidth=0.8304626630213338 style=dotted]
-134 -> 15456 [color=green penwidth=2.3393548419218324 style=dotted]
-74 -> 14626 [color=red penwidth=3.1512892515520736 style=dotted]
-29 -> 16616 [color=red penwidth=1.514172536367982 style=dotted]
7981 -> 16650 [color=green penwidth=0.3084673156915849 style=solid]
-184 -> 14059 [color=green penwidth=1.1486338015911746 style=solid]
-172 -> 14197 [color=red penwidth=1.4309543210069342 style=dotted]
-29 -> 13820 [color=green penwidth=0.6522678749969364 style=dotted]
14471 -> 15308 [color=red penwidth=1.7879954116680143 style=solid]
-23 -> 15308 [color=red penwidth=0.5622655352506989 style=dotted]
-20 -> 15851 [color=red penwidth=1.0031095549455438 style=solid]
-73 -> 16151 [color=red penwidth=0.4881466013908037 style=solid]
14471 -> 14626 [color=red penwidth=1.278645562410003 style=solid]
-187 -> 1 [color=red penwidth=0.4741190202795077 style=dotted]
-153 -> 14626 [color=red penwidth=1.778179320004669 style=dotted]
-183 -> 984 [color=red penwidth=0.15598421949080216 style=dotted]
-32 -> 16151 [color=green penwidth=0.34375079008403625 style=dotted]
-28 -> 12425 [color=green penwidth=0.2489222205197916 style=dotted]
-145 -> 11924 [color=red penwidth=0.8797976279670984 style=solid]
-181 -> 14059 [color=green penwidth=0.4504023805955064 style=dotted]
-160 -> 16691 [color=red penwidth=1.6110542488099278 style=solid]
-159 -> 14940 [color=red penwidth=2.996438851640539 style=dotted]
-18 -> 16691 [color=green penwidth=0.21149337986191177 style=solid]
-170 -> 17552 [color=red penwidth=0.5919187794191395 style=solid]
-171 -> 14626 [color=green penwidth=0.23129654246646522 style=dotted]
-130 -> 14059 [color=green penwidth=1.0168518865166962 style=dotted]
-41 -> 11924 [color=green penwidth=0.4307786463757386 style=dotted]
14626 -> 16616 [color=green penwidth=2.817997813537156 style=solid]
-83 -> 14048 [color=red penwidth=0.7444638046636205 style=solid]
-66 -> 14471 [color=green penwidth=1.164429663361777 style=dotted]
-54 -> 0 [color=green penwidth=0.2127106384545222 style=dotted]
-203 -> 17552 [color=green penwidth=0.12661545486899858 style=solid]
8980 -> 16121 [color=green penwidth=0.9563598420365119 style=solid]
17895 -> 5532 [color=red penwidth=0.5067056121579081 style=dotted]
-33 -> 13820 [color=green penwidth=0.9030613681299208 style=solid]
-53 -> 13568 [color=red penwidth=0.17551464887198392 style=solid]
-177 -> 16691 [color=red penwidth=0.9068046719062879 style=solid]
-155 -> 12425 [color=green penwidth=0.42137336404953085 style=dotted]
-97 -> 14059 [color=green penwidth=0.5271409093211294 style=dotted]
-197 -> 14940 [color=red penwidth=0.7424573132841862 style=dotted]
-148 -> 16151 [color=green penwidth=0.3389638785321669 style=solid]
-34 -> 0 [color=red penwidth=0.24148218953949607 style=dotted]
16616 -> 16691 [color=red penwidth=0.477060536324013 style=solid]
-166 -> 1 [color=green penwidth=0.5933821628940643 style=dotted]
16691 -> 15532 [color=red penwidth=3.8415339987649797 style=solid]
-60 -> 13568 [color=red penwidth=2.94129493274915 style=solid]
-113 -> 16980 [color=green penwidth=0.7047788952092194 style=dotted]
-194 -> 14662 [color=green penwidth=2.8656089223413064 style=solid]
-32 -> 15308 [color=red penwidth=0.5161398170769975 style=dotted]
-60 -> 16121 [color=red penwidth=0.1029004484405811 style=dotted]
-168 -> 11215 [color=green penwidth=0.202018887363131 style=solid]
-155 -> 17895 [color=red penwidth=0.6737387151482358 style=dotted]
-185 -> 14471 [color=green penwidth=0.1795502149924149 style=solid]
-197 -> 16650 [color=red penwidth=2.3939666196419984 style=solid]
-37 -> 5217 [color=green penwidth=1.3073101224102521 style=solid]
-176 -> 15456 [color=green penwidth=1.0541887949130833 style=solid]
-37 -> 16650 [color=red penwidth=0.6061499442039491 style=dotted]
-189 -> 15851 [color=red penwidth=1.0271199659322763 style=solid]
-86 -> 15532 [color=green penwidth=0.3963223157473237 style=dotted]
-13 -> 984 [color=green penwidth=0.443231113119412 style=solid]
13568 -> 17895 [color=red penwidth=0.6251560981256883 style=dotted]
-203 -> 12425 [color=red penwidth=0.1993129651561859 style=solid]
-208 -> 16980 [color=red penwidth=0.22254409924655505 style=solid]
15851 -> 16980 [color=green penwidth=1.7825238297562362 style=solid]
-186 -> 14940 [color=red penwidth=0.5276721961465533 style=dotted]
-3 -> 12425 [color=green penwidth=0.43130803426432185 style=dotted]
-76 -> 12425 [color=green penwidth=0.11561258555149162 style=dotted]
-208 -> 18797 [color=red penwidth=0.946934687764227 style=solid]
18797 -> 16980 [color=green penwidth=0.6540849991151042 style=dotted]
-54 -> 15532 [color=red penwidth=0.25189940134518796 style=solid]
-45 -> 14197 [color=red penwidth=1.8181093429959387 style=dotted]
-182 -> 11215 [color=green penwidth=1.5198295165543088 style=solid]
-120 -> 14059 [color=red penwidth=1.492468364868444 style=solid]
-158 -> 14048 [color=red penwidth=1.3862297880816643 style=dotted]
-83 -> 16980 [color=red penwidth=0.6847196649698997 style=dotted]
-20 -> 5532 [color=green penwidth=0.14302877525492086 style=solid]
-84 -> 12425 [color=green penwidth=1.355683790122778 style=solid]
-64 -> 16650 [color=green penwidth=0.2404179321244129 style=solid]
-91 -> 984 [color=red penwidth=0.1877936347021094 style=dotted]
-3 -> 1 [color=green penwidth=0.29641824337031336 style=solid]
-76 -> 19112 [color=green penwidth=1.1467996627036474 style=solid]
19112 -> 12425 [color=red penwidth=2.132280522026745 style=dotted]
-13 -> 15308 [color=red penwidth=3.278729039608281 style=solid]
-184 -> 11924 [color=red penwidth=2.1762459626106625 style=dotted]
-114 -> 14940 [color=red penwidth=1.6832567588861713 style=dotted]
-98 -> 14197 [color=red penwidth=0.4601457418165702 style=solid]
-146 -> 5532 [color=green penwidth=0.22381495581197974 style=dotted]
-150 -> 16691 [color=red penwidth=1.5454216180114144 style=solid]
-203 -> 11215 [color=green penwidth=0.9833327341853252 style=dotted]
-130 -> 19279 [color=red penwidth=0.40970968406594044 style=solid]
19279 -> 14059 [color=green penwidth=4.415879837690407 style=solid]
7981 -> 12425 [color=red penwidth=0.20544620752041975 style=dotted]
-202 -> 14626 [color=red penwidth=1.1657050299360716 style=dotted]
-160 -> 15456 [color=green penwidth=1.833031868265212 style=dotted]
-15 -> 15308 [color=green penwidth=0.41386755733224134 style=solid]
-188 -> 16650 [color=green penwidth=0.664272368532758 style=solid]
-174 -> 16691 [color=green penwidth=0.16791157548596075 style=dotted]
-75 -> 17895 [color=red penwidth=0.2911339068958647 style=dotted]
14471 -> 17895 [color=red penwidth=0.2628374703613454 style=solid]
-149 -> 19112 [color=red penwidth=0.4569675708304567 style=solid]
-39 -> 7981 [color=red penwidth=1.869628160514552 style=solid]
-37 -> 14197 [color=red penwidth=4.124086581987372 style=dotted]
15456 -> 12425 [color=red penwidth=0.41451748768055197 style=dotted]
-130 -> 15532 [color=green penwidth=0.29091192491863194 style=dotted]
1 -> 15308 [color=green penwidth=0.252009773374685 style=dotted]
-191 -> 14197 [color=green penwidth=3.0297171141992467 style=dotted]
-175 -> 14471 [color=red penwidth=1.2994953712965296 style=solid]
-163 -> 5532 [color=green penwidth=1.4287499351148498 style=dotted]
-133 -> 13820 [color=green penwidth=0.899116147038778 style=solid]
-20 -> 984 [color=green penwidth=0.3040670813540694 style=solid]
-87 -> 19811 [color=red penwidth=0.22716013860194315 style=solid]
-36 -> 5532 [color=red penwidth=2.6533796248741672 style=solid]
-1 -> 14471 [color=red penwidth=0.2519521701110238 style=solid]
-56 -> 18797 [color=green penwidth=0.9266585998613674 style=dotted]
-206 -> 14197 [color=green penwidth=0.6268383172884879 style=dotted]
-99 -> 14048 [color=green penwidth=0.1502575349827736 style=dotted]
-101 -> 17552 [color=red penwidth=0.9088150918632575 style=dotted]
-99 -> 14626 [color=green penwidth=0.44018844703088655 style=solid]
-17 -> 14940 [color=red penwidth=1.080589809405328 style=solid]
-89 -> 15456 [color=green penwidth=0.5810606443065647 style=dotted]
-111 -> 16980 [color=red penwidth=0.2172797136047377 style=dotted]
-16 -> 13820 [color=red penwidth=0.7301561172161115 style=dotted]
-135 -> 13820 [color=red penwidth=0.1948839452844302 style=solid]
-154 -> 15308 [color=red penwidth=1.5394210838545845 style=solid]
-20 -> 13568 [color=red penwidth=0.9731205479198968 style=solid]
-76 -> 14471 [color=green penwidth=1.0893213498964487 style=solid]
19112 -> 14471 [color=red penwidth=1.5902159869835675 style=dotted]
-130 -> 15308 [color=red penwidth=2.180774499504082 style=dotted]
-173 -> 16980 [color=red penwidth=1.5210808652618315 style=solid]
-11 -> 20408 [color=red penwidth=0.16872327416196164 style=dotted]
-64 -> 5532 [color=green penwidth=0.32499582130130555 style=solid]
-90 -> 20430 [color=green penwidth=0.1945823487546511 style=dotted]
-72 -> 17552 [color=green penwidth=0.29363768555762715 style=dotted]
-7 -> 18797 [color=red penwidth=0.3962507016144037 style=dotted]
12425 -> 15308 [color=red penwidth=0.26785199992479775 style=dotted]
-16 -> 20408 [color=red penwidth=1.7249354141683058 style=dotted]
-108 -> 14940 [color=green penwidth=1.7210895441749 style=dotted]
19811 -> 15532 [color=red penwidth=2.0796023323773962 style=solid]
17552 -> 16151 [color=red penwidth=1.6964032750546347 style=dotted]
-133 -> 12425 [color=red penwidth=0.3451571580661583 style=solid]
-35 -> 14626 [color=red penwidth=0.5552329859870276 style=solid]
-69 -> 18797 [color=green penwidth=4.250431936750786 style=dotted]
-77 -> 19279 [color=red penwidth=0.11358222472324192 style=solid]
-97 -> 13568 [color=red penwidth=0.2976115727207903 style=solid]
-73 -> 15851 [color=red penwidth=0.44634748635879584 style=solid]
11215 -> 20797 [color=red penwidth=0.19742597991447908 style=dotted]
20797 -> 984 [color=green penwidth=0.1221548672432311 style=solid]
-42 -> 20804 [color=green penwidth=0.3919678491011247 style=solid]
-41 -> 13568 [color=red penwidth=2.22229582697286 style=dotted]
-189 -> 16650 [color=red penwidth=1.0902144209891307 style=solid]
-54 -> 15456 [color=green penwidth=0.1491112446685413 style=dotted]
-107 -> 15532 [color=green penwidth=0.9633181512046075 style=solid]
-28 -> 15456 [color=red penwidth=0.7297215494828229 style=dotted]
-72 -> 1 [color=red penwidth=0.10358115716015873 style=solid]
5532 -> 5217 [color=green penwidth=0.44941422675542975 style=dotted]
19279 -> 14048 [color=green penwidth=0.750518372897559 style=dotted]
-126 -> 16121 [color=red penwidth=0.4072744681288266 style=dotted]
-41 -> 12425 [color=red penwidth=0.4505386635223323 style=dotted]
-126 -> 16691 [color=red penwidth=0.45121591223681157 style=solid]
-204 -> 14059 [color=green penwidth=0.32222511894257333 style=solid]
-97 -> 16980 [color=red penwidth=3.972944267744315 style=dotted]
-26 -> 20797 [color=green penwidth=0.9353994759548844 style=solid]
-206 -> 13568 [color=green penwidth=0.7986491858842467 style=solid]
-76 -> 21257 [color=red penwidth=0.2763719810695574 style=solid]
-38 -> 5532 [color=red penwidth=0.8535926113676737 style=solid]
-104 -> 16980 [color=green penwidth=1.2693700513268436 style=dotted]
-147 -> 14048 [color=red penwidth=0.4084855091046562 style=solid]
14059 -> 16616 [color=green penwidth=0.9009221823149254 style=solid]
19279 -> 17552 [color=green penwidth=0.36362103891365327 style=dotted]
-47 -> 14940 [color=green penwidth=0.5274325460068038 style=solid]
-86 -> 15456 [color=red penwidth=1.98120102558097 style=solid]
-181 -> 19112 [color=red penwidth=5.42434708802013 style=solid]
-17 -> 984 [color=red penwidth=1.538253601401049 style=solid]
-147 -> 15308 [color=red penwidth=0.5197893447514522 style=solid]
-43 -> 14471 [color=green penwidth=0.33012448433391733 style=solid]
-79 -> 21487 [color=red penwidth=1.3985128068540524 style=dotted]
21487 -> 0 [color=red penwidth=1.066423079652477 style=solid]
-92 -> 16151 [color=red penwidth=0.4404036559894303 style=dotted]
-77 -> 0 [color=green penwidth=1.1076108838866747 style=solid]
-204 -> 16691 [color=red penwidth=2.891660289388886 style=solid]
-46 -> 7981 [color=red penwidth=0.5168843263804705 style=dotted]
19112 -> 14059 [color=red penwidth=1.8988954114495937 style=dotted]
-176 -> 14940 [color=green penwidth=0.5200906280311771 style=dotted]
-196 -> 16151 [color=green penwidth=0.14583861409726956 style=solid]
-31 -> 13568 [color=red penwidth=0.1001367707519647 style=solid]
21257 -> 984 [color=red penwidth=0.696822788881503 style=solid]
21257 -> 16691 [color=green penwidth=0.31042965550101054 style=solid]
21657 -> 12425 [color=red penwidth=0.2088508967619947 style=solid]
-7 -> 21257 [color=green penwidth=1.0990356979584266 style=dotted]
-141 -> 20804 [color=green penwidth=0.2025168244654955 style=solid]
-179 -> 17895 [color=red penwidth=0.23104559446622527 style=solid]
-25 -> 15456 [color=green penwidth=1.7760469586468752 style=dotted]
-31 -> 5217 [color=red penwidth=2.9008693112021082 style=dotted]
-20 -> 12425 [color=green penwidth=1.6880101640897878 style=dotted]
13820 -> 17895 [color=red penwidth=0.8619620889751479 style=dotted]
-196 -> 21756 [color=red penwidth=1.1319929032695961 style=dotted]
21756 -> 16121 [color=red penwidth=0.7335042388153769 style=solid]
-61 -> 11924 [color=red penwidth=0.45944149965091086 style=solid]
-20 -> 21768 [color=red penwidth=1.3141859363784127 style=dotted]
-189 -> 14059 [color=red penwidth=0.5989722541038799 style=dotted]
-169 -> 16121 [color=green penwidth=1.3606081877531286 style=solid]
-9 -> 20430 [color=green penwidth=2.100958852473461 style=dotted]
-140 -> 14471 [color=red penwidth=0.4626771674155299 style=solid]
-194 -> 20408 [color=red penwidth=0.20578312717539463 style=solid]
-78 -> 20804 [color=red penwidth=0.49469078418060375 style=solid]
-163 -> 19279 [color=red penwidth=1.9338873718068212 style=solid]
-181 -> 21865 [color=red penwidth=0.17073205183893253 style=solid]
21865 -> 19112 [color=red penwidth=1.4900135715534457 style=dotted]
-8 -> 21879 [color=green penwidth=0.22884278911601444 style=solid]
21879 -> 1 [color=green penwidth=0.21191715429545582 style=dotted]
-172 -> 16121 [color=green penwidth=0.6836510920500999 style=dotted]
-5 -> 14940 [color=red penwidth=0.4541772493260947 style=solid]
-142 -> 16616 [color=green penwidth=2.6210857425963496 style=solid]
-11 -> 21257 [color=red penwidth=1.673081225249775 style=solid]
-195 -> 0 [color=green penwidth=5.344967277259441 style=dotted]
-11 -> 14626 [color=red penwidth=0.22201174574718033 style=solid]
-181 -> 22028 [color=red penwidth=0.2235712494015663 style=dotted]
22028 -> 14059 [color=red penwidth=0.13134296286606922 style=dotted]
-131 -> 13568 [color=red penwidth=0.21957594518334625 style=solid]
-182 -> 984 [color=green penwidth=1.0006158580886388 style=solid]
-189 -> 12425 [color=green penwidth=0.7225071916379968 style=solid]
-102 -> 20804 [color=green penwidth=0.22163800034460548 style=solid]
-157 -> 15532 [color=green penwidth=3.5095166145153107 style=dotted]
-158 -> 18797 [color=green penwidth=1.0445460988973163 style=solid]
-47 -> 14059 [color=green penwidth=1.2562217400345475 style=solid]
22028 -> 19811 [color=red penwidth=0.8140857825685573 style=dotted]
-185 -> 16445 [color=green penwidth=1.511310549334068 style=solid]
14940 -> 5532 [color=red penwidth=0.23858788284984164 style=solid]
-102 -> 20430 [color=red penwidth=0.7892216554788036 style=solid]
-78 -> 17895 [color=green penwidth=0.547705276400863 style=solid]
-18 -> 21879 [color=green penwidth=0.2118340738048187 style=solid]
-160 -> 21657 [color=red penwidth=0.949901559119069 style=solid]
-23 -> 17895 [color=green penwidth=0.1848525386949203 style=solid]
21865 -> 16980 [color=red penwidth=3.9998897536190365 style=dotted]
-128 -> 16151 [color=green penwidth=1.9555976408431825 style=dotted]
-127 -> 14471 [color=red penwidth=0.24328328809266994 style=dotted]
-90 -> 22466 [color=green penwidth=2.5691653585645335 style=solid]
22466 -> 20430 [color=green penwidth=0.9384052094286474 style=dotted]
-194 -> 21768 [color=green penwidth=0.9506038565651328 style=solid]
-139 -> 11924 [color=red penwidth=1.823880464150899 style=solid]
-11 -> 17895 [color=red penwidth=0.7543198162512162 style=dotted]
-179 -> 16650 [color=red penwidth=1.6705940698861188 style=dotted]
-10 -> 20804 [color=red penwidth=2.1492330883225246 style=solid]
-10 -> 14197 [color=red penwidth=0.3868006112736051 style=dotted]
-200 -> 14940 [color=red penwidth=0.24391961726255867 style=solid]
14197 -> 8980 [color=green penwidth=0.2565358673441239 style=dotted]
14197 -> 22028 [color=red penwidth=0.46225243064162347 style=solid]
-33 -> 22682 [color=red penwidth=0.867069992085064 style=dotted]
22682 -> 12425 [color=red penwidth=1.9459977539589184 style=dotted]
-202 -> 20804 [color=green penwidth=0.8794767473103375 style=solid]
-70 -> 20430 [color=red penwidth=0.22816794381453395 style=solid]
-31 -> 13820 [color=green penwidth=0.5958675767651336 style=dotted]
-135 -> 22682 [color=red penwidth=0.3986069923203317 style=solid]
-6 -> 11215 [color=green penwidth=1.3885031059108561 style=dotted]
-41 -> 14662 [color=red penwidth=0.5070488775252391 style=dotted]
-152 -> 14197 [color=green penwidth=0.4730731045586283 style=solid]
-113 -> 19811 [color=green penwidth=0.8396756109493945 style=solid]
-97 -> 14940 [color=green penwidth=0.4559289890717837 style=dotted]
14471 -> 22859 [color=green penwidth=0.1990023748496877 style=dotted]
22859 -> 17895 [color=green penwidth=1.1742140662270988 style=solid]
-14 -> 22028 [color=red penwidth=0.2108970511127246 style=dotted]
-60 -> 21756 [color=green penwidth=1.0956639800521406 style=solid]
-16 -> 22912 [color=red penwidth=1.7601044479274106 style=dotted]
22912 -> 20408 [color=red penwidth=0.25638492651992517 style=dotted]
-14 -> 16151 [color=green penwidth=3.2252206783668855 style=solid]
-145 -> 13568 [color=green penwidth=1.3945276565713156 style=solid]
-26 -> 22682 [color=red penwidth=0.17093381360822074 style=dotted]
16151 -> 21865 [color=green penwidth=0.4132085958802466 style=solid]
-143 -> 16616 [color=red penwidth=3.535497726857458 style=dotted]
-171 -> 0 [color=red penwidth=1.257491993369977 style=solid]
-91 -> 14048 [color=green penwidth=1.2994660926763253 style=solid]
22466 -> 0 [color=red penwidth=0.15942611580187493 style=solid]
21257 -> 20797 [color=green penwidth=0.42572185707638266 style=solid]
-168 -> 13568 [color=green penwidth=1.3522610611644055 style=dotted]
-53 -> 17895 [color=green penwidth=0.722034384049348 style=solid]
-5 -> 23124 [color=red penwidth=0.18044450112874139 style=dotted]
23124 -> 14940 [color=green penwidth=2.6468095403052536 style=solid]
-93 -> 15532 [color=green penwidth=0.7704920609527912 style=solid]
-207 -> 0 [color=red penwidth=2.7120278187706006 style=dotted]
-87 -> 16445 [color=red penwidth=0.44437403254448415 style=dotted]
-195 -> 20408 [color=green penwidth=1.4831542074282038 style=dotted]
-40 -> 11924 [color=red penwidth=0.6617630699306621 style=dotted]
-126 -> 984 [color=green penwidth=0.7459878728062603 style=dotted]
-15 -> 13568 [color=green penwidth=0.1780376925453016 style=dotted]
-176 -> 15851 [color=red penwidth=1.8577364705678585 style=dotted]
15851 -> 16691 [color=red penwidth=0.24327897828049624 style=dotted]
-141 -> 19279 [color=red penwidth=1.432215486169549 style=solid]
-6 -> 15851 [color=green penwidth=2.470358610434546 style=solid]
-160 -> 14940 [color=red penwidth=0.30869126318424034 style=dotted]
-148 -> 16121 [color=green penwidth=1.4868671373302513 style=solid]
-200 -> 13568 [color=green penwidth=0.9595584938385954 style=solid]
-60 -> 22682 [color=green penwidth=0.9850936518833172 style=dotted]
-71 -> 984 [color=green penwidth=0.695271773525165 style=dotted]
-116 -> 14626 [color=red penwidth=0.5831578832924986 style=solid]
-51 -> 14197 [color=red penwidth=0.6988707867667149 style=dotted]
-65 -> 19279 [color=red penwidth=0.47852432358397934 style=solid]
-54 -> 21865 [color=green penwidth=0.19260572182273566 style=dotted]
-140 -> 14048 [color=green penwidth=1.6298823393184962 style=dotted]
-70 -> 984 [color=red penwidth=1.1711990026916468 style=solid]
-5 -> 22682 [color=red penwidth=0.5558142711307834 style=dotted]
-72 -> 21879 [color=red penwidth=1.4969301706796365 style=solid]
-68 -> 7981 [color=red penwidth=0.1638761903496746 style=solid]
-109 -> 14662 [color=green penwidth=0.1878763080799401 style=dotted]
14048 -> 0 [color=red penwidth=1.5476334011986674 style=solid]
-178 -> 21756 [color=green penwidth=0.3043415928762652 style=solid]
-138 -> 1 [color=green penwidth=0.30732393748359266 style=solid]
-187 -> 22859 [color=red penwidth=0.6590037411155222 style=dotted]
-46 -> 21768 [color=green penwidth=0.4890397904149162 style=dotted]
20804 -> 16691 [color=red penwidth=0.48364885058083584 style=dotted]
-117 -> 16691 [color=green penwidth=0.41699527538671577 style=solid]
-114 -> 16151 [color=green penwidth=0.46669849982252665 style=solid]
-157 -> 21756 [color=green penwidth=0.341673373057956 style=solid]
-105 -> 23719 [color=green penwidth=1.4022941791734482 style=dotted]
-75 -> 14197 [color=green penwidth=0.6142113344784149 style=solid]
-84 -> 16445 [color=red penwidth=1.078617672949809 style=dotted]
-188 -> 984 [color=red penwidth=2.5218646178522905 style=solid]
-118 -> 21768 [color=red penwidth=0.6008902269605662 style=dotted]
-90 -> 14940 [color=green penwidth=0.2661004129699235 style=solid]
21257 -> 21657 [color=red penwidth=1.5737755737774164 style=dotted]
-110 -> 13568 [color=red penwidth=2.169724444479553 style=solid]
-193 -> 0 [color=green penwidth=0.2941969824617814 style=dotted]
-194 -> 14059 [color=green penwidth=0.16587240134663417 style=dotted]
-46 -> 16616 [color=red penwidth=0.6651454574137354 style=dotted]
-207 -> 8980 [color=red penwidth=0.25732208665138123 style=solid]
14059 -> 20408 [color=green penwidth=0.9158490081419629 style=solid]
-34 -> 23124 [color=red penwidth=0.41707905951420743 style=dotted]
16616 -> 16121 [color=green penwidth=0.7017569255037021 style=dotted]
15456 -> 23124 [color=red penwidth=3.206317502196666 style=solid]
-164 -> 23124 [color=red penwidth=0.12860626322625643 style=solid]
24106 -> 8980 [color=green penwidth=0.30166362581456896 style=solid]
-53 -> 20430 [color=green penwidth=1.2229662524945173 style=dotted]
22028 -> 22466 [color=red penwidth=1.0163823594483536 style=solid]
-52 -> 21865 [color=green penwidth=2.5990816768591563 style=solid]
-85 -> 20408 [color=red penwidth=0.7647907197946789 style=dotted]
-8 -> 984 [color=red penwidth=1.2407261455206846 style=dotted]
-167 -> 20797 [color=red penwidth=2.0094492679984954 style=dotted]
-105 -> 22912 [color=red penwidth=1.0326244721111546 style=solid]
-90 -> 24228 [color=red penwidth=1.9244432083684668 style=solid]
24228 -> 20430 [color=green penwidth=0.3009465973594625 style=solid]
19112 -> 11924 [color=green penwidth=0.2085354895168075 style=dotted]
22912 -> 16121 [color=green penwidth=0.22647306580294987 style=solid]
-155 -> 23124 [color=green penwidth=0.14738333753496352 style=dotted]
-164 -> 16445 [color=green penwidth=0.25523341508249775 style=dotted]
-42 -> 14940 [color=red penwidth=3.1459095662565613 style=solid]
-130 -> 11924 [color=red penwidth=0.2496269089482892 style=solid]
23719 -> 20804 [color=red penwidth=2.3725102152436324 style=dotted]
-25 -> 16650 [color=red penwidth=1.2134889567001694 style=solid]
-199 -> 11215 [color=red penwidth=0.7399594123203285 style=solid]
-12 -> 14048 [color=red penwidth=0.6646073479594997 style=dotted]
-156 -> 21865 [color=green penwidth=2.490874868404163 style=dotted]
-163 -> 20797 [color=green penwidth=0.10418749166895985 style=solid]
-130 -> 16121 [color=green penwidth=1.737061229408806 style=solid]
-41 -> 19112 [color=red penwidth=3.208796414746476 style=solid]
21657 -> 22466 [color=red penwidth=0.21732187821420806 style=dotted]
-103 -> 15532 [color=green penwidth=0.494389491151483 style=solid]
-165 -> 18797 [color=red penwidth=0.1607823335282048 style=dotted]
-42 -> 19811 [color=green penwidth=0.6778399150000904 style=dotted]
-12 -> 22859 [color=red penwidth=0.864805359832432 style=dotted]
-31 -> 19112 [color=red penwidth=1.2346272234859008 style=dotted]
-5 -> 24228 [color=red penwidth=0.6103750743678933 style=solid]
-110 -> 14662 [color=green penwidth=0.438984830804398 style=solid]
-160 -> 21756 [color=red penwidth=0.5512329261367385 style=solid]
-169 -> 21768 [color=red penwidth=0.37379748002932756 style=dotted]
-189 -> 24727 [color=green penwidth=1.5690199823935997 style=dotted]
24727 -> 15851 [color=green penwidth=0.1522075137506363 style=dotted]
-11 -> 24106 [color=red penwidth=0.30030935163553274 style=solid]
-148 -> 24739 [color=red penwidth=0.10643276477596868 style=dotted]
24739 -> 16121 [color=red penwidth=1.130760203654471 style=dotted]
-34 -> 22859 [color=green penwidth=1.1137928359744005 style=dotted]
-104 -> 16691 [color=green penwidth=1.5635535359720487 style=solid]
-187 -> 8980 [color=green penwidth=1.8226823433682224 style=solid]
-162 -> 11215 [color=red penwidth=1.3159888229120664 style=solid]
-117 -> 22466 [color=green penwidth=0.4270548530161916 style=solid]
-201 -> 7981 [color=red penwidth=1.266331924461844 style=solid]
-106 -> 1 [color=green penwidth=0.5611180576786763 style=solid]
-56 -> 1 [color=red penwidth=0.8401528339036444 style=dotted]
22912 -> 18797 [color=red penwidth=0.5391188623555931 style=solid]
-122 -> 22466 [color=red penwidth=0.8728512613159284 style=solid]
-104 -> 17552 [color=green penwidth=0.5522382299074163 style=solid]
-17 -> 22912 [color=red penwidth=1.4681661503606351 style=dotted]
-79 -> 21879 [color=red penwidth=0.3147951840094979 style=dotted]
21768 -> 16616 [color=red penwidth=0.9698802604768982 style=solid]
-127 -> 12425 [color=green penwidth=0.5742483101246526 style=dotted]
-113 -> 25014 [color=green penwidth=0.9123768854789326 style=dotted]
13568 -> 17552 [color=green penwidth=1.3274728743842337 style=solid]
-115 -> 0 [color=red penwidth=1.3281455887338243 style=dotted]
-148 -> 16616 [color=red penwidth=0.4983469734678766 style=dotted]
22028 -> 25091 [color=green penwidth=0.28234903459844374 style=solid]
25091 -> 14059 [color=red penwidth=0.25908768943832344 style=dotted]
8980 -> 15851 [color=green penwidth=0.18073349597343835 style=solid]
20408 -> 22466 [color=green penwidth=1.4145748127381008 style=solid]
21657 -> 20797 [color=red penwidth=0.6877518425425317 style=solid]
-72 -> 25173 [color=green penwidth=0.5301659596897424 style=solid]
25173 -> 21879 [color=red penwidth=0.37910012237221447 style=dotted]
-44 -> 13820 [color=red penwidth=0.7713591627306424 style=solid]
-75 -> 22912 [color=red penwidth=0.3677750357267563 style=dotted]
-134 -> 25207 [color=green penwidth=0.13715331426172642 style=solid]
25207 -> 15456 [color=green penwidth=0.6150507713267325 style=dotted]
-100 -> 15851 [color=red penwidth=0.2741890874449347 style=dotted]
-204 -> 14662 [color=green penwidth=0.2007525331043421 style=solid]
-44 -> 23719 [color=green penwidth=0.46053182386116986 style=solid]
-60 -> 25014 [color=green penwidth=0.9679847877060224 style=solid]
-161 -> 16151 [color=red penwidth=1.3619387177113778 style=dotted]
-174 -> 21879 [color=red penwidth=0.17845283763612155 style=solid]
0 -> 23124 [color=green penwidth=1.0525901725600875 style=solid]
-52 -> 21257 [color=green penwidth=3.7027902393154473 style=solid]
-26 -> 16616 [color=red penwidth=1.1879960812508374 style=solid]
-140 -> 21865 [color=red penwidth=1.8640144741246254 style=solid]
-121 -> 12425 [color=green penwidth=2.347019222808384 style=dotted]
-84 -> 19112 [color=red penwidth=0.5168519607779836 style=dotted]
-131 -> 14197 [color=green penwidth=0.8614090966499625 style=solid]
-25 -> 21657 [color=red penwidth=0.5649414456439948 style=dotted]
-97 -> 13820 [color=red penwidth=1.9555382048928145 style=solid]
-191 -> 21879 [color=red penwidth=0.582592531128975 style=dotted]
-94 -> 20797 [color=green penwidth=1.5675169611354016 style=dotted]
25173 -> 14048 [color=green penwidth=0.979980352616613 style=solid]
25207 -> 23719 [color=red penwidth=0.6488158411877099 style=solid]
-154 -> 21756 [color=green penwidth=1.1280167007825508 style=dotted]
-87 -> 17895 [color=green penwidth=0.5197515601950053 style=solid]
17895 -> 16650 [color=red penwidth=0.24790000009213645 style=solid]
16445 -> 21879 [color=green penwidth=1.4349578237198795 style=solid]
-203 -> 13820 [color=red penwidth=0.8943793381103846 style=solid]
-194 -> 17895 [color=red penwidth=0.2762768775270502 style=solid]
13568 -> 11924 [color=green penwidth=0.5358598818545481 style=dotted]
-207 -> 15532 [color=green penwidth=0.308678553601478 style=dotted]
-43 -> 25014 [color=green penwidth=0.5867614551881343 style=solid]
-69 -> 16650 [color=green penwidth=0.5521887038166173 style=solid]
-180 -> 25706 [color=green penwidth=1.1951311894503729 style=solid]
-70 -> 20797 [color=green penwidth=1.4449347310511897 style=solid]
-30 -> 14048 [color=green penwidth=0.14601372589596978 style=dotted]
-12 -> 0 [color=green penwidth=0.16043754518774334 style=dotted]
-12 -> 25173 [color=red penwidth=0.6070298914680726 style=dotted]
-140 -> 25810 [color=green penwidth=0.14042079952026382 style=dotted]
25810 -> 21865 [color=green penwidth=0.9752889775122995 style=dotted]
25091 -> 23719 [color=red penwidth=0.48719741000993144 style=dotted]
-93 -> 23124 [color=green penwidth=0.21463714570970488 style=dotted]
15308 -> 21487 [color=red penwidth=4.6224477126240915 style=dotted]
-35 -> 21768 [color=green penwidth=0.6278390022919936 style=solid]
-168 -> 18797 [color=red penwidth=0.626011807213027 style=solid]
-105 -> 22028 [color=red penwidth=1.530816476423367 style=solid]
-92 -> 14662 [color=red penwidth=2.9254754495585042 style=solid]
-137 -> 24228 [color=red penwidth=0.382523333058279 style=solid]
-144 -> 17552 [color=red penwidth=2.0464791167181806 style=dotted]
26002 -> 0 [color=green penwidth=2.0956002669132796 style=solid]
-18 -> 16445 [color=green penwidth=0.3505125604079873 style=solid]
25207 -> 16121 [color=red penwidth=0.6106628440044632 style=solid]
-5 -> 17552 [color=green penwidth=0.9299307865886307 style=solid]
-196 -> 19112 [color=red penwidth=0.36088307396204855 style=solid]
-72 -> 26070 [color=red penwidth=0.6836383099522918 style=solid]
26070 -> 17552 [color=green penwidth=0.2665638319863929 style=solid]
-106 -> 25706 [color=green penwidth=0.31824746735977183 style=solid]
22859 -> 21657 [color=green penwidth=0.31837008854451754 style=solid]
-90 -> 14662 [color=red penwidth=0.9179082122115637 style=solid]
-78 -> 7981 [color=red penwidth=2.11667497593409 style=solid]
-51 -> 15851 [color=red penwidth=0.5466123905492657 style=solid]
-168 -> 15851 [color=green penwidth=0.8836078684610266 style=dotted]
-190 -> 15308 [color=green penwidth=1.7247651488751146 style=solid]
-17 -> 11215 [color=green penwidth=0.5205823409061413 style=dotted]
-146 -> 19811 [color=red penwidth=0.9026731160945234 style=dotted]
-16 -> 14059 [color=red penwidth=0.4113197303163736 style=dotted]
-151 -> 14626 [color=red penwidth=0.8736386593705424 style=solid]
-74 -> 13568 [color=red penwidth=1.7888448357109377 style=dotted]
-74 -> 5217 [color=green penwidth=0.11213001759363443 style=solid]
-9 -> 13820 [color=red penwidth=1.339403582571822 style=solid]
-132 -> 25706 [color=red penwidth=2.1744412815880745 style=dotted]
13568 -> 25706 [color=red penwidth=0.4402230526005704 style=solid]
-124 -> 26013 [color=green penwidth=2.886369323113494 style=solid]
-152 -> 14059 [color=red penwidth=1.235117581552072 style=solid]
-142 -> 18797 [color=red penwidth=0.7585343783393936 style=dotted]
-35 -> 21756 [color=green penwidth=1.6353576190533614 style=solid]
-29 -> 23124 [color=green penwidth=2.0905116049241235 style=solid]
-44 -> 21879 [color=green penwidth=0.255484345738464 style=solid]
-52 -> 22028 [color=green penwidth=1.0586451846298197 style=dotted]