📦 furkan / fakequidditch

📄 fakequidditch.fit.rpt · 3058 lines
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
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058Fitter report for fakequidditch
Fri May 31 16:06:36 2019
Quartus II 64-Bit Version 13.1.0 Build 162 10/23/2013 SJ Web Edition


---------------------
; Table of Contents ;
---------------------
  1. Legal Notice
  2. Fitter Summary
  3. Fitter Settings
  4. Parallel Compilation
  5. I/O Assignment Warnings
  6. Fitter Netlist Optimizations
  7. Ignored Assignments
  8. Incremental Compilation Preservation Summary
  9. Incremental Compilation Partition Settings
 10. Incremental Compilation Placement Preservation
 11. Pin-Out File
 12. Fitter Resource Usage Summary
 13. Fitter Partition Statistics
 14. Input Pins
 15. Output Pins
 16. I/O Bank Usage
 17. All Package Pins
 18. Fitter Resource Utilization by Entity
 19. Delay Chain Summary
 20. Pad To Core Delay Chain Fanout
 21. Control Signals
 22. Global & Other Fast Signals
 23. Non-Global High Fan-Out Signals
 24. Fitter DSP Block Usage Summary
 25. Routing Usage Summary
 26. I/O Rules Summary
 27. I/O Rules Details
 28. I/O Rules Matrix
 29. Fitter Device Options
 30. Operating Settings and Conditions
 31. Estimated Delay Added for Hold Timing Summary
 32. Estimated Delay Added for Hold Timing Details
 33. Fitter Messages
 34. Fitter Suppressed Messages



----------------
; Legal Notice ;
----------------
Copyright (C) 1991-2013 Altera Corporation
Your use of Altera Corporation's design tools, logic functions 
and other software and tools, and its AMPP partner logic 
functions, and any output files from any of the foregoing 
(including device programming or simulation files), and any 
associated documentation or information are expressly subject 
to the terms and conditions of the Altera Program License 
Subscription Agreement, Altera MegaCore Function License 
Agreement, or other applicable license agreement, including, 
without limitation, that your use is for the sole purpose of 
programming logic devices manufactured by Altera and sold by 
Altera or its authorized distributors.  Please refer to the 
applicable agreement for further details.



+------------------------------------------------------------------------------+
; Fitter Summary                                                               ;
+---------------------------------+--------------------------------------------+
; Fitter Status                   ; Successful - Fri May 31 16:06:36 2019      ;
; Quartus II 64-Bit Version       ; 13.1.0 Build 162 10/23/2013 SJ Web Edition ;
; Revision Name                   ; fakequidditch                              ;
; Top-level Entity Name           ; fakequidditch                              ;
; Family                          ; Cyclone V                                  ;
; Device                          ; 5CSEMA5F31C6                               ;
; Timing Models                   ; Preliminary                                ;
; Logic utilization (in ALMs)     ; 2,115 / 32,070 ( 7 % )                     ;
; Total registers                 ; 591                                        ;
; Total pins                      ; 36 / 457 ( 8 % )                           ;
; Total virtual pins              ; 0                                          ;
; Total block memory bits         ; 0 / 4,065,280 ( 0 % )                      ;
; Total DSP Blocks                ; 87 / 87 ( 100 % )                          ;
; Total HSSI RX PCSs              ; 0                                          ;
; Total HSSI PMA RX Deserializers ; 0                                          ;
; Total HSSI TX PCSs              ; 0                                          ;
; Total HSSI TX Channels          ; 0                                          ;
; Total PLLs                      ; 0 / 6 ( 0 % )                              ;
; Total DLLs                      ; 0 / 4 ( 0 % )                              ;
+---------------------------------+--------------------------------------------+


+------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Fitter Settings                                                                                                                                            ;
+----------------------------------------------------------------------------+---------------------------------------+---------------------------------------+
; Option                                                                     ; Setting                               ; Default Value                         ;
+----------------------------------------------------------------------------+---------------------------------------+---------------------------------------+
; Device                                                                     ; 5CSEMA5F31C6                          ;                                       ;
; Minimum Core Junction Temperature                                          ; 0                                     ;                                       ;
; Maximum Core Junction Temperature                                          ; 85                                    ;                                       ;
; Use smart compilation                                                      ; Off                                   ; Off                                   ;
; Enable parallel Assembler and TimeQuest Timing Analyzer during compilation ; On                                    ; On                                    ;
; Enable compact report table                                                ; Off                                   ; Off                                   ;
; Router Timing Optimization Level                                           ; Normal                                ; Normal                                ;
; Perform Clocking Topology Analysis During Routing                          ; Off                                   ; Off                                   ;
; Placement Effort Multiplier                                                ; 1.0                                   ; 1.0                                   ;
; Device initialization clock source                                         ; INIT_INTOSC                           ; INIT_INTOSC                           ;
; Optimize Hold Timing                                                       ; All Paths                             ; All Paths                             ;
; Optimize Multi-Corner Timing                                               ; On                                    ; On                                    ;
; Auto RAM to MLAB Conversion                                                ; On                                    ; On                                    ;
; Equivalent RAM and MLAB Power Up                                           ; Auto                                  ; Auto                                  ;
; Equivalent RAM and MLAB Paused Read Capabilities                           ; Care                                  ; Care                                  ;
; PowerPlay Power Optimization                                               ; Normal compilation                    ; Normal compilation                    ;
; SSN Optimization                                                           ; Off                                   ; Off                                   ;
; Optimize Timing                                                            ; Normal compilation                    ; Normal compilation                    ;
; Optimize Timing for ECOs                                                   ; Off                                   ; Off                                   ;
; Regenerate full fit report during ECO compiles                             ; Off                                   ; Off                                   ;
; Optimize IOC Register Placement for Timing                                 ; Normal                                ; Normal                                ;
; Final Placement Optimizations                                              ; Automatically                         ; Automatically                         ;
; Fitter Aggressive Routability Optimizations                                ; Automatically                         ; Automatically                         ;
; Fitter Initial Placement Seed                                              ; 1                                     ; 1                                     ;
; Weak Pull-Up Resistor                                                      ; Off                                   ; Off                                   ;
; Enable Bus-Hold Circuitry                                                  ; Off                                   ; Off                                   ;
; Auto Packed Registers                                                      ; Auto                                  ; Auto                                  ;
; Auto Delay Chains                                                          ; On                                    ; On                                    ;
; Auto Delay Chains for High Fanout Input Pins                               ; Off                                   ; Off                                   ;
; Treat Bidirectional Pin as Output Pin                                      ; Off                                   ; Off                                   ;
; Perform Physical Synthesis for Combinational Logic for Fitting             ; Off                                   ; Off                                   ;
; Perform Physical Synthesis for Combinational Logic for Performance         ; Off                                   ; Off                                   ;
; Perform Register Duplication for Performance                               ; Off                                   ; Off                                   ;
; Perform Register Retiming for Performance                                  ; Off                                   ; Off                                   ;
; Perform Asynchronous Signal Pipelining                                     ; Off                                   ; Off                                   ;
; Fitter Effort                                                              ; Auto Fit                              ; Auto Fit                              ;
; Physical Synthesis Effort Level                                            ; Normal                                ; Normal                                ;
; Logic Cell Insertion - Logic Duplication                                   ; Auto                                  ; Auto                                  ;
; Auto Register Duplication                                                  ; Auto                                  ; Auto                                  ;
; Auto Global Clock                                                          ; On                                    ; On                                    ;
; Auto Global Register Control Signals                                       ; On                                    ; On                                    ;
; Reserve all unused pins                                                    ; As input tri-stated with weak pull-up ; As input tri-stated with weak pull-up ;
; Synchronizer Identification                                                ; Off                                   ; Off                                   ;
; Enable Beneficial Skew Optimization                                        ; On                                    ; On                                    ;
; Optimize Design for Metastability                                          ; On                                    ; On                                    ;
; Active Serial clock source                                                 ; FREQ_100MHz                           ; FREQ_100MHz                           ;
; Force Fitter to Avoid Periphery Placement Warnings                         ; Off                                   ; Off                                   ;
; Clamping Diode                                                             ; Off                                   ; Off                                   ;
; Enable input tri-state on active configuration pins in user mode           ; Off                                   ; Off                                   ;
+----------------------------------------------------------------------------+---------------------------------------+---------------------------------------+


+------------------------------------------+
; Parallel Compilation                     ;
+----------------------------+-------------+
; Processors                 ; Number      ;
+----------------------------+-------------+
; Number detected on machine ; 4           ;
; Maximum allowed            ; 2           ;
;                            ;             ;
; Average used               ; 1.44        ;
; Maximum used               ; 2           ;
;                            ;             ;
; Usage by Processor         ; % Time Used ;
;     Processor 1            ; 100.0%      ;
;     Processor 2            ;  44.0%      ;
;     Processors 3-4         ;   0.0%      ;
+----------------------------+-------------+


+-------------------------------------------------+
; I/O Assignment Warnings                         ;
+-----------------+-------------------------------+
; Pin Name        ; Reason                        ;
+-----------------+-------------------------------+
; red[0]          ; Incomplete set of assignments ;
; red[1]          ; Incomplete set of assignments ;
; red[2]          ; Incomplete set of assignments ;
; red[3]          ; Incomplete set of assignments ;
; red[4]          ; Incomplete set of assignments ;
; red[5]          ; Incomplete set of assignments ;
; red[6]          ; Incomplete set of assignments ;
; red[7]          ; Incomplete set of assignments ;
; green[0]        ; Incomplete set of assignments ;
; green[1]        ; Incomplete set of assignments ;
; green[2]        ; Incomplete set of assignments ;
; green[3]        ; Incomplete set of assignments ;
; green[4]        ; Incomplete set of assignments ;
; green[5]        ; Incomplete set of assignments ;
; green[6]        ; Incomplete set of assignments ;
; green[7]        ; Incomplete set of assignments ;
; blue[0]         ; Incomplete set of assignments ;
; blue[1]         ; Incomplete set of assignments ;
; blue[2]         ; Incomplete set of assignments ;
; blue[3]         ; Incomplete set of assignments ;
; blue[4]         ; Incomplete set of assignments ;
; blue[5]         ; Incomplete set of assignments ;
; blue[6]         ; Incomplete set of assignments ;
; blue[7]         ; Incomplete set of assignments ;
; hor_sync        ; Incomplete set of assignments ;
; ver_sync        ; Incomplete set of assignments ;
; vga_clk         ; Incomplete set of assignments ;
; clk             ; Incomplete set of assignments ;
; team1_vu_button ; Incomplete set of assignments ;
; team1_vd_button ; Incomplete set of assignments ;
; team2_vu_button ; Incomplete set of assignments ;
; team2_vd_button ; Incomplete set of assignments ;
; team2_hl_button ; Incomplete set of assignments ;
; team2_hr_button ; Incomplete set of assignments ;
; team1_hl_button ; Incomplete set of assignments ;
; team1_hr_button ; Incomplete set of assignments ;
+-----------------+-------------------------------+


+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Fitter Netlist Optimizations                                                                                                                                                                                                                                                                                                          ;
+---------------------------------------------------------------------------+------------+---------------------------------------------------+----------------------------+-----------+----------------+-------------------------------------------------------------------------------------+------------------+-----------------------+
; Node                                                                      ; Action     ; Operation                                         ; Reason                     ; Node Port ; Node Port Name ; Destination Node                                                                    ; Destination Port ; Destination Port Name ;
+---------------------------------------------------------------------------+------------+---------------------------------------------------+----------------------------+-----------+----------------+-------------------------------------------------------------------------------------+------------------+-----------------------+
; clk~inputCLKENA0                                                          ; Created    ; Placement                                         ; Fitter Periphery Placement ;           ;                ;                                                                                     ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~36       ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult1~36                 ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult4~28       ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult2~32                 ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult5~437      ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~36                 ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult7~437      ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult6~44                 ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult9~437      ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult8~32                 ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult11~437     ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult10~28                ;                  ;                       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|Mult0~461  ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|Mult1~32             ;                  ;                       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|Mult0~461  ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|Mult1~32             ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|Mult0~461  ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|Mult1~32             ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|Mult0~461  ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult12~32                ;                  ;                       ;
; vga_controller:vga_cont|Mult1~20                                          ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; vga_controller:vga_cont|Mult0~477                                                   ;                  ;                       ;
; vga_controller:vga_cont|Mult3~44                                          ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; vga_controller:vga_cont|Mult2~473                                                   ;                  ;                       ;
; vga_controller:vga_cont|Mult5~20                                          ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; vga_controller:vga_cont|Mult4~477                                                   ;                  ;                       ;
; vga_controller:vga_cont|Mult7~44                                          ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; vga_controller:vga_cont|Mult6~473                                                   ;                  ;                       ;
; vga_controller:vga_cont|Mult9~20                                          ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; vga_controller:vga_cont|Mult8~477                                                   ;                  ;                       ;
; vga_controller:vga_cont|Mult11~44                                         ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; vga_controller:vga_cont|Mult10~473                                                  ;                  ;                       ;
; vga_controller:vga_cont|Mult17~20                                         ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; vga_controller:vga_cont|Mult16~477                                                  ;                  ;                       ;
; vga_controller:vga_cont|Mult19~44                                         ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; vga_controller:vga_cont|Mult18~473                                                  ;                  ;                       ;
; vga_controller:vga_cont|Mult21~20                                         ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; vga_controller:vga_cont|Mult20~477                                                  ;                  ;                       ;
; vga_controller:vga_cont|Mult23~44                                         ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; vga_controller:vga_cont|Mult22~473                                                  ;                  ;                       ;
; vga_controller:vga_cont|Mult25~16                                         ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; vga_controller:vga_cont|Mult24~477                                                  ;                  ;                       ;
; vga_controller:vga_cont|Mult27~20                                         ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; vga_controller:vga_cont|Mult26~477                                                  ;                  ;                       ;
; vga_controller:vga_cont|Mult31~20                                         ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; vga_controller:vga_cont|Mult30~477                                                  ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir[0]       ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir[0]~DUPLICATE       ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir[1]       ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir[1]~DUPLICATE       ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir[2]       ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir[2]~DUPLICATE       ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[0]  ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[0]~DUPLICATE  ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[1]  ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[1]~DUPLICATE  ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[2]  ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[2]~DUPLICATE  ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[3]  ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[3]~DUPLICATE  ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[4]  ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[4]~DUPLICATE  ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[5]  ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[5]~DUPLICATE  ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[6]  ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[6]~DUPLICATE  ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[7]  ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[7]~DUPLICATE  ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[8]  ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[8]~DUPLICATE  ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[9]  ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[9]~DUPLICATE  ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[10] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[10]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[0]       ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[0]~DUPLICATE       ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[1]       ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[1]~DUPLICATE       ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[2]       ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[2]~DUPLICATE       ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[1]  ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[1]~DUPLICATE  ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[2]  ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[2]~DUPLICATE  ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[3]  ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[3]~DUPLICATE  ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[4]  ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[4]~DUPLICATE  ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[5]  ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[5]~DUPLICATE  ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[6]  ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[6]~DUPLICATE  ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[7]  ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[7]~DUPLICATE  ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[8]  ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[8]~DUPLICATE  ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[9]  ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[9]~DUPLICATE  ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[10] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[10]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|blue_score[0]                                   ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|blue_score[0]~DUPLICATE                                   ;                  ;                       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[2] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[2]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[6] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[6]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[7] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[7]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[8] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[8]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_pos[2] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_pos[2]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_pos[4] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_pos[4]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|red_score[3]                                    ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|red_score[3]~DUPLICATE                                    ;                  ;                       ;
; game_controller:game_ctrl|time_left[2]                                    ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|time_left[2]~DUPLICATE                                    ;                  ;                       ;
; game_controller:game_ctrl|time_left[6]                                    ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|time_left[6]~DUPLICATE                                    ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[0] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[0]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[1] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[1]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[2] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[2]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[3] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[3]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[4] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[4]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[6] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[6]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[8] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[8]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[9] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[9]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[0] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[0]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[1] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[1]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[2] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[2]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[3] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[3]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[4] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[4]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[5] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[5]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[7] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[7]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[8] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[8]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[9] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[9]~DUPLICATE ;                  ;                       ;
; vga_controller:vga_cont|x[0]                                              ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; vga_controller:vga_cont|x[0]~DUPLICATE                                              ;                  ;                       ;
; vga_controller:vga_cont|x[1]                                              ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; vga_controller:vga_cont|x[1]~DUPLICATE                                              ;                  ;                       ;
; vga_controller:vga_cont|x[2]                                              ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; vga_controller:vga_cont|x[2]~DUPLICATE                                              ;                  ;                       ;
; vga_controller:vga_cont|x[3]                                              ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; vga_controller:vga_cont|x[3]~DUPLICATE                                              ;                  ;                       ;
; vga_controller:vga_cont|x[4]                                              ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; vga_controller:vga_cont|x[4]~DUPLICATE                                              ;                  ;                       ;
; vga_controller:vga_cont|x[5]                                              ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; vga_controller:vga_cont|x[5]~DUPLICATE                                              ;                  ;                       ;
; vga_controller:vga_cont|x[6]                                              ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; vga_controller:vga_cont|x[6]~DUPLICATE                                              ;                  ;                       ;
; vga_controller:vga_cont|x[7]                                              ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; vga_controller:vga_cont|x[7]~DUPLICATE                                              ;                  ;                       ;
; vga_controller:vga_cont|x[8]                                              ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; vga_controller:vga_cont|x[8]~DUPLICATE                                              ;                  ;                       ;
; vga_controller:vga_cont|x[9]                                              ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; vga_controller:vga_cont|x[9]~DUPLICATE                                              ;                  ;                       ;
; vga_controller:vga_cont|y[0]                                              ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; vga_controller:vga_cont|y[0]~DUPLICATE                                              ;                  ;                       ;
; vga_controller:vga_cont|y[1]                                              ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; vga_controller:vga_cont|y[1]~DUPLICATE                                              ;                  ;                       ;
; vga_controller:vga_cont|y[2]                                              ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; vga_controller:vga_cont|y[2]~DUPLICATE                                              ;                  ;                       ;
; vga_controller:vga_cont|y[3]                                              ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; vga_controller:vga_cont|y[3]~DUPLICATE                                              ;                  ;                       ;
; vga_controller:vga_cont|y[4]                                              ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; vga_controller:vga_cont|y[4]~DUPLICATE                                              ;                  ;                       ;
; vga_controller:vga_cont|y[5]                                              ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; vga_controller:vga_cont|y[5]~DUPLICATE                                              ;                  ;                       ;
; vga_controller:vga_cont|y[6]                                              ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; vga_controller:vga_cont|y[6]~DUPLICATE                                              ;                  ;                       ;
; vga_controller:vga_cont|y[7]                                              ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; vga_controller:vga_cont|y[7]~DUPLICATE                                              ;                  ;                       ;
; vga_controller:vga_cont|y[8]                                              ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; vga_controller:vga_cont|y[8]~DUPLICATE                                              ;                  ;                       ;
; vga_controller:vga_cont|y[9]                                              ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; vga_controller:vga_cont|y[9]~DUPLICATE                                              ;                  ;                       ;
+---------------------------------------------------------------------------+------------+---------------------------------------------------+----------------------------+-----------+----------------+-------------------------------------------------------------------------------------+------------------+-----------------------+


+--------------------------------------------------------------------------------------------+
; Ignored Assignments                                                                        ;
+----------+----------------+--------------+----------------+---------------+----------------+
; Name     ; Ignored Entity ; Ignored From ; Ignored To     ; Ignored Value ; Ignored Source ;
+----------+----------------+--------------+----------------+---------------+----------------+
; Location ;                ;              ; game_on_switch ; PIN_AE12      ; QSF Assignment ;
+----------+----------------+--------------+----------------+---------------+----------------+


+---------------------------------------------------------------------------------------------------+
; Incremental Compilation Preservation Summary                                                      ;
+---------------------+---------------------+----------------------------+--------------------------+
; Type                ; Total [A + B]       ; From Design Partitions [A] ; From Rapid Recompile [B] ;
+---------------------+---------------------+----------------------------+--------------------------+
; Placement (by node) ;                     ;                            ;                          ;
;     -- Requested    ; 0.00 % ( 0 / 4348 ) ; 0.00 % ( 0 / 4348 )        ; 0.00 % ( 0 / 4348 )      ;
;     -- Achieved     ; 0.00 % ( 0 / 4348 ) ; 0.00 % ( 0 / 4348 )        ; 0.00 % ( 0 / 4348 )      ;
;                     ;                     ;                            ;                          ;
; Routing (by net)    ;                     ;                            ;                          ;
;     -- Requested    ; 0.00 % ( 0 / 0 )    ; 0.00 % ( 0 / 0 )           ; 0.00 % ( 0 / 0 )         ;
;     -- Achieved     ; 0.00 % ( 0 / 0 )    ; 0.00 % ( 0 / 0 )           ; 0.00 % ( 0 / 0 )         ;
+---------------------+---------------------+----------------------------+--------------------------+


