-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathESPProg-to-altera.kicad_pcb
2721 lines (2711 loc) · 104 KB
/
ESPProg-to-altera.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.6)
)
(paper "A4")
(layers
(0 "F.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
(pad_to_mask_clearance 0)
(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 4)
(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 "TMS")
(net 2 "GND")
(net 3 "TCK")
(net 4 "TDO")
(net 5 "TDI")
(net 6 "VTGT")
(net 7 "V_JTAG")
(net 8 "unconnected-(J2-Pin_6-Pad6)")
(net 9 "unconnected-(J2-Pin_7-Pad7)")
(net 10 "unconnected-(J2-Pin_8-Pad8)")
(net 11 "unconnected-(J1-Pin_2-Pad2)")
(footprint "Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm" (layer "F.Cu")
(tstamp 2a9fe29b-9289-4037-86d3-19b52fedbcd3)
(at 159 55.85 -90)
(descr "SMD Solder Jumper, 1x1.5mm Triangular Pads, 0.3mm gap, open")
(tags "solder jumper open")
(property "Sheetfile" "ESPProg-to-altera.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Jumper, 2-pole, open")
(property "ki_keywords" "Jumper SPST")
(path "/8ebe5715-f281-468a-a727-9454e96c4ce4")
(zone_connect 1)
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "JP1" (at 0 -1.8 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 43c2ba3f-3706-4b88-8091-26b01ae69489)
)
(fp_text value "TGT_PWR" (at 0 1.9 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d6b507a1-465d-4d60-9a2e-3564b5e402be)
)
(fp_line (start -1.4 -1) (end 1.4 -1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 653c2faf-3a44-4211-9178-c104336ed79b))
(fp_line (start -1.4 1) (end -1.4 -1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a34a6bfd-a6b1-475c-b97e-d19b141a5ab5))
(fp_line (start 1.4 -1) (end 1.4 1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4729017e-268a-43e8-b473-d9e5ea5af37e))
(fp_line (start 1.4 1) (end -1.4 1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c72fa1f9-9d04-41f4-b8dd-009f1d365121))
(fp_line (start -1.65 -1.25) (end -1.65 1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8a128a9c-c713-4e21-9927-cb9b08202a3c))
(fp_line (start -1.65 -1.25) (end 1.65 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d74a3cc0-cb74-458a-b55f-da651335ae69))
(fp_line (start 1.65 1.25) (end -1.65 1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0daab41b-e6c4-42f9-a26d-33b721ea666e))
(fp_line (start 1.65 1.25) (end 1.65 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7fecd7e8-dfaf-4d8b-8b46-d5cfb02ca62c))
(pad "1" smd custom (at -0.725 0 270) (size 0.3 0.3) (layers "F.Cu" "F.Mask")
(net 6 "VTGT") (pinfunction "A") (pintype "passive") (zone_connect 2) (thermal_bridge_angle 45)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 1 0)
(xy 0.5 0.75)
(xy -0.5 0.75)
(xy -0.5 -0.75)
(xy 0.5 -0.75)
)
(width 0) (fill yes))
) (tstamp 36888e97-bd6d-48d3-b6df-3da9010cbefb))
(pad "2" smd custom (at 0.725 0 270) (size 0.3 0.3) (layers "F.Cu" "F.Mask")
(net 7 "V_JTAG") (pinfunction "B") (pintype "passive") (zone_connect 2) (thermal_bridge_angle 45)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.5 0.75)
(xy -0.65 0.75)
(xy -0.15 0)
(xy -0.65 -0.75)
(xy 0.5 -0.75)
)
(width 0) (fill yes))
) (tstamp 3508971d-8cc7-4f36-b9df-947204eca98d))
)
(footprint "Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical" (layer "B.Cu")
(tstamp 39f7e6f4-dd9f-424b-b1ad-95890aa3338a)
(at 149.46 60.93)
(descr "Through hole IDC box header, 2x05, 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 2x05 2.54mm double row")
(property "Alt" "C5665")
(property "LCSC" "C706914")
(property "Sheetfile" "ESPProg-to-altera.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/ca4eed3b-0fd9-4e4c-b108-9133e70d3a36")
(attr through_hole)
(fp_text reference "J2" (at 1.27 6.1) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp f76870c0-edb5-4a3b-a815-fecf38f5827c)
)
(fp_text value "X9555WV-2X05-6TV01" (at 1.27 -16.26) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 913c3acb-94e1-49e8-9bc4-6bfa6191decc)
)
(fp_text user "${REFERENCE}" (at 1.27 -5.08 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp d9306e40-341d-40f2-9144-f391fa2206e3)
)
(fp_line (start -4.68 -0.5) (end -3.68 0)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp f3961433-c2bc-4a89-9f39-54f2a6567342))
(fp_line (start -4.68 0.5) (end -4.68 -0.5)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 3d60070c-0684-4b2e-8175-8013cb4c52da))
(fp_line (start -3.68 0) (end -4.68 0.5)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 07711b3c-19f6-4714-94ff-157901e32ef0))
(fp_line (start -3.29 -15.37) (end -3.29 5.21)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 5dd2dc69-d71c-4637-809b-0409434f34bb))
(fp_line (start -3.29 -3.03) (end -1.98 -3.03)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp d277a67d-0695-4f3a-97fe-64864b691f7b))
(fp_line (start -3.29 5.21) (end 5.83 5.21)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp caa4718f-901a-48b7-b49a-369b9b009a71))
(fp_line (start -1.98 -14.07) (end -1.98 -7.13)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 4f6392cb-504a-4c6f-95b8-594cfda3e2b4))
(fp_line (start -1.98 -7.13) (end -3.29 -7.13)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp fbdc6061-ae44-41a3-84d0-e85f490139d1))
(fp_line (start -1.98 -7.13) (end -1.98 -7.13)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 15cc15bb-9bfa-4726-b376-216d5a878dc9))
(fp_line (start -1.98 -3.03) (end -1.98 3.91)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp a6fd26a7-19c4-452c-84ec-07244ddafb2a))
(fp_line (start -1.98 3.91) (end 4.52 3.91)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 1e8943ee-c173-4043-a896-d0416e9167a5))
(fp_line (start 4.52 -14.07) (end -1.98 -14.07)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 99e6970a-8d69-4dd3-a216-53e4d06cc62c))
(fp_line (start 4.52 3.91) (end 4.52 -14.07)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp f98afe87-5ec1-4e95-80cf-14f1b92355e1))
(fp_line (start 5.83 -15.37) (end -3.29 -15.37)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 03096b13-d677-4076-b891-2b3d96253725))
(fp_line (start 5.83 5.21) (end 5.83 -15.37)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp c9c0a928-decb-4aed-ade8-5fb42a8b0233))
(fp_line (start -3.68 -15.76) (end 6.22 -15.76)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp dc5a1c7e-4013-44d3-99c8-8f4b791a09ca))
(fp_line (start -3.68 5.6) (end -3.68 -15.76)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 6a4cdb17-6f8a-45d0-83e8-79c89235440c))
(fp_line (start 6.22 -15.76) (end 6.22 5.6)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp be4d8bdb-e583-40f7-a696-7df96c332446))
(fp_line (start 6.22 5.6) (end -3.68 5.6)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp a55267d2-d4df-4acf-8472-7e0c3bf75d7c))
(fp_line (start -3.18 -15.26) (end -3.18 4.1)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b20bb739-6fce-4cf0-8303-02c717a8c4fe))
(fp_line (start -3.18 -3.03) (end -1.98 -3.03)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 528f707f-e60f-4c56-80a0-a62bbfb77382))
(fp_line (start -3.18 4.1) (end -2.18 5.1)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 950ff1f0-07ba-4ece-b346-f0cfcee49621))
(fp_line (start -2.18 5.1) (end 5.72 5.1)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 002e886c-ce93-4821-8709-934965f274f4))
(fp_line (start -1.98 -14.07) (end -1.98 -7.13)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp a0b0d5da-b796-46af-97ae-c8878abd1e34))
(fp_line (start -1.98 -7.13) (end -3.18 -7.13)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 9fa01e9e-e687-409a-9eff-edae82bbeb0a))
(fp_line (start -1.98 -7.13) (end -1.98 -7.13)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp d0a47565-c2ff-4f45-8eda-615e7c9e8695))
(fp_line (start -1.98 -3.03) (end -1.98 3.91)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp c58484cc-6524-4e4e-acf4-224166c7dfa8))
(fp_line (start -1.98 3.91) (end 4.52 3.91)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 21aecc8b-3594-41f1-bf13-3a2a120e3bd1))
(fp_line (start 4.52 -14.07) (end -1.98 -14.07)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 21146ccf-f18e-4487-9b2a-19f24cc96938))
(fp_line (start 4.52 3.91) (end 4.52 -14.07)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 22c7bcdc-17ae-4596-80b7-ef32fd4b2feb))
(fp_line (start 5.72 -15.26) (end -3.18 -15.26)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp a84939c1-d4b1-4fbc-bae8-4c5316c535a2))
(fp_line (start 5.72 5.1) (end 5.72 -15.26)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp aa570015-f9e6-4ccb-80a3-a5317ad71138))
(pad "1" thru_hole roundrect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.1470588235)
(net 3 "TCK") (pinfunction "Pin_1") (pintype "passive") (tstamp 2487b59f-cf49-45a4-9e99-a02f0aa2b48f))
(pad "2" thru_hole circle (at 2.54 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 45d1b965-d462-4d46-820a-01621c8934f3))
(pad "3" thru_hole circle (at 0 -2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "TDO") (pinfunction "Pin_3") (pintype "passive") (tstamp 949a8192-05d8-4a15-907a-ac0301d81c4a))
(pad "4" thru_hole circle (at 2.54 -2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "VTGT") (pinfunction "Pin_4") (pintype "passive") (tstamp c5213b8c-beee-429c-ab9c-86e1ab0df0a6))
(pad "5" thru_hole circle (at 0 -5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "TMS") (pinfunction "Pin_5") (pintype "passive") (tstamp 38f40a7c-8f98-4fa5-9854-35e684052c33))
(pad "6" thru_hole circle (at 2.54 -5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "unconnected-(J2-Pin_6-Pad6)") (pinfunction "Pin_6") (pintype "passive+no_connect") (tstamp 3caedd69-735e-4a0b-b39d-9cff57713d5b))
(pad "7" thru_hole circle (at 0 -7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "unconnected-(J2-Pin_7-Pad7)") (pinfunction "Pin_7") (pintype "passive+no_connect") (tstamp 93028255-0c2c-456a-b73f-403700c928d0))
(pad "8" thru_hole circle (at 2.54 -7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "unconnected-(J2-Pin_8-Pad8)") (pinfunction "Pin_8") (pintype "passive+no_connect") (tstamp 9a2b7aa5-4ff6-4f68-975d-c19e7a12b056))
(pad "9" thru_hole circle (at 0 -10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "TDI") (pinfunction "Pin_9") (pintype "passive") (tstamp f3b4616f-0a86-4e71-bf9f-b92cc4ae89b3))
(pad "10" thru_hole circle (at 2.54 -10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_10") (pintype "passive") (tstamp b92a2bc7-76ff-477d-9984-ac066f1ec30e))
(model "${KICAD6_3DMODEL_DIR}/Connector_IDC.3dshapes/IDC-Header_2x05_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical" locked (layer "B.Cu")
(tstamp 7302ca42-5dba-4d87-81ad-763dfda96ef9)
(at 164.3025 60.93)
(descr "Through hole IDC box header, 2x05, 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 2x05 2.54mm double row")
(property "Alt" "C358739")
(property "LCSC" "C3322462")
(property "Sheetfile" "ESPProg-to-altera.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/536a4949-fc5f-4d19-bc68-9e0305495932")
(attr through_hole)
(fp_text reference "J1" (at 1.27 4.77) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 00e62702-a2c6-405d-a962-f737b9e02acb)
)
(fp_text value "SFH11-PBPC-D05-ST-BK" (at 1.27 -16.26) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 43da503b-4a13-40f0-af4f-3d9b5c7c2fc3)
)
(fp_text user "${REFERENCE}" (at 1.27 -5.08 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp dabb0ede-abc6-4dc1-b2e3-81bd8c384ed3)
)
(fp_line (start -3.78 -0.5) (end -2.78 0)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 6f5a5abb-9a26-4823-8f3f-4984cc46e5df))
(fp_line (start -3.78 0.5) (end -3.78 -0.5)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp df406cbb-2191-4516-bf34-047dcf6ffe96))
(fp_line (start -3.29 -3.03) (end -3.29 -7.13)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 7237bcc9-9f0e-4ab8-acbe-602e1228e742))
(fp_line (start -3.29 -3.03) (end -1.98 -3.03)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 54fb49ae-f945-40c8-96c8-0c59ec4b8f5b))
(fp_line (start -2.78 0) (end -3.78 0.5)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp e5d6a153-5d3d-4cb7-8fab-75dbdb1e61b2))
(fp_line (start -1.98 -14.07) (end -1.98 -7.13)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 6eb5f7e2-7c9f-4201-a2fa-c879f87760ba))
(fp_line (start -1.98 -7.13) (end -3.29 -7.13)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 43107690-5fd1-4e9b-998a-e6dfd687ac79))
(fp_line (start -1.98 -7.13) (end -1.98 -7.13)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 867ff0af-5f88-40c5-aed6-4e9ec8886891))
(fp_line (start -1.98 -3.03) (end -1.98 3.91)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 5f47f23c-0944-4df9-8126-7da87650a02f))
(fp_line (start -1.98 3.91) (end 4.52 3.91)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp d8e499d9-f56b-4eb7-936a-3b1f4f7243a4))
(fp_line (start 4.52 -14.07) (end -1.98 -14.07)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 5e12c49f-8c63-430d-9f19-a633636eaec5))
(fp_line (start 4.52 3.91) (end 4.52 -14.07)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 77180bb7-ed5d-40c0-8e22-0b423494a6ba))
(fp_line (start -3.68 -15.76) (end 6.22 -15.76)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 972843e7-edf9-4352-a789-02ed99c55efe))
(fp_line (start -3.68 5.6) (end -3.68 -15.76)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 4fe2c0f3-c196-4481-bdc6-cabff038063b))
(fp_line (start 6.22 -15.76) (end 6.22 5.6)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp bf85fcfe-d799-40c9-b7a6-b6b60618250b))
(fp_line (start 6.22 5.6) (end -3.68 5.6)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 59308977-cc5f-4cae-9955-196735de0071))
(fp_line (start -3.18 -15.26) (end -3.18 4.1)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 795915cc-254c-40af-bf46-089cb5dc8cc8))
(fp_line (start -3.18 -3.03) (end -1.98 -3.03)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 3cfc37e0-4a5a-44b6-a697-cdd37f6bf2fe))
(fp_line (start -3.18 4.1) (end -2.18 5.1)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp ba6f3085-6eaa-4ac5-b7cc-a2245202495d))
(fp_line (start -2.18 5.1) (end 5.72 5.1)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp e84b4130-6e03-4735-94d8-e96d3c0718a2))
(fp_line (start -1.98 -14.07) (end -1.98 -7.13)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp e1517633-e302-4d9b-8209-38621b1455db))
(fp_line (start -1.98 -7.13) (end -3.18 -7.13)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp acea11d9-f5aa-46a4-b8be-98bb0a1240a4))
(fp_line (start -1.98 -7.13) (end -1.98 -7.13)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 7e732c65-62ac-46b3-af70-9b2f72325d15))
(fp_line (start -1.98 -3.03) (end -1.98 3.91)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 991fa93f-5df7-4745-847d-5aecac37d69f))
(fp_line (start -1.98 3.91) (end 4.52 3.91)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp f9856326-7cee-467e-a47e-8cc04d711c25))
(fp_line (start 4.52 -14.07) (end -1.98 -14.07)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp a0b9ba88-f471-4c6e-bac6-261a0c14b543))
(fp_line (start 4.52 3.91) (end 4.52 -14.07)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 42e62f53-55d7-4f9d-a78e-753fdd45083f))
(fp_line (start 5.72 -15.26) (end -3.18 -15.26)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp c76628fd-7047-4b68-a8e0-05aa23886b23))
(fp_line (start 5.72 5.1) (end 5.72 -15.26)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp d738a487-89a1-49d0-9624-546c74ed635c))
(pad "1" thru_hole roundrect locked (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.1470588235)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp afd5046d-76bf-4ce0-8c79-30bcc080b34a))
(pad "2" thru_hole circle locked (at 2.54 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "unconnected-(J1-Pin_2-Pad2)") (pinfunction "Pin_2") (pintype "passive+no_connect") (tstamp 83f5a674-9aab-4168-8ef7-79b74e5649a5))
(pad "3" thru_hole circle locked (at 0 -2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 7e0336df-8a74-43fe-bc6d-51306e123f7c))
(pad "4" thru_hole circle locked (at 2.54 -2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "TDI") (pinfunction "Pin_4") (pintype "passive") (tstamp 87ac959b-fbf7-4040-8fd6-9c9ef233d4a1))
(pad "5" thru_hole circle locked (at 0 -5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp defcdfed-c174-43a8-9f63-0d3f9cc58d9e))
(pad "6" thru_hole circle locked (at 2.54 -5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "TDO") (pinfunction "Pin_6") (pintype "passive") (tstamp d73323b3-9dad-41bc-b635-5376c6dec18b))
(pad "7" thru_hole circle locked (at 0 -7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_7") (pintype "passive") (tstamp 47cf3684-9340-4c3c-a23f-cbd611c50454))
(pad "8" thru_hole circle locked (at 2.54 -7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "TCK") (pinfunction "Pin_8") (pintype "passive") (tstamp 7bf3b0c3-5f9d-4dde-8bda-73d622d1ed40))
(pad "9" thru_hole circle locked (at 0 -10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "V_JTAG") (pinfunction "Pin_9") (pintype "passive") (tstamp caddda76-7a24-4586-a964-79b4754e9e31))
(pad "10" thru_hole circle locked (at 2.54 -10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "TMS") (pinfunction "Pin_10") (pintype "passive") (tstamp c3170f20-38b3-4d10-ade5-8e79e72b4e0f))
(model "${KIPRJMOD}/SFH11-_ _ _C-D05-ST-_ _.STEP"
(offset (xyz 0.7 -22.2 3))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 90))
)
)
(gr_arc (start 144.2 43.2) (mid 144.492893 42.492893) (end 145.2 42.2)
(stroke (width 0.05) (type default)) (layer "Edge.Cuts") (tstamp 24cf07e3-284b-45c7-87cd-8682e2de5901))
(gr_line (start 170.5 69.5) (end 145.2 69.5)
(stroke (width 0.05) (type default)) (layer "Edge.Cuts") (tstamp 264bdb7e-0481-4032-b9ba-db5c466c322e))
(gr_arc (start 170.5 42.2) (mid 171.207107 42.492893) (end 171.5 43.2)
(stroke (width 0.05) (type default)) (layer "Edge.Cuts") (tstamp 2cb8bf50-96ff-4458-b5d3-4712835632f5))
(gr_line (start 171.5 43.2) (end 171.5 68.5)
(stroke (width 0.05) (type default)) (layer "Edge.Cuts") (tstamp 55897930-02b6-49a8-adba-ca8f11d40727))
(gr_line (start 145.2 42.2) (end 170.5 42.2)
(stroke (width 0.05) (type default)) (layer "Edge.Cuts") (tstamp 6fc35ef9-58a4-420a-a751-5f1311329335))
(gr_arc (start 145.2 69.5) (mid 144.492893 69.207107) (end 144.2 68.5)
(stroke (width 0.05) (type default)) (layer "Edge.Cuts") (tstamp b4529ccd-db52-4e22-a672-7e94bc1dc741))
(gr_arc (start 171.5 68.5) (mid 171.207107 69.207107) (end 170.5 69.5)
(stroke (width 0.05) (type default)) (layer "Edge.Cuts") (tstamp c35d1069-304c-454e-9ad8-1c71935fe3e0))
(gr_line (start 144.2 68.5) (end 144.2 43.2)
(stroke (width 0.05) (type default)) (layer "Edge.Cuts") (tstamp d6824c0e-59ee-4595-ba0b-c74cf9aa1afd))
(gr_text "To FPGA" (at 156.5 53.5 270) (layer "B.SilkS") (tstamp d1b27641-acdb-4da0-ba87-80e0f885a28c)
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
)
(gr_text "To ESP-PROG" (at 158.8 65.6 -90) (layer "B.SilkS") (tstamp d2b11afe-7ee1-45bd-bbb7-ddd27239d917)
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
)
(gr_text "Rev 1\nESK" (at 145.4 68.2) (layer "F.SilkS") (tstamp 4950b0a7-3b46-4d1b-8694-92ad92170165)
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom))
)
(gr_text "VDD => Target" (at 156.4 55.8 -90) (layer "F.SilkS") (tstamp 50596a8f-7b07-4b7c-ba75-1d3a7c4786d5)
(effects (font (size 1 1) (thickness 0.1)) (justify bottom))
)
(segment (start 152.497057 54.65) (end 154.334114 52.812943) (width 0.3) (layer "F.Cu") (net 1) (tstamp 249c5e50-835c-451c-a0a3-68836b0658b1))
(segment (start 163.1025 52.812943) (end 163.805443 52.11) (width 0.3) (layer "F.Cu") (net 1) (tstamp 2cc53ecc-0d26-4741-8842-40e02c27cf59))
(segment (start 165.5025 52.11) (end 166.8425 50.77) (width 0.3) (layer "F.Cu") (net 1) (tstamp bc318dfb-89d2-405a-ac71-886b0fea5222))
(segment (start 163.805443 52.11) (end 165.5025 52.11) (width 0.3) (layer "F.Cu") (net 1) (tstamp bfce81e2-de13-432b-ba51-b4515b735291))
(segment (start 149.46 55.85) (end 150.66 54.65) (width 0.3) (layer "F.Cu") (net 1) (tstamp c8eacb60-5dac-4cec-ad96-391451ab670e))
(segment (start 154.334114 52.812943) (end 163.1025 52.812943) (width 0.3) (layer "F.Cu") (net 1) (tstamp dcde62aa-bfe9-4043-8625-ee05a17c1f78))
(segment (start 150.66 54.65) (end 152.497057 54.65) (width 0.3) (layer "F.Cu") (net 1) (tstamp e78b4341-5e39-4de6-a6df-a36b5470da81))
(via (at 146.4 59.6) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 16df4314-8872-41f8-a722-34e93a975735))
(via (at 155.8 53.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 23d9bf0f-889d-49d4-974c-418510926cb0))
(via (at 159 59.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 35be4309-bc96-4c4d-a0c4-b6c735d4a8c1))
(via (at 158.4 48.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 4628d23d-8f3c-4453-973a-658cbb871a80))
(via (at 158.2 58.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 68cb8438-a041-42f8-8a90-056103ef69bc))
(via (at 158 64.6) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 8968cd87-57b8-4c94-83df-3873871b9187))
(via (at 169.4 51.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 8a611cb6-fae0-4e2b-b4a6-f7a5508146f2))
(via (at 155.8 52) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 8b3d59bb-aef2-428a-a572-7410c3c905af))
(via (at 146.4 51.2) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp b0ca12db-05f0-4310-96bd-83646c7aa18e))
(via (at 155.8 56.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp b65d1207-71c8-4c54-846c-225892ca6086))
(via (at 162.4 54.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp e29f28c2-bf05-4cc0-8c70-c5b010555e79))
(via (at 169.4 59.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp ed10ad57-2804-4580-a0f5-10e41dd2a885))
(via (at 152.8 63.6) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp f4d2350b-811d-4c50-8de1-82bc22591307))
(segment (start 159.2225 60.93) (end 162.2 57.9525) (width 0.3) (layer "F.Cu") (net 3) (tstamp 4f12ce53-b157-4b8e-aaff-54695b7c7274))
(segment (start 165.5025 54.65) (end 166.8425 53.31) (width 0.3) (layer "F.Cu") (net 3) (tstamp 4f13afc3-d5a4-499e-b342-0079423d40fb))
(segment (start 162.2 56.255443) (end 163.805443 54.65) (width 0.3) (layer "F.Cu") (net 3) (tstamp 972735b3-e501-4f9b-9b50-5d91624170f4))
(segment (start 162.2 57.9525) (end 162.2 56.255443) (width 0.3) (layer "F.Cu") (net 3) (tstamp 9a20c5ef-7bdd-4c06-95c2-0fc82baeebda))
(segment (start 163.805443 54.65) (end 165.5025 54.65) (width 0.3) (layer "F.Cu") (net 3) (tstamp 9ec64f78-ae0f-4fc5-a36a-44418bd4c400))
(segment (start 153.697057 60.93) (end 159.2225 60.93) (width 0.3) (layer "F.Cu") (net 3) (tstamp bf1fb9d6-d350-43a5-a95d-2ea13e440c3e))
(segment (start 149.46 60.93) (end 150.66 62.13) (width 0.3) (layer "F.Cu") (net 3) (tstamp c40399d9-0a9e-4513-85e2-1c488dbaa535))
(segment (start 150.66 62.13) (end 152.497057 62.13) (width 0.3) (layer "F.Cu") (net 3) (tstamp ddedd69b-5c2d-48fe-857b-ba2d5d92de7e))
(segment (start 152.497057 62.13) (end 153.697057 60.93) (width 0.3) (layer "F.Cu") (net 3) (tstamp ef4c4115-aef7-43a7-8989-e0725b0e2f12))
(segment (start 165.5025 57.19) (end 166.8425 55.85) (width 0.3) (layer "B.Cu") (net 4) (tstamp 1ff28751-e805-463b-aec9-0b841567be4f))
(segment (start 150.66 57.19) (end 165.5025 57.19) (width 0.3) (layer "B.Cu") (net 4) (tstamp 8e0cb427-61ef-4f27-b693-d3e4b3666aff))
(segment (start 149.46 58.39) (end 150.66 57.19) (width 0.3) (layer "B.Cu") (net 4) (tstamp c6fe6f5e-8178-45d1-833c-2d07a1a3d404))
(segment (start 148.26 51.97) (end 149.46 50.77) (width 0.3) (layer "F.Cu") (net 5) (tstamp 0ae30bc0-c6a1-419a-9c96-5760972ebf27))
(segment (start 155.8 59.4) (end 155.6 59.6) (width 0.3) (layer "F.Cu") (net 5) (tstamp 3cf2f0bd-9942-4b6e-8548-5766e93aa1f6))
(segment (start 151.512943 59.6) (end 150.66 58.747057) (width 0.3) (layer "F.Cu") (net 5) (tstamp 51331e44-1ff0-4552-905a-96c5f626e1ae))
(segment (start 149.957057 57.19) (end 149.102943 57.19) (width 0.3) (layer "F.Cu") (net 5) (tstamp 62147b5f-901e-4d0c-be3a-3427fff8fcac))
(segment (start 155.6 59.6) (end 151.512943 59.6) (width 0.3) (layer "F.Cu") (net 5) (tstamp 6c85bf92-73df-4ac4-933b-080df5847fd4))
(segment (start 149.102943 57.19) (end 148.26 56.347057) (width 0.3) (layer "F.Cu") (net 5) (tstamp 989722af-f58d-4596-a170-2c8afe779dc2))
(segment (start 150.66 58.747057) (end 150.66 57.892943) (width 0.3) (layer "F.Cu") (net 5) (tstamp bc05d67b-2a54-44b1-8f78-81d5cdb7b4ec))
(segment (start 150.66 57.892943) (end 149.957057 57.19) (width 0.3) (layer "F.Cu") (net 5) (tstamp bde8bc34-944d-42cc-9ed7-7cddf9f4d6bb))
(segment (start 148.26 56.347057) (end 148.26 51.97) (width 0.3) (layer "F.Cu") (net 5) (tstamp eaed481e-687e-45e4-b269-0c16d40be463))
(via (at 155.8 59.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 5) (tstamp 1363f67b-a5ae-4945-b889-625cd2f0c126))
(segment (start 159.35 59.15) (end 159.79 59.59) (width 0.3) (layer "B.Cu") (net 5) (tstamp 1116b524-7137-4180-8bcd-ae215f885207))
(segment (start 165.6425 59.59) (end 166.8425 58.39) (width 0.3) (layer "B.Cu") (net 5) (tstamp 1821c850-0c47-43e1-8ce2-eabce0707022))
(segment (start 156.05 59.15) (end 159.35 59.15) (width 0.3) (layer "B.Cu") (net 5) (tstamp 30035cbc-2b19-431f-9271-0acd50f72252))
(segment (start 155.8 59.4) (end 156.05 59.15) (width 0.3) (layer "B.Cu") (net 5) (tstamp 3e0f3112-8ec3-4c08-a3fd-774205e25c03))
(segment (start 159.79 59.59) (end 165.6425 59.59) (width 0.3) (layer "B.Cu") (net 5) (tstamp 56a63f79-bcca-46b6-ace7-06eabc83d511))
(segment (start 155.265 55.125) (end 159 55.125) (width 0.5) (layer "F.Cu") (net 6) (tstamp 647f941c-6fa9-41c6-8a50-e79cd1c7cb01))
(segment (start 152 58.39) (end 155.265 55.125) (width 0.5) (layer "F.Cu") (net 6) (tstamp c56ffb42-90d4-414a-8993-d35485099b2c))
(segment (start 159 56.575) (end 160.025 56.575) (width 0.5) (layer "F.Cu") (net 7) (tstamp 1f528539-f526-45ca-ba1b-63b057637d03))
(segment (start 160.025 56.575) (end 160.6 56) (width 0.5) (layer "F.Cu") (net 7) (tstamp dda73dc1-4370-4214-9a76-e89572e55ec6))
(via (at 160.6 56) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 7) (tstamp 148f2c31-76d2-45d2-b403-c425ae86445e))
(segment (start 160.6 54.4725) (end 164.3025 50.77) (width 0.5) (layer "B.Cu") (net 7) (tstamp 34b20a5a-9aa4-4e82-993c-dcb59c4ca2e9))
(segment (start 160.6 56) (end 160.6 54.4725) (width 0.5) (layer "B.Cu") (net 7) (tstamp b8937dfe-5c1d-4225-9329-835317552a2a))
(zone (net 2) (net_name "GND") (layers "F&B.Cu") (tstamp 6bf52e2c-4027-425c-b280-7925081768cc) (hatch edge 0.5)
(connect_pads (clearance 0.5))
(min_thickness 0.25) (filled_areas_thickness no)
(fill yes (thermal_gap 0.5) (thermal_bridge_width 0.5))
(polygon
(pts
(xy 175 39.5)
(xy 141 39.5)
(xy 141 73.5)
(xy 143 75.5)
(xy 176 75.5)
(xy 177 74.5)
(xy 177 41.5)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 157.687392 55.895185)
(xy 157.733147 55.947989)
(xy 157.744353 55.9995)
(xy 157.744353 57.075002)
(xy 157.749499 57.14696)
(xy 157.7495 57.146965)
(xy 157.790045 57.28505)
(xy 157.790047 57.285053)
(xy 157.867857 57.406128)
(xy 157.976627 57.500377)
(xy 158.107543 57.560165)
(xy 158.25 57.580647)
(xy 158.250003 57.580647)
(xy 159.75 57.580647)
(xy 159.821961 57.5755)
(xy 159.821963 57.575499)
(xy 159.821965 57.575499)
(xy 159.96005 57.534954)
(xy 159.96005 57.534953)
(xy 159.960053 57.534953)
(xy 160.081128 57.457143)
(xy 160.175377 57.348373)
(xy 160.175381 57.348363)
(xy 160.17746 57.34513)
(xy 160.180378 57.3426)
(xy 160.181185 57.34167)
(xy 160.181318 57.341785)
(xy 160.230261 57.299371)
(xy 160.239345 57.295649)
(xy 160.269776 57.284573)
(xy 160.273117 57.283412)
(xy 160.344334 57.259814)
(xy 160.344342 57.259808)
(xy 160.350882 57.25676)
(xy 160.350908 57.256816)
(xy 160.35769 57.253532)
(xy 160.357663 57.253478)
(xy 160.364113 57.250238)
(xy 160.364117 57.250237)
(xy 160.426837 57.208984)
(xy 160.429732 57.20714)
(xy 160.493656 57.167712)
(xy 160.493662 57.167705)
(xy 160.499325 57.163229)
(xy 160.499363 57.163277)
(xy 160.5052 57.158522)
(xy 160.505161 57.158475)
(xy 160.510691 57.153833)
(xy 160.510696 57.15383)
(xy 160.562184 57.099254)
(xy 160.564631 57.096735)
(xy 160.908061 56.753305)
(xy 160.944134 56.730655)
(xy 160.943246 56.728811)
(xy 160.949518 56.72579)
(xy 160.949522 56.725789)
(xy 161.102262 56.629816)
(xy 161.229816 56.502262)
(xy 161.320506 56.35793)
(xy 161.372841 56.311639)
(xy 161.441895 56.300991)
(xy 161.505743 56.329366)
(xy 161.544115 56.387756)
(xy 161.5495 56.423902)
(xy 161.5495 57.631692)
(xy 161.529815 57.698731)
(xy 161.513181 57.719373)
(xy 158.989373 60.243181)
(xy 158.92805 60.276666)
(xy 158.901692 60.2795)
(xy 156.335306 60.2795)
(xy 156.268267 60.259815)
(xy 156.222512 60.207011)
(xy 156.212568 60.137853)
(xy 156.241593 60.074297)
(xy 156.269334 60.050507)
(xy 156.302256 60.02982)
(xy 156.302257 60.029819)
(xy 156.302262 60.029816)
(xy 156.429816 59.902262)
(xy 156.525789 59.749522)
(xy 156.585368 59.579255)
(xy 156.587083 59.564035)
(xy 156.605565 59.400003)
(xy 156.605565 59.399996)
(xy 156.585369 59.22075)
(xy 156.585368 59.220745)
(xy 156.531862 59.067834)
(xy 156.525789 59.050478)
(xy 156.429816 58.897738)
(xy 156.302262 58.770184)
(xy 156.223665 58.720798)
(xy 156.149523 58.674211)
(xy 155.979254 58.614631)
(xy 155.979249 58.61463)
(xy 155.800004 58.594435)
(xy 155.799996 58.594435)
(xy 155.62075 58.61463)
(xy 155.620745 58.614631)
(xy 155.450476 58.674211)
(xy 155.297737 58.770184)
(xy 155.170183 58.897738)
(xy 155.166135 58.902815)
(xy 155.108946 58.942954)
(xy 155.06919 58.9495)
(xy 153.409824 58.9495)
(xy 153.342785 58.929815)
(xy 153.29703 58.877011)
(xy 153.287086 58.807853)
(xy 153.290049 58.793407)
(xy 153.321986 58.674211)
(xy 153.335063 58.625408)
(xy 153.355659 58.39)
(xy 153.354011 58.371169)
(xy 153.338499 58.193868)
(xy 153.337022 58.176985)
(xy 153.350788 58.108486)
(xy 153.372866 58.0785)
(xy 155.539548 55.911819)
(xy 155.600871 55.878334)
(xy 155.627229 55.8755)
(xy 157.620353 55.8755)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 165.417425 59.151373)
(xy 165.470619 59.075405)
(xy 165.525196 59.031781)
(xy 165.594695 59.024588)
(xy 165.657049 59.05611)
(xy 165.673769 59.075405)
(xy 165.804005 59.261401)
(xy 165.804006 59.261402)
(xy 165.971097 59.428493)
(xy 165.971103 59.428498)
(xy 166.156658 59.558425)
(xy 166.200283 59.613002)
(xy 166.207477 59.6825)
(xy 166.175954 59.744855)
(xy 166.156658 59.761575)
(xy 165.971097 59.891505)
(xy 165.804005 60.058597)
(xy 165.802477 60.060419)
(xy 165.801601 60.061001)
(xy 165.800176 60.062427)
(xy 165.799889 60.06214)
(xy 165.744304 60.099119)
(xy 165.674443 60.100224)
(xy 165.615075 60.063384)
(xy 165.589785 60.019712)
(xy 165.586859 60.010882)
(xy 165.586856 60.010875)
(xy 165.494815 59.861654)
(xy 165.370845 59.737684)
(xy 165.221624 59.645643)
(xy 165.221619 59.645641)
(xy 165.149422 59.621718)
(xy 165.091977 59.581946)
(xy 165.065154 59.51743)
(xy 165.065034 59.506086)
(xy 164.435033 58.876086)
(xy 164.444815 58.87468)
(xy 164.5756 58.814952)
(xy 164.684261 58.720798)
(xy 164.761993 58.599844)
(xy 164.785576 58.519524)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 163.843007 56.059844)
(xy 163.920739 56.180798)
(xy 164.0294 56.274952)
(xy 164.160185 56.33468)
(xy 164.169966 56.336086)
(xy 163.541125 56.964925)
(xy 163.617531 57.018425)
(xy 163.661155 57.073002)
(xy 163.668348 57.142501)
(xy 163.636826 57.204855)
(xy 163.617529 57.221576)
(xy 163.541125 57.275072)
(xy 164.169966 57.903913)
(xy 164.160185 57.90532)
(xy 164.0294 57.965048)
(xy 163.920739 58.059202)
(xy 163.843007 58.180156)
(xy 163.819423 58.260475)
(xy 163.187573 57.628625)
(xy 163.187572 57.628625)
(xy 163.128901 57.712419)
(xy 163.086882 57.802529)
(xy 163.040709 57.854968)
(xy 162.973516 57.87412)
(xy 162.906634 57.853904)
(xy 162.8613 57.800738)
(xy 162.8505 57.750124)
(xy 162.8505 56.57625)
(xy 162.870185 56.509211)
(xy 162.886814 56.488574)
(xy 162.914289 56.461099)
(xy 162.97561 56.427616)
(xy 163.045302 56.4326)
(xy 163.101235 56.474472)
(xy 163.114349 56.496376)
(xy 163.128896 56.527572)
(xy 163.1289 56.527579)
(xy 163.187573 56.611373)
(xy 163.819422 55.979523)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 165.417425 56.611373)
(xy 165.470619 56.535405)
(xy 165.525196 56.491781)
(xy 165.594695 56.484588)
(xy 165.657049 56.51611)
(xy 165.673769 56.535405)
(xy 165.804005 56.721401)
(xy 165.804006 56.721402)
(xy 165.971097 56.888493)
(xy 165.971103 56.888498)
(xy 166.156658 57.018425)
(xy 166.200283 57.073002)
(xy 166.207477 57.1425)
(xy 166.175954 57.204855)
(xy 166.156658 57.221575)
(xy 165.971097 57.351505)
(xy 165.804005 57.518597)
(xy 165.673769 57.704595)
(xy 165.619192 57.74822)
(xy 165.549694 57.755414)
(xy 165.487339 57.723891)
(xy 165.470619 57.704595)
(xy 165.417425 57.628626)
(xy 165.417425 57.628625)
(xy 164.785576 58.260475)
(xy 164.761993 58.180156)
(xy 164.684261 58.059202)
(xy 164.5756 57.965048)
(xy 164.444815 57.90532)
(xy 164.435033 57.903913)
(xy 165.063873 57.275073)
(xy 164.987469 57.221576)
(xy 164.943844 57.166999)
(xy 164.93665 57.097501)
(xy 164.968172 57.035146)
(xy 164.987468 57.018425)
(xy 165.063873 56.964925)
(xy 164.435033 56.336086)
(xy 164.444815 56.33468)
(xy 164.5756 56.274952)
(xy 164.684261 56.180798)
(xy 164.761993 56.059844)
(xy 164.785576 55.979524)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 162.917882 53.483128)
(xy 162.963637 53.535932)
(xy 162.970618 53.555349)
(xy 163.029067 53.773486)
(xy 163.02907 53.773492)
(xy 163.128899 53.987578)
(xy 163.241787 54.148797)
(xy 163.264114 54.215003)
(xy 163.247104 54.282771)
(xy 163.227893 54.307602)
(xy 161.800483 55.735012)
(xy 161.78791 55.745086)
(xy 161.788065 55.745273)
(xy 161.782058 55.750242)
(xy 161.734133 55.801276)
(xy 161.731427 55.804068)
(xy 161.71109 55.824406)
(xy 161.711077 55.824421)
(xy 161.708373 55.827906)
(xy 161.700806 55.836765)
(xy 161.669552 55.87005)
(xy 161.659322 55.888656)
(xy 161.648646 55.904907)
(xy 161.63564 55.921675)
(xy 161.635635 55.921683)
(xy 161.630987 55.932425)
(xy 161.586295 55.986132)
(xy 161.519662 56.00715)
(xy 161.452243 55.988808)
(xy 161.405443 55.936927)
(xy 161.393967 55.897058)
(xy 161.385369 55.82075)
(xy 161.385368 55.820745)
(xy 161.379049 55.802687)
(xy 161.325789 55.650478)
(xy 161.303243 55.614597)
(xy 161.263058 55.550643)
(xy 161.229816 55.497738)
(xy 161.102262 55.370184)
(xy 161.094521 55.36532)
(xy 160.949523 55.274211)
(xy 160.779254 55.214631)
(xy 160.779249 55.21463)
(xy 160.600004 55.194435)
(xy 160.599996 55.194435)
(xy 160.42075 55.21463)
(xy 160.420742 55.214632)
(xy 160.420601 55.214682)
(xy 160.420503 55.214686)
(xy 160.413953 55.216182)
(xy 160.413691 55.215034)
(xy 160.350822 55.218243)
(xy 160.290195 55.183514)
(xy 160.257968 55.121521)
(xy 160.255647 55.09764)
(xy 160.255647 54.625)
(xy 160.2505 54.553039)
(xy 160.248483 54.54617)
(xy 160.209954 54.414949)
(xy 160.209953 54.414947)
(xy 160.132143 54.293872)
(xy 160.023373 54.199623)
(xy 160.023371 54.199622)
(xy 159.892456 54.139834)
(xy 159.785792 54.124499)
(xy 159.75 54.119353)
(xy 158.25 54.119353)
(xy 158.249997 54.119353)
(xy 158.178039 54.124499)
(xy 158.178034 54.1245)
(xy 158.039949 54.165045)
(xy 157.918873 54.242856)
(xy 157.841887 54.331703)
(xy 157.783109 54.369477)
(xy 157.748174 54.3745)
(xy 155.328705 54.3745)
(xy 155.310735 54.373191)
(xy 155.286972 54.36971)
(xy 155.240642 54.373764)
(xy 155.237632 54.374028)
(xy 155.226826 54.3745)
(xy 155.221282 54.3745)
(xy 155.190488 54.378099)
(xy 155.186905 54.378465)
(xy 155.1122 54.385001)
(xy 155.105134 54.386461)
(xy 155.105122 54.386404)
(xy 155.097753 54.388038)
(xy 155.097767 54.388095)
(xy 155.090743 54.389759)
(xy 155.020245 54.415417)
(xy 155.016845 54.416598)
(xy 154.945665 54.440186)
(xy 154.945663 54.440186)
(xy 154.94566 54.440188)
(xy 154.939123 54.443236)
(xy 154.939098 54.443184)
(xy 154.93231 54.44647)
(xy 154.932336 54.446521)
(xy 154.925884 54.449761)
(xy 154.863236 54.490965)
(xy 154.860196 54.492902)
(xy 154.796347 54.532285)
(xy 154.790682 54.536765)
(xy 154.790646 54.536719)
(xy 154.784798 54.541484)
(xy 154.784835 54.541528)
(xy 154.77931 54.546164)
(xy 154.779304 54.546169)
(xy 154.779304 54.54617)
(xy 154.747386 54.58)
(xy 154.727848 54.600709)
(xy 154.725336 54.603294)
(xy 153.553584 55.775046)
(xy 153.492261 55.808531)
(xy 153.422569 55.803547)
(xy 153.366636 55.761675)
(xy 153.342375 55.698172)
(xy 153.338202 55.650478)
(xy 153.335063 55.614592)
(xy 153.273903 55.386337)
(xy 153.174035 55.172171)
(xy 153.118725 55.09318)
(xy 153.0964 55.026979)
(xy 153.11341 54.959211)
(xy 153.132617 54.934384)
(xy 154.567241 53.499762)
(xy 154.628564 53.466277)
(xy 154.654922 53.463443)
(xy 162.850843 53.463443)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 151.540507 50.979844)
(xy 151.618239 51.100798)
(xy 151.7269 51.194952)
(xy 151.857685 51.25468)
(xy 151.867466 51.256086)
(xy 151.238625 51.884925)
(xy 151.314594 51.938119)
(xy 151.358219 51.992696)
(xy 151.365413 52.062194)
(xy 151.33389 52.124549)
(xy 151.314595 52.141269)
(xy 151.128594 52.271508)
(xy 150.961505 52.438597)
(xy 150.831575 52.624158)
(xy 150.776998 52.667783)
(xy 150.7075 52.674977)
(xy 150.645145 52.643454)
(xy 150.628425 52.624158)
(xy 150.498494 52.438597)
(xy 150.331402 52.271506)
(xy 150.331396 52.271501)
(xy 150.145842 52.141575)
(xy 150.102217 52.086998)
(xy 150.095023 52.0175)
(xy 150.126546 51.955145)
(xy 150.145842 51.938425)
(xy 150.218109 51.887823)
(xy 150.331401 51.808495)
(xy 150.498495 51.641401)
(xy 150.628732 51.455403)
(xy 150.683307 51.41178)
(xy 150.752805 51.404586)
(xy 150.81516 51.436109)
(xy 150.83188 51.455405)
(xy 150.885073 51.531373)
(xy 151.516923 50.899523)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 170.506922 42.70128)
(xy 170.597266 42.711459)
(xy 170.624331 42.717636)
(xy 170.70354 42.745352)
(xy 170.728553 42.757398)
(xy 170.799606 42.802043)
(xy 170.821313 42.819355)
(xy 170.880644 42.878686)
(xy 170.897957 42.900395)
(xy 170.9426 42.971444)
(xy 170.954648 42.996462)
(xy 170.982362 43.075666)
(xy 170.98854 43.102735)
(xy 170.99872 43.193076)
(xy 170.9995 43.206961)
(xy 170.9995 68.493038)
(xy 170.99872 68.506923)
(xy 170.98854 68.597264)
(xy 170.982362 68.624333)
(xy 170.954648 68.703537)
(xy 170.9426 68.728555)
(xy 170.897957 68.799604)
(xy 170.880644 68.821313)
(xy 170.821313 68.880644)
(xy 170.799604 68.897957)
(xy 170.728555 68.9426)
(xy 170.703537 68.954648)
(xy 170.624333 68.982362)
(xy 170.597264 68.98854)
(xy 170.517075 68.997576)
(xy 170.506921 68.99872)
(xy 170.493038 68.9995)
(xy 145.206962 68.9995)
(xy 145.193078 68.99872)
(xy 145.180553 68.997308)
(xy 145.102735 68.98854)
(xy 145.075666 68.982362)
(xy 144.996462 68.954648)
(xy 144.971444 68.9426)
(xy 144.900395 68.897957)
(xy 144.878686 68.880644)
(xy 144.819355 68.821313)
(xy 144.802042 68.799604)
(xy 144.757399 68.728555)
(xy 144.745351 68.703537)
(xy 144.717637 68.624333)
(xy 144.711459 68.597263)
(xy 144.70128 68.506922)
(xy 144.7005 68.493038)
(xy 144.7005 51.949403)
(xy 147.604653 51.949403)
(xy 147.60895 51.994858)
(xy 147.6095 52.006528)
(xy 147.6095 56.261551)
(xy 147.607732 56.277562)
(xy 147.607974 56.277585)
(xy 147.60724 56.285351)
(xy 147.60724 56.285353)
(xy 147.608066 56.311639)
(xy 147.609439 56.355319)
(xy 147.6095 56.359214)
(xy 147.6095 56.387977)
(xy 147.609501 56.387995)
(xy 147.610053 56.392368)
(xy 147.610968 56.403998)
(xy 147.612402 56.449624)
(xy 147.612403 56.449627)
(xy 147.618323 56.470005)
(xy 147.622268 56.489053)
(xy 147.624928 56.510111)
(xy 147.624931 56.510122)
(xy 147.641737 56.552571)
(xy 147.64552 56.56362)
(xy 147.658254 56.607452)