-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathFLASH_23C1000.kicad_pcb
19689 lines (19673 loc) · 719 KB
/
FLASH_23C1000.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 "USLetter")
(title_block
(title "29F010 to 23C1000")
(date "2023-07-04")
(rev "010")
(company "Brian K. White - [email protected]")
(comment 1 "github.com/bkw777/aDIPters")
)
(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)
)
(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)
(solder_mask_min_width 0.22)
(grid_origin 137.3 110.16)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(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 true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "GERBER_${TITLE}_${REVISION}")
)
)
(net 0 "")
(net 1 "/A14")
(net 2 "/D2")
(net 3 "/A13")
(net 4 "/D1")
(net 5 "/A8")
(net 6 "/D0")
(net 7 "/A9")
(net 8 "/A0")
(net 9 "/A11")
(net 10 "/A1")
(net 11 "/~{OE}")
(net 12 "/A2")
(net 13 "/A10")
(net 14 "/A3")
(net 15 "/~{CE}")
(net 16 "/A4")
(net 17 "/D7")
(net 18 "/A5")
(net 19 "/D6")
(net 20 "/A6")
(net 21 "/D5")
(net 22 "/A7")
(net 23 "/D4")
(net 24 "/A12")
(net 25 "/D3")
(net 26 "/~{WE}")
(net 27 "/A16")
(net 28 "/A15")
(net 29 "/A16_~{OE}")
(net 30 "/VPP")
(net 31 "GND")
(net 32 "VCC")
(net 33 "unconnected-(U1-NC-Pad6)")
(net 34 "unconnected-(U2-NC-Pad30)")
(footprint "000_LOCAL:TSOP32-dual" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e5d81c3)
(at 137.3 110.16)
(descr "Module CMS TSOP 32 pins")
(tags "CMS TSOP")
(property "Sheetfile" "FLASH_23C1000.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Silicon Storage Technology (SSF) 128k x 8 Flash ROM")
(property "ki_keywords" "128k flash rom")
(path "/00000000-0000-0000-0000-00005e5d9957")
(attr smd)
(fp_text reference "U1" (at -8.45 -1.5 90 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp cf9f3adb-ba16-40bf-bd93-8f4a190c7180)
)
(fp_text value "29F010 TSOP-32" (at -3 1.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.1)))
(tstamp 7fb43382-cb2e-467c-bd14-0afbe806e137)
)
(fp_line (start -10.25 -4.15) (end -9.175 -4.15)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8eab050d-a840-475f-8a7d-90c784776246))
(fp_line (start -9.175 -4.15) (end -9.175 4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fe714c74-91ee-4008-b940-d21b4534b26c))
(fp_line (start 3.175 -4) (end -9.175 -4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff372c0c-c661-4ae4-a16f-06d5a6099f11))
(fp_line (start 3.175 4) (end -9.175 4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e8847b85-73bc-4ce0-b796-90cd8b337cf3))
(fp_line (start 3.175 4) (end 3.175 -4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 78d586dc-96ca-47a9-81f8-d13f3f1891fd))
(fp_line (start 9.175 -4) (end 5 -4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c20875d3-8062-4cd5-8490-cedc34be2541))
(fp_line (start 9.175 4) (end 5 4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c49abf4e-f84c-487a-9d9e-7890a6d6234c))
(fp_line (start 9.175 4) (end 9.175 -4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d18ba712-e05a-4da0-ab45-f9559d97999b))
(fp_circle (center -8.05 -3) (end -8.05 -2.75)
(stroke (width 0.5) (type solid)) (fill none) (layer "F.SilkS") (tstamp 5b41a120-26a0-43bf-99c8-937c23b08cc1))
(fp_line (start -10.55 -4.25) (end -10.55 4.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8215bf06-ecdf-4860-a8d4-69e217954869))
(fp_line (start -10.55 4.25) (end 10.55 4.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 99eeb197-d393-4164-8e7e-ae8778e11fc6))
(fp_line (start 10.55 -4.25) (end -10.55 -4.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f71be145-59bf-458f-b9ed-3a8a5cf6d558))
(fp_line (start 10.55 4.25) (end 10.55 -4.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2d5c2326-4e3f-44ad-b210-d2eb9cd3acba))
(pad "1" smd roundrect (at -9.85 -3.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "/A11") (pinfunction "A11") (pintype "input") (tstamp 2935ec8a-cbf6-419c-909f-c5d7ea01bc82))
(pad "2" smd roundrect (at -9.85 -3.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/A9") (pinfunction "A9") (pintype "input") (tstamp 9dc333b0-af87-43d4-99aa-b8bf49b31251))
(pad "3" smd roundrect (at -9.85 -2.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/A8") (pinfunction "A8") (pintype "input") (tstamp 3243a0ea-d11f-466b-8efe-001b9c5d1430))
(pad "4" smd roundrect (at -9.85 -2.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "/A13") (pinfunction "A13") (pintype "input") (tstamp 75e40af9-9958-4e76-9950-4376a3c97f32))
(pad "5" smd roundrect (at -9.85 -1.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "/A14") (pinfunction "A14") (pintype "input") (tstamp e2abfb36-0554-4e39-98b7-5b133701c47b))
(pad "6" smd roundrect (at -9.85 -1.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 33 "unconnected-(U1-NC-Pad6)") (pinfunction "NC") (pintype "passive+no_connect") (tstamp de684c81-c4f2-4070-9251-6a84f525467a))
(pad "7" smd roundrect (at -9.85 -0.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "/~{WE}") (pinfunction "~{WE}") (pintype "input") (tstamp e5d5078e-0dfe-4f20-8d4e-716525cb3525))
(pad "8" smd roundrect (at -9.85 -0.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 32 "VCC") (pinfunction "VDD") (pintype "power_in") (tstamp 83e0ae65-b8bd-4f70-8d2c-640daad8cf66))
(pad "9" smd roundrect (at -9.85 0.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "/VPP") (pinfunction "NC") (pintype "passive") (tstamp a535dea3-559c-45fa-96e7-b32c66e61c67))
(pad "10" smd roundrect (at -9.85 0.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "/A16") (pinfunction "A16") (pintype "input") (tstamp 3ada3806-e93e-44f4-87b9-039acf44e866))
(pad "11" smd roundrect (at -9.85 1.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "/A15") (pinfunction "A15") (pintype "input") (tstamp c68ebcbe-f28a-4701-836a-0b8f1bd6651e))
(pad "12" smd roundrect (at -9.85 1.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "/A12") (pinfunction "A12") (pintype "input") (tstamp e303a7bf-3553-42c1-b9f8-87d3276cffa5))
(pad "13" smd roundrect (at -9.85 2.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "/A7") (pinfunction "A7") (pintype "input") (tstamp 76f435be-78fa-4cdd-84b7-c10bcb426035))
(pad "14" smd roundrect (at -9.85 2.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "/A6") (pinfunction "A6") (pintype "input") (tstamp c8de5e94-96de-4d5a-a7e5-42474144f5c8))
(pad "15" smd roundrect (at -9.85 3.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "/A5") (pinfunction "A5") (pintype "input") (tstamp 75a0d38e-9fb5-4d46-9704-43ac7f051c41))
(pad "16" smd roundrect (at -9.85 3.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "/A4") (pinfunction "A4") (pintype "input") (tstamp aa9686d3-7d48-459c-a3b0-215e9c531229))
(pad "17" smd roundrect (at 3.85 3.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "/A3") (pinfunction "A3") (pintype "input") (tstamp 9ca0e708-dc3a-4e08-952c-aff1203a8d99))
(pad "17" smd roundrect (at 9.85 3.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "/A3") (pinfunction "A3") (pintype "input") (tstamp ae0399de-0d5f-4771-8b19-2b100ea75f78))
(pad "18" smd roundrect (at 3.85 3.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/A2") (pinfunction "A2") (pintype "input") (tstamp beb7db96-3b0c-427a-b52a-f8398c306c32))
(pad "18" smd roundrect (at 9.85 3.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/A2") (pinfunction "A2") (pintype "input") (tstamp 0131565e-7cd1-4379-b502-df55e6a2c60d))
(pad "19" smd roundrect (at 3.85 2.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/A1") (pinfunction "A1") (pintype "input") (tstamp 1be2d07c-6a76-4c54-8f0e-b2766a45ed22))
(pad "19" smd roundrect (at 9.85 2.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/A1") (pinfunction "A1") (pintype "input") (tstamp 95de4c00-cec9-4bb4-abf4-6682d4c9e7d9))
(pad "20" smd roundrect (at 3.85 2.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/A0") (pinfunction "A0") (pintype "input") (tstamp 66470ed9-9283-49e6-948d-66b8b1b88522))
(pad "20" smd roundrect (at 9.85 2.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/A0") (pinfunction "A0") (pintype "input") (tstamp 118237f8-392e-4428-9036-307f3fe7ea80))
(pad "21" smd roundrect (at 3.85 1.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/D0") (pinfunction "DQ0") (pintype "tri_state") (tstamp c399f730-92d1-4bef-8f07-dea407b2d732))
(pad "21" smd roundrect (at 9.85 1.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/D0") (pinfunction "DQ0") (pintype "tri_state") (tstamp e81e6604-72ec-4410-90ad-08788f1eab43))
(pad "22" smd roundrect (at 3.85 1.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/D1") (pinfunction "DQ1") (pintype "tri_state") (tstamp e5e3b704-c257-4722-81bf-79e468818404))
(pad "22" smd roundrect (at 9.85 1.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/D1") (pinfunction "DQ1") (pintype "tri_state") (tstamp 6fc040f9-388e-451f-b899-12ce62823195))
(pad "23" smd roundrect (at 3.85 0.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/D2") (pinfunction "DQ2") (pintype "tri_state") (tstamp 38d9e66b-0283-4157-88fe-a90929b0c4d1))
(pad "23" smd roundrect (at 9.85 0.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/D2") (pinfunction "DQ2") (pintype "tri_state") (tstamp 69c0014e-3fe7-4c96-a51f-00905bf87c48))
(pad "24" smd roundrect (at 3.85 0.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 77edc2c9-54c8-4d2e-8335-b448e913aff0))
(pad "24" smd roundrect (at 9.85 0.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 2d88da88-18bd-4a1b-a168-ca190c82408d))
(pad "25" smd roundrect (at 3.85 -0.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "/D3") (pinfunction "DQ3") (pintype "tri_state") (tstamp d6c9024c-d689-467d-810b-3e2c763f9cdc))
(pad "25" smd roundrect (at 9.85 -0.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "/D3") (pinfunction "DQ3") (pintype "tri_state") (tstamp 044b4e98-f1ef-4608-b748-9abaa8352e2c))
(pad "26" smd roundrect (at 3.85 -0.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "/D4") (pinfunction "DQ4") (pintype "tri_state") (tstamp bd83a494-619d-478b-bb12-2eb2195824d3))
(pad "26" smd roundrect (at 9.85 -0.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "/D4") (pinfunction "DQ4") (pintype "tri_state") (tstamp 79bf2b4b-972e-4983-ad56-ee5544edf1dc))
(pad "27" smd roundrect (at 3.85 -1.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "/D5") (pinfunction "DQ5") (pintype "tri_state") (tstamp acaf200c-44f1-4f13-be87-6763d10cadac))
(pad "27" smd roundrect (at 9.85 -1.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "/D5") (pinfunction "DQ5") (pintype "tri_state") (tstamp 8d02f1a2-2220-46e2-b017-1487885a56d0))
(pad "28" smd roundrect (at 3.85 -1.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "/D6") (pinfunction "DQ6") (pintype "tri_state") (tstamp 56a8372e-2449-491e-bcb3-9ddb455383bb))
(pad "28" smd roundrect (at 9.85 -1.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "/D6") (pinfunction "DQ6") (pintype "tri_state") (tstamp dbfab72c-e8b2-481a-abec-a5d746d04220))
(pad "29" smd roundrect (at 3.85 -2.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "/D7") (pinfunction "DQ7") (pintype "tri_state") (tstamp 7456b9a1-34d1-4a8a-acc4-239e7894e2b1))
(pad "29" smd roundrect (at 9.85 -2.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "/D7") (pinfunction "DQ7") (pintype "tri_state") (tstamp 4278a55d-7e30-4cad-a5bf-8555bcf6f446))
(pad "30" smd roundrect (at 3.85 -2.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "/~{CE}") (pinfunction "~{CE}") (pintype "input") (tstamp d24878d0-e884-424b-bc2b-2b9aa10a5124))
(pad "30" smd roundrect (at 9.85 -2.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "/~{CE}") (pinfunction "~{CE}") (pintype "input") (tstamp c58bc608-fdb6-4d73-8568-74e8d47655e3))
(pad "31" smd roundrect (at 3.85 -3.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "/A10") (pinfunction "A10") (pintype "input") (tstamp af2b8c91-a68e-40dd-8db9-5e1f68f0d379))
(pad "31" smd roundrect (at 9.85 -3.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "/A10") (pinfunction "A10") (pintype "input") (tstamp 5609cc67-bcab-44bf-a4bc-eb79e62a88c0))
(pad "32" smd roundrect (at 3.85 -3.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "/~{OE}") (pinfunction "~{OE}") (pintype "input") (tstamp 056c1cbc-71d0-4914-854d-e2f21fdb72c5))
(pad "32" smd roundrect (at 9.85 -3.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "/~{OE}") (pinfunction "~{OE}") (pintype "input") (tstamp bb40e7db-730b-4bf3-b0d6-10afcf9b8b60))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/TSOP32_8x14.step"
(offset (xyz -3 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/TSOP32_8X20.step" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_LOCAL:DIP32_DIP28_0.6_pcb_sil_pins" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e6197d1)
(at 137.3 110.16 90)
(descr "28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils)")
(tags "THT DIP DIL PDIP 2.54mm 15.24mm 600mil")
(property "Sheetfile" "FLASH_23C1000.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Silicon Storage Technology (SSF) 128k x 8 Flash ROM")
(property "ki_keywords" "128k flash rom")
(path "/00000000-0000-0000-0000-00005e5c209e")
(attr through_hole)
(fp_text reference "J1" (at 0 -21.38 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dacebd5e-87a9-4344-a487-f38342fc0bdd)
)
(fp_text value "23C1000 / 29F010 switchable pinout" (at -10.16 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c15d81c1-79a5-4541-83fc-9dc836a3695b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 45ec7b5c-07bb-4eb1-97b7-4bf6aa15471d)
)
(fp_line (start -8.22 -19.65) (end -8.22 19.65)
(stroke (width 0.01) (type solid)) (layer "F.CrtYd") (tstamp ccf91733-b437-4190-aa6b-6688e025fab6))
(fp_line (start -8.22 19.65) (end 8.22 19.65)
(stroke (width 0.01) (type solid)) (layer "F.CrtYd") (tstamp 60e5d449-3f61-445d-a8c8-e1aa267f35f7))
(fp_line (start 8.22 -19.65) (end -8.22 -19.65)
(stroke (width 0.01) (type solid)) (layer "F.CrtYd") (tstamp 59dbca31-b22d-4f37-b65e-f452178869b6))
(fp_line (start 8.22 19.65) (end 8.22 -19.65)
(stroke (width 0.01) (type solid)) (layer "F.CrtYd") (tstamp a02d44fa-9b24-41d0-a961-0c6eb0454883))
(pad "1" thru_hole roundrect (at -7.62 -19.05 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.1)
(net 30 "/VPP") (pinfunction "NC_VPP") (pintype "power_in") (tstamp 6f36b491-9976-4f9c-b9a6-d1d3046f35e3))
(pad "2" thru_hole circle (at -7.62 -16.51 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 27 "/A16") (pinfunction "NC_A16") (pintype "input") (tstamp ea4153fe-6f43-4891-8ea0-14ad3a128d60))
(pad "3" thru_hole roundrect (at -7.62 -13.97 90) (size 1.2 1.2) (drill 0.58) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.1)
(net 28 "/A15") (pinfunction "A15") (pintype "input") (tstamp db0c7f9b-25d2-402b-8686-14df82ddbc0d))
(pad "4" thru_hole circle (at -7.62 -11.43 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 24 "/A12") (pinfunction "A12") (pintype "input") (tstamp 78ae3d32-4f70-4562-908e-03f874aa59f7))
(pad "5" thru_hole circle (at -7.62 -8.89 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 22 "/A7") (pinfunction "A7") (pintype "input") (tstamp b616c217-dba3-49cd-bf36-9f74e03a30ba))
(pad "6" thru_hole circle (at -7.62 -6.35 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 20 "/A6") (pinfunction "A6") (pintype "input") (tstamp 37317133-ed55-4df7-bac7-8274429b97f6))
(pad "7" thru_hole circle (at -7.62 -3.81 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 18 "/A5") (pinfunction "A5") (pintype "input") (tstamp 195add0d-fb99-4c01-8ce7-870daf628f95))
(pad "8" thru_hole circle (at -7.62 -1.27 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 16 "/A4") (pinfunction "A4") (pintype "input") (tstamp 2ad48515-bf8a-4517-bdd2-5e5782b7fc14))
(pad "9" thru_hole circle (at -7.62 1.27 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 14 "/A3") (pinfunction "A3") (pintype "input") (tstamp eced4847-6c3b-4c94-b8ff-092f3e5c0686))
(pad "10" thru_hole circle (at -7.62 3.81 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 12 "/A2") (pinfunction "A2") (pintype "input") (tstamp f29c1d38-7e3b-4437-ab5b-0dd578392eba))
(pad "11" thru_hole circle (at -7.62 6.35 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 10 "/A1") (pinfunction "A1") (pintype "input") (tstamp 1a5958b1-1334-40d4-b2d8-bfb9f5b3a965))
(pad "12" thru_hole circle (at -7.62 8.89 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 8 "/A0") (pinfunction "A0") (pintype "input") (tstamp 1edda32f-aa2c-498c-bad7-e66c81e0a8cd))
(pad "13" thru_hole circle (at -7.62 11.43 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 6 "/D0") (pinfunction "DQ0") (pintype "tri_state") (tstamp 1a497518-d8b3-4575-8abd-8a4d7be7f648))
(pad "14" thru_hole circle (at -7.62 13.97 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 4 "/D1") (pinfunction "DQ1") (pintype "tri_state") (tstamp fe08afe6-c373-48b6-8578-e63aabe4a28f))
(pad "15" thru_hole circle (at -7.62 16.51 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 2 "/D2") (pinfunction "DQ2") (pintype "tri_state") (tstamp 9a64bc4d-53aa-4f82-b378-308d9d3f882f))
(pad "16" thru_hole circle (at -7.62 19.05 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 31 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 9b37f3fc-4c12-41a0-9c1b-4d140135b356))
(pad "17" thru_hole circle (at 7.62 19.05 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 25 "/D3") (pinfunction "DQ3") (pintype "tri_state") (tstamp 5c62ca17-106a-4cbf-8ca0-7e1f853bbfde))
(pad "18" thru_hole circle (at 7.62 16.51 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 23 "/D4") (pinfunction "DQ4") (pintype "tri_state") (tstamp 2e7c1ead-662c-44d4-a3d2-f57e71ad4643))
(pad "19" thru_hole circle (at 7.62 13.97 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 21 "/D5") (pinfunction "DQ5") (pintype "tri_state") (tstamp 9400a4c9-21dc-45c3-9d38-c2961e7f16ee))
(pad "20" thru_hole circle (at 7.62 11.43 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 19 "/D6") (pinfunction "DQ6") (pintype "tri_state") (tstamp be8a2a4c-3b5f-4145-9605-5cf94492bd5f))
(pad "21" thru_hole circle (at 7.62 8.89 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 17 "/D7") (pinfunction "DQ7") (pintype "tri_state") (tstamp efbd6a9e-f5b9-4286-8f43-7d73a6b1705d))
(pad "22" thru_hole circle (at 7.62 6.35 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 15 "/~{CE}") (pinfunction "~{CE}") (pintype "input") (tstamp 04642c11-c618-44be-9f75-09cfb75dd823))
(pad "23" thru_hole circle (at 7.62 3.81 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 13 "/A10") (pinfunction "A10") (pintype "input") (tstamp e29630fc-5589-49d7-b1cf-f71401b19c5a))
(pad "24" thru_hole circle (at 7.62 1.27 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 29 "/A16_~{OE}") (pinfunction "A16_~{OE}") (pintype "input") (tstamp 855a752f-8aa2-4a3c-ae0b-aef5eca090d9))
(pad "25" thru_hole circle (at 7.62 -1.27 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 9 "/A11") (pinfunction "A11") (pintype "input") (tstamp 20cf8a39-1920-48cd-9833-9b6349825a98))
(pad "26" thru_hole circle (at 7.62 -3.81 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 7 "/A9") (pinfunction "A9") (pintype "input") (tstamp d34b9c1a-0e56-4fee-949a-1b5d1cfb747b))
(pad "27" thru_hole circle (at 7.62 -6.35 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 5 "/A8") (pinfunction "A8") (pintype "input") (tstamp e8a0fcbb-a955-42d2-8587-3b42176a228c))
(pad "28" thru_hole circle (at 7.62 -8.89 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 3 "/A13") (pinfunction "A13") (pintype "input") (tstamp 59ae6245-da02-4220-a7f8-4ff04a3234fa))
(pad "29" thru_hole circle (at 7.62 -11.43 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 1 "/A14") (pinfunction "A14") (pintype "input") (tstamp a5b312ed-ac0a-480b-aab2-b724226cfe89))
(pad "30" thru_hole circle (at 7.62 -13.97 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 32 "VCC") (pinfunction "VDD_NC") (pintype "power_in") (tstamp 3cb7eace-12cb-4f98-bd60-f5bf9bf445d8))
(pad "31" thru_hole circle (at 7.62 -16.51 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 26 "/~{WE}") (pinfunction "~{WE}") (pintype "input") (tstamp 99bed1fc-b6df-48ac-80eb-cc928a6a8b0c))
(pad "32" thru_hole circle (at 7.62 -19.05 90) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 32 "VCC") (pinfunction "NC_VDD") (pintype "power_in") (tstamp 52b1901e-41bf-48d2-9ea4-e895148ab965))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/DIP32_legs_solder.step"
(offset (xyz -7.62 19.05 -1.7399))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(footprint "000_LOCAL:R_0805" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e638d11)
(at 146.19 104.41 180)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "FLASH_23C1000.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, US symbol")
(property "ki_keywords" "R res resistor")
(path "/00000000-0000-0000-0000-00005e614d7e")
(attr smd)
(fp_text reference "R1" (at -0.0254 -0.0254 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 32c4e8ea-d2c8-413b-b28b-a243333c9475)
)
(fp_text value "47k" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dd0ad99f-a16e-4353-8e77-3ae0f68eaf9c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp a0bc1586-9a25-4567-b8f5-46fe56bdccfc)
)
(fp_line (start -0.6 -0.88) (end 0.6 -0.88)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e453c062-18c4-4886-b410-70a8c1c3b4a7))
(fp_line (start 0.6 0.88) (end -0.6 0.88)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1b46da1b-66c4-484c-9536-624fd4bf8552))
(fp_line (start -1.55 -0.9) (end -1.55 0.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4fe1cbbc-6b38-4b95-b5df-68028e32dd5a))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 22e9b729-7c9a-4d1e-9d74-11e2e2c9bc5a))
(fp_line (start 1.55 0.9) (end -1.55 0.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 74f4ce1b-257c-4137-b144-d4bf985fee8e))
(fp_line (start 1.55 0.9) (end 1.55 -0.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bcea6abb-29ad-49d2-8bee-a11e68c0064b))
(fp_line (start -1 -0.62) (end 1 -0.62)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp da08d59b-662d-4bd7-b2ea-a4d731a88056))
(fp_line (start -1 0.62) (end -1 -0.62)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d57d9645-66d8-49e1-a066-74e2aeebc537))
(fp_line (start 1 -0.62) (end 1 0.62)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7377886e-fb2b-455f-8e03-0a76db59ed58))
(fp_line (start 1 0.62) (end -1 0.62)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 697e0ae0-e876-4e35-8aa8-a7122a23f416))
(pad "1" smd roundrect (at -0.95 0 180) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 11 "/~{OE}") (pintype "passive") (tstamp 12a3daf6-3079-4117-b64c-1a02bda34c2f))
(pad "2" smd roundrect (at 0.95 0 180) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 31 "GND") (pintype "passive") (tstamp 55f7d454-8fce-4fe9-94d6-4955da0d741e))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/R_0805_2012Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_LOCAL:PLCC32_7x9" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e63cd90)
(at 137.3 110.16 90)
(descr "PLCC, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc0015.pdf), generated with kicad-footprint-generator ipc_plcc_jLead_generator.py")
(tags "PLCC LCC")
(property "Sheetfile" "FLASH_23C1000.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Silicon Storage Technology (SSF) 128k x 8 Flash ROM")
(property "ki_keywords" "128k flash rom")
(path "/00000000-0000-0000-0000-00005e644e99")
(attr smd)
(fp_text reference "U2" (at -2.7 -4.9 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 5aec36ab-5f55-4500-a6b5-7ba4191d0878)
)
(fp_text value "29F010 PLCC 7x9" (at -5.08 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9563ec6d-42ca-4ec4-bb79-6d22a0bb2500)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2a83dd4e-2318-4125-b34e-e37997d264c3)
)
(fp_line (start -4.5 -4.75) (end -3.5 -5.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b804cf62-69e1-4926-bec7-0180860dd4fd))
(fp_line (start -4.5 5.75) (end -4.5 -4.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 611532f6-f844-4b62-b353-19ec2f643de5))
(fp_line (start -3.5 -5.75) (end 4.5 -5.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e26338c3-5429-402e-b38a-9ecc4021f4f5))
(fp_line (start 4.5 -5.75) (end 4.5 5.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 05849cd0-7b2f-4aaf-a353-49c8dd5cc1bd))
(fp_line (start 4.5 5.75) (end -4.5 5.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 843e755e-c6b5-48b7-811f-5c2cbccbb1df))
(fp_line (start -6.55 -5.63) (end -6.55 0)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 589e32cd-162f-4e2d-877d-674b696beec2))
(fp_line (start -6.55 5.63) (end -6.55 0)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 08ea84bd-e079-45e9-9769-11f3b235514b))
(fp_line (start -5.96 -5.95) (end -5.96 -5.63)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5276f16e-81f4-4607-8095-bf3664eee4a6))
(fp_line (start -5.96 -5.63) (end -6.55 -5.63)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3a8348fe-db48-4bad-932a-58f7c898a9d9))
(fp_line (start -5.96 5.63) (end -6.55 5.63)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8771642e-97d1-47a8-b0fa-0e395efa9116))
(fp_line (start -5.96 7.23) (end -5.96 5.63)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 73ff66d6-ce3f-4d9e-af94-6d9ecf3f424c))
(fp_line (start -4.68 -7.23) (end -5.96 -5.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a74a73aa-06dd-4a43-a5b4-5d1304a4e9ca))
(fp_line (start -4.36 -7.82) (end -4.36 -7.23)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3569832e-0cd7-4687-9d4c-601fe2d6fb7c))
(fp_line (start -4.36 -7.23) (end -4.68 -7.23)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ab84f94f-ed4c-4836-96a8-25ffe701b5a6))
(fp_line (start -4.36 7.23) (end -5.96 7.23)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b524008d-9055-44ab-a021-4adfe8fd7993))
(fp_line (start -4.36 7.82) (end -4.36 7.23)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bada4c3a-938d-4700-bdb9-61c9b973d313))
(fp_line (start 0 -7.82) (end -4.36 -7.82)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d7a2eb23-7570-4d8f-97f3-8bff1fb4ca4e))
(fp_line (start 0 -7.82) (end 4.36 -7.82)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 10c79b13-2f8f-4775-8911-d8f99baf6769))
(fp_line (start 0 7.82) (end -4.36 7.82)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a3553fc1-ef73-4075-a144-d1bee853e80c))
(fp_line (start 0 7.82) (end 4.36 7.82)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6c24a5ae-fda9-4304-a5d3-1d354b70d3fa))
(fp_line (start 4.36 -7.82) (end 4.36 -7.23)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 123afaa8-901d-494c-97ec-5a054dab5f44))
(fp_line (start 4.36 -7.23) (end 5.96 -7.23)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f5afc9a4-9a5a-4a95-80b3-6ac93c1f606b))
(fp_line (start 4.36 7.23) (end 5.96 7.23)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d5b51ba-c627-4503-aec3-e50c32d56c61))
(fp_line (start 4.36 7.82) (end 4.36 7.23)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2caea949-97b6-4572-ab40-0e25dd03ac2f))
(fp_line (start 5.96 -7.23) (end 5.96 -5.63)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6317b9a8-c79e-44a5-bcb5-56a0be1d1785))
(fp_line (start 5.96 -5.63) (end 6.55 -5.63)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1ce12f6d-114d-428a-8f53-dceb26ee3434))
(fp_line (start 5.96 5.63) (end 6.55 5.63)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0255dcd7-e1b0-4ada-b6d6-bff6e0c8a5a2))
(fp_line (start 5.96 7.23) (end 5.96 5.63)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 06780862-f9e5-400a-a5cf-37ada5a8022a))
(fp_line (start 6.55 -5.63) (end 6.55 0)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5138d45d-1320-4f1b-8899-d7c6f515db84))
(fp_line (start 6.55 5.63) (end 6.55 0)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1edf350a-92c6-44b6-b4dc-f5c12640c521))
(fp_line (start -5.715 -5.845) (end -4.575 -6.985)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 16f31ffb-8054-4c2d-b2c8-bbfcf1369a92))
(fp_line (start -5.715 6.985) (end -5.715 -5.845)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b328269e-352a-4374-a28a-a12a898c8628))
(fp_line (start -4.575 -6.985) (end -0.5 -6.985)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3d22cbe5-7fb9-47d2-958e-396425ca6c25))
(fp_line (start -0.5 -6.985) (end 0 -6.277893)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 76a1be3d-6748-4c73-acec-6cc43640a7f1))
(fp_line (start 0 -6.277893) (end 0.5 -6.985)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8ba87d27-4e8d-4512-b969-5ab583207525))
(fp_line (start 0.5 -6.985) (end 5.715 -6.985)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 381f3bb2-1fc9-4736-a3ed-2dd6c6ab4778))
(fp_line (start 5.715 -6.985) (end 5.715 6.985)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 88bd8790-bdbc-40a5-8d9d-08dbda9a0ee7))
(fp_line (start 5.715 6.985) (end -5.715 6.985)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ba9dad33-1bc2-4139-83db-2ac6e3ab9e1f))
(fp_circle (center 0 -5.08) (end 0.25 -5.08)
(stroke (width 0.5) (type solid)) (fill none) (layer "F.Fab") (tstamp eec9f1b6-cb49-4e46-a46f-a86be385cf72))
(pad "1" smd roundrect (at 0 -6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "/VPP") (pinfunction "NC") (pintype "passive") (tstamp 011133f7-569b-4de9-b25b-dc9f3c352403))
(pad "2" smd roundrect (at -1.27 -6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "/A16") (pinfunction "A16") (pintype "input") (tstamp febcb3f6-1144-4168-a94c-dbddb4d1a58a))
(pad "3" smd roundrect (at -2.54 -6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "/A15") (pinfunction "A15") (pintype "input") (tstamp 83ddc2c2-d2bf-41a1-99f2-3d8306b6198b))
(pad "4" smd roundrect (at -3.81 -6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "/A12") (pinfunction "A12") (pintype "input") (tstamp e1838330-4c67-41fc-96f5-8a73e817678a))
(pad "5" smd roundrect (at -5.5625 -5.08 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "/A7") (pinfunction "A7") (pintype "input") (tstamp 61b929e0-bb7b-4d9b-97e2-4e7f94a3c2ac))
(pad "6" smd roundrect (at -5.5625 -3.81 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "/A6") (pinfunction "A6") (pintype "input") (tstamp e032230c-7294-409e-aa72-eeefa21fe8cb))
(pad "7" smd roundrect (at -5.5625 -2.54 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "/A5") (pinfunction "A5") (pintype "input") (tstamp fc150461-8b71-4399-b10d-b1a060b33b29))
(pad "8" smd roundrect (at -5.5625 -1.27 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "/A4") (pinfunction "A4") (pintype "input") (tstamp e9562bbb-792a-44f4-89f9-4de4d5ede2e4))
(pad "9" smd roundrect (at -5.5625 0 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "/A3") (pinfunction "A3") (pintype "input") (tstamp 1d01d88f-b6af-4a0a-a419-ad5044446537))
(pad "10" smd roundrect (at -5.5625 1.27 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/A2") (pinfunction "A2") (pintype "input") (tstamp f0023f46-38a7-4687-ad72-fbdb5e16a058))
(pad "11" smd roundrect (at -5.5625 2.54 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/A1") (pinfunction "A1") (pintype "input") (tstamp 81ad1bb1-df53-411c-ba62-9e7ad69a163c))
(pad "12" smd roundrect (at -5.5625 3.81 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/A0") (pinfunction "A0") (pintype "input") (tstamp 894a64c8-8560-446a-b46d-6ec134230de3))
(pad "13" smd roundrect (at -5.5625 5.08 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/D0") (pinfunction "DQ0") (pintype "tri_state") (tstamp d3ddb58b-df5a-4ea7-a506-6d8b72c04620))
(pad "14" smd roundrect (at -3.81 6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/D1") (pinfunction "DQ1") (pintype "tri_state") (tstamp bb693c5b-1abb-44b9-b8ff-dd95eb5c5493))
(pad "15" smd roundrect (at -2.54 6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/D2") (pinfunction "DQ2") (pintype "tri_state") (tstamp b071e60c-7462-47d2-a575-8231ac4037d1))
(pad "16" smd roundrect (at -1.27 6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 6f2eb127-3101-4e24-b820-82c82fb6416a))
(pad "17" smd roundrect (at 0 6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "/D3") (pinfunction "DQ3") (pintype "tri_state") (tstamp 9864e84b-8b88-4939-b369-a6af579f50f5))
(pad "18" smd roundrect (at 1.27 6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "/D4") (pinfunction "DQ4") (pintype "tri_state") (tstamp 409aa660-5ad3-4b11-9b53-f01c8133ab54))
(pad "19" smd roundrect (at 2.54 6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "/D5") (pinfunction "DQ5") (pintype "tri_state") (tstamp c7a1f770-8e80-4e95-8e60-4571b5402e86))
(pad "20" smd roundrect (at 3.81 6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "/D6") (pinfunction "DQ6") (pintype "tri_state") (tstamp 933feabb-e7ad-4a24-9e80-8d5612734948))
(pad "21" smd roundrect (at 5.5625 5.08 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "/D7") (pinfunction "DQ7") (pintype "tri_state") (tstamp b5165882-542f-4cc5-9e33-e6ac2f3fae29))
(pad "22" smd roundrect (at 5.5625 3.81 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "/~{CE}") (pinfunction "~{CE}") (pintype "input") (tstamp 7ab36429-02a6-4592-95ce-f9ce0f6390ff))
(pad "23" smd roundrect (at 5.5625 2.54 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "/A10") (pinfunction "A10") (pintype "input") (tstamp fb081247-a714-4680-9867-de10a6dd9760))
(pad "24" smd roundrect (at 5.5625 1.27 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "/~{OE}") (pinfunction "~{OE}") (pintype "input") (tstamp bbd520d6-423d-4bfe-8de9-1f681d046b36))
(pad "25" smd roundrect (at 5.5625 0 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "/A11") (pinfunction "A11") (pintype "input") (tstamp 1248dd64-d025-496a-858a-13e6f993f8c8))
(pad "26" smd roundrect (at 5.5625 -1.27 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/A9") (pinfunction "A9") (pintype "input") (tstamp 9396bbd7-8606-4bdd-baa4-030ad47439a4))
(pad "27" smd roundrect (at 5.5625 -2.54 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/A8") (pinfunction "A8") (pintype "input") (tstamp bdef7999-3fd2-4904-8d93-e4bf671f649c))
(pad "28" smd roundrect (at 5.5625 -3.81 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "/A13") (pinfunction "A13") (pintype "input") (tstamp 88a5778c-444f-4b81-981b-3fb8d03a7afe))
(pad "29" smd roundrect (at 5.5625 -5.08 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "/A14") (pinfunction "A14") (pintype "input") (tstamp 7c60c662-6f02-4bec-a7c3-fa71d2197804))
(pad "30" smd roundrect (at 3.81 -6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "unconnected-(U2-NC-Pad30)") (pinfunction "NC") (pintype "passive+no_connect") (tstamp 7cd32e7f-bd14-47e3-b998-1908e983fa86))
(pad "31" smd roundrect (at 2.54 -6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "/~{WE}") (pinfunction "~{WE}") (pintype "input") (tstamp 04d23028-c83e-4178-8cbe-34e368be889a))
(pad "32" smd roundrect (at 1.27 -6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 32 "VCC") (pinfunction "VDD") (pintype "power_in") (tstamp 239c8fd2-c4df-4ade-a269-726a55230357))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/PLCC32_7x9.step" hide
(offset (xyz 0 0 2.9))
(scale (xyz 1 1 1))
(rotate (xyz 90 180 0))
)
)
(footprint "000_LOCAL:R_0805" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e6815f7)
(at 120.79 106.35 180)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "FLASH_23C1000.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, US symbol")
(property "ki_keywords" "R res resistor")
(path "/00000000-0000-0000-0000-00005e802dcc")
(attr smd)
(fp_text reference "R2" (at -0.0254 0 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 9076a6da-95fa-478b-be59-7abe50a37250)
)
(fp_text value "47K" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e9c8cfd7-48ab-43ad-ac1c-cf8fcc720ac1)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 04be072c-2781-44f0-b73e-899a89511295)
)
(fp_line (start -0.6 -0.88) (end 0.6 -0.88)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fb1d2b94-fe47-4f69-b63a-8b211ae34dcd))
(fp_line (start 0.6 0.88) (end -0.6 0.88)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e50e73e-60fb-46b5-84b7-abfb526040de))
(fp_line (start -1.55 -0.9) (end -1.55 0.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d551ca43-0d4c-45c8-ba97-6225aacfa70c))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 04be1849-f093-4abd-b85a-6fd35cb35c87))
(fp_line (start 1.55 0.9) (end -1.55 0.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 941c946b-3b86-41fd-ac0a-557fa34dce97))
(fp_line (start 1.55 0.9) (end 1.55 -0.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ec5e51e1-ac15-4089-8126-71c3220a546d))
(fp_line (start -1 -0.62) (end 1 -0.62)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cc5ddfb0-10dd-4b5a-b2f9-b69d288728ce))
(fp_line (start -1 0.62) (end -1 -0.62)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 240d7c1d-74bc-46b7-9932-f466930be574))
(fp_line (start 1 -0.62) (end 1 0.62)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6ebfb0c7-d4c9-4c2f-b836-7c27f113a4b0))
(fp_line (start 1 0.62) (end -1 0.62)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5d880639-cf8c-405e-a980-f0715c581149))
(pad "1" smd roundrect (at -0.95 0 180) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 26 "/~{WE}") (pintype "passive") (tstamp edffde06-c43a-4b51-b11b-56b19724488d))
(pad "2" smd roundrect (at 0.95 0 180) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 32 "VCC") (pintype "passive") (tstamp 34b9b957-e7aa-4dc5-b7a2-58766b42d34f))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/R_0805_2012Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_LOCAL:R_0805" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e6c8b5e)
(at 120.79 113.97 180)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "FLASH_23C1000.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, US symbol")
(property "ki_keywords" "R res resistor")
(path "/00000000-0000-0000-0000-00005e74dd94")
(attr smd)
(fp_text reference "R3" (at -0.0254 0 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 31a3b773-877e-4623-ba13-a60ade80ac00)
)
(fp_text value "47K" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ae435438-22d6-478e-8cab-6964811e6418)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 7d3a7b6a-5fc8-4674-bd73-168b77522213)
)
(fp_line (start -0.6 -0.88) (end 0.6 -0.88)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e3561b7-e9e5-4f9b-9b7d-7d97e6ffa39e))
(fp_line (start 0.6 0.88) (end -0.6 0.88)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8c069a7e-e3bf-428e-a71c-39e1e5ab8a7f))
(fp_line (start -1.55 -0.9) (end -1.55 0.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp afaf7513-28d2-42e2-a615-052286c308d8))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 735a5c01-d998-4c25-b991-27fb2fc4fed8))
(fp_line (start 1.55 0.9) (end -1.55 0.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 588b5674-4ee8-4346-ac4c-4bda0ee19942))
(fp_line (start 1.55 0.9) (end 1.55 -0.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8b011c0a-d858-41ed-b8a1-f0f62bfea0b3))
(fp_line (start -1 -0.62) (end 1 -0.62)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0c567b8b-aa6e-4d3a-a6a1-9f8dd7d1a4c6))
(fp_line (start -1 0.62) (end -1 -0.62)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b21716b8-a903-4cf5-ba56-4346ec099a84))
(fp_line (start 1 -0.62) (end 1 0.62)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6dc657f8-7f29-4111-872e-bf855a702b43))
(fp_line (start 1 0.62) (end -1 0.62)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0c9f1281-f33f-42bd-9f0f-285bf6271898))
(pad "1" smd roundrect (at -0.95 0 180) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 30 "/VPP") (pintype "passive") (tstamp 4ba0cda1-54ab-4650-9c54-7e41baa939da))
(pad "2" smd roundrect (at 0.95 0 180) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 32 "VCC") (pintype "passive") (tstamp 6d938435-848a-4ff5-86b6-524d0689c1e8))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/R_0805_2012Metric.step_x"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_LOCAL:Pin_Header_Angled_1x03_Pitch2.54mm_12shorted" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fa38820)
(at 155.08 104.699 -90)
(descr "Through hole angled pin header, 1x03, 2.54mm pitch, 6mm pin length, single row")
(tags "Through hole angled pin header THT 1x03 2.54mm single row")
(property "Sheetfile" "FLASH_23C1000.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Jumper, 3-pole, pins 1+2 closed/bridged")
(property "ki_keywords" "Jumper SPDT")
(path "/00000000-0000-0000-0000-00005e634357")
(attr through_hole)
(fp_text reference "JP1" (at 4.385 -2.27 -270) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 49f824e7-2be3-4b6f-bb6a-fd27cb0f5c6a)
)
(fp_text value "RUN/PROGRAM" (at 5.461 2.22) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp da65d316-9e07-4a26-90bf-65c345b323e0)
)
(fp_text user "${REFERENCE}" (at 2.77 2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 83e9bb9c-0e9a-41e2-8ad9-18851272c748)
)
(fp_line (start 1.042929 2.16) (end 1.44 2.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1fe11688-ed5e-4590-a027-1bfa859b8288))
(fp_line (start 1.042929 2.92) (end 1.44 2.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f03f31e6-7a8d-4696-933a-276ca2e7a306))
(fp_line (start 1.042929 4.7) (end 1.44 4.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bd069ea4-e90d-4460-a446-a1e4f1a6b2c7))
(fp_line (start 1.042929 5.46) (end 1.44 5.46)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 833795b6-aa64-4b3b-bc9c-02670ddcb5cd))
(fp_line (start 1.11 -0.38) (end 1.44 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a8d2ae1c-bda8-4b03-a375-251af08e0835))
(fp_line (start 1.11 0.38) (end 1.44 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dac510dc-a0d1-4750-ae7e-7994068f52b4))
(fp_line (start 1.44 -1.33) (end 1.44 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 10b7730f-7e52-4958-9bfe-e19c1122d3f8))
(fp_line (start 1.44 1.27) (end 4.1 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6566096a-8655-4a3b-81bd-c6c6a7ba4845))
(fp_line (start 1.44 3.81) (end 4.1 3.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 99906dc7-544a-4890-8b1c-90634663695c))
(fp_line (start 1.44 6.41) (end 4.1 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2396afee-6186-4688-bda1-d2076d7f718a))
(fp_line (start 4.1 -1.33) (end 1.44 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 38027c00-e789-482f-963f-f14777c169fd))
(fp_line (start 4.1 -0.38) (end 10.1 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c3382f9e-ce83-409b-837d-0eba450c17ef))
(fp_line (start 4.1 2.16) (end 10.1 2.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1e61e157-7f4e-4137-941e-b817771b185a))
(fp_line (start 4.1 4.7) (end 10.1 4.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f2a17444-8454-4773-b408-35faed554e3f))
(fp_line (start 4.1 6.41) (end 4.1 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2f5912c2-735f-4489-8e13-b12fa4d99397))
(fp_line (start 10.1 -0.38) (end 10.1 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f9a44740-5b92-4a72-9fc4-f3a5a8e82417))
(fp_line (start 10.1 0.38) (end 4.1 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5dc1904d-b7a9-4f4e-8195-cea3228cc00f))
(fp_line (start 10.1 2.16) (end 10.1 2.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2abc4343-0963-47a7-a1e2-fcbe023c5faf))
(fp_line (start 10.1 2.92) (end 4.1 2.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b963e776-a4de-4d73-a68a-ecdaad7b73d2))
(fp_line (start 10.1 4.7) (end 10.1 5.46)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 633fd4f5-1d93-48ea-8779-8ccf9a378996))
(fp_line (start 10.1 5.46) (end 4.1 5.46)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fd9df02d-2ed0-4882-bb55-44e05f5a626f))
(fp_poly
(pts
(xy 0.3175 0.3175)
(xy -0.3175 0.3175)
(xy -0.3175 -0.3175)
(xy 0.3175 -0.3175)
)
(stroke (width 0.00254) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp 55dfb1d8-8b27-477d-8300-7f1e3063c801))
(fp_line (start -1.8 -1.8) (end -1.8 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 64541913-c872-4567-aae7-66bd74529066))
(fp_line (start -1.8 6.85) (end 10.55 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a50c5bd1-4a60-40ba-b739-4c1235382896))
(fp_line (start 10.55 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 07205ac5-930e-4326-a15b-b510b5fa462d))
(fp_line (start 10.55 6.85) (end 10.55 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a60fe5c3-5852-4ab5-b667-9b0b3f707726))
(fp_line (start -0.32 -0.32) (end 1.5 -0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp efd1f253-b66f-4cad-8629-feea2d06d9de))
(fp_line (start -0.32 0.32) (end 1.5 0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 17672fa4-3b2c-46b7-ae1d-3662ff5b3274))
(fp_line (start -0.32 2.22) (end -0.32 2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d4aa6e34-f407-4d0a-925d-ade57da05440))
(fp_line (start -0.32 2.22) (end 1.5 2.22)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7f715c35-ddeb-4978-a346-34fca5bb238d))
(fp_line (start -0.32 2.86) (end 1.5 2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c3377bf9-36e6-4367-8ec6-59551603febd))
(fp_line (start -0.32 4.76) (end -0.32 5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b1672c94-a74a-4428-a21a-f24e7f280faf))
(fp_line (start -0.32 4.76) (end 1.5 4.76)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d541e555-453c-45ed-a0e2-e3a15134a050))
(fp_line (start -0.32 5.4) (end 1.5 5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fc707dcd-4af8-46b5-acad-5972a28dda02))
(fp_line (start 1.5 -0.635) (end 2.135 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b0790725-391e-4aa2-96af-e78b0accb4db))
(fp_line (start 1.5 6.35) (end 1.5 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 666b0a57-1f12-4e1a-a494-a5361680b995))
(fp_line (start 2.135 -1.27) (end 4.04 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 60fed12b-7e24-4487-bbcd-9a4ceb80d566))
(fp_line (start 4.04 -1.27) (end 4.04 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aab7a409-120b-40c3-8bd8-371efc1cb181))
(fp_line (start 4.04 -0.32) (end 10.04 -0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 02e47f61-4008-4ab6-8eee-db4bfdb86328))
(fp_line (start 4.04 0.32) (end 10.04 0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 97e2fe52-80fc-439e-a1f3-a34d09e93be4))
(fp_line (start 4.04 2.22) (end 10.04 2.22)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 97ec2984-0d6a-4daf-936a-4389bf3cff8c))
(fp_line (start 4.04 2.86) (end 10.04 2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d7be4b19-83d2-4b2b-b2c8-3a254ccacc9b))
(fp_line (start 4.04 4.76) (end 10.04 4.76)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb8450e4-5998-40f4-b794-d98b3838fcc2))
(fp_line (start 4.04 5.4) (end 10.04 5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f96f54ac-8b05-433a-a1cc-d959ad963788))
(fp_line (start 4.04 6.35) (end 1.5 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 057894b5-beb7-4f10-b69f-aeb159a97c57))
(fp_line (start 10.04 -0.32) (end 10.04 0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3c4ababb-d336-4a7e-9dfd-e3d0d6bd388d))
(fp_line (start 10.04 2.22) (end 10.04 2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 914fa8dc-1672-4a10-8aa9-84082fb82e8d))
(fp_line (start 10.04 4.76) (end 10.04 5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4e096599-be02-4b0d-b1e0-4caca9e629fd))
(pad "1" thru_hole circle (at 0 0 270) (size 1.397 1.397) (drill 0.9144) (layers "*.Cu" "*.Mask")
(net 27 "/A16") (pinfunction "A") (pintype "passive") (tstamp 88b44f5f-3966-4695-aecc-a1944396e8c7))
(pad "2" thru_hole circle (at 0 2.54 270) (size 1.397 1.397) (drill 0.9144) (layers "*.Cu" "*.Mask")
(net 29 "/A16_~{OE}") (pinfunction "C") (pintype "input") (tstamp 39105141-d05e-40a4-80ee-0c6389981595))
(pad "3" thru_hole circle (at 0 5.08 270) (size 1.397 1.397) (drill 0.9144) (layers "*.Cu" "*.Mask")
(net 11 "/~{OE}") (pinfunction "B") (pintype "passive") (tstamp 9f63b064-9198-42db-8f23-f71d2238ac98))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/PinHeader_1x03_P2.54mm_Horizontal.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/Jumper.stp"
(offset (xyz 4.064 -3.7592 0.1016))
(scale (xyz 1 1 1))
(rotate (xyz 0 -90 90))
)
)
(gr_arc (start 122.06 108.636) (mid 123.584 110.16) (end 122.06 111.684)
(stroke (width 0.3556) (type solid)) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-0000604f9edb))
(gr_line (start 122.06 108.636) (end 122.06 101.27)
(stroke (width 0.3556) (type solid)) (layer "F.SilkS") (tstamp 165553f3-3b9b-4939-a63e-f534a25e5dbb))
(gr_line (start 122.06 111.684) (end 122.06 119.05)
(stroke (width 0.3556) (type solid)) (layer "F.SilkS") (tstamp 18e65fd2-e904-4777-81fe-942acf566b7b))
(gr_arc (start 117.615 119.05) (mid 117.165987 118.864013) (end 116.98 118.415)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp 0f9b1166-a03a-43c2-81dd-49a43c906437))
(gr_line (start 116.98 118.415) (end 116.98 111.811)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp 2b9476c9-7798-4cb7-8179-71b43721c791))
(gr_line (start 156.985 119.05) (end 117.615 119.05)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp 3744fee1-e3bd-4481-badb-5f532da104ca))
(gr_arc (start 117.361 108.89) (mid 117.091592 108.778408) (end 116.98 108.509)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp 4c1c2e7e-9c54-41d4-9e17-8060eb45a76c))
(gr_arc (start 116.98 111.811) (mid 117.091592 111.541592) (end 117.361 111.43)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp 5ab68eec-f85f-4b66-84ac-405a4e105ce8))
(gr_arc (start 117.361 108.89) (mid 118.631 110.16) (end 117.361 111.43)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp 611560b4-1137-4992-8656-7d26a967a0b9))
(gr_arc (start 157.62 118.415) (mid 157.434013 118.864013) (end 156.985 119.05)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp 630fb159-abec-4c3f-9aef-85bfd3fe686a))
(gr_line (start 156.985 101.27) (end 117.615 101.27)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp 8b089887-a410-4035-b28e-ed091ddf7bf5))
(gr_arc (start 116.98 101.905) (mid 117.165987 101.455987) (end 117.615 101.27)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp 8b614556-d773-447c-9868-8a09d20ff5d5))
(gr_arc (start 156.985 101.27) (mid 157.434013 101.455987) (end 157.62 101.905)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp 8d6fd87e-914d-43be-beff-93e9633455c5))
(gr_line (start 157.62 101.905) (end 157.62 118.415)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp ce41e2aa-0e4e-4ff1-ba33-2f49440a50d1))
(gr_line (start 116.98 108.509) (end 116.98 101.905)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp deaa6766-715d-476e-9067-109c8d818532))
(gr_text "R1,R2: ${00000000-0000-0000-0000-00005e638d11:VALUE}\nLegs: TE 1544210" (at 156.35 115.24) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-00005e253af7)
(effects (font (size 0.6 0.6) (thickness 0.08)) (justify left mirror))
)
(gr_text "${COMMENT1}\n${TITLE} ${REVISION}" (at 137.3 110.16) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-00005e6199a3)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify mirror))
)
(gr_text "RUN" (at 155.842 116.256) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005e5f4bed)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify right))
)
(gr_text "PRG" (at 149.365 116.256) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005e5f4bf0)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify left))
)
(gr_text "23C1000" (at 125.235 110.16 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005e68f9e9)
(effects (font (size 1.6 1.6) (thickness 0.2)))
)
(gr_text "29F010" (at 118.25 114.351 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005fca0020)
(effects (font (size 1 0.9) (thickness 0.15)))
)
(gr_text "29F010\n28C010\n27C010" (at 136.2 110.16) (layer "F.SilkS") (tstamp 0f3e2d92-27bb-4afa-9fcf-3cc70e5698ba)
(effects (font (size 1 1) (thickness 0.15)))
)
(segment (start 126.05 108.41) (end 127.45 108.41) (width 0.2) (layer "F.Cu") (net 1) (tstamp 4acc59a5-ea37-45cc-a80b-3fe7fd9759a0))
(segment (start 132.22 106.2484) (end 132.22 104.5975) (width 0.2) (layer "F.Cu") (net 1) (tstamp d3348f8a-1784-4e9f-9506-c359d73e97df))
(segment (start 125.05 107.41) (end 126.05 108.41) (width 0.2) (layer "F.Cu") (net 1) (tstamp dc0a2578-d493-453d-961c-95467b820b60))
(segment (start 125.87 102.54) (end 125.05 103.36) (width 0.2) (layer "F.Cu") (net 1) (tstamp e740c6a6-773b-4ce1-9a16-4635207d352c))
(segment (start 125.05 103.36) (end 125.05 107.41) (width 0.2) (layer "F.Cu") (net 1) (tstamp fbff0aea-4d3e-4359-8153-dae5971106e2))
(via (at 132.22 106.2484) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 1) (tstamp 0853d2d6-6101-4fcc-afd5-c66883a5a4b9))
(segment (start 132.22 106.2484) (end 129.5784 106.2484) (width 0.2) (layer "B.Cu") (net 1) (tstamp 17bab679-d930-4927-a651-c1433b79f31f))
(segment (start 129.5784 106.2484) (end 125.87 102.54) (width 0.2) (layer "B.Cu") (net 1) (tstamp d2240560-8e09-45a7-b3c5-ae3c1c8a5c8c))
(segment (start 144.1375 112.7) (end 144.585 112.7) (width 0.2) (layer "F.Cu") (net 2) (tstamp 1972fca1-987d-4b3c-bbd2-ff69e431030c))
(segment (start 149.05 110.91) (end 153.81 115.67) (width 0.2) (layer "F.Cu") (net 2) (tstamp 2ad18e93-8326-41a7-be2a-73d4291df1a2))
(segment (start 144.585 112.7) (end 146.375 110.91) (width 0.2) (layer "F.Cu") (net 2) (tstamp 35fbdb82-4a96-43f6-8aa3-c89ebd7dc23f))
(segment (start 141.15 110.91) (end 141.9108 110.91) (width 0.2) (layer "F.Cu") (net 2) (tstamp 3d62e6c0-2d46-4115-9818-1e6fe4e5a977))
(segment (start 147.15 110.91) (end 149.05 110.91) (width 0.2) (layer "F.Cu") (net 2) (tstamp 6aab099b-ee6b-462b-97ef-7fed7e15d81a))
(segment (start 143.7008 112.7) (end 144.1375 112.7) (width 0.2) (layer "F.Cu") (net 2) (tstamp a8b9ed15-c583-48d9-8916-6f628ba7b060))
(segment (start 146.375 110.91) (end 147.15 110.91) (width 0.2) (layer "F.Cu") (net 2) (tstamp b036f252-b7a2-48e3-aedf-77c2367686a9))
(segment (start 153.81 115.67) (end 153.81 117.78) (width 0.2) (layer "F.Cu") (net 2) (tstamp bce0d72d-360f-4795-8709-014ee29c4754))
(segment (start 141.9108 110.91) (end 143.7008 112.7) (width 0.2) (layer "F.Cu") (net 2) (tstamp c891723a-01fe-47a1-8af4-ed052aedd48e))
(segment (start 128.41 102.54) (end 125.55 105.4) (width 0.2) (layer "F.Cu") (net 3) (tstamp 07f5e13f-a2fa-4f7b-a973-2947703cdcdc))
(segment (start 125.55 105.4) (end 125.55 107.16) (width 0.2) (layer "F.Cu") (net 3) (tstamp 122571a1-4e48-4c83-a998-37a3417e4c96))
(segment (start 125.55 107.16) (end 126.3 107.91) (width 0.2) (layer "F.Cu") (net 3) (tstamp 5a7542f0-6c92-4828-a16b-8c747dee01c1))
(segment (start 126.3 107.91) (end 127.45 107.91) (width 0.2) (layer "F.Cu") (net 3) (tstamp 91d00628-7137-4c62-a4ce-53e8ca6e0f82))
(via (at 133.49 105.0292) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 3) (tstamp a5189f01-f3d9-4f22-86d3-c5ee6ca0ab13))
(segment (start 130.8992 105.0292) (end 128.41 102.54) (width 0.2) (layer "B.Cu") (net 3) (tstamp 3f918da9-eae6-4b16-b348-7f67dfa85869))
(segment (start 133.49 105.0292) (end 130.8992 105.0292) (width 0.2) (layer "B.Cu") (net 3) (tstamp d3ad5415-e2f9-4318-aeea-da38d0113d31))
(segment (start 146.0376 112.4968) (end 146.0376 111.8724) (width 0.2) (layer "F.Cu") (net 4) (tstamp 12180488-7ff5-42d4-944a-6b3e1dc369ab))
(segment (start 144.5644 113.97) (end 146.0376 112.4968) (width 0.2) (layer "F.Cu") (net 4) (tstamp 4b376d2a-7727-48b0-b076-3de8777e11bd))
(segment (start 143.7008 113.97) (end 144.1375 113.97) (width 0.2) (layer "F.Cu") (net 4) (tstamp 4ebfce6c-5f58-4d36-a075-75db26d8010a))
(segment (start 141.8 111.41) (end 142.9134 112.5234) (width 0.2) (layer "F.Cu") (net 4) (tstamp 6bf98a5d-dbb7-4c78-81c8-9c022d8abe8f))
(segment (start 141.15 111.41) (end 141.8 111.41) (width 0.2) (layer "F.Cu") (net 4) (tstamp 7b9c1ab7-0861-476d-a02c-b034b87bfca9))
(segment (start 151.27 117.78) (end 151.27 113.88) (width 0.2) (layer "F.Cu") (net 4) (tstamp 7c8aba26-d738-4d2d-8bbd-7d217cde1319))
(segment (start 146.0376 111.8724) (end 146.5 111.41) (width 0.2) (layer "F.Cu") (net 4) (tstamp 8f166f8d-19ff-4d23-bf6a-b8b62742177f))
(segment (start 144.1375 113.97) (end 144.5644 113.97) (width 0.2) (layer "F.Cu") (net 4) (tstamp 984778a3-b39b-4911-b60c-94b5fdaedc10))
(segment (start 148.8 111.41) (end 147.15 111.41) (width 0.2) (layer "F.Cu") (net 4) (tstamp bb274092-158f-4731-9ff5-f438105048ee))
(segment (start 142.9134 112.5234) (end 142.9134 113.1826) (width 0.2) (layer "F.Cu") (net 4) (tstamp beffaef0-e14a-455b-a1a3-785d1d48b4f4))
(segment (start 146.5 111.41) (end 147.15 111.41) (width 0.2) (layer "F.Cu") (net 4) (tstamp d4f6e97c-4510-475d-9e87-7c53cf534f56))
(segment (start 151.27 113.88) (end 148.8 111.41) (width 0.2) (layer "F.Cu") (net 4) (tstamp e99f8e97-3e36-49a4-a878-622d4244fee8))
(segment (start 142.9134 113.1826) (end 143.7008 113.97) (width 0.2) (layer "F.Cu") (net 4) (tstamp fc7b511d-b03c-4dfe-9176-7dfcecd93763))
(segment (start 126.05 105.7636) (end 126.05 106.91) (width 0.2) (layer "F.Cu") (net 5) (tstamp 1301ceb3-8be9-4736-9bae-16aa603872f3))
(segment (start 126.05 106.91) (end 126.55 107.41) (width 0.2) (layer "F.Cu") (net 5) (tstamp 50d16b1a-833f-4394-b51c-e74f872060c0))
(segment (start 134.76 104.1656) (end 134.76 104.5975) (width 0.2) (layer "F.Cu") (net 5) (tstamp b675adee-2f5c-41ed-bcc7-85908fa5dc65))
(segment (start 127.902 103.9116) (end 126.05 105.7636) (width 0.2) (layer "F.Cu") (net 5) (tstamp bf2224db-5bcc-4548-b05a-b18ec06aa816))
(segment (start 126.55 107.41) (end 127.45 107.41) (width 0.2) (layer "F.Cu") (net 5) (tstamp c03012b1-5677-4f86-abbb-8c55a831ef3b))
(segment (start 130.95 102.54) (end 129.5784 103.9116) (width 0.2) (layer "F.Cu") (net 5) (tstamp cf182081-864b-4536-b911-41dab5424658))
(segment (start 129.5784 103.9116) (end 127.902 103.9116) (width 0.2) (layer "F.Cu") (net 5) (tstamp ecad2877-c21e-4179-b315-99bb5ee6ad48))
(via (at 134.76 104.1656) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 5) (tstamp 4874da6f-1785-42e4-ad0a-5d0f9dec6b27))
(segment (start 134.76 104.1656) (end 134.5314 103.937) (width 0.2) (layer "B.Cu") (net 5) (tstamp 159401bd-e3dc-451e-bb79-aa14d2535f61))
(segment (start 132.347 103.937) (end 130.95 102.54) (width 0.2) (layer "B.Cu") (net 5) (tstamp 2d8031da-b724-4529-ac2a-12c51de393b7))
(segment (start 134.5314 103.937) (end 132.347 103.937) (width 0.2) (layer "B.Cu") (net 5) (tstamp 51fec276-6fdd-4948-b880-2f57184476c3))
(segment (start 149.55 116.96) (end 148.73 117.78) (width 0.2) (layer "F.Cu") (net 6) (tstamp 04b7059b-7e2e-4228-898e-88e297290896))
(segment (start 142.38 113.8684) (end 142.38 112.5857) (width 0.2) (layer "F.Cu") (net 6) (tstamp 07f0775d-8380-4f69-bb38-24e1695a2e50))
(segment (start 141.7043 111.91) (end 141.15 111.91) (width 0.2) (layer "F.Cu") (net 6) (tstamp 5744e862-3b03-44f3-a79b-a0fde4868abf))
(segment (start 149.55 112.91) (end 149.55 116.96) (width 0.2) (layer "F.Cu") (net 6) (tstamp 6f48cd80-d490-4fd2-9663-be2d881211a6))
(segment (start 147.15 111.91) (end 148.55 111.91) (width 0.2) (layer "F.Cu") (net 6) (tstamp b195eee3-2aec-4813-b74a-31ac3d4ddd97))
(segment (start 142.38 112.5857) (end 141.7043 111.91) (width 0.2) (layer "F.Cu") (net 6) (tstamp c3799eaa-8855-4f2a-b302-7e8e6c1e9c5d))
(segment (start 148.55 111.91) (end 149.55 112.91) (width 0.2) (layer "F.Cu") (net 6) (tstamp fbd400b1-009b-41ac-ac94-ecbc2597ed36))
(via (at 142.38 113.8684) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 6) (tstamp 0e650b03-98e3-4007-9ade-1b4f7932732b))
(via (at 142.38 115.2908) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 6) (tstamp db0764dc-cc4d-4b37-8237-1f5559421cac))
(segment (start 146.2408 115.2908) (end 148.73 117.78) (width 0.2) (layer "B.Cu") (net 6) (tstamp 791a7267-24f0-47a9-a814-3d168684b87d))
(segment (start 142.38 113.8684) (end 142.38 115.2908) (width 0.2) (layer "B.Cu") (net 6) (tstamp c21a7fd0-0d2a-40f5-ae85-d6e507c42805))
(segment (start 142.38 115.2908) (end 146.2408 115.2908) (width 0.2) (layer "B.Cu") (net 6) (tstamp d41c2af6-91d1-4c37-abc9-e70598571f90))
(segment (start 132.5756 102.54) (end 130.6706 104.445) (width 0.2) (layer "F.Cu") (net 7) (tstamp 0c636f0c-f4a2-45f4-b5a0-c725d1414790))
(segment (start 128.156 104.445) (end 126.55 106.051) (width 0.2) (layer "F.Cu") (net 7) (tstamp 2a21bd8b-5f44-4447-bd0b-dab1edc3f2c9))
(segment (start 134.40875 102.54) (end 133.49 102.54) (width 0.2) (layer "F.Cu") (net 7) (tstamp 41e5bcc7-aea2-4090-9a92-a4c59c1bcd84))
(segment (start 136.03 104.5975) (end 136.03 104.16125) (width 0.2) (layer "F.Cu") (net 7) (tstamp 4e86d2e2-17d5-417b-abbc-a683f7e98995))
(segment (start 133.49 102.54) (end 132.5756 102.54) (width 0.2) (layer "F.Cu") (net 7) (tstamp 644d7a91-8008-426b-8078-5b834761f8f4))
(segment (start 126.55 106.66) (end 126.8 106.91) (width 0.2) (layer "F.Cu") (net 7) (tstamp 6dd5ce40-ee07-44b9-bf82-8f0d98ad6af2))
(segment (start 126.55 106.051) (end 126.55 106.66) (width 0.2) (layer "F.Cu") (net 7) (tstamp 7ff5df79-38cd-46dd-a5b4-2bd0a860f052))
(segment (start 126.8 106.91) (end 127.45 106.91) (width 0.2) (layer "F.Cu") (net 7) (tstamp da4b2f4b-e002-4599-821c-8f80fc0ad092))
(segment (start 130.6706 104.445) (end 128.156 104.445) (width 0.2) (layer "F.Cu") (net 7) (tstamp e5c69a58-2fb0-441c-a7ba-338d8d4ca8ef))
(segment (start 136.03 104.16125) (end 134.40875 102.54) (width 0.2) (layer "F.Cu") (net 7) (tstamp ef81a4d5-c1f2-4ea0-afbd-adcf530ed781))
(segment (start 148.3 112.41) (end 147.15 112.41) (width 0.2) (layer "F.Cu") (net 8) (tstamp 00a3dc1c-2566-4899-bac9-2cc1109b65fd))
(segment (start 140.1956 112.192) (end 140.3636 112.36) (width 0.2) (layer "F.Cu") (net 8) (tstamp 076f298e-9c92-435b-bfc3-270a60c8274d))
(segment (start 140.3636 112.36) (end 141.1 112.36) (width 0.2) (layer "F.Cu") (net 8) (tstamp 2da0f7f6-3d2e-4dcb-b152-14ef8ff2556f))
(segment (start 149.05 114.92) (end 149.05 113.16) (width 0.2) (layer "F.Cu") (net 8) (tstamp 5ac9393c-4649-4345-a903-ec88d03888ee))
(segment (start 146.19 117.78) (end 149.05 114.92) (width 0.2) (layer "F.Cu") (net 8) (tstamp c64f52eb-a713-4716-af15-284315735a4d))
(segment (start 149.05 113.16) (end 148.3 112.41) (width 0.2) (layer "F.Cu") (net 8) (tstamp e3054a8c-227e-4b21-b322-1338e837e563))
(segment (start 141.1 112.36) (end 141.15 112.41) (width 0.2) (layer "F.Cu") (net 8) (tstamp f4bc8a7e-b409-4ccd-a1b2-d6a70025b53e))
(via (at 141.11 115.2908) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 8) (tstamp 6f5eba75-6898-4c10-a8d7-dd6d3ae2413b))
(via (at 140.1956 112.192) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 8) (tstamp b71f2ab0-5a8d-4d59-a56d-3e8757ad45b3))
(segment (start 140.1956 112.192) (end 141.11 113.1064) (width 0.2) (layer "B.Cu") (net 8) (tstamp 3cfbe3c7-16ca-4212-b6a1-959410f27998))
(segment (start 141.11 113.1064) (end 141.11 115.2908) (width 0.2) (layer "B.Cu") (net 8) (tstamp 3d2c5d81-ee56-48e5-8340-487dfdb0e10f))
(segment (start 141.872 116.0528) (end 144.4628 116.0528) (width 0.2) (layer "B.Cu") (net 8) (tstamp 3e5ff0b5-8ace-4efb-addf-5bb867d1e97a))
(segment (start 141.11 115.2908) (end 141.872 116.0528) (width 0.2) (layer "B.Cu") (net 8) (tstamp 54c69c43-482a-40ae-ae87-ff3075f59d24))
(segment (start 144.4628 116.0528) (end 146.19 117.78) (width 0.2) (layer "B.Cu") (net 8) (tstamp b7b8e4f6-2c9e-480b-bb0e-4758fa3eb834))
(segment (start 135.3442 106.985) (end 137.3 105.0292) (width 0.2) (layer "F.Cu") (net 9) (tstamp 1720bb76-e202-4875-9d3e-d323eb63aa7f))
(segment (start 128.5208 106.41) (end 129.0958 106.985) (width 0.2) (layer "F.Cu") (net 9) (tstamp 1d8f5175-024a-42c6-8991-263634afd0ac))
(segment (start 137.3 104.5975) (end 137.0968 104.3943) (width 0.2) (layer "F.Cu") (net 9) (tstamp 21b88c40-1589-4f6a-bb3a-7861d3aa2a70))
(segment (start 129.0958 106.985) (end 135.3442 106.985) (width 0.2) (layer "F.Cu") (net 9) (tstamp 222c8460-f331-4567-a1ee-eb809bb05bcb))