+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Incremental Compilation Partition Settings                                                                                                                                             ;
+--------------------------------+----------------+-------------------+-------------------------+------------------------+------------------------------+--------------------------------+
; Partition Name                 ; Partition Type ; Netlist Type Used ; Preservation Level Used ; Netlist Type Requested ; Preservation Level Requested ; Contents                       ;
+--------------------------------+----------------+-------------------+-------------------------+------------------------+------------------------------+--------------------------------+
; Top                            ; User-created   ; Source File       ; N/A                     ; Source File            ; N/A                          ;                                ;
; hard_block:auto_generated_inst ; Auto-generated ; Source File       ; N/A                     ; Source File            ; N/A                          ; hard_block:auto_generated_inst ;
+--------------------------------+----------------+-------------------+-------------------------+------------------------+------------------------------+--------------------------------+


+------------------------------------------------------------------------------------------------------------------------------------+
; Incremental Compilation Placement Preservation                                                                                     ;
+--------------------------------+-----------------------+-------------------------+-------------------+---------------------+-------+
; Partition Name                 ; Preservation Achieved ; Preservation Level Used ; Netlist Type Used ; Preservation Method ; Notes ;
+--------------------------------+-----------------------+-------------------------+-------------------+---------------------+-------+
; Top                            ; 0.00 % ( 0 / 4348 )   ; N/A                     ; Source File       ; N/A                 ;       ;
; hard_block:auto_generated_inst ; 0.00 % ( 0 / 0 )      ; N/A                     ; Source File       ; N/A                 ;       ;
+--------------------------------+-----------------------+-------------------------+-------------------+---------------------+-------+


+--------------+
; Pin-Out File ;
+--------------+
The pin-out file can be found in C:/Users/Cansu/Desktop/fakequidditch/output_files/fakequidditch.pin.


+---------------------------------------------------------------------------------------+
; Fitter Resource Usage Summary                                                         ;
+-------------------------------------------------------------+-----------------+-------+
; Resource                                                    ; Usage           ; %     ;
+-------------------------------------------------------------+-----------------+-------+
; Logic utilization (ALMs needed / total ALMs on device)      ; 2,115 / 32,070  ; 7 %   ;
; ALMs needed [=A-B+C]                                        ; 2,115           ;       ;
;     [A] ALMs used in final placement [=a+b+c+d]             ; 2,116 / 32,070  ; 7 %   ;
;         [a] ALMs used for LUT logic and registers           ; 242             ;       ;
;         [b] ALMs used for LUT logic                         ; 1,857           ;       ;
;         [c] ALMs used for registers                         ; 17              ;       ;
;         [d] ALMs used for memory (up to half of total ALMs) ; 0               ;       ;
;     [B] Estimate of ALMs recoverable by dense packing       ; 93 / 32,070     ; < 1 % ;
;     [C] Estimate of ALMs unavailable [=a+b+c+d]             ; 92 / 32,070     ; < 1 % ;
;         [a] Due to location constrained logic               ; 7               ;       ;
;         [b] Due to LAB-wide signal conflicts                ; 1               ;       ;
;         [c] Due to LAB input limits                         ; 84              ;       ;
;         [d] Due to virtual I/Os                             ; 0               ;       ;
;                                                             ;                 ;       ;
; Difficulty packing design                                   ; Low             ;       ;
;                                                             ;                 ;       ;
; Total LABs:  partially or completely used                   ; 353 / 3,207     ; 11 %  ;
;     -- Logic LABs                                           ; 353             ;       ;
;     -- Memory LABs (up to half of total LABs)               ; 0               ;       ;
;                                                             ;                 ;       ;
; Combinational ALUT usage for logic                          ; 3,648           ;       ;
;     -- 7 input functions                                    ; 6               ;       ;
;     -- 6 input functions                                    ; 246             ;       ;
;     -- 5 input functions                                    ; 428             ;       ;
;     -- 4 input functions                                    ; 235             ;       ;
;     -- <=3 input functions                                  ; 2,733           ;       ;
; Combinational ALUT usage for route-throughs                 ; 9               ;       ;
; Dedicated logic registers                                   ; 591             ;       ;
;     -- By type:                                             ;                 ;       ;
;         -- Primary logic registers                          ; 517 / 64,140    ; < 1 % ;
;         -- Secondary logic registers                        ; 74 / 64,140     ; < 1 % ;
;     -- By function:                                         ;                 ;       ;
;         -- Design implementation registers                  ; 517             ;       ;
;         -- Routing optimization registers                   ; 74              ;       ;
;                                                             ;                 ;       ;
; Virtual pins                                                ; 0               ;       ;
; I/O pins                                                    ; 36 / 457        ; 8 %   ;
;     -- Clock pins                                           ; 4 / 8           ; 50 %  ;
;     -- Dedicated input pins                                 ; 0 / 21          ; 0 %   ;
;                                                             ;                 ;       ;
; Hard processor system peripheral utilization                ;                 ;       ;
;     -- Boot from FPGA                                       ; 0 / 1 ( 0 % )   ;       ;
;     -- Clock resets                                         ; 0 / 1 ( 0 % )   ;       ;
;     -- Cross trigger                                        ; 0 / 1 ( 0 % )   ;       ;
;     -- S2F AXI                                              ; 0 / 1 ( 0 % )   ;       ;
;     -- F2S AXI                                              ; 0 / 1 ( 0 % )   ;       ;
;     -- AXI Lightweight                                      ; 0 / 1 ( 0 % )   ;       ;
;     -- SDRAM                                                ; 0 / 1 ( 0 % )   ;       ;
;     -- Interrupts                                           ; 0 / 1 ( 0 % )   ;       ;
;     -- JTAG                                                 ; 0 / 1 ( 0 % )   ;       ;
;     -- Loan I/O                                             ; 0 / 1 ( 0 % )   ;       ;
;     -- MPU event standby                                    ; 0 / 1 ( 0 % )   ;       ;
;     -- MPU general purpose                                  ; 0 / 1 ( 0 % )   ;       ;
;     -- STM event                                            ; 0 / 1 ( 0 % )   ;       ;
;     -- TPIU trace                                           ; 0 / 1 ( 0 % )   ;       ;
;     -- DMA                                                  ; 0 / 1 ( 0 % )   ;       ;
;     -- CAN                                                  ; 0 / 2 ( 0 % )   ;       ;
;     -- EMAC                                                 ; 0 / 2 ( 0 % )   ;       ;
;     -- I2C                                                  ; 0 / 4 ( 0 % )   ;       ;
;     -- NAND Flash                                           ; 0 / 1 ( 0 % )   ;       ;
;     -- QSPI                                                 ; 0 / 1 ( 0 % )   ;       ;
;     -- SDMMC                                                ; 0 / 1 ( 0 % )   ;       ;
;     -- SPI Master                                           ; 0 / 2 ( 0 % )   ;       ;
;     -- SPI Slave                                            ; 0 / 2 ( 0 % )   ;       ;
;     -- UART                                                 ; 0 / 2 ( 0 % )   ;       ;
;     -- USB                                                  ; 0 / 2 ( 0 % )   ;       ;
;                                                             ;                 ;       ;
; Global signals                                              ; 1               ;       ;
; M10K blocks                                                 ; 0 / 397         ; 0 %   ;
; Total MLAB memory bits                                      ; 0               ;       ;
; Total block memory bits                                     ; 0 / 4,065,280   ; 0 %   ;
; Total block memory implementation bits                      ; 0 / 4,065,280   ; 0 %   ;
; Total DSP Blocks                                            ; 87 / 87         ; 100 % ;
; Fractional PLLs                                             ; 0 / 6           ; 0 %   ;
; Global clocks                                               ; 1 / 16          ; 6 %   ;
; Quadrant clocks                                             ; 0 / 66          ; 0 %   ;
; Horizontal periphery clocks and Vertical periphery clocks   ; 0 / 18          ; 0 %   ;
; SERDES Transmitters                                         ; 0 / 100         ; 0 %   ;
; SERDES Receivers                                            ; 0 / 100         ; 0 %   ;
; JTAGs                                                       ; 0 / 1           ; 0 %   ;
; ASMI blocks                                                 ; 0 / 1           ; 0 %   ;
; CRC blocks                                                  ; 0 / 1           ; 0 %   ;
; Remote update blocks                                        ; 0 / 1           ; 0 %   ;
; Impedance control blocks                                    ; 0 / 4           ; 0 %   ;
; Hard Memory Controllers                                     ; 0 / 2           ; 0 %   ;
; Average interconnect usage (total/H/V)                      ; 4% / 3% / 5%    ;       ;
; Peak interconnect usage (total/H/V)                         ; 23% / 19% / 33% ;       ;
; Maximum fan-out                                             ; 591             ;       ;
; Highest non-global fan-out                                  ; 360             ;       ;
; Total fan-out                                               ; 14617           ;       ;
; Average fan-out                                             ; 3.32            ;       ;
+-------------------------------------------------------------+-----------------+-------+


+----------------------------------------------------------------------------------------------------------------------+
; Fitter Partition Statistics                                                                                          ;
+-------------------------------------------------------------+-----------------------+--------------------------------+
; Statistic                                                   ; Top                   ; hard_block:auto_generated_inst ;
+-------------------------------------------------------------+-----------------------+--------------------------------+
; Logic utilization (ALMs needed / total ALMs on device)      ; 2115 / 32070 ( 7 % )  ; 0 / 32070 ( 0 % )              ;
; ALMs needed [=A-B+C]                                        ; 2115                  ; 0                              ;
;     [A] ALMs used in final placement [=a+b+c+d]             ; 2116 / 32070 ( 7 % )  ; 0 / 32070 ( 0 % )              ;
;         [a] ALMs used for LUT logic and registers           ; 242                   ; 0                              ;
;         [b] ALMs used for LUT logic                         ; 1857                  ; 0                              ;
;         [c] ALMs used for registers                         ; 17                    ; 0                              ;
;         [d] ALMs used for memory (up to half of total ALMs) ; 0                     ; 0                              ;
;     [B] Estimate of ALMs recoverable by dense packing       ; 93 / 32070 ( < 1 % )  ; 0 / 32070 ( 0 % )              ;
;     [C] Estimate of ALMs unavailable [=a+b+c+d]             ; 92 / 32070 ( < 1 % )  ; 0 / 32070 ( 0 % )              ;
;         [a] Due to location constrained logic               ; 7                     ; 0                              ;
;         [b] Due to LAB-wide signal conflicts                ; 1                     ; 0                              ;
;         [c] Due to LAB input limits                         ; 84                    ; 0                              ;
;         [d] Due to virtual I/Os                             ; 0                     ; 0                              ;
;                                                             ;                       ;                                ;
; Difficulty packing design                                   ; Low                   ; Low                            ;
;                                                             ;                       ;                                ;
; Total LABs:  partially or completely used                   ; 353 / 3207 ( 11 % )   ; 0 / 3207 ( 0 % )               ;
;     -- Logic LABs                                           ; 353                   ; 0                              ;
;     -- Memory LABs (up to half of total LABs)               ; 0                     ; 0                              ;
;                                                             ;                       ;                                ;
; Combinational ALUT usage for logic                          ; 3648                  ; 0                              ;
;     -- 7 input functions                                    ; 6                     ; 0                              ;
;     -- 6 input functions                                    ; 246                   ; 0                              ;
;     -- 5 input functions                                    ; 428                   ; 0                              ;
;     -- 4 input functions                                    ; 235                   ; 0                              ;
;     -- <=3 input functions                                  ; 2733                  ; 0                              ;
; Combinational ALUT usage for route-throughs                 ; 9                     ; 0                              ;
; Memory ALUT usage                                           ; 0                     ; 0                              ;
;     -- 64-address deep                                      ; 0                     ; 0                              ;
;     -- 32-address deep                                      ; 0                     ; 0                              ;
;                                                             ;                       ;                                ;
; Dedicated logic registers                                   ; 0                     ; 0                              ;
;     -- By type:                                             ;                       ;                                ;
;         -- Primary logic registers                          ; 517 / 64140 ( < 1 % ) ; 0 / 64140 ( 0 % )              ;
;         -- Secondary logic registers                        ; 74 / 64140 ( < 1 % )  ; 0 / 64140 ( 0 % )              ;
;     -- By function:                                         ;                       ;                                ;
;         -- Design implementation registers                  ; 517                   ; 0                              ;
;         -- Routing optimization registers                   ; 74                    ; 0                              ;
;                                                             ;                       ;                                ;
;                                                             ;                       ;                                ;
; Virtual pins                                                ; 0                     ; 0                              ;
; I/O pins                                                    ; 36                    ; 0                              ;
; I/O registers                                               ; 0                     ; 0                              ;
; Total block memory bits                                     ; 0                     ; 0                              ;
; Total block memory implementation bits                      ; 0                     ; 0                              ;
; DSP block                                                   ; 87 / 87 ( 100 % )     ; 0 / 87 ( 0 % )                 ;
; Clock enable block                                          ; 1 / 116 ( < 1 % )     ; 0 / 116 ( 0 % )                ;
;                                                             ;                       ;                                ;
; Connections                                                 ;                       ;                                ;
;     -- Input Connections                                    ; 0                     ; 0                              ;
;     -- Registered Input Connections                         ; 0                     ; 0                              ;
;     -- Output Connections                                   ; 0                     ; 0                              ;
;     -- Registered Output Connections                        ; 0                     ; 0                              ;
;                                                             ;                       ;                                ;
; Internal Connections                                        ;                       ;                                ;
;     -- Total Connections                                    ; 19810                 ; 0                              ;
;     -- Registered Connections                               ; 3201                  ; 0                              ;
;                                                             ;                       ;                                ;
; External Connections                                        ;                       ;                                ;
;     -- Top                                                  ; 0                     ; 0                              ;
;     -- hard_block:auto_generated_inst                       ; 0                     ; 0                              ;
;                                                             ;                       ;                                ;
; Partition Interface                                         ;                       ;                                ;
;     -- Input Ports                                          ; 9                     ; 0                              ;
;     -- Output Ports                                         ; 27                    ; 0                              ;
;     -- Bidir Ports                                          ; 0                     ; 0                              ;
;                                                             ;                       ;                                ;
; Registered Ports                                            ;                       ;                                ;
;     -- Registered Input Ports                               ; 0                     ; 0                              ;
;     -- Registered Output Ports                              ; 0                     ; 0                              ;
;                                                             ;                       ;                                ;
; Port Connectivity                                           ;                       ;                                ;
;     -- Input Ports driven by GND                            ; 0                     ; 0                              ;
;     -- Output Ports driven by GND                           ; 0                     ; 0                              ;
;     -- Input Ports driven by VCC                            ; 0                     ; 0                              ;
;     -- Output Ports driven by VCC                           ; 0                     ; 0                              ;
;     -- Input Ports with no Source                           ; 0                     ; 0                              ;
;     -- Output Ports with no Source                          ; 0                     ; 0                              ;
;     -- Input Ports with no Fanout                           ; 0                     ; 0                              ;
;     -- Output Ports with no Fanout                          ; 0                     ; 0                              ;
+-------------------------------------------------------------+-----------------------+--------------------------------+


+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Input Pins                                                                                                                                                                                                                                                        ;
+-----------------+-------+----------+--------------+--------------+--------------+-----------------------+--------------------+--------+-----------------+----------+--------------+--------------+-------------+---------------------------+----------------------+
; Name            ; Pin # ; I/O Bank ; X coordinate ; Y coordinate ; Z coordinate ; Combinational Fan-Out ; Registered Fan-Out ; Global ; PCI I/O Enabled ; Bus Hold ; Weak Pull Up ; I/O Standard ; Termination ; Termination Control Block ; Location assigned by ;
+-----------------+-------+----------+--------------+--------------+--------------+-----------------------+--------------------+--------+-----------------+----------+--------------+--------------+-------------+---------------------------+----------------------+
; clk             ; AF14  ; 3B       ; 32           ; 0            ; 0            ; 591                   ; 0                  ; yes    ; no              ; no       ; Off          ; 2.5 V        ; Off         ; --                        ; User                 ;
; team1_hl_button ; AA15  ; 3B       ; 36           ; 0            ; 17           ; 4                     ; 0                  ; no     ; no              ; no       ; Off          ; 2.5 V        ; Off         ; --                        ; User                 ;
; team1_hr_button ; AA14  ; 3B       ; 36           ; 0            ; 0            ; 4                     ; 0                  ; no     ; no              ; no       ; Off          ; 2.5 V        ; Off         ; --                        ; User                 ;
; team1_vd_button ; W15   ; 3B       ; 40           ; 0            ; 0            ; 7                     ; 0                  ; no     ; no              ; no       ; Off          ; 2.5 V        ; Off         ; --                        ; User                 ;
; team1_vu_button ; Y16   ; 3B       ; 40           ; 0            ; 17           ; 7                     ; 0                  ; no     ; no              ; no       ; Off          ; 2.5 V        ; Off         ; --                        ; User                 ;
; team2_hl_button ; AF19  ; 4A       ; 62           ; 0            ; 0            ; 4                     ; 0                  ; no     ; no              ; no       ; Off          ; 2.5 V        ; Off         ; --                        ; User                 ;
; team2_hr_button ; AF20  ; 4A       ; 70           ; 0            ; 0            ; 4                     ; 0                  ; no     ; no              ; no       ; Off          ; 2.5 V        ; Off         ; --                        ; User                 ;
; team2_vd_button ; AF18  ; 4A       ; 50           ; 0            ; 57           ; 7                     ; 0                  ; no     ; no              ; no       ; Off          ; 2.5 V        ; Off         ; --                        ; User                 ;
; team2_vu_button ; AG18  ; 4A       ; 58           ; 0            ; 74           ; 7                     ; 0                  ; no     ; no              ; no       ; Off          ; 2.5 V        ; Off         ; --                        ; User                 ;
+-----------------+-------+----------+--------------+--------------+--------------+-----------------------+--------------------+--------+-----------------+----------+--------------+--------------+-------------+---------------------------+----------------------+


+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Output Pins                                                                                                                                                                                                                                                                                                                                                                                                                                                          ;
+----------+-------+----------+--------------+--------------+--------------+-----------------+-----------+-----------------+------------+---------------+----------+--------------+--------------+------------------+-----------------------------------+---------------------------+----------------------------+-----------------------------+---------------------+-----------------------------+----------------------+----------------------+---------------------+
; Name     ; Pin # ; I/O Bank ; X coordinate ; Y coordinate ; Z coordinate ; Output Register ; Slew Rate ; PCI I/O Enabled ; Open Drain ; TRI Primitive ; Bus Hold ; Weak Pull Up ; I/O Standard ; Current Strength ; Termination                       ; Termination Control Block ; Output Buffer Pre-emphasis ; Voltage Output Differential ; Output Buffer Delay ; Output Buffer Delay Control ; Location assigned by ; Output Enable Source ; Output Enable Group ;
+----------+-------+----------+--------------+--------------+--------------+-----------------+-----------+-----------------+------------+---------------+----------+--------------+--------------+------------------+-----------------------------------+---------------------------+----------------------------+-----------------------------+---------------------+-----------------------------+----------------------+----------------------+---------------------+
; blue[0]  ; B13   ; 8A       ; 40           ; 81           ; 34           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; blue[1]  ; G13   ; 8A       ; 28           ; 81           ; 17           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; blue[2]  ; H13   ; 8A       ; 20           ; 81           ; 0            ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; blue[3]  ; F14   ; 8A       ; 36           ; 81           ; 17           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; blue[4]  ; H14   ; 8A       ; 28           ; 81           ; 0            ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; blue[5]  ; F15   ; 8A       ; 36           ; 81           ; 0            ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; blue[6]  ; G15   ; 8A       ; 40           ; 81           ; 17           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; blue[7]  ; J14   ; 8A       ; 32           ; 81           ; 17           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; green[0] ; J9    ; 8A       ; 4            ; 81           ; 17           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; green[1] ; J10   ; 8A       ; 4            ; 81           ; 0            ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; green[2] ; H12   ; 8A       ; 20           ; 81           ; 17           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; green[3] ; G10   ; 8A       ; 6            ; 81           ; 0            ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; green[4] ; G11   ; 8A       ; 10           ; 81           ; 57           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; green[5] ; G12   ; 8A       ; 10           ; 81           ; 40           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; green[6] ; F11   ; 8A       ; 18           ; 81           ; 40           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; green[7] ; E11   ; 8A       ; 18           ; 81           ; 57           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; hor_sync ; B11   ; 8A       ; 36           ; 81           ; 51           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; red[0]   ; A13   ; 8A       ; 40           ; 81           ; 51           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; red[1]   ; C13   ; 8A       ; 38           ; 81           ; 0            ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; red[2]   ; E13   ; 8A       ; 26           ; 81           ; 57           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; red[3]   ; B12   ; 8A       ; 38           ; 81           ; 17           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; red[4]   ; C12   ; 8A       ; 36           ; 81           ; 34           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; red[5]   ; D12   ; 8A       ; 22           ; 81           ; 17           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; red[6]   ; E12   ; 8A       ; 22           ; 81           ; 0            ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; red[7]   ; F13   ; 8A       ; 26           ; 81           ; 40           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; ver_sync ; D11   ; 8A       ; 34           ; 81           ; 40           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; vga_clk  ; A11   ; 8A       ; 38           ; 81           ; 34           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
+----------+-------+----------+--------------+--------------+--------------+-----------------+-----------+-----------------+------------+---------------+----------+--------------+--------------+------------------+-----------------------------------+---------------------------+----------------------------+-----------------------------+---------------------+-----------------------------+----------------------+----------------------+---------------------+


