-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhykker_matrix.kicad_sch
12974 lines (12707 loc) · 499 KB
/
hykker_matrix.kicad_sch
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
(kicad_sch (version 20211123) (generator eeschema)
(uuid 085b011c-a011-4e8d-bde0-6b1fa0e6558c)
(paper "User" 440.004 250.012)
(title_block
(title "Keyboard / LED backlight matrix")
(date "2023-02-27")
(company "Sebastian \"swiftgeek\" Grzywna")
(comment 1 "Mechanical keyboard marketed as \"Hykker X Range 2017\"")
(comment 3 "Reverse Engineered RE-K70-BYK800 (WIP)")
)
(lib_symbols
(symbol "Device:D_Small_Filled" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at -1.27 2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "D_Small_Filled" (id 1) (at -3.81 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "diode" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Diode, small symbol, filled shape" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_Small_Filled_0_1"
(polyline
(pts
(xy -0.762 -1.016)
(xy -0.762 1.016)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.762 0)
(xy 0.762 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.016)
(xy -0.762 0)
(xy 0.762 1.016)
(xy 0.762 -1.016)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "D_Small_Filled_1_1"
(pin passive line (at -2.54 0 0) (length 1.778)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 0 180) (length 1.778)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:Q_NPN_BEC" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "Q" (id 0) (at 5.08 1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Q_NPN_BEC" (id 1) (at 5.08 -1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 5.08 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "transistor NPN" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "NPN transistor, base/emitter/collector" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Q_NPN_BEC_0_1"
(polyline
(pts
(xy 0.635 0.635)
(xy 2.54 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.635 -0.635)
(xy 2.54 -2.54)
(xy 2.54 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.635 1.905)
(xy 0.635 -1.905)
(xy 0.635 -1.905)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -1.778)
(xy 1.778 -1.27)
(xy 2.286 -2.286)
(xy 1.27 -1.778)
(xy 1.27 -1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(circle (center 1.27 0) (radius 2.8194)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "Q_NPN_BEC_1_1"
(pin input line (at -5.08 0 0) (length 5.715)
(name "B" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -5.08 90) (length 2.54)
(name "E" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "C" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_Small_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Switch:SW_Push_LED" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (id 0) (at 0.635 5.715 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SW_Push_LED" (id 1) (at 0 -3.175 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 7.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 7.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "switch normally-open pushbutton push-button LED" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Push button switch with LED, generic" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SW_Push_LED_0_0"
(polyline
(pts
(xy -3.81 -1.905)
(xy -2.54 -0.635)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 -1.905)
(xy -1.27 -0.635)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 0)
(xy 2.54 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.635 1.27)
(xy -0.635 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.81 -1.27)
(xy -3.81 -1.905)
(xy -3.175 -1.905)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 -1.27)
(xy -2.54 -1.905)
(xy -1.905 -1.905)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.635 0)
(xy 1.27 1.27)
(xy 1.27 -1.27)
(xy -0.635 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "SW_Push_LED_0_1"
(circle (center -2.032 2.54) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 3.81)
(xy 0 5.588)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 3.81)
(xy -2.54 3.81)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 2.032 2.54) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -5.08 2.54 0) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 2.54 180) (length 2.54)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+5V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 77.47 39.37) (diameter 0) (color 0 0 0 0)
(uuid 020fbf02-5ba5-4d80-a7c1-29346b60e706)
)
(junction (at 172.72 102.87) (diameter 0) (color 0 0 0 0)
(uuid 03b2b900-67bf-46a1-9b6e-3bea21b39a53)
)
(junction (at 365.76 144.78) (diameter 0) (color 0 0 0 0)
(uuid 03cbe3f4-509a-4a2d-a3e9-25152c398a76)
)
(junction (at 340.36 66.04) (diameter 0) (color 0 0 0 0)
(uuid 04cae6b3-3ecc-4daa-884a-21ae43c6da74)
)
(junction (at 267.97 77.47) (diameter 0) (color 0 0 0 0)
(uuid 05060bd8-4e19-4a67-9fee-dcf5b3c5c6b7)
)
(junction (at 248.92 153.67) (diameter 0) (color 0 0 0 0)
(uuid 064d30b6-b613-4d60-8090-7caa89844135)
)
(junction (at 167.64 172.72) (diameter 0) (color 0 0 0 0)
(uuid 06a756d9-be6f-4c0e-9c88-afbaa5764a70)
)
(junction (at 205.74 45.72) (diameter 0) (color 0 0 0 0)
(uuid 06e51d9b-331b-4085-9b00-d104a6120f3a)
)
(junction (at 320.04 96.52) (diameter 0) (color 0 0 0 0)
(uuid 071f15e2-a134-44c4-9845-1f1ea4f2fbc0)
)
(junction (at 248.92 102.87) (diameter 0) (color 0 0 0 0)
(uuid 072e81bd-abb2-465f-a154-32aa7776dbf6)
)
(junction (at 248.92 39.37) (diameter 0) (color 0 0 0 0)
(uuid 0791f63e-7870-40ed-9be1-ab8712e3784a)
)
(junction (at 187.96 167.64) (diameter 0) (color 0 0 0 0)
(uuid 08f6047a-458b-442a-a1bc-1449a109ad54)
)
(junction (at 226.06 116.84) (diameter 0) (color 0 0 0 0)
(uuid 0dc0c360-a8ba-4157-b90a-199086a0e6c8)
)
(junction (at 377.19 96.52) (diameter 0) (color 0 0 0 0)
(uuid 0ed336ed-2d02-4357-92cb-7510691d2168)
)
(junction (at 58.42 128.27) (diameter 0) (color 0 0 0 0)
(uuid 0f52e382-979d-4de6-b015-ed248edd0111)
)
(junction (at 134.62 128.27) (diameter 0) (color 0 0 0 0)
(uuid 127a8d78-671f-4add-9b07-be0ae47a8df8)
)
(junction (at 320.04 71.12) (diameter 0) (color 0 0 0 0)
(uuid 129491e0-0f04-480d-829c-cbe7701eb825)
)
(junction (at 359.41 91.44) (diameter 0) (color 0 0 0 0)
(uuid 1336c3d5-dccf-4c6a-a6a9-307c2c0d17ab)
)
(junction (at 153.67 179.07) (diameter 0) (color 0 0 0 0)
(uuid 14e26947-5729-41a6-9ff2-a2c1e9e1f4e5)
)
(junction (at 224.79 71.12) (diameter 0) (color 0 0 0 0)
(uuid 15465f48-431a-41b9-8aa3-f430736563ad)
)
(junction (at 344.17 52.07) (diameter 0) (color 0 0 0 0)
(uuid 15471251-e6b1-421e-91dc-d1e60fab32c7)
)
(junction (at 232.41 170.18) (diameter 0) (color 0 0 0 0)
(uuid 157b0536-0fe1-43fe-a1d1-5d86e54ce086)
)
(junction (at 111.76 167.64) (diameter 0) (color 0 0 0 0)
(uuid 159f0915-e041-4ef5-9b8a-5a5012ddba3b)
)
(junction (at 281.94 71.12) (diameter 0) (color 0 0 0 0)
(uuid 1713b039-114f-4e2b-8bee-b8ac6d6c2103)
)
(junction (at 92.71 66.04) (diameter 0) (color 0 0 0 0)
(uuid 17790642-432e-405f-bf3c-354d878cf9cc)
)
(junction (at 99.06 43.18) (diameter 0) (color 0 0 0 0)
(uuid 17a9721a-7123-43bc-869a-c11e739d657e)
)
(junction (at 306.07 77.47) (diameter 0) (color 0 0 0 0)
(uuid 17acc5a8-7f22-4211-98d4-9e15eec04731)
)
(junction (at 229.87 52.07) (diameter 0) (color 0 0 0 0)
(uuid 1862a0e1-ca8b-4a2c-8cd5-38624b24eb87)
)
(junction (at 207.01 116.84) (diameter 0) (color 0 0 0 0)
(uuid 18669375-8cda-4a7d-b92d-06c563323bbd)
)
(junction (at 186.69 147.32) (diameter 0) (color 0 0 0 0)
(uuid 18879c7b-d968-44ea-8f58-c72ead46093e)
)
(junction (at 210.82 128.27) (diameter 0) (color 0 0 0 0)
(uuid 192bf90f-3162-4e53-9472-5954ec1c7d30)
)
(junction (at 110.49 45.72) (diameter 0) (color 0 0 0 0)
(uuid 19bee756-38db-4151-b3f5-107b802f319b)
)
(junction (at 321.31 142.24) (diameter 0) (color 0 0 0 0)
(uuid 1a1d52e9-5c9c-4985-9cbf-e4935089b788)
)
(junction (at 134.62 52.07) (diameter 0) (color 0 0 0 0)
(uuid 1a36ef09-9a8d-4b42-85c3-c49f124c632d)
)
(junction (at 153.67 77.47) (diameter 0) (color 0 0 0 0)
(uuid 1b6ffdb0-8a87-42e3-b116-cfc41cbb19b8)
)
(junction (at 58.42 77.47) (diameter 0) (color 0 0 0 0)
(uuid 1bebcb86-813c-48cd-9e60-b85a47ffb658)
)
(junction (at 91.44 121.92) (diameter 0) (color 0 0 0 0)
(uuid 1d9febaf-e625-4227-a679-3a0a52a1fc1c)
)
(junction (at 358.14 45.72) (diameter 0) (color 0 0 0 0)
(uuid 1e28789e-1762-43d2-8299-5d313821d40c)
)
(junction (at 137.16 144.78) (diameter 0) (color 0 0 0 0)
(uuid 1f544612-1c19-4c84-a422-3078ec33cfbe)
)
(junction (at 205.74 71.12) (diameter 0) (color 0 0 0 0)
(uuid 1f566ee4-18f9-43bf-a4ae-6bb5b3ccf5c5)
)
(junction (at 77.47 128.27) (diameter 0) (color 0 0 0 0)
(uuid 1f8c48cb-428c-418d-81c2-494362b541ea)
)
(junction (at 92.71 142.24) (diameter 0) (color 0 0 0 0)
(uuid 1faa3f37-e88c-4909-a6ea-6fd0e061056e)
)
(junction (at 262.89 147.32) (diameter 0) (color 0 0 0 0)
(uuid 207f3ff0-4c96-4d66-a4b2-f3cce1a38271)
)
(junction (at 363.22 77.47) (diameter 0) (color 0 0 0 0)
(uuid 20a692b3-3be4-4170-8784-55f97e5bece6)
)
(junction (at 92.71 91.44) (diameter 0) (color 0 0 0 0)
(uuid 2104b6ff-8b1c-4f50-bd04-cbb39d514ec4)
)
(junction (at 96.52 77.47) (diameter 0) (color 0 0 0 0)
(uuid 23f43783-5cd3-4661-a282-fa85d9631ed6)
)
(junction (at 111.76 142.24) (diameter 0) (color 0 0 0 0)
(uuid 256b92bd-96f8-4b0c-a10e-07b9a993c234)
)
(junction (at 308.61 119.38) (diameter 0) (color 0 0 0 0)
(uuid 2590e0e4-cb11-425f-9645-f4fdc14d885e)
)
(junction (at 245.11 66.04) (diameter 0) (color 0 0 0 0)
(uuid 25ac3b2a-43e5-42c7-8cce-e8e9b4028416)
)
(junction (at 245.11 116.84) (diameter 0) (color 0 0 0 0)
(uuid 27096785-732d-4ee3-92ce-cd8952f1f3b9)
)
(junction (at 396.24 71.12) (diameter 0) (color 0 0 0 0)
(uuid 2711f1c0-567d-4ca5-b029-6cf3c5dc2a5a)
)
(junction (at 226.06 193.04) (diameter 0) (color 0 0 0 0)
(uuid 2777e989-4228-4aed-92ca-88b8a917df69)
)
(junction (at 302.26 167.64) (diameter 0) (color 0 0 0 0)
(uuid 27c787c7-d9a8-4b13-ba69-7d614882c852)
)
(junction (at 229.87 179.07) (diameter 0) (color 0 0 0 0)
(uuid 28a1483a-10f6-44bb-bd49-6f632939dfce)
)
(junction (at 300.99 96.52) (diameter 0) (color 0 0 0 0)
(uuid 2971343e-a085-4a09-a19a-44eea5fbff1f)
)
(junction (at 191.77 102.87) (diameter 0) (color 0 0 0 0)
(uuid 2c9bcc50-1e24-4db1-9814-113cdc97f261)
)
(junction (at 148.59 147.32) (diameter 0) (color 0 0 0 0)
(uuid 2ce09799-41fc-4d8c-924f-247cc8397a01)
)
(junction (at 262.89 121.92) (diameter 0) (color 0 0 0 0)
(uuid 2d13892d-e318-4f47-ac73-d4de428a8091)
)
(junction (at 264.16 91.44) (diameter 0) (color 0 0 0 0)
(uuid 2d922a6c-9f01-4fce-9dd0-4c50c9d825be)
)
(junction (at 397.51 116.84) (diameter 0) (color 0 0 0 0)
(uuid 2dc4cf5e-92d0-43e7-b9e4-d74cffe07221)
)
(junction (at 129.54 71.12) (diameter 0) (color 0 0 0 0)
(uuid 2de0fce4-7794-4d43-9269-afe087684401)
)
(junction (at 264.16 167.64) (diameter 0) (color 0 0 0 0)
(uuid 2e6f9d72-b128-4b88-babb-a40e5696e50c)
)
(junction (at 365.76 68.58) (diameter 0) (color 0 0 0 0)
(uuid 2eb46f8e-ea01-428f-a1a6-488888c45ed9)
)
(junction (at 344.17 179.07) (diameter 0) (color 0 0 0 0)
(uuid 301be117-f038-4f49-b83b-6131447c289f)
)
(junction (at 363.22 39.37) (diameter 0) (color 0 0 0 0)
(uuid 304866d1-f0b9-44a8-a366-2e0787640f1e)
)
(junction (at 73.66 142.24) (diameter 0) (color 0 0 0 0)
(uuid 30a5332a-4d72-4b68-92ca-f760246acfc2)
)
(junction (at 365.76 170.18) (diameter 0) (color 0 0 0 0)
(uuid 3236a4b5-316f-461d-87ba-4993d1f04c9d)
)
(junction (at 270.51 93.98) (diameter 0) (color 0 0 0 0)
(uuid 32751775-b56e-450a-a217-05dc95e0d585)
)
(junction (at 77.47 52.07) (diameter 0) (color 0 0 0 0)
(uuid 345c5f6a-b63d-4aeb-9cff-501034214854)
)
(junction (at 210.82 77.47) (diameter 0) (color 0 0 0 0)
(uuid 35200e35-4f05-428d-9041-af4b10633e8d)
)
(junction (at 270.51 119.38) (diameter 0) (color 0 0 0 0)
(uuid 367f3381-06ee-4f7c-92c5-4b40a1b968d8)
)
(junction (at 363.22 179.07) (diameter 0) (color 0 0 0 0)
(uuid 3707512e-a8d6-4f85-b5a0-ebfb9a742ba0)
)
(junction (at 224.79 96.52) (diameter 0) (color 0 0 0 0)
(uuid 38d2ef40-d367-4662-8732-2952beb0861f)
)
(junction (at 167.64 147.32) (diameter 0) (color 0 0 0 0)
(uuid 3b272c71-9376-4857-9985-6abbf9726e82)
)
(junction (at 384.81 43.18) (diameter 0) (color 0 0 0 0)
(uuid 3ca1294e-579c-4406-b06d-eb7de3151bb1)
)
(junction (at 213.36 144.78) (diameter 0) (color 0 0 0 0)
(uuid 3ccb59f7-b084-4955-bee6-90c5c2a69024)
)
(junction (at 262.89 71.12) (diameter 0) (color 0 0 0 0)
(uuid 3f988570-0a5d-4873-9305-ea3c7db77b3e)
)
(junction (at 207.01 66.04) (diameter 0) (color 0 0 0 0)
(uuid 40d7466e-81ab-43e5-8555-04bd34dcabb8)
)
(junction (at 346.71 170.18) (diameter 0) (color 0 0 0 0)
(uuid 4202b4d8-491f-43b0-a354-5bc1c3b168cf)
)
(junction (at 287.02 77.47) (diameter 0) (color 0 0 0 0)
(uuid 422b2976-7ef6-4a0d-9ace-903748e34974)
)
(junction (at 377.19 71.12) (diameter 0) (color 0 0 0 0)
(uuid 432d79a5-072a-4812-a1a4-925e6ac83cea)
)
(junction (at 148.59 45.72) (diameter 0) (color 0 0 0 0)
(uuid 438dfa30-95e2-41d4-982d-756cb7aaab01)
)
(junction (at 130.81 116.84) (diameter 0) (color 0 0 0 0)
(uuid 43f8c74e-de86-4cd2-8058-6cb28fd0dbe9)
)
(junction (at 72.39 71.12) (diameter 0) (color 0 0 0 0)
(uuid 4440aa50-ecc6-4ac6-9caa-3c0fcef40f58)
)
(junction (at 358.14 71.12) (diameter 0) (color 0 0 0 0)
(uuid 444bb52a-5ada-4953-8c00-7c666d3913bd)
)
(junction (at 172.72 153.67) (diameter 0) (color 0 0 0 0)
(uuid 4478882d-5e21-4c05-816d-676cdac3a527)
)
(junction (at 396.24 96.52) (diameter 0) (color 0 0 0 0)
(uuid 44e0fe86-93ae-44ce-af42-87baab124010)
)
(junction (at 308.61 68.58) (diameter 0) (color 0 0 0 0)
(uuid 44f0882d-3f93-40b9-8991-9a3d75c19b01)
)
(junction (at 118.11 68.58) (diameter 0) (color 0 0 0 0)
(uuid 450c669f-ce38-4480-ab34-8a389a92ba41)
)
(junction (at 232.41 119.38) (diameter 0) (color 0 0 0 0)
(uuid 4529f2e8-8d9b-43ce-89ec-1a15f4b7d0d3)
)
(junction (at 118.11 43.18) (diameter 0) (color 0 0 0 0)
(uuid 454dfba8-16ac-4e8f-8818-7ab612c869b9)
)
(junction (at 60.96 144.78) (diameter 0) (color 0 0 0 0)
(uuid 45bd4589-921f-469a-be37-ec510f6cdfe9)
)
(junction (at 344.17 39.37) (diameter 0) (color 0 0 0 0)
(uuid 45fa3eb1-6940-4120-a507-eff814e2e629)
)
(junction (at 232.41 43.18) (diameter 0) (color 0 0 0 0)
(uuid 470328ba-e23e-4b6c-9ce3-e44af3212f4b)
)
(junction (at 287.02 102.87) (diameter 0) (color 0 0 0 0)
(uuid 474b5162-40a6-455e-be41-920f016a7782)
)
(junction (at 148.59 121.92) (diameter 0) (color 0 0 0 0)
(uuid 4753fa8a-6322-4735-8c45-1627180e1f9a)
)
(junction (at 397.51 193.04) (diameter 0) (color 0 0 0 0)
(uuid 478281e7-3475-4b6e-b5a1-7f67e6b017e4)
)
(junction (at 264.16 116.84) (diameter 0) (color 0 0 0 0)
(uuid 49119e50-81cf-4844-97c4-f9994acaaf2a)
)
(junction (at 110.49 147.32) (diameter 0) (color 0 0 0 0)
(uuid 49e8823e-d6e2-4405-9198-0819d6a049fa)
)
(junction (at 397.51 66.04) (diameter 0) (color 0 0 0 0)
(uuid 4a9013ea-9dd0-490a-a1dc-52ec786bf287)
)
(junction (at 149.86 66.04) (diameter 0) (color 0 0 0 0)
(uuid 4b3693c5-7cb1-4723-986e-8064b8478d26)
)
(junction (at 378.46 193.04) (diameter 0) (color 0 0 0 0)
(uuid 4b54adfd-1aa1-4ea6-9be8-dfc794d1711c)
)
(junction (at 302.26 193.04) (diameter 0) (color 0 0 0 0)
(uuid 4bf30759-f588-491e-82b3-10f1e30140a8)
)
(junction (at 60.96 119.38) (diameter 0) (color 0 0 0 0)
(uuid 4c04fda9-b0a2-4923-a3cf-c7675929ec32)
)
(junction (at 226.06 142.24) (diameter 0) (color 0 0 0 0)
(uuid 4c738d98-1136-4cdf-97fe-c3a09d7ce540)
)
(junction (at 287.02 39.37) (diameter 0) (color 0 0 0 0)
(uuid 4d13ad17-5429-4671-ab3d-d69dcdd480a7)
)
(junction (at 118.11 93.98) (diameter 0) (color 0 0 0 0)
(uuid 4d21b669-595b-4e49-995c-38880e057b89)
)
(junction (at 213.36 170.18) (diameter 0) (color 0 0 0 0)
(uuid 4e544596-d658-46e5-9617-6ef41667fd91)
)
(junction (at 92.71 193.04) (diameter 0) (color 0 0 0 0)
(uuid 4ead1e3e-f463-46f1-819e-6046c77abf4a)
)
(junction (at 187.96 142.24) (diameter 0) (color 0 0 0 0)
(uuid 4f1c0843-6ac6-4351-8c0e-9b7cc2521a4a)
)
(junction (at 110.49 71.12) (diameter 0) (color 0 0 0 0)
(uuid 4f6b6625-bd14-44cb-b19a-db107e4e9989)
)
(junction (at 320.04 121.92) (diameter 0) (color 0 0 0 0)
(uuid 5063e5e0-8ded-402e-842d-bd29eab60043)
)
(junction (at 300.99 147.32) (diameter 0) (color 0 0 0 0)
(uuid 5097790f-8425-40a7-83d1-edb6aae9e3a4)
)
(junction (at 80.01 170.18) (diameter 0) (color 0 0 0 0)
(uuid 51007fc5-1b41-4e4e-83f8-44282d8609c6)
)
(junction (at 153.67 128.27) (diameter 0) (color 0 0 0 0)
(uuid 51b44994-91d1-4c0d-a58c-9edba852b432)
)
(junction (at 248.92 52.07) (diameter 0) (color 0 0 0 0)
(uuid 52ddde2c-402a-405f-8cb2-ca73f3885db9)
)
(junction (at 111.76 91.44) (diameter 0) (color 0 0 0 0)
(uuid 54ff5320-46c8-4430-8a40-5732cdb5932b)
)
(junction (at 245.11 193.04) (diameter 0) (color 0 0 0 0)
(uuid 56b152b2-2872-46ab-bd4c-7739c20ff31e)
)
(junction (at 96.52 128.27) (diameter 0) (color 0 0 0 0)
(uuid 578290d5-6e15-4e16-b294-ace5857d3b23)
)
(junction (at 232.41 144.78) (diameter 0) (color 0 0 0 0)
(uuid 57939757-66d7-4b1f-9cce-c9d5341ee728)
)
(junction (at 153.67 102.87) (diameter 0) (color 0 0 0 0)
(uuid 57971c22-77dd-4b0f-8cd8-673efe388895)
)
(junction (at 382.27 52.07) (diameter 0) (color 0 0 0 0)
(uuid 57979f06-be75-4ad1-af03-0c5a18e05aa7)
)
(junction (at 77.47 102.87) (diameter 0) (color 0 0 0 0)
(uuid 57b28eea-653f-407f-a6d9-3240081fe3e1)
)
(junction (at 283.21 66.04) (diameter 0) (color 0 0 0 0)
(uuid 5849fd45-35f3-44be-98a9-daab0f341bc4)
)
(junction (at 129.54 45.72) (diameter 0) (color 0 0 0 0)
(uuid 5945100d-5b08-45b5-8d9c-e893c3d964e2)
)
(junction (at 262.89 96.52) (diameter 0) (color 0 0 0 0)
(uuid 59a41e46-4f6e-4c26-bb69-e41552b346fe)
)
(junction (at 118.11 144.78) (diameter 0) (color 0 0 0 0)
(uuid 59c7c0c3-1cbe-459b-b61d-61566b1c5ef5)
)
(junction (at 153.67 153.67) (diameter 0) (color 0 0 0 0)
(uuid 5a12e8c3-b691-40f9-ac0b-6741b4d58125)
)
(junction (at 226.06 91.44) (diameter 0) (color 0 0 0 0)
(uuid 5a5c0fb7-d01c-4925-aed8-7e8c93556c0d)
)
(junction (at 377.19 45.72) (diameter 0) (color 0 0 0 0)
(uuid 5b4f7501-e5be-408d-bb27-3e0f12b43367)
)
(junction (at 167.64 96.52) (diameter 0) (color 0 0 0 0)
(uuid 5ba18c15-148b-44f6-aa98-f67d442a815d)
)
(junction (at 58.42 153.67) (diameter 0) (color 0 0 0 0)
(uuid 5d586e55-78f3-4a3e-aa10-6edb0c5865a0)
)
(junction (at 148.59 71.12) (diameter 0) (color 0 0 0 0)
(uuid 5d83aa95-1866-4251-8fdd-b035c65c3b5f)
)
(junction (at 129.54 147.32) (diameter 0) (color 0 0 0 0)
(uuid 5e9a64d1-62e3-4d69-aa1b-0e0137c011c2)
)
(junction (at 243.84 172.72) (diameter 0) (color 0 0 0 0)
(uuid 5eb8d3ca-c1b1-46bf-b074-c8faf6f7b8b6)
)
(junction (at 289.56 43.18) (diameter 0) (color 0 0 0 0)
(uuid 5f12526d-5024-498c-80f3-4ad2166db56e)
)
(junction (at 363.22 153.67) (diameter 0) (color 0 0 0 0)
(uuid 5f6f25be-afe8-43cf-bf8e-036679eba5a4)
)
(junction (at 80.01 68.58) (diameter 0) (color 0 0 0 0)
(uuid 60b24f66-2a33-454c-a81e-0055b64d0046)
)
(junction (at 378.46 66.04) (diameter 0) (color 0 0 0 0)
(uuid 60d8b938-7fc9-4751-8ace-0ddf98ba101d)
)
(junction (at 167.64 45.72) (diameter 0) (color 0 0 0 0)
(uuid 614d2436-1974-4005-9964-2b70ef24c3b1)
)
(junction (at 72.39 172.72) (diameter 0) (color 0 0 0 0)
(uuid 61fdc836-d903-4975-88fc-bdbb1759ead0)
)
(junction (at 91.44 45.72) (diameter 0) (color 0 0 0 0)
(uuid 621230bd-e88a-4eaf-827f-05e968e4582c)
)
(junction (at 175.26 93.98) (diameter 0) (color 0 0 0 0)
(uuid 625dda37-3546-4f7e-bd93-65db0a086aa7)
)
(junction (at 58.42 39.37) (diameter 0) (color 0 0 0 0)
(uuid 63899d22-be8f-46af-9253-4c3012f96520)
)
(junction (at 72.39 121.92) (diameter 0) (color 0 0 0 0)
(uuid 66174e17-6eaf-40a3-a3c6-a4230571f53c)
)
(junction (at 251.46 170.18) (diameter 0) (color 0 0 0 0)
(uuid 66eb872f-ec37-4e04-8e39-1e89743279c5)
)
(junction (at 248.92 77.47) (diameter 0) (color 0 0 0 0)
(uuid 67f06ade-98ef-4141-9626-d7c79319eab5)
)
(junction (at 134.62 102.87) (diameter 0) (color 0 0 0 0)
(uuid 68f1af05-cc6f-4d79-8e41-a94c3d1ab2a4)
)
(junction (at 346.71 93.98) (diameter 0) (color 0 0 0 0)
(uuid 6a27b349-f4a3-46d7-8dcc-427d9eba188a)
)
(junction (at 130.81 91.44) (diameter 0) (color 0 0 0 0)
(uuid 6a981869-c8fd-4a0d-ab7b-edf9cd614f32)
)
(junction (at 382.27 102.87) (diameter 0) (color 0 0 0 0)
(uuid 6aef7851-6e94-403e-8773-be0eeb598b5e)
)
(junction (at 267.97 52.07) (diameter 0) (color 0 0 0 0)
(uuid 6b017a1a-e9e6-4529-b872-1f2d15614110)
)
(junction (at 99.06 119.38) (diameter 0) (color 0 0 0 0)
(uuid 6bd10f80-3e61-4d5d-a305-373c982bcb79)
)
(junction (at 110.49 121.92) (diameter 0) (color 0 0 0 0)
(uuid 6c31acdf-3f50-41db-9e67-4119e320b612)
)
(junction (at 110.49 96.52) (diameter 0) (color 0 0 0 0)
(uuid 6e56a027-bfc9-4ab8-bd6d-2b54d37dd6b6)
)
(junction (at 382.27 77.47) (diameter 0) (color 0 0 0 0)
(uuid 6f7dfcef-216b-4e33-b28b-a8d2bbec2e8d)
)
(junction (at 149.86 116.84) (diameter 0) (color 0 0 0 0)
(uuid 6f8ff0ac-9856-4f87-8cb4-a48226ab35a5)
)
(junction (at 243.84 45.72) (diameter 0) (color 0 0 0 0)
(uuid 6fea4d5a-1808-4b12-9b89-5dcaad55b5d2)
)
(junction (at 168.91 91.44) (diameter 0) (color 0 0 0 0)
(uuid 71b07c56-7adb-4d51-acd1-f559c795da1b)
)
(junction (at 111.76 116.84) (diameter 0) (color 0 0 0 0)
(uuid 7221a9d9-b7e1-4a90-a9ee-08da4edb495e)
)
(junction (at 415.29 172.72) (diameter 0) (color 0 0 0 0)
(uuid 738d0d7f-6dc6-4eda-af97-6f760304c6ea)
)
(junction (at 289.56 93.98) (diameter 0) (color 0 0 0 0)
(uuid 74d70e7b-0ea0-4f33-9356-f50cd9dd7d22)
)
(junction (at 289.56 68.58) (diameter 0) (color 0 0 0 0)
(uuid 752a7343-d73c-4360-8098-b99da1c2701d)
)
(junction (at 403.86 170.18) (diameter 0) (color 0 0 0 0)
(uuid 7556248a-012b-4a68-af33-a2da0f65eac0)
)
(junction (at 248.92 179.07) (diameter 0) (color 0 0 0 0)
(uuid 7556e00f-f835-442c-84e4-5d660ecd6d11)
)
(junction (at 99.06 144.78) (diameter 0) (color 0 0 0 0)
(uuid 77ec7e2b-6b5a-4c8d-9b54-1d507d59b6e3)
)
(junction (at 153.67 39.37) (diameter 0) (color 0 0 0 0)
(uuid 787b002b-1918-429a-9cba-e310246af9a5)
)
(junction (at 262.89 172.72) (diameter 0) (color 0 0 0 0)
(uuid 789edfd4-c1b6-492a-9056-7a5ce1c40c7d)
)
(junction (at 91.44 96.52) (diameter 0) (color 0 0 0 0)
(uuid 790db452-d5db-4661-8391-3bfa70d03003)
)
(junction (at 287.02 153.67) (diameter 0) (color 0 0 0 0)
(uuid 7935e90f-b93d-4958-9da0-237806ef797d)
)
(junction (at 245.11 142.24) (diameter 0) (color 0 0 0 0)
(uuid 79ab7581-5778-4b3e-89ca-19a912e7b2cc)
)
(junction (at 267.97 102.87) (diameter 0) (color 0 0 0 0)
(uuid 7a802978-0aab-4b67-a450-7bd45af7336c)
)
(junction (at 287.02 179.07) (diameter 0) (color 0 0 0 0)
(uuid 7b522f57-9899-4e93-a033-ab70f66b1c56)
)
(junction (at 384.81 170.18) (diameter 0) (color 0 0 0 0)
(uuid 7c55403e-01c4-4b78-8495-bf0b709869a9)
)
(junction (at 137.16 119.38) (diameter 0) (color 0 0 0 0)
(uuid 7ca39cc9-0841-4678-b46a-acd4a048ba7a)
)
(junction (at 382.27 39.37) (diameter 0) (color 0 0 0 0)
(uuid 7cfc3ea9-5f02-485f-9291-8f87d7d6f629)
)
(junction (at 168.91 66.04) (diameter 0) (color 0 0 0 0)
(uuid 7e04ac90-4377-456a-92e3-0074fb8d909e)
)
(junction (at 77.47 179.07) (diameter 0) (color 0 0 0 0)
(uuid 7e2dfe83-fd39-41fd-84c7-efdce5238096)
)
(junction (at 187.96 116.84) (diameter 0) (color 0 0 0 0)
(uuid 7e93c75b-a5ac-4f8e-948f-2bb29ece8316)
)
(junction (at 302.26 116.84) (diameter 0) (color 0 0 0 0)
(uuid 7eddd36d-501a-425c-91fa-3496a5153303)
)
(junction (at 58.42 102.87) (diameter 0) (color 0 0 0 0)
(uuid 7fb41fa8-66d1-4031-8347-2d5582d1b761)
)
(junction (at 99.06 93.98) (diameter 0) (color 0 0 0 0)
(uuid 806e6ac2-8df8-46f1-99b4-97b87f1c2d86)
)
(junction (at 156.21 170.18) (diameter 0) (color 0 0 0 0)
(uuid 8075d662-ffd3-478b-926a-1552fec2ff0a)
)
(junction (at 148.59 96.52) (diameter 0) (color 0 0 0 0)
(uuid 82b2182b-6279-4db6-831b-6be2862188f5)
)
(junction (at 210.82 39.37) (diameter 0) (color 0 0 0 0)
(uuid 833c69d4-bf9c-4692-9199-c08ed8a1fa20)
)
(junction (at 77.47 77.47) (diameter 0) (color 0 0 0 0)
(uuid 83f41d80-b1eb-4e31-b5c5-29742df113a2)
)
(junction (at 115.57 153.67) (diameter 0) (color 0 0 0 0)
(uuid 84215144-cd2a-4b8c-b867-534852c83c26)
)
(junction (at 396.24 45.72) (diameter 0) (color 0 0 0 0)
(uuid 8458652d-d858-468c-9dcb-87c50bf36335)
)
(junction (at 194.31 144.78) (diameter 0) (color 0 0 0 0)
(uuid 862c6e7a-cc60-4546-a8f4-8d94ea45b240)
)
(junction (at 130.81 142.24) (diameter 0) (color 0 0 0 0)
(uuid 87d0fcc7-962b-4215-863f-ead557dfa52a)
)
(junction (at 325.12 52.07) (diameter 0) (color 0 0 0 0)
(uuid 87d1e5a3-3a53-4075-948b-a12f322fe9f3)
)
(junction (at 96.52 153.67) (diameter 0) (color 0 0 0 0)
(uuid 8816ca0e-d623-4e28-bb5a-700cabb4008d)
)
(junction (at 91.44 71.12) (diameter 0) (color 0 0 0 0)
(uuid 889d1a67-0b1b-4380-9660-9c5d3cea6c6d)
)
(junction (at 382.27 179.07) (diameter 0) (color 0 0 0 0)
(uuid 89267c10-3502-46ce-a604-04ade7b38373)
)
(junction (at 281.94 96.52) (diameter 0) (color 0 0 0 0)
(uuid 89e60230-e1a1-4d40-ae63-9709f60cf6fc)
)
(junction (at 172.72 128.27) (diameter 0) (color 0 0 0 0)
(uuid 8a0cd1a3-02c0-4dbb-8a53-3887988fa4cd)
)
(junction (at 175.26 68.58) (diameter 0) (color 0 0 0 0)
(uuid 8a9a9dfe-7cbb-4ffe-8881-5f22b181ac3f)