summaryrefslogtreecommitdiffstats
path: root/lst/pcitable
blob: 113e28d31bfd1b16bc8d71ac32eef9ee195e8e7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
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
0x0001	0x8139	0x10ec	0x8139	"8139too"
0x018a	0x0106	"8139too"
0x021b	0x8139	"8139too"
0x0291	0x8212	"dmfe"
0x02ac	0x1012	"8139too"
0x0357	0x000a	"8139cp"
0x0675	0x1700	"ISDN:hisax,type=36"
0x0675	0x1702	"ISDN:hisax,type=36"
0x0871	0xffa1	"ISDN:hisax,type=35"
0x0871	0xffa2	"ISDN:hisax,type=35"
0x0e11	0x3033	"Card:VESA driver (generic)"
0x0e11	0xae33	"triflex"
0x1000	0x0030	"mptspi"
0x1000	0x0032	"mptspi"
0x1000	0x0040	"mptscsih"
0x1000	0x0623	"mptscsih"
0x1000	0x0625	"mptscsih"
0x1000	0x0627	"mptscsih"
0x1000	0x0629	"mptscsih"
0x1000	0x0630	"mptscsih"
0x1001	0x9100	"initio"
0x1002	0x0084	"Card:VESA driver (generic)"
0x1002	0x0088	"Card:VESA driver (generic)"
0x1002	0x1304	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x1305	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x1306	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x1307	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x1309	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x130a	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x130b	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x130c	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x130d	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x130e	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x130f	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x1310	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x1311	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x1312	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x1313	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x1315	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x1316	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x1317	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x1318	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x131b	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x131c	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x131d	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x15d8	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x15dd	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x3150	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x3151	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x3152	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x3154	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x3155	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x3171	"unknown"
0x1002	0x3e50	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x3e54	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x3e70	"unknown"
0x1002	0x3e74	"unknown"
0x1002	0x4136	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4137	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4141	"Card:VESA driver (generic)"
0x1002	0x4144	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4145	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4146	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4147	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x4148	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4149	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x414a	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x414b	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x4150	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4151	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4152	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4153	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4154	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x4155	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x4156	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x4157	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x4158	"Card:ATI Mach 64-based cards"
0x1002	0x4237	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4242	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4336	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4337	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4354	"Card:ATI Mach 64-based cards"
0x1002	0x4358	"Card:ATI Mach 64-based cards"
0x1002	0x4437	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4554	"Card:ATI Mach 64-based cards"
0x1002	0x4654	"Card:ATI Mach 64-based cards"
0x1002	0x4742	"Card:ATI Mach 64-based cards"
0x1002	0x4744	"Card:ATI Mach 64-based cards"
0x1002	0x4747	"Card:ATI Mach 64-based cards"
0x1002	0x4749	"Card:ATI Mach 64-based cards"
0x1002	0x474c	"Card:ATI Mach 64-based cards"
0x1002	0x474d	"Card:ATI Mach 64-based cards"
0x1002	0x474e	"Card:ATI Mach 64-based cards"
0x1002	0x474f	"Card:ATI Mach 64-based cards"
0x1002	0x4750	"Card:ATI Mach 64-based cards"
0x1002	0x4751	"Card:ATI Mach 64-based cards"
0x1002	0x4752	"Card:ATI Mach 64-based cards (no 3D acceleration)"
0x1002	0x4753	"Card:ATI Mach 64-based cards"
0x1002	0x4754	"Card:ATI Mach 64-based cards"
0x1002	0x4755	"Card:ATI Mach 64-based cards"
0x1002	0x4756	"Card:ATI Mach 64-based cards"
0x1002	0x4757	"Card:ATI Mach 64-based cards"
0x1002	0x4758	"Card:ATI Mach 64-based cards"
0x1002	0x4759	"Card:ATI Mach 64-based cards"
0x1002	0x475a	"Card:ATI Mach 64-based cards"
0x1002	0x4966	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4967	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4a48	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4a49	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4a4a	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4a4b	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4a4c	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4a4d	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x4a4e	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4a4f	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4a50	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4a54	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4b48	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4b49	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4b4a	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4b4b	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4b4c	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4c42	"Card:ATI Mach 64-based cards"
0x1002	0x4c44	"Card:ATI Mach 64-based cards"
0x1002	0x4c45	"Card:ATI Rage 128-based cards"
0x1002	0x4c46	"Card:ATI Rage 128-based cards"
0x1002	0x4c47	"Card:ATI Mach 64-based cards"
0x1002	0x4c49	"Card:ATI Mach 64-based cards"
0x1002	0x4c4b	"Card:ATI Mach 64-based cards"
0x1002	0x4c4c	"Card:ATI Rage 128-based cards"
0x1002	0x4c4d	"Card:ATI Mach 64-based cards"
0x1002	0x4c4e	"Card:ATI Mach 64-based cards"
0x1002	0x4c50	"Card:ATI Mach 64-based cards"
0x1002	0x4c51	"Card:ATI Mach 64-based cards"
0x1002	0x4c52	"Card:ATI Mach 64-based cards"
0x1002	0x4c53	"Card:ATI Mach 64-based cards"
0x1002	0x4c54	"Card:ATI Mach 64-based cards"
0x1002	0x4c57	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4c58	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x4c59	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4c5a	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4c64	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x4c66	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4c67	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4c6e	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4d46	"Card:ATI Mach 64-based cards"
0x1002	0x4d4c	"Card:ATI Mach 64-based cards"
0x1002	0x4e44	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4e45	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4e46	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4e47	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x4e48	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4e49	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4e4a	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x4e4b	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x4e50	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4e51	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4e52	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4e53	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x4e54	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x4e56	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x5041	"Card:ATI Rage 128-based cards"
0x1002	0x5042	"Card:ATI Rage 128-based cards"
0x1002	0x5043	"Card:ATI Rage 128-based cards"
0x1002	0x5044	"Card:ATI Rage 128-based cards"
0x1002	0x5045	"Card:ATI Rage 128-based cards"
0x1002	0x5046	"Card:ATI Rage 128-based cards"
0x1002	0x5047	"Card:ATI Rage 128-based cards"
0x1002	0x5048	"Card:ATI Rage 128-based cards"
0x1002	0x5049	"Card:ATI Rage 128-based cards"
0x1002	0x504a	"Card:ATI Rage 128-based cards"
0x1002	0x504b	"Card:ATI Rage 128-based cards"
0x1002	0x504c	"Card:ATI Rage 128-based cards"
0x1002	0x504d	"Card:ATI Rage 128-based cards"
0x1002	0x504e	"Card:ATI Rage 128-based cards"
0x1002	0x504f	"Card:ATI Rage 128-based cards"
0x1002	0x5050	"Card:ATI Rage 128-based cards"
0x1002	0x5051	"Card:ATI Rage 128-based cards"
0x1002	0x5052	"Card:ATI Rage 128-based cards"
0x1002	0x5053	"Card:ATI Rage 128-based cards"
0x1002	0x5054	"Card:ATI Rage 128-based cards"
0x1002	0x5055	"Card:ATI Rage 128-based cards"
0x1002	0x5056	"Card:ATI Rage 128-based cards"
0x1002	0x5057	"Card:ATI Rage 128-based cards"
0x1002	0x5058	"Card:ATI Rage 128-based cards"
0x1002	0x5144	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5145	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5146	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5147	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5148	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x514c	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x514d	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5157	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5158	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5159	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x515a	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x515e	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5245	"Card:ATI Rage 128-based cards"
0x1002	0x5246	"Card:ATI Rage 128 TV-out"
0x1002	0x5247	"Card:ATI Rage 128-based cards"
0x1002	0x524b	"Card:ATI Rage 128-based cards"
0x1002	0x524c	"Card:ATI Rage 128-based cards"
0x1002	0x5345	"Card:ATI Rage 128-based cards"
0x1002	0x5346	"Card:ATI Rage 128-based cards"
0x1002	0x5347	"Card:ATI Rage 128-based cards"
0x1002	0x5348	"Card:ATI Rage 128-based cards"
0x1002	0x534b	"Card:ATI Rage 128-based cards"
0x1002	0x534c	"Card:ATI Rage 128-based cards"
0x1002	0x534d	"Card:ATI Rage 128-based cards"
0x1002	0x534e	"Card:ATI Rage 128-based cards"
0x1002	0x5354	"Card:ATI Mach 64-based cards"
0x1002	0x5446	"Card:ATI Rage 128-based cards"
0x1002	0x544c	"Card:ATI Rage 128-based cards"
0x1002	0x5452	"Card:ATI Rage 128-based cards"
0x1002	0x5453	"Card:ATI Rage 128-based cards"
0x1002	0x5454	"Card:ATI Rage 128-based cards"
0x1002	0x5455	"Card:ATI Rage 128-based cards"
0x1002	0x5460	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5462	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5464	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x5548	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5549	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x554a	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x554b	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x554c	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x554d	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x554e	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x554f	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5550	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x5551	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x5552	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x5554	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x5555	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x564a	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x564b	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x564f	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5652	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5653	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5654	"Card:ATI Mach 64-based cards"
0x1002	0x5655	"Card:ATI Mach 64-based cards"
0x1002	0x5656	"Card:ATI Mach 64-based cards"
0x1002	0x5657	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5834	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5835	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5858	"Card:ATI Mach 64-based cards"
0x1002	0x5954	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5955	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5960	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5961	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5962	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5964	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5965	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5969	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5974	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5975	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5a41	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5a42	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5a61	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5a62	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5b60	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5b62	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5b63	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5b64	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x5b65	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5c61	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5c63	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5d48	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5d49	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x5d4a	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5d4c	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5d4d	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5d4e	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5d4f	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5d50	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x5d51	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x5d52	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5d57	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5e48	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x5e49	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x5e4a	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5e4b	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5e4c	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5e4d	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x5e4f	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x6600	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6601	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6602	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6603	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6604	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6605	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6606	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6607	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6608	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6610	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6611	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6613	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6617	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x6620	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6621	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6623	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6631	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6640	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6641	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6646	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6647	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6649	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6650	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6651	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6658	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x665c	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x665d	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x665f	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6660	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6663	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6664	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6665	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6667	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x666f	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x66a0	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x66a1	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x66a2	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x66a3	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x66a4	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x66a7	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x66af	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6700	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6701	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6702	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6703	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6704	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6705	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6706	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6707	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6708	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6709	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6718	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6719	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x671c	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x671d	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x671f	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6720	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6721	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6722	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6723	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6724	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6725	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6726	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6727	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6728	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6729	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6738	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6739	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x673e	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6740	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6741	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6742	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6743	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6744	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6745	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6746	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6747	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6748	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6749	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x674a	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6750	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6751	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6758	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6759	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x675b	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x675d	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x675f	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6760	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6761	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6762	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6763	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6764	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6765	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6766	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6767	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6768	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6770	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6771	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6772	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6778	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6779	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x677b	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6780	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6784	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6788	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x678a	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6790	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6791	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6792	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6798	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x6799	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x679a	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x679b	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x679e	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x679f	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x67a0	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x67a1	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x67a2	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x67a8	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x67a9	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x67aa	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x67b0	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x67b1	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x67b8	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x67b9	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x67ba	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x67be	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x67c0	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x67c1	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x67c2	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x67c4	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x67c7	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x67c8	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x67c9	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x67ca	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x67cc	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x67cf	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x67d0	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x67df	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x67e0	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x67e1	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x67e3	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x67e7	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x67e8	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x67e9	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x67eb	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x67ef	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x67ff	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6800	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6801	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6802	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x6806	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6808	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6809	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6810	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6811	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6816	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x6817	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x6818	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6819	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6820	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6821	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6822	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6823	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6824	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6825	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6826	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6827	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6828	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6829	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x682a	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x682b	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x682c	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x682d	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x682f	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6830	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6831	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6835	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6837	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6838	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6839	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x683b	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x683d	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x683f	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6840	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6841	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6842	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6843	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6849	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x684c	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6850	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6858	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6859	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6860	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6861	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6862	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6863	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6864	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6867	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6868	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6869	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x686a	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x686b	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x686c	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x686d	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x686e	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x686f	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x687f	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6880	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6888	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6889	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x688a	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x688c	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x688d	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6890	"Card:ATI Radeon HD 5000 and later without free driver (vesa/fglrx)"
0x1002	0x6898	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6899	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x689b	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x689c	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x689d	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x689e	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68a0	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68a1	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68a8	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68a9	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68b0	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68b1	"Card:ATI Radeon HD 5000 and later without free driver (vesa/fglrx)"
0x1002	0x68b8	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68b9	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68ba	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68be	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68bf	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68c0	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68c1	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68c7	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68c8	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68c9	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68d0	"Card:ATI Radeon HD 5000 and later without free driver (vesa/fglrx)"
0x1002	0x68d1	"Card:ATI Radeon HD 5000 and later without free driver (vesa/fglrx)"
0x1002	0x68d8	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68d9	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68da	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68de	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68e0	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68e1	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68e4	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68e5	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68e8	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68e9	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68f0	"Card:ATI Radeon HD 5000 and later without free driver (vesa/fglrx)"
0x1002	0x68f1	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68f2	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68f8	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68f9	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68fa	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x68fe	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x6900	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6901	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6902	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6903	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6907	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6920	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6921	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6928	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6929	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x692b	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x692f	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6930	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6938	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6939	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x694c	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x694e	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x694f	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6980	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6981	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6985	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6986	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6987	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6995	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6997	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x699f	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x69a0	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x69a1	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x69a2	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x69a3	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x69af	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x6fdf	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x7100	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7101	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7102	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7103	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x7104	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x7105	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x7106	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x7108	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7109	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x710a	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x710b	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x710c	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x710e	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x710f	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x7140	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7141	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7142	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7143	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7144	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7145	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7146	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7147	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7149	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x714a	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x714b	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x714c	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x714d	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x714e	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x714f	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7151	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7152	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x7153	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x715e	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x715f	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7180	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7181	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7183	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7186	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7187	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7188	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x718a	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x718b	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x718c	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x718d	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x718f	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7193	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7196	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x719b	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x719f	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x71c0	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x71c1	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x71c2	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x71c3	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x71c4	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x71c5	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x71c6	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x71c7	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x71cd	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x71ce	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x71d2	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x71d4	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x71d5	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x71d6	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x71da	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x71de	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7200	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7210	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7211	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7240	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7243	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7244	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7245	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7246	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7247	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7248	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7249	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x724a	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x724b	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x724c	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x724d	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x724e	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x724f	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7280	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7281	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7283	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7284	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7287	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7288	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7289	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x728b	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x728c	"Card:ATI r300/r400/r500 based FireGL"
0x1002	0x7290	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7291	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7293	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7297	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7300	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x730f	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x7310	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x7312	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x7318	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x7319	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x731a	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x731b	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x731f	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x7834	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7835	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x791e	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x791f	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x793f	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7941	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x7942	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x796c	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x796d	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x796e	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x796f	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9400	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9401	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9402	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9403	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9405	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x940a	"Card:ATI r600 based FireGL"
0x1002	0x940b	"Card:ATI r600 based FireGL"
0x1002	0x940f	"Card:ATI r600 based FireGL"
0x1002	0x9440	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9441	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9442	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9443	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9444	"Card:ATI FirePro (radeon/fglrx)"
0x1002	0x9446	"Card:ATI FirePro (radeon/fglrx)"
0x1002	0x944a	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x944b	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x944c	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x944e	"Card:ATI FirePro (radeon/fglrx)"
0x1002	0x9450	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9452	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9456	"Card:ATI FirePro (radeon/fglrx)"
0x1002	0x945a	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x945b	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x945e	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9460	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9462	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x946a	"Card:ATI FirePro (radeon/fglrx)"
0x1002	0x946b	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x947a	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x947b	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9480	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9487	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9488	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9489	"Card:ATI FirePro (radeon/fglrx)"
0x1002	0x948a	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x948f	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9490	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9491	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9495	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9498	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x949c	"Card:ATI FirePro (radeon/fglrx)"
0x1002	0x949e	"Card:ATI FirePro (radeon/fglrx)"
0x1002	0x949f	"Card:ATI FirePro (radeon/fglrx)"
0x1002	0x94a0	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x94a1	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x94a3	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x94b1	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x94b3	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x94b4	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x94b5	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x94b9	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x94c0	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x94c1	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x94c3	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x94c4	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x94c5	"Card:ATI r600 based FireGL"
0x1002	0x94c6	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x94c7	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x94c8	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x94c9	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x94cb	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x94cc	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x94cd	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9500	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9501	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9504	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9505	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9506	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9507	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9508	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9509	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x950f	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9511	"Card:ATI r600 based FireGL"
0x1002	0x9515	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9517	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9519	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9540	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9541	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9542	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x954e	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x954f	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9552	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9553	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9555	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9557	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x955f	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9580	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9581	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9583	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9586	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9587	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9588	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9589	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x958a	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x958b	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x958c	"Card:ATI r600 based FireGL"
0x1002	0x958d	"Card:ATI r600 based FireGL"
0x1002	0x958e	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x958f	"Card:ATI r600 based FireGL"
0x1002	0x9590	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9591	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9593	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9595	"Card:ATI r600 based FireGL"
0x1002	0x9596	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9597	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9598	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9599	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x959b	"Card:ATI r600 based FireGL"
0x1002	0x95c0	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x95c2	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x95c4	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x95c5	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x95c6	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x95c7	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x95c9	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x95cc	"Card:ATI FirePro (radeon/fglrx)"
0x1002	0x95cd	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x95ce	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x95cf	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9610	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9611	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9612	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9613	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9614	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9615	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9616	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9640	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9641	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9642	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9643	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9644	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9645	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9647	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9648	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9649	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x964a	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x964b	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x964c	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x964e	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x964f	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9710	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9711	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9712	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9713	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9714	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9715	"Card:ATI Radeon HD 4870 and earlier"
0x1002	0x9802	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9803	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9804	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9805	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9806	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9807	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9808	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9809	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x980a	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9830	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9831	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9832	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9833	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9834	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9835	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9836	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9837	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9838	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9839	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x983a	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x983b	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x983c	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x983d	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x983e	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x983f	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9850	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9851	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9852	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9853	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9854	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9855	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9856	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9857	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9858	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9859	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x985a	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x985b	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x985c	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x985d	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x985e	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x985f	"Card:ATI Radeon HD 5000 to HD 6300 (radeon/fglrx)"
0x1002	0x9870	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x9874	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x9875	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x9876	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x9877	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x98b0	"Card:ATI Radeon HD 5000 and later without free driver (vesa/fglrx)"
0x1002	0x98b1	"Card:ATI Radeon HD 5000 and later without free driver (vesa/fglrx)"
0x1002	0x98e4	"Card:ATI Volcanic Islands and later (amdgpu/fglrx)"
0x1002	0x9900	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9901	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9903	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9904	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9905	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9906	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9907	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9908	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9909	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x990a	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x990b	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x990c	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x990d	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x990e	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x990f	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9910	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9913	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9917	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9918	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9919	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9990	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9991	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9992	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9993	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9994	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9995	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9996	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9997	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9998	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x9999	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x999a	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x999b	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x999c	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x999d	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x99a0	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x99a2	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1002	0x99a4	"Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
0x1005	0x2301	"Card:VESA driver (generic)"
0x1005	0x2302	"Card:VESA driver (generic)"
0x1005	0x2364	"Card:VESA driver (generic)"
0x1005	0x2464	"Card:VESA driver (generic)"
0x1005	0x2501	"Card:VESA driver (generic)"
0x100b	0x0002	"ns87415"
0x100b	0x0020	"natsemi"
0x100b	0x0022	"ns83820"
0x100b	0x0030	"Card:AMD Geode GX/LX"
0x100b	0x0104	"Card:AMD Geode GX/LX"
0x100b	0x0502	"sc1200"
0x100b	0x0504	"Card:AMD Geode GX/LX"
0x100b	0xd001	"Card:ATI Mach 64-based cards"
0x100c	0x3202	"Card:Tseng ET4000W32p / ET6x00-based cards"
0x100c	0x3205	"Card:Tseng ET4000W32p / ET6x00-based cards"
0x100c	0x3206	"Card:Tseng ET4000W32p / ET6x00-based cards"
0x100c	0x3207	"Card:Tseng ET4000W32p / ET6x00-based cards"
0x100c	0x3208	"Card:Tseng ET4000W32p / ET6x00-based cards"
0x100c	0x4702	"Card:Tseng ET4000W32p / ET6x00-based cards"
0x100e	0x9000	"Card:VESA driver (generic)"
0x100e	0x9001	"Card:VESA driver (generic)"
0x100e	0x9002	"Card:VESA driver (generic)"
0x100e	0x9100	"Card:VESA driver (generic)"
0x1011	0x0001	"tulip"
0x1011	0x0009	"tulip"
0x1011	0x000d	"Card:Digital 8-plane TGA (Generic)"
0x1011	0x0019	"tulip"
0x1011	0x0021	"tulip"
0x1011	0x0022	"tulip"
0x1011	0x1065	"ISDN:c4"
0x1013	0x0038	"Card:VESA driver (generic)"
0x1013	0x0040	"Card:VESA driver (generic)"
0x1013	0x004c	"Card:VESA driver (generic)"
0x1013	0x00a0	"Card:Cirrus Logic GD54xx-based cards"
0x1013	0x00a2	"Card:Cirrus Logic GD54xx-based cards"
0x1013	0x00a4	"Card:Cirrus Logic GD54xx-based cards"
0x1013	0x00a8	"Card:Cirrus Logic GD54xx-based cards"
0x1013	0x00ac	"Card:Cirrus Logic GD54xx-based cards"
0x1013	0x00b0	"Card:Cirrus Logic GD54xx-based cards"
0x1013	0x00b8	"Card:Cirrus Logic GD54xx-based cards"
0x1013	0x00bc	"Card:Cirrus Logic GD54xx-based cards"
0x1013	0x00d0	"Card:Cirrus Logic GD54xx-based cards"
0x1013	0x00d2	"Card:Cirrus Logic GD54xx-based cards"
0x1013	0x00d4	"Card:Cirrus Logic GD54xx-based cards"
0x1013	0x00d5	"Card:Cirrus Logic GD54xx-based cards"
0x1013	0x00d6	"Card:Cirrus Logic GD54xx-based cards"
0x1013	0x00e8	"Card:Cirrus Logic GD54xx-based cards"
0x1013	0x1200	"Card:VESA driver (generic)"
0x1013	0x1202	"Card:VESA driver (generic)"
0x1013	0x1204	"Card:VESA driver (generic)"
0x1022	0x2000	"pcnet32"
0x1022	0x2001	"pcnet32"
0x1022	0x2081	"Card:AMD Geode GX/LX"
0x1022	0x7446	"slamr"
0x1023	0x2000	"snd_trident"
0x1023	0x2001	"snd_trident"
0x1023	0x2100	"Card:Trident-based cards"
0x1023	0x7018	"snd_trident"
0x1023	0x8200	"Card:VESA driver (generic)"
0x1023	0x8400	"Card:Trident-based cards"
0x1023	0x8420	"Card:Trident-based cards"
0x1023	0x8500	"Card:Trident-based cards"
0x1023	0x8520	"Card:Trident-based cards"
0x1023	0x8600	"Card:Trident-based cards"
0x1023	0x8620	"Card:Trident-based cards"
0x1023	0x8800	"Card:Trident-based cards"
0x1023	0x8820	"Card:Trident-based cards"
0x1023	0x8900	"Card:Trident-based cards"
0x1023	0x9000	"Card:VESA driver (generic)"
0x1023	0x9100	"Card:VESA driver (generic)"
0x1023	0x9200	"Card:VESA driver (generic)"
0x1023	0x9320	"Card:Trident-based cards"
0x1023	0x9350	"Card:Trident-based cards"
0x1023	0x9360	"Card:Trident-based cards"
0x1023	0x9382	"Card:Trident-based cards"
0x1023	0x9383	"Card:Trident-based cards"
0x1023	0x9385	"Card:Trident-based cards"
0x1023	0x9386	"Card:Trident-based cards"
0x1023	0x9388	"Card:Trident-based cards"
0x1023	0x9397	"Card:Trident-based cards"
0x1023	0x939a	"Card:Trident-based cards"
0x1023	0x9420	"Card:Trident-based cards"
0x1023	0x9430	"Card:Trident-based cards"
0x1023	0x9440	"Card:Trident-based cards"
0x1023	0x9460	"Card:Trident-based cards"
0x1023	0x9470	"Card:Trident-based cards"
0x1023	0x9520	"Card:Trident-based cards"
0x1023	0x9525	"Card:Trident-based cards"
0x1023	0x9540	"Card:Trident-based cards"
0x1023	0x9660	"Card:Trident-based cards"
0x1023	0x9680	"Card:Trident-based cards"
0x1023	0x9682	"Card:Trident-based cards"
0x1023	0x9683	"Card:Trident-based cards"
0x1023	0x9685	"Card:Trident-based cards"
0x1023	0x9750	"Card:Trident-based cards"
0x1023	0x9753	"Card:Trident-based cards"
0x1023	0x9754	"Card:Trident-based cards"
0x1023	0x9759	"Card:Trident-based cards"
0x1023	0x9783	"Card:Trident-based cards"
0x1023	0x9785	"Card:Trident-based cards"
0x1023	0x9850	"Card:Trident-based cards"
0x1023	0x9880	"Card:Trident-based cards"
0x1023	0x9910	"Card:Trident-based cards"
0x1023	0x9930	"Card:Trident-based cards"
0x1024	0x1024	"Hcf:www.linmodems.org"
0x1025	0x0039	"8139too"
0x102b	0x0001	"Card:Matrox Millennium G series (single head)"
0x102b	0x0010	"Card:Matrox Millennium / II / Productiva G100"
0x102b	0x0100	"Card:Matrox Millennium / II / Productiva G100"
0x102b	0x0518	"Card:Matrox Millennium / II / Productiva G100"
0x102b	0x0519	"Card:Matrox Millennium / II / Productiva G100"
0x102b	0x051a	"Card:Matrox Millennium G series (single head)"
0x102b	0x051b	"Card:Matrox Millennium / II / Productiva G100"
0x102b	0x051e	"Card:Matrox Millennium G series (single head)"
0x102b	0x051f	"Card:Matrox Millennium / II / Productiva G100"
0x102b	0x0520	"Card:Matrox Millennium G series (single head)"
0x102b	0x0521	0x1014	0xff03	"Card:Matrox Millennium G series (single head)"
0x102b	0x0521	0x102b	0x48e9	"Card:Matrox Millennium G series (single head)"
0x102b	0x0521	0x102b	0x48f8	"Card:Matrox Millennium G series (single head)"
0x102b	0x0521	0x102b	0x4a60	"Card:Matrox Millennium G series (single head)"
0x102b	0x0521	0x102b	0x4a64	"Card:Matrox Millennium G series (single head)"
0x102b	0x0521	0x102b	0xc93c	"Card:Matrox Millennium G series (single head)"
0x102b	0x0521	0x102b	0xc9b0	"Card:Matrox Millennium G series (single head)"
0x102b	0x0521	0x102b	0xc9bc	"Card:Matrox Millennium G series (single head)"
0x102b	0x0521	0x102b	0xca60	"Card:Matrox Millennium G series (single head)"
0x102b	0x0521	0x102b	0xca6c	"Card:Matrox Millennium G series (single head)"
0x102b	0x0521	0x102b	0xdbbc	"Card:Matrox Millennium G series (single head)"
0x102b	0x0521	0x102b	0xdbc2	"Card:Matrox Millennium G series (dual head)"
0x102b	0x0521	0x102b	0xdbc3	"Card:Matrox Millennium G series (dual head)"
0x102b	0x0521	0x102b	0xdbc8	"Card:Matrox Millennium G series (dual head)"
0x102b	0x0521	0x102b	0xdbd2	"Card:Matrox Millennium G200 (quad head)"
0x102b	0x0521	0x102b	0xdbd3	"Card:Matrox Millennium G200 (quad head)"
0x102b	0x0521	0x102b	0xdbd4	"Card:Matrox Millennium G200 (quad head)"
0x102b	0x0521	0x102b	0xdbd5	"Card:Matrox Millennium G200 (quad head)"
0x102b	0x0521	0x102b	0xdbd8	"Card:Matrox Millennium G200 (quad head)"
0x102b	0x0521	0x102b	0xdbd9	"Card:Matrox Millennium G200 (quad head)"
0x102b	0x0521	0x102b	0xdbe2	"Card:Matrox Millennium G200 (quad head)"
0x102b	0x0521	0x102b	0xdbe3	"Card:Matrox Millennium G200 (quad head)"
0x102b	0x0521	0x102b	0xdbe8	"Card:Matrox Millennium G200 (quad head)"
0x102b	0x0521	0x102b	0xdbf2	"Card:Matrox Millennium G200 (quad head)"
0x102b	0x0521	0x102b	0xdbf3	"Card:Matrox Millennium G200 (quad head)"
0x102b	0x0521	0x102b	0xdbf4	"Card:Matrox Millennium G200 (quad head)"
0x102b	0x0521	0x102b	0xdbf5	"Card:Matrox Millennium G200 (quad head)"
0x102b	0x0521	0x102b	0xdbf8	"Card:Matrox Millennium G200 (quad head)"
0x102b	0x0521	0x102b	0xdbf9	"Card:Matrox Millennium G200 (quad head)"
0x102b	0x0521	0x102b	0xf806	"Card:Matrox Millennium G series (single head)"
0x102b	0x0521	0x102b	0xff00	"Card:Matrox Millennium G series (single head)"
0x102b	0x0521	0x102b	0xff02	"Card:Matrox Millennium G series (single head)"
0x102b	0x0521	0x102b	0xff03	"Card:Matrox Millennium G series (single head)"
0x102b	0x0521	0x102b	0xff04	"Card:Matrox Millennium G series (single head)"
0x102b	0x0521	0x110a	0x0032	"Card:Matrox Millennium G series (single head)"
0x102b	0x0521	"Card:Matrox Millennium G series (single head)"
0x102b	0x0522	"Card:Matrox Millennium G series (single head)"
0x102b	0x0524	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x0e11	0xb16f	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x0328	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x0338	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x0378	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x0538	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x0541	"Card:Matrox Millennium G series (dual head)"
0x102b	0x0525	0x102b	0x0542	"Card:Matrox Millennium G series (dual head)"
0x102b	0x0525	0x102b	0x0543	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x0641	"Card:Matrox Millennium G series (dual head)"
0x102b	0x0525	0x102b	0x0642	"Card:Matrox Millennium G series (dual head)"
0x102b	0x0525	0x102b	0x0643	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x07c0	"Card:Matrox Millennium G series (dual head)"
0x102b	0x0525	0x102b	0x07c1	"Card:Matrox Millennium G series (dual head)"
0x102b	0x0525	0x102b	0x0d41	"Card:Matrox Millennium G series (dual head)"
0x102b	0x0525	0x102b	0x0d42	"Card:Matrox Millennium G series (dual head)"
0x102b	0x0525	0x102b	0x0d43	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x0e00	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x0e01	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x0e02	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x0e03	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x0f80	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x0f81	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x0f82	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x0f83	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x19d8	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x19f8	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x2159	"Card:Matrox Millennium G series (dual head)"
0x102b	0x0525	0x102b	0x2179	"Card:Matrox Millennium G series (dual head)"
0x102b	0x0525	0x102b	0x217d	"Card:Matrox Millennium G series (dual head)"
0x102b	0x0525	0x102b	0x23c0	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x23c1	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x23c2	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x23c3	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x2f58	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x2f78	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x3693	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x5dd0	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x5f50	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x5f51	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x5f52	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x102b	0x9010	"Card:Matrox Millennium G series (dual head)"
0x102b	0x0525	0x1458	0x0400	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x1705	0x0001	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x1705	0x0002	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x1705	0x0003	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	0x1705	0x0004	"Card:Matrox Millennium G series (single head)"
0x102b	0x0525	"Card:Matrox Millennium G series (single head)"
0x102b	0x0527	"Card:VESA driver (generic)"
0x102b	0x0528	"Card:VESA driver (generic)"
0x102b	0x0530	"Card:Matrox Millennium G series (single head)"
0x102b	0x0532	"Card:Matrox Millennium G series (single head)"
0x102b	0x0541	"Card:Matrox Millennium G series (single head)"
0x102b	0x0542	"Card:Matrox Millennium G series (single head)"
0x102b	0x0641	"Card:Matrox Millennium G series (single head)"
0x102b	0x0642	"Card:Matrox Millennium G series (single head)"
0x102b	0x07c0	"Card:Matrox Millennium G series (single head)"
0x102b	0x07c1	"Card:Matrox Millennium G series (single head)"
0x102b	0x0d10	"Card:Matrox Millennium G series (single head)"
0x102b	0x0d41	"Card:Matrox Millennium G series (single head)"
0x102b	0x0d42	"Card:Matrox Millennium G series (single head)"
0x102b	0x0e00	"Card:Matrox Millennium G series (single head)"
0x102b	0x0e01	"Card:Matrox Millennium G series (single head)"
0x102b	0x0e02	"Card:Matrox Millennium G series (single head)"
0x102b	0x0e03	"Card:Matrox Millennium G series (single head)"
0x102b	0x0f80	"Card:Matrox Millennium G series (single head)"
0x102b	0x0f81	"Card:Matrox Millennium G series (single head)"
0x102b	0x0f82	"Card:Matrox Millennium G series (single head)"
0x102b	0x0f83	"Card:Matrox Millennium G series (single head)"
0x102b	0x1000	"Card:Matrox Millennium / II / Productiva G100"
0x102b	0x1001	"Card:Matrox Millennium / II / Productiva G100"
0x102b	0x102b	"Card:Matrox Millennium G series (single head)"
0x102b	0x1100	"Card:Matrox Millennium G series (single head)"
0x102b	0x1525	"Card:Matrox Millennium G series (single head)"
0x102b	0x1527	"Card:VESA driver (generic)"
0x102b	0x1705	"Card:Matrox Millennium G series (single head)"
0x102b	0x2007	"Card:Matrox Millennium G series (single head)"
0x102b	0x2527	"Card:Matrox Millennium G series (dual head)"
0x102b	0x2537	"Card:VESA driver (generic)"
0x102b	0x2538	"Card:VESA driver (generic)"
0x102b	0xff02	"Card:Matrox Millennium G series (single head)"
0x102b	0xff03	"Card:Matrox Millennium G series (single head)"
0x102b	0xff04	"Card:Matrox Millennium G series (single head)"
0x102c	0x00b8	"Card:Chips & Technologies-based cards"
0x102c	0x00c0	"Card:Chips & Technologies-based cards"
0x102c	0x00d0	"Card:Chips & Technologies-based cards"
0x102c	0x00d8	"Card:Chips & Technologies-based cards"
0x102c	0x00dc	"Card:Chips & Technologies-based cards"
0x102c	0x00e0	"Card:Chips & Technologies-based cards"
0x102c	0x00e4	"Card:Chips & Technologies-based cards"
0x102c	0x00e5	"Card:Chips & Technologies-based cards"
0x102c	0x00f0	"Card:Chips & Technologies-based cards"
0x102c	0x00f4	"Card:Chips & Technologies-based cards"
0x102c	0x0c30	"Card:Chips & Technologies-based cards"
0x1031	0x5601	"Card:VESA driver (generic)"
0x1039	0x0008	"i2c_sis5595"
0x1039	0x0200	"Card:SiS old series-based cards"
0x1039	0x0204	"Card:VESA driver (generic)"
0x1039	0x0205	"Card:SiS old series-based cards"
0x1039	0x0215	"Card:SiS old series-based cards"
0x1039	0x0225	"Card:SiS old series-based cards"
0x1039	0x0300	"Card:SiS 300 series-based cards"
0x1039	0x0305	"Card:SiS SiS / XGI 315 / 330 / 340 series-based cards"
0x1039	0x0310	"Card:SiS SiS / XGI 315 / 330 / 340 series-based cards"
0x1039	0x0315	"Card:SiS SiS / XGI 315 / 330 / 340 series-based cards"
0x1039	0x0325	"Card:SiS SiS / XGI 315 / 330 / 340 series-based cards"
0x1039	0x0330	"Card:SiS SiS / XGI 315 / 330 / 340 series-based cards"
0x1039	0x0340	"Card:SiS SiS / XGI 315 / 330 / 340 series-based cards"
0x1039	0x5300	"Card:SiS 300 series-based cards"
0x1039	0x5315	"Card:SiS SiS / XGI 315 / 330 / 340 series-based cards"
0x1039	0x5597	"Card:SiS old series-based cards"
0x1039	0x6226	"Card:SiS old series-based cards"
0x1039	0x6236	"Card:SiS old series-based cards"
0x1039	0x6300	"Card:SiS 300 series-based cards"
0x1039	0x6306	"Card:SiS old series-based cards"
0x1039	0x6325	"Card:SiS SiS / XGI 315 / 330 / 340 series-based cards"
0x1039	0x6326	"Card:SiS old series-based cards"
0x1039	0x6330	"Card:SiS old series-based cards"
0x1039	0x6350	"Card:SiS SiS 670 / 671-based cards"
0x1039	0x6351	"Card:SiS SiS 670 / 671-based cards"
0x1039	0x7013	"slamr"
0x1039	0x7018	"snd_trident"
0x1039	0x7300	"Card:SiS 300 series-based cards"
0x103c	0x1279	"Card:ATI Mach 64-based cards"
0x1042	0x1000	"rz1000"
0x1042	0x1001	"rz1000"
0x1043	0x0200	"Card:NVIDIA RIVA TNT to GeForce 2"
0x1043	0x0675	"ISDN:hisax,type=35"
0x1043	0x4015	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x1043	0x401d	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x1043	0x4021	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x1043	0x4057	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x1043	0x8047	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x1043	0x807b	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x1043	0x80bb	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x1043	0x80df	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x1043	0x81f4	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x1044	0xa400	"eata"
0x1044	0xa501	"dpt_i2o"
0x1044	0xa511	"dpt_i2o"
0x1045	0xc621	"opti621"
0x1045	0xd568	"opti621"
0x1048	0x0a32	"Card:3Dlabs Glint / Permedia-based cards (software cursor)"
0x1048	0x0c60	"Card:NVIDIA RIVA TNT to GeForce 2"
0x1048	0x0d22	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x1048	0x1000	"ISDN:hisax,type=18"
0x1048	0x3000	"ISDN:hisax,type=18"
0x104a	0x0010	"Card:VESA driver (generic)"
0x104a	0x0500	"ADSL:unicorn"
0x104a	0x0981	"tulip"
0x104a	0x2774	"tulip"
0x104c	0x3d04	"Card:3Dlabs Glint / Permedia-based cards"
0x104c	0x3d07	"Card:3Dlabs Glint / Permedia-based cards (software cursor)"
0x104d	0x8056	"Hcf:www.linmodems.org"
0x104e	0x0107	"Card:VESA driver (generic)"
0x1050	0x6692	"ISDN:hisax,type=36"
0x1051	0x0100	"ISDN:hisax,type=35"
0x1055	0x9130	"slc90e66"
0x1055	0x9178	"slamr"
0x1057	0x3410	0xecc0	0x0100	"snd-echo3g"
0x105d	0x2309	"Card:Number Nine I-128-based cards"
0x105d	0x2339	"Card:Number Nine I-128-based cards"
0x105d	0x493d	"Card:Number Nine I-128-based cards"
0x105d	0x5348	"Card:Number Nine I-128-based cards"
0x1061	0x0001	"Card:VESA driver (generic)"
0x106b	0x0003	"Card:FrameBuffer (generic)"
0x1073	0x0003	"snd_ymfpci"
0x1073	0x0004	"snd_ymfpci"
0x1073	0x000a	"snd_ymfpci"
0x1073	0x000c	"snd_ymfpci"
0x1073	0x000d	"snd_ymfpci"
0x1073	0x0012	"snd_ymfpci"
0x1078	0x0000	"Card:MediaGX"
0x1078	0x0002	"Card:MediaGX"
0x1078	0x0104	"Card:MediaGX"
0x107d	0x204d	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x107d	0x2134	"Card:NVIDIA RIVA TNT to GeForce 2"
0x107d	0x2971	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x1092	0x00a0	"Card:Cirrus Logic GD54xx-based cards"
0x1092	0x00a8	"Card:Cirrus Logic GD54xx-based cards"
0x1092	0x0550	"Card:NVIDIA RIVA TNT to GeForce 2"
0x1092	0x1092	"Card:NVIDIA RIVA TNT to GeForce 2"
0x1092	0x8810	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x1092	0x8811	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x1092	0x8880	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x1092	0x8881	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x1092	0x88b0	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x1092	0x88b1	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x1092	0x88c0	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x1092	0x88c1	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x1092	0x88d0	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x1092	0x88d1	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x1092	0x88f0	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x1092	0x88f1	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x1098	0x0001	"Card:VESA driver (generic)"
0x1098	0x0002	"Card:VESA driver (generic)"
0x109e	0x0878	0x0070	0x13eb	"bt878"
0x109e	0x0878	0x0070	0xff01	"snd_bt87x"
0x109e	0x0878	0x0071	0x0101	"bt878"
0x109e	0x0878	0x1002	0x0001	"bt878"
0x109e	0x0878	0x1002	0x0003	"bt878"
0x109e	0x0878	0x107d	0x6606	"snd_bt87x"
0x109e	0x0878	0x11bd	0x0012	"bt878"
0x109e	0x0878	0x11bd	0x001c	"bt878"
0x109e	0x0878	0x121a	0x3000	"snd_bt87x"
0x109e	0x0878	0x127a	0x0001	"bt878"
0x109e	0x0878	0x127a	0x0002	"bt878"
0x109e	0x0878	0x127a	0x0003	"bt878"
0x109e	0x0878	0x127a	0x0048	"bt878"
0x109e	0x0878	0x13e9	0x0070	"bt878"
0x109e	0x0878	0x144f	0x3000	"bt878"
0x109e	0x0878	0x1461	0x0002	"bt878"
0x109e	0x0878	0x1461	0x0003	"snd_bt87x"
0x109e	0x0878	0x1461	0x0004	"bt878"
0x109e	0x0878	0x1461	0x0761	"bt878"
0x109e	0x0878	0x1461	0x0771	"bt878"
0x109e	0x0878	0x14f1	0x0001	"bt878"
0x109e	0x0878	0x14f1	0x0002	"bt878"
0x109e	0x0878	0x14f1	0x0003	"bt878"
0x109e	0x0878	0x14f1	0x0048	"bt878"
0x109e	0x0878	0x1822	0x0001	"bt878"
0x109e	0x0878	0x18ac	0xd500	"bt878"
0x109e	0x0878	0x270f	0xfc00	"bt878"
0x109e	0x0878	0xbd11	0x1200	"snd_bt87x"
0x109e	0x0878	"bt878"
0x109e	0x0879	0x0070	0x13eb	"snd_bt87x"
0x10a5	0x3052	"slamr"
0x10a5	0x5459	"slamr"
0x10a8	0x0000	"Card:Cirrus Logic GD542x-based cards"
0x10b4	0x1b1d	"Card:NVIDIA RIVA 128"
0x10b5	0x1030	"ISDN:hisax,type=34"
0x10b5	0x1054	"ISDN:hisax,type=34"
0x10b5	0x1151	"ISDN:hisax,type=34"
0x10b5	0x1152	"ISDN:hisax,type=34"
0x10b5	0x1187	"ISDN:hisax,type=34"
0x10b5	0x2bd0	"ISDN:hisax,type=34"
0x10b5	0x9030	0x10b5	0x2862	"snd_vx222"
0x10b5	0x9030	0x10b5	0x2906	"snd_vx222"
0x10b5	0x9030	0x10b5	0x2940	"snd_vx222"
0x10b5	0x9030	0x10b5	0x2977	"snd_vx222"
0x10b5	0x9030	0x10b5	0x2978	"snd_vx222"
0x10b5	0x9030	0x10b5	0x3025	"snd_vx222"
0x10b5	0x9030	0x10b5	0x3068	"snd_vx222"
0x10b5	0x9030	0x12fe	0x0111	"snd_vx222"
0x10b5	0x9030	0x1397	0x3136	"ISDN:hfc4s8s_l1"
0x10b5	0x9030	0x1397	0x3137	"snd_vx222"
0x10b5	0x9030	0x1518	0x0200	"snd_vx222"
0x10b5	0x9030	0x15ed	0x1002	"snd_vx222"
0x10b5	0x9030	0x15ed	0x1003	"snd_vx222"
0x10b5	0x9030	"snd_vx222"
0x10b5	0x9050	"snd_vx222"
0x10b7	0x7770	"orinoco_plx"
0x10b7	0x9300	"tulip"
0x10b9	0x1533	"alim7101_wdt"
0x10b9	0x5457	"slamr"
0x10b9	0x5459	"slamr"
0x10b9	0x545a	"slamr"
0x10b9	0x7101	"i2c_ali1535"
0x10c8	0x0001	"Card:NeoMagic MagicGraph (laptop/notebook)"
0x10c8	0x0002	"Card:NeoMagic MagicGraph (laptop/notebook)"
0x10c8	0x0003	"Card:NeoMagic MagicGraph (laptop/notebook)"
0x10c8	0x0004	"Card:NeoMagic 128XD"
0x10c8	0x0005	"Card:NeoMagic MagicGraph (laptop/notebook)"
0x10c8	0x0006	"Card:NeoMagic MagicMedia (laptop/notebook)"
0x10c8	0x0016	"Card:NeoMagic MagicMedia 256XL+"
0x10c8	0x0025	"Card:NeoMagic MagicMedia (laptop/notebook)"
0x10c8	0x0083	"Card:NeoMagic MagicGraph (laptop/notebook)"
0x10c8	0x8005	"snd_nm256"
0x10c8	0x8006	"snd_nm256"
0x10c8	0x8016	"snd_nm256"
0x10d9	0x0512	"tulip"
0x10d9	0x0531	"tulip"
0x10d9	0x8625	"tulip"
0x10d9	0x8888	"Card:VESA driver (generic)"
0x10de	0x0008	"Card:VESA driver (generic)"
0x10de	0x0009	"Card:VESA driver (generic)"
0x10de	0x0010	"Card:VESA driver (generic)"
0x10de	0x0018	"Card:NVIDIA RIVA 128"
0x10de	0x0019	"Card:NVIDIA RIVA 128"
0x10de	0x0020	"Card:NVIDIA RIVA TNT to GeForce 2"
0x10de	0x0028	"Card:NVIDIA RIVA TNT to GeForce 2"
0x10de	0x0029	"Card:NVIDIA RIVA TNT to GeForce 2"
0x10de	0x002a	"Card:NVIDIA RIVA TNT to GeForce 2"
0x10de	0x002b	"Card:NVIDIA RIVA TNT to GeForce 2"
0x10de	0x002c	"Card:NVIDIA RIVA TNT to GeForce 2"
0x10de	0x002d	"Card:NVIDIA RIVA TNT to GeForce 2"
0x10de	0x002e	"Card:NVIDIA RIVA TNT to GeForce 2"
0x10de	0x002f	"Card:NVIDIA RIVA TNT to GeForce 2"
0x10de	0x0040	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0041	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0042	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0043	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0044	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0045	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0046	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0047	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0048	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0049	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x004d	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x004e	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0069	"snd_intel8x0m"
0x10de	0x0089	"snd_intel8x0m"
0x10de	0x0090	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0091	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0092	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0093	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0095	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0098	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0099	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x009d	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x00a0	"Card:NVIDIA RIVA TNT to GeForce 2"
0x10de	0x00c0	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x00c1	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x00c2	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x00c3	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x00c8	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x00c9	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x00cc	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x00cd	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x00ce	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x00d9	"snd_intel8x0m"
0x10de	0x00f0	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x00f1	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x00f2	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x00f3	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x00f4	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x00f5	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x00f6	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x00f8	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x00f9	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x00fa	"Card:NVIDIA GeForce FX series"
0x10de	0x00fb	"Card:NVIDIA GeForce FX series"
0x10de	0x00fc	"Card:NVIDIA GeForce FX series"
0x10de	0x00fd	"Card:NVIDIA GeForce FX series"
0x10de	0x00fe	"Card:NVIDIA GeForce FX series"
0x10de	0x00ff	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0100	"Card:NVIDIA RIVA TNT to GeForce 2"
0x10de	0x0101	"Card:NVIDIA RIVA TNT to GeForce 2"
0x10de	0x0102	"Card:NVIDIA RIVA TNT to GeForce 2"
0x10de	0x0103	"Card:NVIDIA RIVA TNT to GeForce 2"
0x10de	0x0110	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0111	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0112	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0113	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0140	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0141	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0142	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0143	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0144	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0145	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0146	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0147	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0148	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0149	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x014a	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x014b	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x014c	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x014d	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x014e	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x014f	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0150	"Card:NVIDIA RIVA TNT to GeForce 2"
0x10de	0x0151	"Card:NVIDIA RIVA TNT to GeForce 2"
0x10de	0x0152	"Card:NVIDIA RIVA TNT to GeForce 2"
0x10de	0x0153	"Card:NVIDIA RIVA TNT to GeForce 2"
0x10de	0x0160	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0161	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0162	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0163	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0164	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0165	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0166	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0167	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0168	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0169	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x016a	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x016b	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x016c	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x016d	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x016e	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0170	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0171	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0172	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0173	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0174	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0175	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0176	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0177	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0178	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0179	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x017a	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x017b	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x017c	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x017d	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0181	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0182	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0183	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0184	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0185	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0186	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0187	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0188	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0189	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x018a	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x018b	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x018c	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x018d	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0191	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0193	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0194	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0197	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x019d	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x019e	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x01a0	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x01c1	"slamr"
0x10de	0x01d0	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x01d1	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x01d2	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x01d3	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x01d4	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x01d6	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x01d7	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x01d8	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x01d9	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x01da	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x01db	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x01dc	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x01dd	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x01de	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x01df	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x01f0	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0200	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0201	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0202	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0203	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0210	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0211	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0212	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0215	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0218	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x021d	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x021e	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0220	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0221	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0222	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0228	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0240	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0241	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0242	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0244	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0245	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0247	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0250	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0251	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0252	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0253	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0258	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0259	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x025b	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0280	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0281	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0282	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0286	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0288	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0289	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x028c	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x10de	0x0290	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0291	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0292	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0293	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0294	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0295	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0297	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0298	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0299	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x029a	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x029b	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x029c	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x029d	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x029e	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x029f	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x02a0	"Card:NVIDIA GeForce3 (xbox)"
0x10de	0x02e0	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x02e1	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x02e2	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x02e3	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x02e4	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0300	"Card:NVIDIA GeForce FX series"
0x10de	0x0301	"Card:NVIDIA GeForce FX series"
0x10de	0x0302	"Card:NVIDIA GeForce FX series"
0x10de	0x0308	"Card:NVIDIA GeForce FX series"
0x10de	0x0309	"Card:NVIDIA GeForce FX series"
0x10de	0x0311	"Card:NVIDIA GeForce FX series"
0x10de	0x0312	"Card:NVIDIA GeForce FX series"
0x10de	0x0313	"Card:NVIDIA GeForce FX series"
0x10de	0x0314	"Card:NVIDIA GeForce FX series"
0x10de	0x0316	"Card:NVIDIA GeForce FX series"
0x10de	0x0317	"Card:NVIDIA GeForce FX series"
0x10de	0x0318	"Card:NVIDIA GeForce FX series"
0x10de	0x0319	"Card:NVIDIA GeForce FX series"
0x10de	0x031a	"Card:NVIDIA GeForce FX series"
0x10de	0x031b	"Card:NVIDIA GeForce FX series"
0x10de	0x031c	"Card:NVIDIA GeForce FX series"
0x10de	0x031d	"Card:NVIDIA GeForce FX series"
0x10de	0x031e	"Card:NVIDIA GeForce FX series"
0x10de	0x031f	"Card:NVIDIA GeForce FX series"
0x10de	0x0320	"Card:NVIDIA GeForce FX series"
0x10de	0x0321	"Card:NVIDIA GeForce FX series"
0x10de	0x0322	"Card:NVIDIA GeForce FX series"
0x10de	0x0323	"Card:NVIDIA GeForce FX series"
0x10de	0x0324	"Card:NVIDIA GeForce FX series"
0x10de	0x0325	"Card:NVIDIA GeForce FX series"
0x10de	0x0326	"Card:NVIDIA GeForce FX series"
0x10de	0x0327	"Card:NVIDIA GeForce FX series"
0x10de	0x0328	"Card:NVIDIA GeForce FX series"
0x10de	0x0329	"Card:NVIDIA GeForce FX series"
0x10de	0x032a	"Card:NVIDIA GeForce FX series"
0x10de	0x032b	"Card:NVIDIA GeForce FX series"
0x10de	0x032c	"Card:NVIDIA GeForce FX series"
0x10de	0x032d	"Card:NVIDIA GeForce FX series"
0x10de	0x032e	"Card:NVIDIA GeForce FX series"
0x10de	0x032f	"Card:NVIDIA GeForce FX series"
0x10de	0x0330	"Card:NVIDIA GeForce FX series"
0x10de	0x0331	"Card:NVIDIA GeForce FX series"
0x10de	0x0332	"Card:NVIDIA GeForce FX series"
0x10de	0x0333	"Card:NVIDIA GeForce FX series"
0x10de	0x0334	"Card:NVIDIA GeForce FX series"
0x10de	0x0338	"Card:NVIDIA GeForce FX series"
0x10de	0x033f	"Card:NVIDIA GeForce FX series"
0x10de	0x0341	"Card:NVIDIA GeForce FX series"
0x10de	0x0342	"Card:NVIDIA GeForce FX series"
0x10de	0x0343	"Card:NVIDIA GeForce FX series"
0x10de	0x0344	"Card:NVIDIA GeForce FX series"
0x10de	0x0345	"Card:NVIDIA GeForce FX series"
0x10de	0x0347	"Card:NVIDIA GeForce FX series"
0x10de	0x0348	"Card:NVIDIA GeForce FX series"
0x10de	0x0349	"Card:NVIDIA GeForce FX series"
0x10de	0x034b	"Card:NVIDIA GeForce FX series"
0x10de	0x034c	"Card:NVIDIA GeForce FX series"
0x10de	0x034e	"Card:NVIDIA GeForce FX series"
0x10de	0x034f	"Card:NVIDIA GeForce FX series"
0x10de	0x038b	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0390	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0391	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0392	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0393	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0394	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0395	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0397	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0398	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0399	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x039a	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x039b	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x039c	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x039e	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x03d0	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x03d1	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x03d2	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x03d5	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x03d6	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0400	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0401	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0402	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0403	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0404	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0405	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0406	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0407	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0408	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0409	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x040a	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x040b	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x040c	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x040d	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x040e	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x040f	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0410	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0420	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0421	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0422	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0423	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0424	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0425	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0426	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0427	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0428	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0429	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x042a	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x042b	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x042c	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x042d	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x042e	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x042f	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0530	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0531	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0532	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0533	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x053a	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x053b	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x053e	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x053f	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x055c	"snd_hda_intel"
0x10de	0x055d	"snd_hda_intel"
0x10de	0x05e0	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x05e1	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x05e2	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x05e3	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x05e6	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x05e7	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x05ea	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x05eb	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x05ed	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x05f8	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x05f9	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x05fd	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x05fe	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x05ff	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0600	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0601	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0602	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0603	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0604	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0605	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0606	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0607	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0608	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0609	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x060a	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x060b	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x060c	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x060d	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x060f	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0610	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0611	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0612	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0613	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0614	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0615	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0617	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0618	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0619	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x061a	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x061b	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x061c	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x061d	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x061e	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x061f	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0621	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0622	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0623	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0624	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0625	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0626	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0627	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0628	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x062a	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x062b	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x062c	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x062d	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x062e	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x062f	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0630	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0631	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0632	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0635	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0637	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0638	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x063a	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0640	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0641	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0643	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0644	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0645	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0646	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0647	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0648	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0649	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x064a	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x064b	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x064c	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0650	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0651	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0652	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0653	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0654	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0655	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0656	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0658	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0659	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x065a	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x065b	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x065c	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x065f	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x06c0	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x06c4	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x06ca	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x06cd	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x06d1	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x06d2	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x06d8	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x06d9	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x06da	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x06dc	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x06dd	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x06de	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x06df	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x06e0	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x06e1	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x06e2	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x06e3	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x06e4	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x06e5	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x06e6	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x06e7	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x06e8	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x06e9	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x06ea	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x06eb	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x06ec	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x06ef	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x06f1	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x06f8	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x06f9	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x06fa	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x06fb	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x06fd	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x06ff	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x07e0	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x07e1	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x07e2	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x07e3	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x07e5	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0840	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0844	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0845	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x10de	0x0846	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0847	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0848	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0849	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x084a	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x084b	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x084c	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x084d	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x084f	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0860	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0861	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0862	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0863	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0864	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0865	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0866	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0867	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0868	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0869	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x086a	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x086c	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x086d	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x086e	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x086f	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0870	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0871	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0872	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0873	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0874	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0876	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x087a	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x087d	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x087e	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x087f	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x08a0	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x08a2	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x08a3	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x08a4	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x08a5	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a20	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a22	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a23	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a26	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a27	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a28	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a29	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a2a	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a2b	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a2c	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a2d	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a32	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a34	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a35	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a38	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a3c	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a60	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a61	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a62	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a63	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a64	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a65	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a66	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a67	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a68	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a69	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a6a	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a6c	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a6e	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a6f	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a70	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a71	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a72	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a73	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a74	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a75	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a76	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a78	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a7a	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0a7c	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0ca0	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0ca2	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0ca3	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0ca4	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0ca5	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0ca7	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0ca8	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0ca9	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0cac	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0caf	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0cb0	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0cb1	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0cbc	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0dc0	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0dc4	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0dc5	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0dc6	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0dcd	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0dce	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0dd1	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0dd2	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0dd3	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0dd6	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0dd8	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0dda	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0de0	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0de1	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0de2	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0de3	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0de4	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0de5	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0de7	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0de8	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0de9	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0dea	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0deb	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0dec	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0ded	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0dee	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0def	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0df0	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0df1	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0df2	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0df3	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0df4	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0df5	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0df6	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0df7	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0df8	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0df9	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0dfa	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0dfc	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0e22	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0e23	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0e24	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0e30	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0e31	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0e3a	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0e3b	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x0f00	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0f01	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0f02	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0f03	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x0fec	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x1040	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1042	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1048	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1049	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x104a	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x104b	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x104c	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1050	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1051	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1052	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1054	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1055	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1056	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x1057	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x1058	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1059	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x105a	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x105b	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x107c	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x107d	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1080	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1081	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1082	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1084	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1086	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1087	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1088	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1089	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x108b	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1091	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1094	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1096	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x109a	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x109b	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x10c0	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x10c3	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x10c5	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x10d8	"Card:NVIDIA GeForce 8100 to GeForce 415"
0x10de	0x1140	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1200	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1201	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1203	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1205	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1206	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1207	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1208	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1210	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1211	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1212	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1213	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1241	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1243	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1244	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1245	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1246	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1247	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1248	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1249	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x124b	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x124d	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10de	0x1251	"Card:NVIDIA GeForce 420 to GeForce 630"
0x10e0	0x9128	"Card:IMS TwinTurbo-based cards"
0x10e0	0x9135	"Card:IMS TwinTurbo-based cards"
0x10e3	0x0000	"Card:VESA driver (generic)"
0x10ea	0x1680	"Card:VESA driver (generic)"
0x10ea	0x1682	"Card:VESA driver (generic)"
0x10ec	0x8129	"8139too"
0x10ec	0x8197	"slamr"
0x10ee	0x4020	"ISDN:tpam"
0x1101	0x0002	"initio"
0x1101	0x134a	"initio"
0x1101	0x9100	"initio"
0x1101	0x9400	"initio"
0x1101	0x9401	"initio"
0x1101	0x9500	"initio"
0x1101	0x9700	"initio"
0x1102	0x0101	"Card:NVIDIA RIVA TNT to GeForce 2"
0x1106	0x1122	"Card:VIA Chrome9-based cards"
0x1106	0x3022	"Card:FrameBuffer (generic)"
0x1106	0x3050	"i2c_viapro"
0x1106	0x3051	"i2c_viapro"
0x1106	0x3057	"i2c_viapro"
0x1106	0x3068	"slamr"
0x1106	0x3074	"via_ircc"
0x1106	0x3108	"Card:S3 UniChrome-based cards with 3D support"
0x1106	0x3109	"via_ircc"
0x1106	0x3118	"Card:S3 UniChrome-based cards with 3D support"
0x1106	0x3122	"Card:S3 UniChrome-based cards with 3D support"
0x1106	0x3147	"via_ircc"
0x1106	0x3157	"Card:VIA Chrome9-based cards"
0x1106	0x3164	"via82cxxx"
0x1106	0x3177	"via_ircc"
0x1106	0x3205	"Card:S3 UniChrome-based cards with 3D support"
0x1106	0x3225	"Card:VIA Chrome9-based cards"
0x1106	0x3227	"i2c_viapro"
0x1106	0x3230	"Card:VIA Chrome9-based cards"
0x1106	0x3287	"i2c_viapro"
0x1106	0x3337	"i2c_viapro"
0x1106	0x3343	"Card:VIA Chrome9-based cards"
0x1106	0x3344	"Card:S3 UniChrome-based cards with 3D support"
0x1106	0x3371	"Card:VIA Chrome9-based cards"
0x1106	0x4511	"snd_via82xx"
0x1106	0x7205	"Card:S3 UniChrome-based cards with 3D support"
0x1106	0x8231	"via_ircc"
0x1106	0x8235	"i2c_viapro"
0x1113	0x1211	"8139too"
0x1113	0x1216	"tulip"
0x1113	0x1217	"tulip"
0x1113	0x9511	"tulip"
0x111a	0x1023	"orinoco_plx"
0x1131	0x3400	"slamr"
0x1131	0x5402	"ISDN:capidrv"
0x1133	0xe001	"ISDN:hisax"
0x1133	0xe002	"ISDN:hisax,type=11"
0x1133	0xe003	"ISDN:hisax"
0x1133	0xe004	"ISDN:hisax,type=11"
0x1133	0xe005	"ISDN:hisax,type=11"
0x1133	0xe00b	"ISDN:hisax"
0x1133	0xe010	"ISDN:divas"
0x1133	0xe012	"ISDN:divas"
0x1133	0xe013	"ISDN:divas"
0x1133	0xe014	"ISDN:divas"
0x1133	0xe015	"ISDN:divas"
0x1133	0xe016	"ISDN:divas"
0x1133	0xe017	"ISDN:divas"
0x1133	0xe018	"ISDN:divas"
0x1133	0xe019	"ISDN:divas"
0x1133	0xe01a	"ISDN:divas"
0x1133	0xe01b	"ISDN:divas"
0x1142	0x6422	"Card:Alliance ProMotion-based cards"
0x1142	0x6424	"Card:Alliance ProMotion-based cards"
0x1142	0x6425	"Card:Alliance ProMotion-based cards"
0x1142	0x643d	"Card:Alliance ProMotion-based cards"
0x114f	0x0070	"ISDN:hisax,type=35"
0x114f	0x0071	"ISDN:hisax,type=35"
0x114f	0x0072	"ISDN:hisax,type=35"
0x114f	0x0073	"ISDN:hisax,type=35"
0x115d	0x000c	"LT:www.linmodems.org"
0x115d	0x002b	"LT:www.linmodems.org"
0x115d	0x0076	"LT:www.linmodems.org"
0x115d	0x00d3	"LT:www.linmodems.org"
0x115d	0x00d4	"LT:www.linmodems.org"
0x1163	0x0001	"Card:Rendition Verite-based cards"
0x1163	0x2000	"Card:Rendition Verite-based cards"
0x1186	0x0100	"tulip"
0x1186	0x1100	"tulip"
0x1186	0x1300	"8139too"
0x1186	0x1340	"8139too"
0x1186	0x1541	"tulip"
0x1186	0x1561	"tulip"
0x1186	0x1591	"tulip"
0x11c1	0x0440	"LT:www.linmodems.org"
0x11c1	0x0441	"LT:www.linmodems.org"
0x11c1	0x0442	"LT:www.linmodems.org"
0x11c1	0x0443	"LT:www.linmodems.org"
0x11c1	0x0444	"LT:www.linmodems.org"
0x11c1	0x0445	"LT:www.linmodems.org"
0x11c1	0x0446	"LT:www.linmodems.org"
0x11c1	0x0447	"LT:www.linmodems.org"
0x11c1	0x0448	"LT:www.linmodems.org"
0x11c1	0x0449	"LT:www.linmodems.org"
0x11c1	0x044a	"LT:www.linmodems.org"
0x11c1	0x044b	"LT:www.linmodems.org"
0x11c1	0x044c	"LT:www.linmodems.org"
0x11c1	0x044d	"LT:www.linmodems.org"
0x11c1	0x044e	"LT:www.linmodems.org"
0x11c1	0x044f	"LT:www.linmodems.org"
0x11c1	0x0450	"LT:www.linmodems.org"
0x11c1	0x0451	"LT:www.linmodems.org"
0x11c1	0x0452	"LT:www.linmodems.org"
0x11c1	0x0453	"LT:www.linmodems.org"
0x11c1	0x0454	"LT:www.linmodems.org"
0x11c1	0x0455	"LT:www.linmodems.org"
0x11c1	0x0456	"LT:www.linmodems.org"
0x11c1	0x0457	"LT:www.linmodems.org"
0x11c1	0x0458	"LT:www.linmodems.org"
0x11c1	0x0459	"LT:www.linmodems.org"
0x11c1	0x045a	"LT:www.linmodems.org"
0x11c1	0x045c	"LT:www.linmodems.org"
0x11c1	0x045d	"Bad:www.linmodems.org"
0x11c1	0x0461	"Bad:www.linmodems.org"
0x11c1	0x0462	"Bad:www.linmodems.org"
0x11db	0x1234	"8139too"
0x11de	0x6120	"ISDN:hisax"
0x11f6	0x9881	"tulip"
0x121a	0x0001	"Card:3DFX Voodoo / Voodoo II"
0x121a	0x0002	"Card:3DFX Voodoo / Voodoo II"
0x121a	0x0003	"Card:3DFX Voodoo 3 - 5 / Banshee / Rush"
0x121a	0x0004	"Card:3DFX Voodoo 3 - 5 / Banshee / Rush"
0x121a	0x0005	"Card:3DFX Voodoo 3 - 5 / Banshee / Rush"
0x121a	0x0007	"Card:3DFX Voodoo 3 - 5 / Banshee / Rush"
0x121a	0x0009	"Card:3DFX Voodoo 3 - 5 / Banshee / Rush"
0x1234	0x1111	"Card:VESA driver (generic)"
0x1244	0x0700	"ISDN:b1pci,type=27"
0x1244	0x0800	"ISDN:c4"
0x1244	0x0a00	"ISDN:hisax,type=27"
0x1244	0x0e00	"ISDN:hisax_fcpcipnp"
0x1244	0x0f00	"ISDN:capidrv"
0x1244	0x1100	"ISDN:c4"
0x1244	0x1200	"ISDN:t1pci"
0x1244	0x2700	"ISDN:fcdslsl,type=,firmware:fdssbase.bin"
0x1244	0x2900	"ISDN:fcdsl2,type=,firmware:fds2base.bin"
0x1259	0xa117	"8139too"
0x1259	0xa11e	"8139too"
0x1259	0xa120	"tulip"
0x125b	0x1400	"tulip"
0x125d	0x1968	"radio_maestro"
0x125d	0x1978	"snd_es1968"
0x125d	0x1989	"snd_maestro3"
0x125d	0x1990	"snd_maestro3"
0x125d	0x1992	"snd_maestro3"
0x125d	0x1998	"snd_maestro3"
0x125d	0x1999	"snd_maestro3"
0x125d	0x199b	"snd_maestro3"
0x125d	0x2838	"Bad:www.linmodems.org"
0x1260	0x3872	"orinoco_pci"
0x1260	0x3873	0x1186	0x3501	"orinoco_pci"
0x1260	0x3873	0x1186	0x3700	"hostap_pci"
0x1260	0x3873	0x1385	0x4105	"orinoco_pci"
0x1260	0x3873	0x1668	0x0414	"orinoco_pci"
0x1260	0x3873	0x16a5	0x1601	"orinoco_pci"
0x1260	0x3873	0x1737	0x3874	"orinoco_pci"
0x1260	0x3873	0x8086	0x2513	"orinoco_pci"
0x1260	0x3873	"orinoco_pci"
0x1267	0x1016	"ISDN:hisax,type=24"
0x126c	0x1211	"8139too"
0x126c	0x8030	"hostap_plx"
0x126f	0x0710	"Card:Silicon Motion Lynx-based cards"
0x126f	0x0712	"Card:Silicon Motion Lynx-based cards"
0x126f	0x0720	"Card:Silicon Motion Lynx-based cards"
0x126f	0x0730	"Card:Silicon Motion Lynx-based cards"
0x126f	0x0810	"Card:Silicon Motion Lynx-based cards"
0x126f	0x0811	"Card:Silicon Motion Lynx-based cards"
0x126f	0x0820	"Card:Silicon Motion Lynx-based cards"
0x126f	0x0910	"Card:Silicon Motion Lynx-based cards"
0x127a	0x1002	"Hcf:www.linmodems.org"
0x127a	0x1003	"Hcf:www.linmodems.org"
0x127a	0x1004	"Hcf:www.linmodems.org"
0x127a	0x1005	"Hcf:www.linmodems.org"
0x127a	0x1022	"Hcf:www.linmodems.org"
0x127a	0x1023	"Hcf:www.linmodems.org"
0x127a	0x1024	"Hcf:www.linmodems.org"
0x127a	0x1025	"Hcf:www.linmodems.org"
0x127a	0x1026	"Hcf:www.linmodems.org"
0x127a	0x1032	"Hcf:www.linmodems.org"
0x127a	0x1033	"Hcf:www.linmodems.org"
0x127a	0x1034	"Hcf:www.linmodems.org"
0x127a	0x1035	"Hcf:www.linmodems.org"
0x127a	0x1036	"Hcf:www.linmodems.org"
0x127a	0x1085	"Hcf:www.linmodems.org"
0x127a	0x2005	"Hcf:www.linmodems.org"
0x127a	0x2013	"Hsf:www.linmodems.org"
0x127a	0x2014	"Hsf:www.linmodems.org"
0x127a	0x2016	"Hsf:www.linmodems.org"
0x127a	0x4311	"Hsf:www.linmodems.org"
0x127a	0x4321	"Hcf:www.linmodems.org"
0x1282	0x9100	"dmfe"
0x1282	0x9102	"dmfe"
0x1283	0x8211	"it821x"
0x1283	0x8212	"it821x"
0x12b9	0x1006	"Bad:www.linmodems.org"
0x12b9	0x1007	"Bad:www.linmodems.org"
0x12d2	0x0008	"Card:VESA driver (generic)"
0x12d2	0x0009	"Card:VESA driver (generic)"
0x12d2	0x0018	"Card:NVIDIA RIVA 128"
0x12d2	0x0019	"Card:NVIDIA RIVA 128"
0x12d2	0x0020	"Card:NVIDIA RIVA TNT to GeForce 2"
0x12d2	0x0028	"Card:NVIDIA RIVA TNT to GeForce 2"
0x12d2	0x0029	"Card:NVIDIA RIVA TNT to GeForce 2"
0x12d2	0x002a	"Card:NVIDIA RIVA TNT to GeForce 2"
0x12d2	0x002b	"Card:NVIDIA RIVA TNT to GeForce 2"
0x12d2	0x002c	"Card:NVIDIA RIVA TNT to GeForce 2"
0x12d2	0x002d	"Card:NVIDIA RIVA TNT to GeForce 2"
0x12d2	0x002e	"Card:NVIDIA RIVA TNT to GeForce 2"
0x12d2	0x002f	"Card:NVIDIA RIVA TNT to GeForce 2"
0x12d2	0x00a0	"Card:NVIDIA RIVA TNT to GeForce 2"
0x1317	0x0981	"tulip"
0x1317	0x0985	"tulip"
0x1317	0x1985	"tulip"
0x1317	0x9511	"tulip"
0x1365	0x9050	"ISDN:hysdn"
0x1385	0x4100	"orinoco_plx"
0x1397	0x08b4	"ISDN:hfc4s8s_l1"
0x1397	0x16b8	"ISDN:hfc4s8s_l1"
0x1397	0x2bd0	"ISDN:hisax,type=35"
0x1397	0x30b1	"ISDN:hfc4s8s_l1"
0x1397	0xb000	"ISDN:hisax,type=35"
0x1397	0xb006	"ISDN:hisax,type=35"
0x1397	0xb007	"ISDN:hisax,type=35"
0x1397	0xb008	"ISDN:hisax,type=35"
0x1397	0xb009	"ISDN:hisax,type=35"
0x1397	0xb00a	"ISDN:hisax,type=35"
0x1397	0xb00b	"ISDN:hisax,type=35"
0x1397	0xb00c	"ISDN:hisax,type=35"
0x1397	0xb100	"ISDN:hisax,type=35"
0x1397	0xb700	"ISDN:hisax"
0x1397	0xb701	"ISDN:hisax"
0x13d1	0x2bd1	"ISDN:hisax"
0x13d1	0xab02	"tulip"
0x13d1	0xab03	"tulip"
0x13d1	0xab06	"8139too"
0x13d1	0xab08	"tulip"
0x1414	0x0002	"tulip"
0x1432	0x9130	"8139too"
0x1462	0x5501	"Card:NVIDIA RIVA TNT to GeForce 2"
0x1462	0x8725	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x1462	0x9000	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x1462	0x9110	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x1462	0x9119	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x1462	0x9123	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x1462	0x9591	"Card:NVIDIA GeForce 6100 to GeForce 7950"
0x148d	0x1003	"Hcf:www.linmodems.org"
0x14e4	0x4313	"wl"
0x14e4	0x4315	"wl"
0x14e4	0x432a	"wl"
0x14e4	0x432d	"wl"
0x14e4	0x4359	"wl"
0x14e4	0x435a	"wl"
0x14e4	0x4365	"wl"
0x14e4	0xa99d	"wl"
0x14ea	0xab06	"8139too"
0x14ea	0xab07	"8139too"
0x14ea	0xab08	"tulip"
0x14f1	0x0854	"Hcf:www.linmodems.org"
0x14f1	0x1002	"Hcf:www.linmodems.org"
0x14f1	0x1003	"Hcf:www.linmodems.org"
0x14f1	0x1004	"Hcf:www.linmodems.org"
0x14f1	0x1005	"Hcf:www.linmodems.org"
0x14f1	0x1006	"Hcf:www.linmodems.org"
0x14f1	0x1022	"Hcf:www.linmodems.org"
0x14f1	0x1023	"Hcf:www.linmodems.org"
0x14f1	0x1024	"Hcf:www.linmodems.org"
0x14f1	0x1025	"Hcf:www.linmodems.org"
0x14f1	0x1026	"Hcf:www.linmodems.org"
0x14f1	0x1032	"Hcf:www.linmodems.org"
0x14f1	0x1033	"Hcf:www.linmodems.org"
0x14f1	0x1034	"Hcf:www.linmodems.org"
0x14f1	0x1036	"Hcf:www.linmodems.org"
0x14f1	0x1052	"Hcf:www.linmodems.org"
0x14f1	0x1053	"Hcf:www.linmodems.org"
0x14f1	0x1054	"Hcf:www.linmodems.org"
0x14f1	0x1055	"Hcf:www.linmodems.org"
0x14f1	0x1056	"Hcf:www.linmodems.org"
0x14f1	0x1057	"Hcf:www.linmodems.org"
0x14f1	0x1059	"Hcf:www.linmodems.org"
0x14f1	0x1063	"Hcf:www.linmodems.org"
0x14f1	0x1064	"Hcf:www.linmodems.org"
0x14f1	0x1065	"Hcf:www.linmodems.org"
0x14f1	0x1066	"Hcf:www.linmodems.org"
0x14f1	0x1085	"Hsf:www.linmodems.org"
0x14f1	0x1433	"Hcf:www.linmodems.org"
0x14f1	0x1434	"Hcf:www.linmodems.org"
0x14f1	0x1435	"Hcf:www.linmodems.org"
0x14f1	0x1436	"Hcf:www.linmodems.org"
0x14f1	0x1453	"Hcf:www.linmodems.org"
0x14f1	0x1454	"Hcf:www.linmodems.org"
0x14f1	0x1455	"Hcf:www.linmodems.org"
0x14f1	0x1456	"Hcf:www.linmodems.org"
0x14f1	0x1803	"tulip"
0x14f1	0x1815	"Bad:www.linmodems.org"
0x14f1	0x2003	"Bad:www.linmodems.org"
0x14f1	0x2004	"Bad:www.linmodems.org"
0x14f1	0x2005	"Bad:www.linmodems.org"
0x14f1	0x2006	"Bad:www.linmodems.org"
0x14f1	0x2014	"Bad:www.linmodems.org"
0x14f1	0x2015	"Bad:www.linmodems.org"
0x14f1	0x2016	"Bad:www.linmodems.org"
0x14f1	0x2043	"Hsf:www.linmodems.org"
0x14f1	0x2044	"Hsf:www.linmodems.org"
0x14f1	0x2045	"Hsf:www.linmodems.org"
0x14f1	0x2046	"Hsf:www.linmodems.org"
0x14f1	0x2063	"Hsf:www.linmodems.org"
0x14f1	0x2064	"Hsf:www.linmodems.org"
0x14f1	0x2065	"Hsf:www.linmodems.org"
0x14f1	0x2066	"Hsf:www.linmodems.org"
0x14f1	0x2093	"Hsf:www.linmodems.org"
0x14f1	0x2143	"Hsf:www.linmodems.org"
0x14f1	0x2144	"Hsf:www.linmodems.org"
0x14f1	0x2145	"Hsf:www.linmodems.org"
0x14f1	0x2146	"Hsf:www.linmodems.org"
0x14f1	0x2163	"Hsf:www.linmodems.org"
0x14f1	0x2164	"Hsf:www.linmodems.org"
0x14f1	0x2165	"Hsf:www.linmodems.org"
0x14f1	0x2166	"Hsf:www.linmodems.org"
0x14f1	0x2343	"Hsf:www.linmodems.org"
0x14f1	0x2344	"Hsf:www.linmodems.org"
0x14f1	0x2345	"Hsf:www.linmodems.org"
0x14f1	0x2346	"Hsf:www.linmodems.org"
0x14f1	0x2363	"Hsf:www.linmodems.org"
0x14f1	0x2364	"Hsf:www.linmodems.org"
0x14f1	0x2365	"Hsf:www.linmodems.org"
0x14f1	0x2366	"Hsf:www.linmodems.org"
0x14f1	0x2444	"Hsf:www.linmodems.org"
0x14f1	0x2445	"Hsf:www.linmodems.org"
0x14f1	0x2446	"Hsf:www.linmodems.org"
0x14f1	0x2463	"Hsf:www.linmodems.org"
0x14f1	0x2464	"Hsf:www.linmodems.org"
0x14f1	0x2465	"Hsf:www.linmodems.org"
0x14f1	0x2466	"Hsf:www.linmodems.org"
0x14f1	0x2f00	"Hsf:www.linmodems.org"
0x1500	0x1360	"8139too"
0x1562	0x0001	"orinoco_nortel"
0x1571	0xa001	"com20020_pci"
0x1571	0xa002	"com20020_pci"
0x1571	0xa003	"com20020_pci"
0x1571	0xa004	"com20020_pci"
0x1571	0xa005	"com20020_pci"
0x1571	0xa006	"com20020_pci"
0x1571	0xa007	"com20020_pci"
0x1571	0xa008	"com20020_pci"
0x1571	0xa009	"com20020_pci"
0x1571	0xa00a	"com20020_pci"
0x1571	0xa00b	"com20020_pci"
0x1571	0xa00c	"com20020_pci"
0x1571	0xa00d	"com20020_pci"
0x1571	0xa201	"com20020_pci"
0x1571	0xa202	"com20020_pci"
0x1571	0xa203	"com20020_pci"
0x1571	0xa204	"com20020_pci"
0x1571	0xa205	"com20020_pci"
0x1571	0xa206	"com20020_pci"
0x15ad	0x0405	"Card:VMware virtual video card"
0x15ad	0x0710	"Card:VMware virtual video card"
0x15b0	0x2bd0	"ISDN:hisax,type=35"
0x15e8	0x0130	"orinoco_plx"
0x15e8	0x0131	"orinoco_tmd"
0x1626	0x8410	"tulip"
0x1638	0x1100	"orinoco_plx"
0x163c	0x3052	"slamr"
0x163c	0x5459	"slamr"
0x167d	0xa000	"hostap_pci"
0x1681	0x0010	"Card:NVIDIA RIVA TNT to GeForce 2"
0x16ab	0x1100	"orinoco_plx"
0x16ab	0x1101	"orinoco_plx"
0x16ab	0x1102	"orinoco_plx"
0x16ab	0x1103	"hostap_plx"
0x16ec	0x3685	"orinoco_plx"
0x1737	0xab08	"tulip"
0x1737	0xab09	"tulip"
0x1743	0x8139	"8139too"
0x17b3	0xab08	"tulip"
0x1813	0x4000	"Bad:www.linmodems.org"
0x1888	0x3503	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x1888	0x3505	"Card:NVIDIA GeForce 2 MX to GeForce 4"
0x18ca	0x0020	"Card:SiS SiS / XGI 315 / 330 / 340 series-based cards"
0x18ca	0x0040	"Card:SiS SiS / XGI 315 / 330 / 340 series-based cards"
0x18ca	0x0047	"Card:SiS SiS / XGI 315 / 330 / 340 series-based cards"
0x1af4	0x1050	"Card:Virtio virtual video card"
0x1b36	0x0100	"Card:QXL virtual video card"
0x1b36	0x01ff	"Card:QXL virtual video card"
0x2000	0x2800	"slamr"
0x2003	0x8800	"slamr"
0x3d3d	0x0001	"Card:3Dlabs Glint / Permedia-based cards (software cursor)"
0x3d3d	0x0002	"Card:3Dlabs Glint / Permedia-based cards"
0x3d3d	0x0003	"Card:3Dlabs Glint / Permedia-based cards (software cursor)"
0x3d3d	0x0004	"Card:3Dlabs Glint / Permedia-based cards (software cursor)"
0x3d3d	0x0005	"Card:3Dlabs Glint / Permedia-based cards (software cursor)"
0x3d3d	0x0006	"Card:3Dlabs Glint / Permedia-based cards (software cursor)"
0x3d3d	0x0007	"Card:3Dlabs Glint / Permedia-based cards (software cursor)"
0x3d3d	0x0008	"Card:3Dlabs Glint / Permedia-based cards (software cursor)"
0x3d3d	0x0009	"Card:3Dlabs Glint / Permedia-based cards"
0x3d3d	0x000a	"Card:3Dlabs Glint / Permedia-based cards (software cursor)"
0x3d3d	0x000c	"Card:3Dlabs Glint / Permedia-based cards"
0x3d3d	0x000d	"Card:3Dlabs Glint / Permedia-based cards"
0x3d3d	0x000e	"Card:3Dlabs Glint / Permedia-based cards"
0x3d3d	0x0011	"Card:3Dlabs Glint / Permedia-based cards"
0x3d3d	0x0100	"Card:3Dlabs Glint / Permedia-based cards"
0x3d3d	0x1004	"Card:3Dlabs Glint / Permedia-based cards (software cursor)"
0x3d3d	0x3d04	"Card:3Dlabs Glint / Permedia-based cards (software cursor)"
0x4005	0x1064	"Card:VESA driver (generic)"
0x4005	0x2064	"Card:VESA driver (generic)"
0x4005	0x2128	"Card:VESA driver (generic)"
0x4005	0x2301	"Card:VESA driver (generic)"
0x4005	0x2302	"Card:VESA driver (generic)"
0x4005	0x2303	"Card:VESA driver (generic)"
0x4005	0x2364	"Card:VESA driver (generic)"
0x4005	0x2464	"Card:VESA driver (generic)"
0x4005	0x2501	"Card:VESA driver (generic)"
0x4033	0x1360	"8139too"
0x5046	0x1001	"radio_maxiradio"
0x5301	0x0001	"Card:Alliance ProMotion-based cards"
0x5333	0x0551	"Card:S3 Trio3D-based cards"
0x5333	0x0e11	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x5631	"Card:S3 ViRGE-based cards"
0x5333	0x8800	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x8801	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x8810	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x8811	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x8812	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x8813	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x8814	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x8815	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x883d	"Card:S3 ViRGE-based cards"
0x5333	0x8880	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x8881	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x8882	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x8883	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x88b0	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x88b1	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x88b2	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x88b3	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x88c0	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x88c1	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x88c2	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x88c3	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x88d0	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x88d1	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x88d2	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x88d3	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x88f0	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x88f1	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x88f2	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x88f3	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x8900	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x8901	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x8902	"Card:S3 Trio3D-based cards"
0x5333	0x8903	"Card:S3 Trio3D-based cards"
0x5333	0x8904	"Card:S3 Trio3D-based cards"
0x5333	0x8905	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x8906	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x8907	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x8908	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x8909	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x890a	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x890b	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x890c	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x890d	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x890e	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x890f	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x5333	0x8a01	"Card:S3 ViRGE-based cards"
0x5333	0x8a10	"Card:S3 ViRGE-based cards"
0x5333	0x8a11	"Card:S3 ViRGE-based cards"
0x5333	0x8a12	"Card:S3 ViRGE-based cards"
0x5333	0x8a13	"Card:S3 Trio3D-based cards"
0x5333	0x8a20	"Card:S3 Savage-based cards"
0x5333	0x8a21	"Card:S3 Savage-based cards"
0x5333	0x8a22	"Card:S3 Savage-based cards"
0x5333	0x8a23	"Card:S3 Savage-based cards"
0x5333	0x8a25	"Card:S3 Savage-based cards"
0x5333	0x8a26	"Card:S3 Savage-based cards"
0x5333	0x8c00	"Card:S3 ViRGE-based cards"
0x5333	0x8c01	"Card:S3 ViRGE-based cards"
0x5333	0x8c02	"Card:S3 ViRGE-based cards"
0x5333	0x8c03	"Card:S3 ViRGE-based cards"
0x5333	0x8c10	"Card:S3 Savage-based cards"
0x5333	0x8c11	"Card:S3 Savage-based cards"
0x5333	0x8c12	"Card:S3 Savage-based cards"
0x5333	0x8c13	"Card:S3 Savage-based cards"
0x5333	0x8c22	"Card:S3 Savage-based cards"
0x5333	0x8c24	"Card:S3 Savage-based cards"
0x5333	0x8c26	"Card:S3 Savage-based cards"
0x5333	0x8c2a	"Card:S3 Savage-based cards"
0x5333	0x8c2b	"Card:S3 Savage-based cards"
0x5333	0x8c2c	"Card:S3 Savage-based cards"
0x5333	0x8c2d	"Card:S3 Savage-based cards"
0x5333	0x8c2e	"Card:S3 Savage-based cards"
0x5333	0x8c2f	"Card:S3 Savage-based cards"
0x5333	0x8d01	"Card:S3 Savage-based cards"
0x5333	0x8d02	"Card:S3 Savage-based cards"
0x5333	0x8d03	"Card:S3 Savage-based cards"
0x5333	0x8d04	"Card:S3 Savage-based cards"
0x5333	0x9102	"Card:S3 Savage-based cards"
0x5333	0xb031	"Card:S3 8xx / 9xx / Trio / Aurora64V+-based cards"
0x8086	0x0039	"tulip"
0x8086	0x0042	"Card:Intel 810 and later"
0x8086	0x0046	"Card:Intel 810 and later"
0x8086	0x0102	"Card:Intel 810 and later"
0x8086	0x0106	"Card:Intel 810 and later"
0x8086	0x010a	"Card:Intel 810 and later"
0x8086	0x0112	"Card:Intel 810 and later"
0x8086	0x0116	"Card:Intel 810 and later"
0x8086	0x0122	"Card:Intel 810 and later"
0x8086	0x0126	"Card:Intel 810 and later"
0x8086	0x0152	"Card:Intel 810 and later"
0x8086	0x0155	"Card:Intel 810 and later"
0x8086	0x0156	"Card:Intel 810 and later"
0x8086	0x0157	"Card:Intel 810 and later"
0x8086	0x015a	"Card:Intel 810 and later"
0x8086	0x0162	"Card:Intel 810 and later"
0x8086	0x0166	"Card:Intel 810 and later"
0x8086	0x016a	"Card:Intel 810 and later"
0x8086	0x0402	"Card:Intel 810 and later"
0x8086	0x0406	"Card:Intel 810 and later"
0x8086	0x040a	"Card:Intel 810 and later"
0x8086	0x040b	"Card:Intel 810 and later"
0x8086	0x040e	"Card:Intel 810 and later"
0x8086	0x0412	"Card:Intel 810 and later"
0x8086	0x0416	"Card:Intel 810 and later"
0x8086	0x041a	"Card:Intel 810 and later"
0x8086	0x041b	"Card:Intel 810 and later"
0x8086	0x041e	"Card:Intel 810 and later"
0x8086	0x0422	"Card:Intel 810 and later"
0x8086	0x0426	"Card:Intel 810 and later"
0x8086	0x042a	"Card:Intel 810 and later"
0x8086	0x042b	"Card:Intel 810 and later"
0x8086	0x042e	"Card:Intel 810 and later"
0x8086	0x0600	"gdth"
0x8086	0x0601	"gdth"
0x8086	0x0a02	"Card:Intel 810 and later"
0x8086	0x0a06	"Card:Intel 810 and later"
0x8086	0x0a0a	"Card:Intel 810 and later"
0x8086	0x0a0b	"Card:Intel 810 and later"
0x8086	0x0a0e	"Card:Intel 810 and later"
0x8086	0x0a12	"Card:Intel 810 and later"
0x8086	0x0a16	"Card:Intel 810 and later"
0x8086	0x0a1a	"Card:Intel 810 and later"
0x8086	0x0a1b	"Card:Intel 810 and later"
0x8086	0x0a1e	"Card:Intel 810 and later"
0x8086	0x0a22	"Card:Intel 810 and later"
0x8086	0x0a26	"Card:Intel 810 and later"
0x8086	0x0a2a	"Card:Intel 810 and later"
0x8086	0x0a2b	"Card:Intel 810 and later"
0x8086	0x0a2e	"Card:Intel 810 and later"
0x8086	0x0a84	"Card:Intel 810 and later"
0x8086	0x0c02	"Card:Intel 810 and later"
0x8086	0x0c06	"Card:Intel 810 and later"
0x8086	0x0c0a	"Card:Intel 810 and later"
0x8086	0x0c0b	"Card:Intel 810 and later"
0x8086	0x0c0e	"Card:Intel 810 and later"
0x8086	0x0c12	"Card:Intel 810 and later"
0x8086	0x0c16	"Card:Intel 810 and later"
0x8086	0x0c1a	"Card:Intel 810 and later"
0x8086	0x0c1b	"Card:Intel 810 and later"
0x8086	0x0c1e	"Card:Intel 810 and later"
0x8086	0x0c22	"Card:Intel 810 and later"
0x8086	0x0c26	"Card:Intel 810 and later"
0x8086	0x0c2a	"Card:Intel 810 and later"
0x8086	0x0c2b	"Card:Intel 810 and later"
0x8086	0x0c2e	"Card:Intel 810 and later"
0x8086	0x0d02	"Card:Intel 810 and later"
0x8086	0x0d06	"Card:Intel 810 and later"
0x8086	0x0d0a	"Card:Intel 810 and later"
0x8086	0x0d0b	"Card:Intel 810 and later"
0x8086	0x0d0e	"Card:Intel 810 and later"
0x8086	0x0d12	"Card:Intel 810 and later"
0x8086	0x0d16	"Card:Intel 810 and later"
0x8086	0x0d1a	"Card:Intel 810 and later"
0x8086	0x0d1b	"Card:Intel 810 and later"
0x8086	0x0d1e	"Card:Intel 810 and later"
0x8086	0x0d22	"Card:Intel 810 and later"
0x8086	0x0d26	"Card:Intel 810 and later"
0x8086	0x0d2a	"Card:Intel 810 and later"
0x8086	0x0d2b	"Card:Intel 810 and later"
0x8086	0x0d2e	"Card:Intel 810 and later"
0x8086	0x0f30	"Card:Intel 810 and later"
0x8086	0x0f31	"Card:Intel 810 and later"
0x8086	0x0f32	"Card:Intel 810 and later"
0x8086	0x0f33	"Card:Intel 810 and later"
0x8086	0x1602	"Card:Intel 810 and later"
0x8086	0x1606	"Card:Intel 810 and later"
0x8086	0x160a	"Card:Intel 810 and later"
0x8086	0x160b	"Card:Intel 810 and later"
0x8086	0x160d	"Card:Intel 810 and later"
0x8086	0x160e	"Card:Intel 810 and later"
0x8086	0x1612	"Card:Intel 810 and later"
0x8086	0x1616	"Card:Intel 810 and later"
0x8086	0x161a	"Card:Intel 810 and later"
0x8086	0x161b	"Card:Intel 810 and later"
0x8086	0x161d	"Card:Intel 810 and later"
0x8086	0x161e	"Card:Intel 810 and later"
0x8086	0x1622	"Card:Intel 810 and later"
0x8086	0x1626	"Card:Intel 810 and later"
0x8086	0x162a	"Card:Intel 810 and later"
0x8086	0x162b	"Card:Intel 810 and later"
0x8086	0x162d	"Card:Intel 810 and later"
0x8086	0x162e	"Card:Intel 810 and later"
0x8086	0x1632	"Card:Intel 810 and later"
0x8086	0x1636	"Card:Intel 810 and later"
0x8086	0x163a	"Card:Intel 810 and later"
0x8086	0x163b	"Card:Intel 810 and later"
0x8086	0x163d	"Card:Intel 810 and later"
0x8086	0x163e	"Card:Intel 810 and later"
0x8086	0x1902	"Card:Intel 810 and later"
0x8086	0x1906	"Card:Intel 810 and later"
0x8086	0x190a	"Card:Intel 810 and later"
0x8086	0x190b	"Card:Intel 810 and later"
0x8086	0x190e	"Card:Intel 810 and later"
0x8086	0x1912	"Card:Intel 810 and later"
0x8086	0x1916	"Card:Intel 810 and later"
0x8086	0x191a	"Card:Intel 810 and later"
0x8086	0x191b	"Card:Intel 810 and later"
0x8086	0x191d	"Card:Intel 810 and later"
0x8086	0x191e	"Card:Intel 810 and later"
0x8086	0x1921	"Card:Intel 810 and later"
0x8086	0x1923	"Card:Intel 810 and later"
0x8086	0x1926	"Card:Intel 810 and later"
0x8086	0x1927	"Card:Intel 810 and later"
0x8086	0x192a	"Card:Intel 810 and later"
0x8086	0x192b	"Card:Intel 810 and later"
0x8086	0x192d	"Card:Intel 810 and later"
0x8086	0x1932	"Card:Intel 810 and later"
0x8086	0x193a	"Card:Intel 810 and later"
0x8086	0x193b	"Card:Intel 810 and later"
0x8086	0x193d	"Card:Intel 810 and later"
0x8086	0x1a84	"Card:Intel 810 and later"
0x8086	0x1a85	"Card:Intel 810 and later"
0x8086	0x22b0	"Card:Intel 810 and later"
0x8086	0x22b1	"Card:Intel 810 and later"
0x8086	0x22b2	"Card:Intel 810 and later"
0x8086	0x22b3	"Card:Intel 810 and later"
0x8086	0x2416	"slamr"
0x8086	0x2426	"slamr"
0x8086	0x2446	"snd_intel8x0m"
0x8086	0x2486	"slamr"
0x8086	0x24c6	0x003c	0x1025	"snd_intel8x0m"
0x8086	0x24c6	0x1014	0x0525	"slamr"
0x8086	0x24c6	0x1014	0x0559	"snd_intel8x0m"
0x8086	0x24c6	0x1025	0x003c	"snd_intel8x0m"
0x8086	0x24c6	0x1025	0x005a	"Hsf:www.linmodems.org"
0x8086	0x24c6	0x1028	0x0196	"snd_intel8x0m"
0x8086	0x24c6	0x103c	0x088c	"Hsf:www.linmodems.org"
0x8086	0x24c6	0x103c	0x0890	"Hsf:www.linmodems.org"
0x8086	0x24c6	0x103c	0x08b0	"snd_intel8x0m"
0x8086	0x24c6	0x1043	0x1826	"Hsf:www.linmodems.org"
0x8086	0x24c6	0x1071	0x8160	"Hsf:www.linmodems.org"
0x8086	0x24c6	0x1179	0x0001	"slamr"
0x8086	0x24c6	0x144d	0x2115	"slamr"
0x8086	0x24c6	0x144d	0xc00c	"snd_intel8x0m"
0x8086	0x24c6	0x14c0	0x0012	"slamr"
0x8086	0x24c6	0x17c0	0x1069	"slamr"
0x8086	0x24c6	"snd_intel8x0m"
0x8086	0x24d6	"slamr"
0x8086	0x2562	"Card:Intel 810 and later"
0x8086	0x2572	"Card:Intel 810 and later"
0x8086	0x2582	"Card:Intel 810 and later"
0x8086	0x258a	"Card:Intel 810 and later"
0x8086	0x2592	"Card:Intel 810 and later"
0x8086	0x266d	0x1014	0x0574	"Hsf:www.linmodems.org"
0x8086	0x266d	0x1025	0x006a	"snd_intel8x0m"
0x8086	0x266d	0x103c	0x0934	"slamr"
0x8086	0x266d	0x103c	0x0944	"snd_intel8x0m"
0x8086	0x266d	0x103c	0x099c	"slamr"
0x8086	0x266d	0x14c0	0x0012	"slamr"
0x8086	0x266d	0x14f1	0x5423	"Hsf:www.linmodems.org"
0x8086	0x266d	0x17c0	0x10ab	"snd_intel8x0m"
0x8086	0x266d	"snd_intel8x0m"
0x8086	0x2772	"Card:Intel 810 and later"
0x8086	0x27a2	"Card:Intel 810 and later"
0x8086	0x27ae	"Card:Intel 810 and later"
0x8086	0x27dd	"snd_intel8x0m"
0x8086	0x2810	"iTCO_wdt"
0x8086	0x2812	"iTCO_wdt"
0x8086	0x2814	"iTCO_wdt"
0x8086	0x2972	"Card:Intel 810 and later"
0x8086	0x2982	"Card:Intel 810 and later"
0x8086	0x2992	"Card:Intel 810 and later"
0x8086	0x29a2	"Card:Intel 810 and later"
0x8086	0x29b2	"Card:Intel 810 and later"
0x8086	0x29c2	"Card:Intel 810 and later"
0x8086	0x29d2	"Card:Intel 810 and later"
0x8086	0x2a02	"Card:Intel 810 and later"
0x8086	0x2a12	"Card:Intel 810 and later"
0x8086	0x2a42	"Card:Intel 810 and later"
0x8086	0x2e02	"Card:Intel 810 and later"
0x8086	0x2e12	"Card:Intel 810 and later"
0x8086	0x2e22	"Card:Intel 810 and later"
0x8086	0x2e32	"Card:Intel 810 and later"
0x8086	0x2e42	"Card:Intel 810 and later"
0x8086	0x2e92	"Card:Intel 810 and later"
0x8086	0x3184	"Card:Intel 810 and later"
0x8086	0x3185	"Card:Intel 810 and later"
0x8086	0x3577	"Card:Intel 810 and later"
0x8086	0x3582	"Card:Intel 810 and later"
0x8086	0x358e	"Card:Intel 810 and later"
0x8086	0x3e90	"Card:Intel 810 and later"
0x8086	0x3e91	"Card:Intel 810 and later"
0x8086	0x3e92	"Card:Intel 810 and later"
0x8086	0x3e93	"Card:Intel 810 and later"
0x8086	0x3e94	"Card:Intel 810 and later"
0x8086	0x3e96	"Card:Intel 810 and later"
0x8086	0x3e98	"Card:Intel 810 and later"
0x8086	0x3e99	"Card:Intel 810 and later"
0x8086	0x3e9a	"Card:Intel 810 and later"
0x8086	0x3e9b	"Card:Intel 810 and later"
0x8086	0x3e9c	"Card:Intel 810 and later"
0x8086	0x3ea0	"Card:Intel 810 and later"
0x8086	0x3ea1	"Card:Intel 810 and later"
0x8086	0x3ea2	"Card:Intel 810 and later"
0x8086	0x3ea3	"Card:Intel 810 and later"
0x8086	0x3ea4	"Card:Intel 810 and later"
0x8086	0x3ea5	"Card:Intel 810 and later"
0x8086	0x3ea6	"Card:Intel 810 and later"
0x8086	0x3ea7	"Card:Intel 810 and later"
0x8086	0x3ea8	"Card:Intel 810 and later"
0x8086	0x3ea9	"Card:Intel 810 and later"
0x8086	0x4500	"Card:Intel 810 and later"
0x8086	0x4541	"Card:Intel 810 and later"
0x8086	0x4551	"Card:Intel 810 and later"
0x8086	0x4571	"Card:Intel 810 and later"
0x8086	0x5002	"Card:Intel Vermilion-based cards"
0x8086	0x5902	"Card:Intel 810 and later"
0x8086	0x5906	"Card:Intel 810 and later"
0x8086	0x5908	"Card:Intel 810 and later"
0x8086	0x590a	"Card:Intel 810 and later"
0x8086	0x590b	"Card:Intel 810 and later"
0x8086	0x590e	"Card:Intel 810 and later"
0x8086	0x5912	"Card:Intel 810 and later"
0x8086	0x5913	"Card:Intel 810 and later"
0x8086	0x5915	"Card:Intel 810 and later"
0x8086	0x5916	"Card:Intel 810 and later"
0x8086	0x5917	"Card:Intel 810 and later"
0x8086	0x591a	"Card:Intel 810 and later"
0x8086	0x591b	"Card:Intel 810 and later"
0x8086	0x591c	"Card:Intel 810 and later"
0x8086	0x591d	"Card:Intel 810 and later"
0x8086	0x591e	"Card:Intel 810 and later"
0x8086	0x5921	"Card:Intel 810 and later"
0x8086	0x5923	"Card:Intel 810 and later"
0x8086	0x5926	"Card:Intel 810 and later"
0x8086	0x5927	"Card:Intel 810 and later"
0x8086	0x593b	"Card:Intel 810 and later"
0x8086	0x5a40	"Card:Intel 810 and later"
0x8086	0x5a41	"Card:Intel 810 and later"
0x8086	0x5a42	"Card:Intel 810 and later"
0x8086	0x5a44	"Card:Intel 810 and later"
0x8086	0x5a49	"Card:Intel 810 and later"
0x8086	0x5a4a	"Card:Intel 810 and later"
0x8086	0x5a4c	"Card:Intel 810 and later"
0x8086	0x5a50	"Card:Intel 810 and later"
0x8086	0x5a51	"Card:Intel 810 and later"
0x8086	0x5a52	"Card:Intel 810 and later"
0x8086	0x5a54	"Card:Intel 810 and later"
0x8086	0x5a59	"Card:Intel 810 and later"
0x8086	0x5a5a	"Card:Intel 810 and later"
0x8086	0x5a5c	"Card:Intel 810 and later"
0x8086	0x5a71	"Card:Intel 810 and later"
0x8086	0x5a79	"Card:Intel 810 and later"
0x8086	0x5a84	"Card:Intel 810 and later"
0x8086	0x5a85	"Card:Intel 810 and later"
0x8086	0x7127	"Card:VESA driver (generic)"
0x8086	0x7196	"slamr"
0x8086	0x7800	"Card:Intel 740-based cards"
0x8086	0x8108	"Card:Intel Poulsbo US15W (GMA500)"
0x8086	0x8109	"Card:Intel Poulsbo US15W (GMA500)"
0x8086	0x87c0	"Card:Intel 810 and later"
0x8086	0x87ca	"Card:Intel 810 and later"
0x8086	0x8a50	"Card:Intel 810 and later"
0x8086	0x8a51	"Card:Intel 810 and later"
0x8086	0x8a52	"Card:Intel 810 and later"
0x8086	0x8a53	"Card:Intel 810 and later"
0x8086	0x8a54	"Card:Intel 810 and later"
0x8086	0x8a56	"Card:Intel 810 and later"
0x8086	0x8a57	"Card:Intel 810 and later"
0x8086	0x8a58	"Card:Intel 810 and later"
0x8086	0x8a59	"Card:Intel 810 and later"
0x8086	0x8a5a	"Card:Intel 810 and later"
0x8086	0x8a5b	"Card:Intel 810 and later"
0x8086	0x8a5c	"Card:Intel 810 and later"
0x8086	0x8a5d	"Card:Intel 810 and later"
0x8086	0x8a70	"Card:Intel 810 and later"
0x8086	0x8a71	"Card:Intel 810 and later"
0x8086	0x9a40	"Card:Intel 810 and later"
0x8086	0x9a49	"Card:Intel 810 and later"
0x8086	0x9a59	"Card:Intel 810 and later"
0x8086	0x9a60	"Card:Intel 810 and later"
0x8086	0x9a68	"Card:Intel 810 and later"
0x8086	0x9a70	"Card:Intel 810 and later"
0x8086	0x9a78	"Card:Intel 810 and later"
0x8086	0x9b21	"Card:Intel 810 and later"
0x8086	0x9b41	"Card:Intel 810 and later"
0x8086	0x9ba0	"Card:Intel 810 and later"
0x8086	0x9ba2	"Card:Intel 810 and later"
0x8086	0x9ba4	"Card:Intel 810 and later"
0x8086	0x9ba5	"Card:Intel 810 and later"
0x8086	0x9ba8	"Card:Intel 810 and later"
0x8086	0x9baa	"Card:Intel 810 and later"
0x8086	0x9bab	"Card:Intel 810 and later"
0x8086	0x9bac	"Card:Intel 810 and later"
0x8086	0x9bc0	"Card:Intel 810 and later"
0x8086	0x9bc2	"Card:Intel 810 and later"
0x8086	0x9bc4	"Card:Intel 810 and later"
0x8086	0x9bc5	"Card:Intel 810 and later"
0x8086	0x9bc6	"Card:Intel 810 and later"
0x8086	0x9bc8	"Card:Intel 810 and later"
0x8086	0x9bca	"Card:Intel 810 and later"
0x8086	0x9bcb	"Card:Intel 810 and later"
0x8086	0x9bcc	"Card:Intel 810 and later"
0x8086	0x9be6	"Card:Intel 810 and later"
0x8086	0x9bf6	"Card:Intel 810 and later"
0x8086	0xa001	"Card:Intel 810 and later"
0x8086	0xa011	"Card:Intel 810 and later"
0x80ee	0xbeef	"Card:VirtualBox virtual video card"
0xe159	0x0001	0x0059	0x0001	"ISDN:hisax,type=20"
0xe159	0x0002	0x0051	0x0001	"ISDN:sedlfax"
0xe159	0x0002	0x0054	0x0001	"ISDN:sedlfax"
0xe159	0x0002	"ISDN:hisax,type=28,firmware=/usr/lib/isdn/ISAR.BIN"
0xec80	0xec00	"orinoco_plx"
0xedd8	0xa091	"Card:Ark Logic ARKx000-based cards"
0xedd8	0xa099	"Card:Ark Logic ARKx000-based cards"
0xedd8	0xa0a1	"Card:Ark Logic ARKx000-based cards"
0xedd8	0xa0a9	"Card:Ark Logic ARKx000-based cards"
0xedd8	0xa0b1	"Card:Ark Logic ARKx000-based cards"
0xfffe	0x0710	"Card:VMware virtual video card"