forked from Unified-Daughterboard/UDB-S
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathudb-s.kicad_pcb
6629 lines (6611 loc) · 468 KB
/
udb-s.kicad_pcb
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_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6062)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" signal)
(2 "In2.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 0.2104) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.0152))
(layer "dielectric 2" (type "prepreg") (thickness 1.065) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.0152))
(layer "dielectric 3" (type "core") (thickness 0.2104) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(aux_axis_origin 115 95)
(grid_origin 111.499999 95)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "VBUS")
(net 3 "Net-(J1-CC1)")
(net 4 "unconnected-(J1-SBU1-PadA8)")
(net 5 "D+")
(net 6 "D-")
(net 7 "Net-(J1-CC2)")
(net 8 "unconnected-(J1-SBU2-PadB8)")
(net 9 "5V")
(net 10 "Net-(F1-Pad1)")
(footprint "marbastlib-various:mousebites_2.5mm" (layer "F.Cu")
(tstamp 0d27af71-da10-42cc-a236-7d0dcd8176e4)
(at 130.499999 99.25 90)
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at -4 -2.75 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a92bb161-0fc5-423a-bba1-d321a31e35c7)
)
(fp_text value "mousebites 2mm" (at 0.25 -1.5 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bc411758-3c50-4fd5-bc45-6d93d88f652d)
)
(fp_line (start -1.5 -2) (end -1 -2)
(stroke (width 0.08) (type solid)) (layer "Edge.Cuts") (tstamp 7df612ad-ecfd-43cf-97fa-e704d471f664))
(fp_line (start -1 2) (end -1.5 2)
(stroke (width 0.08) (type solid)) (layer "Edge.Cuts") (tstamp 7c7f1ddf-201c-498a-81d4-9fcf959e4025))
(fp_arc (start -2.5 3) (mid -2.207108 2.292895) (end -1.500003 2.000003)
(stroke (width 0.08) (type solid)) (layer "Edge.Cuts") (tstamp 3956b535-a1df-44ba-b6b1-8bec677b4ef2))
(fp_arc (start -1.5 -2) (mid -2.207105 -2.292892) (end -2.499997 -2.999997)
(stroke (width 0.08) (type solid)) (layer "Edge.Cuts") (tstamp 7b5798bd-bbd5-4e45-b806-3676ee387bd5))
(fp_arc (start -1 2) (mid -0.292895 2.292892) (end -0.000003 2.999997)
(stroke (width 0.08) (type solid)) (layer "Edge.Cuts") (tstamp aff251f4-5926-4d0e-9ac5-2354dd73005b))
(fp_arc (start 0 -3) (mid -0.292892 -2.292895) (end -0.999997 -2.000003)
(stroke (width 0.08) (type solid)) (layer "Edge.Cuts") (tstamp 0f4198c8-1df4-4720-868a-a4acd5964d0d))
(pad "" np_thru_hole circle (at -0.05 -1.85 90) (size 0.5 0.5) (drill 0.5) (layers "F&B.Cu" "*.Mask") (tstamp ab06ad3b-1297-4b89-bfb5-576f0d650255))
(pad "" np_thru_hole circle (at -0.05 -1.11 90) (size 0.5 0.5) (drill 0.5) (layers "F&B.Cu" "*.Mask") (tstamp 23eedcda-5560-4d29-8967-f36b56656e95))
(pad "" np_thru_hole circle (at -0.05 -0.37 90) (size 0.5 0.5) (drill 0.5) (layers "F&B.Cu" "*.Mask") (tstamp b3ceb681-9654-4c02-ac58-064f877465a6))
(pad "" np_thru_hole circle (at -0.05 0.37 90) (size 0.5 0.5) (drill 0.5) (layers "F&B.Cu" "*.Mask") (tstamp e1ea62d9-1ed4-4d78-b7dc-a78d967cc921))
(pad "" np_thru_hole circle (at -0.05 1.11 90) (size 0.5 0.5) (drill 0.5) (layers "F&B.Cu" "*.Mask") (tstamp f16a0d16-3f33-4bff-a0ca-e425dbedc74f))
(pad "" np_thru_hole circle (at -0.05 1.85 90) (size 0.5 0.5) (drill 0.5) (layers "F&B.Cu" "*.Mask") (tstamp 756b2f5b-2b09-4fb1-a74d-71c2d57f7ac4))
)
(footprint "marbastlib-various:mousebites_2.5mm" (layer "F.Cu")
(tstamp 13bd294c-7eaa-4042-a88b-47f2f97ef8d8)
(at 130.499999 90.75 -90)
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at -4 -2.75 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a92bb161-0fc5-423a-bba1-d321a31e35c7)
)
(fp_text value "mousebites 2mm" (at 0.25 -1.5 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bc411758-3c50-4fd5-bc45-6d93d88f652d)
)
(fp_line (start -1.5 -2) (end -1 -2)
(stroke (width 0.08) (type solid)) (layer "Edge.Cuts") (tstamp 7df612ad-ecfd-43cf-97fa-e704d471f664))
(fp_line (start -1 2) (end -1.5 2)
(stroke (width 0.08) (type solid)) (layer "Edge.Cuts") (tstamp 7c7f1ddf-201c-498a-81d4-9fcf959e4025))
(fp_arc (start -2.5 3) (mid -2.207108 2.292895) (end -1.500003 2.000003)
(stroke (width 0.08) (type solid)) (layer "Edge.Cuts") (tstamp 3956b535-a1df-44ba-b6b1-8bec677b4ef2))
(fp_arc (start -1.5 -2) (mid -2.207105 -2.292892) (end -2.499997 -2.999997)
(stroke (width 0.08) (type solid)) (layer "Edge.Cuts") (tstamp 7b5798bd-bbd5-4e45-b806-3676ee387bd5))
(fp_arc (start -1 2) (mid -0.292895 2.292892) (end -0.000003 2.999997)
(stroke (width 0.08) (type solid)) (layer "Edge.Cuts") (tstamp aff251f4-5926-4d0e-9ac5-2354dd73005b))
(fp_arc (start 0 -3) (mid -0.292892 -2.292895) (end -0.999997 -2.000003)
(stroke (width 0.08) (type solid)) (layer "Edge.Cuts") (tstamp 0f4198c8-1df4-4720-868a-a4acd5964d0d))
(pad "" np_thru_hole circle (at -0.05 -1.85 270) (size 0.5 0.5) (drill 0.5) (layers "*.Cu" "*.Mask") (tstamp ab06ad3b-1297-4b89-bfb5-576f0d650255))
(pad "" np_thru_hole circle (at -0.05 -1.11 270) (size 0.5 0.5) (drill 0.5) (layers "*.Cu" "*.Mask") (tstamp 23eedcda-5560-4d29-8967-f36b56656e95))
(pad "" np_thru_hole circle (at -0.05 -0.37 270) (size 0.5 0.5) (drill 0.5) (layers "*.Cu" "*.Mask") (tstamp b3ceb681-9654-4c02-ac58-064f877465a6))
(pad "" np_thru_hole circle (at -0.05 0.37 270) (size 0.5 0.5) (drill 0.5) (layers "*.Cu" "*.Mask") (tstamp e1ea62d9-1ed4-4d78-b7dc-a78d967cc921))
(pad "" np_thru_hole circle (at -0.05 1.11 270) (size 0.5 0.5) (drill 0.5) (layers "*.Cu" "*.Mask") (tstamp f16a0d16-3f33-4bff-a0ca-e425dbedc74f))
(pad "" np_thru_hole circle (at -0.05 1.85 270) (size 0.5 0.5) (drill 0.5) (layers "*.Cu" "*.Mask") (tstamp 756b2f5b-2b09-4fb1-a74d-71c2d57f7ac4))
)
(footprint "Inductor_SMD:L_0603_1608Metric" (layer "F.Cu")
(tstamp 200c05a0-0827-42d8-bbea-a512fbcd1d6f)
(at 131.249999 92.1 180)
(descr "Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "inductor")
(property "LCSC Part Number" "C96995")
(property "Manufacturer" "")
(property "Manufacturer Part Number" "")
(property "Package" "")
(property "Sheetfile" "udb-s.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Ferrite bead, small symbol")
(property "ki_keywords" "L ferrite bead inductor filter")
(path "/67403c02-8cc4-4a1a-8315-177fac348a7f")
(attr smd)
(fp_text reference "FB1" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dc27a70f-d336-4d5f-a0bb-5f06443966d2)
)
(fp_text value "100R @ 100MHz" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp af77b7cf-29b7-4362-891a-5086bedc71bf)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp f6695610-794a-450f-adb6-d02950b6fa75)
)
(fp_line (start -0.162779 -0.51) (end 0.162779 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d1debcf1-9f19-4199-b46e-0aea537637c4))
(fp_line (start -0.162779 0.51) (end 0.162779 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d53015e3-090a-4aff-8c40-93a3f305d7a7))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bdf9bc49-eabb-440f-acd8-ac7a9ba1a620))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0738bf81-94b2-420c-9592-bbe8674c4078))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f54c0664-f89e-4487-ac1d-10d6a50d7aab))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 81bedd4e-a16f-4734-a383-344322517431))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f4e6691d-eed6-4c8f-9b90-396b52c0625d))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0bbe0dc7-ec3f-4156-9d78-313dc53097d8))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 85127d78-94c0-4ad4-b26a-2f60edcc4f96))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp feb73fe9-1e42-473a-8176-631b626a72a6))
(pad "1" smd roundrect (at -0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VBUS") (pintype "passive") (tstamp 9e910a0a-38d1-472f-b72b-b6c61734c920))
(pad "2" smd roundrect (at 0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(F1-Pad1)") (pintype "passive") (tstamp 02d76640-1290-41f7-9900-fba2b0220c75))
(model "${KICAD6_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23-6" (layer "F.Cu")
(tstamp 4a795728-a26a-4d16-ab93-27e490f3858e)
(at 129.779999 94.832207)
(descr "SOT, 6 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "LCSC Part Number" "C2827654")
(property "Manufacturer" "Several")
(property "Manufacturer Part Number" "Many")
(property "Package" "")
(property "Sheetfile" "udb-s.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Very low capacitance ESD protection diode, 2 data-line, SOT-23-6")
(property "ki_keywords" "usb ethernet video")
(path "/55255604-0d27-4174-bb72-30a2424b0f75")
(attr smd)
(fp_text reference "U2" (at 3.130001 -0.012207) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1e838b02-af14-4118-9f4d-8f6de34ef23d)
)
(fp_text value "USBLC6-2SC6" (at 0 2.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ce4d1c5f-7688-46d0-95ed-a0962a0aeb79)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 22f44f3a-c407-47c7-a796-a82d34e1bc9d)
)
(fp_line (start 0 -1.56) (end -1.8 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 502f4800-0198-4c43-ab4f-e0fc9418ffb0))
(fp_line (start 0 -1.56) (end 0.8 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 92e369aa-cbdd-4723-898e-35cf4809bc88))
(fp_line (start 0 1.56) (end -0.8 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c1536122-408e-47e3-ae6a-02e919cdea20))
(fp_line (start 0 1.56) (end 0.8 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ba3c57e4-2ef7-4269-a8fc-787b2263d42b))
(fp_line (start -2.05 -1.7) (end -2.05 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e352dcdb-b431-45cb-bd98-50fac6dfe664))
(fp_line (start -2.05 1.7) (end 2.05 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1e6c37e3-b1f3-4745-8e88-12b94e73aa1d))
(fp_line (start 2.05 -1.7) (end -2.05 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b5701ab9-68ce-4eb7-9ba5-b84c65d5833d))
(fp_line (start 2.05 1.7) (end 2.05 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7acad8e3-6144-4831-b719-61bcc0cc9b25))
(fp_line (start -0.8 -1.05) (end -0.4 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 028fe2c5-e58b-417a-a381-ee8eb3f31e26))
(fp_line (start -0.8 1.45) (end -0.8 -1.05)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ed1dc1f5-0e4a-44c9-9d4d-c1a983b19d4a))
(fp_line (start -0.4 -1.45) (end 0.8 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5ecf3f3e-6dff-415f-8743-51a715b0a6f0))
(fp_line (start 0.8 -1.45) (end 0.8 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 44e10433-b810-4125-8243-8d274df6c931))
(fp_line (start 0.8 1.45) (end -0.8 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp de7c8f36-5548-4686-b5b3-1b2bc93f1c6b))
(pad "1" smd roundrect (at -1.1375 -0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "D-") (pinfunction "I/O1") (pintype "passive") (tstamp 9c0d4519-06e2-4a52-9e1f-99a5f89fe8d3))
(pad "2" smd roundrect (at -1.1375 0) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 9d226aad-7786-4a41-a009-b402fae43eee))
(pad "3" smd roundrect (at -1.1375 0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "D+") (pinfunction "I/O2") (pintype "passive") (tstamp 55fe93e7-9228-45d9-b07d-b6bc55c2c5b4))
(pad "4" smd roundrect (at 1.1375 0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "D+") (pinfunction "I/O2") (pintype "passive") (tstamp 04302e72-2a61-4b33-a69e-473991f2ee49))
(pad "5" smd roundrect (at 1.1375 0) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "5V") (pinfunction "VBUS") (pintype "passive") (tstamp 2d6f7f3d-949a-4741-9d3a-1157ccbf1dab))
(pad "6" smd roundrect (at 1.1375 -0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "D-") (pinfunction "I/O1") (pintype "passive") (tstamp 97161277-b7c4-454b-aefc-e220bb0f312d))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-6.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 52582bf3-c2e3-40b9-bfcb-bcdd0f8cdfd4)
(at 129.779999 97 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC Part Number" "C105872")
(property "Manufacturer" "")
(property "Manufacturer Part Number" "")
(property "Package" "")
(property "Sheetfile" "udb-s.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small US symbol")
(property "ki_keywords" "r resistor")
(path "/8062585a-aac0-4d03-a370-19cd3dff564b")
(attr smd)
(fp_text reference "R2" (at 2.854999 0.225) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dcfa39dc-6c8d-4ef1-8ea1-8ba4bb0be36b)
)
(fp_text value "5.1k" (at -0.7225 0.01875) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1)) (justify left))
(tstamp 450a4faa-6ecc-4991-be24-2b3cadb19bb9)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2b787c47-f8e0-491a-9465-2b640dc92de8))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 75911dbb-2611-4e71-96d2-7cd078b8187a))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b523cca7-6f37-40ae-8275-396c2b829308))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e1a8e262-a13f-4ce5-9fb0-971650b96ca8))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 093d96d0-1b0b-4127-8fb7-4462e8d74eac))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fd2b108f-cf6d-4ad3-8a28-e2439495162a))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ba36370f-18b1-4a44-9ca9-ca0274ca693d))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ef668246-493f-45a9-8c10-455ad3595e3c))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 36f95bc9-3f98-4142-a70b-56c1b8c46dfc))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 75c1f198-40e0-43aa-9774-cfc8c7a11e3c))
(pad "1" smd roundrect (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(J1-CC2)") (pintype "passive") (tstamp 4402e582-8bed-45db-9f4d-9d5a2519f157))
(pad "2" smd roundrect (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 9e4312fd-e562-4df8-84b1-ad31019a585f))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad_TopBottom" (layer "F.Cu")
(tstamp 61193ead-1257-4344-87bc-5849e7d61d0f)
(at 148 95)
(descr "Mounting Hole 3.2mm, M3, DIN965")
(tags "mounting hole 3.2mm m3 din965")
(property "Sheetfile" "udb-s.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/16636e00-b468-4c23-9ab8-563ae5bf046c")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H1" (at 0 -3.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7da1f0ec-8a0f-4f8f-bd1e-b09a6ed962ad)
)
(fp_text value "MountingHole" (at 0 3.8) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c0847579-f1ae-4134-9975-8810e9991c10)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8d5d5558-00c9-48e5-a7af-7432a0ae1f7a)
)
(fp_circle (center 0 0) (end 2.8 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp ab26dd02-ec33-497e-93c6-404d0d66f252))
(fp_circle (center 0 0) (end 3.05 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 95d598e4-d915-456e-ae5d-9db6c2ff9903))
(pad "1" thru_hole circle (at 0 0) (size 3.6 3.6) (drill 3.2) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp c9df2833-d69c-4787-a112-a2449fc8d731))
(pad "1" connect circle (at 0 0) (size 6 6) (layers "F.Cu" "F.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 071183da-7efd-4e7f-b381-13f42f1ddbb0))
(pad "1" connect circle (at 0 0) (size 6 6) (layers "B.Cu" "B.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 21ee944e-014f-4143-9497-836d7d52d61a))
)
(footprint "Connector_JST:JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal" (layer "F.Cu")
(tstamp 7830ad12-8fc8-4111-a658-1b4138e9a812)
(at 122 96.217207)
(descr "JST SH series connector, SM04B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator")
(tags "connector JST SH top entry")
(property "LCSC Part Number" "C160404")
(property "Manufacturer" "JST")
(property "Manufacturer Part Number" "SM04B-SRSS-TB")
(property "Package" "")
(property "Sheetfile" "udb-s.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connectable mounting pin connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/9bedc7ad-26a6-4dea-8309-3bb1cd87c5e7")
(attr smd)
(fp_text reference "J2" (at 0 -3.98) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b6f06c23-b100-4870-87cc-894506cf5208)
)
(fp_text value "SM04B-SRSS" (at 0 3.98) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d1cba2be-05ad-43d9-ad22-ca4bd49c8370)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 498d1108-37a7-44b5-bb10-d7502a043322)
)
(fp_line (start -3.11 -1.785) (end -2.06 -1.785)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8a46fb47-a70f-4374-8b10-b429667832a1))
(fp_line (start -3.11 0.715) (end -3.11 -1.785)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 94ed8dc1-c623-4ee2-a8d5-757b9be1b347))
(fp_line (start -2.06 -1.785) (end -2.06 -2.775)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d8a2dfbe-99d2-4438-8053-9c88135dd2f8))
(fp_line (start -1.94 2.685) (end 1.94 2.685)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 16c36e28-90da-4c76-8631-aa574124573d))
(fp_line (start 3.11 -1.785) (end 2.06 -1.785)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 117926ff-2022-4b64-802d-7738682a5aca))
(fp_line (start 3.11 0.715) (end 3.11 -1.785)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 05cda09e-ce9e-44f4-8a4f-a5b03430e655))
(fp_line (start -3.9 -3.28) (end -3.9 3.28)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cf297199-b2ea-4563-97bf-eb1a494bb0bf))
(fp_line (start -3.9 3.28) (end 3.9 3.28)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 37081b3b-b48b-4901-8755-c20df5527b44))
(fp_line (start 3.9 -3.28) (end -3.9 -3.28)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1e47809a-3fd8-4b79-bf9c-ec04a1ee50b4))
(fp_line (start 3.9 3.28) (end 3.9 -3.28)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9cff122e-be24-4e2f-9ca1-cf544e3a42cc))
(fp_line (start -3 -1.675) (end -3 2.575)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1c943e4e-da93-4951-9b20-ed5d98b33e77))
(fp_line (start -3 -1.675) (end 3 -1.675)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fd261d10-3679-4701-9ab1-98957c05e58f))
(fp_line (start -3 2.575) (end 3 2.575)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fcb8c874-b0ed-497a-9483-f008f79cb66f))
(fp_line (start -2 -1.675) (end -1.5 -0.967893)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7b013c31-2389-4674-b9e8-f06083ffb753))
(fp_line (start -1.5 -0.967893) (end -1 -1.675)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a7860c8f-3b12-4d49-8fa7-27d0aef5b280))
(fp_line (start 3 -1.675) (end 3 2.575)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 97789905-c4c6-42b5-9dfe-743d94855e71))
(pad "1" smd roundrect (at -1.5 -2) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 2f87ddd1-e0ab-4dc9-a328-5a5fcbb36f83))
(pad "2" smd roundrect (at -0.5 -2) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "D-") (pinfunction "Pin_2") (pintype "passive") (tstamp d587911f-f8cb-40b4-a620-7f7df290b324))
(pad "3" smd roundrect (at 0.5 -2) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "D+") (pinfunction "Pin_3") (pintype "passive") (tstamp bc437256-2031-43a4-b276-3adf0bb1e2fc))
(pad "4" smd roundrect (at 1.5 -2) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp 8756dfdc-1661-49bb-b459-ec0078eaa917))
(pad "MP" smd roundrect (at -2.8 1.875) (size 1.2 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 1 "GND") (pinfunction "MountPin") (pintype "passive") (tstamp f432b79b-1254-444d-8db3-5afa70ae0b86))
(pad "MP" smd roundrect (at 2.8 1.875) (size 1.2 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 1 "GND") (pinfunction "MountPin") (pintype "passive") (tstamp 7d2da85c-abe4-4db4-96e6-2555ea088200))
(model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/lib/3d/JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal.STEP"
(offset (xyz 0 1.5 -0.35))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad_TopOnly" (layer "F.Cu")
(tstamp 7e2a846a-2021-4344-9cc4-7731213e7018)
(at 115 95 180)
(descr "Mounting Hole 3.2mm, M3, DIN965")
(tags "mounting hole 3.2mm m3 din965")
(property "Sheetfile" "udb-s.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/0f8a176b-74d5-407b-b48f-a3ecfbb5d66a")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H2" (at 0 -3.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa4a9072-38d3-42dd-9c47-3cfa8d40df6a)
)
(fp_text value "MountingHole" (at 0 3.8) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2b22e7ea-3253-4792-ac39-a5e2202a425c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5a765a01-a84b-4faf-a564-154c2c596427)
)
(fp_circle (center 0 0) (end 2.8 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp c06b5457-00e2-460f-99c2-633384bb1501))
(fp_circle (center 0 0) (end 3.05 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 24105f60-fe72-40b0-b490-3968b2cd31f7))
(pad "1" thru_hole circle (at 0 0 180) (size 6 6) (drill 3.2) (layers "*.Cu") (tstamp 29ffa24e-4317-4de2-a042-dbe5a60b95bb))
)
(footprint "Connector_USB:USB_C_Receptacle_HRO_TYPE-C-31-M-12" (layer "F.Cu")
(tstamp 97e94c89-8e94-4e77-995d-bc2b64f914eb)
(at 139.1 92.85 180)
(descr "USB Type-C receptacle for USB 2.0 and PD, http://www.krhro.com/uploads/soft/180320/1-1P320120243.pdf")
(tags "usb usb-c 2.0 pd")
(property "LCSC Part Number" "C165948")
(property "Manufacturer" "Koren Hroparts")
(property "Manufacturer Part Number" "TYPE-C-31-M-12")
(property "Package" "")
(property "Sheetfile" "udb-s.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "USB 2.0-only Type-C Receptacle connector")
(property "ki_keywords" "usb universal serial bus type-C USB2.0")
(path "/53d471a9-3f62-44eb-bfc3-54c2452d89c7")
(attr smd)
(fp_text reference "J1" (at 0 -5.645 180) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e54f4347-7685-4d64-8eb2-f1b28e81a941)
)
(fp_text value "TYPE-C-31-M-12" (at 0 5.1 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dbcaa833-89c0-4a30-9762-e663d5ded81b)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 964a33a6-b6e8-4a52-93c8-577690a479a7)
)
(fp_line (start -4.7 -1.9) (end -4.7 0.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 12452511-e13a-4f15-a203-387f6adc5a36))
(fp_line (start 4.7 -1.9) (end 4.7 0.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 519e3451-0dea-4a72-ab3a-4e3c9cb082e6))
(fp_line (start -5.32 -5.27) (end -5.32 4.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 763546d4-5b34-433d-98ac-137aeaefccb8))
(fp_line (start -5.32 -5.27) (end 5.32 -5.27)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 001a1f85-9ba0-4b08-9af6-0d44ccb006b8))
(fp_line (start -5.32 4.15) (end 5.32 4.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e001f1da-5b9d-4d52-aaf2-e1d058359d4d))
(fp_line (start 5.32 -5.27) (end 5.32 4.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 34d3547d-0503-4279-8f29-a4fb6332f1a2))
(fp_line (start -4.47 -3.65) (end -4.47 3.65)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1668e746-99f3-41ae-9f9b-42d0121b5dd8))
(fp_line (start -4.47 -3.65) (end 4.47 -3.65)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cf2f1f2f-d025-499c-960e-fda9436d5bd6))
(fp_line (start -4.47 3.65) (end 4.47 3.65)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c5568f3c-87d5-4e3b-8abf-5472d59e3a3e))
(fp_line (start 4.47 -3.65) (end 4.47 3.65)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 142e78ad-ad83-4f0b-b960-314fb50a2cca))
(pad "" np_thru_hole circle (at -2.89 -2.6 180) (size 0.65 0.65) (drill 0.65) (layers "*.Cu" "*.Mask") (tstamp 21e4545c-ba71-4c89-8902-aa788ecf2350))
(pad "" np_thru_hole circle (at 2.89 -2.6 180) (size 0.65 0.65) (drill 0.65) (layers "*.Cu" "*.Mask") (tstamp fbe07568-f7f3-4bdc-883b-2a876c192063))
(pad "A1" smd rect (at -3.25 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp fe74356f-3753-4ccf-8642-d092abf2ee24))
(pad "A4" smd rect (at -2.45 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp f9cba4a1-e41e-4e90-8ae4-d1788676e4c8))
(pad "A5" smd rect (at -1.25 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(J1-CC1)") (pinfunction "CC1") (pintype "bidirectional") (tstamp 9ba50c42-3bcb-4797-a0ea-01288893ca2b))
(pad "A6" smd rect (at -0.25 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "D+") (pinfunction "D+") (pintype "bidirectional") (tstamp a8d5b9fd-0312-4003-a8d2-e86c756907ff))
(pad "A7" smd rect (at 0.25 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "D-") (pinfunction "D-") (pintype "bidirectional") (tstamp d1316d5e-5e67-446f-96ff-046fe225d781))
(pad "A8" smd rect (at 1.25 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "unconnected-(J1-SBU1-PadA8)") (pinfunction "SBU1") (pintype "bidirectional+no_connect") (tstamp 7158d6ba-73b5-4004-b4af-f075666c8edb))
(pad "A9" smd rect (at 2.45 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 765b5fc9-b5ac-49c6-8175-abe4d079424f))
(pad "A12" smd rect (at 3.25 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 87fe7cc2-958b-4dcb-bd00-c0c08bd35486))
(pad "B1" smd rect (at 3.25 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 7b9471d3-2234-4e7c-add6-44b1eb6496e7))
(pad "B4" smd rect (at 2.45 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 883ac440-0178-4aea-a645-b8a347e374f1))
(pad "B5" smd rect (at 1.75 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "Net-(J1-CC2)") (pinfunction "CC2") (pintype "bidirectional") (tstamp ffe20e6d-4542-43ee-999f-fc822d929ae1))
(pad "B6" smd rect (at 0.75 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "D+") (pinfunction "D+") (pintype "bidirectional") (tstamp 0fb1eff6-4035-49dd-8643-d70c272e1c59))
(pad "B7" smd rect (at -0.75 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "D-") (pinfunction "D-") (pintype "bidirectional") (tstamp bab50c41-7591-4fea-8bab-8fa3c6818609))
(pad "B8" smd rect (at -1.75 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "unconnected-(J1-SBU2-PadB8)") (pinfunction "SBU2") (pintype "bidirectional+no_connect") (tstamp 752cc130-afe6-439a-a028-f14a6fb1b9e9))
(pad "B9" smd rect (at -2.45 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 353a458b-a285-4510-9b04-11f595bbd2dd))
(pad "B12" smd rect (at -3.25 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 95694255-84cb-4588-82f6-f4bdddd5e2c6))
(pad "S1" thru_hole oval (at -4.32 -3.13 180) (size 1 2.1) (drill oval 0.6 1.7) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp a1ac23a7-7430-46a7-aa8a-399b5546bf38))
(pad "S1" thru_hole oval (at -4.32 1.05 180) (size 1 1.6) (drill oval 0.6 1.2) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 40963600-8262-443d-91b7-f672ff5ba55e))
(pad "S1" thru_hole oval (at 4.32 -3.13 180) (size 1 2.1) (drill oval 0.6 1.7) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp e9350b16-24e8-4db9-8b71-3fd3394c39ef))
(pad "S1" thru_hole oval (at 4.32 1.05 180) (size 1 1.6) (drill oval 0.6 1.2) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 8024b90f-e61a-49a4-a079-efe4485cc726))
(model "${KICAD6_3DMODEL_DIR}/Connector_USB.3dshapes/USB_C_Receptacle_HRO_TYPE-C-31-M-12.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/lib/3d/USB_C_Receptacle_HRO_TYPE-C-31-M-12.step"
(offset (xyz -4.5 -3.5 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp b1f94f88-cc20-435d-a2ca-50daca5f14e1)
(at 129.779999 98 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC Part Number" "C105872")
(property "Manufacturer" "Jellybean part pls just look up if none are available")
(property "Manufacturer Part Number" "")
(property "Package" "")
(property "Sheetfile" "udb-s.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small US symbol")
(property "ki_keywords" "r resistor")
(path "/c80b8036-e539-4a12-adcc-3cef15bce5e4")
(attr smd)
(fp_text reference "R1" (at 2.829999 0.01) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3e71cc79-0289-40e0-8562-039d5a0edd50)
)
(fp_text value "5.1k" (at 0.6775 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1)) (justify right))
(tstamp b67b51f7-32c3-4b1b-a90a-7a35824dd6e5)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 57455e25-1bb6-4b76-a498-7cd52c1af0ad)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 002b48f6-221b-44f1-9a67-0990d31a13b7))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e97eca1e-45c6-46e2-b6ec-213cfd01670e))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d46901e-b1dc-4f22-9533-a67a5e04d696))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c23039f1-087a-4582-b3ea-8074094f6a8d))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f65b89ef-c3f0-4b36-9bab-3e4a5b9304fa))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ce1d9075-e085-433f-a0b4-a82657022f8e))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b62f941f-e84c-4193-bcf7-2dcdac2e8ff8))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8a54849d-db40-41ba-906f-93f7de902c07))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6aeddadf-ac74-4127-9941-a95fd3e8bacc))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 643b331f-8d6b-4123-8fb9-3c0ed6a1c40d))
(pad "1" smd roundrect (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(J1-CC1)") (pintype "passive") (tstamp ee65c490-f8f8-425f-a4d6-f54de6a39cf1))
(pad "2" smd roundrect (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 29ffd8f8-ad08-4bab-bfc5-2262f034e2f3))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Fuse:Fuse_0402_1005Metric" (layer "F.Cu")
(tstamp fa9b11b3-ccf8-4157-a108-032a95fbd3d6)
(at 128.749999 92.1 180)
(descr "Fuse SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "fuse")
(property "LCSC Part Number" "C914087")
(property "Manufacturer" "")
(property "Manufacturer Part Number" "")
(property "Package" "")
(property "Sheetfile" "udb-s.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resettable fuse, polymeric positive temperature coefficient, small symbol")
(property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch")
(path "/6d3b1556-1edb-4b8f-962d-c0a341c806e3")
(attr smd)
(fp_text reference "F1" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 99403361-0577-47f9-b77b-d8dd68cc19ce)
)
(fp_text value "1A PTC" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0bc00b1c-ded3-4beb-823f-1c5f6093ca50)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 9a4dade1-ef40-42ec-b45b-bed531a37001)
)
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0c266bef-4aef-4031-b5f9-4bedcd4a29ce))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d420793a-b4f7-4bdb-9e9a-78ceca8718b4))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0b124872-e9ca-40b4-ab6c-0b7f92632152))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 62a0ab20-0b8c-4307-8461-d8b979775e06))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d7d71f94-a561-454a-b020-96bc76b33a33))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3fd3cd96-5d2d-4dca-9a91-a75e4838ef90))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 949841c3-986e-46af-b66c-6ccabf88a14a))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 36f96e17-afc2-4508-8fe4-66e4674ee76b))
(pad "1" smd roundrect (at -0.485 0 180) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(F1-Pad1)") (pintype "passive") (tstamp 6facde36-a02c-441c-bc10-58f173f3e271))
(pad "2" smd roundrect (at 0.485 0 180) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "5V") (pintype "passive") (tstamp 57e3795e-e0f0-4ebf-aa40-2ec2f580930a))
(model "${KICAD6_3DMODEL_DIR}/Fuse.3dshapes/Fuse_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_line (start 153.499999 100.75) (end 153.500002 89.249997)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 02677661-0049-4bcb-870e-826e93b7e1a3))
(gr_arc (start 158.499999 106) (mid 158.207106 106.707107) (end 157.499999 107)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 02757b1d-a73e-41e6-a689-479a5ed09817))
(gr_line (start 152.500002 88.249997) (end 133.499996 88.250003)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 067b2894-e158-4907-9372-c66823950fdd))
(gr_line (start 133.499999 101.75) (end 152.499999 101.75)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 0f34b600-d8a0-4b68-9718-db883c2e533f))
(gr_arc (start 157.499999 83) (mid 158.207106 83.292893) (end 158.499999 84)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 1e4f6c5b-8a15-44b3-8d83-c03c508a8261))
(gr_line (start 127.499999 88.25) (end 108.499999 88.25)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 3630ac31-9573-4600-bf98-39c335edeb54))
(gr_arc (start 133.676772 90.573225) (mid 133.757875 90.519014) (end 133.85355 90.5)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 414d6493-87f0-4f79-9ccb-c455d697a8e3))
(gr_arc (start 116 99.500001) (mid 111.499999 95) (end 116 90.499999)
(stroke (width 0.1) (type solid)) (layer "Edge.Cuts") (tstamp 41d9c6e8-14f5-4f13-af32-738c7165c0e3))
(gr_line (start 116 99.500001) (end 127.146446 99.5)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 5140246d-3d24-47c7-a7c8-d3fec6e8faab))
(gr_arc (start 147 90.5) (mid 151.5 95) (end 147 99.5)
(stroke (width 0.1) (type solid)) (layer "Edge.Cuts") (tstamp 518fc64e-e515-493d-b8ac-b8e63ec17f17))
(gr_line (start 133.499996 99.250003) (end 133.676773 99.42678)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 54a33a00-3185-4f55-a4f3-58e80aa55d58))
(gr_line (start 127.146449 90.5) (end 116 90.499999)
(stroke (width 0.1) (type solid)) (layer "Edge.Cuts") (tstamp 6e91eb45-f7ff-473b-9e51-d59feb65d356))
(gr_line (start 147 90.5) (end 133.85355 90.5)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 6f5f31c5-13f8-4d2e-9873-f5da8c24d6be))
(gr_line (start 127.323223 99.426776) (end 127.499999 99.25)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 726cb41b-258c-443e-b8b0-9425d7ce411c))
(gr_line (start 158.499999 84) (end 158.499999 106)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 74190cd8-0e6f-4e79-9d28-44d983b811f0))
(gr_line (start 103.499999 83) (end 157.499999 83)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 745ebf96-6e5f-48b3-bc22-474caeeb212d))
(gr_arc (start 133.853549 99.500003) (mid 133.757878 99.480973) (end 133.676773 99.42678)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 9979e4de-1311-4408-9589-c6ac88ce7bab))
(gr_line (start 107.499999 89.25) (end 107.499996 100.750003)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp a0945ecb-11cd-4ed2-878a-2b747197bd0b))
(gr_line (start 102.499999 106) (end 102.499999 84)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp a7132631-4a0d-408f-93f5-e0197000d8e3))
(gr_line (start 157.499999 107) (end 103.499999 107)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp b436c5f8-9438-4007-a2bd-9b6e290d331d))
(gr_arc (start 102.499999 84) (mid 102.792892 83.292893) (end 103.499999 83)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp b7ab0fdc-d062-4c7d-8c68-9494233c1940))
(gr_arc (start 108.499996 101.750003) (mid 107.792891 101.457109) (end 107.499996 100.750003)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp bfa50cf2-81c5-4d76-80e7-0d467eae3268))
(gr_line (start 127.323225 90.573222) (end 127.500002 90.749997)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp c8041804-b555-42a8-8764-1057f11603b5))
(gr_arc (start 153.499999 100.75) (mid 153.207106 101.457106) (end 152.499999 101.75)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp c9e52115-59d6-4af7-9d41-3f1f3a3fd468))
(gr_arc (start 127.323223 99.426776) (mid 127.24212 99.480985) (end 127.146446 99.5)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp d5be6e9b-c64f-4163-9658-5ea2eea8a7c3))
(gr_arc (start 103.499999 107) (mid 102.792892 106.707107) (end 102.499999 106)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp db9ab261-a273-4105-aa4a-85f0d6deb008))
(gr_line (start 133.676772 90.573225) (end 133.499999 90.75)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp dc051b8b-a733-4f6f-8fe8-d872d6b2efc0))
(gr_line (start 108.499996 101.750003) (end 127.500002 101.749997)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp df62792d-fee5-483d-8c9b-10b36c2ced16))
(gr_arc (start 152.500002 88.249997) (mid 153.207109 88.54289) (end 153.500002 89.249997)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp ea63e658-ed29-42e3-9753-62d1a2d18544))
(gr_line (start 133.853549 99.500003) (end 147 99.5)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp ef74c8a6-221a-4f2e-9551-dda1245364c0))
(gr_arc (start 107.499999 89.25) (mid 107.792891 88.54289) (end 108.499999 88.25)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp f692b975-21fa-4e1b-b25b-3468adcbc410))
(gr_arc (start 127.146449 90.5) (mid 127.242119 90.51903) (end 127.323225 90.573222)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp ff557157-bad7-45ba-bde7-f388c494a6ca))
(gr_text "hunger solving\nworld peace giving\nuniversal son board\n" (at 123 95) (layer "B.Mask") (tstamp 7b4973ba-ba13-4997-9145-45448f1d4b50)
(effects (font (face "FreeSans") (size 0.5 0.5) (thickness 0.125)) (justify mirror))
(render_cache "hunger solving\nworld peace giving\nuniversal son board\n" 0
(polygon
(pts
(xy 124.909978 94.117883) (xy 124.910185 94.110973) (xy 124.910806 94.104438) (xy 124.911842 94.098279)
(xy 124.913292 94.092495) (xy 124.915156 94.087088) (xy 124.917435 94.082055) (xy 124.920128 94.077399)
(xy 124.923235 94.073118) (xy 124.926757 94.069213) (xy 124.930693 94.065684) (xy 124.933547 94.063539)
(xy 124.938012 94.060593) (xy 124.94257 94.057936) (xy 124.94722 94.05557) (xy 124.951963 94.053493)
(xy 124.956797 94.051706) (xy 124.961724 94.050208) (xy 124.966743 94.049001) (xy 124.971855 94.048083)
(xy 124.977059 94.047455) (xy 124.982355 94.047117) (xy 124.985937 94.047053) (xy 124.991501 94.047183)
(xy 124.996928 94.047574) (xy 125.002217 94.048225) (xy 125.007369 94.049137) (xy 125.012384 94.050309)
(xy 125.017261 94.051741) (xy 125.022001 94.053434) (xy 125.026604 94.055388) (xy 125.031069 94.057602)
(xy 125.035396 94.060076) (xy 125.039587 94.062811) (xy 125.043639 94.065806) (xy 125.047555 94.069062)
(xy 125.051333 94.072578) (xy 125.054974 94.076355) (xy 125.058477 94.080392) (xy 125.06179 94.084644)
(xy 125.064889 94.089066) (xy 125.067774 94.093658) (xy 125.070445 94.09842) (xy 125.072903 94.103352)
(xy 125.075147 94.108453) (xy 125.077177 94.113725) (xy 125.078994 94.119166) (xy 125.080596 94.124776)
(xy 125.081986 94.130557) (xy 125.083161 94.136508) (xy 125.084123 94.142628) (xy 125.084871 94.148918)
(xy 125.085405 94.155378) (xy 125.085726 94.162008) (xy 125.085832 94.168808) (xy 125.085832 94.3675)
(xy 125.144206 94.3675) (xy 125.144206 93.851659) (xy 125.085832 93.851659) (xy 125.085832 94.0567)
(xy 125.08258 94.052341) (xy 125.079324 94.048146) (xy 125.076065 94.044117) (xy 125.072804 94.040252)
(xy 125.069539 94.036553) (xy 125.064637 94.031313) (xy 125.059729 94.026445) (xy 125.054814 94.021948)
(xy 125.049893 94.017822) (xy 125.044965 94.014068) (xy 125.040031 94.010686) (xy 125.035091 94.007674)
(xy 125.033442 94.006753) (xy 125.028383 94.004178) (xy 125.023095 94.001856) (xy 125.017581 93.999787)
(xy 125.011838 93.997972) (xy 125.005868 93.996409) (xy 124.999671 93.995101) (xy 124.993246 93.994045)
(xy 124.986594 93.993243) (xy 124.979713 93.992694) (xy 124.972606 93.992399) (xy 124.967741 93.992342)
(xy 124.961142 93.992447) (xy 124.954716 93.992762) (xy 124.948464 93.993287) (xy 124.942386 93.994022)
(xy 124.936481 93.994966) (xy 124.93075 93.996121) (xy 124.925192 93.997485) (xy 124.919808 93.999059)
(xy 124.914598 94.000843) (xy 124.909562 94.002837) (xy 124.904699 94.005041) (xy 124.900009 94.007455)
(xy 124.895494 94.010079) (xy 124.891152 94.012912) (xy 124.886983 94.015956) (xy 124.882989 94.019209)
(xy 124.879188 94.022627) (xy 124.875633 94.026195) (xy 124.872323 94.029912) (xy 124.869258 94.03378)
(xy 124.866438 94.037797) (xy 124.863863 94.041964) (xy 124.861534 94.046281) (xy 124.85945 94.050747)
(xy 124.857611 94.055363) (xy 124.856017 94.060129) (xy 124.854669 94.065045) (xy 124.853565 94.070111)
(xy 124.852707 94.075326) (xy 124.852094 94.080692) (xy 124.851726 94.086207) (xy 124.851604 94.091871)
(xy 124.851604 94.3675) (xy 124.909978 94.3675)
)
)
(polygon
(pts
(xy 124.481576 94.3675) (xy 124.534332 94.3675) (xy 124.534332 94.312545) (xy 124.537592 94.317237)
(xy 124.540869 94.321757) (xy 124.544164 94.326106) (xy 124.547475 94.330283) (xy 124.550804 94.334288)
(xy 124.55415 94.338122) (xy 124.557513 94.341783) (xy 124.56259 94.346954) (xy 124.567706 94.351738)
(xy 124.57286 94.356136) (xy 124.578053 94.360147) (xy 124.583284 94.363772) (xy 124.588554 94.367011)
(xy 124.593932 94.369892) (xy 124.599533 94.372489) (xy 124.605358 94.374803) (xy 124.611406 94.376834)
(xy 124.617677 94.378582) (xy 124.624171 94.380046) (xy 124.630889 94.381226) (xy 124.63783 94.382124)
(xy 124.644994 94.382737) (xy 124.649894 94.382989) (xy 124.654894 94.383115) (xy 124.65743 94.383131)
(xy 124.664033 94.383025) (xy 124.670467 94.382706) (xy 124.676733 94.382174) (xy 124.682832 94.381429)
(xy 124.688762 94.380472) (xy 124.694525 94.379301) (xy 124.70012 94.377918) (xy 124.705546 94.376323)
(xy 124.710805 94.374514) (xy 124.715896 94.372493) (xy 124.720819 94.370259) (xy 124.725574 94.367812)
(xy 124.730161 94.365153) (xy 124.734581 94.362281) (xy 124.738832 94.359196) (xy 124.742915 94.355898)
(xy 124.74679 94.352407) (xy 124.750415 94.348775) (xy 124.753789 94.345) (xy 124.756914 94.341083)
(xy 124.759788 94.337024) (xy 124.762413 94.332823) (xy 124.764788 94.328479) (xy 124.766912 94.323994)
(xy 124.768787 94.319366) (xy 124.770412 94.314596) (xy 124.771787 94.309684) (xy 124.772912 94.30463)
(xy 124.773786 94.299434) (xy 124.774411 94.294095) (xy 124.774786 94.288614) (xy 124.774911 94.282991)
(xy 124.774911 94.000158) (xy 124.716537 94.000158) (xy 124.716537 94.257102) (xy 124.716358 94.263078)
(xy 124.71582 94.268824) (xy 124.714924 94.274341) (xy 124.713669 94.279627) (xy 124.712056 94.284685)
(xy 124.710084 94.289512) (xy 124.707754 94.29411) (xy 124.705065 94.298478) (xy 124.702018 94.302616)
(xy 124.698613 94.306525) (xy 124.696143 94.309003) (xy 124.692189 94.312473) (xy 124.687976 94.315602)
(xy 124.683502 94.31839) (xy 124.678769 94.320836) (xy 124.673777 94.322941) (xy 124.668524 94.324704)
(xy 124.663012 94.326126) (xy 124.65724 94.327207) (xy 124.651208 94.327947) (xy 124.644916 94.328345)
(xy 124.640578 94.328421) (xy 124.63494 94.328289) (xy 124.629446 94.327896) (xy 124.624094 94.32724)
(xy 124.618886 94.326322) (xy 124.613821 94.325141) (xy 124.608899 94.323698) (xy 124.60412 94.321993)
(xy 124.599484 94.320025) (xy 124.594991 94.317795) (xy 124.590642 94.315302) (xy 124.586435 94.312547)
(xy 124.582372 94.30953) (xy 124.578451 94.30625) (xy 124.574674 94.302708) (xy 124.57104 94.298904)
(xy 124.567549 94.294837) (xy 124.564222 94.290554) (xy 124.561109 94.2861) (xy 124.558211 94.281475)
(xy 124.555528 94.276679) (xy 124.553059 94.271713) (xy 124.550805 94.266576) (xy 124.548766 94.261268)
(xy 124.546941 94.255789) (xy 124.545331 94.250139) (xy 124.543936 94.244319) (xy 124.542755 94.238328)
(xy 124.541789 94.232166) (xy 124.541038 94.225833) (xy 124.540501 94.21933) (xy 124.540179 94.212656)
(xy 124.540072 94.205811) (xy 124.540072 94.000158) (xy 124.481576 94.000158)
)
)
(polygon
(pts
(xy 124.404639 94.000158) (xy 124.350539 94.000158) (xy 124.350539 94.067691) (xy 124.347441 94.062757)
(xy 124.344313 94.058) (xy 124.341156 94.053419) (xy 124.337968 94.049014) (xy 124.334752 94.044786)
(xy 124.331506 94.040735) (xy 124.32823 94.03686) (xy 124.324924 94.033162) (xy 124.319911 94.027945)
(xy 124.314831 94.023125) (xy 124.309684 94.018703) (xy 124.304471 94.014677) (xy 124.299191 94.011049)
(xy 124.297417 94.009928) (xy 124.291973 94.006785) (xy 124.286313 94.003952) (xy 124.280435 94.001427)
(xy 124.274341 93.999212) (xy 124.26803 93.997306) (xy 124.261503 93.995708) (xy 124.254758 93.99442)
(xy 124.247797 93.993442) (xy 124.240619 93.992772) (xy 124.235713 93.992497) (xy 124.230711 93.99236)
(xy 124.228174 93.992342) (xy 124.221573 93.992449) (xy 124.215143 93.992768) (xy 124.208884 93.9933)
(xy 124.202795 93.994045) (xy 124.196878 93.995002) (xy 124.191131 93.996172) (xy 124.185555 93.997555)
(xy 124.180149 93.999151) (xy 124.174915 94.000959) (xy 124.169851 94.00298) (xy 124.164958 94.005214)
(xy 124.160236 94.007661) (xy 124.155685 94.010321) (xy 124.151304 94.013193) (xy 124.147094 94.016278)
(xy 124.143055 94.019576) (xy 124.13921 94.023035) (xy 124.135613 94.026636) (xy 124.132264 94.030378)
(xy 124.129164 94.034261) (xy 124.126311 94.038285) (xy 124.123706 94.04245) (xy 124.12135 94.046757)
(xy 124.119241 94.051205) (xy 124.117381 94.055794) (xy 124.115769 94.060524) (xy 124.114404 94.065396)
(xy 124.113288 94.070409) (xy 124.11242 94.075563) (xy 124.1118 94.080858) (xy 124.111428 94.086294)
(xy 124.111303 94.091871) (xy 124.111303 94.3675) (xy 124.1698 94.3675) (xy 124.1698 94.117883)
(xy 124.169979 94.111931) (xy 124.170517 94.106211) (xy 124.171413 94.100723) (xy 124.172668 94.095466)
(xy 124.174281 94.090442) (xy 124.176253 94.085649) (xy 124.178583 94.081088) (xy 124.181271 94.076759)
(xy 124.184319 94.072662) (xy 124.187724 94.068796) (xy 124.190194 94.066348) (xy 124.194148 94.0629)
(xy 124.198361 94.059791) (xy 124.202835 94.057021) (xy 124.207568 94.05459) (xy 124.21256 94.052498)
(xy 124.217813 94.050746) (xy 124.223325 94.049333) (xy 124.229097 94.048259) (xy 124.235129 94.047524)
(xy 124.241421 94.047128) (xy 124.245759 94.047053) (xy 124.251323 94.047183) (xy 124.25675 94.047574)
(xy 124.262039 94.048225) (xy 124.267191 94.049137) (xy 124.272206 94.050309) (xy 124.277083 94.051741)
(xy 124.281823 94.053434) (xy 124.286426 94.055388) (xy 124.290891 94.057602) (xy 124.295218 94.060076)
(xy 124.299409 94.062811) (xy 124.303462 94.065806) (xy 124.307377 94.069062) (xy 124.311155 94.072578)
(xy 124.314796 94.076355) (xy 124.318299 94.080392) (xy 124.321612 94.084644) (xy 124.324711 94.089066)
(xy 124.327596 94.093658) (xy 124.330267 94.09842) (xy 124.332725 94.103352) (xy 124.334969 94.108453)
(xy 124.336999 94.113725) (xy 124.338816 94.119166) (xy 124.340419 94.124776) (xy 124.341808 94.130557)
(xy 124.342983 94.136508) (xy 124.343945 94.142628) (xy 124.344693 94.148918) (xy 124.345227 94.155378)
(xy 124.345548 94.162008) (xy 124.345654 94.168808) (xy 124.345654 94.3675) (xy 124.404639 94.3675)
)
)
(polygon
(pts
(xy 123.901621 94.383131) (xy 123.909629 94.382926) (xy 123.917472 94.382311) (xy 123.92515 94.381285)
(xy 123.932663 94.379849) (xy 123.940011 94.378003) (xy 123.947193 94.375747) (xy 123.954211 94.37308)
(xy 123.961064 94.370003) (xy 123.967751 94.366516) (xy 123.974274 94.362618) (xy 123.980631 94.358311)
(xy 123.986824 94.353593) (xy 123.992851 94.348465) (xy 123.998713 94.342926) (xy 124.004411 94.336978)
(xy 124.009943 94.330619) (xy 124.015222 94.32392) (xy 124.020161 94.316953) (xy 124.024759 94.309716)
(xy 124.029017 94.30221) (xy 124.032933 94.294436) (xy 124.03651 94.286392) (xy 124.039746 94.278079)
(xy 124.042641 94.269497) (xy 124.045195 94.260646) (xy 124.047409 94.251526) (xy 124.049282 94.242137)
(xy 124.050815 94.232479) (xy 124.051454 94.227549) (xy 124.052007 94.222552) (xy 124.052476 94.217487)
(xy 124.052859 94.212356) (xy 124.053157 94.207157) (xy 124.05337 94.20189) (xy 124.053497 94.196557)
(xy 124.05354 94.191156) (xy 124.053498 94.185625) (xy 124.053371 94.180161) (xy 124.05316 94.174764)
(xy 124.052865 94.169434) (xy 124.052485 94.16417) (xy 124.05202 94.158973) (xy 124.051471 94.153843)
(xy 124.050838 94.14878) (xy 124.05012 94.143784) (xy 124.049318 94.138854) (xy 124.048432 94.133991)
(xy 124.047461 94.129195) (xy 124.045265 94.119803) (xy 124.042732 94.110678) (xy 124.039861 94.101821)
(xy 124.036653 94.09323) (xy 124.033107 94.084907) (xy 124.029223 94.076851) (xy 124.025001 94.069061)
(xy 124.020441 94.06154) (xy 124.015544 94.054285) (xy 124.010309 94.047297) (xy 124.004799 94.040642)
(xy 123.999078 94.034417) (xy 123.993144 94.028621) (xy 123.986999 94.023254) (xy 123.980642 94.018317)
(xy 123.974073 94.013809) (xy 123.967293 94.00973) (xy 123.9603 94.006081) (xy 123.953096 94.002861)
(xy 123.94568 94.00007) (xy 123.938052 93.997709) (xy 123.930213 93.995777) (xy 123.922161 93.994274)
(xy 123.913898 93.993201) (xy 123.905423 93.992557) (xy 123.896736 93.992342) (xy 123.888211 93.992594)
(xy 123.879883 93.993348) (xy 123.871755 93.994605) (xy 123.863824 93.996365) (xy 123.856093 93.998627)
(xy 123.848559 94.001393) (xy 123.841224 94.004661) (xy 123.834088 94.008432) (xy 123.82715 94.012706)
(xy 123.82041 94.017482) (xy 123.813869 94.022762) (xy 123.807526 94.028544) (xy 123.801382 94.034829)
(xy 123.795436 94.041617) (xy 123.789689 94.048907) (xy 123.78414 94.0567) (xy 123.791223 94.000158)
(xy 123.73004 94.000158) (xy 123.73004 94.309248) (xy 123.730065 94.315804) (xy 123.73014 94.322225)
(xy 123.730264 94.328509) (xy 123.730437 94.334656) (xy 123.730661 94.340668) (xy 123.730933 94.346542)
(xy 123.731256 94.352281) (xy 123.731628 94.357882) (xy 123.73205 94.363348) (xy 123.732521 94.368677)
(xy 123.733042 94.373869) (xy 123.733612 94.378925) (xy 123.734233 94.383845) (xy 123.735256 94.390969)
(xy 123.736391 94.397786) (xy 123.737674 94.404425) (xy 123.739141 94.410969) (xy 123.740794 94.417419)
(xy 123.74263 94.423775) (xy 123.744652 94.430036) (xy 123.746858 94.436202) (xy 123.749249 94.442275)
(xy 123.751824 94.448252) (xy 123.754584 94.454136) (xy 123.757528 94.459924) (xy 123.759594 94.463731)
(xy 123.7629 94.469295) (xy 123.766497 94.474585) (xy 123.770387 94.479599) (xy 123.774569 94.484339)
(xy 123.779043 94.488804) (xy 123.783808 94.492995) (xy 123.788866 94.49691) (xy 123.794215 94.500551)
(xy 123.799857 94.503917) (xy 123.80579 94.507008) (xy 123.809908 94.508916) (xy 123.816317 94.511579)
(xy 123.823041 94.513979) (xy 123.830081 94.516118) (xy 123.83495 94.517399) (xy 123.839959 94.518563)
(xy 123.845108 94.51961) (xy 123.850397 94.520541) (xy 123.855827 94.521356) (xy 123.861397 94.522054)
(xy 123.867107 94.522636) (xy 123.872957 94.523102) (xy 123.878948 94.523451) (xy 123.885079 94.523684)
(xy 123.89135 94.5238) (xy 123.894538 94.523815) (xy 123.902527 94.523701) (xy 123.910313 94.523361)
(xy 123.917895 94.522793) (xy 123.925274 94.521998) (xy 123.93245 94.520977) (xy 123.939423 94.519728)
(xy 123.946193 94.518252) (xy 123.952759 94.516549) (xy 123.959123 94.514619) (xy 123.965283 94.512461)
(xy 123.971239 94.510077) (xy 123.976993 94.507466) (xy 123.982543 94.504628) (xy 123.98789 94.501562)
(xy 123.993034 94.49827) (xy 123.997975 94.49475) (xy 124.002682 94.49103) (xy 124.007124 94.487137)
(xy 124.011303 94.483069) (xy 124.015217 94.478828) (xy 124.018867 94.474414) (xy 124.022252 94.469826)
(xy 124.025373 94.465064) (xy 124.02823 94.460129) (xy 124.030823 94.45502) (xy 124.033152 94.449737)
(xy 124.035216 94.44428) (xy 124.037015 94.43865) (xy 124.038551 94.432847) (xy 124.039822 94.42687)
(xy 124.040829 94.420719) (xy 124.041572 94.414394) (xy 123.981855 94.414394) (xy 123.980346 94.421966)
(xy 123.978294 94.429049) (xy 123.975698 94.435643) (xy 123.972558 94.441749) (xy 123.968875 94.447367)
(xy 123.964647 94.452496) (xy 123.959876 94.457137) (xy 123.954561 94.461289) (xy 123.948702 94.464952)
(xy 123.942299 94.468128) (xy 123.935352 94.470814) (xy 123.927862 94.473012) (xy 123.919828 94.474722)
(xy 123.91125 94.475943) (xy 123.902128 94.476676) (xy 123.892462 94.47692) (xy 123.88522 94.476784)
(xy 123.878269 94.476376) (xy 123.871611 94.475697) (xy 123.865244 94.474745) (xy 123.859169 94.473521)
(xy 123.853387 94.472026) (xy 123.847896 94.470258) (xy 123.842697 94.468219) (xy 123.837791 94.465908)
(xy 123.833176 94.463325) (xy 123.828853 94.46047) (xy 123.824822 94.457343) (xy 123.821083 94.453944)
(xy 123.817636 94.450273) (xy 123.814481 94.44633) (xy 123.811618 94.442116) (xy 123.80897 94.437639)
(xy 123.806494 94.432878) (xy 123.804189 94.427835) (xy 123.802054 94.422508) (xy 123.80009 94.416897)
(xy 123.798297 94.411003) (xy 123.796674 94.404826) (xy 123.795223 94.398366) (xy 123.793942 94.391622)
(xy 123.792832 94.384595) (xy 123.791893 94.377284) (xy 123.791124 94.36969) (xy 123.790526 94.361813)
(xy 123.790099 94.353652) (xy 123.789843 94.345208) (xy 123.789758 94.336481) (xy 123.789758 94.316697)
(xy 123.792848 94.321031) (xy 123.795952 94.325211) (xy 123.799069 94.329236) (xy 123.802199 94.333107)
(xy 123.806919 94.338623) (xy 123.81167 94.343792) (xy 123.816451 94.348612) (xy 123.821261 94.353085)
(xy 123.826102 94.357211) (xy 123.830973 94.360988) (xy 123.835874 94.364418) (xy 123.840805 94.3675)
(xy 123.845821 94.370293) (xy 123.85098 94.372812) (xy 123.85628 94.375056) (xy 123.861722 94.377025)
(xy 123.867305 94.378719) (xy 123.87303 94.380139) (xy 123.878897 94.381284) (xy 123.884906 94.382154)
(xy 123.891056 94.382749) (xy 123.897348 94.38307)
)
(pts
(xy 123.890386 94.047053) (xy 123.896201 94.047201) (xy 123.901863 94.047646) (xy 123.907372 94.048388)
(xy 123.912726 94.049427) (xy 123.917928 94.050762) (xy 123.922975 94.052394) (xy 123.927869 94.054322)
(xy 123.932609 94.056548) (xy 123.937196 94.05907) (xy 123.941629 94.061889) (xy 123.945909 94.065004)
(xy 123.950035 94.068417) (xy 123.954007 94.072125) (xy 123.957825 94.076131) (xy 123.961491 94.080434)
(xy 123.965002 94.085033) (xy 123.968315 94.08987) (xy 123.971413 94.094919) (xy 123.974299 94.100178)
(xy 123.97697 94.105648) (xy 123.979428 94.111329) (xy 123.981672 94.117221) (xy 123.983702 94.123324)
(xy 123.985518 94.129637) (xy 123.987121 94.136162) (xy 123.98851 94.142897) (xy 123.989686 94.149843)
(xy 123.990648 94.157) (xy 123.991396 94.164368) (xy 123.99193 94.171947) (xy 123.99225 94.179736)
(xy 123.992357 94.187737) (xy 123.99225 94.19581) (xy 123.99193 94.203666) (xy 123.991396 94.211304)
(xy 123.990648 94.218725) (xy 123.989686 94.225928) (xy 123.98851 94.232914) (xy 123.987121 94.239682)
(xy 123.985518 94.246233) (xy 123.983702 94.252566) (xy 123.981672 94.258682) (xy 123.979428 94.26458)
(xy 123.97697 94.27026) (xy 123.974299 94.275723) (xy 123.971413 94.280969) (xy 123.968315 94.285997)
(xy 123.965002 94.290807) (xy 123.961488 94.295362) (xy 123.957814 94.299623) (xy 123.953981 94.30359)
(xy 123.949989 94.307263) (xy 123.945837 94.310642) (xy 123.941526 94.313728) (xy 123.937056 94.31652)
(xy 123.932426 94.319017) (xy 123.927637 94.321221) (xy 123.922689 94.323131) (xy 123.917581 94.324747)
(xy 123.912314 94.32607) (xy 123.906888 94.327098) (xy 123.901302 94.327833) (xy 123.895557 94.328274)
(xy 123.889653 94.328421) (xy 123.883929 94.328277) (xy 123.878359 94.327844) (xy 123.872942 94.327124)
(xy 123.867679 94.326116) (xy 123.862569 94.324819) (xy 123.857613 94.323234) (xy 123.852811 94.321361)
(xy 123.848162 94.3192) (xy 123.843667 94.316751) (xy 123.839326 94.314014) (xy 123.835138 94.310989)
(xy 123.831104 94.307675) (xy 123.827223 94.304074) (xy 123.823496 94.300184) (xy 123.819922 94.296006)
(xy 123.816502 94.29154) (xy 123.813264 94.286821) (xy 123.810234 94.281883) (xy 123.807413 94.276727)
(xy 123.804802 94.271352) (xy 123.802399 94.265759) (xy 123.800205 94.259947) (xy 123.79822 94.253917)
(xy 123.796444 94.247668) (xy 123.794877 94.241201) (xy 123.793519 94.234515) (xy 123.79237 94.227611)
(xy 123.791429 94.220488) (xy 123.790698 94.213147) (xy 123.790176 94.205587) (xy 123.789862 94.197809)
(xy 123.789758 94.189813) (xy 123.789861 94.181488) (xy 123.79017 94.173397) (xy 123.790685 94.16554)
(xy 123.791406 94.157916) (xy 123.792334 94.150526) (xy 123.793467 94.14337) (xy 123.794807 94.136448)
(xy 123.796352 94.12976) (xy 123.798104 94.123305) (xy 123.800062 94.117084) (xy 123.802226 94.111097)
(xy 123.804596 94.105343) (xy 123.807172 94.099823) (xy 123.809954 94.094537) (xy 123.812942 94.089485)
(xy 123.816136 94.084666) (xy 123.819517 94.080112) (xy 123.823066 94.075851) (xy 123.826783 94.071884)
(xy 123.830668 94.06821) (xy 123.834721 94.064831) (xy 123.838942 94.061746) (xy 123.843331 94.058954)
(xy 123.847888 94.056456) (xy 123.852612 94.054252) (xy 123.857505 94.052342) (xy 123.862565 94.050726)
(xy 123.867793 94.049404) (xy 123.87319 94.048375) (xy 123.878754 94.047641) (xy 123.884486 94.0472)
)
)
(polygon
(pts
(xy 123.342793 94.203368) (xy 123.614269 94.203368) (xy 123.613981 94.210393) (xy 123.613481 94.217239)
(xy 123.612771 94.223906) (xy 123.61185 94.230395) (xy 123.610718 94.236706) (xy 123.609375 94.242838)
(xy 123.607821 94.248792) (xy 123.606057 94.254568) (xy 123.604081 94.260165) (xy 123.601895 94.265583)
(xy 123.599498 94.270824) (xy 123.59689 94.275886) (xy 123.594071 94.280769) (xy 123.591041 94.285474)
(xy 123.587801 94.290001) (xy 123.58435 94.294349) (xy 123.580709 94.298475) (xy 123.5769 94.302334)
(xy 123.572924 94.305928) (xy 123.568779 94.309255) (xy 123.564467 94.312316) (xy 123.559986 94.315111)
(xy 123.555338 94.31764) (xy 123.550522 94.319903) (xy 123.545538 94.321899) (xy 123.540386 94.323629)
(xy 123.535066 94.325093) (xy 123.529578 94.326291) (xy 123.523922 94.327223) (xy 123.518099 94.327888)
(xy 123.512107 94.328288) (xy 123.505948 94.328421) (xy 123.497171 94.328146) (xy 123.488761 94.327322)
(xy 123.480719 94.325948) (xy 123.473043 94.324024) (xy 123.465736 94.321551) (xy 123.458795 94.318529)
(xy 123.452222 94.314957) (xy 123.446017 94.310835) (xy 123.440178 94.306164) (xy 123.434707 94.300943)
(xy 123.429603 94.295173) (xy 123.424867 94.288853) (xy 123.420497 94.281984) (xy 123.416496 94.274565)
(xy 123.412861 94.266597) (xy 123.409594 94.258079) (xy 123.350487 94.258079) (xy 123.35201 94.265365)
(xy 123.353769 94.272447) (xy 123.355765 94.279325) (xy 123.357997 94.285999) (xy 123.360467 94.292468)
(xy 123.363172 94.298734) (xy 123.366115 94.304795) (xy 123.369294 94.310652) (xy 123.372709 94.316305)
(xy 123.376361 94.321754) (xy 123.38025 94.326998) (xy 123.384376 94.332038) (xy 123.388738 94.336875)