-
Notifications
You must be signed in to change notification settings - Fork 0
/
FXTal_rev1.kicad_sch
5663 lines (5532 loc) · 220 KB
/
FXTal_rev1.kicad_sch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_sch (version 20230409) (generator eeschema)
(uuid d814800d-9c5d-4475-a62c-2c4223c12dc9)
(paper "A2")
(lib_symbols
(symbol "Connector:TestPoint" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes)
(property "Reference" "TP" (at 0 6.858 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Connector_TestPoint" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Pin* Test*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TestPoint_0_1"
(circle (center 0 3.302) (radius 0.762)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "TestPoint_1_1"
(pin passive line (at 0 0 90) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "lib_sch:CAL_CAP_IBM_F" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "CAL" (at 0 6.35 0)
(effects (font (size 1.27 1.27)) (justify bottom))
)
(property "Value" "CAL_CAP_IBM_F" (at 0 3.81 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Footprint" "lib_fp:CAL_CAP_IBM_F" (at 0 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "CAL_CAP_IBM_F_0_1"
(rectangle (start -2.54 2.54) (end 2.54 -6.35)
(stroke (width 0) (type default))
(fill (type background))
)
(rectangle (start -1.27 -2.54) (end 1.27 -5.08)
(stroke (width 0) (type default))
(fill (type background))
)
(rectangle (start -1.27 1.27) (end 1.27 -1.27)
(stroke (width 0) (type default))
(fill (type outline))
)
(polyline
(pts
(xy -2.54 -3.81)
(xy -1.27 -3.81)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy -2.54 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "CAL_CAP_IBM_F_1_1"
(pin passive line (at -6.35 0 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "COL" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -6.35 -3.81 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "ROW" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "lib_sch:CONN_CAP_IBM_F" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "J" (at -3.81 41.91 0)
(effects (font (size 1.27 1.27)) (justify bottom))
)
(property "Value" "CONN_CAP_IBM_F" (at -2.54 39.37 0)
(effects (font (size 1.27 1.27)) (justify bottom))
)
(property "Footprint" "lib_fp:CONN_CAP_IBM_F" (at -3.81 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at -3.81 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "CONN_CAP_IBM_F_1_1"
(rectangle (start -5.08 -37.973) (end -3.81 -38.227)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 -35.433) (end -3.81 -35.687)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 -32.893) (end -3.81 -33.147)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 -30.353) (end -3.81 -30.607)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 -27.813) (end -3.81 -28.067)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 -25.273) (end -3.81 -25.527)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 -22.733) (end -3.81 -22.987)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 -20.193) (end -3.81 -20.447)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 -17.653) (end -3.81 -17.907)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 -15.113) (end -3.81 -15.367)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 -12.573) (end -3.81 -12.827)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 -10.033) (end -3.81 -10.287)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 -7.493) (end -3.81 -7.747)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 -4.953) (end -3.81 -5.207)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 -2.413) (end -3.81 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 0.127) (end -3.81 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 2.667) (end -3.81 2.413)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 5.207) (end -3.81 4.953)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 7.747) (end -3.81 7.493)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 10.287) (end -3.81 10.033)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 12.827) (end -3.81 12.573)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 15.367) (end -3.81 15.113)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 17.907) (end -3.81 17.653)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 20.447) (end -3.81 20.193)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 22.987) (end -3.81 22.733)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 25.527) (end -3.81 25.273)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 28.067) (end -3.81 27.813)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 30.607) (end -3.81 30.353)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 33.147) (end -3.81 32.893)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 35.687) (end -3.81 35.433)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -5.08 36.83) (end 5.08 -39.37)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at -8.89 35.56 0) (length 3.81)
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 12.7 0) (length 3.81)
(name "ROW_8" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 10.16 0) (length 3.81)
(name "GND" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 7.62 0) (length 3.81)
(name "GND" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 5.08 0) (length 3.81)
(name "COL_1" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 2.54 0) (length 3.81)
(name "COL_2" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 0 0) (length 3.81)
(name "COL_3" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 -2.54 0) (length 3.81)
(name "COL_4" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 -5.08 0) (length 3.81)
(name "COL_5" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 -7.62 0) (length 3.81)
(name "COL_6" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 -10.16 0) (length 3.81)
(name "COL_7" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 33.02 0) (length 3.81)
(name "GND" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 -12.7 0) (length 3.81)
(name "COL_8" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 -15.24 0) (length 3.81)
(name "COL_9" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 -17.78 0) (length 3.81)
(name "COL_A" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 -20.32 0) (length 3.81)
(name "COL_B" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 -22.86 0) (length 3.81)
(name "COL_C" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 -25.4 0) (length 3.81)
(name "COL_D" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 -27.94 0) (length 3.81)
(name "COL_E" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 -30.48 0) (length 3.81)
(name "COL_F" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 -33.02 0) (length 3.81)
(name "COL_G" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 -35.56 0) (length 3.81)
(name "GND" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 30.48 0) (length 3.81)
(name "ROW_1" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 -38.1 0) (length 3.81)
(name "GND" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 27.94 0) (length 3.81)
(name "ROW_2" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 25.4 0) (length 3.81)
(name "ROW_3" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 22.86 0) (length 3.81)
(name "ROW_4" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 20.32 0) (length 3.81)
(name "ROW_5" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 17.78 0) (length 3.81)
(name "ROW_6" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 15.24 0) (length 3.81)
(name "ROW_7" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "lib_sch:SW_CAP_IBM_F" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "SW" (at 0 6.35 0)
(effects (font (size 1.27 1.27)) (justify bottom))
)
(property "Value" "SW_CAP_IBM_F" (at 0 3.81 0)
(effects (font (size 1.27 1.27)) (justify bottom))
)
(property "Footprint" "lib_fp:SW_CAP_IBM_F" (at 0 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SW_CAP_IBM_F_0_1"
(rectangle (start -2.54 2.54) (end 2.54 -6.35)
(stroke (width 0) (type default))
(fill (type background))
)
(rectangle (start -1.27 -2.54) (end 1.27 -5.08)
(stroke (width 0) (type default))
(fill (type background))
)
(rectangle (start -1.27 1.27) (end 1.27 -1.27)
(stroke (width 0) (type default))
(fill (type outline))
)
(polyline
(pts
(xy -2.54 -3.81)
(xy -1.27 -3.81)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy -2.54 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "SW_CAP_IBM_F_1_1"
(pin no_connect line (at 6.35 -2.54 180) (length 3.81) hide
(name "~" (effects (font (size 1.27 1.27))))
(number "A" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 6.35 -5.08 180) (length 3.81) hide
(name "~" (effects (font (size 1.27 1.27))))
(number "B" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -6.35 0 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "COL" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 6.35 0 180) (length 3.81) hide
(name "~" (effects (font (size 1.27 1.27))))
(number "REF" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -6.35 -3.81 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "ROW" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "power_GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(polyline (pts (xy 110.49 179.07) (xy 110.49 261.62))
(stroke (width 0.508) (type default))
(uuid 7428bcc0-ce58-4642-805a-d7578daf2722)
)
(polyline (pts (xy 467.36 179.07) (xy 467.36 261.62))
(stroke (width 0.508) (type default))
(uuid 74d80906-e6d6-4e36-9df8-46f13ef4fc9a)
)
(polyline (pts (xy 74.93 179.07) (xy 467.36 179.07))
(stroke (width 0.508) (type default))
(uuid bfe75fbb-ac70-4826-8073-c4b53cd08543)
)
(polyline (pts (xy 394.97 179.07) (xy 394.97 261.62))
(stroke (width 0.508) (type default))
(uuid de02ac67-b471-4b52-b952-f9dd7371ecf6)
)
(polyline (pts (xy 74.93 261.62) (xy 467.36 261.62))
(stroke (width 0.508) (type default))
(uuid e1eaa4e3-125d-4774-9726-fd15ecfa7352)
)
(polyline (pts (xy 74.93 179.07) (xy 74.93 261.62))
(stroke (width 0.508) (type default))
(uuid e39b6303-60b3-4f8d-9838-9c542f6d9b2d)
)
(global_label "ROW_4" (shape input) (at 351.2566 81.9658 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 01d1e6dd-7c7f-49b7-9c3b-f63a97c3c8e6)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 342.776 81.9658 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_4" (shape passive) (at 111.4552 71.882 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 01fa62ea-0471-4ed9-b237-78d8ab5a821a)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 118.9833 71.882 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "ROW_1" (shape passive) (at 189.23 257.81 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0485b44d-ee42-4c59-b139-6c2cb5150548)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 181.7019 257.81 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_4" (shape passive) (at 171.45 237.49 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 05605ef2-b269-43a9-89f6-78bd8b84b845)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 164.3452 237.49 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_2" (shape passive) (at 118.11 187.96 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 05a243e5-be03-469b-87a2-edd5cdfbde38)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 111.0052 187.96 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_6" (shape passive) (at 384.81 208.28 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 06f72e85-251c-4bfe-9101-80a3b1aaf3cd)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 377.2819 208.28 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_3" (shape passive) (at 111.4552 69.342 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 088df0e1-96f8-4c6b-aae1-b41c4e2eaad6)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 118.9833 69.342 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "COL_4" (shape input) (at 351.3836 95.2246 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 097e8243-bd64-4108-b82c-8abdfdb18e07)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 343.3263 95.2246 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_1" (shape passive) (at 420.37 257.81 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0a9ec139-3b61-4b62-bb96-c16475d975ee)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 412.8419 257.81 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_3" (shape passive) (at 153.67 237.49 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0c5a3296-8667-415b-afeb-5ff2c932c563)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 146.5652 237.49 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_5" (shape passive) (at 189.23 254 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0d335f49-a4a3-4bc1-8e1a-be81e52a9d8b)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 182.1252 254 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_5" (shape input) (at 285.0642 103.0478 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0d60a0ae-3a7a-460d-9cd9-304817138445)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 277.0069 103.0478 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_8" (shape passive) (at 260.35 191.77 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 117279f7-866e-4174-ad35-376734fba45a)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 252.8219 191.77 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_4" (shape passive) (at 242.57 224.79 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 127a931d-a3db-4878-828b-23be4b6934e1)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 235.0419 224.79 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_6" (shape passive) (at 111.4552 76.962 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 13b7ca6d-4d82-4f14-925f-efb88242ce54)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 118.9833 76.962 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "COL_C" (shape passive) (at 438.15 204.47 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 13ffef35-ad5a-4ab0-8a57-e898f90783b9)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 430.9847 204.47 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_7" (shape passive) (at 189.23 191.77 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 14650c7b-bb17-426b-aca8-66445b477419)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 181.7019 191.77 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_6" (shape passive) (at 153.67 208.28 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 147c9025-1879-447c-9541-35b7193f1db7)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 146.1419 208.28 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_A" (shape input) (at 307.1114 109.728 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 15d0b19c-05c3-4772-be7b-28c29cef83f0)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 299.175 109.728 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_8" (shape passive) (at 331.47 187.96 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1774c5ce-c9fb-46e4-a5da-1207300a7655)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 324.3652 187.96 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_1" (shape passive) (at 82.55 254 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 17a5d8a9-ab8f-4b89-b0da-9a3565072e8c)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 75.4452 254 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_1" (shape passive) (at 82.55 237.49 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 19ba8d47-174f-4634-95d8-186744926667)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 75.4452 237.49 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_5" (shape passive) (at 118.11 224.79 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 19d0eed2-f178-4b77-b976-5c0dab308691)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 110.5819 224.79 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_4" (shape passive) (at 189.23 187.96 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1a74ea00-e415-414d-bfa4-d2212624fc4c)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 182.1252 187.96 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_4" (shape passive) (at 189.23 220.98 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1b79a068-2c13-46a3-a92d-ddda7e4928f8)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 182.1252 220.98 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_6" (shape passive) (at 331.47 208.28 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1eb7eee1-4cea-4657-b6b6-96f4458fda7c)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 323.9419 208.28 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_8" (shape passive) (at 111.4552 107.442 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1ececf0a-d403-4127-b3d3-154f52285675)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 118.56 107.442 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "COL_9" (shape passive) (at 349.25 220.98 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1efd92ac-8b2c-4c2a-a2d2-bd60e83166f1)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 342.1452 220.98 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_6" (shape input) (at 306.9336 89.3064 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1f6b6bd3-616a-4069-9dc7-23e65e753961)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 298.453 89.3064 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_8" (shape passive) (at 207.01 191.77 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 204e6a06-be01-4c77-97b7-0063f0110ec7)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 199.4819 191.77 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_5" (shape passive) (at 111.4552 99.822 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 210e19ae-0e35-4dfb-8a1b-367da979cb7f)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 118.56 99.822 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "ROW_4" (shape passive) (at 295.91 224.79 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 21f3e5ae-454d-4c22-9400-f1ee80f4c6e1)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 288.3819 224.79 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_A" (shape passive) (at 402.59 220.98 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 22446ebf-fe13-4f90-a728-03aa603adce0)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 395.6061 220.98 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_7" (shape passive) (at 242.57 208.28 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 22931e4d-61ba-479f-8a99-d5a468b6c1a5)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 235.0419 208.28 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_8" (shape input) (at 351.3582 88.5952 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 278d3924-50eb-4f16-abcc-81b7de4522a4)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 342.8776 88.5952 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_1" (shape passive) (at 82.55 220.98 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 27b53319-923c-4be2-a322-ff5da147bb84)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 75.4452 220.98 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_9" (shape input) (at 285.115 110.2106 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2b253386-eef8-40bb-b0ea-1da8cb325734)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 277.0577 110.2106 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_5" (shape passive) (at 402.59 224.79 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2b6451ea-2e52-4390-a8bd-db897fcf7a6d)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 395.0619 224.79 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_2" (shape passive) (at 111.4552 92.202 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 2d01e3da-583c-40b8-bdff-977f57f9cd02)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 118.56 92.202 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "ROW_1" (shape passive) (at 135.89 257.81 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2f821a72-33de-4f26-98b0-f442abf731d8)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 128.3619 257.81 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_8" (shape passive) (at 313.69 204.47 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 305a36c0-f7ae-4cfe-be39-3feb7fffcf80)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 306.5852 204.47 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_5" (shape passive) (at 111.4552 74.422 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 31b7d5a3-940c-4c35-aa0e-8d2cc9d52556)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 118.9833 74.422 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "ROW_8" (shape passive) (at 153.67 191.77 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 31ebfddc-7906-43b6-9c92-52414c00a856)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 146.1419 191.77 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_1" (shape passive) (at 100.33 257.81 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 32f54fe1-5c0a-40f2-8f5d-32f8285599cf)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 92.8019 257.81 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_7" (shape passive) (at 295.91 204.47 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3361ec45-09a4-416c-be12-8688f84a5b1e)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 288.8052 204.47 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_B" (shape passive) (at 438.15 254 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 34106850-0dcd-46ce-8637-4afed2ad1997)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 430.9847 254 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_A" (shape passive) (at 402.59 254 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 34919795-7237-4eaf-97de-8f9614e0c88d)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 395.6061 254 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_A" (shape passive) (at 402.59 204.47 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 34f4176f-f91f-4d0c-b065-3d07b0d69bbf)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 395.6061 204.47 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_3" (shape passive) (at 171.45 241.3 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 352e4041-2daa-4833-af06-4596bbb9eb60)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 163.9219 241.3 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_4" (shape passive) (at 189.23 241.3 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 358e6747-c19f-4c3b-9fcf-0bf7e1fd0a15)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 181.7019 241.3 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_2" (shape passive) (at 384.81 241.3 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 367a9989-29be-4f8f-a89f-feb760cb67f9)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 377.2819 241.3 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_2" (shape passive) (at 100.33 237.49 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3869f36c-168a-400a-9a34-83cc6c5e01b0)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 93.2252 237.49 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_7" (shape passive) (at 278.13 220.98 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3952290e-2380-434f-ac69-cf99eaea617b)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 271.0252 220.98 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_8" (shape passive) (at 242.57 191.77 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 39e3c193-62e8-49e0-9d81-543f4436db77)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 235.0419 191.77 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_5" (shape passive) (at 82.55 208.28 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3a8845fa-3094-4fbd-8e8f-88b44883fae4)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 75.0219 208.28 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_6" (shape passive) (at 100.33 208.28 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3aecdc38-ce69-4cfa-bd57-5cc43901487b)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 92.8019 208.28 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_9" (shape passive) (at 349.25 254 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3b603a64-18c0-4570-95de-4689cdc943f0)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 342.1452 254 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_7" (shape passive) (at 224.79 191.77 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3c6da71e-f716-4c92-876d-df60a431c82c)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 217.2619 191.77 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_7" (shape passive) (at 349.25 208.28 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3d27f96e-a533-419b-8a0e-d3e4caa6e447)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 341.7219 208.28 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_C" (shape passive) (at 455.93 237.49 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3e41ff61-604e-4ccc-8645-ca454a1e3527)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 448.7647 237.49 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_2" (shape passive) (at 455.93 241.3 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3e6a6551-ccc2-4e88-9149-c097c21dda90)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 448.4019 241.3 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_B" (shape passive) (at 420.37 204.47 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3e985b21-c3c0-45a0-887f-36270c0528c4)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 413.2047 204.47 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_9" (shape passive) (at 349.25 204.47 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3ea1e6d2-0e86-4a3c-982c-a7417887eefb)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 342.1452 204.47 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_A" (shape passive) (at 384.81 204.47 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 401d7cae-94c2-4a16-bbd5-504355aa87f6)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 377.8261 204.47 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_4" (shape passive) (at 438.15 224.79 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 406c02ea-5419-48ea-9b44-bb63b0009917)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 430.6219 224.79 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_8" (shape passive) (at 111.4552 82.042 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 41671d2d-85f9-4329-819e-3777d9acdafc)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 118.9833 82.042 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "COL_4" (shape passive) (at 153.67 254 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 42bb1081-59ac-48f4-ae37-db9c58f6828b)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 146.5652 254 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_4" (shape passive) (at 153.67 224.79 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 44c0013c-f745-44a4-813b-dcf0368e2e38)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 146.1419 224.79 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL_C" (shape passive) (at 455.93 254 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 47f07043-2f4b-4b9a-891e-18ffaf911dd9)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 448.7647 254 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_8" (shape passive) (at 331.47 191.77 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 48410b1d-1954-4322-bba2-4c305a043440)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 323.9419 191.77 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_7" (shape passive) (at 111.4552 79.502 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 4929d40c-508e-4d50-8cb2-7429106e2341)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 118.9833 79.502 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "COL_8" (shape passive) (at 313.69 220.98 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4c3cce96-7a9c-4c71-abc6-8b6d81ae9e82)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 306.5852 220.98 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_1" (shape passive) (at 313.69 257.81 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4d0ce046-9e06-4edb-860a-fd35d39723ed)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 306.1619 257.81 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_6" (shape passive) (at 438.15 208.28 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4f7e0c42-7b7b-45df-a95a-4159a758b942)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 430.6219 208.28 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW_1" (shape passive) (at 111.4552 64.262 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 4fb476c7-101b-44da-9031-8eedf34a44a9)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 118.9833 64.262 0)