+----------------------------------------------------------------------------+
; I/O Bank Usage                                                             ;
+----------+------------------+---------------+--------------+---------------+
; I/O Bank ; Usage            ; VCCIO Voltage ; VREF Voltage ; VCCPD Voltage ;
+----------+------------------+---------------+--------------+---------------+
; B2L      ; 0 / 0 ( -- )     ; --            ; --           ; --            ;
; B1L      ; 0 / 0 ( -- )     ; --            ; --           ; --            ;
; 3A       ; 0 / 32 ( 0 % )   ; 2.5V          ; --           ; 2.5V          ;
; 3B       ; 5 / 48 ( 10 % )  ; 2.5V          ; --           ; 2.5V          ;
; 4A       ; 4 / 80 ( 5 % )   ; 2.5V          ; --           ; 2.5V          ;
; 5A       ; 0 / 32 ( 0 % )   ; 2.5V          ; --           ; 2.5V          ;
; 5B       ; 0 / 16 ( 0 % )   ; 2.5V          ; --           ; 2.5V          ;
; 6B       ; 0 / 45 ( 0 % )   ; 2.5V          ; --           ; 2.5V          ;
; 6A       ; 0 / 57 ( 0 % )   ; 2.5V          ; --           ; 2.5V          ;
; 7A       ; 0 / 19 ( 0 % )   ; 2.5V          ; --           ; 2.5V          ;
; 7B       ; 0 / 22 ( 0 % )   ; 2.5V          ; --           ; 2.5V          ;
; 7C       ; 0 / 12 ( 0 % )   ; 2.5V          ; --           ; 2.5V          ;
; 7D       ; 0 / 14 ( 0 % )   ; 2.5V          ; --           ; 2.5V          ;
; 8A       ; 27 / 80 ( 34 % ) ; 2.5V          ; --           ; 2.5V          ;
+----------+------------------+---------------+--------------+---------------+


+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; All Package Pins                                                                                                                                                            ;
+----------+------------+----------+---------------------------------+--------+--------------+---------------------+--------------+-----------------+----------+--------------+
; Location ; Pad Number ; I/O Bank ; Pin Name/Usage                  ; Dir.   ; I/O Standard ; Voltage             ; I/O Type     ; User Assignment ; Bus Hold ; Weak Pull Up ;
+----------+------------+----------+---------------------------------+--------+--------------+---------------------+--------------+-----------------+----------+--------------+
; A2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; A3       ; 493        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A4       ; 491        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A5       ; 489        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A6       ; 487        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A7       ;            ; 8A       ; VCCIO8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; A8       ; 473        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A9       ; 471        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A10      ; 465        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A11      ; 463        ; 8A       ; vga_clk                         ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; A12      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; A13      ; 461        ; 8A       ; red[0]                          ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; A14      ; 455        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A15      ; 447        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A16      ; 439        ; 7C       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A17      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; A18      ; 425        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A19      ; 423        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A20      ; 415        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A21      ; 411        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A22      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; A23      ; 395        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A24      ; 391        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A25      ; 389        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A26      ; 382        ; 7A       ; ^GND                            ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; A27      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; A28      ; 380        ; 7A       ; ^HPS_TRST                       ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; A29      ; 378        ; 7A       ; ^HPS_TMS                        ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; AA1      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AA2      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AA3      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AA4      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AA5      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; AA6      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AA7      ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; AA8      ;            ; --       ; VCCA_FPLL                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AA9      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AA10     ;            ; 3A       ; VCCPD3A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AA11     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AA12     ; 74         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AA13     ; 90         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AA14     ; 122        ; 3B       ; team1_hr_button                 ; input  ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; AA15     ; 120        ; 3B       ; team1_hl_button                 ; input  ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; AA16     ; 146        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AA17     ;            ; 4A       ; VCCIO4A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AA18     ; 168        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AA19     ; 176        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AA20     ; 200        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AA21     ; 210        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AA22     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AA23     ;            ; --       ; VCCPGM                          ; power  ;              ; 1.8V/2.5V/3.0V/3.3V ; --           ;                 ; --       ; --           ;
; AA24     ; 228        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AA25     ; 224        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AA26     ; 252        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AA27     ;            ; 5B       ; VCCIO5B                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AA28     ; 251        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AA29     ;            ; 5B       ; VREFB5BN0                       ; power  ;              ;                     ; --           ;                 ; --       ; --           ;
; AA30     ; 250        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AB1      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AB2      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AB3      ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; AB4      ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; AB5      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AB6      ;            ; --       ; VCCA_FPLL                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AB7      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AB8      ; 43         ; 3A       ; ^nCSO, DATA4                    ;        ;              ;                     ; Weak Pull Up ;                 ; --       ; On           ;
; AB9      ; 42         ; 3A       ; #TDO                            ; output ;              ;                     ; --           ;                 ; --       ; --           ;
; AB10     ;            ; --       ; VCCPGM                          ; power  ;              ; 1.8V/2.5V/3.0V/3.3V ; --           ;                 ; --       ; --           ;
; AB11     ;            ; --       ; VCC_AUX                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AB12     ; 72         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AB13     ; 88         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AB14     ;            ; 3B       ; VCCIO3B                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AB15     ; 106        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AB16     ;            ; --       ; VCC_AUX                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AB17     ; 144        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AB18     ;            ; --       ; VCCPD3B4A                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AB19     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AB20     ;            ; --       ; VCCPD3B4A                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AB21     ; 208        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AB22     ; 225        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AB23     ; 227        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AB24     ;            ; 5A       ; VCCIO5A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AB25     ; 230        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AB26     ; 226        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AB27     ; 254        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AB28     ; 249        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AB29     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AB30     ; 248        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AC1      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AC2      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AC3      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AC4      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AC5      ; 46         ; 3A       ; #TCK                            ; input  ;              ;                     ; --           ;                 ; --       ; --           ;
; AC6      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AC7      ; 45         ; 3A       ; ^AS_DATA3, DATA3                ;        ;              ;                     ; Weak Pull Up ;                 ; --       ; On           ;
; AC8      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AC9      ; 58         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AC10     ;            ; 3A       ; VCCPD3A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AC11     ;            ; 3A       ; VCCIO3A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AC12     ; 82         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AC13     ;            ; --       ; VCCPD3B4A                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AC14     ; 104        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AC15     ;            ; --       ; VCCPD3B4A                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AC16     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AC17     ;            ; --       ; VCCPD3B4A                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AC18     ; 162        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AC19     ;            ; --       ; VCCPD3B4A                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AC20     ; 186        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AC21     ;            ; 4A       ; VCCIO4A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AC22     ; 207        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AC23     ; 205        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AC24     ;            ; 5A       ; VREFB5AN0                       ; power  ;              ;                     ; --           ;                 ; --       ; --           ;
; AC25     ; 215        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AC26     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AC27     ; 242        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AC28     ; 245        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AC29     ; 247        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AC30     ; 259        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AD1      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AD2      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AD3      ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; AD4      ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; AD5      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AD6      ;            ; 3A       ; VREFB3AN0                       ; power  ;              ;                     ; --           ;                 ; --       ; --           ;
; AD7      ; 62         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AD8      ;            ; 3A       ; VCCIO3A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AD9      ; 55         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AD10     ; 56         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AD11     ; 54         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AD12     ; 80         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AD13     ;            ; 3B       ; VCCIO3B                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AD14     ; 98         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AD15     ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; AD16     ;            ; --       ; VCCPD3B4A                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AD17     ; 160        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AD18     ;            ; 4A       ; VCCIO4A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AD19     ; 184        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AD20     ; 199        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AD21     ; 197        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AD22     ;            ; --       ; VCC_AUX                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AD23     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AD24     ; 211        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AD25     ; 213        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AD26     ; 240        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AD27     ; 222        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AD28     ;            ; 5A       ; VCCIO5A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AD29     ; 255        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AD30     ; 257        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AE1      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AE2      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AE3      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AE4      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AE5      ; 49         ; 3A       ; ^AS_DATA1, DATA1                ;        ;              ;                     ; Weak Pull Up ;                 ; --       ; On           ;
; AE6      ; 51         ; 3A       ; ^AS_DATA0, ASDO, DATA0          ;        ;              ;                     ; Weak Pull Up ;                 ; --       ; On           ;
; AE7      ; 60         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AE8      ; 47         ; 3A       ; ^AS_DATA2, DATA2                ;        ;              ;                     ; Weak Pull Up ;                 ; --       ; On           ;
; AE9      ; 53         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AE10     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AE11     ; 59         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AE12     ; 52         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AE13     ; 95         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AE14     ; 96         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AE15     ;            ; 3B       ; VCCIO3B                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AE16     ; 139        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AE17     ; 135        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AE18     ; 167        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AE19     ; 165        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AE20     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AE21     ;            ; --       ; VCCPD3B4A                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AE22     ; 191        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AE23     ; 189        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AE24     ; 209        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AE25     ;            ; 4A       ; VCCIO4A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AE26     ; 220        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AE27     ; 229        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AE28     ; 231        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AE29     ; 253        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AE30     ;            ; 5B       ; VCCIO5B                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AF1      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AF2      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AF3      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AF4      ; 66         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF5      ; 64         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF6      ; 75         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF7      ;            ; 3A       ; VCCIO3A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AF8      ; 70         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF9      ; 67         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF10     ; 57         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF11     ; 87         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF12     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AF13     ; 93         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF14     ; 114        ; 3B       ; clk                             ; input  ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; AF15     ; 112        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF16     ; 137        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF17     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AF18     ; 133        ; 4A       ; team2_vd_button                 ; input  ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; AF19     ; 159        ; 4A       ; team2_hl_button                 ; input  ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; AF20     ; 175        ; 4A       ; team2_hr_button                 ; input  ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; AF21     ; 173        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF22     ;            ; 4A       ; VCCIO4A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AF23     ; 183        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF24     ; 181        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF25     ; 206        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF26     ; 204        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF27     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AF28     ; 235        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AF29     ; 237        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AF30     ; 239        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AG1      ; 71         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG2      ; 83         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG3      ; 63         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG4      ;            ; 3A       ; VCCIO3A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AG5      ; 78         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG6      ; 73         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG7      ; 68         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG8      ; 65         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG9      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AG10     ; 86         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG11     ; 85         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG12     ; 103        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG13     ; 101        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG14     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AG15     ; 127        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG16     ; 134        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG17     ; 132        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG18     ; 150        ; 4A       ; team2_vu_button                 ; input  ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; AG19     ;            ; 4A       ; VCCIO4A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AG20     ; 157        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG21     ; 143        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG22     ; 166        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG23     ; 163        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG24     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AG25     ; 190        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG26     ; 203        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG27     ; 212        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AG28     ; 233        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AG29     ;            ; 5A       ; VCCIO5A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AG30     ; 243        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AH1      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AH2      ; 69         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH3      ; 81         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH4      ; 61         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH5      ; 76         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH6      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AH7      ; 115        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH8      ; 113        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH9      ; 84         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH10     ; 118        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH11     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AH12     ; 126        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH13     ; 111        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH14     ; 109        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH15     ; 125        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH16     ;            ; 4A       ; VCCIO4A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AH17     ; 147        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH18     ; 145        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH19     ; 148        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH20     ; 141        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH21     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AH22     ; 164        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH23     ; 174        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH24     ; 161        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH25     ; 188        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH26     ;            ; 4A       ; VCCIO4A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AH27     ; 201        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH28     ; 214        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AH29     ; 218        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AH30     ; 241        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AJ1      ; 79         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ2      ; 77         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ3      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AJ4      ; 94         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ5      ; 99         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ6      ; 102        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ7      ; 100        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ8      ;            ; 3B       ; VCCIO3B                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AJ9      ; 110        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ10     ; 116        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ11     ; 119        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ12     ; 124        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ13     ;            ; 3B       ; VCCIO3B                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AJ14     ; 131        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ15     ;            ; 3B       ; VREFB3BN0                       ; power  ;              ;                     ; --           ;                 ; --       ; --           ;
; AJ16     ; 142        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ17     ; 151        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ18     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AJ19     ; 155        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ20     ; 158        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ21     ; 156        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ22     ; 172        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ23     ;            ; 4A       ; VCCIO4A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AJ24     ; 182        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ25     ; 180        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ26     ; 187        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ27     ; 195        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ28     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AJ29     ; 216        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AJ30     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AK2      ; 91         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK3      ; 89         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK4      ; 92         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK5      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AK6      ; 97         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK7      ; 107        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK8      ; 105        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK9      ; 108        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK10     ;            ; 3B       ; VCCIO3B                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AK11     ; 117        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK12     ; 123        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK13     ; 121        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK14     ; 129        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK15     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AK16     ; 140        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK17     ;            ; 4A       ; VREFB4AN0                       ; power  ;              ;                     ; --           ;                 ; --       ; --           ;
; AK18     ; 149        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK19     ; 153        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK20     ;            ; 4A       ; VCCIO4A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AK21     ; 171        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK22     ; 169        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK23     ; 179        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK24     ; 177        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK25     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AK26     ; 185        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK27     ; 193        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK28     ; 198        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK29     ; 196        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B1       ; 509        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B2       ; 507        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B3       ; 513        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B4       ;            ; 8A       ; VCCIO8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; B5       ; 512        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B6       ; 510        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B7       ; 477        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B8       ; 481        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B9       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; B10      ;            ; 8A       ; VREFB8AN0                       ; power  ;              ;                     ; --           ;                 ; --       ; --           ;
; B11      ; 469        ; 8A       ; hor_sync                        ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; B12      ; 464        ; 8A       ; red[3]                          ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; B13      ; 459        ; 8A       ; blue[0]                         ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; B14      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; B15      ; 451        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B16      ; 441        ; 7C       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B17      ; 431        ; 7C       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B18      ; 418        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B19      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; B20      ; 417        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B21      ; 413        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B22      ; 399        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B23      ; 397        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B24      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; B25      ; 387        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B26      ; 386        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B27      ; 381        ; 7A       ; ^HPS_TDI                        ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; B28      ; 376        ; 7A       ; ^HPS_TDO                        ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; B29      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; B30      ; 365        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; C1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; C2       ; 517        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C3       ; 511        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C4       ; 501        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C5       ; 497        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C6       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; C7       ; 475        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C8       ; 479        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C9       ; 485        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C10      ; 483        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C11      ;            ; 8A       ; VCCIO8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; C12      ; 467        ; 8A       ; red[4]                          ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; C13      ; 462        ; 8A       ; red[1]                          ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; C14      ; 448        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C15      ; 453        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C16      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; C17      ; 433        ; 7C       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C18      ; 435        ; 7C       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C19      ; 427        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C20      ; 421        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C21      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; C22      ; 396        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C23      ; 401        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C24      ; 393        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C25      ; 388        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C26      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; C27      ; 374        ; 7A       ; ^HPS_nRST                       ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; C28      ; 369        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; C29      ; 367        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; C30      ; 363        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; D1       ; 529        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D2       ; 515        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D3       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; D4       ; 521        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D5       ; 499        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D6       ; 495        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D7       ; 505        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D8       ;            ; 8A       ; VCCIO8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; D9       ; 480        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D10      ; 472        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D11      ; 470        ; 8A       ; ver_sync                        ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; D12      ; 496        ; 8A       ; red[5]                          ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; D13      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; D14      ; 446        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D15      ; 449        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D16      ; 445        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D17      ; 440        ; 7C       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D18      ;            ; 7C       ; VCCIO7C_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; D19      ; 426        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D20      ; 420        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D21      ; 419        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D22      ; 402        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D23      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; D24      ; 404        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D25      ; 384        ; 7A       ; ^HPS_CLK1                       ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; D26      ; 373        ; 7A       ; ^GND                            ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; D27      ; 371        ; 6A       ; HPS_RZQ_0                       ;        ;              ;                     ; --           ;                 ; no       ; On           ;
; D28      ;            ; 6A       ; VCCIO6A_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; D29      ; 361        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; D30      ; 359        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; E1       ; 527        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E2       ; 525        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E3       ; 523        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E4       ; 519        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E5       ;            ; 8A       ; VCCIO8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; E6       ; 533        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E7       ; 531        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E8       ; 503        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E9       ; 478        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E10      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; E11      ; 504        ; 8A       ; green[7]                        ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; E12      ; 494        ; 8A       ; red[6]                          ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; E13      ; 488        ; 8A       ; red[2]                          ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; E14      ; 454        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E15      ;            ; 7D       ; VCCIO7D_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; E16      ; 443        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E17      ; 438        ; 7C       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E18      ; 437        ; 7C       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E19      ; 424        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E20      ;            ; 7B       ; VCCIO7B_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; E21      ; 412        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E22      ;            ; --       ; VREFB7A7B7C7DN0_HPS             ; power  ;              ;                     ; --           ;                 ; --       ; --           ;
; E23      ; 394        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E24      ; 403        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E25      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; E26      ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; E27      ; 357        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; E28      ; 351        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; E29      ; 353        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; E30      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; F1       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; F2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; F3       ; 539        ; 9A       ; ^CONF_DONE                      ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; F4       ; 541        ; 9A       ; ^nSTATUS                        ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; F5       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; F6       ; 537        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; F7       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; F8       ; 536        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; F9       ; 534        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; F10      ; 528        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; F11      ; 502        ; 8A       ; green[6]                        ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; F12      ;            ; 8A       ; VCCIO8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; F13      ; 486        ; 8A       ; red[7]                          ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; F14      ; 468        ; 8A       ; blue[3]                         ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; F15      ; 466        ; 8A       ; blue[5]                         ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; F16      ; 442        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; F17      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; F18      ; 430        ; 7C       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; F19      ; 410        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; F20      ; 407        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; F21      ; 409        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; F22      ;            ; 7A       ; VCCIO7A_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; F23      ; 375        ; 7A       ; ^HPS_nPOR                       ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; F24      ; 383        ; 7A       ; ^HPS_PORSEL                     ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; F25      ; 385        ; 7A       ; ^HPS_CLK2                       ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; F26      ; 341        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; F27      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; F28      ; 345        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; F29      ; 349        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; F30      ; 347        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; G1       ;            ;          ; GND                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; G2       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; G3       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; G4       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; G5       ; 542        ; 9A       ; ^nCE                            ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; G6       ; 543        ; 9A       ; ^MSEL2                          ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; G7       ; 535        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; G8       ; 492        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; G9       ;            ; 8A       ; VCCIO8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; G10      ; 526        ; 8A       ; green[3]                        ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; G11      ; 520        ; 8A       ; green[4]                        ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; G12      ; 518        ; 8A       ; green[5]                        ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; G13      ; 484        ; 8A       ; blue[1]                         ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; G14      ;            ; 8A       ; VCCIO8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; G15      ; 460        ; 8A       ; blue[6]                         ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; G16      ; 444        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; G17      ; 436        ; 7C       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; G18      ; 432        ; 7C       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; G19      ;            ; 7B       ; VCCIO7B_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; G20      ; 416        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; G21      ; 392        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; G22      ; 400        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; G23      ; 377        ; 7A       ; ^VCCRSTCLK_HPS                  ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; G24      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; G25      ; 370        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; G26      ; 362        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; G27      ; 339        ; 6A       ; GND+                            ;        ;              ;                     ; Row I/O      ;                 ; --       ; --           ;
; G28      ; 335        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; G29      ;            ; 6A       ; VCCIO6A_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; G30      ; 343        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; H1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; H2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; H3       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; H4       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; H5       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; H6       ;            ; 8A       ; VCCIO8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; H7       ; 508        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; H8       ; 490        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; H9       ;            ; --       ; VCCBAT                          ; power  ;              ; 1.2V                ; --           ;                 ; --       ; --           ;
; H10      ;            ; --       ; VCC_AUX                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; H11      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; H12      ; 500        ; 8A       ; green[2]                        ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; H13      ; 498        ; 8A       ; blue[2]                         ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; H14      ; 482        ; 8A       ; blue[4]                         ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; H15      ; 458        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; H16      ;            ; 7D       ; VCCIO7D_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; H17      ; 434        ; 7C       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; H18      ; 422        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; H19      ; 406        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; H20      ; 398        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; H21      ;            ; 7A       ; VCCIO7A_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; H22      ; 379        ; 7A       ; ^HPS_TCK                        ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; H23      ; 390        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; H24      ; 364        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; H25      ; 368        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; H26      ;            ; 6A       ; VCCIO6A_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; H27      ; 360        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; H28      ; 333        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; H29      ; 331        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; H30      ; 337        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; J1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; J2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; J3       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; J4       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; J5       ; 545        ; 9A       ; ^nCONFIG                        ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; J6       ; 547        ; 9A       ; ^GND                            ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; J7       ; 506        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; J8       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; J9       ; 532        ; 8A       ; green[0]                        ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; J10      ; 530        ; 8A       ; green[1]                        ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; J11      ;            ; --       ; VCCPGM                          ; power  ;              ; 1.8V/2.5V/3.0V/3.3V ; --           ;                 ; --       ; --           ;
; J12      ; 516        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; J13      ;            ; 8A       ; VCCIO8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; J14      ; 476        ; 8A       ; blue[7]                         ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; J15      ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; J16      ;            ; --       ; VCC_AUX                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; J17      ;            ; 7C       ; VCCPD7C_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; J18      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; J19      ; 408        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; J20      ;            ; --       ; VCCRSTCLK_HPS                   ; power  ;              ; 1.8V/2.5V/3.0V/3.3V ; --           ;                 ; --       ; --           ;
; J21      ;            ; --       ; VCC_AUX_SHARED                  ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; J22      ; 372        ; 7A       ; ^GND                            ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; J23      ; 354        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; J24      ; 352        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; J25      ; 344        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; J26      ; 323        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; J27      ; 346        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; J28      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; J29      ; 327        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; J30      ; 329        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; K1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; K2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; K3       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; K4       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; K5       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; K6       ; 540        ; 9A       ; ^MSEL1                          ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; K7       ; 522        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; K8       ; 524        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; K9       ;            ; --       ; VCCA_FPLL                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; K10      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; K11      ;            ; 8A       ; VCCPD8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; K12      ; 514        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; K13      ;            ; 8A       ; VCCPD8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; K14      ; 474        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; K15      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; K16      ;            ; 7D       ; VCCPD7D_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; K17      ; 414        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; K18      ;            ; 7B       ; VCCPD7B_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; K19      ;            ; 7A       ; VCCPD7A_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; K20      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; K21      ; 366        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; K22      ; 336        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; K23      ; 338        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; K24      ;            ; 6A       ; VCCIO6A_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; K25      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; K26      ; 322        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; K27      ; 319        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; K28      ; 325        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; K29      ; 321        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; K30      ;            ; 6A       ; VCCIO6A_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; L1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; L2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; L3       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; L4       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; L5       ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; L6       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; L7       ; 544        ; 9A       ; ^MSEL3                          ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; L8       ; 538        ; 9A       ; ^MSEL0                          ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; L9       ; 546        ; 9A       ; ^MSEL4                          ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; L10      ;            ; 8A       ; VCCPD8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; L11      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; L12      ;            ; 8A       ; VCCPD8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; L13      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; L14      ;            ; 8A       ; VCCPD8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; L15      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; L16      ;            ; --       ; VCC_HPS                         ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; L17      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; L18      ;            ; --       ; VCC_HPS                         ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; L19      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; L20      ;            ; --       ; VCC_HPS                         ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; L21      ;            ; --       ; VCCPLL_HPS                      ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; L22      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; L23      ; 350        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; L24      ; 328        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; L25      ; 330        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; L26      ; 320        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; L27      ;            ; 6A       ; VCCIO6A_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; L28      ; 313        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; L29      ; 315        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; L30      ; 317        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; M1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; M2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; M3       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; M4       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; M5       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; M6       ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; M7       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; M8       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; M9       ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; M10      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; M11      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; M12      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; M13      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; M14      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; M15      ;            ; --       ; VCC_HPS                         ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; M16      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; M17      ; 450        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; M18      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; M19      ; 334        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; M20      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; M21      ;            ; --       ; VCCPD6A6B_HPS                   ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; M22      ; 308        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; M23      ; 348        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; M24      ;            ; 6A       ; VCCIO6A_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; M25      ; 324        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; M26      ; 314        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; M27      ; 312        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; M28      ; 309        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; M29      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; M30      ; 311        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; N1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; N2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; N3       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; N4       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; N5       ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; N6       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; N7       ;            ; --       ; VCCA_FPLL                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; N8       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; N9       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; N10      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; N11      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; N12      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; N13      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; N14      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; N15      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; N16      ; 452        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; N17      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; N18      ; 332        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; N19      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; N20      ;            ; --       ; VCC_HPS                         ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; N21      ;            ; 6A       ; VCCIO6A_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; N22      ;            ; --       ; VCCPD6A6B_HPS                   ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; N23      ; 310        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; N24      ; 318        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; N25      ; 316        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; N26      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; N27      ; 297        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; N28      ; 303        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; N29      ; 305        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; N30      ; 307        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; P1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; P2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; P3       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; P4       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; P5       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; P6       ;            ; --       ; VCCA_FPLL                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; P7       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; P8       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; P9       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; P10      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; P11      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; P12      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; P13      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; P14      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; P15      ;            ; --       ; VCC_HPS                         ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; P16      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; P17      ;            ; --       ; VCC_HPS                         ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; P18      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; P19      ;            ; --       ; VCC_HPS                         ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; P20      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; P21      ;            ; --       ; VCCPD6A6B_HPS                   ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; P22      ; 294        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; P23      ;            ; 6B       ; VCCIO6B_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; P24      ; 290        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; P25      ; 288        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; P26      ; 298        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; P27      ; 296        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; P28      ;            ; 6B       ; VCCIO6B_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; P29      ; 299        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; P30      ; 301        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; R1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; R2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; R3       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; R4       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; R5       ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; R6       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; R7       ;            ; --       ; VCCA_FPLL                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; R8       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; R9       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; R10      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; R11      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; R12      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; R13      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; R14      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; R15      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; R16      ;            ; --       ; VCC_HPS                         ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; R17      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; R18      ; 302        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; R19      ; 300        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; R20      ;            ; --       ; VCCPD6A6B_HPS                   ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; R21      ; 286        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; R22      ; 284        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; R23      ;            ; --       ; VCCPD6A6B_HPS                   ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; R24      ; 272        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; R25      ;            ; 6B       ; VCCIO6B_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; R26      ; 280        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; R27      ; 282        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; R28      ; 293        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; R29      ; 295        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; R30      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T3       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; T4       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; T5       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T6       ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; T7       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T8       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T9       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T10      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T11      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; T12      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T13      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; T14      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T15      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T16      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T17      ;            ; --       ; VCC_HPS                         ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; T18      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T19      ;            ; --       ; VCC_HPS                         ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; T20      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T21      ; 278        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; T22      ;            ; 6B       ; VCCIO6B_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; T23      ; 270        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; T24      ; 268        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; T25      ; 266        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; T26      ; 304        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; T27      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T28      ; 287        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; T29      ; 289        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; T30      ; 291        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; U1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; U2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; U3       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; U4       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; U5       ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; U6       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; U7       ; 50         ; 3A       ; ^DCLK                           ;        ;              ;                     ; Weak Pull Up ;                 ; --       ; On           ;
; U8       ; 48         ; 3A       ; #TDI                            ; input  ;              ;                     ; --           ;                 ; --       ; --           ;
; U9       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; U10      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; U11      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; U12      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; U13      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; U14      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; U15      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; U16      ;            ; --       ; VCC_HPS                         ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; U17      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; U18      ;            ; --       ; VCC_HPS                         ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; U19      ;            ; 6B       ; VCCIO6B_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; U20      ; 276        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; U21      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; U22      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; U23      ;            ; 5B       ; VCCPD5B                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; U24      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; U25      ; 264        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; U26      ; 306        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; U27      ; 273        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; U28      ; 285        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; U29      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; U30      ; 283        ; 6B       ; GND+                            ;        ;              ;                     ; Row I/O      ;                 ; --       ; --           ;
; V1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; V2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; V3       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; V4       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; V5       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; V6       ;            ; --       ; VCCA_FPLL                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; V7       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; V8       ;            ; --       ; VCCA_FPLL                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; V9       ; 44         ; 3A       ; #TMS                            ; input  ;              ;                     ; --           ;                 ; --       ; --           ;
; V10      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; V11      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; V12      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; V13      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; V14      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; V15      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; V16      ; 138        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; V17      ; 154        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; V18      ; 194        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; V19      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; V20      ; 292        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; V21      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; V22      ;            ; 5A       ; VCCPD5A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; V23      ; 236        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; V24      ;            ; 5A       ; VCCPD5A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; V25      ; 246        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; V26      ;            ; 6B       ; VCCIO6B_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; V27      ; 265        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; V28      ; 271        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; V29      ; 275        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; V30      ; 281        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; W1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; W2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; W3       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; W4       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; W5       ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; W6       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; W7       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; W8       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; W9       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; W10      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; W11      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; W12      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; W13      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; W14      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; W15      ; 130        ; 3B       ; team1_vd_button                 ; input  ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; W16      ; 136        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; W17      ; 152        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; W18      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; W19      ; 192        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; W20      ; 217        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; W21      ; 221        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; W22      ; 223        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; W23      ;            ; 5A       ; VCCIO5A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; W24      ; 238        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; W25      ; 244        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; W26      ; 274        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; W27      ; 261        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; W28      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; W29      ; 279        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; W30      ; 277        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; Y1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; Y2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; Y3       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; Y4       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; Y5       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; Y6       ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; Y7       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; Y8       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; Y9       ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; Y10      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; Y11      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; Y12      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; Y13      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; Y14      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; Y15      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; Y16      ; 128        ; 3B       ; team1_vu_button                 ; input  ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; Y17      ; 170        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; Y18      ; 178        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; Y19      ; 202        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; Y20      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; Y21      ; 219        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; Y22      ;            ; --       ; VCCA_FPLL                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; Y23      ; 232        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; Y24      ; 234        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; Y25      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; Y26      ; 256        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; Y27      ; 258        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; Y28      ; 269        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; Y29      ; 263        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; Y30      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
+----------+------------+----------+---------------------------------+--------+--------------+---------------------+--------------+-----------------+----------+--------------+
Note: Pin directions (input, output or bidir) are based on device operating in user mode.


