-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVectorblade_PLCC32_THT_Kicad7.kicad_pcb
21629 lines (21602 loc) · 758 KB
/
Vectorblade_PLCC32_THT_Kicad7.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 "Gerber/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "+5V")
(net 3 "/V-A7")
(net 4 "/V-A6")
(net 5 "/V-A8")
(net 6 "/V-A5")
(net 7 "/V-A9")
(net 8 "/V-A4")
(net 9 "/V-A11")
(net 10 "/V-A3")
(net 11 "/V-A2")
(net 12 "/V-A10")
(net 13 "/V-A1")
(net 14 "/V-A0")
(net 15 "/V-D7")
(net 16 "/V-D0")
(net 17 "/V-D6")
(net 18 "/V-D1")
(net 19 "/V-D5")
(net 20 "/V-D2")
(net 21 "/V-D4")
(net 22 "/V-D3")
(net 23 "/V-A12")
(net 24 "/V-A13")
(net 25 "unconnected-(CON3-Pad32)")
(net 26 "/V-A14")
(net 27 "unconnected-(CON3-Pad34)")
(net 28 "unconnected-(CON3-Pad1)")
(net 29 "/V-RW")
(net 30 "/PB6")
(net 31 "/IRQ")
(net 32 "unconnected-(U1-Pad1)")
(net 33 "unconnected-(CON3-Pad12)")
(net 34 "/V-A15")
(net 35 "/~{CE}")
(net 36 "/~{OE}")
(footprint "" (layer "F.Cu")
(tstamp 137e9ffe-3d6e-4ff7-93fd-efb152c7ece1)
(at 150.876 94.488)
(fp_text reference "" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp f5098c15-8f4e-4efd-bd15-9b97655589aa)
)
(fp_text value "" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 9858276a-d879-409d-a964-fa68073133ba)
)
(pad "22" thru_hole circle (at 0 0 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 35 "/~{CE}") (pinfunction "CE") (pintype "input") (tstamp 410e11d0-0711-48f6-bb1c-f5bb200c16f9))
)
(footprint "Package_LCC:PLCC-32_THT-Socket" (layer "F.Cu")
(tstamp 2019195a-a6bd-4720-919c-ae4ec5f974a5)
(at 162.56 85.09 -90)
(descr "PLCC, 32 pins, through hole, http://www.assmann-wsw.com/fileadmin/datasheets/ASS_0981_CO.pdf")
(tags "plcc leaded")
(property "Sheetfile" "Vectorblade_PLCC32_THT.kicad_sch")
(property "Sheetname" "")
(path "/dfa90a84-ac26-470c-8e96-71eab9281db9")
(attr through_hole)
(fp_text reference "U1" (at -1.27 -6.858) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9925db3f-ae1d-4aee-aaf5-9f98d1b3c553)
)
(fp_text value "SST39SF020" (at -1.27 16.38 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 994f94ef-4b05-42e9-930e-47131bd5b30f)
)
(fp_text user "${REFERENCE}" (at -1.27 5.08 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a858bbba-5680-460b-8cd8-5310a8fcb057)
)
(fp_line (start -10.395 -4.32) (end -10.395 15.48)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 217f602a-4ed4-4d1b-93b8-3a2ace713a3c))
(fp_line (start -10.395 15.48) (end 7.855 15.48)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 85982295-c4ad-41e6-b556-827f17b180bf))
(fp_line (start -9.395 -5.32) (end -10.395 -4.32)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5ac26c4a-8674-4069-b4be-6d30a924a7d5))
(fp_line (start -2.27 -5.32) (end -9.395 -5.32)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f3d591a3-11db-44c3-bf73-810257f4a110))
(fp_line (start 7.855 -5.32) (end -0.27 -5.32)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8a134e96-7d81-4139-9b8d-f17666c85eb6))
(fp_line (start 7.855 15.48) (end 7.855 -5.32)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d996fd70-e817-481c-935e-dc8196200965))
(fp_line (start -10.8 -5.72) (end -10.8 15.88)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 49700434-ad93-4697-9f0a-e4f96a05237a))
(fp_line (start -10.8 15.88) (end 8.26 15.88)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8ed9e988-973e-4493-a8b0-166363f5fc31))
(fp_line (start 8.26 -5.72) (end -10.8 -5.72)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 94158b26-db70-4d4d-9cea-2a891b4d439f))
(fp_line (start 8.26 15.88) (end 8.26 -5.72)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp afd5a721-5abd-43c5-bdab-3154c57e3783))
(fp_line (start -10.295 -4.22) (end -10.295 15.38)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ec991945-bcc7-4d09-8512-700e67544bce))
(fp_line (start -10.295 15.38) (end 7.755 15.38)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c0676912-e746-4abe-85ce-aaea09435944))
(fp_line (start -9.295 -5.22) (end -10.295 -4.22)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 17465381-32ec-4676-b118-f74a2c620000))
(fp_line (start -7.755 -2.68) (end -7.755 12.84)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b7205371-0e67-44f0-8dc1-fe382babde7a))
(fp_line (start -7.755 12.84) (end 5.215 12.84)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9f1a63df-b549-471f-a541-df11e4d828ad))
(fp_line (start -1.77 -5.22) (end -1.27 -4.22)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 10961607-e240-4903-9152-a5ef35d39318))
(fp_line (start -1.27 -4.22) (end -0.77 -5.22)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb7a887f-5eee-4734-b61f-3ce04132267a))
(fp_line (start 5.215 -2.68) (end -7.755 -2.68)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb28006a-5d2b-4ff8-b07b-c16fe96ed0f8))
(fp_line (start 5.215 12.84) (end 5.215 -2.68)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 22f9ff04-b3c9-4555-9a92-e97a78a0d1ea))
(fp_line (start 7.755 -5.22) (end -9.295 -5.22)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 853ab370-fd89-48ae-9dd2-0f90c9fa4454))
(fp_line (start 7.755 15.38) (end 7.755 -5.22)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fd333b35-351a-40a3-b2fb-14ce0adcc392))
(pad "" np_thru_hole circle (at -1.27 5.08 270) (size 3 3) (drill 3) (layers "F&B.Cu" "*.Mask") (tstamp b7342885-3e92-4c32-ad1d-51f1d28d004b))
(pad "1" thru_hole rect (at 0 0 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 32 "unconnected-(U1-Pad1)") (pinfunction "NC") (pintype "input+no_connect") (tstamp ab5f17e1-cd52-4ba0-a2ad-5efb87ed252d))
(pad "2" thru_hole circle (at -2.54 -2.54 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 30 "/PB6") (pinfunction "A16") (pintype "input") (tstamp ec012028-4c02-4a65-9514-7609e39e2559))
(pad "3" thru_hole circle (at -2.54 0 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 34 "/V-A15") (pinfunction "A15") (pintype "input") (tstamp 9f74c9e1-610a-444f-8f4b-7b3da9b08799))
(pad "4" thru_hole circle (at -5.08 -2.54 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 23 "/V-A12") (pinfunction "A12") (pintype "input") (tstamp 5917338f-d305-4c01-aad7-9b709ce33eac))
(pad "5" thru_hole circle (at -7.62 0 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 3 "/V-A7") (pinfunction "A7") (pintype "input") (tstamp 316100d6-5906-41e3-adce-6224fc8189fa))
(pad "6" thru_hole circle (at -5.08 0 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 4 "/V-A6") (pinfunction "A6") (pintype "input") (tstamp 80c15d89-dd0f-4921-a49e-e7f644cb5366))
(pad "7" thru_hole circle (at -7.62 2.54 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 6 "/V-A5") (pinfunction "A5") (pintype "input") (tstamp f0e507e3-5abf-40de-a407-85953bf7d236))
(pad "8" thru_hole circle (at -5.08 2.54 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 8 "/V-A4") (pinfunction "A4") (pintype "input") (tstamp 4a10a346-c180-4701-bef7-9213a37beab2))
(pad "9" thru_hole circle (at -7.62 5.08 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 10 "/V-A3") (pinfunction "A3") (pintype "input") (tstamp 03bf9d88-1dfb-47d3-acd6-6306c6b8bee1))
(pad "10" thru_hole circle (at -5.08 5.08 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 11 "/V-A2") (pinfunction "A2") (pintype "input") (tstamp 7f70bf20-04d2-4d8c-891c-1c32e967b964))
(pad "11" thru_hole circle (at -7.62 7.62 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 13 "/V-A1") (pinfunction "A1") (pintype "input") (tstamp 81335de3-1e45-41cd-97e4-2c576a39a2f6))
(pad "12" thru_hole circle (at -5.08 7.62 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 14 "/V-A0") (pinfunction "A0") (pintype "input") (tstamp f2c2f188-73bf-4820-855f-e05a6a53a056))
(pad "13" thru_hole circle (at -7.62 10.16 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 16 "/V-D0") (pinfunction "D0") (pintype "tri_state") (tstamp 9669a001-a1d3-4aeb-9a3d-36e68150dc4e))
(pad "14" thru_hole circle (at -5.08 12.7 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 18 "/V-D1") (pinfunction "D1") (pintype "tri_state") (tstamp 2d1d05db-5a3f-43fc-b5f5-d51ce29b7aa9))
(pad "15" thru_hole circle (at -5.08 10.16 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 20 "/V-D2") (pinfunction "D2") (pintype "tri_state") (tstamp 67248c55-50cf-4321-a69e-1e41d2449108))
(pad "16" thru_hole circle (at -2.54 12.7 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 18476b8e-76aa-4881-b100-23f46f58aec3))
(pad "17" thru_hole circle (at -2.54 10.16 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 22 "/V-D3") (pinfunction "D3") (pintype "tri_state") (tstamp 27e91552-173b-4677-ad48-cdfe66ca3101))
(pad "18" thru_hole circle (at 0 12.7 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 21 "/V-D4") (pinfunction "D4") (pintype "tri_state") (tstamp 4efcaa7f-088f-4494-804c-789faa9f5ecd))
(pad "19" thru_hole circle (at 0 10.16 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 19 "/V-D5") (pinfunction "D5") (pintype "tri_state") (tstamp 77c3cf2a-9367-43e0-a5db-30d10d7aab32))
(pad "20" thru_hole circle (at 2.54 12.7 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 17 "/V-D6") (pinfunction "D6") (pintype "tri_state") (tstamp 64f5bffc-421e-4a22-a2d2-beb46aa087f3))
(pad "21" thru_hole circle (at 5.08 10.16 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 15 "/V-D7") (pinfunction "D7") (pintype "tri_state") (tstamp 9a304afc-7ef3-4a28-8f24-ec1ac94beb92))
(pad "22" thru_hole circle (at 2.54 10.16 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 35 "/~{CE}") (pinfunction "CE") (pintype "input") (tstamp 99851b7d-93dd-400b-a9cd-92c592e8de82))
(pad "23" thru_hole circle (at 5.08 7.62 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 12 "/V-A10") (pinfunction "A10") (pintype "input") (tstamp 770d4cba-0e9e-405b-8dd3-76c872c54f9d))
(pad "24" thru_hole circle (at 2.54 7.62 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 36 "/~{OE}") (pinfunction "OE") (pintype "input") (tstamp ec0897a5-ceed-4e2a-b6c0-f8e8ac6c5ae1))
(pad "25" thru_hole circle (at 5.08 5.08 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 9 "/V-A11") (pinfunction "A11") (pintype "input") (tstamp 146fec38-da5a-4222-955c-fb345c7fd6e1))
(pad "26" thru_hole circle (at 2.54 5.08 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 7 "/V-A9") (pinfunction "A9") (pintype "input") (tstamp 60762306-fd2c-4854-b435-7bbb8d915bed))
(pad "27" thru_hole circle (at 5.08 2.54 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 5 "/V-A8") (pinfunction "A8") (pintype "input") (tstamp a869373d-f858-4fe2-8a81-eb0dc2bdd86c))
(pad "28" thru_hole circle (at 2.54 2.54 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 24 "/V-A13") (pinfunction "A13") (pintype "input") (tstamp b950c2aa-5ebe-40cb-bc55-802a7f7511c1))
(pad "29" thru_hole circle (at 5.08 0 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 26 "/V-A14") (pinfunction "A14") (pintype "input") (tstamp d1255155-8b7b-4526-881d-947e690c043f))
(pad "30" thru_hole circle (at 2.54 -2.54 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 31 "/IRQ") (pinfunction "A17") (pintype "input") (tstamp 025f7ecb-2ef6-4f57-91cf-9194c356800d))
(pad "31" thru_hole circle (at 2.54 0 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 29 "/V-RW") (pinfunction "PGM") (pintype "input") (tstamp a0a0004f-a1a9-4a16-bac0-684a1b85decd))
(pad "32" thru_hole circle (at 0 -2.54 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 2 "+5V") (pinfunction "VCC") (pintype "power_in") (tstamp 87307358-e466-4c52-a4e9-f89908739365))
(model "${KICAD6_3DMODEL_DIR}/Package_LCC.3dshapes/PLCC-32_THT-Socket.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 0.3))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/vectorblade.3D/MC-32PLCC-THT.stl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/vectorblade.3D/MC-32PLCC-THT.wrl"
(offset (xyz -1.3 -5.1 0.5))
(scale (xyz 0.395 0.395 0.395))
(rotate (xyz 0 0 90))
)
)
(footprint "vectrex:EDGE-CONNECTOR" locked (layer "F.Cu")
(tstamp 455deea0-b1f2-479d-b877-9bb860b0173e)
(at 153.67 114.3 180)
(property "Sheetfile" "Vectorblade_PLCC32_THT.kicad_sch")
(property "Sheetname" "")
(path "/f284b1e2-75a4-4a3f-a5f4-6f05f15fb4f5")
(fp_text reference "CON3" (at 0 0 180) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 5ffb9a59-ac39-407d-a679-385000d82622)
)
(fp_text value "EDGE-CONNECTOR" (at 0 0 180) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp ec7b6c3e-5f92-4016-aceb-24454f7f8a69)
)
(pad "1" smd roundrect locked (at -25.4 0) (size 1.778 8.89) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.375)
(net 28 "unconnected-(CON3-Pad1)") (pinfunction "HALT") (pintype "bidirectional+no_connect") (solder_mask_margin 0.0508) (tstamp d87458e7-1804-4439-aba6-b46fe13b6112))
(pad "2" smd roundrect locked (at -25.4 0) (size 1.778 8.89) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.375)
(net 2 "+5V") (pinfunction "VCC") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp 845a45ed-ddeb-42b2-8029-1fa18d7bb827))
(pad "3" smd roundrect locked (at -22.86 0) (size 1.778 8.89) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.375)
(net 3 "/V-A7") (pinfunction "A7") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp 801cfbc3-1cc6-4e3d-90ec-1be1f5902e28))
(pad "4" smd roundrect locked (at -22.86 0) (size 1.778 8.89) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.375)
(net 2 "+5V") (pinfunction "VCC2") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp 18b40e88-3fb6-4ca8-8bc9-80574537ebf2))
(pad "5" smd roundrect locked (at -20.32 0) (size 1.778 8.89) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.375)
(net 4 "/V-A6") (pinfunction "A6") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp b00a0d3a-7804-435c-b6ac-4b8b470aa559))
(pad "6" smd roundrect locked (at -20.32 0) (size 1.778 8.89) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.375)
(net 5 "/V-A8") (pinfunction "A8") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp cfc73810-5456-4cb1-ab54-c51f8bebd8e7))
(pad "7" smd roundrect locked (at -17.78 0) (size 1.778 8.89) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.375)
(net 6 "/V-A5") (pinfunction "A5") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp 6f88666d-2422-46b6-b63d-c76f28255ed5))
(pad "8" smd roundrect locked (at -17.78 0) (size 1.778 8.89) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.375)
(net 7 "/V-A9") (pinfunction "A9") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp eff11351-7b01-43e7-bbfb-768c9458da53))
(pad "9" smd roundrect locked (at -15.24 0) (size 1.778 8.89) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.375)
(net 8 "/V-A4") (pinfunction "A4") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp 0f0ccfbb-5087-4cbf-b194-915c1eeb75f0))
(pad "10" smd roundrect locked (at -15.24 0) (size 1.778 8.89) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.375)
(net 9 "/V-A11") (pinfunction "A11") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp b8abb1d0-4499-486f-bd6c-b65252c0c8a4))
(pad "11" smd roundrect locked (at -12.7 0) (size 1.778 8.89) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.375)
(net 10 "/V-A3") (pinfunction "A3") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp da83f9e9-5350-4558-99d6-b762006299f7))
(pad "12" smd roundrect locked (at -12.7 0) (size 1.778 8.89) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.375)
(net 33 "unconnected-(CON3-Pad12)") (pinfunction "OE") (pintype "bidirectional+no_connect") (solder_mask_margin 0.0508) (tstamp 058ebceb-e182-43f8-a9ae-de8c285e4ca8))
(pad "13" smd roundrect locked (at -10.16 0) (size 1.778 8.89) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.375)
(net 11 "/V-A2") (pinfunction "A2") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp ba2bb4d5-a364-4786-afd5-574a1c70b5f2))
(pad "14" smd roundrect locked (at -10.16 0) (size 1.778 8.89) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.375)
(net 12 "/V-A10") (pinfunction "A10") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp 5e5e6cb2-e180-45c5-9312-6613e3fa7763))
(pad "15" smd roundrect locked (at -7.62 0) (size 1.778 8.89) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.375)
(net 13 "/V-A1") (pinfunction "A1") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp 64361641-7118-4d37-a459-213bc820ebb9))
(pad "16" smd roundrect locked (at -7.62 0) (size 1.778 8.89) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.375)
(net 34 "/V-A15") (pinfunction "CE") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp 69c7e1c1-713e-4782-b547-3e609d7dcea3))
(pad "17" smd roundrect locked (at -5.08 0) (size 1.778 8.89) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.375)
(net 14 "/V-A0") (pinfunction "A0") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp 94e01c8a-cbdc-4869-93dc-2bffc828f729))
(pad "18" smd roundrect locked (at -5.08 0) (size 1.778 8.89) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.375)
(net 15 "/V-D7") (pinfunction "D7") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp 3c131f89-4a3d-47cc-8c9d-e97c00acd958))
(pad "19" smd roundrect locked (at -2.54 0) (size 1.778 8.89) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.375)
(net 16 "/V-D0") (pinfunction "D0") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp ca9d5426-27da-41d4-a526-85c34e962786))
(pad "20" smd roundrect locked (at -2.54 0) (size 1.778 8.89) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.375)
(net 17 "/V-D6") (pinfunction "D6") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp fbd87a50-e94a-4eec-8f60-8548860c5728))
(pad "21" smd roundrect locked (at 0 0) (size 1.778 8.89) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.375)
(net 18 "/V-D1") (pinfunction "D1") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp f1c7daf4-39ac-4c36-a25a-c3fff286842a))
(pad "22" smd roundrect locked (at 0 0) (size 1.778 8.89) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.375)
(net 19 "/V-D5") (pinfunction "D5") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp d64a0ddf-c857-4702-8343-2f4af048977b))
(pad "23" smd roundrect locked (at 2.54 0) (size 1.778 8.89) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.375)
(net 20 "/V-D2") (pinfunction "D2") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp 4ab74588-936d-4d7f-98ef-d76b086f1c03))
(pad "24" smd roundrect locked (at 2.54 0) (size 1.778 8.89) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.375)
(net 21 "/V-D4") (pinfunction "D4") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp fd07fa4a-3992-48e9-b1f3-244ab731dc4c))
(pad "25" smd roundrect locked (at 5.08 0) (size 1.778 8.89) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.375)
(net 1 "GND") (pinfunction "GND") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp 6707d017-1412-4025-8fb3-1a7c86a5db62))
(pad "26" smd roundrect locked (at 5.08 0) (size 1.778 8.89) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.375)
(net 22 "/V-D3") (pinfunction "D3") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp 15e80535-0f81-46e9-b349-f1ac76f50a4e))
(pad "27" smd roundrect locked (at 7.62 0) (size 1.778 8.89) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.375)
(net 1 "GND") (pinfunction "GND1") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp 70e26a7a-5d5f-434a-88a1-87143fe53ac9))
(pad "28" smd roundrect locked (at 7.62 0) (size 1.778 8.89) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.375)
(net 1 "GND") (pinfunction "GND2") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp 2a2c1dc7-ee6c-4ba7-abdc-7a952604c17f))
(pad "29" smd roundrect locked (at 10.16 0) (size 1.778 8.89) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.375)
(net 23 "/V-A12") (pinfunction "A12") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp 5cc35a95-f568-40a9-85d5-e099dd07704e))
(pad "30" smd roundrect locked (at 10.16 0) (size 1.778 8.89) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.375)
(net 29 "/V-RW") (pinfunction "RW") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp 854c19b5-b80c-4498-b3f2-63c4fac72be1))
(pad "31" smd roundrect locked (at 12.7 0) (size 1.778 8.89) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.375)
(net 24 "/V-A13") (pinfunction "A13") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp f35e35c9-6c40-442a-a9fe-338cbea8661e))
(pad "32" smd roundrect locked (at 12.7 0) (size 1.778 8.89) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.375)
(net 25 "unconnected-(CON3-Pad32)") (pinfunction "CART") (pintype "bidirectional+no_connect") (solder_mask_margin 0.0508) (tstamp 50d1199c-d277-4dab-b9b1-f95f97d77d8e))
(pad "33" smd roundrect locked (at 15.24 0) (size 1.778 8.89) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.375)
(net 26 "/V-A14") (pinfunction "A14") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp 640ec1a9-0e49-48dc-b671-0bfcff23cf6d))
(pad "34" smd roundrect locked (at 15.24 0) (size 1.778 8.89) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.375)
(net 27 "unconnected-(CON3-Pad34)") (pinfunction "NMI") (pintype "bidirectional+no_connect") (solder_mask_margin 0.0508) (tstamp 286d8ab0-f8e1-4185-ad3d-9dbb1403598f))
(pad "35" smd roundrect locked (at 17.78 0) (size 1.778 8.89) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.375)
(net 30 "/PB6") (pinfunction "PB6") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp 3e540658-184b-4373-bcda-2c84383debdb))
(pad "36" smd roundrect locked (at 17.78 0) (size 1.778 8.89) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.375)
(net 31 "/IRQ") (pinfunction "IRQ") (pintype "bidirectional") (solder_mask_margin 0.0508) (tstamp 3a4f5dcf-5e0f-4f39-aa8e-a3c5260f6a6e))
)
(footprint "" locked (layer "F.Cu")
(tstamp 4d609e7c-74c9-4ae9-a26d-946ff00c167d)
(at 177.398 100.8256 -90)
(fp_text reference "@HOLE1" (at 0 0 90) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 9a9f2d82-f64d-4264-8bec-c182528fc4de)
)
(fp_text value "" (at 0 0 90) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp b60c50d1-225e-415c-8712-7acb5e3dc8ea)
)
(pad "" np_thru_hole circle locked (at 0 0 270) (size 4 4) (drill 4) (layers "*.Cu" "*.Mask") (tstamp 7e08f2a4-63d6-468b-bd8b-ec607077e023))
)
(footprint "" (layer "F.Cu")
(tstamp 54328e85-e880-46b6-b9c7-1bcda34c9522)
(at 177.292 96.012)
(fp_text reference "" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp c5e1bdcf-a3e5-405e-9c3c-af5406890c86)
)
(fp_text value "" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 54868753-798f-46ca-8bdc-29d1c3b3d7cb)
)
(pad "22" thru_hole circle (at 0 0 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 36 "/~{OE}") (pinfunction "CE") (pintype "input") (tstamp 5d39690b-ba56-4cbe-b46a-2bd7dc925f4a))
)
(footprint "" locked (layer "F.Cu")
(tstamp 909b030b-fa1a-4fe8-b1ee-422b4d9e23cf)
(at 157.498 100.7256 -90)
(fp_text reference "@HOLE0" (at 0 0 90) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp ebadd2a5-21ab-4a7e-b5bc-6f737367e560)
)
(fp_text value "" (at 0 0 90) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 4dc6088c-89a5-4db7-b3ae-db4b6396ad49)
)
(pad "" np_thru_hole circle locked (at 0 0 270) (size 5 5) (drill 5) (layers "*.Cu" "*.Mask") (tstamp 0c30a4be-5679-499f-8c5b-5f3024f9d6cf))
)
(footprint "Package_TO_SOT_SMD:SOT-23-5" (layer "F.Cu")
(tstamp 95618f9e-ebea-4e8c-a5a0-73adcd13801d)
(at 177.546 91.186 90)
(descr "SOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Sheetfile" "Vectorblade_PLCC32_THT.kicad_sch")
(property "Sheetname" "")
(path "/4566eb64-138d-4ddd-a319-dfa0cb524e1a")
(attr smd)
(fp_text reference "U3" (at 2.794 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 632dccb5-0466-4e6e-9622-e3381fbf5a13)
)
(fp_text value "74AHC1G04" (at 0 2.4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a7052052-160c-408e-8c2f-ac7ef6338f12)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 4b1d7a80-fb0d-405e-aa0e-ad30afb0b2dc)
)
(fp_line (start 0 -1.56) (end -1.8 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 46cc891f-6ad9-42d2-9496-475436cf0c3c))
(fp_line (start 0 -1.56) (end 0.8 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8ec4644f-180a-41a7-a4a5-b84db2315a39))
(fp_line (start 0 1.56) (end -0.8 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 64dde5bc-dad6-4100-8fec-a67f52df386f))
(fp_line (start 0 1.56) (end 0.8 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d18af8e8-e3cd-4aad-b3c2-260d18b0e7f4))
(fp_line (start -2.05 -1.7) (end -2.05 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7c74affa-f590-4b5f-9db9-902ec892ac44))
(fp_line (start -2.05 1.7) (end 2.05 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 10516e8c-24e7-4d53-932a-4719cd9a44d6))
(fp_line (start 2.05 -1.7) (end -2.05 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3120b1ff-3faf-4c79-8662-c933647488b6))
(fp_line (start 2.05 1.7) (end 2.05 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c26f6d2f-39ee-4e50-a53f-b59d5e28fc74))
(fp_line (start -0.8 -1.05) (end -0.4 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 689e3627-7626-42ca-b0d7-a44401c5ffbf))
(fp_line (start -0.8 1.45) (end -0.8 -1.05)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0bc18b02-60d6-4972-ae2b-98ae66e4347c))
(fp_line (start -0.4 -1.45) (end 0.8 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f7559942-8f91-4a1c-ac88-600c5c782f7c))
(fp_line (start 0.8 -1.45) (end 0.8 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c4f90048-d5b8-464f-8ccb-5710a79a6e00))
(fp_line (start 0.8 1.45) (end -0.8 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ae2a0357-177a-4f13-91cd-0814de8714fc))
(pad "1" smd roundrect (at -1.1375 -0.95 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp ea087a95-52b1-4de6-a250-fe83517e4ca9))
(pad "2" smd roundrect (at -1.1375 0 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "/V-RW") (pintype "input") (tstamp a36740ce-3bff-4c00-8892-d2a97b6b49ab))
(pad "3" smd roundrect (at -1.1375 0.95 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 7363df16-2f1b-4528-a9f1-b9a869a1b833))
(pad "4" smd roundrect (at 1.1375 0.95 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 36 "/~{OE}") (pintype "output") (tstamp 7f0da71a-9c57-464d-a053-9d9afcec5163))
(pad "5" smd roundrect (at 1.1375 -0.95 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+5V") (pinfunction "VCC") (pintype "power_in") (tstamp 829fbc36-49ca-4334-9691-d73bc3145345))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "" locked (layer "F.Cu")
(tstamp b6bcc3cf-50de-4a33-bc41-678825c1ecf2)
(at 137.598 101.0256 -90)
(fp_text reference "@HOLE2" (at 0 0 90) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp c3c93de0-69b1-4a04-8e0b-d78caf487c63)
)
(fp_text value "" (at 0 0 90) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp f9865a9f-edb8-49c7-828f-4896e1f3047a)
)
(pad "" np_thru_hole circle locked (at 0 0 270) (size 4 4) (drill 4) (layers "*.Cu" "*.Mask") (tstamp 55992e35-fe7b-468a-9b7a-1e4dc931b904))
)
(footprint "Capacitor_SMD:C_1206_3216Metric" (layer "F.Cu")
(tstamp ea1b63d8-9834-45df-9adc-67d84a7c9be7)
(at 174.498 85.09)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "Vectorblade_PLCC32_THT.kicad_sch")
(property "Sheetname" "")
(path "/cf06bbbc-3fa0-42b7-9a99-642ec3689891")
(attr smd)
(fp_text reference "C1" (at 0 -1.85) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 08b00fe4-adf3-4fb7-ab77-e7c75bfddc2b)
)
(fp_text value "100n" (at 0 1.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 06cf878c-9dd5-4014-9e3b-2f3b1d3105cf)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp bb5bdcaa-2d49-4811-90f5-bb39cb6aa2f2)
)
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8b16d9e3-726c-475b-9e43-27d699f7990e))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c74110f1-bcd1-417e-bf04-7d0f857c223f))
(fp_line (start -2.3 -1.15) (end 2.3 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3fb0d7f9-c0e4-4adb-9e28-c452dbad3a4b))
(fp_line (start -2.3 1.15) (end -2.3 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 53dbb01e-285a-4997-a530-8e12539a977c))
(fp_line (start 2.3 -1.15) (end 2.3 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 32c306b7-19bc-4456-9558-bc356358313b))
(fp_line (start 2.3 1.15) (end -2.3 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 497b4dd1-8e25-43e0-85dc-f79be39ee53e))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b707276b-8d05-483a-b363-51895337ddc5))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 459a892e-7b0a-41e1-867f-9a40ea6bb53e))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2145fa63-5b62-4099-9d61-e6a47ca0b2ee))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7e27a1cd-2397-4f8d-90c0-21eb403e0c19))
(pad "1" smd roundrect (at -1.475 0) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 2 "+5V") (pinfunction "1") (pintype "passive") (tstamp 5b610401-527d-49be-8cb2-30d3719462ef))
(pad "2" smd roundrect (at 1.475 0) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 1 "GND") (pinfunction "2") (pintype "passive") (tstamp ff5bc952-5984-4dfe-a241-ba7e8588956a))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "" (layer "F.Cu")
(tstamp ef0840e8-3a36-41e9-9190-53ae98b9840c)
(at 154.94 96.012)
(fp_text reference "" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 7829f607-0877-4a29-bf7e-c3a5281f996f)
)
(fp_text value "" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 6ea78b55-48cc-4f2d-baaa-7ba97189ecc6)
)
(pad "24" thru_hole circle (at 0 0 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 36 "/~{OE}") (pinfunction "OE") (pintype "input") (tstamp c58f2f2d-c9e6-43e7-b7e4-3563b49dcb1f))
)
(footprint "" (layer "F.Cu")
(tstamp f07ccac9-9b11-46c1-b36c-b4adaa1b38f9)
(at 172.72 94.488)
(fp_text reference "" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 4b849a01-e518-4717-a0d7-771e10fb68eb)
)
(fp_text value "" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 6cf6e4c9-7174-4fff-9c05-f3c230a19bd1)
)
(pad "24" thru_hole circle (at 0 0 270) (size 1.4224 1.4224) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 35 "/~{CE}") (pinfunction "OE") (pintype "input") (tstamp 138f2b91-ddec-4bf3-b4f8-90822645a700))
)
(footprint "Package_TO_SOT_SMD:SOT-23-5" (layer "F.Cu")
(tstamp ff398618-2553-462b-b2ef-970e8a8d7984)
(at 172.466 91.186 -90)
(descr "SOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Sheetfile" "Vectorblade_PLCC32_THT.kicad_sch")
(property "Sheetname" "")
(path "/0535d0a8-1adf-43ae-8a06-e009ac07d15b")
(attr smd)
(fp_text reference "U2" (at -2.794 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 07d30a9e-ee1b-4036-9de8-ae970fd738ba)
)
(fp_text value "74AHC1G08" (at 0 2.4 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 84e3ae7d-3c43-4bc8-a05a-4270f145e2ee)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp f8234ade-288a-40ae-b265-c789fb43b1e7)
)
(fp_line (start 0 -1.56) (end -1.8 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3b7bedac-5109-42c0-9016-139d0569671f))
(fp_line (start 0 -1.56) (end 0.8 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2c6dc4dc-0e92-417e-8929-617a033c629c))
(fp_line (start 0 1.56) (end -0.8 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ac9c6f36-258d-4fac-afed-2221a48c6382))
(fp_line (start 0 1.56) (end 0.8 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 600d9bc4-e718-49e2-a9b3-c73313b0f231))
(fp_line (start -2.05 -1.7) (end -2.05 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0a8040ab-18bc-45e0-b57b-8cfa8d52da81))
(fp_line (start -2.05 1.7) (end 2.05 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 391337d2-ec7f-4108-9624-d342b36f4198))
(fp_line (start 2.05 -1.7) (end -2.05 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d81c8ef-d6f5-410e-99c9-ed4999f83a32))
(fp_line (start 2.05 1.7) (end 2.05 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 247d6035-5023-4797-a71a-9b32190b3482))
(fp_line (start -0.8 -1.05) (end -0.4 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c6e4f7a5-64fb-4308-8529-c4a97a1f78a9))
(fp_line (start -0.8 1.45) (end -0.8 -1.05)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1b2d885d-ca92-41c9-a053-ec148db5d60f))
(fp_line (start -0.4 -1.45) (end 0.8 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b7815188-6b0a-457e-b479-0febbc1e27e0))
(fp_line (start 0.8 -1.45) (end 0.8 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 228876c4-dcaf-41c7-af12-a707f72682f7))
(fp_line (start 0.8 1.45) (end -0.8 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 64ac74f5-bf5e-430f-b11c-8d3dc8495de1))
(pad "1" smd roundrect (at -1.1375 -0.95 270) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "/V-A14") (pintype "input") (tstamp 9edc6f61-04d5-408d-b1b1-50c19489542d))
(pad "2" smd roundrect (at -1.1375 0 270) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "/V-A15") (pintype "input") (tstamp b266742e-dc4e-4e59-b31c-344f161709b5))
(pad "3" smd roundrect (at -1.1375 0.95 270) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp b0331c6e-1ae0-4bfb-a59f-1a150e346ecf))
(pad "4" smd roundrect (at 1.1375 0.95 270) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "/~{CE}") (pintype "output") (tstamp 921e67b6-0e91-4ec1-928b-81c92ab280f8))
(pad "5" smd roundrect (at 1.1375 -0.95 270) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+5V") (pinfunction "VCC") (pintype "power_in") (tstamp da1dd2f9-6cf9-4899-b0be-4e1358fcd073))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_circle (center 157.48 83.82) (end 159.766 83.82)
(stroke (width 1) (type solid)) (fill none) (layer "B.SilkS") (tstamp 69b850ae-1dac-424e-a6f7-0ff64a7c434b))
(gr_poly
(pts
(xy 136.057929 81.964071)
(xy 136.07043 81.336215)
(xy 136.07998 81.108061)
(xy 136.091266 80.978762)
(xy 136.127498 80.773442)
(xy 136.16072 80.592371)
(xy 136.191626 80.432253)
(xy 136.220912 80.289788)
(xy 136.249272 80.161676)
(xy 136.277401 80.044618)
(xy 136.305992 79.935317)
(xy 136.335741 79.830471)
(xy 136.37082 79.719303)
(xy 136.409863 79.604169)
(xy 136.450816 79.490367)
(xy 136.491625 79.383193)
(xy 136.530234 79.287941)
(xy 136.564589 79.209908)
(xy 136.57953 79.179003)
(xy 136.592636 79.154389)
(xy 136.603651 79.136727)
(xy 136.612319 79.126681)
(xy 136.613877 79.12478)
(xy 136.615753 79.121896)
(xy 136.620345 79.113407)
(xy 136.625862 79.101677)
(xy 136.632074 79.087169)
(xy 136.63875 79.070345)
(xy 136.645656 79.05167)
(xy 136.652563 79.031605)
(xy 136.659238 79.010615)
(xy 136.663111 78.999834)
(xy 136.667298 78.988844)
(xy 136.671767 78.977723)
(xy 136.676486 78.966551)
(xy 136.681422 78.955409)
(xy 136.686542 78.944375)
(xy 136.691814 78.933529)
(xy 136.697206 78.92295)
(xy 136.702685 78.912719)
(xy 136.708217 78.902915)
(xy 136.713772 78.893617)
(xy 136.719315 78.884905)
(xy 136.724816 78.876859)
(xy 136.73024 78.869557)
(xy 136.735555 78.863081)
(xy 136.74073 78.857509)
(xy 136.745299 78.852337)
(xy 136.74973 78.847034)
(xy 136.754002 78.841644)
(xy 136.758093 78.836211)
(xy 136.761982 78.830778)
(xy 136.765646 78.825388)
(xy 136.769065 78.820085)
(xy 136.772215 78.814912)
(xy 136.775077 78.809913)
(xy 136.777627 78.805131)
(xy 136.779845 78.800609)
(xy 136.781708 78.796392)
(xy 136.783194 78.792521)
(xy 136.784283 78.789041)
(xy 136.784952 78.785995)
(xy 136.785123 78.784649)
(xy 136.78518 78.783427)
(xy 136.785608 78.780546)
(xy 136.786864 78.776583)
(xy 136.788908 78.771614)
(xy 136.791701 78.765716)
(xy 136.799375 78.751435)
(xy 136.809566 78.734346)
(xy 136.821957 78.715058)
(xy 136.836228 78.694179)
(xy 136.852063 78.672316)
(xy 136.869141 78.650077)
(xy 136.887107 78.626121)
(xy 136.90545 78.601036)
(xy 136.923619 78.575545)
(xy 136.941064 78.550373)
(xy 136.957236 78.526243)
(xy 136.971585 78.503878)
(xy 136.98356 78.484001)
(xy 136.988487 78.475223)
(xy 136.992613 78.467337)
(xy 137.003414 78.449017)
(xy 137.016165 78.429466)
(xy 137.030558 78.409019)
(xy 137.046285 78.388007)
(xy 137.06304 78.366763)
(xy 137.080515 78.345621)
(xy 137.098402 78.324913)
(xy 137.116394 78.304972)
(xy 137.134184 78.28613)
(xy 137.151463 78.268721)
(xy 137.167925 78.253077)
(xy 137.183262 78.239531)
(xy 137.197167 78.228417)
(xy 137.209331 78.220065)
(xy 137.214665 78.21703)
(xy 137.219448 78.21481)
(xy 137.223643 78.213448)
(xy 137.227211 78.212985)
(xy 137.228592 78.212942)
(xy 137.229957 78.212814)
(xy 137.231305 78.212604)
(xy 137.232632 78.212314)
(xy 137.233937 78.211947)
(xy 137.23522 78.211504)
(xy 137.236476 78.210987)
(xy 137.237706 78.2104)
(xy 137.238907 78.209744)
(xy 137.240076 78.209021)
(xy 137.241214 78.208234)
(xy 137.242317 78.207385)
(xy 137.243384 78.206477)
(xy 137.244412 78.205511)
(xy 137.245402 78.20449)
(xy 137.246349 78.203416)
(xy 137.247253 78.202291)
(xy 137.248112 78.201118)
(xy 137.248924 78.199899)
(xy 137.249687 78.198636)
(xy 137.250399 78.197332)
(xy 137.251059 78.195988)
(xy 137.251664 78.194607)
(xy 137.252214 78.193191)
(xy 137.252706 78.191743)
(xy 137.253138 78.190264)
(xy 137.253508 78.188758)
(xy 137.253815 78.187226)
(xy 137.254057 78.18567)
(xy 137.254232 78.184093)
(xy 137.254339 78.182497)
(xy 137.254375 78.180884)
(xy 137.254525 78.178917)
(xy 137.254973 78.176726)
(xy 137.256728 78.171705)
(xy 137.259584 78.16588)
(xy 137.263481 78.159313)
(xy 137.268362 78.152067)
(xy 137.274169 78.144202)
(xy 137.280844 78.135781)
(xy 137.28833 78.126863)
(xy 137.296567 78.117512)
(xy 137.3055 78.107788)
(xy 137.315069 78.097753)
(xy 137.325217 78.087468)
(xy 137.347017 78.066397)
(xy 137.370438 78.045064)
(xy 137.396136 78.023881)
(xy 137.42276 78.00154)
(xy 137.476007 77.956163)
(xy 137.524624 77.91449)
(xy 137.563055 77.882079)
(xy 137.570541 77.87566)
(xy 137.578142 77.869394)
(xy 137.585801 77.863316)
(xy 137.59346 77.857462)
(xy 137.601062 77.851869)
(xy 137.608547 77.846572)
(xy 137.615859 77.841608)
(xy 137.622939 77.837012)
(xy 137.62973 77.832822)
(xy 137.636174 77.829073)
(xy 137.642213 77.825802)
(xy 137.647788 77.823045)
(xy 137.652843 77.820837)
(xy 137.657319 77.819215)
(xy 137.661158 77.818215)
(xy 137.662821 77.81796)
(xy 137.664303 77.817874)
(xy 137.665727 77.817824)
(xy 137.66722 77.817675)
(xy 137.670394 77.817093)
(xy 137.673792 77.816149)
(xy 137.677383 77.814864)
(xy 137.681132 77.813262)
(xy 137.685008 77.811363)
(xy 137.688978 77.809189)
(xy 137.693009 77.806761)
(xy 137.69707 77.804103)
(xy 137.701127 77.801234)
(xy 137.705148 77.798177)
(xy 137.7091 77.794954)
(xy 137.71295 77.791586)
(xy 137.716667 77.788096)
(xy 137.720218 77.784504)
(xy 137.723569 77.780832)
(xy 137.727678 77.776347)
(xy 137.732593 77.772151)
(xy 137.738312 77.768244)
(xy 137.744829 77.764627)
(xy 137.752143 77.761299)
(xy 137.760249 77.758261)
(xy 137.769143 77.755512)
(xy 137.778823 77.753052)
(xy 137.789284 77.750882)
(xy 137.800522 77.749001)
(xy 137.812535 77.747409)
(xy 137.825318 77.746107)
(xy 137.838868 77.745094)
(xy 137.853181 77.744371)
(xy 137.868254 77.743936)
(xy 137.884083 77.743792)
(xy 137.905907 77.743745)
(xy 137.92521 77.743531)
(xy 137.94219 77.743043)
(xy 137.957047 77.742171)
(xy 137.963742 77.741557)
(xy 137.96998 77.740807)
(xy 137.975787 77.739907)
(xy 137.981187 77.738843)
(xy 137.986206 77.737601)
(xy 137.990868 77.736169)
(xy 137.995198 77.734533)
(xy 137.999221 77.732678)
(xy 138.002962 77.730592)
(xy 138.006445 77.728261)
(xy 138.009696 77.725672)
(xy 138.01274 77.72281)
(xy 138.015601 77.719662)
(xy 138.018304 77.716215)
(xy 138.020874 77.712456)
(xy 138.023336 77.708369)
(xy 138.025715 77.703943)
(xy 138.028036 77.699163)
(xy 138.032602 77.688488)
(xy 138.037232 77.676236)
(xy 138.042127 77.662299)
(xy 138.051657 77.637284)
(xy 138.060831 77.614053)
(xy 138.069702 77.592537)
(xy 138.07832 77.572666)
(xy 138.086735 77.554372)
(xy 138.094999 77.537587)
(xy 138.103161 77.522242)
(xy 138.111272 77.508268)
(xy 138.115324 77.501773)
(xy 138.119383 77.495596)
(xy 138.123455 77.489727)
(xy 138.127545 77.484157)
(xy 138.131661 77.478879)
(xy 138.135808 77.473883)
(xy 138.139994 77.469162)
(xy 138.144223 77.464706)
(xy 138.148504 77.460506)
(xy 138.152841 77.456555)
(xy 138.157242 77.452844)
(xy 138.161712 77.449363)
(xy 138.166258 77.446105)
(xy 138.170887 77.443061)
(xy 138.175604 77.440222)
(xy 138.180416 77.43758)
(xy 138.18559 77.434662)
(xy 138.190897 77.431484)
(xy 138.196298 77.428074)
(xy 138.201754 77.424461)
(xy 138.207224 77.420675)
(xy 138.212669 77.416744)
(xy 138.218048 77.412697)
(xy 138.223323 77.408564)
(xy 138.228453 77.404372)
(xy 138.233399 77.400152)
(xy 138.23812 77.395932)
(xy 138.242577 77.39174)
(xy 138.24673 77.387607)
(xy 138.25054 77.38356)
(xy 138.253966 77.379629)
(xy 138.256969 77.375843)
(xy 138.262663 77.370602)
(xy 138.271849 77.365975)
(xy 138.30331 77.35848)
(xy 138.356591 77.353184)
(xy 138.43693 77.349914)
(xy 138.549564 77.348496)
(xy 138.699733 77.348757)
(xy 139.133621 77.35362)
(xy 139.465839 77.357825)
(xy 139.742957 77.359483)
(xy 139.935805 77.358827)
(xy 139.991512 77.357703)
(xy 140.015213 77.356087)
(xy 140.017181 77.355306)
(xy 140.018917 77.35435)
(xy 140.020422 77.35322)
(xy 140.021696 77.351915)
(xy 140.022737 77.350435)
(xy 140.023548 77.348779)
(xy 140.024127 77.346946)
(xy 140.024474 77.344936)
(xy 140.02459 77.34275)
(xy 140.024474 77.340385)
(xy 140.023548 77.335121)
(xy 140.021696 77.329141)
(xy 140.018918 77.322442)
(xy 140.015213 77.315018)
(xy 140.010583 77.306868)
(xy 140.005027 77.297987)
(xy 139.998545 77.288371)
(xy 139.991136 77.278018)
(xy 139.982802 77.266923)
(xy 139.973541 77.255082)
(xy 139.963355 77.242493)
(xy 139.944682 77.219097)
(xy 139.927529 77.197011)
(xy 139.911851 77.176155)
(xy 139.897606 77.156449)
(xy 139.88475 77.137813)
(xy 139.87324 77.120169)
(xy 139.863031 77.103437)
(xy 139.854082 77.087536)
(xy 139.846348 77.072388)
(xy 139.839786 77.057913)
(xy 139.834353 77.04403)
(xy 139.830005 77.030662)
(xy 139.826699 77.017727)
(xy 139.824391 77.005147)
(xy 139.823038 76.992842)
(xy 139.822597 76.980732)
(xy 139.822482 76.975039)
(xy 139.822143 76.969099)
(xy 139.821587 76.962957)
(xy 139.820822 76.956655)
(xy 139.819853 76.950238)
(xy 139.81869 76.943749)
(xy 139.817338 76.93723)
(xy 139.815806 76.930726)
(xy 139.814099 76.92428)
(xy 139.812227 76.917936)
(xy 139.810195 76.911736)
(xy 139.808011 76.905724)
(xy 139.805683 76.899943)
(xy 139.803217 76.894438)
(xy 139.800621 76.88925)
(xy 139.797902 76.884425)
(xy 139.787508 76.861399)
(xy 139.773092 76.820605)
(xy 139.73277 76.688721)
(xy 139.678095 76.494792)
(xy 139.610224 76.244837)
(xy 139.593702 76.177175)
(xy 139.580253 76.112158)
(xy 139.569887 76.049767)
(xy 139.56261 75.989983)
(xy 139.55843 75.93279)
(xy 139.557353 75.878169)
(xy 139.559387 75.826101)
(xy 139.561573 75.80102)
(xy 139.56454 75.77657)
(xy 139.568287 75.752749)
(xy 139.572817 75.729556)
(xy 139.578131 75.706987)
(xy 139.584228 75.685041)
(xy 139.59111 75.663716)
(xy 139.598778 75.643008)