-
Notifications
You must be signed in to change notification settings - Fork 0
/
posey-usb.kicad_pcb
11066 lines (11055 loc) · 409 KB
/
posey-usb.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 20211014) (generator pcbnew)
(general
(thickness 1.600199)
)
(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)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen") (color "White"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Purple") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 0.491733) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.0175))
(layer "dielectric 2" (type "prepreg") (thickness 0.491733) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.0175))
(layer "dielectric 3" (type "core") (thickness 0.491733) (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") (color "Purple") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen") (color "White"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0.254)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(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 0)
(scaleselection 1)
(outputdirectory "output/")
)
)
(net 0 "")
(net 1 "5V")
(net 2 "GND")
(net 3 "3.3V")
(net 4 "SDA")
(net 5 "SCL")
(net 6 "unconnected-(J-Link1-Pad2)")
(net 7 "unconnected-(J-Link1-Pad3)")
(net 8 "unconnected-(J-Link1-Pad5)")
(net 9 "SWDIO")
(net 10 "SWCLK")
(net 11 "unconnected-(J-Link1-Pad11)")
(net 12 "SWO")
(net 13 "nRESET")
(net 14 "unconnected-(J-Link1-Pad17)")
(net 15 "unconnected-(J1-PadA6)")
(net 16 "unconnected-(J1-PadB6)")
(footprint "Connector_JST:JST_SH_BM04B-SRSS-TB_1x04-1MP_P1.00mm_Vertical" (layer "F.Cu")
(tedit 6217FD64) (tstamp 11208d3d-93cc-4480-9198-c8f73fddc6d7)
(at 137.668 85.344)
(descr "JST SH series connector, BM04B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator")
(tags "connector JST SH side entry")
(property "Sheetfile" "posey-usb.kicad_sch")
(property "Sheetname" "")
(path "/cc471f02-6778-48ba-9e19-1ba1c5d227f9")
(attr smd)
(fp_text reference "I2C1" (at 4.699 -0.127 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eb83440d-aa8b-4a1e-9e93-00cf0de78de9)
)
(fp_text value "I2C" (at 0 3.3) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 644ebc55-9b92-49bd-8dfa-8a3a0dd8d76d)
)
(fp_text user "${REFERENCE}" (at 0 -0.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1cbbfee4-06dd-44ee-af91-d336edf2459c)
)
(fp_line (start -2.06 1.11) (end -2.06 2.1) (layer "F.SilkS") (width 0.12) (tstamp 5ef603f2-8407-4088-9f29-0b64dd4b046f))
(fp_line (start -1.94 -2.01) (end 1.94 -2.01) (layer "F.SilkS") (width 0.12) (tstamp 76ee303c-1cfc-45a8-ae72-af3efaba6c47))
(fp_line (start 3.11 -0.04) (end 3.11 1.11) (layer "F.SilkS") (width 0.12) (tstamp 872313a4-03e6-4e4a-b850-f54dcb50f9fc))
(fp_line (start -3.11 -0.04) (end -3.11 1.11) (layer "F.SilkS") (width 0.12) (tstamp bce25bd3-0fe5-4c8f-bd6c-39e2d62ee70a))
(fp_line (start -3.11 1.11) (end -2.06 1.11) (layer "F.SilkS") (width 0.12) (tstamp dd4f23cd-8f89-457c-8b93-3828f8c20a8d))
(fp_line (start 3.11 1.11) (end 2.06 1.11) (layer "F.SilkS") (width 0.12) (tstamp f8e9fc00-8f60-4688-b1c9-6de1e4c0c204))
(fp_line (start -3.9 2.6) (end 3.9 2.6) (layer "F.CrtYd") (width 0.05) (tstamp 6ee71a3c-fedb-4cc6-a3c6-f3d6f3ac6767))
(fp_line (start -3.9 -2.6) (end -3.9 2.6) (layer "F.CrtYd") (width 0.05) (tstamp 741879e3-3045-40c7-849d-7f437c35ee91))
(fp_line (start 3.9 -2.6) (end -3.9 -2.6) (layer "F.CrtYd") (width 0.05) (tstamp ac81fb15-6f1a-451b-a962-fb87ffd26f6b))
(fp_line (start 3.9 2.6) (end 3.9 -2.6) (layer "F.CrtYd") (width 0.05) (tstamp e4d60aa0-829b-452e-a0b4-f0b282cbe2f3))
(fp_line (start 1.65 -0.95) (end 1.65 -1.55) (layer "F.Fab") (width 0.1) (tstamp 03d57b22-a0ad-4d3d-9d1c-5573371e6c2f))
(fp_line (start -1.35 -1.55) (end -1.65 -1.55) (layer "F.Fab") (width 0.1) (tstamp 06b6db7e-5210-41ec-a47b-0127ebbe0786))
(fp_line (start 0.35 -0.95) (end 0.65 -0.95) (layer "F.Fab") (width 0.1) (tstamp 0fe3ebe2-61a9-477a-a657-d783c4c4d70e))
(fp_line (start 1.35 -0.95) (end 1.65 -0.95) (layer "F.Fab") (width 0.1) (tstamp 159c8092-f459-40eb-b409-c2cace814e6e))
(fp_line (start -1.5 0.292893) (end -1 1) (layer "F.Fab") (width 0.1) (tstamp 2949af22-2432-469e-9f07-eee60be8acbd))
(fp_line (start 3 1) (end 3 -1.9) (layer "F.Fab") (width 0.1) (tstamp 356199c8-c0f7-4995-bef0-53ad752a30c5))
(fp_line (start -1.35 -0.95) (end -1.35 -1.55) (layer "F.Fab") (width 0.1) (tstamp 39614f9f-2df5-492b-a093-45b7a48e295d))
(fp_line (start -3 1) (end 3 1) (layer "F.Fab") (width 0.1) (tstamp 3997254a-8057-4464-ba07-e37f0720cbd8))
(fp_line (start -2 1) (end -1.5 0.292893) (layer "F.Fab") (width 0.1) (tstamp 3cfddd47-0913-4692-89bb-8a69d22be5a7))
(fp_line (start -0.65 -1.55) (end -0.65 -0.95) (layer "F.Fab") (width 0.1) (tstamp 3f9f133b-59b8-4791-b0ab-6fa861da9e3f))
(fp_line (start -1.65 -0.95) (end -1.35 -0.95) (layer "F.Fab") (width 0.1) (tstamp 56bbedad-6259-4443-b321-0ffa1f89c336))
(fp_line (start 0.65 -0.95) (end 0.65 -1.55) (layer "F.Fab") (width 0.1) (tstamp 7983b95c-14e4-4dec-ab4e-09c81071d9de))
(fp_line (start 0.65 -1.55) (end 0.35 -1.55) (layer "F.Fab") (width 0.1) (tstamp 832b1e20-f118-4505-ad00-93c040f2f83d))
(fp_line (start 1.35 -1.55) (end 1.35 -0.95) (layer "F.Fab") (width 0.1) (tstamp 85621d90-361e-49b6-9449-b54a16cce021))
(fp_line (start 1.65 -1.55) (end 1.35 -1.55) (layer "F.Fab") (width 0.1) (tstamp 86f6faec-7eee-404c-a73a-2ae625f33d8c))
(fp_line (start -0.35 -1.55) (end -0.65 -1.55) (layer "F.Fab") (width 0.1) (tstamp 8eacb9d3-c41d-4b39-abd1-0bc8f2e97411))
(fp_line (start 0.35 -1.55) (end 0.35 -0.95) (layer "F.Fab") (width 0.1) (tstamp 90337a8b-a8c5-48e1-ad0f-b0e67716fe3c))
(fp_line (start -1.65 -1.55) (end -1.65 -0.95) (layer "F.Fab") (width 0.1) (tstamp a9ff0621-eacb-4187-ba89-29f236eec881))
(fp_line (start -0.35 -0.95) (end -0.35 -1.55) (layer "F.Fab") (width 0.1) (tstamp b4afdd30-7a78-4cd8-8670-bb6dd787dcdc))
(fp_line (start -0.65 -0.95) (end -0.35 -0.95) (layer "F.Fab") (width 0.1) (tstamp cb0f5a26-0827-4807-aea7-55b25947b9d5))
(fp_line (start -3 -1.9) (end 3 -1.9) (layer "F.Fab") (width 0.1) (tstamp d3db736b-0e33-4126-b950-5488923df40e))
(fp_line (start -3 1) (end -3 -1.9) (layer "F.Fab") (width 0.1) (tstamp f46fb303-7470-41c0-b6e8-4553c1d6503f))
(pad "1" smd roundrect (at -1.5 1.325) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 59058a09-f800-497d-b8e1-cdf9632c6766))
(pad "1" smd roundrect (at 2.799999 -1.2) (size 1.2 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 844f01a0-ac23-4a99-910e-4e91c579bb2b))
(pad "1" smd roundrect (at -2.799999 -1.2) (size 1.2 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp c2e901e5-a4cd-4374-af38-0566255ecbea))
(pad "2" smd roundrect (at -0.5 1.325) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "3.3V") (pinfunction "Pin_2") (pintype "passive") (tstamp 7c11b885-29b4-4eb2-b782-dde8e3724f0c))
(pad "3" smd roundrect (at 0.5 1.325) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "SDA") (pinfunction "Pin_3") (pintype "passive") (tstamp 33891c62-a79f-4243-b776-6be292690ac3))
(pad "4" smd roundrect (at 1.5 1.325) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "SCL") (pinfunction "Pin_4") (pintype "passive") (tstamp 9ed54841-4bec-491f-817d-b7e8b25ca06c))
(model "/Users/awertz/Google/Personal/Grad School/Research/Projects/StickerNet/Sticky/posey-hardware/posey-libs/ics/JST-BM04B-SRSS-TB/BM04B-SRSS-TB-LF--SN---3DModel-STEP-56544.STEP"
(offset (xyz 0 0.381 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "Connector_IDC:IDC-Header_2x10_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5EAC9A07) (tstamp 49c57148-01c6-4750-8822-5671bf7c6e37)
(at 138.6586 118.8212 180)
(descr "Through hole IDC box header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0")
(tags "Through hole vertical IDC box header THT 2x10 2.54mm double row")
(property "Sheetfile" "posey-usb.kicad_sch")
(property "Sheetname" "")
(path "/051fa2c6-6ea5-43cc-9239-90eb52c4e479")
(attr through_hole)
(fp_text reference "J-Link1" (at 1.27 -6.1468) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 82daa7b1-7872-47ea-b9a5-b57c52772efe)
)
(fp_text value "J-Link" (at 1.27 28.96) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b3f01461-157b-4208-af16-6fade283f6a8)
)
(fp_text user "${REFERENCE}" (at 1.27 11.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 38af6fdb-517d-4d97-b6a9-a4573e9a44f4)
)
(fp_line (start -4.68 0.5) (end -3.68 0) (layer "F.SilkS") (width 0.12) (tstamp 174a1239-9df2-4a2f-8d2b-4623bf39b735))
(fp_line (start -1.98 13.48) (end -3.29 13.48) (layer "F.SilkS") (width 0.12) (tstamp 1c18ba37-5d8d-4684-bd8f-d743c957b29a))
(fp_line (start -3.68 0) (end -4.68 -0.5) (layer "F.SilkS") (width 0.12) (tstamp 2c888247-c556-4e8e-b877-614533bbbd06))
(fp_line (start -1.98 9.38) (end -1.98 -3.91) (layer "F.SilkS") (width 0.12) (tstamp 4dd03ec8-aef4-445d-b21c-865cefca1016))
(fp_line (start -1.98 -3.91) (end 4.52 -3.91) (layer "F.SilkS") (width 0.12) (tstamp 533f3e31-75fb-43e6-84ac-827333881986))
(fp_line (start 5.83 28.07) (end -3.29 28.07) (layer "F.SilkS") (width 0.12) (tstamp 5dd7008b-7339-4a06-98f3-38922014c03b))
(fp_line (start -4.68 -0.5) (end -4.68 0.5) (layer "F.SilkS") (width 0.12) (tstamp 66f0cf96-127f-4c09-9827-b3e4b221de9f))
(fp_line (start 4.52 26.77) (end -1.98 26.77) (layer "F.SilkS") (width 0.12) (tstamp 6c5b4f08-2cb0-4453-9dca-7e66e1751faf))
(fp_line (start 4.52 -3.91) (end 4.52 26.77) (layer "F.SilkS") (width 0.12) (tstamp 9baca6c9-7d6d-43a6-98f0-f8c0adc254af))
(fp_line (start -3.29 28.07) (end -3.29 -5.21) (layer "F.SilkS") (width 0.12) (tstamp a55ad54c-c6e4-476d-a4ff-9baada2d9a2f))
(fp_line (start -3.29 9.38) (end -1.98 9.38) (layer "F.SilkS") (width 0.12) (tstamp a8b2e881-2bf2-46f9-9d88-6a59452a0bb2))
(fp_line (start 5.83 -5.21) (end 5.83 28.07) (layer "F.SilkS") (width 0.12) (tstamp b5bbe6c1-00b2-4cdb-b158-171fe1e1bdd7))
(fp_line (start -3.29 -5.21) (end 5.83 -5.21) (layer "F.SilkS") (width 0.12) (tstamp bccb38ba-dbbc-4d0e-b0fc-9f7291855a47))
(fp_line (start -1.98 13.48) (end -1.98 13.48) (layer "F.SilkS") (width 0.12) (tstamp c83583e9-cf8f-4ea4-8a98-a1f92c89d827))
(fp_line (start -1.98 26.77) (end -1.98 13.48) (layer "F.SilkS") (width 0.12) (tstamp d7f0d190-5356-45e6-ac5a-5a024199146c))
(fp_line (start 6.22 -5.6) (end -3.68 -5.6) (layer "F.CrtYd") (width 0.05) (tstamp 02efe948-34ba-4203-a43f-1c43a1880771))
(fp_line (start 6.22 28.46) (end 6.22 -5.6) (layer "F.CrtYd") (width 0.05) (tstamp 1599ea45-6987-4eb2-9585-1ba52f8215b2))
(fp_line (start -3.68 -5.6) (end -3.68 28.46) (layer "F.CrtYd") (width 0.05) (tstamp 2a3372ad-def5-42a6-ae0f-f50c3bffde7e))
(fp_line (start -3.68 28.46) (end 6.22 28.46) (layer "F.CrtYd") (width 0.05) (tstamp 35cc5ab3-0424-4cde-a4b7-dd08e1c0b3de))
(fp_line (start -1.98 26.77) (end -1.98 13.48) (layer "F.Fab") (width 0.1) (tstamp 0fc8f2bf-775b-468f-b771-b07e2deb52e6))
(fp_line (start 5.72 -5.1) (end 5.72 27.96) (layer "F.Fab") (width 0.1) (tstamp 155e243d-6b91-474e-a6a3-562f0e2b662e))
(fp_line (start 4.52 -3.91) (end 4.52 26.77) (layer "F.Fab") (width 0.1) (tstamp 189e5e2e-7be4-4e62-acdb-68c237cae7cc))
(fp_line (start 4.52 26.77) (end -1.98 26.77) (layer "F.Fab") (width 0.1) (tstamp 3fa8cd69-a4a5-4318-8b15-5b64f8cb3c8d))
(fp_line (start -1.98 13.48) (end -3.18 13.48) (layer "F.Fab") (width 0.1) (tstamp 4ad88fa0-be56-49b3-9cba-4c55720b8f97))
(fp_line (start -2.18 -5.1) (end 5.72 -5.1) (layer "F.Fab") (width 0.1) (tstamp 84aa6bd8-7520-4429-8225-3f819f91c146))
(fp_line (start -1.98 13.48) (end -1.98 13.48) (layer "F.Fab") (width 0.1) (tstamp 942e4b09-5ec2-488e-8aed-66ce3e128e84))
(fp_line (start -1.98 9.38) (end -1.98 -3.91) (layer "F.Fab") (width 0.1) (tstamp ac475e65-346e-4881-ab93-44e9828f4de8))
(fp_line (start -3.18 9.38) (end -1.98 9.38) (layer "F.Fab") (width 0.1) (tstamp d974e036-e347-4a0b-b1e3-9787ee7c1a5d))
(fp_line (start -3.18 27.96) (end -3.18 -4.1) (layer "F.Fab") (width 0.1) (tstamp dd2723e1-68d1-4422-b580-8c35c98e94b8))
(fp_line (start -1.98 -3.91) (end 4.52 -3.91) (layer "F.Fab") (width 0.1) (tstamp dec28c49-5bcd-4b58-a599-737c4f52f0d9))
(fp_line (start 5.72 27.96) (end -3.18 27.96) (layer "F.Fab") (width 0.1) (tstamp e9c34b06-dc8f-4929-9fd0-544147767c05))
(fp_line (start -3.18 -4.1) (end -2.18 -5.1) (layer "F.Fab") (width 0.1) (tstamp fb12d761-5857-42b9-951b-872591c22429))
(pad "1" thru_hole roundrect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (roundrect_rratio 0.1470588235)
(net 3 "3.3V") (pinfunction "Pin_1") (pintype "passive") (tstamp f1186242-bfa0-4d12-8044-3c3315a173bb))
(pad "2" thru_hole circle (at 2.54 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "unconnected-(J-Link1-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 3265fb9e-8aae-44a7-b365-7a7239190dc4))
(pad "3" thru_hole circle (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 "unconnected-(J-Link1-Pad3)") (pinfunction "Pin_3") (pintype "passive") (tstamp 55c2e13b-5817-42d8-8939-3f42eb2485d8))
(pad "4" thru_hole circle (at 2.54 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp 611203df-a2a7-4c98-bcae-de178a4159ce))
(pad "5" thru_hole circle (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "unconnected-(J-Link1-Pad5)") (pinfunction "Pin_5") (pintype "passive") (tstamp 3174f468-764f-4d0f-b61b-731ea97b82aa))
(pad "6" thru_hole circle (at 2.54 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_6") (pintype "passive") (tstamp 801a56f3-308e-4133-be9d-ff5c40c1b077))
(pad "7" thru_hole circle (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "SWDIO") (pinfunction "Pin_7") (pintype "passive") (tstamp fcd551a9-8926-44d7-8e49-9c8dcd99e1bd))
(pad "8" thru_hole circle (at 2.54 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_8") (pintype "passive") (tstamp 98e889dd-176e-482f-9a92-7233194a7da4))
(pad "9" thru_hole circle (at 0 10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "SWCLK") (pinfunction "Pin_9") (pintype "passive") (tstamp 59060c06-e129-4b68-b81c-fb59d022610f))
(pad "10" thru_hole circle (at 2.54 10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_10") (pintype "passive") (tstamp 044066b2-def5-4a92-aedc-299ed12df8c9))
(pad "11" thru_hole circle (at 0 12.7 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 "unconnected-(J-Link1-Pad11)") (pinfunction "Pin_11") (pintype "passive") (tstamp e29e0e16-79a3-4638-9968-a0a8c12ad75f))
(pad "12" thru_hole circle (at 2.54 12.7 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_12") (pintype "passive") (tstamp 4f30c721-181e-45a6-84a3-7c697aec8d13))
(pad "13" thru_hole circle (at 0 15.24 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 "SWO") (pinfunction "Pin_13") (pintype "passive") (tstamp 4d6f8aa1-b1e3-4e75-9f77-13c73f38119e))
(pad "14" thru_hole circle (at 2.54 15.24 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_14") (pintype "passive") (tstamp bc004d9b-d9f2-492d-b3ce-9d84d4596e02))
(pad "15" thru_hole circle (at 0 17.78 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 "nRESET") (pinfunction "Pin_15") (pintype "passive") (tstamp 16b49f38-385c-4e1f-9aa7-0c41194ecd8b))
(pad "16" thru_hole circle (at 2.54 17.78 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_16") (pintype "passive") (tstamp 860bf227-5b93-4f98-8792-904c253127ef))
(pad "17" thru_hole circle (at 0 20.32 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "unconnected-(J-Link1-Pad17)") (pinfunction "Pin_17") (pintype "passive") (tstamp 4df24d58-ed83-4936-9eb8-b0a156f5790b))
(pad "18" thru_hole circle (at 2.54 20.32 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_18") (pintype "passive") (tstamp 8f08f144-9ce2-48dc-b7eb-31ab49effa38))
(pad "19" thru_hole circle (at 0 22.86 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "5V") (pinfunction "Pin_19") (pintype "passive") (tstamp cbf113a7-4c65-4ddd-9b38-b8eafc899f92))
(pad "20" thru_hole circle (at 2.54 22.86 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_20") (pintype "passive") (tstamp 15f71187-7a24-4f97-84e6-799a44b06ecf))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x10_P2.54mm_Vertical.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "posey:CUI_PJ-002A" (layer "F.Cu")
(tedit 6218121E) (tstamp e4a3746c-c7d0-48df-b504-cee06d6d638c)
(at 137.414 78.994 90)
(property "Sheetfile" "posey-usb.kicad_sch")
(property "Sheetname" "")
(path "/d8c595e1-ec68-47fa-969e-04fb7da46150")
(attr through_hole)
(fp_text reference "5V" (at 8.636 -5.588 90) (layer "F.SilkS")
(effects (font (size 1.000827 1.000827) (thickness 0.15)))
(tstamp 9349d65a-74fc-4a8b-818a-59523b7b2385)
)
(fp_text value "PJ-002A" (at 6.302433 5.78184 90) (layer "F.Fab")
(effects (font (size 1.001181 1.001181) (thickness 0.15)))
(tstamp 5e8e93af-8cde-4d43-a7f7-88625708a6b0)
)
(fp_line (start 13.7 4.5) (end -0.7 4.5) (layer "F.SilkS") (width 0.127) (tstamp 29bc68ae-9f3f-4867-97ca-9c3a3738ec64))
(fp_line (start 5.55 -4.5) (end 13.7 -4.5) (layer "F.SilkS") (width 0.127) (tstamp 2e56f8e7-6143-4c2e-be33-9a3618d7c247))
(fp_line (start -0.7 4.5) (end -0.7 2.65) (layer "F.SilkS") (width 0.127) (tstamp 47b1e1c5-2e9d-44b9-8595-5b72390c6d16))
(fp_line (start -0.7 -2.55) (end -0.7 -4.5) (layer "F.SilkS") (width 0.127) (tstamp 4eaad24f-14fa-4091-b7f1-2ebd525d7852))
(fp_line (start 13.7 -4.5) (end 13.7 4.5) (layer "F.SilkS") (width 0.127) (tstamp 8b004dfa-d99e-4b8b-bcb6-4336efd436fb))
(fp_line (start -0.7 -4.5) (end 0.45 -4.5) (layer "F.SilkS") (width 0.127) (tstamp af36c23d-401e-438b-98c4-32b34494fa02))
(fp_circle (center -2 0) (end -1.8 0) (layer "F.SilkS") (width 0.4) (fill none) (tstamp 494518d4-6fca-4532-8c23-5b7124a97c2b))
(fp_line (start -1.55 2.35) (end -1 2.35) (layer "F.CrtYd") (width 0.05) (tstamp 0cf10e81-77f2-4ce6-aa45-51fb0a120db7))
(fp_line (start -1 -2.25) (end -1.55 -2.25) (layer "F.CrtYd") (width 0.05) (tstamp 188ddbc6-cbd1-41dd-9970-24797355cbc7))
(fp_line (start 14 4.75) (end -1 4.75) (layer "F.CrtYd") (width 0.05) (tstamp 314bef62-1dba-4eb3-a55b-6e267121e18b))
(fp_line (start 5.55 -6.1) (end 5.55 -4.75) (layer "F.CrtYd") (width 0.05) (tstamp 3e14f3c0-eada-4db6-a2cc-31528479b5b2))
(fp_line (start -1 4.75) (end -1 2.35) (layer "F.CrtYd") (width 0.05) (tstamp 853865f8-84e9-4c93-a9d3-2ea44f6099c7))
(fp_line (start 0.45 -4.75) (end 0.45 -6.1) (layer "F.CrtYd") (width 0.05) (tstamp 8946ad58-ae59-41f0-ad06-173de2f2bd43))
(fp_line (start -1 -2.25) (end -1 -4.75) (layer "F.CrtYd") (width 0.05) (tstamp afa14d96-a8f1-484f-85b6-cded3b7d069e))
(fp_line (start 0.45 -6.1) (end 5.55 -6.1) (layer "F.CrtYd") (width 0.05) (tstamp b4abb7fb-5ad2-441a-8ff6-43f79f7deb76))
(fp_line (start -1 -4.75) (end 0.45 -4.75) (layer "F.CrtYd") (width 0.05) (tstamp cb239c43-c780-49a8-85a1-e07bb0ee71ba))
(fp_line (start 5.55 -4.75) (end 14 -4.75) (layer "F.CrtYd") (width 0.05) (tstamp d50bfbbb-4423-40e9-8d62-7afe4cd746b7))
(fp_line (start -1.55 -2.25) (end -1.55 2.35) (layer "F.CrtYd") (width 0.05) (tstamp f1004b9b-86ae-44eb-9aea-3b9c9c881eee))
(fp_line (start 14 -4.75) (end 14 4.75) (layer "F.CrtYd") (width 0.05) (tstamp fb2b5a24-3931-47af-a40c-965fbb3f3644))
(fp_line (start 13.7 4.5) (end -0.7 4.5) (layer "F.Fab") (width 0.127) (tstamp 2f6d9a87-414a-47e5-bae6-7cc648dba100))
(fp_line (start 13.7 -4.5) (end 13.7 4.5) (layer "F.Fab") (width 0.127) (tstamp da7dc54e-4485-4551-8be4-3ea4bd621cc3))
(fp_line (start -0.7 4.5) (end -0.7 -4.5) (layer "F.Fab") (width 0.127) (tstamp dce0e72b-579a-4edf-930e-9d6ad347471b))
(fp_line (start -0.7 -4.5) (end 13.7 -4.5) (layer "F.Fab") (width 0.127) (tstamp e45484d3-ab76-445f-8026-12e463cb635c))
(pad "1" thru_hole oval (at 0 0 90) (size 2.5 5) (drill oval 1 3.5) (layers *.Cu *.Mask)
(net 1 "5V") (pintype "power_in") (tstamp f80bc648-b73a-4f09-a2a1-86fd134a2b88))
(pad "2" thru_hole oval (at 6 0 90) (size 2.25 4.5) (drill oval 1 3) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "power_in") (tstamp dec64011-75f6-45bb-a64c-56b73f2cb6b8))
(pad "3" thru_hole oval (at 3 -4.7 90) (size 4.5 2.25) (drill oval 3 1) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "power_in") (tstamp d18da0d9-fa1d-45b7-95ac-6091e827e3cf))
(model "/Users/awertz/Google/Personal/Grad School/Research/Projects/StickerNet/Sticky/posey-hardware/posey-libs/ics/PJ-002A/PJ-002A.step"
(offset (xyz 6.858 0 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 -90))
)
)
(footprint "posey:TE_2305018-2_USBC_Recepticle" (layer "F.Cu")
(tedit 6217D807) (tstamp efa3fb8b-29a9-4aa1-b4f8-ac85d2dbbc0b)
(at 137.287 132.334)
(property "Sheetfile" "posey-usb.kicad_sch")
(property "Sheetname" "")
(path "/19acb7d9-4c9e-45eb-bc49-feeafbc9895a")
(attr through_hole)
(fp_text reference "J1" (at 0.127 -5.334) (layer "F.SilkS")
(effects (font (size 0.641101 0.641101) (thickness 0.15)))
(tstamp 7837314d-6a7c-4042-82ee-db4e5e968ccc)
)
(fp_text value "USB-C Recp TE-2305018-2" (at -0.123382 4.850714) (layer "F.Fab")
(effects (font (size 0.640939 0.640939) (thickness 0.15)))
(tstamp 5703d352-0fdf-44a6-8ca2-4e6423d983ef)
)
(fp_line (start -4.925 1.4) (end -4.925 1.23125) (layer "F.SilkS") (width 0.127) (tstamp 07d0143e-a2b4-43fa-a045-c0ddbd974b88))
(fp_line (start -4.925 -4.45) (end 4.925 -4.45) (layer "F.SilkS") (width 0.127) (tstamp 234a98d8-c2cc-4ed5-b6f5-a0777d1aa6a0))
(fp_line (start 4.925 1.4) (end 4.925 1.23125) (layer "F.SilkS") (width 0.127) (tstamp 524a76a2-2e26-49da-86c1-cf8a042c1b72))
(fp_line (start -4.925 -1.23125) (end -4.925 -2.15469) (layer "F.SilkS") (width 0.127) (tstamp 58a98eca-df80-4202-b69c-04851f733799))
(fp_line (start -4.925 -4.30938) (end -4.925 -4.45) (layer "F.SilkS") (width 0.127) (tstamp 62a06f47-6536-4260-9a73-f4cc794abfdc))
(fp_line (start 4.925 -1.23125) (end 4.925 -2.15469) (layer "F.SilkS") (width 0.127) (tstamp 93623e2f-2cba-48e4-98ca-033644e49171))
(fp_line (start 4.925 1.4) (end -4.925 1.4) (layer "F.SilkS") (width 0.127) (tstamp b8fcf0d9-8334-402b-afa9-c78f69775941))
(fp_line (start 4.925 -4.30938) (end 4.925 -4.45) (layer "F.SilkS") (width 0.127) (tstamp ecc4360f-7d5c-489d-9053-a7edd28651bf))
(fp_circle (center -3.085 -4.907) (end -2.985 -4.907) (layer "F.SilkS") (width 0.2) (fill none) (tstamp 1296c2e4-0f70-4619-9c12-8a8a65b945ab))
(fp_line (start 5.175 -4.7) (end 5.175 4.45) (layer "F.CrtYd") (width 0.05) (tstamp 226c306b-a267-477c-9842-4549e69e8698))
(fp_line (start 5.175 4.45) (end -5.175 4.45) (layer "F.CrtYd") (width 0.05) (tstamp 35359760-e67e-4a1d-a4b0-4284c348eed9))
(fp_line (start -5.175 -4.7) (end 5.175 -4.7) (layer "F.CrtYd") (width 0.05) (tstamp 6bc41c00-8fd6-4768-9062-da499eff25f6))
(fp_line (start -5.175 4.45) (end -5.175 -4.7) (layer "F.CrtYd") (width 0.05) (tstamp f587f937-7e45-4b25-b95e-c0978af96097))
(fp_line (start 4.925 -4.45) (end 4.925 4.2) (layer "F.Fab") (width 0.127) (tstamp 24caa14e-6d26-4d17-afd5-7d5def6e9fe6))
(fp_line (start -4.925 4.2) (end -4.925 -4.45) (layer "F.Fab") (width 0.127) (tstamp 856a330a-02d7-44c1-9972-537f2333380c))
(fp_line (start -4.925 4.2) (end 4.925 4.2) (layer "F.Fab") (width 0.127) (tstamp a336485b-cf1f-4f5c-9513-5adbfd9e87f0))
(fp_line (start -4.925 -4.45) (end 4.925 -4.45) (layer "F.Fab") (width 0.127) (tstamp bb880ddf-8d0e-475f-bf34-e63e967c26e3))
(pad "A1" smd rect (at -3.05 -3.375) (size 0.25 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GNDA") (pintype "passive") (tstamp 4c90efb9-a99d-44b9-8990-43fa3309b8d2))
(pad "A2" smd rect (at -2.25 -3.375) (size 0.25 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "SDA") (pinfunction "TX1_P") (pintype "passive") (tstamp 9a8b68c6-b34a-4fe4-8c58-e1832272a830))
(pad "A3" smd rect (at -1.75 -3.375) (size 0.25 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "SCL") (pinfunction "TX1_N") (pintype "passive") (tstamp 24ba388c-bfe8-4edd-bec5-a899b362b1d0))
(pad "A4" smd rect (at -1.25 -3.375) (size 0.25 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "5V") (pinfunction "VBUS_A") (pintype "passive") (tstamp 6d6ff43e-31bf-4f8a-bce0-733142397aad))
(pad "A5" smd rect (at -0.75 -3.375) (size 0.25 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "3.3V") (pinfunction "CC1") (pintype "passive") (tstamp 5ac746f3-7972-4d74-adf1-06d25cc6501f))
(pad "A6" smd rect (at -0.25 -3.375) (size 0.25 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "unconnected-(J1-PadA6)") (pinfunction "DA_P") (pintype "passive") (tstamp fe846577-78fc-40f4-95da-3b280d3513cd))
(pad "A7" smd rect (at 0.25 -3.375) (size 0.25 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "SWO") (pinfunction "DA_N") (pintype "passive") (tstamp e877e574-a572-406d-bbe1-53e2374e2195))
(pad "A8" smd rect (at 0.75 -3.375) (size 0.25 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "nRESET") (pinfunction "SBU1") (pintype "passive") (tstamp 8899823b-849a-42d7-bcd6-18cb543221a4))
(pad "A9" smd rect (at 1.25 -3.375) (size 0.25 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "5V") (pinfunction "VBUS_A") (pintype "passive") (tstamp 8aa4baa8-2bc9-487a-be0e-9c33dd165400))
(pad "A10" smd rect (at 1.75 -3.375) (size 0.25 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "SWDIO") (pinfunction "RX2_N") (pintype "passive") (tstamp 328d0957-efa8-40a5-a74e-1c6ee5cf1ce3))
(pad "A11" smd rect (at 2.25 -3.375) (size 0.25 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "SWCLK") (pinfunction "RX2_P") (pintype "passive") (tstamp 2f5362e4-bc6b-4bcf-9a44-f73066996dc1))
(pad "A12" smd rect (at 3.05 -3.375) (size 0.25 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GNDA") (pintype "passive") (tstamp 62d49d71-c353-4fcf-9cc0-67e4db0b8b1a))
(pad "B1" smd rect (at 3 -2.125) (size 0.25 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GNDB") (pintype "passive") (tstamp 757b5f67-e22e-450f-b82f-4d23b6fa38ca))
(pad "B2" smd rect (at 2.5 -2.125) (size 0.25 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "SDA") (pinfunction "TX2_P") (pintype "passive") (tstamp a1e3b941-492a-4d85-815d-1402c7d2fdee))
(pad "B3" smd rect (at 2 -2.125) (size 0.25 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "SCL") (pinfunction "TX2_N") (pintype "passive") (tstamp c8e2364f-6daf-4611-82f6-c5b0109ae725))
(pad "B4" smd rect (at 1.5 -2.125) (size 0.25 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "5V") (pinfunction "VBUS_B") (pintype "passive") (tstamp dd76d2f6-d24d-4d8e-ad34-58343e541f4e))
(pad "B5" smd rect (at 1 -2.125) (size 0.25 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "3.3V") (pinfunction "CC2") (pintype "passive") (tstamp 7df9ffbd-3aa4-4e76-af7e-fcbd102c20ba))
(pad "B6" smd rect (at 0.5 -2.125) (size 0.25 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "unconnected-(J1-PadB6)") (pinfunction "DB_P") (pintype "passive") (tstamp 20c3c801-be13-4f97-81d5-d69d8e2ee3a3))
(pad "B7" smd rect (at -0.5 -2.125) (size 0.25 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "SWO") (pinfunction "DB_N") (pintype "passive") (tstamp 86707e71-fb09-40c1-8383-3fe0a6d469d4))
(pad "B8" smd rect (at -1 -2.125) (size 0.25 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "nRESET") (pinfunction "SBU2") (pintype "passive") (tstamp d69ccd23-d235-4b6f-862d-b720304e6f75))
(pad "B9" smd rect (at -1.5 -2.125) (size 0.25 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "5V") (pinfunction "VBUS_B") (pintype "passive") (tstamp 1b3fc036-2d45-4d4c-a128-1cc140bad6d5))
(pad "B10" smd rect (at -2 -2.125) (size 0.25 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "SWDIO") (pinfunction "RX1_N") (pintype "passive") (tstamp 7e938277-f63f-4c79-89d2-d2604a6529df))
(pad "B11" smd rect (at -2.5 -2.125) (size 0.25 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "SWCLK") (pinfunction "RX1_P") (pintype "passive") (tstamp 4fd3618c-c835-4732-87c8-676ea6c35380))
(pad "B12" smd rect (at -3 -2.125) (size 0.25 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GNDB") (pintype "passive") (tstamp 90cdc243-2a97-4bce-95f3-d7761661388b))
(pad "G1" smd rect (at -3.55 -3.375) (size 0.3 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp b3f6e04c-47e9-46be-b30d-fe1bf7d90655))
(pad "G2" smd rect (at 3.55 -3.375) (size 0.3 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp af7e1be4-1fe7-4c9b-ba0e-598682b32393))
(pad "S1" thru_hole oval (at -4.45 0) (size 1.025 2.05) (drill oval 0.45 1.65) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "SHIELD") (pintype "power_in") (tstamp dcf128c7-0f08-43af-9660-9af73c1ff799))
(pad "S2" thru_hole oval (at 4.45 0) (size 1.025 2.05) (drill oval 0.45 1.65) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "SHIELD") (pintype "power_in") (tstamp edeea8c2-0574-4239-b355-02ea743b4177))
(pad "S3" thru_hole oval (at -4.45 -3.2) (size 0.925 1.85) (drill oval 0.45 1.45) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "SHIELD") (pintype "power_in") (tstamp b17e9114-2722-4cd4-98a4-42d5225fac4d))
(pad "S4" thru_hole oval (at 4.45 -3.2) (size 0.925 1.85) (drill oval 0.45 1.45) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "SHIELD") (pintype "power_in") (tstamp a7504b2a-c078-4b04-8ec4-38526e77e18a))
(model "/Users/awertz/Google/Personal/Grad School/Research/Projects/StickerNet/Sticky/posey-hardware/posey-libs/ics/TE-235018-2/2305018-2_USBC_Recepticle.step"
(offset (xyz 0 -3 1.4))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(gr_line (start 139.954 96.012) (end 140.716 96.012) (layer "F.SilkS") (width 0.15) (tstamp 0eae64bc-5ef4-4fe1-9757-e0be9ce0fbaa))
(gr_line (start 139.954 103.632) (end 140.716 103.632) (layer "F.SilkS") (width 0.15) (tstamp 436b4b18-352a-42fe-85ed-1c4d42d0d43d))
(gr_line (start 139.954 108.712) (end 140.716 108.712) (layer "F.SilkS") (width 0.15) (tstamp 44195288-ed11-4250-bc8f-936e35760028))
(gr_line (start 139.954 111.252) (end 140.716 111.252) (layer "F.SilkS") (width 0.15) (tstamp 53bd0292-07fc-4a2e-b2fd-f9f8651730dc))
(gr_line (start 133.604 108.712) (end 133.604 116.332) (layer "F.SilkS") (width 0.15) (tstamp 5b725381-db8c-42fc-a7a3-017da229b8b2))
(gr_line (start 139.954 118.872) (end 140.716 118.872) (layer "F.SilkS") (width 0.15) (tstamp 88cc3275-c36c-4cb7-a05a-223d5c1b2b42))
(gr_line (start 133.604 96.012) (end 134.62 96.012) (layer "F.SilkS") (width 0.15) (tstamp 93e5169d-f66a-4999-b22c-abf6ecec170f))
(gr_line (start 133.604 96.012) (end 133.604 106.172) (layer "F.SilkS") (width 0.15) (tstamp 9b817b2c-690a-42b2-8a28-61ae45b0efed))
(gr_line (start 133.604 116.332) (end 134.62 116.332) (layer "F.SilkS") (width 0.15) (tstamp 9fe5ab2b-8210-4c80-9ee6-dc140ba7ae3e))
(gr_line (start 139.954 101.092) (end 140.716 101.092) (layer "F.SilkS") (width 0.15) (tstamp f2bd5c6f-ceca-4743-85cc-fd2aa3ce531c))
(gr_rect (start 130.81 67.31) (end 143.764 133.731) (layer "Edge.Cuts") (width 0.1) (fill none) (tstamp 627bc441-ea7f-4636-bc78-cddf8a291211))
(gr_text "3.3V" (at 137.2362 82.0166 90) (layer "F.SilkS") (tstamp 0a0b9666-edec-4247-ae3a-68a02d119ede)
(effects (font (size 0.381 0.381) (thickness 0.0508)))
)
(gr_text "5V" (at 141.1986 95.885 90) (layer "F.SilkS") (tstamp 21b5b691-6f6b-4d59-b857-8af072253355)
(effects (font (size 0.381 0.381) (thickness 0.0508)))
)
(gr_text "nRESET" (at 141.1986 100.8634 90) (layer "F.SilkS") (tstamp 4ed99f35-8734-4fe1-9abc-7c45a1ebea19)
(effects (font (size 0.381 0.381) (thickness 0.0508)))
)
(gr_text "SWCLK" (at 141.1224 108.3564 90) (layer "F.SilkS") (tstamp 52538584-2d1d-4b82-bd86-d30b1955a9e0)
(effects (font (size 0.381 0.381) (thickness 0.0508)))
)
(gr_text "GND" (at 136.1948 82.0166 90) (layer "F.SilkS") (tstamp 585bf202-638b-470e-be12-93fa3939e2d4)
(effects (font (size 0.381 0.381) (thickness 0.0508)))
)
(gr_text "SWO" (at 141.2494 103.5304 90) (layer "F.SilkS") (tstamp 8e8f36bc-5e5e-440e-ad36-81ca013d3541)
(effects (font (size 0.381 0.381) (thickness 0.0508)))
)
(gr_text "3.3V" (at 141.224 118.7958 90) (layer "F.SilkS") (tstamp 97671e02-c929-47a6-bf69-f9d62cfc5e47)
(effects (font (size 0.381 0.381) (thickness 0.0508)))
)
(gr_text "SCL" (at 139.2428 82.0166 90) (layer "F.SilkS") (tstamp a05a52d1-ee5a-4e19-80ca-607a7a4261ef)
(effects (font (size 0.381 0.381) (thickness 0.0508)))
)
(gr_text "SWDIO" (at 141.1732 111.1504 90) (layer "F.SilkS") (tstamp b9ed139a-764f-4ecb-a4a4-b115f36a0df2)
(effects (font (size 0.381 0.381) (thickness 0.0508)))
)
(gr_text "SDA" (at 138.2776 82.0166 90) (layer "F.SilkS") (tstamp c52b833c-5c3c-4e24-899f-daea054ae58b)
(effects (font (size 0.381 0.381) (thickness 0.0508)))
)
(gr_text "GND" (at 133.604 107.4928 90) (layer "F.SilkS") (tstamp cc0fc624-782c-4bc5-97a9-2fd7071d811c)
(effects (font (size 0.381 0.381) (thickness 0.0508)))
)
(dimension (type aligned) (layer "Dwgs.User") (tstamp 099426c5-dae5-4069-bf55-fdf3f2477fb1)
(pts (xy 141.605 65.278) (xy 141.605 67.31))
(height -4.318)
(gr_text "2.03 mm" (at 147.0152 66.294 90) (layer "Dwgs.User") (tstamp 099426c5-dae5-4069-bf55-fdf3f2477fb1)
(effects (font (size 0.381 0.381) (thickness 0.0508)))
)
(format (units 2) (units_format 1) (precision 2))
(style (thickness 0.15) (arrow_length 0.254) (text_position_mode 2) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
)
(segment (start 137.7696 131.953) (end 138.787 130.9356) (width 0.254) (layer "F.Cu") (net 1) (tstamp 06c5e98e-1c42-454f-9b8a-7362b1537f00))
(segment (start 136.1948 131.7498) (end 136.398 131.953) (width 0.254) (layer "F.Cu") (net 1) (tstamp 10f294c3-2226-4af6-bd54-fe03b8a9bf0f))
(segment (start 135.787 131.342) (end 136.1948 131.7498) (width 0.254) (layer "F.Cu") (net 1) (tstamp 581d80f9-c22b-476a-a649-fe11c614c331))
(segment (start 135.787 130.209) (end 135.787 129.58) (width 0.254) (layer "F.Cu") (net 1) (tstamp 65ef55d1-a28b-4a04-941b-9796b3bfeb7e))
(segment (start 135.787 130.209) (end 135.787 131.342) (width 0.254) (layer "F.Cu") (net 1) (tstamp 676dd8f0-4f8b-4008-91b9-3358bcd8c4be))
(segment (start 136.398 131.953) (end 137.2362 131.953) (width 0.254) (layer "F.Cu") (net 1) (tstamp 86771a88-aa95-4c5b-9d61-c96f546382ac))
(segment (start 135.787 129.58) (end 136.037 129.33) (width 0.254) (layer "F.Cu") (net 1) (tstamp 868fc7f4-99ea-4ba3-abc9-a6d9f181312a))
(segment (start 136.037 129.33) (end 136.037 128.959) (width 0.254) (layer "F.Cu") (net 1) (tstamp 988d8f5f-55bd-44f7-949a-fce22dc87132))
(segment (start 138.787 129.838) (end 138.787 130.209) (width 0.254) (layer "F.Cu") (net 1) (tstamp afbb99a5-7e2e-4fc3-b086-4b26edbcfce2))
(segment (start 137.2362 131.953) (end 137.7696 131.953) (width 0.254) (layer "F.Cu") (net 1) (tstamp bee46f9c-7c17-43ac-b737-acb40427588a))
(segment (start 138.787 130.9356) (end 138.787 130.209) (width 0.254) (layer "F.Cu") (net 1) (tstamp d058a89a-392d-4bf8-a34d-676ff2db1f28))
(segment (start 138.537 129.588) (end 138.787 129.838) (width 0.254) (layer "F.Cu") (net 1) (tstamp d36d0eca-707e-4799-bf93-936846c30a04))
(segment (start 138.537 128.959) (end 138.537 129.588) (width 0.254) (layer "F.Cu") (net 1) (tstamp d514896a-9c83-4663-a2a7-673c9ec1f778))
(via (at 142.113 126.5428) (size 0.4572) (drill 0.254) (layers "F.Cu" "B.Cu") (net 1) (tstamp 8fcf3daa-d1a0-4c3a-a9eb-224e04c0de0c))
(via (at 137.2362 131.953) (size 0.4572) (drill 0.254) (layers "F.Cu" "B.Cu") (net 1) (tstamp fa3c36b3-eabc-41a6-95b4-b04db756615e))
(segment (start 142.113 126.5428) (end 138.8872 129.7686) (width 0.508) (layer "In2.Cu") (net 1) (tstamp 11d92d1f-6179-427d-9263-4afb2628d5b3))
(segment (start 138.0998 131.953) (end 137.2362 131.953) (width 0.508) (layer "In2.Cu") (net 1) (tstamp 2b1a6252-3096-498b-8089-a44fc74f1cc1))
(segment (start 138.8872 129.7686) (end 138.8872 131.1656) (width 0.508) (layer "In2.Cu") (net 1) (tstamp 8f18f190-9e69-4968-bda0-50b939cdf535))
(segment (start 138.8872 131.1656) (end 138.0998 131.953) (width 0.508) (layer "In2.Cu") (net 1) (tstamp adf4715a-778a-4114-a853-14f43c4662ba))
(segment (start 142.24 78.994) (end 142.875 79.629) (width 0.508) (layer "B.Cu") (net 1) (tstamp 2fa9f6bf-4057-4bd0-b30b-6f42fc89e65a))
(segment (start 138.6586 95.9612) (end 142.7988 95.9612) (width 0.508) (layer "B.Cu") (net 1) (tstamp 3cf1e37f-5bba-4548-ae94-7b73c1eea37e))
(segment (start 142.875 125.7808) (end 142.113 126.5428) (width 0.508) (layer "B.Cu") (net 1) (tstamp 745b4722-03bd-4e5f-b32f-cdfeb4cdc8bc))
(segment (start 142.7988 95.9612) (end 142.875 95.885) (width 0.508) (layer "B.Cu") (net 1) (tstamp 85b2e09c-d2a6-4959-a5a0-d37fec4847e6))
(segment (start 137.414 78.994) (end 142.24 78.994) (width 0.508) (layer "B.Cu") (net 1) (tstamp a14d3b54-3592-4a29-af28-fa3209394009))
(segment (start 142.875 95.885) (end 142.875 125.7808) (width 0.508) (layer "B.Cu") (net 1) (tstamp bf46ade9-3c14-461c-88f0-8bc7b8523efe))
(segment (start 142.875 79.629) (end 142.875 95.885) (width 0.508) (layer "B.Cu") (net 1) (tstamp dea7a4f2-c44e-4127-85aa-9c5dc57b8a4a))
(segment (start 136.1186 95.9612) (end 136.1186 116.2812) (width 0.508) (layer "F.Cu") (net 2) (tstamp 09b87937-29d9-4de6-8fc5-19b439077470))
(segment (start 134.868001 86.023801) (end 134.868001 84.144) (width 0.508) (layer "F.Cu") (net 2) (tstamp 0e7b40a7-833e-4989-a06e-5276371be4e5))
(segment (start 132.714 75.058) (end 134.778 72.994) (width 0.508) (layer "F.Cu") (net 2) (tstamp 1272ef72-7644-4ebd-af44-d0f51fe22196))
(segment (start 136.168 86.669) (end 136.168 88.749) (width 0.508) (layer "F.Cu") (net 2) (tstamp 24eae37b-2819-4bfa-9630-671e0a78aa07))
(segment (start 131.6928 84.144) (end 131.6736 84.1248) (width 0.508) (layer "F.Cu") (net 2) (tstamp 28201f82-8a99-46ee-aebe-4daf54385874))
(segment (start 141.562 128.959) (end 141.737 129.134) (width 0.254) (layer "F.Cu") (net 2) (tstamp 32ab9812-a740-4c89-b9ae-df323671b997))
(segment (start 131.6736 90.4494) (end 131.6736 84.6836) (width 0.508) (layer "F.Cu") (net 2) (tstamp 46f8c1fd-c3d9-41b4-8562-e667e74f57bd))
(segment (start 134.237 128.959) (end 133.737 128.959) (width 0.254) (layer "F.Cu") (net 2) (tstamp 4c0f9d83-97ac-4cc2-9176-b94ace45f61e))
(segment (start 131.6736 127) (end 131.6736 95.7072) (width 0.508) (layer "F.Cu") (net 2) (tstamp 57c2cc57-03d9-4d92-a014-e619a8cf8b62))
(segment (start 136.168 88.749) (end 134.4676 90.4494) (width 0.508) (layer "F.Cu") (net 2) (tstamp 589d90a0-dd6b-411d-865d-a839d5f6d4b4))
(segment (start 136.1186 95.9612) (end 131.9276 95.9612) (width 0.508) (layer "F.Cu") (net 2) (tstamp 598912fc-a695-4de4-9b30-4dfdc5037ce8))
(segment (start 134.287 130.884) (end 132.837 132.334) (width 0.254) (layer "F.Cu") (net 2) (tstamp 5b2b736f-d01c-4277-a77d-63f90e4ada13))
(segment (start 133.012 128.959) (end 132.837 129.134) (width 0.254) (layer "F.Cu") (net 2) (tstamp 5c3212fb-1cb1-4629-9628-f12eed196dfd))
(segment (start 134.4676 90.4494) (end 131.6736 90.4494) (width 0.508) (layer "F.Cu") (net 2) (tstamp 6338a019-92af-4adb-b91d-79dc1738adc5))
(segment (start 132.714 83.0844) (end 132.714 75.994) (width 0.508) (layer "F.Cu") (net 2) (tstamp 6ac3cde3-1829-46ff-bb56-fcf3bae5d5a4))
(segment (start 134.868001 84.144) (end 131.6928 84.144) (width 0.508) (layer "F.Cu") (net 2) (tstamp 76bee72d-9109-452f-806b-1d368c221737))
(segment (start 131.6736 84.6836) (end 131.6736 84.1248) (width 0.508) (layer "F.Cu") (net 2) (tstamp 77bd6cd0-ed0b-4276-bc66-aeea9374d592))
(segment (start 141.737 132.334) (end 141.737 129.134) (width 0.254) (layer "F.Cu") (net 2) (tstamp 7fe79881-6ef9-432f-b9c4-4c8af4cf33e2))
(segment (start 140.287 130.884) (end 141.737 132.334) (width 0.254) (layer "F.Cu") (net 2) (tstamp 9bb17073-c56f-4194-9c1c-6961e03ad142))
(segment (start 136.168 86.669) (end 135.5132 86.669) (width 0.508) (layer "F.Cu") (net 2) (tstamp a7b8e6a0-e9ed-48d9-b88d-0368d7cc87a9))
(segment (start 134.868001 84.144) (end 140.467999 84.144) (width 0.508) (layer "F.Cu") (net 2) (tstamp ae395a2a-a80c-4aa6-8219-af9584f6d878))
(segment (start 140.837 128.959) (end 141.562 128.959) (width 0.254) (layer "F.Cu") (net 2) (tstamp b57f5173-83a4-43f2-8b60-0cfdaa48e60e))
(segment (start 131.6736 95.7072) (end 131.6736 90.4494) (width 0.508) (layer "F.Cu") (net 2) (tstamp b5e2c7d3-a650-4526-8536-5cca35ee834d))
(segment (start 132.837 132.334) (end 132.837 129.134) (width 0.508) (layer "F.Cu") (net 2) (tstamp b6156ad5-3857-4fd6-93cc-67abd49e84ec))
(segment (start 134.287 130.209) (end 134.287 130.884) (width 0.254) (layer "F.Cu") (net 2) (tstamp bfa247d7-332c-4edd-ab65-ec64c88f0dba))
(segment (start 140.337 128.959) (end 140.837 128.959) (width 0.254) (layer "F.Cu") (net 2) (tstamp c36303a1-fdc2-4539-8c0a-94e9bac7e99f))
(segment (start 131.6736 84.1248) (end 132.714 83.0844) (width 0.508) (layer "F.Cu") (net 2) (tstamp c3b061b2-01b7-4ab4-b3fc-3d8e26c3354e))
(segment (start 135.5132 86.669) (end 134.868001 86.023801) (width 0.508) (layer "F.Cu") (net 2) (tstamp c6939869-ad9c-4e68-a1a9-91f72902f19d))
(segment (start 132.714 75.994) (end 132.714 75.058) (width 0.508) (layer "F.Cu") (net 2) (tstamp d713250f-5b04-4ba9-b032-c1b446c53169))
(segment (start 140.287 130.209) (end 140.287 130.884) (width 0.254) (layer "F.Cu") (net 2) (tstamp e5988ea9-6541-489f-90b7-717ceb921b45))
(segment (start 134.778 72.994) (end 137.414 72.994) (width 0.508) (layer "F.Cu") (net 2) (tstamp f14f994f-b04b-41f4-9b3e-129b69bf936c))
(segment (start 131.9276 95.9612) (end 131.6736 95.7072) (width 0.508) (layer "F.Cu") (net 2) (tstamp f5683ebc-e3f7-49ac-a93c-c186fd0cfba5))
(segment (start 132.837 128.1634) (end 131.6736 127) (width 0.508) (layer "F.Cu") (net 2) (tstamp faddbae8-ed9c-429d-94be-9cb0f0ff5ec7))
(segment (start 133.737 128.959) (end 133.012 128.959) (width 0.254) (layer "F.Cu") (net 2) (tstamp fbd28896-06fa-4d64-9987-eb8a80542f59))
(segment (start 132.837 129.134) (end 132.837 128.1634) (width 0.508) (layer "F.Cu") (net 2) (tstamp fd42a2ba-8b95-481f-80e3-5094be8c620b))
(segment (start 136.537 127.5468) (end 136.652 127.4318) (width 0.254) (layer "F.Cu") (net 3) (tstamp 0e8b90b9-aecf-4a3e-8b8b-107d4d40d555))
(segment (start 138.6586 118.8212) (end 140.3858 118.8212) (width 0.508) (layer "F.Cu") (net 3) (tstamp 1081599e-6a9e-4fb6-a375-faca03ae4e2e))
(segment (start 138.287 130.699) (end 138.049 130.937) (width 0.254) (layer "F.Cu") (net 3) (tstamp 27fa4445-4cae-443b-a87e-b0d420415c33))
(segment (start 141.6558 90.8304) (end 137.541 90.8304) (width 0.508) (layer "F.Cu") (net 3) (tstamp 3d1d8ccf-91d6-496b-afd3-c284a6f4ee06))
(segment (start 137.8458 131.1402) (end 137.7696 131.1402) (width 0.254) (layer "F.Cu") (net 3) (tstamp 3ded4d6b-4da2-41e9-9a37-5ba2ae4381ad))
(segment (start 140.3858 118.8212) (end 142.6972 116.5098) (width 0.508) (layer "F.Cu") (net 3) (tstamp 3fe77c2b-e855-4070-b552-fe452dc8812a))
(segment (start 138.049 130.937) (end 137.8458 131.1402) (width 0.254) (layer "F.Cu") (net 3) (tstamp 451b8552-10fa-47c9-b195-3fd0df492747))
(segment (start 138.287 130.209) (end 138.287 130.699) (width 0.254) (layer "F.Cu") (net 3) (tstamp 505265c3-db0b-4122-b927-61949669767c))
(segment (start 142.6972 91.8718) (end 141.6558 90.8304) (width 0.508) (layer "F.Cu") (net 3) (tstamp 56b438e2-a694-42dd-a3bf-d078c05d1047))
(segment (start 137.168 90.4574) (end 137.168 86.669) (width 0.508) (layer "F.Cu") (net 3) (tstamp 8f829b11-2d88-48f1-b41d-42c49cabd4e1))
(segment (start 136.537 128.959) (end 136.537 127.5468) (width 0.254) (layer "F.Cu") (net 3) (tstamp baa37cc1-d367-4857-a8f7-b5679a516fbd))
(segment (start 142.6972 116.5098) (end 142.6972 91.8718) (width 0.508) (layer "F.Cu") (net 3) (tstamp f13d763e-f2ef-43f4-afc4-047f08dad4c4))
(segment (start 137.541 90.8304) (end 137.168 90.4574) (width 0.508) (layer "F.Cu") (net 3) (tstamp f5c36a26-80f8-4ee8-b408-1c15ce4c9c78))
(via (at 137.7696 131.1402) (size 0.4572) (drill 0.254) (layers "F.Cu" "B.Cu") (net 3) (tstamp 7e822440-1520-48c8-9d0c-b268350eafce))
(via (at 136.652 127.4318) (size 0.4572) (drill 0.254) (layers "F.Cu" "B.Cu") (net 3) (tstamp b4f675e0-f370-446b-92ec-90c5cd6c466d))
(segment (start 136.652 123.8758) (end 138.6586 121.8692) (width 0.508) (layer "In2.Cu") (net 3) (tstamp 13491389-71ea-4d55-96e5-dfe08c2b2c45))
(segment (start 136.9822 127.762) (end 136.652 127.4318) (width 0.254) (layer "In2.Cu") (net 3) (tstamp 1e0e04cf-cd0b-4c3c-9df1-2fa0ede4d9a5))
(segment (start 136.652 127.4318) (end 136.652 123.8758) (width 0.508) (layer "In2.Cu") (net 3) (tstamp 1f387f04-f8c5-489b-9fd9-1c703959b229))
(segment (start 136.9822 130.3528) (end 136.9822 127.762) (width 0.254) (layer "In2.Cu") (net 3) (tstamp 382988e0-de33-4015-be94-ab1fd760dcc2))
(segment (start 138.6586 121.8692) (end 138.6586 118.8212) (width 0.508) (layer "In2.Cu") (net 3) (tstamp 74c84ab8-0829-4abc-9d41-a3c93a17f926))
(segment (start 137.7696 131.1402) (end 136.9822 130.3528) (width 0.254) (layer "In2.Cu") (net 3) (tstamp 9488ff6c-ba8b-4125-8c90-f0a9ae9e7fc2))
(segment (start 138.2014 86.7024) (end 138.168 86.669) (width 0.254) (layer "F.Cu") (net 4) (tstamp 2bcc0479-985a-4c0a-8cc0-898223c7f7ac))
(segment (start 140.1826 131.445) (end 140.1826 131.8006) (width 0.254) (layer "F.Cu") (net 4) (tstamp 340e6e60-bb10-49c6-a2dd-2ef86b9dac75))
(segment (start 135.037 128.959) (end 135.037 127.5736) (width 0.254) (layer "F.Cu") (net 4) (tstamp 5df62bbe-41bd-4718-aa03-5989c3b98a57))
(segment (start 140.0048 131.2672) (end 140.1826 131.445) (width 0.254) (layer "F.Cu") (net 4) (tstamp 60175ce3-18b8-466c-bcd0-ec2bc692191a))
(segment (start 139.787 130.209) (end 139.787 131.0494) (width 0.254) (layer "F.Cu") (net 4) (tstamp 67a0b73b-0487-454f-9001-f273219d64fb))
(segment (start 139.787 131.0494) (end 140.0048 131.2672) (width 0.254) (layer "F.Cu") (net 4) (tstamp 6f1c7159-8792-4f07-a048-6faf1838e1cb))
(segment (start 138.2014 88.8238) (end 138.2014 86.7024) (width 0.254) (layer "F.Cu") (net 4) (tstamp 9971cc39-5574-494e-b64c-a5e373cc4216))
(segment (start 135.037 127.5736) (end 135.1534 127.4572) (width 0.254) (layer "F.Cu") (net 4) (tstamp ed1312f3-ad44-40fc-8bf4-4c163777c571))
(via (at 135.1534 127.4572) (size 0.4572) (drill 0.254) (layers "F.Cu" "B.Cu") (net 4) (tstamp 4badfd5f-4235-4f8b-904b-4b75633683f4))
(via (at 138.2014 88.8238) (size 0.4572) (drill 0.254) (layers "F.Cu" "B.Cu") (net 4) (tstamp 4e62c1e4-9641-4817-90d8-206390bd6005))
(via (at 140.1826 131.8006) (size 0.4572) (drill 0.254) (layers "F.Cu" "B.Cu") (net 4) (tstamp ca0dcc36-baba-42dc-b46e-31fdb5a92d20))
(segment (start 135.1534 127.4572) (end 131.5212 123.825) (width 0.254) (layer "In2.Cu") (net 4) (tstamp 149f2a8b-b4c5-47fb-a9d1-f06ff7a46b9d))
(segment (start 132.5626 88.8238) (end 138.2014 88.8238) (width 0.254) (layer "In2.Cu") (net 4) (tstamp 4845da80-d25f-444c-9637-61cee0db2c49))
(segment (start 131.5212 90.424) (end 131.5212 89.8652) (width 0.254) (layer "In2.Cu") (net 4) (tstamp c472f2d0-93fc-4758-961d-aa88076a9b3f))
(segment (start 131.5212 123.825) (end 131.5212 90.424) (width 0.254) (layer "In2.Cu") (net 4) (tstamp e9846b23-4b52-4fe8-8d07-5de6cfc03880))
(segment (start 131.5212 89.8652) (end 132.5118 88.8746) (width 0.254) (layer "In2.Cu") (net 4) (tstamp ea49da95-82ca-451c-903c-9256f2f9838d))
(segment (start 132.5118 88.8746) (end 132.5626 88.8238) (width 0.254) (layer "In2.Cu") (net 4) (tstamp f8db565b-a72d-4084-81b0-ff5c3a444bac))
(segment (start 135.1534 127.4318) (end 135.1534 127.4572) (width 0.254) (layer "B.Cu") (net 4) (tstamp 0880a487-38ee-4854-95f3-f8c3c5bad0dc))
(segment (start 140.1826 131.8006) (end 140.1826 128.9558) (width 0.254) (layer "B.Cu") (net 4) (tstamp 17d4a3e3-f475-4d30-a612-eb76384a312e))
(segment (start 135.6614 126.9238) (end 135.1534 127.4318) (width 0.254) (layer "B.Cu") (net 4) (tstamp 3ff7dd96-621c-4a88-987a-6befb4074700))
(segment (start 138.684 127.4572) (end 138.1506 126.9238) (width 0.254) (layer "B.Cu") (net 4) (tstamp a81be26f-ec52-4753-819c-8f8952788d1a))
(segment (start 140.1826 128.9558) (end 138.684 127.4572) (width 0.254) (layer "B.Cu") (net 4) (tstamp ea3f5c37-7692-4325-a25f-ac13e7cd828b))
(segment (start 138.1506 126.9238) (end 135.6614 126.9238) (width 0.254) (layer "B.Cu") (net 4) (tstamp f2bec869-59bd-4c91-8798-b79c60c0c293))
(segment (start 135.537 128.0388) (end 135.9408 127.635) (width 0.254) (layer "F.Cu") (net 5) (tstamp 1feea9e4-54ca-4b06-92a4-ca8848886cf5))
(segment (start 139.287 131.731) (end 138.811 132.207) (width 0.254) (layer "F.Cu") (net 5) (tstamp 34aac1ec-1661-4e25-9829-ef48e0ff77dc))
(segment (start 139.1412 86.6958) (end 139.168 86.669) (width 0.254) (layer "F.Cu") (net 5) (tstamp 4d16246e-c9a8-43e0-ab24-00176fc62307))
(segment (start 139.287 131.3114) (end 139.287 131.731) (width 0.254) (layer "F.Cu") (net 5) (tstamp 66b95c61-504c-4659-93c3-725b2df3af60))
(segment (start 135.537 128.959) (end 135.537 128.0388) (width 0.254) (layer "F.Cu") (net 5) (tstamp 8c64ab9d-dae9-4ee2-ad85-d376af39d6fa))
(segment (start 139.287 130.209) (end 139.287 131.3114) (width 0.254) (layer "F.Cu") (net 5) (tstamp 8f69d716-cab8-4b8a-ba0b-0bda2c66ee5a))
(segment (start 139.287 131.3114) (end 139.2936 131.318) (width 0.254) (layer "F.Cu") (net 5) (tstamp e306ac99-151e-434f-bfe4-5602beef3a72))
(segment (start 139.1412 89.408) (end 139.1412 86.6958) (width 0.254) (layer "F.Cu") (net 5) (tstamp e4d7bc0c-bf84-4ceb-a916-6294ae19fc90))
(via (at 138.811 132.207) (size 0.4572) (drill 0.254) (layers "F.Cu" "B.Cu") (net 5) (tstamp 681da859-d015-40da-83dd-ef23447fce20))
(via (at 139.1412 89.408) (size 0.4572) (drill 0.254) (layers "F.Cu" "B.Cu") (net 5) (tstamp c303f13c-f738-4bbb-96d3-a3d987f7c83f))
(via (at 135.9408 127.635) (size 0.4572) (drill 0.254) (layers "F.Cu" "B.Cu") (net 5) (tstamp f5f9bde3-76eb-4cad-ac16-0f045e58e8b2))
(segment (start 138.811 129.2352) (end 138.4046 128.8288) (width 0.254) (layer "In1.Cu") (net 5) (tstamp 45c8db17-547c-47f1-b485-86b2bc5f5900))
(segment (start 136.2456 128.8796) (end 135.9408 128.5748) (width 0.254) (layer "In1.Cu") (net 5) (tstamp 6f933f37-d0a3-4bb1-afb9-21573b737c37))
(segment (start 136.2964 128.8288) (end 136.2456 128.8796) (width 0.254) (layer "In1.Cu") (net 5) (tstamp b71a40bb-c84e-464b-be47-63b54a3d6b09))
(segment (start 138.4046 128.8288) (end 136.2964 128.8288) (width 0.254) (layer "In1.Cu") (net 5) (tstamp ddf48b49-fb6a-4ae0-bc92-a461d6330aa6))
(segment (start 135.9408 128.5748) (end 135.9408 127.635) (width 0.254) (layer "In1.Cu") (net 5) (tstamp eeee7899-a9c5-4845-a0fd-5157bc4b3356))
(segment (start 138.811 132.207) (end 138.811 129.2352) (width 0.254) (layer "In1.Cu") (net 5) (tstamp f7e866e6-a6fb-4c06-abb9-ca2d6ecff88b))
(segment (start 135.8392 127.5334) (end 135.8392 127.1016) (width 0.254) (layer "In2.Cu") (net 5) (tstamp 08b625f7-217e-4b80-b844-9ca58a49b1ad))
(segment (start 132.2832 123.4948) (end 132.2832 90.2716) (width 0.254) (layer "In2.Cu") (net 5) (tstamp 08daff35-3e74-4cdf-97ef-a5b2d0ce4eb5))
(segment (start 133.1468 89.408) (end 139.1412 89.408) (width 0.254) (layer "In2.Cu") (net 5) (tstamp 5b2541d0-e671-4c16-96a7-14cceac1c976))
(segment (start 132.2832 90.2716) (end 132.8674 89.6874) (width 0.254) (layer "In2.Cu") (net 5) (tstamp 82a0ce8f-fb6a-4ea5-86be-776aa51cff52))
(segment (start 132.8674 89.6874) (end 133.1468 89.408) (width 0.254) (layer "In2.Cu") (net 5) (tstamp edd209c0-3d7e-47b9-96ab-f088c737dcd0))
(segment (start 135.8392 127.1016) (end 135.8392 127.0508) (width 0.254) (layer "In2.Cu") (net 5) (tstamp f28e4313-c9f0-4ff9-99cc-87d0ae18774e))
(segment (start 135.9408 127.635) (end 135.8392 127.5334) (width 0.254) (layer "In2.Cu") (net 5) (tstamp f46841ed-1ae8-4171-b8a6-e6b7b9d455bf))
(segment (start 135.8392 127.0508) (end 132.2832 123.4948) (width 0.254) (layer "In2.Cu") (net 5) (tstamp fc3429a1-6400-42f7-86cd-6d5723930264))
(segment (start 135.287 132.0358) (end 135.287 130.209) (width 0.254) (layer "F.Cu") (net 9) (tstamp 1c4295ae-7680-45f3-a5ef-78bdab714bb6))
(segment (start 139.6492 132.2832) (end 139.2428 132.6896) (width 0.254) (layer "F.Cu") (net 9) (tstamp 1d5f2461-0221-4ef8-a6f4-4f746029b07b))
(segment (start 139.037 128.5468) (end 139.037 128.959) (width 0.254) (layer "F.Cu") (net 9) (tstamp 81177c6c-35e4-4df9-bd99-5221dc56005c))
(segment (start 135.9408 132.6896) (end 135.287 132.0358) (width 0.254) (layer "F.Cu") (net 9) (tstamp 952054cd-ad7b-44a9-911d-19bd0c6b6b15))
(segment (start 138.5824 128.0922) (end 139.037 128.5468) (width 0.254) (layer "F.Cu") (net 9) (tstamp d18a10c7-26e7-4294-982c-e354a23bf3a7))
(segment (start 139.2428 132.6896) (end 135.9408 132.6896) (width 0.254) (layer "F.Cu") (net 9) (tstamp dcb01e46-ed27-40be-a7f0-e5d1076e6655))
(via (at 139.6492 132.2832) (size 0.4572) (drill 0.254) (layers "F.Cu" "B.Cu") (net 9) (tstamp 0d0fae4d-7b6f-4fe7-b3f4-48c658687e0e))
(via (at 138.5824 128.0922) (size 0.4572) (drill 0.254) (layers "F.Cu" "B.Cu") (net 9) (tstamp 0df66f71-67a1-4d13-ac67-aba9e7a77130))
(segment (start 139.3952 132.0292) (end 139.3952 128.905) (width 0.254) (layer "In1.Cu") (net 9) (tstamp 4fc5439f-f6d2-4e09-ba35-8d23f7e3de24))
(segment (start 139.3952 128.905) (end 138.5824 128.0922) (width 0.254) (layer "In1.Cu") (net 9) (tstamp 57ae049a-cf4d-498a-a417-efabebfcfe20))
(segment (start 139.6492 132.2832) (end 139.3952 132.0292) (width 0.254) (layer "In1.Cu") (net 9) (tstamp c5d6b6c1-fcfb-45bd-a3ca-4e3f5ced282e))
(segment (start 141.224 111.2266) (end 141.1986 111.2012) (width 0.254) (layer "In2.Cu") (net 9) (tstamp 362fcf6f-5b14-403e-b67c-dd120920dadf))
(segment (start 138.5824 127.635) (end 141.224 124.9934) (width 0.254) (layer "In2.Cu") (net 9) (tstamp 4834cec2-ef61-41d9-8cec-6a66ec3af66a))
(segment (start 141.224 124.9934) (end 141.224 111.2266) (width 0.254) (layer "In2.Cu") (net 9) (tstamp 8c1f281d-8e87-464f-8395-e79c5a9796d3))
(segment (start 141.1986 111.2012) (end 138.6586 111.2012) (width 0.254) (layer "In2.Cu") (net 9) (tstamp 98fac875-4910-42b1-b2cb-1f7d7048cde8))
(segment (start 138.5824 128.0922) (end 138.5824 127.635) (width 0.254) (layer "In2.Cu") (net 9) (tstamp b5c14094-fbdb-481a-9c0b-419de0779b63))
(segment (start 138.6586 128.1684) (end 138.5824 128.0922) (width 0.254) (layer "B.Cu") (net 9) (tstamp 8cb7c9bd-2bd5-4d01-8bfe-eb47eb5551ec))
(segment (start 139.537 127.8488) (end 139.8524 127.5334) (width 0.254) (layer "F.Cu") (net 10) (tstamp 0404c8ef-b4df-4336-888d-d386f6a42f8d))
(segment (start 134.787 130.209) (end 134.787 132.073936) (width 0.254) (layer "F.Cu") (net 10) (tstamp 55df251c-b6fc-4684-b15a-aa32add942be))
(segment (start 135.783664 133.0706) (end 140.1572 133.0706) (width 0.254) (layer "F.Cu") (net 10) (tstamp 95722af0-07a9-4b9d-9a67-00edd9b70d56))
(segment (start 139.537 128.959) (end 139.537 127.8488) (width 0.254) (layer "F.Cu") (net 10) (tstamp a6b22d89-39f5-4a82-a874-57e1a7f0dbd6))
(segment (start 134.787 132.073936) (end 135.783664 133.0706) (width 0.254) (layer "F.Cu") (net 10) (tstamp ea1b41c2-dca0-4110-b5d6-65013f8a1440))
(segment (start 140.1572 133.0706) (end 140.462 132.7658) (width 0.254) (layer "F.Cu") (net 10) (tstamp f383d9c1-e2ef-4b3a-8aed-5ed20a435999))
(via (at 139.8524 127.5334) (size 0.4572) (drill 0.254) (layers "F.Cu" "B.Cu") (net 10) (tstamp 944e1eb9-770d-4add-ae30-93da8171cb3b))
(via (at 140.462 132.7658) (size 0.4572) (drill 0.254) (layers "F.Cu" "B.Cu") (net 10) (tstamp 97d3812c-4dd0-4cc2-8246-3799cd2ad202))
(segment (start 139.8524 127.5334) (end 141.7828 125.603) (width 0.254) (layer "In2.Cu") (net 10) (tstamp 639b3fba-d567-4267-bc4d-01c751cae73b))
(segment (start 141.7828 125.603) (end 141.7828 108.8898) (width 0.254) (layer "In2.Cu") (net 10) (tstamp 72f640f8-6491-4ee5-97b8-85dc36ea533f))
(segment (start 141.7828 108.8898) (end 141.5034 108.6104) (width 0.254) (layer "In2.Cu") (net 10) (tstamp 733da687-fc89-4bad-8ca9-1bba3f1c0f73))
(segment (start 141.5034 108.6104) (end 141.4526 108.6612) (width 0.254) (layer "In2.Cu") (net 10) (tstamp 96aa048d-81df-49af-8d04-b19ca73c689c))
(segment (start 141.4526 108.6612) (end 138.6586 108.6612) (width 0.254) (layer "In2.Cu") (net 10) (tstamp d89ee011-375a-40a2-b26a-06c44d940982))
(segment (start 140.716 128.397) (end 139.8524 127.5334) (width 0.254) (layer "B.Cu") (net 10) (tstamp 29c90c46-164d-4290-a260-d9ef6f221a28))
(segment (start 140.716 130.937) (end 140.716 128.397) (width 0.254) (layer "B.Cu") (net 10) (tstamp 3a1e1113-d2fa-4310-8610-501a25d0b434))
(segment (start 140.462 132.7658) (end 140.462 132.3848) (width 0.254) (layer "B.Cu") (net 10) (tstamp 6bac7901-3323-4d8c-aacd-57bffa5b5dc7))
(segment (start 140.716 132.1308) (end 140.716 130.937) (width 0.254) (layer "B.Cu") (net 10) (tstamp 91b8a664-5871-4582-8303-46c55a77db77))
(segment (start 140.5636 132.2832) (end 140.716 132.1308) (width 0.254) (layer "B.Cu") (net 10) (tstamp be869a27-c140-4a05-ad7a-0a41d12d8df5))
(segment (start 140.462 132.3848) (end 140.5636 132.2832) (width 0.254) (layer "B.Cu") (net 10) (tstamp ca7e1f5f-4122-4656-aaab-6893c357ae5f))
(segment (start 136.787 129.913) (end 136.787 130.209) (width 0.254) (layer "F.Cu") (net 12) (tstamp 0d59ccdb-ca43-4794-a55c-dd8f66bcd306))
(segment (start 137.3378 127.254) (end 138.6586 125.9332) (width 0.254) (layer "F.Cu") (net 12) (tstamp 0ef16c5c-b0f6-4bca-9781-20eaa1d332bc))
(segment (start 137.537 128.959) (end 137.537 128.393) (width 0.254) (layer "F.Cu") (net 12) (tstamp 2768b5ad-4317-48cd-a102-d82501150049))
(segment (start 137.331 129.794) (end 136.906 129.794) (width 0.254) (layer "F.Cu") (net 12) (tstamp 6726f8e4-8d42-46b9-981e-3ba2f7aae3a3))
(segment (start 137.537 129.588) (end 137.331 129.794) (width 0.254) (layer "F.Cu") (net 12) (tstamp 6cbcb58b-5653-4a15-af87-39cebf054947))
(segment (start 137.537 128.959) (end 137.537 129.588) (width 0.254) (layer "F.Cu") (net 12) (tstamp 6dde29d9-0593-4287-9692-08dc4b8bec19))
(segment (start 137.3378 128.1938) (end 137.3378 127.4318) (width 0.254) (layer "F.Cu") (net 12) (tstamp aed8ff8d-d480-4c34-aba9-3bf672927d86))
(segment (start 137.537 128.393) (end 137.3378 128.1938) (width 0.254) (layer "F.Cu") (net 12) (tstamp b1e84a91-02e3-4d16-941f-052175b51973))
(segment (start 136.906 129.794) (end 136.787 129.913) (width 0.254) (layer "F.Cu") (net 12) (tstamp c871b0af-ed7c-47de-a9ae-95e59ff6290e))
(segment (start 137.3378 127.4318) (end 137.3378 127.254) (width 0.254) (layer "F.Cu") (net 12) (tstamp d2114ab9-b0b4-488b-8fa3-22cda46ae928))
(via (at 138.6586 125.9332) (size 0.4572) (drill 0.254) (layers "F.Cu" "B.Cu") (net 12) (tstamp 240070d0-c856-4093-8107-af8d6d1aa323))
(segment (start 140.9192 103.5812) (end 138.6586 103.5812) (width 0.254) (layer "In1.Cu") (net 12) (tstamp 429cce7e-c0b1-4fc9-a42e-69140992d410))
(segment (start 138.6586 125.9332) (end 141.3002 123.2916) (width 0.254) (layer "In1.Cu") (net 12) (tstamp bd6983b6-b4ca-4c56-bbee-a47d341c85bd))
(segment (start 141.3002 123.2916) (end 141.3002 103.9622) (width 0.254) (layer "In1.Cu") (net 12) (tstamp f0711921-cfe9-47cc-bf6b-b4f0923e1abb))
(segment (start 141.3002 103.9622) (end 140.9192 103.5812) (width 0.254) (layer "In1.Cu") (net 12) (tstamp fc653504-59c8-4f41-935a-2fc28d257aa7))
(segment (start 136.287 130.209) (end 136.287 130.6482) (width 0.254) (layer "F.Cu") (net 13) (tstamp 041568c4-9dc7-475c-8bfb-b87e32a2005d))
(segment (start 136.287 130.6482) (end 136.7536 131.1148) (width 0.254) (layer "F.Cu") (net 13) (tstamp 342334b7-6092-4f61-9771-2b8fc04c1cdc))
(segment (start 138.037 127.6992) (end 137.9982 127.6604) (width 0.254) (layer "F.Cu") (net 13) (tstamp 86dc60dd-744c-44c7-a7c5-a11274a23f7e))
(segment (start 138.037 128.959) (end 138.037 127.6992) (width 0.254) (layer "F.Cu") (net 13) (tstamp c456b0ab-6f7c-4f21-8714-4a7e93c97a70))
(via (at 137.9982 127.6604) (size 0.4572) (drill 0.254) (layers "F.Cu" "B.Cu") (net 13) (tstamp 2d74bb8d-de77-4958-a1db-56a01f938d3b))
(via (at 136.7536 131.1148) (size 0.4572) (drill 0.254) (layers "F.Cu" "B.Cu") (net 13) (tstamp 53490bf5-e482-4733-a714-8609da73bb21))
(segment (start 141.9352 101.7778) (end 141.1986 101.0412) (width 0.254) (layer "In1.Cu") (net 13) (tstamp 0ef20f33-de86-4423-9397-f77d8c4d7f0c))
(segment (start 141.1986 101.0412) (end 138.6586 101.0412) (width 0.254) (layer "In1.Cu") (net 13) (tstamp 6170f405-298f-4ee5-b7f7-4269b830aa1e))
(segment (start 138.0236 127.6604) (end 141.9352 123.7488) (width 0.254) (layer "In1.Cu") (net 13) (tstamp 662d0bd9-bd33-43d6-826a-6f477d16e4bf))
(segment (start 137.9982 127.6604) (end 138.0236 127.6604) (width 0.254) (layer "In1.Cu") (net 13) (tstamp 98c18dde-ee74-4d52-8603-18004d9ce575))
(segment (start 141.9352 123.7488) (end 141.9352 101.7778) (width 0.254) (layer "In1.Cu") (net 13) (tstamp e859bb91-ed39-40c2-a166-42333bbdf49f))
(segment (start 136.7536 131.1148) (end 137.4648 130.4036) (width 0.254) (layer "B.Cu") (net 13) (tstamp 03eb300a-5f6e-4d3f-b371-2bdb6f7d76d9))
(segment (start 137.4648 128.1938) (end 137.9982 127.6604) (width 0.254) (layer "B.Cu") (net 13) (tstamp 0e347f5e-959a-44a9-9ea9-360d2ad897a5))
(segment (start 137.4648 128.3716) (end 137.4648 128.1938) (width 0.254) (layer "B.Cu") (net 13) (tstamp 778afe45-9f16-4ca1-a254-07a0979cd9bb))
(segment (start 137.4648 130.4036) (end 137.4648 128.3716) (width 0.254) (layer "B.Cu") (net 13) (tstamp 9348f73e-0de9-4560-a2fa-c7bed9f689f2))
(zone (net 2) (net_name "GND") (layers "F.Cu" "In1.Cu" "In2.Cu" "B.Cu") (tstamp 13bbfffc-affb-4b43-9eb1-f2ed90a8a919) (hatch edge 0.508)
(connect_pads (clearance 0.508))
(min_thickness 0.254) (filled_areas_thickness no)
(fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 143.764 133.604)
(xy 130.81 133.604)
(xy 130.81 67.31)
(xy 143.764 67.31)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 143.198121 67.838002)
(xy 143.244614 67.891658)
(xy 143.256 67.944)
(xy 143.256 91.048072)
(xy 143.235998 91.116193)
(xy 143.182342 91.162686)
(xy 143.112068 91.17279)
(xy 143.047488 91.143296)
(xy 143.040905 91.137167)
(xy 142.24261 90.338872)
(xy 142.230223 90.324459)
(xy 142.221595 90.312735)
(xy 142.217254 90.306836)
(xy 142.176745 90.272421)
(xy 142.169229 90.265491)
(xy 142.163485 90.259747)
(xy 142.160611 90.257473)
(xy 142.160604 90.257467)
(xy 142.141089 90.242028)
(xy 142.137685 90.239237)
(xy 142.087328 90.196455)
(xy 142.087324 90.196452)
(xy 142.081749 90.191716)
(xy 142.075232 90.188388)
(xy 142.070168 90.185011)
(xy 142.064944 90.181784)
(xy 142.0592 90.17724)
(xy 142.032909 90.164952)
(xy 141.992718 90.146168)
(xy 141.988767 90.144237)
(xy 141.929917 90.114187)
(xy 141.923396 90.110857)
(xy 141.916281 90.109116)
(xy 141.910535 90.106979)
(xy 141.904752 90.105055)
(xy 141.898121 90.101956)
(xy 141.826243 90.087006)
(xy 141.821971 90.086039)
(xy 141.750688 90.068596)
(xy 141.745089 90.068249)
(xy 141.745085 90.068248)
(xy 141.73947 90.0679)
(xy 141.739472 90.067861)
(xy 141.735571 90.067628)
(xy 141.731212 90.067239)
(xy 141.724044 90.065748)
(xy 141.716727 90.065946)
(xy 141.646223 90.067854)
(xy 141.642814 90.0679)
(xy 139.822759 90.0679)
(xy 139.754638 90.047898)
(xy 139.708145 89.994242)
(xy 139.698041 89.923968)
(xy 139.71781 89.872176)
(xy 139.800937 89.747059)
(xy 139.85966 89.592469)
(xy 139.882675 89.428711)
(xy 139.882964 89.408)
(xy 139.864531 89.243663)
(xy 139.810147 89.087494)
(xy 139.795845 89.064607)
(xy 139.7767 88.997838)
(xy 139.7767 87.81875)
(xy 139.796702 87.750629)
(xy 139.813605 87.729655)
(xy 139.842453 87.700807)
(xy 139.846489 87.693983)
(xy 139.846491 87.69398)
(xy 139.923108 87.564427)
(xy 139.927145 87.557601)
(xy 139.929415 87.54979)
(xy 139.971767 87.404008)
(xy 139.973562 87.397831)
(xy 139.974074 87.391336)
(xy 139.976307 87.362958)
(xy 139.976307 87.36295)
(xy 139.9765 87.360502)
(xy 139.9765 85.977498)
(xy 139.976307 85.975042)
(xy 139.974067 85.946579)
(xy 139.974066 85.946574)
(xy 139.973562 85.940169)
(xy 139.944528 85.840231)
(xy 139.929357 85.788012)
(xy 139.929356 85.78801)
(xy 139.927145 85.780399)
(xy 139.901406 85.736877)
(xy 139.883947 85.668064)
(xy 139.906463 85.600732)
(xy 139.961807 85.556263)
(xy 140.022703 85.547396)
(xy 140.064439 85.551672)
(xy 140.070853 85.552)
(xy 140.195884 85.552)
(xy 140.211123 85.547525)
(xy 140.212328 85.546135)
(xy 140.213999 85.538452)
(xy 140.213999 85.533884)
(xy 140.721999 85.533884)
(xy 140.726474 85.549123)
(xy 140.727864 85.550328)
(xy 140.735547 85.551999)
(xy 140.865094 85.551999)
(xy 140.871613 85.551662)
(xy 140.967205 85.541743)
(xy 140.980599 85.538851)
(xy 141.134783 85.487412)
(xy 141.147961 85.481239)
(xy 141.285806 85.395937)
(xy 141.297207 85.386901)
(xy 141.411738 85.272171)
(xy 141.42075 85.26076)
(xy 141.505815 85.122757)
(xy 141.511962 85.109576)
(xy 141.563137 84.95529)
(xy 141.566004 84.941914)
(xy 141.575671 84.847562)
(xy 141.575999 84.841146)
(xy 141.575999 84.416115)
(xy 141.571524 84.400876)
(xy 141.570134 84.399671)
(xy 141.562451 84.398)
(xy 140.740114 84.398)
(xy 140.724875 84.402475)
(xy 140.72367 84.403865)
(xy 140.721999 84.411548)
(xy 140.721999 85.533884)
(xy 140.213999 85.533884)
(xy 140.213999 84.416115)
(xy 140.209524 84.400876)
(xy 140.208134 84.399671)
(xy 140.200451 84.398)
(xy 139.378115 84.398)
(xy 139.362876 84.402475)
(xy 139.361671 84.403865)
(xy 139.36 84.411548)
(xy 139.36 84.841095)
(xy 139.360337 84.847614)
(xy 139.370256 84.943206)
(xy 139.373148 84.9566)
(xy 139.424587 85.110784)
(xy 139.430758 85.123958)
(xy 139.473605 85.193196)
(xy 139.492443 85.261648)
(xy 139.471282 85.329418)
(xy 139.416842 85.374989)
(xy 139.366461 85.3855)
(xy 138.951498 85.3855)
(xy 138.94905 85.385693)
(xy 138.949042 85.385693)
(xy 138.920579 85.387933)
(xy 138.920574 85.387934)
(xy 138.914169 85.388438)
(xy 138.849858 85.407122)
(xy 138.762012 85.432643)
(xy 138.76201 85.432644)
(xy 138.754399 85.434855)
(xy 138.747576 85.43889)
(xy 138.747574 85.438891)
(xy 138.732137 85.44802)
(xy 138.663321 85.465478)
(xy 138.603863 85.44802)
(xy 138.588426 85.438891)
(xy 138.588424 85.43889)
(xy 138.581601 85.434855)
(xy 138.57399 85.432644)
(xy 138.573988 85.432643)
(xy 138.486142 85.407122)
(xy 138.421831 85.388438)
(xy 138.415426 85.387934)
(xy 138.415421 85.387933)
(xy 138.386958 85.385693)
(xy 138.38695 85.385693)
(xy 138.384502 85.3855)
(xy 137.951498 85.3855)
(xy 137.94905 85.385693)
(xy 137.949042 85.385693)
(xy 137.920579 85.387933)
(xy 137.920574 85.387934)
(xy 137.914169 85.388438)
(xy 137.849858 85.407122)
(xy 137.762012 85.432643)
(xy 137.76201 85.432644)
(xy 137.754399 85.434855)
(xy 137.747576 85.43889)
(xy 137.747574 85.438891)
(xy 137.732137 85.44802)
(xy 137.663321 85.465478)
(xy 137.603863 85.44802)
(xy 137.588426 85.438891)
(xy 137.588424 85.43889)
(xy 137.581601 85.434855)
(xy 137.57399 85.432644)
(xy 137.573988 85.432643)
(xy 137.486142 85.407122)
(xy 137.421831 85.388438)
(xy 137.415426 85.387934)
(xy 137.415421 85.387933)
(xy 137.386958 85.385693)
(xy 137.38695 85.385693)
(xy 137.384502 85.3855)
(xy 136.951498 85.3855)
(xy 136.94905 85.385693)
(xy 136.949042 85.385693)
(xy 136.920579 85.387933)
(xy 136.920574 85.387934)
(xy 136.914169 85.388438)
(xy 136.849858 85.407122)
(xy 136.762012 85.432643)
(xy 136.76201 85.432644)
(xy 136.754399 85.434855)
(xy 136.731649 85.44831)
(xy 136.662835 85.46577)
(xy 136.60337 85.448311)
(xy 136.588221 85.439352)
(xy 136.57379 85.433107)
(xy 136.439395 85.394061)
(xy 136.425294 85.394101)
(xy 136.422 85.40137)
(xy 136.422 85.72643)
(xy 136.411885 85.775275)
(xy 136.408855 85.780399)
(xy 136.406645 85.788007)
(xy 136.406643 85.788011)
(xy 136.383282 85.868422)
(xy 136.362438 85.940169)
(xy 136.361934 85.946574)
(xy 136.361933 85.946579)
(xy 136.359693 85.975042)
(xy 136.3595 85.977498)
(xy 136.3595 87.360502)
(xy 136.359693 87.36295)
(xy 136.359693 87.362958)
(xy 136.361927 87.391336)
(xy 136.362438 87.397831)
(xy 136.364233 87.404008)
(xy 136.400497 87.528832)
(xy 136.4055 87.563985)
(xy 136.4055 90.390024)
(xy 136.404067 90.408974)
(xy 136.401876 90.423373)
(xy 136.401876 90.423379)
(xy 136.400776 90.430608)
(xy 136.401369 90.4379)
(xy 136.401369 90.437903)
(xy 136.405085 90.483583)
(xy 136.4055 90.493798)
(xy 136.4055 90.501925)
(xy 136.408811 90.530324)
(xy 136.409238 90.534644)
(xy 136.415191 90.607826)
(xy 136.417447 90.614788)
(xy 136.418643 90.620776)
(xy 136.420051 90.626733)
(xy 136.420899 90.634007)
(xy 136.423397 90.640889)
(xy 136.423398 90.640893)
(xy 136.445945 90.703007)
(xy 136.447355 90.707111)
(xy 136.469987 90.776975)
(xy 136.473787 90.783238)
(xy 136.476325 90.78878)
(xy 136.479067 90.794256)
(xy 136.481566 90.801141)
(xy 136.485581 90.807265)
(xy 136.521815 90.862532)
(xy 136.52413 90.8662)
(xy 136.562227 90.928981)
(xy 136.565941 90.933186)
(xy 136.565943 90.933189)
(xy 136.569667 90.937405)
(xy 136.569638 90.937431)
(xy 136.572238 90.940362)
(xy 136.575042 90.943716)
(xy 136.579054 90.949835)
(xy 136.584366 90.954867)
(xy 136.635586 91.003388)
(xy 136.638028 91.005766)
(xy 136.95419 91.321928)
(xy 136.966577 91.336341)
(xy 136.979546 91.353964)
(xy 136.985129 91.358707)
(xy 137.020055 91.388379)
(xy 137.027571 91.395309)
(xy 137.033315 91.401053)
(xy 137.036189 91.403327)
(xy 137.036196 91.403333)
(xy 137.055711 91.418772)
(xy 137.059115 91.421563)
(xy 137.109472 91.464345)
(xy 137.109476 91.464348)
(xy 137.115051 91.469084)
(xy 137.121568 91.472412)
(xy 137.126632 91.475789)
(xy 137.131856 91.479016)
(xy 137.1376 91.48356)
(xy 137.204104 91.514642)
(xy 137.208001 91.516547)
(xy 137.273404 91.549943)