+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Fitter Resource Utilization by Entity                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ;
+----------------------------------------------+----------------------+----------------------------------+---------------------------------------------------+----------------------------------+----------------------+---------------------+---------------------------+---------------+-------------------+-------+------------+------+--------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------+
; Compilation Hierarchy Node                   ; ALMs needed [=A-B+C] ; [A] ALMs used in final placement ; [B] Estimate of ALMs recoverable by dense packing ; [C] Estimate of ALMs unavailable ; ALMs used for memory ; Combinational ALUTs ; Dedicated Logic Registers ; I/O Registers ; Block Memory Bits ; M10Ks ; DSP Blocks ; Pins ; Virtual Pins ; Full Hierarchy Name                                                                                                                    ; Library Name ;
+----------------------------------------------+----------------------+----------------------------------+---------------------------------------------------+----------------------------------+----------------------+---------------------+---------------------------+---------------+-------------------+-------+------------+------+--------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------+
; |fakequidditch                               ; 2115.0 (24.0)        ; 2115.0 (24.0)                    ; 91.5 (0.0)                                        ; 91.5 (0.0)                       ; 0.0 (0.0)            ; 3648 (41)           ; 591 (33)                  ; 0 (0)         ; 0                 ; 0     ; 87         ; 36   ; 0            ; |fakequidditch                                                                                                                         ; work         ;
;    |game_controller:game_ctrl|               ; 1200.3 (40.9)        ; 1219.2 (47.7)                    ; 63.7 (8.0)                                        ; 44.8 (1.3)                       ; 0.0 (0.0)            ; 2049 (73)           ; 493 (60)                  ; 0 (0)         ; 0                 ; 0     ; 32         ; 0    ; 0            ; |fakequidditch|game_controller:game_ctrl                                                                                               ; work         ;
;       |ball_controller_furkan:ball_ctrl|     ; 746.8 (746.8)        ; 749.5 (749.5)                    ; 28.7 (28.7)                                       ; 25.9 (25.9)                      ; 0.0 (0.0)            ; 1232 (1232)         ; 94 (94)                   ; 0 (0)         ; 0                 ; 0     ; 20         ; 0    ; 0            ; |fakequidditch|game_controller:game_ctrl|ball_controller_furkan:ball_ctrl                                                              ; work         ;
;       |hor_player_controller:team1_hor_ctrl| ; 102.9 (102.9)        ; 105.9 (105.9)                    ; 6.8 (6.8)                                         ; 3.8 (3.8)                        ; 0.0 (0.0)            ; 186 (186)           ; 83 (83)                   ; 0 (0)         ; 0                 ; 0     ; 3          ; 0    ; 0            ; |fakequidditch|game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl                                                          ; work         ;
;       |hor_player_controller:team2_hor_ctrl| ; 101.2 (101.2)        ; 106.6 (106.6)                    ; 8.6 (8.6)                                         ; 3.2 (3.2)                        ; 0.0 (0.0)            ; 184 (184)           ; 81 (81)                   ; 0 (0)         ; 0                 ; 0     ; 3          ; 0    ; 0            ; |fakequidditch|game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl                                                          ; work         ;
;       |ver_player_controller:team1_ver_ctrl| ; 105.6 (105.6)        ; 106.8 (106.8)                    ; 7.2 (7.2)                                         ; 5.9 (5.9)                        ; 0.0 (0.0)            ; 187 (187)           ; 87 (87)                   ; 0 (0)         ; 0                 ; 0     ; 3          ; 0    ; 0            ; |fakequidditch|game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl                                                          ; work         ;
;       |ver_player_controller:team2_ver_ctrl| ; 102.9 (102.9)        ; 102.7 (102.7)                    ; 4.5 (4.5)                                         ; 4.8 (4.8)                        ; 0.0 (0.0)            ; 187 (187)           ; 88 (88)                   ; 0 (0)         ; 0                 ; 0     ; 3          ; 0    ; 0            ; |fakequidditch|game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl                                                          ; work         ;
;    |vga_controller:vga_cont|                 ; 890.7 (759.4)        ; 871.8 (742.5)                    ; 27.8 (29.0)                                       ; 46.7 (45.9)                      ; 0.0 (0.0)            ; 1558 (1296)         ; 65 (65)                   ; 0 (0)         ; 0                 ; 0     ; 55         ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont                                                                                                 ; work         ;
;       |lpm_divide:Div0|                      ; 19.3 (0.0)           ; 19.0 (0.0)                       ; 0.0 (0.0)                                         ; 0.3 (0.0)                        ; 0.0 (0.0)            ; 38 (0)              ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Div0                                                                                 ; work         ;
;          |lpm_divide_7am:auto_generated|     ; 19.3 (0.0)           ; 19.0 (0.0)                       ; 0.0 (0.0)                                         ; 0.3 (0.0)                        ; 0.0 (0.0)            ; 38 (0)              ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Div0|lpm_divide_7am:auto_generated                                                   ; work         ;
;             |sign_div_unsign_dkh:divider|    ; 19.3 (0.0)           ; 19.0 (0.0)                       ; 0.0 (0.0)                                         ; 0.3 (0.0)                        ; 0.0 (0.0)            ; 38 (0)              ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Div0|lpm_divide_7am:auto_generated|sign_div_unsign_dkh:divider                       ; work         ;
;                |alt_u_div_0te:divider|       ; 19.3 (19.3)          ; 19.0 (19.0)                      ; 0.0 (0.0)                                         ; 0.3 (0.3)                        ; 0.0 (0.0)            ; 38 (38)             ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Div0|lpm_divide_7am:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider ; work         ;
;       |lpm_divide:Div1|                      ; 12.5 (0.0)           ; 13.0 (0.0)                       ; 0.5 (0.0)                                         ; 0.0 (0.0)                        ; 0.0 (0.0)            ; 25 (0)              ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Div1                                                                                 ; work         ;
;          |lpm_divide_3am:auto_generated|     ; 12.5 (0.0)           ; 13.0 (0.0)                       ; 0.5 (0.0)                                         ; 0.0 (0.0)                        ; 0.0 (0.0)            ; 25 (0)              ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Div1|lpm_divide_3am:auto_generated                                                   ; work         ;
;             |sign_div_unsign_9kh:divider|    ; 12.5 (0.0)           ; 13.0 (0.0)                       ; 0.5 (0.0)                                         ; 0.0 (0.0)                        ; 0.0 (0.0)            ; 25 (0)              ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Div1|lpm_divide_3am:auto_generated|sign_div_unsign_9kh:divider                       ; work         ;
;                |alt_u_div_ose:divider|       ; 12.5 (12.5)          ; 13.0 (13.0)                      ; 0.5 (0.5)                                         ; 0.0 (0.0)                        ; 0.0 (0.0)            ; 25 (25)             ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Div1|lpm_divide_3am:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider ; work         ;
;       |lpm_divide:Div2|                      ; 13.5 (0.0)           ; 13.5 (0.0)                       ; 0.0 (0.0)                                         ; 0.0 (0.0)                        ; 0.0 (0.0)            ; 27 (0)              ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Div2                                                                                 ; work         ;
;          |lpm_divide_3am:auto_generated|     ; 13.5 (0.0)           ; 13.5 (0.0)                       ; 0.0 (0.0)                                         ; 0.0 (0.0)                        ; 0.0 (0.0)            ; 27 (0)              ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Div2|lpm_divide_3am:auto_generated                                                   ; work         ;
;             |sign_div_unsign_9kh:divider|    ; 13.5 (0.0)           ; 13.5 (0.0)                       ; 0.0 (0.0)                                         ; 0.0 (0.0)                        ; 0.0 (0.0)            ; 27 (0)              ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Div2|lpm_divide_3am:auto_generated|sign_div_unsign_9kh:divider                       ; work         ;
;                |alt_u_div_ose:divider|       ; 13.5 (13.5)          ; 13.5 (13.5)                      ; 0.0 (0.0)                                         ; 0.0 (0.0)                        ; 0.0 (0.0)            ; 27 (27)             ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Div2|lpm_divide_3am:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider ; work         ;
;       |lpm_divide:Div3|                      ; 13.5 (0.0)           ; 13.5 (0.0)                       ; 0.0 (0.0)                                         ; 0.0 (0.0)                        ; 0.0 (0.0)            ; 27 (0)              ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Div3                                                                                 ; work         ;
;          |lpm_divide_3am:auto_generated|     ; 13.5 (0.0)           ; 13.5 (0.0)                       ; 0.0 (0.0)                                         ; 0.0 (0.0)                        ; 0.0 (0.0)            ; 27 (0)              ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Div3|lpm_divide_3am:auto_generated                                                   ; work         ;
;             |sign_div_unsign_9kh:divider|    ; 13.5 (0.0)           ; 13.5 (0.0)                       ; 0.0 (0.0)                                         ; 0.0 (0.0)                        ; 0.0 (0.0)            ; 27 (0)              ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Div3|lpm_divide_3am:auto_generated|sign_div_unsign_9kh:divider                       ; work         ;
;                |alt_u_div_ose:divider|       ; 13.5 (13.5)          ; 13.5 (13.5)                      ; 0.0 (0.0)                                         ; 0.0 (0.0)                        ; 0.0 (0.0)            ; 27 (27)             ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Div3|lpm_divide_3am:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider ; work         ;
;       |lpm_divide:Mod0|                      ; 24.4 (0.0)           ; 24.0 (0.0)                       ; 0.0 (0.0)                                         ; 0.4 (0.0)                        ; 0.0 (0.0)            ; 54 (0)              ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Mod0                                                                                 ; work         ;
;          |lpm_divide_a2m:auto_generated|     ; 24.4 (0.0)           ; 24.0 (0.0)                       ; 0.0 (0.0)                                         ; 0.4 (0.0)                        ; 0.0 (0.0)            ; 54 (0)              ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated                                                   ; work         ;
;             |sign_div_unsign_dkh:divider|    ; 24.4 (0.0)           ; 24.0 (0.0)                       ; 0.0 (0.0)                                         ; 0.4 (0.0)                        ; 0.0 (0.0)            ; 54 (0)              ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated|sign_div_unsign_dkh:divider                       ; work         ;
;                |alt_u_div_0te:divider|       ; 24.4 (24.4)          ; 24.0 (24.0)                      ; 0.0 (0.0)                                         ; 0.4 (0.4)                        ; 0.0 (0.0)            ; 54 (54)             ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider ; work         ;
;       |lpm_divide:Mod1|                      ; 15.6 (0.0)           ; 15.5 (0.0)                       ; 0.0 (0.0)                                         ; 0.1 (0.0)                        ; 0.0 (0.0)            ; 29 (0)              ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Mod1                                                                                 ; work         ;
;          |lpm_divide_62m:auto_generated|     ; 15.6 (0.0)           ; 15.5 (0.0)                       ; 0.0 (0.0)                                         ; 0.1 (0.0)                        ; 0.0 (0.0)            ; 29 (0)              ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Mod1|lpm_divide_62m:auto_generated                                                   ; work         ;
;             |sign_div_unsign_9kh:divider|    ; 15.6 (0.0)           ; 15.5 (0.0)                       ; 0.0 (0.0)                                         ; 0.1 (0.0)                        ; 0.0 (0.0)            ; 29 (0)              ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Mod1|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider                       ; work         ;
;                |alt_u_div_ose:divider|       ; 15.6 (15.6)          ; 15.5 (15.5)                      ; 0.0 (0.0)                                         ; 0.1 (0.1)                        ; 0.0 (0.0)            ; 29 (29)             ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Mod1|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider ; work         ;
;       |lpm_divide:Mod2|                      ; 14.0 (0.0)           ; 14.0 (0.0)                       ; 0.0 (0.0)                                         ; 0.0 (0.0)                        ; 0.0 (0.0)            ; 31 (0)              ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Mod2                                                                                 ; work         ;
;          |lpm_divide_62m:auto_generated|     ; 14.0 (0.0)           ; 14.0 (0.0)                       ; 0.0 (0.0)                                         ; 0.0 (0.0)                        ; 0.0 (0.0)            ; 31 (0)              ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Mod2|lpm_divide_62m:auto_generated                                                   ; work         ;
;             |sign_div_unsign_9kh:divider|    ; 14.0 (0.0)           ; 14.0 (0.0)                       ; 0.0 (0.0)                                         ; 0.0 (0.0)                        ; 0.0 (0.0)            ; 31 (0)              ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Mod2|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider                       ; work         ;
;                |alt_u_div_ose:divider|       ; 14.0 (14.0)          ; 14.0 (14.0)                      ; 0.0 (0.0)                                         ; 0.0 (0.0)                        ; 0.0 (0.0)            ; 31 (31)             ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Mod2|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider ; work         ;
;       |lpm_divide:Mod3|                      ; 15.7 (0.0)           ; 16.8 (0.0)                       ; 1.2 (0.0)                                         ; 0.0 (0.0)                        ; 0.0 (0.0)            ; 31 (0)              ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Mod3                                                                                 ; work         ;
;          |lpm_divide_62m:auto_generated|     ; 15.7 (0.0)           ; 16.8 (0.0)                       ; 1.2 (0.0)                                         ; 0.0 (0.0)                        ; 0.0 (0.0)            ; 31 (0)              ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Mod3|lpm_divide_62m:auto_generated                                                   ; work         ;
;             |sign_div_unsign_9kh:divider|    ; 15.7 (0.0)           ; 16.8 (0.0)                       ; 1.2 (0.0)                                         ; 0.0 (0.0)                        ; 0.0 (0.0)            ; 31 (0)              ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Mod3|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider                       ; work         ;
;                |alt_u_div_ose:divider|       ; 15.7 (15.7)          ; 16.8 (16.8)                      ; 1.2 (1.2)                                         ; 0.0 (0.0)                        ; 0.0 (0.0)            ; 31 (31)             ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Mod3|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider ; work         ;
+----------------------------------------------+----------------------+----------------------------------+---------------------------------------------------+----------------------------------+----------------------+---------------------+---------------------------+---------------+-------------------+-------+------------+------+--------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------+
Note: For table entries with two numbers listed, the numbers in parentheses indicate the number of resources of the given type used by the specific entity alone. The numbers listed outside of parentheses indicate the total resources of the given type used by the specific entity and all of its sub-entities in the hierarchy.


