aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/vhdl-ieee-numeric.adb
blob: cfb61716683fd6f3fb43e02e84ffca94b1df7ce0 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
--  Nodes recognizer for ieee.numeric_std and ieee.numeric_bit.
--  Copyright (C) 2016 Tristan Gingold
--
--  This program is free software: you can redistribute it and/or modify
--  it under the terms of the GNU General Public License as published by
--  the Free Software Foundation, either version 2 of the License, or
--  (at your option) any later version.
--
--  This program is distributed in the hope that it will be useful,
--  but WITHOUT ANY WARRANTY; without even the implied warranty of
--  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
--  GNU General Public License for more details.
--
--  You should have received a copy of the GNU General Public License
--  along with this program.  If not, see <gnu.org/licenses>.

with Types; use Types;
with Vhdl.Std_Package;
with Std_Names; use Std_Names;
with Vhdl.Errors; use Vhdl.Errors;
with Vhdl.Ieee.Std_Logic_1164;
with Vhdl.Utils; use Vhdl.Utils;

package body Vhdl.Ieee.Numeric is
   type Pkg_Kind is (Pkg_Std, Pkg_Bit);
   type Sign_Kind is (Type_Signed, Type_Unsigned,
                      Type_Log, Type_Slv, Type_Suv);
   subtype Sign_Num_Kind is Sign_Kind range Type_Signed .. Type_Unsigned;
   type Arg_Kind is (Arg_Vect, Arg_Scal);
   type Args_Kind is (Arg_Vect_Vect, Arg_Vect_Scal, Arg_Scal_Vect,
                      Arg_Vect_Log, Arg_Log_Vect);

   type Binary_Pattern_Type is array (Pkg_Kind, Sign_Num_Kind, Args_Kind)
     of Iir_Predefined_Functions;

   type Unary_Pattern_Type is array (Pkg_Kind, Sign_Num_Kind)
     of Iir_Predefined_Functions;

   type Shift_Pattern_Type is array (Type_Signed .. Type_Unsigned)
     of Iir_Predefined_Functions;

   Add_Patterns : constant Binary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Add_Uns_Uns,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Add_Uns_Nat,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Add_Nat_Uns,
            Arg_Vect_Log  => Iir_Predefined_Ieee_Numeric_Std_Add_Uns_Log,
            Arg_Log_Vect  => Iir_Predefined_Ieee_Numeric_Std_Add_Log_Uns),
         Type_Signed =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Add_Sgn_Sgn,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Add_Sgn_Int,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Add_Int_Sgn,
            Arg_Vect_Log  => Iir_Predefined_Ieee_Numeric_Std_Add_Sgn_Log,
            Arg_Log_Vect  => Iir_Predefined_Ieee_Numeric_Std_Add_Log_Sgn)),
      Pkg_Bit =>
        (others =>
           (others => Iir_Predefined_None)));

   Sub_Patterns : constant Binary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Sub_Uns_Uns,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Sub_Uns_Nat,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Sub_Nat_Uns,
            Arg_Vect_Log  => Iir_Predefined_Ieee_Numeric_Std_Sub_Uns_Log,
            Arg_Log_Vect  => Iir_Predefined_Ieee_Numeric_Std_Sub_Log_Uns),
         Type_Signed =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Sub_Sgn_Sgn,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Sub_Sgn_Int,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Sub_Int_Sgn,
            Arg_Vect_Log  => Iir_Predefined_Ieee_Numeric_Std_Sub_Sgn_Log,
            Arg_Log_Vect  => Iir_Predefined_Ieee_Numeric_Std_Sub_Log_Sgn)),
      Pkg_Bit =>
        (others =>
           (others => Iir_Predefined_None)));

   Mul_Patterns : constant Binary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Mul_Uns_Uns,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Mul_Uns_Nat,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Mul_Nat_Uns,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None),
         Type_Signed =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Mul_Sgn_Sgn,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Mul_Sgn_Int,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Mul_Int_Sgn,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None)),
      Pkg_Bit =>
        (others =>
           (others => Iir_Predefined_None)));

   Div_Patterns : constant Binary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Div_Uns_Uns,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Div_Uns_Nat,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Div_Nat_Uns,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None),
         Type_Signed =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Div_Sgn_Sgn,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Div_Sgn_Int,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Div_Int_Sgn,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None)),
      Pkg_Bit =>
        (others =>
           (others => Iir_Predefined_None)));

   Rem_Patterns : constant Binary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Rem_Uns_Uns,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Rem_Uns_Nat,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Rem_Nat_Uns,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None),
         Type_Signed =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Rem_Sgn_Sgn,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Rem_Sgn_Int,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Rem_Int_Sgn,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None)),
      Pkg_Bit =>
        (others =>
           (others => Iir_Predefined_None)));

   Mod_Patterns : constant Binary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Mod_Uns_Uns,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Mod_Uns_Nat,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Mod_Nat_Uns,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None),
         Type_Signed =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Mod_Sgn_Sgn,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Mod_Sgn_Int,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Mod_Int_Sgn,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None)),
      Pkg_Bit =>
        (others =>
           (others => Iir_Predefined_None)));

   Eq_Patterns : constant Binary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Eq_Uns_Uns,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Eq_Uns_Nat,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Eq_Nat_Uns,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None),
         Type_Signed =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Eq_Sgn_Sgn,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Eq_Sgn_Int,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Eq_Int_Sgn,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None)),
      Pkg_Bit =>
        (others =>
           (others => Iir_Predefined_None)));

   Ne_Patterns : constant Binary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Ne_Uns_Uns,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Ne_Uns_Nat,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Ne_Nat_Uns,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None),
         Type_Signed =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Ne_Sgn_Sgn,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Ne_Sgn_Int,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Ne_Int_Sgn,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None)),
      Pkg_Bit =>
        (others =>
           (others => Iir_Predefined_None)));

   Lt_Patterns : constant Binary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Lt_Uns_Uns,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Lt_Uns_Nat,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Lt_Nat_Uns,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None),
         Type_Signed =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Lt_Sgn_Sgn,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Lt_Sgn_Int,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Lt_Int_Sgn,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None)),
      Pkg_Bit =>
        (others =>
           (others => Iir_Predefined_None)));

   Le_Patterns : constant Binary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Le_Uns_Uns,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Le_Uns_Nat,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Le_Nat_Uns,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None),
         Type_Signed =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Le_Sgn_Sgn,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Le_Sgn_Int,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Le_Int_Sgn,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None)),
      Pkg_Bit =>
        (others =>
           (others => Iir_Predefined_None)));

   Gt_Patterns : constant Binary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Gt_Uns_Uns,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Gt_Uns_Nat,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Gt_Nat_Uns,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None),
         Type_Signed =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Gt_Sgn_Sgn,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Gt_Sgn_Int,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Gt_Int_Sgn,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None)),
      Pkg_Bit =>
        (others =>
           (others => Iir_Predefined_None)));

   Ge_Patterns : constant Binary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Ge_Uns_Uns,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Ge_Uns_Nat,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Ge_Nat_Uns,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None),
         Type_Signed =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Ge_Sgn_Sgn,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Ge_Sgn_Int,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Ge_Int_Sgn,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None)),
      Pkg_Bit =>
        (others =>
           (others => Iir_Predefined_None)));

   Min_Patterns : constant Binary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Min_Uns_Uns,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Min_Uns_Nat,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Min_Nat_Uns,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None),
         Type_Signed =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Min_Sgn_Sgn,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Min_Sgn_Int,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Min_Int_Sgn,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None)),
      Pkg_Bit =>
        (others =>
           (others => Iir_Predefined_None)));

   Max_Patterns : constant Binary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Max_Uns_Uns,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Max_Uns_Nat,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Max_Nat_Uns,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None),
         Type_Signed =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Max_Sgn_Sgn,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Max_Sgn_Int,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Max_Int_Sgn,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None)),
      Pkg_Bit =>
        (others =>
           (others => Iir_Predefined_None)));

   Match_Eq_Patterns : constant Binary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Match_Eq_Uns_Uns,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Match_Eq_Uns_Nat,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Match_Eq_Nat_Uns,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None),
         Type_Signed =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Match_Eq_Sgn_Sgn,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Match_Eq_Sgn_Int,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Match_Eq_Int_Sgn,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None)),
      Pkg_Bit =>
        (others =>
           (others => Iir_Predefined_None)));

   Match_Ne_Patterns : constant Binary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Match_Ne_Uns_Uns,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Match_Ne_Uns_Nat,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Match_Ne_Nat_Uns,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None),
         Type_Signed =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Match_Ne_Sgn_Sgn,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Match_Ne_Sgn_Int,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Match_Ne_Int_Sgn,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None)),
      Pkg_Bit =>
        (others =>
           (others => Iir_Predefined_None)));

   Match_Lt_Patterns : constant Binary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Match_Lt_Uns_Uns,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Match_Lt_Uns_Nat,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Match_Lt_Nat_Uns,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None),
         Type_Signed =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Match_Lt_Sgn_Sgn,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Match_Lt_Sgn_Int,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Match_Lt_Int_Sgn,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None)),
      Pkg_Bit =>
        (others =>
           (others => Iir_Predefined_None)));

   Match_Le_Patterns : constant Binary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Match_Le_Uns_Uns,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Match_Le_Uns_Nat,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Match_Le_Nat_Uns,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None),
         Type_Signed =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Match_Le_Sgn_Sgn,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Match_Le_Sgn_Int,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Match_Le_Int_Sgn,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None)),
      Pkg_Bit =>
        (others =>
           (others => Iir_Predefined_None)));

   Match_Gt_Patterns : constant Binary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Match_Gt_Uns_Uns,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Match_Gt_Uns_Nat,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Match_Gt_Nat_Uns,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None),
         Type_Signed =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Match_Gt_Sgn_Sgn,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Match_Gt_Sgn_Int,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Match_Gt_Int_Sgn,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None)),
      Pkg_Bit =>
        (others =>
           (others => Iir_Predefined_None)));

   Match_Ge_Patterns : constant Binary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Match_Ge_Uns_Uns,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Match_Ge_Uns_Nat,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Match_Ge_Nat_Uns,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None),
         Type_Signed =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Match_Ge_Sgn_Sgn,
            Arg_Vect_Scal => Iir_Predefined_Ieee_Numeric_Std_Match_Ge_Sgn_Int,
            Arg_Scal_Vect => Iir_Predefined_Ieee_Numeric_Std_Match_Ge_Int_Sgn,
            Arg_Vect_Log  => Iir_Predefined_None,
            Arg_Log_Vect  => Iir_Predefined_None)),
      Pkg_Bit =>
        (others =>
           (others => Iir_Predefined_None)));

   Neg_Patterns : constant Unary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned => Iir_Predefined_Ieee_Numeric_Std_Neg_Uns,
         Type_Signed => Iir_Predefined_Ieee_Numeric_Std_Neg_Sgn),
      Pkg_Bit =>
        (others => Iir_Predefined_None));

   Abs_Patterns : constant Unary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned => Iir_Predefined_None,
         Type_Signed => Iir_Predefined_Ieee_Numeric_Std_Abs_Sgn),
      Pkg_Bit =>
        (others => Iir_Predefined_None));

   Not_Patterns : constant Unary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned => Iir_Predefined_Ieee_Numeric_Std_Not_Uns,
         Type_Signed => Iir_Predefined_Ieee_Numeric_Std_Not_Sgn),
      Pkg_Bit =>
        (others => Iir_Predefined_None));

   Red_And_Patterns : constant Unary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned => Iir_Predefined_Ieee_Numeric_Std_And_Uns,
         Type_Signed => Iir_Predefined_Ieee_Numeric_Std_And_Sgn),
      Pkg_Bit =>
        (others => Iir_Predefined_None));

   Red_Nand_Patterns : constant Unary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned => Iir_Predefined_Ieee_Numeric_Std_Nand_Uns,
         Type_Signed => Iir_Predefined_Ieee_Numeric_Std_Nand_Sgn),
      Pkg_Bit =>
        (others => Iir_Predefined_None));

   Red_Or_Patterns : constant Unary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned => Iir_Predefined_Ieee_Numeric_Std_Or_Uns,
         Type_Signed => Iir_Predefined_Ieee_Numeric_Std_Or_Sgn),
      Pkg_Bit =>
        (others => Iir_Predefined_None));

   Red_Nor_Patterns : constant Unary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned => Iir_Predefined_Ieee_Numeric_Std_Nor_Uns,
         Type_Signed => Iir_Predefined_Ieee_Numeric_Std_Nor_Sgn),
      Pkg_Bit =>
        (others => Iir_Predefined_None));

   Red_Xor_Patterns : constant Unary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned => Iir_Predefined_Ieee_Numeric_Std_Xor_Uns,
         Type_Signed => Iir_Predefined_Ieee_Numeric_Std_Xor_Sgn),
      Pkg_Bit =>
        (others => Iir_Predefined_None));

   Red_Xnor_Patterns : constant Unary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned => Iir_Predefined_Ieee_Numeric_Std_Xnor_Uns,
         Type_Signed => Iir_Predefined_Ieee_Numeric_Std_Xnor_Sgn),
      Pkg_Bit =>
        (others => Iir_Predefined_None));

   And_Patterns : constant Binary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_And_Uns_Uns,
            others        => Iir_Predefined_None),
         Type_Signed =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_And_Sgn_Sgn,
            others        => Iir_Predefined_None)),
      Pkg_Bit =>
        (others =>
           (others => Iir_Predefined_None)));

   Or_Patterns : constant Binary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Or_Uns_Uns,
            others        => Iir_Predefined_None),
         Type_Signed =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Or_Sgn_Sgn,
            others        => Iir_Predefined_None)),
      Pkg_Bit =>
        (others =>
           (others => Iir_Predefined_None)));

   Nand_Patterns : constant Binary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Nand_Uns_Uns,
            others        => Iir_Predefined_None),
         Type_Signed =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Nand_Sgn_Sgn,
            others        => Iir_Predefined_None)),
      Pkg_Bit =>
        (others =>
           (others => Iir_Predefined_None)));

   Nor_Patterns : constant Binary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Nor_Uns_Uns,
            others        => Iir_Predefined_None),
         Type_Signed =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Nor_Sgn_Sgn,
            others        => Iir_Predefined_None)),
      Pkg_Bit =>
        (others =>
           (others => Iir_Predefined_None)));

   Xor_Patterns : constant Binary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Xor_Uns_Uns,
            others        => Iir_Predefined_None),
         Type_Signed =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Xor_Sgn_Sgn,
            others        => Iir_Predefined_None)),
      Pkg_Bit =>
        (others =>
           (others => Iir_Predefined_None)));

   Xnor_Patterns : constant Binary_Pattern_Type :=
     (Pkg_Std =>
        (Type_Unsigned =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Xnor_Uns_Uns,
            others        => Iir_Predefined_None),
         Type_Signed =>
           (Arg_Vect_Vect => Iir_Predefined_Ieee_Numeric_Std_Xnor_Sgn_Sgn,
            others        => Iir_Predefined_None)),
      Pkg_Bit =>
        (others =>
           (others => Iir_Predefined_None)));

   Shl_Patterns : constant Shift_Pattern_Type :=
     (Type_Signed   => Iir_Predefined_Ieee_Numeric_Std_Shf_Left_Sgn_Nat,
      Type_Unsigned => Iir_Predefined_Ieee_Numeric_Std_Shf_Left_Uns_Nat);

   Shr_Patterns : constant Shift_Pattern_Type :=
     (Type_Signed   => Iir_Predefined_Ieee_Numeric_Std_Shf_Right_Sgn_Nat,
      Type_Unsigned => Iir_Predefined_Ieee_Numeric_Std_Shf_Right_Uns_Nat);

   Rol_Patterns : constant Shift_Pattern_Type :=
     (Type_Signed   => Iir_Predefined_Ieee_Numeric_Std_Rot_Left_Sgn_Nat,
      Type_Unsigned => Iir_Predefined_Ieee_Numeric_Std_Rot_Left_Uns_Nat);

   Ror_Patterns : constant Shift_Pattern_Type :=
     (Type_Signed   => Iir_Predefined_Ieee_Numeric_Std_Rot_Right_Sgn_Nat,
      Type_Unsigned => Iir_Predefined_Ieee_Numeric_Std_Rot_Right_Uns_Nat);

   Sll_Patterns : constant Shift_Pattern_Type :=
     (Type_Signed   => Iir_Predefined_Ieee_Numeric_Std_Sll_Sgn_Int,
      Type_Unsigned => Iir_Predefined_Ieee_Numeric_Std_Sll_Uns_Int);

   Srl_Patterns : constant Shift_Pattern_Type :=
     (Type_Signed   => Iir_Predefined_Ieee_Numeric_Std_Srl_Sgn_Int,
      Type_Unsigned => Iir_Predefined_Ieee_Numeric_Std_Srl_Uns_Int);

   Sla_Patterns : constant Shift_Pattern_Type :=
     (Type_Signed   => Iir_Predefined_Ieee_Numeric_Std_Sla_Sgn_Int,
      Type_Unsigned => Iir_Predefined_Ieee_Numeric_Std_Sla_Uns_Int);

   Sra_Patterns : constant Shift_Pattern_Type :=
     (Type_Signed   => Iir_Predefined_Ieee_Numeric_Std_Sra_Sgn_Int,
      Type_Unsigned => Iir_Predefined_Ieee_Numeric_Std_Sra_Uns_Int);

   Leftmost_Patterns : constant Shift_Pattern_Type :=
     (Type_Signed   => Iir_Predefined_Ieee_Numeric_Std_Find_Leftmost_Sgn,
      Type_Unsigned => Iir_Predefined_Ieee_Numeric_Std_Find_Leftmost_Uns);

   Rightmost_Patterns : constant Shift_Pattern_Type :=
     (Type_Signed   => Iir_Predefined_Ieee_Numeric_Std_Find_Rightmost_Sgn,
      Type_Unsigned => Iir_Predefined_Ieee_Numeric_Std_Find_Rightmost_Uns);

   Error : exception;

   procedure Extract_Declarations (Pkg_Decl : Iir_Package_Declaration;
                                   Pkg : Pkg_Kind;
                                   Unsigned_Type : out Iir;
                                   Signed_Type : out Iir)
   is
      procedure Classify_Arg
        (Arg : Iir; Sign : out Sign_Kind; Kind : out Arg_Kind)
      is
         Arg_Type : constant Iir := Get_Type (Arg);
      begin
         if Arg_Type = Signed_Type then
            Sign := Type_Signed;
            Kind := Arg_Vect;
         elsif Arg_Type = Unsigned_Type then
            Sign := Type_Unsigned;
            Kind := Arg_Vect;
         elsif Arg_Type = Vhdl.Std_Package.Integer_Subtype_Definition then
            Sign := Type_Signed;
            Kind := Arg_Scal;
         elsif Arg_Type = Vhdl.Std_Package.Natural_Subtype_Definition then
            Sign := Type_Unsigned;
            Kind := Arg_Scal;
         elsif Arg_Type = Ieee.Std_Logic_1164.Std_Ulogic_Type then
            Sign := Type_Log;
            Kind := Arg_Scal;
         elsif Arg_Type = Ieee.Std_Logic_1164.Std_Ulogic_Vector_Type then
            Sign := Type_Suv;
            Kind := Arg_Vect;
         elsif Arg_Type = Ieee.Std_Logic_1164.Std_Logic_Type then
            Sign := Type_Log;
            Kind := Arg_Scal;
         elsif Arg_Type = Ieee.Std_Logic_1164.Std_Logic_Vector_Type then
            Sign := Type_Slv;
            Kind := Arg_Vect;
         else
            raise Error;
         end if;
      end Classify_Arg;

      Decl : Iir;
      Def : Iir;

      Arg1, Arg2 : Iir;
      Arg1_Sign, Arg2_Sign : Sign_Kind;
      Arg1_Kind, Arg2_Kind : Arg_Kind;

      procedure Handle_Binary (Pats : Binary_Pattern_Type)
      is
         Kind : Args_Kind;
         Sign : Sign_Kind;
      begin
         if Arg1_Sign = Arg2_Sign then
            Sign := Arg1_Sign;
            case Arg1_Kind is
               when Arg_Vect =>
                  case Arg2_Kind is
                     when Arg_Vect => Kind := Arg_Vect_Vect;
                     when Arg_Scal => Kind := Arg_Vect_Scal;
                  end case;
               when Arg_Scal =>
                  case Arg2_Kind is
                     when Arg_Vect => Kind := Arg_Scal_Vect;
                     when Arg_Scal => raise Error;
                  end case;
            end case;
         elsif Arg1_Kind = Arg_Vect and Arg2_Sign = Type_Log then
            Sign := Arg1_Sign;
            Kind := Arg_Vect_Log;
         elsif Arg1_Sign = Type_Log and Arg2_Kind = Arg_Vect then
            Sign := Arg2_Sign;
            Kind := Arg_Log_Vect;
         else
            raise Error;
         end if;

         Set_Implicit_Definition (Decl, Pats (Pkg, Sign, Kind));
      end Handle_Binary;

      procedure Handle_Unary (Pats : Unary_Pattern_Type) is
      begin
         Set_Implicit_Definition (Decl, Pats (Pkg, Arg1_Sign));
      end Handle_Unary;

      procedure Handle_To_Unsigned is
      begin
         if Arg1_Kind = Arg_Scal and Arg1_Sign = Type_Unsigned then
            if Arg2_Kind = Arg_Scal and Arg2_Sign = Type_Unsigned then
               Set_Implicit_Definition
                 (Decl, Iir_Predefined_Ieee_Numeric_Std_Touns_Nat_Nat_Uns);
            elsif Arg2_Kind = Arg_Vect and Arg2_Sign = Type_Unsigned then
               Set_Implicit_Definition
                 (Decl, Iir_Predefined_Ieee_Numeric_Std_Touns_Nat_Uns_Uns);
            else
               raise Error;
            end if;
         else
            raise Error;
         end if;
      end Handle_To_Unsigned;

      procedure Handle_To_Signed is
      begin
         if Arg1_Kind = Arg_Scal and Arg1_Sign = Type_Signed then
            if Arg2_Kind = Arg_Scal and Arg2_Sign = Type_Unsigned then
               Set_Implicit_Definition
                 (Decl, Iir_Predefined_Ieee_Numeric_Std_Tosgn_Int_Nat_Sgn);
            elsif Arg2_Kind = Arg_Vect and Arg2_Sign = Type_Signed then
               Set_Implicit_Definition
                 (Decl, Iir_Predefined_Ieee_Numeric_Std_Tosgn_Int_Sgn_Sgn);
            else
               raise Error;
            end if;
         else
            raise Error;
         end if;
      end Handle_To_Signed;

      procedure Handle_To_Integer is
      begin
         if Arg1_Kind = Arg_Vect and Arg1_Sign = Type_Unsigned then
            Set_Implicit_Definition
              (Decl, Iir_Predefined_Ieee_Numeric_Std_Toint_Uns_Nat);
         elsif Arg1_Kind = Arg_Vect and Arg1_Sign = Type_Signed then
            Set_Implicit_Definition
              (Decl, Iir_Predefined_Ieee_Numeric_Std_Toint_Sgn_Int);
         else
            raise Error;
         end if;
      end Handle_To_Integer;

      procedure Handle_Resize is
      begin
         if Arg2_Kind = Arg_Scal and Arg2_Sign = Type_Unsigned then
            if Arg1_Kind = Arg_Vect and Arg1_Sign = Type_Unsigned then
               Set_Implicit_Definition
                 (Decl, Iir_Predefined_Ieee_Numeric_Std_Resize_Uns_Nat);
            elsif Arg1_Kind = Arg_Vect and Arg1_Sign = Type_Signed then
               Set_Implicit_Definition
                 (Decl, Iir_Predefined_Ieee_Numeric_Std_Resize_Sgn_Nat);
            else
               raise Error;
            end if;
         elsif Arg2_Kind = Arg_Vect then
            if Arg1_Kind = Arg_Vect and Arg1_Sign = Type_Unsigned
              and Arg2_Sign = Type_Unsigned
            then
               Set_Implicit_Definition
                 (Decl, Iir_Predefined_Ieee_Numeric_Std_Resize_Uns_Uns);
            elsif Arg1_Kind = Arg_Vect and Arg1_Sign = Type_Signed
              and Arg2_Sign = Type_Signed
            then
               Set_Implicit_Definition
                 (Decl, Iir_Predefined_Ieee_Numeric_Std_Resize_Sgn_Sgn);
            else
               raise Error;
            end if;
         else
            raise Error;
         end if;
      end Handle_Resize;

      procedure Handle_Std_Match
      is
         Predefined : Iir_Predefined_Functions;
      begin
         if Arg1_Kind /= Arg2_Kind or else Arg1_Sign /= Arg2_Sign then
            raise Error;
         end if;

         if Arg1_Kind = Arg_Scal and Arg1_Sign = Type_Log then
            Predefined := Iir_Predefined_Ieee_Numeric_Std_Match_Log;
         elsif Arg1_Kind = Arg_Vect then
            case Arg1_Sign is
               when Type_Unsigned =>
                  Predefined := Iir_Predefined_Ieee_Numeric_Std_Match_Uns;
               when Type_Signed =>
                  Predefined := Iir_Predefined_Ieee_Numeric_Std_Match_Sgn;
               when Type_Suv =>
                  Predefined := Iir_Predefined_Ieee_Numeric_Std_Match_Suv;
               when Type_Slv =>
                  Predefined := Iir_Predefined_Ieee_Numeric_Std_Match_Slv;
               when Type_Log =>
                  raise Error;
            end case;
         else
            raise Error;
         end if;

         Set_Implicit_Definition (Decl, Predefined);
      end Handle_Std_Match;

      procedure Handle_To_01
      is
         Predefined : Iir_Predefined_Functions;
      begin
         if Arg1_Kind /= Arg_Vect
           or else Arg2_Kind /= Arg_Scal
           or else Arg2_Sign /= Type_Log
         then
            raise Error;
         end if;

         case Arg1_Sign is
            when Type_Unsigned =>
               Predefined := Iir_Predefined_Ieee_Numeric_Std_To_01_Uns;
            when Type_Signed =>
               Predefined := Iir_Predefined_Ieee_Numeric_Std_To_01_Sgn;
            when others =>
               raise Error;
         end case;

         Set_Implicit_Definition (Decl, Predefined);
      end Handle_To_01;

      procedure Handle_Shift (Pats : Shift_Pattern_Type; Sh_Sign : Sign_Kind)
      is
         Res : Iir_Predefined_Functions;
      begin
         if Arg1_Kind = Arg_Vect
           and then Arg2_Kind = Arg_Scal
           and then Arg2_Sign = Sh_Sign
         then
            case Arg1_Sign is
               when Type_Signed | Type_Unsigned =>
                  Res := Pats (Arg1_Sign);
               when others =>
                  Res := Iir_Predefined_None;
            end case;
            Set_Implicit_Definition (Decl, Res);
         end if;
      end Handle_Shift;

      procedure Handle_Find (Pats : Shift_Pattern_Type)
      is
         Res : Iir_Predefined_Functions;
      begin
         if Arg1_Kind = Arg_Vect
           and then Arg2_Kind = Arg_Scal
           and then Arg2_Sign = Type_Log
         then
            case Arg1_Sign is
               when Type_Signed | Type_Unsigned =>
                  Res := Pats (Arg1_Sign);
               when others =>
                  Res := Iir_Predefined_None;
            end case;
            Set_Implicit_Definition (Decl, Res);
         end if;
      end Handle_Find;
   begin
      Decl := Get_Declaration_Chain (Pkg_Decl);

      --  Skip a potential copyright constant.
      if Decl /= Null_Iir
        and then Get_Kind (Decl) = Iir_Kind_Constant_Declaration
        and then (Get_Base_Type (Get_Type (Decl))
                  = Vhdl.Std_Package.String_Type_Definition)
      then
         Decl := Get_Chain (Decl);
      end if;

      --  The first declaration should be type Unsigned or Unresolved_Unsigned
      if not (Decl /= Null_Iir
                and then Get_Kind (Decl) = Iir_Kind_Type_Declaration
                and then (Get_Identifier (Decl) = Name_Unsigned
                            or else
                            Get_Identifier (Decl) = Name_Unresolved_Unsigned))
      then
         raise Error;
      end if;

      Def := Get_Type_Definition (Decl);
      if Get_Kind (Def) /= Iir_Kind_Array_Type_Definition then
         raise Error;
      end if;
      Unsigned_Type := Def;

      --  The second declaration should be type Signed.
      Decl := Get_Chain (Decl);
      Decl := Skip_Implicit (Decl);
      if not (Decl /= Null_Iir
                and then Get_Kind (Decl) = Iir_Kind_Type_Declaration
                and then (Get_Identifier (Decl) = Name_Signed
                            or else
                            Get_Identifier (Decl) = Name_Unresolved_Signed))
      then
         raise Error;
      end if;

      Def := Get_Type_Definition (Decl);
      if Get_Kind (Def) /= Iir_Kind_Array_Type_Definition then
         raise Error;
      end if;
      Signed_Type := Def;

      --  For vhdl 2008, skip subtypes
      Decl := Get_Chain (Decl);
      Decl := Skip_Implicit (Decl);
      while Is_Valid (Decl) loop
         exit when Get_Kind (Decl) /= Iir_Kind_Subtype_Declaration;
         Decl := Get_Chain (Decl);
      end loop;

      --  Handle functions.
      while Is_Valid (Decl) loop
         case Get_Kind (Decl) is
            when Iir_Kind_Function_Declaration =>
               Arg1 := Get_Interface_Declaration_Chain (Decl);
               if Is_Null (Arg1) then
                  raise Error;
               end if;

               Classify_Arg (Arg1, Arg1_Sign, Arg1_Kind);
               Arg2 := Get_Chain (Arg1);
               if Is_Valid (Arg2) then
                  --  Dyadic function.
                  Classify_Arg (Arg2, Arg2_Sign, Arg2_Kind);

                  case Get_Identifier (Decl) is
                     when Name_Op_Plus =>
                        Handle_Binary (Add_Patterns);
                     when Name_Op_Minus =>
                        Handle_Binary (Sub_Patterns);
                     when Name_Op_Mul =>
                        Handle_Binary (Mul_Patterns);
                     when Name_Op_Div =>
                        Handle_Binary (Div_Patterns);
                     when Name_Mod =>
                        Handle_Binary (Mod_Patterns);
                     when Name_Rem =>
                        Handle_Binary (Rem_Patterns);
                     when Name_Op_Equality =>
                        Handle_Binary (Eq_Patterns);
                     when Name_Op_Inequality =>
                        Handle_Binary (Ne_Patterns);
                     when Name_Op_Less =>
                        Handle_Binary (Lt_Patterns);
                     when Name_Op_Less_Equal =>
                        Handle_Binary (Le_Patterns);
                     when Name_Op_Greater =>
                        Handle_Binary (Gt_Patterns);
                     when Name_Op_Greater_Equal =>
                        Handle_Binary (Ge_Patterns);
                     when Name_Minimum =>
                        Handle_Binary (Min_Patterns);
                     when Name_Maximum =>
                        Handle_Binary (Max_Patterns);
                     when Name_Op_Match_Equality =>
                        Handle_Binary (Match_Eq_Patterns);
                     when Name_Op_Match_Inequality =>
                        Handle_Binary (Match_Ne_Patterns);
                     when Name_Op_Match_Less =>
                        Handle_Binary (Match_Lt_Patterns);
                     when Name_Op_Match_Less_Equal =>
                        Handle_Binary (Match_Le_Patterns);
                     when Name_Op_Match_Greater =>
                        Handle_Binary (Match_Gt_Patterns);
                     when Name_Op_Match_Greater_Equal =>
                        Handle_Binary (Match_Ge_Patterns);
                     when Name_And =>
                        Handle_Binary (And_Patterns);
                     when Name_Or =>
                        Handle_Binary (Or_Patterns);
                     when Name_Nand =>
                        Handle_Binary (Nand_Patterns);
                     when Name_Nor =>
                        Handle_Binary (Nor_Patterns);
                     when Name_Xor =>
                        Handle_Binary (Xor_Patterns);
                     when Name_Xnor =>
                        Handle_Binary (Xnor_Patterns);
                     when Name_To_Bstring
                       | Name_To_Ostring
                       | Name_To_Hstring =>
                        null;
                     when Name_To_Unsigned =>
                        Handle_To_Unsigned;
                     when Name_To_Signed =>
                        Handle_To_Signed;
                     when Name_Resize =>
                        Handle_Resize;
                     when Name_Std_Match =>
                        Handle_Std_Match;
                     when Name_Shift_Left =>
                        Handle_Shift (Shl_Patterns, Type_Unsigned);
                     when Name_Shift_Right =>
                        Handle_Shift (Shr_Patterns, Type_Unsigned);
                     when Name_Sll =>
                        Handle_Shift (Sll_Patterns, Type_Signed);
                     when Name_Srl =>
                        Handle_Shift (Srl_Patterns, Type_Signed);
                     when Name_Sla =>
                        Handle_Shift (Sla_Patterns, Type_Signed);
                     when Name_Sra =>
                        Handle_Shift (Sra_Patterns, Type_Signed);
                     when Name_Rotate_Left =>
                        Handle_Shift (Rol_Patterns, Type_Unsigned);
                     when Name_Rotate_Right =>
                        Handle_Shift (Ror_Patterns, Type_Unsigned);
                     when Name_Find_Leftmost =>
                        Handle_Find (Leftmost_Patterns);
                     when Name_Find_Rightmost =>
                        Handle_Find (Rightmost_Patterns);
                     when Name_To_01 =>
                        Handle_To_01;
                     when others =>
                        null;
                  end case;
               else
                  --  Monadic function.
                  case Get_Identifier (Decl) is
                     when Name_Op_Minus =>
                        Handle_Unary (Neg_Patterns);
                     when Name_Not =>
                        Handle_Unary (Not_Patterns);
                     when Name_Abs =>
                        Handle_Unary (Abs_Patterns);
                     when Name_To_Integer =>
                        Handle_To_Integer;
                     when Name_And =>
                        Handle_Unary (Red_And_Patterns);
                     when Name_Nand =>
                        Handle_Unary (Red_Nand_Patterns);
                     when Name_Or =>
                        Handle_Unary (Red_Or_Patterns);
                     when Name_Nor =>
                        Handle_Unary (Red_Nor_Patterns);
                     when Name_Xor =>
                        Handle_Unary (Red_Xor_Patterns);
                     when Name_Xnor =>
                        Handle_Unary (Red_Xnor_Patterns);
                     when others =>
                        null;
                  end case;
               end if;

            when Iir_Kind_Non_Object_Alias_Declaration
              | Iir_Kind_Procedure_Declaration =>
               null;

            when others =>
               raise Error;
         end case;
         Decl := Get_Chain (Decl);
      end loop;
   end Extract_Declarations;

   procedure Extract_Std_Declarations (Pkg : Iir_Package_Declaration) is
   begin
      Numeric_Std_Pkg := Pkg;

      Extract_Declarations
        (Pkg, Pkg_Std, Numeric_Std_Unsigned_Type, Numeric_Std_Signed_Type);
   exception
      when Error =>
         Error_Msg_Sem (+Pkg, "package ieee.numeric_std is ill-formed");
         Numeric_Std_Pkg := Null_Iir;
         Numeric_Std_Unsigned_Type := Null_Iir;
         Numeric_Std_Signed_Type := Null_Iir;
   end Extract_Std_Declarations;
