Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1747 lines
84 KiB

  1. #ifndef _PCIP_
  2. #define _PCIP_
  3. typedef enum {
  4. BaseClassDescription,
  5. SubClassDescription,
  6. ProgIfDescription
  7. } PCI_CLASSCODEDESC;
  8. typedef struct _PCI_BRIDBG_CTRL_REG {
  9. USHORT PERRREnable:1;
  10. USHORT SERREnable:1;
  11. USHORT ISAEnable:1;
  12. USHORT VGAEnable:1;
  13. USHORT Reserved:1;
  14. USHORT MasterAbort:1;
  15. USHORT CBRst:1;
  16. USHORT IRQRoutingEnable:1;
  17. USHORT Mem0Prefetch:1;
  18. USHORT Mem1Prefetch:1;
  19. USHORT WritePostEnable:1;
  20. USHORT Reserved1:5;
  21. } PCI_BRIDBG_CTRL_REG;
  22. //
  23. // Cardbus has extra configuration information beyond the common
  24. // header. (stolen from the PCI driver)
  25. //
  26. typedef struct _PCI_TYPE2_HEADER_EXTRAS {
  27. USHORT SubVendorID;
  28. USHORT SubSystemID;
  29. ULONG LegacyModeBaseAddress;
  30. } PCI_TYPE2_HEADER_EXTRAS, *PPCI_TYPE2_HEADER_EXTRAS;
  31. #define CONFIG_OFFSET(x) \
  32. FIELD_OFFSET(PCI_COMMON_CONFIG, x)
  33. #define TYPE0_OFFSET(x) \
  34. CONFIG_OFFSET(u.type0.x)
  35. #define TYPE1_OFFSET(x) \
  36. CONFIG_OFFSET(u.type1.x)
  37. #define TYPE2_OFFSET(x) \
  38. CONFIG_OFFSET(u.type2.x)
  39. VOID
  40. PrintPciHtCommandReg(
  41. IN PPCI_HT_CAPABILITY PciHtCap
  42. );
  43. VOID
  44. DumpCfgSpace (
  45. IN PPCI_TYPE1_CFG_BITS PciCfg1
  46. );
  47. PCHAR
  48. GetClassDesc(
  49. IN UCHAR BaseClass,
  50. IN UCHAR SubClass,
  51. IN UCHAR ProgIf,
  52. IN PCI_CLASSCODEDESC ClassDesc
  53. );
  54. PCHAR
  55. GetVendorDesc(
  56. IN USHORT VendorID,
  57. IN BOOL FullVenDesc
  58. );
  59. BOOL
  60. ReadPci (
  61. IN PPCI_TYPE1_CFG_BITS PciCfg1,
  62. OUT PUCHAR Buffer,
  63. IN ULONG Offset,
  64. IN ULONG Length
  65. );
  66. BOOLEAN
  67. WritePci (
  68. IN PPCI_TYPE1_CFG_BITS PciCfg1,
  69. IN PUCHAR Buffer,
  70. IN ULONG Offset,
  71. IN ULONG Length
  72. );
  73. static struct _PCI_CLASSCODETABLE{
  74. UCHAR BaseClass;
  75. UCHAR SubClass;
  76. UCHAR ProgIf;
  77. PCHAR BaseDesc;
  78. PCHAR SubDesc;
  79. PCHAR ProgDesc;
  80. } PciClassCodeTable[] = {
  81. { 0x00, 0x00, 0x00, "Pre-2.0 PCI Specification Device", "Non-VGA",NULL } ,
  82. { 0x00, 0x01, 0x00, "Pre-2.0 PCI Specification Device", "VGA Compatible", NULL } ,
  83. { 0x01, 0x00, 0x00, "Mass Storage Controller", "SCSI Controller", NULL } ,
  84. { 0x01, 0x01, 0x00, "Mass Storage Controller", "IDE Controller", NULL } ,
  85. { 0x01, 0x02, 0x00, "Mass Storage Controller", "Floppy Disk Controller", NULL } ,
  86. { 0x01, 0x03, 0x00, "Mass Storage Controller", "IPI Controller", NULL } ,
  87. { 0x01, 0x04, 0x00, "Mass Storage Controller", "RAID Controller", NULL } ,
  88. { 0x01, 0x80, 0x00, "Mass Storage Controller", "Other Storage Controller", NULL } ,
  89. { 0x02, 0x00, 0x00, "Network Controller", "Ethernet Controller", NULL } ,
  90. { 0x02, 0x01, 0x00, "Network Controller", "Token Ring Controller", NULL } ,
  91. { 0x02, 0x02, 0x00, "Network Controller", "FDDI Controller", NULL } ,
  92. { 0x02, 0x03, 0x00, "Network Controller", "ATM Controller", NULL } ,
  93. { 0x02, 0x04, 0x00, "Network Controller", "ISDN Controller", NULL } ,
  94. { 0x02, 0x80, 0x00, "Network Controller", "Other Network Controller", NULL } ,
  95. { 0x03, 0x00, 0x00, "Display Controller", "VGA Compatible Controller", "VGA" } ,
  96. { 0x03, 0x00, 0x01, "Display Controller", "VGA Compatible Controller", "8514" } ,
  97. { 0x03, 0x01, 0x00, "Display Controller", "XGA Controller", NULL } ,
  98. { 0x03, 0x02, 0x00, "Display Controller", "3D Controller", NULL } ,
  99. { 0x03, 0x80, 0x00, "Display Controller", "Other Display Controller", NULL } ,
  100. { 0x04, 0x00, 0x00, "Multimedia Device", "Video Device", NULL } ,
  101. { 0x04, 0x01, 0x00, "Multimedia Device", "Audio Device", NULL } ,
  102. { 0x04, 0x02, 0x00, "Multimedia Device", "Telephony Device", NULL } ,
  103. { 0x04, 0x80, 0x00, "Multimedia Device", "Other Device", NULL } ,
  104. { 0x05, 0x00, 0x00, "Memory Controller", "RAM Controller", NULL } ,
  105. { 0x05, 0x01, 0x00, "Memory Controller", "Flash Controller", NULL } ,
  106. { 0x05, 0x80, 0x00, "Memory Controller", "Other Memory Controller", NULL } ,
  107. { 0x06, 0x00, 0x00, "Bridge Device", "Host Bridge", NULL } ,
  108. { 0x06, 0x01, 0x00, "Bridge Device", "ISA Bridge", NULL } ,
  109. { 0x06, 0x02, 0x00, "Bridge Device", "EISA Bridge", NULL } ,
  110. { 0x06, 0x03, 0x00, "Bridge Device", "MCA Bridge", NULL } ,
  111. { 0x06, 0x04, 0x00, "Bridge Device", "PCI-PCI Bridge", NULL } ,
  112. { 0x06, 0x04, 0x01, "Bridge Device", "PCI-PCI Bridge", "Subtractive" } ,
  113. { 0x06, 0x05, 0x00, "Bridge Device", "PCMCIA Bridge", NULL } ,
  114. { 0x06, 0x06, 0x00, "Bridge Device", "NuBus Bridge", NULL } ,
  115. { 0x06, 0x07, 0x00, "Bridge Device", "CardBus Bridge", NULL } ,
  116. { 0x06, 0x08, 0x00, "Bridge Device", "RACEway Bridge", "Transparent" } ,
  117. { 0x06, 0x08, 0x01, "Bridge Device", "RACEway Bridge", "End-Point" } ,
  118. { 0x06, 0x80, 0x00, "Bridge Device", "Other Bridge", NULL } ,
  119. { 0x07, 0x00, 0x00, "Simple Communications Controller", "Serial Controller", "Generic XT Compatible" } ,
  120. { 0x07, 0x00, 0x01, "Simple Communications Controller", "Serial Controller", "16450 Compatible" } ,
  121. { 0x07, 0x00, 0x02, "Simple Communications Controller", "Serial Controller", "16550 Compatible" } ,
  122. { 0x07, 0x00, 0x03, "Simple Communications Controller", "Serial Controller", "16650 Compatible" } ,
  123. { 0x07, 0x00, 0x04, "Simple Communications Controller", "Serial Controller", "16750 Compatible" } ,
  124. { 0x07, 0x00, 0x05, "Simple Communications Controller", "Serial Controller", "16850 Compatible" } ,
  125. { 0x07, 0x00, 0x06, "Simple Communications Controller", "Serial Controller", "16950 Compatible" } ,
  126. { 0x07, 0x01, 0x00, "Simple Communications Controller", "Parallel Port", "Standard" } ,
  127. { 0x07, 0x01, 0x01, "Simple Communications Controller", "Parallel Port", "Bidirectional" } ,
  128. { 0x07, 0x01, 0x02, "Simple Communications Controller", "Parallel Port", "ECP 1.X Compliant" } ,
  129. { 0x07, 0x01, 0x03, "Simple Communications Controller", "Parallel Port", "IEEE 1284 controller" } ,
  130. { 0x07, 0x01, 0xFE, "Simple Communications Controller", "Parallel Port", "IEEE 1284 target" } ,
  131. { 0x07, 0x02, 0x00, "Simple Communications Controller", "Multiport Serial Controller", NULL } ,
  132. { 0x07, 0x03, 0x00, "Simple Communications Controller", "Generic Modem", NULL } ,
  133. { 0x07, 0x03, 0x01, "Simple Communications Controller", "Hayes-Compatible Modem", "16450" } ,
  134. { 0x07, 0x03, 0x02, "Simple Communications Controller", "Hayes-Compatible Modem", "16550" } ,
  135. { 0x07, 0x03, 0x03, "Simple Communications Controller", "Hayes-Compatible Modem", "16650" } ,
  136. { 0x07, 0x03, 0x04, "Simple Communications Controller", "Hayes-Compatible Modem", "16750" } ,
  137. { 0x07, 0x80, 0x00, "Simple Communications Controller", "Other Communications Controller", NULL } ,
  138. { 0x08, 0x00, 0x00, "Base Systems Peripheral", "Interrupt Controller", "Generic 8259" } ,
  139. { 0x08, 0x00, 0x01, "Base Systems Peripheral", "Interrupt Controller", "ISA" } ,
  140. { 0x08, 0x00, 0x02, "Base Systems Peripheral", "Interrupt Controller", "EISA" } ,
  141. { 0x08, 0x00, 0x10, "Base Systems Peripheral", "Interrupt Controller", "IO APIC" } ,
  142. { 0x08, 0x00, 0x20, "Base Systems Peripheral", "Interrupt Controller", "IO(x) APIC" } ,
  143. { 0x08, 0x01, 0x00, "Base Systems Peripheral", "DMA Controller", "Generic 8237" } ,
  144. { 0x08, 0x01, 0x01, "Base Systems Peripheral", "DMA Controller", "ISA" } ,
  145. { 0x08, 0x01, 0x02, "Base Systems Peripheral", "DMA Controller", "EISA" } ,
  146. { 0x08, 0x02, 0x00, "Base Systems Peripheral", "System Timer", "Generic 8254" } ,
  147. { 0x08, 0x02, 0x01, "Base Systems Peripheral", "System Timer", "ISA" } ,
  148. { 0x08, 0x02, 0x02, "Base Systems Peripheral", "System Timer", "EISA" } ,
  149. { 0x08, 0x03, 0x00, "Base Systems Peripheral", "RTC (Real Time Clock)", "Generic" } ,
  150. { 0x08, 0x03, 0x01, "Base Systems Peripheral", "RTC (Real Time Clock)", "ISA" } ,
  151. { 0x08, 0x04, 0x00, "Base Systems Peripheral", "PCI Hot-Plug Controller", "Generic" } ,
  152. { 0x08, 0x80, 0x00, "Base Systems Peripheral", "Other System Peripheral", NULL } ,
  153. { 0x09, 0x00, 0x00, "Input Device", "Keyboard Controller", NULL } ,
  154. { 0x09, 0x01, 0x00, "Input Device", "Digitizer (Pen)", NULL } ,
  155. { 0x09, 0x02, 0x00, "Input Device", "Mouse Controller", NULL } ,
  156. { 0x09, 0x03, 0x00, "Input Device", "Scanner Controller", NULL } ,
  157. { 0x09, 0x04, 0x00, "Input Device", "Game Port Controller", "Generic" } ,
  158. { 0x09, 0x04, 0x10, "Input Device", "Game Port Controller", "Legacy" } ,
  159. { 0x09, 0x80, 0x00, "Input Device", "Other Input Controller", NULL } ,
  160. { 0x0A, 0x00, 0x00, "Docking Station", "Generic", NULL } ,
  161. { 0x0A, 0x80, 0x00, "Docking Station", "Other", NULL } ,
  162. { 0x0B, 0x00, 0x00, "Processor", "386", NULL } ,
  163. { 0x0B, 0x01, 0x00, "Processor", "486", NULL } ,
  164. { 0x0B, 0x02, 0x00, "Processor", "Pentium", NULL } ,
  165. { 0x0B, 0x10, 0x00, "Processor", "Alpha", NULL } ,
  166. { 0x0B, 0x20, 0x00, "Processor", "Power PC", NULL } ,
  167. { 0x0B, 0x30, 0x00, "Processor", "MIPS", NULL } ,
  168. { 0x0B, 0x40, 0x00, "Processor", "Co-processor", NULL } ,
  169. { 0x0C, 0x00, 0x00, "Serial Bus Controller", "IEEE 1394 Controller", "Firewire" } ,
  170. { 0x0C, 0x00, 0x10, "Serial Bus Controller", "IEEE 1394 Controller", "OpenHCI" } ,
  171. { 0x0C, 0x01, 0x00, "Serial Bus Controller", "ACCESS.bus", NULL } ,
  172. { 0x0C, 0x02, 0x00, "Serial Bus Controller", "SSA (Serial Storage Archetecture)", NULL } ,
  173. { 0x0C, 0x03, 0x00, "Serial Bus Controller", "USB Controller", "Universal Host Controller" } ,
  174. { 0x0C, 0x03, 0x10, "Serial Bus Controller", "USB Controller", "Open Host Controller" } ,
  175. { 0x0C, 0x03, 0x20, "Serial Bus Controller", "USB2 Controller", "USB2 Enhanced Interface" } ,
  176. { 0x0C, 0x03, 0x80, "Serial Bus Controller", "USB Controller", "Non-specific Controller" } ,
  177. { 0x0C, 0x03, 0xFE, "Serial Bus Controller", "USB Controller", "Device" } ,
  178. { 0x0C, 0x04, 0x00, "Serial Bus Controller", "Fibre Channel", NULL } ,
  179. { 0x0C, 0x05, 0x00, "Serial Bus Controller", "SMBus Controller", NULL } ,
  180. { 0x0D, 0x00, 0x00, "Wireless", "iRDA-compatible Controller", NULL } ,
  181. { 0x0D, 0x01, 0x00, "Wireless", "Consumer IR Controller", NULL } ,
  182. { 0x0D, 0x10, 0x00, "Wireless", "RF Controller", NULL } ,
  183. { 0x0D, 0x80, 0x00, "Wireless", "Other Wireless Controller", NULL } ,
  184. { 0x0E, 0x00, 0x00, "Intelligent IO Controller", "I2O Controller", NULL } ,
  185. { 0x0F, 0x01, 0x00, "Satellite Communications Controller", "TV Sat Controller", NULL } ,
  186. { 0x0F, 0x02, 0x00, "Satellite Communications Controller", "Audio Sat Controller", NULL } ,
  187. { 0x0F, 0x03, 0x00, "Satellite Communications Controller", "Voice Sat Controller", NULL } ,
  188. { 0x0F, 0x04, 0x00, "Satellite Communications Controller", "Data Sat Controller", NULL } ,
  189. { 0x10, 0x00, 0x00, "Encryption Controller", "Network/Computing Encryption Controller", NULL } ,
  190. { 0x10, 0x10, 0x00, "Encryption Controller", "Entertainment Encryption Controller", NULL } ,
  191. { 0x10, 0x80, 0x00, "Encryption Controller", "Other Encryption Controller", NULL } ,
  192. { 0x11, 0x00, 0x00, "Signal Processing", "DPIO Controller", NULL } ,
  193. { 0x11, 0x80, 0x00, "Signal Processing", "Other Signal Processing Controller", NULL } ,
  194. { 0xFF, 0xFF, 0xFF, "Unknown", "Unknown", "Unknown" } ,
  195. { 0x00, 0x00, 0x00, NULL, NULL, NULL}
  196. };
  197. static struct _PCI_VENTABLE{
  198. USHORT VenId;
  199. PCHAR VenShort;
  200. PCHAR VenFull;
  201. } PciVenTable[] = {
  202. { 0x0000, "Gammagraphx", "Gammagraphx, Inc." } ,
  203. { 0x001A, "Ascend", "Ascend Communications, Inc." } ,
  204. { 0x0033, NULL, "Paradyne Corp." } ,
  205. { 0x003D, "Lockheed Martin", "Lockheed Martin Corp" } ,
  206. { 0x0070, "Hauppauge", "Hauppauge Computer Works Inc." } ,
  207. { 0x0100, NULL, "Ncipher Corp. Ltd" } ,
  208. { 0x0123, NULL, "General Dynamics" } ,
  209. { 0x0160, "USR", "us robotics" } ,
  210. { 0x0675, "Dynalink", "Dynalink" } ,
  211. { 0x0871, "Berkom", "Berkom" } ,
  212. { 0x0A89, "BREA", "BREA Technologies Inc." } ,
  213. { 0x0E11, "Compaq", "Compaq Computer Corp." } ,
  214. { 0x1000, "LSI", "LSI Logic" } ,
  215. { 0x1001, "KOLTER", "Kolter Electronic - Germany" } ,
  216. { 0x1002, "ATI", "ATI Technologies" } ,
  217. { 0x1003, "ULSI", "ULSI" } ,
  218. { 0x1004, "VLSI", "VLSI Technology" } ,
  219. { 0x1005, "Avance", "Avance Logic Inc." } ,
  220. { 0x1006, "Reply", "Reply Group" } ,
  221. { 0x1007, "NetFrame", "Netframe Systems" } ,
  222. { 0x1008, "Epson", "Epson" } ,
  223. { 0x100A, "Phoenix", "Phoenix Technologies Ltd." } ,
  224. { 0x100B, "NSC", "National Semiconductor" } ,
  225. { 0x100C, "Tseng", "Tseng Labs" } ,
  226. { 0x100D, "AST", "AST Research" } ,
  227. { 0x100E, "Weitek", "Weitek" } ,
  228. { 0x1010, "VLogic", "Video Logic Ltd." } ,
  229. { 0x1011, "DEC", "Digital Equipment Corporation" } ,
  230. { 0x1012, "Micronics", "Micronics Computers Inc." } ,
  231. { 0x1013, "Cirrus", "Cirrus Logic" } ,
  232. { 0x1014, "IBM", "International Business Machines Corp." } ,
  233. { 0x1015, "LSIL", "LSI Logic Corp of Canada" } ,
  234. { 0x1016, "Fujitsu ICL", "Fujitsu ICL Computers" } ,
  235. { 0x1017, "Spea", "Spea Software AG" } ,
  236. { 0x1018, "Unisys", "Unisys Systems" } ,
  237. { 0x1019, "ECS", "Elitegroup Computer Sys" } ,
  238. { 0x101A, "NCR", "NCR/AT&T GIS" } ,
  239. { 0x101B, "Vitesse", "Vitesse Semiconductor" } ,
  240. { 0x101C, "WD", "Western Digital" } ,
  241. { 0x101E, "AMI", "American Megatrends Inc." } ,
  242. { 0x101F, "PictureTel", "PictureTel Corp." } ,
  243. { 0x1020, "Hitachi", "Hitachi Computer Electronics" } ,
  244. { 0x1021, "OKI", "Oki Electric Industry" } ,
  245. { 0x1022, "AMD", "Advanced Micro Devices" } ,
  246. { 0x1023, "Trident", "Trident Microsystems" } ,
  247. { 0x1024, "Zenith", "Zenith Data Systems" } ,
  248. { 0x1025, "Acer", "Acer Incorporated" } ,
  249. { 0x1028, "Dell", "Dell Computer Corporation" } ,
  250. { 0x1029, "Siem-Nix", "Siemens Nixdorf AG" } ,
  251. { 0x102A, "LSI", "LSI Logic Headland Div" } ,
  252. { 0x102B, "Matrox", "Matrox" } ,
  253. { 0x102C, "C&T", "Chips And Technologies" } ,
  254. { 0x102D, "Wyse", "Wyse Technologies" } ,
  255. { 0x102E, "Olivetti", "Olivetti Advanced Technology" } ,
  256. { 0x102F, "Toshiba", "Toshiba America" } ,
  257. { 0x1030, "TMC", "TMC Research" } ,
  258. { 0x1031, "miro", "miro Computer Products AG" } ,
  259. { 0x1032, "Compaq", "Compaq" } ,
  260. { 0x1033, "NEC", "NEC Corporation" } ,
  261. { 0x1034, "Burndy", "Burndy Corporation" } ,
  262. { 0x1035, "C&CRL", "Computer&Communication Research Lab" } ,
  263. { 0x1036, "FDomain", "Future Domain" } ,
  264. { 0x1037, "Hitachi", "Hitachi Micro Systems Inc" } ,
  265. { 0x1038, "AMP", "AMP Incorporated" } ,
  266. { 0x1039, "SiS", "Silicon Integrated System" } ,
  267. { 0x103A, "Seiko", "Seiko Epson Corporation" } ,
  268. { 0x103B, "Tatung", "Tatung Corp. Of America" } ,
  269. { 0x103C, "HP", "Hewlett-Packard Company" } ,
  270. { 0x103E, "Solliday", "Solliday Engineering" } ,
  271. { 0x103F, "Logic Mod.", "Logic Modeling" } ,
  272. { 0x1040, "Kubota", "Kubota Pacific Computer Inc." } ,
  273. { 0x1041, "Computrend", "Computrend" } ,
  274. { 0x1042, "PC Tech.", "PC Technology" } ,
  275. { 0x1043, "Asustek", "Asustek Computer Inc." } ,
  276. { 0x1044, "DPT", "Distributed Processing Tech" } ,
  277. { 0x1045, "OPTi", "OPTi Inc." } ,
  278. { 0x1046, "IPC", "IPC Corporation LTD" } ,
  279. { 0x1047, "Genoa", "Genoa Systems Corp." } ,
  280. { 0x1048, "ELSA", "ELSA AG" } ,
  281. { 0x1049, "Fountain", "Fountain Technology" } ,
  282. { 0x104A, "STM", "STMicroelectronics" } ,
  283. { 0x104B, "Mylex", "Mylex Corporation" } ,
  284. { 0x104C, "TI", "Texas Instruments" } ,
  285. { 0x104D, "Sony", "Sony Corporation" } ,
  286. { 0x104E, "Oak", "Oak Technology" } ,
  287. { 0x104F, "Co-Time", "Co-Time Computer Ltd." } ,
  288. { 0x1050, "Winbond", "Winbond Electronics Corp." } ,
  289. { 0x1051, "Anigma", "Anigma Corp." } ,
  290. { 0x1052, "Young", "Young Micro Systems" } ,
  291. { 0x1054, "Hitachi", "Hitachi LTD" } ,
  292. { 0x1055, "SMSC", "Standard Microsystems Corp." } ,
  293. { 0x1056, "ICL", "ICL" } ,
  294. { 0x1057, "Motorola", "Motorola" } ,
  295. { 0x1058, "E&TR", "Electronics & Telecommunication Res" } ,
  296. { 0x1059, "Teknor", "Teknor Microsystems" } ,
  297. { 0x105A, "Promise", "Promise Technology" } ,
  298. { 0x105B, "Foxconn", "Foxconn International" } ,
  299. { 0x105C, "Wipro", "Wipro Infotech Limited" } ,
  300. { 0x105D, "Number-Nine", "Number Nine Visual Technology" } ,
  301. { 0x105E, "Vtech", "Vtech Engineering Canada Ltd." } ,
  302. { 0x105F, "Infotronic", "Infotronic America Inc." } ,
  303. { 0x1060, "UMC", "United Microelectronics" } ,
  304. { 0x1061, "8x8", "8x8 Inc." } ,
  305. { 0x1062, "Maspar", "Maspar Computer Corp." } ,
  306. { 0x1063, "OOA", "Ocean Office Automation" } ,
  307. { 0x1064, "Alcatel", "Alcatel Cit" } ,
  308. { 0x1065, "TM", "Texas Microsystems" } ,
  309. { 0x1066, "Picopower", "Picopower Technology" } ,
  310. { 0x1067, "Mitsubishi", "Mitsubishi Electronics" } ,
  311. { 0x1068, "Div. Tech.", "Diversified Technology" } ,
  312. { 0x1069, "Mylex", "IBM Corporation" } ,
  313. { 0x106A, "Aten", "Aten Research Inc." } ,
  314. { 0x106B, "Apple", "Apple Computer Inc." } ,
  315. { 0x106C, "Hyundai", "Hyundai Electronics America" } ,
  316. { 0x106D, "Sequent", "Sequent" } ,
  317. { 0x106E, "DFI", "DFI Inc." } ,
  318. { 0x106F, "CityGate", "City Gate Development LTD" } ,
  319. { 0x1070, "Daewoo", "Daewoo Telecom Ltd." } ,
  320. { 0x1071, "Mitac", "Mitac" } ,
  321. { 0x1072, "GIT", "GIT Co. Ltd." } ,
  322. { 0x1073, "Yamaha", "Yamaha Corporation" } ,
  323. { 0x1074, "Nexgen", "Nexgen Microsysteme" } ,
  324. { 0x1075, "AIR", "Advanced Integration Research" } ,
  325. { 0x1076, "Chaintech", "Chaintech Computer Co. Ltd." } ,
  326. { 0x1077, "Q Logic", "Q Logic" } ,
  327. { 0x1078, "Cyrix", "Cyrix Corporation" } ,
  328. { 0x1079, "I-Bus", "I-Bus" } ,
  329. { 0x107A, "Networth", "Networth" } ,
  330. { 0x107B, "Gateway", "Gateway 2000" } ,
  331. { 0x107C, "Goldstar", "Goldstar Co. Ltd." } ,
  332. { 0x107D, "Leadtek", "Leadtek Research" } ,
  333. { 0x107E, "Interphase", "Interphase Corporation" } ,
  334. { 0x107F, "DTC", "Data Technology Corporation" } ,
  335. { 0x1080, "Contaq", "Contaq Microsystems" } ,
  336. { 0x1081, "Supermac", "Supermac Technology Inc." } ,
  337. { 0x1082, "EFA", "EFA Corporation Of America" } ,
  338. { 0x1083, "Forex", "Forex Computer Corporation" } ,
  339. { 0x1084, "Parador", "Parador" } ,
  340. { 0x1085, "Tulip", "Tulip Computers Int'l BV" } ,
  341. { 0x1086, "J. Bond", "J. Bond Computer Systems" } ,
  342. { 0x1087, "Cache", "Cache Computer" } ,
  343. { 0x1088, "MS Son", "Microcomputer Systems (M) Son" } ,
  344. { 0x1089, "DG", "Data General Corporation" } ,
  345. { 0x108A, "Bit3", "Bit3 Computer" } ,
  346. { 0x108C, "Elonex", "Elonex PLC c/o Oakleigh Systems Inc." } ,
  347. { 0x108D, "Olicom", "Olicom" } ,
  348. { 0x108E, "Sun", "Sun Microsystems" } ,
  349. { 0x108F, "Systemsoft", "Systemsoft Corporation" } ,
  350. { 0x1090, "Encore", "Encore Computer Corporation" } ,
  351. { 0x1091, "Intergraph", "Intergraph Corporation" } ,
  352. { 0x1092, "Diamond", "Diamond Computer Systems" } ,
  353. { 0x1093, "Nat. Inst.", "National Instruments" } ,
  354. { 0x1094, "FIC", "First Int'l Computers" } ,
  355. { 0x1095, "CMD", "CMD Technology Inc." } ,
  356. { 0x1096, "Alacron", "Alacron" } ,
  357. { 0x1097, "Appian", "Appian Graphics" } ,
  358. { 0x1098, "Quantum", "Quantum Designs Ltd." } ,
  359. { 0x1099, "Samsung", "Samsung Electronics Co. Ltd." } ,
  360. { 0x109A, "Packard-Bell", "Packard Bell" } ,
  361. { 0x109B, "Gemlight", "Gemlight Computer Ltd." } ,
  362. { 0x109C, "Megachips", "Megachips Corporation" } ,
  363. { 0x109D, "Zida", "Zida Technologies Ltd." } ,
  364. { 0x109E, "Brooktree", "Brooktree Corporation" } ,
  365. { 0x109F, "Trigem", "Trigem Computer Inc." } ,
  366. { 0x10A0, "Meidensha", "Meidensha Corporation" } ,
  367. { 0x10A1, "Juko", "Juko Electronics Inc. Ltd." } ,
  368. { 0x10A2, "Quantum", "Quantum Corporation" } ,
  369. { 0x10A3, "Everex", "Everex Systems Inc." } ,
  370. { 0x10A4, "Globe", "Globe Manufacturing Sales" } ,
  371. { 0x10A5, "Racal", "Racal Interlan" } ,
  372. { 0x10A6, "Informtech", "Informtech Industrial Ltd." } ,
  373. { 0x10A7, "Benchmarq", "Benchmarq Microelectronics" } ,
  374. { 0x10A8, "Sierra", "Sierra Semiconductor" } ,
  375. { 0x10A9, "SG", "Silicon Graphics" } ,
  376. { 0x10AA, "ACC", "ACC Microelectronics" } ,
  377. { 0x10AB, "Digicom", "Digicom" } ,
  378. { 0x10AC, "Honeywell", "Honeywell IASD" } ,
  379. { 0x10AD, "Symphony", "Symphony Labs" } ,
  380. { 0x10AE, "Cornerstone", "Cornerstone Technology" } ,
  381. { 0x10AF, "MCS", "Micro Computer Systems Inc." } ,
  382. { 0x10B0, "Cardexpert", "Cardexpert Technology" } ,
  383. { 0x10B1, "Cabletron", "Cabletron Systems Inc." } ,
  384. { 0x10B2, "Raytheon", "Raytheon Company" } ,
  385. { 0x10B3, "Databook", "Databook Inc." } ,
  386. { 0x10B4, "STB", "STB Systems" } ,
  387. { 0x10B5, "PLX", "PLX Technology" } ,
  388. { 0x10B6, "Madge", "Madge Networks" } ,
  389. { 0x10B7, "3Com", "3Com Corporation" } ,
  390. { 0x10B8, "SMC", "Standard Microsystems Corporation" } ,
  391. { 0x10B9, "ALi", "Acer Labs Inc." } ,
  392. { 0x10BA, "Mitsubishi", "Mitsubishi Electronics Corp." } ,
  393. { 0x10BB, "Dapha", "Dapha Electronics Corporation" } ,
  394. { 0x10BC, "ALR", "Advanced Logic Research Inc." } ,
  395. { 0x10BD, "Surecom", "Surecom Technology" } ,
  396. { 0x10BE, "Tseng", "Tsenglabs International Corp." } ,
  397. { 0x10BF, "MOST", "MOST Corp." } ,
  398. { 0x10C0, "Boca", "Boca Research Inc." } ,
  399. { 0x10C1, "ICM", "ICM Corp. Ltd." } ,
  400. { 0x10C2, "Auspex", "Auspex Systems Inc." } ,
  401. { 0x10C3, "Samsung", "Samsung Semiconductors" } ,
  402. { 0x10C4, "Award", "Award Software Int'l Inc." } ,
  403. { 0x10C5, "Xerox", "Xerox Corporation" } ,
  404. { 0x10C6, "Rambus", "Rambus Inc." } ,
  405. { 0x10C7, "Media Vision", "Media Vision" } ,
  406. { 0x10C8, "Neomagic", "Neomagic Corporation" } ,
  407. { 0x10C9, "Dataexpert", "Dataexpert Corporation" } ,
  408. { 0x10CA, "Fujitsu", "Fujitsu" } ,
  409. { 0x10CB, "Omron", "Omron Corporation" } ,
  410. { 0x10CC, "Mentor", "Mentor Arc Inc." } ,
  411. { 0x10CD, "AdvanSys", "Advanced System Products" } ,
  412. { 0x10CE, "Radius", "Radius Inc." } ,
  413. { 0x10CF, "Fujitsu", "Fujitsu Ltd." } ,
  414. { 0x10D0, "Fujitsu", "Fujitsu Limited" } ,
  415. { 0x10D1, "Future+", "Future+ Systems" } ,
  416. { 0x10D2, "Molex", "Molex Incorporated" } ,
  417. { 0x10D3, "Jabil", "Jabil Circuit Inc." } ,
  418. { 0x10D4, "Hualon", "Hualon Microelectronics" } ,
  419. { 0x10D5, "Autologic", "Autologic Inc." } ,
  420. { 0x10D6, "Cetia", "Cetia" } ,
  421. { 0x10D7, "BCM", "BCM Advanced Research" } ,
  422. { 0x10D8, "APL", "Advanced Peripherals Labs" } ,
  423. { 0x10D9, "Macronix", "Macronix International Co. Ltd." } ,
  424. { 0x10DA, "T-C", "Thomas-Conrad Corporation" } ,
  425. { 0x10DB, "Rohm", "Rohm Research" } ,
  426. { 0x10DC, "CERN", "CERN-European Lab. for Particle Physics" } ,
  427. { 0x10DD, "E&S", "Evans & Sutherland" } ,
  428. { 0x10DE, "Nvidia", "Nvidia Corporation" } ,
  429. { 0x10DF, "Emulex", "Emulex Corporation" } ,
  430. { 0x10E0, "IMS", "Integrated Micro Solutions" } ,
  431. { 0x10E1, "Tekram", "Tekram Technology Corp. Ltd." } ,
  432. { 0x10E2, "Aptix", "Aptix Corporation" } ,
  433. { 0x10E3, "Tundra", "Tundra Semiconductor Corp." } ,
  434. { 0x10E4, "Tandem", "Tandem Computers" } ,
  435. { 0x10E5, "MIC", "Micro Industries Corporation" } ,
  436. { 0x10E6, "Gainbery", "Gainbery Computer Products Inc." } ,
  437. { 0x10E7, "Vadem", "Vadem" } ,
  438. { 0x10E8, "AMCC", "Applied Micro Circuits Corp." } ,
  439. { 0x10E9, "Alps", "Alps Electronic Corp. Ltd." } ,
  440. { 0x10EA, "IGS", "InterGraphics Systems" } ,
  441. { 0x10EB, "Artist", "Artist Graphics" } ,
  442. { 0x10EC, "Realtek", "Realtek Semiconductor" } ,
  443. { 0x10ED, "Ascii", "Ascii Corporation" } ,
  444. { 0x10EE, "Xilinx", "Xilinx Corporation" } ,
  445. { 0x10EF, "Racore", "Racore Computer Products" } ,
  446. { 0x10F0, "Peritek", "Peritek Corporation" } ,
  447. { 0x10F1, "Tyan", "Tyan Computer" } ,
  448. { 0x10F2, "Achme", "Achme Computer Inc." } ,
  449. { 0x10F3, "Alaris", "Alaris Inc." } ,
  450. { 0x10F4, "S-Mos", "S-Mos Systems" } ,
  451. { 0x10F5, "NKK", "NKK Corporation" } ,
  452. { 0x10F6, "Creative", "Creative Electronic Systems SA" } ,
  453. { 0x10F7, "Matsushita", "Matsushita Electric Industrial Corp." } ,
  454. { 0x10F8, "Altos", "Altos India Ltd." } ,
  455. { 0x10F9, "PC-Direct", "PC Direct" } ,
  456. { 0x10FA, "Truevision", "Truevision" } ,
  457. { 0x10FB, "Thesys", "Thesys Microelectronic's" } ,
  458. { 0x10FC, "I-O", "I-O Data Device Inc." } ,
  459. { 0x10FD, "Soyo", "Soyo Technology Corp. Ltd." } ,
  460. { 0x10FE, "Fast", "Fast Electronic GmbH" } ,
  461. { 0x10FF, "Ncube", "Ncube" } ,
  462. { 0x1100, "Jazz", "Jazz Multimedia" } ,
  463. { 0x1101, "Initio", "Initio Corporation" } ,
  464. { 0x1102, "Creative Labs", "Creative Labs" } ,
  465. { 0x1103, "HighPoint", "HighPoint Technologies Inc." } ,
  466. { 0x1104, "Rasterops", "Rasterops" } ,
  467. { 0x1105, "Sigma", "Sigma Designs Inc." } ,
  468. { 0x1106, "VIA", "VIA Technologies Inc" } ,
  469. { 0x1107, "Stratus", "Stratus Computer" } ,
  470. { 0x1108, "Proteon", "Proteon Inc." } ,
  471. { 0x1109, "Cogent", "Cogent Data Technologies" } ,
  472. { 0x110A, "Infineon", "Infineon Technologies" } ,
  473. { 0x110B, "Chromatic", "Chromatic Research Inc" } ,
  474. { 0x110C, "Mini-Max", "Mini-Max Technology Inc." } ,
  475. { 0x110D, "ZNYX", "ZNYX Corporation" } ,
  476. { 0x110E, "CPU Tech.", "CPU Technology" } ,
  477. { 0x110F, "Ross", "Ross Technology" } ,
  478. { 0x1110, "Powerhouse", "Powerhouse Systems" } ,
  479. { 0x1111, "SCO", "Santa Cruz Operation" } ,
  480. { 0x1112, "Osicom", "Osicom Technologies Inc." } ,
  481. { 0x1113, "Accton", "Accton Technology Corporation" } ,
  482. { 0x1114, "Atmel", "Atmel Corp." } ,
  483. { 0x1115, "Dupont", "Dupont Pixel Systems Ltd." } ,
  484. { 0x1116, "Data Trans.", "Data Translation" } ,
  485. { 0x1117, "Datacube", "Datacube Inc." } ,
  486. { 0x1118, "Berg", "Berg Electronics" } ,
  487. { 0x1119, "Vortex", "ICP vortex Computersysteme GmbH" } ,
  488. { 0x111A, "Eff. Net.", "Efficent Networks" } ,
  489. { 0x111B, "Teledyne", "Teledyne Electronic Systems" } ,
  490. { 0x111C, "Tricord", "Tricord Systems Inc." } ,
  491. { 0x111D, "IDT", "Integrated Device Technology Inc." } ,
  492. { 0x111E, "Eldec", "Eldec Corp." } ,
  493. { 0x111F, "PDI", "Precision Digital Images" } ,
  494. { 0x1120, "EMC", "EMC Corp." } ,
  495. { 0x1121, "Zilog", "Zilog" } ,
  496. { 0x1122, "Multi-Tech", "Multi-Tech Systems Inc." } ,
  497. { 0x1123, "EDI", "Excellent Design Inc." } ,
  498. { 0x1124, "Leutron", "Leutron Vision AG" } ,
  499. { 0x1125, "Eurocore", "Eurocore/Vigra" } ,
  500. { 0x1126, "Vigra", "Vigra" } ,
  501. { 0x1127, "FORE", "FORE Systems" } ,
  502. { 0x1129, "Firmworks", "Firmworks" } ,
  503. { 0x112A, "Hermes", "Hermes Electronics Co. Ltd." } ,
  504. { 0x112B, "Linotype", "Linotype - Hell AG" } ,
  505. { 0x112C, "Zenith", "Zenith Data Systems" } ,
  506. { 0x112D, "Ravicad", "Ravicad" } ,
  507. { 0x112E, "Infomedia", "Infomedia" } ,
  508. { 0x112F, "ImagTech", "Imaging Technology" } ,
  509. { 0x1130, "Computervision", "Computervision" } ,
  510. { 0x1131, "Philips", "Philips Semiconductors" } ,
  511. { 0x1132, "Mitel", "Mitel Corp." } ,
  512. { 0x1133, "EIC", "Eicon Technology Corporation" } ,
  513. { 0x1134, "MCS", "Mercury Computer Systems Inc." } ,
  514. { 0x1135, "Fuji", "Fuji Xerox Co Ltd" } ,
  515. { 0x1136, "Momentum", "Momentum Data Systems" } ,
  516. { 0x1137, "Cisco", "Cisco Systems Inc" } ,
  517. { 0x1138, "Ziatech", "Ziatech Corporation" } ,
  518. { 0x1139, "Dyn. Pict.", "Dynamic Pictures Inc" } ,
  519. { 0x113A, "FWB", "FWB Inc" } ,
  520. { 0x113B, "NCD", "Network Computing Devices" } ,
  521. { 0x113C, "Cyclone", "Cyclone Microsystems Inc." } ,
  522. { 0x113D, "Leading Edge", "Leading Edge Products Inc" } ,
  523. { 0x113E, "Sanyo", "Sanyo Electric Co" } ,
  524. { 0x113F, "Equinox", "Equinox Systems" } ,
  525. { 0x1140, "Intervoice", "Intervoice Inc" } ,
  526. { 0x1141, "Crest", "Crest Microsystem Inc" } ,
  527. { 0x1142, "Alliance", "Alliance Semiconductor CA - USA" } ,
  528. { 0x1143, "Netpower", "Netpower Inc" } ,
  529. { 0x1144, "Cinn. Mil.", "Cincinnati Milacron" } ,
  530. { 0x1145, "Workbit", "Workbit Corp" } ,
  531. { 0x1146, "Force", "Force Computers" } ,
  532. { 0x1147, "Interface", "Interface Corp" } ,
  533. { 0x1148, "S&K", "Schneider & Koch" } ,
  534. { 0x1149, "Win System", "Win System Corporation" } ,
  535. { 0x114A, "VMIC", "VMIC" } ,
  536. { 0x114B, "Canopus", "Canopus Co. Ltd" } ,
  537. { 0x114C, "Annabooks", "Annabooks" } ,
  538. { 0x114D, "IC Corp.", "IC Corporation" } ,
  539. { 0x114E, "Nikon", "Nikon Systems Inc" } ,
  540. { 0x114F, "Digi", "Digi International" } ,
  541. { 0x1150, "TMC", "Thinking Machines Corporation" } ,
  542. { 0x1151, "JAE", "JAE Electronics Inc." } ,
  543. { 0x1152, "Megatek", "Megatek" } ,
  544. { 0x1153, "Land Win", "Land Win Electronic Corp" } ,
  545. { 0x1154, "Melco", "Melco Inc" } ,
  546. { 0x1155, "Pine", "Pine Technology Ltd" } ,
  547. { 0x1156, "Periscope", "Periscope Engineering" } ,
  548. { 0x1157, "Avsys", "Avsys Corporation" } ,
  549. { 0x1158, "Voarx", "Voarx R&D Inc" } ,
  550. { 0x1159, "Mutech", "Mutech" } ,
  551. { 0x115A, "Harlequin", "Harlequin Ltd" } ,
  552. { 0x115B, "Parallax", "Parallax Graphics" } ,
  553. { 0x115C, "Photron", "Photron Ltd." } ,
  554. { 0x115D, "Xircom", "Xircom" } ,
  555. { 0x115E, "Peer", "Peer Protocols Inc" } ,
  556. { 0x115F, "Maxtor", "Maxtor Corporation" } ,
  557. { 0x1160, "Megasoft", "Megasoft Inc" } ,
  558. { 0x1161, "PFU", "PFU Ltd" } ,
  559. { 0x1162, "OA Lab", "OA Laboratory Co Ltd" } ,
  560. { 0x1163, "Rendition", "Rendition Inc" } ,
  561. { 0x1164, "APT", "Advanced Peripherals Tech" } ,
  562. { 0x1165, "Imagraph", "Imagraph Corporation" } ,
  563. { 0x1166, "RCC/ServerWorks", "Reliance Computer Corp./ServerWorks" } ,
  564. { 0x1167, "Mutoh", "Mutoh Industries Inc" } ,
  565. { 0x1168, "Thine", "Thine Electronics Inc" } ,
  566. { 0x1169, "CDAC", "Centre f/Dev. of Adv. Computing" } ,
  567. { 0x116A, "Polaris", "Polaris Communications" } ,
  568. { 0x116B, "Connectware", "Connectware Inc" } ,
  569. { 0x116C, "Int Res.", "Intelligent Resources" } ,
  570. { 0x116E, "EFI", "Electronics for Imaging" } ,
  571. { 0x116F, "WkSta. Tech.", "Workstation Technology" } ,
  572. { 0x1170, "Inventec", "Inventec Corporation" } ,
  573. { 0x1171, "Lough. Sound", "Loughborough Sound Images" } ,
  574. { 0x1172, "Altera", "Altera Corporation" } ,
  575. { 0x1173, "Adobe", "Adobe Systems" } ,
  576. { 0x1174, "Bridgeport", "Bridgeport Machines" } ,
  577. { 0x1175, "Mitron", "Mitron Computer Inc." } ,
  578. { 0x1176, "SBE", "SBE" } ,
  579. { 0x1177, "Silicon Eng.", "Silicon Engineering" } ,
  580. { 0x1178, "Alfa", "Alfa Inc" } ,
  581. { 0x1179, "Toshiba", "Toshiba America Info Systems" } ,
  582. { 0x117A, "A-Trend", "A-Trend Technology" } ,
  583. { 0x117B, "LG Elec.", "LG Electronics Inc." } ,
  584. { 0x117C, "Atto", "Atto Technology" } ,
  585. { 0x117D, "B&D", "Becton & Dickinson" } ,
  586. { 0x117E, "T/R", "T/R Systems" } ,
  587. { 0x117F, "ICS", "Integrated Circuit Systems" } ,
  588. { 0x1180, "CAC", "Communication Automation Corporation" } ,
  589. { 0x1181, "Telmatics", "Telmatics International" } ,
  590. { 0x1183, "Fujikura", "Fujikura Ltd" } ,
  591. { 0x1184, "Forks", "Forks Inc" } ,
  592. { 0x1185, "Dataworld", "Dataworld" } ,
  593. { 0x1186, "D-Link", "D-Link System Inc" } ,
  594. { 0x1187, "ATL", "Advanced Technology Laboratories" } ,
  595. { 0x1188, "Shima", "Shima Seiki Manufacturing Ltd." } ,
  596. { 0x1189, "Matsushita", "Matsushita Electronics" } ,
  597. { 0x118A, "Hilevel", "Hilevel Technology" } ,
  598. { 0x118B, "Hypertec", "Hypertec Pty Ltd" } ,
  599. { 0x118C, "Corollary", "Corollary Inc" } ,
  600. { 0x118D, "BitFlow", "BitFlow Inc" } ,
  601. { 0x118E, "Hermstedt", "Hermstedt GmbH" } ,
  602. { 0x118F, "Green", "Green Logic" } ,
  603. { 0x1190, "Tripace", "Tripace" } ,
  604. { 0x1191, "ACARD", "ACARD Technology" } ,
  605. { 0x1192, "Densan", "Densan Co. Ltd" } ,
  606. { 0x1193, "Zeitnet", "Zeitnet Inc." } ,
  607. { 0x1194, "Toucan", "Toucan Technology" } ,
  608. { 0x1195, "Ratoc", "Ratoc System Inc" } ,
  609. { 0x1196, "Hytec", "Hytec Electronics Ltd" } ,
  610. { 0x1197, "Gage", "Gage Applied Sciences Inc." } ,
  611. { 0x1198, "Lambda", "Lambda Systems Inc" } ,
  612. { 0x1199, "Attachmate", "Attachmate Corp." } ,
  613. { 0x119A, "Mind Share", "Mind Share Inc." } ,
  614. { 0x119B, "Omega", "Omega Micro Inc." } ,
  615. { 0x119C, "ITI", "Information Technology Inst." } ,
  616. { 0x119D, "Bug", "Bug Sapporo Japan" } ,
  617. { 0x119E, "Fujitsu", "Fujitsu Microelectronics Ltd." } ,
  618. { 0x119F, "Bull", "Bull Hn Information Systems" } ,
  619. { 0x11A0, "Convex", "Convex Computer Corporation" } ,
  620. { 0x11A1, "Hamamatsu", "Hamamatsu Photonics K.K." } ,
  621. { 0x11A2, "Sierra", "Sierra Research and Technology" } ,
  622. { 0x11A3, "Deuretzbacher", "Deuretzbacher GmbH & Co. Eng. KG" } ,
  623. { 0x11A4, "Barco", "Barco" } ,
  624. { 0x11A5, "MicroUnity", "MicroUnity Systems Engineering Inc." } ,
  625. { 0x11A6, "Pure Data", "Pure Data" } ,
  626. { 0x11A7, "Power Comp.", "Power Computing Corp." } ,
  627. { 0x11A8, "Systech", "Systech Corp." } ,
  628. { 0x11A9, "InnoSys", "InnoSys Inc." } ,
  629. { 0x11AA, "Actel", "Actel" } ,
  630. { 0x11AB, "Galileo", "Galileo Technology Ltd." } ,
  631. { 0x11AC, "Canon", "Canon Information Systems" } ,
  632. { 0x11AD, "Lite-On", "Lite-On Communications Inc" } ,
  633. { 0x11AE, "Scitex", "Scitex Corporation Ltd" } ,
  634. { 0x11AF, "Avid", "Avid Technology Inc." } ,
  635. { 0x11B0, "V3", "V3 Semiconductor Inc." } ,
  636. { 0x11B1, "Apricot", "Apricot Computers" } ,
  637. { 0x11B2, "Kodak", "Eastman Kodak" } ,
  638. { 0x11B3, "Barr", "Barr Systems Inc." } ,
  639. { 0x11B4, "Leitch", "Leitch Technology International" } ,
  640. { 0x11B5, "Radstone", "Radstone Technology Plc" } ,
  641. { 0x11B6, "United Video", "United Video Corp" } ,
  642. { 0x11B7, "Motorola", "Motorola" } ,
  643. { 0x11B8, "Xpoint", "Xpoint Technologies Inc" } ,
  644. { 0x11B9, "Pathlight", "Pathlight Technology Inc." } ,
  645. { 0x11BA, "Videotron", "Videotron Corp" } ,
  646. { 0x11BB, "Pyramid", "Pyramid Technology" } ,
  647. { 0x11BC, "Net. Periph.", "Network Peripherals Inc" } ,
  648. { 0x11BD, "Pinnacle", "Pinnacle Systems Inc." } ,
  649. { 0x11BE, "IMI", "International Microcircuits Inc" } ,
  650. { 0x11BF, "Astrodesign", "Astrodesign Inc." } ,
  651. { 0x11C0, "HP", "Hewlett-Packard" } ,
  652. { 0x11C1, "Agere", "Agere Systems" } ,
  653. { 0x11C2, "Sand", "Sand Microelectronics" } ,
  654. { 0x11C3, "NEC", "NEC Corporation" } ,
  655. { 0x11C4, "Doc. Tech.", "Document Technologies Ind." } ,
  656. { 0x11C5, "Shiva", "Shiva Corporatin" } ,
  657. { 0x11C6, "Dainippon", "Dainippon Screen Mfg. Co" } ,
  658. { 0x11C7, "D.C.M.", "D.C.M. Data Systems" } ,
  659. { 0x11C8, "Dolphin", "Dolphin Interconnect Solutions" } ,
  660. { 0x11C9, "MAGMA", "MAGMA" } ,
  661. { 0x11CA, "LSI Sys.", "LSI Systems Inc" } ,
  662. { 0x11CB, "Specialix", "Specialix International Ltd." } ,
  663. { 0x11CC, "M&K", "Michels & Kleberhoff Computer GmbH" } ,
  664. { 0x11CD, "HAL", "HAL Computer Systems Inc." } ,
  665. { 0x11CE, "PRI", "Primary Rate Inc" } ,
  666. { 0x11CF, "PEC", "Pioneer Electronic Corporation" } ,
  667. { 0x11D0, "Loral", "Loral Frederal Systems - Manassas" } ,
  668. { 0x11D1, "AuraVision", "AuraVision Corporation" } ,
  669. { 0x11D2, "Intercom", "Intercom Inc." } ,
  670. { 0x11D3, "Trancell", "Trancell Systems Inc" } ,
  671. { 0x11D4, "AD", "Analog Devices" } ,
  672. { 0x11D5, "Ikon", "Ikon Corp" } ,
  673. { 0x11D6, "Tekelec", "Tekelec Technologies" } ,
  674. { 0x11D7, "Trenton", "Trenton Terminals Inc" } ,
  675. { 0x11D8, "ITD", "Image Technologies Development" } ,
  676. { 0x11D9, "Tec", "Tec Corporation" } ,
  677. { 0x11DA, "Novell", "Novell" } ,
  678. { 0x11DB, "Sega", "Sega Enterprises Ltd" } ,
  679. { 0x11DC, "Questra", "Questra Corp" } ,
  680. { 0x11DD, "Crosfield", "Crosfield Electronics Ltd" } ,
  681. { 0x11DE, "Zoran", "Zoran Corporation" } ,
  682. { 0x11DF, "New Wave", "New Wave Pdg" } ,
  683. { 0x11E0, "Cray", "Cray Communications A/S" } ,
  684. { 0x11E1, "Gec Plessey", "Gec Plessey Semi Inc" } ,
  685. { 0x11E2, "Samsung", "Samsung Information Systems America" } ,
  686. { 0x11E3, "Quicklogic", "Quicklogic Corp" } ,
  687. { 0x11E4, "Second Wave", "Second Wave Inc" } ,
  688. { 0x11E5, "IIX", "IIX Consulting" } ,
  689. { 0x11E6, "Mitsui", "Mitsui-Zosen System Research" } ,
  690. { 0x11E7, "Toshiba", "Toshiba America Elec. Co" } ,
  691. { 0x11E8, "DPSI", "Digital Processing Systems Inc" } ,
  692. { 0x11E9, "Highwater", "Highwater Designs Ltd" } ,
  693. { 0x11EA, "Elsag", "Elsag Bailey" } ,
  694. { 0x11EB, "Formation", "Formation Inc" } ,
  695. { 0x11EC, "Coreco", "Coreco Inc" } ,
  696. { 0x11ED, "Mediamatics", "Mediamatics" } ,
  697. { 0x11EE, "Dome", "Dome Imaging Systems Inc" } ,
  698. { 0x11EF, "Nicolet", "Nicolet Technologies BV" } ,
  699. { 0x11F0, "Compu-Shack", "Compu-Shack GmbH" } ,
  700. { 0x11F1, "Symbios", "Symbios Logic Inc" } ,
  701. { 0x11F2, "Pic-Tel", "Picture Tel Japan KK" } ,
  702. { 0x11F3, "Keithley", "Keithley Metrabyte" } ,
  703. { 0x11F4, "Kinetic", "Kinetic Systems Corporation" } ,
  704. { 0x11F5, "Comp Dev", "Computing Devices Intl" } ,
  705. { 0x11F6, "Powermatic", "Powermatic Data Systems Ltd" } ,
  706. { 0x11F7, "S-A", "Scientific Atlanta" } ,
  707. { 0x11F8, "PMC-Sierra", "PMC-Sierra Inc." } ,
  708. { 0x11F9, "I-Cube", "I-Cube Inc" } ,
  709. { 0x11FA, "Kasan", "Kasan Electronics Co Ltd" } ,
  710. { 0x11FB, "Datel", "Datel Inc" } ,
  711. { 0x11FC, "Silicon Magic", "Silicon Magic" } ,
  712. { 0x11FD, "High Street", "High Street Consultants" } ,
  713. { 0x11FE, "Comtrol", "Comtrol Corp" } ,
  714. { 0x11FF, "Scion", "Scion Corp" } ,
  715. { 0x1200, "CSS", "CSS Corp" } ,
  716. { 0x1201, "Vista", "Vista Controls Corp" } ,
  717. { 0x1202, "Network Gen", "Network General Corp" } ,
  718. { 0x1203, "Agfa", "Bayer Corporation Agfa Div" } ,
  719. { 0x1204, "Lattice", "Lattice Semiconductor Corp" } ,
  720. { 0x1205, "Array", "Array Corp" } ,
  721. { 0x1206, "Amdahl", "Amdahl Corp" } ,
  722. { 0x1208, "Parsytec", "Parsytec GmbH" } ,
  723. { 0x1209, "Sci Sys", "Sci Systems Inc" } ,
  724. { 0x120A, "Synaptel", "Synaptel" } ,
  725. { 0x120B, "Adaptive", "Adaptive Solutions" } ,
  726. { 0x120D, "Comp Labs", "Compression Labs Inc." } ,
  727. { 0x120E, "Cyclades", "Cyclades Corporation" } ,
  728. { 0x120F, "Essential", "Essential Communications" } ,
  729. { 0x1210, "Hyperparallel", "Hyperparallel Technologies" } ,
  730. { 0x1211, "Braintech", "Braintech Inc" } ,
  731. { 0x1212, "Kingston", "Kingston Technology Corp" } ,
  732. { 0x1213, "AISI", "Applied Intelligent Systems Inc" } ,
  733. { 0x1214, "Perf Tech", "Performance Technologies Inc" } ,
  734. { 0x1215, "Interware", "Interware Co Ltd" } ,
  735. { 0x1216, "Purup Eskofot", "Purup-Eskofot A/S" } ,
  736. { 0x1217, "O2Micro", "O2Micro Inc" } ,
  737. { 0x1218, "Hybricon", "Hybricon Corp" } ,
  738. { 0x1219, "First Virtual", "First Virtual Corp" } ,
  739. { 0x121A, "3dfx", "3dfx Interactive Inc" } ,
  740. { 0x121B, "ATM", "Advanced Telecommunications Modules" } ,
  741. { 0x121C, "Nippon Texa", "Nippon Texa Co Ltd" } ,
  742. { 0x121D, "Lippert", "Lippert Automationstechnik GmbH" } ,
  743. { 0x121E, "CSPI", "CSPI" } ,
  744. { 0x121F, "Arcus", "Arcus Technology Inc" } ,
  745. { 0x1220, "Ariel", "Ariel Corporation" } ,
  746. { 0x1221, "Contec", "Contec Co Ltd" } ,
  747. { 0x1222, "Ancor", "Ancor Communications Inc" } ,
  748. { 0x1223, "Heurikon", "Heurikon/Computer Products" } ,
  749. { 0x1224, "Int. Img.", "Interactive Images" } ,
  750. { 0x1225, "Power IO", "Power I/O Inc." } ,
  751. { 0x1227, "Tech-Source", "Tech-Source" } ,
  752. { 0x1228, "Norsk", "Norsk Elektro Optikk A/S" } ,
  753. { 0x1229, "Data Kin", "Data Kinesis Inc." } ,
  754. { 0x122A, "Int. Telecom", "Integrated Telecom" } ,
  755. { 0x122B, "LG Ind.", "LG Industrial Systems Co. Ltd." } ,
  756. { 0x122C, "sci-worx", "sci-worx GmbH" } ,
  757. { 0x122D, "Aztech", "Aztech System Ltd" } ,
  758. { 0x122E, "Xyratex", "Xyratex" } ,
  759. { 0x122F, "Andrew", "Andrew Corp." } ,
  760. { 0x1230, "Fishcamp", "Fishcamp Engineering" } ,
  761. { 0x1231, "WMI", "Woodward McCoach Inc." } ,
  762. { 0x1232, "GPT", "GPT Ltd." } ,
  763. { 0x1233, "Bus-Tech", "Bus-Tech Inc." } ,
  764. { 0x1234, "Technical", "Technical Corp" } ,
  765. { 0x1235, "Risq Mod", "Risq Modular Systems Inc." } ,
  766. { 0x1236, "Sigma", "Sigma Designs Corp." } ,
  767. { 0x1237, "Alta Tech", "Alta Technology Corp." } ,
  768. { 0x1238, "Adtran", "Adtran" } ,
  769. { 0x1239, "3DO", "The 3DO Company" } ,
  770. { 0x123A, "Visicom", "Visicom Laboratories Inc." } ,
  771. { 0x123B, "Seeq", "Seeq Technology Inc." } ,
  772. { 0x123C, "Century Sys", "Century Systems Inc." } ,
  773. { 0x123D, "EDT", "Engineering Design Team Inc." } ,
  774. { 0x123F, "C-Cube", "C-Cube Microsystems" } ,
  775. { 0x1240, "Marathon", "Marathon Technologies Corp." } ,
  776. { 0x1241, "DSC", "DSC Communications" } ,
  777. { 0x1242, "JNI", "JNI Corporation" } ,
  778. { 0x1243, "Delphax", "Delphax" } ,
  779. { 0x1244, "AVM", "AVM AUDIOVISUELLES MKTG & Computer GmbH" } ,
  780. { 0x1245, "APD", "APD S.A." } ,
  781. { 0x1246, "Dipix", "Dipix Technologies Inc" } ,
  782. { 0x1247, "Xylon", "Xylon Research Inc." } ,
  783. { 0x1248, "Central Data", "Central Data Corp." } ,
  784. { 0x1249, "Samsung", "Samsung Electronics Co. Ltd." } ,
  785. { 0x124A, "AEG", "AEG Electrocom GmbH" } ,
  786. { 0x124B, "GreenSpring", "GreenSpring Computers" } ,
  787. { 0x124C, "Solitron", "Solitron Technologies Inc." } ,
  788. { 0x124D, "Stallion", "Stallion Technologies" } ,
  789. { 0x124E, "Cylink", "Cylink" } ,
  790. { 0x124F, "Infortrend", "Infortrend Technology Inc" } ,
  791. { 0x1250, "Hitachi", "Hitachi Microcomputer System Ltd." } ,
  792. { 0x1251, "VLSI Sol.", "VLSI Solution OY" } ,
  793. { 0x1253, "Guzik", "Guzik Technical Enterprises" } ,
  794. { 0x1254, "Linear Systems", "Linear Systems Ltd." } ,
  795. { 0x1255, "Optibase", "Optibase Ltd." } ,
  796. { 0x1256, "Perceptive", "Perceptive Solutions Inc." } ,
  797. { 0x1257, "Vertex", "Vertex Networks Inc." } ,
  798. { 0x1258, "Gilbarco", "Gilbarco Inc." } ,
  799. { 0x1259, "Allied Tsyn", "Allied Telesyn International" } ,
  800. { 0x125A, "ABB Pwr", "ABB Power Systems" } ,
  801. { 0x125B, "Asix", "Asix Electronics Corp." } ,
  802. { 0x125C, "Aurora", "Aurora Technologies Inc." } ,
  803. { 0x125D, "ESS", "ESS Technology" } ,
  804. { 0x125E, "Specvideo", "Specialvideo Engineering SRL" } ,
  805. { 0x125F, "Concurrent", "Concurrent Technologies Inc." } ,
  806. { 0x1260, "Intersil", "Intersil Corporation" } ,
  807. { 0x1261, "Matsushita", "Matsushita-Kotobuki Electronics Indu" } ,
  808. { 0x1262, "ES Comp.", "ES Computer Co. Ltd." } ,
  809. { 0x1263, "Sonic Sol.", "Sonic Solutions" } ,
  810. { 0x1264, "Aval Nag.", "Aval Nagasaki Corp." } ,
  811. { 0x1265, "Casio", "Casio Computer Co. Ltd." } ,
  812. { 0x1266, "Microdyne", "Microdyne Corp." } ,
  813. { 0x1267, "SA Telecom", "S.A. Telecommunications" } ,
  814. { 0x1268, "Tektronix", "Tektronix" } ,
  815. { 0x1269, "Thomson-CSF", "Thomson-CSF/TTM" } ,
  816. { 0x126A, "Lexmark", "Lexmark International Inc." } ,
  817. { 0x126B, "Adax", "Adax Inc." } ,
  818. { 0x126C, "NorTel", "Northern Telecom" } ,
  819. { 0x126D, "Splash", "Splash Technology Inc." } ,
  820. { 0x126E, "Sumitomo", "Sumitomo Metal Industries Ltd." } ,
  821. { 0x126F, "Sil Motion", "Silicon Motion" } ,
  822. { 0x1270, "Olympus", "Olympus Optical Co. Ltd." } ,
  823. { 0x1271, "GW Instr.", "GW Instruments" } ,
  824. { 0x1272, "Telematics", "Telematics International" } ,
  825. { 0x1273, "Hughes", "Hughes Network Systems" } ,
  826. { 0x1274, "Ensoniq", "Ensoniq" } ,
  827. { 0x1275, "NetApp", "Network Appliance" } ,
  828. { 0x1276, "Sw Net Tech", "Switched Network Technologies Inc." } ,
  829. { 0x1277, "Comstream", "Comstream" } ,
  830. { 0x1278, "Transtech", "Transtech Parallel Systems" } ,
  831. { 0x1279, "Transmeta", "Transmeta Corp." } ,
  832. { 0x127A, "Conexant", "Conexant Systems" } ,
  833. { 0x127B, "Pixera", "Pixera Corp" } ,
  834. { 0x127C, "Crosspoint", "Crosspoint Solutions Inc." } ,
  835. { 0x127D, "Vela Res", "Vela Research" } ,
  836. { 0x127E, "Winnow", "Winnov L.P." } ,
  837. { 0x127F, "Fujifilm", "Fujifilm" } ,
  838. { 0x1280, "Photoscript", "Photoscript Group Ltd." } ,
  839. { 0x1281, "Yokogawa", "Yokogawa Electronic Corp." } ,
  840. { 0x1282, "Davicom", "Davicom Semiconductor Inc." } ,
  841. { 0x1283, "ITExpress", "Integrated Technology Express Inc." } ,
  842. { 0x1284, "Sahara", "Sahara Networks Inc." } ,
  843. { 0x1285, "Plat Tech", "Platform Technologies Inc." } ,
  844. { 0x1286, "Mazet", "Mazet GmbH" } ,
  845. { 0x1287, "LuxSonor", "LuxSonor Inc." } ,
  846. { 0x1288, "Timestep", "Timestep Corp." } ,
  847. { 0x1289, "AVC Tech", "AVC Technology Inc." } ,
  848. { 0x128A, "Asante", "Asante Technologies Inc." } ,
  849. { 0x128B, "Transwitch", "Transwitch Corp." } ,
  850. { 0x128C, "Retix", "Retix Corp." } ,
  851. { 0x128D, "G2 Net", "G2 Networks Inc." } ,
  852. { 0x128E, "Samho", "Samho Multi Tech Ltd." } ,
  853. { 0x128F, "Tateno", "Tateno Dennou Inc." } ,
  854. { 0x1290, "Sord", "Sord Computer Corp." } ,
  855. { 0x1291, "NCS Comp", "NCS Computer Italia" } ,
  856. { 0x1292, "Tritech", "Tritech Microelectronics Intl PTE" } ,
  857. { 0x1293, "M Reality", "Media Reality Technology" } ,
  858. { 0x1294, "Rhetorex", "Rhetorex Inc." } ,
  859. { 0x1295, "Imagenation", "Imagenation Corp." } ,
  860. { 0x1296, "Kofax", "Kofax Image Products" } ,
  861. { 0x1297, "Holco", "Holco Enterprise" } ,
  862. { 0x1298, "Spellcaster", "Spellcaster Telecommunications Inc." } ,
  863. { 0x1299, "Know Tech", "Knowledge Technology Laboratories" } ,
  864. { 0x129A, "VMETRO", "VMETRO Inc." } ,
  865. { 0x129B, "Img Access", "Image Access" } ,
  866. { 0x129D, "CompCore", "CompCore Multimedia Inc." } ,
  867. { 0x129E, "Victor Jpn", "Victor Co. of Japan Ltd." } ,
  868. { 0x129F, "OEC Med", "OEC Medical Systems Inc." } ,
  869. { 0x12A0, "A-B", "Allen Bradley Co." } ,
  870. { 0x12A1, "Simpact", "Simpact Inc" } ,
  871. { 0x12A2, "NewGen", "NewGen Systems Corp." } ,
  872. { 0x12A3, "Lucent", "Lucent Technologies AMR" } ,
  873. { 0x12A4, "NTT Elect", "NTT Electronics Technology Co." } ,
  874. { 0x12A5, "Vision Dyn", "Vision Dynamics Ltd." } ,
  875. { 0x12A6, "Scalable", "Scalable Networks Inc." } ,
  876. { 0x12A7, "AMO", "AMO GmbH" } ,
  877. { 0x12A8, "News Datacom", "News Datacom" } ,
  878. { 0x12A9, "Xiotech", "Xiotech Corp." } ,
  879. { 0x12AA, "SDL", "SDL Communications Inc." } ,
  880. { 0x12AB, "Yuan Yuan", "Yuan Yuan Enterprise Co. Ltd." } ,
  881. { 0x12AC, "MeasureX", "MeasureX Corp." } ,
  882. { 0x12AD, "Multidata", "Multidata GmbH" } ,
  883. { 0x12AE, "Alteon", "Alteon Networks Inc." } ,
  884. { 0x12AF, "TDK USA", "TDK USA Corp." } ,
  885. { 0x12B0, "Jorge Sci", "Jorge Scientific Corp." } ,
  886. { 0x12B1, "GammaLink", "GammaLink" } ,
  887. { 0x12B2, "Gen Signal", "General Signal Networks" } ,
  888. { 0x12B3, "Inter-Face", "Inter-Face Co. Ltd." } ,
  889. { 0x12B4, "Future Tel", "Future Tel Inc." } ,
  890. { 0x12B5, "Granite", "Granite Systems Inc." } ,
  891. { 0x12B6, "Nat Micro", "Natural Microsystems" } ,
  892. { 0x12B7, "Acumen", "Acumen" } ,
  893. { 0x12B8, "Korg", "Korg" } ,
  894. { 0x12B9, "US Robotics", "US Robotics" } ,
  895. { 0x12BA, "Bittware", "Bittware Research Systems Inc" } ,
  896. { 0x12BB, "Nippon Uni", "Nippon Unisoft Corp." } ,
  897. { 0x12BC, "Array Micro", "Array Microsystems" } ,
  898. { 0x12BD, "Computerm", "Computerm Corp." } ,
  899. { 0x12BE, "Anchor Chips", "Anchor Chips Inc." } ,
  900. { 0x12BF, "Fujifilm", "Fujifilm Microdevices" } ,
  901. { 0x12C0, "Infimed", "Infimed" } ,
  902. { 0x12C1, "GMM Res", "GMM Research Corp." } ,
  903. { 0x12C2, "Mentec", "Mentec Ltd." } ,
  904. { 0x12C3, "Holtek", "Holtek Microelectronics Inc." } ,
  905. { 0x12C4, "Conn Tech", "Connect Tech Inc." } ,
  906. { 0x12C5, "PicturEl", "Picture Elements Inc." } ,
  907. { 0x12C6, "Mitani", "Mitani Corp." } ,
  908. { 0x12C7, "Dialogic", "Dialogic Corp." } ,
  909. { 0x12C8, "G Force", "G Force Co. Ltd." } ,
  910. { 0x12C9, "Gigi Ops", "Gigi Operations" } ,
  911. { 0x12CA, "ICE", "Integrated Computing Engines, Inc." } ,
  912. { 0x12CB, "Antex", "Antex Electronics Corp." } ,
  913. { 0x12CC, "Pluto", "Pluto Technologies International" } ,
  914. { 0x12CD, "Aims Lab", "Aims Lab" } ,
  915. { 0x12CE, "Netspeed", "Netspeed Inc." } ,
  916. { 0x12CF, "Prophet", "Prophet Systems Inc." } ,
  917. { 0x12D0, "GDE Sys", "GDE Systems Inc." } ,
  918. { 0x12D1, "PsiTech", "PsiTech" } ,
  919. { 0x12D2, "NVidia", "NVidia / SGS Thomson" } ,
  920. { 0x12D3, "Vingmed", "Vingmed Sound A/S" } ,
  921. { 0x12D4, "DGM&S", "DGM & S" } ,
  922. { 0x12D5, "Equator", "Equator Technologies" } ,
  923. { 0x12D6, "Analogic", "Analogic Corp." } ,
  924. { 0x12D7, "Biotronic", "Biotronic SRL" } ,
  925. { 0x12D8, "Pericom", "Pericom Semiconductor" } ,
  926. { 0x12D9, "Aculab", "Aculab Plc." } ,
  927. { 0x12DA, "TrueTime", "TrueTime" } ,
  928. { 0x12DB, "Annapolis", "Annapolis Micro Systems Inc." } ,
  929. { 0x12DC, "Symicron", "Symicron Computer Communication Ltd." } ,
  930. { 0x12DD, "MGI", "Management Graphics Inc." } ,
  931. { 0x12DE, "Rainbow", "Rainbow Technologies" } ,
  932. { 0x12DF, "SBS Tech", "SBS Technologies Inc." } ,
  933. { 0x12E0, "Chase", "Chase Research PLC" } ,
  934. { 0x12E1, "Nintendo", "Nintendo Co. Ltd." } ,
  935. { 0x12E2, "Datum", "Datum Inc. Bancomm-Timing Division" } ,
  936. { 0x12E3, "Imation", "Imation Corp. - Medical Imaging Syst" } ,
  937. { 0x12E4, "Brooktrout", "Brooktrout Technology Inc." } ,
  938. { 0x12E6, "Cirel", "Cirel Systems" } ,
  939. { 0x12E7, "Sebring", "Sebring Systems Inc" } ,
  940. { 0x12E8, "CRISC", "CRISC Corp." } ,
  941. { 0x12E9, "GE Spacenet", "GE Spacenet" } ,
  942. { 0x12EA, "Zuken", "Zuken" } ,
  943. { 0x12EB, "Aureal", "Aureal Semiconductor" } ,
  944. { 0x12EC, "3A Intl", "3A International Inc." } ,
  945. { 0x12ED, "Optivision", "Optivision Inc." } ,
  946. { 0x12EE, "Orange Micro", "Orange Micro, Inc." } ,
  947. { 0x12EF, "Vienna", "Vienna Systems" } ,
  948. { 0x12F0, "Pentek", "Pentek" } ,
  949. { 0x12F1, "Sorenson", "Sorenson Vision Inc." } ,
  950. { 0x12F2, "Gammagraphx", "Gammagraphx Inc." } ,
  951. { 0x12F4, "Megatel", "Megatel" } ,
  952. { 0x12F5, "Forks", "Forks" } ,
  953. { 0x12F6, "Dawson Fr", "Dawson France" } ,
  954. { 0x12F7, "Cognex", "Cognex" } ,
  955. { 0x12F8, "Electronic-Design", "Electronic-Design GmbH" } ,
  956. { 0x12F9, "FFT", "FourFold Technologies" } ,
  957. { 0x12FB, "SSP", "Spectrum Signal Processing" } ,
  958. { 0x12FC, NULL, "Capital Equipment Corp" } ,
  959. { 0x12FE, "ESD", "ESD Electronic System Design GmbH" } ,
  960. { 0x1304, NULL, "Juniper Networks Inc." } ,
  961. { 0x1307, "ComputerBoards", "ComputerBoards" } ,
  962. { 0x1308, "Jato", "Jato Technologies Inc." } ,
  963. { 0x130A, NULL, "Mitsubishi Electric Microcomputer" } ,
  964. { 0x130B, NULL, "Colorgraphic Communications Corp" } ,
  965. { 0x130F, NULL, "Advanet Inc." } ,
  966. { 0x1310, NULL, "Gespac" } ,
  967. { 0x1312, "RVSI", "Robotic Vision Systems Incorporated" } ,
  968. { 0x1313, NULL, "Yaskawa Electric Co." } ,
  969. { 0x1316, NULL, "Teradyne Inc." } ,
  970. { 0x1317, NULL, "Admtek Inc" } ,
  971. { 0x1318, "Packet Engines", "Packet Engines, Inc." } ,
  972. { 0x1319, "Forte Media", "Forte Media, Inc." } ,
  973. { 0x131f, NULL, "SIIG" } ,
  974. { 0x1325, NULL, "Salix Technologies Inc" } ,
  975. { 0x1326, NULL, "Seachange International" } ,
  976. { 0x1331, "RadiSys", "RadiSys Corporation" } ,
  977. { 0x1335, "Videomail", "Videomail Inc." } ,
  978. { 0x133D, NULL, "Prisa Networks" } ,
  979. { 0x133F, NULL, "SCM Microsystems" } ,
  980. { 0x1342, NULL, "Promax Systems Inc" } ,
  981. { 0x1344, "Micron", "Micron Technology, Inc." } ,
  982. { 0x1347, "Odetics", "Odetics" } ,
  983. { 0x134A, "DTC", "DTC Technology Corp." } ,
  984. { 0x134B, NULL, "ARK Research Corp." } ,
  985. { 0x134C, NULL, "Chori Joho System Co. Ltd" } ,
  986. { 0x134D, "PCTEL", "PCTEL Inc." } ,
  987. { 0x135A, NULL, "Brain Boxes Limited" } ,
  988. { 0x135B, NULL, "Giganet Inc." } ,
  989. { 0x135C, NULL, "Quatech Inc" } ,
  990. { 0x135D, "ABB Network Partn", "ABB Network Partner AB" } ,
  991. { 0x135E, "Sealevel", "Sealevel Systems Inc." } ,
  992. { 0x135F, NULL, "I-Data International A-S" } ,
  993. { 0x1360, NULL, "Meinberg Funkuhren" } ,
  994. { 0x1361, NULL, "Soliton Systems K.K." } ,
  995. { 0x1363, NULL, "Phoenix Technologies Ltd" } ,
  996. { 0x1365, "Hypercope", "Hypercope Corp." } ,
  997. { 0x1366, "Teijin", "Teijin Seiki Co. Ltd." } ,
  998. { 0x1367, NULL, "Hitachi Zosen Corporation" } ,
  999. { 0x1368, NULL, "Skyware Corporation" } ,
  1000. { 0x1369, NULL, "Digigram" } ,
  1001. { 0x136B, NULL, "Kawasaki Steel Corporation" } ,
  1002. { 0x136C, NULL, "Adtek System Science Co Ltd" } ,
  1003. { 0x1375, NULL, "Boeing - Sunnyvale" } ,
  1004. { 0x1377, NULL, "GMBH" } ,
  1005. { 0x137A, NULL, "Mark Of The Unicorn Inc" } ,
  1006. { 0x137B, NULL, "PPT Vision" } ,
  1007. { 0x137C, NULL, "Iwatsu Electric Co Ltd" } ,
  1008. { 0x137D, NULL, "Dynachip Corporation" } ,
  1009. { 0x137E, "PTSC", "Patriot Scientific Corp." } ,
  1010. { 0x1380, NULL, "Sanritz Automation Co LTC" } ,
  1011. { 0x1381, NULL, "Brains Co. Ltd" } ,
  1012. { 0x1382, "Marian", "Marian - Electronic & Software" } ,
  1013. { 0x1384, NULL, "Stellar Semiconductor Inc" } ,
  1014. { 0x1385, "Netgear", "Netgear" } ,
  1015. { 0x1387, NULL, "Systran Corp" } ,
  1016. { 0x1388, NULL, "Hitachi Information Technology Co Ltd" } ,
  1017. { 0x1389, "Applicom", "Applicom International" } ,
  1018. { 0x138B, NULL, "Tokimec Inc" } ,
  1019. { 0x138E, NULL, "Basler GMBH" } ,
  1020. { 0x138F, NULL, "Patapsco Designs Inc" } ,
  1021. { 0x1390, "CDI", "Concept Development Inc." } ,
  1022. { 0x1393, NULL, "Moxa Technologies Co Ltd" } ,
  1023. { 0x1395, NULL, "Ambicom Inc" } ,
  1024. { 0x1396, NULL, "Cipher Systems Inc" } ,
  1025. { 0x1397, "Cologne", "Cologne Chip Designs GmbH" } ,
  1026. { 0x1398, NULL, "Clarion Co. Ltd" } ,
  1027. { 0x139A, NULL, "Alacritech Inc" } ,
  1028. { 0x139D, NULL, "Xstreams PLC/ EPL Limited" } ,
  1029. { 0x139E, NULL, "Echostar Data Networks" } ,
  1030. { 0x13A0, NULL, "Crystal Group Inc" } ,
  1031. { 0x13A1, NULL, "Kawasaki Heavy Industries Ltd" } ,
  1032. { 0x13A3, "HI-FN", "HI-FN Inc." } ,
  1033. { 0x13A4, NULL, "Rascom Inc" } ,
  1034. { 0x13A7, NULL, "Teles AG" } ,
  1035. { 0x13A8, "XR", "Exar Corp." } ,
  1036. { 0x13A9, NULL, "Siemens Medical Systems Ultrasound Group" } ,
  1037. { 0x13AA, NULL, "Nortel Networks - BWA Division" } ,
  1038. { 0x13AF, NULL, "T.Sqware" } ,
  1039. { 0x13B1, NULL, "Tamura Corporation" } ,
  1040. { 0x13B4, NULL, "Wellbean Co Inc" } ,
  1041. { 0x13B5, NULL, "ARM Ltd" } ,
  1042. { 0x13B6, NULL, "DLoG GMBH" } ,
  1043. { 0x13B8, NULL, "Nokia Telecommunications OY" } ,
  1044. { 0x13BD, "SHARP", "Sharp Corporation" } ,
  1045. { 0x13BF, NULL, "Sharewave Inc" } ,
  1046. { 0x13C0, "Microgate", "Microgate Corp." } ,
  1047. { 0x13C1, "3ware", "3ware Inc." } ,
  1048. { 0x13C2, NULL, "Technotrend Systemtechnik GMBH" } ,
  1049. { 0x13C3, NULL, "Janz Computer AG" } ,
  1050. { 0x13C7, NULL, "Blue Chip Technology Ltd" } ,
  1051. { 0x13CC, NULL, "Metheus Corporation" } ,
  1052. { 0x13CF, NULL, "Studio Audio & Video Ltd" } ,
  1053. { 0x13D0, NULL, "B2C2 Inc" } ,
  1054. { 0x13D1, NULL, "Abocom Systems Inc" } ,
  1055. { 0x13D4, NULL, "Graphics Microsystems Inc" } ,
  1056. { 0x13D6, NULL, "K.I. Technology Co Ltd" } ,
  1057. { 0x13D7, NULL, "Toshiba Engineering Corporation" } ,
  1058. { 0x13D8, NULL, "Phobos Corporation" } ,
  1059. { 0x13D9, NULL, "Apex Inc" } ,
  1060. { 0x13DC, NULL, "Netboost Corporation" } ,
  1061. { 0x13DE, NULL, "ABB Robotics Products AB" } ,
  1062. { 0x13DF, "E-Tech", "E-Tech Inc." } ,
  1063. { 0x13E0, NULL, "GVC Corporation" } ,
  1064. { 0x13E3, NULL, "Nest Inc" } ,
  1065. { 0x13E4, NULL, "Calculex Inc" } ,
  1066. { 0x13E5, NULL, "Telesoft Design Ltd" } ,
  1067. { 0x13E9, NULL, "Intraserver Technology Inc" } ,
  1068. { 0x13EA, NULL, "Dallas Semiconductor" } ,
  1069. { 0x13F0, NULL, "Sundance Technology Inc" } ,
  1070. { 0x13F1, NULL, "OCE - Industries S.A." } ,
  1071. { 0x13F4, NULL, "Troika Networks Inc" } ,
  1072. { 0x13F6, "C-Media", "C-Media Electronics Inc." } ,
  1073. { 0x13F9, NULL, "NTT Advanced Technology Corp." } ,
  1074. { 0x13FA, "Pentland", "Pentland Systems Ltd." } ,
  1075. { 0x13FB, NULL, "Aydin Corp" } ,
  1076. { 0x13FD, NULL, "Micro Science Inc" } ,
  1077. { 0x13FE, "Advantech", "Advantech Co., Ltd." } ,
  1078. { 0x1400, NULL, "ARTX Inc" } ,
  1079. { 0x1402, "Meilhaus Electronic", "Meilhaus Electronic GmbH Germany" } ,
  1080. { 0x1404, NULL, "Fundamental Software Inc" } ,
  1081. { 0x1406, "Oc�", "Oc� Printing Systems" } ,
  1082. { 0x1407, "LAVA", "Lava Computer MFG Inc." } ,
  1083. { 0x1408, NULL, "Aloka Co. Ltd" } ,
  1084. { 0x1409, NULL, "eTIMedia Technology Co Ltd" } ,
  1085. { 0x140A, NULL, "DSP Research Inc" } ,
  1086. { 0x140B, NULL, "Ramix Inc" } ,
  1087. { 0x140D, NULL, "Matsushita Electric Works Ltd" } ,
  1088. { 0x140F, NULL, "Salient Systems Corp" } ,
  1089. { 0x1412, "IC Ensemble", "IC Ensemble, Inc." } ,
  1090. { 0x1413, NULL, "Addonics" } ,
  1091. { 0x1415, NULL, "Oxford Semiconductor Ltd" } ,
  1092. { 0x1418, NULL, "Kyushu Electronics Systems Inc" } ,
  1093. { 0x1419, NULL, "Excel Switching Corp" } ,
  1094. { 0x141B, NULL, "Zoom Telephonics Inc" } ,
  1095. { 0x141c, "Zoom", "Zoom Telephonics, Inc" } ,
  1096. { 0x141E, NULL, "Fanuc Co. Ltd" } ,
  1097. { 0x141F, NULL, "Visiontech Ltd" } ,
  1098. { 0x1420, NULL, "Psion Dacom PLC" } ,
  1099. { 0x1425, NULL, "ASIC Designers Inc" } ,
  1100. { 0x1428, NULL, "Edec Co Ltd" } ,
  1101. { 0x1429, NULL, "Unex Technology Corp." } ,
  1102. { 0x142A, NULL, "Kingmax Technology Inc" } ,
  1103. { 0x142B, NULL, "Radiolan" } ,
  1104. { 0x142C, NULL, "Minton Optic Industry Co Ltd" } ,
  1105. { 0x142D, NULL, "Pixstream Inc" } ,
  1106. { 0x1430, NULL, "ITT Aerospace/Communications Division" } ,
  1107. { 0x1433, NULL, "Eltec Elektronik AG" } ,
  1108. { 0x1435, "RTD-USA", "Real Time Devices USA, Inc." } ,
  1109. { 0x1436, NULL, "CIS Technology Inc" } ,
  1110. { 0x1437, NULL, "Nissin Inc Co" } ,
  1111. { 0x1438, NULL, "Atmel-Dream" } ,
  1112. { 0x143F, NULL, "Lightwell Co Ltd - Zax Division" } ,
  1113. { 0x1441, NULL, "Agie SA." } ,
  1114. { 0x1445, NULL, "Logical Co Ltd" } ,
  1115. { 0x1446, NULL, "Graphin Co. Ltd" } ,
  1116. { 0x1447, NULL, "Aim GMBH" } ,
  1117. { 0x1448, "Alesis", "Alesis Studio" } ,
  1118. { 0x144A, "ADLINK", "ADLINK Technology Inc" } ,
  1119. { 0x144B, "Loronix", "Loronix Information Systems, Inc." } ,
  1120. { 0x144D, NULL, "Samsung Electronics Co Ltd" } ,
  1121. { 0x1450, NULL, "Octave Communications Ind." } ,
  1122. { 0x1451, NULL, "SP3D Chip Design GMBH" } ,
  1123. { 0x1453, NULL, "Mycom Inc" } ,
  1124. { 0x1455, NULL, "Logic Plus PLUS Inc" } ,
  1125. { 0x1458, "Giga-Byte", "Giga-Byte Technologies" } ,
  1126. { 0x145C, NULL, "Cryptek" } ,
  1127. { 0x145F, "Baldor", "Baldor Electric Company" } ,
  1128. { 0x1460, NULL, "Dynarc Inc" } ,
  1129. { 0x1462, NULL, "Micro-Star International Co Ltd" } ,
  1130. { 0x1463, NULL, "Fast Corporation" } ,
  1131. { 0x1464, "ICS", "Interactive Circuits & Systems Ltd" } ,
  1132. { 0x1465, NULL, "GN Nettest Telecom Div." } ,
  1133. { 0x1468, NULL, "Ambit Microsystems Corp." } ,
  1134. { 0x1469, NULL, "Cleveland Motion Controls" } ,
  1135. { 0x146C, NULL, "Ruby Tech Corp." } ,
  1136. { 0x146D, NULL, "Tachyon Inc." } ,
  1137. { 0x146E, NULL, "WMS Gaming" } ,
  1138. { 0x1471, NULL, "Integrated Telecom Express Inc" } ,
  1139. { 0x1473, NULL, "Zapex Technologies Inc" } ,
  1140. { 0x1474, NULL, "Doug Carson & Associates" } ,
  1141. { 0x1477, NULL, "Net Insight" } ,
  1142. { 0x1478, NULL, "Diatrend Corporation" } ,
  1143. { 0x147B, NULL, "Abit Computer Corp." } ,
  1144. { 0x147F, NULL, "Nihon Unisys Ltd." } ,
  1145. { 0x1482, NULL, "Isytec - Integrierte Systemtechnik Gmbh" } ,
  1146. { 0x1483, NULL, "Labway Coporation" } ,
  1147. { 0x1485, NULL, "Erma - Electronic GMBH" } ,
  1148. { 0x1489, NULL, "KYE Systems Corporation" } ,
  1149. { 0x148A, NULL, "Opto 22" } ,
  1150. { 0x148B, NULL, "Innomedialogic Inc." } ,
  1151. { 0x148D, "Digicom", "Digicom Systems Inc." } ,
  1152. { 0x148E, NULL, "OSI Plus Corporation" } ,
  1153. { 0x148F, NULL, "Plant Equipment Inc." } ,
  1154. { 0x1490, NULL, "TC Labs Pty Ltd." } ,
  1155. { 0x1493, NULL, "Maker Communications" } ,
  1156. { 0x1495, NULL, "Tokai Communications Industry Co. Ltd" } ,
  1157. { 0x1496, NULL, "Joytech Computer Co. Ltd." } ,
  1158. { 0x1497, NULL, "SMA Regelsysteme GMBH" } ,
  1159. { 0x1499, NULL, "Micro-Technology Co Ltd" } ,
  1160. { 0x149B, NULL, "Seiko Instruments Inc" } ,
  1161. { 0x149E, NULL, "Mapletree Networks Inc." } ,
  1162. { 0x149F, NULL, "Lectron Co Ltd" } ,
  1163. { 0x14A0, NULL, "Softing GMBH" } ,
  1164. { 0x14A2, NULL, "Millennium Engineering Inc" } ,
  1165. { 0x14A4, NULL, "GVC/BCM Advanced Research" } ,
  1166. { 0x14A5, NULL, "Xionics Document Technologies Inc." } ,
  1167. { 0x14A9, NULL, "Hivertec Inc." } ,
  1168. { 0x14AB, NULL, "Mentor Graphics Corp." } ,
  1169. { 0x14B1, NULL, "Nextcom K.K." } ,
  1170. { 0x14B3, "Xpeed", "Xpeed Inc." } ,
  1171. { 0x14B4, NULL, "Philips Business Electronics B.V." } ,
  1172. { 0x14B6, NULL, "Quantum Data Corp." } ,
  1173. { 0x14B7, "Proxim", "Proxim Inc." } ,
  1174. { 0x14B9, "Aironet", "Aironet Wireless Communication" } ,
  1175. { 0x14BA, NULL, "Internix Inc." } ,
  1176. { 0x14BB, NULL, "Semtech Corporation" } ,
  1177. { 0x14BE, NULL, "L3 Communications" } ,
  1178. { 0x14C1, NULL, "Myricom Inc." } ,
  1179. { 0x14C2, NULL, "DTK Computer" } ,
  1180. { 0x14C4, NULL, "Iwasaki Information Systems Co Ltd" } ,
  1181. { 0x14C5, NULL, "ABB Automation Products AB" } ,
  1182. { 0x14C6, NULL, "Data Race Inc" } ,
  1183. { 0x14C7, "Modtech", "Modular Technology Ltd." } ,
  1184. { 0x14C8, "Turbocomm", "Turbocomm Tech Inc" } ,
  1185. { 0x14C9, NULL, "Odin Telesystems Inc" } ,
  1186. { 0x14CB, NULL, "Billionton Systems Inc./Cadmus Micro Inc" } ,
  1187. { 0x14CD, NULL, "Universal Scientific Ind." } ,
  1188. { 0x14CF, NULL, "TEK Microsystems Inc." } ,
  1189. { 0x14D2, "OX", "Oxford Semiconductor" } ,
  1190. { 0x14D4, "PANACOM", "Panacom Technology Corporation" } ,
  1191. { 0x14D5, NULL, "Nitsuko Corporation" } ,
  1192. { 0x14D6, NULL, "Accusys Inc" } ,
  1193. { 0x14D7, NULL, "Hirakawa Hewtech Corp" } ,
  1194. { 0x14D8, NULL, "Hopf Elektronik GMBH" } ,
  1195. { 0x14D9, NULL, "Alpha Processor Inc" } ,
  1196. { 0x14DB, "Avlab", "Avlab Technology Inc." } ,
  1197. { 0x14DC, "Amplicon", "Amplicon Liveline Inc." } ,
  1198. { 0x14DD, NULL, "Imodl Inc." } ,
  1199. { 0x14DE, NULL, "Applied Integration Corporation" } ,
  1200. { 0x14E3, NULL, "Amtelco" } ,
  1201. { 0x14E4, NULL, "Broadcom Corporation" } ,
  1202. { 0x14EB, NULL, "Seiko Epson Corporation" } ,
  1203. { 0x14EC, NULL, "Acqiris" } ,
  1204. { 0x14ED, NULL, "Datakinetics Ltd" } ,
  1205. { 0x14EF, NULL, "Carry Computer Eng. Co Ltd" } ,
  1206. { 0x14F1, "Conexant", "Conexant Systems, Inc." } ,
  1207. { 0x14F2, "Mobility", "Mobility Electronics, Inc." } ,
  1208. { 0x14F4, NULL, "Tokyo Electronic Industry Co. Ltd." } ,
  1209. { 0x14F5, NULL, "Sopac Ltd" } ,
  1210. { 0x14F6, NULL, "Coyote Technologies LLC" } ,
  1211. { 0x14F7, NULL, "Wolf Technology Inc" } ,
  1212. { 0x14F8, NULL, "Audiocodes Inc" } ,
  1213. { 0x14F9, NULL, "AG Communications" } ,
  1214. { 0x14FB, NULL, "Transas Marine (UK) Ltd" } ,
  1215. { 0x14FC, NULL, "Quadrics Supercomputers World" } ,
  1216. { 0x14FD, NULL, "Japan Computer Industry Inc." } ,
  1217. { 0x14FE, NULL, "Archtek Telecom Corp." } ,
  1218. { 0x14FF, NULL, "Twinhead International Corp." } ,
  1219. { 0x1500, "DELTA", "DELTA Electronics, Inc." } ,
  1220. { 0x1501, NULL, "Banksoft Canada Ltd" } ,
  1221. { 0x1502, NULL, "Mitsubishi Electric Logistics Support Co" } ,
  1222. { 0x1503, NULL, "Kawasaki LSI USA Inc" } ,
  1223. { 0x1504, NULL, "Kaiser Electronics" } ,
  1224. { 0x1506, NULL, "Chameleon Systems Inc" } ,
  1225. { 0x1507, "Htec", "Htec Ltd." } ,
  1226. { 0x1509, NULL, "First International Computer Inc" } ,
  1227. { 0x150B, NULL, "Yamashita Systems Corp" } ,
  1228. { 0x150C, NULL, "Kyopal Co Ltd" } ,
  1229. { 0x150D, NULL, "Warpspped Inc" } ,
  1230. { 0x150E, NULL, "C-Port Corporation" } ,
  1231. { 0x150F, NULL, "Intec GMBH" } ,
  1232. { 0x1510, NULL, "Behavior Tech Computer Corp" } ,
  1233. { 0x1511, NULL, "Centillium Technology Corp" } ,
  1234. { 0x1512, NULL, "Rosun Technologies Inc" } ,
  1235. { 0x1513, NULL, "Raychem" } ,
  1236. { 0x1514, NULL, "TFL LAN Inc" } ,
  1237. { 0x1515, NULL, "ICS Advent" } ,
  1238. { 0x1516, NULL, "Myson Technology Inc" } ,
  1239. { 0x1517, NULL, "Echotek Corporation" } ,
  1240. { 0x1518, NULL, "PEP Modular Computers GMBH" } ,
  1241. { 0x1519, NULL, "Telefon Aktiebolaget LM Ericsson" } ,
  1242. { 0x151A, "Globetek", "Globetek Inc." } ,
  1243. { 0x151B, NULL, "Combox Ltd" } ,
  1244. { 0x151C, NULL, "Digital Audio Labs Inc" } ,
  1245. { 0x151D, NULL, "Fujitsu Computer Products Of America" } ,
  1246. { 0x151E, NULL, "Matrix Corp." } ,
  1247. { 0x151F, NULL, "Topic Semiconductor Corp" } ,
  1248. { 0x1520, NULL, "Chaplet System Inc" } ,
  1249. { 0x1521, NULL, "Bell Corporation" } ,
  1250. { 0x1522, "Mainpine", "Mainpine Limited" } ,
  1251. { 0x1523, NULL, "Music Semiconductors" } ,
  1252. { 0x1524, NULL, "ENE Technology Inc" } ,
  1253. { 0x1525, NULL, "Impact Technologies" } ,
  1254. { 0x1526, NULL, "ISS Inc" } ,
  1255. { 0x1527, NULL, "Solectron" } ,
  1256. { 0x1528, NULL, "Acksys" } ,
  1257. { 0x1529, NULL, "American Microsystems Inc" } ,
  1258. { 0x152A, NULL, "Quickturn Design Systems" } ,
  1259. { 0x152B, NULL, "Flytech Technology Co Ltd" } ,
  1260. { 0x152C, NULL, "Macraigor Systems LLC" } ,
  1261. { 0x152D, NULL, "Quanta Computer Inc" } ,
  1262. { 0x152E, NULL, "Melec Inc" } ,
  1263. { 0x152F, NULL, "Philips - Crypto" } ,
  1264. { 0x1532, NULL, "Echelon Corporation" } ,
  1265. { 0x1533, NULL, "Baltimore" } ,
  1266. { 0x1534, NULL, "Road Corporation" } ,
  1267. { 0x1535, NULL, "Evergreen Technologies Inc" } ,
  1268. { 0x1537, NULL, "Datalex Communcations" } ,
  1269. { 0x1538, NULL, "Aralion Inc." } ,
  1270. { 0x1539, NULL, "Atelier Informatiques et Electronique Et" } ,
  1271. { 0x153A, NULL, "ONO Sokki" } ,
  1272. { 0x153B, NULL, "Terratec Electronic GMBH" } ,
  1273. { 0x153C, NULL, "Antal Electronic" } ,
  1274. { 0x153D, NULL, "Filanet Corporation" } ,
  1275. { 0x153E, NULL, "Techwell Inc" } ,
  1276. { 0x153F, NULL, "MIPS Denmark" } ,
  1277. { 0x1540, NULL, "Provideo Multimedia Co Ltd" } ,
  1278. { 0x1541, NULL, "Telocity Inc." } ,
  1279. { 0x1542, NULL, "Vivid Technology Inc" } ,
  1280. { 0x1543, NULL, "Silicon Laboratories" } ,
  1281. { 0x1544, NULL, "DCM Data Systems" } ,
  1282. { 0x1545, NULL, "Visiontek" } ,
  1283. { 0x1546, NULL, "IOI Technology Corp." } ,
  1284. { 0x1547, NULL, "Mitutoyo Corporation" } ,
  1285. { 0x1548, NULL, "Jet Propulsion Laboratory" } ,
  1286. { 0x1549, "ISS", "Interconnect Systems Solutions" } ,
  1287. { 0x154A, NULL, "Max Technologies Inc." } ,
  1288. { 0x154B, NULL, "Computex Co Ltd" } ,
  1289. { 0x154C, NULL, "Visual Technology Inc." } ,
  1290. { 0x154D, NULL, "PAN International Industrial Corp" } ,
  1291. { 0x154E, NULL, "Servotest Ltd" } ,
  1292. { 0x154F, NULL, "Stratabeam Technology" } ,
  1293. { 0x1550, NULL, "Open Network Co Ltd" } ,
  1294. { 0x1551, NULL, "Smart Electronic Development GMBH" } ,
  1295. { 0x1552, NULL, "Racal Airtech Ltd" } ,
  1296. { 0x1553, NULL, "Chicony Electronics Co Ltd" } ,
  1297. { 0x1554, NULL, "Prolink Microsystems Corp." } ,
  1298. { 0x1556, NULL, "PLD Applications" } ,
  1299. { 0x1557, NULL, "Mediastar Co. Ltd" } ,
  1300. { 0x1558, NULL, "Clevo/Kapok Computer" } ,
  1301. { 0x1559, NULL, "SI Logic Ltd" } ,
  1302. { 0x155A, NULL, "Innomedia Inc" } ,
  1303. { 0x155B, NULL, "Protac International Corp" } ,
  1304. { 0x155C, NULL, "Cemax-Icon Inc" } ,
  1305. { 0x155D, NULL, "MAC System Co Ltd" } ,
  1306. { 0x155E, NULL, "LP Elektronik GMBH" } ,
  1307. { 0x155F, NULL, "Perle Systems Limited" } ,
  1308. { 0x1560, NULL, "Terayon Communications Systems" } ,
  1309. { 0x1561, NULL, "Viewgraphics Inc" } ,
  1310. { 0x1562, NULL, "Symbol Technologies" } ,
  1311. { 0x1563, NULL, "A-Trend Technology Co Ltd" } ,
  1312. { 0x1564, NULL, "Yamakatsu Electronics Industry Co Ltd" } ,
  1313. { 0x1565, NULL, "Biostar Microtech Intl Corp" } ,
  1314. { 0x1566, NULL, "Ardent Technologies Inc" } ,
  1315. { 0x1567, NULL, "Jungsoft" } ,
  1316. { 0x1568, NULL, "DDK Electronics Inc" } ,
  1317. { 0x1569, NULL, "Palit Microsystems Inc" } ,
  1318. { 0x156A, NULL, "Avtec Systems" } ,
  1319. { 0x156B, NULL, "2wire Inc" } ,
  1320. { 0x156C, NULL, "Vidac Electronics GMBH" } ,
  1321. { 0x156D, NULL, "Alpha-Top Corp" } ,
  1322. { 0x156E, NULL, "Alfa Inc." } ,
  1323. { 0x156F, NULL, "M-Systems Flash Disk Pioneers Ltd" } ,
  1324. { 0x1570, NULL, "Lecroy Corporation" } ,
  1325. { 0x1571, NULL, "Contemporary Controls" } ,
  1326. { 0x1572, NULL, "Otis Elevator Company" } ,
  1327. { 0x1573, NULL, "Lattice - Vantis" } ,
  1328. { 0x1574, NULL, "Fairchild Semiconductor" } ,
  1329. { 0x1575, NULL, "Voltaire Advanced Data Security Ltd" } ,
  1330. { 0x1576, NULL, "Viewcast Com" } ,
  1331. { 0x1578, NULL, "Hitt" } ,
  1332. { 0x1579, NULL, "Dual Technology Corporation" } ,
  1333. { 0x157A, NULL, "Japan Elecronics Ind. Inc" } ,
  1334. { 0x157B, NULL, "Star Multimedia Corp." } ,
  1335. { 0x157C, "Eurosoft", "Eurosoft (UK)" } ,
  1336. { 0x157D, NULL, "Gemflex Networks" } ,
  1337. { 0x157E, NULL, "Transition Networks" } ,
  1338. { 0x157F, NULL, "PX Instruments Technology Ltd" } ,
  1339. { 0x1580, NULL, "Primex Aerospace Co." } ,
  1340. { 0x1581, NULL, "SEH Computertechnik GMBH" } ,
  1341. { 0x1582, NULL, "Cytec Corporation" } ,
  1342. { 0x1583, NULL, "Inet Technologies Inc" } ,
  1343. { 0x1584, NULL, "Uniwill Computer Corp." } ,
  1344. { 0x1585, NULL, "Marconi Commerce Systems SRL" } ,
  1345. { 0x1586, NULL, "Lancast Inc" } ,
  1346. { 0x1587, NULL, "Konica Corporation" } ,
  1347. { 0x1588, NULL, "Solidum Systems Corp" } ,
  1348. { 0x1589, NULL, "Atlantek Microsystems Pty Ltd" } ,
  1349. { 0x158A, NULL, "Digalog Systems Inc" } ,
  1350. { 0x158B, NULL, "Allied Data Technologies" } ,
  1351. { 0x158C, NULL, "Hitachi Semiconductor & Devices Sales Co" } ,
  1352. { 0x158D, NULL, "Point Multimedia Systems" } ,
  1353. { 0x158E, NULL, "Lara Technology Inc" } ,
  1354. { 0x158F, NULL, "Ditect Coop" } ,
  1355. { 0x1590, NULL, "3pardata Inc." } ,
  1356. { 0x1591, NULL, "ARN" } ,
  1357. { 0x1592, "Syba", "Syba Tech Ltd." } ,
  1358. { 0x1593, NULL, "Bops Inc" } ,
  1359. { 0x1594, NULL, "Netgame Ltd" } ,
  1360. { 0x1595, NULL, "Diva Systems Corp." } ,
  1361. { 0x1596, NULL, "Folsom Research Inc" } ,
  1362. { 0x1597, NULL, "Memec Design Services" } ,
  1363. { 0x1598, NULL, "Granite Microsystems" } ,
  1364. { 0x1599, NULL, "Delta Electronics Inc" } ,
  1365. { 0x159A, NULL, "General Instrument" } ,
  1366. { 0x159B, NULL, "Faraday Technology Corp" } ,
  1367. { 0x159C, NULL, "Stratus Computer Systems" } ,
  1368. { 0x159D, NULL, "Ningbo Harrison Electronics Co Ltd" } ,
  1369. { 0x159E, NULL, "A-Max Technology Co Ltd" } ,
  1370. { 0x159F, NULL, "Galea Network Security" } ,
  1371. { 0x15A0, NULL, "Compumaster SRL" } ,
  1372. { 0x15A1, NULL, "Geocast Network Systems Inc" } ,
  1373. { 0x15A2, NULL, "Catalyst Enterprises Inc" } ,
  1374. { 0x15A3, NULL, "Italtel" } ,
  1375. { 0x15A4, NULL, "X-Net OY" } ,
  1376. { 0x15A5, NULL, "Toyota MACS Inc" } ,
  1377. { 0x15A6, NULL, "Sunlight Ultrasound Technologies Ltd" } ,
  1378. { 0x15A7, NULL, "SSE Telecom Inc" } ,
  1379. { 0x15A8, NULL, "Shanghai Communications Technologies Cen" } ,
  1380. { 0x15AA, NULL, "Moreton Bay" } ,
  1381. { 0x15AB, NULL, "Bluesteel Networks Inc" } ,
  1382. { 0x15AC, NULL, "North Atlantic Instruments" } ,
  1383. { 0x15AD, "VMware", "VMware Inc." } ,
  1384. { 0x15AE, NULL, "Amersham Pharmacia Biotech" } ,
  1385. { 0x15B0, NULL, "Zoltrix International Limited" } ,
  1386. { 0x15B1, NULL, "Source Technology Inc" } ,
  1387. { 0x15B2, NULL, "Mosaid Technologies Inc." } ,
  1388. { 0x15B3, NULL, "Mellanox Technology" } ,
  1389. { 0x15B4, NULL, "CCI/Triad" } ,
  1390. { 0x15B5, NULL, "Cimetrics Inc" } ,
  1391. { 0x15B6, NULL, "Texas Memory Systems Inc" } ,
  1392. { 0x15B7, NULL, "Sandisk Corp." } ,
  1393. { 0x15B8, NULL, "Addi-Data GMBH" } ,
  1394. { 0x15B9, NULL, "Maestro Digital Communications" } ,
  1395. { 0x15BA, NULL, "Impacct Technology Corp" } ,
  1396. { 0x15BB, NULL, "Portwell Inc" } ,
  1397. { 0x15BC, "Agilent", "Agilent Technologies" } ,
  1398. { 0x15BD, NULL, "DFI Inc." } ,
  1399. { 0x15BE, NULL, "Sola Electronics" } ,
  1400. { 0x15BF, NULL, "High Tech Computer Corp (HTC)" } ,
  1401. { 0x15C0, "BVM", "BVM Limited" } ,
  1402. { 0x15C1, NULL, "Quantel" } ,
  1403. { 0x15C2, NULL, "Newer Technology Inc" } ,
  1404. { 0x15C3, NULL, "Taiwan Mycomp Co Ltd" } ,
  1405. { 0x15C4, NULL, "EVSX Inc" } ,
  1406. { 0x15C5, NULL, "Procomp Informatics Ltd" } ,
  1407. { 0x15C6, NULL, "Technical University Of Budapest" } ,
  1408. { 0x15C7, NULL, "Tateyama System Laboratory Co Ltd" } ,
  1409. { 0x15C8, NULL, "Penta Media Co. Ltd" } ,
  1410. { 0x15C9, NULL, "Serome Technology Inc" } ,
  1411. { 0x15CA, NULL, "Bitboys OY" } ,
  1412. { 0x15CB, NULL, "AG Electronics Ltd" } ,
  1413. { 0x15CC, NULL, "Hotrail Inc." } ,
  1414. { 0x15CD, NULL, "Dreamtech Co Ltd" } ,
  1415. { 0x15CE, NULL, "Genrad Inc." } ,
  1416. { 0x15CF, NULL, "Hilscher GMBH" } ,
  1417. { 0x15D1, "Infineon", "Infineon Technologies AG" } ,
  1418. { 0x15D2, NULL, "FIC (First International Computer Inc)" } ,
  1419. { 0x15D3, NULL, "NDS Technologies Israel Ltd" } ,
  1420. { 0x15D4, NULL, "Iwill Corporation" } ,
  1421. { 0x15D5, NULL, "Tatung Co." } ,
  1422. { 0x15D6, NULL, "Entridia Corporation" } ,
  1423. { 0x15D7, NULL, "Rockwell-Collins Inc" } ,
  1424. { 0x15D8, NULL, "Cybernetics Technology Co Ltd" } ,
  1425. { 0x15D9, NULL, "Super Micro Computer Inc" } ,
  1426. { 0x15DA, NULL, "Cyberfirm Inc." } ,
  1427. { 0x15DB, NULL, "Applied Computing Systems Inc." } ,
  1428. { 0x15DC, "Litronic", "Litronic Inc." } ,
  1429. { 0x15DD, NULL, "Sigmatel Inc." } ,
  1430. { 0x15DE, NULL, "Malleable Technologies Inc" } ,
  1431. { 0x15DF, NULL, "Infinilink Corp." } ,
  1432. { 0x15E0, NULL, "Cacheflow Inc" } ,
  1433. { 0x15E1, "VTG", "Voice Technologies Group" } ,
  1434. { 0x15E2, NULL, "Quicknet Technologies Inc" } ,
  1435. { 0x15E3, NULL, "Networth Technologies Inc" } ,
  1436. { 0x15E4, NULL, "VSN Systemen BV" } ,
  1437. { 0x15E5, NULL, "Valley Technologies Inc" } ,
  1438. { 0x15E6, NULL, "Agere Inc." } ,
  1439. { 0x15E7, NULL, "GET Engineering Corp." } ,
  1440. { 0x15E8, NULL, "National Datacomm Corp." } ,
  1441. { 0x15E9, NULL, "Pacific Digital Corp." } ,
  1442. { 0x15EA, NULL, "Tokyo Denshi Sekei K.K." } ,
  1443. { 0x15EB, NULL, "Drsearch GMBH" } ,
  1444. { 0x15EC, NULL, "Beckhoff GMBH" } ,
  1445. { 0x15ED, NULL, "Macrolink Inc" } ,
  1446. { 0x15EE, NULL, "IN Win Development Inc." } ,
  1447. { 0x15EF, NULL, "Intelligent Paradigm Inc" } ,
  1448. { 0x15F0, NULL, "B-Tree Systems Inc" } ,
  1449. { 0x15F1, NULL, "Times N Systems Inc" } ,
  1450. { 0x15F2, NULL, "Diagnostic Instruments Inc" } ,
  1451. { 0x15F3, NULL, "Digitmedia Corp." } ,
  1452. { 0x15F4, NULL, "Valuesoft" } ,
  1453. { 0x15F5, NULL, "Power Micro Research" } ,
  1454. { 0x15F6, NULL, "Extreme Packet Device Inc" } ,
  1455. { 0x15F7, NULL, "Banctec" } ,
  1456. { 0x15F8, NULL, "Koga Electronics Co" } ,
  1457. { 0x15F9, NULL, "Zenith Electronics Corporation" } ,
  1458. { 0x15FA, NULL, "J.P. Axzam Corporation" } ,
  1459. { 0x15FB, NULL, "Zilog Inc." } ,
  1460. { 0x15FC, NULL, "Techsan Electronics Co Ltd" } ,
  1461. { 0x15FD, NULL, "N-Cubed.Net" } ,
  1462. { 0x15FE, NULL, "Kinpo Electronics Inc" } ,
  1463. { 0x15FF, NULL, "Fastpoint Technologies Inc." } ,
  1464. { 0x1600, NULL, "Northrop Grumman - Canada Ltd" } ,
  1465. { 0x1601, NULL, "Tenta Technology" } ,
  1466. { 0x1602, NULL, "Prosys-TEC Inc." } ,
  1467. { 0x1603, NULL, "Nokia Wireless Business Communications" } ,
  1468. { 0x1604, NULL, "Central System Research Co Ltd" } ,
  1469. { 0x1605, NULL, "Pairgain Technologies" } ,
  1470. { 0x1606, NULL, "Europop AG" } ,
  1471. { 0x1607, NULL, "Lava Semiconductor Manufacturing Inc." } ,
  1472. { 0x1608, NULL, "Automated Wagering International" } ,
  1473. { 0x1609, NULL, "Sciemetric Instruments Inc" } ,
  1474. { 0x160A, NULL, "Kollmorgen Servotronix" } ,
  1475. { 0x160B, NULL, "Onkyo Corp." } ,
  1476. { 0x160C, NULL, "Oregon Micro Systems Inc." } ,
  1477. { 0x160D, NULL, "Aaeon Electronics Inc" } ,
  1478. { 0x160E, NULL, "CML Emergency Services" } ,
  1479. { 0x160F, NULL, "ITEC Co Ltd" } ,
  1480. { 0x1610, NULL, "Tottori Sanyo Electric Co Ltd" } ,
  1481. { 0x1611, NULL, "Bel Fuse Inc." } ,
  1482. { 0x1612, NULL, "Telesynergy Research Inc." } ,
  1483. { 0x1613, NULL, "System Craft Inc." } ,
  1484. { 0x1614, NULL, "Jace Tech Inc." } ,
  1485. { 0x1615, NULL, "Equus Computer Systems Inc" } ,
  1486. { 0x1616, NULL, "Iotech Inc." } ,
  1487. { 0x1617, NULL, "Rapidstream Inc" } ,
  1488. { 0x1618, NULL, "Esec SA" } ,
  1489. { 0x1619, "FarSite", "FarSite Communications Limited" } ,
  1490. { 0x161A, NULL, "Wvinten Ltd" } ,
  1491. { 0x161B, NULL, "Mobilian Israel Ltd" } ,
  1492. { 0x161C, NULL, "Berkshire Products" } ,
  1493. { 0x161D, NULL, "Gatec" } ,
  1494. { 0x161E, NULL, "Kyoei Sangyo Co Ltd" } ,
  1495. { 0x161F, NULL, "Arima Computer Co" } ,
  1496. { 0x1620, NULL, "Sigmacom Co Ltd" } ,
  1497. { 0x1621, NULL, "Lynx Studio Technology Inc" } ,
  1498. { 0x1622, "NHC", "Nokia Home Communications" } ,
  1499. { 0x1623, NULL, "KRF Tech Ltd" } ,
  1500. { 0x1624, NULL, "CE Infosys GMBH" } ,
  1501. { 0x1625, NULL, "Warp Nine Engineering" } ,
  1502. { 0x1626, NULL, "TDK Semiconductor Corp." } ,
  1503. { 0x1627, NULL, "BCom Electronics Inc" } ,
  1504. { 0x1629, NULL, "Kongsberg Spacetec a.s." } ,
  1505. { 0x162A, NULL, "Sejin Computerland Co Ltd" } ,
  1506. { 0x162B, NULL, "Shanghai Bell Company Limited" } ,
  1507. { 0x162C, NULL, "C&H Technologies Inc" } ,
  1508. { 0x162D, NULL, "Reprosoft Co Ltd" } ,
  1509. { 0x162E, NULL, "Margi Systems Inc" } ,
  1510. { 0x162F, NULL, "Rohde & Schwarz GMBH & Co KG" } ,
  1511. { 0x1630, NULL, "Sky Computers Inc" } ,
  1512. { 0x1631, NULL, "NEC Computer International" } ,
  1513. { 0x1632, NULL, "Verisys Inc" } ,
  1514. { 0x1633, NULL, "Adac Corporation" } ,
  1515. { 0x1634, NULL, "Visionglobal Network Corp." } ,
  1516. { 0x1635, NULL, "Decros" } ,
  1517. { 0x1636, NULL, "Jean Company Ltd" } ,
  1518. { 0x1637, NULL, "NSI" } ,
  1519. { 0x1638, NULL, "Eumitcom Technology Inc" } ,
  1520. { 0x163A, NULL, "Air Prime Inc" } ,
  1521. { 0x163B, NULL, "Glotrex Co Ltd" } ,
  1522. { 0x163C, NULL, "Smart Link" } ,
  1523. { 0x163D, NULL, "Heidelberg Digital LLC" } ,
  1524. { 0x163E, NULL, "3dpower" } ,
  1525. { 0x163F, NULL, "Renishaw PLC" } ,
  1526. { 0x1640, NULL, "Intelliworxx Inc" } ,
  1527. { 0x1641, NULL, "MKNet Corporation" } ,
  1528. { 0x1642, NULL, "Bitland" } ,
  1529. { 0x1643, NULL, "Hajime Industries Ltd" } ,
  1530. { 0x1644, NULL, "Western Avionics Ltd" } ,
  1531. { 0x1645, NULL, "Quick-Serv. Computer Co. Ltd" } ,
  1532. { 0x1646, NULL, "Nippon Systemware Co Ltd" } ,
  1533. { 0x1647, NULL, "Hertz Systemtechnik GMBH" } ,
  1534. { 0x1648, NULL, "MeltDown Systems LLC" } ,
  1535. { 0x1649, NULL, "Jupiter Systems" } ,
  1536. { 0x164A, NULL, "Aiwa Co. Ltd" } ,
  1537. { 0x164C, NULL, "Department Of Defense" } ,
  1538. { 0x164D, NULL, "Ishoni Networks" } ,
  1539. { 0x164E, NULL, "Micrel Inc." } ,
  1540. { 0x164F, NULL, "Datavoice (Pty) Ltd." } ,
  1541. { 0x1650, NULL, "Admore Technology Inc." } ,
  1542. { 0x1651, NULL, "Chaparral Network Storage" } ,
  1543. { 0x1652, NULL, "Spectrum Digital Inc." } ,
  1544. { 0x1653, NULL, "Nature Worldwide Technology Corp" } ,
  1545. { 0x1654, NULL, "Sonicwall Inc" } ,
  1546. { 0x1655, NULL, "Dazzle Multimedia Inc." } ,
  1547. { 0x1656, NULL, "Insyde Software Corp" } ,
  1548. { 0x1657, NULL, "Brocade Communications Systems" } ,
  1549. { 0x1658, NULL, "Med Associates Inc." } ,
  1550. { 0x1659, NULL, "Shiba Denshi Systems Inc." } ,
  1551. { 0x165A, NULL, "Epix Inc." } ,
  1552. { 0x165B, NULL, "Real-Time Digital Inc." } ,
  1553. { 0x165C, NULL, "Gidel Ltd." } ,
  1554. { 0x165D, NULL, "Hsing Tech. Enterprise Co. Ltd." } ,
  1555. { 0x165E, NULL, "Hyunju Computer Co. Ltd." } ,
  1556. { 0x165F, NULL, "Add One Company" } ,
  1557. { 0x1660, NULL, "Network Security Technologies Inc. (Net " } ,
  1558. { 0x1661, NULL, "Worldspace Corp." } ,
  1559. { 0x1662, NULL, "Int Labs" } ,
  1560. { 0x1663, NULL, "Elmec Inc. Ltd." } ,
  1561. { 0x1664, NULL, "Fastfame Technology Co. Ltd." } ,
  1562. { 0x1665, NULL, "Edax Inc." } ,
  1563. { 0x1666, NULL, "Norpak Corporation" } ,
  1564. { 0x1667, NULL, "CoSystems Inc." } ,
  1565. { 0x1668, "Actiontec", "Actiontec Electronics Inc." } ,
  1566. { 0x166A, NULL, "Komatsu Ltd." } ,
  1567. { 0x166B, NULL, "Supernet Inc." } ,
  1568. { 0x166C, NULL, "Shade Ltd." } ,
  1569. { 0x166D, NULL, "Sibyte Inc." } ,
  1570. { 0x166E, NULL, "Schneider Automation Inc." } ,
  1571. { 0x166F, NULL, "Televox Software Inc." } ,
  1572. { 0x1670, NULL, "Rearden Steel" } ,
  1573. { 0x1671, NULL, "Atan Technology Inc." } ,
  1574. { 0x1672, NULL, "Unitec Co. Ltd." } ,
  1575. { 0x1673, NULL, "Connex" } ,
  1576. { 0x1675, NULL, "Square Wave Technology" } ,
  1577. { 0x1676, NULL, "Emachines Inc." } ,
  1578. { 0x1677, NULL, "Bernecker + Rainer" } ,
  1579. { 0x1678, NULL, "INH Semiconductor" } ,
  1580. { 0x1679, NULL, "Tokyo Electron Device Ltd." } ,
  1581. { 0x168A, "USA", "Utimaco Safeware AG" } ,
  1582. { 0x16AE, "SFNT", "SafeNet Inc." } ,
  1583. { 0x1755, "Alchemy", "Alchemy Semiconductor Inc." } ,
  1584. { 0x1813, NULL, "Modem Silicon Operation" } ,
  1585. { 0X1898, "DICIT", "DIC INFORMATION TECHNOLOGY ,LTD" } ,
  1586. { 0x1A08, "Sierra", "Sierra Semiconductor" } ,
  1587. { 0x1B13, NULL, "Jaton Corporation" } ,
  1588. { 0x1C1C, "Symphony", "Symphony" } ,
  1589. { 0x1D44, "DPT", "Distributed Processing Technology" } ,
  1590. { 0x1DE1, "Tekram", "Tekram" } ,
  1591. { 0x1DE2, "A/DHOC", "A/DHOC Syst�mes" } ,
  1592. { 0x1DEA, "LST", "Lasentec" } ,
  1593. { 0x2001, NULL, "Temporal Research Ltd" } ,
  1594. { 0x2002, "AT", "Automation Technology GmbH" } ,
  1595. { 0x2014, "NONTECH", "NONTECH Nonnenmacher GmbH" } ,
  1596. { 0x2348, "Racore", "Racore" } ,
  1597. { 0x2646, NULL, "Kingston Technology Co." } ,
  1598. { 0x270F, "ChainTech", "ChainTech Computer Co. Ltd." } ,
  1599. { 0x2EC1, NULL, "Zenic Inc" } ,
  1600. { 0x3000, "Hansol", "Hansol Electronics Inc." } ,
  1601. { 0x3142, "PostImpressions", "Post Impressions Systems" } ,
  1602. { 0x3388, "Hint", "Hint Corp." } ,
  1603. { 0x3411, NULL, "Quantum Designs (H.K.) Inc." } ,
  1604. { 0x3513, "ARCOM", "ARCOM Control Systems Ltd." } ,
  1605. { 0x38EF, NULL, "4links" } ,
  1606. { 0x3D3D, "3DLabs", "3Dlabs, Inc. Ltd" } ,
  1607. { 0x4005, "Avance", "Avance Logic Inc." } ,
  1608. { 0x4033, "Addtron", "Addtron Technology Co., Inc." } ,
  1609. { 0x4143, "DEC", "Digital Equipment Corp." } ,
  1610. { 0x416C, NULL, "Aladdin Knowledge Systems" } ,
  1611. { 0x4444, "ICompression", "ICompression Inc." } ,
  1612. { 0x4468, "Bridgeport", "Bridgeport Machines" } ,
  1613. { 0x4550, "TDT", "Tucker-Davis Technologies" } ,
  1614. { 0x4594, NULL, "Cogetec Informatique Inc." } ,
  1615. { 0x45FB, "Baldor", "Baldor Electric Company" } ,
  1616. { 0x4680, "UMAX Comp", "UMAX Computer Corp." } ,
  1617. { 0x4843, "Hercules", "Hercules Computer Technology" } ,
  1618. { 0x4943, NULL, "Growth Networks" } ,
  1619. { 0x4954, "Integral", "Integral Technologies" } ,
  1620. { 0x4978, "Axil", "Axil Computer Inc." } ,
  1621. { 0x4A14, "NetVin", "NetVin" } ,
  1622. { 0x4abd, "ABI", "Applied Biosystems Division" } ,
  1623. { 0x4B10, "Buslogic", "Buslogic Inc" } ,
  1624. { 0x4C48, "Lung Hwa", "Lung Hwa Electronics" } ,
  1625. { 0x4C53, NULL, "SBS-OR Industrial Computers" } ,
  1626. { 0x4CA1, NULL, "Seanix Technology Inc" } ,
  1627. { 0x4D51, "Mediaq", "Mediaq Inc." } ,
  1628. { 0x4D54, NULL, "Microtechnica Co Ltd" } ,
  1629. { 0x4DDC, "ILC", "ILC Data Device Corp." } ,
  1630. { 0x5046, "Guillemot", "Guillemot" } ,
  1631. { 0x5053, "TBS/Voyetra", "TBS/Voyetra Technologies" } ,
  1632. { 0x5136, NULL, "S S Technologies" } ,
  1633. { 0x5143, "Qualcomm", "Qualcomm Inc." } ,
  1634. { 0x5145, "ENSONIQ", "ENSONIQ" } ,
  1635. { 0x5301, "Alliance", "Alliance Semicondutor Corp." } ,
  1636. { 0x5333, "S3", "S3 Incorporated" } ,
  1637. { 0x544C, NULL, "Teralogic Inc" } ,
  1638. { 0x5455, "TU-Berlin", "Technische Universtiaet Berlin" } ,
  1639. { 0x5519, "Cnet", "Cnet Technoliges, Inc." } ,
  1640. { 0x5544, "Dunord", "Dunord Technologies" } ,
  1641. { 0x5555, "Genroco", "Genroco Inc." } ,
  1642. { 0x5700, "Netpower", "Netpower" } ,
  1643. { 0x6356, "UltraStor", "UltraStor" } ,
  1644. { 0x6374, "C4T", "c't Magazin f_r Computertechnik" } ,
  1645. { 0x6409, NULL, "Logitec Corp." } ,
  1646. { 0x6666, "Decision", "Decision Computer International Co." } ,
  1647. { 0x7604, "O.N.", "O.N. Electric Co. Ltd." } ,
  1648. { 0x7747, "DaoGuo", "DaoGuo Technology Co.,Ltd" } ,
  1649. { 0x7BDE, "MIDAC", "MIDAC Corporation" } ,
  1650. { 0x7FED, "PowerTV", "PowerTV" } ,
  1651. { 0x8001, "BEYERTONE", "Beyertone AG - Germany" } ,
  1652. { 0x8008, "QUANCOM", "QUANCOM Informationssysteme GmbH" } ,
  1653. { 0x8086, "Intel", "Intel Corporation" } ,
  1654. { 0x8800, "Trigem", "Trigem Computer" } ,
  1655. { 0x8866, "T-Square", "T-Square Design Inc." } ,
  1656. { 0x8888, "Sil Magic", "Silicon Magic" } ,
  1657. { 0x8E0E, "Computone", "Computone Corporation" } ,
  1658. { 0x8E2E, "KTI", "KTI" } ,
  1659. { 0x9004, "Adaptec", "Adaptec" } ,
  1660. { 0x9005, "Adaptec", "Adaptec" } ,
  1661. { 0x907F, "Atronics", "Atronics" } ,
  1662. { 0x919A, NULL, "Gigapixel Corp" } ,
  1663. { 0x9412, "Holtek", "Holtek" } ,
  1664. { 0x9699, NULL, "Omni Media Technology Inc." } ,
  1665. { 0x9710, "Netmos", "Netmos" } ,
  1666. { 0x9877, "surveyors", "pan asia superitendence corp" } ,
  1667. { 0x9902, "StarGen", "StarGen, Inc." } ,
  1668. { 0xA0A0, "Aopen", "Aopen Inc." } ,
  1669. { 0xA0F1, NULL, "Unisys Corporation" } ,
  1670. { 0xA200, "NEC", "NEC Corp." } ,
  1671. { 0xA259, NULL, "Hewlett Packard" } ,
  1672. { 0xA25B, "Hewlett Packard", "Hewlett Packard GmbH PL24-MKT" } ,
  1673. { 0xA304, "Sony", "Sony" } ,
  1674. { 0xA727, NULL, "3com Corporation" } ,
  1675. { 0xAA42, "Scitex", "Scitex Digital Video" } ,
  1676. { 0xAC1E, NULL, "Digital Receiver Technology Inc" } ,
  1677. { 0xAECB, NULL, "Adrienne Electronics Corporation" } ,
  1678. { 0xB00C, "IC Book", "IC Book Labs" } ,
  1679. { 0xB1B3, "Shiva", "Shiva Europe Ltd." } ,
  1680. { 0xB894, NULL, "Brown & Sharpe Mfg. Co." } ,
  1681. { 0xC001, "TSI", "TSI Telsys" } ,
  1682. { 0xC0A9, "Micron/Crucial", "Micron/Crucial Technology" } ,
  1683. { 0xC0DE, NULL, "Motorola" } ,
  1684. { 0xC0FE, "Mot Engrg", "Motion Engineering Inc." } ,
  1685. { 0xC622, NULL, "Hudson Soft Co Ltd" } ,
  1686. { 0xCA50, "Varian", "Varian Australia Pty. Ltd." } ,
  1687. { 0xCAFE, NULL, "Chrysalis-ITS" } ,
  1688. { 0xCCCC, NULL, "Catapult Communications" } ,
  1689. { 0xCDDD, "Tyzx Inc.", "Tyzx Inc." } ,
  1690. { 0xD4D4, "DY4", "DY4 Systems Inc." } ,
  1691. { 0xD84D, "Exsys", "Exsys" } ,
  1692. { 0xDC93, NULL, "Dawicontrol" } ,
  1693. { 0xDEAD, "Indigita", "Indigita Corporation" } ,
  1694. { 0xDEAF, NULL, "Middle Digital, Inc" } ,
  1695. { 0xE000, "Winbond", "Winbond" } ,
  1696. { 0xE159, "Tiger Jet", "Tiger Jet Network Inc" } ,
  1697. { 0xE4BF, NULL, "EKF Elektronik GMBH" } ,
  1698. { 0xEA01, NULL, "Eagle Technology" } ,
  1699. { 0xECC0, "Echo", "Echo Corporation" } ,
  1700. { 0xEDD8, "ARK Logic", "ARK Logic, Inc" } ,
  1701. { 0xF5F5, NULL, "F5 Networks Inc." } ,
  1702. { 0xFA57, "FAST", "Fast Search & Transfer ASA" } ,
  1703. { 0xFEDA, NULL, "Epigram Inc"} ,
  1704. { 0xFFFE, "VMware", "VMware Inc."} ,
  1705. { 0x16da, "MarekMicro", "MarekMicro GmbH"},
  1706. { 0xFFFF, NULL, NULL}
  1707. };
  1708. #endif