+--------------------------------------------------------------------------------------------------------------------------------+
; Delay Chain Summary                                                                                                            ;
+-----------------+----------+----+------+------+----+------+-------+--------+------------------------+--------------------------+
; Name            ; Pin Type ; D1 ; D3_0 ; D3_1 ; D4 ; D5   ; D5 OE ; D5 OCT ; T11 (Postamble Gating) ; T11 (Postamble Ungating) ;
+-----------------+----------+----+------+------+----+------+-------+--------+------------------------+--------------------------+
; red[0]          ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; red[1]          ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; red[2]          ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; red[3]          ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; red[4]          ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; red[5]          ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; red[6]          ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; red[7]          ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; green[0]        ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; green[1]        ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; green[2]        ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; green[3]        ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; green[4]        ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; green[5]        ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; green[6]        ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; green[7]        ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; blue[0]         ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; blue[1]         ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; blue[2]         ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; blue[3]         ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; blue[4]         ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; blue[5]         ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; blue[6]         ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; blue[7]         ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; hor_sync        ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; ver_sync        ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; vga_clk         ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; clk             ; Input    ; -- ; (0)  ; --   ; -- ; --   ; --    ; --     ; --                     ; --                       ;
; team1_vu_button ; Input    ; -- ; (0)  ; --   ; -- ; --   ; --    ; --     ; --                     ; --                       ;
; team1_vd_button ; Input    ; -- ; --   ; (0)  ; -- ; --   ; --    ; --     ; --                     ; --                       ;
; team2_vu_button ; Input    ; -- ; (0)  ; --   ; -- ; --   ; --    ; --     ; --                     ; --                       ;
; team2_vd_button ; Input    ; -- ; (0)  ; --   ; -- ; --   ; --    ; --     ; --                     ; --                       ;
; team2_hl_button ; Input    ; -- ; (0)  ; --   ; -- ; --   ; --    ; --     ; --                     ; --                       ;
; team2_hr_button ; Input    ; -- ; --   ; (0)  ; -- ; --   ; --    ; --     ; --                     ; --                       ;
; team1_hl_button ; Input    ; -- ; --   ; (0)  ; -- ; --   ; --    ; --     ; --                     ; --                       ;
; team1_hr_button ; Input    ; -- ; (0)  ; --   ; -- ; --   ; --    ; --     ; --                     ; --                       ;
+-----------------+----------+----+------+------+----+------+-------+--------+------------------------+--------------------------+


+-----------------------------------------------------------------------------------------------------------------+
; Pad To Core Delay Chain Fanout                                                                                  ;
+-----------------------------------------------------------------------------------+-------------------+---------+
; Source Pin / Fanout                                                               ; Pad To Core Index ; Setting ;
+-----------------------------------------------------------------------------------+-------------------+---------+
; clk                                                                               ;                   ;         ;
; team1_vu_button                                                                   ;                   ;         ;
;      - game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|red_score_up~0  ; 0                 ; 0       ;
;      - game_controller:game_ctrl|game_on~0                                        ; 0                 ; 0       ;
;      - game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|state~1         ; 0                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|always0~0   ; 0                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_state~5 ; 0                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|always1~7   ; 0                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_state~6 ; 0                 ; 0       ;
; team1_vd_button                                                                   ;                   ;         ;
;      - game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|red_score_up~0  ; 1                 ; 0       ;
;      - game_controller:game_ctrl|game_on~0                                        ; 1                 ; 0       ;
;      - game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|state~1         ; 1                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|always0~0   ; 1                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|always1~6   ; 1                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_state~5 ; 1                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_state~6 ; 1                 ; 0       ;
; team2_vu_button                                                                   ;                   ;         ;
;      - game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|red_score_up~0  ; 0                 ; 0       ;
;      - game_controller:game_ctrl|game_on~0                                        ; 0                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|always0~0   ; 0                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_state~5 ; 0                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|always1~7   ; 0                 ; 0       ;
;      - game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|state~1         ; 0                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_state~6 ; 0                 ; 0       ;
; team2_vd_button                                                                   ;                   ;         ;
;      - game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|red_score_up~0  ; 0                 ; 0       ;
;      - game_controller:game_ctrl|game_on~0                                        ; 0                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|always0~0   ; 0                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|always1~6   ; 0                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_state~5 ; 0                 ; 0       ;
;      - game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|state~1         ; 0                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_state~6 ; 0                 ; 0       ;
; team2_hl_button                                                                   ;                   ;         ;
;      - game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|always0~0   ; 0                 ; 0       ;
;      - game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_state~5 ; 0                 ; 0       ;
;      - game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|always1~7   ; 0                 ; 0       ;
;      - game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_state~6 ; 0                 ; 0       ;
; team2_hr_button                                                                   ;                   ;         ;
;      - game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|always0~0   ; 1                 ; 0       ;
;      - game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|always1~6   ; 1                 ; 0       ;
;      - game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_state~5 ; 1                 ; 0       ;
;      - game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_state~6 ; 1                 ; 0       ;
; team1_hl_button                                                                   ;                   ;         ;
;      - game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|always0~0   ; 1                 ; 0       ;
;      - game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_state~5 ; 1                 ; 0       ;
;      - game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|always1~7   ; 1                 ; 0       ;
;      - game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_state~6 ; 1                 ; 0       ;
; team1_hr_button                                                                   ;                   ;         ;
;      - game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|always0~0   ; 0                 ; 0       ;
;      - game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|always1~6   ; 0                 ; 0       ;
;      - game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_state~5 ; 0                 ; 0       ;
;      - game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_state~6 ; 0                 ; 0       ;
+-----------------------------------------------------------------------------------+-------------------+---------+


+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Control Signals                                                                                                                                                                                             ;
+------------------------------------------------------------------------------+----------------------+---------+--------------+--------+----------------------+------------------+---------------------------+
; Name                                                                         ; Location             ; Fan-Out ; Usage        ; Global ; Global Resource Used ; Global Line Name ; Enable Signal Source Name ;
+------------------------------------------------------------------------------+----------------------+---------+--------------+--------+----------------------+------------------+---------------------------+
; Equal0~7                                                                     ; LABCELL_X35_Y63_N39  ; 33      ; Sync. clear  ; no     ; --                   ; --               ; --                        ;
; clk                                                                          ; PIN_AF14             ; 591     ; Clock        ; yes    ; Global Clock         ; GCLK6            ; --                        ;
; game_controller:game_ctrl|always1~7                                          ; MLABCELL_X25_Y30_N6  ; 33      ; Sync. clear  ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|always2~0                                          ; LABCELL_X36_Y8_N48   ; 6       ; Clock enable ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|always2~1                                          ; LABCELL_X35_Y33_N57  ; 7       ; Clock enable ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan0~2       ; MLABCELL_X28_Y23_N54 ; 32      ; Sync. clear  ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[5]~14  ; LABCELL_X35_Y16_N36  ; 16      ; Clock enable ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[5]~34  ; LABCELL_X36_Y17_N6   ; 16      ; Sync. clear  ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[5]~35  ; MLABCELL_X34_Y17_N18 ; 22      ; Clock enable ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[2]~10       ; LABCELL_X33_Y17_N3   ; 5       ; Clock enable ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[9]~35  ; LABCELL_X33_Y17_N54  ; 18      ; Clock enable ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|counter_clk[12]~0                                  ; LABCELL_X24_Y29_N57  ; 32      ; Clock enable ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|always1~6     ; LABCELL_X81_Y22_N42  ; 32      ; Sync. clear  ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|always1~7     ; LABCELL_X67_Y27_N36  ; 32      ; Sync. clear  ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[0]~9  ; LABCELL_X67_Y23_N39  ; 14      ; Clock enable ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|always1~6     ; LABCELL_X66_Y20_N6   ; 32      ; Sync. clear  ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|always1~7     ; LABCELL_X64_Y14_N54  ; 32      ; Sync. clear  ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_pos[2]~9  ; LABCELL_X63_Y16_N24  ; 12      ; Clock enable ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|time_left[7]~0                                     ; LABCELL_X24_Y29_N45  ; 10      ; Clock enable ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|always1~6     ; LABCELL_X55_Y18_N42  ; 32      ; Sync. clear  ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|always1~7     ; LABCELL_X71_Y21_N36  ; 32      ; Sync. clear  ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[1]~10 ; LABCELL_X55_Y18_N45  ; 18      ; Clock enable ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|always1~6     ; MLABCELL_X39_Y13_N45 ; 32      ; Sync. clear  ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|always1~7     ; MLABCELL_X39_Y13_N0  ; 32      ; Sync. clear  ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[0]~10 ; MLABCELL_X39_Y13_N24 ; 19      ; Clock enable ; no     ; --                   ; --               ; --                        ;
; vga_clk~reg0                                                                 ; FF_X35_Y63_N38       ; 23      ; Clock enable ; no     ; --                   ; --               ; --                        ;
; vga_controller:vga_cont|LessThan19~1                                         ; LABCELL_X29_Y42_N6   ; 21      ; Sync. clear  ; no     ; --                   ; --               ; --                        ;
; vga_controller:vga_cont|LessThan20~1                                         ; LABCELL_X31_Y42_N6   ; 20      ; Sync. clear  ; no     ; --                   ; --               ; --                        ;
; vga_controller:vga_cont|y[9]~0                                               ; LABCELL_X30_Y44_N9   ; 20      ; Clock enable ; no     ; --                   ; --               ; --                        ;
+------------------------------------------------------------------------------+----------------------+---------+--------------+--------+----------------------+------------------+---------------------------+


+-------------------------------------------------------------------------------------------------+
; Global & Other Fast Signals                                                                     ;
+------+----------+---------+----------------------+------------------+---------------------------+
; Name ; Location ; Fan-Out ; Global Resource Used ; Global Line Name ; Enable Signal Source Name ;
+------+----------+---------+----------------------+------------------+---------------------------+
; clk  ; PIN_AF14 ; 591     ; Global Clock         ; GCLK6            ; --                        ;
+------+----------+---------+----------------------+------------------+---------------------------+