end Vhdl.Ieee.Numeric;
15) Enable bit of Mux _local_links/g3_mux_4 => sp12_v_b_12 lc_trk_g3_4 (17 15) Enable bit of Mux _local_links/g3_mux_4 => sp12_v_b_20 lc_trk_g3_4 (17 15) Enable bit of Mux _local_links/g3_mux_4 => sp12_v_b_4 lc_trk_g3_4 (17 15) Enable bit of Mux _local_links/g3_mux_4 => sp4_h_l_33 lc_trk_g3_4 (17 15) Enable bit of Mux _local_links/g3_mux_4 => sp4_h_r_28 lc_trk_g3_4 (17 15) Enable bit of Mux _local_links/g3_mux_4 => sp4_h_r_36 lc_trk_g3_4 (17 15) Enable bit of Mux _local_links/g3_mux_4 => sp4_r_v_b_20 lc_trk_g3_4 (17 15) Enable bit of Mux _local_links/g3_mux_4 => sp4_r_v_b_44 lc_trk_g3_4 (17 15) Enable bit of Mux _local_links/g3_mux_4 => sp4_v_b_36 lc_trk_g3_4 (17 15) Enable bit of Mux _local_links/g3_mux_4 => sp4_v_t_17 lc_trk_g3_4 (17 15) Enable bit of Mux _local_links/g3_mux_4 => sp4_v_t_33 lc_trk_g3_4 (17 2) Enable bit of Mux _local_links/g0_mux_5 => bnr_op_5 lc_trk_g0_5 (17 2) Enable bit of Mux _local_links/g0_mux_5 => glb2local_1 lc_trk_g0_5 (17 2) Enable bit of Mux _local_links/g0_mux_5 => lft_op_5 lc_trk_g0_5 (17 2) Enable bit of Mux _local_links/g0_mux_5 => sp12_h_l_10 lc_trk_g0_5 (17 2) Enable bit of Mux _local_links/g0_mux_5 => sp12_h_r_21 lc_trk_g0_5 (17 2) Enable bit of Mux _local_links/g0_mux_5 => sp12_h_r_5 lc_trk_g0_5 (17 2) Enable bit of Mux _local_links/g0_mux_5 => sp4_h_l_8 lc_trk_g0_5 (17 2) Enable bit of Mux _local_links/g0_mux_5 => sp4_h_r_13 lc_trk_g0_5 (17 2) Enable bit of Mux _local_links/g0_mux_5 => sp4_h_r_5 lc_trk_g0_5 (17 2) Enable bit of Mux _local_links/g0_mux_5 => sp4_r_v_b_29 lc_trk_g0_5 (17 2) Enable bit of Mux _local_links/g0_mux_5 => sp4_v_b_5 lc_trk_g0_5 (17 2) Enable bit of Mux _local_links/g0_mux_5 => sp4_v_t_0 lc_trk_g0_5 (17 2) Enable bit of Mux _local_links/g0_mux_5 => sp4_v_t_8 lc_trk_g0_5 (17 3) Enable bit of Mux _local_links/g0_mux_4 => bnr_op_4 lc_trk_g0_4 (17 3) Enable bit of Mux _local_links/g0_mux_4 => bot_op_4 lc_trk_g0_4 (17 3) Enable bit of Mux _local_links/g0_mux_4 => glb2local_0 lc_trk_g0_4 (17 3) Enable bit of Mux _local_links/g0_mux_4 => lft_op_4 lc_trk_g0_4 (17 3) Enable bit of Mux _local_links/g0_mux_4 => sp12_h_l_11 lc_trk_g0_4 (17 3) Enable bit of Mux _local_links/g0_mux_4 => sp12_h_r_20 lc_trk_g0_4 (17 3) Enable bit of Mux _local_links/g0_mux_4 => sp12_h_r_4 lc_trk_g0_4 (17 3) Enable bit of Mux _local_links/g0_mux_4 => sp4_h_l_1 lc_trk_g0_4 (17 3) Enable bit of Mux _local_links/g0_mux_4 => sp4_h_r_20 lc_trk_g0_4 (17 3) Enable bit of Mux _local_links/g0_mux_4 => sp4_h_r_4 lc_trk_g0_4 (17 3) Enable bit of Mux _local_links/g0_mux_4 => sp4_r_v_b_28 lc_trk_g0_4 (17 3) Enable bit of Mux _local_links/g0_mux_4 => sp4_v_b_12 lc_trk_g0_4 (17 3) Enable bit of Mux _local_links/g0_mux_4 => sp4_v_b_4 lc_trk_g0_4 (17 3) Enable bit of Mux _local_links/g0_mux_4 => sp4_v_t_9 lc_trk_g0_4 (17 4) Enable bit of Mux _local_links/g1_mux_1 => bnr_op_1 lc_trk_g1_1 (17 4) Enable bit of Mux _local_links/g1_mux_1 => bot_op_1 lc_trk_g1_1 (17 4) Enable bit of Mux _local_links/g1_mux_1 => lft_op_1 lc_trk_g1_1 (17 4) Enable bit of Mux _local_links/g1_mux_1 => sp12_h_r_1 lc_trk_g1_1 (17 4) Enable bit of Mux _local_links/g1_mux_1 => sp12_h_r_17 lc_trk_g1_1 (17 4) Enable bit of Mux _local_links/g1_mux_1 => sp12_h_r_9 lc_trk_g1_1 (17 4) Enable bit of Mux _local_links/g1_mux_1 => sp4_h_r_1 lc_trk_g1_1 (17 4) Enable bit of Mux _local_links/g1_mux_1 => sp4_h_r_17 lc_trk_g1_1 (17 4) Enable bit of Mux _local_links/g1_mux_1 => sp4_h_r_9 lc_trk_g1_1 (17 4) Enable bit of Mux _local_links/g1_mux_1 => sp4_r_v_b_1 lc_trk_g1_1 (17 4) Enable bit of Mux _local_links/g1_mux_1 => sp4_r_v_b_25 lc_trk_g1_1 (17 4) Enable bit of Mux _local_links/g1_mux_1 => sp4_v_b_1 lc_trk_g1_1 (17 4) Enable bit of Mux _local_links/g1_mux_1 => sp4_v_b_17 lc_trk_g1_1 (17 4) Enable bit of Mux _local_links/g1_mux_1 => sp4_v_b_9 lc_trk_g1_1 (17 5) Enable bit of Mux _local_links/g1_mux_0 => bnr_op_0 lc_trk_g1_0 (17 5) Enable bit of Mux _local_links/g1_mux_0 => bot_op_0 lc_trk_g1_0 (17 5) Enable bit of Mux _local_links/g1_mux_0 => lft_op_0 lc_trk_g1_0 (17 5) Enable bit of Mux _local_links/g1_mux_0 => sp12_h_l_15 lc_trk_g1_0 (17 5) Enable bit of Mux _local_links/g1_mux_0 => sp12_h_l_7 lc_trk_g1_0 (17 5) Enable bit of Mux _local_links/g1_mux_0 => sp12_h_r_0 lc_trk_g1_0 (17 5) Enable bit of Mux _local_links/g1_mux_0 => sp4_h_r_0 lc_trk_g1_0 (17 5) Enable bit of Mux _local_links/g1_mux_0 => sp4_h_r_16 lc_trk_g1_0 (17 5) Enable bit of Mux _local_links/g1_mux_0 => sp4_h_r_8 lc_trk_g1_0 (17 5) Enable bit of Mux _local_links/g1_mux_0 => sp4_r_v_b_0 lc_trk_g1_0 (17 5) Enable bit of Mux _local_links/g1_mux_0 => sp4_r_v_b_24 lc_trk_g1_0 (17 5) Enable bit of Mux _local_links/g1_mux_0 => sp4_v_b_0 lc_trk_g1_0 (17 5) Enable bit of Mux _local_links/g1_mux_0 => sp4_v_b_8 lc_trk_g1_0 (17 5) Enable bit of Mux _local_links/g1_mux_0 => sp4_v_t_5 lc_trk_g1_0 (17 5) Enable bit of Mux _local_links/g1_mux_0 => top_op_0 lc_trk_g1_0 (17 6) Enable bit of Mux _local_links/g1_mux_5 => bnr_op_5 lc_trk_g1_5 (17 6) Enable bit of Mux _local_links/g1_mux_5 => bot_op_5 lc_trk_g1_5 (17 6) Enable bit of Mux _local_links/g1_mux_5 => lft_op_5 lc_trk_g1_5 (17 6) Enable bit of Mux _local_links/g1_mux_5 => sp12_h_l_10 lc_trk_g1_5 (17 6) Enable bit of Mux _local_links/g1_mux_5 => sp12_h_r_21 lc_trk_g1_5 (17 6) Enable bit of Mux _local_links/g1_mux_5 => sp12_h_r_5 lc_trk_g1_5 (17 6) Enable bit of Mux _local_links/g1_mux_5 => sp4_h_l_8 lc_trk_g1_5 (17 6) Enable bit of Mux _local_links/g1_mux_5 => sp4_h_r_13 lc_trk_g1_5 (17 6) Enable bit of Mux _local_links/g1_mux_5 => sp4_h_r_5 lc_trk_g1_5 (17 6) Enable bit of Mux _local_links/g1_mux_5 => sp4_r_v_b_29 lc_trk_g1_5 (17 6) Enable bit of Mux _local_links/g1_mux_5 => sp4_r_v_b_5 lc_trk_g1_5 (17 6) Enable bit of Mux _local_links/g1_mux_5 => sp4_v_b_5 lc_trk_g1_5 (17 6) Enable bit of Mux _local_links/g1_mux_5 => sp4_v_t_0 lc_trk_g1_5 (17 6) Enable bit of Mux _local_links/g1_mux_5 => sp4_v_t_8 lc_trk_g1_5 (17 6) Enable bit of Mux _local_links/g1_mux_5 => top_op_5 lc_trk_g1_5 (17 7) Enable bit of Mux _local_links/g1_mux_4 => bnr_op_4 lc_trk_g1_4 (17 7) Enable bit of Mux _local_links/g1_mux_4 => bot_op_4 lc_trk_g1_4 (17 7) Enable bit of Mux _local_links/g1_mux_4 => lft_op_4 lc_trk_g1_4 (17 7) Enable bit of Mux _local_links/g1_mux_4 => sp12_h_l_11 lc_trk_g1_4 (17 7) Enable bit of Mux _local_links/g1_mux_4 => sp12_h_r_20 lc_trk_g1_4 (17 7) Enable bit of Mux _local_links/g1_mux_4 => sp12_h_r_4 lc_trk_g1_4 (17 7) Enable bit of Mux _local_links/g1_mux_4 => sp4_h_l_1 lc_trk_g1_4 (17 7) Enable bit of Mux _local_links/g1_mux_4 => sp4_h_r_20 lc_trk_g1_4 (17 7) Enable bit of Mux _local_links/g1_mux_4 => sp4_h_r_4 lc_trk_g1_4 (17 7) Enable bit of Mux _local_links/g1_mux_4 => sp4_r_v_b_28 lc_trk_g1_4 (17 7) Enable bit of Mux _local_links/g1_mux_4 => sp4_r_v_b_4 lc_trk_g1_4 (17 7) Enable bit of Mux _local_links/g1_mux_4 => sp4_v_b_12 lc_trk_g1_4 (17 7) Enable bit of Mux _local_links/g1_mux_4 => sp4_v_b_4 lc_trk_g1_4 (17 7) Enable bit of Mux _local_links/g1_mux_4 => sp4_v_t_9 lc_trk_g1_4 (17 8) Enable bit of Mux _local_links/g2_mux_1 => bnl_op_1 lc_trk_g2_1 (17 8) Enable bit of Mux _local_links/g2_mux_1 => rgt_op_1 lc_trk_g2_1 (17 8) Enable bit of Mux _local_links/g2_mux_1 => sp12_v_b_1 lc_trk_g2_1 (17 8) Enable bit of Mux _local_links/g2_mux_1 => sp12_v_b_9 lc_trk_g2_1 (17 8) Enable bit of Mux _local_links/g2_mux_1 => sp12_v_t_14 lc_trk_g2_1 (17 8) Enable bit of Mux _local_links/g2_mux_1 => sp4_h_l_28 lc_trk_g2_1 (17 8) Enable bit of Mux _local_links/g2_mux_1 => sp4_h_r_25 lc_trk_g2_1 (17 8) Enable bit of Mux _local_links/g2_mux_1 => sp4_h_r_33 lc_trk_g2_1 (17 8) Enable bit of Mux _local_links/g2_mux_1 => sp4_r_v_b_33 lc_trk_g2_1 (17 8) Enable bit of Mux _local_links/g2_mux_1 => sp4_r_v_b_9 lc_trk_g2_1 (17 8) Enable bit of Mux _local_links/g2_mux_1 => sp4_v_b_33 lc_trk_g2_1 (17 8) Enable bit of Mux _local_links/g2_mux_1 => sp4_v_b_41 lc_trk_g2_1 (17 8) Enable bit of Mux _local_links/g2_mux_1 => sp4_v_t_12 lc_trk_g2_1 (17 8) Enable bit of Mux _local_links/g2_mux_1 => tnl_op_1 lc_trk_g2_1 (17 8) Enable bit of Mux _local_links/g2_mux_1 => tnr_op_1 lc_trk_g2_1 (17 9) Enable bit of Mux _local_links/g2_mux_0 => bnl_op_0 lc_trk_g2_0 (17 9) Enable bit of Mux _local_links/g2_mux_0 => rgt_op_0 lc_trk_g2_0 (17 9) Enable bit of Mux _local_links/g2_mux_0 => slf_op_0 lc_trk_g2_0 (17 9) Enable bit of Mux _local_links/g2_mux_0 => sp12_v_b_0 lc_trk_g2_0 (17 9) Enable bit of Mux _local_links/g2_mux_0 => sp12_v_b_16 lc_trk_g2_0 (17 9) Enable bit of Mux _local_links/g2_mux_0 => sp12_v_t_7 lc_trk_g2_0 (17 9) Enable bit of Mux _local_links/g2_mux_0 => sp4_h_l_21 lc_trk_g2_0 (17 9) Enable bit of Mux _local_links/g2_mux_0 => sp4_h_l_29 lc_trk_g2_0 (17 9) Enable bit of Mux _local_links/g2_mux_0 => sp4_h_r_24 lc_trk_g2_0 (17 9) Enable bit of Mux _local_links/g2_mux_0 => sp4_r_v_b_32 lc_trk_g2_0 (17 9) Enable bit of Mux _local_links/g2_mux_0 => sp4_r_v_b_8 lc_trk_g2_0 (17 9) Enable bit of Mux _local_links/g2_mux_0 => sp4_v_b_40 lc_trk_g2_0 (17 9) Enable bit of Mux _local_links/g2_mux_0 => sp4_v_t_13 lc_trk_g2_0 (17 9) Enable bit of Mux _local_links/g2_mux_0 => sp4_v_t_21 lc_trk_g2_0 (17 9) Enable bit of Mux _local_links/g2_mux_0 => tnl_op_0 lc_trk_g2_0 (18 0) routing bnr_op_1 <X> lc_trk_g0_1 (18 0) routing lft_op_1 <X> lc_trk_g0_1 (18 0) routing sp12_h_r_1 <X> lc_trk_g0_1 (18 0) routing sp4_h_r_17 <X> lc_trk_g0_1 (18 0) routing sp4_h_r_9 <X> lc_trk_g0_1 (18 0) routing sp4_v_b_1 <X> lc_trk_g0_1 (18 0) routing sp4_v_b_9 <X> lc_trk_g0_1 (18 1) routing bnr_op_1 <X> lc_trk_g0_1 (18 1) routing sp12_h_r_1 <X> lc_trk_g0_1 (18 1) routing sp12_h_r_17 <X> lc_trk_g0_1 (18 1) routing sp4_h_r_1 <X> lc_trk_g0_1 (18 1) routing sp4_h_r_17 <X> lc_trk_g0_1 (18 1) routing sp4_r_v_b_34 <X> lc_trk_g0_1 (18 1) routing sp4_v_b_9 <X> lc_trk_g0_1 (18 1) routing top_op_1 <X> lc_trk_g0_1 (18 10) routing bnl_op_5 <X> lc_trk_g2_5 (18 10) routing rgt_op_5 <X> lc_trk_g2_5 (18 10) routing sp12_v_b_5 <X> lc_trk_g2_5 (18 10) routing sp4_h_r_37 <X> lc_trk_g2_5 (18 10) routing sp4_h_r_45 <X> lc_trk_g2_5 (18 10) routing sp4_v_b_29 <X> lc_trk_g2_5 (18 10) routing sp4_v_t_24 <X> lc_trk_g2_5 (18 11) routing bnl_op_5 <X> lc_trk_g2_5 (18 11) routing sp12_v_b_21 <X> lc_trk_g2_5 (18 11) routing sp12_v_b_5 <X> lc_trk_g2_5 (18 11) routing sp4_h_l_16 <X> lc_trk_g2_5 (18 11) routing sp4_h_r_45 <X> lc_trk_g2_5 (18 11) routing sp4_r_v_b_37 <X> lc_trk_g2_5 (18 11) routing sp4_v_t_24 <X> lc_trk_g2_5 (18 12) routing bnl_op_1 <X> lc_trk_g3_1 (18 12) routing rgt_op_1 <X> lc_trk_g3_1 (18 12) routing slf_op_1 <X> lc_trk_g3_1 (18 12) routing sp12_v_b_1 <X> lc_trk_g3_1 (18 12) routing sp4_h_l_28 <X> lc_trk_g3_1 (18 12) routing sp4_h_r_33 <X> lc_trk_g3_1 (18 12) routing sp4_v_b_33 <X> lc_trk_g3_1 (18 12) routing sp4_v_t_12 <X> lc_trk_g3_1 (18 13) routing bnl_op_1 <X> lc_trk_g3_1 (18 13) routing sp12_v_b_1 <X> lc_trk_g3_1 (18 13) routing sp12_v_t_14 <X> lc_trk_g3_1 (18 13) routing sp4_h_l_28 <X> lc_trk_g3_1 (18 13) routing sp4_h_r_25 <X> lc_trk_g3_1 (18 13) routing sp4_r_v_b_41 <X> lc_trk_g3_1 (18 13) routing sp4_v_b_33 <X> lc_trk_g3_1 (18 14) routing bnl_op_5 <X> lc_trk_g3_5 (18 14) routing rgt_op_5 <X> lc_trk_g3_5 (18 14) routing sp12_v_b_5 <X> lc_trk_g3_5 (18 14) routing sp4_h_r_37 <X> lc_trk_g3_5 (18 14) routing sp4_h_r_45 <X> lc_trk_g3_5 (18 14) routing sp4_v_b_29 <X> lc_trk_g3_5 (18 14) routing sp4_v_t_24 <X> lc_trk_g3_5 (18 15) routing bnl_op_5 <X> lc_trk_g3_5 (18 15) routing sp12_v_b_21 <X> lc_trk_g3_5 (18 15) routing sp12_v_b_5 <X> lc_trk_g3_5 (18 15) routing sp4_h_l_16 <X> lc_trk_g3_5 (18 15) routing sp4_h_r_45 <X> lc_trk_g3_5 (18 15) routing sp4_r_v_b_45 <X> lc_trk_g3_5 (18 15) routing sp4_v_t_24 <X> lc_trk_g3_5 (18 15) routing tnl_op_5 <X> lc_trk_g3_5 (18 2) routing bnr_op_5 <X> lc_trk_g0_5 (18 2) routing lft_op_5 <X> lc_trk_g0_5 (18 2) routing sp12_h_r_5 <X> lc_trk_g0_5 (18 2) routing sp4_h_l_8 <X> lc_trk_g0_5 (18 2) routing sp4_h_r_13 <X> lc_trk_g0_5 (18 2) routing sp4_v_b_5 <X> lc_trk_g0_5 (18 2) routing sp4_v_t_0 <X> lc_trk_g0_5 (18 3) routing bnr_op_5 <X> lc_trk_g0_5 (18 3) routing sp12_h_r_21 <X> lc_trk_g0_5 (18 3) routing sp12_h_r_5 <X> lc_trk_g0_5 (18 3) routing sp4_h_l_8 <X> lc_trk_g0_5 (18 3) routing sp4_h_r_5 <X> lc_trk_g0_5 (18 3) routing sp4_r_v_b_29 <X> lc_trk_g0_5 (18 3) routing sp4_v_t_0 <X> lc_trk_g0_5 (18 4) routing bnr_op_1 <X> lc_trk_g1_1 (18 4) routing lft_op_1 <X> lc_trk_g1_1 (18 4) routing sp12_h_r_1 <X> lc_trk_g1_1 (18 4) routing sp4_h_r_17 <X> lc_trk_g1_1 (18 4) routing sp4_h_r_9 <X> lc_trk_g1_1 (18 4) routing sp4_v_b_1 <X> lc_trk_g1_1 (18 4) routing sp4_v_b_9 <X> lc_trk_g1_1 (18 5) routing bnr_op_1 <X> lc_trk_g1_1 (18 5) routing sp12_h_r_1 <X> lc_trk_g1_1 (18 5) routing sp12_h_r_17 <X> lc_trk_g1_1 (18 5) routing sp4_h_r_1 <X> lc_trk_g1_1 (18 5) routing sp4_h_r_17 <X> lc_trk_g1_1 (18 5) routing sp4_r_v_b_25 <X> lc_trk_g1_1 (18 5) routing sp4_v_b_9 <X> lc_trk_g1_1 (18 6) routing bnr_op_5 <X> lc_trk_g1_5 (18 6) routing lft_op_5 <X> lc_trk_g1_5 (18 6) routing sp12_h_r_5 <X> lc_trk_g1_5 (18 6) routing sp4_h_l_8 <X> lc_trk_g1_5 (18 6) routing sp4_h_r_13 <X> lc_trk_g1_5 (18 6) routing sp4_v_b_5 <X> lc_trk_g1_5 (18 6) routing sp4_v_t_0 <X> lc_trk_g1_5 (18 7) routing bnr_op_5 <X> lc_trk_g1_5 (18 7) routing sp12_h_r_21 <X> lc_trk_g1_5 (18 7) routing sp12_h_r_5 <X> lc_trk_g1_5 (18 7) routing sp4_h_l_8 <X> lc_trk_g1_5 (18 7) routing sp4_h_r_5 <X> lc_trk_g1_5 (18 7) routing sp4_r_v_b_29 <X> lc_trk_g1_5 (18 7) routing sp4_v_t_0 <X> lc_trk_g1_5 (18 7) routing top_op_5 <X> lc_trk_g1_5 (18 8) routing bnl_op_1 <X> lc_trk_g2_1 (18 8) routing rgt_op_1 <X> lc_trk_g2_1 (18 8) routing sp12_v_b_1 <X> lc_trk_g2_1 (18 8) routing sp4_h_l_28 <X> lc_trk_g2_1 (18 8) routing sp4_h_r_33 <X> lc_trk_g2_1 (18 8) routing sp4_v_b_33 <X> lc_trk_g2_1 (18 8) routing sp4_v_t_12 <X> lc_trk_g2_1 (18 9) routing bnl_op_1 <X> lc_trk_g2_1 (18 9) routing sp12_v_b_1 <X> lc_trk_g2_1 (18 9) routing sp12_v_t_14 <X> lc_trk_g2_1 (18 9) routing sp4_h_l_28 <X> lc_trk_g2_1 (18 9) routing sp4_h_r_25 <X> lc_trk_g2_1 (18 9) routing sp4_r_v_b_33 <X> lc_trk_g2_1 (18 9) routing sp4_v_b_33 <X> lc_trk_g2_1 (18 9) routing tnl_op_1 <X> lc_trk_g2_1 (19 0) Enable bit of Mux _span_links/cross_mux_vert_1 => sp12_v_b_3 sp4_v_t_0 (19 1) Enable bit of Mux _span_links/cross_mux_vert_0 => sp12_v_b_1 sp4_v_b_12 (19 10) Enable bit of Mux _span_links/cross_mux_vert_11 => sp12_v_b_23 sp4_v_b_23 (19 11) Enable bit of Mux _span_links/cross_mux_vert_10 => sp12_v_b_21 sp4_v_b_22 (19 12) Enable bit of Mux _span_links/cross_mux_horz_1 => sp12_h_l_1 sp4_h_r_13 (19 13) Enable bit of Mux _span_links/cross_mux_horz_0 => sp12_h_r_0 sp4_h_l_1 (19 14) Enable bit of Mux _span_links/cross_mux_horz_3 => sp12_h_l_5 sp4_h_l_2 (19 15) Enable bit of Mux _span_links/cross_mux_horz_2 => sp12_h_r_4 sp4_h_l_3 (19 2) Enable bit of Mux _span_links/cross_mux_vert_3 => sp12_v_t_4 sp4_v_b_15 (19 3) Enable bit of Mux _span_links/cross_mux_vert_2 => sp12_v_b_5 sp4_v_t_3 (19 4) Enable bit of Mux _span_links/cross_mux_vert_5 => sp12_v_b_11 sp4_v_b_17 (19 5) Enable bit of Mux _span_links/cross_mux_vert_4 => sp12_v_b_9 sp4_v_t_5 (19 6) Enable bit of Mux _span_links/cross_mux_vert_7 => sp12_v_t_12 sp4_v_t_6 (19 7) Enable bit of Mux _span_links/cross_mux_vert_6 => sp12_v_t_10 sp4_v_b_18 (19 8) Enable bit of Mux _span_links/cross_mux_vert_9 => sp12_v_b_19 sp4_v_t_8 (19 9) Enable bit of Mux _span_links/cross_mux_vert_8 => sp12_v_t_14 sp4_v_t_9 (2 0) Enable bit of Mux _span_links/cross_mux_horz_4 => sp12_h_l_7 sp4_h_r_16 (2 10) Enable bit of Mux _span_links/cross_mux_horz_9 => sp12_h_l_17 sp4_h_l_8 (2 12) Enable bit of Mux _span_links/cross_mux_horz_10 => sp12_h_r_20 sp4_h_l_11 (2 14) Enable bit of Mux _span_links/cross_mux_horz_11 => sp12_h_r_22 sp4_h_l_10 (2 2) Enable bit of Mux _global_links/clk_mux => glb_netwk_0 clk (2 2) Enable bit of Mux _global_links/clk_mux => glb_netwk_1 clk (2 2) Enable bit of Mux _global_links/clk_mux => glb_netwk_2 clk (2 2) Enable bit of Mux _global_links/clk_mux => glb_netwk_3 clk (2 2) Enable bit of Mux _global_links/clk_mux => glb_netwk_4 clk (2 2) Enable bit of Mux _global_links/clk_mux => glb_netwk_5 clk (2 2) Enable bit of Mux _global_links/clk_mux => glb_netwk_6 clk (2 2) Enable bit of Mux _global_links/clk_mux => glb_netwk_7 clk (2 2) Enable bit of Mux _global_links/clk_mux => lc_trk_g0_0 clk (2 2) Enable bit of Mux _global_links/clk_mux => lc_trk_g1_1 clk (2 2) Enable bit of Mux _global_links/clk_mux => lc_trk_g2_0 clk (2 2) Enable bit of Mux _global_links/clk_mux => lc_trk_g3_1 clk (2 3) routing lc_trk_g0_0 <X> clk (2 3) routing lc_trk_g1_1 <X> clk (2 3) routing lc_trk_g2_0 <X> clk (2 3) routing lc_trk_g3_1 <X> clk (2 4) Enable bit of Mux _span_links/cross_mux_horz_6 => sp12_h_l_11 sp4_h_l_7 (2 6) Enable bit of Mux _span_links/cross_mux_horz_7 => sp12_h_r_14 sp4_h_r_19 (2 8) Enable bit of Mux _span_links/cross_mux_horz_8 => sp12_h_l_15 sp4_h_r_20 (21 0) routing bnr_op_3 <X> lc_trk_g0_3 (21 0) routing lft_op_3 <X> lc_trk_g0_3 (21 0) routing slf_op_3 <X> lc_trk_g0_3 (21 0) routing sp12_h_r_3 <X> lc_trk_g0_3 (21 0) routing sp4_h_r_11 <X> lc_trk_g0_3 (21 0) routing sp4_h_r_19 <X> lc_trk_g0_3 (21 0) routing sp4_v_b_11 <X> lc_trk_g0_3 (21 0) routing sp4_v_b_3 <X> lc_trk_g0_3 (21 1) routing bnr_op_3 <X> lc_trk_g0_3 (21 1) routing sp12_h_l_16 <X> lc_trk_g0_3 (21 1) routing sp12_h_r_3 <X> lc_trk_g0_3 (21 1) routing sp4_h_r_19 <X> lc_trk_g0_3 (21 1) routing sp4_h_r_3 <X> lc_trk_g0_3 (21 1) routing sp4_r_v_b_32 <X> lc_trk_g0_3 (21 1) routing sp4_v_b_11 <X> lc_trk_g0_3 (21 10) routing bnl_op_7 <X> lc_trk_g2_7 (21 10) routing rgt_op_7 <X> lc_trk_g2_7 (21 10) routing slf_op_7 <X> lc_trk_g2_7 (21 10) routing sp12_v_t_4 <X> lc_trk_g2_7 (21 10) routing sp4_h_l_26 <X> lc_trk_g2_7 (21 10) routing sp4_h_l_34 <X> lc_trk_g2_7 (21 10) routing sp4_v_b_39 <X> lc_trk_g2_7 (21 10) routing sp4_v_t_18 <X> lc_trk_g2_7 (21 11) routing bnl_op_7 <X> lc_trk_g2_7 (21 11) routing sp12_v_b_23 <X> lc_trk_g2_7 (21 11) routing sp12_v_t_4 <X> lc_trk_g2_7 (21 11) routing sp4_h_l_34 <X> lc_trk_g2_7 (21 11) routing sp4_h_r_31 <X> lc_trk_g2_7 (21 11) routing sp4_r_v_b_39 <X> lc_trk_g2_7 (21 11) routing sp4_v_b_39 <X> lc_trk_g2_7 (21 12) routing bnl_op_3 <X> lc_trk_g3_3 (21 12) routing rgt_op_3 <X> lc_trk_g3_3 (21 12) routing sp12_v_b_3 <X> lc_trk_g3_3 (21 12) routing sp4_h_r_35 <X> lc_trk_g3_3 (21 12) routing sp4_h_r_43 <X> lc_trk_g3_3 (21 12) routing sp4_v_b_27 <X> lc_trk_g3_3 (21 12) routing sp4_v_t_22 <X> lc_trk_g3_3 (21 13) routing bnl_op_3 <X> lc_trk_g3_3 (21 13) routing sp12_v_b_19 <X> lc_trk_g3_3 (21 13) routing sp12_v_b_3 <X> lc_trk_g3_3 (21 13) routing sp4_h_l_14 <X> lc_trk_g3_3 (21 13) routing sp4_h_r_43 <X> lc_trk_g3_3 (21 13) routing sp4_r_v_b_43 <X> lc_trk_g3_3 (21 13) routing sp4_v_t_22 <X> lc_trk_g3_3 (21 13) routing tnl_op_3 <X> lc_trk_g3_3 (21 14) routing bnl_op_7 <X> lc_trk_g3_7 (21 14) routing rgt_op_7 <X> lc_trk_g3_7 (21 14) routing sp12_v_t_4 <X> lc_trk_g3_7 (21 14) routing sp4_h_l_26 <X> lc_trk_g3_7 (21 14) routing sp4_h_l_34 <X> lc_trk_g3_7 (21 14) routing sp4_v_b_39 <X> lc_trk_g3_7 (21 14) routing sp4_v_t_18 <X> lc_trk_g3_7 (21 15) routing bnl_op_7 <X> lc_trk_g3_7 (21 15) routing sp12_v_b_23 <X> lc_trk_g3_7 (21 15) routing sp12_v_t_4 <X> lc_trk_g3_7 (21 15) routing sp4_h_l_34 <X> lc_trk_g3_7 (21 15) routing sp4_h_r_31 <X> lc_trk_g3_7 (21 15) routing sp4_r_v_b_47 <X> lc_trk_g3_7 (21 15) routing sp4_v_b_39 <X> lc_trk_g3_7 (21 15) routing tnl_op_7 <X> lc_trk_g3_7 (21 2) routing bnr_op_7 <X> lc_trk_g0_7 (21 2) routing lft_op_7 <X> lc_trk_g0_7 (21 2) routing sp12_h_r_7 <X> lc_trk_g0_7 (21 2) routing sp4_h_l_10 <X> lc_trk_g0_7 (21 2) routing sp4_h_l_2 <X> lc_trk_g0_7 (21 2) routing sp4_v_b_15 <X> lc_trk_g0_7 (21 2) routing sp4_v_b_7 <X> lc_trk_g0_7 (21 3) routing bnr_op_7 <X> lc_trk_g0_7 (21 3) routing sp12_h_l_20 <X> lc_trk_g0_7 (21 3) routing sp12_h_r_7 <X> lc_trk_g0_7 (21 3) routing sp4_h_l_10 <X> lc_trk_g0_7 (21 3) routing sp4_h_r_7 <X> lc_trk_g0_7 (21 3) routing sp4_r_v_b_31 <X> lc_trk_g0_7 (21 3) routing sp4_v_b_15 <X> lc_trk_g0_7 (21 3) routing top_op_7 <X> lc_trk_g0_7 (21 4) routing bnr_op_3 <X> lc_trk_g1_3 (21 4) routing lft_op_3 <X> lc_trk_g1_3 (21 4) routing sp12_h_r_3 <X> lc_trk_g1_3 (21 4) routing sp4_h_r_11 <X> lc_trk_g1_3 (21 4) routing sp4_h_r_19 <X> lc_trk_g1_3 (21 4) routing sp4_v_b_11 <X> lc_trk_g1_3 (21 4) routing sp4_v_b_3 <X> lc_trk_g1_3 (21 5) routing bnr_op_3 <X> lc_trk_g1_3 (21 5) routing sp12_h_l_16 <X> lc_trk_g1_3 (21 5) routing sp12_h_r_3 <X> lc_trk_g1_3 (21 5) routing sp4_h_r_19 <X> lc_trk_g1_3 (21 5) routing sp4_h_r_3 <X> lc_trk_g1_3 (21 5) routing sp4_r_v_b_27 <X> lc_trk_g1_3 (21 5) routing sp4_v_b_11 <X> lc_trk_g1_3 (21 5) routing top_op_3 <X> lc_trk_g1_3 (21 6) routing bnr_op_7 <X> lc_trk_g1_7 (21 6) routing lft_op_7 <X> lc_trk_g1_7 (21 6) routing sp12_h_r_7 <X> lc_trk_g1_7 (21 6) routing sp4_h_l_10 <X> lc_trk_g1_7 (21 6) routing sp4_h_l_2 <X> lc_trk_g1_7 (21 6) routing sp4_v_b_15 <X> lc_trk_g1_7 (21 6) routing sp4_v_b_7 <X> lc_trk_g1_7 (21 7) routing bnr_op_7 <X> lc_trk_g1_7 (21 7) routing sp12_h_l_20 <X> lc_trk_g1_7 (21 7) routing sp12_h_r_7 <X> lc_trk_g1_7 (21 7) routing sp4_h_l_10 <X> lc_trk_g1_7 (21 7) routing sp4_h_r_7 <X> lc_trk_g1_7 (21 7) routing sp4_r_v_b_31 <X> lc_trk_g1_7 (21 7) routing sp4_v_b_15 <X> lc_trk_g1_7 (21 7) routing top_op_7 <X> lc_trk_g1_7 (21 8) routing bnl_op_3 <X> lc_trk_g2_3 (21 8) routing rgt_op_3 <X> lc_trk_g2_3 (21 8) routing sp12_v_b_3 <X> lc_trk_g2_3 (21 8) routing sp4_h_r_35 <X> lc_trk_g2_3 (21 8) routing sp4_h_r_43 <X> lc_trk_g2_3 (21 8) routing sp4_v_b_27 <X> lc_trk_g2_3 (21 8) routing sp4_v_t_22 <X> lc_trk_g2_3 (21 9) routing bnl_op_3 <X> lc_trk_g2_3 (21 9) routing sp12_v_b_19 <X> lc_trk_g2_3 (21 9) routing sp12_v_b_3 <X> lc_trk_g2_3 (21 9) routing sp4_h_l_14 <X> lc_trk_g2_3 (21 9) routing sp4_h_r_43 <X> lc_trk_g2_3 (21 9) routing sp4_r_v_b_35 <X> lc_trk_g2_3 (21 9) routing sp4_v_t_22 <X> lc_trk_g2_3 (21 9) routing tnl_op_3 <X> lc_trk_g2_3 (22 0) Enable bit of Mux _local_links/g0_mux_3 => bnr_op_3 lc_trk_g0_3 (22 0) Enable bit of Mux _local_links/g0_mux_3 => bot_op_3 lc_trk_g0_3 (22 0) Enable bit of Mux _local_links/g0_mux_3 => lft_op_3 lc_trk_g0_3 (22 0) Enable bit of Mux _local_links/g0_mux_3 => slf_op_3 lc_trk_g0_3 (22 0) Enable bit of Mux _local_links/g0_mux_3 => sp12_h_l_16 lc_trk_g0_3 (22 0) Enable bit of Mux _local_links/g0_mux_3 => sp12_h_r_11 lc_trk_g0_3 (22 0) Enable bit of Mux _local_links/g0_mux_3 => sp12_h_r_3 lc_trk_g0_3 (22 0) Enable bit of Mux _local_links/g0_mux_3 => sp4_h_r_11 lc_trk_g0_3 (22 0) Enable bit of Mux _local_links/g0_mux_3 => sp4_h_r_19 lc_trk_g0_3 (22 0) Enable bit of Mux _local_links/g0_mux_3 => sp4_h_r_3 lc_trk_g0_3 (22 0) Enable bit of Mux _local_links/g0_mux_3 => sp4_r_v_b_27 lc_trk_g0_3 (22 0) Enable bit of Mux _local_links/g0_mux_3 => sp4_r_v_b_32 lc_trk_g0_3 (22 0) Enable bit of Mux _local_links/g0_mux_3 => sp4_v_b_11 lc_trk_g0_3 (22 0) Enable bit of Mux _local_links/g0_mux_3 => sp4_v_b_3 lc_trk_g0_3 (22 0) Enable bit of Mux _local_links/g0_mux_3 => sp4_v_t_6 lc_trk_g0_3 (22 1) Enable bit of Mux _local_links/g0_mux_2 => bnr_op_2 lc_trk_g0_2 (22 1) Enable bit of Mux _local_links/g0_mux_2 => lft_op_2 lc_trk_g0_2 (22 1) Enable bit of Mux _local_links/g0_mux_2 => sp12_h_l_1 lc_trk_g0_2 (22 1) Enable bit of Mux _local_links/g0_mux_2 => sp12_h_l_17 lc_trk_g0_2 (22 1) Enable bit of Mux _local_links/g0_mux_2 => sp12_h_l_9 lc_trk_g0_2 (22 1) Enable bit of Mux _local_links/g0_mux_2 => sp4_h_l_7 lc_trk_g0_2 (22 1) Enable bit of Mux _local_links/g0_mux_2 => sp4_h_r_10 lc_trk_g0_2 (22 1) Enable bit of Mux _local_links/g0_mux_2 => sp4_h_r_2 lc_trk_g0_2 (22 1) Enable bit of Mux _local_links/g0_mux_2 => sp4_r_v_b_26 lc_trk_g0_2 (22 1) Enable bit of Mux _local_links/g0_mux_2 => sp4_r_v_b_33 lc_trk_g0_2 (22 1) Enable bit of Mux _local_links/g0_mux_2 => sp4_v_b_10 lc_trk_g0_2 (22 1) Enable bit of Mux _local_links/g0_mux_2 => sp4_v_b_18 lc_trk_g0_2 (22 1) Enable bit of Mux _local_links/g0_mux_2 => sp4_v_b_2 lc_trk_g0_2 (22 10) Enable bit of Mux _local_links/g2_mux_7 => bnl_op_7 lc_trk_g2_7 (22 10) Enable bit of Mux _local_links/g2_mux_7 => rgt_op_7 lc_trk_g2_7 (22 10) Enable bit of Mux _local_links/g2_mux_7 => slf_op_7 lc_trk_g2_7 (22 10) Enable bit of Mux _local_links/g2_mux_7 => sp12_v_b_23 lc_trk_g2_7 (22 10) Enable bit of Mux _local_links/g2_mux_7 => sp12_v_t_12 lc_trk_g2_7 (22 10) Enable bit of Mux _local_links/g2_mux_7 => sp12_v_t_4 lc_trk_g2_7 (22 10) Enable bit of Mux _local_links/g2_mux_7 => sp4_h_l_26 lc_trk_g2_7 (22 10) Enable bit of Mux _local_links/g2_mux_7 => sp4_h_l_34 lc_trk_g2_7 (22 10) Enable bit of Mux _local_links/g2_mux_7 => sp4_h_r_31 lc_trk_g2_7 (22 10) Enable bit of Mux _local_links/g2_mux_7 => sp4_r_v_b_15 lc_trk_g2_7 (22 10) Enable bit of Mux _local_links/g2_mux_7 => sp4_r_v_b_39 lc_trk_g2_7 (22 10) Enable bit of Mux _local_links/g2_mux_7 => sp4_v_b_39 lc_trk_g2_7 (22 10) Enable bit of Mux _local_links/g2_mux_7 => sp4_v_t_18 lc_trk_g2_7 (22 10) Enable bit of Mux _local_links/g2_mux_7 => sp4_v_t_34 lc_trk_g2_7 (22 10) Enable bit of Mux _local_links/g2_mux_7 => tnr_op_7 lc_trk_g2_7 (22 11) Enable bit of Mux _local_links/g2_mux_6 => bnl_op_6 lc_trk_g2_6 (22 11) Enable bit of Mux _local_links/g2_mux_6 => rgt_op_6 lc_trk_g2_6 (22 11) Enable bit of Mux _local_links/g2_mux_6 => sp12_v_b_14 lc_trk_g2_6 (22 11) Enable bit of Mux _local_links/g2_mux_6 => sp12_v_b_6 lc_trk_g2_6 (22 11) Enable bit of Mux _local_links/g2_mux_6 => sp12_v_t_21 lc_trk_g2_6 (22 11) Enable bit of Mux _local_links/g2_mux_6 => sp4_h_l_19 lc_trk_g2_6 (22 11) Enable bit of Mux _local_links/g2_mux_6 => sp4_h_l_35 lc_trk_g2_6 (22 11) Enable bit of Mux _local_links/g2_mux_6 => sp4_h_r_38 lc_trk_g2_6 (22 11) Enable bit of Mux _local_links/g2_mux_6 => sp4_r_v_b_14 lc_trk_g2_6 (22 11) Enable bit of Mux _local_links/g2_mux_6 => sp4_r_v_b_38 lc_trk_g2_6 (22 11) Enable bit of Mux _local_links/g2_mux_6 => sp4_v_b_46 lc_trk_g2_6 (22 11) Enable bit of Mux _local_links/g2_mux_6 => sp4_v_t_19 lc_trk_g2_6 (22 11) Enable bit of Mux _local_links/g2_mux_6 => sp4_v_t_27 lc_trk_g2_6 (22 11) Enable bit of Mux _local_links/g2_mux_6 => tnl_op_6 lc_trk_g2_6 (22 12) Enable bit of Mux _local_links/g3_mux_3 => bnl_op_3 lc_trk_g3_3 (22 12) Enable bit of Mux _local_links/g3_mux_3 => rgt_op_3 lc_trk_g3_3 (22 12) Enable bit of Mux _local_links/g3_mux_3 => sp12_v_b_11 lc_trk_g3_3 (22 12) Enable bit of Mux _local_links/g3_mux_3 => sp12_v_b_19 lc_trk_g3_3 (22 12) Enable bit of Mux _local_links/g3_mux_3 => sp12_v_b_3 lc_trk_g3_3 (22 12) Enable bit of Mux _local_links/g3_mux_3 => sp4_h_l_14 lc_trk_g3_3 (22 12) Enable bit of Mux _local_links/g3_mux_3 => sp4_h_r_35 lc_trk_g3_3 (22 12) Enable bit of Mux _local_links/g3_mux_3 => sp4_h_r_43 lc_trk_g3_3 (22 12) Enable bit of Mux _local_links/g3_mux_3 => sp4_r_v_b_19 lc_trk_g3_3 (22 12) Enable bit of Mux _local_links/g3_mux_3 => sp4_r_v_b_43 lc_trk_g3_3 (22 12) Enable bit of Mux _local_links/g3_mux_3 => sp4_v_b_27 lc_trk_g3_3 (22 12) Enable bit of Mux _local_links/g3_mux_3 => sp4_v_t_22 lc_trk_g3_3 (22 12) Enable bit of Mux _local_links/g3_mux_3 => sp4_v_t_30 lc_trk_g3_3 (22 12) Enable bit of Mux _local_links/g3_mux_3 => tnl_op_3 lc_trk_g3_3 (22 12) Enable bit of Mux _local_links/g3_mux_3 => tnr_op_3 lc_trk_g3_3 (22 13) Enable bit of Mux _local_links/g3_mux_2 => bnl_op_2 lc_trk_g3_2 (22 13) Enable bit of Mux _local_links/g3_mux_2 => rgt_op_2 lc_trk_g3_2 (22 13) Enable bit of Mux _local_links/g3_mux_2 => slf_op_2 lc_trk_g3_2 (22 13) Enable bit of Mux _local_links/g3_mux_2 => sp12_v_b_10 lc_trk_g3_2 (22 13) Enable bit of Mux _local_links/g3_mux_2 => sp12_v_t_1 lc_trk_g3_2 (22 13) Enable bit of Mux _local_links/g3_mux_2 => sp12_v_t_17 lc_trk_g3_2 (22 13) Enable bit of Mux _local_links/g3_mux_2 => sp4_h_r_26 lc_trk_g3_2 (22 13) Enable bit of Mux _local_links/g3_mux_2 => sp4_h_r_34 lc_trk_g3_2 (22 13) Enable bit of Mux _local_links/g3_mux_2 => sp4_h_r_42 lc_trk_g3_2 (22 13) Enable bit of Mux _local_links/g3_mux_2 => sp4_r_v_b_18 lc_trk_g3_2 (22 13) Enable bit of Mux _local_links/g3_mux_2 => sp4_r_v_b_42 lc_trk_g3_2 (22 13) Enable bit of Mux _local_links/g3_mux_2 => sp4_v_t_15 lc_trk_g3_2 (22 13) Enable bit of Mux _local_links/g3_mux_2 => sp4_v_t_23 lc_trk_g3_2 (22 13) Enable bit of Mux _local_links/g3_mux_2 => sp4_v_t_31 lc_trk_g3_2 (22 13) Enable bit of Mux _local_links/g3_mux_2 => tnl_op_2 lc_trk_g3_2 (22 13) Enable bit of Mux _local_links/g3_mux_2 => tnr_op_2 lc_trk_g3_2 (22 14) Enable bit of Mux _local_links/g3_mux_7 => bnl_op_7 lc_trk_g3_7 (22 14) Enable bit of Mux _local_links/g3_mux_7 => rgt_op_7 lc_trk_g3_7 (22 14) Enable bit of Mux _local_links/g3_mux_7 => sp12_v_b_23 lc_trk_g3_7 (22 14) Enable bit of Mux _local_links/g3_mux_7 => sp12_v_t_12 lc_trk_g3_7 (22 14) Enable bit of Mux _local_links/g3_mux_7 => sp12_v_t_4 lc_trk_g3_7 (22 14) Enable bit of Mux _local_links/g3_mux_7 => sp4_h_l_26 lc_trk_g3_7 (22 14) Enable bit of Mux _local_links/g3_mux_7 => sp4_h_l_34 lc_trk_g3_7 (22 14) Enable bit of Mux _local_links/g3_mux_7 => sp4_h_r_31 lc_trk_g3_7 (22 14) Enable bit of Mux _local_links/g3_mux_7 => sp4_r_v_b_23 lc_trk_g3_7 (22 14) Enable bit of Mux _local_links/g3_mux_7 => sp4_r_v_b_47 lc_trk_g3_7 (22 14) Enable bit of Mux _local_links/g3_mux_7 => sp4_v_b_39 lc_trk_g3_7 (22 14) Enable bit of Mux _local_links/g3_mux_7 => sp4_v_t_18 lc_trk_g3_7 (22 14) Enable bit of Mux _local_links/g3_mux_7 => sp4_v_t_34 lc_trk_g3_7 (22 14) Enable bit of Mux _local_links/g3_mux_7 => tnl_op_7 lc_trk_g3_7 (22 14) Enable bit of Mux _local_links/g3_mux_7 => tnr_op_7 lc_trk_g3_7 (22 15) Enable bit of Mux _local_links/g3_mux_6 => bnl_op_6 lc_trk_g3_6 (22 15) Enable bit of Mux _local_links/g3_mux_6 => rgt_op_6 lc_trk_g3_6 (22 15) Enable bit of Mux _local_links/g3_mux_6 => sp12_v_b_14 lc_trk_g3_6 (22 15) Enable bit of Mux _local_links/g3_mux_6 => sp12_v_b_6 lc_trk_g3_6 (22 15) Enable bit of Mux _local_links/g3_mux_6 => sp12_v_t_21 lc_trk_g3_6 (22 15) Enable bit of Mux _local_links/g3_mux_6 => sp4_h_l_19 lc_trk_g3_6 (22 15) Enable bit of Mux _local_links/g3_mux_6 => sp4_h_l_35 lc_trk_g3_6 (22 15) Enable bit of Mux _local_links/g3_mux_6 => sp4_h_r_38 lc_trk_g3_6 (22 15) Enable bit of Mux _local_links/g3_mux_6 => sp4_r_v_b_22 lc_trk_g3_6 (22 15) Enable bit of Mux _local_links/g3_mux_6 => sp4_r_v_b_46 lc_trk_g3_6 (22 15) Enable bit of Mux _local_links/g3_mux_6 => sp4_v_b_46 lc_trk_g3_6 (22 15) Enable bit of Mux _local_links/g3_mux_6 => sp4_v_t_19 lc_trk_g3_6 (22 15) Enable bit of Mux _local_links/g3_mux_6 => sp4_v_t_27 lc_trk_g3_6 (22 15) Enable bit of Mux _local_links/g3_mux_6 => tnr_op_6 lc_trk_g3_6 (22 2) Enable bit of Mux _local_links/g0_mux_7 => bnr_op_7 lc_trk_g0_7 (22 2) Enable bit of Mux _local_links/g0_mux_7 => bot_op_7 lc_trk_g0_7 (22 2) Enable bit of Mux _local_links/g0_mux_7 => glb2local_3 lc_trk_g0_7 (22 2) Enable bit of Mux _local_links/g0_mux_7 => lft_op_7 lc_trk_g0_7 (22 2) Enable bit of Mux _local_links/g0_mux_7 => sp12_h_l_12 lc_trk_g0_7 (22 2) Enable bit of Mux _local_links/g0_mux_7 => sp12_h_l_20 lc_trk_g0_7 (22 2) Enable bit of Mux _local_links/g0_mux_7 => sp12_h_r_7 lc_trk_g0_7 (22 2) Enable bit of Mux _local_links/g0_mux_7 => sp4_h_l_10 lc_trk_g0_7 (22 2) Enable bit of Mux _local_links/g0_mux_7 => sp4_h_l_2 lc_trk_g0_7 (22 2) Enable bit of Mux _local_links/g0_mux_7 => sp4_h_r_7 lc_trk_g0_7 (22 2) Enable bit of Mux _local_links/g0_mux_7 => sp4_r_v_b_31 lc_trk_g0_7 (22 2) Enable bit of Mux _local_links/g0_mux_7 => sp4_v_b_15 lc_trk_g0_7 (22 2) Enable bit of Mux _local_links/g0_mux_7 => sp4_v_b_23 lc_trk_g0_7 (22 2) Enable bit of Mux _local_links/g0_mux_7 => sp4_v_b_7 lc_trk_g0_7 (22 2) Enable bit of Mux _local_links/g0_mux_7 => top_op_7 lc_trk_g0_7 (22 3) Enable bit of Mux _local_links/g0_mux_6 => bnr_op_6 lc_trk_g0_6 (22 3) Enable bit of Mux _local_links/g0_mux_6 => glb2local_2 lc_trk_g0_6 (22 3) Enable bit of Mux _local_links/g0_mux_6 => lft_op_6 lc_trk_g0_6 (22 3) Enable bit of Mux _local_links/g0_mux_6 => slf_op_6 lc_trk_g0_6 (22 3) Enable bit of Mux _local_links/g0_mux_6 => sp12_h_l_5 lc_trk_g0_6 (22 3) Enable bit of Mux _local_links/g0_mux_6 => sp12_h_r_14 lc_trk_g0_6 (22 3) Enable bit of Mux _local_links/g0_mux_6 => sp12_h_r_22 lc_trk_g0_6 (22 3) Enable bit of Mux _local_links/g0_mux_6 => sp4_h_l_11 lc_trk_g0_6 (22 3) Enable bit of Mux _local_links/g0_mux_6 => sp4_h_l_3 lc_trk_g0_6 (22 3) Enable bit of Mux _local_links/g0_mux_6 => sp4_h_r_6 lc_trk_g0_6 (22 3) Enable bit of Mux _local_links/g0_mux_6 => sp4_r_v_b_30 lc_trk_g0_6 (22 3) Enable bit of Mux _local_links/g0_mux_6 => sp4_v_b_22 lc_trk_g0_6 (22 3) Enable bit of Mux _local_links/g0_mux_6 => sp4_v_b_6 lc_trk_g0_6 (22 3) Enable bit of Mux _local_links/g0_mux_6 => sp4_v_t_3 lc_trk_g0_6 (22 3) Enable bit of Mux _local_links/g0_mux_6 => top_op_6 lc_trk_g0_6 (22 4) Enable bit of Mux _local_links/g1_mux_3 => bnr_op_3 lc_trk_g1_3 (22 4) Enable bit of Mux _local_links/g1_mux_3 => lft_op_3 lc_trk_g1_3 (22 4) Enable bit of Mux _local_links/g1_mux_3 => sp12_h_l_16 lc_trk_g1_3 (22 4) Enable bit of Mux _local_links/g1_mux_3 => sp12_h_r_11 lc_trk_g1_3 (22 4) Enable bit of Mux _local_links/g1_mux_3 => sp12_h_r_3 lc_trk_g1_3 (22 4) Enable bit of Mux _local_links/g1_mux_3 => sp4_h_r_11 lc_trk_g1_3 (22 4) Enable bit of Mux _local_links/g1_mux_3 => sp4_h_r_19 lc_trk_g1_3 (22 4) Enable bit of Mux _local_links/g1_mux_3 => sp4_h_r_3 lc_trk_g1_3 (22 4) Enable bit of Mux _local_links/g1_mux_3 => sp4_r_v_b_27 lc_trk_g1_3 (22 4) Enable bit of Mux _local_links/g1_mux_3 => sp4_r_v_b_3 lc_trk_g1_3 (22 4) Enable bit of Mux _local_links/g1_mux_3 => sp4_v_b_11 lc_trk_g1_3 (22 4) Enable bit of Mux _local_links/g1_mux_3 => sp4_v_b_3 lc_trk_g1_3 (22 4) Enable bit of Mux _local_links/g1_mux_3 => sp4_v_t_6 lc_trk_g1_3 (22 4) Enable bit of Mux _local_links/g1_mux_3 => top_op_3 lc_trk_g1_3 (22 5) Enable bit of Mux _local_links/g1_mux_2 => bnr_op_2 lc_trk_g1_2 (22 5) Enable bit of Mux _local_links/g1_mux_2 => bot_op_2 lc_trk_g1_2 (22 5) Enable bit of Mux _local_links/g1_mux_2 => lft_op_2 lc_trk_g1_2 (22 5) Enable bit of Mux _local_links/g1_mux_2 => sp12_h_l_1 lc_trk_g1_2 (22 5) Enable bit of Mux _local_links/g1_mux_2 => sp12_h_l_17 lc_trk_g1_2 (22 5) Enable bit of Mux _local_links/g1_mux_2 => sp12_h_l_9 lc_trk_g1_2 (22 5) Enable bit of Mux _local_links/g1_mux_2 => sp4_h_l_7 lc_trk_g1_2 (22 5) Enable bit of Mux _local_links/g1_mux_2 => sp4_h_r_10 lc_trk_g1_2 (22 5) Enable bit of Mux _local_links/g1_mux_2 => sp4_h_r_2 lc_trk_g1_2 (22 5) Enable bit of Mux _local_links/g1_mux_2 => sp4_r_v_b_2 lc_trk_g1_2 (22 5) Enable bit of Mux _local_links/g1_mux_2 => sp4_r_v_b_26 lc_trk_g1_2 (22 5) Enable bit of Mux _local_links/g1_mux_2 => sp4_v_b_10 lc_trk_g1_2 (22 5) Enable bit of Mux _local_links/g1_mux_2 => sp4_v_b_18 lc_trk_g1_2 (22 5) Enable bit of Mux _local_links/g1_mux_2 => sp4_v_b_2 lc_trk_g1_2 (22 5) Enable bit of Mux _local_links/g1_mux_2 => top_op_2 lc_trk_g1_2 (22 6) Enable bit of Mux _local_links/g1_mux_7 => bnr_op_7 lc_trk_g1_7 (22 6) Enable bit of Mux _local_links/g1_mux_7 => lft_op_7 lc_trk_g1_7 (22 6) Enable bit of Mux _local_links/g1_mux_7 => sp12_h_l_12 lc_trk_g1_7 (22 6) Enable bit of Mux _local_links/g1_mux_7 => sp12_h_l_20 lc_trk_g1_7 (22 6) Enable bit of Mux _local_links/g1_mux_7 => sp12_h_r_7 lc_trk_g1_7 (22 6) Enable bit of Mux _local_links/g1_mux_7 => sp4_h_l_10 lc_trk_g1_7 (22 6) Enable bit of Mux _local_links/g1_mux_7 => sp4_h_l_2 lc_trk_g1_7 (22 6) Enable bit of Mux _local_links/g1_mux_7 => sp4_h_r_7 lc_trk_g1_7 (22 6) Enable bit of Mux _local_links/g1_mux_7 => sp4_r_v_b_31 lc_trk_g1_7 (22 6) Enable bit of Mux _local_links/g1_mux_7 => sp4_r_v_b_7 lc_trk_g1_7 (22 6) Enable bit of Mux _local_links/g1_mux_7 => sp4_v_b_15 lc_trk_g1_7 (22 6) Enable bit of Mux _local_links/g1_mux_7 => sp4_v_b_23 lc_trk_g1_7 (22 6) Enable bit of Mux _local_links/g1_mux_7 => sp4_v_b_7 lc_trk_g1_7 (22 6) Enable bit of Mux _local_links/g1_mux_7 => top_op_7 lc_trk_g1_7 (22 7) Enable bit of Mux _local_links/g1_mux_6 => bnr_op_6 lc_trk_g1_6 (22 7) Enable bit of Mux _local_links/g1_mux_6 => bot_op_6 lc_trk_g1_6 (22 7) Enable bit of Mux _local_links/g1_mux_6 => lft_op_6 lc_trk_g1_6 (22 7) Enable bit of Mux _local_links/g1_mux_6 => slf_op_6 lc_trk_g1_6 (22 7) Enable bit of Mux _local_links/g1_mux_6 => sp12_h_l_5 lc_trk_g1_6 (22 7) Enable bit of Mux _local_links/g1_mux_6 => sp12_h_r_14 lc_trk_g1_6 (22 7) Enable bit of Mux _local_links/g1_mux_6 => sp12_h_r_22 lc_trk_g1_6 (22 7) Enable bit of Mux _local_links/g1_mux_6 => sp4_h_l_11 lc_trk_g1_6 (22 7) Enable bit of Mux _local_links/g1_mux_6 => sp4_h_l_3 lc_trk_g1_6 (22 7) Enable bit of Mux _local_links/g1_mux_6 => sp4_h_r_6 lc_trk_g1_6 (22 7) Enable bit of Mux _local_links/g1_mux_6 => sp4_r_v_b_30 lc_trk_g1_6 (22 7) Enable bit of Mux _local_links/g1_mux_6 => sp4_r_v_b_6 lc_trk_g1_6 (22 7) Enable bit of Mux _local_links/g1_mux_6 => sp4_v_b_22 lc_trk_g1_6 (22 7) Enable bit of Mux _local_links/g1_mux_6 => sp4_v_b_6 lc_trk_g1_6 (22 7) Enable bit of Mux _local_links/g1_mux_6 => sp4_v_t_3 lc_trk_g1_6 (22 8) Enable bit of Mux _local_links/g2_mux_3 => bnl_op_3 lc_trk_g2_3 (22 8) Enable bit of Mux _local_links/g2_mux_3 => rgt_op_3 lc_trk_g2_3 (22 8) Enable bit of Mux _local_links/g2_mux_3 => sp12_v_b_11 lc_trk_g2_3 (22 8) Enable bit of Mux _local_links/g2_mux_3 => sp12_v_b_19 lc_trk_g2_3 (22 8) Enable bit of Mux _local_links/g2_mux_3 => sp12_v_b_3 lc_trk_g2_3 (22 8) Enable bit of Mux _local_links/g2_mux_3 => sp4_h_l_14 lc_trk_g2_3 (22 8) Enable bit of Mux _local_links/g2_mux_3 => sp4_h_r_35 lc_trk_g2_3 (22 8) Enable bit of Mux _local_links/g2_mux_3 => sp4_h_r_43 lc_trk_g2_3 (22 8) Enable bit of Mux _local_links/g2_mux_3 => sp4_r_v_b_11 lc_trk_g2_3 (22 8) Enable bit of Mux _local_links/g2_mux_3 => sp4_r_v_b_35 lc_trk_g2_3 (22 8) Enable bit of Mux _local_links/g2_mux_3 => sp4_v_b_27 lc_trk_g2_3 (22 8) Enable bit of Mux _local_links/g2_mux_3 => sp4_v_t_22 lc_trk_g2_3 (22 8) Enable bit of Mux _local_links/g2_mux_3 => sp4_v_t_30 lc_trk_g2_3 (22 8) Enable bit of Mux _local_links/g2_mux_3 => tnl_op_3 lc_trk_g2_3 (22 9) Enable bit of Mux _local_links/g2_mux_2 => bnl_op_2 lc_trk_g2_2 (22 9) Enable bit of Mux _local_links/g2_mux_2 => rgt_op_2 lc_trk_g2_2 (22 9) Enable bit of Mux _local_links/g2_mux_2 => sp12_v_b_10 lc_trk_g2_2 (22 9) Enable bit of Mux _local_links/g2_mux_2 => sp12_v_t_1 lc_trk_g2_2 (22 9) Enable bit of Mux _local_links/g2_mux_2 => sp12_v_t_17 lc_trk_g2_2 (22 9) Enable bit of Mux _local_links/g2_mux_2 => sp4_h_r_26 lc_trk_g2_2 (22 9) Enable bit of Mux _local_links/g2_mux_2 => sp4_h_r_34 lc_trk_g2_2 (22 9) Enable bit of Mux _local_links/g2_mux_2 => sp4_h_r_42 lc_trk_g2_2 (22 9) Enable bit of Mux _local_links/g2_mux_2 => sp4_r_v_b_10 lc_trk_g2_2 (22 9) Enable bit of Mux _local_links/g2_mux_2 => sp4_r_v_b_34 lc_trk_g2_2 (22 9) Enable bit of Mux _local_links/g2_mux_2 => sp4_v_t_15 lc_trk_g2_2 (22 9) Enable bit of Mux _local_links/g2_mux_2 => sp4_v_t_23 lc_trk_g2_2 (22 9) Enable bit of Mux _local_links/g2_mux_2 => sp4_v_t_31 lc_trk_g2_2 (22 9) Enable bit of Mux _local_links/g2_mux_2 => tnl_op_2 lc_trk_g2_2 (22 9) Enable bit of Mux _local_links/g2_mux_2 => tnr_op_2 lc_trk_g2_2 (23 0) routing sp12_h_l_16 <X> lc_trk_g0_3 (23 0) routing sp12_h_r_11 <X> lc_trk_g0_3 (23 0) routing sp4_h_r_11 <X> lc_trk_g0_3 (23 0) routing sp4_h_r_19 <X> lc_trk_g0_3 (23 0) routing sp4_h_r_3 <X> lc_trk_g0_3 (23 0) routing sp4_v_b_11 <X> lc_trk_g0_3 (23 0) routing sp4_v_b_3 <X> lc_trk_g0_3 (23 0) routing sp4_v_t_6 <X> lc_trk_g0_3 (23 1) routing sp12_h_l_17 <X> lc_trk_g0_2 (23 1) routing sp12_h_l_9 <X> lc_trk_g0_2 (23 1) routing sp4_h_l_7 <X> lc_trk_g0_2 (23 1) routing sp4_h_r_10 <X> lc_trk_g0_2 (23 1) routing sp4_h_r_2 <X> lc_trk_g0_2 (23 1) routing sp4_v_b_10 <X> lc_trk_g0_2 (23 1) routing sp4_v_b_18 <X> lc_trk_g0_2 (23 1) routing sp4_v_b_2 <X> lc_trk_g0_2 (23 10) routing sp12_v_b_23 <X> lc_trk_g2_7 (23 10) routing sp12_v_t_12 <X> lc_trk_g2_7 (23 10) routing sp4_h_l_26 <X> lc_trk_g2_7 (23 10) routing sp4_h_l_34 <X> lc_trk_g2_7 (23 10) routing sp4_h_r_31 <X> lc_trk_g2_7 (23 10) routing sp4_v_b_39 <X> lc_trk_g2_7 (23 10) routing sp4_v_t_18 <X> lc_trk_g2_7 (23 10) routing sp4_v_t_34 <X> lc_trk_g2_7 (23 11) routing sp12_v_b_14 <X> lc_trk_g2_6 (23 11) routing sp12_v_t_21 <X> lc_trk_g2_6 (23 11) routing sp4_h_l_19 <X> lc_trk_g2_6 (23 11) routing sp4_h_l_35 <X> lc_trk_g2_6 (23 11) routing sp4_h_r_38 <X> lc_trk_g2_6 (23 11) routing sp4_v_b_46 <X> lc_trk_g2_6 (23 11) routing sp4_v_t_19 <X> lc_trk_g2_6 (23 11) routing sp4_v_t_27 <X> lc_trk_g2_6 (23 12) routing sp12_v_b_11 <X> lc_trk_g3_3 (23 12) routing sp12_v_b_19 <X> lc_trk_g3_3 (23 12) routing sp4_h_l_14 <X> lc_trk_g3_3 (23 12) routing sp4_h_r_35 <X> lc_trk_g3_3 (23 12) routing sp4_h_r_43 <X> lc_trk_g3_3 (23 12) routing sp4_v_b_27 <X> lc_trk_g3_3 (23 12) routing sp4_v_t_22 <X> lc_trk_g3_3 (23 12) routing sp4_v_t_30 <X> lc_trk_g3_3 (23 13) routing sp12_v_b_10 <X> lc_trk_g3_2 (23 13) routing sp12_v_t_17 <X> lc_trk_g3_2 (23 13) routing sp4_h_r_26 <X> lc_trk_g3_2 (23 13) routing sp4_h_r_34 <X> lc_trk_g3_2 (23 13) routing sp4_h_r_42 <X> lc_trk_g3_2 (23 13) routing sp4_v_t_15 <X> lc_trk_g3_2 (23 13) routing sp4_v_t_23 <X> lc_trk_g3_2 (23 13) routing sp4_v_t_31 <X> lc_trk_g3_2 (23 14) routing sp12_v_b_23 <X> lc_trk_g3_7 (23 14) routing sp12_v_t_12 <X> lc_trk_g3_7 (23 14) routing sp4_h_l_26 <X> lc_trk_g3_7 (23 14) routing sp4_h_l_34 <X> lc_trk_g3_7 (23 14) routing sp4_h_r_31 <X> lc_trk_g3_7 (23 14) routing sp4_v_b_39 <X> lc_trk_g3_7 (23 14) routing sp4_v_t_18 <X> lc_trk_g3_7 (23 14) routing sp4_v_t_34 <X> lc_trk_g3_7 (23 15) routing sp12_v_b_14 <X> lc_trk_g3_6 (23 15) routing sp12_v_t_21 <X> lc_trk_g3_6 (23 15) routing sp4_h_l_19 <X> lc_trk_g3_6 (23 15) routing sp4_h_l_35 <X> lc_trk_g3_6 (23 15) routing sp4_h_r_38 <X> lc_trk_g3_6 (23 15) routing sp4_v_b_46 <X> lc_trk_g3_6 (23 15) routing sp4_v_t_19 <X> lc_trk_g3_6 (23 15) routing sp4_v_t_27 <X> lc_trk_g3_6 (23 2) routing sp12_h_l_12 <X> lc_trk_g0_7 (23 2) routing sp12_h_l_20 <X> lc_trk_g0_7 (23 2) routing sp4_h_l_10 <X> lc_trk_g0_7 (23 2) routing sp4_h_l_2 <X> lc_trk_g0_7 (23 2) routing sp4_h_r_7 <X> lc_trk_g0_7 (23 2) routing sp4_v_b_15 <X> lc_trk_g0_7 (23 2) routing sp4_v_b_23 <X> lc_trk_g0_7 (23 2) routing sp4_v_b_7 <X> lc_trk_g0_7 (23 3) routing sp12_h_r_14 <X> lc_trk_g0_6 (23 3) routing sp12_h_r_22 <X> lc_trk_g0_6 (23 3) routing sp4_h_l_11 <X> lc_trk_g0_6 (23 3) routing sp4_h_l_3 <X> lc_trk_g0_6 (23 3) routing sp4_h_r_6 <X> lc_trk_g0_6 (23 3) routing sp4_v_b_22 <X> lc_trk_g0_6 (23 3) routing sp4_v_b_6 <X> lc_trk_g0_6 (23 3) routing sp4_v_t_3 <X> lc_trk_g0_6 (23 4) routing sp12_h_l_16 <X> lc_trk_g1_3 (23 4) routing sp12_h_r_11 <X> lc_trk_g1_3 (23 4) routing sp4_h_r_11 <X> lc_trk_g1_3 (23 4) routing sp4_h_r_19 <X> lc_trk_g1_3 (23 4) routing sp4_h_r_3 <X> lc_trk_g1_3 (23 4) routing sp4_v_b_11 <X> lc_trk_g1_3 (23 4) routing sp4_v_b_3 <X> lc_trk_g1_3 (23 4) routing sp4_v_t_6 <X> lc_trk_g1_3 (23 5) routing sp12_h_l_17 <X> lc_trk_g1_2 (23 5) routing sp12_h_l_9 <X> lc_trk_g1_2 (23 5) routing sp4_h_l_7 <X> lc_trk_g1_2 (23 5) routing sp4_h_r_10 <X> lc_trk_g1_2 (23 5) routing sp4_h_r_2 <X> lc_trk_g1_2 (23 5) routing sp4_v_b_10 <X> lc_trk_g1_2 (23 5) routing sp4_v_b_18 <X> lc_trk_g1_2 (23 5) routing sp4_v_b_2 <X> lc_trk_g1_2 (23 6) routing sp12_h_l_12 <X> lc_trk_g1_7 (23 6) routing sp12_h_l_20 <X> lc_trk_g1_7 (23 6) routing sp4_h_l_10 <X> lc_trk_g1_7 (23 6) routing sp4_h_l_2 <X> lc_trk_g1_7 (23 6) routing sp4_h_r_7 <X> lc_trk_g1_7 (23 6) routing sp4_v_b_15 <X> lc_trk_g1_7 (23 6) routing sp4_v_b_23 <X> lc_trk_g1_7 (23 6) routing sp4_v_b_7 <X> lc_trk_g1_7 (23 7) routing sp12_h_r_14 <X> lc_trk_g1_6 (23 7) routing sp12_h_r_22 <X> lc_trk_g1_6 (23 7) routing sp4_h_l_11 <X> lc_trk_g1_6 (23 7) routing sp4_h_l_3 <X> lc_trk_g1_6 (23 7) routing sp4_h_r_6 <X> lc_trk_g1_6 (23 7) routing sp4_v_b_22 <X> lc_trk_g1_6 (23 7) routing sp4_v_b_6 <X> lc_trk_g1_6 (23 7) routing sp4_v_t_3 <X> lc_trk_g1_6 (23 8) routing sp12_v_b_11 <X> lc_trk_g2_3 (23 8) routing sp12_v_b_19 <X> lc_trk_g2_3 (23 8) routing sp4_h_l_14 <X> lc_trk_g2_3 (23 8) routing sp4_h_r_35 <X> lc_trk_g2_3 (23 8) routing sp4_h_r_43 <X> lc_trk_g2_3 (23 8) routing sp4_v_b_27 <X> lc_trk_g2_3 (23 8) routing sp4_v_t_22 <X> lc_trk_g2_3 (23 8) routing sp4_v_t_30 <X> lc_trk_g2_3 (23 9) routing sp12_v_b_10 <X> lc_trk_g2_2 (23 9) routing sp12_v_t_17 <X> lc_trk_g2_2 (23 9) routing sp4_h_r_26 <X> lc_trk_g2_2 (23 9) routing sp4_h_r_34 <X> lc_trk_g2_2 (23 9) routing sp4_h_r_42 <X> lc_trk_g2_2 (23 9) routing sp4_v_t_15 <X> lc_trk_g2_2 (23 9) routing sp4_v_t_23 <X> lc_trk_g2_2 (23 9) routing sp4_v_t_31 <X> lc_trk_g2_2 (24 0) routing bot_op_3 <X> lc_trk_g0_3 (24 0) routing lft_op_3 <X> lc_trk_g0_3 (24 0) routing sp12_h_r_3 <X> lc_trk_g0_3 (24 0) routing sp4_h_r_11 <X> lc_trk_g0_3 (24 0) routing sp4_h_r_19 <X> lc_trk_g0_3 (24 0) routing sp4_h_r_3 <X> lc_trk_g0_3 (24 0) routing sp4_v_t_6 <X> lc_trk_g0_3 (24 1) routing lft_op_2 <X> lc_trk_g0_2 (24 1) routing sp12_h_l_1 <X> lc_trk_g0_2 (24 1) routing sp4_h_l_7 <X> lc_trk_g0_2 (24 1) routing sp4_h_r_10 <X> lc_trk_g0_2 (24 1) routing sp4_h_r_2 <X> lc_trk_g0_2 (24 1) routing sp4_v_b_18 <X> lc_trk_g0_2 (24 10) routing rgt_op_7 <X> lc_trk_g2_7 (24 10) routing sp12_v_t_4 <X> lc_trk_g2_7 (24 10) routing sp4_h_l_26 <X> lc_trk_g2_7 (24 10) routing sp4_h_l_34 <X> lc_trk_g2_7 (24 10) routing sp4_h_r_31 <X> lc_trk_g2_7 (24 10) routing sp4_v_t_34 <X> lc_trk_g2_7 (24 10) routing tnr_op_7 <X> lc_trk_g2_7 (24 11) routing rgt_op_6 <X> lc_trk_g2_6 (24 11) routing sp12_v_b_6 <X> lc_trk_g2_6 (24 11) routing sp4_h_l_19 <X> lc_trk_g2_6 (24 11) routing sp4_h_l_35 <X> lc_trk_g2_6 (24 11) routing sp4_h_r_38 <X> lc_trk_g2_6 (24 11) routing sp4_v_b_46 <X> lc_trk_g2_6 (24 11) routing tnl_op_6 <X> lc_trk_g2_6 (24 12) routing rgt_op_3 <X> lc_trk_g3_3 (24 12) routing sp12_v_b_3 <X> lc_trk_g3_3 (24 12) routing sp4_h_l_14 <X> lc_trk_g3_3 (24 12) routing sp4_h_r_35 <X> lc_trk_g3_3 (24 12) routing sp4_h_r_43 <X> lc_trk_g3_3 (24 12) routing sp4_v_t_30 <X> lc_trk_g3_3 (24 12) routing tnl_op_3 <X> lc_trk_g3_3 (24 12) routing tnr_op_3 <X> lc_trk_g3_3 (24 13) routing rgt_op_2 <X> lc_trk_g3_2 (24 13) routing sp12_v_t_1 <X> lc_trk_g3_2 (24 13) routing sp4_h_r_26 <X> lc_trk_g3_2 (24 13) routing sp4_h_r_34 <X> lc_trk_g3_2 (24 13) routing sp4_h_r_42 <X> lc_trk_g3_2 (24 13) routing sp4_v_t_31 <X> lc_trk_g3_2 (24 13) routing tnl_op_2 <X> lc_trk_g3_2 (24 13) routing tnr_op_2 <X> lc_trk_g3_2 (24 14) routing rgt_op_7 <X> lc_trk_g3_7 (24 14) routing sp12_v_t_4 <X> lc_trk_g3_7 (24 14) routing sp4_h_l_26 <X> lc_trk_g3_7 (24 14) routing sp4_h_l_34 <X> lc_trk_g3_7 (24 14) routing sp4_h_r_31 <X> lc_trk_g3_7 (24 14) routing sp4_v_t_34 <X> lc_trk_g3_7 (24 14) routing tnl_op_7 <X> lc_trk_g3_7 (24 14) routing tnr_op_7 <X> lc_trk_g3_7 (24 15) routing rgt_op_6 <X> lc_trk_g3_6 (24 15) routing sp12_v_b_6 <X> lc_trk_g3_6 (24 15) routing sp4_h_l_19 <X> lc_trk_g3_6 (24 15) routing sp4_h_l_35 <X> lc_trk_g3_6 (24 15) routing sp4_h_r_38 <X> lc_trk_g3_6 (24 15) routing sp4_v_b_46 <X> lc_trk_g3_6 (24 15) routing tnr_op_6 <X> lc_trk_g3_6 (24 2) routing bot_op_7 <X> lc_trk_g0_7 (24 2) routing lft_op_7 <X> lc_trk_g0_7 (24 2) routing sp12_h_r_7 <X> lc_trk_g0_7 (24 2) routing sp4_h_l_10 <X> lc_trk_g0_7 (24 2) routing sp4_h_l_2 <X> lc_trk_g0_7 (24 2) routing sp4_h_r_7 <X> lc_trk_g0_7 (24 2) routing sp4_v_b_23 <X> lc_trk_g0_7 (24 2) routing top_op_7 <X> lc_trk_g0_7 (24 3) routing lft_op_6 <X> lc_trk_g0_6 (24 3) routing sp12_h_l_5 <X> lc_trk_g0_6 (24 3) routing sp4_h_l_11 <X> lc_trk_g0_6 (24 3) routing sp4_h_l_3 <X> lc_trk_g0_6 (24 3) routing sp4_h_r_6 <X> lc_trk_g0_6 (24 3) routing sp4_v_b_22 <X> lc_trk_g0_6 (24 3) routing top_op_6 <X> lc_trk_g0_6 (24 4) routing lft_op_3 <X> lc_trk_g1_3 (24 4) routing sp12_h_r_3 <X> lc_trk_g1_3 (24 4) routing sp4_h_r_11 <X> lc_trk_g1_3 (24 4) routing sp4_h_r_19 <X> lc_trk_g1_3 (24 4) routing sp4_h_r_3 <X> lc_trk_g1_3 (24 4) routing sp4_v_t_6 <X> lc_trk_g1_3 (24 4) routing top_op_3 <X> lc_trk_g1_3 (24 5) routing bot_op_2 <X> lc_trk_g1_2 (24 5) routing lft_op_2 <X> lc_trk_g1_2 (24 5) routing sp12_h_l_1 <X> lc_trk_g1_2 (24 5) routing sp4_h_l_7 <X> lc_trk_g1_2 (24 5) routing sp4_h_r_10 <X> lc_trk_g1_2 (24 5) routing sp4_h_r_2 <X> lc_trk_g1_2 (24 5) routing sp4_v_b_18 <X> lc_trk_g1_2 (24 5) routing top_op_2 <X> lc_trk_g1_2 (24 6) routing lft_op_7 <X> lc_trk_g1_7 (24 6) routing sp12_h_r_7 <X> lc_trk_g1_7 (24 6) routing sp4_h_l_10 <X> lc_trk_g1_7 (24 6) routing sp4_h_l_2 <X> lc_trk_g1_7 (24 6) routing sp4_h_r_7 <X> lc_trk_g1_7 (24 6) routing sp4_v_b_23 <X> lc_trk_g1_7 (24 6) routing top_op_7 <X> lc_trk_g1_7 (24 7) routing bot_op_6 <X> lc_trk_g1_6 (24 7) routing lft_op_6 <X> lc_trk_g1_6 (24 7) routing sp12_h_l_5 <X> lc_trk_g1_6 (24 7) routing sp4_h_l_11 <X> lc_trk_g1_6 (24 7) routing sp4_h_l_3 <X> lc_trk_g1_6 (24 7) routing sp4_h_r_6 <X> lc_trk_g1_6 (24 7) routing sp4_v_b_22 <X> lc_trk_g1_6 (24 8) routing rgt_op_3 <X> lc_trk_g2_3 (24 8) routing sp12_v_b_3 <X> lc_trk_g2_3 (24 8) routing sp4_h_l_14 <X> lc_trk_g2_3 (24 8) routing sp4_h_r_35 <X> lc_trk_g2_3 (24 8) routing sp4_h_r_43 <X> lc_trk_g2_3 (24 8) routing sp4_v_t_30 <X> lc_trk_g2_3 (24 8) routing tnl_op_3 <X> lc_trk_g2_3 (24 9) routing rgt_op_2 <X> lc_trk_g2_2 (24 9) routing sp12_v_t_1 <X> lc_trk_g2_2 (24 9) routing sp4_h_r_26 <X> lc_trk_g2_2 (24 9) routing sp4_h_r_34 <X> lc_trk_g2_2 (24 9) routing sp4_h_r_42 <X> lc_trk_g2_2 (24 9) routing sp4_v_t_31 <X> lc_trk_g2_2 (24 9) routing tnl_op_2 <X> lc_trk_g2_2 (24 9) routing tnr_op_2 <X> lc_trk_g2_2 (25 0) routing bnr_op_2 <X> lc_trk_g0_2 (25 0) routing lft_op_2 <X> lc_trk_g0_2 (25 0) routing sp12_h_l_1 <X> lc_trk_g0_2 (25 0) routing sp4_h_l_7 <X> lc_trk_g0_2 (25 0) routing sp4_h_r_10 <X> lc_trk_g0_2 (25 0) routing sp4_v_b_10 <X> lc_trk_g0_2 (25 0) routing sp4_v_b_2 <X> lc_trk_g0_2 (25 1) routing bnr_op_2 <X> lc_trk_g0_2 (25 1) routing sp12_h_l_1 <X> lc_trk_g0_2 (25 1) routing sp12_h_l_17 <X> lc_trk_g0_2 (25 1) routing sp4_h_l_7 <X> lc_trk_g0_2 (25 1) routing sp4_h_r_2 <X> lc_trk_g0_2 (25 1) routing sp4_r_v_b_33 <X> lc_trk_g0_2 (25 1) routing sp4_v_b_10 <X> lc_trk_g0_2 (25 10) routing bnl_op_6 <X> lc_trk_g2_6 (25 10) routing rgt_op_6 <X> lc_trk_g2_6 (25 10) routing sp12_v_b_6 <X> lc_trk_g2_6 (25 10) routing sp4_h_l_35 <X> lc_trk_g2_6 (25 10) routing sp4_h_r_38 <X> lc_trk_g2_6 (25 10) routing sp4_v_t_19 <X> lc_trk_g2_6 (25 10) routing sp4_v_t_27 <X> lc_trk_g2_6 (25 11) routing bnl_op_6 <X> lc_trk_g2_6 (25 11) routing sp12_v_b_6 <X> lc_trk_g2_6 (25 11) routing sp12_v_t_21 <X> lc_trk_g2_6 (25 11) routing sp4_h_l_19 <X> lc_trk_g2_6 (25 11) routing sp4_h_l_35 <X> lc_trk_g2_6 (25 11) routing sp4_r_v_b_38 <X> lc_trk_g2_6 (25 11) routing sp4_v_t_27 <X> lc_trk_g2_6 (25 11) routing tnl_op_6 <X> lc_trk_g2_6 (25 12) routing bnl_op_2 <X> lc_trk_g3_2 (25 12) routing rgt_op_2 <X> lc_trk_g3_2 (25 12) routing slf_op_2 <X> lc_trk_g3_2 (25 12) routing sp12_v_t_1 <X> lc_trk_g3_2 (25 12) routing sp4_h_r_34 <X> lc_trk_g3_2 (25 12) routing sp4_h_r_42 <X> lc_trk_g3_2 (25 12) routing sp4_v_t_15 <X> lc_trk_g3_2 (25 12) routing sp4_v_t_23 <X> lc_trk_g3_2 (25 13) routing bnl_op_2 <X> lc_trk_g3_2 (25 13) routing sp12_v_t_1 <X> lc_trk_g3_2 (25 13) routing sp12_v_t_17 <X> lc_trk_g3_2 (25 13) routing sp4_h_r_26 <X> lc_trk_g3_2 (25 13) routing sp4_h_r_42 <X> lc_trk_g3_2 (25 13) routing sp4_r_v_b_42 <X> lc_trk_g3_2 (25 13) routing sp4_v_t_23 <X> lc_trk_g3_2 (25 13) routing tnl_op_2 <X> lc_trk_g3_2 (25 14) routing bnl_op_6 <X> lc_trk_g3_6 (25 14) routing rgt_op_6 <X> lc_trk_g3_6 (25 14) routing sp12_v_b_6 <X> lc_trk_g3_6 (25 14) routing sp4_h_l_35 <X> lc_trk_g3_6 (25 14) routing sp4_h_r_38 <X> lc_trk_g3_6 (25 14) routing sp4_v_t_19 <X> lc_trk_g3_6 (25 14) routing sp4_v_t_27 <X> lc_trk_g3_6 (25 15) routing bnl_op_6 <X> lc_trk_g3_6 (25 15) routing sp12_v_b_6 <X> lc_trk_g3_6 (25 15) routing sp12_v_t_21 <X> lc_trk_g3_6 (25 15) routing sp4_h_l_19 <X> lc_trk_g3_6 (25 15) routing sp4_h_l_35 <X> lc_trk_g3_6 (25 15) routing sp4_r_v_b_46 <X> lc_trk_g3_6 (25 15) routing sp4_v_t_27 <X> lc_trk_g3_6 (25 2) routing bnr_op_6 <X> lc_trk_g0_6 (25 2) routing lft_op_6 <X> lc_trk_g0_6 (25 2) routing slf_op_6 <X> lc_trk_g0_6 (25 2) routing sp12_h_l_5 <X> lc_trk_g0_6 (25 2) routing sp4_h_l_11 <X> lc_trk_g0_6 (25 2) routing sp4_h_l_3 <X> lc_trk_g0_6 (25 2) routing sp4_v_b_6 <X> lc_trk_g0_6 (25 2) routing sp4_v_t_3 <X> lc_trk_g0_6 (25 3) routing bnr_op_6 <X> lc_trk_g0_6 (25 3) routing sp12_h_l_5 <X> lc_trk_g0_6 (25 3) routing sp12_h_r_22 <X> lc_trk_g0_6 (25 3) routing sp4_h_l_11 <X> lc_trk_g0_6 (25 3) routing sp4_h_r_6 <X> lc_trk_g0_6 (25 3) routing sp4_r_v_b_30 <X> lc_trk_g0_6 (25 3) routing sp4_v_t_3 <X> lc_trk_g0_6 (25 3) routing top_op_6 <X> lc_trk_g0_6 (25 4) routing bnr_op_2 <X> lc_trk_g1_2 (25 4) routing lft_op_2 <X> lc_trk_g1_2 (25 4) routing sp12_h_l_1 <X> lc_trk_g1_2 (25 4) routing sp4_h_l_7 <X> lc_trk_g1_2 (25 4) routing sp4_h_r_10 <X> lc_trk_g1_2 (25 4) routing sp4_v_b_10 <X> lc_trk_g1_2 (25 4) routing sp4_v_b_2 <X> lc_trk_g1_2 (25 5) routing bnr_op_2 <X> lc_trk_g1_2 (25 5) routing sp12_h_l_1 <X> lc_trk_g1_2 (25 5) routing sp12_h_l_17 <X> lc_trk_g1_2 (25 5) routing sp4_h_l_7 <X> lc_trk_g1_2 (25 5) routing sp4_h_r_2 <X> lc_trk_g1_2 (25 5) routing sp4_r_v_b_26 <X> lc_trk_g1_2 (25 5) routing sp4_v_b_10 <X> lc_trk_g1_2 (25 5) routing top_op_2 <X> lc_trk_g1_2 (25 6) routing bnr_op_6 <X> lc_trk_g1_6 (25 6) routing lft_op_6 <X> lc_trk_g1_6 (25 6) routing slf_op_6 <X> lc_trk_g1_6 (25 6) routing sp12_h_l_5 <X> lc_trk_g1_6 (25 6) routing sp4_h_l_11 <X> lc_trk_g1_6 (25 6) routing sp4_h_l_3 <X> lc_trk_g1_6 (25 6) routing sp4_v_b_6 <X> lc_trk_g1_6 (25 6) routing sp4_v_t_3 <X> lc_trk_g1_6 (25 7) routing bnr_op_6 <X> lc_trk_g1_6 (25 7) routing sp12_h_l_5 <X> lc_trk_g1_6 (25 7) routing sp12_h_r_22 <X> lc_trk_g1_6 (25 7) routing sp4_h_l_11 <X> lc_trk_g1_6 (25 7) routing sp4_h_r_6 <X> lc_trk_g1_6 (25 7) routing sp4_r_v_b_30 <X> lc_trk_g1_6 (25 7) routing sp4_v_t_3 <X> lc_trk_g1_6 (25 8) routing bnl_op_2 <X> lc_trk_g2_2 (25 8) routing rgt_op_2 <X> lc_trk_g2_2 (25 8) routing sp12_v_t_1 <X> lc_trk_g2_2 (25 8) routing sp4_h_r_34 <X> lc_trk_g2_2 (25 8) routing sp4_h_r_42 <X> lc_trk_g2_2 (25 8) routing sp4_v_t_15 <X> lc_trk_g2_2 (25 8) routing sp4_v_t_23 <X> lc_trk_g2_2 (25 9) routing bnl_op_2 <X> lc_trk_g2_2 (25 9) routing sp12_v_t_1 <X> lc_trk_g2_2 (25 9) routing sp12_v_t_17 <X> lc_trk_g2_2 (25 9) routing sp4_h_r_26 <X> lc_trk_g2_2 (25 9) routing sp4_h_r_42 <X> lc_trk_g2_2 (25 9) routing sp4_r_v_b_34 <X> lc_trk_g2_2 (25 9) routing sp4_v_t_23 <X> lc_trk_g2_2 (25 9) routing tnl_op_2 <X> lc_trk_g2_2 (26 0) routing lc_trk_g0_4 <X> wire_con_box/lc_0/in_0 (26 0) routing lc_trk_g0_6 <X> wire_con_box/lc_0/in_0 (26 0) routing lc_trk_g1_5 <X> wire_con_box/lc_0/in_0 (26 0) routing lc_trk_g1_7 <X> wire_con_box/lc_0/in_0 (26 0) routing lc_trk_g2_4 <X> wire_con_box/lc_0/in_0 (26 0) routing lc_trk_g2_6 <X> wire_con_box/lc_0/in_0 (26 0) routing lc_trk_g3_5 <X> wire_con_box/lc_0/in_0 (26 0) routing lc_trk_g3_7 <X> wire_con_box/lc_0/in_0 (26 1) routing lc_trk_g0_2 <X> wire_con_box/lc_0/in_0 (26 1) routing lc_trk_g0_6 <X> wire_con_box/lc_0/in_0 (26 1) routing lc_trk_g1_3 <X> wire_con_box/lc_0/in_0 (26 1) routing lc_trk_g1_7 <X> wire_con_box/lc_0/in_0 (26 1) routing lc_trk_g2_2 <X> wire_con_box/lc_0/in_0 (26 1) routing lc_trk_g2_6 <X> wire_con_box/lc_0/in_0 (26 1) routing lc_trk_g3_3 <X> wire_con_box/lc_0/in_0 (26 1) routing lc_trk_g3_7 <X> wire_con_box/lc_0/in_0 (26 10) routing lc_trk_g0_5 <X> wire_con_box/lc_5/in_0 (26 10) routing lc_trk_g0_7 <X> wire_con_box/lc_5/in_0 (26 10) routing lc_trk_g1_4 <X> wire_con_box/lc_5/in_0 (26 10) routing lc_trk_g1_6 <X> wire_con_box/lc_5/in_0 (26 10) routing lc_trk_g2_5 <X> wire_con_box/lc_5/in_0 (26 10) routing lc_trk_g2_7 <X> wire_con_box/lc_5/in_0 (26 10) routing lc_trk_g3_4 <X> wire_con_box/lc_5/in_0 (26 10) routing lc_trk_g3_6 <X> wire_con_box/lc_5/in_0 (26 11) routing lc_trk_g0_3 <X> wire_con_box/lc_5/in_0 (26 11) routing lc_trk_g0_7 <X> wire_con_box/lc_5/in_0 (26 11) routing lc_trk_g1_2 <X> wire_con_box/lc_5/in_0 (26 11) routing lc_trk_g1_6 <X> wire_con_box/lc_5/in_0 (26 11) routing lc_trk_g2_3 <X> wire_con_box/lc_5/in_0 (26 11) routing lc_trk_g2_7 <X> wire_con_box/lc_5/in_0 (26 11) routing lc_trk_g3_2 <X> wire_con_box/lc_5/in_0 (26 11) routing lc_trk_g3_6 <X> wire_con_box/lc_5/in_0 (26 12) routing lc_trk_g0_4 <X> wire_con_box/lc_6/in_0 (26 12) routing lc_trk_g0_6 <X> wire_con_box/lc_6/in_0 (26 12) routing lc_trk_g1_5 <X> wire_con_box/lc_6/in_0 (26 12) routing lc_trk_g1_7 <X> wire_con_box/lc_6/in_0 (26 12) routing lc_trk_g2_4 <X> wire_con_box/lc_6/in_0 (26 12) routing lc_trk_g2_6 <X> wire_con_box/lc_6/in_0 (26 12) routing lc_trk_g3_5 <X> wire_con_box/lc_6/in_0 (26 12) routing lc_trk_g3_7 <X> wire_con_box/lc_6/in_0 (26 13) routing lc_trk_g0_2 <X> wire_con_box/lc_6/in_0 (26 13) routing lc_trk_g0_6 <X> wire_con_box/lc_6/in_0 (26 13) routing lc_trk_g1_3 <X> wire_con_box/lc_6/in_0 (26 13) routing lc_trk_g1_7 <X> wire_con_box/lc_6/in_0 (26 13) routing lc_trk_g2_2 <X> wire_con_box/lc_6/in_0 (26 13) routing lc_trk_g2_6 <X> wire_con_box/lc_6/in_0 (26 13) routing lc_trk_g3_3 <X> wire_con_box/lc_6/in_0 (26 13) routing lc_trk_g3_7 <X> wire_con_box/lc_6/in_0 (26 14) routing lc_trk_g0_5 <X> wire_con_box/lc_7/in_0 (26 14) routing lc_trk_g0_7 <X> wire_con_box/lc_7/in_0 (26 14) routing lc_trk_g1_4 <X> wire_con_box/lc_7/in_0 (26 14) routing lc_trk_g1_6 <X> wire_con_box/lc_7/in_0 (26 14) routing lc_trk_g2_5 <X> wire_con_box/lc_7/in_0 (26 14) routing lc_trk_g2_7 <X> wire_con_box/lc_7/in_0 (26 14) routing lc_trk_g3_4 <X> wire_con_box/lc_7/in_0 (26 14) routing lc_trk_g3_6 <X> wire_con_box/lc_7/in_0 (26 15) routing lc_trk_g0_3 <X> wire_con_box/lc_7/in_0 (26 15) routing lc_trk_g0_7 <X> wire_con_box/lc_7/in_0 (26 15) routing lc_trk_g1_2 <X> wire_con_box/lc_7/in_0 (26 15) routing lc_trk_g1_6 <X> wire_con_box/lc_7/in_0 (26 15) routing lc_trk_g2_3 <X> wire_con_box/lc_7/in_0 (26 15) routing lc_trk_g2_7 <X> wire_con_box/lc_7/in_0 (26 15) routing lc_trk_g3_2 <X> wire_con_box/lc_7/in_0 (26 15) routing lc_trk_g3_6 <X> wire_con_box/lc_7/in_0 (26 2) routing lc_trk_g0_5 <X> wire_con_box/lc_1/in_0 (26 2) routing lc_trk_g0_7 <X> wire_con_box/lc_1/in_0 (26 2) routing lc_trk_g1_4 <X> wire_con_box/lc_1/in_0 (26 2) routing lc_trk_g1_6 <X> wire_con_box/lc_1/in_0 (26 2) routing lc_trk_g2_5 <X> wire_con_box/lc_1/in_0 (26 2) routing lc_trk_g2_7 <X> wire_con_box/lc_1/in_0 (26 2) routing lc_trk_g3_4 <X> wire_con_box/lc_1/in_0 (26 2) routing lc_trk_g3_6 <X> wire_con_box/lc_1/in_0 (26 3) routing lc_trk_g0_3 <X> wire_con_box/lc_1/in_0 (26 3) routing lc_trk_g0_7 <X> wire_con_box/lc_1/in_0 (26 3) routing lc_trk_g1_2 <X> wire_con_box/lc_1/in_0 (26 3) routing lc_trk_g1_6 <X> wire_con_box/lc_1/in_0 (26 3) routing lc_trk_g2_3 <X> wire_con_box/lc_1/in_0 (26 3) routing lc_trk_g2_7 <X> wire_con_box/lc_1/in_0 (26 3) routing lc_trk_g3_2 <X> wire_con_box/lc_1/in_0 (26 3) routing lc_trk_g3_6 <X> wire_con_box/lc_1/in_0 (26 4) routing lc_trk_g0_4 <X> wire_con_box/lc_2/in_0 (26 4) routing lc_trk_g0_6 <X> wire_con_box/lc_2/in_0 (26 4) routing lc_trk_g1_5 <X> wire_con_box/lc_2/in_0 (26 4) routing lc_trk_g1_7 <X> wire_con_box/lc_2/in_0 (26 4) routing lc_trk_g2_4 <X> wire_con_box/lc_2/in_0 (26 4) routing lc_trk_g2_6 <X> wire_con_box/lc_2/in_0 (26 4) routing lc_trk_g3_5 <X> wire_con_box/lc_2/in_0 (26 4) routing lc_trk_g3_7 <X> wire_con_box/lc_2/in_0 (26 5) routing lc_trk_g0_2 <X> wire_con_box/lc_2/in_0 (26 5) routing lc_trk_g0_6 <X> wire_con_box/lc_2/in_0 (26 5) routing lc_trk_g1_3 <X> wire_con_box/lc_2/in_0 (26 5) routing lc_trk_g1_7 <X> wire_con_box/lc_2/in_0 (26 5) routing lc_trk_g2_2 <X> wire_con_box/lc_2/in_0 (26 5) routing lc_trk_g2_6 <X> wire_con_box/lc_2/in_0 (26 5) routing lc_trk_g3_3 <X> wire_con_box/lc_2/in_0 (26 5) routing lc_trk_g3_7 <X> wire_con_box/lc_2/in_0 (26 6) routing lc_trk_g0_5 <X> wire_con_box/lc_3/in_0 (26 6) routing lc_trk_g0_7 <X> wire_con_box/lc_3/in_0 (26 6) routing lc_trk_g1_4 <X> wire_con_box/lc_3/in_0 (26 6) routing lc_trk_g1_6 <X> wire_con_box/lc_3/in_0 (26 6) routing lc_trk_g2_5 <X> wire_con_box/lc_3/in_0 (26 6) routing lc_trk_g2_7 <X> wire_con_box/lc_3/in_0 (26 6) routing lc_trk_g3_4 <X> wire_con_box/lc_3/in_0 (26 6) routing lc_trk_g3_6 <X> wire_con_box/lc_3/in_0 (26 7) routing lc_trk_g0_3 <X> wire_con_box/lc_3/in_0 (26 7) routing lc_trk_g0_7 <X> wire_con_box/lc_3/in_0 (26 7) routing lc_trk_g1_2 <X> wire_con_box/lc_3/in_0 (26 7) routing lc_trk_g1_6 <X> wire_con_box/lc_3/in_0 (26 7) routing lc_trk_g2_3 <X> wire_con_box/lc_3/in_0 (26 7) routing lc_trk_g2_7 <X> wire_con_box/lc_3/in_0 (26 7) routing lc_trk_g3_2 <X> wire_con_box/lc_3/in_0 (26 7) routing lc_trk_g3_6 <X> wire_con_box/lc_3/in_0 (26 8) routing lc_trk_g0_4 <X> wire_con_box/lc_4/in_0 (26 8) routing lc_trk_g0_6 <X> wire_con_box/lc_4/in_0 (26 8) routing lc_trk_g1_5 <X> wire_con_box/lc_4/in_0 (26 8) routing lc_trk_g1_7 <X> wire_con_box/lc_4/in_0 (26 8) routing lc_trk_g2_4 <X> wire_con_box/lc_4/in_0 (26 8) routing lc_trk_g2_6 <X> wire_con_box/lc_4/in_0 (26 8) routing lc_trk_g3_5 <X> wire_con_box/lc_4/in_0 (26 8) routing lc_trk_g3_7 <X> wire_con_box/lc_4/in_0 (26 9) routing lc_trk_g0_2 <X> wire_con_box/lc_4/in_0 (26 9) routing lc_trk_g0_6 <X> wire_con_box/lc_4/in_0 (26 9) routing lc_trk_g1_3 <X> wire_con_box/lc_4/in_0 (26 9) routing lc_trk_g1_7 <X> wire_con_box/lc_4/in_0 (26 9) routing lc_trk_g2_2 <X> wire_con_box/lc_4/in_0 (26 9) routing lc_trk_g2_6 <X> wire_con_box/lc_4/in_0 (26 9) routing lc_trk_g3_3 <X> wire_con_box/lc_4/in_0 (26 9) routing lc_trk_g3_7 <X> wire_con_box/lc_4/in_0 (27 0) routing lc_trk_g1_0 <X> wire_con_box/lc_0/in_1 (27 0) routing lc_trk_g1_2 <X> wire_con_box/lc_0/in_1 (27 0) routing lc_trk_g1_4 <X> wire_con_box/lc_0/in_1 (27 0) routing lc_trk_g1_6 <X> wire_con_box/lc_0/in_1 (27 0) routing lc_trk_g3_0 <X> wire_con_box/lc_0/in_1 (27 0) routing lc_trk_g3_2 <X> wire_con_box/lc_0/in_1 (27 0) routing lc_trk_g3_4 <X> wire_con_box/lc_0/in_1 (27 0) routing lc_trk_g3_6 <X> wire_con_box/lc_0/in_1 (27 1) routing lc_trk_g1_1 <X> wire_con_box/lc_0/in_0 (27 1) routing lc_trk_g1_3 <X> wire_con_box/lc_0/in_0 (27 1) routing lc_trk_g1_5 <X> wire_con_box/lc_0/in_0 (27 1) routing lc_trk_g1_7 <X> wire_con_box/lc_0/in_0 (27 1) routing lc_trk_g3_1 <X> wire_con_box/lc_0/in_0 (27 1) routing lc_trk_g3_3 <X> wire_con_box/lc_0/in_0 (27 1) routing lc_trk_g3_5 <X> wire_con_box/lc_0/in_0 (27 1) routing lc_trk_g3_7 <X> wire_con_box/lc_0/in_0 (27 10) routing lc_trk_g1_1 <X> wire_con_box/lc_5/in_1 (27 10) routing lc_trk_g1_3 <X> wire_con_box/lc_5/in_1 (27 10) routing lc_trk_g1_5 <X> wire_con_box/lc_5/in_1 (27 10) routing lc_trk_g1_7 <X> wire_con_box/lc_5/in_1 (27 10) routing lc_trk_g3_1 <X> wire_con_box/lc_5/in_1 (27 10) routing lc_trk_g3_3 <X> wire_con_box/lc_5/in_1 (27 10) routing lc_trk_g3_5 <X> wire_con_box/lc_5/in_1 (27 10) routing lc_trk_g3_7 <X> wire_con_box/lc_5/in_1 (27 11) routing lc_trk_g1_0 <X> wire_con_box/lc_5/in_0 (27 11) routing lc_trk_g1_2 <X> wire_con_box/lc_5/in_0 (27 11) routing lc_trk_g1_4 <X> wire_con_box/lc_5/in_0 (27 11) routing lc_trk_g1_6 <X> wire_con_box/lc_5/in_0 (27 11) routing lc_trk_g3_0 <X> wire_con_box/lc_5/in_0 (27 11) routing lc_trk_g3_2 <X> wire_con_box/lc_5/in_0 (27 11) routing lc_trk_g3_4 <X> wire_con_box/lc_5/in_0 (27 11) routing lc_trk_g3_6 <X> wire_con_box/lc_5/in_0 (27 12) routing lc_trk_g1_0 <X> wire_con_box/lc_6/in_1 (27 12) routing lc_trk_g1_2 <X> wire_con_box/lc_6/in_1 (27 12) routing lc_trk_g1_4 <X> wire_con_box/lc_6/in_1 (27 12) routing lc_trk_g1_6 <X> wire_con_box/lc_6/in_1 (27 12) routing lc_trk_g3_0 <X> wire_con_box/lc_6/in_1 (27 12) routing lc_trk_g3_2 <X> wire_con_box/lc_6/in_1 (27 12) routing lc_trk_g3_4 <X> wire_con_box/lc_6/in_1 (27 12) routing lc_trk_g3_6 <X> wire_con_box/lc_6/in_1 (27 13) routing lc_trk_g1_1 <X> wire_con_box/lc_6/in_0 (27 13) routing lc_trk_g1_3 <X> wire_con_box/lc_6/in_0 (27 13) routing lc_trk_g1_5 <X> wire_con_box/lc_6/in_0 (27 13) routing lc_trk_g1_7 <X> wire_con_box/lc_6/in_0 (27 13) routing lc_trk_g3_1 <X> wire_con_box/lc_6/in_0 (27 13) routing lc_trk_g3_3 <X> wire_con_box/lc_6/in_0 (27 13) routing lc_trk_g3_5 <X> wire_con_box/lc_6/in_0 (27 13) routing lc_trk_g3_7 <X> wire_con_box/lc_6/in_0 (27 14) routing lc_trk_g1_1 <X> wire_con_box/lc_7/in_1 (27 14) routing lc_trk_g1_3 <X> wire_con_box/lc_7/in_1 (27 14) routing lc_trk_g1_5 <X> wire_con_box/lc_7/in_1 (27 14) routing lc_trk_g1_7 <X> wire_con_box/lc_7/in_1 (27 14) routing lc_trk_g3_1 <X> wire_con_box/lc_7/in_1 (27 14) routing lc_trk_g3_3 <X> wire_con_box/lc_7/in_1 (27 14) routing lc_trk_g3_5 <X> wire_con_box/lc_7/in_1 (27 14) routing lc_trk_g3_7 <X> wire_con_box/lc_7/in_1 (27 15) routing lc_trk_g1_0 <X> wire_con_box/lc_7/in_0 (27 15) routing lc_trk_g1_2 <X> wire_con_box/lc_7/in_0 (27 15) routing lc_trk_g1_4 <X> wire_con_box/lc_7/in_0 (27 15) routing lc_trk_g1_6 <X> wire_con_box/lc_7/in_0 (27 15) routing lc_trk_g3_0 <X> wire_con_box/lc_7/in_0 (27 15) routing lc_trk_g3_2 <X> wire_con_box/lc_7/in_0 (27 15) routing lc_trk_g3_4 <X> wire_con_box/lc_7/in_0 (27 15) routing lc_trk_g3_6 <X> wire_con_box/lc_7/in_0 (27 2) routing lc_trk_g1_1 <X> wire_con_box/lc_1/in_1 (27 2) routing lc_trk_g1_3 <X> wire_con_box/lc_1/in_1 (27 2) routing lc_trk_g1_5 <X> wire_con_box/lc_1/in_1 (27 2) routing lc_trk_g1_7 <X> wire_con_box/lc_1/in_1 (27 2) routing lc_trk_g3_1 <X> wire_con_box/lc_1/in_1 (27 2) routing lc_trk_g3_3 <X> wire_con_box/lc_1/in_1 (27 2) routing lc_trk_g3_5 <X> wire_con_box/lc_1/in_1 (27 2) routing lc_trk_g3_7 <X> wire_con_box/lc_1/in_1 (27 3) routing lc_trk_g1_0 <X> wire_con_box/lc_1/in_0 (27 3) routing lc_trk_g1_2 <X> wire_con_box/lc_1/in_0 (27 3) routing lc_trk_g1_4 <X> wire_con_box/lc_1/in_0 (27 3) routing lc_trk_g1_6 <X> wire_con_box/lc_1/in_0 (27 3) routing lc_trk_g3_0 <X> wire_con_box/lc_1/in_0 (27 3) routing lc_trk_g3_2 <X> wire_con_box/lc_1/in_0 (27 3) routing lc_trk_g3_4 <X> wire_con_box/lc_1/in_0 (27 3) routing lc_trk_g3_6 <X> wire_con_box/lc_1/in_0 (27 4) routing lc_trk_g1_0 <X> wire_con_box/lc_2/in_1 (27 4) routing lc_trk_g1_2 <X> wire_con_box/lc_2/in_1 (27 4) routing lc_trk_g1_4 <X> wire_con_box/lc_2/in_1 (27 4) routing lc_trk_g1_6 <X> wire_con_box/lc_2/in_1 (27 4) routing lc_trk_g3_0 <X> wire_con_box/lc_2/in_1 (27 4) routing lc_trk_g3_2 <X> wire_con_box/lc_2/in_1 (27 4) routing lc_trk_g3_4 <X> wire_con_box/lc_2/in_1 (27 4) routing lc_trk_g3_6 <X> wire_con_box/lc_2/in_1 (27 5) routing lc_trk_g1_1 <X> wire_con_box/lc_2/in_0 (27 5) routing lc_trk_g1_3 <X> wire_con_box/lc_2/in_0 (27 5) routing lc_trk_g1_5 <X> wire_con_box/lc_2/in_0 (27 5) routing lc_trk_g1_7 <X> wire_con_box/lc_2/in_0 (27 5) routing lc_trk_g3_1 <X> wire_con_box/lc_2/in_0 (27 5) routing lc_trk_g3_3 <X> wire_con_box/lc_2/in_0 (27 5) routing lc_trk_g3_5 <X> wire_con_box/lc_2/in_0 (27 5) routing lc_trk_g3_7 <X> wire_con_box/lc_2/in_0 (27 6) routing lc_trk_g1_1 <X> wire_con_box/lc_3/in_1 (27 6) routing lc_trk_g1_3 <X> wire_con_box/lc_3/in_1 (27 6) routing lc_trk_g1_5 <X> wire_con_box/lc_3/in_1 (27 6) routing lc_trk_g1_7 <X> wire_con_box/lc_3/in_1 (27 6) routing lc_trk_g3_1 <X> wire_con_box/lc_3/in_1 (27 6) routing lc_trk_g3_3 <X> wire_con_box/lc_3/in_1 (27 6) routing lc_trk_g3_5 <X> wire_con_box/lc_3/in_1 (27 6) routing lc_trk_g3_7 <X> wire_con_box/lc_3/in_1 (27 7) routing lc_trk_g1_0 <X> wire_con_box/lc_3/in_0 (27 7) routing lc_trk_g1_2 <X> wire_con_box/lc_3/in_0 (27 7) routing lc_trk_g1_4 <X> wire_con_box/lc_3/in_0 (27 7) routing lc_trk_g1_6 <X> wire_con_box/lc_3/in_0 (27 7) routing lc_trk_g3_0 <X> wire_con_box/lc_3/in_0 (27 7) routing lc_trk_g3_2 <X> wire_con_box/lc_3/in_0 (27 7) routing lc_trk_g3_4 <X> wire_con_box/lc_3/in_0 (27 7) routing lc_trk_g3_6 <X> wire_con_box/lc_3/in_0 (27 8) routing lc_trk_g1_0 <X> wire_con_box/lc_4/in_1 (27 8) routing lc_trk_g1_2 <X> wire_con_box/lc_4/in_1 (27 8) routing lc_trk_g1_4 <X> wire_con_box/lc_4/in_1 (27 8) routing lc_trk_g1_6 <X> wire_con_box/lc_4/in_1 (27 8) routing lc_trk_g3_0 <X> wire_con_box/lc_4/in_1 (27 8) routing lc_trk_g3_2 <X> wire_con_box/lc_4/in_1 (27 8) routing lc_trk_g3_4 <X> wire_con_box/lc_4/in_1 (27 8) routing lc_trk_g3_6 <X> wire_con_box/lc_4/in_1 (27 9) routing lc_trk_g1_1 <X> wire_con_box/lc_4/in_0 (27 9) routing lc_trk_g1_3 <X> wire_con_box/lc_4/in_0 (27 9) routing lc_trk_g1_5 <X> wire_con_box/lc_4/in_0 (27 9) routing lc_trk_g1_7 <X> wire_con_box/lc_4/in_0 (27 9) routing lc_trk_g3_1 <X> wire_con_box/lc_4/in_0 (27 9) routing lc_trk_g3_3 <X> wire_con_box/lc_4/in_0 (27 9) routing lc_trk_g3_5 <X> wire_con_box/lc_4/in_0 (27 9) routing lc_trk_g3_7 <X> wire_con_box/lc_4/in_0 (28 0) routing lc_trk_g2_1 <X> wire_con_box/lc_0/in_1 (28 0) routing lc_trk_g2_3 <X> wire_con_box/lc_0/in_1 (28 0) routing lc_trk_g2_5 <X> wire_con_box/lc_0/in_1 (28 0) routing lc_trk_g2_7 <X> wire_con_box/lc_0/in_1 (28 0) routing lc_trk_g3_0 <X> wire_con_box/lc_0/in_1 (28 0) routing lc_trk_g3_2 <X> wire_con_box/lc_0/in_1 (28 0) routing lc_trk_g3_4 <X> wire_con_box/lc_0/in_1 (28 0) routing lc_trk_g3_6 <X> wire_con_box/lc_0/in_1 (28 1) routing lc_trk_g2_0 <X> wire_con_box/lc_0/in_0 (28 1) routing lc_trk_g2_2 <X> wire_con_box/lc_0/in_0 (28 1) routing lc_trk_g2_4 <X> wire_con_box/lc_0/in_0 (28 1) routing lc_trk_g2_6 <X> wire_con_box/lc_0/in_0 (28 1) routing lc_trk_g3_1 <X> wire_con_box/lc_0/in_0 (28 1) routing lc_trk_g3_3 <X> wire_con_box/lc_0/in_0 (28 1) routing lc_trk_g3_5 <X> wire_con_box/lc_0/in_0 (28 1) routing lc_trk_g3_7 <X> wire_con_box/lc_0/in_0 (28 10) routing lc_trk_g2_0 <X> wire_con_box/lc_5/in_1 (28 10) routing lc_trk_g2_2 <X> wire_con_box/lc_5/in_1 (28 10) routing lc_trk_g2_4 <X> wire_con_box/lc_5/in_1 (28 10) routing lc_trk_g2_6 <X> wire_con_box/lc_5/in_1 (28 10) routing lc_trk_g3_1 <X> wire_con_box/lc_5/in_1 (28 10) routing lc_trk_g3_3 <X> wire_con_box/lc_5/in_1 (28 10) routing lc_trk_g3_5 <X> wire_con_box/lc_5/in_1 (28 10) routing lc_trk_g3_7 <X> wire_con_box/lc_5/in_1 (28 11) routing lc_trk_g2_1 <X> wire_con_box/lc_5/in_0 (28 11) routing lc_trk_g2_3 <X> wire_con_box/lc_5/in_0 (28 11) routing lc_trk_g2_5 <X> wire_con_box/lc_5/in_0 (28 11) routing lc_trk_g2_7 <X> wire_con_box/lc_5/in_0 (28 11) routing lc_trk_g3_0 <X> wire_con_box/lc_5/in_0 (28 11) routing lc_trk_g3_2 <X> wire_con_box/lc_5/in_0 (28 11) routing lc_trk_g3_4 <X> wire_con_box/lc_5/in_0 (28 11) routing lc_trk_g3_6 <X> wire_con_box/lc_5/in_0 (28 12) routing lc_trk_g2_1 <X> wire_con_box/lc_6/in_1 (28 12) routing lc_trk_g2_3 <X> wire_con_box/lc_6/in_1 (28 12) routing lc_trk_g2_5 <X> wire_con_box/lc_6/in_1 (28 12) routing lc_trk_g2_7 <X> wire_con_box/lc_6/in_1 (28 12) routing lc_trk_g3_0 <X> wire_con_box/lc_6/in_1 (28 12) routing lc_trk_g3_2 <X> wire_con_box/lc_6/in_1 (28 12) routing lc_trk_g3_4 <X> wire_con_box/lc_6/in_1 (28 12) routing lc_trk_g3_6 <X> wire_con_box/lc_6/in_1 (28 13) routing lc_trk_g2_0 <X> wire_con_box/lc_6/in_0 (28 13) routing lc_trk_g2_2 <X> wire_con_box/lc_6/in_0 (28 13) routing lc_trk_g2_4 <X> wire_con_box/lc_6/in_0 (28 13) routing lc_trk_g2_6 <X> wire_con_box/lc_6/in_0 (28 13) routing lc_trk_g3_1 <X> wire_con_box/lc_6/in_0 (28 13) routing lc_trk_g3_3 <X> wire_con_box/lc_6/in_0 (28 13) routing lc_trk_g3_5 <X> wire_con_box/lc_6/in_0 (28 13) routing lc_trk_g3_7 <X> wire_con_box/lc_6/in_0 (28 14) routing lc_trk_g2_0 <X> wire_con_box/lc_7/in_1 (28 14) routing lc_trk_g2_2 <X> wire_con_box/lc_7/in_1 (28 14) routing lc_trk_g2_4 <X> wire_con_box/lc_7/in_1 (28 14) routing lc_trk_g2_6 <X> wire_con_box/lc_7/in_1 (28 14) routing lc_trk_g3_1 <X> wire_con_box/lc_7/in_1 (28 14) routing lc_trk_g3_3 <X> wire_con_box/lc_7/in_1 (28 14) routing lc_trk_g3_5 <X> wire_con_box/lc_7/in_1 (28 14) routing lc_trk_g3_7 <X> wire_con_box/lc_7/in_1 (28 15) routing lc_trk_g2_1 <X> wire_con_box/lc_7/in_0 (28 15) routing lc_trk_g2_3 <X> wire_con_box/lc_7/in_0 (28 15) routing lc_trk_g2_5 <X> wire_con_box/lc_7/in_0 (28 15) routing lc_trk_g2_7 <X> wire_con_box/lc_7/in_0 (28 15) routing lc_trk_g3_0 <X> wire_con_box/lc_7/in_0 (28 15) routing lc_trk_g3_2 <X> wire_con_box/lc_7/in_0 (28 15) routing lc_trk_g3_4 <X> wire_con_box/lc_7/in_0 (28 15) routing lc_trk_g3_6 <X> wire_con_box/lc_7/in_0 (28 2) routing lc_trk_g2_0 <X> wire_con_box/lc_1/in_1 (28 2) routing lc_trk_g2_2 <X> wire_con_box/lc_1/in_1 (28 2) routing lc_trk_g2_4 <X> wire_con_box/lc_1/in_1 (28 2) routing lc_trk_g2_6 <X> wire_con_box/lc_1/in_1 (28 2) routing lc_trk_g3_1 <X> wire_con_box/lc_1/in_1 (28 2) routing lc_trk_g3_3 <X> wire_con_box/lc_1/in_1 (28 2) routing lc_trk_g3_5 <X> wire_con_box/lc_1/in_1 (28 2) routing lc_trk_g3_7 <X> wire_con_box/lc_1/in_1 (28 3) routing lc_trk_g2_1 <X> wire_con_box/lc_1/in_0 (28 3) routing lc_trk_g2_3 <X> wire_con_box/lc_1/in_0 (28 3) routing lc_trk_g2_5 <X> wire_con_box/lc_1/in_0 (28 3) routing lc_trk_g2_7 <X> wire_con_box/lc_1/in_0 (28 3) routing lc_trk_g3_0 <X> wire_con_box/lc_1/in_0 (28 3) routing lc_trk_g3_2 <X> wire_con_box/lc_1/in_0 (28 3) routing lc_trk_g3_4 <X> wire_con_box/lc_1/in_0 (28 3) routing lc_trk_g3_6 <X> wire_con_box/lc_1/in_0 (28 4) routing lc_trk_g2_1 <X> wire_con_box/lc_2/in_1 (28 4) routing lc_trk_g2_3 <X> wire_con_box/lc_2/in_1 (28 4) routing lc_trk_g2_5 <X> wire_con_box/lc_2/in_1 (28 4) routing lc_trk_g2_7 <X> wire_con_box/lc_2/in_1 (28 4) routing lc_trk_g3_0 <X> wire_con_box/lc_2/in_1 (28 4) routing lc_trk_g3_2 <X> wire_con_box/lc_2/in_1 (28 4) routing lc_trk_g3_4 <X> wire_con_box/lc_2/in_1 (28 4) routing lc_trk_g3_6 <X> wire_con_box/lc_2/in_1 (28 5) routing lc_trk_g2_0 <X> wire_con_box/lc_2/in_0 (28 5) routing lc_trk_g2_2 <X> wire_con_box/lc_2/in_0 (28 5) routing lc_trk_g2_4 <X> wire_con_box/lc_2/in_0 (28 5) routing lc_trk_g2_6 <X> wire_con_box/lc_2/in_0 (28 5) routing lc_trk_g3_1 <X> wire_con_box/lc_2/in_0 (28 5) routing lc_trk_g3_3 <X> wire_con_box/lc_2/in_0 (28 5) routing lc_trk_g3_5 <X> wire_con_box/lc_2/in_0 (28 5) routing lc_trk_g3_7 <X> wire_con_box/lc_2/in_0 (28 6) routing lc_trk_g2_0 <X> wire_con_box/lc_3/in_1 (28 6) routing lc_trk_g2_2 <X> wire_con_box/lc_3/in_1 (28 6) routing lc_trk_g2_4 <X> wire_con_box/lc_3/in_1 (28 6) routing lc_trk_g2_6 <X> wire_con_box/lc_3/in_1 (28 6) routing lc_trk_g3_1 <X> wire_con_box/lc_3/in_1 (28 6) routing lc_trk_g3_3 <X> wire_con_box/lc_3/in_1 (28 6) routing lc_trk_g3_5 <X> wire_con_box/lc_3/in_1 (28 6) routing lc_trk_g3_7 <X> wire_con_box/lc_3/in_1 (28 7) routing lc_trk_g2_1 <X> wire_con_box/lc_3/in_0 (28 7) routing lc_trk_g2_3 <X> wire_con_box/lc_3/in_0 (28 7) routing lc_trk_g2_5 <X> wire_con_box/lc_3/in_0 (28 7) routing lc_trk_g2_7 <X> wire_con_box/lc_3/in_0 (28 7) routing lc_trk_g3_0 <X> wire_con_box/lc_3/in_0 (28 7) routing lc_trk_g3_2 <X> wire_con_box/lc_3/in_0 (28 7) routing lc_trk_g3_4 <X> wire_con_box/lc_3/in_0 (28 7) routing lc_trk_g3_6 <X> wire_con_box/lc_3/in_0 (28 8) routing lc_trk_g2_1 <X> wire_con_box/lc_4/in_1 (28 8) routing lc_trk_g2_3 <X> wire_con_box/lc_4/in_1 (28 8) routing lc_trk_g2_5 <X> wire_con_box/lc_4/in_1 (28 8) routing lc_trk_g2_7 <X> wire_con_box/lc_4/in_1 (28 8) routing lc_trk_g3_0 <X> wire_con_box/lc_4/in_1 (28 8) routing lc_trk_g3_2 <X> wire_con_box/lc_4/in_1 (28 8) routing lc_trk_g3_4 <X> wire_con_box/lc_4/in_1 (28 8) routing lc_trk_g3_6 <X> wire_con_box/lc_4/in_1 (28 9) routing lc_trk_g2_0 <X> wire_con_box/lc_4/in_0 (28 9) routing lc_trk_g2_2 <X> wire_con_box/lc_4/in_0 (28 9) routing lc_trk_g2_4 <X> wire_con_box/lc_4/in_0 (28 9) routing lc_trk_g2_6 <X> wire_con_box/lc_4/in_0 (28 9) routing lc_trk_g3_1 <X> wire_con_box/lc_4/in_0 (28 9) routing lc_trk_g3_3 <X> wire_con_box/lc_4/in_0 (28 9) routing lc_trk_g3_5 <X> wire_con_box/lc_4/in_0 (28 9) routing lc_trk_g3_7 <X> wire_con_box/lc_4/in_0 (29 0) Enable bit of Mux _con_box/lcb1_0 => lc_trk_g0_1 wire_con_box/lc_0/in_1 (29 0) Enable bit of Mux _con_box/lcb1_0 => lc_trk_g0_3 wire_con_box/lc_0/in_1 (29 0) Enable bit of Mux _con_box/lcb1_0 => lc_trk_g0_5 wire_con_box/lc_0/in_1 (29 0) Enable bit of Mux _con_box/lcb1_0 => lc_trk_g0_7 wire_con_box/lc_0/in_1 (29 0) Enable bit of Mux _con_box/lcb1_0 => lc_trk_g1_0 wire_con_box/lc_0/in_1 (29 0) Enable bit of Mux _con_box/lcb1_0 => lc_trk_g1_2 wire_con_box/lc_0/in_1 (29 0) Enable bit of Mux _con_box/lcb1_0 => lc_trk_g1_4 wire_con_box/lc_0/in_1 (29 0) Enable bit of Mux _con_box/lcb1_0 => lc_trk_g1_6 wire_con_box/lc_0/in_1 (29 0) Enable bit of Mux _con_box/lcb1_0 => lc_trk_g2_1 wire_con_box/lc_0/in_1 (29 0) Enable bit of Mux _con_box/lcb1_0 => lc_trk_g2_3 wire_con_box/lc_0/in_1 (29 0) Enable bit of Mux _con_box/lcb1_0 => lc_trk_g2_5 wire_con_box/lc_0/in_1 (29 0) Enable bit of Mux _con_box/lcb1_0 => lc_trk_g2_7 wire_con_box/lc_0/in_1 (29 0) Enable bit of Mux _con_box/lcb1_0 => lc_trk_g3_0 wire_con_box/lc_0/in_1 (29 0) Enable bit of Mux _con_box/lcb1_0 => lc_trk_g3_2 wire_con_box/lc_0/in_1 (29 0) Enable bit of Mux _con_box/lcb1_0 => lc_trk_g3_4 wire_con_box/lc_0/in_1 (29 0) Enable bit of Mux _con_box/lcb1_0 => lc_trk_g3_6 wire_con_box/lc_0/in_1 (29 1) Enable bit of Mux _con_box/lcb0_0 => lc_trk_g0_0 wire_con_box/lc_0/in_0 (29 1) Enable bit of Mux _con_box/lcb0_0 => lc_trk_g0_2 wire_con_box/lc_0/in_0 (29 1) Enable bit of Mux _con_box/lcb0_0 => lc_trk_g0_4 wire_con_box/lc_0/in_0 (29 1) Enable bit of Mux _con_box/lcb0_0 => lc_trk_g0_6 wire_con_box/lc_0/in_0 (29 1) Enable bit of Mux _con_box/lcb0_0 => lc_trk_g1_1 wire_con_box/lc_0/in_0 (29 1) Enable bit of Mux _con_box/lcb0_0 => lc_trk_g1_3 wire_con_box/lc_0/in_0 (29 1) Enable bit of Mux _con_box/lcb0_0 => lc_trk_g1_5 wire_con_box/lc_0/in_0 (29 1) Enable bit of Mux _con_box/lcb0_0 => lc_trk_g1_7 wire_con_box/lc_0/in_0 (29 1) Enable bit of Mux _con_box/lcb0_0 => lc_trk_g2_0 wire_con_box/lc_0/in_0 (29 1) Enable bit of Mux _con_box/lcb0_0 => lc_trk_g2_2 wire_con_box/lc_0/in_0 (29 1) Enable bit of Mux _con_box/lcb0_0 => lc_trk_g2_4 wire_con_box/lc_0/in_0 (29 1) Enable bit of Mux _con_box/lcb0_0 => lc_trk_g2_6 wire_con_box/lc_0/in_0 (29 1) Enable bit of Mux _con_box/lcb0_0 => lc_trk_g3_1 wire_con_box/lc_0/in_0 (29 1) Enable bit of Mux _con_box/lcb0_0 => lc_trk_g3_3 wire_con_box/lc_0/in_0 (29 1) Enable bit of Mux _con_box/lcb0_0 => lc_trk_g3_5 wire_con_box/lc_0/in_0 (29 1) Enable bit of Mux _con_box/lcb0_0 => lc_trk_g3_7 wire_con_box/lc_0/in_0 (29 10) Enable bit of Mux _con_box/lcb1_5 => lc_trk_g0_0 wire_con_box/lc_5/in_1 (29 10) Enable bit of Mux _con_box/lcb1_5 => lc_trk_g0_2 wire_con_box/lc_5/in_1 (29 10) Enable bit of Mux _con_box/lcb1_5 => lc_trk_g0_4 wire_con_box/lc_5/in_1 (29 10) Enable bit of Mux _con_box/lcb1_5 => lc_trk_g0_6 wire_con_box/lc_5/in_1 (29 10) Enable bit of Mux _con_box/lcb1_5 => lc_trk_g1_1 wire_con_box/lc_5/in_1 (29 10) Enable bit of Mux _con_box/lcb1_5 => lc_trk_g1_3 wire_con_box/lc_5/in_1 (29 10) Enable bit of Mux _con_box/lcb1_5 => lc_trk_g1_5 wire_con_box/lc_5/in_1 (29 10) Enable bit of Mux _con_box/lcb1_5 => lc_trk_g1_7 wire_con_box/lc_5/in_1 (29 10) Enable bit of Mux _con_box/lcb1_5 => lc_trk_g2_0 wire_con_box/lc_5/in_1 (29 10) Enable bit of Mux _con_box/lcb1_5 => lc_trk_g2_2 wire_con_box/lc_5/in_1 (29 10) Enable bit of Mux _con_box/lcb1_5 => lc_trk_g2_4 wire_con_box/lc_5/in_1 (29 10) Enable bit of Mux _con_box/lcb1_5 => lc_trk_g2_6 wire_con_box/lc_5/in_1 (29 10) Enable bit of Mux _con_box/lcb1_5 => lc_trk_g3_1 wire_con_box/lc_5/in_1 (29 10) Enable bit of Mux _con_box/lcb1_5 => lc_trk_g3_3 wire_con_box/lc_5/in_1 (29 10) Enable bit of Mux _con_box/lcb1_5 => lc_trk_g3_5 wire_con_box/lc_5/in_1 (29 10) Enable bit of Mux _con_box/lcb1_5 => lc_trk_g3_7 wire_con_box/lc_5/in_1 (29 11) Enable bit of Mux _con_box/lcb0_5 => lc_trk_g0_1 wire_con_box/lc_5/in_0 (29 11) Enable bit of Mux _con_box/lcb0_5 => lc_trk_g0_3 wire_con_box/lc_5/in_0 (29 11) Enable bit of Mux _con_box/lcb0_5 => lc_trk_g0_5 wire_con_box/lc_5/in_0 (29 11) Enable bit of Mux _con_box/lcb0_5 => lc_trk_g0_7 wire_con_box/lc_5/in_0 (29 11) Enable bit of Mux _con_box/lcb0_5 => lc_trk_g1_0 wire_con_box/lc_5/in_0 (29 11) Enable bit of Mux _con_box/lcb0_5 => lc_trk_g1_2 wire_con_box/lc_5/in_0 (29 11) Enable bit of Mux _con_box/lcb0_5 => lc_trk_g1_4 wire_con_box/lc_5/in_0 (29 11) Enable bit of Mux _con_box/lcb0_5 => lc_trk_g1_6 wire_con_box/lc_5/in_0 (29 11) Enable bit of Mux _con_box/lcb0_5 => lc_trk_g2_1 wire_con_box/lc_5/in_0 (29 11) Enable bit of Mux _con_box/lcb0_5 => lc_trk_g2_3 wire_con_box/lc_5/in_0 (29 11) Enable bit of Mux _con_box/lcb0_5 => lc_trk_g2_5 wire_con_box/lc_5/in_0 (29 11) Enable bit of Mux _con_box/lcb0_5 => lc_trk_g2_7 wire_con_box/lc_5/in_0 (29 11) Enable bit of Mux _con_box/lcb0_5 => lc_trk_g3_0 wire_con_box/lc_5/in_0 (29 11) Enable bit of Mux _con_box/lcb0_5 => lc_trk_g3_2 wire_con_box/lc_5/in_0 (29 11) Enable bit of Mux _con_box/lcb0_5 => lc_trk_g3_4 wire_con_box/lc_5/in_0 (29 11) Enable bit of Mux _con_box/lcb0_5 => lc_trk_g3_6 wire_con_box/lc_5/in_0 (29 12) Enable bit of Mux _con_box/lcb1_6 => lc_trk_g0_1 wire_con_box/lc_6/in_1 (29 12) Enable bit of Mux _con_box/lcb1_6 => lc_trk_g0_3 wire_con_box/lc_6/in_1 (29 12) Enable bit of Mux _con_box/lcb1_6 => lc_trk_g0_5 wire_con_box/lc_6/in_1 (29 12) Enable bit of Mux _con_box/lcb1_6 => lc_trk_g0_7 wire_con_box/lc_6/in_1 (29 12) Enable bit of Mux _con_box/lcb1_6 => lc_trk_g1_0 wire_con_box/lc_6/in_1 (29 12) Enable bit of Mux _con_box/lcb1_6 => lc_trk_g1_2 wire_con_box/lc_6/in_1 (29 12) Enable bit of Mux _con_box/lcb1_6 => lc_trk_g1_4 wire_con_box/lc_6/in_1 (29 12) Enable bit of Mux _con_box/lcb1_6 => lc_trk_g1_6 wire_con_box/lc_6/in_1 (29 12) Enable bit of Mux _con_box/lcb1_6 => lc_trk_g2_1 wire_con_box/lc_6/in_1 (29 12) Enable bit of Mux _con_box/lcb1_6 => lc_trk_g2_3 wire_con_box/lc_6/in_1 (29 12) Enable bit of Mux _con_box/lcb1_6 => lc_trk_g2_5 wire_con_box/lc_6/in_1 (29 12) Enable bit of Mux _con_box/lcb1_6 => lc_trk_g2_7 wire_con_box/lc_6/in_1 (29 12) Enable bit of Mux _con_box/lcb1_6 => lc_trk_g3_0 wire_con_box/lc_6/in_1 (29 12) Enable bit of Mux _con_box/lcb1_6 => lc_trk_g3_2 wire_con_box/lc_6/in_1 (29 12) Enable bit of Mux _con_box/lcb1_6 => lc_trk_g3_4 wire_con_box/lc_6/in_1 (29 12) Enable bit of Mux _con_box/lcb1_6 => lc_trk_g3_6 wire_con_box/lc_6/in_1 (29 13) Enable bit of Mux _con_box/lcb0_6 => lc_trk_g0_0 wire_con_box/lc_6/in_0 (29 13) Enable bit of Mux _con_box/lcb0_6 => lc_trk_g0_2 wire_con_box/lc_6/in_0 (29 13) Enable bit of Mux _con_box/lcb0_6 => lc_trk_g0_4 wire_con_box/lc_6/in_0 (29 13) Enable bit of Mux _con_box/lcb0_6 => lc_trk_g0_6 wire_con_box/lc_6/in_0 (29 13) Enable bit of Mux _con_box/lcb0_6 => lc_trk_g1_1 wire_con_box/lc_6/in_0 (29 13) Enable bit of Mux _con_box/lcb0_6 => lc_trk_g1_3 wire_con_box/lc_6/in_0 (29 13) Enable bit of Mux _con_box/lcb0_6 => lc_trk_g1_5 wire_con_box/lc_6/in_0 (29 13) Enable bit of Mux _con_box/lcb0_6 => lc_trk_g1_7 wire_con_box/lc_6/in_0 (29 13) Enable bit of Mux _con_box/lcb0_6 => lc_trk_g2_0 wire_con_box/lc_6/in_0 (29 13) Enable bit of Mux _con_box/lcb0_6 => lc_trk_g2_2 wire_con_box/lc_6/in_0 (29 13) Enable bit of Mux _con_box/lcb0_6 => lc_trk_g2_4 wire_con_box/lc_6/in_0 (29 13) Enable bit of Mux _con_box/lcb0_6 => lc_trk_g2_6 wire_con_box/lc_6/in_0 (29 13) Enable bit of Mux _con_box/lcb0_6 => lc_trk_g3_1 wire_con_box/lc_6/in_0 (29 13) Enable bit of Mux _con_box/lcb0_6 => lc_trk_g3_3 wire_con_box/lc_6/in_0 (29 13) Enable bit of Mux _con_box/lcb0_6 => lc_trk_g3_5 wire_con_box/lc_6/in_0 (29 13) Enable bit of Mux _con_box/lcb0_6 => lc_trk_g3_7 wire_con_box/lc_6/in_0 (29 14) Enable bit of Mux _con_box/lcb1_7 => lc_trk_g0_0 wire_con_box/lc_7/in_1 (29 14) Enable bit of Mux _con_box/lcb1_7 => lc_trk_g0_2 wire_con_box/lc_7/in_1 (29 14) Enable bit of Mux _con_box/lcb1_7 => lc_trk_g0_4 wire_con_box/lc_7/in_1 (29 14) Enable bit of Mux _con_box/lcb1_7 => lc_trk_g0_6 wire_con_box/lc_7/in_1 (29 14) Enable bit of Mux _con_box/lcb1_7 => lc_trk_g1_1 wire_con_box/lc_7/in_1 (29 14) Enable bit of Mux _con_box/lcb1_7 => lc_trk_g1_3 wire_con_box/lc_7/in_1 (29 14) Enable bit of Mux _con_box/lcb1_7 => lc_trk_g1_5 wire_con_box/lc_7/in_1 (29 14) Enable bit of Mux _con_box/lcb1_7 => lc_trk_g1_7 wire_con_box/lc_7/in_1 (29 14) Enable bit of Mux _con_box/lcb1_7 => lc_trk_g2_0 wire_con_box/lc_7/in_1 (29 14) Enable bit of Mux _con_box/lcb1_7 => lc_trk_g2_2 wire_con_box/lc_7/in_1 (29 14) Enable bit of Mux _con_box/lcb1_7 => lc_trk_g2_4 wire_con_box/lc_7/in_1 (29 14) Enable bit of Mux _con_box/lcb1_7 => lc_trk_g2_6 wire_con_box/lc_7/in_1 (29 14) Enable bit of Mux _con_box/lcb1_7 => lc_trk_g3_1 wire_con_box/lc_7/in_1 (29 14) Enable bit of Mux _con_box/lcb1_7 => lc_trk_g3_3 wire_con_box/lc_7/in_1 (29 14) Enable bit of Mux _con_box/lcb1_7 => lc_trk_g3_5 wire_con_box/lc_7/in_1 (29 14) Enable bit of Mux _con_box/lcb1_7 => lc_trk_g3_7 wire_con_box/lc_7/in_1 (29 15) Enable bit of Mux _con_box/lcb0_7 => lc_trk_g0_1 wire_con_box/lc_7/in_0 (29 15) Enable bit of Mux _con_box/lcb0_7 => lc_trk_g0_3 wire_con_box/lc_7/in_0 (29 15) Enable bit of Mux _con_box/lcb0_7 => lc_trk_g0_5 wire_con_box/lc_7/in_0 (29 15) Enable bit of Mux _con_box/lcb0_7 => lc_trk_g0_7 wire_con_box/lc_7/in_0 (29 15) Enable bit of Mux _con_box/lcb0_7 => lc_trk_g1_0 wire_con_box/lc_7/in_0 (29 15) Enable bit of Mux _con_box/lcb0_7 => lc_trk_g1_2 wire_con_box/lc_7/in_0 (29 15) Enable bit of Mux _con_box/lcb0_7 => lc_trk_g1_4 wire_con_box/lc_7/in_0 (29 15) Enable bit of Mux _con_box/lcb0_7 => lc_trk_g1_6 wire_con_box/lc_7/in_0 (29 15) Enable bit of Mux _con_box/lcb0_7 => lc_trk_g2_1 wire_con_box/lc_7/in_0 (29 15) Enable bit of Mux _con_box/lcb0_7 => lc_trk_g2_3 wire_con_box/lc_7/in_0 (29 15) Enable bit of Mux _con_box/lcb0_7 => lc_trk_g2_5 wire_con_box/lc_7/in_0 (29 15) Enable bit of Mux _con_box/lcb0_7 => lc_trk_g2_7 wire_con_box/lc_7/in_0 (29 15) Enable bit of Mux _con_box/lcb0_7 => lc_trk_g3_0 wire_con_box/lc_7/in_0 (29 15) Enable bit of Mux _con_box/lcb0_7 => lc_trk_g3_2 wire_con_box/lc_7/in_0 (29 15) Enable bit of Mux _con_box/lcb0_7 => lc_trk_g3_4 wire_con_box/lc_7/in_0 (29 15) Enable bit of Mux _con_box/lcb0_7 => lc_trk_g3_6 wire_con_box/lc_7/in_0 (29 2) Enable bit of Mux _con_box/lcb1_1 => lc_trk_g0_0 wire_con_box/lc_1/in_1 (29 2) Enable bit of Mux _con_box/lcb1_1 => lc_trk_g0_2 wire_con_box/lc_1/in_1 (29 2) Enable bit of Mux _con_box/lcb1_1 => lc_trk_g0_4 wire_con_box/lc_1/in_1 (29 2) Enable bit of Mux _con_box/lcb1_1 => lc_trk_g0_6 wire_con_box/lc_1/in_1 (29 2) Enable bit of Mux _con_box/lcb1_1 => lc_trk_g1_1 wire_con_box/lc_1/in_1 (29 2) Enable bit of Mux _con_box/lcb1_1 => lc_trk_g1_3 wire_con_box/lc_1/in_1 (29 2) Enable bit of Mux _con_box/lcb1_1 => lc_trk_g1_5 wire_con_box/lc_1/in_1 (29 2) Enable bit of Mux _con_box/lcb1_1 => lc_trk_g1_7 wire_con_box/lc_1/in_1 (29 2) Enable bit of Mux _con_box/lcb1_1 => lc_trk_g2_0 wire_con_box/lc_1/in_1 (29 2) Enable bit of Mux _con_box/lcb1_1 => lc_trk_g2_2 wire_con_box/lc_1/in_1 (29 2) Enable bit of Mux _con_box/lcb1_1 => lc_trk_g2_4 wire_con_box/lc_1/in_1 (29 2) Enable bit of Mux _con_box/lcb1_1 => lc_trk_g2_6 wire_con_box/lc_1/in_1 (29 2) Enable bit of Mux _con_box/lcb1_1 => lc_trk_g3_1 wire_con_box/lc_1/in_1 (29 2) Enable bit of Mux _con_box/lcb1_1 => lc_trk_g3_3 wire_con_box/lc_1/in_1 (29 2) Enable bit of Mux _con_box/lcb1_1 => lc_trk_g3_5 wire_con_box/lc_1/in_1 (29 2) Enable bit of Mux _con_box/lcb1_1 => lc_trk_g3_7 wire_con_box/lc_1/in_1 (29 3) Enable bit of Mux _con_box/lcb0_1 => lc_trk_g0_1 wire_con_box/lc_1/in_0 (29 3) Enable bit of Mux _con_box/lcb0_1 => lc_trk_g0_3 wire_con_box/lc_1/in_0 (29 3) Enable bit of Mux _con_box/lcb0_1 => lc_trk_g0_5 wire_con_box/lc_1/in_0 (29 3) Enable bit of Mux _con_box/lcb0_1 => lc_trk_g0_7 wire_con_box/lc_1/in_0 (29 3) Enable bit of Mux _con_box/lcb0_1 => lc_trk_g1_0 wire_con_box/lc_1/in_0 (29 3) Enable bit of Mux _con_box/lcb0_1 => lc_trk_g1_2 wire_con_box/lc_1/in_0 (29 3) Enable bit of Mux _con_box/lcb0_1 => lc_trk_g1_4 wire_con_box/lc_1/in_0 (29 3) Enable bit of Mux _con_box/lcb0_1 => lc_trk_g1_6 wire_con_box/lc_1/in_0 (29 3) Enable bit of Mux _con_box/lcb0_1 => lc_trk_g2_1 wire_con_box/lc_1/in_0 (29 3) Enable bit of Mux _con_box/lcb0_1 => lc_trk_g2_3 wire_con_box/lc_1/in_0 (29 3) Enable bit of Mux _con_box/lcb0_1 => lc_trk_g2_5 wire_con_box/lc_1/in_0 (29 3) Enable bit of Mux _con_box/lcb0_1 => lc_trk_g2_7 wire_con_box/lc_1/in_0 (29 3) Enable bit of Mux _con_box/lcb0_1 => lc_trk_g3_0 wire_con_box/lc_1/in_0 (29 3) Enable bit of Mux _con_box/lcb0_1 => lc_trk_g3_2 wire_con_box/lc_1/in_0 (29 3) Enable bit of Mux _con_box/lcb0_1 => lc_trk_g3_4 wire_con_box/lc_1/in_0 (29 3) Enable bit of Mux _con_box/lcb0_1 => lc_trk_g3_6 wire_con_box/lc_1/in_0 (29 4) Enable bit of Mux _con_box/lcb1_2 => lc_trk_g0_1 wire_con_box/lc_2/in_1 (29 4) Enable bit of Mux _con_box/lcb1_2 => lc_trk_g0_3 wire_con_box/lc_2/in_1 (29 4) Enable bit of Mux _con_box/lcb1_2 => lc_trk_g0_5 wire_con_box/lc_2/in_1 (29 4) Enable bit of Mux _con_box/lcb1_2 => lc_trk_g0_7 wire_con_box/lc_2/in_1 (29 4) Enable bit of Mux _con_box/lcb1_2 => lc_trk_g1_0 wire_con_box/lc_2/in_1 (29 4) Enable bit of Mux _con_box/lcb1_2 => lc_trk_g1_2 wire_con_box/lc_2/in_1 (29 4) Enable bit of Mux _con_box/lcb1_2 => lc_trk_g1_4 wire_con_box/lc_2/in_1 (29 4) Enable bit of Mux _con_box/lcb1_2 => lc_trk_g1_6 wire_con_box/lc_2/in_1 (29 4) Enable bit of Mux _con_box/lcb1_2 => lc_trk_g2_1 wire_con_box/lc_2/in_1 (29 4) Enable bit of Mux _con_box/lcb1_2 => lc_trk_g2_3 wire_con_box/lc_2/in_1 (29 4) Enable bit of Mux _con_box/lcb1_2 => lc_trk_g2_5 wire_con_box/lc_2/in_1 (29 4) Enable bit of Mux _con_box/lcb1_2 => lc_trk_g2_7 wire_con_box/lc_2/in_1 (29 4) Enable bit of Mux _con_box/lcb1_2 => lc_trk_g3_0 wire_con_box/lc_2/in_1 (29 4) Enable bit of Mux _con_box/lcb1_2 => lc_trk_g3_2 wire_con_box/lc_2/in_1 (29 4) Enable bit of Mux _con_box/lcb1_2 => lc_trk_g3_4 wire_con_box/lc_2/in_1 (29 4) Enable bit of Mux _con_box/lcb1_2 => lc_trk_g3_6 wire_con_box/lc_2/in_1 (29 5) Enable bit of Mux _con_box/lcb0_2 => lc_trk_g0_0 wire_con_box/lc_2/in_0 (29 5) Enable bit of Mux _con_box/lcb0_2 => lc_trk_g0_2 wire_con_box/lc_2/in_0 (29 5) Enable bit of Mux _con_box/lcb0_2 => lc_trk_g0_4 wire_con_box/lc_2/in_0 (29 5) Enable bit of Mux _con_box/lcb0_2 => lc_trk_g0_6 wire_con_box/lc_2/in_0 (29 5) Enable bit of Mux _con_box/lcb0_2 => lc_trk_g1_1 wire_con_box/lc_2/in_0 (29 5) Enable bit of Mux _con_box/lcb0_2 => lc_trk_g1_3 wire_con_box/lc_2/in_0 (29 5) Enable bit of Mux _con_box/lcb0_2 => lc_trk_g1_5 wire_con_box/lc_2/in_0 (29 5) Enable bit of Mux _con_box/lcb0_2 => lc_trk_g1_7 wire_con_box/lc_2/in_0 (29 5) Enable bit of Mux _con_box/lcb0_2 => lc_trk_g2_0 wire_con_box/lc_2/in_0 (29 5) Enable bit of Mux _con_box/lcb0_2 => lc_trk_g2_2 wire_con_box/lc_2/in_0 (29 5) Enable bit of Mux _con_box/lcb0_2 => lc_trk_g2_4 wire_con_box/lc_2/in_0 (29 5) Enable bit of Mux _con_box/lcb0_2 => lc_trk_g2_6 wire_con_box/lc_2/in_0 (29 5) Enable bit of Mux _con_box/lcb0_2 => lc_trk_g3_1 wire_con_box/lc_2/in_0 (29 5) Enable bit of Mux _con_box/lcb0_2 => lc_trk_g3_3 wire_con_box/lc_2/in_0 (29 5) Enable bit of Mux _con_box/lcb0_2 => lc_trk_g3_5 wire_con_box/lc_2/in_0 (29 5) Enable bit of Mux _con_box/lcb0_2 => lc_trk_g3_7 wire_con_box/lc_2/in_0 (29 6) Enable bit of Mux _con_box/lcb1_3 => lc_trk_g0_0 wire_con_box/lc_3/in_1 (29 6) Enable bit of Mux _con_box/lcb1_3 => lc_trk_g0_2 wire_con_box/lc_3/in_1 (29 6) Enable bit of Mux _con_box/lcb1_3 => lc_trk_g0_4 wire_con_box/lc_3/in_1 (29 6) Enable bit of Mux _con_box/lcb1_3 => lc_trk_g0_6 wire_con_box/lc_3/in_1 (29 6) Enable bit of Mux _con_box/lcb1_3 => lc_trk_g1_1 wire_con_box/lc_3/in_1 (29 6) Enable bit of Mux _con_box/lcb1_3 => lc_trk_g1_3 wire_con_box/lc_3/in_1 (29 6) Enable bit of Mux _con_box/lcb1_3 => lc_trk_g1_5 wire_con_box/lc_3/in_1 (29 6) Enable bit of Mux _con_box/lcb1_3 => lc_trk_g1_7 wire_con_box/lc_3/in_1 (29 6) Enable bit of Mux _con_box/lcb1_3 => lc_trk_g2_0 wire_con_box/lc_3/in_1 (29 6) Enable bit of Mux _con_box/lcb1_3 => lc_trk_g2_2 wire_con_box/lc_3/in_1 (29 6) Enable bit of Mux _con_box/lcb1_3 => lc_trk_g2_4 wire_con_box/lc_3/in_1 (29 6) Enable bit of Mux _con_box/lcb1_3 => lc_trk_g2_6 wire_con_box/lc_3/in_1 (29 6) Enable bit of Mux _con_box/lcb1_3 => lc_trk_g3_1 wire_con_box/lc_3/in_1 (29 6) Enable bit of Mux _con_box/lcb1_3 => lc_trk_g3_3 wire_con_box/lc_3/in_1 (29 6) Enable bit of Mux _con_box/lcb1_3 => lc_trk_g3_5 wire_con_box/lc_3/in_1 (29 6) Enable bit of Mux _con_box/lcb1_3 => lc_trk_g3_7 wire_con_box/lc_3/in_1 (29 7) Enable bit of Mux _con_box/lcb0_3 => lc_trk_g0_1 wire_con_box/lc_3/in_0 (29 7) Enable bit of Mux _con_box/lcb0_3 => lc_trk_g0_3 wire_con_box/lc_3/in_0 (29 7) Enable bit of Mux _con_box/lcb0_3 => lc_trk_g0_5 wire_con_box/lc_3/in_0 (29 7) Enable bit of Mux _con_box/lcb0_3 => lc_trk_g0_7 wire_con_box/lc_3/in_0 (29 7) Enable bit of Mux _con_box/lcb0_3 => lc_trk_g1_0 wire_con_box/lc_3/in_0 (29 7) Enable bit of Mux _con_box/lcb0_3 => lc_trk_g1_2 wire_con_box/lc_3/in_0 (29 7) Enable bit of Mux _con_box/lcb0_3 => lc_trk_g1_4 wire_con_box/lc_3/in_0 (29 7) Enable bit of Mux _con_box/lcb0_3 => lc_trk_g1_6 wire_con_box/lc_3/in_0 (29 7) Enable bit of Mux _con_box/lcb0_3 => lc_trk_g2_1 wire_con_box/lc_3/in_0 (29 7) Enable bit of Mux _con_box/lcb0_3 => lc_trk_g2_3 wire_con_box/lc_3/in_0 (29 7) Enable bit of Mux _con_box/lcb0_3 => lc_trk_g2_5 wire_con_box/lc_3/in_0 (29 7) Enable bit of Mux _con_box/lcb0_3 => lc_trk_g2_7 wire_con_box/lc_3/in_0 (29 7) Enable bit of Mux _con_box/lcb0_3 => lc_trk_g3_0 wire_con_box/lc_3/in_0 (29 7) Enable bit of Mux _con_box/lcb0_3 => lc_trk_g3_2 wire_con_box/lc_3/in_0 (29 7) Enable bit of Mux _con_box/lcb0_3 => lc_trk_g3_4 wire_con_box/lc_3/in_0 (29 7) Enable bit of Mux _con_box/lcb0_3 => lc_trk_g3_6 wire_con_box/lc_3/in_0 (29 8) Enable bit of Mux _con_box/lcb1_4 => lc_trk_g0_1 wire_con_box/lc_4/in_1 (29 8) Enable bit of Mux _con_box/lcb1_4 => lc_trk_g0_3 wire_con_box/lc_4/in_1 (29 8) Enable bit of Mux _con_box/lcb1_4 => lc_trk_g0_5 wire_con_box/lc_4/in_1 (29 8) Enable bit of Mux _con_box/lcb1_4 => lc_trk_g0_7 wire_con_box/lc_4/in_1 (29 8) Enable bit of Mux _con_box/lcb1_4 => lc_trk_g1_0 wire_con_box/lc_4/in_1 (29 8) Enable bit of Mux _con_box/lcb1_4 => lc_trk_g1_2 wire_con_box/lc_4/in_1 (29 8) Enable bit of Mux _con_box/lcb1_4 => lc_trk_g1_4 wire_con_box/lc_4/in_1 (29 8) Enable bit of Mux _con_box/lcb1_4 => lc_trk_g1_6 wire_con_box/lc_4/in_1 (29 8) Enable bit of Mux _con_box/lcb1_4 => lc_trk_g2_1 wire_con_box/lc_4/in_1 (29 8) Enable bit of Mux _con_box/lcb1_4 => lc_trk_g2_3 wire_con_box/lc_4/in_1 (29 8) Enable bit of Mux _con_box/lcb1_4 => lc_trk_g2_5 wire_con_box/lc_4/in_1 (29 8) Enable bit of Mux _con_box/lcb1_4 => lc_trk_g2_7 wire_con_box/lc_4/in_1 (29 8) Enable bit of Mux _con_box/lcb1_4 => lc_trk_g3_0 wire_con_box/lc_4/in_1 (29 8) Enable bit of Mux _con_box/lcb1_4 => lc_trk_g3_2 wire_con_box/lc_4/in_1 (29 8) Enable bit of Mux _con_box/lcb1_4 => lc_trk_g3_4 wire_con_box/lc_4/in_1 (29 8) Enable bit of Mux _con_box/lcb1_4 => lc_trk_g3_6 wire_con_box/lc_4/in_1 (29 9) Enable bit of Mux _con_box/lcb0_4 => lc_trk_g0_0 wire_con_box/lc_4/in_0 (29 9) Enable bit of Mux _con_box/lcb0_4 => lc_trk_g0_2 wire_con_box/lc_4/in_0 (29 9) Enable bit of Mux _con_box/lcb0_4 => lc_trk_g0_4 wire_con_box/lc_4/in_0 (29 9) Enable bit of Mux _con_box/lcb0_4 => lc_trk_g0_6 wire_con_box/lc_4/in_0 (29 9) Enable bit of Mux _con_box/lcb0_4 => lc_trk_g1_1 wire_con_box/lc_4/in_0 (29 9) Enable bit of Mux _con_box/lcb0_4 => lc_trk_g1_3 wire_con_box/lc_4/in_0 (29 9) Enable bit of Mux _con_box/lcb0_4 => lc_trk_g1_5 wire_con_box/lc_4/in_0 (29 9) Enable bit of Mux _con_box/lcb0_4 => lc_trk_g1_7 wire_con_box/lc_4/in_0 (29 9) Enable bit of Mux _con_box/lcb0_4 => lc_trk_g2_0 wire_con_box/lc_4/in_0 (29 9) Enable bit of Mux _con_box/lcb0_4 => lc_trk_g2_2 wire_con_box/lc_4/in_0 (29 9) Enable bit of Mux _con_box/lcb0_4 => lc_trk_g2_4 wire_con_box/lc_4/in_0 (29 9) Enable bit of Mux _con_box/lcb0_4 => lc_trk_g2_6 wire_con_box/lc_4/in_0 (29 9) Enable bit of Mux _con_box/lcb0_4 => lc_trk_g3_1 wire_con_box/lc_4/in_0 (29 9) Enable bit of Mux _con_box/lcb0_4 => lc_trk_g3_3 wire_con_box/lc_4/in_0 (29 9) Enable bit of Mux _con_box/lcb0_4 => lc_trk_g3_5 wire_con_box/lc_4/in_0 (29 9) Enable bit of Mux _con_box/lcb0_4 => lc_trk_g3_7 wire_con_box/lc_4/in_0 (3 0) routing sp12_h_r_0 <X> sp12_v_b_0 (3 0) routing sp12_v_t_23 <X> sp12_v_b_0 (3 1) routing sp12_h_l_23 <X> sp12_v_b_0 (3 1) routing sp12_h_r_0 <X> sp12_v_b_0 (3 10) routing sp12_v_t_22 <X> sp12_h_l_22 (3 11) routing sp12_v_b_1 <X> sp12_h_l_22 (3 12) routing sp12_v_b_1 <X> sp12_h_r_1 (3 12) routing sp12_v_t_22 <X> sp12_h_r_1 (3 13) routing sp12_h_l_22 <X> sp12_h_r_1 (3 13) routing sp12_v_b_1 <X> sp12_h_r_1 (3 14) routing sp12_h_r_1 <X> sp12_v_t_22 (3 14) routing sp12_v_b_1 <X> sp12_v_t_22 (3 15) routing sp12_h_l_22 <X> sp12_v_t_22 (3 15) routing sp12_h_r_1 <X> sp12_v_t_22 (3 2) routing sp12_h_r_0 <X> sp12_h_l_23 (3 2) routing sp12_v_t_23 <X> sp12_h_l_23 (3 3) routing sp12_h_r_0 <X> sp12_h_l_23 (3 3) routing sp12_v_b_0 <X> sp12_h_l_23 (3 4) routing sp12_v_b_0 <X> sp12_h_r_0 (3 4) routing sp12_v_t_23 <X> sp12_h_r_0 (3 5) routing sp12_h_l_23 <X> sp12_h_r_0 (3 5) routing sp12_v_b_0 <X> sp12_h_r_0 (3 6) routing sp12_h_r_0 <X> sp12_v_t_23 (3 6) routing sp12_v_b_0 <X> sp12_v_t_23 (3 7) routing sp12_h_l_23 <X> sp12_v_t_23 (3 7) routing sp12_h_r_0 <X> sp12_v_t_23 (3 8) routing sp12_h_r_1 <X> sp12_v_b_1 (3 8) routing sp12_v_t_22 <X> sp12_v_b_1 (3 9) routing sp12_h_l_22 <X> sp12_v_b_1 (3 9) routing sp12_h_r_1 <X> sp12_v_b_1 (30 0) routing lc_trk_g0_5 <X> wire_con_box/lc_0/in_1 (30 0) routing lc_trk_g0_7 <X> wire_con_box/lc_0/in_1 (30 0) routing lc_trk_g1_4 <X> wire_con_box/lc_0/in_1 (30 0) routing lc_trk_g1_6 <X> wire_con_box/lc_0/in_1 (30 0) routing lc_trk_g2_5 <X> wire_con_box/lc_0/in_1 (30 0) routing lc_trk_g2_7 <X> wire_con_box/lc_0/in_1 (30 0) routing lc_trk_g3_4 <X> wire_con_box/lc_0/in_1 (30 0) routing lc_trk_g3_6 <X> wire_con_box/lc_0/in_1 (30 1) routing lc_trk_g0_3 <X> wire_con_box/lc_0/in_1 (30 1) routing lc_trk_g0_7 <X> wire_con_box/lc_0/in_1 (30 1) routing lc_trk_g1_2 <X> wire_con_box/lc_0/in_1 (30 1) routing lc_trk_g1_6 <X> wire_con_box/lc_0/in_1 (30 1) routing lc_trk_g2_3 <X> wire_con_box/lc_0/in_1 (30 1) routing lc_trk_g2_7 <X> wire_con_box/lc_0/in_1 (30 1) routing lc_trk_g3_2 <X> wire_con_box/lc_0/in_1 (30 1) routing lc_trk_g3_6 <X> wire_con_box/lc_0/in_1 (30 10) routing lc_trk_g0_4 <X> wire_con_box/lc_5/in_1 (30 10) routing lc_trk_g0_6 <X> wire_con_box/lc_5/in_1 (30 10) routing lc_trk_g1_5 <X> wire_con_box/lc_5/in_1 (30 10) routing lc_trk_g1_7 <X> wire_con_box/lc_5/in_1 (30 10) routing lc_trk_g2_4 <X> wire_con_box/lc_5/in_1 (30 10) routing lc_trk_g2_6 <X> wire_con_box/lc_5/in_1 (30 10) routing lc_trk_g3_5 <X> wire_con_box/lc_5/in_1 (30 10) routing lc_trk_g3_7 <X> wire_con_box/lc_5/in_1 (30 11) routing lc_trk_g0_2 <X> wire_con_box/lc_5/in_1 (30 11) routing lc_trk_g0_6 <X> wire_con_box/lc_5/in_1 (30 11) routing lc_trk_g1_3 <X> wire_con_box/lc_5/in_1 (30 11) routing lc_trk_g1_7 <X> wire_con_box/lc_5/in_1 (30 11) routing lc_trk_g2_2 <X> wire_con_box/lc_5/in_1 (30 11) routing lc_trk_g2_6 <X> wire_con_box/lc_5/in_1 (30 11) routing lc_trk_g3_3 <X> wire_con_box/lc_5/in_1 (30 11) routing lc_trk_g3_7 <X> wire_con_box/lc_5/in_1 (30 12) routing lc_trk_g0_5 <X> wire_con_box/lc_6/in_1 (30 12) routing lc_trk_g0_7 <X> wire_con_box/lc_6/in_1 (30 12) routing lc_trk_g1_4 <X> wire_con_box/lc_6/in_1 (30 12) routing lc_trk_g1_6 <X> wire_con_box/lc_6/in_1 (30 12) routing lc_trk_g2_5 <X> wire_con_box/lc_6/in_1 (30 12) routing lc_trk_g2_7 <X> wire_con_box/lc_6/in_1 (30 12) routing lc_trk_g3_4 <X> wire_con_box/lc_6/in_1 (30 12) routing lc_trk_g3_6 <X> wire_con_box/lc_6/in_1 (30 13) routing lc_trk_g0_3 <X> wire_con_box/lc_6/in_1 (30 13) routing lc_trk_g0_7 <X> wire_con_box/lc_6/in_1 (30 13) routing lc_trk_g1_2 <X> wire_con_box/lc_6/in_1 (30 13) routing lc_trk_g1_6 <X> wire_con_box/lc_6/in_1 (30 13) routing lc_trk_g2_3 <X> wire_con_box/lc_6/in_1 (30 13) routing lc_trk_g2_7 <X> wire_con_box/lc_6/in_1 (30 13) routing lc_trk_g3_2 <X> wire_con_box/lc_6/in_1 (30 13) routing lc_trk_g3_6 <X> wire_con_box/lc_6/in_1 (30 14) routing lc_trk_g0_4 <X> wire_con_box/lc_7/in_1 (30 14) routing lc_trk_g0_6 <X> wire_con_box/lc_7/in_1 (30 14) routing lc_trk_g1_5 <X> wire_con_box/lc_7/in_1 (30 14) routing lc_trk_g1_7 <X> wire_con_box/lc_7/in_1 (30 14) routing lc_trk_g2_4 <X> wire_con_box/lc_7/in_1 (30 14) routing lc_trk_g2_6 <X> wire_con_box/lc_7/in_1 (30 14) routing lc_trk_g3_5 <X> wire_con_box/lc_7/in_1 (30 14) routing lc_trk_g3_7 <X> wire_con_box/lc_7/in_1 (30 15) routing lc_trk_g0_2 <X> wire_con_box/lc_7/in_1 (30 15) routing lc_trk_g0_6 <X> wire_con_box/lc_7/in_1 (30 15) routing lc_trk_g1_3 <X> wire_con_box/lc_7/in_1 (30 15) routing lc_trk_g1_7 <X> wire_con_box/lc_7/in_1 (30 15) routing lc_trk_g2_2 <X> wire_con_box/lc_7/in_1 (30 15) routing lc_trk_g2_6 <X> wire_con_box/lc_7/in_1 (30 15) routing lc_trk_g3_3 <X> wire_con_box/lc_7/in_1 (30 15) routing lc_trk_g3_7 <X> wire_con_box/lc_7/in_1 (30 2) routing lc_trk_g0_4 <X> wire_con_box/lc_1/in_1 (30 2) routing lc_trk_g0_6 <X> wire_con_box/lc_1/in_1 (30 2) routing lc_trk_g1_5 <X> wire_con_box/lc_1/in_1 (30 2) routing lc_trk_g1_7 <X> wire_con_box/lc_1/in_1 (30 2) routing lc_trk_g2_4 <X> wire_con_box/lc_1/in_1 (30 2) routing lc_trk_g2_6 <X> wire_con_box/lc_1/in_1 (30 2) routing lc_trk_g3_5 <X> wire_con_box/lc_1/in_1 (30 2) routing lc_trk_g3_7 <X> wire_con_box/lc_1/in_1 (30 3) routing lc_trk_g0_2 <X> wire_con_box/lc_1/in_1 (30 3) routing lc_trk_g0_6 <X> wire_con_box/lc_1/in_1 (30 3) routing lc_trk_g1_3 <X> wire_con_box/lc_1/in_1 (30 3) routing lc_trk_g1_7 <X> wire_con_box/lc_1/in_1 (30 3) routing lc_trk_g2_2 <X> wire_con_box/lc_1/in_1 (30 3) routing lc_trk_g2_6 <X> wire_con_box/lc_1/in_1 (30 3) routing lc_trk_g3_3 <X> wire_con_box/lc_1/in_1 (30 3) routing lc_trk_g3_7 <X> wire_con_box/lc_1/in_1 (30 4) routing lc_trk_g0_5 <X> wire_con_box/lc_2/in_1 (30 4) routing lc_trk_g0_7 <X> wire_con_box/lc_2/in_1 (30 4) routing lc_trk_g1_4 <X> wire_con_box/lc_2/in_1 (30 4) routing lc_trk_g1_6 <X> wire_con_box/lc_2/in_1 (30 4) routing lc_trk_g2_5 <X> wire_con_box/lc_2/in_1 (30 4) routing lc_trk_g2_7 <X> wire_con_box/lc_2/in_1 (30 4) routing lc_trk_g3_4 <X> wire_con_box/lc_2/in_1 (30 4) routing lc_trk_g3_6 <X> wire_con_box/lc_2/in_1 (30 5) routing lc_trk_g0_3 <X> wire_con_box/lc_2/in_1 (30 5) routing lc_trk_g0_7 <X> wire_con_box/lc_2/in_1 (30 5) routing lc_trk_g1_2 <X> wire_con_box/lc_2/in_1 (30 5) routing lc_trk_g1_6 <X> wire_con_box/lc_2/in_1 (30 5) routing lc_trk_g2_3 <X> wire_con_box/lc_2/in_1 (30 5) routing lc_trk_g2_7 <X> wire_con_box/lc_2/in_1 (30 5) routing lc_trk_g3_2 <X> wire_con_box/lc_2/in_1 (30 5) routing lc_trk_g3_6 <X> wire_con_box/lc_2/in_1 (30 6) routing lc_trk_g0_4 <X> wire_con_box/lc_3/in_1 (30 6) routing lc_trk_g0_6 <X> wire_con_box/lc_3/in_1 (30 6) routing lc_trk_g1_5 <X> wire_con_box/lc_3/in_1 (30 6) routing lc_trk_g1_7 <X> wire_con_box/lc_3/in_1 (30 6) routing lc_trk_g2_4 <X> wire_con_box/lc_3/in_1 (30 6) routing lc_trk_g2_6 <X> wire_con_box/lc_3/in_1 (30 6) routing lc_trk_g3_5 <X> wire_con_box/lc_3/in_1 (30 6) routing lc_trk_g3_7 <X> wire_con_box/lc_3/in_1 (30 7) routing lc_trk_g0_2 <X> wire_con_box/lc_3/in_1 (30 7) routing lc_trk_g0_6 <X> wire_con_box/lc_3/in_1 (30 7) routing lc_trk_g1_3 <X> wire_con_box/lc_3/in_1 (30 7) routing lc_trk_g1_7 <X> wire_con_box/lc_3/in_1 (30 7) routing lc_trk_g2_2 <X> wire_con_box/lc_3/in_1 (30 7) routing lc_trk_g2_6 <X> wire_con_box/lc_3/in_1 (30 7) routing lc_trk_g3_3 <X> wire_con_box/lc_3/in_1 (30 7) routing lc_trk_g3_7 <X> wire_con_box/lc_3/in_1 (30 8) routing lc_trk_g0_5 <X> wire_con_box/lc_4/in_1 (30 8) routing lc_trk_g0_7 <X> wire_con_box/lc_4/in_1 (30 8) routing lc_trk_g1_4 <X> wire_con_box/lc_4/in_1 (30 8) routing lc_trk_g1_6 <X> wire_con_box/lc_4/in_1 (30 8) routing lc_trk_g2_5 <X> wire_con_box/lc_4/in_1 (30 8) routing lc_trk_g2_7 <X> wire_con_box/lc_4/in_1 (30 8) routing lc_trk_g3_4 <X> wire_con_box/lc_4/in_1 (30 8) routing lc_trk_g3_6 <X> wire_con_box/lc_4/in_1 (30 9) routing lc_trk_g0_3 <X> wire_con_box/lc_4/in_1 (30 9) routing lc_trk_g0_7 <X> wire_con_box/lc_4/in_1 (30 9) routing lc_trk_g1_2 <X> wire_con_box/lc_4/in_1 (30 9) routing lc_trk_g1_6 <X> wire_con_box/lc_4/in_1 (30 9) routing lc_trk_g2_3 <X> wire_con_box/lc_4/in_1 (30 9) routing lc_trk_g2_7 <X> wire_con_box/lc_4/in_1 (30 9) routing lc_trk_g3_2 <X> wire_con_box/lc_4/in_1 (30 9) routing lc_trk_g3_6 <X> wire_con_box/lc_4/in_1 (31 0) routing lc_trk_g0_5 <X> wire_con_box/lc_0/in_3 (31 0) routing lc_trk_g0_7 <X> wire_con_box/lc_0/in_3 (31 0) routing lc_trk_g1_4 <X> wire_con_box/lc_0/in_3 (31 0) routing lc_trk_g1_6 <X> wire_con_box/lc_0/in_3 (31 0) routing lc_trk_g2_5 <X> wire_con_box/lc_0/in_3 (31 0) routing lc_trk_g2_7 <X> wire_con_box/lc_0/in_3 (31 0) routing lc_trk_g3_4 <X> wire_con_box/lc_0/in_3 (31 0) routing lc_trk_g3_6 <X> wire_con_box/lc_0/in_3 (31 1) routing lc_trk_g0_3 <X> wire_con_box/lc_0/in_3 (31 1) routing lc_trk_g0_7 <X> wire_con_box/lc_0/in_3 (31 1) routing lc_trk_g1_2 <X> wire_con_box/lc_0/in_3 (31 1) routing lc_trk_g1_6 <X> wire_con_box/lc_0/in_3 (31 1) routing lc_trk_g2_3 <X> wire_con_box/lc_0/in_3 (31 1) routing lc_trk_g2_7 <X> wire_con_box/lc_0/in_3 (31 1) routing lc_trk_g3_2 <X> wire_con_box/lc_0/in_3 (31 1) routing lc_trk_g3_6 <X> wire_con_box/lc_0/in_3 (31 10) routing lc_trk_g0_4 <X> wire_con_box/lc_5/in_3 (31 10) routing lc_trk_g0_6 <X> wire_con_box/lc_5/in_3 (31 10) routing lc_trk_g1_5 <X> wire_con_box/lc_5/in_3 (31 10) routing lc_trk_g1_7 <X> wire_con_box/lc_5/in_3 (31 10) routing lc_trk_g2_4 <X> wire_con_box/lc_5/in_3 (31 10) routing lc_trk_g2_6 <X> wire_con_box/lc_5/in_3 (31 10) routing lc_trk_g3_5 <X> wire_con_box/lc_5/in_3 (31 10) routing lc_trk_g3_7 <X> wire_con_box/lc_5/in_3 (31 11) routing lc_trk_g0_2 <X> wire_con_box/lc_5/in_3 (31 11) routing lc_trk_g0_6 <X> wire_con_box/lc_5/in_3 (31 11) routing lc_trk_g1_3 <X> wire_con_box/lc_5/in_3 (31 11) routing lc_trk_g1_7 <X> wire_con_box/lc_5/in_3 (31 11) routing lc_trk_g2_2 <X> wire_con_box/lc_5/in_3 (31 11) routing lc_trk_g2_6 <X> wire_con_box/lc_5/in_3 (31 11) routing lc_trk_g3_3 <X> wire_con_box/lc_5/in_3 (31 11) routing lc_trk_g3_7 <X> wire_con_box/lc_5/in_3 (31 12) routing lc_trk_g0_5 <X> wire_con_box/lc_6/in_3 (31 12) routing lc_trk_g0_7 <X> wire_con_box/lc_6/in_3 (31 12) routing lc_trk_g1_4 <X> wire_con_box/lc_6/in_3 (31 12) routing lc_trk_g1_6 <X> wire_con_box/lc_6/in_3 (31 12) routing lc_trk_g2_5 <X> wire_con_box/lc_6/in_3 (31 12) routing lc_trk_g2_7 <X> wire_con_box/lc_6/in_3 (31 12) routing lc_trk_g3_4 <X> wire_con_box/lc_6/in_3 (31 12) routing lc_trk_g3_6 <X> wire_con_box/lc_6/in_3 (31 13) routing lc_trk_g0_3 <X> wire_con_box/lc_6/in_3 (31 13) routing lc_trk_g0_7 <X> wire_con_box/lc_6/in_3 (31 13) routing lc_trk_g1_2 <X> wire_con_box/lc_6/in_3 (31 13) routing lc_trk_g1_6 <X> wire_con_box/lc_6/in_3 (31 13) routing lc_trk_g2_3 <X> wire_con_box/lc_6/in_3 (31 13) routing lc_trk_g2_7 <X> wire_con_box/lc_6/in_3 (31 13) routing lc_trk_g3_2 <X> wire_con_box/lc_6/in_3 (31 13) routing lc_trk_g3_6 <X> wire_con_box/lc_6/in_3 (31 14) routing lc_trk_g0_4 <X> wire_con_box/lc_7/in_3 (31 14) routing lc_trk_g0_6 <X> wire_con_box/lc_7/in_3 (31 14) routing lc_trk_g1_5 <X> wire_con_box/lc_7/in_3 (31 14) routing lc_trk_g1_7 <X> wire_con_box/lc_7/in_3 (31 14) routing lc_trk_g2_4 <X> wire_con_box/lc_7/in_3 (31 14) routing lc_trk_g2_6 <X> wire_con_box/lc_7/in_3 (31 14) routing lc_trk_g3_5 <X> wire_con_box/lc_7/in_3 (31 14) routing lc_trk_g3_7 <X> wire_con_box/lc_7/in_3 (31 15) routing lc_trk_g0_2 <X> wire_con_box/lc_7/in_3 (31 15) routing lc_trk_g0_6 <X> wire_con_box/lc_7/in_3 (31 15) routing lc_trk_g1_3 <X> wire_con_box/lc_7/in_3 (31 15) routing lc_trk_g1_7 <X> wire_con_box/lc_7/in_3 (31 15) routing lc_trk_g2_2 <X> wire_con_box/lc_7/in_3 (31 15) routing lc_trk_g2_6 <X> wire_con_box/lc_7/in_3 (31 15) routing lc_trk_g3_3 <X> wire_con_box/lc_7/in_3 (31 15) routing lc_trk_g3_7 <X> wire_con_box/lc_7/in_3 (31 2) routing lc_trk_g0_4 <X> wire_con_box/lc_1/in_3 (31 2) routing lc_trk_g0_6 <X> wire_con_box/lc_1/in_3 (31 2) routing lc_trk_g1_5 <X> wire_con_box/lc_1/in_3 (31 2) routing lc_trk_g1_7 <X> wire_con_box/lc_1/in_3 (31 2) routing lc_trk_g2_4 <X> wire_con_box/lc_1/in_3 (31 2) routing lc_trk_g2_6 <X> wire_con_box/lc_1/in_3 (31 2) routing lc_trk_g3_5 <X> wire_con_box/lc_1/in_3 (31 2) routing lc_trk_g3_7 <X> wire_con_box/lc_1/in_3 (31 3) routing lc_trk_g0_2 <X> wire_con_box/lc_1/in_3 (31 3) routing lc_trk_g0_6 <X> wire_con_box/lc_1/in_3 (31 3) routing lc_trk_g1_3 <X> wire_con_box/lc_1/in_3 (31 3) routing lc_trk_g1_7 <X> wire_con_box/lc_1/in_3 (31 3) routing lc_trk_g2_2 <X> wire_con_box/lc_1/in_3 (31 3) routing lc_trk_g2_6 <X> wire_con_box/lc_1/in_3 (31 3) routing lc_trk_g3_3 <X> wire_con_box/lc_1/in_3 (31 3) routing lc_trk_g3_7 <X> wire_con_box/lc_1/in_3 (31 4) routing lc_trk_g0_5 <X> wire_con_box/lc_2/in_3 (31 4) routing lc_trk_g0_7 <X> wire_con_box/lc_2/in_3 (31 4) routing lc_trk_g1_4 <X> wire_con_box/lc_2/in_3 (31 4) routing lc_trk_g1_6 <X> wire_con_box/lc_2/in_3 (31 4) routing lc_trk_g2_5 <X> wire_con_box/lc_2/in_3 (31 4) routing lc_trk_g2_7 <X> wire_con_box/lc_2/in_3 (31 4) routing lc_trk_g3_4 <X> wire_con_box/lc_2/in_3 (31 4) routing lc_trk_g3_6 <X> wire_con_box/lc_2/in_3 (31 5) routing lc_trk_g0_3 <X> wire_con_box/lc_2/in_3 (31 5) routing lc_trk_g0_7 <X> wire_con_box/lc_2/in_3 (31 5) routing lc_trk_g1_2 <X> wire_con_box/lc_2/in_3 (31 5) routing lc_trk_g1_6 <X> wire_con_box/lc_2/in_3 (31 5) routing lc_trk_g2_3 <X> wire_con_box/lc_2/in_3 (31 5) routing lc_trk_g2_7 <X> wire_con_box/lc_2/in_3 (31 5) routing lc_trk_g3_2 <X> wire_con_box/lc_2/in_3 (31 5) routing lc_trk_g3_6 <X> wire_con_box/lc_2/in_3 (31 6) routing lc_trk_g0_4 <X> wire_con_box/lc_3/in_3 (31 6) routing lc_trk_g0_6 <X> wire_con_box/lc_3/in_3 (31 6) routing lc_trk_g1_5 <X> wire_con_box/lc_3/in_3 (31 6) routing lc_trk_g1_7 <X> wire_con_box/lc_3/in_3 (31 6) routing lc_trk_g2_4 <X> wire_con_box/lc_3/in_3 (31 6) routing lc_trk_g2_6 <X> wire_con_box/lc_3/in_3 (31 6) routing lc_trk_g3_5 <X> wire_con_box/lc_3/in_3 (31 6) routing lc_trk_g3_7 <X> wire_con_box/lc_3/in_3 (31 7) routing lc_trk_g0_2 <X> wire_con_box/lc_3/in_3 (31 7) routing lc_trk_g0_6 <X> wire_con_box/lc_3/in_3 (31 7) routing lc_trk_g1_3 <X> wire_con_box/lc_3/in_3 (31 7) routing lc_trk_g1_7 <X> wire_con_box/lc_3/in_3 (31 7) routing lc_trk_g2_2 <X> wire_con_box/lc_3/in_3 (31 7) routing lc_trk_g2_6 <X> wire_con_box/lc_3/in_3 (31 7) routing lc_trk_g3_3 <X> wire_con_box/lc_3/in_3 (31 7) routing lc_trk_g3_7 <X> wire_con_box/lc_3/in_3 (31 8) routing lc_trk_g0_5 <X> wire_con_box/lc_4/in_3 (31 8) routing lc_trk_g0_7 <X> wire_con_box/lc_4/in_3 (31 8) routing lc_trk_g1_4 <X> wire_con_box/lc_4/in_3 (31 8) routing lc_trk_g1_6 <X> wire_con_box/lc_4/in_3 (31 8) routing lc_trk_g2_5 <X> wire_con_box/lc_4/in_3 (31 8) routing lc_trk_g2_7 <X> wire_con_box/lc_4/in_3 (31 8) routing lc_trk_g3_4 <X> wire_con_box/lc_4/in_3 (31 8) routing lc_trk_g3_6 <X> wire_con_box/lc_4/in_3 (31 9) routing lc_trk_g0_3 <X> wire_con_box/lc_4/in_3 (31 9) routing lc_trk_g0_7 <X> wire_con_box/lc_4/in_3 (31 9) routing lc_trk_g1_2 <X> wire_con_box/lc_4/in_3 (31 9) routing lc_trk_g1_6 <X> wire_con_box/lc_4/in_3 (31 9) routing lc_trk_g2_3 <X> wire_con_box/lc_4/in_3 (31 9) routing lc_trk_g2_7 <X> wire_con_box/lc_4/in_3 (31 9) routing lc_trk_g3_2 <X> wire_con_box/lc_4/in_3 (31 9) routing lc_trk_g3_6 <X> wire_con_box/lc_4/in_3 (32 0) Enable bit of Mux _con_box/lcb3_0 => lc_trk_g0_3 wire_con_box/lc_0/in_3 (32 0) Enable bit of Mux _con_box/lcb3_0 => lc_trk_g0_5 wire_con_box/lc_0/in_3 (32 0) Enable bit of Mux _con_box/lcb3_0 => lc_trk_g0_7 wire_con_box/lc_0/in_3 (32 0) Enable bit of Mux _con_box/lcb3_0 => lc_trk_g1_0 wire_con_box/lc_0/in_3 (32 0) Enable bit of Mux _con_box/lcb3_0 => lc_trk_g1_2 wire_con_box/lc_0/in_3 (32 0) Enable bit of Mux _con_box/lcb3_0 => lc_trk_g1_4 wire_con_box/lc_0/in_3 (32 0) Enable bit of Mux _con_box/lcb3_0 => lc_trk_g1_6 wire_con_box/lc_0/in_3 (32 0) Enable bit of Mux _con_box/lcb3_0 => lc_trk_g2_1 wire_con_box/lc_0/in_3 (32 0) Enable bit of Mux _con_box/lcb3_0 => lc_trk_g2_3 wire_con_box/lc_0/in_3 (32 0) Enable bit of Mux _con_box/lcb3_0 => lc_trk_g2_5 wire_con_box/lc_0/in_3 (32 0) Enable bit of Mux _con_box/lcb3_0 => lc_trk_g2_7 wire_con_box/lc_0/in_3 (32 0) Enable bit of Mux _con_box/lcb3_0 => lc_trk_g3_0 wire_con_box/lc_0/in_3 (32 0) Enable bit of Mux _con_box/lcb3_0 => lc_trk_g3_2 wire_con_box/lc_0/in_3 (32 0) Enable bit of Mux _con_box/lcb3_0 => lc_trk_g3_4 wire_con_box/lc_0/in_3 (32 0) Enable bit of Mux _con_box/lcb3_0 => lc_trk_g3_6 wire_con_box/lc_0/in_3 (32 10) Enable bit of Mux _con_box/lcb3_5 => lc_trk_g0_2 wire_con_box/lc_5/in_3 (32 10) Enable bit of Mux _con_box/lcb3_5 => lc_trk_g0_4 wire_con_box/lc_5/in_3 (32 10) Enable bit of Mux _con_box/lcb3_5 => lc_trk_g0_6 wire_con_box/lc_5/in_3 (32 10) Enable bit of Mux _con_box/lcb3_5 => lc_trk_g1_1 wire_con_box/lc_5/in_3 (32 10) Enable bit of Mux _con_box/lcb3_5 => lc_trk_g1_3 wire_con_box/lc_5/in_3 (32 10) Enable bit of Mux _con_box/lcb3_5 => lc_trk_g1_5 wire_con_box/lc_5/in_3 (32 10) Enable bit of Mux _con_box/lcb3_5 => lc_trk_g1_7 wire_con_box/lc_5/in_3 (32 10) Enable bit of Mux _con_box/lcb3_5 => lc_trk_g2_0 wire_con_box/lc_5/in_3 (32 10) Enable bit of Mux _con_box/lcb3_5 => lc_trk_g2_2 wire_con_box/lc_5/in_3 (32 10) Enable bit of Mux _con_box/lcb3_5 => lc_trk_g2_4 wire_con_box/lc_5/in_3 (32 10) Enable bit of Mux _con_box/lcb3_5 => lc_trk_g2_6 wire_con_box/lc_5/in_3 (32 10) Enable bit of Mux _con_box/lcb3_5 => lc_trk_g3_1 wire_con_box/lc_5/in_3 (32 10) Enable bit of Mux _con_box/lcb3_5 => lc_trk_g3_3 wire_con_box/lc_5/in_3 (32 10) Enable bit of Mux _con_box/lcb3_5 => lc_trk_g3_5 wire_con_box/lc_5/in_3 (32 10) Enable bit of Mux _con_box/lcb3_5 => lc_trk_g3_7 wire_con_box/lc_5/in_3 (32 12) Enable bit of Mux _con_box/lcb3_6 => lc_trk_g0_3 wire_con_box/lc_6/in_3 (32 12) Enable bit of Mux _con_box/lcb3_6 => lc_trk_g0_5 wire_con_box/lc_6/in_3 (32 12) Enable bit of Mux _con_box/lcb3_6 => lc_trk_g0_7 wire_con_box/lc_6/in_3 (32 12) Enable bit of Mux _con_box/lcb3_6 => lc_trk_g1_0 wire_con_box/lc_6/in_3 (32 12) Enable bit of Mux _con_box/lcb3_6 => lc_trk_g1_2 wire_con_box/lc_6/in_3 (32 12) Enable bit of Mux _con_box/lcb3_6 => lc_trk_g1_4 wire_con_box/lc_6/in_3 (32 12) Enable bit of Mux _con_box/lcb3_6 => lc_trk_g1_6 wire_con_box/lc_6/in_3 (32 12) Enable bit of Mux _con_box/lcb3_6 => lc_trk_g2_1 wire_con_box/lc_6/in_3 (32 12) Enable bit of Mux _con_box/lcb3_6 => lc_trk_g2_3 wire_con_box/lc_6/in_3 (32 12) Enable bit of Mux _con_box/lcb3_6 => lc_trk_g2_5 wire_con_box/lc_6/in_3 (32 12) Enable bit of Mux _con_box/lcb3_6 => lc_trk_g2_7 wire_con_box/lc_6/in_3 (32 12) Enable bit of Mux _con_box/lcb3_6 => lc_trk_g3_0 wire_con_box/lc_6/in_3 (32 12) Enable bit of Mux _con_box/lcb3_6 => lc_trk_g3_2 wire_con_box/lc_6/in_3 (32 12) Enable bit of Mux _con_box/lcb3_6 => lc_trk_g3_4 wire_con_box/lc_6/in_3 (32 12) Enable bit of Mux _con_box/lcb3_6 => lc_trk_g3_6 wire_con_box/lc_6/in_3 (32 14) Enable bit of Mux _con_box/lcb3_7 => lc_trk_g0_2 wire_con_box/lc_7/in_3 (32 14) Enable bit of Mux _con_box/lcb3_7 => lc_trk_g0_4 wire_con_box/lc_7/in_3 (32 14) Enable bit of Mux _con_box/lcb3_7 => lc_trk_g0_6 wire_con_box/lc_7/in_3 (32 14) Enable bit of Mux _con_box/lcb3_7 => lc_trk_g1_1 wire_con_box/lc_7/in_3 (32 14) Enable bit of Mux _con_box/lcb3_7 => lc_trk_g1_3 wire_con_box/lc_7/in_3 (32 14) Enable bit of Mux _con_box/lcb3_7 => lc_trk_g1_5 wire_con_box/lc_7/in_3 (32 14) Enable bit of Mux _con_box/lcb3_7 => lc_trk_g1_7 wire_con_box/lc_7/in_3 (32 14) Enable bit of Mux _con_box/lcb3_7 => lc_trk_g2_0 wire_con_box/lc_7/in_3 (32 14) Enable bit of Mux _con_box/lcb3_7 => lc_trk_g2_2 wire_con_box/lc_7/in_3 (32 14) Enable bit of Mux _con_box/lcb3_7 => lc_trk_g2_4 wire_con_box/lc_7/in_3 (32 14) Enable bit of Mux _con_box/lcb3_7 => lc_trk_g2_6 wire_con_box/lc_7/in_3 (32 14) Enable bit of Mux _con_box/lcb3_7 => lc_trk_g3_1 wire_con_box/lc_7/in_3 (32 14) Enable bit of Mux _con_box/lcb3_7 => lc_trk_g3_3 wire_con_box/lc_7/in_3 (32 14) Enable bit of Mux _con_box/lcb3_7 => lc_trk_g3_5 wire_con_box/lc_7/in_3 (32 14) Enable bit of Mux _con_box/lcb3_7 => lc_trk_g3_7 wire_con_box/lc_7/in_3 (32 2) Enable bit of Mux _con_box/lcb3_1 => lc_trk_g0_2 wire_con_box/lc_1/in_3 (32 2) Enable bit of Mux _con_box/lcb3_1 => lc_trk_g0_4 wire_con_box/lc_1/in_3 (32 2) Enable bit of Mux _con_box/lcb3_1 => lc_trk_g0_6 wire_con_box/lc_1/in_3 (32 2) Enable bit of Mux _con_box/lcb3_1 => lc_trk_g1_1 wire_con_box/lc_1/in_3 (32 2) Enable bit of Mux _con_box/lcb3_1 => lc_trk_g1_3 wire_con_box/lc_1/in_3 (32 2) Enable bit of Mux _con_box/lcb3_1 => lc_trk_g1_5 wire_con_box/lc_1/in_3 (32 2) Enable bit of Mux _con_box/lcb3_1 => lc_trk_g1_7 wire_con_box/lc_1/in_3 (32 2) Enable bit of Mux _con_box/lcb3_1 => lc_trk_g2_0 wire_con_box/lc_1/in_3 (32 2) Enable bit of Mux _con_box/lcb3_1 => lc_trk_g2_2 wire_con_box/lc_1/in_3 (32 2) Enable bit of Mux _con_box/lcb3_1 => lc_trk_g2_4 wire_con_box/lc_1/in_3 (32 2) Enable bit of Mux _con_box/lcb3_1 => lc_trk_g2_6 wire_con_box/lc_1/in_3 (32 2) Enable bit of Mux _con_box/lcb3_1 => lc_trk_g3_1 wire_con_box/lc_1/in_3 (32 2) Enable bit of Mux _con_box/lcb3_1 => lc_trk_g3_3 wire_con_box/lc_1/in_3 (32 2) Enable bit of Mux _con_box/lcb3_1 => lc_trk_g3_5 wire_con_box/lc_1/in_3 (32 2) Enable bit of Mux _con_box/lcb3_1 => lc_trk_g3_7 wire_con_box/lc_1/in_3 (32 4) Enable bit of Mux _con_box/lcb3_2 => lc_trk_g0_3 wire_con_box/lc_2/in_3 (32 4) Enable bit of Mux _con_box/lcb3_2 => lc_trk_g0_5 wire_con_box/lc_2/in_3 (32 4) Enable bit of Mux _con_box/lcb3_2 => lc_trk_g0_7 wire_con_box/lc_2/in_3 (32 4) Enable bit of Mux _con_box/lcb3_2 => lc_trk_g1_0 wire_con_box/lc_2/in_3 (32 4) Enable bit of Mux _con_box/lcb3_2 => lc_trk_g1_2 wire_con_box/lc_2/in_3 (32 4) Enable bit of Mux _con_box/lcb3_2 => lc_trk_g1_4 wire_con_box/lc_2/in_3 (32 4) Enable bit of Mux _con_box/lcb3_2 => lc_trk_g1_6 wire_con_box/lc_2/in_3 (32 4) Enable bit of Mux _con_box/lcb3_2 => lc_trk_g2_1 wire_con_box/lc_2/in_3 (32 4) Enable bit of Mux _con_box/lcb3_2 => lc_trk_g2_3 wire_con_box/lc_2/in_3 (32 4) Enable bit of Mux _con_box/lcb3_2 => lc_trk_g2_5 wire_con_box/lc_2/in_3 (32 4) Enable bit of Mux _con_box/lcb3_2 => lc_trk_g2_7 wire_con_box/lc_2/in_3 (32 4) Enable bit of Mux _con_box/lcb3_2 => lc_trk_g3_0 wire_con_box/lc_2/in_3 (32 4) Enable bit of Mux _con_box/lcb3_2 => lc_trk_g3_2 wire_con_box/lc_2/in_3 (32 4) Enable bit of Mux _con_box/lcb3_2 => lc_trk_g3_4 wire_con_box/lc_2/in_3 (32 4) Enable bit of Mux _con_box/lcb3_2 => lc_trk_g3_6 wire_con_box/lc_2/in_3 (32 6) Enable bit of Mux _con_box/lcb3_3 => lc_trk_g0_2 wire_con_box/lc_3/in_3 (32 6) Enable bit of Mux _con_box/lcb3_3 => lc_trk_g0_4 wire_con_box/lc_3/in_3 (32 6) Enable bit of Mux _con_box/lcb3_3 => lc_trk_g0_6 wire_con_box/lc_3/in_3 (32 6) Enable bit of Mux _con_box/lcb3_3 => lc_trk_g1_1 wire_con_box/lc_3/in_3 (32 6) Enable bit of Mux _con_box/lcb3_3 => lc_trk_g1_3 wire_con_box/lc_3/in_3 (32 6) Enable bit of Mux _con_box/lcb3_3 => lc_trk_g1_5 wire_con_box/lc_3/in_3 (32 6) Enable bit of Mux _con_box/lcb3_3 => lc_trk_g1_7 wire_con_box/lc_3/in_3 (32 6) Enable bit of Mux _con_box/lcb3_3 => lc_trk_g2_0 wire_con_box/lc_3/in_3 (32 6) Enable bit of Mux _con_box/lcb3_3 => lc_trk_g2_2 wire_con_box/lc_3/in_3 (32 6) Enable bit of Mux _con_box/lcb3_3 => lc_trk_g2_4 wire_con_box/lc_3/in_3 (32 6) Enable bit of Mux _con_box/lcb3_3 => lc_trk_g2_6 wire_con_box/lc_3/in_3 (32 6) Enable bit of Mux _con_box/lcb3_3 => lc_trk_g3_1 wire_con_box/lc_3/in_3 (32 6) Enable bit of Mux _con_box/lcb3_3 => lc_trk_g3_3 wire_con_box/lc_3/in_3 (32 6) Enable bit of Mux _con_box/lcb3_3 => lc_trk_g3_5 wire_con_box/lc_3/in_3 (32 6) Enable bit of Mux _con_box/lcb3_3 => lc_trk_g3_7 wire_con_box/lc_3/in_3 (32 8) Enable bit of Mux _con_box/lcb3_4 => lc_trk_g0_3 wire_con_box/lc_4/in_3 (32 8) Enable bit of Mux _con_box/lcb3_4 => lc_trk_g0_5 wire_con_box/lc_4/in_3 (32 8) Enable bit of Mux _con_box/lcb3_4 => lc_trk_g0_7 wire_con_box/lc_4/in_3 (32 8) Enable bit of Mux _con_box/lcb3_4 => lc_trk_g1_0 wire_con_box/lc_4/in_3 (32 8) Enable bit of Mux _con_box/lcb3_4 => lc_trk_g1_2 wire_con_box/lc_4/in_3 (32 8) Enable bit of Mux _con_box/lcb3_4 => lc_trk_g1_4 wire_con_box/lc_4/in_3 (32 8) Enable bit of Mux _con_box/lcb3_4 => lc_trk_g1_6 wire_con_box/lc_4/in_3 (32 8) Enable bit of Mux _con_box/lcb3_4 => lc_trk_g2_1 wire_con_box/lc_4/in_3 (32 8) Enable bit of Mux _con_box/lcb3_4 => lc_trk_g2_3 wire_con_box/lc_4/in_3 (32 8) Enable bit of Mux _con_box/lcb3_4 => lc_trk_g2_5 wire_con_box/lc_4/in_3 (32 8) Enable bit of Mux _con_box/lcb3_4 => lc_trk_g2_7 wire_con_box/lc_4/in_3 (32 8) Enable bit of Mux _con_box/lcb3_4 => lc_trk_g3_0 wire_con_box/lc_4/in_3 (32 8) Enable bit of Mux _con_box/lcb3_4 => lc_trk_g3_2 wire_con_box/lc_4/in_3 (32 8) Enable bit of Mux _con_box/lcb3_4 => lc_trk_g3_4 wire_con_box/lc_4/in_3 (32 8) Enable bit of Mux _con_box/lcb3_4 => lc_trk_g3_6 wire_con_box/lc_4/in_3 (33 0) routing lc_trk_g2_1 <X> wire_con_box/lc_0/in_3 (33 0) routing lc_trk_g2_3 <X> wire_con_box/lc_0/in_3 (33 0) routing lc_trk_g2_5 <X> wire_con_box/lc_0/in_3 (33 0) routing lc_trk_g2_7 <X> wire_con_box/lc_0/in_3 (33 0) routing lc_trk_g3_0 <X> wire_con_box/lc_0/in_3 (33 0) routing lc_trk_g3_2 <X> wire_con_box/lc_0/in_3 (33 0) routing lc_trk_g3_4 <X> wire_con_box/lc_0/in_3 (33 0) routing lc_trk_g3_6 <X> wire_con_box/lc_0/in_3 (33 10) routing lc_trk_g2_0 <X> wire_con_box/lc_5/in_3 (33 10) routing lc_trk_g2_2 <X> wire_con_box/lc_5/in_3 (33 10) routing lc_trk_g2_4 <X> wire_con_box/lc_5/in_3 (33 10) routing lc_trk_g2_6 <X> wire_con_box/lc_5/in_3 (33 10) routing lc_trk_g3_1 <X> wire_con_box/lc_5/in_3 (33 10) routing lc_trk_g3_3 <X> wire_con_box/lc_5/in_3 (33 10) routing lc_trk_g3_5 <X> wire_con_box/lc_5/in_3 (33 10) routing lc_trk_g3_7 <X> wire_con_box/lc_5/in_3 (33 12) routing lc_trk_g2_1 <X> wire_con_box/lc_6/in_3 (33 12) routing lc_trk_g2_3 <X> wire_con_box/lc_6/in_3 (33 12) routing lc_trk_g2_5 <X> wire_con_box/lc_6/in_3 (33 12) routing lc_trk_g2_7 <X> wire_con_box/lc_6/in_3 (33 12) routing lc_trk_g3_0 <X> wire_con_box/lc_6/in_3 (33 12) routing lc_trk_g3_2 <X> wire_con_box/lc_6/in_3 (33 12) routing lc_trk_g3_4 <X> wire_con_box/lc_6/in_3 (33 12) routing lc_trk_g3_6 <X> wire_con_box/lc_6/in_3 (33 14) routing lc_trk_g2_0 <X> wire_con_box/lc_7/in_3 (33 14) routing lc_trk_g2_2 <X> wire_con_box/lc_7/in_3 (33 14) routing lc_trk_g2_4 <X> wire_con_box/lc_7/in_3 (33 14) routing lc_trk_g2_6 <X> wire_con_box/lc_7/in_3 (33 14) routing lc_trk_g3_1 <X> wire_con_box/lc_7/in_3 (33 14) routing lc_trk_g3_3 <X> wire_con_box/lc_7/in_3 (33 14) routing lc_trk_g3_5 <X> wire_con_box/lc_7/in_3 (33 14) routing lc_trk_g3_7 <X> wire_con_box/lc_7/in_3 (33 2) routing lc_trk_g2_0 <X> wire_con_box/lc_1/in_3 (33 2) routing lc_trk_g2_2 <X> wire_con_box/lc_1/in_3 (33 2) routing lc_trk_g2_4 <X> wire_con_box/lc_1/in_3 (33 2) routing lc_trk_g2_6 <X> wire_con_box/lc_1/in_3 (33 2) routing lc_trk_g3_1 <X> wire_con_box/lc_1/in_3 (33 2) routing lc_trk_g3_3 <X> wire_con_box/lc_1/in_3 (33 2) routing lc_trk_g3_5 <X> wire_con_box/lc_1/in_3 (33 2) routing lc_trk_g3_7 <X> wire_con_box/lc_1/in_3 (33 4) routing lc_trk_g2_1 <X> wire_con_box/lc_2/in_3 (33 4) routing lc_trk_g2_3 <X> wire_con_box/lc_2/in_3 (33 4) routing lc_trk_g2_5 <X> wire_con_box/lc_2/in_3 (33 4) routing lc_trk_g2_7 <X> wire_con_box/lc_2/in_3 (33 4) routing lc_trk_g3_0 <X> wire_con_box/lc_2/in_3 (33 4) routing lc_trk_g3_2 <X> wire_con_box/lc_2/in_3 (33 4) routing lc_trk_g3_4 <X> wire_con_box/lc_2/in_3 (33 4) routing lc_trk_g3_6 <X> wire_con_box/lc_2/in_3 (33 6) routing lc_trk_g2_0 <X> wire_con_box/lc_3/in_3 (33 6) routing lc_trk_g2_2 <X> wire_con_box/lc_3/in_3 (33 6) routing lc_trk_g2_4 <X> wire_con_box/lc_3/in_3 (33 6) routing lc_trk_g2_6 <X> wire_con_box/lc_3/in_3 (33 6) routing lc_trk_g3_1 <X> wire_con_box/lc_3/in_3 (33 6) routing lc_trk_g3_3 <X> wire_con_box/lc_3/in_3 (33 6) routing lc_trk_g3_5 <X> wire_con_box/lc_3/in_3 (33 6) routing lc_trk_g3_7 <X> wire_con_box/lc_3/in_3 (33 8) routing lc_trk_g2_1 <X> wire_con_box/lc_4/in_3 (33 8) routing lc_trk_g2_3 <X> wire_con_box/lc_4/in_3 (33 8) routing lc_trk_g2_5 <X> wire_con_box/lc_4/in_3 (33 8) routing lc_trk_g2_7 <X> wire_con_box/lc_4/in_3 (33 8) routing lc_trk_g3_0 <X> wire_con_box/lc_4/in_3 (33 8) routing lc_trk_g3_2 <X> wire_con_box/lc_4/in_3 (33 8) routing lc_trk_g3_4 <X> wire_con_box/lc_4/in_3 (33 8) routing lc_trk_g3_6 <X> wire_con_box/lc_4/in_3 (34 0) routing lc_trk_g1_0 <X> wire_con_box/lc_0/in_3 (34 0) routing lc_trk_g1_2 <X> wire_con_box/lc_0/in_3 (34 0) routing lc_trk_g1_4 <X> wire_con_box/lc_0/in_3 (34 0) routing lc_trk_g1_6 <X> wire_con_box/lc_0/in_3 (34 0) routing lc_trk_g3_0 <X> wire_con_box/lc_0/in_3 (34 0) routing lc_trk_g3_2 <X> wire_con_box/lc_0/in_3 (34 0) routing lc_trk_g3_4 <X> wire_con_box/lc_0/in_3 (34 0) routing lc_trk_g3_6 <X> wire_con_box/lc_0/in_3 (34 10) routing lc_trk_g1_1 <X> wire_con_box/lc_5/in_3 (34 10) routing lc_trk_g1_3 <X> wire_con_box/lc_5/in_3 (34 10) routing lc_trk_g1_5 <X> wire_con_box/lc_5/in_3 (34 10) routing lc_trk_g1_7 <X> wire_con_box/lc_5/in_3 (34 10) routing lc_trk_g3_1 <X> wire_con_box/lc_5/in_3 (34 10) routing lc_trk_g3_3 <X> wire_con_box/lc_5/in_3 (34 10) routing lc_trk_g3_5 <X> wire_con_box/lc_5/in_3 (34 10) routing lc_trk_g3_7 <X> wire_con_box/lc_5/in_3 (34 12) routing lc_trk_g1_0 <X> wire_con_box/lc_6/in_3 (34 12) routing lc_trk_g1_2 <X> wire_con_box/lc_6/in_3 (34 12) routing lc_trk_g1_4 <X> wire_con_box/lc_6/in_3 (34 12) routing lc_trk_g1_6 <X> wire_con_box/lc_6/in_3 (34 12) routing lc_trk_g3_0 <X> wire_con_box/lc_6/in_3 (34 12) routing lc_trk_g3_2 <X> wire_con_box/lc_6/in_3 (34 12) routing lc_trk_g3_4 <X> wire_con_box/lc_6/in_3 (34 12) routing lc_trk_g3_6 <X> wire_con_box/lc_6/in_3 (34 14) routing lc_trk_g1_1 <X> wire_con_box/lc_7/in_3 (34 14) routing lc_trk_g1_3 <X> wire_con_box/lc_7/in_3 (34 14) routing lc_trk_g1_5 <X> wire_con_box/lc_7/in_3 (34 14) routing lc_trk_g1_7 <X> wire_con_box/lc_7/in_3 (34 14) routing lc_trk_g3_1 <X> wire_con_box/lc_7/in_3 (34 14) routing lc_trk_g3_3 <X> wire_con_box/lc_7/in_3 (34 14) routing lc_trk_g3_5 <X> wire_con_box/lc_7/in_3 (34 14) routing lc_trk_g3_7 <X> wire_con_box/lc_7/in_3 (34 2) routing lc_trk_g1_1 <X> wire_con_box/lc_1/in_3 (34 2) routing lc_trk_g1_3 <X> wire_con_box/lc_1/in_3 (34 2) routing lc_trk_g1_5 <X> wire_con_box/lc_1/in_3 (34 2) routing lc_trk_g1_7 <X> wire_con_box/lc_1/in_3 (34 2) routing lc_trk_g3_1 <X> wire_con_box/lc_1/in_3 (34 2) routing lc_trk_g3_3 <X> wire_con_box/lc_1/in_3 (34 2) routing lc_trk_g3_5 <X> wire_con_box/lc_1/in_3 (34 2) routing lc_trk_g3_7 <X> wire_con_box/lc_1/in_3 (34 4) routing lc_trk_g1_0 <X> wire_con_box/lc_2/in_3 (34 4) routing lc_trk_g1_2 <X> wire_con_box/lc_2/in_3 (34 4) routing lc_trk_g1_4 <X> wire_con_box/lc_2/in_3 (34 4) routing lc_trk_g1_6 <X> wire_con_box/lc_2/in_3 (34 4) routing lc_trk_g3_0 <X> wire_con_box/lc_2/in_3 (34 4) routing lc_trk_g3_2 <X> wire_con_box/lc_2/in_3 (34 4) routing lc_trk_g3_4 <X> wire_con_box/lc_2/in_3 (34 4) routing lc_trk_g3_6 <X> wire_con_box/lc_2/in_3 (34 6) routing lc_trk_g1_1 <X> wire_con_box/lc_3/in_3 (34 6) routing lc_trk_g1_3 <X> wire_con_box/lc_3/in_3 (34 6) routing lc_trk_g1_5 <X> wire_con_box/lc_3/in_3 (34 6) routing lc_trk_g1_7 <X> wire_con_box/lc_3/in_3 (34 6) routing lc_trk_g3_1 <X> wire_con_box/lc_3/in_3 (34 6) routing lc_trk_g3_3 <X> wire_con_box/lc_3/in_3 (34 6) routing lc_trk_g3_5 <X> wire_con_box/lc_3/in_3 (34 6) routing lc_trk_g3_7 <X> wire_con_box/lc_3/in_3 (34 8) routing lc_trk_g1_0 <X> wire_con_box/lc_4/in_3 (34 8) routing lc_trk_g1_2 <X> wire_con_box/lc_4/in_3 (34 8) routing lc_trk_g1_4 <X> wire_con_box/lc_4/in_3 (34 8) routing lc_trk_g1_6 <X> wire_con_box/lc_4/in_3 (34 8) routing lc_trk_g3_0 <X> wire_con_box/lc_4/in_3 (34 8) routing lc_trk_g3_2 <X> wire_con_box/lc_4/in_3 (34 8) routing lc_trk_g3_4 <X> wire_con_box/lc_4/in_3 (34 8) routing lc_trk_g3_6 <X> wire_con_box/lc_4/in_3 (36 0) LC_0 Logic Functioning bit (36 1) LC_0 Logic Functioning bit (36 10) LC_5 Logic Functioning bit (36 11) LC_5 Logic Functioning bit (36 12) LC_6 Logic Functioning bit (36 13) LC_6 Logic Functioning bit (36 14) LC_7 Logic Functioning bit (36 15) LC_7 Logic Functioning bit (36 2) LC_1 Logic Functioning bit (36 3) LC_1 Logic Functioning bit (36 4) LC_2 Logic Functioning bit (36 5) LC_2 Logic Functioning bit (36 6) LC_3 Logic Functioning bit (36 7) LC_3 Logic Functioning bit (36 8) LC_4 Logic Functioning bit (36 9) LC_4 Logic Functioning bit (37 0) LC_0 Logic Functioning bit (37 1) LC_0 Logic Functioning bit (37 10) LC_5 Logic Functioning bit (37 11) LC_5 Logic Functioning bit (37 12) LC_6 Logic Functioning bit (37 13) LC_6 Logic Functioning bit (37 14) LC_7 Logic Functioning bit (37 15) LC_7 Logic Functioning bit (37 2) LC_1 Logic Functioning bit (37 3) LC_1 Logic Functioning bit (37 4) LC_2 Logic Functioning bit (37 5) LC_2 Logic Functioning bit (37 6) LC_3 Logic Functioning bit (37 7) LC_3 Logic Functioning bit (37 8) LC_4 Logic Functioning bit (37 9) LC_4 Logic Functioning bit (4 0) routing sp4_h_l_37 <X> sp4_v_b_0 (4 0) routing sp4_h_l_43 <X> sp4_v_b_0 (4 0) routing sp4_v_t_37 <X> sp4_v_b_0 (4 0) routing sp4_v_t_41 <X> sp4_v_b_0 (4 1) routing sp4_h_l_41 <X> sp4_h_r_0 (4 1) routing sp4_h_l_44 <X> sp4_h_r_0 (4 1) routing sp4_v_b_6 <X> sp4_h_r_0 (4 1) routing sp4_v_t_42 <X> sp4_h_r_0 (4 10) routing sp4_h_r_0 <X> sp4_v_t_43 (4 10) routing sp4_h_r_6 <X> sp4_v_t_43 (4 10) routing sp4_v_b_10 <X> sp4_v_t_43 (4 10) routing sp4_v_b_6 <X> sp4_v_t_43 (4 11) routing sp4_h_r_10 <X> sp4_h_l_43 (4 11) routing sp4_v_b_1 <X> sp4_h_l_43 (4 11) routing sp4_v_t_37 <X> sp4_h_l_43 (4 12) routing sp4_h_l_38 <X> sp4_v_b_9 (4 12) routing sp4_h_l_44 <X> sp4_v_b_9 (4 12) routing sp4_v_t_36 <X> sp4_v_b_9 (4 12) routing sp4_v_t_44 <X> sp4_v_b_9 (4 13) routing sp4_h_l_36 <X> sp4_h_r_9 (4 13) routing sp4_h_l_43 <X> sp4_h_r_9 (4 13) routing sp4_v_b_3 <X> sp4_h_r_9 (4 13) routing sp4_v_t_41 <X> sp4_h_r_9 (4 14) routing sp4_h_r_3 <X> sp4_v_t_44 (4 14) routing sp4_h_r_9 <X> sp4_v_t_44 (4 14) routing sp4_v_b_1 <X> sp4_v_t_44 (4 14) routing sp4_v_b_9 <X> sp4_v_t_44 (4 15) routing sp4_h_r_1 <X> sp4_h_l_44 (4 15) routing sp4_v_b_4 <X> sp4_h_l_44 (4 15) routing sp4_v_t_38 <X> sp4_h_l_44 (4 2) routing sp4_h_r_0 <X> sp4_v_t_37 (4 2) routing sp4_h_r_6 <X> sp4_v_t_37 (4 2) routing sp4_v_b_0 <X> sp4_v_t_37 (4 2) routing sp4_v_b_4 <X> sp4_v_t_37 (4 3) routing sp4_h_r_4 <X> sp4_h_l_37 (4 3) routing sp4_h_r_9 <X> sp4_h_l_37 (4 3) routing sp4_v_b_7 <X> sp4_h_l_37 (4 3) routing sp4_v_t_43 <X> sp4_h_l_37 (4 4) routing sp4_h_l_38 <X> sp4_v_b_3 (4 4) routing sp4_h_l_44 <X> sp4_v_b_3 (4 4) routing sp4_v_t_38 <X> sp4_v_b_3 (4 4) routing sp4_v_t_42 <X> sp4_v_b_3 (4 5) routing sp4_h_l_37 <X> sp4_h_r_3 (4 5) routing sp4_h_l_42 <X> sp4_h_r_3 (4 5) routing sp4_v_b_9 <X> sp4_h_r_3 (4 5) routing sp4_v_t_47 <X> sp4_h_r_3 (4 6) routing sp4_h_r_3 <X> sp4_v_t_38 (4 6) routing sp4_h_r_9 <X> sp4_v_t_38 (4 6) routing sp4_v_b_3 <X> sp4_v_t_38 (4 6) routing sp4_v_b_7 <X> sp4_v_t_38 (4 7) routing sp4_h_r_0 <X> sp4_h_l_38 (4 7) routing sp4_v_b_10 <X> sp4_h_l_38 (4 7) routing sp4_v_t_44 <X> sp4_h_l_38 (4 8) routing sp4_h_l_37 <X> sp4_v_b_6 (4 8) routing sp4_h_l_43 <X> sp4_v_b_6 (4 8) routing sp4_v_t_43 <X> sp4_v_b_6 (4 8) routing sp4_v_t_47 <X> sp4_v_b_6 (4 9) routing sp4_h_l_38 <X> sp4_h_r_6 (4 9) routing sp4_h_l_47 <X> sp4_h_r_6 (4 9) routing sp4_v_b_0 <X> sp4_h_r_6 (4 9) routing sp4_v_t_36 <X> sp4_h_r_6 (42 0) LC_0 Logic Functioning bit (42 1) LC_0 Logic Functioning bit (42 10) LC_5 Logic Functioning bit (42 11) LC_5 Logic Functioning bit (42 12) LC_6 Logic Functioning bit (42 13) LC_6 Logic Functioning bit (42 14) LC_7 Logic Functioning bit (42 15) LC_7 Logic Functioning bit (42 2) LC_1 Logic Functioning bit (42 3) LC_1 Logic Functioning bit (42 4) LC_2 Logic Functioning bit (42 5) LC_2 Logic Functioning bit (42 6) LC_3 Logic Functioning bit (42 7) LC_3 Logic Functioning bit (42 8) LC_4 Logic Functioning bit (42 9) LC_4 Logic Functioning bit (43 0) LC_0 Logic Functioning bit (43 1) LC_0 Logic Functioning bit (43 10) LC_5 Logic Functioning bit (43 11) LC_5 Logic Functioning bit (43 12) LC_6 Logic Functioning bit (43 13) LC_6 Logic Functioning bit (43 14) LC_7 Logic Functioning bit (43 15) LC_7 Logic Functioning bit (43 2) LC_1 Logic Functioning bit (43 3) LC_1 Logic Functioning bit (43 4) LC_2 Logic Functioning bit (43 5) LC_2 Logic Functioning bit (43 6) LC_3 Logic Functioning bit (43 7) LC_3 Logic Functioning bit (43 8) LC_4 Logic Functioning bit (43 9) LC_4 Logic Functioning bit (46 0) Enable bit of Mux _out_links/OutMux7_0 => slf_op_0 sp4_h_r_16 (46 1) Enable bit of Mux _out_links/OutMux6_0 => slf_op_0 sp4_h_r_0 (46 10) Enable bit of Mux _out_links/OutMux7_5 => slf_op_5 sp4_h_r_26 (46 11) Enable bit of Mux _out_links/OutMux6_5 => slf_op_5 sp4_h_r_10 (46 12) Enable bit of Mux _out_links/OutMux7_6 => slf_op_6 sp4_h_r_28 (46 13) Enable bit of Mux _out_links/OutMux6_6 => slf_op_6 sp4_h_l_1 (46 14) Enable bit of Mux _out_links/OutMux7_7 => slf_op_7 sp4_h_l_19 (46 15) Enable bit of Mux _out_links/OutMux6_7 => slf_op_7 sp4_h_l_3 (46 2) Enable bit of Mux _out_links/OutMux7_1 => slf_op_1 sp4_h_l_7 (46 3) Enable bit of Mux _out_links/OutMux6_1 => slf_op_1 sp4_h_r_2 (46 4) Enable bit of Mux _out_links/OutMux7_2 => slf_op_2 sp4_h_r_20 (46 5) Enable bit of Mux _out_links/OutMux6_2 => slf_op_2 sp4_h_r_4 (46 6) Enable bit of Mux _out_links/OutMux7_3 => slf_op_3 sp4_h_l_11 (46 7) Enable bit of Mux _out_links/OutMux6_3 => slf_op_3 sp4_h_r_6 (46 8) Enable bit of Mux _out_links/OutMux7_4 => slf_op_4 sp4_h_r_24 (46 9) Enable bit of Mux _out_links/OutMux6_4 => slf_op_4 sp4_h_r_8 (47 0) Enable bit of Mux _out_links/OutMux5_0 => slf_op_0 sp12_h_l_7 (47 1) Enable bit of Mux _out_links/OutMux8_0 => slf_op_0 sp4_h_l_21 (47 10) Enable bit of Mux _out_links/OutMux4_5 => slf_op_5 sp12_h_l_1 (47 11) Enable bit of Mux _out_links/OutMux8_5 => slf_op_5 sp4_h_r_42 (47 12) Enable bit of Mux _out_links/OutMux4_6 => slf_op_6 sp12_h_r_4 (47 13) Enable bit of Mux _out_links/OutMux8_6 => slf_op_6 sp4_h_l_33 (47 14) Enable bit of Mux _out_links/OutMux4_7 => slf_op_7 sp12_h_l_5 (47 15) Enable bit of Mux _out_links/OutMux8_7 => slf_op_7 sp4_h_l_35 (47 2) Enable bit of Mux _out_links/OutMux5_1 => slf_op_1 sp12_h_l_9 (47 3) Enable bit of Mux _out_links/OutMux8_1 => slf_op_1 sp4_h_r_34 (47 4) Enable bit of Mux _out_links/OutMux5_2 => slf_op_2 sp12_h_l_11 (47 5) Enable bit of Mux _out_links/OutMux8_2 => slf_op_2 sp4_h_r_36 (47 6) Enable bit of Mux _out_links/OutMux5_3 => slf_op_3 sp12_h_r_14 (47 7) Enable bit of Mux _out_links/OutMux8_3 => slf_op_3 sp4_h_r_38 (47 8) Enable bit of Mux _out_links/OutMux4_4 => slf_op_4 sp12_h_r_0 (47 9) Enable bit of Mux _out_links/OutMux8_4 => slf_op_4 sp4_h_l_29 (48 0) Enable bit of Mux _out_links/OutMux0_0 => slf_op_0 sp4_v_b_0 (48 1) Enable bit of Mux _out_links/OutMux1_0 => slf_op_0 sp4_v_t_5 (48 10) Enable bit of Mux _out_links/OutMux5_5 => slf_op_5 sp12_h_l_17 (48 11) Enable bit of Mux _out_links/OutMux0_5 => slf_op_5 sp4_v_b_10 (48 12) Enable bit of Mux _out_links/OutMux5_6 => slf_op_6 sp12_h_r_20 (48 13) Enable bit of Mux _out_links/OutMux0_6 => slf_op_6 sp4_v_b_12 (48 14) Enable bit of Mux _out_links/OutMux5_7 => slf_op_7 sp12_h_r_22 (48 15) Enable bit of Mux _out_links/OutMux0_7 => slf_op_7 sp4_v_t_3 (48 2) Enable bit of Mux _out_links/OutMux0_1 => slf_op_1 sp4_v_b_2 (48 3) Enable bit of Mux _out_links/OutMux1_1 => slf_op_1 sp4_v_b_18 (48 4) Enable bit of Mux _out_links/OutMux0_2 => slf_op_2 sp4_v_b_4 (48 5) Enable bit of Mux _out_links/OutMux1_2 => slf_op_2 sp4_v_t_9 (48 6) Enable bit of Mux _out_links/OutMux0_3 => slf_op_3 sp4_v_b_6 (48 7) Enable bit of Mux _out_links/OutMux1_3 => slf_op_3 sp4_v_b_22 (48 8) Enable bit of Mux _out_links/OutMux5_4 => slf_op_4 sp12_h_l_15 (48 9) Enable bit of Mux _out_links/OutMux0_4 => slf_op_4 sp4_v_b_8 (5 0) routing sp4_h_l_44 <X> sp4_h_r_0 (5 0) routing sp4_v_b_0 <X> sp4_h_r_0 (5 0) routing sp4_v_b_6 <X> sp4_h_r_0 (5 0) routing sp4_v_t_37 <X> sp4_h_r_0 (5 1) routing sp4_h_l_37 <X> sp4_v_b_0 (5 1) routing sp4_h_l_43 <X> sp4_v_b_0 (5 1) routing sp4_h_r_0 <X> sp4_v_b_0 (5 1) routing sp4_v_t_44 <X> sp4_v_b_0 (5 10) routing sp4_v_b_6 <X> sp4_h_l_43 (5 10) routing sp4_v_t_37 <X> sp4_h_l_43 (5 10) routing sp4_v_t_43 <X> sp4_h_l_43 (5 11) routing sp4_h_l_43 <X> sp4_v_t_43 (5 11) routing sp4_h_r_0 <X> sp4_v_t_43 (5 11) routing sp4_h_r_6 <X> sp4_v_t_43 (5 11) routing sp4_v_b_3 <X> sp4_v_t_43 (5 12) routing sp4_h_l_43 <X> sp4_h_r_9 (5 12) routing sp4_v_b_3 <X> sp4_h_r_9 (5 12) routing sp4_v_b_9 <X> sp4_h_r_9 (5 12) routing sp4_v_t_44 <X> sp4_h_r_9 (5 13) routing sp4_h_l_38 <X> sp4_v_b_9 (5 13) routing sp4_h_l_44 <X> sp4_v_b_9 (5 13) routing sp4_h_r_9 <X> sp4_v_b_9 (5 13) routing sp4_v_t_43 <X> sp4_v_b_9 (5 14) routing sp4_v_b_9 <X> sp4_h_l_44 (5 14) routing sp4_v_t_38 <X> sp4_h_l_44 (5 14) routing sp4_v_t_44 <X> sp4_h_l_44 (5 15) routing sp4_h_l_44 <X> sp4_v_t_44 (5 15) routing sp4_h_r_3 <X> sp4_v_t_44 (5 15) routing sp4_h_r_9 <X> sp4_v_t_44 (5 15) routing sp4_v_b_6 <X> sp4_v_t_44 (5 2) routing sp4_h_r_9 <X> sp4_h_l_37 (5 2) routing sp4_v_b_0 <X> sp4_h_l_37 (5 2) routing sp4_v_t_37 <X> sp4_h_l_37 (5 2) routing sp4_v_t_43 <X> sp4_h_l_37 (5 3) routing sp4_h_l_37 <X> sp4_v_t_37 (5 3) routing sp4_h_r_0 <X> sp4_v_t_37 (5 3) routing sp4_h_r_6 <X> sp4_v_t_37 (5 3) routing sp4_v_b_9 <X> sp4_v_t_37 (5 4) routing sp4_h_l_37 <X> sp4_h_r_3 (5 4) routing sp4_v_b_3 <X> sp4_h_r_3 (5 4) routing sp4_v_b_9 <X> sp4_h_r_3 (5 4) routing sp4_v_t_38 <X> sp4_h_r_3 (5 5) routing sp4_h_l_38 <X> sp4_v_b_3 (5 5) routing sp4_h_l_44 <X> sp4_v_b_3 (5 5) routing sp4_h_r_3 <X> sp4_v_b_3 (5 5) routing sp4_v_t_37 <X> sp4_v_b_3 (5 6) routing sp4_h_r_0 <X> sp4_h_l_38 (5 6) routing sp4_v_b_3 <X> sp4_h_l_38 (5 6) routing sp4_v_t_38 <X> sp4_h_l_38 (5 6) routing sp4_v_t_44 <X> sp4_h_l_38 (5 7) routing sp4_h_l_38 <X> sp4_v_t_38 (5 7) routing sp4_h_r_3 <X> sp4_v_t_38 (5 7) routing sp4_h_r_9 <X> sp4_v_t_38 (5 7) routing sp4_v_b_0 <X> sp4_v_t_38 (5 8) routing sp4_h_l_38 <X> sp4_h_r_6 (5 8) routing sp4_v_b_0 <X> sp4_h_r_6 (5 8) routing sp4_v_b_6 <X> sp4_h_r_6 (5 8) routing sp4_v_t_43 <X> sp4_h_r_6 (5 9) routing sp4_h_l_37 <X> sp4_v_b_6 (5 9) routing sp4_h_l_43 <X> sp4_v_b_6 (5 9) routing sp4_h_r_6 <X> sp4_v_b_6 (5 9) routing sp4_v_t_38 <X> sp4_v_b_6 (50 0) Cascade buffer Enable bit: IPCON_LC00_inmux02_5 (50 10) Cascade buffer Enable bit: IPCON_LC05_inmux02_5 (50 12) Cascade buffer Enable bit: IPCON_LC06_inmux02_5 (50 14) Cascade buffer Enable bit: IPCON_LC07_inmux02_5 (50 2) Cascade buffer Enable bit: IPCON_LC01_inmux02_5 (50 4) Cascade buffer Enable bit: IPCON_LC02_inmux02_5 (50 6) Cascade buffer Enable bit: IPCON_LC03_inmux02_5 (50 8) Cascade buffer Enable bit: IPCON_LC04_inmux02_5 (51 0) Enable bit of Mux _out_links/OutMux3_0 => slf_op_0 sp12_v_b_0 (51 1) Enable bit of Mux _out_links/OutMux2_0 => slf_op_0 sp4_v_t_21 (51 10) Enable bit of Mux _out_links/OutMux2_5 => slf_op_5 sp4_v_t_31 (51 11) Enable bit of Mux _out_links/OutMux1_5 => slf_op_5 sp4_v_t_15 (51 12) Enable bit of Mux _out_links/OutMux2_6 => slf_op_6 sp4_v_t_33 (51 13) Enable bit of Mux _out_links/OutMux1_6 => slf_op_6 sp4_v_t_17 (51 14) Enable bit of Mux _out_links/OutMux2_7 => slf_op_7 sp4_v_b_46 (51 15) Enable bit of Mux _out_links/OutMux1_7 => slf_op_7 sp4_v_t_19 (51 2) Enable bit of Mux _out_links/OutMux3_1 => slf_op_1 sp12_v_t_1 (51 3) Enable bit of Mux _out_links/OutMux2_1 => slf_op_1 sp4_v_t_23 (51 4) Enable bit of Mux _out_links/OutMux3_2 => slf_op_2 sp12_v_b_4 (51 5) Enable bit of Mux _out_links/OutMux2_2 => slf_op_2 sp4_v_b_36 (51 6) Enable bit of Mux _out_links/OutMux3_3 => slf_op_3 sp12_v_b_6 (51 7) Enable bit of Mux _out_links/OutMux2_3 => slf_op_3 sp4_v_t_27 (51 8) Enable bit of Mux _out_links/OutMux2_4 => slf_op_4 sp4_v_b_40 (51 9) Enable bit of Mux _out_links/OutMux1_4 => slf_op_4 sp4_v_t_13 (52 0) Enable bit of Mux _out_links/OutMux4_0 => slf_op_0 sp12_v_b_16 (52 1) Enable bit of Mux _out_links/OutMux9_0 => slf_op_0 sp4_r_v_b_1 (52 10) Enable bit of Mux _out_links/OutMux3_5 => slf_op_5 sp12_v_b_10 (52 11) Enable bit of Mux _out_links/OutMux9_5 => slf_op_5 sp4_r_v_b_11 (52 12) Enable bit of Mux _out_links/OutMux3_6 => slf_op_6 sp12_v_b_12 (52 13) Enable bit of Mux _out_links/OutMux9_6 => slf_op_6 sp4_r_v_b_13 (52 14) Enable bit of Mux _out_links/OutMux3_7 => slf_op_7 sp12_v_b_14 (52 15) Enable bit of Mux _out_links/OutMux9_7 => slf_op_7 sp4_r_v_b_15 (52 2) Enable bit of Mux _out_links/OutMux4_1 => slf_op_1 sp12_v_t_17 (52 3) Enable bit of Mux _out_links/OutMux9_1 => slf_op_1 sp4_r_v_b_3 (52 4) Enable bit of Mux _out_links/OutMux4_2 => slf_op_2 sp12_v_b_20 (52 5) Enable bit of Mux _out_links/OutMux9_2 => slf_op_2 sp4_r_v_b_5 (52 6) Enable bit of Mux _out_links/OutMux4_3 => slf_op_3 sp12_v_t_21 (52 7) Enable bit of Mux _out_links/OutMux9_3 => slf_op_3 sp4_r_v_b_7 (52 8) Enable bit of Mux _out_links/OutMux3_4 => slf_op_4 sp12_v_t_7 (52 9) Enable bit of Mux _out_links/OutMux9_4 => slf_op_4 sp4_r_v_b_9 (53 0) Enable bit of Mux _out_links/OutMuxa_0 => slf_op_0 sp4_r_v_b_17 (53 1) Enable bit of Mux _out_links/OutMuxb_0 => slf_op_0 sp4_r_v_b_33 (53 10) Enable bit of Mux _out_links/OutMuxa_5 => slf_op_5 sp4_r_v_b_27 (53 11) Enable bit of Mux _out_links/OutMuxb_5 => slf_op_5 sp4_r_v_b_43 (53 12) Enable bit of Mux _out_links/OutMuxa_6 => slf_op_6 sp4_r_v_b_29 (53 13) Enable bit of Mux _out_links/OutMuxb_6 => slf_op_6 sp4_r_v_b_45 (53 14) Enable bit of Mux _out_links/OutMuxa_7 => slf_op_7 sp4_r_v_b_31 (53 15) Enable bit of Mux _out_links/OutMuxb_7 => slf_op_7 sp4_r_v_b_47 (53 2) Enable bit of Mux _out_links/OutMuxa_1 => slf_op_1 sp4_r_v_b_19 (53 3) Enable bit of Mux _out_links/OutMuxb_1 => slf_op_1 sp4_r_v_b_35 (53 4) Enable bit of Mux _out_links/OutMuxa_2 => slf_op_2 sp4_r_v_b_21 (53 5) Enable bit of Mux _out_links/OutMuxb_2 => slf_op_2 sp4_r_v_b_37 (53 6) Enable bit of Mux _out_links/OutMuxa_3 => slf_op_3 sp4_r_v_b_23 (53 7) Enable bit of Mux _out_links/OutMuxb_3 => slf_op_3 sp4_r_v_b_39 (53 8) Enable bit of Mux _out_links/OutMuxa_4 => slf_op_4 sp4_r_v_b_25 (53 9) Enable bit of Mux _out_links/OutMuxb_4 => slf_op_4 sp4_r_v_b_41 (6 0) routing sp4_h_l_43 <X> sp4_v_b_0 (6 0) routing sp4_h_r_7 <X> sp4_v_b_0 (6 0) routing sp4_v_t_41 <X> sp4_v_b_0 (6 0) routing sp4_v_t_44 <X> sp4_v_b_0 (6 1) routing sp4_h_l_37 <X> sp4_h_r_0 (6 1) routing sp4_h_l_41 <X> sp4_h_r_0 (6 1) routing sp4_v_b_0 <X> sp4_h_r_0 (6 1) routing sp4_v_b_6 <X> sp4_h_r_0 (6 10) routing sp4_h_l_36 <X> sp4_v_t_43 (6 10) routing sp4_h_r_0 <X> sp4_v_t_43 (6 10) routing sp4_v_b_10 <X> sp4_v_t_43 (6 10) routing sp4_v_b_3 <X> sp4_v_t_43 (6 11) routing sp4_h_r_10 <X> sp4_h_l_43 (6 11) routing sp4_v_t_37 <X> sp4_h_l_43 (6 11) routing sp4_v_t_43 <X> sp4_h_l_43 (6 12) routing sp4_h_l_38 <X> sp4_v_b_9 (6 12) routing sp4_h_r_4 <X> sp4_v_b_9 (6 12) routing sp4_v_t_36 <X> sp4_v_b_9 (6 12) routing sp4_v_t_43 <X> sp4_v_b_9 (6 13) routing sp4_h_l_36 <X> sp4_h_r_9 (6 13) routing sp4_h_l_44 <X> sp4_h_r_9 (6 13) routing sp4_v_b_3 <X> sp4_h_r_9 (6 13) routing sp4_v_b_9 <X> sp4_h_r_9 (6 14) routing sp4_h_l_41 <X> sp4_v_t_44 (6 14) routing sp4_h_r_3 <X> sp4_v_t_44 (6 14) routing sp4_v_b_1 <X> sp4_v_t_44 (6 14) routing sp4_v_b_6 <X> sp4_v_t_44 (6 15) routing sp4_h_r_1 <X> sp4_h_l_44 (6 15) routing sp4_v_t_38 <X> sp4_h_l_44 (6 15) routing sp4_v_t_44 <X> sp4_h_l_44 (6 2) routing sp4_h_l_42 <X> sp4_v_t_37 (6 2) routing sp4_h_r_6 <X> sp4_v_t_37 (6 2) routing sp4_v_b_4 <X> sp4_v_t_37 (6 2) routing sp4_v_b_9 <X> sp4_v_t_37 (6 3) routing sp4_h_r_0 <X> sp4_h_l_37 (6 3) routing sp4_h_r_4 <X> sp4_h_l_37 (6 3) routing sp4_v_t_37 <X> sp4_h_l_37 (6 3) routing sp4_v_t_43 <X> sp4_h_l_37 (6 4) routing sp4_h_l_44 <X> sp4_v_b_3 (6 4) routing sp4_h_r_10 <X> sp4_v_b_3 (6 4) routing sp4_v_t_37 <X> sp4_v_b_3 (6 4) routing sp4_v_t_42 <X> sp4_v_b_3 (6 5) routing sp4_h_l_38 <X> sp4_h_r_3 (6 5) routing sp4_h_l_42 <X> sp4_h_r_3 (6 5) routing sp4_v_b_3 <X> sp4_h_r_3 (6 5) routing sp4_v_b_9 <X> sp4_h_r_3 (6 6) routing sp4_h_l_47 <X> sp4_v_t_38 (6 6) routing sp4_h_r_9 <X> sp4_v_t_38 (6 6) routing sp4_v_b_0 <X> sp4_v_t_38 (6 6) routing sp4_v_b_7 <X> sp4_v_t_38 (6 7) routing sp4_v_t_38 <X> sp4_h_l_38 (6 7) routing sp4_v_t_44 <X> sp4_h_l_38 (6 8) routing sp4_h_l_37 <X> sp4_v_b_6 (6 8) routing sp4_h_r_1 <X> sp4_v_b_6 (6 8) routing sp4_v_t_38 <X> sp4_v_b_6 (6 8) routing sp4_v_t_47 <X> sp4_v_b_6 (6 9) routing sp4_h_l_43 <X> sp4_h_r_6 (6 9) routing sp4_h_l_47 <X> sp4_h_r_6 (6 9) routing sp4_v_b_0 <X> sp4_h_r_6 (6 9) routing sp4_v_b_6 <X> sp4_h_r_6 (7 0) Hard IP config bit: IPCON_bram_cbit_1 (7 1) Hard IP config bit: IPCON_bram_cbit_0 (7 10) Column buffer control bit: IPCON_colbuf_cntl_3 (7 11) Column buffer control bit: IPCON_colbuf_cntl_2 (7 12) Column buffer control bit: IPCON_colbuf_cntl_5 (7 13) Column buffer control bit: IPCON_colbuf_cntl_4 (7 14) Column buffer control bit: IPCON_colbuf_cntl_7 (7 15) Column buffer control bit: IPCON_colbuf_cntl_6 (7 2) Hard IP config bit: IPCON_bram_cbit_3 (7 2) MAC16 functional bit: IPCON_bram_cbit_3 (7 3) Hard IP config bit: IPCON_bram_cbit_2 (7 4) Hard IP config bit: IPCON_bram_cbit_5 (7 4) MAC16 functional bit: IPCON_bram_cbit_5 (7 5) Hard IP config bit: IPCON_bram_cbit_4 (7 5) MAC16 functional bit: IPCON_bram_cbit_4 (7 6) Hard IP config bit: IPCON_bram_cbit_7 (7 7) Hard IP config bit: IPCON_bram_cbit_6 (7 7) MAC16 functional bit: IPCON_bram_cbit_6 (7 8) Column buffer control bit: IPCON_colbuf_cntl_1 (7 9) Column buffer control bit: IPCON_colbuf_cntl_0 (8 0) routing sp4_h_l_36 <X> sp4_h_r_1 (8 0) routing sp4_h_l_40 <X> sp4_h_r_1 (8 0) routing sp4_v_b_1 <X> sp4_h_r_1 (8 0) routing sp4_v_b_7 <X> sp4_h_r_1 (8 1) routing sp4_h_l_36 <X> sp4_v_b_1 (8 1) routing sp4_h_l_42 <X> sp4_v_b_1 (8 1) routing sp4_h_r_1 <X> sp4_v_b_1 (8 1) routing sp4_v_t_47 <X> sp4_v_b_1 (8 10) routing sp4_h_r_11 <X> sp4_h_l_42 (8 10) routing sp4_h_r_7 <X> sp4_h_l_42 (8 10) routing sp4_v_t_36 <X> sp4_h_l_42 (8 10) routing sp4_v_t_42 <X> sp4_h_l_42 (8 11) routing sp4_h_l_42 <X> sp4_v_t_42 (8 11) routing sp4_h_r_1 <X> sp4_v_t_42 (8 11) routing sp4_h_r_7 <X> sp4_v_t_42 (8 11) routing sp4_v_b_4 <X> sp4_v_t_42 (8 12) routing sp4_h_l_47 <X> sp4_h_r_10 (8 12) routing sp4_v_b_10 <X> sp4_h_r_10 (8 12) routing sp4_v_b_4 <X> sp4_h_r_10 (8 13) routing sp4_h_l_41 <X> sp4_v_b_10 (8 13) routing sp4_h_l_47 <X> sp4_v_b_10 (8 13) routing sp4_h_r_10 <X> sp4_v_b_10 (8 13) routing sp4_v_t_42 <X> sp4_v_b_10 (8 14) routing sp4_h_r_10 <X> sp4_h_l_47 (8 14) routing sp4_h_r_2 <X> sp4_h_l_47 (8 14) routing sp4_v_t_41 <X> sp4_h_l_47 (8 14) routing sp4_v_t_47 <X> sp4_h_l_47 (8 15) routing sp4_h_l_47 <X> sp4_v_t_47 (8 15) routing sp4_h_r_10 <X> sp4_v_t_47 (8 15) routing sp4_h_r_4 <X> sp4_v_t_47 (8 15) routing sp4_v_b_7 <X> sp4_v_t_47 (8 2) routing sp4_h_r_5 <X> sp4_h_l_36 (8 2) routing sp4_v_t_36 <X> sp4_h_l_36 (8 2) routing sp4_v_t_42 <X> sp4_h_l_36 (8 3) routing sp4_h_l_36 <X> sp4_v_t_36 (8 3) routing sp4_h_r_1 <X> sp4_v_t_36 (8 3) routing sp4_h_r_7 <X> sp4_v_t_36 (8 3) routing sp4_v_b_10 <X> sp4_v_t_36 (8 4) routing sp4_h_l_41 <X> sp4_h_r_4 (8 4) routing sp4_h_l_45 <X> sp4_h_r_4 (8 4) routing sp4_v_b_10 <X> sp4_h_r_4 (8 4) routing sp4_v_b_4 <X> sp4_h_r_4 (8 5) routing sp4_h_l_41 <X> sp4_v_b_4 (8 5) routing sp4_h_l_47 <X> sp4_v_b_4 (8 5) routing sp4_h_r_4 <X> sp4_v_b_4 (8 5) routing sp4_v_t_36 <X> sp4_v_b_4 (8 6) routing sp4_h_r_4 <X> sp4_h_l_41 (8 6) routing sp4_h_r_8 <X> sp4_h_l_41 (8 6) routing sp4_v_t_41 <X> sp4_h_l_41 (8 6) routing sp4_v_t_47 <X> sp4_h_l_41 (8 7) routing sp4_h_l_41 <X> sp4_v_t_41 (8 7) routing sp4_h_r_10 <X> sp4_v_t_41 (8 7) routing sp4_h_r_4 <X> sp4_v_t_41 (8 7) routing sp4_v_b_1 <X> sp4_v_t_41 (8 8) routing sp4_h_l_42 <X> sp4_h_r_7 (8 8) routing sp4_h_l_46 <X> sp4_h_r_7 (8 8) routing sp4_v_b_1 <X> sp4_h_r_7 (8 8) routing sp4_v_b_7 <X> sp4_h_r_7 (8 9) routing sp4_h_l_36 <X> sp4_v_b_7 (8 9) routing sp4_h_l_42 <X> sp4_v_b_7 (8 9) routing sp4_h_r_7 <X> sp4_v_b_7 (8 9) routing sp4_v_t_41 <X> sp4_v_b_7 (9 0) routing sp4_h_l_47 <X> sp4_h_r_1 (9 0) routing sp4_v_b_1 <X> sp4_h_r_1 (9 0) routing sp4_v_b_7 <X> sp4_h_r_1 (9 0) routing sp4_v_t_36 <X> sp4_h_r_1 (9 1) routing sp4_h_l_36 <X> sp4_v_b_1 (9 1) routing sp4_h_l_42 <X> sp4_v_b_1 (9 1) routing sp4_v_t_36 <X> sp4_v_b_1 (9 1) routing sp4_v_t_40 <X> sp4_v_b_1 (9 10) routing sp4_h_r_4 <X> sp4_h_l_42 (9 10) routing sp4_v_b_7 <X> sp4_h_l_42 (9 10) routing sp4_v_t_36 <X> sp4_h_l_42 (9 10) routing sp4_v_t_42 <X> sp4_h_l_42 (9 11) routing sp4_h_r_1 <X> sp4_v_t_42 (9 11) routing sp4_h_r_7 <X> sp4_v_t_42 (9 11) routing sp4_v_b_11 <X> sp4_v_t_42 (9 11) routing sp4_v_b_7 <X> sp4_v_t_42 (9 12) routing sp4_h_l_42 <X> sp4_h_r_10 (9 12) routing sp4_v_b_10 <X> sp4_h_r_10 (9 12) routing sp4_v_b_4 <X> sp4_h_r_10 (9 12) routing sp4_v_t_47 <X> sp4_h_r_10 (9 13) routing sp4_h_l_41 <X> sp4_v_b_10 (9 13) routing sp4_h_l_47 <X> sp4_v_b_10 (9 13) routing sp4_v_t_39 <X> sp4_v_b_10 (9 13) routing sp4_v_t_47 <X> sp4_v_b_10 (9 14) routing sp4_v_b_10 <X> sp4_h_l_47 (9 14) routing sp4_v_t_41 <X> sp4_h_l_47 (9 14) routing sp4_v_t_47 <X> sp4_h_l_47 (9 15) routing sp4_h_r_10 <X> sp4_v_t_47 (9 15) routing sp4_h_r_4 <X> sp4_v_t_47 (9 15) routing sp4_v_b_10 <X> sp4_v_t_47 (9 15) routing sp4_v_b_2 <X> sp4_v_t_47 (9 2) routing sp4_h_r_10 <X> sp4_h_l_36 (9 2) routing sp4_v_b_1 <X> sp4_h_l_36 (9 2) routing sp4_v_t_36 <X> sp4_h_l_36 (9 2) routing sp4_v_t_42 <X> sp4_h_l_36 (9 3) routing sp4_h_r_1 <X> sp4_v_t_36 (9 3) routing sp4_h_r_7 <X> sp4_v_t_36 (9 3) routing sp4_v_b_1 <X> sp4_v_t_36 (9 3) routing sp4_v_b_5 <X> sp4_v_t_36 (9 4) routing sp4_h_l_36 <X> sp4_h_r_4 (9 4) routing sp4_v_b_10 <X> sp4_h_r_4 (9 4) routing sp4_v_b_4 <X> sp4_h_r_4 (9 4) routing sp4_v_t_41 <X> sp4_h_r_4 (9 5) routing sp4_h_l_41 <X> sp4_v_b_4 (9 5) routing sp4_h_l_47 <X> sp4_v_b_4 (9 5) routing sp4_v_t_41 <X> sp4_v_b_4 (9 5) routing sp4_v_t_45 <X> sp4_v_b_4 (9 6) routing sp4_h_r_1 <X> sp4_h_l_41 (9 6) routing sp4_v_b_4 <X> sp4_h_l_41 (9 6) routing sp4_v_t_41 <X> sp4_h_l_41 (9 6) routing sp4_v_t_47 <X> sp4_h_l_41 (9 7) routing sp4_h_r_10 <X> sp4_v_t_41 (9 7) routing sp4_h_r_4 <X> sp4_v_t_41 (9 7) routing sp4_v_b_4 <X> sp4_v_t_41 (9 7) routing sp4_v_b_8 <X> sp4_v_t_41 (9 8) routing sp4_h_l_41 <X> sp4_h_r_7 (9 8) routing sp4_v_b_1 <X> sp4_h_r_7 (9 8) routing sp4_v_b_7 <X> sp4_h_r_7 (9 8) routing sp4_v_t_42 <X> sp4_h_r_7 (9 9) routing sp4_h_l_36 <X> sp4_v_b_7 (9 9) routing sp4_h_l_42 <X> sp4_v_b_7 (9 9) routing sp4_v_t_42 <X> sp4_v_b_7 (9 9) routing sp4_v_t_46 <X> sp4_v_b_7