-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdin13f-breakout.kicad_pcb
3035 lines (3023 loc) · 131 KB
/
din13f-breakout.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
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "st-13f-breakout-v0.1")
)
)
(net 0 "")
(net 1 "unconnected-(J1-Pad15)")
(net 2 "/VSYNC")
(net 3 "/HSYNC")
(net 4 "unconnected-(J1-Pad12)")
(net 5 "unconnected-(J1-Pad11)")
(net 6 "/VGND")
(net 7 "unconnected-(J1-Pad9)")
(net 8 "unconnected-(J1-Pad4)")
(net 9 "/BLUE")
(net 10 "/GREEN")
(net 11 "/RED")
(net 12 "/CVID")
(net 13 "/AUDIO_OUT")
(net 14 "/GPO")
(net 15 "/~{MONO}")
(net 16 "/AUDIO_IN")
(net 17 "/+12V")
(net 18 "/MONOVID")
(net 19 "Net-(J4-PadE1)")
(footprint "SDD-130J:CUI_SDD-130J" (layer "F.Cu")
(tstamp 016e2c13-810f-4249-bfb1-c8ca41630f64)
(at 130.048 112.9725)
(property "MANUFACTURER" "CUI Devices")
(property "MAXIMUM_PACKAGE_HEIGHT" "19.80mm")
(property "PARTREV" "1.06/02-13-2020")
(property "STANDARD" "Manufacturer Recommendations")
(property "Sheetfile" "din13f-breakout.kicad_sch")
(property "Sheetname" "")
(path "/29734604-6efb-4639-86ae-3538635da170")
(attr through_hole)
(fp_text reference "J4" (at -6.425 -18.335) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fc5f4085-e34b-435f-810e-7c6003dd5602)
)
(fp_text value "SDD-130J" (at -0.508 -3.7525) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp be4003cc-a40b-4a80-a876-235f2ef02803)
)
(fp_line (start -9.75 -17.2) (end 9.75 -17.2)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 7052d9ad-5c7e-495e-b5ba-73fe9d719639))
(fp_line (start -9.75 2.8) (end -9.75 -17.2)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp daa221b3-753b-4b67-b253-023b99cd3f74))
(fp_line (start 9.75 -17.2) (end 9.75 2.8)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 0ea19233-c34c-40b4-8e02-84a7b91327be))
(fp_line (start 9.75 2.8) (end -9.75 2.8)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 4b5adaa0-170f-4986-aacb-281105678789))
(fp_circle (center 3.15 -18) (end 3.25 -18)
(stroke (width 0.2) (type solid)) (fill none) (layer "F.SilkS") (tstamp db88528a-d86b-4bfa-9d43-90f241b57a0d))
(fp_line (start -10 -17.45) (end -10 3.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 52dc95b4-7c82-460e-8c2d-6d8a5ed7e792))
(fp_line (start -10 3.05) (end 10 3.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b3e21bf5-9fce-46ab-807b-51de6c8dc292))
(fp_line (start 10 -17.45) (end -10 -17.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5322ccd3-adda-4be6-8888-5209134956fd))
(fp_line (start 10 3.05) (end 10 -17.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2f4b4d8d-4ee0-4aee-99a1-bfd55b69d76a))
(fp_line (start -9.75 -17.2) (end 9.75 -17.2)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 2ec81d69-8bc6-43f9-883b-a22a73fc5bf5))
(fp_line (start -9.75 2.8) (end -9.75 -17.2)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp d7d9bf11-3591-492c-b239-2a7ae99ff1f2))
(fp_line (start 9.75 -17.2) (end 9.75 2.8)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 54d5ad5e-748f-45b1-a31b-4f1e5b6e465c))
(fp_line (start 9.75 2.8) (end -9.75 2.8)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp e8c3de90-5211-4653-875e-eb9e1136eea5))
(fp_circle (center 3.15 -18) (end 3.25 -18)
(stroke (width 0.2) (type solid)) (fill none) (layer "F.Fab") (tstamp 90583236-85a5-44a2-834f-3f9faec24e3b))
(pad "1" thru_hole rect (at 3.3 -15.7) (size 1.508 1.508) (drill 1) (layers "*.Cu" "*.Mask")
(net 13 "/AUDIO_OUT") (pinfunction "1") (pintype "passive") (tstamp d47aa4f2-fe2b-4734-8fe1-8853f222a3d2))
(pad "2" thru_hole circle (at 0.8 -15.7) (size 1.508 1.508) (drill 1) (layers "*.Cu" "*.Mask")
(net 12 "/CVID") (pinfunction "2") (pintype "passive") (tstamp ca3cd46a-3b82-4d1b-b0a4-5c3c1ceec8f6))
(pad "3" thru_hole circle (at -1.6 -15.7) (size 1.508 1.508) (drill 1) (layers "*.Cu" "*.Mask")
(net 14 "/GPO") (pinfunction "3") (pintype "passive") (tstamp 419bc313-3f00-4847-92da-112d4ec3a092))
(pad "4" thru_hole circle (at -4 -15.7) (size 1.508 1.508) (drill 1) (layers "*.Cu" "*.Mask")
(net 15 "/~{MONO}") (pinfunction "4") (pintype "passive") (tstamp 613ff73f-8186-47ca-bfa7-a5dbb3086db6))
(pad "5" thru_hole circle (at 4.5 -13.7) (size 1.508 1.508) (drill 1) (layers "*.Cu" "*.Mask")
(net 16 "/AUDIO_IN") (pinfunction "5") (pintype "passive") (tstamp 2fcc8e9e-f83c-416d-8ac0-c80098341f73))
(pad "6" thru_hole circle (at 2.1 -13.7) (size 1.508 1.508) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "/GREEN") (pinfunction "6") (pintype "passive") (tstamp a40596e4-58e7-48d1-8e04-08d19fcafcc3))
(pad "7" thru_hole circle (at -0.4 -13.7) (size 1.508 1.508) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "/RED") (pinfunction "7") (pintype "passive") (tstamp c56836cc-ee9c-4826-82ee-1718013bcbce))
(pad "8" thru_hole circle (at -2.8 -13.7) (size 1.508 1.508) (drill 1) (layers "*.Cu" "*.Mask")
(net 17 "/+12V") (pinfunction "8") (pintype "passive") (tstamp f4a5f3e4-fee0-409f-876f-ab7a2923df61))
(pad "9" thru_hole circle (at 3.3 -11.7) (size 1.508 1.508) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "/HSYNC") (pinfunction "9") (pintype "passive") (tstamp 5c9ad063-ec2d-4b81-ada6-6c3838969b2d))
(pad "10" thru_hole circle (at 0.8 -11.7) (size 1.508 1.508) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "/BLUE") (pinfunction "10") (pintype "passive") (tstamp 999030bd-b48e-4a36-be7b-840d276006be))
(pad "11" thru_hole circle (at -1.6 -11.7) (size 1.508 1.508) (drill 1) (layers "*.Cu" "*.Mask")
(net 18 "/MONOVID") (pinfunction "11") (pintype "passive") (tstamp 497277c9-eb5c-4bd2-9ec1-874edab53d49))
(pad "12" thru_hole circle (at -4 -11.7) (size 1.508 1.508) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "/VSYNC") (pinfunction "12") (pintype "passive") (tstamp 88b90532-f6fa-45b1-9804-ddbb1100bcda))
(pad "13" thru_hole circle (at -0.4 -9.7) (size 1.508 1.508) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "/VGND") (pinfunction "13") (pintype "passive") (tstamp f3d785a0-52fa-432e-8c06-210cd36d59e6))
(pad "E1" thru_hole circle (at -5 0) (size 2.1 2.1) (drill 1.4) (layers "*.Cu" "*.Mask")
(net 19 "Net-(J4-PadE1)") (pinfunction "GND") (pintype "power_in") (tstamp 001956da-cdd5-4e85-9549-6880dfe99376))
(pad "E2" thru_hole circle (at 5 0) (size 2.1 2.1) (drill 1.4) (layers "*.Cu" "*.Mask")
(net 19 "Net-(J4-PadE1)") (pinfunction "GND") (pintype "power_in") (tstamp 982adff8-343a-4299-9b0a-d465ca1d1934))
)
(footprint "Connector_TE_AMP_HD15:FIXED-1-1734530-1" (layer "F.Cu")
(tstamp 34ef558b-94bf-4f63-b3f5-8ed8475a239c)
(at 135.89 71.9201)
(property "Sheetfile" "din13f-breakout.kicad_sch")
(property "Sheetname" "")
(path "/71981395-6e2d-465a-92b8-5b6eaab7b637")
(attr through_hole)
(fp_text reference "J1" (at 0 3.7719) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 60f10660-c9bd-46a6-94b0-6644523d6eef)
)
(fp_text value "DB15_Female_HighDensity" (at 0 1.9939) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 07495d72-2ec2-463a-9b32-5926be9b3c6c)
)
(fp_text user "*" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 374de0f8-e808-4ddb-ad61-0d3bad77f9da)
)
(fp_text user "Copyright 2016 Accelerated Designs. All rights reserved." (at 0 0) (layer "Cmts.User")
(effects (font (size 0.127 0.127) (thickness 0.002)))
(tstamp 71c87bb3-9548-461b-b72b-18098a0c9140)
)
(fp_text user "*" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8534e62c-f313-4b39-8be0-5849ff4fab3e)
)
(fp_line (start -15.7226 -0.127) (end 15.7226 -0.127)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 792fc998-6022-42dc-af94-283f745af331))
(fp_line (start -15.7226 16.3576) (end -15.7226 -0.127)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 3014992c-491e-4304-8b40-ddeaf0762c7a))
(fp_line (start -14.6558 -6.2738) (end -14.6558 -0.127)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 3d762b99-700f-43c5-a27c-2ef14efd70c6))
(fp_line (start -10.5918 -6.2738) (end -14.6558 -6.2738)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 5cb2d38b-225a-4fb0-9856-7fabaa94c40a))
(fp_line (start -10.5918 -0.127) (end -10.5918 -6.2738)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 6325c9c0-5d53-4fef-8c2a-ed663af0a107))
(fp_line (start -8.4074 -6.2738) (end 8.4074 -6.2738)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 10b30ffe-b17e-4ab4-ad11-62a08e4215b9))
(fp_line (start -8.4074 0.127) (end -8.4074 -6.2738)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp f80e81a1-818f-40fd-9462-3b8af611191f))
(fp_line (start 8.4074 -6.2738) (end 8.4074 0.127)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp f55ef7c0-fe54-42fd-92a8-02a65d1b83e0))
(fp_line (start 8.4074 0.127) (end -8.4074 0.127)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 774c3a24-313c-4302-ba6e-e05ae47243db))
(fp_line (start 10.5918 -6.2738) (end 10.5918 -0.127)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp da7249cc-4413-4e81-a3f0-d5cffd90e76d))
(fp_line (start 14.6558 -6.2738) (end 10.5918 -6.2738)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 5c8ba38c-6811-4ea1-b862-4e34e6575111))
(fp_line (start 14.6558 0) (end 14.6558 -6.2738)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 03b92935-6eae-4ce0-9b5d-8115043a70f0))
(fp_line (start 15.7226 -0.127) (end 15.7226 16.3576)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 2f69c370-9d49-4a0e-87c3-6feb49ef0b02))
(fp_line (start 15.7226 16.3576) (end -15.7226 16.3576)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 05b840ed-7f69-4ade-982d-b4f80407228b))
(fp_line (start -15.8496 -6.4008) (end 15.8496 -6.4008)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp 8e86c1d4-5d4b-41f1-999c-76eda888414f))
(fp_line (start -15.8496 16.4846) (end -15.8496 -6.4008)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp feb7dca3-c71d-481f-9571-28816d424691))
(fp_line (start 15.8496 -6.4008) (end 15.8496 16.4846)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp d1a9970d-8f48-4a52-b16e-f17e4588f4ec))
(fp_line (start 15.8496 16.4846) (end -15.8496 16.4846)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp faa32387-fc45-4670-beba-f71e49db9e42))
(fp_line (start -15.5956 0) (end 15.5956 0)
(stroke (width 0.1524) (type solid)) (layer "F.Fab") (tstamp 5589ba10-f8a6-4e25-b8c8-29b67745496b))
(fp_line (start -15.5956 16.2306) (end -15.5956 0)
(stroke (width 0.1524) (type solid)) (layer "F.Fab") (tstamp 197e5591-d357-4b68-bd4e-88c838f134ef))
(fp_line (start -14.5288 -6.1468) (end -14.5288 0)
(stroke (width 0.1524) (type solid)) (layer "F.Fab") (tstamp a95bbc7e-f0ac-4daa-9b5e-c7b39e7620bd))
(fp_line (start -13.5763 -6.1468) (end -13.5763 0)
(stroke (width 0.1524) (type solid)) (layer "F.Fab") (tstamp f3205bd9-0bc0-45e2-9adb-144dcd159cbc))
(fp_line (start -11.6713 0) (end -11.6713 -6.1468)
(stroke (width 0.1524) (type solid)) (layer "F.Fab") (tstamp f6118899-2f1e-4546-90d2-50a1d416335a))
(fp_line (start -10.7188 -6.1468) (end -14.5288 -6.1468)
(stroke (width 0.1524) (type solid)) (layer "F.Fab") (tstamp 9e6c24d1-cc61-48c9-aee9-6c7a344c7fff))
(fp_line (start -10.7188 0) (end -10.7188 -6.1468)
(stroke (width 0.1524) (type solid)) (layer "F.Fab") (tstamp 3a9d1ff0-4b08-49c5-afed-1fdbff23c852))
(fp_line (start -8.2804 -6.1468) (end 8.2804 -6.1468)
(stroke (width 0.1524) (type solid)) (layer "F.Fab") (tstamp c78dfb90-ba63-46c2-ade0-54761f6670a7))
(fp_line (start -8.2804 0) (end -8.2804 -6.1468)
(stroke (width 0.1524) (type solid)) (layer "F.Fab") (tstamp 98d9067a-3673-4f31-b783-87a5bb66d20d))
(fp_line (start 3.945 16.2306) (end 4.58 17.5006)
(stroke (width 0.1524) (type solid)) (layer "F.Fab") (tstamp 6984373f-302f-4424-83d9-d3e45ff89cab))
(fp_line (start 5.215 16.2306) (end 4.58 17.5006)
(stroke (width 0.1524) (type solid)) (layer "F.Fab") (tstamp 8f0c8a47-1d5a-4276-80f1-829d7bc7e027))
(fp_line (start 8.2804 -6.1468) (end 8.2804 0)
(stroke (width 0.1524) (type solid)) (layer "F.Fab") (tstamp 6eb1a67c-79a0-4ee1-8512-b9493fe50fe3))
(fp_line (start 8.2804 0) (end -8.2804 0)
(stroke (width 0.1524) (type solid)) (layer "F.Fab") (tstamp d1e3f0b2-5a03-4077-a02f-b41c37556315))
(fp_line (start 10.7188 -6.1468) (end 10.7188 0)
(stroke (width 0.1524) (type solid)) (layer "F.Fab") (tstamp 5b7e5454-aee2-4206-9a4a-0ad27effe4fb))
(fp_line (start 11.6713 -6.1468) (end 11.6713 0)
(stroke (width 0.1524) (type solid)) (layer "F.Fab") (tstamp f26e2912-f6b8-43d0-a0f2-d444f01421c6))
(fp_line (start 13.5763 0) (end 13.5763 -6.1468)
(stroke (width 0.1524) (type solid)) (layer "F.Fab") (tstamp b62c4fb1-97a7-4040-b096-0667be576b21))
(fp_line (start 14.5288 -6.1468) (end 10.7188 -6.1468)
(stroke (width 0.1524) (type solid)) (layer "F.Fab") (tstamp dba24cc8-185f-4282-878d-e79961282e3e))
(fp_line (start 14.5288 0) (end 14.5288 -6.1468)
(stroke (width 0.1524) (type solid)) (layer "F.Fab") (tstamp 688c80d6-7b07-40fd-a3a9-fbe5104a3cad))
(fp_line (start 15.5956 0) (end 15.5956 16.2306)
(stroke (width 0.1524) (type solid)) (layer "F.Fab") (tstamp 8583f30f-584d-468b-aa6c-b7910ec36248))
(fp_line (start 15.5956 16.2306) (end -15.5956 16.2306)
(stroke (width 0.1524) (type solid)) (layer "F.Fab") (tstamp 33f3f6eb-bddc-461c-9939-8ccce5a61c37))
(pad "1" thru_hole circle (at -4.588256 14.351) (size 1.651 1.651) (drill 1.143) (layers "*.Cu" "*.Mask")
(net 11 "/RED") (pintype "passive") (tstamp 31535f04-1f3c-4a7a-ac34-25356b906571))
(pad "2" thru_hole circle (at -2.298192 14.351) (size 1.651 1.651) (drill 1.143) (layers "*.Cu" "*.Mask")
(net 10 "/GREEN") (pintype "passive") (tstamp 6557a7ea-3496-4b88-a7a0-a267226c7ce8))
(pad "3" thru_hole circle (at -0.008128 14.351) (size 1.651 1.651) (drill 1.143) (layers "*.Cu" "*.Mask")
(net 9 "/BLUE") (pintype "passive") (tstamp 4a23f38c-15df-4772-b869-327aaaa5fbff))
(pad "4" thru_hole circle (at 2.281936 14.351) (size 1.651 1.651) (drill 1.143) (layers "*.Cu" "*.Mask")
(net 8 "unconnected-(J1-Pad4)") (pintype "passive+no_connect") (tstamp 46d1d7c8-6814-41b8-afb8-cfeb43d55b03))
(pad "5" thru_hole circle (at 4.572 14.351) (size 1.651 1.651) (drill 1.143) (layers "*.Cu" "*.Mask")
(net 6 "/VGND") (pintype "passive") (tstamp 29a71921-517b-43e0-810f-1a15a0cd3ced))
(pad "6" thru_hole circle (at -5.730999 11.811) (size 1.651 1.651) (drill 1.143) (layers "*.Cu" "*.Mask")
(net 6 "/VGND") (pintype "passive") (tstamp 607fb87c-1916-4a60-9ca6-f55a27397bf1))
(pad "7" thru_hole circle (at -3.440999 11.811) (size 1.651 1.651) (drill 1.143) (layers "*.Cu" "*.Mask")
(net 6 "/VGND") (pintype "passive") (tstamp 717a4dd3-19ce-4a44-a93f-72403129d844))
(pad "8" thru_hole circle (at -1.151001 11.811) (size 1.651 1.651) (drill 1.143) (layers "*.Cu" "*.Mask")
(net 6 "/VGND") (pintype "passive") (tstamp ce728699-6001-423f-9c64-b6a8e68468dc))
(pad "9" thru_hole circle (at 1.139 11.811) (size 1.651 1.651) (drill 1.143) (layers "*.Cu" "*.Mask")
(net 7 "unconnected-(J1-Pad9)") (pintype "passive+no_connect") (tstamp 3fe07551-25d5-4cf2-bc4a-fcac9465e2b7))
(pad "10" thru_hole circle (at 3.429 11.811) (size 1.651 1.651) (drill 1.143) (layers "*.Cu" "*.Mask")
(net 6 "/VGND") (pintype "passive") (tstamp 6725b396-3949-45c7-9afc-e406fa536a4e))
(pad "11" thru_hole circle (at -4.587999 9.271) (size 1.651 1.651) (drill 1.143) (layers "*.Cu" "*.Mask")
(net 5 "unconnected-(J1-Pad11)") (pintype "passive+no_connect") (tstamp 645a8fee-403b-4955-ab80-8a3f482336a7))
(pad "12" thru_hole circle (at -2.297999 9.271) (size 1.651 1.651) (drill 1.143) (layers "*.Cu" "*.Mask")
(net 4 "unconnected-(J1-Pad12)") (pintype "passive+no_connect") (tstamp 0a5f820a-08a4-4bc7-bc22-c0df4114bc62))
(pad "13" thru_hole circle (at -0.008001 9.271) (size 1.651 1.651) (drill 1.143) (layers "*.Cu" "*.Mask")
(net 3 "/HSYNC") (pintype "passive") (tstamp f2d9d7ac-cbb7-4ad8-bc36-7dbbba717211))
(pad "14" thru_hole circle (at 2.282 9.271) (size 1.651 1.651) (drill 1.143) (layers "*.Cu" "*.Mask")
(net 2 "/VSYNC") (pintype "passive") (tstamp 7a9319a4-5f97-452e-8c95-cbf0ad3d4752))
(pad "15" thru_hole circle (at 4.572 9.271) (size 1.651 1.651) (drill 1.143) (layers "*.Cu" "*.Mask")
(net 1 "unconnected-(J1-Pad15)") (pintype "passive+no_connect") (tstamp 9de9cc83-6bbc-4229-b75f-8436ca8edd22))
(pad "16" thru_hole circle (at 12.6238 11.811) (size 3.81 3.81) (drill 3.302) (layers "*.Cu" "*.Mask") (tstamp c5455fff-9461-4a66-8eb5-eeeee824852d))
(pad "17" thru_hole circle (at -12.6238 11.811) (size 3.81 3.81) (drill 3.302) (layers "*.Cu" "*.Mask") (tstamp 60536a35-429e-41dd-9e4a-5ae25242bc3d))
)
(footprint "Jacks:CUI_RCJ-017" (layer "F.Cu")
(tstamp 7572367a-19f4-4ab7-bfdc-3148d7d47951)
(at 151.818 96.062 180)
(descr "<b>DC POWER JACK</b><p>Source: DCJ0202.pdf")
(property "Field4" "B")
(property "Field5" "Manufacturer recommendations")
(property "Sheetfile" "din13f-breakout.kicad_sch")
(property "Sheetname" "")
(path "/eb7b1130-a3c5-419d-b014-6cc61228ef22")
(attr through_hole)
(fp_text reference "J2" (at -4.030465 -5.762825) (layer "F.SilkS")
(effects (font (size 1.001362 1.001362) (thickness 0.015)))
(tstamp 44576c3a-a09f-4068-93f4-6853315a0508)
)
(fp_text value "RCJ-017" (at 8.816 0.05 90) (layer "F.SilkS")
(effects (font (size 1.000024 1.000024) (thickness 0.015)))
(tstamp aa1ce28a-6e1f-4f1f-b16b-cb08cee25bb0)
)
(fp_line (start -7.25 -4.15) (end -7.25 4.15)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 44c22301-2a6d-46ef-adcd-b996c1b44a6c))
(fp_line (start -7.25 4.15) (end 0.75 4.15)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 3e94b565-98b9-4e3a-af5c-89c2b4a2587d))
(fp_line (start 0.75 -5.3) (end 0.75 -4.15)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp b4a5569c-ef48-48a8-ba77-1c53e42f0fa6))
(fp_line (start 0.75 -4.15) (end -7.25 -4.15)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp c15fed00-2982-4191-a05c-f1b1f82b966a))
(fp_line (start 0.75 4.15) (end 0.75 5.3)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp ae19d147-c882-4d14-b18b-18030fb9b924))
(fp_line (start 0.75 5.3) (end 3.85 5.3)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp b67c4604-e880-409e-919d-e264443c876a))
(fp_line (start 3.95 -5.3) (end 0.75 -5.3)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 5f0e76e1-53be-4f20-b003-b3183c249420))
(fp_line (start 7.25 -0.9) (end 7.25 -3.4)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp e54d2f25-3608-49a7-8793-166a74eee4fd))
(fp_line (start 7.25 3.35) (end 7.25 0.8)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 017e4577-1cf9-41b4-8567-5b351bef4ebc))
(fp_circle (center 8.8 -5.2) (end 9 -5.2)
(stroke (width 0.4) (type solid)) (fill none) (layer "F.SilkS") (tstamp 288e089b-50a6-4885-a558-8a3cafb6bfdf))
(fp_line (start -7.5 -4.4) (end -7.5 4.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d69eafbd-851d-4c7c-b105-d4f0f64cd6e5))
(fp_line (start -7.5 4.4) (end 0.5 4.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9f4f9b21-ee9a-4afc-83ca-d8bea6d753fd))
(fp_line (start 0.5 -5.75) (end 0.5 -4.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6e348b3b-fc78-4a31-a471-2e37a55eefee))
(fp_line (start 0.5 -4.4) (end -7.5 -4.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp df8c9a31-abd7-4b07-951d-6428d0043838))
(fp_line (start 0.5 4.4) (end 0.5 5.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0a3f49e8-c07f-44c2-b61b-9562bc302a39))
(fp_line (start 0.5 5.55) (end 3.9 5.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4fcb6c40-9539-42e5-ad2b-40d8bf4fbe2d))
(fp_line (start 3.9 -7.05) (end 8.1 -7.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1c43f814-4f8c-4484-987f-92f502e76593))
(fp_line (start 3.9 -5.75) (end 0.5 -5.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a55956e8-7714-4bba-b1aa-a1031df79560))
(fp_line (start 3.9 -5.75) (end 3.9 -7.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 93001ab7-6af1-4e6f-8258-29b006f3b25f))
(fp_line (start 3.9 7.15) (end 3.9 5.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3c7ab3f1-415c-406d-a914-093415baf53b))
(fp_line (start 7.6 -3.65) (end 7.6 3.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6f75062f-07cf-46b9-8071-edb8e287a3b2))
(fp_line (start 7.6 3.55) (end 8.1 3.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f8739b67-5979-4f84-8db0-dfb5b892dd3e))
(fp_line (start 8.1 -7.05) (end 8.1 -3.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6081ec3a-4f85-4a48-a2a7-029f82ed7f51))
(fp_line (start 8.1 -3.65) (end 7.6 -3.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 99458302-eb7e-44be-8f1f-3bed620ceee5))
(fp_line (start 8.1 7.15) (end 3.9 7.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d5cf411d-5d84-4d81-a675-0904715db2b7))
(fp_line (start 8.1 7.15) (end 8.1 3.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2c771f39-eb7e-4daf-87fa-35687989982a))
(fp_line (start -7.25 -4.15) (end -7.25 4.15)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 96d50d28-cd30-41e0-8f04-e12ac99aed61))
(fp_line (start -7.25 4.15) (end 0.75 4.15)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 0d3a9f1c-6a38-45a1-b16a-56170f1d0657))
(fp_line (start 0.75 -5.3) (end 0.75 -4.15)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 85730bb7-624d-4cdb-bab8-b75e7adde72d))
(fp_line (start 0.75 -4.15) (end -7.25 -4.15)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 799d97c9-65b1-433e-9eeb-336e83e83898))
(fp_line (start 0.75 4.15) (end 0.75 5.3)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 15abf41d-9205-4900-9080-0c4df8421973))
(fp_line (start 0.75 5.3) (end 7.25 5.3)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 0eb43343-1ae8-4eb2-baa5-b475364b10e9))
(fp_line (start 7.25 -5.3) (end 0.75 -5.3)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 60cdb3a8-1416-4d57-b66a-d16a31449f84))
(fp_line (start 7.25 5.3) (end 7.25 -5.3)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp d3faf9d9-52e6-49bc-9705-36af78ff1a5f))
(pad "1A" thru_hole circle (at 5.95 -5 180) (size 3.616 3.616) (drill 2.6) (layers "*.Cu" "*.Mask")
(net 6 "/VGND") (pinfunction "1") (pintype "passive") (tstamp a7f36664-3b8a-4466-a45e-a0b5d9904706))
(pad "1B" thru_hole circle (at 5.95 5 180) (size 3.616 3.616) (drill 2.6) (layers "*.Cu" "*.Mask")
(net 6 "/VGND") (pinfunction "1") (pintype "passive") (tstamp af258924-b2c4-490d-aadd-2a47da798f2a))
(pad "1C" thru_hole circle (at 1.45 0 180) (size 3.616 3.616) (drill 2.6) (layers "*.Cu" "*.Mask")
(net 6 "/VGND") (pinfunction "1") (pintype "passive") (tstamp b4a34166-c0b7-44bd-9199-21603f22a848))
(pad "2" thru_hole circle (at 5.95 0 180) (size 2.55 2.55) (drill 1.7) (layers "*.Cu" "*.Mask")
(net 12 "/CVID") (pinfunction "2") (pintype "passive") (tstamp 917db29d-7596-4795-97b2-78f576ee0eed))
)
(footprint "Connectors:13p_GrabPads" (layer "F.Cu")
(tstamp 77ddd45a-cf2e-4b21-9c9d-2915b366d7f6)
(at 116.84 85.09)
(property "Sheetfile" "din13f-breakout.kicad_sch")
(property "Sheetname" "")
(path "/eeb10296-3e7b-45d5-baab-9125e0c38015")
(attr smd)
(fp_text reference "J3" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4a3c241c-aa6d-48ed-aec7-36e898769e2f)
)
(fp_text value "Conn_01x13" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b0594f8-1c41-40bc-9817-201fcf58b545)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 738e4b72-3dce-473e-b18b-1b76cf63756d)
)
(pad "1" smd roundrect (at 0 -10.16) (size 3.5 1.524) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "/AUDIO_OUT") (pinfunction "Pin_1") (pintype "passive") (tstamp 0f0621af-69a4-448b-8873-39cfe90397ad))
(pad "2" smd roundrect (at 0 -7.62) (size 3.5 1.524) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/CVID") (pinfunction "Pin_2") (pintype "passive") (tstamp db7649b0-2faa-4cae-8043-55657cafdfe6))
(pad "3" smd roundrect (at 0 -5.08) (size 3.5 1.524) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "/GPO") (pinfunction "Pin_3") (pintype "passive") (tstamp 9fefe105-9378-4863-9170-c0b8f9de9f5d))
(pad "4" smd roundrect (at 0 -2.54) (size 3.5 1.524) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "/~{MONO}") (pinfunction "Pin_4") (pintype "passive") (tstamp e49fa460-487a-433f-8acd-1b414d9d47f7))
(pad "5" smd roundrect (at 0 0) (size 3.5 1.524) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "/AUDIO_IN") (pinfunction "Pin_5") (pintype "passive") (tstamp 526603b5-9fb2-4581-a6f4-98914c973329))
(pad "6" smd roundrect (at 0 2.54) (size 3.5 1.524) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/GREEN") (pinfunction "Pin_6") (pintype "passive") (tstamp 1e2fb331-91f7-4e7f-afa8-bd78e3aa0aa3))
(pad "7" smd roundrect (at 0 5.08) (size 3.5 1.524) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "/RED") (pinfunction "Pin_7") (pintype "passive") (tstamp 174af775-00ae-4533-87b8-d1767c6b9b6b))
(pad "8" smd roundrect (at 0 7.62) (size 3.5 1.524) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "/+12V") (pinfunction "Pin_8") (pintype "passive") (tstamp 783d4347-cef7-48a7-919d-6197be1e1983))
(pad "9" smd roundrect (at 0 10.16) (size 3.5 1.524) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "/HSYNC") (pinfunction "Pin_9") (pintype "passive") (tstamp eb4065a4-5249-41a7-bd1a-a5759d7bcc9c))
(pad "10" smd roundrect (at 0 12.7) (size 3.5 1.524) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "/BLUE") (pinfunction "Pin_10") (pintype "passive") (tstamp 91e466ad-9e5c-4c05-b7a0-3f6e28df8a37))
(pad "11" smd roundrect (at 0 15.24) (size 3.5 1.524) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "/MONOVID") (pinfunction "Pin_11") (pintype "passive") (tstamp 9487d92f-73b2-4ca4-8413-74837499a85d))
(pad "12" smd roundrect (at 0 17.78) (size 3.5 1.524) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/VSYNC") (pinfunction "Pin_12") (pintype "passive") (tstamp 43290b65-53dc-4314-a614-5ca1d5d927de))
(pad "13" smd roundrect (at 0 20.32) (size 3.5 1.524) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/VGND") (pinfunction "Pin_13") (pintype "passive") (tstamp 776350d5-6317-43ae-af1e-a026912888cc))
)
(footprint "TestPoint:TestPoint_Pad_2.5x2.5mm" (layer "F.Cu")
(tstamp 7fa4b1ac-ecfe-4286-8341-b9b309068280)
(at 116.84 110.236)
(descr "SMD rectangular pad as test Point, square 2.5mm side length")
(tags "test point SMD pad rectangle square")
(property "Sheetfile" "din13f-breakout.kicad_sch")
(property "Sheetname" "")
(path "/3a31be16-136c-435a-9029-b37773fd6088")
(attr exclude_from_pos_files)
(fp_text reference "TP1" (at 0 -2.148) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d2e2da38-f127-4d3e-bfa9-ac551663d80d)
)
(fp_text value "TestPoint" (at 0 2.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b994df22-14fe-4f43-9603-377faf156386)
)
(fp_text user "${REFERENCE}" (at 0 -2.15) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 65824449-7c2e-4c0b-abf5-b3d0d4c8007f)
)
(fp_line (start -1.45 -1.45) (end 1.45 -1.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7c443198-8b25-4b4b-930c-17baf7f52b11))
(fp_line (start -1.45 1.45) (end -1.45 -1.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ffbe14d5-a075-4128-89c2-75e042a8f5b3))
(fp_line (start 1.45 -1.45) (end 1.45 1.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bab5a43c-9fa9-49aa-87ba-fabd711a0cbd))
(fp_line (start 1.45 1.45) (end -1.45 1.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6ced16e7-9816-452c-9371-3869b0295600))
(fp_line (start -1.75 -1.75) (end -1.75 1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4f1368aa-99a1-4133-808c-2e5ec6ba8f41))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6b259514-e0c7-4441-899c-0a6f4b82e1a1))
(fp_line (start 1.75 1.75) (end -1.75 1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3568d997-1f5a-4aeb-8f1f-3abf27ce0827))
(fp_line (start 1.75 1.75) (end 1.75 -1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 140d04fa-0a9d-410e-ab9e-f358950e17cd))
(pad "1" smd rect (at 0 0) (size 2.5 2.5) (layers "F.Cu" "F.Mask")
(net 19 "Net-(J4-PadE1)") (pinfunction "1") (pintype "passive") (tstamp fae4bac7-7785-42ef-991a-41ac7c2ac741))
)
(gr_rect (start 139.7 89.916) (end 142.24 115.316)
(stroke (width 0.15) (type solid)) (fill none) (layer "F.SilkS") (tstamp a150ef71-b66f-4964-92dc-8d7b37cdc2a8))
(gr_rect (start 114.808 72.898) (end 152.654 115.57)
(stroke (width 0.1) (type solid)) (fill none) (layer "Edge.Cuts") (tstamp 8935894b-bff5-476c-8cbb-faa8cd6be68e))
(gr_text "Mono Video" (at 119.38 100.33) (layer "B.SilkS") (tstamp 216cf5d0-18c5-4e66-a105-bfdc0fc84480)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "VSync" (at 117.348 102.87) (layer "B.SilkS") (tstamp 3e52b9a7-c796-465c-b8b0-c135a5fdc008)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "Red" (at 115.062 90.17) (layer "B.SilkS") (tstamp 4424cd96-1583-490b-9bf6-fc96f05bc17b)
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
)
(gr_text "G" (at 133.604 88.138) (layer "B.SilkS") (tstamp 47f90821-f1fc-4482-9b50-723aa3c238a5)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "Aud. Out" (at 115.062 74.93) (layer "B.SilkS") (tstamp 6164bf25-4a81-43c0-bc85-73b751157ca3)
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
)
(gr_text "B" (at 135.89 88.138) (layer "B.SilkS") (tstamp 64d0ed06-5f55-45ac-9f42-494c9146e306)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "HSync" (at 115.062 95.25) (layer "B.SilkS") (tstamp 7e028ff6-ed88-472f-9d0b-1ea45268912f)
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
)
(gr_text "Blue" (at 115.062 97.79) (layer "B.SilkS") (tstamp 96caacad-efc6-4440-abc2-4b9cde5baebe)
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
)
(gr_text "GPO" (at 115.062 80.01) (layer "B.SilkS") (tstamp 970b6064-5214-4123-9e02-cc4bb0b4e5d3)
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
)
(gr_text "Green" (at 115.062 87.63) (layer "B.SilkS") (tstamp a6b87b5f-8232-4bd3-ad67-ad2629f8bf3f)
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
)
(gr_text "~{MONO}" (at 117.348 82.804) (layer "B.SilkS") (tstamp abc432c7-166a-4796-a4ef-1d56fb536f12)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "+12V" (at 115.062 92.71) (layer "B.SilkS") (tstamp b1ca2d9c-0673-4476-a800-edb2e900decb)
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
)
(gr_text "Aud. In" (at 115.062 85.09) (layer "B.SilkS") (tstamp b61d9792-df55-442e-9d36-e94ab1e8daac)
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
)
(gr_text "HS" (at 135.89 78.994 90) (layer "B.SilkS") (tstamp ccdbe054-4c29-49ea-92f5-5e60ff38a531)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "C.Video" (at 115.062 77.47) (layer "B.SilkS") (tstamp ccff6ed9-9b44-46a7-813e-89aef9ece851)
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
)
(gr_text "VS" (at 138.176 78.994 90) (layer "B.SilkS") (tstamp d257c428-d26f-4443-be65-4cdcbdf0b845)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "R" (at 131.318 88.138) (layer "B.SilkS") (tstamp d5968093-e2ce-47af-bd81-be15c5e4568d)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "TE 1-1734530-1" (at 135.89 77.47) (layer "F.SilkS") (tstamp 1a75b7ae-3a5d-4b4f-acd7-024d6ffa438e)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "2022, v0.1" (at 150.114 111.252 90) (layer "F.SilkS") (tstamp 2237ec4d-f442-449d-a86b-4bc3445d41d0)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "Shield\nGND" (at 117.348 113.538) (layer "F.SilkS") (tstamp 368a11ca-fca5-42fd-b38e-22ed51061b6f)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "C.Video" (at 146.812 104.394) (layer "F.SilkS") (tstamp 4f02f8cb-0788-40e5-9a8b-1c96c146e225)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "1" (at 119.38 73.66) (layer "F.SilkS") (tstamp 55baa43d-2556-4aa4-9256-0a9c1f8f2b18)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "13" (at 119.126 106.68) (layer "F.SilkS") (tstamp 5fd91f51-c514-4968-8399-d1d9fe838b84)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "VGA" (at 150.114 74.676 90) (layer "F.SilkS") (tstamp 8ecb1956-b2a3-4cc2-8da4-4752e95bba9c)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "leadedsolder.com" (at 151.638 108.712 90) (layer "F.SilkS") (tstamp 8eccc300-c67f-449e-bf60-274da1264912)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "st monitor 13-pin DIN breakout" (at 140.97 102.616 90) (layer "F.SilkS") (tstamp 8f6bef6f-0d42-4162-8286-87693269ca48)
(effects (font (size 1 1) (thickness 0.15)))
)
(segment (start 137.414 91.948) (end 142.494 86.868) (width 0.25) (layer "F.Cu") (net 2) (tstamp 065acebe-4e3b-48d4-8f31-7108cf6f918f))
(segment (start 140.938351 80.041089) (end 139.322011 80.041089) (width 0.25) (layer "F.Cu") (net 2) (tstamp 2e44c995-2db1-4210-9aeb-80f038aa77f1))
(segment (start 130.401265 102.351011) (end 134.884989 102.351011) (width 0.25) (layer "F.Cu") (net 2) (tstamp 3d35b45a-e019-45ff-bcbf-43d8574af5d9))
(segment (start 139.322011 80.041089) (end 138.172 81.1911) (width 0.25) (layer "F.Cu") (net 2) (tstamp 3e91e767-9600-4849-b6a7-28ec6c6723ad))
(segment (start 129.904254 101.854) (end 130.401265 102.351011) (width 0.25) (layer "F.Cu") (net 2) (tstamp 4867c213-4f5e-47ee-9ed8-21555b97960a))
(segment (start 129.54 101.854) (end 129.904254 101.854) (width 0.25) (layer "F.Cu") (net 2) (tstamp 5b116bec-4bbe-4791-8368-c65284f5eb55))
(segment (start 127.126511 102.351011) (end 129.042989 102.351011) (width 0.25) (layer "F.Cu") (net 2) (tstamp 5e1bfaec-7654-428e-b471-0f52a1b51c76))
(segment (start 126.048 101.2725) (end 124.4505 102.87) (width 0.25) (layer "F.Cu") (net 2) (tstamp 66a80e9f-1f84-490a-8feb-50d75f097522))
(segment (start 137.414 99.822) (end 137.414 91.948) (width 0.25) (layer "F.Cu") (net 2) (tstamp 717af0ed-ac8e-437d-bead-35dada5d5ef1))
(segment (start 134.884989 102.351011) (end 137.414 99.822) (width 0.25) (layer "F.Cu") (net 2) (tstamp 87b03c48-6d5b-4ba7-8647-10856cecdc0e))
(segment (start 142.494 86.868) (end 142.494 81.596738) (width 0.25) (layer "F.Cu") (net 2) (tstamp 8e4d9b06-f828-4a6d-8b5b-ee62727c47d9))
(segment (start 129.042989 102.351011) (end 129.54 101.854) (width 0.25) (layer "F.Cu") (net 2) (tstamp a959238b-361f-4b4f-a411-7a56e0de7714))
(segment (start 126.048 101.2725) (end 127.126511 102.351011) (width 0.25) (layer "F.Cu") (net 2) (tstamp e207f7d1-5d1e-483b-9fbb-70d6592fdad6))
(segment (start 124.4505 102.87) (end 116.84 102.87) (width 0.25) (layer "F.Cu") (net 2) (tstamp ebc78f55-b72d-4478-b388-64319e25f709))
(segment (start 142.494 81.596738) (end 140.938351 80.041089) (width 0.25) (layer "F.Cu") (net 2) (tstamp f81e9bab-ab4c-4f61-b668-487248484734))
(segment (start 141.612011 84.397749) (end 139.555373 82.341111) (width 0.25) (layer "F.Cu") (net 3) (tstamp 08254d9a-c3d6-417e-b229-920eb3ab2e54))
(segment (start 137.03201 82.341111) (end 135.881999 81.1911) (width 0.25) (layer "F.Cu") (net 3) (tstamp 0b3e92dd-34fe-46ec-b503-184cbb86ffe2))
(segment (start 136.398 93.218) (end 136.398 91.961462) (width 0.25) (layer "F.Cu") (net 3) (tstamp 1f5104b5-a789-46b1-bbc1-cd0c749cb907))
(segment (start 139.555373 82.341111) (end 137.03201 82.341111) (width 0.25) (layer "F.Cu") (net 3) (tstamp 23eb0d55-38b0-4a94-a3b0-9bf72ce21ab9))
(segment (start 116.84 95.25) (end 119.634 95.25) (width 0.25) (layer "F.Cu") (net 3) (tstamp 24018a6c-2bf8-4154-8cf9-6eecae8bcee4))
(segment (start 136.398 99.288817) (end 136.398 93.218) (width 0.25) (layer "F.Cu") (net 3) (tstamp 273332f9-38d4-4145-a053-7e68fa78e85d))
(segment (start 141.612011 86.747451) (end 141.612011 84.397749) (width 0.25) (layer "F.Cu") (net 3) (tstamp 4e2cf332-6b2d-449b-bb24-6c7447d75246))
(segment (start 134.414317 101.2725) (end 136.398 99.288817) (width 0.25) (layer "F.Cu") (net 3) (tstamp 529d87e9-6fe4-4732-abc4-b5e4c4228ba1))
(segment (start 136.398 91.961462) (end 141.612011 86.747451) (width 0.25) (layer "F.Cu") (net 3) (tstamp 5ab610ce-bc00-428a-825e-90569992aabe))
(segment (start 133.348 101.2725) (end 134.414317 101.2725) (width 0.25) (layer "F.Cu") (net 3) (tstamp 83767fc8-7c2d-4081-a816-f0c2a8c40699))
(via (at 136.398 93.218) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp 572dd4ca-c8ba-47a3-9184-81fe4ac40e44))
(via (at 119.634 95.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp 877d0d9b-1fce-475b-baf9-f8822fd14566))
(segment (start 130.048 95.25) (end 132.08 93.218) (width 0.25) (layer "B.Cu") (net 3) (tstamp 2432a6b5-e58b-46a2-bd6c-88fb5ba6d385))
(segment (start 132.08 93.218) (end 136.398 93.218) (width 0.25) (layer "B.Cu") (net 3) (tstamp 5800d86f-9dfa-4e69-9405-f92fe90631df))
(segment (start 119.634 95.25) (end 130.048 95.25) (width 0.25) (layer "B.Cu") (net 3) (tstamp b658484c-2f79-499c-b04f-d5e5271f52fc))
(segment (start 116.84 105.41) (end 127.5105 105.41) (width 1.5) (layer "F.Cu") (net 6) (tstamp 5cb240bb-15f9-46de-ac18-3e4c5e25ee6b))
(segment (start 127.5105 105.41) (end 129.648 103.2725) (width 1.5) (layer "F.Cu") (net 6) (tstamp 7dad435b-6c4b-43a9-aa01-7aac2e0ef441))
(segment (start 145.2529 91.062) (end 140.462 86.2711) (width 1.5) (layer "B.Cu") (net 6) (tstamp 459fbef9-4e8e-4a5e-b381-513961e5e525))
(segment (start 150.368 95.562) (end 145.868 91.062) (width 1.5) (layer "B.Cu") (net 6) (tstamp 4f67924a-6c5c-4231-8ce9-8646bf41bbf2))
(segment (start 143.6575 103.2725) (end 145.868 101.062) (width 1.5) (layer "B.Cu") (net 6) (tstamp 593a20ed-b45a-4264-a27b-8d8c11534f4c))
(segment (start 129.648 103.2725) (end 143.6575 103.2725) (width 1.5) (layer "B.Cu") (net 6) (tstamp 7580162a-5204-465a-87ee-6f5cb1f7fff6))
(segment (start 140.462 86.2711) (end 140.462 84.8741) (width 1.5) (layer "B.Cu") (net 6) (tstamp 8977657a-559b-4ddd-87f6-b351751e144a))
(segment (start 140.462 84.8741) (end 139.319 83.7311) (width 1.5) (layer "B.Cu") (net 6) (tstamp 8c6ebae3-958f-44a4-a172-c511de6fc791))
(segment (start 145.868 91.062) (end 145.2529 91.062) (width 1.5) (layer "B.Cu") (net 6) (tstamp 8c9226bc-1d42-44d4-9f41-0874cf78bbe3))
(segment (start 134.738999 83.7311) (end 130.159001 83.7311) (width 1.5) (layer "B.Cu") (net 6) (tstamp 95fccc74-517f-4fe2-9fce-985594d90852))
(segment (start 150.368 96.062) (end 150.368 95.562) (width 1.5) (layer "B.Cu") (net 6) (tstamp bc16088b-123f-4a57-8ad7-1955d3566d77))
(segment (start 145.868 101.062) (end 145.868 100.562) (width 1.5) (layer "B.Cu") (net 6) (tstamp d391c763-ab57-4bf0-8586-ffcd0fc157f6))
(segment (start 145.868 100.562) (end 150.368 96.062) (width 1.5) (layer "B.Cu") (net 6) (tstamp f10c7cd7-4d3b-412c-9d85-ed570aaf1d4a))
(segment (start 137.16 87.549228) (end 137.16 90.17) (width 0.25) (layer "F.Cu") (net 9) (tstamp 068ec3c0-aea0-437b-bc01-f4c916f121ff))
(segment (start 135.881872 86.2711) (end 137.16 87.549228) (width 0.25) (layer "F.Cu") (net 9) (tstamp 537c18e8-f474-426d-8f9f-9c84f26ea233))
(segment (start 137.16 90.17) (end 135.636 91.694) (width 0.25) (layer "F.Cu") (net 9) (tstamp c6e64e50-5ba0-462f-973e-e7462b266996))
(segment (start 135.636 91.694) (end 135.636 97.536) (width 0.25) (layer "F.Cu") (net 9) (tstamp cd8c5017-6e95-4215-8786-d65fd51b798a))
(segment (start 116.84 97.79) (end 119.38 97.79) (width 0.25) (layer "F.Cu") (net 9) (tstamp f92a8f94-72d8-41fd-80d7-39385231e843))
(via (at 119.38 97.79) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 9) (tstamp 518a3774-bb98-4aa1-b5a7-8af5e7e031bc))
(via (at 135.636 97.536) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 9) (tstamp 734b0c75-5cb0-40f8-b513-78c76ca7cdb5))
(segment (start 119.38 97.79) (end 119.941011 98.351011) (width 0.25) (layer "B.Cu") (net 9) (tstamp 0123be4a-a685-4b44-b236-c7739851806e))
(segment (start 126.494735 98.351011) (end 127.055746 97.79) (width 0.25) (layer "B.Cu") (net 9) (tstamp 1e88dae6-80af-4639-b9ec-8d7c440e67f6))
(segment (start 127.055746 97.79) (end 127.440254 97.79) (width 0.25) (layer "B.Cu") (net 9) (tstamp 3c4ac346-e788-4bfb-95a5-a7f83dc6da7e))
(segment (start 129.201265 98.193989) (end 130.094735 98.193989) (width 0.25) (layer "B.Cu") (net 9) (tstamp 4647d000-4ba5-4086-97de-04d45606c6e7))
(segment (start 119.941011 98.351011) (end 126.494735 98.351011) (width 0.25) (layer "B.Cu") (net 9) (tstamp 4e995f18-74c3-4a58-aa96-b4aef1831c98))
(segment (start 131.673246 101.2725) (end 130.848 101.2725) (width 0.25) (layer "B.Cu") (net 9) (tstamp 540d2b6b-73ec-4535-9fa3-1ece6936f250))
(segment (start 129.044243 98.351011) (end 129.201265 98.193989) (width 0.25) (layer "B.Cu") (net 9) (tstamp 58c3a6ef-e83e-4c17-9d8e-6540fdc25279))
(segment (start 135.636 97.536) (end 135.636 99.709746) (width 0.25) (layer "B.Cu") (net 9) (tstamp 59422f3f-59c2-4053-9fcc-ef8d13a9db4f))
(segment (start 133.469489 99.719235) (end 133.226511 99.719235) (width 0.25) (layer "B.Cu") (net 9) (tstamp 8ed5426a-4b3a-4c3e-9738-7af6555aa093))
(segment (start 135.636 99.709746) (end 134.994735 100.351011) (width 0.25) (layer "B.Cu") (net 9) (tstamp 8f674bb2-5821-45db-b151-c2b3f660239d))
(segment (start 134.994735 100.351011) (end 134.101265 100.351011) (width 0.25) (layer "B.Cu") (net 9) (tstamp 9b658d55-0795-481c-9d03-52dbbf747411))
(segment (start 127.440254 97.79) (end 128.001265 98.351011) (width 0.25) (layer "B.Cu") (net 9) (tstamp abf11389-23c7-4176-9f6e-df05ab30c5c4))
(segment (start 134.101265 100.351011) (end 133.469489 99.719235) (width 0.25) (layer "B.Cu") (net 9) (tstamp b14639e4-2d51-4b6f-bf2e-44d3ee341fa5))
(segment (start 130.848 98.947254) (end 130.848 101.2725) (width 0.25) (layer "B.Cu") (net 9) (tstamp e06e336a-6a63-4652-8f37-a85b9e853409))
(segment (start 130.094735 98.193989) (end 130.848 98.947254) (width 0.25) (layer "B.Cu") (net 9) (tstamp e6d0d2b7-df0b-41ed-8332-f20c36554cff))
(segment (start 133.226511 99.719235) (end 131.673246 101.2725) (width 0.25) (layer "B.Cu") (net 9) (tstamp ef8557db-b967-46fd-8395-67a3aa478ce4))
(segment (start 128.001265 98.351011) (end 129.044243 98.351011) (width 0.25) (layer "B.Cu") (net 9) (tstamp f7b713ab-34cb-450d-a755-856f8e8158e5))
(segment (start 116.84 87.63) (end 119.38 87.63) (width 0.25) (layer "F.Cu") (net 10) (tstamp b0f1c659-352f-4726-9ff4-5de1287dbbd4))
(segment (start 132.148 87.714908) (end 133.591808 86.2711) (width 0.25) (layer "F.Cu") (net 10) (tstamp c0ccea55-a445-4e72-b4d2-2b25457605ee))
(segment (start 132.148 99.2725) (end 132.148 87.714908) (width 0.25) (layer "F.Cu") (net 10) (tstamp d95e4a49-0419-404b-99ef-3a8fabdffa4b))
(via (at 119.38 87.63) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp dea04cd9-b72b-4d7f-a378-348b937ba2f1))
(segment (start 130.825393 85.121089) (end 132.441797 85.121089) (width 0.25) (layer "B.Cu") (net 10) (tstamp 4af55417-32e3-46d4-834e-9d1ee68f17f7))
(segment (start 132.441797 85.121089) (end 133.591808 86.2711) (width 0.25) (layer "B.Cu") (net 10) (tstamp 62193bbe-0b51-4959-8ac8-163a6056d1cd))
(segment (start 119.38 87.63) (end 128.316482 87.63) (width 0.25) (layer "B.Cu") (net 10) (tstamp cd0bdf01-db38-4d0f-a4e5-3ae1030c578f))
(segment (start 128.316482 87.63) (end 130.825393 85.121089) (width 0.25) (layer "B.Cu") (net 10) (tstamp d4f013a7-3be3-4a1d-bf53-ec28e3308a1b))
(segment (start 129.648 87.924844) (end 131.301744 86.2711) (width 0.25) (layer "F.Cu") (net 11) (tstamp 4e155e11-16cb-429a-a160-0a0b848542e1))
(segment (start 116.84 90.17) (end 119.38 90.17) (width 0.25) (layer "F.Cu") (net 11) (tstamp 72f53cd9-2066-47fb-9f03-8d789767d022))
(segment (start 129.648 99.2725) (end 129.648 87.924844) (width 0.25) (layer "F.Cu") (net 11) (tstamp 763a9620-e6a4-469a-9a2e-945ae5d458d8))
(via (at 119.38 90.17) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp 6a7d70e5-b0c1-4921-a629-40cd2ae44e3a))
(segment (start 127.402844 90.17) (end 131.301744 86.2711) (width 0.25) (layer "B.Cu") (net 11) (tstamp 8af7e2a4-a649-4d74-9e43-c56d3298bf7c))
(segment (start 119.38 90.17) (end 127.402844 90.17) (width 0.25) (layer "B.Cu") (net 11) (tstamp 8e7ea941-fcd1-4f9d-947c-5f3a08359218))
(segment (start 143.735489 78.768511) (end 143.735489 93.929489) (width 0.25) (layer "F.Cu") (net 12) (tstamp 29fee22e-4b88-4ed7-9931-51354d0b870c))
(segment (start 116.84 77.47) (end 120.396 77.47) (width 0.25) (layer "F.Cu") (net 12) (tstamp 319d667e-94e1-4f22-92ec-c22a462ec7ae))
(segment (start 143.735489 93.929489) (end 145.868 96.062) (width 0.25) (layer "F.Cu") (net 12) (tstamp 8e337a66-774f-41b8-93ef-2ee40705b088))
(segment (start 144.018 78.486) (end 143.735489 78.768511) (width 0.25) (layer "F.Cu") (net 12) (tstamp affb5dd2-909e-42ab-910e-e118a83c9d3b))
(via (at 144.018 78.486) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 12) (tstamp 57193ab2-269d-4f28-a7dc-65355f8bb136))
(via (at 120.396 77.47) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 12) (tstamp ef92390b-afa0-48c6-8cbc-3e3ea7671a49))
(segment (start 143.002 77.47) (end 144.018 78.486) (width 0.25) (layer "B.Cu") (net 12) (tstamp 046c647f-bd19-4da4-807d-59fbf27e127f))
(segment (start 141.4405 94.787) (end 142.7155 96.062) (width 1.5) (layer "B.Cu") (net 12) (tstamp 17bf9d56-0334-45c4-a3bd-a357c6694fa1))
(segment (start 130.848 96.206183) (end 132.267183 94.787) (width 1.5) (layer "B.Cu") (net 12) (tstamp 27e7c88e-9df5-459e-8680-f0cf78a80b5f))
(segment (start 132.267183 94.787) (end 141.4405 94.787) (width 1.5) (layer "B.Cu") (net 12) (tstamp 65e38cc9-d0b7-4405-aa72-42a3243d6612))
(segment (start 130.848 97.2725) (end 130.848 96.206183) (width 1.5) (layer "B.Cu") (net 12) (tstamp 7fdcb833-6bdd-45b0-a1a5-9b7736b57f00))
(segment (start 120.396 77.47) (end 143.002 77.47) (width 0.25) (layer "B.Cu") (net 12) (tstamp b2d3663e-4c48-48f1-9998-2af2b69f2b23))
(segment (start 142.7155 96.062) (end 145.868 96.062) (width 1.5) (layer "B.Cu") (net 12) (tstamp f4c5806a-bf86-4c8c-a6e0-1e011927e167))
(segment (start 125.495711 92.436289) (end 125.495711 74.949711) (width 0.25) (layer "F.Cu") (net 13) (tstamp 3667df78-8a7c-4c3e-8b61-c2f6c87bc22a))
(segment (start 125.495711 74.949711) (end 125.476 74.93) (width 0.25) (layer "F.Cu") (net 13) (tstamp 3fcf0f57-9593-40c0-af8b-7cc4104c6903))
(segment (start 125.476 74.93) (end 116.84 74.93) (width 0.25) (layer "F.Cu") (net 13) (tstamp 551395cb-6d92-4f63-8ab8-c669782c936c))
(segment (start 133.348 97.2725) (end 133.348 90.68) (width 0.25) (layer "F.Cu") (net 13) (tstamp 60f58d99-866e-4ac4-9be9-530126300696))
(segment (start 123.952 93.98) (end 125.495711 92.436289) (width 0.25) (layer "F.Cu") (net 13) (tstamp 82b70101-80c3-4b21-abeb-b67a6444dada))
(segment (start 133.348 90.68) (end 133.35 90.678) (width 0.25) (layer "F.Cu") (net 13) (tstamp cfd07e3a-a4cd-4a8a-bf55-6fb600d40250))
(via (at 123.952 93.98) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 13) (tstamp 508eba89-89a8-4c1c-8714-83d1cd334996))
(via (at 133.35 90.678) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 13) (tstamp f8f24391-7a17-4713-bdb9-e7e586214d36))
(segment (start 130.048 93.98) (end 123.952 93.98) (width 0.25) (layer "B.Cu") (net 13) (tstamp 0dbe43fa-4f6b-4883-8450-91a918f089e2))
(segment (start 133.35 90.678) (end 130.048 93.98) (width 0.25) (layer "B.Cu") (net 13) (tstamp a317cd15-c2c5-4b21-8d2b-54fdc74a6540))
(segment (start 116.84 80.01) (end 120.142 80.01) (width 0.25) (layer "F.Cu") (net 14) (tstamp 38661605-130c-49ee-9e2f-2ebcac399a81))
(segment (start 128.524 80.264) (end 128.448 80.34) (width 0.25) (layer "F.Cu") (net 14) (tstamp a10a5cc6-25c5-448a-8313-5200c9861365))
(segment (start 128.448 80.34) (end 128.448 97.2725) (width 0.25) (layer "F.Cu") (net 14) (tstamp ed1cae94-91fd-436f-a497-00344eacdaf8))
(via (at 120.142 80.01) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 14) (tstamp 259c0956-ec1b-4c4b-9b95-e2f76c2b304f))
(via (at 128.524 80.264) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 14) (tstamp e781d9f0-65b4-499e-aa49-7388df111a69))
(segment (start 128.27 80.01) (end 128.524 80.264) (width 0.25) (layer "B.Cu") (net 14) (tstamp 82cce49d-5798-480d-867e-f416b5c82c86))
(segment (start 120.142 80.01) (end 128.27 80.01) (width 0.25) (layer "B.Cu") (net 14) (tstamp aca9cb54-d4d5-4366-9404-d484469c34d1))
(segment (start 126.048 97.2725) (end 126.048 82.232) (width 0.25) (layer "F.Cu") (net 15) (tstamp 05b2448d-77f0-4bfd-9267-f3709b2e56c8))
(segment (start 126.048 82.232) (end 127 81.28) (width 0.25) (layer "F.Cu") (net 15) (tstamp 7e35c3cf-a380-4b3a-aed3-46ba74d58d02))
(segment (start 120.142 82.55) (end 116.84 82.55) (width 0.25) (layer "F.Cu") (net 15) (tstamp 8ce4003d-ac3e-435c-951a-decfb44dd035))
(via (at 127 81.28) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 15) (tstamp 319f8ae8-2e66-442f-9ff4-f30f65ebca59))
(via (at 120.142 82.55) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 15) (tstamp 8ccacdeb-9d09-447e-b75e-fc06e6e15bad))
(segment (start 127 81.28) (end 121.412 81.28) (width 0.25) (layer "B.Cu") (net 15) (tstamp 87708596-1c83-450d-b9dd-a516f8d3b500))
(segment (start 121.412 81.28) (end 120.142 82.55) (width 0.25) (layer "B.Cu") (net 15) (tstamp b9818a6f-f2eb-43ed-b39a-9c9dafbf6155))
(segment (start 121.666 87.376) (end 119.38 85.09) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1583a2ec-b3e8-4b10-bd43-9544fc4ee7e8))
(segment (start 134.548 89.988) (end 135.89 88.646) (width 0.25) (layer "F.Cu") (net 16) (tstamp 88691955-06ad-433d-9267-72d522fa2cd0))
(segment (start 134.548 99.2725) (end 134.548 89.988) (width 0.25) (layer "F.Cu") (net 16) (tstamp bfd4fd1e-c02f-4304-8ed4-a95f6616f3df))
(segment (start 116.84 85.09) (end 119.38 85.09) (width 0.25) (layer "F.Cu") (net 16) (tstamp e5c6f366-ebc9-464a-bc6a-1933d79afbb9))
(segment (start 121.666 91.44) (end 121.666 87.376) (width 0.25) (layer "F.Cu") (net 16) (tstamp ead02cda-33f4-46c1-8b23-5b563ac4e7c3))
(via (at 121.666 91.44) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 16) (tstamp 84161186-eae2-4c17-a2b2-7fe3aa5706b3))
(via (at 135.89 88.646) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 16) (tstamp f32b2bac-fe5d-413b-81d7-5b64bd88836f))
(segment (start 131.064 88.646) (end 128.27 91.44) (width 0.25) (layer "B.Cu") (net 16) (tstamp 0f073883-2aaf-4e9b-9923-1267fa3cfa7f))
(segment (start 128.27 91.44) (end 121.666 91.44) (width 0.25) (layer "B.Cu") (net 16) (tstamp 27514dc6-dc5d-4d77-9baf-ed25cdb5d2da))
(segment (start 135.89 88.646) (end 131.064 88.646) (width 0.25) (layer "B.Cu") (net 16) (tstamp 6515ee96-bb32-4f2f-89cd-cd4c5a1102b0))
(segment (start 116.84 92.71) (end 119.634 92.71) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2300a0f3-ed17-4c9d-bc8d-b251dc52eeb2))
(segment (start 127.248 92.716) (end 127.248 99.2725) (width 0.25) (layer "F.Cu") (net 17) (tstamp 52f5b8fb-2ed8-4319-87cc-46bf144342d6))
(segment (start 127.254 92.71) (end 127.248 92.716) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7559d8a3-0bda-4b70-8e4d-1626770a12b1))
(via (at 119.634 92.71) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 17) (tstamp 09479564-f5e6-47d3-ae40-5971a9dd20c3))
(via (at 127.254 92.71) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 17) (tstamp e8dd08a7-5ee8-4187-ab87-a87abba2d4d3))
(segment (start 119.634 92.71) (end 127.254 92.71) (width 0.25) (layer "B.Cu") (net 17) (tstamp ac3f67d2-e563-43f1-b23a-aab9bc619e44))
(segment (start 119.38 100.33) (end 116.84 100.33) (width 0.25) (layer "F.Cu") (net 18) (tstamp b7f1c6e2-6fe8-4770-96ae-0d15aa8b93d4))
(via (at 119.38 100.33) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 18) (tstamp 23860cda-988e-4345-9f10-d8a98ed54983))
(segment (start 127.573246 101.2725) (end 126.494735 100.193989) (width 0.25) (layer "B.Cu") (net 18) (tstamp 25c33b2d-54d2-4818-8903-2047d09457a5))
(segment (start 128.448 101.2725) (end 127.573246 101.2725) (width 0.25) (layer "B.Cu") (net 18) (tstamp 2e659045-2853-4d79-8902-1380b94f240b))
(segment (start 119.516011 100.193989) (end 119.38 100.33) (width 0.25) (layer "B.Cu") (net 18) (tstamp 9c719adf-1853-4d51-ae1f-762ceaa182f4))
(segment (start 126.494735 100.193989) (end 119.516011 100.193989) (width 0.25) (layer "B.Cu") (net 18) (tstamp ecb29d31-6959-4b53-987a-2238337f727d))
(segment (start 120.396 110.236) (end 116.84 110.236) (width 1.5) (layer "F.Cu") (net 19) (tstamp 74f063ef-14f6-423c-a2b8-8bc01220c912))
(via (at 120.396 110.236) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 19) (tstamp 0a5ae349-0cce-4c7d-9c66-c34d84ac7df1))
(segment (start 135.048 112.9725) (end 125.048 112.9725) (width 1.5) (layer "B.Cu") (net 19) (tstamp 29d5ca9a-34d1-4fb6-92d8-e9d5b3068f52))
(segment (start 125.048 112.9725) (end 123.1325 112.9725) (width 1.5) (layer "B.Cu") (net 19) (tstamp acc69798-f7a8-4b27-9fe4-be0d488c48d5))
(segment (start 123.1325 112.9725) (end 120.396 110.236) (width 1.5) (layer "B.Cu") (net 19) (tstamp ee8e68be-ce5b-452a-b26e-0149ed0c3498))
(zone (net 6) (net_name "/VGND") (layer "B.Cu") (tstamp 9f08c500-c9df-4398-ad88-c2a96e2fe5d8) (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 152.654 116.332)
(xy 114.808 116.332)
(xy 114.808 72.898)
(xy 152.654 72.898)
)
)
(filled_polygon
(layer "B.Cu")
(pts
(xy 139.627321 85.049728)
(xy 139.68612 85.089518)
(xy 139.714072 85.154781)
(xy 139.71422 85.164109)
(xy 140.278593 85.728482)
(xy 140.173785 85.771896)
(xy 140.054402 85.863502)
(xy 139.962796 85.982884)
(xy 139.919383 86.087692)
(xy 139.356591 85.5249)
(xy 139.354961 85.525043)
(xy 139.285357 85.511053)
(xy 139.240769 85.471793)
(xy 139.197745 85.410349)
(xy 139.19774 85.410343)
(xy 139.057591 85.270194)
(xy 139.023565 85.207882)
(xy 139.02863 85.137067)
(xy 139.071177 85.080231)
(xy 139.137697 85.05542)
(xy 139.157668 85.055579)
(xy 139.318994 85.069693)
(xy 139.551443 85.049357)
(xy 139.556344 85.048044)
)
)
(filled_polygon
(layer "B.Cu")
(pts
(xy 134.239795 84.019315)
(xy 134.331401 84.138698)
(xy 134.450784 84.230304)
(xy 134.555591 84.273716)
(xy 133.987594 84.841713)
(xy 133.977549 84.891694)
(xy 133.92815 84.942686)
(xy 133.859024 84.958876)
(xy 133.83341 84.954777)
(xy 133.824351 84.95235)
(xy 133.824345 84.952349)
(xy 133.824343 84.952348)
(xy 133.82434 84.952348)
(xy 133.591808 84.932004)
(xy 133.359276 84.952348)
(xy 133.359273 84.952348)
(xy 133.35927 84.952349)
(xy 133.359265 84.952349)
(xy 133.354688 84.953576)
(xy 133.283711 84.951881)
(xy 133.224919 84.912082)
(xy 133.196976 84.846816)
(xy 133.196838 84.838147)
(xy 132.632408 84.273717)
(xy 132.737216 84.230304)
(xy 132.856599 84.138698)
(xy 132.948205 84.019316)
(xy 132.991617 83.914507)
(xy 133.554407 84.477297)
(xy 133.583016 84.474795)
(xy 133.60498 84.474794)
(xy 133.63359 84.477297)
(xy 134.196381 83.914506)
)
)
(filled_polygon
(layer "B.Cu")
(pts
(xy 138.819796 84.019315)
(xy 138.911402 84.138698)
(xy 139.030785 84.230304)
(xy 139.135592 84.273716)
(xy 138.567583 84.841725)
(xy 138.557547 84.891659)
(xy 138.508148 84.942651)
(xy 138.439022 84.958841)
(xy 138.413409 84.954743)
(xy 138.404473 84.952349)
(xy 138.404471 84.952348)
(xy 138.404468 84.952348)
(xy 138.171936 84.932004)
(xy 138.171935 84.932004)
(xy 138.073272 84.940635)
(xy 138.015676 84.945674)
(xy 137.946073 84.931686)
(xy 137.89508 84.882286)
(xy 137.87889 84.81316)
(xy 137.902643 84.746255)
(xy 137.915589 84.731071)
(xy 138.054807 84.591854)
(xy 138.09783 84.530409)
(xy 138.153284 84.486083)
(xy 138.212024 84.47716)
(xy 138.213591 84.477297)
(xy 138.776382 83.914506)
)
)
(filled_polygon
(layer "B.Cu")
(pts
(xy 135.844405 84.477297)
(xy 135.845974 84.47716)
(xy 135.915579 84.491149)
(xy 135.960169 84.53041)
(xy 136.00319 84.59185)
(xy 136.003195 84.591856)
(xy 136.1428 84.731461)
(xy 136.176826 84.793773)
(xy 136.171761 84.864588)
(xy 136.129214 84.921424)
(xy 136.062694 84.946235)
(xy 136.042726 84.946077)
(xy 135.881872 84.932004)
(xy 135.64934 84.952348)
(xy 135.649337 84.952348)
(xy 135.649334 84.952349)
(xy 135.649329 84.952349)
(xy 135.644681 84.953595)
(xy 135.573705 84.951898)
(xy 135.514913 84.912098)
(xy 135.486972 84.846831)
(xy 135.486834 84.838144)
(xy 134.922406 84.273716)
(xy 135.027214 84.230304)
(xy 135.146597 84.138698)
(xy 135.238203 84.019316)
(xy 135.281615 83.914507)
)
)
(filled_polygon
(layer "B.Cu")
(pts
(xy 131.064694 82.508573)
(xy 131.066905 82.509165)
(xy 131.069469 82.509852)
(xy 131.302001 82.530196)
(xy 131.534533 82.509852)
(xy 131.53454 82.50985)
(xy 131.534542 82.50985)
(xy 131.543403 82.507476)
(xy 131.614379 82.509165)
(xy 131.673175 82.548958)
(xy 131.701124 82.614222)
(xy 131.701282 82.62417)
(xy 132.265594 83.188482)
(xy 132.160786 83.231896)
(xy 132.041403 83.323502)
(xy 131.949797 83.442884)
(xy 131.906383 83.547692)
(xy 131.343592 82.9849)
(xy 131.31498 82.987404)
(xy 131.29302 82.987404)
(xy 131.264408 82.984901)
(xy 130.701617 83.547692)
(xy 130.658205 83.442885)
(xy 130.566599 83.323502)
(xy 130.447216 83.231896)
(xy 130.342406 83.188482)
(xy 130.910819 82.62007)
(xy 130.920549 82.571657)
(xy 130.969948 82.520664)
(xy 131.039074 82.504473)
)
)
(filled_polygon
(layer "B.Cu")
(pts
(xy 133.354694 82.508573)
(xy 133.356905 82.509165)
(xy 133.359469 82.509852)
(xy 133.592001 82.530196)
(xy 133.824533 82.509852)
(xy 133.824541 82.50985)
(xy 133.829306 82.508573)
(xy 133.833396 82.507477)
(xy 133.904373 82.509163)
(xy 133.963171 82.548955)
(xy 133.991121 82.614218)
(xy 133.991279 82.624169)
(xy 134.555592 83.188482)
(xy 134.450784 83.231896)
(xy 134.331401 83.323502)
(xy 134.239795 83.442884)
(xy 134.196382 83.547692)
(xy 133.633589 82.984899)
(xy 133.604983 82.987402)
(xy 133.58302 82.987403)
(xy 133.554409 82.9849)
(xy 132.991617 83.547691)
(xy 132.948205 83.442885)
(xy 132.856599 83.323502)
(xy 132.737216 83.231896)
(xy 132.632406 83.188482)
(xy 133.200819 82.62007)
(xy 133.210549 82.571657)
(xy 133.259948 82.520664)
(xy 133.329074 82.504473)
)
)
(filled_polygon
(layer "B.Cu")
(pts
(xy 138.484378 82.509165)
(xy 138.543174 82.548958)
(xy 138.571123 82.614222)
(xy 138.571281 82.62417)
(xy 139.135593 83.188482)
(xy 139.030785 83.231896)
(xy 138.911402 83.323502)
(xy 138.819796 83.442884)
(xy 138.776383 83.547692)
(xy 138.213591 82.9849)
(xy 138.212022 82.985038)
(xy 138.142417 82.971048)
(xy 138.097829 82.931787)
(xy 138.054813 82.870354)
(xy 138.054808 82.870348)
(xy 138.054807 82.870346)
(xy 137.915595 82.731134)
(xy 137.881569 82.668822)
(xy 137.886634 82.598007)
(xy 137.929181 82.541171)
(xy 137.995701 82.51636)
(xy 138.015671 82.516518)
(xy 138.172 82.530196)
(xy 138.404532 82.509852)
(xy 138.404539 82.50985)
(xy 138.404541 82.50985)
(xy 138.413402 82.507476)
)
)
(filled_polygon
(layer "B.Cu")
(pts
(xy 135.644692 82.508573)
(xy 135.646903 82.509165)
(xy 135.649467 82.509852)
(xy 135.881999 82.530196)
(xy 136.042711 82.516135)
(xy 136.112314 82.530123)
(xy 136.163307 82.579522)
(xy 136.179498 82.648648)
(xy 136.155746 82.715553)
(xy 136.142788 82.73075)
(xy 136.00319 82.870348)
(xy 135.960168 82.931789)