+-------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Non-Global High Fan-Out Signals                                                                                                                             ;
+---------------------------------------------------------------------------------------------------------------------------------------------------+---------+
; Name                                                                                                                                              ; Fan-Out ;
+---------------------------------------------------------------------------------------------------------------------------------------------------+---------+
; vga_controller:vga_cont|Add5~1                                                                                                                    ; 360     ;
; vga_controller:vga_cont|Add14~1                                                                                                                   ; 360     ;
; vga_controller:vga_cont|Add11~5                                                                                                                   ; 240     ;
; vga_controller:vga_cont|Add15~33                                                                                                                  ; 240     ;
; vga_controller:vga_cont|Add8~33                                                                                                                   ; 240     ;
; vga_controller:vga_cont|x[1]~DUPLICATE                                                                                                            ; 71      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add3~41                                                                                ; 64      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add10~37                                                                               ; 64      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add7~29                                                                                ; 64      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add9~37                                                                                ; 64      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add5~37                                                                                ; 64      ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|Add5~6                                                                             ; 60      ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|Add5~5                                                                             ; 60      ;
; vga_controller:vga_cont|Add18~3                                                                                                                   ; 60      ;
; vga_controller:vga_cont|Add24~4                                                                                                                   ; 60      ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|Add4~1                                                                             ; 60      ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|Add5~41                                                                            ; 60      ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|Add4~1                                                                             ; 60      ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|Add4~1                                                                             ; 60      ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|Add5~41                                                                            ; 60      ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|Add4~1                                                                             ; 60      ;
; vga_controller:vga_cont|Add21~41                                                                                                                  ; 60      ;
; vga_controller:vga_cont|Add20~1                                                                                                                   ; 60      ;
; vga_controller:vga_cont|Add17~1                                                                                                                   ; 60      ;
; vga_controller:vga_cont|Add27~41                                                                                                                  ; 60      ;
; vga_controller:vga_cont|Add26~1                                                                                                                   ; 60      ;
; vga_controller:vga_cont|Add23~1                                                                                                                   ; 60      ;
; vga_controller:vga_cont|x[4]~DUPLICATE                                                                                                            ; 58      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add38~45                                                                               ; 56      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add37~1                                                                                ; 56      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add33~29                                                                               ; 56      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add32~1                                                                                ; 56      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add26~45                                                                               ; 56      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add25~1                                                                                ; 56      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add20~29                                                                               ; 56      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add19~1                                                                                ; 56      ;
; vga_controller:vga_cont|Add30~45                                                                                                                  ; 56      ;
; vga_controller:vga_cont|Add29~1                                                                                                                   ; 56      ;
; vga_controller:vga_cont|y[0]                                                                                                                      ; 54      ;
; vga_controller:vga_cont|x[0]                                                                                                                      ; 52      ;
; vga_controller:vga_cont|x[3]                                                                                                                      ; 44      ;
; vga_controller:vga_cont|x[5]                                                                                                                      ; 39      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[10]~DUPLICATE                                                               ; 37      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[7]~DUPLICATE                                                                ; 37      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[10]~DUPLICATE                                                               ; 35      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[0]                                                                          ; 35      ;
; vga_controller:vga_cont|y[1]~DUPLICATE                                                                                                            ; 34      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[6]~DUPLICATE                                                                ; 33      ;
; game_controller:game_ctrl|always1~7                                                                                                               ; 33      ;
; Equal0~7                                                                                                                                          ; 33      ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|always1~7                                                                          ; 32      ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|always1~6                                                                          ; 32      ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|always1~7                                                                          ; 32      ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|always1~6                                                                          ; 32      ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|always1~7                                                                          ; 32      ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|always1~6                                                                          ; 32      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan0~2                                                                            ; 32      ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|always1~7                                                                          ; 32      ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|always1~6                                                                          ; 32      ;
; game_controller:game_ctrl|counter_clk[12]~0                                                                                                       ; 32      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[9]~DUPLICATE                                                                ; 31      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[9]~DUPLICATE                                                                ; 31      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[1]                                                                          ; 31      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[8]~DUPLICATE                                                                ; 29      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[5]~DUPLICATE                                                                ; 29      ;
; vga_controller:vga_cont|x[2]~DUPLICATE                                                                                                            ; 27      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[8]                                                                          ; 27      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[1]                                                                          ; 27      ;
; vga_controller:vga_cont|x[2]                                                                                                                      ; 27      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[2]~DUPLICATE                                                                ; 26      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[0]~DUPLICATE                                                                ; 25      ;
; vga_controller:vga_cont|x[7]                                                                                                                      ; 25      ;
; vga_controller:vga_cont|Add11~0                                                                                                                   ; 24      ;
; vga_controller:vga_cont|Add5~37                                                                                                                   ; 24      ;
; vga_controller:vga_cont|Add5~33                                                                                                                   ; 24      ;
; vga_controller:vga_cont|Add5~29                                                                                                                   ; 24      ;
; vga_controller:vga_cont|Add5~25                                                                                                                   ; 24      ;
; vga_controller:vga_cont|Add5~21                                                                                                                   ; 24      ;
; vga_controller:vga_cont|Add5~17                                                                                                                   ; 24      ;
; vga_controller:vga_cont|Add5~13                                                                                                                   ; 24      ;
; vga_controller:vga_cont|Add5~9                                                                                                                    ; 24      ;
; vga_controller:vga_cont|Add5~5                                                                                                                    ; 24      ;
; vga_controller:vga_cont|Add14~33                                                                                                                  ; 24      ;
; vga_controller:vga_cont|Add14~29                                                                                                                  ; 24      ;
; vga_controller:vga_cont|Add14~25                                                                                                                  ; 24      ;
; vga_controller:vga_cont|Add14~21                                                                                                                  ; 24      ;
; vga_controller:vga_cont|Add14~17                                                                                                                  ; 24      ;
; vga_controller:vga_cont|Add14~13                                                                                                                  ; 24      ;
; vga_controller:vga_cont|Add14~9                                                                                                                   ; 24      ;
; vga_controller:vga_cont|Add14~5                                                                                                                   ; 24      ;
; vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider|op_8~1                    ; 24      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[7]                                                                          ; 23      ;
; vga_clk~reg0                                                                                                                                      ; 23      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[5]~35                                                                       ; 22      ;
; vga_controller:vga_cont|y[4]~DUPLICATE                                                                                                            ; 21      ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[4]                                                                         ; 21      ;
; vga_controller:vga_cont|LessThan19~1                                                                                                              ; 21      ;
; vga_controller:vga_cont|lpm_divide:Div0|lpm_divide_7am:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider|add_sub_5_result_int[6]~1 ; 21      ;
; vga_controller:vga_cont|x[6]                                                                                                                      ; 21      ;
; vga_controller:vga_cont|x[0]~DUPLICATE                                                                                                            ; 20      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[2]                                                                          ; 20      ;
; vga_controller:vga_cont|y[9]~0                                                                                                                    ; 20      ;
; vga_controller:vga_cont|LessThan20~1                                                                                                              ; 20      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[4]~DUPLICATE                                                                ; 19      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[6]~DUPLICATE                                                                ; 19      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[3]~DUPLICATE                                                                ; 19      ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[0]~10                                                                      ; 19      ;
; vga_controller:vga_cont|x[9]                                                                                                                      ; 19      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[5]~DUPLICATE                                                                ; 18      ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[1]~10                                                                      ; 18      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[9]~35                                                                       ; 18      ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[5]                                                                         ; 18      ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_pos[5]                                                                         ; 18      ;
; vga_controller:vga_cont|lpm_divide:Div2|lpm_divide_3am:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|add_sub_3_result_int[4]~1 ; 18      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[4]                                                                          ; 17      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[3]                                                                          ; 17      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[5]~34                                                                       ; 16      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[5]~14                                                                       ; 16      ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[2]                                                                         ; 16      ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_pos[8]                                                                         ; 16      ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_pos[6]                                                                         ; 16      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[3]                                                                          ; 16      ;
; vga_controller:vga_cont|Add11~4                                                                                                                   ; 16      ;
; vga_controller:vga_cont|Add11~3                                                                                                                   ; 16      ;
; vga_controller:vga_cont|Add11~2                                                                                                                   ; 16      ;
; vga_controller:vga_cont|Add11~1                                                                                                                   ; 16      ;
; vga_controller:vga_cont|Add15~29                                                                                                                  ; 16      ;
; vga_controller:vga_cont|Add15~25                                                                                                                  ; 16      ;
; vga_controller:vga_cont|Add15~21                                                                                                                  ; 16      ;
; vga_controller:vga_cont|Add15~17                                                                                                                  ; 16      ;
; vga_controller:vga_cont|Add15~13                                                                                                                  ; 16      ;
; vga_controller:vga_cont|Add15~9                                                                                                                   ; 16      ;
; vga_controller:vga_cont|Add15~5                                                                                                                   ; 16      ;
; vga_controller:vga_cont|Add15~1                                                                                                                   ; 16      ;
; vga_controller:vga_cont|Add8~29                                                                                                                   ; 16      ;
; vga_controller:vga_cont|Add8~25                                                                                                                   ; 16      ;
; vga_controller:vga_cont|Add8~21                                                                                                                   ; 16      ;
; vga_controller:vga_cont|Add8~17                                                                                                                   ; 16      ;
; vga_controller:vga_cont|Add8~13                                                                                                                   ; 16      ;
; vga_controller:vga_cont|Add8~9                                                                                                                    ; 16      ;
; vga_controller:vga_cont|Add8~5                                                                                                                    ; 16      ;
; vga_controller:vga_cont|Add8~1                                                                                                                    ; 16      ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_pos[2]~DUPLICATE                                                               ; 15      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[8]~DUPLICATE                                                                ; 15      ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[3]                                                                         ; 15      ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[1]                                                                         ; 15      ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_pos[9]                                                                         ; 15      ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_pos[7]                                                                         ; 15      ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_pos[3]                                                                         ; 15      ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_pos[1]                                                                         ; 15      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[6]                                                                          ; 15      ;
; vga_controller:vga_cont|lpm_divide:Div1|lpm_divide_3am:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|op_4~1                    ; 15      ;
; vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider|op_7~1                    ; 15      ;
; vga_controller:vga_cont|lpm_divide:Div3|lpm_divide_3am:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|add_sub_3_result_int[4]~1 ; 15      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir[1]~DUPLICATE                                                                     ; 14      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[7]~DUPLICATE                                                                ; 14      ;
; vga_controller:vga_cont|y[0]~DUPLICATE                                                                                                            ; 14      ;
; vga_controller:vga_cont|y[5]~DUPLICATE                                                                                                            ; 14      ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[0]~9                                                                       ; 14      ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[9]                                                                         ; 14      ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[0]                                                                         ; 14      ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_pos[0]                                                                         ; 14      ;
; vga_controller:vga_cont|LessThan25~1                                                                                                              ; 14      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[5]                                                                          ; 14      ;
; vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider|add_sub_5_result_int[6]~1 ; 14      ;
; vga_controller:vga_cont|y[1]                                                                                                                      ; 14      ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[0]~DUPLICATE                                                               ; 13      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[3]~DUPLICATE                                                                ; 13      ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[0]~DUPLICATE                                                               ; 13      ;
; vga_controller:vga_cont|x[8]~DUPLICATE                                                                                                            ; 13      ;
; vga_controller:vga_cont|x[6]~DUPLICATE                                                                                                            ; 13      ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[5]                                                                         ; 13      ;
; vga_controller:vga_cont|lpm_divide:Div0|lpm_divide_7am:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider|op_7~1                    ; 13      ;
; vga_controller:vga_cont|lpm_divide:Div2|lpm_divide_3am:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|op_5~1                    ; 13      ;
; vga_controller:vga_cont|y[2]                                                                                                                      ; 13      ;
; vga_controller:vga_cont|y[9]                                                                                                                      ; 13      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[0]~DUPLICATE                                                                     ; 12      ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[8]~DUPLICATE                                                               ; 12      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[4]~DUPLICATE                                                                ; 12      ;
; vga_controller:vga_cont|y[6]~DUPLICATE                                                                                                            ; 12      ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_pos[2]~9                                                                       ; 12      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan29~9                                                                           ; 12      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan43~7                                                                           ; 12      ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[8]                                                                         ; 12      ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[7]                                                                         ; 12      ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[8]                                                                         ; 12      ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[6]                                                                         ; 12      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[0]                                                                          ; 12      ;
; vga_controller:vga_cont|lpm_divide:Div1|lpm_divide_3am:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|op_5~1                    ; 12      ;
; vga_controller:vga_cont|y[3]                                                                                                                      ; 12      ;
; vga_controller:vga_cont|x[8]                                                                                                                      ; 12      ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[9]~DUPLICATE                                                               ; 11      ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[6]~DUPLICATE                                                               ; 11      ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[4]~DUPLICATE                                                               ; 11      ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[3]~DUPLICATE                                                               ; 11      ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_pos[4]~DUPLICATE                                                               ; 11      ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[5]~DUPLICATE                                                               ; 11      ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[2]~DUPLICATE                                                               ; 11      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[5]~32                                                                       ; 11      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[9]~31                                                                       ; 11      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[9]~12                                                                       ; 11      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan35~4                                                                           ; 11      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[4]                                                                          ; 11      ;
; vga_controller:vga_cont|always2~18                                                                                                                ; 11      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir[0]~DUPLICATE                                                                     ; 10      ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[6]~DUPLICATE                                                               ; 10      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[1]~DUPLICATE                                                                ; 10      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan25~5                                                                           ; 10      ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[2]~1                                                                             ; 10      ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_pos[4]                                                                         ; 10      ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[4]                                                                         ; 10      ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[3]                                                                         ; 10      ;
; game_controller:game_ctrl|time_left[7]~0                                                                                                          ; 10      ;
; vga_controller:vga_cont|blue~4                                                                                                                    ; 10      ;
; vga_controller:vga_cont|lpm_divide:Div3|lpm_divide_3am:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|op_5~1                    ; 10      ;
; vga_controller:vga_cont|y[7]                                                                                                                      ; 10      ;
; vga_controller:vga_cont|y[8]                                                                                                                      ; 10      ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[2]~DUPLICATE                                                               ; 9       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_state.left                                                                     ; 9       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_state.up                                                                       ; 9       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_state.left                                                                     ; 9       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir[4]                                                                               ; 9       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[4]                                                                               ; 9       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_state.up                                                                       ; 9       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[2]~3                                                                             ; 9       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[9]~3                                                                        ; 9       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan26~1                                                                           ; 9       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[1]                                                                         ; 9       ;
; vga_controller:vga_cont|LessThan46~0                                                                                                              ; 9       ;
; vga_controller:vga_cont|lpm_divide:Mod3|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|add_sub_3_result_int[4]~1 ; 9       ;
; vga_controller:vga_cont|lpm_divide:Mod2|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|add_sub_3_result_int[4]~1 ; 9       ;
; vga_controller:vga_cont|y[5]                                                                                                                      ; 9       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[1]~DUPLICATE                                                               ; 8       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[9]~DUPLICATE                                                               ; 8       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add17~0                                                                                ; 8       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[5]~11                                                                       ; 8       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan34~2                                                                           ; 8       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan44~1                                                                           ; 8       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|always2~1                                                                              ; 8       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[7]                                                                         ; 8       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[8]                                                                          ; 8       ;
; vga_controller:vga_cont|Add24~0                                                                                                                   ; 8       ;
; game_controller:game_ctrl|time_left[4]                                                                                                            ; 8       ;
; vga_controller:vga_cont|green~1                                                                                                                   ; 8       ;
; game_controller:game_ctrl|time_left[0]                                                                                                            ; 8       ;
; vga_controller:vga_cont|always2~12                                                                                                                ; 8       ;
; vga_controller:vga_cont|border~0                                                                                                                  ; 8       ;
; vga_controller:vga_cont|always2~10                                                                                                                ; 8       ;
; vga_controller:vga_cont|lpm_divide:Div1|lpm_divide_3am:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|op_6~1                    ; 8       ;
; vga_controller:vga_cont|lpm_divide:Div2|lpm_divide_3am:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|op_6~1                    ; 8       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[1]~DUPLICATE                                                                     ; 7       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[7]~DUPLICATE                                                               ; 7       ;
; game_controller:game_ctrl|time_left[2]~DUPLICATE                                                                                                  ; 7       ;
; team2_vd_button~input                                                                                                                             ; 7       ;
; team2_vu_button~input                                                                                                                             ; 7       ;
; team1_vd_button~input                                                                                                                             ; 7       ;
; team1_vu_button~input                                                                                                                             ; 7       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[1]                                                                               ; 7       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan36~1                                                                           ; 7       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[9]~14                                                                       ; 7       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|state                                                                                  ; 7       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[9]~9                                                                        ; 7       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan7~0                                                                            ; 7       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan38~3                                                                           ; 7       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan40~6                                                                           ; 7       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[1]                                                                         ; 7       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[7]                                                                         ; 7       ;
; game_controller:game_ctrl|red_score[5]                                                                                                            ; 7       ;
; game_controller:game_ctrl|blue_score[5]                                                                                                           ; 7       ;
; game_controller:game_ctrl|time_left[6]                                                                                                            ; 7       ;
; game_controller:game_ctrl|always2~1                                                                                                               ; 7       ;
; game_controller:game_ctrl|time_left[1]                                                                                                            ; 7       ;
; vga_controller:vga_cont|lpm_divide:Mod3|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|StageOut[28]~7            ; 7       ;
; vga_controller:vga_cont|lpm_divide:Mod3|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|StageOut[27]~3            ; 7       ;
; vga_controller:vga_cont|lpm_divide:Mod3|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|StageOut[26]~1            ; 7       ;
; vga_controller:vga_cont|lpm_divide:Mod3|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|StageOut[25]~0            ; 7       ;
; vga_controller:vga_cont|always2~13                                                                                                                ; 7       ;
; vga_controller:vga_cont|lpm_divide:Mod2|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|StageOut[27]~7            ; 7       ;
; game_controller:game_ctrl|blue_score[3]                                                                                                           ; 7       ;
; vga_controller:vga_cont|lpm_divide:Mod2|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|StageOut[25]~5            ; 7       ;
; vga_controller:vga_cont|lpm_divide:Mod2|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|StageOut[28]~4            ; 7       ;
; vga_controller:vga_cont|lpm_divide:Mod2|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|StageOut[26]~0            ; 7       ;
; vga_controller:vga_cont|LessThan48~0                                                                                                              ; 7       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult11~1                                                                               ; 7       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[9]                                                                          ; 7       ;
; vga_controller:vga_cont|lpm_divide:Div0|lpm_divide_7am:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider|op_8~1                    ; 7       ;
; vga_controller:vga_cont|lpm_divide:Mod1|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|op_4~1                    ; 7       ;
; vga_controller:vga_cont|lpm_divide:Mod1|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|op_5~1                    ; 7       ;
; vga_controller:vga_cont|lpm_divide:Mod3|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|op_5~1                    ; 7       ;
; vga_controller:vga_cont|lpm_divide:Mod2|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|op_5~1                    ; 7       ;
; vga_controller:vga_cont|x[1]                                                                                                                      ; 7       ;
; vga_controller:vga_cont|x[4]                                                                                                                      ; 7       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[2]~DUPLICATE                                                                ; 6       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[1]~DUPLICATE                                                               ; 6       ;
; vga_controller:vga_cont|y[7]~DUPLICATE                                                                                                            ; 6       ;
; vga_controller:vga_cont|x[5]~DUPLICATE                                                                                                            ; 6       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|always2~18                                                                             ; 6       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add24~0                                                                                ; 6       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[9]~20                                                                       ; 6       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan39~6                                                                           ; 6       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[9]~7                                                                        ; 6       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|always2~0                                                                              ; 6       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan17~4                                                                           ; 6       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[2]~0                                                                             ; 6       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[6]                                                                         ; 6       ;
; vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider|StageOut[45]~28           ; 6       ;
; vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider|StageOut[45]~25           ; 6       ;
; game_controller:game_ctrl|time_left[5]                                                                                                            ; 6       ;
; game_controller:game_ctrl|time_left[7]                                                                                                            ; 6       ;
; game_controller:game_ctrl|always2~0                                                                                                               ; 6       ;
; vga_controller:vga_cont|red[7]~71                                                                                                                 ; 6       ;
; vga_controller:vga_cont|always2~49                                                                                                                ; 6       ;
; vga_controller:vga_cont|always2~45                                                                                                                ; 6       ;
; vga_controller:vga_cont|lpm_divide:Mod1|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|StageOut[25]~5            ; 6       ;
; vga_controller:vga_cont|lpm_divide:Mod1|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|StageOut[28]~4            ; 6       ;
; game_controller:game_ctrl|time_left[3]                                                                                                            ; 6       ;
; vga_controller:vga_cont|lpm_divide:Mod1|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|StageOut[27]~2            ; 6       ;
; vga_controller:vga_cont|lpm_divide:Mod1|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|StageOut[26]~0            ; 6       ;
; game_controller:game_ctrl|red_score[3]                                                                                                            ; 6       ;
; game_controller:game_ctrl|red_score[2]                                                                                                            ; 6       ;
; game_controller:game_ctrl|blue_score[2]                                                                                                           ; 6       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult5~13                                                                               ; 6       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult5~9                                                                                ; 6       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult5~5                                                                                ; 6       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult5~1                                                                                ; 6       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[2]                                                                          ; 6       ;
; vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider|op_8~33                   ; 6       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[7]~DUPLICATE                                                               ; 5       ;
; vga_controller:vga_cont|x[3]~DUPLICATE                                                                                                            ; 5       ;
; vga_controller:vga_cont|y[8]~DUPLICATE                                                                                                            ; 5       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[2]~10                                                                            ; 5       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[2]                                                                               ; 5       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir~1                                                                                ; 5       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[2]~7                                                                             ; 5       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[5]~23                                                                       ; 5       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|always2~3                                                                              ; 5       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan16~2                                                                           ; 5       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan34~1                                                                           ; 5       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[9]~22                                                                       ; 5       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|always2~2                                                                              ; 5       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir~2                                                                                ; 5       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[5]~2                                                                        ; 5       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[9]~6                                                                        ; 5       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[9]~5                                                                        ; 5       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan21~6                                                                           ; 5       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan22~6                                                                           ; 5       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[5]~1                                                                        ; 5       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan11~1                                                                           ; 5       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan8~1                                                                            ; 5       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[2]                                                                         ; 5       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[9]                                                                         ; 5       ;
; game_controller:game_ctrl|red_score[6]                                                                                                            ; 5       ;
; game_controller:game_ctrl|blue_score[6]                                                                                                           ; 5       ;
; vga_controller:vga_cont|always2~70                                                                                                                ; 5       ;
; vga_controller:vga_cont|blue~10                                                                                                                   ; 5       ;
; vga_controller:vga_cont|always2~68                                                                                                                ; 5       ;
; vga_controller:vga_cont|red[6]~42                                                                                                                 ; 5       ;
; vga_controller:vga_cont|always2~38                                                                                                                ; 5       ;
; vga_controller:vga_cont|red~34                                                                                                                    ; 5       ;
; game_controller:game_ctrl|red_score[4]                                                                                                            ; 5       ;
; vga_controller:vga_cont|always2~21                                                                                                                ; 5       ;
; vga_controller:vga_cont|LessThan80~0                                                                                                              ; 5       ;
; game_controller:game_ctrl|blue_score[4]                                                                                                           ; 5       ;
; vga_controller:vga_cont|always2~4                                                                                                                 ; 5       ;
; vga_controller:vga_cont|always2~0                                                                                                                 ; 5       ;
; vga_controller:vga_cont|Equal5~0                                                                                                                  ; 5       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult11~21                                                                              ; 5       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult11~17                                                                              ; 5       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult11~13                                                                              ; 5       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult11~9                                                                               ; 5       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult11~5                                                                               ; 5       ;
; vga_controller:vga_cont|lpm_divide:Div3|lpm_divide_3am:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|op_6~1                    ; 5       ;
; vga_controller:vga_cont|y[9]~DUPLICATE                                                                                                            ; 4       ;
; team1_hr_button~input                                                                                                                             ; 4       ;
; team1_hl_button~input                                                                                                                             ; 4       ;
; team2_hr_button~input                                                                                                                             ; 4       ;
; team2_hl_button~input                                                                                                                             ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|Add5~5                                                                             ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|Add5~4                                                                             ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|Add5~3                                                                             ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|Add5~2                                                                             ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|Add5~1                                                                             ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|Add5~4                                                                             ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|Add5~3                                                                             ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|Add5~2                                                                             ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|Add5~1                                                                             ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|Add5~0                                                                             ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir~10                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir[4]~8                                                                             ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir[4]~4                                                                             ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|always2~19                                                                             ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|always2~16                                                                             ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|always2~12                                                                             ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir~13                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir[3]                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir[2]                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[3]                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[5]~20                                                                       ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan38~6                                                                           ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan20~6                                                                           ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[5]~9                                                                        ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir[4]~0                                                                             ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan11~9                                                                           ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan11~6                                                                           ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[9]~19                                                                       ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[9]~17                                                                       ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[9]~13                                                                       ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[9]~11                                                                       ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan36~0                                                                           ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan31~0                                                                           ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan20~3                                                                           ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[9]~2                                                                        ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan11~3                                                                           ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan16~0                                                                           ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[5]                                                                          ; 4       ;
; vga_controller:vga_cont|Add18~2                                                                                                                   ; 4       ;
; vga_controller:vga_cont|Add18~1                                                                                                                   ; 4       ;
; vga_controller:vga_cont|Add18~0                                                                                                                   ; 4       ;
; vga_controller:vga_cont|Add24~3                                                                                                                   ; 4       ;
; vga_controller:vga_cont|Add24~2                                                                                                                   ; 4       ;
; vga_controller:vga_cont|Add24~1                                                                                                                   ; 4       ;
; game_controller:game_ctrl|game_on                                                                                                                 ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|blue_score_up                                                                          ; 4       ;
; vga_controller:vga_cont|blue~11                                                                                                                   ; 4       ;
; vga_controller:vga_cont|red[6]~70                                                                                                                 ; 4       ;
; vga_controller:vga_cont|red[6]~66                                                                                                                 ; 4       ;
; vga_controller:vga_cont|red~61                                                                                                                    ; 4       ;
; vga_controller:vga_cont|always2~52                                                                                                                ; 4       ;
; vga_controller:vga_cont|always2~44                                                                                                                ; 4       ;
; vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider|StageOut[52]~13           ; 4       ;
; vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider|StageOut[52]~12           ; 4       ;
; vga_controller:vga_cont|Equal4~0                                                                                                                  ; 4       ;
; vga_controller:vga_cont|always2~35                                                                                                                ; 4       ;
; vga_controller:vga_cont|Equal5~2                                                                                                                  ; 4       ;
; game_controller:game_ctrl|red_score[1]                                                                                                            ; 4       ;
; vga_controller:vga_cont|red~18                                                                                                                    ; 4       ;
; vga_controller:vga_cont|always2~15                                                                                                                ; 4       ;
; game_controller:game_ctrl|blue_score[1]                                                                                                           ; 4       ;
; vga_controller:vga_cont|always2~6                                                                                                                 ; 4       ;
; vga_controller:vga_cont|always2~1                                                                                                                 ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|Add4~41                                                                            ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|Add4~37                                                                            ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|Add4~33                                                                            ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|Add4~29                                                                            ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|Add4~25                                                                            ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|Add4~21                                                                            ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|Add4~17                                                                            ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|Add4~13                                                                            ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|Add4~9                                                                             ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|Add4~5                                                                             ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|Add5~37                                                                            ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|Add5~33                                                                            ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|Add5~29                                                                            ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|Add5~25                                                                            ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|Add5~21                                                                            ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|Add5~17                                                                            ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|Add5~13                                                                            ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|Add5~9                                                                             ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|Add5~5                                                                             ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|Add5~1                                                                             ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|Add4~33                                                                            ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|Add4~29                                                                            ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|Add4~25                                                                            ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|Add4~21                                                                            ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|Add4~17                                                                            ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|Add4~13                                                                            ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|Add4~9                                                                             ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|Add4~5                                                                             ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|Add4~41                                                                            ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|Add4~37                                                                            ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|Add4~33                                                                            ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|Add4~29                                                                            ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|Add4~25                                                                            ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|Add4~21                                                                            ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|Add4~17                                                                            ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|Add4~13                                                                            ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|Add4~9                                                                             ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|Add4~5                                                                             ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|Add5~37                                                                            ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|Add5~33                                                                            ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|Add5~29                                                                            ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|Add5~25                                                                            ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|Add5~21                                                                            ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|Add5~17                                                                            ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|Add5~13                                                                            ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|Add5~9                                                                             ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|Add5~5                                                                             ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|Add5~1                                                                             ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|Add4~33                                                                            ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|Add4~29                                                                            ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|Add4~25                                                                            ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|Add4~21                                                                            ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|Add4~17                                                                            ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|Add4~13                                                                            ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|Add4~9                                                                             ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|Add4~5                                                                             ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add38~41                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add38~37                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add38~33                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add38~29                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add38~25                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add38~21                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add38~17                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add38~13                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add38~9                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add38~5                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add38~1                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add37~37                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add37~33                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add37~29                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add37~25                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add37~21                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add37~17                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add37~13                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add37~9                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add37~5                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add33~25                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add33~21                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add33~17                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add33~13                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add33~9                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add33~5                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add33~1                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add32~45                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add32~41                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add32~37                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add32~33                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add32~29                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add32~25                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add32~21                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add32~17                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add32~13                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add32~9                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add32~5                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add26~41                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add26~37                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add26~33                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add26~29                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add26~25                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add26~21                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add26~17                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add26~13                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add26~9                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add26~5                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add26~1                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add25~37                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add25~33                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add25~29                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add25~25                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add25~21                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add25~17                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add25~13                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add25~9                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add25~5                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add20~25                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add20~21                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add20~17                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add20~13                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add20~9                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add20~5                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add20~1                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add19~45                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add19~41                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add19~37                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add19~33                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add19~29                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add19~25                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add19~21                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add19~17                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add19~13                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add19~9                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add19~5                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add35~13                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add35~9                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add35~5                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add35~1                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult7~1                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add3~37                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add3~33                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add3~29                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add3~25                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add3~21                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add3~17                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add3~13                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add3~9                                                                                 ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add3~5                                                                                 ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add3~1                                                                                 ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add10~33                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add10~29                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add10~25                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add10~21                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add10~17                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add10~13                                                                               ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add10~9                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add10~5                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add10~1                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add7~25                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add7~21                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add7~17                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add7~13                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add7~9                                                                                 ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add7~5                                                                                 ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add7~1                                                                                 ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add9~33                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add9~29                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add9~25                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add9~21                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add9~17                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add9~13                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add9~9                                                                                 ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add9~5                                                                                 ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add9~1                                                                                 ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add5~33                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add5~29                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add5~25                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add5~21                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add5~17                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add5~13                                                                                ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add5~9                                                                                 ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add5~5                                                                                 ; 4       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add5~1                                                                                 ; 4       ;
; vga_controller:vga_cont|Add21~37                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add21~33                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add21~29                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add21~25                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add21~21                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add21~17                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add21~13                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add21~9                                                                                                                   ; 4       ;
; vga_controller:vga_cont|Add21~5                                                                                                                   ; 4       ;
; vga_controller:vga_cont|Add21~1                                                                                                                   ; 4       ;
; vga_controller:vga_cont|Add20~33                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add20~29                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add20~25                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add20~21                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add20~17                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add20~13                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add20~9                                                                                                                   ; 4       ;
; vga_controller:vga_cont|Add20~5                                                                                                                   ; 4       ;
; vga_controller:vga_cont|Add17~41                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add17~37                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add17~33                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add17~29                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add17~25                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add17~21                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add17~17                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add17~13                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add17~9                                                                                                                   ; 4       ;
; vga_controller:vga_cont|Add17~5                                                                                                                   ; 4       ;
; vga_controller:vga_cont|Add27~37                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add27~33                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add27~29                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add27~25                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add27~21                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add27~17                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add27~13                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add27~9                                                                                                                   ; 4       ;
; vga_controller:vga_cont|Add27~5                                                                                                                   ; 4       ;
; vga_controller:vga_cont|Add27~1                                                                                                                   ; 4       ;
; vga_controller:vga_cont|Add26~33                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add26~29                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add26~25                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add26~21                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add26~17                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add26~13                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add26~9                                                                                                                   ; 4       ;
; vga_controller:vga_cont|Add26~5                                                                                                                   ; 4       ;
; vga_controller:vga_cont|Add30~41                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add30~37                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add30~33                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add30~29                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add30~25                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add30~21                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add30~17                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add30~13                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add30~9                                                                                                                   ; 4       ;
; vga_controller:vga_cont|Add30~5                                                                                                                   ; 4       ;
; vga_controller:vga_cont|Add30~1                                                                                                                   ; 4       ;
; vga_controller:vga_cont|Add29~45                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add29~41                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add29~37                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add29~33                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add29~29                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add29~25                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add29~21                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add29~17                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add29~13                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add29~9                                                                                                                   ; 4       ;
; vga_controller:vga_cont|Add29~5                                                                                                                   ; 4       ;
; vga_controller:vga_cont|Add23~41                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add23~37                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add23~33                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add23~29                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add23~25                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add23~21                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add23~17                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add23~13                                                                                                                  ; 4       ;
; vga_controller:vga_cont|Add23~9                                                                                                                   ; 4       ;
; vga_controller:vga_cont|Add23~5                                                                                                                   ; 4       ;
; vga_controller:vga_cont|lpm_divide:Mod1|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|op_6~5                    ; 4       ;
; vga_controller:vga_cont|lpm_divide:Mod3|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|op_6~1                    ; 4       ;
; vga_controller:vga_cont|lpm_divide:Mod2|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|op_6~5                    ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[8]~DUPLICATE                                                               ; 3       ;
; vga_controller:vga_cont|y[3]~DUPLICATE                                                                                                            ; 3       ;
; vga_controller:vga_cont|x[7]~DUPLICATE                                                                                                            ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[2]~26                                                                            ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir[4]~5                                                                             ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir[4]~3                                                                             ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir[4]~2                                                                             ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|always2~17                                                                             ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|always2~15                                                                             ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|always2~13                                                                             ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[2]~12                                                                            ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[0]                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[5]~24                                                                       ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[5]~13                                                                       ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[5]~7                                                                        ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[2]~6                                                                             ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan18~1                                                                           ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[9]~25                                                                       ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan37~5                                                                           ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[9]~21                                                                       ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[9]~18                                                                       ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan14~11                                                                          ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[9]~10                                                                       ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan42~0                                                                           ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan41~0                                                                           ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan38~1                                                                           ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan38~0                                                                           ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan34~0                                                                           ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan32~6                                                                           ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[9]~1                                                                        ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan13~1                                                                           ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan13~0                                                                           ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_position[5]~0                                                                        ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|LessThan8~0                                                                            ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[2]                                                                         ; 3       ;
; vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider|StageOut[46]~18           ; 3       ;
; vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider|StageOut[46]~17           ; 3       ;
; game_controller:game_ctrl|game_over                                                                                                               ; 3       ;
; game_controller:game_ctrl|Equal1~1                                                                                                                ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|red_score_up                                                                           ; 3       ;
; vga_controller:vga_cont|blue~14                                                                                                                   ; 3       ;
; vga_controller:vga_cont|blue~13                                                                                                                   ; 3       ;
; vga_controller:vga_cont|blue~7                                                                                                                    ; 3       ;
; vga_controller:vga_cont|red[6]~63                                                                                                                 ; 3       ;
; vga_controller:vga_cont|red~62                                                                                                                    ; 3       ;
; vga_controller:vga_cont|red~59                                                                                                                    ; 3       ;
; vga_controller:vga_cont|blue~6                                                                                                                    ; 3       ;
; vga_controller:vga_cont|red~58                                                                                                                    ; 3       ;
; vga_controller:vga_cont|red~56                                                                                                                    ; 3       ;
; vga_controller:vga_cont|always2~63                                                                                                                ; 3       ;
; vga_controller:vga_cont|red~55                                                                                                                    ; 3       ;
; vga_controller:vga_cont|red~54                                                                                                                    ; 3       ;
; vga_controller:vga_cont|red[6]~53                                                                                                                 ; 3       ;
; vga_controller:vga_cont|always2~59                                                                                                                ; 3       ;
; vga_controller:vga_cont|LessThan34~0                                                                                                              ; 3       ;
; vga_controller:vga_cont|always2~53                                                                                                                ; 3       ;
; vga_controller:vga_cont|always2~51                                                                                                                ; 3       ;
; vga_controller:vga_cont|red[6]~36                                                                                                                 ; 3       ;
; vga_controller:vga_cont|red[6]~35                                                                                                                 ; 3       ;
; vga_controller:vga_cont|always2~42                                                                                                                ; 3       ;
; vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider|StageOut[44]~11           ; 3       ;
; vga_controller:vga_cont|lpm_divide:Mod1|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider|StageOut[15]~1            ; 3       ;
; vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider|StageOut[43]~6            ; 3       ;
; vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider|StageOut[43]~4            ; 3       ;
; vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider|StageOut[50]~3            ; 3       ;
; vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider|StageOut[50]~2            ; 3       ;
; vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider|StageOut[42]~1            ; 3       ;
; vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider|StageOut[42]~0            ; 3       ;
; vga_controller:vga_cont|always2~28                                                                                                                ; 3       ;
; vga_controller:vga_cont|red~20                                                                                                                    ; 3       ;
; vga_controller:vga_cont|red~11                                                                                                                    ; 3       ;
; vga_controller:vga_cont|LessThan45~0                                                                                                              ; 3       ;
; vga_controller:vga_cont|LessThan38~0                                                                                                              ; 3       ;
; vga_controller:vga_cont|LessThan50~0                                                                                                              ; 3       ;
; vga_controller:vga_cont|LessThan79~0                                                                                                              ; 3       ;
; vga_controller:vga_cont|LessThan33~0                                                                                                              ; 3       ;
; vga_controller:vga_cont|Equal5~1                                                                                                                  ; 3       ;
; vga_controller:vga_cont|always2~3                                                                                                                 ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[9]~60                                                                       ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|left_button_counter[9]                                                             ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|left_button_counter[7]                                                             ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|left_button_counter[6]                                                             ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|left_button_counter[10]                                                            ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|left_button_counter[11]                                                            ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|left_button_counter[16]                                                            ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|left_button_counter[17]                                                            ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|left_button_counter[8]                                                             ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|right_button_counter[9]                                                            ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|right_button_counter[8]                                                            ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|right_button_counter[6]                                                            ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|right_button_counter[7]                                                            ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|right_button_counter[17]                                                           ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|right_button_counter[16]                                                           ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|right_button_counter[11]                                                           ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|right_button_counter[10]                                                           ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[9]                                                               ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[10]                                                              ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[7]                                                               ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[16]                                                              ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[17]                                                              ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[8]                                                               ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[6]                                                               ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[11]                                                              ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[10]                                                            ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[16]                                                            ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[17]                                                            ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[7]                                                             ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[6]                                                             ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[11]                                                            ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[9]                                                             ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[8]                                                             ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|left_button_counter[6]                                                             ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|left_button_counter[8]                                                             ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|left_button_counter[9]                                                             ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|left_button_counter[10]                                                            ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|left_button_counter[11]                                                            ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|left_button_counter[7]                                                             ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|left_button_counter[16]                                                            ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|left_button_counter[17]                                                            ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|right_button_counter[7]                                                            ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|right_button_counter[6]                                                            ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|right_button_counter[17]                                                           ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|right_button_counter[16]                                                           ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|right_button_counter[11]                                                           ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|right_button_counter[10]                                                           ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|right_button_counter[9]                                                            ; 3       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|right_button_counter[8]                                                            ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|counter[13]                                                                            ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|counter[14]                                                                            ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|counter[15]                                                                            ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|counter[16]                                                                            ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|counter[17]                                                                            ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|counter[18]                                                                            ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|counter[8]                                                                             ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|counter[5]                                                                             ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|counter[6]                                                                             ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|counter[7]                                                                             ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult11~41                                                                              ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult11~37                                                                              ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult11~33                                                                              ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult11~29                                                                              ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult11~25                                                                              ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add40~13                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add40~9                                                                                ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add40~1                                                                                ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add41~13                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add41~9                                                                                ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult9~57                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult9~53                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult9~49                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult9~45                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult9~41                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add36~13                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add36~9                                                                                ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add35~21                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add35~17                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult7~41                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult7~37                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult7~33                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult7~29                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult7~25                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult7~21                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult7~17                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult7~13                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult7~9                                                                                ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult7~5                                                                                ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add28~13                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add28~9                                                                                ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add29~9                                                                                ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add29~5                                                                                ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult5~61                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult5~57                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult5~53                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult5~49                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult5~45                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add23~9                                                                                ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add23~5                                                                                ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add22~13                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add22~9                                                                                ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add22~1                                                                                ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[7]                                                               ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[6]                                                               ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[16]                                                              ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[9]                                                               ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[8]                                                               ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[17]                                                              ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[11]                                                              ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[10]                                                              ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[7]                                                             ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[8]                                                             ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[9]                                                             ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[6]                                                             ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[11]                                                            ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[16]                                                            ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[17]                                                            ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[10]                                                            ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~394                                                                              ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~390                                                                              ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~386                                                                              ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~382                                                                              ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~378                                                                              ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~374                                                                              ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~370                                                                              ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~53                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~52                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~51                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~50                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~49                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~48                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~47                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~46                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~45                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~44                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~43                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~42                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~41                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~40                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~39                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~38                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~37                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~36                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~25                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~21                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~17                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~13                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~9                                                                                ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~5                                                                                ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult0~1                                                                                ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~394                                                                              ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~390                                                                              ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~386                                                                              ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~382                                                                              ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~378                                                                              ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~374                                                                              ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~370                                                                              ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~53                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~52                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~51                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~50                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~49                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~48                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~47                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~46                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~45                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~44                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~43                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~42                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~41                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~40                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~39                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~38                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~37                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~36                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~25                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~21                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~17                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~13                                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~9                                                                                ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~5                                                                                ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Mult3~1                                                                                ; 3       ;
; vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider|op_8~29                   ; 3       ;
; vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider|op_8~17                   ; 3       ;
; vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider|op_8~13                   ; 3       ;
; vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider|op_8~9                    ; 3       ;
; vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider|op_8~5                    ; 3       ;
; vga_controller:vga_cont|y[6]                                                                                                                      ; 3       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir[2]~DUPLICATE                                                                     ; 2       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_position[1]~DUPLICATE                                                                ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[4]~DUPLICATE                                                               ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[3]~DUPLICATE                                                               ; 2       ;
; vga_controller:vga_cont|y[2]~DUPLICATE                                                                                                            ; 2       ;
; vga_controller:vga_cont|x[9]~DUPLICATE                                                                                                            ; 2       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir[1]~50                                                                            ; 2       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[1]~51                                                                            ; 2       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[8]~14                                                                      ; 2       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[7]~13                                                                      ; 2       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[6]~12                                                                      ; 2       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[2]~10                                                                      ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[8]~14                                                                      ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[3]~12                                                                      ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[2]~11                                                                      ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[7]~13                                                                      ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[3]~11                                                                      ; 2       ;
; game_controller:game_ctrl|time_left[2]~2                                                                                                          ; 2       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir~30                                                                               ; 2       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir[4]~28                                                                            ; 2       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir[4]~26                                                                            ; 2       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir~22                                                                               ; 2       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir~21                                                                               ; 2       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir~15                                                                               ; 2       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir~13                                                                               ; 2       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir~12                                                                               ; 2       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir[0]~9                                                                             ; 2       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add17~1                                                                                ; 2       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|Add24~1                                                                                ; 2       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir~28                                                                               ; 2       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir~23                                                                               ; 2       ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir~22                                                                               ; 2       ;
+---------------------------------------------------------------------------------------------------------------------------------------------------+---------+


