-
Notifications
You must be signed in to change notification settings - Fork 0
/
Enigma_LED.kicad_sch
3776 lines (3654 loc) · 145 KB
/
Enigma_LED.kicad_sch
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_sch (version 20220914) (generator eeschema)
(uuid 7ca566f5-50ef-4861-a47d-41358ca1fe86)
(paper "A4")
(title_block
(title "Enigma LED Panel")
(company "Atelier Lyon")
)
(lib_symbols
(symbol "74xx:74HC595" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -7.62 13.97 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "74HC595" (id 1) (at -7.62 -16.51 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/ds/symlink/sn74hc595.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "HCMOS SR 3State" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "8-bit serial in/out Shift Register 3-State Outputs" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP*W7.62mm* SOIC*3.9x9.9mm*P1.27mm* TSSOP*4.4x5mm*P0.65mm* SOIC*5.3x10.2mm*P1.27mm* SOIC*7.5x10.3mm*P1.27mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "74HC595_1_0"
(pin tri_state line (at 10.16 7.62 180) (length 2.54)
(name "QB" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 2.54 0) (length 2.54)
(name "~{SRCLR}" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 5.08 0) (length 2.54)
(name "SRCLK" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -2.54 0) (length 2.54)
(name "RCLK" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -5.08 0) (length 2.54)
(name "~{OE}" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 10.16 0) (length 2.54)
(name "SER" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 10.16 180) (length 2.54)
(name "QA" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 15.24 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 5.08 180) (length 2.54)
(name "QC" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 2.54 180) (length 2.54)
(name "QD" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 0 180) (length 2.54)
(name "QE" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 -2.54 180) (length 2.54)
(name "QF" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 -5.08 180) (length 2.54)
(name "QG" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 -7.62 180) (length 2.54)
(name "QH" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -17.78 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin output line (at 10.16 -12.7 180) (length 2.54)
(name "QH'" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
(symbol "74HC595_1_1"
(rectangle (start -7.62 12.7) (end 7.62 -15.24)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
)
(symbol "Connector_Generic:Conn_01x05" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x05" (id 1) (at 0 -7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x05_1_1"
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 6.35) (end 1.27 -6.35)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at -5.08 5.08 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LED" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "LED diode" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Light emitting diode" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LED_0_1"
(polyline
(pts
(xy -1.27 -1.27)
(xy -1.27 1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy 1.27 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -1.27)
(xy 1.27 1.27)
(xy -1.27 0)
(xy 1.27 -1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -3.048 -0.762)
(xy -4.572 -2.286)
(xy -3.81 -2.286)
(xy -4.572 -2.286)
(xy -4.572 -1.524)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.778 -0.762)
(xy -3.302 -2.286)
(xy -2.54 -2.286)
(xy -3.302 -2.286)
(xy -3.302 -1.524)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "LED_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Mechanical:MountingHole_Pad" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "H" (id 0) (at 0 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MountingHole_Pad" (id 1) (at 0 4.445 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "mounting hole" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Mounting Hole with connection" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "MountingHole*Pad*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MountingHole_Pad_0_1"
(circle (center 0 1.27) (radius 1.27)
(stroke (width 1.27) (type default))
(fill (type none))
)
)
(symbol "MountingHole_Pad_1_1"
(pin input line (at 0 -2.54 90) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+5V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (id 0) (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
)
)
(junction (at 115.57 118.11) (diameter 0) (color 0 0 0 0)
(uuid 18c29380-f665-4f76-8b33-61ba3c5a7ea7)
)
(junction (at 118.11 85.09) (diameter 0) (color 0 0 0 0)
(uuid 939c4f76-831f-439e-b1b8-0d1362a0ece3)
)
(junction (at 123.19 118.11) (diameter 0) (color 0 0 0 0)
(uuid 9b5decb4-7a7c-482e-820c-094a88ae4355)
)
(junction (at 118.11 95.25) (diameter 0) (color 0 0 0 0)
(uuid c27d89b8-2edf-42f7-8808-9c3a67ee677e)
)
(junction (at 130.81 118.11) (diameter 0) (color 0 0 0 0)
(uuid f8b0b18f-618e-4e84-a37d-edaab534f4f2)
)
(no_connect (at 264.16 43.18) (uuid e55b16ed-7c37-47f1-9e13-83adaea87bce))
(no_connect (at 264.16 38.1) (uuid e55b16ed-7c37-47f1-9e13-83adaea87bce))
(no_connect (at 264.16 40.64) (uuid e55b16ed-7c37-47f1-9e13-83adaea87bce))
(no_connect (at 264.16 48.26) (uuid e55b16ed-7c37-47f1-9e13-83adaea87bce))
(no_connect (at 264.16 35.56) (uuid e55b16ed-7c37-47f1-9e13-83adaea87bce))
(no_connect (at 264.16 33.02) (uuid e55b16ed-7c37-47f1-9e13-83adaea87bce))
(wire (pts (xy 62.23 113.03) (xy 63.5 113.03))
(stroke (width 0) (type default))
(uuid 00dddee4-0c1d-444f-a9b5-cc84e472ac0c)
)
(wire (pts (xy 60.96 139.7) (xy 59.69 139.7))
(stroke (width 0) (type default))
(uuid 05d30cdf-662f-442a-b58b-f40dc57a05de)
)
(wire (pts (xy 123.19 118.11) (xy 123.19 116.84))
(stroke (width 0) (type default))
(uuid 09c79a11-088d-4307-9040-9d6ba8500ef8)
)
(wire (pts (xy 22.86 130.81) (xy 24.13 130.81))
(stroke (width 0) (type default))
(uuid 0b04338e-63ad-468d-96db-ed9f554abdfb)
)
(wire (pts (xy 62.23 41.91) (xy 63.5 41.91))
(stroke (width 0) (type default))
(uuid 0bf905fe-ea2b-421b-a94f-0ca61cf5220a)
)
(wire (pts (xy 22.86 104.14) (xy 24.13 104.14))
(stroke (width 0) (type default))
(uuid 0e8db08d-58f0-4508-b383-a7be4d50398d)
)
(wire (pts (xy 116.84 85.09) (xy 118.11 85.09))
(stroke (width 0) (type default))
(uuid 104cf28a-9a22-4dd4-9d6e-0fa008bbdedb)
)
(wire (pts (xy 71.12 113.03) (xy 72.39 113.03))
(stroke (width 0) (type default))
(uuid 19223216-4750-4037-9bc7-18fc3a6ac250)
)
(wire (pts (xy 71.12 50.8) (xy 72.39 50.8))
(stroke (width 0) (type default))
(uuid 1aa28b20-25f4-4b32-8284-87ae18f67aef)
)
(wire (pts (xy 107.95 118.11) (xy 115.57 118.11))
(stroke (width 0) (type default))
(uuid 1c606ba0-fd3f-48ba-babd-27e51a005f49)
)
(wire (pts (xy 118.11 96.52) (xy 118.11 95.25))
(stroke (width 0) (type default))
(uuid 1cc9a3f7-4bd1-4d7e-aa9d-1883e9d44c0e)
)
(wire (pts (xy 62.23 50.8) (xy 63.5 50.8))
(stroke (width 0) (type default))
(uuid 1cf48380-af85-483b-9dbc-3aeb830fbf00)
)
(wire (pts (xy 31.75 113.03) (xy 33.02 113.03))
(stroke (width 0) (type default))
(uuid 2494ded6-b973-49e6-b714-521cb6f131a0)
)
(wire (pts (xy 31.75 104.14) (xy 33.02 104.14))
(stroke (width 0) (type default))
(uuid 2775cf8b-3355-45fa-9723-b091c2842b68)
)
(wire (pts (xy 41.91 50.8) (xy 40.64 50.8))
(stroke (width 0) (type default))
(uuid 284cd515-f15a-4f4e-9af5-e1dd16dc6f7b)
)
(wire (pts (xy 81.28 33.02) (xy 80.01 33.02))
(stroke (width 0) (type default))
(uuid 29049f04-6e68-4941-ac74-54cd33ae83ed)
)
(wire (pts (xy 62.23 68.58) (xy 63.5 68.58))
(stroke (width 0) (type default))
(uuid 2f78fa8b-3447-44d7-aefc-7036cec86339)
)
(wire (pts (xy 81.28 86.36) (xy 80.01 86.36))
(stroke (width 0) (type default))
(uuid 33e9576d-4a7c-497e-bd86-fd2f5c362406)
)
(wire (pts (xy 118.11 95.25) (xy 119.38 95.25))
(stroke (width 0) (type default))
(uuid 35672362-808a-42fc-b458-330e73f2cdc7)
)
(wire (pts (xy 71.12 104.14) (xy 72.39 104.14))
(stroke (width 0) (type default))
(uuid 37522542-8825-4df0-8b14-2c588dcea50c)
)
(wire (pts (xy 81.28 50.8) (xy 80.01 50.8))
(stroke (width 0) (type default))
(uuid 3a55b892-5eb1-4ef5-aca7-934526cd5a82)
)
(wire (pts (xy 50.8 139.7) (xy 52.07 139.7))
(stroke (width 0) (type default))
(uuid 3a597417-04ef-4424-ae56-3b88d509982d)
)
(wire (pts (xy 81.28 77.47) (xy 80.01 77.47))
(stroke (width 0) (type default))
(uuid 3aac5b83-5ee0-40dc-a0a0-35f1a3165d11)
)
(wire (pts (xy 31.75 41.91) (xy 33.02 41.91))
(stroke (width 0) (type default))
(uuid 3e0fff7e-250a-4728-8cb2-ff8cce05df39)
)
(wire (pts (xy 107.95 118.11) (xy 107.95 116.84))
(stroke (width 0) (type default))
(uuid 45966f98-2f2b-4831-bc83-943d15d351a9)
)
(wire (pts (xy 22.86 77.47) (xy 24.13 77.47))
(stroke (width 0) (type default))
(uuid 4a6f2b1e-420a-42c4-94b5-d0d6e7ca35f1)
)
(wire (pts (xy 228.6 48.26) (xy 228.6 25.4))
(stroke (width 0) (type default))
(uuid 510e6cda-a8e7-46db-8225-f798b758fa7a)
)
(wire (pts (xy 41.91 41.91) (xy 40.64 41.91))
(stroke (width 0) (type default))
(uuid 5e123686-c81a-47e0-8285-3babad5cd608)
)
(wire (pts (xy 71.12 121.92) (xy 72.39 121.92))
(stroke (width 0) (type default))
(uuid 5e547726-60a2-4eb0-ab76-0599f609bb57)
)
(wire (pts (xy 137.16 26.67) (xy 152.4 26.67))
(stroke (width 0) (type default))
(uuid 62f4b581-5b8a-41e5-a2ce-cdf18ce8f34b)
)
(wire (pts (xy 41.91 139.7) (xy 43.18 139.7))
(stroke (width 0) (type default))
(uuid 6587f47c-9118-4895-b0a8-85da89f38e4c)
)
(wire (pts (xy 41.91 113.03) (xy 40.64 113.03))
(stroke (width 0) (type default))
(uuid 6809f124-de32-4797-a88e-5110bd5c305d)
)
(wire (pts (xy 41.91 95.25) (xy 40.64 95.25))
(stroke (width 0) (type default))
(uuid 6a22e2ab-a2d0-4dbe-b70b-c8d538bb7170)
)
(wire (pts (xy 81.28 121.92) (xy 80.01 121.92))
(stroke (width 0) (type default))
(uuid 6a261b20-3442-4936-bf43-011fcf6c9780)
)
(wire (pts (xy 62.23 104.14) (xy 63.5 104.14))
(stroke (width 0) (type default))
(uuid 6a8c00a1-15f5-4488-abb7-b138dc5dbe29)
)
(wire (pts (xy 71.12 33.02) (xy 72.39 33.02))
(stroke (width 0) (type default))
(uuid 6ad8d9b0-de73-4fb7-8a7b-1284d4ea6fd6)
)
(wire (pts (xy 130.81 118.11) (xy 130.81 119.38))
(stroke (width 0) (type default))
(uuid 6cf9ce6c-b2fa-4491-a644-d8577a859767)
)
(wire (pts (xy 182.88 25.4) (xy 182.88 49.53))
(stroke (width 0) (type default))
(uuid 6ef8ea80-35ba-44a1-b202-6007762b55df)
)
(wire (pts (xy 62.23 130.81) (xy 63.5 130.81))
(stroke (width 0) (type default))
(uuid 6f6266d2-c53a-4dc8-b910-c999e4d6bc8c)
)
(wire (pts (xy 41.91 59.69) (xy 40.64 59.69))
(stroke (width 0) (type default))
(uuid 717e396b-fa34-4257-b2dd-6965aa27b89c)
)
(wire (pts (xy 127 49.53) (xy 137.16 49.53))
(stroke (width 0) (type default))
(uuid 730528da-c43e-4b33-b23b-f703237b16ac)
)
(wire (pts (xy 81.28 104.14) (xy 80.01 104.14))
(stroke (width 0) (type default))
(uuid 740e7ceb-e0ba-4b61-9aef-1f32cc5538db)
)
(wire (pts (xy 81.28 59.69) (xy 80.01 59.69))
(stroke (width 0) (type default))
(uuid 7b2688a7-6f9d-4103-b011-c7cd6770ab80)
)
(wire (pts (xy 81.28 41.91) (xy 80.01 41.91))
(stroke (width 0) (type default))
(uuid 7c9faec0-76ea-4774-98d3-ce516b997ef7)
)
(wire (pts (xy 22.86 33.02) (xy 24.13 33.02))
(stroke (width 0) (type default))
(uuid 7cedfc37-2eb8-4db0-b946-057d16a8ac38)
)
(wire (pts (xy 116.84 95.25) (xy 118.11 95.25))
(stroke (width 0) (type default))
(uuid 7de736c1-d664-4884-ad98-db5fea06cc21)
)
(wire (pts (xy 31.75 86.36) (xy 33.02 86.36))
(stroke (width 0) (type default))
(uuid 7f438324-a80e-4f03-9f8c-711968e1d5b3)
)
(wire (pts (xy 62.23 77.47) (xy 63.5 77.47))
(stroke (width 0) (type default))
(uuid 801807e7-a87a-47de-9b49-bfffa2536164)
)
(wire (pts (xy 31.75 59.69) (xy 33.02 59.69))
(stroke (width 0) (type default))
(uuid 80f2b271-2806-4b52-b86f-84a623377337)
)
(wire (pts (xy 22.86 68.58) (xy 24.13 68.58))
(stroke (width 0) (type default))
(uuid 84bc418a-f1de-429c-8e56-c3f05ea60c49)
)
(wire (pts (xy 31.75 95.25) (xy 33.02 95.25))
(stroke (width 0) (type default))
(uuid 866d2978-da4a-431e-b45e-e28823945a5d)
)
(wire (pts (xy 71.12 68.58) (xy 72.39 68.58))
(stroke (width 0) (type default))
(uuid 883b1488-ca8b-473b-b660-ad21c2caad85)
)
(wire (pts (xy 198.12 25.4) (xy 182.88 25.4))
(stroke (width 0) (type default))
(uuid 89cb8e73-65ef-4d79-ab22-ea6186a317e5)
)
(wire (pts (xy 71.12 77.47) (xy 72.39 77.47))
(stroke (width 0) (type default))
(uuid 8d109e02-075e-45a2-8d14-b12545051368)
)
(wire (pts (xy 41.91 68.58) (xy 40.64 68.58))
(stroke (width 0) (type default))
(uuid 9130c929-0109-41ac-a3b1-4a3c113ae5c2)
)
(wire (pts (xy 71.12 95.25) (xy 72.39 95.25))
(stroke (width 0) (type default))
(uuid 935d42aa-95a2-46eb-87ba-6f05f586fd0b)
)
(wire (pts (xy 81.28 68.58) (xy 80.01 68.58))
(stroke (width 0) (type default))
(uuid 9496731b-f67b-48ca-92c3-06a4d32eee69)
)
(wire (pts (xy 22.86 59.69) (xy 24.13 59.69))
(stroke (width 0) (type default))
(uuid 9cb89bd9-321a-41df-a7dd-6d5990f46bf4)
)
(wire (pts (xy 62.23 59.69) (xy 63.5 59.69))
(stroke (width 0) (type default))
(uuid 9de4a320-02c4-403f-a332-a366958d3d39)
)
(wire (pts (xy 228.6 25.4) (xy 243.84 25.4))
(stroke (width 0) (type default))
(uuid 9fa00c66-2c12-4822-a4b8-b99cd866b958)
)
(wire (pts (xy 22.86 113.03) (xy 24.13 113.03))
(stroke (width 0) (type default))
(uuid a4291d68-7ffc-4bdc-a78c-7a692eae4342)
)
(wire (pts (xy 62.23 24.13) (xy 63.5 24.13))
(stroke (width 0) (type default))
(uuid a522bf22-e958-48ae-a092-bc0121f126f2)
)
(wire (pts (xy 137.16 49.53) (xy 137.16 26.67))
(stroke (width 0) (type default))
(uuid a52818f6-6f72-4d19-bc86-45066381e55d)
)
(wire (pts (xy 71.12 130.81) (xy 72.39 130.81))
(stroke (width 0) (type default))
(uuid a7cb0223-3c0b-422f-ae58-4bbf093f037d)
)
(wire (pts (xy 22.86 24.13) (xy 24.13 24.13))
(stroke (width 0) (type default))
(uuid ab0821e4-f6ce-4d5c-a7b2-0a5022d942d0)
)
(wire (pts (xy 22.86 121.92) (xy 24.13 121.92))
(stroke (width 0) (type default))
(uuid adbe1447-92f4-4393-9346-d4d5f7521c8a)
)
(wire (pts (xy 118.11 83.82) (xy 118.11 85.09))
(stroke (width 0) (type default))
(uuid adff5ff8-b865-4202-a42f-f68eb33e8ea9)
)
(wire (pts (xy 115.57 118.11) (xy 115.57 116.84))
(stroke (width 0) (type default))
(uuid b25b96ed-bb2f-4330-85fc-a40a8373d83e)
)
(wire (pts (xy 130.81 118.11) (xy 130.81 116.84))
(stroke (width 0) (type default))
(uuid b36afc09-eeda-44db-b89c-15a5847d7e06)
)
(wire (pts (xy 22.86 41.91) (xy 24.13 41.91))
(stroke (width 0) (type default))
(uuid b8c75fa4-f327-49e1-981f-6f07a61a9486)
)
(wire (pts (xy 81.28 24.13) (xy 80.01 24.13))
(stroke (width 0) (type default))
(uuid bc2ee0b7-ce76-4b9c-9e40-11c404ad1c1f)
)
(wire (pts (xy 31.75 130.81) (xy 33.02 130.81))
(stroke (width 0) (type default))
(uuid bd572267-bfbf-4c88-ba91-01400a9c7634)
)
(wire (pts (xy 31.75 77.47) (xy 33.02 77.47))
(stroke (width 0) (type default))
(uuid bda6d1aa-071c-4910-9dd1-1736fc94a320)
)
(wire (pts (xy 41.91 24.13) (xy 40.64 24.13))
(stroke (width 0) (type default))
(uuid bdc94d49-a0a3-4bc8-8e23-966908b5f7a4)
)
(wire (pts (xy 41.91 77.47) (xy 40.64 77.47))
(stroke (width 0) (type default))
(uuid c0854a90-9c95-4af2-821f-c33d9794b489)
)
(wire (pts (xy 182.88 49.53) (xy 172.72 49.53))
(stroke (width 0) (type default))
(uuid c2997fc7-5f0e-494a-89f5-fa7a14a7dd44)
)
(wire (pts (xy 123.19 118.11) (xy 130.81 118.11))
(stroke (width 0) (type default))
(uuid c5edc869-264e-473a-95b8-b5bd6c089c5c)
)
(wire (pts (xy 81.28 113.03) (xy 80.01 113.03))
(stroke (width 0) (type default))
(uuid c60a63be-2a21-4b7f-85f2-63fc95fbc84c)
)
(wire (pts (xy 31.75 68.58) (xy 33.02 68.58))
(stroke (width 0) (type default))
(uuid cb125747-876f-4a66-bf1e-598a7e6a425b)
)
(wire (pts (xy 62.23 95.25) (xy 63.5 95.25))
(stroke (width 0) (type default))
(uuid cc2d0788-8578-4fda-a172-8aad399bfccd)
)
(wire (pts (xy 22.86 50.8) (xy 24.13 50.8))
(stroke (width 0) (type default))
(uuid ccabad92-8033-4b89-893f-e1ca28af2e3a)
)
(wire (pts (xy 22.86 86.36) (xy 24.13 86.36))
(stroke (width 0) (type default))
(uuid ccd3a349-8840-4d63-8151-93c1a0b7c9a4)
)
(wire (pts (xy 62.23 33.02) (xy 63.5 33.02))
(stroke (width 0) (type default))
(uuid d028b08c-cc22-41bf-b1c8-12a3f7c7fed2)
)
(wire (pts (xy 71.12 24.13) (xy 72.39 24.13))
(stroke (width 0) (type default))
(uuid d0c84c31-b33b-49f5-bbbf-4dde5ed224fa)
)
(wire (pts (xy 41.91 86.36) (xy 40.64 86.36))
(stroke (width 0) (type default))
(uuid d25786ad-91ac-4cb8-ad43-ee0a5346dca1)
)
(wire (pts (xy 218.44 48.26) (xy 228.6 48.26))
(stroke (width 0) (type default))
(uuid d487abc9-2713-4ade-8945-d53da8785648)
)
(wire (pts (xy 71.12 86.36) (xy 72.39 86.36))
(stroke (width 0) (type default))
(uuid d6c3daa1-9277-41dc-ae3b-3ad3b06281b3)
)
(wire (pts (xy 31.75 121.92) (xy 33.02 121.92))
(stroke (width 0) (type default))
(uuid dad27e0e-c24b-4be2-aae4-a65287ab1169)
)
(wire (pts (xy 115.57 118.11) (xy 123.19 118.11))
(stroke (width 0) (type default))
(uuid db960dd4-40a8-45fe-a0ce-d9e5b1ba63ed)
)
(wire (pts (xy 81.28 95.25) (xy 80.01 95.25))
(stroke (width 0) (type default))
(uuid dd793f62-fc38-4ec6-8a4b-5eaf8d86b511)
)
(wire (pts (xy 71.12 41.91) (xy 72.39 41.91))
(stroke (width 0) (type default))
(uuid ded9fc2f-e4a4-4384-8828-6acb019d523b)
)
(wire (pts (xy 62.23 86.36) (xy 63.5 86.36))
(stroke (width 0) (type default))
(uuid e0ed3844-2c81-4835-92f5-7744612f7d39)
)
(wire (pts (xy 31.75 50.8) (xy 33.02 50.8))
(stroke (width 0) (type default))
(uuid e6d5c8d6-523f-498a-9b24-66dc25763e84)
)
(wire (pts (xy 62.23 121.92) (xy 63.5 121.92))
(stroke (width 0) (type default))
(uuid e6f5e127-73e3-4167-b128-176729ef222a)
)
(wire (pts (xy 22.86 95.25) (xy 24.13 95.25))
(stroke (width 0) (type default))
(uuid e851d8a4-87da-4295-be93-9a4dc545e781)
)
(wire (pts (xy 31.75 33.02) (xy 33.02 33.02))
(stroke (width 0) (type default))
(uuid e90122ae-9767-4d44-8bf5-b2879844f3a3)
)
(wire (pts (xy 41.91 121.92) (xy 40.64 121.92))
(stroke (width 0) (type default))
(uuid e9d74930-3ec8-4c44-8cce-5218884b84bd)
)
(wire (pts (xy 31.75 24.13) (xy 33.02 24.13))
(stroke (width 0) (type default))
(uuid ec797dc5-dab3-41ab-8a17-7a5911902bee)
)
(wire (pts (xy 41.91 33.02) (xy 40.64 33.02))
(stroke (width 0) (type default))
(uuid ec859fba-4d93-48e9-a9a3-2e951ea3c00d)
)
(wire (pts (xy 41.91 104.14) (xy 40.64 104.14))
(stroke (width 0) (type default))
(uuid f08231fb-1e4c-46ac-916b-9c132513dfbd)
)
(wire (pts (xy 41.91 130.81) (xy 40.64 130.81))
(stroke (width 0) (type default))
(uuid f95d4d85-5a97-4242-93c4-99126311061b)
)
(wire (pts (xy 81.28 130.81) (xy 80.01 130.81))
(stroke (width 0) (type default))
(uuid fafa0d1a-b9c6-4b2e-9511-1d61e75f5841)
)
(wire (pts (xy 118.11 85.09) (xy 119.38 85.09))
(stroke (width 0) (type default))
(uuid fe603b86-9c4a-4161-bddc-d01f1d4384e2)
)
(wire (pts (xy 71.12 59.69) (xy 72.39 59.69))
(stroke (width 0) (type default))
(uuid ff09634e-0ecf-4d0f-8507-39e767f38579)
)
(label "OUTPUT_V" (at 62.23 95.25 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 01bd34a9-2d63-4c05-8779-08b1a7ca52bd)
)
(label "OUTPUT_I" (at 22.86 95.25 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 090e3026-2c37-4330-87de-e0ada45270b5)
)
(label "OUTPUT_P" (at 172.72 44.45 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0ec88155-b549-483c-8c78-0f9e3787cd04)
)
(label "OUTPUT_O" (at 62.23 33.02 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 1257a20d-96ca-4622-8080-faf49e265edb)
)
(label "OUTPUT_R" (at 218.44 27.94 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 1b29e981-8ca6-4c2d-b1ed-81c22fb88ce7)
)
(label "OUTPUT_C" (at 22.86 41.91 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 1bb8738e-41b7-4d88-8843-72071b3ea965)
)
(label "OUTPUT_A" (at 22.86 24.13 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 25412ba5-489f-481d-ad14-584b601802ae)
)
(label "OUTPUT_V" (at 218.44 38.1 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 2b73dfbe-7697-444d-a4ef-9ea57a26c01f)
)
(label "OUTPUT_S" (at 218.44 30.48 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 32a35d73-288d-4083-8dfd-b6de89c0effe)
)
(label "OUTPUT_U" (at 62.23 86.36 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 47d62b24-251a-4753-9844-1c93bae196b2)
)
(label "OUTPUT_@" (at 41.91 139.7 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 4ad1fb24-002b-4fca-b34c-eee38975f132)
)
(label "OUTPUT_F" (at 22.86 68.58 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 4d49e31d-e0b8-48a9-879b-8db038b67855)
)
(label "OUTPUT_G" (at 22.86 77.47 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 56211d79-8cc5-4115-b6ad-81559feafaec)
)
(label "OUTPUT_U" (at 218.44 35.56 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 593c2c9a-4896-45e1-86af-5ef075ad444a)
)
(label "OUTPUT_H" (at 22.86 86.36 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 5e855a7a-3060-4bfb-ac03-cae3f084599f)
)
(label "OUTPUT_W" (at 62.23 104.14 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 5ed4ba50-0a88-4a6e-b0e1-f054769d1d58)
)
(label "OUTPUT_X" (at 62.23 113.03 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 63cb7fa3-9c37-4583-93dd-edd3d61e8469)
)
(label "OUTPUT_C" (at 127 31.75 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 667b9897-f28a-4898-9074-d7b0c8856044)
)
(label "OUTPUT_B" (at 22.86 33.02 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 677c398a-c9f2-43a7-9286-a68bd9ec19d7)
)
(label "OUTPUT_M" (at 172.72 36.83 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6fe4787a-0106-4774-a332-33cd2416b81c)
)
(label "OUTPUT_@" (at 264.16 30.48 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6ff50f32-76fd-42e2-bf1c-4784514d07ab)
)
(label "OUTPUT_Z" (at 62.23 130.81 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 74209e9d-bb78-4222-8ae9-15a35252a918)
)
(label "OUTPUT_L" (at 172.72 34.29 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 74540167-855e-4c4d-b40b-1648c4a8a102)
)
(label "OUTPUT_X" (at 218.44 43.18 0) (fields_autoplaced)