-
Notifications
You must be signed in to change notification settings - Fork 0
/
ibom.html
2622 lines (2373 loc) · 221 KB
/
ibom.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interactive BOM for KiCAD</title>
<style type="text/css">
:root {
--pcb-edge-color: black;
--pad-color: #878787;
--pad-color-highlight: #D04040;
--pin1-outline-color: #ffb629;
--pin1-outline-color-highlight: #b4ff03;
--silkscreen-edge-color: #aa4;
--silkscreen-polygon-color: #4aa;
--silkscreen-text-color: #4aa;
--fabrication-edge-color: #907651;
--fabrication-polygon-color: #907651;
--fabrication-text-color: #a27c24;
}
html, body {
margin: 0px;
height: 100%;
font-family: Verdana, sans-serif;
}
.dark {
--pcb-edge-color: #eee;
--pad-color: #808080;
--pin1-outline-color: #ffa800;
--pin1-outline-color-highlight: #ccff00;
background-color: #252c30;
color: #eee;
}
button {
background-color: #eee;
border: 1px solid #888;
color: black;
height: 44px;
width: 44px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 14px;
font-weight: bolder;
}
.dark button {
/* This will be inverted */
background-color: #c3b7b5;
}
button.depressed {
background-color: #0a0;
color: white;
}
.dark button.depressed {
/* This will be inverted */
background-color: #b3b;
}
button:focus {
outline: 0;
}
button#tb-btn {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.47 8.47'%3E%3Crect transform='translate(0 -288.53)' ry='1.17' y='288.8' x='.27' height='7.94' width='7.94' fill='%23f9f9f9'/%3E%3Cg transform='translate(0 -288.53)'%3E%3Crect width='7.94' height='7.94' x='.27' y='288.8' ry='1.17' fill='none' stroke='%23000' stroke-width='.4' stroke-linejoin='round'/%3E%3Cpath d='M1.32 290.12h5.82M1.32 291.45h5.82' fill='none' stroke='%23000' stroke-width='.4'/%3E%3Cpath d='M4.37 292.5v4.23M.26 292.63H8.2' fill='none' stroke='%23000' stroke-width='.3'/%3E%3Ctext font-weight='700' font-size='3.17' font-family='sans-serif'%3E%3Ctspan x='1.35' y='295.73'%3EF%3C/tspan%3E%3Ctspan x='5.03' y='295.68'%3EB%3C/tspan%3E%3C/text%3E%3C/g%3E%3C/svg%3E%0A");
background-size: 32px 32px;
background-position: 5px 5px;
background-repeat: no-repeat;
}
button#lr-btn {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.47 8.47'%3E%3Crect transform='translate(0 -288.53)' ry='1.17' y='288.8' x='.27' height='7.94' width='7.94' fill='%23f9f9f9'/%3E%3Cg transform='translate(0 -288.53)'%3E%3Crect width='7.94' height='7.94' x='.27' y='288.8' ry='1.17' fill='none' stroke='%23000' stroke-width='.4' stroke-linejoin='round'/%3E%3Cpath d='M1.06 290.12H3.7m-2.64 1.33H3.7m-2.64 1.32H3.7m-2.64 1.3H3.7m-2.64 1.33H3.7' fill='none' stroke='%23000' stroke-width='.4'/%3E%3Cpath d='M4.37 288.8v7.94m0-4.11h3.96' fill='none' stroke='%23000' stroke-width='.3'/%3E%3Ctext font-weight='700' font-size='3.17' font-family='sans-serif'%3E%3Ctspan x='5.11' y='291.96'%3EF%3C/tspan%3E%3Ctspan x='5.03' y='295.68'%3EB%3C/tspan%3E%3C/text%3E%3C/g%3E%3C/svg%3E%0A");
background-size: 32px 32px;
background-position: 5px 5px;
background-repeat: no-repeat;
}
button#bom-btn {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.47 8.47'%3E%3Crect transform='translate(0 -288.53)' ry='1.17' y='288.8' x='.27' height='7.94' width='7.94' fill='%23f9f9f9'/%3E%3Cg transform='translate(0 -288.53)' fill='none' stroke='%23000' stroke-width='.4'%3E%3Crect width='7.94' height='7.94' x='.27' y='288.8' ry='1.17' stroke-linejoin='round'/%3E%3Cpath d='M1.59 290.12h5.29M1.59 291.45h5.33M1.59 292.75h5.33M1.59 294.09h5.33M1.59 295.41h5.33'/%3E%3C/g%3E%3C/svg%3E");
background-size: 32px 32px;
background-position: 5px 5px;
background-repeat: no-repeat;
}
button#copy {
background-image: url("data:image/svg+xml,%3Csvg height='48' viewBox='0 0 48 48' width='48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h48v48h-48z' fill='none'/%3E%3Cpath d='M32 2h-24c-2.21 0-4 1.79-4 4v28h4v-28h24v-4zm6 8h-22c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h22c2.21 0 4-1.79 4-4v-28c0-2.21-1.79-4-4-4zm0 32h-22v-28h22v28z'/%3E%3C/svg%3E");
background-position: 6px 6px;
background-repeat: no-repeat;
background-size: 26px 26px;
border-radius: 6px;
height: 40px;
width: 40px;
margin: 10px 5px;
}
button#copy:active {
box-shadow: inset 0px 0px 5px #6c6c6c;
}
textarea.clipboard-temp {
position: fixed;
top: 0;
left: 0;
width: 2em;
height: 2em;
padding: 0;
border: None;
outline: None;
box-shadow: None;
background: transparent;
}
.left-most-button {
border-right: 0;
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
}
.middle-button {
border-right: 0;
}
.right-most-button {
border-top-right-radius: 6px;
border-bottom-right-radius: 6px;
}
.button-container {
font-size: 0;
}
.dark .button-container {
filter: invert(1);
}
@media print {
.hideonprint {
display: none;
}
}
canvas {
cursor: crosshair;
}
canvas:active {
cursor: grabbing;
}
.fileinfo {
width: 100%;
max-width: 1000px;
border: none;
padding: 5px;
}
.fileinfo .title {
font-size: 20pt;
font-weight: bold;
}
.fileinfo td {
overflow: hidden;
white-space: nowrap;
max-width: 1px;
width: 50%;
text-overflow: ellipsis;
}
.bom {
border-collapse: collapse;
font-family: Consolas, "DejaVu Sans Mono", Monaco, monospace;
font-size: 10pt;
table-layout: fixed;
width: 100%;
margin-top: 1px;
}
.bom th, .bom td {
border: 1px solid black;
padding: 5px;
word-wrap: break-word;
text-align: center;
position: relative;
}
.dark .bom th, .dark .bom td {
border: 1px solid #777;
}
.bom th {
background-color: #CCCCCC;
background-clip: padding-box;
}
.dark .bom th {
background-color: #3b4749;
}
.bom tr.highlighted:nth-child(n) {
background-color: #cfc;
}
.dark .bom tr.highlighted:nth-child(n) {
background-color: #226022;
}
.bom tr:nth-child(even) {
background-color: #f2f2f2;
}
.dark .bom tr:nth-child(even) {
background-color: #313b40;
}
.bom tr {
transition: background-color 0.2s;
}
.bom .numCol {
width: 25px;
}
.bom .Description {
width: 10%;
}
.bom .Part {
width: 10%;
}
.bom .Value {
width: 15%;
}
.bom .Quantity {
width: 65px;
}
.bom th .sortmark {
position: absolute;
right: 1px;
top: 1px;
margin-top: -5px;
border-width: 5px;
border-style: solid;
border-color: transparent transparent #221 transparent;
transform-origin: 50% 85%;
transition: opacity 0.2s, transform 0.4s;
}
.dark .bom th .sortmark {
filter: invert(1);
}
.bom th .sortmark.none {
opacity: 0;
}
.bom th .sortmark.desc {
transform: rotate(180deg);
}
.bom th:hover .sortmark.none {
opacity: 0.5;
}
.bom .bom-checkbox {
width: 30px;
position: relative;
user-select: none;
-moz-user-select: none;
}
.bom .bom-checkbox:before {
content: "";
position: absolute;
border-width: 15px;
border-style: solid;
border-color: #51829f transparent transparent transparent;
visibility: hidden;
top: -15px;
}
.bom .bom-checkbox:after {
content: "Double click to set/unset all";
position: absolute;
color: white;
top: -35px;
left: -26px;
background: #51829f;
padding: 5px 15px;
border-radius: 8px;
white-space: nowrap;
visibility: hidden;
}
.bom .bom-checkbox:hover:before, .bom .bom-checkbox:hover:after {
visibility: visible;
transition: visibility 0.2s linear 1s;
}
.split {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
overflow-y: auto;
overflow-x: hidden;
background-color: inherit;
}
.split.split-horizontal, .gutter.gutter-horizontal {
height: 100%;
float: left;
}
.gutter {
background-color: #ddd;
background-repeat: no-repeat;
background-position: 50%;
transition: background-color 0.3s;
}
.dark .gutter {
background-color: #777;
}
.gutter.gutter-horizontal {
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAeCAYAAADkftS9AAAAIklEQVQoU2M4c+bMfxAGAgYYmwGrIIiDjrELjpo5aiZeMwF+yNnOs5KSvgAAAABJRU5ErkJggg==');
cursor: ew-resize;
width: 5px;
}
.gutter.gutter-vertical {
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAFAQMAAABo7865AAAABlBMVEVHcEzMzMzyAv2sAAAAAXRSTlMAQObYZgAAABBJREFUeF5jOAMEEAIEEFwAn3kMwcB6I2AAAAAASUVORK5CYII=');
cursor: ns-resize;
height: 5px;
}
.searchbox {
float: left;
height: 40px;
margin: 10px 5px;
padding: 12px 32px;
font-family: Consolas, "DejaVu Sans Mono", Monaco, monospace;
font-size: 18px;
box-sizing: border-box;
border: 1px solid #888;
border-radius: 6px;
outline: none;
background-color: #eee;
transition: background-color 0.2s, border 0.2s;
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABNklEQVQ4T8XSMUvDQBQH8P/LElFa/AIZHcTBQSz0I/gFstTBRR2KUC4ldDxw7h0Bl3RRUATxi4iiODgoiLNrbQYp5J6cpJJqomkX33Z37/14d/dIa33MzDuYI4johOI4XhyNRteO46zNYjDzAxE1yBZprVeZ+QbAUhXEGJMA2Ox2u4+fQIa0mPmsCgCgJYQ4t7lfgF0opQYAdv9ABkKI/UnOFCClXKjX61cA1osQY8x9kiRNKeV7IWA3oyhaSdP0FkAtjxhj3hzH2RBCPOf3pzqYHCilfAAX+URm9oMguPzeWSGQvUcMYC8rOBJCHBRdqxTo9/vbRHRqi8bj8XKv1xvODbiuW2u32/bvf0SlDv4XYOY7z/Mavu+nM1+BmQ+NMc0wDF/LprP0DbTWW0T00ul0nn4b7Q87+X4Qmfiq2wAAAABJRU5ErkJggg==');
background-position: 10px 10px;
background-repeat: no-repeat;
}
.dark .searchbox {
background-color: #111;
color: #eee;
}
.searchbox::placeholder {
color: #ccc;
}
.dark .searchbox::placeholder {
color: #666;
}
.filter {
width: calc(60% - 64px);
}
.reflookup {
width: calc(40% - 10px);
}
input[type=text]:focus {
background-color: white;
border: 1px solid #333;
}
.dark input[type=text]:focus {
background-color: #333;
border: 1px solid #ccc;
}
mark.highlight {
background-color: #5050ff;
color: #fff;
padding: 2px;
border-radius: 6px;
}
.dark mark.highlight {
background-color: #76a6da;
color: #111;
}
.menubtn {
background-color: white;
font-size: 16px;
border: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 20 20'%3E%3Cpath fill='none' d='M0 0h20v20H0V0z'/%3E%3Cpath d='M15.95 10.78c.03-.25.05-.51.05-.78s-.02-.53-.06-.78l1.69-1.32c.15-.12.19-.34.1-.51l-1.6-2.77c-.1-.18-.31-.24-.49-.18l-1.99.8c-.42-.32-.86-.58-1.35-.78L12 2.34c-.03-.2-.2-.34-.4-.34H8.4c-.2 0-.36.14-.39.34l-.3 2.12c-.49.2-.94.47-1.35.78l-1.99-.8c-.18-.07-.39 0-.49.18l-1.6 2.77c-.1.18-.06.39.1.51l1.69 1.32c-.04.25-.07.52-.07.78s.02.53.06.78L2.37 12.1c-.15.12-.19.34-.1.51l1.6 2.77c.1.18.31.24.49.18l1.99-.8c.42.32.86.58 1.35.78l.3 2.12c.04.2.2.34.4.34h3.2c.2 0 .37-.14.39-.34l.3-2.12c.49-.2.94-.47 1.35-.78l1.99.8c.18.07.39 0 .49-.18l1.6-2.77c.1-.18.06-.39-.1-.51l-1.67-1.32zM10 13c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z'/%3E%3C/svg%3E%0A");
background-position: center;
background-repeat: no-repeat;
}
.dark .menubtn {
filter: invert(1);
}
.menu {
position: relative;
display: inline-block;
}
.menu-content {
display: none;
position: absolute;
background-color: white;
right: 0;
min-width: 300px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 100;
padding: 8px;
}
.dark .menu-content {
background-color: #111;
}
.menu:hover .menu-content {
display: block;
}
.menu:hover .menubtn {
background-color: #eee;
}
.dark .menu:hover .menubtn {}
.menu-label {
display: inline-block;
padding: 8px;
border: 1px solid #ccc;
border-top: 0;
width: calc(100% - 18px);
}
.menu-label-top {
border-top: 1px solid #ccc;
}
.menu-textbox {
float: left;
height: 24px;
margin: 10px 5px;
padding: 5px 5px;
font-family: Consolas, "DejaVu Sans Mono", Monaco, monospace;
font-size: 14px;
box-sizing: border-box;
border: 1px solid #888;
border-radius: 4px;
outline: none;
background-color: #eee;
transition: background-color 0.2s, border 0.2s;
width: calc(100% - 10px);
}
.dark .menu-textbox {
background-color: #222;
color: #eee;
}
#topmostdiv {
transition: background-color 0.3s;
}
#top {
height: 78px;
border-bottom: 2px solid black;
}
.dark #top {
border-bottom: 2px solid #ccc;
}
#dbg {
display: block;
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #aaa;
}
::-webkit-scrollbar-thumb {
background: #666;
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
.slider {
-webkit-appearance: none;
width: 100%;
margin: 3px 0;
padding: 0;
outline: none;
opacity: 0.7;
-webkit-transition: .2s;
transition: opacity .2s;
border-radius: 3px;
}
.slider:hover {
opacity: 1;
}
.slider:focus {
outline: none;
}
.slider::-webkit-slider-runnable-track {
-webkit-appearance: none;
width: 100%;
height: 8px;
background: #d3d3d3;
border-radius: 3px;
border: none;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
width: 15px;
height: 15px;
border-radius: 50%;
background: #0a0;
cursor: pointer;
margin-top: -4px;
}
.dark .slider::-webkit-slider-thumb {
background: #3d3;
}
.slider::-moz-range-thumb {
width: 15px;
height: 15px;
border-radius: 50%;
background: #0a0;
cursor: pointer;
}
.slider::-moz-range-track {
height: 8px;
background: #d3d3d3;
border-radius: 3px;
}
.dark .slider::-moz-range-thumb {
background: #3d3;
}
.slider::-ms-track {
width: 100%;
height: 8px;
border-width: 3px 0;
background: transparent;
border-color: transparent;
color: transparent;
transition: opacity .2s;
}
.slider::-ms-fill-lower {
background: #d3d3d3;
border: none;
border-radius: 3px;
}
.slider::-ms-fill-upper {
background: #d3d3d3;
border: none;
border-radius: 3px;
}
.slider::-ms-thumb {
width: 15px;
height: 15px;
border-radius: 50%;
background: #0a0;
cursor: pointer;
margin: 0;
}
.shameless-plug {
font-size: 0.8em;
text-align: center;
display: block;
}
a {
color: #0278a4;
}
.dark a {
color: #00b9fd;
}
#frontcanvas, #backcanvas {
touch-action: none;
}
</style>
<script type="text/javascript" >
///////////////////////////////////////////////
/*
Split.js - v1.3.5
MIT License
https://github.com/nathancahill/Split.js
*/
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Split=t()}(this,function(){"use strict";var e=window,t=e.document,n="addEventListener",i="removeEventListener",r="getBoundingClientRect",s=function(){return!1},o=e.attachEvent&&!e[n],a=["","-webkit-","-moz-","-o-"].filter(function(e){var n=t.createElement("div");return n.style.cssText="width:"+e+"calc(9px)",!!n.style.length}).shift()+"calc",l=function(e){return"string"==typeof e||e instanceof String?t.querySelector(e):e};return function(u,c){function z(e,t,n){var i=A(y,t,n);Object.keys(i).forEach(function(t){return e.style[t]=i[t]})}function h(e,t){var n=B(y,t);Object.keys(n).forEach(function(t){return e.style[t]=n[t]})}function f(e){var t=E[this.a],n=E[this.b],i=t.size+n.size;t.size=e/this.size*i,n.size=i-e/this.size*i,z(t.element,t.size,this.aGutterSize),z(n.element,n.size,this.bGutterSize)}function m(e){var t;this.dragging&&((t="touches"in e?e.touches[0][b]-this.start:e[b]-this.start)<=E[this.a].minSize+M+this.aGutterSize?t=E[this.a].minSize+this.aGutterSize:t>=this.size-(E[this.b].minSize+M+this.bGutterSize)&&(t=this.size-(E[this.b].minSize+this.bGutterSize)),f.call(this,t),c.onDrag&&c.onDrag())}function g(){var e=E[this.a].element,t=E[this.b].element;this.size=e[r]()[y]+t[r]()[y]+this.aGutterSize+this.bGutterSize,this.start=e[r]()[G]}function d(){var t=this,n=E[t.a].element,r=E[t.b].element;t.dragging&&c.onDragEnd&&c.onDragEnd(),t.dragging=!1,e[i]("mouseup",t.stop),e[i]("touchend",t.stop),e[i]("touchcancel",t.stop),t.parent[i]("mousemove",t.move),t.parent[i]("touchmove",t.move),delete t.stop,delete t.move,n[i]("selectstart",s),n[i]("dragstart",s),r[i]("selectstart",s),r[i]("dragstart",s),n.style.userSelect="",n.style.webkitUserSelect="",n.style.MozUserSelect="",n.style.pointerEvents="",r.style.userSelect="",r.style.webkitUserSelect="",r.style.MozUserSelect="",r.style.pointerEvents="",t.gutter.style.cursor="",t.parent.style.cursor=""}function S(t){var i=this,r=E[i.a].element,o=E[i.b].element;!i.dragging&&c.onDragStart&&c.onDragStart(),t.preventDefault(),i.dragging=!0,i.move=m.bind(i),i.stop=d.bind(i),e[n]("mouseup",i.stop),e[n]("touchend",i.stop),e[n]("touchcancel",i.stop),i.parent[n]("mousemove",i.move),i.parent[n]("touchmove",i.move),r[n]("selectstart",s),r[n]("dragstart",s),o[n]("selectstart",s),o[n]("dragstart",s),r.style.userSelect="none",r.style.webkitUserSelect="none",r.style.MozUserSelect="none",r.style.pointerEvents="none",o.style.userSelect="none",o.style.webkitUserSelect="none",o.style.MozUserSelect="none",o.style.pointerEvents="none",i.gutter.style.cursor=j,i.parent.style.cursor=j,g.call(i)}function v(e){e.forEach(function(t,n){if(n>0){var i=F[n-1],r=E[i.a],s=E[i.b];r.size=e[n-1],s.size=t,z(r.element,r.size,i.aGutterSize),z(s.element,s.size,i.bGutterSize)}})}function p(){F.forEach(function(e){e.parent.removeChild(e.gutter),E[e.a].element.style[y]="",E[e.b].element.style[y]=""})}void 0===c&&(c={});var y,b,G,E,w=l(u[0]).parentNode,D=e.getComputedStyle(w).flexDirection,U=c.sizes||u.map(function(){return 100/u.length}),k=void 0!==c.minSize?c.minSize:100,x=Array.isArray(k)?k:u.map(function(){return k}),L=void 0!==c.gutterSize?c.gutterSize:10,M=void 0!==c.snapOffset?c.snapOffset:30,O=c.direction||"horizontal",j=c.cursor||("horizontal"===O?"ew-resize":"ns-resize"),C=c.gutter||function(e,n){var i=t.createElement("div");return i.className="gutter gutter-"+n,i},A=c.elementStyle||function(e,t,n){var i={};return"string"==typeof t||t instanceof String?i[e]=t:i[e]=o?t+"%":a+"("+t+"% - "+n+"px)",i},B=c.gutterStyle||function(e,t){return n={},n[e]=t+"px",n;var n};"horizontal"===O?(y="width","clientWidth",b="clientX",G="left","paddingLeft"):"vertical"===O&&(y="height","clientHeight",b="clientY",G="top","paddingTop");var F=[];return E=u.map(function(e,t){var i,s={element:l(e),size:U[t],minSize:x[t]};if(t>0&&(i={a:t-1,b:t,dragging:!1,isFirst:1===t,isLast:t===u.length-1,direction:O,parent:w},i.aGutterSize=L,i.bGutterSize=L,i.isFirst&&(i.aGutterSize=L/2),i.isLast&&(i.bGutterSize=L/2),"row-reverse"===D||"column-reverse"===D)){var a=i.a;i.a=i.b,i.b=a}if(!o&&t>0){var c=C(t,O);h(c,L),c[n]("mousedown",S.bind(i)),c[n]("touchstart",S.bind(i)),w.insertBefore(c,s.element),i.gutter=c}0===t||t===u.length-1?z(s.element,s.size,L/2):z(s.element,s.size,L);var f=s.element[r]()[y];return f<s.minSize&&(s.minSize=f),t>0&&F.push(i),s}),o?{setSizes:v,destroy:p}:{setSizes:v,getSizes:function(){return E.map(function(e){return e.size})},collapse:function(e){if(e===F.length){var t=F[e-1];g.call(t),o||f.call(t,t.size-t.bGutterSize)}else{var n=F[e];g.call(n),o||f.call(n,n.aGutterSize)}},destroy:p}}});
///////////////////////////////////////////////
///////////////////////////////////////////////
/*!
* PEP v0.4.3 | https://github.com/jquery/PEP
* Copyright jQuery Foundation and other contributors | http://jquery.org/license
*/
!function(a,b){"object"==typeof exports&&"undefined"!=typeof module?module.exports=b():"function"==typeof define&&define.amd?define(b):a.PointerEventsPolyfill=b()}(this,function(){"use strict";function a(a,b){b=b||Object.create(null);var c=document.createEvent("Event");c.initEvent(a,b.bubbles||!1,b.cancelable||!1);
for(var d,e=2;e<m.length;e++)d=m[e],c[d]=b[d]||n[e];c.buttons=b.buttons||0;
var f=0;return f=b.pressure&&c.buttons?b.pressure:c.buttons?.5:0,c.x=c.clientX,c.y=c.clientY,c.pointerId=b.pointerId||0,c.width=b.width||0,c.height=b.height||0,c.pressure=f,c.tiltX=b.tiltX||0,c.tiltY=b.tiltY||0,c.twist=b.twist||0,c.tangentialPressure=b.tangentialPressure||0,c.pointerType=b.pointerType||"",c.hwTimestamp=b.hwTimestamp||0,c.isPrimary=b.isPrimary||!1,c}function b(){this.array=[],this.size=0}function c(a,b,c,d){this.addCallback=a.bind(d),this.removeCallback=b.bind(d),this.changedCallback=c.bind(d),A&&(this.observer=new A(this.mutationWatcher.bind(this)))}function d(a){return"body /shadow-deep/ "+e(a)}function e(a){return'[touch-action="'+a+'"]'}function f(a){return"{ -ms-touch-action: "+a+"; touch-action: "+a+"; }"}function g(){if(F){D.forEach(function(a){String(a)===a?(E+=e(a)+f(a)+"\n",G&&(E+=d(a)+f(a)+"\n")):(E+=a.selectors.map(e)+f(a.rule)+"\n",G&&(E+=a.selectors.map(d)+f(a.rule)+"\n"))});var a=document.createElement("style");a.textContent=E,document.head.appendChild(a)}}function h(){if(!window.PointerEvent){if(window.PointerEvent=a,window.navigator.msPointerEnabled){var b=window.navigator.msMaxTouchPoints;Object.defineProperty(window.navigator,"maxTouchPoints",{value:b,enumerable:!0}),u.registerSource("ms",_)}else Object.defineProperty(window.navigator,"maxTouchPoints",{value:0,enumerable:!0}),u.registerSource("mouse",N),void 0!==window.ontouchstart&&u.registerSource("touch",V);u.register(document)}}function i(a){if(!u.pointermap.has(a)){var b=new Error("InvalidPointerId");throw b.name="InvalidPointerId",b}}function j(a){for(var b=a.parentNode;b&&b!==a.ownerDocument;)b=b.parentNode;if(!b){var c=new Error("InvalidStateError");throw c.name="InvalidStateError",c}}function k(a){var b=u.pointermap.get(a);return 0!==b.buttons}function l(){window.Element&&!Element.prototype.setPointerCapture&&Object.defineProperties(Element.prototype,{setPointerCapture:{value:W},releasePointerCapture:{value:X},hasPointerCapture:{value:Y}})}
var m=["bubbles","cancelable","view","detail","screenX","screenY","clientX","clientY","ctrlKey","altKey","shiftKey","metaKey","button","relatedTarget","pageX","pageY"],n=[!1,!1,null,null,0,0,0,0,!1,!1,!1,!1,0,null,0,0],o=window.Map&&window.Map.prototype.forEach,p=o?Map:b;b.prototype={set:function(a,b){return void 0===b?this["delete"](a):(this.has(a)||this.size++,void(this.array[a]=b))},has:function(a){return void 0!==this.array[a]},"delete":function(a){this.has(a)&&(delete this.array[a],this.size--)},get:function(a){return this.array[a]},clear:function(){this.array.length=0,this.size=0},forEach:function(a,b){return this.array.forEach(function(c,d){a.call(b,c,d,this)},this)}};var q=["bubbles","cancelable","view","detail","screenX","screenY","clientX","clientY","ctrlKey","altKey","shiftKey","metaKey","button","relatedTarget","buttons","pointerId","width","height","pressure","tiltX","tiltY","pointerType","hwTimestamp","isPrimary","type","target","currentTarget","which","pageX","pageY","timeStamp"],r=[!1,!1,null,null,0,0,0,0,!1,!1,!1,!1,0,null,0,0,0,0,0,0,0,"",0,!1,"",null,null,0,0,0,0],s={pointerover:1,pointerout:1,pointerenter:1,pointerleave:1},t="undefined"!=typeof SVGElementInstance,u={pointermap:new p,eventMap:Object.create(null),captureInfo:Object.create(null),eventSources:Object.create(null),eventSourceList:[],registerSource:function(a,b){var c=b,d=c.events;d&&(d.forEach(function(a){c[a]&&(this.eventMap[a]=c[a].bind(c))},this),this.eventSources[a]=c,this.eventSourceList.push(c))},register:function(a){for(var b,c=this.eventSourceList.length,d=0;d<c&&(b=this.eventSourceList[d]);d++)
b.register.call(b,a)},unregister:function(a){for(var b,c=this.eventSourceList.length,d=0;d<c&&(b=this.eventSourceList[d]);d++)
b.unregister.call(b,a)},contains:function(a,b){try{return a.contains(b)}catch(c){return!1}},down:function(a){a.bubbles=!0,this.fireEvent("pointerdown",a)},move:function(a){a.bubbles=!0,this.fireEvent("pointermove",a)},up:function(a){a.bubbles=!0,this.fireEvent("pointerup",a)},enter:function(a){a.bubbles=!1,this.fireEvent("pointerenter",a)},leave:function(a){a.bubbles=!1,this.fireEvent("pointerleave",a)},over:function(a){a.bubbles=!0,this.fireEvent("pointerover",a)},out:function(a){a.bubbles=!0,this.fireEvent("pointerout",a)},cancel:function(a){a.bubbles=!0,this.fireEvent("pointercancel",a)},leaveOut:function(a){this.out(a),this.propagate(a,this.leave,!1)},enterOver:function(a){this.over(a),this.propagate(a,this.enter,!0)},eventHandler:function(a){if(!a._handledByPE){var b=a.type,c=this.eventMap&&this.eventMap[b];c&&c(a),a._handledByPE=!0}},listen:function(a,b){b.forEach(function(b){this.addEvent(a,b)},this)},unlisten:function(a,b){b.forEach(function(b){this.removeEvent(a,b)},this)},addEvent:function(a,b){a.addEventListener(b,this.boundHandler)},removeEvent:function(a,b){a.removeEventListener(b,this.boundHandler)},makeEvent:function(b,c){this.captureInfo[c.pointerId]&&(c.relatedTarget=null);var d=new a(b,c);return c.preventDefault&&(d.preventDefault=c.preventDefault),d._target=d._target||c.target,d},fireEvent:function(a,b){var c=this.makeEvent(a,b);return this.dispatchEvent(c)},cloneEvent:function(a){for(var b,c=Object.create(null),d=0;d<q.length;d++)b=q[d],c[b]=a[b]||r[d],!t||"target"!==b&&"relatedTarget"!==b||c[b]instanceof SVGElementInstance&&(c[b]=c[b].correspondingUseElement);return a.preventDefault&&(c.preventDefault=function(){a.preventDefault()}),c},getTarget:function(a){var b=this.captureInfo[a.pointerId];return b?a._target!==b&&a.type in s?void 0:b:a._target},propagate:function(a,b,c){for(var d=a.target,e=[];d!==document&&!d.contains(a.relatedTarget);) if(e.push(d),d=d.parentNode,!d)return;c&&e.reverse(),e.forEach(function(c){a.target=c,b.call(this,a)},this)},setCapture:function(b,c,d){this.captureInfo[b]&&this.releaseCapture(b,d),this.captureInfo[b]=c,this.implicitRelease=this.releaseCapture.bind(this,b,d),document.addEventListener("pointerup",this.implicitRelease),document.addEventListener("pointercancel",this.implicitRelease);var e=new a("gotpointercapture");e.pointerId=b,e._target=c,d||this.asyncDispatchEvent(e)},releaseCapture:function(b,c){var d=this.captureInfo[b];if(d){this.captureInfo[b]=void 0,document.removeEventListener("pointerup",this.implicitRelease),document.removeEventListener("pointercancel",this.implicitRelease);var e=new a("lostpointercapture");e.pointerId=b,e._target=d,c||this.asyncDispatchEvent(e)}},dispatchEvent:/*scope.external.dispatchEvent || */function(a){var b=this.getTarget(a);if(b)return b.dispatchEvent(a)},asyncDispatchEvent:function(a){requestAnimationFrame(this.dispatchEvent.bind(this,a))}};u.boundHandler=u.eventHandler.bind(u);var v={shadow:function(a){if(a)return a.shadowRoot||a.webkitShadowRoot},canTarget:function(a){return a&&Boolean(a.elementFromPoint)},targetingShadow:function(a){var b=this.shadow(a);if(this.canTarget(b))return b},olderShadow:function(a){var b=a.olderShadowRoot;if(!b){var c=a.querySelector("shadow");c&&(b=c.olderShadowRoot)}return b},allShadows:function(a){for(var b=[],c=this.shadow(a);c;)b.push(c),c=this.olderShadow(c);return b},searchRoot:function(a,b,c){if(a){var d,e,f=a.elementFromPoint(b,c);for(e=this.targetingShadow(f);e;){if(d=e.elementFromPoint(b,c)){var g=this.targetingShadow(d);return this.searchRoot(g,b,c)||d} e=this.olderShadow(e)} return f}},owner:function(a){
for(var b=a;b.parentNode;)b=b.parentNode;
return b.nodeType!==Node.DOCUMENT_NODE&&b.nodeType!==Node.DOCUMENT_FRAGMENT_NODE&&(b=document),b},findTarget:function(a){var b=a.clientX,c=a.clientY,d=this.owner(a.target);
return d.elementFromPoint(b,c)||(d=document),this.searchRoot(d,b,c)}},w=Array.prototype.forEach.call.bind(Array.prototype.forEach),x=Array.prototype.map.call.bind(Array.prototype.map),y=Array.prototype.slice.call.bind(Array.prototype.slice),z=Array.prototype.filter.call.bind(Array.prototype.filter),A=window.MutationObserver||window.WebKitMutationObserver,B="[touch-action]",C={subtree:!0,childList:!0,attributes:!0,attributeOldValue:!0,attributeFilter:["touch-action"]};c.prototype={watchSubtree:function(a){
//
this.observer&&v.canTarget(a)&&this.observer.observe(a,C)},enableOnSubtree:function(a){this.watchSubtree(a),a===document&&"complete"!==document.readyState?this.installOnLoad():this.installNewSubtree(a)},installNewSubtree:function(a){w(this.findElements(a),this.addElement,this)},findElements:function(a){return a.querySelectorAll?a.querySelectorAll(B):[]},removeElement:function(a){this.removeCallback(a)},addElement:function(a){this.addCallback(a)},elementChanged:function(a,b){this.changedCallback(a,b)},concatLists:function(a,b){return a.concat(y(b))},
installOnLoad:function(){document.addEventListener("readystatechange",function(){"complete"===document.readyState&&this.installNewSubtree(document)}.bind(this))},isElement:function(a){return a.nodeType===Node.ELEMENT_NODE},flattenMutationTree:function(a){
var b=x(a,this.findElements,this);
return b.push(z(a,this.isElement)),b.reduce(this.concatLists,[])},mutationWatcher:function(a){a.forEach(this.mutationHandler,this)},mutationHandler:function(a){if("childList"===a.type){var b=this.flattenMutationTree(a.addedNodes);b.forEach(this.addElement,this);var c=this.flattenMutationTree(a.removedNodes);c.forEach(this.removeElement,this)}else"attributes"===a.type&&this.elementChanged(a.target,a.oldValue)}};var D=["none","auto","pan-x","pan-y",{rule:"pan-x pan-y",selectors:["pan-x pan-y","pan-y pan-x"]}],E="",F=window.PointerEvent||window.MSPointerEvent,G=!window.ShadowDOMPolyfill&&document.head.createShadowRoot,H=u.pointermap,I=25,J=[1,4,2,8,16],K=!1;try{K=1===new MouseEvent("test",{buttons:1}).buttons}catch(L){}
var M,N={POINTER_ID:1,POINTER_TYPE:"mouse",events:["mousedown","mousemove","mouseup","mouseover","mouseout"],register:function(a){u.listen(a,this.events)},unregister:function(a){u.unlisten(a,this.events)},lastTouches:[],
isEventSimulatedFromTouch:function(a){for(var b,c=this.lastTouches,d=a.clientX,e=a.clientY,f=0,g=c.length;f<g&&(b=c[f]);f++){
var h=Math.abs(d-b.x),i=Math.abs(e-b.y);if(h<=I&&i<=I)return!0}},prepareEvent:function(a){var b=u.cloneEvent(a),c=b.preventDefault;return b.preventDefault=function(){a.preventDefault(),c()},b.pointerId=this.POINTER_ID,b.isPrimary=!0,b.pointerType=this.POINTER_TYPE,b},prepareButtonsForMove:function(a,b){var c=H.get(this.POINTER_ID);
0!==b.which&&c?a.buttons=c.buttons:a.buttons=0,b.buttons=a.buttons},mousedown:function(a){if(!this.isEventSimulatedFromTouch(a)){var b=H.get(this.POINTER_ID),c=this.prepareEvent(a);K||(c.buttons=J[c.button],b&&(c.buttons|=b.buttons),a.buttons=c.buttons),H.set(this.POINTER_ID,a),b&&0!==b.buttons?u.move(c):u.down(c)}},mousemove:function(a){if(!this.isEventSimulatedFromTouch(a)){var b=this.prepareEvent(a);K||this.prepareButtonsForMove(b,a),b.button=-1,H.set(this.POINTER_ID,a),u.move(b)}},mouseup:function(a){if(!this.isEventSimulatedFromTouch(a)){var b=H.get(this.POINTER_ID),c=this.prepareEvent(a);if(!K){var d=J[c.button];
c.buttons=b?b.buttons&~d:0,a.buttons=c.buttons}H.set(this.POINTER_ID,a),
c.buttons&=~J[c.button],0===c.buttons?u.up(c):u.move(c)}},mouseover:function(a){if(!this.isEventSimulatedFromTouch(a)){var b=this.prepareEvent(a);K||this.prepareButtonsForMove(b,a),b.button=-1,H.set(this.POINTER_ID,a),u.enterOver(b)}},mouseout:function(a){if(!this.isEventSimulatedFromTouch(a)){var b=this.prepareEvent(a);K||this.prepareButtonsForMove(b,a),b.button=-1,u.leaveOut(b)}},cancel:function(a){var b=this.prepareEvent(a);u.cancel(b),this.deactivateMouse()},deactivateMouse:function(){H["delete"](this.POINTER_ID)}},O=u.captureInfo,P=v.findTarget.bind(v),Q=v.allShadows.bind(v),R=u.pointermap,S=2500,T=200,U="touch-action",V={events:["touchstart","touchmove","touchend","touchcancel"],register:function(a){M.enableOnSubtree(a)},unregister:function(){},elementAdded:function(a){var b=a.getAttribute(U),c=this.touchActionToScrollType(b);c&&(a._scrollType=c,u.listen(a,this.events),
Q(a).forEach(function(a){a._scrollType=c,u.listen(a,this.events)},this))},elementRemoved:function(a){a._scrollType=void 0,u.unlisten(a,this.events),
Q(a).forEach(function(a){a._scrollType=void 0,u.unlisten(a,this.events)},this)},elementChanged:function(a,b){var c=a.getAttribute(U),d=this.touchActionToScrollType(c),e=this.touchActionToScrollType(b);
d&&e?(a._scrollType=d,Q(a).forEach(function(a){a._scrollType=d},this)):e?this.elementRemoved(a):d&&this.elementAdded(a)},scrollTypes:{EMITTER:"none",XSCROLLER:"pan-x",YSCROLLER:"pan-y",SCROLLER:/^(?:pan-x pan-y)|(?:pan-y pan-x)|auto$/},touchActionToScrollType:function(a){var b=a,c=this.scrollTypes;return"none"===b?"none":b===c.XSCROLLER?"X":b===c.YSCROLLER?"Y":c.SCROLLER.exec(b)?"XY":void 0},POINTER_TYPE:"touch",firstTouch:null,isPrimaryTouch:function(a){return this.firstTouch===a.identifier},setPrimaryTouch:function(a){
(0===R.size||1===R.size&&R.has(1))&&(this.firstTouch=a.identifier,this.firstXY={X:a.clientX,Y:a.clientY},this.scrolling=!1,this.cancelResetClickCount())},removePrimaryPointer:function(a){a.isPrimary&&(this.firstTouch=null,this.firstXY=null,this.resetClickCount())},clickCount:0,resetId:null,resetClickCount:function(){var a=function(){this.clickCount=0,this.resetId=null}.bind(this);this.resetId=setTimeout(a,T)},cancelResetClickCount:function(){this.resetId&&clearTimeout(this.resetId)},typeToButtons:function(a){var b=0;return"touchstart"!==a&&"touchmove"!==a||(b=1),b},touchToPointer:function(a){var b=this.currentTouchEvent,c=u.cloneEvent(a),d=c.pointerId=a.identifier+2;c.target=O[d]||P(c),c.bubbles=!0,c.cancelable=!0,c.detail=this.clickCount,c.button=0,c.buttons=this.typeToButtons(b.type),c.width=2*(a.radiusX||a.webkitRadiusX||0),c.height=2*(a.radiusY||a.webkitRadiusY||0),c.pressure=a.force||a.webkitForce||.5,c.isPrimary=this.isPrimaryTouch(a),c.pointerType=this.POINTER_TYPE,
c.altKey=b.altKey,c.ctrlKey=b.ctrlKey,c.metaKey=b.metaKey,c.shiftKey=b.shiftKey;
var e=this;return c.preventDefault=function(){e.scrolling=!1,e.firstXY=null,b.preventDefault()},c},processTouches:function(a,b){var c=a.changedTouches;this.currentTouchEvent=a;for(var d,e=0;e<c.length;e++)d=c[e],b.call(this,this.touchToPointer(d))},
shouldScroll:function(a){if(this.firstXY){var b,c=a.currentTarget._scrollType;if("none"===c)
b=!1;else if("XY"===c)
b=!0;else{var d=a.changedTouches[0],e=c,f="Y"===c?"X":"Y",g=Math.abs(d["client"+e]-this.firstXY[e]),h=Math.abs(d["client"+f]-this.firstXY[f]);
b=g>=h}return this.firstXY=null,b}},findTouch:function(a,b){for(var c,d=0,e=a.length;d<e&&(c=a[d]);d++)if(c.identifier===b)return!0},
vacuumTouches:function(a){var b=a.touches;
if(R.size>=b.length){var c=[];R.forEach(function(a,d){
if(1!==d&&!this.findTouch(b,d-2)){var e=a.out;c.push(e)}},this),c.forEach(this.cancelOut,this)}},touchstart:function(a){this.vacuumTouches(a),this.setPrimaryTouch(a.changedTouches[0]),this.dedupSynthMouse(a),this.scrolling||(this.clickCount++,this.processTouches(a,this.overDown))},overDown:function(a){R.set(a.pointerId,{target:a.target,out:a,outTarget:a.target}),u.enterOver(a),u.down(a)},touchmove:function(a){this.scrolling||(this.shouldScroll(a)?(this.scrolling=!0,this.touchcancel(a)):(a.preventDefault(),this.processTouches(a,this.moveOverOut)))},moveOverOut:function(a){var b=a,c=R.get(b.pointerId);
if(c){var d=c.out,e=c.outTarget;u.move(b),d&&e!==b.target&&(d.relatedTarget=b.target,b.relatedTarget=e,
d.target=e,b.target?(u.leaveOut(d),u.enterOver(b)):(
b.target=e,b.relatedTarget=null,this.cancelOut(b))),c.out=b,c.outTarget=b.target}},touchend:function(a){this.dedupSynthMouse(a),this.processTouches(a,this.upOut)},upOut:function(a){this.scrolling||(u.up(a),u.leaveOut(a)),this.cleanUpPointer(a)},touchcancel:function(a){this.processTouches(a,this.cancelOut)},cancelOut:function(a){u.cancel(a),u.leaveOut(a),this.cleanUpPointer(a)},cleanUpPointer:function(a){R["delete"](a.pointerId),this.removePrimaryPointer(a)},
dedupSynthMouse:function(a){var b=N.lastTouches,c=a.changedTouches[0];
if(this.isPrimaryTouch(c)){
var d={x:c.clientX,y:c.clientY};b.push(d);var e=function(a,b){var c=a.indexOf(b);c>-1&&a.splice(c,1)}.bind(null,b,d);setTimeout(e,S)}}};M=new c(V.elementAdded,V.elementRemoved,V.elementChanged,V);var W,X,Y,Z=u.pointermap,$=window.MSPointerEvent&&"number"==typeof window.MSPointerEvent.MSPOINTER_TYPE_MOUSE,_={events:["MSPointerDown","MSPointerMove","MSPointerUp","MSPointerOut","MSPointerOver","MSPointerCancel","MSGotPointerCapture","MSLostPointerCapture"],register:function(a){u.listen(a,this.events)},unregister:function(a){u.unlisten(a,this.events)},POINTER_TYPES:["","unavailable","touch","pen","mouse"],prepareEvent:function(a){var b=a;return $&&(b=u.cloneEvent(a),b.pointerType=this.POINTER_TYPES[a.pointerType]),b},cleanup:function(a){Z["delete"](a)},MSPointerDown:function(a){Z.set(a.pointerId,a);var b=this.prepareEvent(a);u.down(b)},MSPointerMove:function(a){var b=this.prepareEvent(a);u.move(b)},MSPointerUp:function(a){var b=this.prepareEvent(a);u.up(b),this.cleanup(a.pointerId)},MSPointerOut:function(a){var b=this.prepareEvent(a);u.leaveOut(b)},MSPointerOver:function(a){var b=this.prepareEvent(a);u.enterOver(b)},MSPointerCancel:function(a){var b=this.prepareEvent(a);u.cancel(b),this.cleanup(a.pointerId)},MSLostPointerCapture:function(a){var b=u.makeEvent("lostpointercapture",a);u.dispatchEvent(b)},MSGotPointerCapture:function(a){var b=u.makeEvent("gotpointercapture",a);u.dispatchEvent(b)}},aa=window.navigator;aa.msPointerEnabled?(W=function(a){i(a),j(this),k(a)&&(u.setCapture(a,this,!0),this.msSetPointerCapture(a))},X=function(a){i(a),u.releaseCapture(a,!0),this.msReleasePointerCapture(a)}):(W=function(a){i(a),j(this),k(a)&&u.setCapture(a,this)},X=function(a){i(a),u.releaseCapture(a)}),Y=function(a){return!!u.captureInfo[a]},g(),h(),l();var ba={dispatcher:u,Installer:c,PointerEvent:a,PointerMap:p,targetFinding:v};return ba});
///////////////////////////////////////////////
///////////////////////////////////////////////
var config = {"show_fabrication": false, "redraw_on_drag": true, "highlight_pin1": false, "extra_fields": [], "dark_mode": false, "bom_view": "left-right", "board_rotation": 0, "checkboxes": "Sourced,Placed", "show_silkscreen": true, "show_pads": true, "layer_view": "FB"}
///////////////////////////////////////////////
///////////////////////////////////////////////
var pcbdata = {"font_data": {" ": {"l": [], "w": 0.7619047619047619}, "+": {"l": [[[0.23809523809523814, -0.42857142857142855], [1.0, -0.42857142857142855]], [[0.6190476190476191, -0.047619047619047616], [0.6190476190476191, -0.8095238095238095]]], "w": 1.2380952380952381}, "-": {"l": [[[0.23809523809523814, -0.42857142857142855], [1.0, -0.42857142857142855]]], "w": 1.2380952380952381}, "1": {"l": [[[0.7619047619047619, -0.047619047619047616], [0.19047619047619047, -0.047619047619047616]], [[0.47619047619047616, -0.047619047619047616], [0.47619047619047616, -1.0476190476190474], [0.38095238095238093, -0.9047619047619047], [0.2857142857142857, -0.8095238095238095], [0.19047619047619047, -0.7619047619047619]]], "w": 0.9523809523809523}, "0": {"l": [[[0.42857142857142855, -1.0476190476190474], [0.5238095238095237, -1.0476190476190474], [0.6190476190476191, -1.0], [0.6666666666666666, -0.9523809523809523], [0.7142857142857142, -0.8571428571428571], [0.7619047619047619, -0.6666666666666666], [0.7619047619047619, -0.42857142857142855], [0.7142857142857142, -0.23809523809523808], [0.6666666666666666, -0.14285714285714285], [0.6190476190476191, -0.09523809523809523], [0.5238095238095237, -0.047619047619047616], [0.42857142857142855, -0.047619047619047616], [0.3333333333333333, -0.09523809523809523], [0.2857142857142857, -0.14285714285714285], [0.23809523809523808, -0.23809523809523808], [0.19047619047619047, -0.42857142857142855], [0.19047619047619047, -0.6666666666666666], [0.23809523809523808, -0.8571428571428571], [0.2857142857142857, -0.9523809523809523], [0.3333333333333333, -1.0], [0.42857142857142855, -1.0476190476190474]]], "w": 0.9523809523809523}, "3": {"l": [[[0.14285714285714285, -1.0476190476190474], [0.7619047619047619, -1.0476190476190474], [0.42857142857142855, -0.6666666666666666], [0.5714285714285714, -0.6666666666666666], [0.6666666666666666, -0.6190476190476191], [0.7142857142857142, -0.5714285714285714], [0.7619047619047619, -0.47619047619047616], [0.7619047619047619, -0.23809523809523808], [0.7142857142857142, -0.14285714285714285], [0.6666666666666666, -0.09523809523809523], [0.5714285714285714, -0.047619047619047616], [0.2857142857142857, -0.047619047619047616], [0.19047619047619047, -0.09523809523809523], [0.14285714285714285, -0.14285714285714285]]], "w": 0.9523809523809523}, "2": {"l": [[[0.19047619047619047, -0.9523809523809523], [0.23809523809523808, -1.0], [0.3333333333333333, -1.0476190476190474], [0.5714285714285714, -1.0476190476190474], [0.6666666666666666, -1.0], [0.7142857142857142, -0.9523809523809523], [0.7619047619047619, -0.8571428571428571], [0.7619047619047619, -0.7619047619047619], [0.7142857142857142, -0.6190476190476191], [0.14285714285714285, -0.047619047619047616], [0.7619047619047619, -0.047619047619047616]]], "w": 0.9523809523809523}, "5": {"l": [[[0.7142857142857142, -1.0476190476190474], [0.23809523809523808, -1.0476190476190474], [0.19047619047619047, -0.5714285714285714], [0.23809523809523808, -0.6190476190476191], [0.3333333333333333, -0.6666666666666666], [0.5714285714285714, -0.6666666666666666], [0.6666666666666666, -0.6190476190476191], [0.7142857142857142, -0.5714285714285714], [0.7619047619047619, -0.47619047619047616], [0.7619047619047619, -0.23809523809523808], [0.7142857142857142, -0.14285714285714285], [0.6666666666666666, -0.09523809523809523], [0.5714285714285714, -0.047619047619047616], [0.3333333333333333, -0.047619047619047616], [0.23809523809523808, -0.09523809523809523], [0.19047619047619047, -0.14285714285714285]]], "w": 0.9523809523809523}, "4": {"l": [[[0.6666666666666666, -0.7142857142857142], [0.6666666666666666, -0.047619047619047616]], [[0.42857142857142855, -1.0952380952380951], [0.19047619047619047, -0.38095238095238093], [0.8095238095238095, -0.38095238095238093]]], "w": 0.9523809523809523}, "7": {"l": [[[0.14285714285714285, -1.0476190476190474], [0.8095238095238095, -1.0476190476190474], [0.38095238095238093, -0.047619047619047616]]], "w": 0.9523809523809523}, "6": {"l": [[[0.6666666666666666, -1.0476190476190474], [0.47619047619047616, -1.0476190476190474], [0.38095238095238093, -1.0], [0.3333333333333333, -0.9523809523809523], [0.23809523809523808, -0.8095238095238095], [0.19047619047619047, -0.6190476190476191], [0.19047619047619047, -0.23809523809523808], [0.23809523809523808, -0.14285714285714285], [0.2857142857142857, -0.09523809523809523], [0.38095238095238093, -0.047619047619047616], [0.5714285714285714, -0.047619047619047616], [0.6666666666666666, -0.09523809523809523], [0.7142857142857142, -0.14285714285714285], [0.7619047619047619, -0.23809523809523808], [0.7619047619047619, -0.47619047619047616], [0.7142857142857142, -0.5714285714285714], [0.6666666666666666, -0.6190476190476191], [0.5714285714285714, -0.6666666666666666], [0.38095238095238093, -0.6666666666666666], [0.2857142857142857, -0.6190476190476191], [0.23809523809523808, -0.5714285714285714], [0.19047619047619047, -0.47619047619047616]]], "w": 0.9523809523809523}, "9": {"l": [[[0.2857142857142857, -0.047619047619047616], [0.47619047619047616, -0.047619047619047616], [0.5714285714285714, -0.09523809523809523], [0.6190476190476191, -0.14285714285714285], [0.7142857142857142, -0.2857142857142857], [0.7619047619047619, -0.47619047619047616], [0.7619047619047619, -0.8571428571428571], [0.7142857142857142, -0.9523809523809523], [0.6666666666666666, -1.0], [0.5714285714285714, -1.0476190476190474], [0.38095238095238093, -1.0476190476190474], [0.2857142857142857, -1.0], [0.23809523809523808, -0.9523809523809523], [0.19047619047619047, -0.8571428571428571], [0.19047619047619047, -0.6190476190476191], [0.23809523809523808, -0.5238095238095237], [0.2857142857142857, -0.47619047619047616], [0.38095238095238093, -0.42857142857142855], [0.5714285714285714, -0.42857142857142855], [0.6666666666666666, -0.47619047619047616], [0.7142857142857142, -0.5238095238095237], [0.7619047619047619, -0.6190476190476191]]], "w": 0.9523809523809523}, "8": {"l": [[[0.38095238095238093, -0.6190476190476191], [0.2857142857142857, -0.6666666666666666], [0.23809523809523808, -0.7142857142857142], [0.19047619047619047, -0.8095238095238095], [0.19047619047619047, -0.8571428571428571], [0.23809523809523808, -0.9523809523809523], [0.2857142857142857, -1.0], [0.38095238095238093, -1.0476190476190474], [0.5714285714285714, -1.0476190476190474], [0.6666666666666666, -1.0], [0.7142857142857142, -0.9523809523809523], [0.7619047619047619, -0.8571428571428571], [0.7619047619047619, -0.8095238095238095], [0.7142857142857142, -0.7142857142857142], [0.6666666666666666, -0.6666666666666666], [0.5714285714285714, -0.6190476190476191], [0.38095238095238093, -0.6190476190476191], [0.2857142857142857, -0.5714285714285714], [0.23809523809523808, -0.5238095238095237], [0.19047619047619047, -0.42857142857142855], [0.19047619047619047, -0.23809523809523808], [0.23809523809523808, -0.14285714285714285], [0.2857142857142857, -0.09523809523809523], [0.38095238095238093, -0.047619047619047616], [0.5714285714285714, -0.047619047619047616], [0.6666666666666666, -0.09523809523809523], [0.7142857142857142, -0.14285714285714285], [0.7619047619047619, -0.23809523809523808], [0.7619047619047619, -0.42857142857142855], [0.7142857142857142, -0.5238095238095237], [0.6666666666666666, -0.5714285714285714], [0.5714285714285714, -0.6190476190476191]]], "w": 0.9523809523809523}, ":": {"l": [[[0.23809523809523808, -0.14285714285714285], [0.2857142857142857, -0.09523809523809523], [0.23809523809523808, -0.047619047619047616], [0.19047619047619047, -0.09523809523809523], [0.23809523809523808, -0.14285714285714285], [0.23809523809523808, -0.047619047619047616]], [[0.23809523809523808, -0.6666666666666666], [0.2857142857142857, -0.6190476190476191], [0.23809523809523808, -0.5714285714285714], [0.19047619047619047, -0.6190476190476191], [0.23809523809523808, -0.6666666666666666], [0.23809523809523808, -0.5714285714285714]]], "w": 0.47619047619047616}, "=": {"l": [[[0.23809523809523814, -0.5714285714285714], [1.0, -0.5714285714285714]], [[1.0, -0.2857142857142857], [0.23809523809523814, -0.2857142857142857]]], "w": 1.2380952380952381}, "A": {"l": [[[0.19047619047619047, -0.3333333333333333], [0.6666666666666666, -0.3333333333333333]], [[0.09523809523809523, -0.047619047619047616], [0.42857142857142855, -1.0476190476190474], [0.7619047619047619, -0.047619047619047616]]], "w": 0.8571428571428571}, "C": {"l": [[[0.8095238095238095, -0.14285714285714285], [0.7619047619047619, -0.09523809523809523], [0.6190476190476191, -0.047619047619047616], [0.5238095238095237, -0.047619047619047616], [0.38095238095238093, -0.09523809523809523], [0.2857142857142857, -0.19047619047619047], [0.23809523809523808, -0.2857142857142857], [0.19047619047619047, -0.47619047619047616], [0.19047619047619047, -0.6190476190476191], [0.23809523809523808, -0.8095238095238095], [0.2857142857142857, -0.9047619047619047], [0.38095238095238093, -1.0], [0.5238095238095237, -1.0476190476190474], [0.6190476190476191, -1.0476190476190474], [0.7619047619047619, -1.0], [0.8095238095238095, -0.9523809523809523]]], "w": 1.0}, "B": {"l": [[[0.5714285714285714, -0.5714285714285714], [0.7142857142857142, -0.5238095238095237], [0.7619047619047619, -0.47619047619047616], [0.8095238095238094, -0.38095238095238093], [0.8095238095238094, -0.23809523809523808], [0.7619047619047619, -0.14285714285714285], [0.7142857142857142, -0.09523809523809523], [0.619047619047619, -0.047619047619047616], [0.23809523809523803, -0.047619047619047616], [0.23809523809523803, -1.0476190476190474], [0.5714285714285714, -1.0476190476190474], [0.6666666666666665, -1.0], [0.7142857142857142, -0.9523809523809523], [0.7619047619047619, -0.8571428571428571], [0.7619047619047619, -0.7619047619047619], [0.7142857142857142, -0.6666666666666666], [0.6666666666666665, -0.6190476190476191], [0.5714285714285714, -0.5714285714285714], [0.23809523809523803, -0.5714285714285714]]], "w": 1.0}, "E": {"l": [[[0.23809523809523808, -0.5714285714285714], [0.5714285714285714, -0.5714285714285714]], [[0.7142857142857142, -0.047619047619047616], [0.23809523809523808, -0.047619047619047616], [0.23809523809523808, -1.0476190476190474], [0.7142857142857142, -1.0476190476190474]]], "w": 0.9047619047619047}, "D": {"l": [[[0.23809523809523803, -0.047619047619047616], [0.23809523809523803, -1.0476190476190474], [0.4761904761904761, -1.0476190476190474], [0.619047619047619, -1.0], [0.7142857142857142, -0.9047619047619047], [0.7619047619047619, -0.8095238095238095], [0.8095238095238094, -0.6190476190476191], [0.8095238095238094, -0.47619047619047616], [0.7619047619047619, -0.2857142857142857], [0.7142857142857142, -0.19047619047619047], [0.619047619047619, -0.09523809523809523], [0.4761904761904761, -0.047619047619047616], [0.23809523809523803, -0.047619047619047616]]], "w": 1.0}, "G": {"l": [[[0.7619047619047619, -1.0], [0.6666666666666666, -1.0476190476190474], [0.5238095238095237, -1.0476190476190474], [0.38095238095238093, -1.0], [0.2857142857142857, -0.9047619047619047], [0.23809523809523808, -0.8095238095238095], [0.19047619047619047, -0.6190476190476191], [0.19047619047619047, -0.47619047619047616], [0.23809523809523808, -0.2857142857142857], [0.2857142857142857, -0.19047619047619047], [0.38095238095238093, -0.09523809523809523], [0.5238095238095237, -0.047619047619047616], [0.6190476190476191, -0.047619047619047616], [0.7619047619047619, -0.09523809523809523], [0.8095238095238095, -0.14285714285714285], [0.8095238095238095, -0.47619047619047616], [0.6190476190476191, -0.47619047619047616]]], "w": 1.0}, "F": {"l": [[[0.5714285714285714, -0.5714285714285714], [0.23809523809523808, -0.5714285714285714]], [[0.23809523809523808, -0.047619047619047616], [0.23809523809523808, -1.0476190476190474], [0.7142857142857142, -1.0476190476190474]]], "w": 0.8571428571428571}, "H": {"l": [[[0.23809523809523803, -0.047619047619047616], [0.23809523809523803, -1.0476190476190474]], [[0.23809523809523803, -0.5714285714285714], [0.8095238095238094, -0.5714285714285714]], [[0.8095238095238094, -0.047619047619047616], [0.8095238095238094, -1.0476190476190474]]], "w": 1.0476190476190474}, "K": {"l": [[[0.23809523809523803, -0.047619047619047616], [0.23809523809523803, -1.0476190476190474]], [[0.8095238095238094, -0.047619047619047616], [0.3809523809523809, -0.6190476190476191]], [[0.8095238095238094, -1.0476190476190474], [0.23809523809523803, -0.47619047619047616]]], "w": 1.0}, "J": {"l": [[[0.5238095238095237, -1.0476190476190474], [0.5238095238095237, -0.3333333333333333], [0.47619047619047616, -0.19047619047619047], [0.38095238095238093, -0.09523809523809523], [0.23809523809523808, -0.047619047619047616], [0.14285714285714285, -0.047619047619047616]]], "w": 0.7619047619047619}, "M": {"l": [[[0.23809523809523808, -0.047619047619047616], [0.23809523809523808, -1.0476190476190474], [0.5714285714285714, -0.3333333333333333], [0.9047619047619047, -1.0476190476190474], [0.9047619047619047, -0.047619047619047616]]], "w": 1.1428571428571428}, "L": {"l": [[[0.7142857142857142, -0.047619047619047616], [0.23809523809523808, -0.047619047619047616], [0.23809523809523808, -1.0476190476190474]]], "w": 0.8095238095238095}, "N": {"l": [[[0.23809523809523803, -0.047619047619047616], [0.23809523809523803, -1.0476190476190474], [0.8095238095238094, -0.047619047619047616], [0.8095238095238094, -1.0476190476190474]]], "w": 1.0476190476190474}, "Q": {"l": [[[0.9047619047619047, 0.047619047619047616], [0.8095238095238094, 0.0], [0.7142857142857142, -0.09523809523809523], [0.5714285714285714, -0.23809523809523808], [0.4761904761904761, -0.2857142857142857], [0.3809523809523809, -0.2857142857142857]], [[0.4285714285714285, -0.047619047619047616], [0.33333333333333326, -0.09523809523809523], [0.23809523809523803, -0.19047619047619047], [0.1904761904761904, -0.38095238095238093], [0.1904761904761904, -0.7142857142857142], [0.23809523809523803, -0.9047619047619047], [0.33333333333333326, -1.0], [0.4285714285714285, -1.0476190476190474], [0.619047619047619, -1.0476190476190474], [0.7142857142857142, -1.0], [0.8095238095238094, -0.9047619047619047], [0.857142857142857, -0.7142857142857142], [0.857142857142857, -0.38095238095238093], [0.8095238095238094, -0.19047619047619047], [0.7142857142857142, -0.09523809523809523], [0.619047619047619, -0.047619047619047616], [0.4285714285714285, -0.047619047619047616]]], "w": 1.0476190476190474}, "P": {"l": [[[0.23809523809523803, -0.047619047619047616], [0.23809523809523803, -1.0476190476190474], [0.619047619047619, -1.0476190476190474], [0.7142857142857142, -1.0], [0.7619047619047619, -0.9523809523809523], [0.8095238095238094, -0.8571428571428571], [0.8095238095238094, -0.7142857142857142], [0.7619047619047619, -0.6190476190476191], [0.7142857142857142, -0.5714285714285714], [0.619047619047619, -0.5238095238095237], [0.23809523809523803, -0.5238095238095237]]], "w": 1.0}, "S": {"l": [[[0.19047619047619047, -0.09523809523809523], [0.3333333333333333, -0.047619047619047616], [0.5714285714285714, -0.047619047619047616], [0.6666666666666666, -0.09523809523809523], [0.7142857142857142, -0.14285714285714285], [0.7619047619047619, -0.23809523809523808], [0.7619047619047619, -0.3333333333333333], [0.7142857142857142, -0.42857142857142855], [0.6666666666666666, -0.47619047619047616], [0.5714285714285714, -0.5238095238095237], [0.38095238095238093, -0.5714285714285714], [0.2857142857142857, -0.6190476190476191], [0.23809523809523808, -0.6666666666666666], [0.19047619047619047, -0.7619047619047619], [0.19047619047619047, -0.8571428571428571], [0.23809523809523808, -0.9523809523809523], [0.2857142857142857, -1.0], [0.38095238095238093, -1.0476190476190474], [0.6190476190476191, -1.0476190476190474], [0.7619047619047619, -1.0]]], "w": 0.9523809523809523}, "R": {"l": [[[0.8095238095238094, -0.047619047619047616], [0.4761904761904761, -0.5238095238095237]], [[0.23809523809523803, -0.047619047619047616], [0.23809523809523803, -1.0476190476190474], [0.619047619047619, -1.0476190476190474], [0.7142857142857142, -1.0], [0.7619047619047619, -0.9523809523809523], [0.8095238095238094, -0.8571428571428571], [0.8095238095238094, -0.7142857142857142], [0.7619047619047619, -0.6190476190476191], [0.7142857142857142, -0.5714285714285714], [0.619047619047619, -0.5238095238095237], [0.23809523809523803, -0.5238095238095237]]], "w": 1.0}, "T": {"l": [[[0.09523809523809523, -1.0476190476190474], [0.6666666666666666, -1.0476190476190474]], [[0.38095238095238093, -0.047619047619047616], [0.38095238095238093, -1.0476190476190474]]], "w": 0.7619047619047619}, "W": {"l": [[[0.14285714285714285, -1.0476190476190474], [0.38095238095238093, -0.047619047619047616], [0.5714285714285714, -0.7619047619047619], [0.7619047619047619, -0.047619047619047616], [1.0, -1.0476190476190474]]], "w": 1.1428571428571428}, "V": {"l": [[[0.09523809523809523, -1.0476190476190474], [0.42857142857142855, -0.047619047619047616], [0.7619047619047619, -1.0476190476190474]]], "w": 0.8571428571428571}, "X": {"l": [[[0.14285714285714285, -1.0476190476190474], [0.8095238095238095, -0.047619047619047616]], [[0.8095238095238095, -1.0476190476190474], [0.14285714285714285, -0.047619047619047616]]], "w": 0.9523809523809523}, "_": {"l": [[[0.0, 0.047619047619047616], [0.7619047619047619, 0.047619047619047616]]], "w": 0.7619047619047619}, "a": {"l": [[[0.6666666666666666, -0.047619047619047616], [0.6666666666666666, -0.5714285714285714], [0.6190476190476191, -0.6666666666666666], [0.5238095238095237, -0.7142857142857142], [0.3333333333333333, -0.7142857142857142], [0.23809523809523808, -0.6666666666666666]], [[0.6666666666666666, -0.09523809523809523], [0.5714285714285714, -0.047619047619047616], [0.3333333333333333, -0.047619047619047616], [0.23809523809523808, -0.09523809523809523], [0.19047619047619047, -0.19047619047619047], [0.19047619047619047, -0.2857142857142857], [0.23809523809523808, -0.38095238095238093], [0.3333333333333333, -0.42857142857142855], [0.5714285714285714, -0.42857142857142855], [0.6666666666666666, -0.47619047619047616]]], "w": 0.9047619047619047}, "c": {"l": [[[0.6666666666666666, -0.09523809523809523], [0.5714285714285714, -0.047619047619047616], [0.38095238095238093, -0.047619047619047616], [0.2857142857142857, -0.09523809523809523], [0.23809523809523808, -0.14285714285714285], [0.19047619047619047, -0.23809523809523808], [0.19047619047619047, -0.5238095238095237], [0.23809523809523808, -0.6190476190476191], [0.2857142857142857, -0.6666666666666666], [0.38095238095238093, -0.7142857142857142], [0.5714285714285714, -0.7142857142857142], [0.6666666666666666, -0.6666666666666666]]], "w": 0.8571428571428571}, "b": {"l": [[[0.23809523809523808, -0.047619047619047616], [0.23809523809523808, -1.0476190476190474]], [[0.23809523809523808, -0.6666666666666666], [0.3333333333333333, -0.7142857142857142], [0.5238095238095237, -0.7142857142857142], [0.6190476190476191, -0.6666666666666666], [0.6666666666666666, -0.6190476190476191], [0.7142857142857142, -0.5238095238095237], [0.7142857142857142, -0.23809523809523808], [0.6666666666666666, -0.14285714285714285], [0.6190476190476191, -0.09523809523809523], [0.5238095238095237, -0.047619047619047616], [0.3333333333333333, -0.047619047619047616], [0.23809523809523808, -0.09523809523809523]]], "w": 0.9047619047619047}, "e": {"l": [[[0.6190476190476191, -0.09523809523809523], [0.5238095238095237, -0.047619047619047616], [0.3333333333333333, -0.047619047619047616], [0.23809523809523808, -0.09523809523809523], [0.19047619047619047, -0.19047619047619047], [0.19047619047619047, -0.5714285714285714], [0.23809523809523808, -0.6666666666666666], [0.3333333333333333, -0.7142857142857142], [0.5238095238095237, -0.7142857142857142], [0.6190476190476191, -0.6666666666666666], [0.6666666666666666, -0.5714285714285714], [0.6666666666666666, -0.47619047619047616], [0.19047619047619047, -0.38095238095238093]]], "w": 0.8571428571428571}, "d": {"l": [[[0.6666666666666666, -0.047619047619047616], [0.6666666666666666, -1.0476190476190474]], [[0.6666666666666666, -0.09523809523809523], [0.5714285714285714, -0.047619047619047616], [0.38095238095238093, -0.047619047619047616], [0.2857142857142857, -0.09523809523809523], [0.23809523809523808, -0.14285714285714285], [0.19047619047619047, -0.23809523809523808], [0.19047619047619047, -0.5238095238095237], [0.23809523809523808, -0.6190476190476191], [0.2857142857142857, -0.6666666666666666], [0.38095238095238093, -0.7142857142857142], [0.5714285714285714, -0.7142857142857142], [0.6666666666666666, -0.6666666666666666]]], "w": 0.9047619047619047}, "g": {"l": [[[0.6666666666666666, -0.7142857142857142], [0.6666666666666666, 0.09523809523809523], [0.6190476190476191, 0.19047619047619047], [0.5714285714285714, 0.23809523809523808], [0.47619047619047616, 0.2857142857142857], [0.3333333333333333, 0.2857142857142857], [0.23809523809523808, 0.23809523809523808]], [[0.6666666666666666, -0.09523809523809523], [0.5714285714285714, -0.047619047619047616], [0.38095238095238093, -0.047619047619047616], [0.2857142857142857, -0.09523809523809523], [0.23809523809523808, -0.14285714285714285], [0.19047619047619047, -0.23809523809523808], [0.19047619047619047, -0.5238095238095237], [0.23809523809523808, -0.6190476190476191], [0.2857142857142857, -0.6666666666666666], [0.38095238095238093, -0.7142857142857142], [0.5714285714285714, -0.7142857142857142], [0.6666666666666666, -0.6666666666666666]]], "w": 0.9047619047619047}, "f": {"l": [[[0.09523809523809523, -0.7142857142857142], [0.47619047619047616, -0.7142857142857142]], [[0.23809523809523808, -0.047619047619047616], [0.23809523809523808, -0.9047619047619047], [0.2857142857142857, -1.0], [0.38095238095238093, -1.0476190476190474], [0.47619047619047616, -1.0476190476190474]]], "w": 0.5714285714285714}, "i": {"l": [[[0.23809523809523808, -0.047619047619047616], [0.23809523809523808, -0.7142857142857142]], [[0.23809523809523808, -1.0476190476190474], [0.19047619047619047, -1.0], [0.23809523809523808, -0.9523809523809523], [0.2857142857142857, -1.0], [0.23809523809523808, -1.0476190476190474], [0.23809523809523808, -0.9523809523809523]]], "w": 0.47619047619047616}, "k": {"l": [[[0.23809523809523808, -0.047619047619047616], [0.23809523809523808, -1.0476190476190474]], [[0.3333333333333333, -0.42857142857142855], [0.6190476190476191, -0.047619047619047616]], [[0.6190476190476191, -0.7142857142857142], [0.23809523809523808, -0.3333333333333333]]], "w": 0.8095238095238095}, "l": {"l": [[[0.38095238095238093, -0.047619047619047616], [0.2857142857142857, -0.09523809523809523], [0.23809523809523808, -0.19047619047619047], [0.23809523809523808, -1.0476190476190474]]], "w": 0.5238095238095237}, "o": {"l": [[[0.38095238095238093, -0.047619047619047616], [0.2857142857142857, -0.09523809523809523], [0.23809523809523808, -0.14285714285714285], [0.19047619047619047, -0.23809523809523808], [0.19047619047619047, -0.5238095238095237], [0.23809523809523808, -0.6190476190476191], [0.2857142857142857, -0.6666666666666666], [0.38095238095238093, -0.7142857142857142], [0.5238095238095237, -0.7142857142857142], [0.6190476190476191, -0.6666666666666666], [0.6666666666666666, -0.6190476190476191], [0.7142857142857142, -0.5238095238095237], [0.7142857142857142, -0.23809523809523808], [0.6666666666666666, -0.14285714285714285], [0.6190476190476191, -0.09523809523809523], [0.5238095238095237, -0.047619047619047616], [0.38095238095238093, -0.047619047619047616]]], "w": 0.9047619047619047}, "n": {"l": [[[0.23809523809523808, -0.7142857142857142], [0.23809523809523808, -0.047619047619047616]], [[0.23809523809523808, -0.6190476190476191], [0.2857142857142857, -0.6666666666666666], [0.38095238095238093, -0.7142857142857142], [0.5238095238095237, -0.7142857142857142], [0.6190476190476191, -0.6666666666666666], [0.6666666666666666, -0.5714285714285714], [0.6666666666666666, -0.047619047619047616]]], "w": 0.9047619047619047}, "p": {"l": [[[0.23809523809523808, -0.7142857142857142], [0.23809523809523808, 0.2857142857142857]], [[0.23809523809523808, -0.6666666666666666], [0.3333333333333333, -0.7142857142857142], [0.5238095238095237, -0.7142857142857142], [0.6190476190476191, -0.6666666666666666], [0.6666666666666666, -0.6190476190476191], [0.7142857142857142, -0.5238095238095237], [0.7142857142857142, -0.23809523809523808], [0.6666666666666666, -0.14285714285714285], [0.6190476190476191, -0.09523809523809523], [0.5238095238095237, -0.047619047619047616], [0.3333333333333333, -0.047619047619047616], [0.23809523809523808, -0.09523809523809523]]], "w": 0.9047619047619047}, "s": {"l": [[[0.19047619047619047, -0.09523809523809523], [0.2857142857142857, -0.047619047619047616], [0.47619047619047616, -0.047619047619047616], [0.5714285714285714, -0.09523809523809523], [0.6190476190476191, -0.19047619047619047], [0.6190476190476191, -0.23809523809523808], [0.5714285714285714, -0.3333333333333333], [0.47619047619047616, -0.38095238095238093], [0.3333333333333333, -0.38095238095238093], [0.23809523809523808, -0.42857142857142855], [0.19047619047619047, -0.5238095238095237], [0.19047619047619047, -0.5714285714285714], [0.23809523809523808, -0.6666666666666666], [0.3333333333333333, -0.7142857142857142], [0.47619047619047616, -0.7142857142857142], [0.5714285714285714, -0.6666666666666666]]], "w": 0.8095238095238095}, "r": {"l": [[[0.23809523809523808, -0.047619047619047616], [0.23809523809523808, -0.7142857142857142]], [[0.23809523809523808, -0.5238095238095237], [0.2857142857142857, -0.6190476190476191], [0.3333333333333333, -0.6666666666666666], [0.42857142857142855, -0.7142857142857142], [0.5238095238095237, -0.7142857142857142]]], "w": 0.6190476190476191}, "u": {"l": [[[0.6666666666666666, -0.7142857142857142], [0.6666666666666666, -0.047619047619047616]], [[0.23809523809523808, -0.7142857142857142], [0.23809523809523808, -0.19047619047619047], [0.2857142857142857, -0.09523809523809523], [0.38095238095238093, -0.047619047619047616], [0.5238095238095237, -0.047619047619047616], [0.6190476190476191, -0.09523809523809523], [0.6666666666666666, -0.14285714285714285]]], "w": 0.9047619047619047}, "t": {"l": [[[0.09523809523809523, -0.7142857142857142], [0.47619047619047616, -0.7142857142857142]], [[0.23809523809523808, -1.0476190476190474], [0.23809523809523808, -0.19047619047619047], [0.2857142857142857, -0.09523809523809523], [0.38095238095238093, -0.047619047619047616], [0.47619047619047616, -0.047619047619047616]]], "w": 0.5714285714285714}, "w": {"l": [[[0.1428571428571428, -0.7142857142857142], [0.33333333333333326, -0.047619047619047616], [0.5238095238095237, -0.5238095238095237], [0.7142857142857142, -0.047619047619047616], [0.9047619047619047, -0.7142857142857142]]], "w": 1.0476190476190474}, "v": {"l": [[[0.14285714285714285, -0.7142857142857142], [0.38095238095238093, -0.047619047619047616], [0.6190476190476191, -0.7142857142857142]]], "w": 0.7619047619047619}, "x": {"l": [[[0.14285714285714285, -0.047619047619047616], [0.6666666666666666, -0.7142857142857142]], [[0.14285714285714285, -0.7142857142857142], [0.6666666666666666, -0.047619047619047616]]], "w": 0.8095238095238095}}, "modules": [{"layer": "F", "center": [104.902, 109.47399999999999], "pads": [{"layers": ["F", "B"], "angle": -0.0, "pos": [90.932, 117.094], "drillsize": [1.0999999999999999, 1.0999999999999999], "shape": "rect", "offset": [0.0, 0.0], "drillshape": "circle", "pin1": 1, "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [93.472, 117.094], "drillsize": [1.0999999999999999, 1.0999999999999999], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [96.012, 117.094], "drillsize": [1.0999999999999999, 1.0999999999999999], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [98.55199999999999, 117.094], "drillsize": [1.0999999999999999, 1.0999999999999999], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [101.092, 117.094], "drillsize": [1.0999999999999999, 1.0999999999999999], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [103.63199999999999, 117.094], "drillsize": [1.0999999999999999, 1.0999999999999999], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [106.172, 117.094], "drillsize": [1.0999999999999999, 1.0999999999999999], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [108.71199999999999, 117.094], "drillsize": [1.0999999999999999, 1.0999999999999999], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [111.252, 117.094], "drillsize": [1.0999999999999999, 1.0999999999999999], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [113.792, 117.094], "drillsize": [1.0999999999999999, 1.0999999999999999], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [116.332, 117.094], "drillsize": [1.0999999999999999, 1.0999999999999999], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [118.872, 117.094], "drillsize": [1.0999999999999999, 1.0999999999999999], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [118.872, 101.854], "drillsize": [1.0999999999999999, 1.0999999999999999], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [116.332, 101.854], "drillsize": [1.0999999999999999, 1.0999999999999999], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [113.792, 101.854], "drillsize": [1.0999999999999999, 1.0999999999999999], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [111.252, 101.854], "drillsize": [1.0999999999999999, 1.0999999999999999], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [108.71199999999999, 101.854], "drillsize": [1.0999999999999999, 1.0999999999999999], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [106.172, 101.854], "drillsize": [1.0999999999999999, 1.0999999999999999], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [103.63199999999999, 101.854], "drillsize": [1.0999999999999999, 1.0999999999999999], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [101.092, 101.854], "drillsize": [1.0999999999999999, 1.0999999999999999], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [98.55199999999999, 101.854], "drillsize": [1.0999999999999999, 1.0999999999999999], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [96.012, 101.854], "drillsize": [1.0999999999999999, 1.0999999999999999], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [93.472, 101.854], "drillsize": [1.0999999999999999, 1.0999999999999999], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [90.932, 101.854], "drillsize": [1.0999999999999999, 1.0999999999999999], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}], "drawings": [], "ref": "PM1", "bbox": {"pos": [88.316999, 100.50899899999999], "size": [31.900001999999997, 17.930001999999998]}}, {"layer": "B", "center": [119.88799999999999, 97.536], "pads": [{"layers": ["B"], "angle": -0.0, "pos": [120.913, 97.536], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "type": "smd", "size": [1.15, 1.4]}, {"layers": ["B"], "angle": -0.0, "pos": [118.863, 97.536], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.15, 1.4]}], "drawings": [], "ref": "R19", "bbox": {"pos": [118.012999, 96.560999], "size": [3.750002, 1.950002]}}, {"layer": "F", "center": [129.286, 100.33], "pads": [{"layers": ["F", "B"], "angle": -0.0, "pos": [129.286, 100.33], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "rect", "offset": [0.0, 0.0], "drillshape": "circle", "pin1": 1, "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [136.906, 118.11], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [129.286, 102.86999999999999], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [136.906, 115.57], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [129.286, 105.41], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [136.906, 113.03], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [129.286, 107.94999999999999], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [136.906, 110.49], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [129.286, 110.49], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [136.906, 107.94999999999999], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [129.286, 113.03], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [136.906, 105.41], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [129.286, 115.57], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [136.906, 102.86999999999999], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [129.286, 118.11], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [136.906, 100.33], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}], "drawings": [], "ref": "SR1", "bbox": {"pos": [128.160999, 98.754999], "size": [9.850002, 20.900002]}}, {"layer": "B", "center": [99.559, 105.15599999999999], "pads": [{"layers": ["B"], "angle": -0.0, "pos": [98.53399999999999, 105.15599999999999], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.15, 1.4]}, {"layers": ["B"], "angle": -0.0, "pos": [100.58399999999999, 105.15599999999999], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "type": "smd", "size": [1.15, 1.4]}], "drawings": [], "ref": "C1", "bbox": {"pos": [97.683999, 104.180999], "size": [3.750002, 1.950002]}}, {"layer": "F", "center": [136.906, 124.46], "pads": [{"layers": ["F", "B"], "angle": -90.0, "pos": [141.986, 124.46], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [139.446, 124.46], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [136.906, 124.46], "drillsize": [1.0, 1.0], "shape": "rect", "offset": [0.0, 0.0], "drillshape": "circle", "pin1": 1, "type": "th", "size": [1.7, 1.7]}], "drawings": [], "ref": "J1", "bbox": {"pos": [135.080999, 122.68499899999999], "size": [8.700002, 3.600002]}}, {"layer": "F", "center": [136.906, 93.97999999999999], "pads": [{"layers": ["F", "B"], "angle": -90.0, "pos": [136.906, 93.97999999999999], "drillsize": [1.0, 1.0], "shape": "rect", "offset": [0.0, 0.0], "drillshape": "circle", "pin1": 1, "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [139.446, 93.97999999999999], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [141.986, 93.97999999999999], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}], "drawings": [], "ref": "J2", "bbox": {"pos": [135.080999, 92.204999], "size": [8.700002, 3.600002]}}, {"layer": "F", "center": [124.20599999999999, 93.97999999999999], "pads": [{"layers": ["F", "B"], "angle": -90.0, "pos": [124.20599999999999, 93.97999999999999], "drillsize": [1.0, 1.0], "shape": "rect", "offset": [0.0, 0.0], "drillshape": "circle", "pin1": 1, "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [126.746, 93.97999999999999], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [129.286, 93.97999999999999], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}], "drawings": [], "ref": "J3", "bbox": {"pos": [122.38099899999999, 92.204999], "size": [8.700002, 3.600002]}}, {"layer": "F", "center": [124.20599999999999, 124.46], "pads": [{"layers": ["F", "B"], "angle": -90.0, "pos": [129.286, 124.46], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [126.746, 124.46], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [124.20599999999999, 124.46], "drillsize": [1.0, 1.0], "shape": "rect", "offset": [0.0, 0.0], "drillshape": "circle", "pin1": 1, "type": "th", "size": [1.7, 1.7]}], "drawings": [], "ref": "J4", "bbox": {"pos": [122.38099899999999, 122.68499899999999], "size": [8.700002, 3.600002]}}, {"layer": "F", "center": [162.052, 124.46], "pads": [{"layers": ["F", "B"], "angle": -90.0, "pos": [162.052, 124.46], "drillsize": [1.0, 1.0], "shape": "rect", "offset": [0.0, 0.0], "drillshape": "circle", "pin1": 1, "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [164.59199999999998, 124.46], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [167.132, 124.46], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}], "drawings": [], "ref": "J5", "bbox": {"pos": [160.226999, 122.68499899999999], "size": [8.700002, 3.600002]}}, {"layer": "F", "center": [162.052, 93.97999999999999], "pads": [{"layers": ["F", "B"], "angle": -90.0, "pos": [167.132, 93.97999999999999], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [164.59199999999998, 93.97999999999999], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [162.052, 93.97999999999999], "drillsize": [1.0, 1.0], "shape": "rect", "offset": [0.0, 0.0], "drillshape": "circle", "pin1": 1, "type": "th", "size": [1.7, 1.7]}], "drawings": [], "ref": "J6", "bbox": {"pos": [160.226999, 92.204999], "size": [8.700002, 3.600002]}}, {"layer": "F", "center": [149.352, 93.97999999999999], "pads": [{"layers": ["F", "B"], "angle": -90.0, "pos": [149.352, 93.97999999999999], "drillsize": [1.0, 1.0], "shape": "rect", "offset": [0.0, 0.0], "drillshape": "circle", "pin1": 1, "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [151.892, 93.97999999999999], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [154.432, 93.97999999999999], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}], "drawings": [], "ref": "J7", "bbox": {"pos": [147.526999, 92.204999], "size": [8.700002, 3.600002]}}, {"layer": "F", "center": [149.352, 124.46], "pads": [{"layers": ["F", "B"], "angle": -90.0, "pos": [154.432, 124.46], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [151.892, 124.46], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [149.352, 124.46], "drillsize": [1.0, 1.0], "shape": "rect", "offset": [0.0, 0.0], "drillshape": "circle", "pin1": 1, "type": "th", "size": [1.7, 1.7]}], "drawings": [], "ref": "J8", "bbox": {"pos": [147.526999, 122.68499899999999], "size": [8.700002, 3.600002]}}, {"layer": "F", "center": [113.792, 93.97999999999999], "pads": [{"layers": ["F", "B"], "angle": -90.0, "pos": [113.792, 93.97999999999999], "drillsize": [1.0, 1.0], "shape": "rect", "offset": [0.0, 0.0], "drillshape": "circle", "pin1": 1, "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [116.332, 93.97999999999999], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [118.872, 93.97999999999999], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}], "drawings": [], "ref": "J9", "bbox": {"pos": [111.966999, 92.204999], "size": [8.700002, 3.600002]}}, {"layer": "F", "center": [113.792, 124.46], "pads": [{"layers": ["F", "B"], "angle": -90.0, "pos": [118.872, 124.46], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [116.332, 124.46], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [113.792, 124.46], "drillsize": [1.0, 1.0], "shape": "rect", "offset": [0.0, 0.0], "drillshape": "circle", "pin1": 1, "type": "th", "size": [1.7, 1.7]}], "drawings": [], "ref": "J10", "bbox": {"pos": [111.966999, 122.68499899999999], "size": [8.700002, 3.600002]}}, {"layer": "F", "center": [154.432, 100.33], "pads": [{"layers": ["F", "B"], "angle": -0.0, "pos": [162.052, 100.33], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [154.432, 118.11], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [162.052, 102.86999999999999], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [154.432, 115.57], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [162.052, 105.41], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [154.432, 113.03], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [162.052, 107.94999999999999], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [154.432, 110.49], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [162.052, 110.49], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [154.432, 107.94999999999999], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [162.052, 113.03], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [154.432, 105.41], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [162.052, 115.57], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [154.432, 102.86999999999999], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [162.052, 118.11], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [154.432, 100.33], "drillsize": [0.7999999999999999, 0.7999999999999999], "shape": "rect", "offset": [0.0, 0.0], "drillshape": "circle", "pin1": 1, "type": "th", "size": [1.5999999999999999, 1.5999999999999999]}], "drawings": [], "ref": "SR2", "bbox": {"pos": [153.306999, 98.754999], "size": [9.850002, 20.900002]}}, {"layer": "B", "center": [140.71599999999998, 113.03], "pads": [{"layers": ["B"], "angle": -0.0, "pos": [139.691, 113.03], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.15, 1.4]}, {"layers": ["B"], "angle": -0.0, "pos": [141.74099999999999, 113.03], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "type": "smd", "size": [1.15, 1.4]}], "drawings": [], "ref": "R1", "bbox": {"pos": [138.84099899999998, 112.054999], "size": [3.750002, 1.950002]}}, {"layer": "B", "center": [167.132, 113.03], "pads": [{"layers": ["B"], "angle": -0.0, "pos": [166.107, 113.03], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.15, 1.4]}, {"layers": ["B"], "angle": -0.0, "pos": [168.15699999999998, 113.03], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "type": "smd", "size": [1.15, 1.4]}], "drawings": [], "ref": "R2", "bbox": {"pos": [165.25699899999998, 112.054999], "size": [3.750002, 1.950002]}}, {"layer": "B", "center": [140.71599999999998, 110.49], "pads": [{"layers": ["B"], "angle": -0.0, "pos": [141.74099999999999, 110.49], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "type": "smd", "size": [1.15, 1.4]}, {"layers": ["B"], "angle": -0.0, "pos": [139.691, 110.49], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.15, 1.4]}], "drawings": [], "ref": "R3", "bbox": {"pos": [138.84099899999998, 109.51499899999999], "size": [3.750002, 1.950002]}}, {"layer": "B", "center": [167.132, 110.49], "pads": [{"layers": ["B"], "angle": -0.0, "pos": [168.15699999999998, 110.49], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "type": "smd", "size": [1.15, 1.4]}, {"layers": ["B"], "angle": -0.0, "pos": [166.107, 110.49], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.15, 1.4]}], "drawings": [], "ref": "R4", "bbox": {"pos": [165.25699899999998, 109.51499899999999], "size": [3.750002, 1.950002]}}, {"layer": "B", "center": [140.71599999999998, 107.965001], "pads": [{"layers": ["B"], "angle": -0.0, "pos": [139.691, 107.965001], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.15, 1.4]}, {"layers": ["B"], "angle": -0.0, "pos": [141.74099999999999, 107.965001], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "type": "smd", "size": [1.15, 1.4]}], "drawings": [], "ref": "R5", "bbox": {"pos": [138.84099899999998, 106.99], "size": [3.750002, 1.950002]}}, {"layer": "B", "center": [167.132, 107.954999], "pads": [{"layers": ["B"], "angle": -0.0, "pos": [166.107, 107.954999], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.15, 1.4]}, {"layers": ["B"], "angle": -0.0, "pos": [168.15699999999998, 107.954999], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "type": "smd", "size": [1.15, 1.4]}], "drawings": [], "ref": "R6", "bbox": {"pos": [165.25699899999998, 106.979998], "size": [3.750002, 1.950002]}}, {"layer": "B", "center": [140.71599999999998, 105.41], "pads": [{"layers": ["B"], "angle": -0.0, "pos": [141.74099999999999, 105.41], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "type": "smd", "size": [1.15, 1.4]}, {"layers": ["B"], "angle": -0.0, "pos": [139.691, 105.41], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.15, 1.4]}], "drawings": [], "ref": "R7", "bbox": {"pos": [138.84099899999998, 104.43499899999999], "size": [3.750002, 1.950002]}}, {"layer": "B", "center": [167.132, 105.41], "pads": [{"layers": ["B"], "angle": -0.0, "pos": [168.15699999999998, 105.41], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "type": "smd", "size": [1.15, 1.4]}, {"layers": ["B"], "angle": -0.0, "pos": [166.107, 105.41], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.15, 1.4]}], "drawings": [], "ref": "R8", "bbox": {"pos": [165.25699899999998, 104.43499899999999], "size": [3.750002, 1.950002]}}, {"layer": "B", "center": [124.96799999999999, 105.41], "pads": [{"layers": ["B"], "angle": -180.0, "pos": [125.993, 105.41], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.15, 1.4]}, {"layers": ["B"], "angle": -180.0, "pos": [123.943, 105.41], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "type": "smd", "size": [1.15, 1.4]}], "drawings": [], "ref": "R9", "bbox": {"pos": [123.09299899999999, 104.43499899999999], "size": [3.750002, 1.950002]}}, {"layer": "B", "center": [150.114, 105.41], "pads": [{"layers": ["B"], "angle": -180.0, "pos": [151.13899999999998, 105.41], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.15, 1.4]}, {"layers": ["B"], "angle": -180.0, "pos": [149.089, 105.41], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "type": "smd", "size": [1.15, 1.4]}], "drawings": [], "ref": "R10", "bbox": {"pos": [148.238999, 104.43499899999999], "size": [3.750002, 1.950002]}}, {"layer": "B", "center": [124.96799999999999, 107.94999999999999], "pads": [{"layers": ["B"], "angle": -180.0, "pos": [123.943, 107.94999999999999], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "type": "smd", "size": [1.15, 1.4]}, {"layers": ["B"], "angle": -180.0, "pos": [125.993, 107.94999999999999], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.15, 1.4]}], "drawings": [], "ref": "R11", "bbox": {"pos": [123.09299899999999, 106.974999], "size": [3.750002, 1.950002]}}, {"layer": "B", "center": [150.114, 107.94999999999999], "pads": [{"layers": ["B"], "angle": -180.0, "pos": [149.089, 107.94999999999999], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "type": "smd", "size": [1.15, 1.4]}, {"layers": ["B"], "angle": -180.0, "pos": [151.13899999999998, 107.94999999999999], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.15, 1.4]}], "drawings": [], "ref": "R12", "bbox": {"pos": [148.238999, 106.974999], "size": [3.750002, 1.950002]}}, {"layer": "B", "center": [124.96799999999999, 110.49], "pads": [{"layers": ["B"], "angle": -180.0, "pos": [125.993, 110.49], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.15, 1.4]}, {"layers": ["B"], "angle": -180.0, "pos": [123.943, 110.49], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "type": "smd", "size": [1.15, 1.4]}], "drawings": [], "ref": "R13", "bbox": {"pos": [123.09299899999999, 109.51499899999999], "size": [3.750002, 1.950002]}}, {"layer": "B", "center": [150.114, 110.49], "pads": [{"layers": ["B"], "angle": -180.0, "pos": [151.13899999999998, 110.49], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.15, 1.4]}, {"layers": ["B"], "angle": -180.0, "pos": [149.089, 110.49], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "type": "smd", "size": [1.15, 1.4]}], "drawings": [], "ref": "R14", "bbox": {"pos": [148.238999, 109.51499899999999], "size": [3.750002, 1.950002]}}, {"layer": "B", "center": [124.96799999999999, 113.03], "pads": [{"layers": ["B"], "angle": -180.0, "pos": [123.943, 113.03], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "type": "smd", "size": [1.15, 1.4]}, {"layers": ["B"], "angle": -180.0, "pos": [125.993, 113.03], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.15, 1.4]}], "drawings": [], "ref": "R15", "bbox": {"pos": [123.09299899999999, 112.054999], "size": [3.750002, 1.950002]}}, {"layer": "B", "center": [150.114, 113.03], "pads": [{"layers": ["B"], "angle": -180.0, "pos": [149.089, 113.03], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "type": "smd", "size": [1.15, 1.4]}, {"layers": ["B"], "angle": -180.0, "pos": [151.13899999999998, 113.03], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.15, 1.4]}], "drawings": [], "ref": "R16", "bbox": {"pos": [148.238999, 112.054999], "size": [3.750002, 1.950002]}}, {"layer": "B", "center": [76.073, 96.774], "pads": [{"layers": ["F", "B"], "angle": -180.0, "pos": [76.073, 96.774], "drillsize": [1.0, 1.0], "shape": "rect", "offset": [0.0, 0.0], "drillshape": "circle", "pin1": 1, "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -180.0, "pos": [78.613, 96.774], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -180.0, "pos": [76.073, 99.314], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -180.0, "pos": [78.613, 99.314], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -180.0, "pos": [76.073, 101.854], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -180.0, "pos": [78.613, 101.854], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -180.0, "pos": [76.073, 104.39399999999999], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -180.0, "pos": [78.613, 104.39399999999999], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -180.0, "pos": [76.073, 106.934], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -180.0, "pos": [78.613, 106.934], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -180.0, "pos": [76.073, 109.47399999999999], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -180.0, "pos": [78.613, 109.47399999999999], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -180.0, "pos": [76.073, 112.014], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -180.0, "pos": [78.613, 112.014], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -180.0, "pos": [76.073, 114.55399999999999], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -180.0, "pos": [78.613, 114.55399999999999], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}], "drawings": [], "ref": "CT1", "bbox": {"pos": [74.287999, 94.948999], "size": [6.150002, 21.400002]}}, {"layer": "B", "center": [112.776, 97.536], "pads": [{"layers": ["B"], "angle": -180.0, "pos": [113.801, 97.536], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.15, 1.4]}, {"layers": ["B"], "angle": -180.0, "pos": [111.75099999999999, 97.536], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "type": "smd", "size": [1.15, 1.4]}], "drawings": [], "ref": "R17", "bbox": {"pos": [110.900999, 96.560999], "size": [3.750002, 1.950002]}}, {"layer": "B", "center": [112.776, 120.64999999999999], "pads": [{"layers": ["B"], "angle": -180.0, "pos": [111.75099999999999, 120.64999999999999], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "type": "smd", "size": [1.15, 1.4]}, {"layers": ["B"], "angle": -180.0, "pos": [113.801, 120.64999999999999], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.15, 1.4]}], "drawings": [], "ref": "R18", "bbox": {"pos": [110.900999, 119.674999], "size": [3.750002, 1.950002]}}, {"layer": "B", "center": [119.88799999999999, 120.64999999999999], "pads": [{"layers": ["B"], "angle": -0.0, "pos": [118.863, 120.64999999999999], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.15, 1.4]}, {"layers": ["B"], "angle": -0.0, "pos": [120.913, 120.64999999999999], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "type": "smd", "size": [1.15, 1.4]}], "drawings": [], "ref": "R20", "bbox": {"pos": [118.012999, 119.674999], "size": [3.750002, 1.950002]}}, {"layer": "B", "center": [140.71599999999998, 100.33], "pads": [{"layers": ["B"], "angle": -0.0, "pos": [139.691, 100.33], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.15, 1.4]}, {"layers": ["B"], "angle": -0.0, "pos": [141.74099999999999, 100.33], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "type": "smd", "size": [1.15, 1.4]}], "drawings": [], "ref": "C2", "bbox": {"pos": [138.84099899999998, 99.35499899999999], "size": [3.750002, 1.950002]}}, {"layer": "B", "center": [167.132, 100.33], "pads": [{"layers": ["B"], "angle": -0.0, "pos": [168.15699999999998, 100.33], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "type": "smd", "size": [1.15, 1.4]}, {"layers": ["B"], "angle": -0.0, "pos": [166.107, 100.33], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.15, 1.4]}], "drawings": [], "ref": "C3", "bbox": {"pos": [165.25699899999998, 99.35499899999999], "size": [3.750002, 1.950002]}}, {"layer": "B", "center": [82.804, 116.586], "pads": [{"layers": ["B"], "angle": -0.0, "pos": [81.779, 116.586], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.15, 1.4]}, {"layers": ["B"], "angle": -0.0, "pos": [83.829, 116.586], "shape": "roundrect", "radius": 0.249999, "offset": [0.0, 0.0], "type": "smd", "size": [1.15, 1.4]}], "drawings": [], "ref": "C4", "bbox": {"pos": [80.92899899999999, 115.61099899999999], "size": [3.750002, 1.950002]}}, {"layer": "F", "center": [175.26, 113.03], "pads": [{"layers": ["F", "B"], "angle": -180.0, "pos": [175.26, 113.03], "drillsize": [1.0, 1.0], "shape": "rect", "offset": [0.0, 0.0], "drillshape": "circle", "pin1": 1, "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -180.0, "pos": [175.26, 110.49], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -180.0, "pos": [175.26, 107.94999999999999], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -180.0, "pos": [175.26, 105.41], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -180.0, "pos": [175.26, 102.86999999999999], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}], "drawings": [], "ref": "J11", "bbox": {"pos": [173.484999, 101.10499899999999], "size": [3.600002, 13.750001999999999]}}, {"layer": "F", "center": [88.22, 123.698], "pads": [{"layers": ["F", "B"], "angle": -0.0, "pos": [88.22, 123.698], "drillsize": [3.1999999999999997, 3.1999999999999997], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "pin1": 1, "type": "th", "size": [5.6, 5.6]}], "drawings": [], "ref": "H1", "bbox": {"pos": [85.144999, 120.622999], "size": [6.150002, 6.150002]}}, {"layer": "F", "center": [172.72, 123.698], "pads": [{"layers": ["F", "B"], "angle": -0.0, "pos": [172.72, 123.698], "drillsize": [3.1999999999999997, 3.1999999999999997], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "pin1": 1, "type": "th", "size": [5.6, 5.6]}], "drawings": [], "ref": "H2", "bbox": {"pos": [169.64499899999998, 120.622999], "size": [6.150002, 6.150002]}}, {"layer": "F", "center": [172.72, 95.50399999999999], "pads": [{"layers": ["F", "B"], "angle": -0.0, "pos": [172.72, 95.50399999999999], "drillsize": [3.1999999999999997, 3.1999999999999997], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "pin1": 1, "type": "th", "size": [5.6, 5.6]}], "drawings": [], "ref": "H3", "bbox": {"pos": [169.64499899999998, 92.42899899999999], "size": [6.150002, 6.150002]}}], "edges": [{"start": [68.326, 128.016], "end": [68.326, 91.44], "type": "segment", "width": 0.049999999999999996}, {"start": [180.34, 128.016], "end": [68.326, 128.016], "type": "segment", "width": 0.049999999999999996}, {"start": [180.34, 91.44], "end": [180.34, 128.016], "type": "segment", "width": 0.049999999999999996}, {"start": [68.326, 91.44], "end": [180.34, 91.44], "type": "segment", "width": 0.049999999999999996}], "bom": {"both": [[4, "470n", "C_0805_2012Metric_Pad1.15x1.40mm_HandSolder", [["C1", 3], ["C2", 35], ["C3", 36], ["C4", 37]], []], [20, "10k", "R_0805_2012Metric_Pad1.15x1.40mm_HandSolder", [["R1", 15], ["R2", 16], ["R3", 17], ["R4", 18], ["R5", 19], ["R6", 20], ["R7", 21], ["R8", 22], ["R9", 23], ["R10", 24], ["R11", 25], ["R12", 26], ["R13", 27], ["R14", 28], ["R15", 29], ["R16", 30], ["R17", 32], ["R18", 33], ["R19", 1], ["R20", 34]], []], [2, "Conn_02x08_Counter_Clockwise", "DIP-16_W7.62mm", [["SR1", 2], ["SR2", 14]], []], [1, "Conn_02x08_Counter_Clockwise", "PinSocket_2x08_P2.54mm_Vertical", [["CT1", 31]], []], [1, "Pro_Micro", "promicro", [["PM1", 0]], []], [10, "Conn_01x03", "PinSocket_1x03_P2.54mm_Vertical", [["J1", 4], ["J2", 5], ["J3", 6], ["J4", 7], ["J5", 8], ["J6", 9], ["J7", 10], ["J8", 11], ["J9", 12], ["J10", 13]], []], [1, "Conn_01x05", "PinSocket_1x05_P2.54mm_Vertical", [["J11", 38]], []]], "B": [[4, "470n", "C_0805_2012Metric_Pad1.15x1.40mm_HandSolder", [["C1", 3], ["C2", 35], ["C3", 36], ["C4", 37]], []], [20, "10k", "R_0805_2012Metric_Pad1.15x1.40mm_HandSolder", [["R1", 15], ["R2", 16], ["R3", 17], ["R4", 18], ["R5", 19], ["R6", 20], ["R7", 21], ["R8", 22], ["R9", 23], ["R10", 24], ["R11", 25], ["R12", 26], ["R13", 27], ["R14", 28], ["R15", 29], ["R16", 30], ["R17", 32], ["R18", 33], ["R19", 1], ["R20", 34]], []], [1, "Conn_02x08_Counter_Clockwise", "PinSocket_2x08_P2.54mm_Vertical", [["CT1", 31]], []]], "F": [[2, "Conn_02x08_Counter_Clockwise", "DIP-16_W7.62mm", [["SR1", 2], ["SR2", 14]], []], [1, "Pro_Micro", "promicro", [["PM1", 0]], []], [10, "Conn_01x03", "PinSocket_1x03_P2.54mm_Vertical", [["J1", 4], ["J2", 5], ["J3", 6], ["J4", 7], ["J5", 8], ["J6", 9], ["J7", 10], ["J8", 11], ["J9", 12], ["J10", 13]], []], [1, "Conn_01x05", "PinSocket_1x05_P2.54mm_Vertical", [["J11", 38]], []]]}, "silkscreen": {"B": [{"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "B6", "thickness": 0.15, "pos": [118.872, 96.012], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "B2", "thickness": 0.15, "pos": [113.792, 96.012], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "B4", "thickness": 0.15, "pos": [113.792, 126.746], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "SW3", "thickness": 0.15, "pos": [118.872, 126.746], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": -1, "text": "SR: 74HC165N\nR1-R20: 10k\nC1-C4: 470n\nStand-offs: M3\nGD=GND\nVCC +5V", "thickness": 0.25, "pos": [116.07799999999999, 109.47399999999999], "height": 1.0}, {"width": 1.5, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "E\nF\nG\nH", "thickness": 0.15, "pos": [131.31799999999998, 109.22], "height": 1.5}, {"width": 1.5999999999999999, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 1, "text": "-\nAX2\nAX4\nC4\nC2\nGND\nR2\nVCC", "thickness": 0.15, "pos": [80.00999999999999, 105.664], "height": 1.5999999999999999}, {"width": 1.5999999999999999, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": -1, "text": "-\nAX0\nAX1\nAX3\nC1\nC3\nR3\nR1", "thickness": 0.15, "pos": [74.676, 105.664], "height": 1.5999999999999999}, {"width": 1.3, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "E2\nF2\nG2\nH2", "thickness": 0.15, "pos": [156.718, 109.47399999999999], "height": 1.5}, {"width": 1.5, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "D\nC\nB\nA", "thickness": 0.15, "pos": [134.874, 109.22], "height": 1.5}, {"width": 1.3, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "D2\nC2\nB2\nA2", "thickness": 0.15, "pos": [159.766, 109.47399999999999], "height": 1.5}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": -1, "text": "2020-01-08\nCougar button box v1\naapalo", "thickness": 0.25, "pos": [105.15599999999999, 95.758], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R19", "thickness": 0.15, "ref": 1, "pos": [123.44399999999999, 97.536], "height": 1.0}, {"start": [119.62674799999999, 96.826], "end": [120.14925199999999, 96.826], "type": "segment", "width": 0.12}, {"start": [119.62674799999999, 98.246], "end": [120.14925199999999, 98.246], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "C1", "thickness": 0.15, "ref": 1, "pos": [99.559, 106.806], "height": 1.0}, {"start": [99.297748, 105.866], "end": [99.820252, 105.866], "type": "segment", "width": 0.12}, {"start": [99.297748, 104.446], "end": [99.820252, 104.446], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R1", "thickness": 0.15, "ref": 1, "pos": [143.891, 113.03], "height": 1.0}, {"start": [140.454748, 113.74], "end": [140.977252, 113.74], "type": "segment", "width": 0.12}, {"start": [140.454748, 112.32], "end": [140.977252, 112.32], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R2", "thickness": 0.15, "ref": 1, "pos": [170.307, 113.03], "height": 1.0}, {"start": [166.870748, 113.74], "end": [167.393252, 113.74], "type": "segment", "width": 0.12}, {"start": [166.870748, 112.32], "end": [167.393252, 112.32], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R3", "thickness": 0.15, "ref": 1, "pos": [143.891, 110.49], "height": 1.0}, {"start": [140.454748, 109.78], "end": [140.977252, 109.78], "type": "segment", "width": 0.12}, {"start": [140.454748, 111.19999999999999], "end": [140.977252, 111.19999999999999], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R4", "thickness": 0.15, "ref": 1, "pos": [170.307, 110.49], "height": 1.0}, {"start": [166.870748, 109.78], "end": [167.393252, 109.78], "type": "segment", "width": 0.12}, {"start": [166.870748, 111.19999999999999], "end": [167.393252, 111.19999999999999], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R5", "thickness": 0.15, "ref": 1, "pos": [143.891, 107.980002], "height": 1.0}, {"start": [140.454748, 108.675001], "end": [140.977252, 108.675001], "type": "segment", "width": 0.12}, {"start": [140.454748, 107.255001], "end": [140.977252, 107.255001], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R6", "thickness": 0.15, "ref": 1, "pos": [170.307, 107.959998], "height": 1.0}, {"start": [166.870748, 108.664999], "end": [167.393252, 108.664999], "type": "segment", "width": 0.12}, {"start": [166.870748, 107.24499899999999], "end": [167.393252, 107.24499899999999], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R7", "thickness": 0.15, "ref": 1, "pos": [143.891, 105.41], "height": 1.0}, {"start": [140.454748, 104.69999999999999], "end": [140.977252, 104.69999999999999], "type": "segment", "width": 0.12}, {"start": [140.454748, 106.11999999999999], "end": [140.977252, 106.11999999999999], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R8", "thickness": 0.15, "ref": 1, "pos": [170.307, 105.41], "height": 1.0}, {"start": [166.870748, 104.69999999999999], "end": [167.393252, 104.69999999999999], "type": "segment", "width": 0.12}, {"start": [166.870748, 106.11999999999999], "end": [167.393252, 106.11999999999999], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R9", "thickness": 0.15, "ref": 1, "pos": [121.79299999999999, 105.41], "height": 1.0}, {"start": [125.22925199999999, 104.69999999999999], "end": [124.70674799999999, 104.69999999999999], "type": "segment", "width": 0.12}, {"start": [125.22925199999999, 106.11999999999999], "end": [124.70674799999999, 106.11999999999999], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R10", "thickness": 0.15, "ref": 1, "pos": [146.81199999999998, 105.41], "height": 1.0}, {"start": [150.375252, 104.69999999999999], "end": [149.852748, 104.69999999999999], "type": "segment", "width": 0.12}, {"start": [150.375252, 106.11999999999999], "end": [149.852748, 106.11999999999999], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R11", "thickness": 0.15, "ref": 1, "pos": [121.158, 107.94999999999999], "height": 1.0}, {"start": [125.22925199999999, 108.66], "end": [124.70674799999999, 108.66], "type": "segment", "width": 0.12}, {"start": [125.22925199999999, 107.24], "end": [124.70674799999999, 107.24], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R12", "thickness": 0.15, "ref": 1, "pos": [146.81199999999998, 107.94999999999999], "height": 1.0}, {"start": [150.375252, 108.66], "end": [149.852748, 108.66], "type": "segment", "width": 0.12}, {"start": [150.375252, 107.24], "end": [149.852748, 107.24], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R13", "thickness": 0.15, "ref": 1, "pos": [121.158, 110.49], "height": 1.0}, {"start": [125.22925199999999, 109.78], "end": [124.70674799999999, 109.78], "type": "segment", "width": 0.12}, {"start": [125.22925199999999, 111.19999999999999], "end": [124.70674799999999, 111.19999999999999], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R14", "thickness": 0.15, "ref": 1, "pos": [146.81199999999998, 110.49], "height": 1.0}, {"start": [150.375252, 109.78], "end": [149.852748, 109.78], "type": "segment", "width": 0.12}, {"start": [150.375252, 111.19999999999999], "end": [149.852748, 111.19999999999999], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R15", "thickness": 0.15, "ref": 1, "pos": [121.158, 113.03], "height": 1.0}, {"start": [125.22925199999999, 113.74], "end": [124.70674799999999, 113.74], "type": "segment", "width": 0.12}, {"start": [125.22925199999999, 112.32], "end": [124.70674799999999, 112.32], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R16", "thickness": 0.15, "ref": 1, "pos": [146.81199999999998, 113.03], "height": 1.0}, {"start": [150.375252, 113.74], "end": [149.852748, 113.74], "type": "segment", "width": 0.12}, {"start": [150.375252, 112.32], "end": [149.852748, 112.32], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "CT1", "thickness": 0.15, "ref": 1, "pos": [77.343, 94.00399999999999], "height": 1.0}, {"start": [79.943, 95.444], "end": [77.343, 95.444], "type": "segment", "width": 0.12}, {"start": [79.943, 95.444], "end": [79.943, 115.884], "type": "segment", "width": 0.12}, {"start": [79.943, 115.884], "end": [74.743, 115.884], "type": "segment", "width": 0.12}, {"start": [74.743, 98.044], "end": [74.743, 115.884], "type": "segment", "width": 0.12}, {"start": [77.343, 98.044], "end": [74.743, 98.044], "type": "segment", "width": 0.12}, {"start": [77.343, 95.444], "end": [77.343, 98.044], "type": "segment", "width": 0.12}, {"start": [74.743, 95.444], "end": [74.743, 96.774], "type": "segment", "width": 0.12}, {"start": [76.073, 95.444], "end": [74.743, 95.444], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R17", "thickness": 0.15, "ref": 1, "pos": [108.966, 97.536], "height": 1.0}, {"start": [113.037252, 96.826], "end": [112.514748, 96.826], "type": "segment", "width": 0.12}, {"start": [113.037252, 98.246], "end": [112.514748, 98.246], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R18", "thickness": 0.15, "ref": 1, "pos": [108.966, 120.64999999999999], "height": 1.0}, {"start": [113.037252, 121.36], "end": [112.514748, 121.36], "type": "segment", "width": 0.12}, {"start": [113.037252, 119.94], "end": [112.514748, 119.94], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R20", "thickness": 0.15, "ref": 1, "pos": [123.44399999999999, 120.64999999999999], "height": 1.0}, {"start": [119.62674799999999, 121.36], "end": [120.14925199999999, 121.36], "type": "segment", "width": 0.12}, {"start": [119.62674799999999, 119.94], "end": [120.14925199999999, 119.94], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "C2", "thickness": 0.15, "ref": 1, "pos": [140.71599999999998, 101.97999999999999], "height": 1.0}, {"start": [140.454748, 101.03999999999999], "end": [140.977252, 101.03999999999999], "type": "segment", "width": 0.12}, {"start": [140.454748, 99.61999999999999], "end": [140.977252, 99.61999999999999], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "C3", "thickness": 0.15, "ref": 1, "pos": [167.132, 101.97999999999999], "height": 1.0}, {"start": [166.870748, 99.61999999999999], "end": [167.393252, 99.61999999999999], "type": "segment", "width": 0.12}, {"start": [166.870748, 101.03999999999999], "end": [167.393252, 101.03999999999999], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "C4", "thickness": 0.15, "ref": 1, "pos": [82.804, 118.23599999999999], "height": 1.0}, {"start": [82.542748, 117.29599999999999], "end": [83.065252, 117.29599999999999], "type": "segment", "width": 0.12}, {"start": [82.542748, 115.87599999999999], "end": [83.065252, 115.87599999999999], "type": "segment", "width": 0.12}], "F": [{"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": 1, "text": "SR_CLK", "thickness": 0.15, "pos": [111.252, 102.86999999999999], "height": 1.0}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": -1, "text": "SR_SL", "thickness": 0.15, "pos": [118.872, 116.07799999999999], "height": 1.0}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": 1, "text": "SR_QH", "thickness": 0.15, "pos": [113.792, 102.86999999999999], "height": 1.0}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": 1, "text": "E2\nGD\nF2", "thickness": 0.15, "pos": [151.892, 95.758], "height": 1.5999999999999999}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": 1, "text": "C2\nGD\nD2", "thickness": 0.15, "pos": [164.59199999999998, 95.758], "height": 1.5999999999999999}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": 1, "text": "C\nGD\nD", "thickness": 0.15, "pos": [139.446, 95.758], "height": 1.5999999999999999}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": 1, "text": "E\nGD\nF", "thickness": 0.15, "pos": [126.746, 95.758], "height": 1.5999999999999999}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": -1, "text": "G\nGD\nH", "thickness": 0.15, "pos": [126.746, 122.68199999999999], "height": 1.5999999999999999}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": -1, "text": "A2\nGD\nB2", "thickness": 0.15, "pos": [164.59199999999998, 122.68199999999999], "height": 1.5999999999999999}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": -1, "text": "A\nGD\nB", "thickness": 0.15, "pos": [139.446, 122.68199999999999], "height": 1.5999999999999999}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": -1, "text": "G2\nGD\nH2", "thickness": 0.15, "pos": [151.892, 122.68199999999999], "height": 1.5999999999999999}, {"width": 1.5999999999999999, "angle": 0.0, "attr": [], "horiz_justify": 1, "text": "SL\nCLK\nE\nF\nG\nH\nQHN\nGND", "thickness": 0.15, "pos": [127.508, 109.22], "height": 1.5999999999999999}, {"width": 1.5, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "Pro Micro", "thickness": 0.3, "pos": [102.48899999999999, 109.728], "height": 1.5}, {"width": 1.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "Prev SR", "thickness": 0.19999999999999998, "pos": [175.26, 116.07799999999999], "height": 1.5}, {"width": 1.5999999999999999, "angle": 0.0, "attr": [], "horiz_justify": 1, "text": "SL\nCLK\nE2\nF2\nG2\nH2\nQHN2\nGND", "thickness": 0.15, "pos": [152.908, 109.22], "height": 1.5999999999999999}, {"width": 1.5999999999999999, "angle": 0.0, "attr": [], "horiz_justify": -1, "text": "5V\nGND\nD\nC\nB\nA\nSER\nQH", "thickness": 0.15, "pos": [138.43, 109.22], "height": 1.5999999999999999}, {"width": 1.5999999999999999, "angle": 0.0, "attr": [], "horiz_justify": -1, "text": "5V\nGND\nD2\nC2\nB2\nA2\nSER2\nQH2", "thickness": 0.15, "pos": [163.322, 109.22], "height": 1.5999999999999999}, {"width": 1.5999999999999999, "angle": 0.0, "attr": [], "horiz_justify": 1, "text": "5V\nSL\nCLK\nSER2\nGND", "thickness": 0.15, "pos": [173.736, 107.94999999999999], "height": 1.5999999999999999}, {"width": 1.5, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "74HC165", "thickness": 0.3, "pos": [158.242, 109.728], "height": 1.5}, {"width": 1.5999999999999999, "angle": 0.0, "attr": [], "horiz_justify": 1, "text": "-\nAX0\nAX1\nAX3\nC1\nC3\nR3\nR1", "thickness": 0.15, "pos": [74.676, 105.664], "height": 1.5999999999999999}, {"width": 1.5999999999999999, "angle": 0.0, "attr": [], "horiz_justify": -1, "text": "-\nAX2\nAX4\nC4\nC2\nGND\nR2\nVCC", "thickness": 0.15, "pos": [80.00999999999999, 105.664], "height": 1.5999999999999999}, {"width": 1.5999999999999999, "angle": 90.0, "attr": [], "horiz_justify": -1, "text": "RAW\nGND\nRST\nVCC\nF4\nF5\nF6\nF7\nB1\nB3\nB2\nB6", "thickness": 0.15, "pos": [104.902, 100.33], "height": 1.5999999999999999}, {"width": 1.5999999999999999, "angle": 90.0, "attr": [], "horiz_justify": 1, "text": "D3\nD2\nGND\nGND\nD1\nD0\nD4\nC6\nC7\nE6\nB4\nB5", "thickness": 0.15, "pos": [104.902, 118.872], "height": 1.5999999999999999}, {"width": 1.5, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "74HC165", "thickness": 0.3, "pos": [133.096, 110.23599999999999], "height": 1.5}, {"width": 1.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "CT", "thickness": 0.3, "pos": [77.343, 93.59899999999999], "height": 1.5}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "PM1", "thickness": 0.15, "ref": 1, "pos": [93.853, 109.47399999999999], "height": 1.0}, {"start": [97.282, 113.28399999999999], "end": [88.392, 113.28399999999999], "type": "segment", "width": 0.15}, {"start": [88.392, 113.28399999999999], "end": [88.392, 105.664], "type": "segment", "width": 0.15}, {"start": [88.392, 105.664], "end": [97.282, 105.664], "type": "segment", "width": 0.15}, {"start": [97.282, 105.664], "end": [97.282, 113.28399999999999], "type": "segment", "width": 0.15}, {"start": [89.66199999999999, 100.58399999999999], "end": [120.142, 100.58399999999999], "type": "segment", "width": 0.15}, {"start": [120.142, 100.58399999999999], "end": [120.142, 118.36399999999999], "type": "segment", "width": 0.15}, {"start": [120.142, 118.36399999999999], "end": [89.66199999999999, 118.36399999999999], "type": "segment", "width": 0.15}, {"start": [89.66199999999999, 118.36399999999999], "end": [89.66199999999999, 100.58399999999999], "type": "segment", "width": 0.15}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "SR1", "thickness": 0.15, "ref": 1, "pos": [133.096, 98.0], "height": 1.0}, {"width": 0.12, "endangle": 180.0, "start": [133.096, 99.0], "radius": 1.0, "startangle": 0.0, "type": "arc"}, {"start": [132.096, 99.0], "end": [130.446, 99.0], "type": "segment", "width": 0.12}, {"start": [130.446, 99.0], "end": [130.446, 119.44], "type": "segment", "width": 0.12}, {"start": [130.446, 119.44], "end": [135.74599999999998, 119.44], "type": "segment", "width": 0.12}, {"start": [135.74599999999998, 119.44], "end": [135.74599999999998, 99.0], "type": "segment", "width": 0.12}, {"start": [135.74599999999998, 99.0], "end": [134.096, 99.0], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "J1", "thickness": 0.15, "ref": 1, "pos": [133.731, 124.46], "height": 1.0}, {"start": [135.576, 124.46], "end": [135.576, 123.13], "type": "segment", "width": 0.12}, {"start": [135.576, 123.13], "end": [136.906, 123.13], "type": "segment", "width": 0.12}, {"start": [138.176, 123.13], "end": [143.316, 123.13], "type": "segment", "width": 0.12}, {"start": [143.316, 125.78999999999999], "end": [143.316, 123.13], "type": "segment", "width": 0.12}, {"start": [138.176, 125.78999999999999], "end": [143.316, 125.78999999999999], "type": "segment", "width": 0.12}, {"start": [138.176, 125.78999999999999], "end": [138.176, 123.13], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "J2", "thickness": 0.15, "ref": 1, "pos": [133.731, 93.97999999999999], "height": 1.0}, {"start": [138.176, 95.31], "end": [138.176, 92.64999999999999], "type": "segment", "width": 0.12}, {"start": [138.176, 95.31], "end": [143.316, 95.31], "type": "segment", "width": 0.12}, {"start": [143.316, 95.31], "end": [143.316, 92.64999999999999], "type": "segment", "width": 0.12}, {"start": [138.176, 92.64999999999999], "end": [143.316, 92.64999999999999], "type": "segment", "width": 0.12}, {"start": [135.576, 92.64999999999999], "end": [136.906, 92.64999999999999], "type": "segment", "width": 0.12}, {"start": [135.576, 93.97999999999999], "end": [135.576, 92.64999999999999], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "J3", "thickness": 0.15, "ref": 1, "pos": [121.43599999999999, 93.97999999999999], "height": 1.0}, {"start": [125.476, 95.31], "end": [125.476, 92.64999999999999], "type": "segment", "width": 0.12}, {"start": [125.476, 95.31], "end": [130.61599999999999, 95.31], "type": "segment", "width": 0.12}, {"start": [130.61599999999999, 95.31], "end": [130.61599999999999, 92.64999999999999], "type": "segment", "width": 0.12}, {"start": [125.476, 92.64999999999999], "end": [130.61599999999999, 92.64999999999999], "type": "segment", "width": 0.12}, {"start": [122.87599999999999, 92.64999999999999], "end": [124.20599999999999, 92.64999999999999], "type": "segment", "width": 0.12}, {"start": [122.87599999999999, 93.97999999999999], "end": [122.87599999999999, 92.64999999999999], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "J4", "thickness": 0.15, "ref": 1, "pos": [121.43599999999999, 124.46], "height": 1.0}, {"start": [122.87599999999999, 124.46], "end": [122.87599999999999, 123.13], "type": "segment", "width": 0.12}, {"start": [122.87599999999999, 123.13], "end": [124.20599999999999, 123.13], "type": "segment", "width": 0.12}, {"start": [125.476, 123.13], "end": [130.61599999999999, 123.13], "type": "segment", "width": 0.12}, {"start": [130.61599999999999, 125.78999999999999], "end": [130.61599999999999, 123.13], "type": "segment", "width": 0.12}, {"start": [125.476, 125.78999999999999], "end": [130.61599999999999, 125.78999999999999], "type": "segment", "width": 0.12}, {"start": [125.476, 125.78999999999999], "end": [125.476, 123.13], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "J5", "thickness": 0.15, "ref": 1, "pos": [159.28199999999998, 124.46], "height": 1.0}, {"start": [163.322, 125.78999999999999], "end": [163.322, 123.13], "type": "segment", "width": 0.12}, {"start": [163.322, 125.78999999999999], "end": [168.462, 125.78999999999999], "type": "segment", "width": 0.12}, {"start": [168.462, 125.78999999999999], "end": [168.462, 123.13], "type": "segment", "width": 0.12}, {"start": [163.322, 123.13], "end": [168.462, 123.13], "type": "segment", "width": 0.12}, {"start": [160.72199999999998, 123.13], "end": [162.052, 123.13], "type": "segment", "width": 0.12}, {"start": [160.72199999999998, 124.46], "end": [160.72199999999998, 123.13], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "J6", "thickness": 0.15, "ref": 1, "pos": [159.28199999999998, 93.97999999999999], "height": 1.0}, {"start": [160.72199999999998, 93.97999999999999], "end": [160.72199999999998, 92.64999999999999], "type": "segment", "width": 0.12}, {"start": [160.72199999999998, 92.64999999999999], "end": [162.052, 92.64999999999999], "type": "segment", "width": 0.12}, {"start": [163.322, 92.64999999999999], "end": [168.462, 92.64999999999999], "type": "segment", "width": 0.12}, {"start": [168.462, 95.31], "end": [168.462, 92.64999999999999], "type": "segment", "width": 0.12}, {"start": [163.322, 95.31], "end": [168.462, 95.31], "type": "segment", "width": 0.12}, {"start": [163.322, 95.31], "end": [163.322, 92.64999999999999], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "J7", "thickness": 0.15, "ref": 1, "pos": [146.582, 93.97999999999999], "height": 1.0}, {"start": [150.62199999999999, 95.31], "end": [150.62199999999999, 92.64999999999999], "type": "segment", "width": 0.12}, {"start": [150.62199999999999, 95.31], "end": [155.762, 95.31], "type": "segment", "width": 0.12}, {"start": [155.762, 95.31], "end": [155.762, 92.64999999999999], "type": "segment", "width": 0.12}, {"start": [150.62199999999999, 92.64999999999999], "end": [155.762, 92.64999999999999], "type": "segment", "width": 0.12}, {"start": [148.022, 92.64999999999999], "end": [149.352, 92.64999999999999], "type": "segment", "width": 0.12}, {"start": [148.022, 93.97999999999999], "end": [148.022, 92.64999999999999], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "J8", "thickness": 0.15, "ref": 1, "pos": [146.582, 124.46], "height": 1.0}, {"start": [148.022, 124.46], "end": [148.022, 123.13], "type": "segment", "width": 0.12}, {"start": [148.022, 123.13], "end": [149.352, 123.13], "type": "segment", "width": 0.12}, {"start": [150.62199999999999, 123.13], "end": [155.762, 123.13], "type": "segment", "width": 0.12}, {"start": [155.762, 125.78999999999999], "end": [155.762, 123.13], "type": "segment", "width": 0.12}, {"start": [150.62199999999999, 125.78999999999999], "end": [155.762, 125.78999999999999], "type": "segment", "width": 0.12}, {"start": [150.62199999999999, 125.78999999999999], "end": [150.62199999999999, 123.13], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "J9", "thickness": 0.15, "ref": 1, "pos": [111.02199999999999, 93.97999999999999], "height": 1.0}, {"start": [115.062, 95.31], "end": [115.062, 92.64999999999999], "type": "segment", "width": 0.12}, {"start": [115.062, 95.31], "end": [120.202, 95.31], "type": "segment", "width": 0.12}, {"start": [120.202, 95.31], "end": [120.202, 92.64999999999999], "type": "segment", "width": 0.12}, {"start": [115.062, 92.64999999999999], "end": [120.202, 92.64999999999999], "type": "segment", "width": 0.12}, {"start": [112.46199999999999, 92.64999999999999], "end": [113.792, 92.64999999999999], "type": "segment", "width": 0.12}, {"start": [112.46199999999999, 93.97999999999999], "end": [112.46199999999999, 92.64999999999999], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "J10", "thickness": 0.15, "ref": 1, "pos": [111.02199999999999, 124.46], "height": 1.0}, {"start": [112.46199999999999, 124.46], "end": [112.46199999999999, 123.13], "type": "segment", "width": 0.12}, {"start": [112.46199999999999, 123.13], "end": [113.792, 123.13], "type": "segment", "width": 0.12}, {"start": [115.062, 123.13], "end": [120.202, 123.13], "type": "segment", "width": 0.12}, {"start": [120.202, 125.78999999999999], "end": [120.202, 123.13], "type": "segment", "width": 0.12}, {"start": [115.062, 125.78999999999999], "end": [120.202, 125.78999999999999], "type": "segment", "width": 0.12}, {"start": [115.062, 125.78999999999999], "end": [115.062, 123.13], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "SR2", "thickness": 0.15, "ref": 1, "pos": [158.242, 98.0], "height": 1.0}, {"start": [160.892, 99.0], "end": [159.242, 99.0], "type": "segment", "width": 0.12}, {"start": [160.892, 119.44], "end": [160.892, 99.0], "type": "segment", "width": 0.12}, {"start": [155.59199999999998, 119.44], "end": [160.892, 119.44], "type": "segment", "width": 0.12}, {"start": [155.59199999999998, 99.0], "end": [155.59199999999998, 119.44], "type": "segment", "width": 0.12}, {"start": [157.242, 99.0], "end": [155.59199999999998, 99.0], "type": "segment", "width": 0.12}, {"width": 0.12, "endangle": 180.0, "start": [158.242, 99.0], "radius": 1.0, "startangle": 0.0, "type": "arc"}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "J11", "thickness": 0.15, "ref": 1, "pos": [175.26, 99.82199999999999], "height": 1.0}, {"start": [176.59, 111.75999999999999], "end": [173.92999999999998, 111.75999999999999], "type": "segment", "width": 0.12}, {"start": [176.59, 111.75999999999999], "end": [176.59, 101.53999999999999], "type": "segment", "width": 0.12}, {"start": [176.59, 101.53999999999999], "end": [173.92999999999998, 101.53999999999999], "type": "segment", "width": 0.12}, {"start": [173.92999999999998, 111.75999999999999], "end": [173.92999999999998, 101.53999999999999], "type": "segment", "width": 0.12}, {"start": [173.92999999999998, 114.36], "end": [173.92999999999998, 113.03], "type": "segment", "width": 0.12}, {"start": [175.26, 114.36], "end": [173.92999999999998, 114.36], "type": "segment", "width": 0.12}]}, "edges_bbox": {"minx": 68.30099899999999, "miny": 91.414999, "maxx": 180.36500099999998, "maxy": 128.041001}, "fabrication": {"B": [{"width": 1.0, "val": 1, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "10k", "thickness": 0.15, "pos": [123.230999, 97.552999], "height": 1.0}, {"width": 0.5, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R19", "thickness": 0.08, "pos": [119.88799999999999, 97.536], "height": 0.5}, {"start": [120.88799999999999, 96.93599999999999], "end": [118.88799999999999, 96.93599999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [120.88799999999999, 98.136], "end": [120.88799999999999, 96.93599999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [118.88799999999999, 98.136], "end": [120.88799999999999, 98.136], "type": "segment", "width": 0.09999999999999999}, {"start": [118.88799999999999, 96.93599999999999], "end": [118.88799999999999, 98.136], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "470n", "thickness": 0.15, "pos": [99.559, 103.506], "height": 1.0}, {"start": [98.559, 104.556], "end": [98.559, 105.756], "type": "segment", "width": 0.09999999999999999}, {"start": [98.559, 105.756], "end": [100.559, 105.756], "type": "segment", "width": 0.09999999999999999}, {"start": [100.559, 105.756], "end": [100.559, 104.556], "type": "segment", "width": 0.09999999999999999}, {"start": [100.559, 104.556], "end": [98.559, 104.556], "type": "segment", "width": 0.09999999999999999}, {"width": 0.5, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "C1", "thickness": 0.08, "pos": [99.559, 105.15599999999999], "height": 0.5}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "10k", "thickness": 0.15, "pos": [136.906, 113.03], "height": 1.0}, {"start": [139.71599999999998, 112.42999999999999], "end": [139.71599999999998, 113.63], "type": "segment", "width": 0.09999999999999999}, {"start": [139.71599999999998, 113.63], "end": [141.71599999999998, 113.63], "type": "segment", "width": 0.09999999999999999}, {"start": [141.71599999999998, 113.63], "end": [141.71599999999998, 112.42999999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [141.71599999999998, 112.42999999999999], "end": [139.71599999999998, 112.42999999999999], "type": "segment", "width": 0.09999999999999999}, {"width": 0.5, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R1", "thickness": 0.08, "pos": [140.71599999999998, 113.03], "height": 0.5}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "10k", "thickness": 0.15, "pos": [163.322, 113.03], "height": 1.0}, {"start": [166.132, 112.42999999999999], "end": [166.132, 113.63], "type": "segment", "width": 0.09999999999999999}, {"start": [166.132, 113.63], "end": [168.132, 113.63], "type": "segment", "width": 0.09999999999999999}, {"start": [168.132, 113.63], "end": [168.132, 112.42999999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [168.132, 112.42999999999999], "end": [166.132, 112.42999999999999], "type": "segment", "width": 0.09999999999999999}, {"width": 0.5, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R2", "thickness": 0.08, "pos": [167.132, 113.03], "height": 0.5}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "10k", "thickness": 0.15, "pos": [136.906, 110.49], "height": 1.0}, {"width": 0.5, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R3", "thickness": 0.08, "pos": [140.71599999999998, 110.49], "height": 0.5}, {"start": [141.71599999999998, 109.89], "end": [139.71599999999998, 109.89], "type": "segment", "width": 0.09999999999999999}, {"start": [141.71599999999998, 111.08999999999999], "end": [141.71599999999998, 109.89], "type": "segment", "width": 0.09999999999999999}, {"start": [139.71599999999998, 111.08999999999999], "end": [141.71599999999998, 111.08999999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [139.71599999999998, 109.89], "end": [139.71599999999998, 111.08999999999999], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "10k", "thickness": 0.15, "pos": [163.322, 110.49], "height": 1.0}, {"width": 0.5, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R4", "thickness": 0.08, "pos": [167.132, 110.49], "height": 0.5}, {"start": [168.132, 109.89], "end": [166.132, 109.89], "type": "segment", "width": 0.09999999999999999}, {"start": [168.132, 111.08999999999999], "end": [168.132, 109.89], "type": "segment", "width": 0.09999999999999999}, {"start": [166.132, 111.08999999999999], "end": [168.132, 111.08999999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [166.132, 109.89], "end": [166.132, 111.08999999999999], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "10k", "thickness": 0.15, "pos": [136.906, 107.980002], "height": 1.0}, {"start": [139.71599999999998, 107.36500099999999], "end": [139.71599999999998, 108.565001], "type": "segment", "width": 0.09999999999999999}, {"start": [139.71599999999998, 108.565001], "end": [141.71599999999998, 108.565001], "type": "segment", "width": 0.09999999999999999}, {"start": [141.71599999999998, 108.565001], "end": [141.71599999999998, 107.36500099999999], "type": "segment", "width": 0.09999999999999999}, {"start": [141.71599999999998, 107.36500099999999], "end": [139.71599999999998, 107.36500099999999], "type": "segment", "width": 0.09999999999999999}, {"width": 0.5, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R5", "thickness": 0.08, "pos": [140.71599999999998, 107.965001], "height": 0.5}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "10k", "thickness": 0.15, "pos": [163.322, 107.959998], "height": 1.0}, {"start": [166.132, 107.35499899999999], "end": [166.132, 108.554999], "type": "segment", "width": 0.09999999999999999}, {"start": [166.132, 108.554999], "end": [168.132, 108.554999], "type": "segment", "width": 0.09999999999999999}, {"start": [168.132, 108.554999], "end": [168.132, 107.35499899999999], "type": "segment", "width": 0.09999999999999999}, {"start": [168.132, 107.35499899999999], "end": [166.132, 107.35499899999999], "type": "segment", "width": 0.09999999999999999}, {"width": 0.5, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R6", "thickness": 0.08, "pos": [167.132, 107.954999], "height": 0.5}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "10k", "thickness": 0.15, "pos": [136.906, 105.41], "height": 1.0}, {"width": 0.5, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R7", "thickness": 0.08, "pos": [140.71599999999998, 105.41], "height": 0.5}, {"start": [141.71599999999998, 104.81], "end": [139.71599999999998, 104.81], "type": "segment", "width": 0.09999999999999999}, {"start": [141.71599999999998, 106.00999999999999], "end": [141.71599999999998, 104.81], "type": "segment", "width": 0.09999999999999999}, {"start": [139.71599999999998, 106.00999999999999], "end": [141.71599999999998, 106.00999999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [139.71599999999998, 104.81], "end": [139.71599999999998, 106.00999999999999], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "10k", "thickness": 0.15, "pos": [163.322, 105.41], "height": 1.0}, {"width": 0.5, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R8", "thickness": 0.08, "pos": [167.132, 105.41], "height": 0.5}, {"start": [168.132, 104.81], "end": [166.132, 104.81], "type": "segment", "width": 0.09999999999999999}, {"start": [168.132, 106.00999999999999], "end": [168.132, 104.81], "type": "segment", "width": 0.09999999999999999}, {"start": [166.132, 106.00999999999999], "end": [168.132, 106.00999999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [166.132, 104.81], "end": [166.132, 106.00999999999999], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "10k", "thickness": 0.15, "pos": [128.143, 105.41], "height": 1.0}, {"start": [125.96799999999999, 106.00999999999999], "end": [125.96799999999999, 104.81], "type": "segment", "width": 0.09999999999999999}, {"start": [125.96799999999999, 104.81], "end": [123.96799999999999, 104.81], "type": "segment", "width": 0.09999999999999999}, {"start": [123.96799999999999, 104.81], "end": [123.96799999999999, 106.00999999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [123.96799999999999, 106.00999999999999], "end": [125.96799999999999, 106.00999999999999], "type": "segment", "width": 0.09999999999999999}, {"width": 0.5, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R9", "thickness": 0.08, "pos": [124.96799999999999, 105.41], "height": 0.5}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "10k", "thickness": 0.15, "pos": [153.289, 105.41], "height": 1.0}, {"start": [151.114, 106.00999999999999], "end": [151.114, 104.81], "type": "segment", "width": 0.09999999999999999}, {"start": [151.114, 104.81], "end": [149.114, 104.81], "type": "segment", "width": 0.09999999999999999}, {"start": [149.114, 104.81], "end": [149.114, 106.00999999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [149.114, 106.00999999999999], "end": [151.114, 106.00999999999999], "type": "segment", "width": 0.09999999999999999}, {"width": 0.5, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R10", "thickness": 0.08, "pos": [150.114, 105.41], "height": 0.5}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "10k", "thickness": 0.15, "pos": [128.143, 107.94999999999999], "height": 1.0}, {"width": 0.5, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R11", "thickness": 0.08, "pos": [124.96799999999999, 107.94999999999999], "height": 0.5}, {"start": [123.96799999999999, 108.55], "end": [125.96799999999999, 108.55], "type": "segment", "width": 0.09999999999999999}, {"start": [123.96799999999999, 107.35], "end": [123.96799999999999, 108.55], "type": "segment", "width": 0.09999999999999999}, {"start": [125.96799999999999, 107.35], "end": [123.96799999999999, 107.35], "type": "segment", "width": 0.09999999999999999}, {"start": [125.96799999999999, 108.55], "end": [125.96799999999999, 107.35], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "10k", "thickness": 0.15, "pos": [153.289, 107.94999999999999], "height": 1.0}, {"width": 0.5, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R12", "thickness": 0.08, "pos": [150.114, 107.94999999999999], "height": 0.5}, {"start": [149.114, 108.55], "end": [151.114, 108.55], "type": "segment", "width": 0.09999999999999999}, {"start": [149.114, 107.35], "end": [149.114, 108.55], "type": "segment", "width": 0.09999999999999999}, {"start": [151.114, 107.35], "end": [149.114, 107.35], "type": "segment", "width": 0.09999999999999999}, {"start": [151.114, 108.55], "end": [151.114, 107.35], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "10k", "thickness": 0.15, "pos": [128.143, 110.49], "height": 1.0}, {"start": [125.96799999999999, 111.08999999999999], "end": [125.96799999999999, 109.89], "type": "segment", "width": 0.09999999999999999}, {"start": [125.96799999999999, 109.89], "end": [123.96799999999999, 109.89], "type": "segment", "width": 0.09999999999999999}, {"start": [123.96799999999999, 109.89], "end": [123.96799999999999, 111.08999999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [123.96799999999999, 111.08999999999999], "end": [125.96799999999999, 111.08999999999999], "type": "segment", "width": 0.09999999999999999}, {"width": 0.5, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R13", "thickness": 0.08, "pos": [124.96799999999999, 110.49], "height": 0.5}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "10k", "thickness": 0.15, "pos": [153.289, 110.49], "height": 1.0}, {"start": [151.114, 111.08999999999999], "end": [151.114, 109.89], "type": "segment", "width": 0.09999999999999999}, {"start": [151.114, 109.89], "end": [149.114, 109.89], "type": "segment", "width": 0.09999999999999999}, {"start": [149.114, 109.89], "end": [149.114, 111.08999999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [149.114, 111.08999999999999], "end": [151.114, 111.08999999999999], "type": "segment", "width": 0.09999999999999999}, {"width": 0.5, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R14", "thickness": 0.08, "pos": [150.114, 110.49], "height": 0.5}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "10k", "thickness": 0.15, "pos": [128.143, 113.03], "height": 1.0}, {"width": 0.5, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R15", "thickness": 0.08, "pos": [124.96799999999999, 113.03], "height": 0.5}, {"start": [123.96799999999999, 113.63], "end": [125.96799999999999, 113.63], "type": "segment", "width": 0.09999999999999999}, {"start": [123.96799999999999, 112.42999999999999], "end": [123.96799999999999, 113.63], "type": "segment", "width": 0.09999999999999999}, {"start": [125.96799999999999, 112.42999999999999], "end": [123.96799999999999, 112.42999999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [125.96799999999999, 113.63], "end": [125.96799999999999, 112.42999999999999], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "10k", "thickness": 0.15, "pos": [153.289, 113.03], "height": 1.0}, {"width": 0.5, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R16", "thickness": 0.08, "pos": [150.114, 113.03], "height": 0.5}, {"start": [149.114, 113.63], "end": [151.114, 113.63], "type": "segment", "width": 0.09999999999999999}, {"start": [149.114, 112.42999999999999], "end": [149.114, 113.63], "type": "segment", "width": 0.09999999999999999}, {"start": [151.114, 112.42999999999999], "end": [149.114, 112.42999999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [151.114, 113.63], "end": [151.114, 112.42999999999999], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 90.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "Conn_02x08_Counter_Clockwise", "thickness": 0.15, "pos": [73.533, 105.029], "height": 1.0}, {"start": [79.883, 95.50399999999999], "end": [75.803, 95.50399999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [75.803, 95.50399999999999], "end": [74.803, 96.50399999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [74.803, 96.50399999999999], "end": [74.803, 115.824], "type": "segment", "width": 0.09999999999999999}, {"start": [74.803, 115.824], "end": [79.883, 115.824], "type": "segment", "width": 0.09999999999999999}, {"start": [79.883, 115.824], "end": [79.883, 95.50399999999999], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "angle": 90.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "CT1", "thickness": 0.15, "pos": [77.343, 105.664], "height": 1.0}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "10k", "thickness": 0.15, "pos": [109.43300099999999, 97.67100099999999], "height": 1.0}, {"start": [113.776, 98.136], "end": [113.776, 96.93599999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [113.776, 96.93599999999999], "end": [111.776, 96.93599999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [111.776, 96.93599999999999], "end": [111.776, 98.136], "type": "segment", "width": 0.09999999999999999}, {"start": [111.776, 98.136], "end": [113.776, 98.136], "type": "segment", "width": 0.09999999999999999}, {"width": 0.5, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R17", "thickness": 0.08, "pos": [112.776, 97.536], "height": 0.5}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "10k", "thickness": 0.15, "pos": [112.776, 122.428], "height": 1.0}, {"width": 0.5, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R18", "thickness": 0.08, "pos": [112.776, 120.64999999999999], "height": 0.5}, {"start": [111.776, 121.25], "end": [113.776, 121.25], "type": "segment", "width": 0.09999999999999999}, {"start": [111.776, 120.05], "end": [111.776, 121.25], "type": "segment", "width": 0.09999999999999999}, {"start": [113.776, 120.05], "end": [111.776, 120.05], "type": "segment", "width": 0.09999999999999999}, {"start": [113.776, 121.25], "end": [113.776, 120.05], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "10k", "thickness": 0.15, "pos": [119.88799999999999, 118.872], "height": 1.0}, {"start": [118.88799999999999, 120.05], "end": [118.88799999999999, 121.25], "type": "segment", "width": 0.09999999999999999}, {"start": [118.88799999999999, 121.25], "end": [120.88799999999999, 121.25], "type": "segment", "width": 0.09999999999999999}, {"start": [120.88799999999999, 121.25], "end": [120.88799999999999, 120.05], "type": "segment", "width": 0.09999999999999999}, {"start": [120.88799999999999, 120.05], "end": [118.88799999999999, 120.05], "type": "segment", "width": 0.09999999999999999}, {"width": 0.5, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "R20", "thickness": 0.08, "pos": [119.88799999999999, 120.64999999999999], "height": 0.5}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "470n", "thickness": 0.15, "pos": [140.71599999999998, 98.67999999999999], "height": 1.0}, {"start": [139.71599999999998, 99.72999999999999], "end": [139.71599999999998, 100.92999999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [139.71599999999998, 100.92999999999999], "end": [141.71599999999998, 100.92999999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [141.71599999999998, 100.92999999999999], "end": [141.71599999999998, 99.72999999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [141.71599999999998, 99.72999999999999], "end": [139.71599999999998, 99.72999999999999], "type": "segment", "width": 0.09999999999999999}, {"width": 0.5, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "C2", "thickness": 0.08, "pos": [140.71599999999998, 100.33], "height": 0.5}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "470n", "thickness": 0.15, "pos": [167.132, 98.67999999999999], "height": 1.0}, {"width": 0.5, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "C3", "thickness": 0.08, "pos": [167.132, 100.33], "height": 0.5}, {"start": [168.132, 99.72999999999999], "end": [166.132, 99.72999999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [168.132, 100.92999999999999], "end": [168.132, 99.72999999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [166.132, 100.92999999999999], "end": [168.132, 100.92999999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [166.132, 99.72999999999999], "end": [166.132, 100.92999999999999], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "470n", "thickness": 0.15, "pos": [82.804, 114.93599999999999], "height": 1.0}, {"start": [81.804, 115.98599999999999], "end": [81.804, 117.18599999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [81.804, 117.18599999999999], "end": [83.804, 117.18599999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [83.804, 117.18599999999999], "end": [83.804, 115.98599999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [83.804, 115.98599999999999], "end": [81.804, 115.98599999999999], "type": "segment", "width": 0.09999999999999999}, {"width": 0.5, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "C4", "thickness": 0.08, "pos": [82.804, 116.586], "height": 0.5}], "F": [{"width": 1.0, "val": 1, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "Pro_Micro", "thickness": 0.15, "pos": [104.902, 109.47399999999999], "height": 1.0}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "Conn_02x08_Counter_Clockwise", "thickness": 0.15, "pos": [133.096, 120.44], "height": 1.0}, {"start": [130.921, 99.06], "end": [136.271, 99.06], "type": "segment", "width": 0.09999999999999999}, {"start": [136.271, 99.06], "end": [136.271, 119.38], "type": "segment", "width": 0.09999999999999999}, {"start": [136.271, 119.38], "end": [129.921, 119.38], "type": "segment", "width": 0.09999999999999999}, {"start": [129.921, 119.38], "end": [129.921, 100.06], "type": "segment", "width": 0.09999999999999999}, {"start": [129.921, 100.06], "end": [130.921, 99.06], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "SR1", "thickness": 0.15, "pos": [133.096, 109.22], "height": 1.0}, {"width": 1.0, "val": 1, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "Conn_01x03", "thickness": 0.15, "pos": [144.756, 124.46], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "J1", "thickness": 0.15, "pos": [139.446, 124.46], "height": 1.0}, {"start": [143.256, 125.72999999999999], "end": [135.636, 125.72999999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [143.256, 123.19], "end": [143.256, 125.72999999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [136.271, 123.19], "end": [143.256, 123.19], "type": "segment", "width": 0.09999999999999999}, {"start": [135.636, 123.82499999999999], "end": [136.271, 123.19], "type": "segment", "width": 0.09999999999999999}, {"start": [135.636, 125.72999999999999], "end": [135.636, 123.82499999999999], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "Conn_01x03", "thickness": 0.15, "pos": [144.756, 93.97999999999999], "height": 1.0}, {"start": [135.636, 95.25], "end": [135.636, 93.345], "type": "segment", "width": 0.09999999999999999}, {"start": [135.636, 93.345], "end": [136.271, 92.71], "type": "segment", "width": 0.09999999999999999}, {"start": [136.271, 92.71], "end": [143.256, 92.71], "type": "segment", "width": 0.09999999999999999}, {"start": [143.256, 92.71], "end": [143.256, 95.25], "type": "segment", "width": 0.09999999999999999}, {"start": [143.256, 95.25], "end": [135.636, 95.25], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "J2", "thickness": 0.15, "pos": [139.446, 93.97999999999999], "height": 1.0}, {"width": 1.0, "val": 1, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "Conn_01x03", "thickness": 0.15, "pos": [132.05599999999998, 93.97999999999999], "height": 1.0}, {"start": [122.93599999999999, 95.25], "end": [122.93599999999999, 93.345], "type": "segment", "width": 0.09999999999999999}, {"start": [122.93599999999999, 93.345], "end": [123.571, 92.71], "type": "segment", "width": 0.09999999999999999}, {"start": [123.571, 92.71], "end": [130.55599999999998, 92.71], "type": "segment", "width": 0.09999999999999999}, {"start": [130.55599999999998, 92.71], "end": [130.55599999999998, 95.25], "type": "segment", "width": 0.09999999999999999}, {"start": [130.55599999999998, 95.25], "end": [122.93599999999999, 95.25], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "J3", "thickness": 0.15, "pos": [126.746, 93.97999999999999], "height": 1.0}, {"width": 1.0, "val": 1, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "Conn_01x03", "thickness": 0.15, "pos": [132.05599999999998, 124.46], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "J4", "thickness": 0.15, "pos": [126.746, 124.46], "height": 1.0}, {"start": [130.55599999999998, 125.72999999999999], "end": [122.93599999999999, 125.72999999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [130.55599999999998, 123.19], "end": [130.55599999999998, 125.72999999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [123.571, 123.19], "end": [130.55599999999998, 123.19], "type": "segment", "width": 0.09999999999999999}, {"start": [122.93599999999999, 123.82499999999999], "end": [123.571, 123.19], "type": "segment", "width": 0.09999999999999999}, {"start": [122.93599999999999, 125.72999999999999], "end": [122.93599999999999, 123.82499999999999], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "Conn_01x03", "thickness": 0.15, "pos": [169.902, 124.46], "height": 1.0}, {"start": [160.78199999999998, 125.72999999999999], "end": [160.78199999999998, 123.82499999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [160.78199999999998, 123.82499999999999], "end": [161.417, 123.19], "type": "segment", "width": 0.09999999999999999}, {"start": [161.417, 123.19], "end": [168.402, 123.19], "type": "segment", "width": 0.09999999999999999}, {"start": [168.402, 123.19], "end": [168.402, 125.72999999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [168.402, 125.72999999999999], "end": [160.78199999999998, 125.72999999999999], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "J5", "thickness": 0.15, "pos": [164.59199999999998, 124.46], "height": 1.0}, {"width": 1.0, "val": 1, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "Conn_01x03", "thickness": 0.15, "pos": [169.902, 93.97999999999999], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "J6", "thickness": 0.15, "pos": [164.59199999999998, 93.97999999999999], "height": 1.0}, {"start": [168.402, 95.25], "end": [160.78199999999998, 95.25], "type": "segment", "width": 0.09999999999999999}, {"start": [168.402, 92.71], "end": [168.402, 95.25], "type": "segment", "width": 0.09999999999999999}, {"start": [161.417, 92.71], "end": [168.402, 92.71], "type": "segment", "width": 0.09999999999999999}, {"start": [160.78199999999998, 93.345], "end": [161.417, 92.71], "type": "segment", "width": 0.09999999999999999}, {"start": [160.78199999999998, 95.25], "end": [160.78199999999998, 93.345], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "Conn_01x03", "thickness": 0.15, "pos": [157.202, 93.97999999999999], "height": 1.0}, {"start": [148.082, 95.25], "end": [148.082, 93.345], "type": "segment", "width": 0.09999999999999999}, {"start": [148.082, 93.345], "end": [148.71699999999998, 92.71], "type": "segment", "width": 0.09999999999999999}, {"start": [148.71699999999998, 92.71], "end": [155.702, 92.71], "type": "segment", "width": 0.09999999999999999}, {"start": [155.702, 92.71], "end": [155.702, 95.25], "type": "segment", "width": 0.09999999999999999}, {"start": [155.702, 95.25], "end": [148.082, 95.25], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "J7", "thickness": 0.15, "pos": [151.892, 93.97999999999999], "height": 1.0}, {"width": 1.0, "val": 1, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "Conn_01x03", "thickness": 0.15, "pos": [157.202, 124.46], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "J8", "thickness": 0.15, "pos": [151.892, 124.46], "height": 1.0}, {"start": [155.702, 125.72999999999999], "end": [148.082, 125.72999999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [155.702, 123.19], "end": [155.702, 125.72999999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [148.71699999999998, 123.19], "end": [155.702, 123.19], "type": "segment", "width": 0.09999999999999999}, {"start": [148.082, 123.82499999999999], "end": [148.71699999999998, 123.19], "type": "segment", "width": 0.09999999999999999}, {"start": [148.082, 125.72999999999999], "end": [148.082, 123.82499999999999], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "Conn_01x03", "thickness": 0.15, "pos": [121.642, 93.97999999999999], "height": 1.0}, {"start": [112.52199999999999, 95.25], "end": [112.52199999999999, 93.345], "type": "segment", "width": 0.09999999999999999}, {"start": [112.52199999999999, 93.345], "end": [113.157, 92.71], "type": "segment", "width": 0.09999999999999999}, {"start": [113.157, 92.71], "end": [120.142, 92.71], "type": "segment", "width": 0.09999999999999999}, {"start": [120.142, 92.71], "end": [120.142, 95.25], "type": "segment", "width": 0.09999999999999999}, {"start": [120.142, 95.25], "end": [112.52199999999999, 95.25], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "J9", "thickness": 0.15, "pos": [116.332, 93.97999999999999], "height": 1.0}, {"width": 1.0, "val": 1, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "Conn_01x03", "thickness": 0.15, "pos": [121.642, 124.46], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "J10", "thickness": 0.15, "pos": [116.332, 124.46], "height": 1.0}, {"start": [120.142, 125.72999999999999], "end": [112.52199999999999, 125.72999999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [120.142, 123.19], "end": [120.142, 125.72999999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [113.157, 123.19], "end": [120.142, 123.19], "type": "segment", "width": 0.09999999999999999}, {"start": [112.52199999999999, 123.82499999999999], "end": [113.157, 123.19], "type": "segment", "width": 0.09999999999999999}, {"start": [112.52199999999999, 125.72999999999999], "end": [112.52199999999999, 123.82499999999999], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "Conn_02x08_Counter_Clockwise", "thickness": 0.15, "pos": [158.242, 120.44], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "SR2", "thickness": 0.15, "pos": [158.242, 109.22], "height": 1.0}, {"start": [155.06699999999998, 100.06], "end": [156.06699999999998, 99.06], "type": "segment", "width": 0.09999999999999999}, {"start": [155.06699999999998, 119.38], "end": [155.06699999999998, 100.06], "type": "segment", "width": 0.09999999999999999}, {"start": [161.417, 119.38], "end": [155.06699999999998, 119.38], "type": "segment", "width": 0.09999999999999999}, {"start": [161.417, 99.06], "end": [161.417, 119.38], "type": "segment", "width": 0.09999999999999999}, {"start": [156.06699999999998, 99.06], "end": [161.417, 99.06], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "Conn_01x05", "thickness": 0.15, "pos": [175.26, 100.1], "height": 1.0}, {"start": [176.53, 114.3], "end": [174.625, 114.3], "type": "segment", "width": 0.09999999999999999}, {"start": [174.625, 114.3], "end": [173.98999999999998, 113.66499999999999], "type": "segment", "width": 0.09999999999999999}, {"start": [173.98999999999998, 113.66499999999999], "end": [173.98999999999998, 101.6], "type": "segment", "width": 0.09999999999999999}, {"start": [173.98999999999998, 101.6], "end": [176.53, 101.6], "type": "segment", "width": 0.09999999999999999}, {"start": [176.53, 101.6], "end": [176.53, 114.3], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "J11", "thickness": 0.15, "pos": [175.26, 107.94999999999999], "height": 1.0}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "MountingHole_Pad", "thickness": 0.15, "pos": [88.22, 127.49799999999999], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "H1", "thickness": 0.15, "pos": [88.52, 123.698], "height": 1.0}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "MountingHole_Pad", "thickness": 0.15, "pos": [172.72, 127.49799999999999], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "H2", "thickness": 0.15, "pos": [173.01999999999998, 123.698], "height": 1.0}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "MountingHole_Pad", "thickness": 0.15, "pos": [172.72, 99.304], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "H3", "thickness": 0.15, "pos": [173.01999999999998, 95.50399999999999], "height": 1.0}]}, "metadata": {"date": "2020-01-08 13:12:15", "company": "", "revision": "", "title": "box"}}
///////////////////////////////////////////////
///////////////////////////////////////////////
/* Utility functions */
var storagePrefix = 'KiCad_HTML_BOM__' + pcbdata.metadata.title + '__' +
pcbdata.metadata.revision + '__';
var storage;
function initStorage(key) {
try {
window.localStorage.getItem("blank");
storage = window.localStorage;
} catch (e) {
// localStorage not available
}
if (!storage) {
try {
window.sessionStorage.getItem("blank");
storage = window.sessionStorage;
} catch (e) {
// sessionStorage also not available
}
}
}
function readStorage(key) {
if (storage) {
return storage.getItem(storagePrefix + '#' + key);
} else {
return null;
}
}
function writeStorage(key, value) {
if (storage) {
storage.setItem(storagePrefix + '#' + key, value);
}
}
function fancyDblClickHandler(el, onsingle, ondouble) {
return function() {
if (el.getAttribute("data-dblclick") == null) {
el.setAttribute("data-dblclick", 1);
setTimeout(function() {
if (el.getAttribute("data-dblclick") == 1) {
onsingle();
}
el.removeAttribute("data-dblclick");
}, 200);
} else {
el.removeAttribute("data-dblclick");
ondouble();
}
}
}
function smoothScrollToRow(rowid) {
document.getElementById(rowid).scrollIntoView({
behavior: "smooth",
block: "center",
inline: "nearest"
});
}
function focusInputField(input) {
input.scrollIntoView(false);
input.focus();
input.select();
}
function copyToClipboard() {
var text = '';
for (var node of bomhead.childNodes[0].childNodes) {
if (node.firstChild) {
text = text + node.firstChild.nodeValue;
}
if (node != bomhead.childNodes[0].lastChild) {
text += '\t';
}
}
text += '\n';
for (var row of bombody.childNodes) {
for (var cell of row.childNodes) {
for (var node of cell.childNodes) {
if (node.nodeName == "INPUT") {
if (node.checked) {
text = text + '✓';
}
} else if (node.nodeName == "MARK") {
text = text + node.firstChild.nodeValue;
} else {
text = text + node.nodeValue;
}
}
if (cell != row.lastChild) {
text += '\t';
}
}
text += '\n';
}
var textArea = document.createElement("textarea");
textArea.classList.add('clipboard-temp');
textArea.value = text;
document.body.appendChild(textArea);
textArea.focus();
textArea.select();
try {
if (document.execCommand('copy')) {
console.log('Bom copied to clipboard.');
}
} catch (err) {
console.log('Can not copy to clipboard.');
}
document.body.removeChild(textArea);
}
function removeGutterNode(node) {
for (var i = 0; i < node.childNodes.length; i++) {
if (node.childNodes[i].classList &&
node.childNodes[i].classList.contains("gutter")) {
node.removeChild(node.childNodes[i]);
break;
}
}
}
function cleanGutters() {
removeGutterNode(document.getElementById("bot"));
removeGutterNode(document.getElementById("canvasdiv"));
}
var units = {
prefixes: {
giga: ["G", "g", "giga", "Giga", "GIGA"],
mega: ["M", "mega", "Mega", "MEGA"],
kilo: ["K", "k", "kilo", "Kilo", "KILO"],
milli: ["m", "milli", "Milli", "MILLI"],
micro: ["U", "u", "micro", "Micro", "MICRO", "μ", "µ"], // different utf8 μ
nano: ["N", "n", "nano", "Nano", "NANO"],
pico: ["P", "p", "pico", "Pico", "PICO"],
},
unitsShort: ["R", "r", "Ω", "F", "f", "H", "h"],
unitsLong: [
"OHM", "Ohm", "ohm", "ohms",
"FARAD", "Farad", "farad",
"HENRY", "Henry", "henry"
],
getMultiplier: function(s) {
if (this.prefixes.giga.includes(s)) return 1e9;
if (this.prefixes.mega.includes(s)) return 1e6;
if (this.prefixes.kilo.includes(s)) return 1e3;
if (this.prefixes.milli.includes(s)) return 1e-3;
if (this.prefixes.micro.includes(s)) return 1e-6;
if (this.prefixes.nano.includes(s)) return 1e-9;
if (this.prefixes.pico.includes(s)) return 1e-12;
return 1;
},
valueRegex: null,
}
function initUtils() {
var allPrefixes = units.prefixes.giga
.concat(units.prefixes.mega)
.concat(units.prefixes.kilo)
.concat(units.prefixes.milli)
.concat(units.prefixes.micro)
.concat(units.prefixes.nano)
.concat(units.prefixes.pico);
var allUnits = units.unitsShort.concat(units.unitsLong);
units.valueRegex = new RegExp("^([0-9\.]+)" +
"\\s*(" + allPrefixes.join("|") + ")?" +
"(" + allUnits.join("|") + ")?" +
"(\\b.*)?$", "");
units.valueAltRegex = new RegExp("^([0-9]*)" +
"(" + units.unitsShort.join("|") + ")?" +
"([GgMmKkUuNnPp])?" +
"([0-9]*)" +
"(\\b.*)?$", "");
for (var bomtable of Object.values(pcbdata.bom)) {
for (var row of bomtable) {
row.push(parseValue(row[1], row[3][0][0]));
}
}
}
function parseValue(val, ref) {
var inferUnit = (unit, ref) => {
if (unit) {
unit = unit.toLowerCase();
if (unit == 'Ω' || unit == "ohm" || unit == "ohms") {
unit = 'r';
}
unit = unit[0];
} else {
ref = /^([a-z]+)\d+$/i.exec(ref);
if (ref) {
ref = ref[1].toLowerCase();
if (ref == "c") unit = 'f';
else if (ref == "l") unit = 'h';
else if (ref == "r" || ref == "rv") unit = 'r';
else unit = null;
}
}
return unit;
};
val = val.replace(/,/g, "");
var match = units.valueRegex.exec(val);
var unit;
if (match) {
val = parseFloat(match[1]);
if (match[2]) {
val = val * units.getMultiplier(match[2]);
}
unit = inferUnit(match[3], ref);
if (!unit) return null;
else return {
val: val,
unit: unit,
extra: match[4],
}
}
match = units.valueAltRegex.exec(val);
if (match && (match[1] || match[4])) {
val = parseFloat(match[1] + "." + match[4]);
if (match[3]) {
val = val * units.getMultiplier(match[3]);
}
unit = inferUnit(match[2], ref);
if (!unit) return null;
else return {
val: val,
unit: unit,
extra: match[5],
}
}
return null;
}
function valueCompare(a, b, stra, strb) {
if (a === null && b === null) {
// Failed to parse both values, compare them as strings.
if (stra != strb) return stra > strb ? 1 : -1;
else return 0;
} else if (a === null) {
return 1;
} else if (b === null) {
return -1;
} else {
if (a.unit != b.unit) return a.unit > b.unit ? 1 : -1;
else if (a.val != b.val) return a.val > b.val ? 1 : -1;
else if (a.extra != b.extra) return a.extra > b.extra ? 1 : -1;
else return 0;
}
}
///////////////////////////////////////////////
///////////////////////////////////////////////
/* PCB rendering code */
var redrawOnDrag = true;
var boardRotation = 0;
var renderPads = true;
var renderReferences = true;
var renderValues = true;
function deg2rad(deg) {
return deg * Math.PI / 180;
}
function calcFontPoint(linepoint, text, offsetx, offsety, tilt) {
var point = [
linepoint[0] * text.width + offsetx,
linepoint[1] * text.height + offsety
];
// Adding half a line height here is technically a bug
// but pcbnew currently does the same, text is slightly shifted.
point[0] -= (point[1] + text.height * 0.5) * tilt;
return point;
}
function drawtext(ctx, text, color, flip) {
if ("ref" in text && !renderReferences) return;
if ("val" in text && !renderValues) return;
ctx.save();
ctx.translate(...text.pos);
var angle = -text.angle;
if (text.attr.includes("mirrored")) {
ctx.scale(-1, 1);
angle = -angle;
}
var tilt = 0;
if (text.attr.includes("italic")) {
tilt = 0.125;
}
var interline = (text.height * 1.5 + text.thickness) / 2;
var txt = text.text.split("\n");
// KiCad ignores last empty line.
if (txt[txt.length - 1] == '') txt.pop();
ctx.rotate(deg2rad(angle));
ctx.fillStyle = color;
ctx.strokeStyle = color;
ctx.lineCap = "round";
ctx.lineWidth = text.thickness;
for (var i in txt) {