+-------------------------------------------------------------------------------+
; Fitter DSP Block Usage Summary                                                ;
+-----------------------+-------------+---------------------+-------------------+
; Statistic             ; Number Used ; Available per Block ; Maximum Available ;
+-----------------------+-------------+---------------------+-------------------+
; Independent 18x18     ; 55          ; 2.00                ; 174               ;
; Sum of two 18x18      ; 55          ; 1.00                ; 87                ;
; DSP Block             ; 87          ; --                  ; 87                ;
; DSP 18-bit Element    ; 165         ; 2.00                ; 174               ;
; Unsigned Multiplier   ; 155         ; --                  ; --                ;
; Mixed Sign Multiplier ; 10          ; --                  ; --                ;
+-----------------------+-------------+---------------------+-------------------+


+-----------------------------------------------------------------------+
; Routing Usage Summary                                                 ;
+---------------------------------------------+-------------------------+
; Routing Resource Type                       ; Usage                   ;
+---------------------------------------------+-------------------------+
; Block interconnects                         ; 8,438 / 289,320 ( 3 % ) ;
; C12 interconnects                           ; 1,230 / 13,420 ( 9 % )  ;
; C2 interconnects                            ; 4,409 / 119,108 ( 4 % ) ;
; C4 interconnects                            ; 2,406 / 56,300 ( 4 % )  ;
; DQS bus muxes                               ; 0 / 25 ( 0 % )          ;
; DQS-18 I/O buses                            ; 0 / 25 ( 0 % )          ;
; DQS-9 I/O buses                             ; 0 / 25 ( 0 % )          ;
; Direct links                                ; 678 / 289,320 ( < 1 % ) ;
; Global clocks                               ; 1 / 16 ( 6 % )          ;
; HPS SDRAM PLL inputs                        ; 0 / 1 ( 0 % )           ;
; HPS SDRAM PLL outputs                       ; 0 / 1 ( 0 % )           ;
; HPS_INTERFACE_BOOT_FROM_FPGA_INPUTs         ; 0 / 9 ( 0 % )           ;
; HPS_INTERFACE_CLOCKS_RESETS_INPUTs          ; 0 / 7 ( 0 % )           ;
; HPS_INTERFACE_CLOCKS_RESETS_OUTPUTs         ; 0 / 6 ( 0 % )           ;
; HPS_INTERFACE_CROSS_TRIGGER_INPUTs          ; 0 / 18 ( 0 % )          ;
; HPS_INTERFACE_CROSS_TRIGGER_OUTPUTs         ; 0 / 24 ( 0 % )          ;
; HPS_INTERFACE_DBG_APB_INPUTs                ; 0 / 37 ( 0 % )          ;
; HPS_INTERFACE_DBG_APB_OUTPUTs               ; 0 / 55 ( 0 % )          ;
; HPS_INTERFACE_DMA_INPUTs                    ; 0 / 16 ( 0 % )          ;
; HPS_INTERFACE_DMA_OUTPUTs                   ; 0 / 8 ( 0 % )           ;
; HPS_INTERFACE_FPGA2HPS_INPUTs               ; 0 / 287 ( 0 % )         ;
; HPS_INTERFACE_FPGA2HPS_OUTPUTs              ; 0 / 154 ( 0 % )         ;
; HPS_INTERFACE_FPGA2SDRAM_INPUTs             ; 0 / 852 ( 0 % )         ;
; HPS_INTERFACE_FPGA2SDRAM_OUTPUTs            ; 0 / 408 ( 0 % )         ;
; HPS_INTERFACE_HPS2FPGA_INPUTs               ; 0 / 165 ( 0 % )         ;
; HPS_INTERFACE_HPS2FPGA_LIGHT_WEIGHT_INPUTs  ; 0 / 67 ( 0 % )          ;
; HPS_INTERFACE_HPS2FPGA_LIGHT_WEIGHT_OUTPUTs ; 0 / 156 ( 0 % )         ;
; HPS_INTERFACE_HPS2FPGA_OUTPUTs              ; 0 / 282 ( 0 % )         ;
; HPS_INTERFACE_INTERRUPTS_INPUTs             ; 0 / 64 ( 0 % )          ;
; HPS_INTERFACE_INTERRUPTS_OUTPUTs            ; 0 / 42 ( 0 % )          ;
; HPS_INTERFACE_JTAG_OUTPUTs                  ; 0 / 5 ( 0 % )           ;
; HPS_INTERFACE_LOAN_IO_INPUTs                ; 0 / 142 ( 0 % )         ;
; HPS_INTERFACE_LOAN_IO_OUTPUTs               ; 0 / 85 ( 0 % )          ;
; HPS_INTERFACE_MPU_EVENT_STANDBY_INPUTs      ; 0 / 1 ( 0 % )           ;
; HPS_INTERFACE_MPU_EVENT_STANDBY_OUTPUTs     ; 0 / 5 ( 0 % )           ;
; HPS_INTERFACE_MPU_GENERAL_PURPOSE_INPUTs    ; 0 / 32 ( 0 % )          ;
; HPS_INTERFACE_MPU_GENERAL_PURPOSE_OUTPUTs   ; 0 / 32 ( 0 % )          ;
; HPS_INTERFACE_PERIPHERAL_CAN_INPUTs         ; 0 / 2 ( 0 % )           ;
; HPS_INTERFACE_PERIPHERAL_CAN_OUTPUTs        ; 0 / 2 ( 0 % )           ;
; HPS_INTERFACE_PERIPHERAL_EMAC_INPUTs        ; 0 / 32 ( 0 % )          ;
; HPS_INTERFACE_PERIPHERAL_EMAC_OUTPUTs       ; 0 / 34 ( 0 % )          ;
; HPS_INTERFACE_PERIPHERAL_I2C_INPUTs         ; 0 / 8 ( 0 % )           ;
; HPS_INTERFACE_PERIPHERAL_I2C_OUTPUTs        ; 0 / 8 ( 0 % )           ;
; HPS_INTERFACE_PERIPHERAL_NAND_INPUTs        ; 0 / 12 ( 0 % )          ;
; HPS_INTERFACE_PERIPHERAL_NAND_OUTPUTs       ; 0 / 18 ( 0 % )          ;
; HPS_INTERFACE_PERIPHERAL_QSPI_INPUTs        ; 0 / 4 ( 0 % )           ;
; HPS_INTERFACE_PERIPHERAL_QSPI_OUTPUTs       ; 0 / 13 ( 0 % )          ;
; HPS_INTERFACE_PERIPHERAL_SDMMC_INPUTs       ; 0 / 13 ( 0 % )          ;
; HPS_INTERFACE_PERIPHERAL_SDMMC_OUTPUTs      ; 0 / 22 ( 0 % )          ;
; HPS_INTERFACE_PERIPHERAL_SPI_MASTER_INPUTs  ; 0 / 4 ( 0 % )           ;
; HPS_INTERFACE_PERIPHERAL_SPI_MASTER_OUTPUTs ; 0 / 14 ( 0 % )          ;
; HPS_INTERFACE_PERIPHERAL_SPI_SLAVE_INPUTs   ; 0 / 6 ( 0 % )           ;
; HPS_INTERFACE_PERIPHERAL_SPI_SLAVE_OUTPUTs  ; 0 / 4 ( 0 % )           ;
; HPS_INTERFACE_PERIPHERAL_UART_INPUTs        ; 0 / 10 ( 0 % )          ;
; HPS_INTERFACE_PERIPHERAL_UART_OUTPUTs       ; 0 / 10 ( 0 % )          ;
; HPS_INTERFACE_PERIPHERAL_USB_INPUTs         ; 0 / 22 ( 0 % )          ;
; HPS_INTERFACE_PERIPHERAL_USB_OUTPUTs        ; 0 / 34 ( 0 % )          ;
; HPS_INTERFACE_STM_EVENT_INPUTs              ; 0 / 28 ( 0 % )          ;
; HPS_INTERFACE_TEST_INPUTs                   ; 0 / 610 ( 0 % )         ;
; HPS_INTERFACE_TEST_OUTPUTs                  ; 0 / 513 ( 0 % )         ;
; HPS_INTERFACE_TPIU_TRACE_INPUTs             ; 0 / 2 ( 0 % )           ;
; HPS_INTERFACE_TPIU_TRACE_OUTPUTs            ; 0 / 33 ( 0 % )          ;
; Horizontal periphery clocks                 ; 0 / 72 ( 0 % )          ;
; Local interconnects                         ; 1,412 / 84,580 ( 2 % )  ;
; Quadrant clocks                             ; 0 / 66 ( 0 % )          ;
; R14 interconnects                           ; 1,275 / 12,676 ( 10 % ) ;
; R14/C12 interconnect drivers                ; 2,372 / 20,720 ( 11 % ) ;
; R3 interconnects                            ; 5,116 / 130,992 ( 4 % ) ;
; R6 interconnects                            ; 5,202 / 266,960 ( 2 % ) ;
; Spine clocks                                ; 9 / 360 ( 3 % )         ;
; Wire stub REs                               ; 0 / 15,858 ( 0 % )      ;
+---------------------------------------------+-------------------------+


+------------------------------------------+
; I/O Rules Summary                        ;
+----------------------------------+-------+
; I/O Rules Statistic              ; Total ;
+----------------------------------+-------+
; Total I/O Rules                  ; 28    ;
; Number of I/O Rules Passed       ; 9     ;
; Number of I/O Rules Failed       ; 0     ;
; Number of I/O Rules Unchecked    ; 0     ;
; Number of I/O Rules Inapplicable ; 19    ;
+----------------------------------+-------+


+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; I/O Rules Details                                                                                                                                                                                                                                                                 ;
+--------------+-----------+-----------------------------------+------------------------------------------------------------------------------------+----------+--------------------------------------------------------------------------+---------------------+-------------------+
; Status       ; ID        ; Category                          ; Rule Description                                                                   ; Severity ; Information                                                              ; Area                ; Extra Information ;
+--------------+-----------+-----------------------------------+------------------------------------------------------------------------------------+----------+--------------------------------------------------------------------------+---------------------+-------------------+
; Pass         ; IO_000001 ; Capacity Checks                   ; Number of pins in an I/O bank should not exceed the number of locations available. ; Critical ; 0 such failures found.                                                   ; I/O                 ;                   ;
; Inapplicable ; IO_000002 ; Capacity Checks                   ; Number of clocks in an I/O bank should not exceed the number of clocks available.  ; Critical ; No Global Signal assignments found.                                      ; I/O                 ;                   ;
; Pass         ; IO_000003 ; Capacity Checks                   ; Number of pins in a Vrefgroup should not exceed the number of locations available. ; Critical ; 0 such failures found.                                                   ; I/O                 ;                   ;
; Inapplicable ; IO_000004 ; Voltage Compatibility Checks      ; The I/O bank should support the requested VCCIO.                                   ; Critical ; No IOBANK_VCCIO assignments found.                                       ; I/O                 ;                   ;
; Inapplicable ; IO_000005 ; Voltage Compatibility Checks      ; The I/O bank should not have competing VREF values.                                ; Critical ; No VREF I/O Standard assignments found.                                  ; I/O                 ;                   ;
; Pass         ; IO_000006 ; Voltage Compatibility Checks      ; The I/O bank should not have competing VCCIO values.                               ; Critical ; 0 such failures found.                                                   ; I/O                 ;                   ;
; Pass         ; IO_000007 ; Valid Location Checks             ; Checks for unavailable locations.                                                  ; Critical ; 0 such failures found.                                                   ; I/O                 ;                   ;
; Inapplicable ; IO_000008 ; Valid Location Checks             ; Checks for reserved locations.                                                     ; Critical ; No reserved LogicLock region found.                                      ; I/O                 ;                   ;
; Pass         ; IO_000009 ; I/O Properties Checks for One I/O ; The location should support the requested I/O standard.                            ; Critical ; 0 such failures found.                                                   ; I/O                 ;                   ;
; Pass         ; IO_000010 ; I/O Properties Checks for One I/O ; The location should support the requested I/O direction.                           ; Critical ; 0 such failures found.                                                   ; I/O                 ;                   ;
; Inapplicable ; IO_000011 ; I/O Properties Checks for One I/O ; The location should support the requested Current Strength.                        ; Critical ; No Current Strength assignments found.                                   ; I/O                 ;                   ;
; Pass         ; IO_000012 ; I/O Properties Checks for One I/O ; The location should support the requested On Chip Termination value.               ; Critical ; 0 such failures found.                                                   ; I/O                 ;                   ;
; Inapplicable ; IO_000013 ; I/O Properties Checks for One I/O ; The location should support the requested Bus Hold value.                          ; Critical ; No Enable Bus-Hold Circuitry assignments found.                          ; I/O                 ;                   ;
; Inapplicable ; IO_000014 ; I/O Properties Checks for One I/O ; The location should support the requested Weak Pull Up value.                      ; Critical ; No Weak Pull-Up Resistor assignments found.                              ; I/O                 ;                   ;
; Inapplicable ; IO_000015 ; I/O Properties Checks for One I/O ; The location should support the requested PCI Clamp Diode.                         ; Critical ; No Clamping Diode assignments found.                                     ; I/O                 ;                   ;
; Inapplicable ; IO_000018 ; I/O Properties Checks for One I/O ; The I/O standard should support the requested Current Strength.                    ; Critical ; No Current Strength assignments found.                                   ; I/O                 ;                   ;
; Pass         ; IO_000019 ; I/O Properties Checks for One I/O ; The I/O standard should support the requested On Chip Termination value.           ; Critical ; 0 such failures found.                                                   ; I/O                 ;                   ;
; Inapplicable ; IO_000020 ; I/O Properties Checks for One I/O ; The I/O standard should support the requested PCI Clamp Diode.                     ; Critical ; No Clamping Diode assignments found.                                     ; I/O                 ;                   ;
; Inapplicable ; IO_000021 ; I/O Properties Checks for One I/O ; The I/O standard should support the requested Weak Pull Up value.                  ; Critical ; No Weak Pull-Up Resistor assignments found.                              ; I/O                 ;                   ;
; Inapplicable ; IO_000022 ; I/O Properties Checks for One I/O ; The I/O standard should support the requested Bus Hold value.                      ; Critical ; No Enable Bus-Hold Circuitry assignments found.                          ; I/O                 ;                   ;
; Inapplicable ; IO_000023 ; I/O Properties Checks for One I/O ; The I/O standard should support the Open Drain value.                              ; Critical ; No open drain assignments found.                                         ; I/O                 ;                   ;
; Pass         ; IO_000024 ; I/O Properties Checks for One I/O ; The I/O direction should support the On Chip Termination value.                    ; Critical ; 0 such failures found.                                                   ; I/O                 ;                   ;
; Inapplicable ; IO_000026 ; I/O Properties Checks for One I/O ; On Chip Termination and Current Strength should not be used at the same time.      ; Critical ; No Current Strength assignments found.                                   ; I/O                 ;                   ;
; Inapplicable ; IO_000027 ; I/O Properties Checks for One I/O ; Weak Pull Up and Bus Hold should not be used at the same time.                     ; Critical ; No Enable Bus-Hold Circuitry or Weak Pull-Up Resistor assignments found. ; I/O                 ;                   ;
; Inapplicable ; IO_000045 ; I/O Properties Checks for One I/O ; The I/O standard should support the requested Slew Rate value.                     ; Critical ; No Slew Rate assignments found.                                          ; I/O                 ;                   ;
; Inapplicable ; IO_000046 ; I/O Properties Checks for One I/O ; The location should support the requested Slew Rate value.                         ; Critical ; No Slew Rate assignments found.                                          ; I/O                 ;                   ;
; Inapplicable ; IO_000047 ; I/O Properties Checks for One I/O ; On Chip Termination and Slew Rate should not be used at the same time.             ; Critical ; No Slew Rate assignments found.                                          ; I/O                 ;                   ;
; Inapplicable ; IO_000034 ; SI Related Distance Checks        ; Single-ended outputs should be 0 LAB row(s) away from a differential I/O.          ; High     ; No Differential I/O Standard assignments found.                          ; I/O                 ;                   ;
; ----         ; ----      ; Disclaimer                        ; OCT rules are checked but not reported.                                            ; None     ; ----                                                                     ; On Chip Termination ;                   ;
+--------------+-----------+-----------------------------------+------------------------------------------------------------------------------------+----------+--------------------------------------------------------------------------+---------------------+-------------------+


+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; I/O Rules Matrix                                                                                                                                                                                                                                                                                                                                                                                                                     ;
+--------------------+-----------+--------------+-----------+--------------+--------------+-----------+-----------+--------------+-----------+-----------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+
; Pin/Rules          ; IO_000001 ; IO_000002    ; IO_000003 ; IO_000004    ; IO_000005    ; IO_000006 ; IO_000007 ; IO_000008    ; IO_000009 ; IO_000010 ; IO_000011    ; IO_000012    ; IO_000013    ; IO_000014    ; IO_000015    ; IO_000018    ; IO_000019    ; IO_000020    ; IO_000021    ; IO_000022    ; IO_000023    ; IO_000024    ; IO_000026    ; IO_000027    ; IO_000045    ; IO_000046    ; IO_000047    ; IO_000034    ;
+--------------------+-----------+--------------+-----------+--------------+--------------+-----------+-----------+--------------+-----------+-----------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+
; Total Pass         ; 36        ; 0            ; 36        ; 0            ; 0            ; 36        ; 36        ; 0            ; 36        ; 36        ; 0            ; 27           ; 0            ; 0            ; 0            ; 0            ; 27           ; 0            ; 0            ; 0            ; 0            ; 27           ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ;
; Total Unchecked    ; 0         ; 0            ; 0         ; 0            ; 0            ; 0         ; 0         ; 0            ; 0         ; 0         ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ;
; Total Inapplicable ; 0         ; 36           ; 0         ; 36           ; 36           ; 0         ; 0         ; 36           ; 0         ; 0         ; 36           ; 9            ; 36           ; 36           ; 36           ; 36           ; 9            ; 36           ; 36           ; 36           ; 36           ; 9            ; 36           ; 36           ; 36           ; 36           ; 36           ; 36           ;
; Total Fail         ; 0         ; 0            ; 0         ; 0            ; 0            ; 0         ; 0         ; 0            ; 0         ; 0         ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ;
; red[0]             ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; red[1]             ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; red[2]             ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; red[3]             ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; red[4]             ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; red[5]             ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; red[6]             ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; red[7]             ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; green[0]           ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; green[1]           ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; green[2]           ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; green[3]           ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; green[4]           ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; green[5]           ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; green[6]           ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; green[7]           ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; blue[0]            ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; blue[1]            ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; blue[2]            ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; blue[3]            ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; blue[4]            ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; blue[5]            ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; blue[6]            ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; blue[7]            ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; hor_sync           ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; ver_sync           ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; vga_clk            ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; clk                ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; team1_vu_button    ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; team1_vd_button    ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; team2_vu_button    ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; team2_vd_button    ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; team2_hl_button    ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; team2_hr_button    ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; team1_hl_button    ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; team1_hr_button    ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
+--------------------+-----------+--------------+-----------+--------------+--------------+-----------+-----------+--------------+-----------+-----------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+


+------------------------------------------------------------------------------------------------+
; Fitter Device Options                                                                          ;
+------------------------------------------------------------------+-----------------------------+
; Option                                                           ; Setting                     ;
+------------------------------------------------------------------+-----------------------------+
; Enable user-supplied start-up clock (CLKUSR)                     ; Off                         ;
; Enable device-wide reset (DEV_CLRn)                              ; Off                         ;
; Enable device-wide output enable (DEV_OE)                        ; Off                         ;
; Enable INIT_DONE output                                          ; Off                         ;
; Configuration scheme                                             ; Passive Serial              ;
; Enable Error Detection CRC_ERROR pin                             ; Off                         ;
; Enable open drain on CRC_ERROR pin                               ; On                          ;
; Enable open drain on INIT_DONE pin                               ; On                          ;
; Enable open drain on Partial Reconfiguration pins                ; Off                         ;
; Enable open drain on nCEO pin                                    ; On                          ;
; Enable Partial Reconfiguration pins                              ; Off                         ;
; Enable input tri-state on active configuration pins in user mode ; Off                         ;
; Active Serial clock source                                       ; 100 MHz Internal Oscillator ;
; Device initialization clock source                               ; Internal Oscillator         ;
; Configuration Voltage Level                                      ; Auto                        ;
; Force Configuration Voltage Level                                ; Off                         ;
; Enable nCEO output                                               ; Off                         ;
; Data[15..8]                                                      ; Unreserved                  ;
; Data[7..5]                                                       ; Unreserved                  ;
; Base pin-out file on sameframe device                            ; Off                         ;
+------------------------------------------------------------------+-----------------------------+


+------------------------------------+
; Operating Settings and Conditions  ;
+---------------------------+--------+
; Setting                   ; Value  ;
+---------------------------+--------+
; Nominal Core Voltage      ; 1.10 V ;
; Low Junction Temperature  ; 0 °C   ;
; High Junction Temperature ; 85 °C  ;
+---------------------------+--------+


+------------------------------------------------------------+
; Estimated Delay Added for Hold Timing Summary              ;
+-----------------+----------------------+-------------------+
; Source Clock(s) ; Destination Clock(s) ; Delay Added in ns ;
+-----------------+----------------------+-------------------+
; clk             ; clk                  ; 1.4               ;
+-----------------+----------------------+-------------------+
Note: For more information on problematic transfers, consider running the Fitter again with the Optimize hold timing option (Settings Menu) turned off.
This will disable optimization of problematic paths and expose them for further analysis using the TimeQuest Timing Analyzer.


+---------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Estimated Delay Added for Hold Timing Details                                                                                                                 ;
+---------------------------------------------------------------------+---------------------------------------------------------------------+-------------------+
; Source Register                                                     ; Destination Register                                                ; Delay Added in ns ;
+---------------------------------------------------------------------+---------------------------------------------------------------------+-------------------+
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[2] ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[3] ; 0.286             ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[0] ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[3] ; 0.269             ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir[0] ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir[2] ; 0.250             ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[3] ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[4] ; 0.094             ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[1] ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[4] ; 0.094             ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[4] ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[4] ; 0.094             ;
; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|x_dir[1] ; game_controller:game_ctrl|ball_controller_furkan:ball_ctrl|y_dir[1] ; 0.083             ;
+---------------------------------------------------------------------+---------------------------------------------------------------------+-------------------+
Note: This table only shows the top 7 path(s) that have the largest delay added for hold.


+-----------------+
; Fitter Messages ;
+-----------------+
Info (11104): Parallel Compilation has detected 4 hyper-threaded processors. However, the extra hyper-threaded processors will not be used by default. Parallel Compilation will use 2 of the 2 physical processors detected instead.
Info (119006): Selected device 5CSEMA5F31C6 for design "fakequidditch"
Info (21077): Low junction temperature is 0 degrees C
Info (21077): High junction temperature is 85 degrees C
Info (171003): Fitter is performing an Auto Fit compilation, which may decrease Fitter effort to reduce compilation time
Warning (292013): Feature LogicLock is only available with a valid subscription license. You can purchase a software subscription to gain full access to this feature.
Warning (15714): Some pins have incomplete I/O assignments. Refer to the I/O Assignment Warnings report for details
Warning (205009): Dummy RLC values generated in IBIS model files for device 5CSEMA5 with package FBGA and pin count 896
Info (184020): Starting Fitter periphery placement operations
Warning (205009): Dummy RLC values generated in IBIS model files for device 5CSEMA5 with package FBGA and pin count 896
Info (11191): Automatically promoted 1 clock (1 global)
    Info (11162): clk~inputCLKENA0 with 517 fanout uses global clock CLKCTRL_G6
Warning (205009): Dummy RLC values generated in IBIS model files for device 5CSEMA5 with package FBGA and pin count 896
Info (184021): Fitter periphery placement operations ending: elapsed time is 00:00:00
Critical Warning (332012): Synopsys Design Constraints File file not found: 'fakequidditch.sdc'. A Synopsys Design Constraints File is required by the TimeQuest Timing Analyzer to get proper timing constraints. Without it, the Compiler will not properly optimize the design.
Info (332144): No user constrained base clocks found in the design
Info (332143): No user constrained clock uncertainty found in the design. Calling "derive_clock_uncertainty"
Info (332123): Deriving Clock Uncertainty. Please refer to report_sdc in TimeQuest to see clock uncertainties.
Info (332130): Timing requirements not specified -- quality metrics such as performance may be sacrificed to reduce compilation time.
Info (176233): Starting register packing
Info (176235): Finished register packing
    Extra Info (176219): No registers were packed into other blocks
Warning (15705): Ignored locations or region assignments to the following nodes
    Warning (15706): Node "game_on_switch" is assigned to location or region, but does not exist in design
Info (11798): Fitter preparation operations ending: elapsed time is 00:00:10
Info (170189): Fitter placement preparation operations beginning
Info (170190): Fitter placement preparation operations ending: elapsed time is 00:00:02
Info (170191): Fitter placement operations beginning
Info (170137): Fitter placement was successful
Info (170192): Fitter placement operations ending: elapsed time is 00:00:17
Info (170193): Fitter routing operations beginning
Info (170195): Router estimated average interconnect usage is 3% of the available device resources
    Info (170196): Router estimated peak interconnect usage is 21% of the available device resources in the region that extends from location X22_Y35 to location X32_Y45
Info (170194): Fitter routing operations ending: elapsed time is 00:00:18
Info (170199): The Fitter performed an Auto Fit compilation.  Optimizations were skipped to reduce compilation time.
    Info (170201): Optimizations that may affect the design's routability were skipped
Info (11888): Total time spent on timing analysis during the Fitter is 11.75 seconds.
Info (334003): Started post-fitting delay annotation
Warning (334000): Timing characteristics of device 5CSEMA5F31C6 are preliminary
Info (334004): Delay annotation completed successfully
Info (334003): Started post-fitting delay annotation
Warning (334000): Timing characteristics of device 5CSEMA5F31C6 are preliminary
Info (334004): Delay annotation completed successfully
Info (11801): Fitter post-fit operations ending: elapsed time is 00:00:16
Warning (171167): Found invalid Fitter assignments. See the Ignored Assignments panel in the Fitter Compilation Report for more information.
Info (144001): Generated suppressed messages file C:/Users/Cansu/Desktop/fakequidditch/output_files/fakequidditch.fit.smsg
Info: Quartus II 64-Bit Fitter was successful. 0 errors, 11 warnings
    Info: Peak virtual memory: 5961 megabytes
    Info: Processing ended: Fri May 31 16:06:39 2019
    Info: Elapsed time: 00:01:28
    Info: Total CPU time (on all processors): 00:01:58


+----------------------------+
; Fitter Suppressed Messages ;
+----------------------------+
The suppressed messages can be found in C:/Users/Cansu/Desktop/fakequidditch/output_files/fakequidditch.fit.smsg.