jep106.inc 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791
  1. /* https://github.com/openocd-org/openocd/blob/master/src/helper/ */
  2. /* SPDX-License-Identifier: GPL-2.0-or-later */
  3. /*
  4. * The manufacturer's standard identification code list appears in JEP106.
  5. * Copyright (c) 2022 JEDEC. All rights reserved.
  6. *
  7. * JEP106 is regularly updated. For the current manufacturer's standard
  8. * identification code list, please visit the JEDEC website at www.jedec.org .
  9. */
  10. /* This file is aligned to revision JEP106BF.01 October 2022. */
  11. [0][0x01 - 1] = "AMD",
  12. [0][0x02 - 1] = "AMI",
  13. [0][0x03 - 1] = "Fairchild",
  14. [0][0x04 - 1] = "Fujitsu",
  15. [0][0x05 - 1] = "GTE",
  16. [0][0x06 - 1] = "Harris",
  17. [0][0x07 - 1] = "Hitachi",
  18. [0][0x08 - 1] = "Inmos",
  19. [0][0x09 - 1] = "Intel",
  20. [0][0x0a - 1] = "I.T.T.",
  21. [0][0x0b - 1] = "Intersil",
  22. [0][0x0c - 1] = "Monolithic Memories",
  23. [0][0x0d - 1] = "Mostek",
  24. [0][0x0e - 1] = "Freescale (Motorola)",
  25. [0][0x0f - 1] = "National",
  26. [0][0x10 - 1] = "NEC",
  27. [0][0x11 - 1] = "RCA",
  28. [0][0x12 - 1] = "Raytheon",
  29. [0][0x13 - 1] = "Conexant (Rockwell)",
  30. [0][0x14 - 1] = "Seeq",
  31. [0][0x15 - 1] = "NXP (Philips)",
  32. [0][0x16 - 1] = "Synertek",
  33. [0][0x17 - 1] = "Texas Instruments",
  34. [0][0x18 - 1] = "Kioxia Corporation",
  35. [0][0x19 - 1] = "Xicor",
  36. [0][0x1a - 1] = "Zilog",
  37. [0][0x1b - 1] = "Eurotechnique",
  38. [0][0x1c - 1] = "Mitsubishi",
  39. [0][0x1d - 1] = "Lucent (AT&T)",
  40. [0][0x1e - 1] = "Exel",
  41. [0][0x1f - 1] = "Atmel",
  42. [0][0x20 - 1] = "STMicroelectronics",
  43. [0][0x21 - 1] = "Lattice Semi.",
  44. [0][0x22 - 1] = "NCR",
  45. [0][0x23 - 1] = "Wafer Scale Integration",
  46. [0][0x24 - 1] = "IBM",
  47. [0][0x25 - 1] = "Tristar",
  48. [0][0x26 - 1] = "Visic",
  49. [0][0x27 - 1] = "Intl. CMOS Technology",
  50. [0][0x28 - 1] = "SSSI",
  51. [0][0x29 - 1] = "Microchip Technology",
  52. [0][0x2a - 1] = "Ricoh Ltd",
  53. [0][0x2b - 1] = "VLSI",
  54. [0][0x2c - 1] = "Micron Technology",
  55. [0][0x2d - 1] = "SK Hynix",
  56. [0][0x2e - 1] = "OKI Semiconductor",
  57. [0][0x2f - 1] = "ACTEL",
  58. [0][0x30 - 1] = "Sharp",
  59. [0][0x31 - 1] = "Catalyst",
  60. [0][0x32 - 1] = "Panasonic",
  61. [0][0x33 - 1] = "IDT",
  62. [0][0x34 - 1] = "Cypress",
  63. [0][0x35 - 1] = "DEC",
  64. [0][0x36 - 1] = "LSI Logic",
  65. [0][0x37 - 1] = "Zarlink (Plessey)",
  66. [0][0x38 - 1] = "UTMC",
  67. [0][0x39 - 1] = "Thinking Machine",
  68. [0][0x3a - 1] = "Thomson CSF",
  69. [0][0x3b - 1] = "Integrated CMOS (Vertex)",
  70. [0][0x3c - 1] = "Honeywell",
  71. [0][0x3d - 1] = "Tektronix",
  72. [0][0x3e - 1] = "Oracle Corporation",
  73. [0][0x3f - 1] = "Silicon Storage Technology",
  74. [0][0x40 - 1] = "ProMos/Mosel Vitelic",
  75. [0][0x41 - 1] = "Infineon (Siemens)",
  76. [0][0x42 - 1] = "Macronix",
  77. [0][0x43 - 1] = "Xerox",
  78. [0][0x44 - 1] = "Plus Logic",
  79. [0][0x45 - 1] = "Western Digital Technologies Inc",
  80. [0][0x46 - 1] = "Elan Circuit Tech.",
  81. [0][0x47 - 1] = "European Silicon Str.",
  82. [0][0x48 - 1] = "Apple Computer",
  83. [0][0x49 - 1] = "Xilinx",
  84. [0][0x4a - 1] = "Compaq",
  85. [0][0x4b - 1] = "Protocol Engines",
  86. [0][0x4c - 1] = "SCI",
  87. [0][0x4d - 1] = "Seiko Instruments",
  88. [0][0x4e - 1] = "Samsung",
  89. [0][0x4f - 1] = "I3 Design System",
  90. [0][0x50 - 1] = "Klic",
  91. [0][0x51 - 1] = "Crosspoint Solutions",
  92. [0][0x52 - 1] = "Alliance Memory Inc",
  93. [0][0x53 - 1] = "Tandem",
  94. [0][0x54 - 1] = "Hewlett-Packard",
  95. [0][0x55 - 1] = "Integrated Silicon Solutions",
  96. [0][0x56 - 1] = "Brooktree",
  97. [0][0x57 - 1] = "New Media",
  98. [0][0x58 - 1] = "MHS Electronic",
  99. [0][0x59 - 1] = "Performance Semi.",
  100. [0][0x5a - 1] = "Winbond Electronic",
  101. [0][0x5b - 1] = "Kawasaki Steel",
  102. [0][0x5c - 1] = "Bright Micro",
  103. [0][0x5d - 1] = "TECMAR",
  104. [0][0x5e - 1] = "Exar",
  105. [0][0x5f - 1] = "PCMCIA",
  106. [0][0x60 - 1] = "LG Semi (Goldstar)",
  107. [0][0x61 - 1] = "Northern Telecom",
  108. [0][0x62 - 1] = "Sanyo",
  109. [0][0x63 - 1] = "Array Microsystems",
  110. [0][0x64 - 1] = "Crystal Semiconductor",
  111. [0][0x65 - 1] = "Analog Devices",
  112. [0][0x66 - 1] = "PMC-Sierra",
  113. [0][0x67 - 1] = "Asparix",
  114. [0][0x68 - 1] = "Convex Computer",
  115. [0][0x69 - 1] = "Quality Semiconductor",
  116. [0][0x6a - 1] = "Nimbus Technology",
  117. [0][0x6b - 1] = "Transwitch",
  118. [0][0x6c - 1] = "Micronas (ITT Intermetall)",
  119. [0][0x6d - 1] = "Cannon",
  120. [0][0x6e - 1] = "Altera",
  121. [0][0x6f - 1] = "NEXCOM",
  122. [0][0x70 - 1] = "Qualcomm",
  123. [0][0x71 - 1] = "Sony",
  124. [0][0x72 - 1] = "Cray Research",
  125. [0][0x73 - 1] = "AMS(Austria Micro)",
  126. [0][0x74 - 1] = "Vitesse",
  127. [0][0x75 - 1] = "Aster Electronics",
  128. [0][0x76 - 1] = "Bay Networks (Synoptic)",
  129. [0][0x77 - 1] = "Zentrum/ZMD",
  130. [0][0x78 - 1] = "TRW",
  131. [0][0x79 - 1] = "Thesys",
  132. [0][0x7a - 1] = "Solbourne Computer",
  133. [0][0x7b - 1] = "Allied-Signal",
  134. [0][0x7c - 1] = "Dialog Semiconductor",
  135. [0][0x7d - 1] = "Media Vision",
  136. [0][0x7e - 1] = "Numonyx Corporation",
  137. [1][0x01 - 1] = "Cirrus Logic",
  138. [1][0x02 - 1] = "National Instruments",
  139. [1][0x03 - 1] = "ILC Data Device",
  140. [1][0x04 - 1] = "Alcatel Mietec",
  141. [1][0x05 - 1] = "Micro Linear",
  142. [1][0x06 - 1] = "Univ. of NC",
  143. [1][0x07 - 1] = "JTAG Technologies",
  144. [1][0x08 - 1] = "BAE Systems (Loral)",
  145. [1][0x09 - 1] = "Nchip",
  146. [1][0x0a - 1] = "Galileo Tech",
  147. [1][0x0b - 1] = "Bestlink Systems",
  148. [1][0x0c - 1] = "Graychip",
  149. [1][0x0d - 1] = "GENNUM",
  150. [1][0x0e - 1] = "Imagination Technologies Limited",
  151. [1][0x0f - 1] = "Robert Bosch",
  152. [1][0x10 - 1] = "Chip Express",
  153. [1][0x11 - 1] = "DATARAM",
  154. [1][0x12 - 1] = "United Microelectronics Corp",
  155. [1][0x13 - 1] = "TCSI",
  156. [1][0x14 - 1] = "Smart Modular",
  157. [1][0x15 - 1] = "Hughes Aircraft",
  158. [1][0x16 - 1] = "Lanstar Semiconductor",
  159. [1][0x17 - 1] = "Qlogic",
  160. [1][0x18 - 1] = "Kingston",
  161. [1][0x19 - 1] = "Music Semi",
  162. [1][0x1a - 1] = "Ericsson Components",
  163. [1][0x1b - 1] = "SpaSE",
  164. [1][0x1c - 1] = "Eon Silicon Devices",
  165. [1][0x1d - 1] = "Integrated Silicon Solution (ISSI)",
  166. [1][0x1e - 1] = "DoD",
  167. [1][0x1f - 1] = "Integ. Memories Tech.",
  168. [1][0x20 - 1] = "Corollary Inc",
  169. [1][0x21 - 1] = "Dallas Semiconductor",
  170. [1][0x22 - 1] = "Omnivision",
  171. [1][0x23 - 1] = "EIV(Switzerland)",
  172. [1][0x24 - 1] = "Novatel Wireless",
  173. [1][0x25 - 1] = "Zarlink (Mitel)",
  174. [1][0x26 - 1] = "Clearpoint",
  175. [1][0x27 - 1] = "Cabletron",
  176. [1][0x28 - 1] = "STEC (Silicon Tech)",
  177. [1][0x29 - 1] = "Vanguard",
  178. [1][0x2a - 1] = "Hagiwara Sys-Com",
  179. [1][0x2b - 1] = "Vantis",
  180. [1][0x2c - 1] = "Celestica",
  181. [1][0x2d - 1] = "Century",
  182. [1][0x2e - 1] = "Hal Computers",
  183. [1][0x2f - 1] = "Rohm Company Ltd",
  184. [1][0x30 - 1] = "Juniper Networks",
  185. [1][0x31 - 1] = "Libit Signal Processing",
  186. [1][0x32 - 1] = "Mushkin Enhanced Memory",
  187. [1][0x33 - 1] = "Tundra Semiconductor",
  188. [1][0x34 - 1] = "Adaptec Inc",
  189. [1][0x35 - 1] = "LightSpeed Semi.",
  190. [1][0x36 - 1] = "ZSP Corp",
  191. [1][0x37 - 1] = "AMIC Technology",
  192. [1][0x38 - 1] = "Adobe Systems",
  193. [1][0x39 - 1] = "Dynachip",
  194. [1][0x3a - 1] = "PNY Technologies Inc",
  195. [1][0x3b - 1] = "Newport Digital",
  196. [1][0x3c - 1] = "MMC Networks",
  197. [1][0x3d - 1] = "T Square",
  198. [1][0x3e - 1] = "Seiko Epson",
  199. [1][0x3f - 1] = "Broadcom",
  200. [1][0x40 - 1] = "Viking Components",
  201. [1][0x41 - 1] = "V3 Semiconductor",
  202. [1][0x42 - 1] = "Flextronics (Orbit Semiconductor)",
  203. [1][0x43 - 1] = "Suwa Electronics",
  204. [1][0x44 - 1] = "Transmeta",
  205. [1][0x45 - 1] = "Micron CMS",
  206. [1][0x46 - 1] = "American Computer & Digital Components Inc",
  207. [1][0x47 - 1] = "Enhance 3000 Inc",
  208. [1][0x48 - 1] = "Tower Semiconductor",
  209. [1][0x49 - 1] = "CPU Design",
  210. [1][0x4a - 1] = "Price Point",
  211. [1][0x4b - 1] = "Maxim Integrated Product",
  212. [1][0x4c - 1] = "Tellabs",
  213. [1][0x4d - 1] = "Centaur Technology",
  214. [1][0x4e - 1] = "Unigen Corporation",
  215. [1][0x4f - 1] = "Transcend Information",
  216. [1][0x50 - 1] = "Memory Card Technology",
  217. [1][0x51 - 1] = "CKD Corporation Ltd",
  218. [1][0x52 - 1] = "Capital Instruments Inc",
  219. [1][0x53 - 1] = "Aica Kogyo Ltd",
  220. [1][0x54 - 1] = "Linvex Technology",
  221. [1][0x55 - 1] = "MSC Vertriebs GmbH",
  222. [1][0x56 - 1] = "AKM Company Ltd",
  223. [1][0x57 - 1] = "Dynamem Inc",
  224. [1][0x58 - 1] = "NERA ASA",
  225. [1][0x59 - 1] = "GSI Technology",
  226. [1][0x5a - 1] = "Dane-Elec (C Memory)",
  227. [1][0x5b - 1] = "Acorn Computers",
  228. [1][0x5c - 1] = "Lara Technology",
  229. [1][0x5d - 1] = "Oak Technology Inc",
  230. [1][0x5e - 1] = "Itec Memory",
  231. [1][0x5f - 1] = "Tanisys Technology",
  232. [1][0x60 - 1] = "Truevision",
  233. [1][0x61 - 1] = "Wintec Industries",
  234. [1][0x62 - 1] = "Super PC Memory",
  235. [1][0x63 - 1] = "MGV Memory",
  236. [1][0x64 - 1] = "Galvantech",
  237. [1][0x65 - 1] = "Gadzoox Networks",
  238. [1][0x66 - 1] = "Multi Dimensional Cons.",
  239. [1][0x67 - 1] = "GateField",
  240. [1][0x68 - 1] = "Integrated Memory System",
  241. [1][0x69 - 1] = "Triscend",
  242. [1][0x6a - 1] = "XaQti",
  243. [1][0x6b - 1] = "Goldenram",
  244. [1][0x6c - 1] = "Clear Logic",
  245. [1][0x6d - 1] = "Cimaron Communications",
  246. [1][0x6e - 1] = "Nippon Steel Semi. Corp",
  247. [1][0x6f - 1] = "Advantage Memory",
  248. [1][0x70 - 1] = "AMCC",
  249. [1][0x71 - 1] = "LeCroy",
  250. [1][0x72 - 1] = "Yamaha Corporation",
  251. [1][0x73 - 1] = "Digital Microwave",
  252. [1][0x74 - 1] = "NetLogic Microsystems",
  253. [1][0x75 - 1] = "MIMOS Semiconductor",
  254. [1][0x76 - 1] = "Advanced Fibre",
  255. [1][0x77 - 1] = "BF Goodrich Data.",
  256. [1][0x78 - 1] = "Epigram",
  257. [1][0x79 - 1] = "Acbel Polytech Inc",
  258. [1][0x7a - 1] = "Apacer Technology",
  259. [1][0x7b - 1] = "Admor Memory",
  260. [1][0x7c - 1] = "FOXCONN",
  261. [1][0x7d - 1] = "Quadratics Superconductor",
  262. [1][0x7e - 1] = "3COM",
  263. [2][0x01 - 1] = "Camintonn Corporation",
  264. [2][0x02 - 1] = "ISOA Incorporated",
  265. [2][0x03 - 1] = "Agate Semiconductor",
  266. [2][0x04 - 1] = "ADMtek Incorporated",
  267. [2][0x05 - 1] = "HYPERTEC",
  268. [2][0x06 - 1] = "Adhoc Technologies",
  269. [2][0x07 - 1] = "MOSAID Technologies",
  270. [2][0x08 - 1] = "Ardent Technologies",
  271. [2][0x09 - 1] = "Switchcore",
  272. [2][0x0a - 1] = "Cisco Systems Inc",
  273. [2][0x0b - 1] = "Allayer Technologies",
  274. [2][0x0c - 1] = "WorkX AG (Wichman)",
  275. [2][0x0d - 1] = "Oasis Semiconductor",
  276. [2][0x0e - 1] = "Novanet Semiconductor",
  277. [2][0x0f - 1] = "E-M Solutions",
  278. [2][0x10 - 1] = "Power General",
  279. [2][0x11 - 1] = "Advanced Hardware Arch.",
  280. [2][0x12 - 1] = "Inova Semiconductors GmbH",
  281. [2][0x13 - 1] = "Telocity",
  282. [2][0x14 - 1] = "Delkin Devices",
  283. [2][0x15 - 1] = "Symagery Microsystems",
  284. [2][0x16 - 1] = "C-Port Corporation",
  285. [2][0x17 - 1] = "SiberCore Technologies",
  286. [2][0x18 - 1] = "Southland Microsystems",
  287. [2][0x19 - 1] = "Malleable Technologies",
  288. [2][0x1a - 1] = "Kendin Communications",
  289. [2][0x1b - 1] = "Great Technology Microcomputer",
  290. [2][0x1c - 1] = "Sanmina Corporation",
  291. [2][0x1d - 1] = "HADCO Corporation",
  292. [2][0x1e - 1] = "Corsair",
  293. [2][0x1f - 1] = "Actrans System Inc",
  294. [2][0x20 - 1] = "ALPHA Technologies",
  295. [2][0x21 - 1] = "Silicon Laboratories Inc (Cygnal)",
  296. [2][0x22 - 1] = "Artesyn Technologies",
  297. [2][0x23 - 1] = "Align Manufacturing",
  298. [2][0x24 - 1] = "Peregrine Semiconductor",
  299. [2][0x25 - 1] = "Chameleon Systems",
  300. [2][0x26 - 1] = "Aplus Flash Technology",
  301. [2][0x27 - 1] = "MIPS Technologies",
  302. [2][0x28 - 1] = "Chrysalis ITS",
  303. [2][0x29 - 1] = "ADTEC Corporation",
  304. [2][0x2a - 1] = "Kentron Technologies",
  305. [2][0x2b - 1] = "Win Technologies",
  306. [2][0x2c - 1] = "Tezzaron Semiconductor",
  307. [2][0x2d - 1] = "Extreme Packet Devices",
  308. [2][0x2e - 1] = "RF Micro Devices",
  309. [2][0x2f - 1] = "Siemens AG",
  310. [2][0x30 - 1] = "Sarnoff Corporation",
  311. [2][0x31 - 1] = "Itautec SA",
  312. [2][0x32 - 1] = "Radiata Inc",
  313. [2][0x33 - 1] = "Benchmark Elect. (AVEX)",
  314. [2][0x34 - 1] = "Legend",
  315. [2][0x35 - 1] = "SpecTek Incorporated",
  316. [2][0x36 - 1] = "Hi/fn",
  317. [2][0x37 - 1] = "Enikia Incorporated",
  318. [2][0x38 - 1] = "SwitchOn Networks",
  319. [2][0x39 - 1] = "AANetcom Incorporated",
  320. [2][0x3a - 1] = "Micro Memory Bank",
  321. [2][0x3b - 1] = "ESS Technology",
  322. [2][0x3c - 1] = "Virata Corporation",
  323. [2][0x3d - 1] = "Excess Bandwidth",
  324. [2][0x3e - 1] = "West Bay Semiconductor",
  325. [2][0x3f - 1] = "DSP Group",
  326. [2][0x40 - 1] = "Newport Communications",
  327. [2][0x41 - 1] = "Chip2Chip Incorporated",
  328. [2][0x42 - 1] = "Phobos Corporation",
  329. [2][0x43 - 1] = "Intellitech Corporation",
  330. [2][0x44 - 1] = "Nordic VLSI ASA",
  331. [2][0x45 - 1] = "Ishoni Networks",
  332. [2][0x46 - 1] = "Silicon Spice",
  333. [2][0x47 - 1] = "Alchemy Semiconductor",
  334. [2][0x48 - 1] = "Agilent Technologies",
  335. [2][0x49 - 1] = "Centillium Communications",
  336. [2][0x4a - 1] = "W.L. Gore",
  337. [2][0x4b - 1] = "HanBit Electronics",
  338. [2][0x4c - 1] = "GlobeSpan",
  339. [2][0x4d - 1] = "Element 14",
  340. [2][0x4e - 1] = "Pycon",
  341. [2][0x4f - 1] = "Saifun Semiconductors",
  342. [2][0x50 - 1] = "Sibyte Incorporated",
  343. [2][0x51 - 1] = "MetaLink Technologies",
  344. [2][0x52 - 1] = "Feiya Technology",
  345. [2][0x53 - 1] = "I & C Technology",
  346. [2][0x54 - 1] = "Shikatronics",
  347. [2][0x55 - 1] = "Elektrobit",
  348. [2][0x56 - 1] = "Megic",
  349. [2][0x57 - 1] = "Com-Tier",
  350. [2][0x58 - 1] = "Malaysia Micro Solutions",
  351. [2][0x59 - 1] = "Hyperchip",
  352. [2][0x5a - 1] = "Gemstone Communications",
  353. [2][0x5b - 1] = "Anadigm (Anadyne)",
  354. [2][0x5c - 1] = "3ParData",
  355. [2][0x5d - 1] = "Mellanox Technologies",
  356. [2][0x5e - 1] = "Tenx Technologies",
  357. [2][0x5f - 1] = "Helix AG",
  358. [2][0x60 - 1] = "Domosys",
  359. [2][0x61 - 1] = "Skyup Technology",
  360. [2][0x62 - 1] = "HiNT Corporation",
  361. [2][0x63 - 1] = "Chiaro",
  362. [2][0x64 - 1] = "MDT Technologies GmbH",
  363. [2][0x65 - 1] = "Exbit Technology A/S",
  364. [2][0x66 - 1] = "Integrated Technology Express",
  365. [2][0x67 - 1] = "AVED Memory",
  366. [2][0x68 - 1] = "Legerity",
  367. [2][0x69 - 1] = "Jasmine Networks",
  368. [2][0x6a - 1] = "Caspian Networks",
  369. [2][0x6b - 1] = "nCUBE",
  370. [2][0x6c - 1] = "Silicon Access Networks",
  371. [2][0x6d - 1] = "FDK Corporation",
  372. [2][0x6e - 1] = "High Bandwidth Access",
  373. [2][0x6f - 1] = "MultiLink Technology",
  374. [2][0x70 - 1] = "BRECIS",
  375. [2][0x71 - 1] = "World Wide Packets",
  376. [2][0x72 - 1] = "APW",
  377. [2][0x73 - 1] = "Chicory Systems",
  378. [2][0x74 - 1] = "Xstream Logic",
  379. [2][0x75 - 1] = "Fast-Chip",
  380. [2][0x76 - 1] = "Zucotto Wireless",
  381. [2][0x77 - 1] = "Realchip",
  382. [2][0x78 - 1] = "Galaxy Power",
  383. [2][0x79 - 1] = "eSilicon",
  384. [2][0x7a - 1] = "Morphics Technology",
  385. [2][0x7b - 1] = "Accelerant Networks",
  386. [2][0x7c - 1] = "Silicon Wave",
  387. [2][0x7d - 1] = "SandCraft",
  388. [2][0x7e - 1] = "Elpida",
  389. [3][0x01 - 1] = "Solectron",
  390. [3][0x02 - 1] = "Optosys Technologies",
  391. [3][0x03 - 1] = "Buffalo (Formerly Melco)",
  392. [3][0x04 - 1] = "TriMedia Technologies",
  393. [3][0x05 - 1] = "Cyan Technologies",
  394. [3][0x06 - 1] = "Global Locate",
  395. [3][0x07 - 1] = "Optillion",
  396. [3][0x08 - 1] = "Terago Communications",
  397. [3][0x09 - 1] = "Ikanos Communications",
  398. [3][0x0a - 1] = "Princeton Technology",
  399. [3][0x0b - 1] = "Nanya Technology",
  400. [3][0x0c - 1] = "Elite Flash Storage",
  401. [3][0x0d - 1] = "Mysticom",
  402. [3][0x0e - 1] = "LightSand Communications",
  403. [3][0x0f - 1] = "ATI Technologies",
  404. [3][0x10 - 1] = "Agere Systems",
  405. [3][0x11 - 1] = "NeoMagic",
  406. [3][0x12 - 1] = "AuroraNetics",
  407. [3][0x13 - 1] = "Golden Empire",
  408. [3][0x14 - 1] = "Mushkin",
  409. [3][0x15 - 1] = "Tioga Technologies",
  410. [3][0x16 - 1] = "Netlist",
  411. [3][0x17 - 1] = "TeraLogic",
  412. [3][0x18 - 1] = "Cicada Semiconductor",
  413. [3][0x19 - 1] = "Centon Electronics",
  414. [3][0x1a - 1] = "Tyco Electronics",
  415. [3][0x1b - 1] = "Magis Works",
  416. [3][0x1c - 1] = "Zettacom",
  417. [3][0x1d - 1] = "Cogency Semiconductor",
  418. [3][0x1e - 1] = "Chipcon AS",
  419. [3][0x1f - 1] = "Aspex Technology",
  420. [3][0x20 - 1] = "F5 Networks",
  421. [3][0x21 - 1] = "Programmable Silicon Solutions",
  422. [3][0x22 - 1] = "ChipWrights",
  423. [3][0x23 - 1] = "Acorn Networks",
  424. [3][0x24 - 1] = "Quicklogic",
  425. [3][0x25 - 1] = "Kingmax Semiconductor",
  426. [3][0x26 - 1] = "BOPS",
  427. [3][0x27 - 1] = "Flasys",
  428. [3][0x28 - 1] = "BitBlitz Communications",
  429. [3][0x29 - 1] = "eMemory Technology",
  430. [3][0x2a - 1] = "Procket Networks",
  431. [3][0x2b - 1] = "Purple Ray",
  432. [3][0x2c - 1] = "Trebia Networks",
  433. [3][0x2d - 1] = "Delta Electronics",
  434. [3][0x2e - 1] = "Onex Communications",
  435. [3][0x2f - 1] = "Ample Communications",
  436. [3][0x30 - 1] = "Memory Experts Intl",
  437. [3][0x31 - 1] = "Astute Networks",
  438. [3][0x32 - 1] = "Azanda Network Devices",
  439. [3][0x33 - 1] = "Dibcom",
  440. [3][0x34 - 1] = "Tekmos",
  441. [3][0x35 - 1] = "API NetWorks",
  442. [3][0x36 - 1] = "Bay Microsystems",
  443. [3][0x37 - 1] = "Firecron Ltd",
  444. [3][0x38 - 1] = "Resonext Communications",
  445. [3][0x39 - 1] = "Tachys Technologies",
  446. [3][0x3a - 1] = "Equator Technology",
  447. [3][0x3b - 1] = "Concept Computer",
  448. [3][0x3c - 1] = "SILCOM",
  449. [3][0x3d - 1] = "3Dlabs",
  450. [3][0x3e - 1] = "c't Magazine",
  451. [3][0x3f - 1] = "Sanera Systems",
  452. [3][0x40 - 1] = "Silicon Packets",
  453. [3][0x41 - 1] = "Viasystems Group",
  454. [3][0x42 - 1] = "Simtek",
  455. [3][0x43 - 1] = "Semicon Devices Singapore",
  456. [3][0x44 - 1] = "Satron Handelsges",
  457. [3][0x45 - 1] = "Improv Systems",
  458. [3][0x46 - 1] = "INDUSYS GmbH",
  459. [3][0x47 - 1] = "Corrent",
  460. [3][0x48 - 1] = "Infrant Technologies",
  461. [3][0x49 - 1] = "Ritek Corp",
  462. [3][0x4a - 1] = "empowerTel Networks",
  463. [3][0x4b - 1] = "Hypertec",
  464. [3][0x4c - 1] = "Cavium Networks",
  465. [3][0x4d - 1] = "PLX Technology",
  466. [3][0x4e - 1] = "Massana Design",
  467. [3][0x4f - 1] = "Intrinsity",
  468. [3][0x50 - 1] = "Valence Semiconductor",
  469. [3][0x51 - 1] = "Terawave Communications",
  470. [3][0x52 - 1] = "IceFyre Semiconductor",
  471. [3][0x53 - 1] = "Primarion",
  472. [3][0x54 - 1] = "Picochip Designs Ltd",
  473. [3][0x55 - 1] = "Silverback Systems",
  474. [3][0x56 - 1] = "Jade Star Technologies",
  475. [3][0x57 - 1] = "Pijnenburg Securealink",
  476. [3][0x58 - 1] = "takeMS - Ultron AG",
  477. [3][0x59 - 1] = "Cambridge Silicon Radio",
  478. [3][0x5a - 1] = "Swissbit",
  479. [3][0x5b - 1] = "Nazomi Communications",
  480. [3][0x5c - 1] = "eWave System",
  481. [3][0x5d - 1] = "Rockwell Collins",
  482. [3][0x5e - 1] = "Picocel Co Ltd (Paion)",
  483. [3][0x5f - 1] = "Alphamosaic Ltd",
  484. [3][0x60 - 1] = "Sandburst",
  485. [3][0x61 - 1] = "SiCon Video",
  486. [3][0x62 - 1] = "NanoAmp Solutions",
  487. [3][0x63 - 1] = "Ericsson Technology",
  488. [3][0x64 - 1] = "PrairieComm",
  489. [3][0x65 - 1] = "Mitac International",
  490. [3][0x66 - 1] = "Layer N Networks",
  491. [3][0x67 - 1] = "MtekVision (Atsana)",
  492. [3][0x68 - 1] = "Allegro Networks",
  493. [3][0x69 - 1] = "Marvell Semiconductors",
  494. [3][0x6a - 1] = "Netergy Microelectronic",
  495. [3][0x6b - 1] = "NVIDIA",
  496. [3][0x6c - 1] = "Internet Machines",
  497. [3][0x6d - 1] = "Memorysolution GmbH",
  498. [3][0x6e - 1] = "Litchfield Communication",
  499. [3][0x6f - 1] = "Accton Technology",
  500. [3][0x70 - 1] = "Teradiant Networks",
  501. [3][0x71 - 1] = "Scaleo Chip",
  502. [3][0x72 - 1] = "Cortina Systems",
  503. [3][0x73 - 1] = "RAM Components",
  504. [3][0x74 - 1] = "Raqia Networks",
  505. [3][0x75 - 1] = "ClearSpeed",
  506. [3][0x76 - 1] = "Matsushita Battery",
  507. [3][0x77 - 1] = "Xelerated",
  508. [3][0x78 - 1] = "SimpleTech",
  509. [3][0x79 - 1] = "Utron Technology",
  510. [3][0x7a - 1] = "Astec International",
  511. [3][0x7b - 1] = "AVM gmbH",
  512. [3][0x7c - 1] = "Redux Communications",
  513. [3][0x7d - 1] = "Dot Hill Systems",
  514. [3][0x7e - 1] = "TeraChip",
  515. [4][0x01 - 1] = "T-RAM Incorporated",
  516. [4][0x02 - 1] = "Innovics Wireless",
  517. [4][0x03 - 1] = "Teknovus",
  518. [4][0x04 - 1] = "KeyEye Communications",
  519. [4][0x05 - 1] = "Runcom Technologies",
  520. [4][0x06 - 1] = "RedSwitch",
  521. [4][0x07 - 1] = "Dotcast",
  522. [4][0x08 - 1] = "Silicon Mountain Memory",
  523. [4][0x09 - 1] = "Signia Technologies",
  524. [4][0x0a - 1] = "Pixim",
  525. [4][0x0b - 1] = "Galazar Networks",
  526. [4][0x0c - 1] = "White Electronic Designs",
  527. [4][0x0d - 1] = "Patriot Scientific",
  528. [4][0x0e - 1] = "Neoaxiom Corporation",
  529. [4][0x0f - 1] = "3Y Power Technology",
  530. [4][0x10 - 1] = "Scaleo Chip",
  531. [4][0x11 - 1] = "Potentia Power Systems",
  532. [4][0x12 - 1] = "C-guys Incorporated",
  533. [4][0x13 - 1] = "Digital Communications Technology Inc",
  534. [4][0x14 - 1] = "Silicon-Based Technology",
  535. [4][0x15 - 1] = "Fulcrum Microsystems",
  536. [4][0x16 - 1] = "Positivo Informatica Ltd",
  537. [4][0x17 - 1] = "XIOtech Corporation",
  538. [4][0x18 - 1] = "PortalPlayer",
  539. [4][0x19 - 1] = "Zhiying Software",
  540. [4][0x1a - 1] = "ParkerVision Inc",
  541. [4][0x1b - 1] = "Phonex Broadband",
  542. [4][0x1c - 1] = "Skyworks Solutions",
  543. [4][0x1d - 1] = "Entropic Communications",
  544. [4][0x1e - 1] = "I'M Intelligent Memory Ltd",
  545. [4][0x1f - 1] = "Zensys A/S",
  546. [4][0x20 - 1] = "Legend Silicon Corp",
  547. [4][0x21 - 1] = "Sci-worx GmbH",
  548. [4][0x22 - 1] = "SMSC (Standard Microsystems)",
  549. [4][0x23 - 1] = "Renesas Electronics",
  550. [4][0x24 - 1] = "Raza Microelectronics",
  551. [4][0x25 - 1] = "Phyworks",
  552. [4][0x26 - 1] = "MediaTek",
  553. [4][0x27 - 1] = "Non-cents Productions",
  554. [4][0x28 - 1] = "US Modular",
  555. [4][0x29 - 1] = "Wintegra Ltd",
  556. [4][0x2a - 1] = "Mathstar",
  557. [4][0x2b - 1] = "StarCore",
  558. [4][0x2c - 1] = "Oplus Technologies",
  559. [4][0x2d - 1] = "Mindspeed",
  560. [4][0x2e - 1] = "Just Young Computer",
  561. [4][0x2f - 1] = "Radia Communications",
  562. [4][0x30 - 1] = "OCZ",
  563. [4][0x31 - 1] = "Emuzed",
  564. [4][0x32 - 1] = "LOGIC Devices",
  565. [4][0x33 - 1] = "Inphi Corporation",
  566. [4][0x34 - 1] = "Quake Technologies",
  567. [4][0x35 - 1] = "Vixel",
  568. [4][0x36 - 1] = "SolusTek",
  569. [4][0x37 - 1] = "Kongsberg Maritime",
  570. [4][0x38 - 1] = "Faraday Technology",
  571. [4][0x39 - 1] = "Altium Ltd",
  572. [4][0x3a - 1] = "Insyte",
  573. [4][0x3b - 1] = "ARM Ltd",
  574. [4][0x3c - 1] = "DigiVision",
  575. [4][0x3d - 1] = "Vativ Technologies",
  576. [4][0x3e - 1] = "Endicott Interconnect Technologies",
  577. [4][0x3f - 1] = "Pericom",
  578. [4][0x40 - 1] = "Bandspeed",
  579. [4][0x41 - 1] = "LeWiz Communications",
  580. [4][0x42 - 1] = "CPU Technology",
  581. [4][0x43 - 1] = "Ramaxel Technology",
  582. [4][0x44 - 1] = "DSP Group",
  583. [4][0x45 - 1] = "Axis Communications",
  584. [4][0x46 - 1] = "Legacy Electronics",
  585. [4][0x47 - 1] = "Chrontel",
  586. [4][0x48 - 1] = "Powerchip Semiconductor",
  587. [4][0x49 - 1] = "MobilEye Technologies",
  588. [4][0x4a - 1] = "Excel Semiconductor",
  589. [4][0x4b - 1] = "A-DATA Technology",
  590. [4][0x4c - 1] = "VirtualDigm",
  591. [4][0x4d - 1] = "G Skill Intl",
  592. [4][0x4e - 1] = "Quanta Computer",
  593. [4][0x4f - 1] = "Yield Microelectronics",
  594. [4][0x50 - 1] = "Afa Technologies",
  595. [4][0x51 - 1] = "KINGBOX Technology Co Ltd",
  596. [4][0x52 - 1] = "Ceva",
  597. [4][0x53 - 1] = "iStor Networks",
  598. [4][0x54 - 1] = "Advance Modules",
  599. [4][0x55 - 1] = "Microsoft",
  600. [4][0x56 - 1] = "Open-Silicon",
  601. [4][0x57 - 1] = "Goal Semiconductor",
  602. [4][0x58 - 1] = "ARC International",
  603. [4][0x59 - 1] = "Simmtec",
  604. [4][0x5a - 1] = "Metanoia",
  605. [4][0x5b - 1] = "Key Stream",
  606. [4][0x5c - 1] = "Lowrance Electronics",
  607. [4][0x5d - 1] = "Adimos",
  608. [4][0x5e - 1] = "SiGe Semiconductor",
  609. [4][0x5f - 1] = "Fodus Communications",
  610. [4][0x60 - 1] = "Credence Systems Corp",
  611. [4][0x61 - 1] = "Genesis Microchip Inc",
  612. [4][0x62 - 1] = "Vihana Inc",
  613. [4][0x63 - 1] = "WIS Technologies",
  614. [4][0x64 - 1] = "GateChange Technologies",
  615. [4][0x65 - 1] = "High Density Devices AS",
  616. [4][0x66 - 1] = "Synopsys",
  617. [4][0x67 - 1] = "Gigaram",
  618. [4][0x68 - 1] = "Enigma Semiconductor Inc",
  619. [4][0x69 - 1] = "Century Micro Inc",
  620. [4][0x6a - 1] = "Icera Semiconductor",
  621. [4][0x6b - 1] = "Mediaworks Integrated Systems",
  622. [4][0x6c - 1] = "O'Neil Product Development",
  623. [4][0x6d - 1] = "Supreme Top Technology Ltd",
  624. [4][0x6e - 1] = "MicroDisplay Corporation",
  625. [4][0x6f - 1] = "Team Group Inc",
  626. [4][0x70 - 1] = "Sinett Corporation",
  627. [4][0x71 - 1] = "Toshiba Corporation",
  628. [4][0x72 - 1] = "Tensilica",
  629. [4][0x73 - 1] = "SiRF Technology",
  630. [4][0x74 - 1] = "Bacoc Inc",
  631. [4][0x75 - 1] = "SMaL Camera Technologies",
  632. [4][0x76 - 1] = "Thomson SC",
  633. [4][0x77 - 1] = "Airgo Networks",
  634. [4][0x78 - 1] = "Wisair Ltd",
  635. [4][0x79 - 1] = "SigmaTel",
  636. [4][0x7a - 1] = "Arkados",
  637. [4][0x7b - 1] = "Compete IT gmbH Co KG",
  638. [4][0x7c - 1] = "Eudar Technology Inc",
  639. [4][0x7d - 1] = "Focus Enhancements",
  640. [4][0x7e - 1] = "Xyratex",
  641. [5][0x01 - 1] = "Specular Networks",
  642. [5][0x02 - 1] = "Patriot Memory (PDP Systems)",
  643. [5][0x03 - 1] = "U-Chip Technology Corp",
  644. [5][0x04 - 1] = "Silicon Optix",
  645. [5][0x05 - 1] = "Greenfield Networks",
  646. [5][0x06 - 1] = "CompuRAM GmbH",
  647. [5][0x07 - 1] = "Stargen Inc",
  648. [5][0x08 - 1] = "NetCell Corporation",
  649. [5][0x09 - 1] = "Excalibrus Technologies Ltd",
  650. [5][0x0a - 1] = "SCM Microsystems",
  651. [5][0x0b - 1] = "Xsigo Systems Inc",
  652. [5][0x0c - 1] = "CHIPS & Systems Inc",
  653. [5][0x0d - 1] = "Tier 1 Multichip Solutions",
  654. [5][0x0e - 1] = "CWRL Labs",
  655. [5][0x0f - 1] = "Teradici",
  656. [5][0x10 - 1] = "Gigaram Inc",
  657. [5][0x11 - 1] = "g2 Microsystems",
  658. [5][0x12 - 1] = "PowerFlash Semiconductor",
  659. [5][0x13 - 1] = "P.A. Semi Inc",
  660. [5][0x14 - 1] = "NovaTech Solutions S.A.",
  661. [5][0x15 - 1] = "c2 Microsystems Inc",
  662. [5][0x16 - 1] = "Level5 Networks",
  663. [5][0x17 - 1] = "COS Memory AG",
  664. [5][0x18 - 1] = "Innovasic Semiconductor",
  665. [5][0x19 - 1] = "02IC Co Ltd",
  666. [5][0x1a - 1] = "Tabula Inc",
  667. [5][0x1b - 1] = "Crucial Technology",
  668. [5][0x1c - 1] = "Chelsio Communications",
  669. [5][0x1d - 1] = "Solarflare Communications",
  670. [5][0x1e - 1] = "Xambala Inc",
  671. [5][0x1f - 1] = "EADS Astrium",
  672. [5][0x20 - 1] = "Terra Semiconductor Inc",
  673. [5][0x21 - 1] = "Imaging Works Inc",
  674. [5][0x22 - 1] = "Astute Networks Inc",
  675. [5][0x23 - 1] = "Tzero",
  676. [5][0x24 - 1] = "Emulex",
  677. [5][0x25 - 1] = "Power-One",
  678. [5][0x26 - 1] = "Pulse~LINK Inc",
  679. [5][0x27 - 1] = "Hon Hai Precision Industry",
  680. [5][0x28 - 1] = "White Rock Networks Inc",
  681. [5][0x29 - 1] = "Telegent Systems USA Inc",
  682. [5][0x2a - 1] = "Atrua Technologies Inc",
  683. [5][0x2b - 1] = "Acbel Polytech Inc",
  684. [5][0x2c - 1] = "eRide Inc",
  685. [5][0x2d - 1] = "ULi Electronics Inc",
  686. [5][0x2e - 1] = "Magnum Semiconductor Inc",
  687. [5][0x2f - 1] = "neoOne Technology Inc",
  688. [5][0x30 - 1] = "Connex Technology Inc",
  689. [5][0x31 - 1] = "Stream Processors Inc",
  690. [5][0x32 - 1] = "Focus Enhancements",
  691. [5][0x33 - 1] = "Telecis Wireless Inc",
  692. [5][0x34 - 1] = "uNav Microelectronics",
  693. [5][0x35 - 1] = "Tarari Inc",
  694. [5][0x36 - 1] = "Ambric Inc",
  695. [5][0x37 - 1] = "Newport Media Inc",
  696. [5][0x38 - 1] = "VMTS",
  697. [5][0x39 - 1] = "Enuclia Semiconductor Inc",
  698. [5][0x3a - 1] = "Virtium Technology Inc",
  699. [5][0x3b - 1] = "Solid State System Co Ltd",
  700. [5][0x3c - 1] = "Kian Tech LLC",
  701. [5][0x3d - 1] = "Artimi",
  702. [5][0x3e - 1] = "Power Quotient International",
  703. [5][0x3f - 1] = "Avago Technologies",
  704. [5][0x40 - 1] = "ADTechnology",
  705. [5][0x41 - 1] = "Sigma Designs",
  706. [5][0x42 - 1] = "SiCortex Inc",
  707. [5][0x43 - 1] = "Ventura Technology Group",
  708. [5][0x44 - 1] = "eASIC",
  709. [5][0x45 - 1] = "M.H.S. SAS",
  710. [5][0x46 - 1] = "Micro Star International",
  711. [5][0x47 - 1] = "Rapport Inc",
  712. [5][0x48 - 1] = "Makway International",
  713. [5][0x49 - 1] = "Broad Reach Engineering Co",
  714. [5][0x4a - 1] = "Semiconductor Mfg Intl Corp",
  715. [5][0x4b - 1] = "SiConnect",
  716. [5][0x4c - 1] = "FCI USA Inc",
  717. [5][0x4d - 1] = "Validity Sensors",
  718. [5][0x4e - 1] = "Coney Technology Co Ltd",
  719. [5][0x4f - 1] = "Spans Logic",
  720. [5][0x50 - 1] = "Neterion Inc",
  721. [5][0x51 - 1] = "Qimonda",
  722. [5][0x52 - 1] = "New Japan Radio Co Ltd",
  723. [5][0x53 - 1] = "Velogix",
  724. [5][0x54 - 1] = "Montalvo Systems",
  725. [5][0x55 - 1] = "iVivity Inc",
  726. [5][0x56 - 1] = "Walton Chaintech",
  727. [5][0x57 - 1] = "AENEON",
  728. [5][0x58 - 1] = "Lorom Industrial Co Ltd",
  729. [5][0x59 - 1] = "Radiospire Networks",
  730. [5][0x5a - 1] = "Sensio Technologies Inc",
  731. [5][0x5b - 1] = "Nethra Imaging",
  732. [5][0x5c - 1] = "Hexon Technology Pte Ltd",
  733. [5][0x5d - 1] = "CompuStocx (CSX)",
  734. [5][0x5e - 1] = "Methode Electronics Inc",
  735. [5][0x5f - 1] = "Connect One Ltd",
  736. [5][0x60 - 1] = "Opulan Technologies",
  737. [5][0x61 - 1] = "Septentrio NV",
  738. [5][0x62 - 1] = "Goldenmars Technology Inc",
  739. [5][0x63 - 1] = "Kreton Corporation",
  740. [5][0x64 - 1] = "Cochlear Ltd",
  741. [5][0x65 - 1] = "Altair Semiconductor",
  742. [5][0x66 - 1] = "NetEffect Inc",
  743. [5][0x67 - 1] = "Spansion Inc",
  744. [5][0x68 - 1] = "Taiwan Semiconductor Mfg",
  745. [5][0x69 - 1] = "Emphany Systems Inc",
  746. [5][0x6a - 1] = "ApaceWave Technologies",
  747. [5][0x6b - 1] = "Mobilygen Corporation",
  748. [5][0x6c - 1] = "Tego",
  749. [5][0x6d - 1] = "Cswitch Corporation",
  750. [5][0x6e - 1] = "Haier (Beijing) IC Design Co",
  751. [5][0x6f - 1] = "MetaRAM",
  752. [5][0x70 - 1] = "Axel Electronics Co Ltd",
  753. [5][0x71 - 1] = "Tilera Corporation",
  754. [5][0x72 - 1] = "Aquantia",
  755. [5][0x73 - 1] = "Vivace Semiconductor",
  756. [5][0x74 - 1] = "Redpine Signals",
  757. [5][0x75 - 1] = "Octalica",
  758. [5][0x76 - 1] = "InterDigital Communications",
  759. [5][0x77 - 1] = "Avant Technology",
  760. [5][0x78 - 1] = "Asrock Inc",
  761. [5][0x79 - 1] = "Availink",
  762. [5][0x7a - 1] = "Quartics Inc",
  763. [5][0x7b - 1] = "Element CXI",
  764. [5][0x7c - 1] = "Innovaciones Microelectronicas",
  765. [5][0x7d - 1] = "VeriSilicon Microelectronics",
  766. [5][0x7e - 1] = "W5 Networks",
  767. [6][0x01 - 1] = "MOVEKING",
  768. [6][0x02 - 1] = "Mavrix Technology Inc",
  769. [6][0x03 - 1] = "CellGuide Ltd",
  770. [6][0x04 - 1] = "Faraday Technology",
  771. [6][0x05 - 1] = "Diablo Technologies Inc",
  772. [6][0x06 - 1] = "Jennic",
  773. [6][0x07 - 1] = "Octasic",
  774. [6][0x08 - 1] = "Molex Incorporated",
  775. [6][0x09 - 1] = "3Leaf Networks",
  776. [6][0x0a - 1] = "Bright Micron Technology",
  777. [6][0x0b - 1] = "Netxen",
  778. [6][0x0c - 1] = "NextWave Broadband Inc",
  779. [6][0x0d - 1] = "DisplayLink",
  780. [6][0x0e - 1] = "ZMOS Technology",
  781. [6][0x0f - 1] = "Tec-Hill",
  782. [6][0x10 - 1] = "Multigig Inc",
  783. [6][0x11 - 1] = "Amimon",
  784. [6][0x12 - 1] = "Euphonic Technologies Inc",
  785. [6][0x13 - 1] = "BRN Phoenix",
  786. [6][0x14 - 1] = "InSilica",
  787. [6][0x15 - 1] = "Ember Corporation",
  788. [6][0x16 - 1] = "Avexir Technologies Corporation",
  789. [6][0x17 - 1] = "Echelon Corporation",
  790. [6][0x18 - 1] = "Edgewater Computer Systems",
  791. [6][0x19 - 1] = "XMOS Semiconductor Ltd",
  792. [6][0x1a - 1] = "GENUSION Inc",
  793. [6][0x1b - 1] = "Memory Corp NV",
  794. [6][0x1c - 1] = "SiliconBlue Technologies",
  795. [6][0x1d - 1] = "Rambus Inc",
  796. [6][0x1e - 1] = "Andes Technology Corporation",
  797. [6][0x1f - 1] = "Coronis Systems",
  798. [6][0x20 - 1] = "Achronix Semiconductor",
  799. [6][0x21 - 1] = "Siano Mobile Silicon Ltd",
  800. [6][0x22 - 1] = "Semtech Corporation",
  801. [6][0x23 - 1] = "Pixelworks Inc",
  802. [6][0x24 - 1] = "Gaisler Research AB",
  803. [6][0x25 - 1] = "Teranetics",
  804. [6][0x26 - 1] = "Toppan Printing Co Ltd",
  805. [6][0x27 - 1] = "Kingxcon",
  806. [6][0x28 - 1] = "Silicon Integrated Systems",
  807. [6][0x29 - 1] = "I-O Data Device Inc",
  808. [6][0x2a - 1] = "NDS Americas Inc",
  809. [6][0x2b - 1] = "Solomon Systech Limited",
  810. [6][0x2c - 1] = "On Demand Microelectronics",
  811. [6][0x2d - 1] = "Amicus Wireless Inc",
  812. [6][0x2e - 1] = "SMARDTV SNC",
  813. [6][0x2f - 1] = "Comsys Communication Ltd",
  814. [6][0x30 - 1] = "Movidia Ltd",
  815. [6][0x31 - 1] = "Javad GNSS Inc",
  816. [6][0x32 - 1] = "Montage Technology Group",
  817. [6][0x33 - 1] = "Trident Microsystems",
  818. [6][0x34 - 1] = "Super Talent",
  819. [6][0x35 - 1] = "Optichron Inc",
  820. [6][0x36 - 1] = "Future Waves UK Ltd",
  821. [6][0x37 - 1] = "SiBEAM Inc",
  822. [6][0x38 - 1] = "InicoreInc",
  823. [6][0x39 - 1] = "Virident Systems",
  824. [6][0x3a - 1] = "M2000 Inc",
  825. [6][0x3b - 1] = "ZeroG Wireless Inc",
  826. [6][0x3c - 1] = "Gingle Technology Co Ltd",
  827. [6][0x3d - 1] = "Space Micro Inc",
  828. [6][0x3e - 1] = "Wilocity",
  829. [6][0x3f - 1] = "Novafora Inc",
  830. [6][0x40 - 1] = "iKoa Corporation",
  831. [6][0x41 - 1] = "ASint Technology",
  832. [6][0x42 - 1] = "Ramtron",
  833. [6][0x43 - 1] = "Plato Networks Inc",
  834. [6][0x44 - 1] = "IPtronics AS",
  835. [6][0x45 - 1] = "Infinite-Memories",
  836. [6][0x46 - 1] = "Parade Technologies Inc",
  837. [6][0x47 - 1] = "Dune Networks",
  838. [6][0x48 - 1] = "GigaDevice Semiconductor",
  839. [6][0x49 - 1] = "Modu Ltd",
  840. [6][0x4a - 1] = "CEITEC",
  841. [6][0x4b - 1] = "Northrop Grumman",
  842. [6][0x4c - 1] = "XRONET Corporation",
  843. [6][0x4d - 1] = "Sicon Semiconductor AB",
  844. [6][0x4e - 1] = "Atla Electronics Co Ltd",
  845. [6][0x4f - 1] = "TOPRAM Technology",
  846. [6][0x50 - 1] = "Silego Technology Inc",
  847. [6][0x51 - 1] = "Kinglife",
  848. [6][0x52 - 1] = "Ability Industries Ltd",
  849. [6][0x53 - 1] = "Silicon Power Computer & Communications",
  850. [6][0x54 - 1] = "Augusta Technology Inc",
  851. [6][0x55 - 1] = "Nantronics Semiconductors",
  852. [6][0x56 - 1] = "Hilscher Gesellschaft",
  853. [6][0x57 - 1] = "Quixant Ltd",
  854. [6][0x58 - 1] = "Percello Ltd",
  855. [6][0x59 - 1] = "NextIO Inc",
  856. [6][0x5a - 1] = "Scanimetrics Inc",
  857. [6][0x5b - 1] = "FS-Semi Company Ltd",
  858. [6][0x5c - 1] = "Infinera Corporation",
  859. [6][0x5d - 1] = "SandForce Inc",
  860. [6][0x5e - 1] = "Lexar Media",
  861. [6][0x5f - 1] = "Teradyne Inc",
  862. [6][0x60 - 1] = "Memory Exchange Corp",
  863. [6][0x61 - 1] = "Suzhou Smartek Electronics",
  864. [6][0x62 - 1] = "Avantium Corporation",
  865. [6][0x63 - 1] = "ATP Electronics Inc",
  866. [6][0x64 - 1] = "Valens Semiconductor Ltd",
  867. [6][0x65 - 1] = "Agate Logic Inc",
  868. [6][0x66 - 1] = "Netronome",
  869. [6][0x67 - 1] = "Zenverge Inc",
  870. [6][0x68 - 1] = "N-trig Ltd",
  871. [6][0x69 - 1] = "SanMax Technologies Inc",
  872. [6][0x6a - 1] = "Contour Semiconductor Inc",
  873. [6][0x6b - 1] = "TwinMOS",
  874. [6][0x6c - 1] = "Silicon Systems Inc",
  875. [6][0x6d - 1] = "V-Color Technology Inc",
  876. [6][0x6e - 1] = "Certicom Corporation",
  877. [6][0x6f - 1] = "JSC ICC Milandr",
  878. [6][0x70 - 1] = "PhotoFast Global Inc",
  879. [6][0x71 - 1] = "InnoDisk Corporation",
  880. [6][0x72 - 1] = "Muscle Power",
  881. [6][0x73 - 1] = "Energy Micro",
  882. [6][0x74 - 1] = "Innofidei",
  883. [6][0x75 - 1] = "CopperGate Communications",
  884. [6][0x76 - 1] = "Holtek Semiconductor Inc",
  885. [6][0x77 - 1] = "Myson Century Inc",
  886. [6][0x78 - 1] = "FIDELIX",
  887. [6][0x79 - 1] = "Red Digital Cinema",
  888. [6][0x7a - 1] = "Densbits Technology",
  889. [6][0x7b - 1] = "Zempro",
  890. [6][0x7c - 1] = "MoSys",
  891. [6][0x7d - 1] = "Provigent",
  892. [6][0x7e - 1] = "Triad Semiconductor Inc",
  893. [7][0x01 - 1] = "Siklu Communication Ltd",
  894. [7][0x02 - 1] = "A Force Manufacturing Ltd",
  895. [7][0x03 - 1] = "Strontium",
  896. [7][0x04 - 1] = "ALi Corp (Abilis Systems)",
  897. [7][0x05 - 1] = "Siglead Inc",
  898. [7][0x06 - 1] = "Ubicom Inc",
  899. [7][0x07 - 1] = "Unifosa Corporation",
  900. [7][0x08 - 1] = "Stretch Inc",
  901. [7][0x09 - 1] = "Lantiq Deutschland GmbH",
  902. [7][0x0a - 1] = "Visipro.",
  903. [7][0x0b - 1] = "EKMemory",
  904. [7][0x0c - 1] = "Microelectronics Institute ZTE",
  905. [7][0x0d - 1] = "u-blox AG",
  906. [7][0x0e - 1] = "Carry Technology Co Ltd",
  907. [7][0x0f - 1] = "Nokia",
  908. [7][0x10 - 1] = "King Tiger Technology",
  909. [7][0x11 - 1] = "Sierra Wireless",
  910. [7][0x12 - 1] = "HT Micron",
  911. [7][0x13 - 1] = "Albatron Technology Co Ltd",
  912. [7][0x14 - 1] = "Leica Geosystems AG",
  913. [7][0x15 - 1] = "BroadLight",
  914. [7][0x16 - 1] = "AEXEA",
  915. [7][0x17 - 1] = "ClariPhy Communications Inc",
  916. [7][0x18 - 1] = "Green Plug",
  917. [7][0x19 - 1] = "Design Art Networks",
  918. [7][0x1a - 1] = "Mach Xtreme Technology Ltd",
  919. [7][0x1b - 1] = "ATO Solutions Co Ltd",
  920. [7][0x1c - 1] = "Ramsta",
  921. [7][0x1d - 1] = "Greenliant Systems Ltd",
  922. [7][0x1e - 1] = "Teikon",
  923. [7][0x1f - 1] = "Antec Hadron",
  924. [7][0x20 - 1] = "NavCom Technology Inc",
  925. [7][0x21 - 1] = "Shanghai Fudan Microelectronics",
  926. [7][0x22 - 1] = "Calxeda Inc",
  927. [7][0x23 - 1] = "JSC EDC Electronics",
  928. [7][0x24 - 1] = "Kandit Technology Co Ltd",
  929. [7][0x25 - 1] = "Ramos Technology",
  930. [7][0x26 - 1] = "Goldenmars Technology",
  931. [7][0x27 - 1] = "XeL Technology Inc",
  932. [7][0x28 - 1] = "Newzone Corporation",
  933. [7][0x29 - 1] = "ShenZhen MercyPower Tech",
  934. [7][0x2a - 1] = "Nanjing Yihuo Technology",
  935. [7][0x2b - 1] = "Nethra Imaging Inc",
  936. [7][0x2c - 1] = "SiTel Semiconductor BV",
  937. [7][0x2d - 1] = "SolidGear Corporation",
  938. [7][0x2e - 1] = "Topower Computer Ind Co Ltd",
  939. [7][0x2f - 1] = "Wilocity",
  940. [7][0x30 - 1] = "Profichip GmbH",
  941. [7][0x31 - 1] = "Gerad Technologies",
  942. [7][0x32 - 1] = "Ritek Corporation",
  943. [7][0x33 - 1] = "Gomos Technology Limited",
  944. [7][0x34 - 1] = "Memoright Corporation",
  945. [7][0x35 - 1] = "D-Broad Inc",
  946. [7][0x36 - 1] = "HiSilicon Technologies",
  947. [7][0x37 - 1] = "Syndiant Inc.",
  948. [7][0x38 - 1] = "Enverv Inc",
  949. [7][0x39 - 1] = "Cognex",
  950. [7][0x3a - 1] = "Xinnova Technology Inc",
  951. [7][0x3b - 1] = "Ultron AG",
  952. [7][0x3c - 1] = "Concord Idea Corporation",
  953. [7][0x3d - 1] = "AIM Corporation",
  954. [7][0x3e - 1] = "Lifetime Memory Products",
  955. [7][0x3f - 1] = "Ramsway",
  956. [7][0x40 - 1] = "Recore Systems B.V.",
  957. [7][0x41 - 1] = "Haotian Jinshibo Science Tech",
  958. [7][0x42 - 1] = "Being Advanced Memory",
  959. [7][0x43 - 1] = "Adesto Technologies",
  960. [7][0x44 - 1] = "Giantec Semiconductor Inc",
  961. [7][0x45 - 1] = "HMD Electronics AG",
  962. [7][0x46 - 1] = "Gloway International (HK)",
  963. [7][0x47 - 1] = "Kingcore",
  964. [7][0x48 - 1] = "Anucell Technology Holding",
  965. [7][0x49 - 1] = "Accord Software & Systems Pvt. Ltd",
  966. [7][0x4a - 1] = "Active-Semi Inc",
  967. [7][0x4b - 1] = "Denso Corporation",
  968. [7][0x4c - 1] = "TLSI Inc",
  969. [7][0x4d - 1] = "Qidan",
  970. [7][0x4e - 1] = "Mustang",
  971. [7][0x4f - 1] = "Orca Systems",
  972. [7][0x50 - 1] = "Passif Semiconductor",
  973. [7][0x51 - 1] = "GigaDevice Semiconductor (Beijing) Inc",
  974. [7][0x52 - 1] = "Memphis Electronic",
  975. [7][0x53 - 1] = "Beckhoff Automation GmbH",
  976. [7][0x54 - 1] = "Harmony Semiconductor Corp",
  977. [7][0x55 - 1] = "Air Computers SRL",
  978. [7][0x56 - 1] = "TMT Memory",
  979. [7][0x57 - 1] = "Eorex Corporation",
  980. [7][0x58 - 1] = "Xingtera",
  981. [7][0x59 - 1] = "Netsol",
  982. [7][0x5a - 1] = "Bestdon Technology Co Ltd",
  983. [7][0x5b - 1] = "Baysand Inc",
  984. [7][0x5c - 1] = "Uroad Technology Co Ltd",
  985. [7][0x5d - 1] = "Wilk Elektronik S.A.",
  986. [7][0x5e - 1] = "AAI",
  987. [7][0x5f - 1] = "Harman",
  988. [7][0x60 - 1] = "Berg Microelectronics Inc",
  989. [7][0x61 - 1] = "ASSIA Inc",
  990. [7][0x62 - 1] = "Visiontek Products LLC",
  991. [7][0x63 - 1] = "OCMEMORY",
  992. [7][0x64 - 1] = "Welink Solution Inc",
  993. [7][0x65 - 1] = "Shark Gaming",
  994. [7][0x66 - 1] = "Avalanche Technology",
  995. [7][0x67 - 1] = "R&D Center ELVEES OJSC",
  996. [7][0x68 - 1] = "KingboMars Technology Co Ltd",
  997. [7][0x69 - 1] = "High Bridge Solutions Industria Eletronica",
  998. [7][0x6a - 1] = "Transcend Technology Co Ltd",
  999. [7][0x6b - 1] = "Everspin Technologies",
  1000. [7][0x6c - 1] = "Hon-Hai Precision",
  1001. [7][0x6d - 1] = "Smart Storage Systems",
  1002. [7][0x6e - 1] = "Toumaz Group",
  1003. [7][0x6f - 1] = "Zentel Electronics Corporation",
  1004. [7][0x70 - 1] = "Panram International Corporation",
  1005. [7][0x71 - 1] = "Silicon Space Technology",
  1006. [7][0x72 - 1] = "LITE-ON IT Corporation",
  1007. [7][0x73 - 1] = "Inuitive",
  1008. [7][0x74 - 1] = "HMicro",
  1009. [7][0x75 - 1] = "BittWare Inc",
  1010. [7][0x76 - 1] = "GLOBALFOUNDRIES",
  1011. [7][0x77 - 1] = "ACPI Digital Co Ltd",
  1012. [7][0x78 - 1] = "Annapurna Labs",
  1013. [7][0x79 - 1] = "AcSiP Technology Corporation",
  1014. [7][0x7a - 1] = "Idea! Electronic Systems",
  1015. [7][0x7b - 1] = "Gowe Technology Co Ltd",
  1016. [7][0x7c - 1] = "Hermes Testing Solutions Inc",
  1017. [7][0x7d - 1] = "Positivo BGH",
  1018. [7][0x7e - 1] = "Intelligence Silicon Technology",
  1019. [8][0x01 - 1] = "3D PLUS",
  1020. [8][0x02 - 1] = "Diehl Aerospace",
  1021. [8][0x03 - 1] = "Fairchild",
  1022. [8][0x04 - 1] = "Mercury Systems",
  1023. [8][0x05 - 1] = "Sonics Inc",
  1024. [8][0x06 - 1] = "Emerson Automation Solutions",
  1025. [8][0x07 - 1] = "Shenzhen Jinge Information Co Ltd",
  1026. [8][0x08 - 1] = "SCWW",
  1027. [8][0x09 - 1] = "Silicon Motion Inc",
  1028. [8][0x0a - 1] = "Anurag",
  1029. [8][0x0b - 1] = "King Kong",
  1030. [8][0x0c - 1] = "FROM30 Co Ltd",
  1031. [8][0x0d - 1] = "Gowin Semiconductor Corp",
  1032. [8][0x0e - 1] = "Fremont Micro Devices Ltd",
  1033. [8][0x0f - 1] = "Ericsson Modems",
  1034. [8][0x10 - 1] = "Exelis",
  1035. [8][0x11 - 1] = "Satixfy Ltd",
  1036. [8][0x12 - 1] = "Galaxy Microsystems Ltd",
  1037. [8][0x13 - 1] = "Gloway International Co Ltd",
  1038. [8][0x14 - 1] = "Lab",
  1039. [8][0x15 - 1] = "Smart Energy Instruments",
  1040. [8][0x16 - 1] = "Approved Memory Corporation",
  1041. [8][0x17 - 1] = "Axell Corporation",
  1042. [8][0x18 - 1] = "Essencore Limited",
  1043. [8][0x19 - 1] = "Phytium",
  1044. [8][0x1a - 1] = "Xi'an UniIC Semiconductors Co Ltd",
  1045. [8][0x1b - 1] = "Ambiq Micro",
  1046. [8][0x1c - 1] = "eveRAM Technology Inc",
  1047. [8][0x1d - 1] = "Infomax",
  1048. [8][0x1e - 1] = "Butterfly Network Inc",
  1049. [8][0x1f - 1] = "Shenzhen City Gcai Electronics",
  1050. [8][0x20 - 1] = "Stack Devices Corporation",
  1051. [8][0x21 - 1] = "ADK Media Group",
  1052. [8][0x22 - 1] = "TSP Global Co Ltd",
  1053. [8][0x23 - 1] = "HighX",
  1054. [8][0x24 - 1] = "Shenzhen Elicks Technology",
  1055. [8][0x25 - 1] = "XinKai/Silicon Kaiser",
  1056. [8][0x26 - 1] = "Google Inc",
  1057. [8][0x27 - 1] = "Dasima International Development",
  1058. [8][0x28 - 1] = "Leahkinn Technology Limited",
  1059. [8][0x29 - 1] = "HIMA Paul Hildebrandt GmbH Co KG",
  1060. [8][0x2a - 1] = "Keysight Technologies",
  1061. [8][0x2b - 1] = "Techcomp International (Fastable)",
  1062. [8][0x2c - 1] = "Ancore Technology Corporation",
  1063. [8][0x2d - 1] = "Nuvoton",
  1064. [8][0x2e - 1] = "Korea Uhbele International Group Ltd",
  1065. [8][0x2f - 1] = "Ikegami Tsushinki Co Ltd",
  1066. [8][0x30 - 1] = "RelChip Inc",
  1067. [8][0x31 - 1] = "Baikal Electronics",
  1068. [8][0x32 - 1] = "Nemostech Inc",
  1069. [8][0x33 - 1] = "Memorysolution GmbH",
  1070. [8][0x34 - 1] = "Silicon Integrated Systems Corporation",
  1071. [8][0x35 - 1] = "Xiede",
  1072. [8][0x36 - 1] = "BRC",
  1073. [8][0x37 - 1] = "Flash Chi",
  1074. [8][0x38 - 1] = "Jone",
  1075. [8][0x39 - 1] = "GCT Semiconductor Inc",
  1076. [8][0x3a - 1] = "Hong Kong Zetta Device Technology",
  1077. [8][0x3b - 1] = "Unimemory Technology(s) Pte Ltd",
  1078. [8][0x3c - 1] = "Cuso",
  1079. [8][0x3d - 1] = "Kuso",
  1080. [8][0x3e - 1] = "Uniquify Inc",
  1081. [8][0x3f - 1] = "Skymedi Corporation",
  1082. [8][0x40 - 1] = "Core Chance Co Ltd",
  1083. [8][0x41 - 1] = "Tekism Co Ltd",
  1084. [8][0x42 - 1] = "Seagate Technology PLC",
  1085. [8][0x43 - 1] = "Hong Kong Gaia Group Co Limited",
  1086. [8][0x44 - 1] = "Gigacom Semiconductor LLC",
  1087. [8][0x45 - 1] = "V2 Technologies",
  1088. [8][0x46 - 1] = "TLi",
  1089. [8][0x47 - 1] = "Neotion",
  1090. [8][0x48 - 1] = "Lenovo",
  1091. [8][0x49 - 1] = "Shenzhen Zhongteng Electronic Corp Ltd",
  1092. [8][0x4a - 1] = "Compound Photonics",
  1093. [8][0x4b - 1] = "in2H2 inc",
  1094. [8][0x4c - 1] = "Shenzhen Pango Microsystems Co Ltd",
  1095. [8][0x4d - 1] = "Vasekey",
  1096. [8][0x4e - 1] = "Cal-Comp Industria de Semicondutores",
  1097. [8][0x4f - 1] = "Eyenix Co Ltd",
  1098. [8][0x50 - 1] = "Heoriady",
  1099. [8][0x51 - 1] = "Accelerated Memory Production Inc",
  1100. [8][0x52 - 1] = "INVECAS Inc",
  1101. [8][0x53 - 1] = "AP Memory",
  1102. [8][0x54 - 1] = "Douqi Technology",
  1103. [8][0x55 - 1] = "Etron Technology Inc",
  1104. [8][0x56 - 1] = "Indie Semiconductor",
  1105. [8][0x57 - 1] = "Socionext Inc",
  1106. [8][0x58 - 1] = "HGST",
  1107. [8][0x59 - 1] = "EVGA",
  1108. [8][0x5a - 1] = "Audience Inc",
  1109. [8][0x5b - 1] = "EpicGear",
  1110. [8][0x5c - 1] = "Vitesse Enterprise Co",
  1111. [8][0x5d - 1] = "Foxtronn International Corporation",
  1112. [8][0x5e - 1] = "Bretelon Inc",
  1113. [8][0x5f - 1] = "Graphcore",
  1114. [8][0x60 - 1] = "Eoplex Inc",
  1115. [8][0x61 - 1] = "MaxLinear Inc",
  1116. [8][0x62 - 1] = "ETA Devices",
  1117. [8][0x63 - 1] = "LOKI",
  1118. [8][0x64 - 1] = "IMS Electronics Co Ltd",
  1119. [8][0x65 - 1] = "Dosilicon Co Ltd",
  1120. [8][0x66 - 1] = "Dolphin Integration",
  1121. [8][0x67 - 1] = "Shenzhen Mic Electronics Technolog",
  1122. [8][0x68 - 1] = "Boya Microelectronics Inc",
  1123. [8][0x69 - 1] = "Geniachip (Roche)",
  1124. [8][0x6a - 1] = "Axign",
  1125. [8][0x6b - 1] = "Kingred Electronic Technology Ltd",
  1126. [8][0x6c - 1] = "Chao Yue Zhuo Computer Business Dept.",
  1127. [8][0x6d - 1] = "Guangzhou Si Nuo Electronic Technology.",
  1128. [8][0x6e - 1] = "Crocus Technology Inc",
  1129. [8][0x6f - 1] = "Creative Chips GmbH",
  1130. [8][0x70 - 1] = "GE Aviation Systems LLC.",
  1131. [8][0x71 - 1] = "Asgard",
  1132. [8][0x72 - 1] = "Good Wealth Technology Ltd",
  1133. [8][0x73 - 1] = "TriCor Technologies",
  1134. [8][0x74 - 1] = "Nova-Systems GmbH",
  1135. [8][0x75 - 1] = "JUHOR",
  1136. [8][0x76 - 1] = "Zhuhai Douke Commerce Co Ltd",
  1137. [8][0x77 - 1] = "DSL Memory",
  1138. [8][0x78 - 1] = "Anvo-Systems Dresden GmbH",
  1139. [8][0x79 - 1] = "Realtek",
  1140. [8][0x7a - 1] = "AltoBeam",
  1141. [8][0x7b - 1] = "Wave Computing",
  1142. [8][0x7c - 1] = "Beijing TrustNet Technology Co Ltd",
  1143. [8][0x7d - 1] = "Innovium Inc",
  1144. [8][0x7e - 1] = "Starsway Technology Limited",
  1145. [9][0x01 - 1] = "Weltronics Co LTD",
  1146. [9][0x02 - 1] = "VMware Inc",
  1147. [9][0x03 - 1] = "Hewlett Packard Enterprise",
  1148. [9][0x04 - 1] = "INTENSO",
  1149. [9][0x05 - 1] = "Puya Semiconductor",
  1150. [9][0x06 - 1] = "MEMORFI",
  1151. [9][0x07 - 1] = "MSC Technologies GmbH",
  1152. [9][0x08 - 1] = "Txrui",
  1153. [9][0x09 - 1] = "SiFive Inc",
  1154. [9][0x0a - 1] = "Spreadtrum Communications",
  1155. [9][0x0b - 1] = "XTX Technology Limited",
  1156. [9][0x0c - 1] = "UMAX Technology",
  1157. [9][0x0d - 1] = "Shenzhen Yong Sheng Technology",
  1158. [9][0x0e - 1] = "SNOAMOO (Shenzhen Kai Zhuo Yue)",
  1159. [9][0x0f - 1] = "Daten Tecnologia LTDA",
  1160. [9][0x10 - 1] = "Shenzhen XinRuiYan Electronics",
  1161. [9][0x11 - 1] = "Eta Compute",
  1162. [9][0x12 - 1] = "Energous",
  1163. [9][0x13 - 1] = "Raspberry Pi Trading Ltd",
  1164. [9][0x14 - 1] = "Shenzhen Chixingzhe Tech Co Ltd",
  1165. [9][0x15 - 1] = "Silicon Mobility",
  1166. [9][0x16 - 1] = "IQ-Analog Corporation",
  1167. [9][0x17 - 1] = "Uhnder Inc",
  1168. [9][0x18 - 1] = "Impinj",
  1169. [9][0x19 - 1] = "DEPO Computers",
  1170. [9][0x1a - 1] = "Nespeed Sysems",
  1171. [9][0x1b - 1] = "Yangtze Memory Technologies Co Ltd",
  1172. [9][0x1c - 1] = "MemxPro Inc",
  1173. [9][0x1d - 1] = "Tammuz Co Ltd",
  1174. [9][0x1e - 1] = "Allwinner Technology",
  1175. [9][0x1f - 1] = "Shenzhen City Futian District Qing Xuan Tong Computer Trading Firm",
  1176. [9][0x20 - 1] = "XMC",
  1177. [9][0x21 - 1] = "Teclast",
  1178. [9][0x22 - 1] = "Maxsun",
  1179. [9][0x23 - 1] = "Haiguang Integrated Circuit Design",
  1180. [9][0x24 - 1] = "RamCENTER Technology",
  1181. [9][0x25 - 1] = "Phison Electronics Corporation",
  1182. [9][0x26 - 1] = "Guizhou Huaxintong Semi-Conductor",
  1183. [9][0x27 - 1] = "Network Intelligence",
  1184. [9][0x28 - 1] = "Continental Technology (Holdings)",
  1185. [9][0x29 - 1] = "Guangzhou Huayan Suning Electronic",
  1186. [9][0x2a - 1] = "Guangzhou Zhouji Electronic Co Ltd",
  1187. [9][0x2b - 1] = "Shenzhen Giant Hui Kang Tech Co Ltd",
  1188. [9][0x2c - 1] = "Shenzhen Yilong Innovative Co Ltd",
  1189. [9][0x2d - 1] = "Neo Forza",
  1190. [9][0x2e - 1] = "Lyontek Inc",
  1191. [9][0x2f - 1] = "Shanghai Kuxin Microelectronics Ltd",
  1192. [9][0x30 - 1] = "Shenzhen Larix Technology Co Ltd",
  1193. [9][0x31 - 1] = "Qbit Semiconductor Ltd",
  1194. [9][0x32 - 1] = "Insignis Technology Corporation",
  1195. [9][0x33 - 1] = "Lanson Memory Co Ltd",
  1196. [9][0x34 - 1] = "Shenzhen Superway Electronics Co Ltd",
  1197. [9][0x35 - 1] = "Canaan-Creative Co Ltd",
  1198. [9][0x36 - 1] = "Black Diamond Memory",
  1199. [9][0x37 - 1] = "Shenzhen City Parker Baking Electronics",
  1200. [9][0x38 - 1] = "Shenzhen Baihong Technology Co Ltd",
  1201. [9][0x39 - 1] = "GEO Semiconductors",
  1202. [9][0x3a - 1] = "OCPC",
  1203. [9][0x3b - 1] = "Artery Technology Co Ltd",
  1204. [9][0x3c - 1] = "Jinyu",
  1205. [9][0x3d - 1] = "ShenzhenYing Chi Technology Development",
  1206. [9][0x3e - 1] = "Shenzhen Pengcheng Xin Technology",
  1207. [9][0x3f - 1] = "Pegasus Semiconductor (Shanghai) Co",
  1208. [9][0x40 - 1] = "Mythic Inc",
  1209. [9][0x41 - 1] = "Elmos Semiconductor AG",
  1210. [9][0x42 - 1] = "Kllisre",
  1211. [9][0x43 - 1] = "Shenzhen Winconway Technology",
  1212. [9][0x44 - 1] = "Shenzhen Xingmem Technology Corp",
  1213. [9][0x45 - 1] = "Gold Key Technology Co Ltd",
  1214. [9][0x46 - 1] = "Habana Labs Ltd",
  1215. [9][0x47 - 1] = "Hoodisk Electronics Co Ltd",
  1216. [9][0x48 - 1] = "SemsoTai (SZ) Technology Co Ltd",
  1217. [9][0x49 - 1] = "OM Nanotech Pvt. Ltd",
  1218. [9][0x4a - 1] = "Shenzhen Zhifeng Weiye Technology",
  1219. [9][0x4b - 1] = "Xinshirui (Shenzhen) Electronics Co",
  1220. [9][0x4c - 1] = "Guangzhou Zhong Hao Tian Electronic",
  1221. [9][0x4d - 1] = "Shenzhen Longsys Electronics Co Ltd",
  1222. [9][0x4e - 1] = "Deciso B.V.",
  1223. [9][0x4f - 1] = "Puya Semiconductor (Shenzhen)",
  1224. [9][0x50 - 1] = "Shenzhen Veineda Technology Co Ltd",
  1225. [9][0x51 - 1] = "Antec Memory",
  1226. [9][0x52 - 1] = "Cortus SAS",
  1227. [9][0x53 - 1] = "Dust Leopard",
  1228. [9][0x54 - 1] = "MyWo AS",
  1229. [9][0x55 - 1] = "J&A Information Inc",
  1230. [9][0x56 - 1] = "Shenzhen JIEPEI Technology Co Ltd",
  1231. [9][0x57 - 1] = "Heidelberg University",
  1232. [9][0x58 - 1] = "Flexxon PTE Ltd",
  1233. [9][0x59 - 1] = "Wiliot",
  1234. [9][0x5a - 1] = "Raysun Electronics International Ltd",
  1235. [9][0x5b - 1] = "Aquarius Production Company LLC",
  1236. [9][0x5c - 1] = "MACNICA DHW LTDA",
  1237. [9][0x5d - 1] = "Intelimem",
  1238. [9][0x5e - 1] = "Zbit Semiconductor Inc",
  1239. [9][0x5f - 1] = "Shenzhen Technology Co Ltd",
  1240. [9][0x60 - 1] = "Signalchip",
  1241. [9][0x61 - 1] = "Shenzen Recadata Storage Technology",
  1242. [9][0x62 - 1] = "Hyundai Technology",
  1243. [9][0x63 - 1] = "Shanghai Fudi Investment Development",
  1244. [9][0x64 - 1] = "Aixi Technology",
  1245. [9][0x65 - 1] = "Tecon MT",
  1246. [9][0x66 - 1] = "Onda Electric Co Ltd",
  1247. [9][0x67 - 1] = "Jinshen",
  1248. [9][0x68 - 1] = "Kimtigo Semiconductor (HK) Limited",
  1249. [9][0x69 - 1] = "IIT Madras",
  1250. [9][0x6a - 1] = "Shenshan (Shenzhen) Electronic",
  1251. [9][0x6b - 1] = "Hefei Core Storage Electronic Limited",
  1252. [9][0x6c - 1] = "Colorful Technology Ltd",
  1253. [9][0x6d - 1] = "Visenta (Xiamen) Technology Co Ltd",
  1254. [9][0x6e - 1] = "Roa Logic BV",
  1255. [9][0x6f - 1] = "NSITEXE Inc",
  1256. [9][0x70 - 1] = "Hong Kong Hyunion Electronics",
  1257. [9][0x71 - 1] = "ASK Technology Group Limited",
  1258. [9][0x72 - 1] = "GIGA-BYTE Technology Co Ltd",
  1259. [9][0x73 - 1] = "Terabyte Co Ltd",
  1260. [9][0x74 - 1] = "Hyundai Inc",
  1261. [9][0x75 - 1] = "EXCELERAM",
  1262. [9][0x76 - 1] = "PsiKick",
  1263. [9][0x77 - 1] = "Netac Technology Co Ltd",
  1264. [9][0x78 - 1] = "PCCOOLER",
  1265. [9][0x79 - 1] = "Jiangsu Huacun Electronic Technology",
  1266. [9][0x7a - 1] = "Shenzhen Micro Innovation Industry",
  1267. [9][0x7b - 1] = "Beijing Tongfang Microelectronics Co",
  1268. [9][0x7c - 1] = "XZN Storage Technology",
  1269. [9][0x7d - 1] = "ChipCraft Sp. z.o.o.",
  1270. [9][0x7e - 1] = "ALLFLASH Technology Limited",
  1271. [10][0x01 - 1] = "Foerd Technology Co Ltd",
  1272. [10][0x02 - 1] = "KingSpec",
  1273. [10][0x03 - 1] = "Codasip GmbH",
  1274. [10][0x04 - 1] = "SL Link Co Ltd",
  1275. [10][0x05 - 1] = "Shenzhen Kefu Technology Co Limited",
  1276. [10][0x06 - 1] = "Shenzhen ZST Electronics Technology",
  1277. [10][0x07 - 1] = "Kyokuto Electronic Inc",
  1278. [10][0x08 - 1] = "Warrior Technology",
  1279. [10][0x09 - 1] = "TRINAMIC Motion Control GmbH & Co",
  1280. [10][0x0a - 1] = "PixelDisplay Inc",
  1281. [10][0x0b - 1] = "Shenzhen Futian District Bo Yueda Elec",
  1282. [10][0x0c - 1] = "Richtek Power",
  1283. [10][0x0d - 1] = "Shenzhen LianTeng Electronics Co Ltd",
  1284. [10][0x0e - 1] = "AITC Memory",
  1285. [10][0x0f - 1] = "UNIC Memory Technology Co Ltd",
  1286. [10][0x10 - 1] = "Shenzhen Huafeng Science Technology",
  1287. [10][0x11 - 1] = "CXMT",
  1288. [10][0x12 - 1] = "Guangzhou Xinyi Heng Computer Trading Firm",
  1289. [10][0x13 - 1] = "SambaNova Systems",
  1290. [10][0x14 - 1] = "V-GEN",
  1291. [10][0x15 - 1] = "Jump Trading",
  1292. [10][0x16 - 1] = "Ampere Computing",
  1293. [10][0x17 - 1] = "Shenzhen Zhongshi Technology Co Ltd",
  1294. [10][0x18 - 1] = "Shenzhen Zhongtian Bozhong Technology",
  1295. [10][0x19 - 1] = "Tri-Tech International",
  1296. [10][0x1a - 1] = "Silicon Intergrated Systems Corporation",
  1297. [10][0x1b - 1] = "Shenzhen HongDingChen Information",
  1298. [10][0x1c - 1] = "Plexton Holdings Limited",
  1299. [10][0x1d - 1] = "AMS (Jiangsu Advanced Memory Semi)",
  1300. [10][0x1e - 1] = "Wuhan Jing Tian Interconnected Tech Co",
  1301. [10][0x1f - 1] = "Axia Memory Technology",
  1302. [10][0x20 - 1] = "Chipset Technology Holding Limited",
  1303. [10][0x21 - 1] = "Shenzhen Xinshida Technology Co Ltd",
  1304. [10][0x22 - 1] = "Shenzhen Chuangshifeida Technology",
  1305. [10][0x23 - 1] = "Guangzhou MiaoYuanJi Technology",
  1306. [10][0x24 - 1] = "ADVAN Inc",
  1307. [10][0x25 - 1] = "Shenzhen Qianhai Weishengda Electronic Commerce Company Ltd",
  1308. [10][0x26 - 1] = "Guangzhou Guang Xie Cheng Trading",
  1309. [10][0x27 - 1] = "StarRam International Co Ltd",
  1310. [10][0x28 - 1] = "Shen Zhen XinShenHua Tech Co Ltd",
  1311. [10][0x29 - 1] = "UltraMemory Inc",
  1312. [10][0x2a - 1] = "New Coastline Global Tech Industry Co",
  1313. [10][0x2b - 1] = "Sinker",
  1314. [10][0x2c - 1] = "Diamond",
  1315. [10][0x2d - 1] = "PUSKILL",
  1316. [10][0x2e - 1] = "Guangzhou Hao Jia Ye Technology Co",
  1317. [10][0x2f - 1] = "Ming Xin Limited",
  1318. [10][0x30 - 1] = "Barefoot Networks",
  1319. [10][0x31 - 1] = "Biwin Semiconductor (HK) Co Ltd",
  1320. [10][0x32 - 1] = "UD INFO Corporation",
  1321. [10][0x33 - 1] = "Trek Technology (S) PTE Ltd",
  1322. [10][0x34 - 1] = "Xiamen Kingblaze Technology Co Ltd",
  1323. [10][0x35 - 1] = "Shenzhen Lomica Technology Co Ltd",
  1324. [10][0x36 - 1] = "Nuclei System Technology Co Ltd",
  1325. [10][0x37 - 1] = "Wuhan Xun Zhan Electronic Technology",
  1326. [10][0x38 - 1] = "Shenzhen Ingacom Semiconductor Ltd",
  1327. [10][0x39 - 1] = "Zotac Technology Ltd",
  1328. [10][0x3a - 1] = "Foxline",
  1329. [10][0x3b - 1] = "Shenzhen Farasia Science Technology",
  1330. [10][0x3c - 1] = "Efinix Inc",
  1331. [10][0x3d - 1] = "Hua Nan San Xian Technology Co Ltd",
  1332. [10][0x3e - 1] = "Goldtech Electronics Co Ltd",
  1333. [10][0x3f - 1] = "Shanghai Han Rong Microelectronics Co",
  1334. [10][0x40 - 1] = "Shenzhen Zhongguang Yunhe Trading",
  1335. [10][0x41 - 1] = "Smart Shine(QingDao) Microelectronics",
  1336. [10][0x42 - 1] = "Thermaltake Technology Co Ltd",
  1337. [10][0x43 - 1] = "Shenzhen O'Yang Maile Technology Ltd",
  1338. [10][0x44 - 1] = "UPMEM",
  1339. [10][0x45 - 1] = "Chun Well Technology Holding Limited",
  1340. [10][0x46 - 1] = "Astera Labs Inc",
  1341. [10][0x47 - 1] = "Winconway",
  1342. [10][0x48 - 1] = "Advantech Co Ltd",
  1343. [10][0x49 - 1] = "Chengdu Fengcai Electronic Technology",
  1344. [10][0x4a - 1] = "The Boeing Company",
  1345. [10][0x4b - 1] = "Blaize Inc",
  1346. [10][0x4c - 1] = "Ramonster Technology Co Ltd",
  1347. [10][0x4d - 1] = "Wuhan Naonongmai Technology Co Ltd",
  1348. [10][0x4e - 1] = "Shenzhen Hui ShingTong Technology",
  1349. [10][0x4f - 1] = "Yourlyon",
  1350. [10][0x50 - 1] = "Fabu Technology",
  1351. [10][0x51 - 1] = "Shenzhen Yikesheng Technology Co Ltd",
  1352. [10][0x52 - 1] = "NOR-MEM",
  1353. [10][0x53 - 1] = "Cervoz Co Ltd",
  1354. [10][0x54 - 1] = "Bitmain Technologies Inc.",
  1355. [10][0x55 - 1] = "Facebook Inc",
  1356. [10][0x56 - 1] = "Shenzhen Longsys Electronics Co Ltd",
  1357. [10][0x57 - 1] = "Guangzhou Siye Electronic Technology",
  1358. [10][0x58 - 1] = "Silergy",
  1359. [10][0x59 - 1] = "Adamway",
  1360. [10][0x5a - 1] = "PZG",
  1361. [10][0x5b - 1] = "Shenzhen King Power Electronics",
  1362. [10][0x5c - 1] = "Guangzhou ZiaoFu Tranding Co Ltd",
  1363. [10][0x5d - 1] = "Shenzhen SKIHOTAR Semiconductor",
  1364. [10][0x5e - 1] = "PulseRain Technology",
  1365. [10][0x5f - 1] = "Seeker Technology Limited",
  1366. [10][0x60 - 1] = "Shenzhen OSCOO Tech Co Ltd",
  1367. [10][0x61 - 1] = "Shenzhen Yze Technology Co Ltd",
  1368. [10][0x62 - 1] = "Shenzhen Jieshuo Electronic Commerce",
  1369. [10][0x63 - 1] = "Gazda",
  1370. [10][0x64 - 1] = "Hua Wei Technology Co Ltd",
  1371. [10][0x65 - 1] = "Esperanto Technologies",
  1372. [10][0x66 - 1] = "JinSheng Electronic (Shenzhen) Co Ltd",
  1373. [10][0x67 - 1] = "Shenzhen Shi Bolunshuai Technology",
  1374. [10][0x68 - 1] = "Shanghai Rei Zuan Information Tech",
  1375. [10][0x69 - 1] = "Fraunhofer IIS",
  1376. [10][0x6a - 1] = "Kandou Bus SA",
  1377. [10][0x6b - 1] = "Acer",
  1378. [10][0x6c - 1] = "Artmem Technology Co Ltd",
  1379. [10][0x6d - 1] = "Gstar Semiconductor Co Ltd",
  1380. [10][0x6e - 1] = "ShineDisk",
  1381. [10][0x6f - 1] = "Shenzhen CHN Technology Co Ltd",
  1382. [10][0x70 - 1] = "UnionChip Semiconductor Co Ltd",
  1383. [10][0x71 - 1] = "Tanbassh",
  1384. [10][0x72 - 1] = "Shenzhen Tianyu Jieyun Intl Logistics",
  1385. [10][0x73 - 1] = "MCLogic Inc",
  1386. [10][0x74 - 1] = "Eorex Corporation",
  1387. [10][0x75 - 1] = "Arm Technology (China) Co Ltd",
  1388. [10][0x76 - 1] = "Lexar Co Limited",
  1389. [10][0x77 - 1] = "QinetiQ Group plc",
  1390. [10][0x78 - 1] = "Exascend",
  1391. [10][0x79 - 1] = "Hong Kong Hyunion Electronics Co Ltd",
  1392. [10][0x7a - 1] = "Shenzhen Banghong Electronics Co Ltd",
  1393. [10][0x7b - 1] = "MBit Wireless Inc",
  1394. [10][0x7c - 1] = "Hex Five Security Inc",
  1395. [10][0x7d - 1] = "ShenZhen Juhor Precision Tech Co Ltd",
  1396. [10][0x7e - 1] = "Shenzhen Reeinno Technology Co Ltd",
  1397. [11][0x01 - 1] = "ABIT Electronics (Shenzhen) Co Ltd",
  1398. [11][0x02 - 1] = "Semidrive",
  1399. [11][0x03 - 1] = "MyTek Electronics Corp",
  1400. [11][0x04 - 1] = "Wxilicon Technology Co Ltd",
  1401. [11][0x05 - 1] = "Shenzhen Meixin Electronics Ltd",
  1402. [11][0x06 - 1] = "Ghost Wolf",
  1403. [11][0x07 - 1] = "LiSion Technologies Inc",
  1404. [11][0x08 - 1] = "Power Active Co Ltd",
  1405. [11][0x09 - 1] = "Pioneer High Fidelity Taiwan Co. Ltd",
  1406. [11][0x0a - 1] = "LuoSilk",
  1407. [11][0x0b - 1] = "Shenzhen Chuangshifeida Technology",
  1408. [11][0x0c - 1] = "Black Sesame Technologies Inc",
  1409. [11][0x0d - 1] = "Jiangsu Xinsheng Intelligent Technology",
  1410. [11][0x0e - 1] = "MLOONG",
  1411. [11][0x0f - 1] = "Quadratica LLC",
  1412. [11][0x10 - 1] = "Anpec Electronics",
  1413. [11][0x11 - 1] = "Xi'an Morebeck Semiconductor Tech Co",
  1414. [11][0x12 - 1] = "Kingbank Technology Co Ltd",
  1415. [11][0x13 - 1] = "ITRenew Inc",
  1416. [11][0x14 - 1] = "Shenzhen Eaget Innovation Tech Ltd",
  1417. [11][0x15 - 1] = "Jazer",
  1418. [11][0x16 - 1] = "Xiamen Semiconductor Investment Group",
  1419. [11][0x17 - 1] = "Guangzhou Longdao Network Tech Co",
  1420. [11][0x18 - 1] = "Shenzhen Futian SEC Electronic Market",
  1421. [11][0x19 - 1] = "Allegro Microsystems LLC",
  1422. [11][0x1a - 1] = "Hunan RunCore Innovation Technology",
  1423. [11][0x1b - 1] = "C-Corsa Technology",
  1424. [11][0x1c - 1] = "Zhuhai Chuangfeixin Technology Co Ltd",
  1425. [11][0x1d - 1] = "Beijing InnoMem Technologies Co Ltd",
  1426. [11][0x1e - 1] = "YooTin",
  1427. [11][0x1f - 1] = "Shenzhen Pengxiong Technology Co Ltd",
  1428. [11][0x20 - 1] = "Dongguan Yingbang Commercial Trading Co",
  1429. [11][0x21 - 1] = "Shenzhen Ronisys Electronics Co Ltd",
  1430. [11][0x22 - 1] = "Hongkong Xinlan Guangke Co Ltd",
  1431. [11][0x23 - 1] = "Apex Microelectronics Co Ltd",
  1432. [11][0x24 - 1] = "Beijing Hongda Jinming Technology Co Ltd",
  1433. [11][0x25 - 1] = "Ling Rui Technology (Shenzhen) Co Ltd",
  1434. [11][0x26 - 1] = "Hongkong Hyunion Electronics Co Ltd",
  1435. [11][0x27 - 1] = "Starsystems Inc",
  1436. [11][0x28 - 1] = "Shenzhen Yingjiaxun Industrial Co Ltd",
  1437. [11][0x29 - 1] = "Dongguan Crown Code Electronic Commerce",
  1438. [11][0x2a - 1] = "Monolithic Power Systems Inc",
  1439. [11][0x2b - 1] = "WuHan SenNaiBo E-Commerce Co Ltd",
  1440. [11][0x2c - 1] = "Hangzhou Hikstorage Technology Co",
  1441. [11][0x2d - 1] = "Shenzhen Goodix Technology Co Ltd",
  1442. [11][0x2e - 1] = "Aigo Electronic Technology Co Ltd",
  1443. [11][0x2f - 1] = "Hefei Konsemi Storage Technology Co Ltd",
  1444. [11][0x30 - 1] = "Cactus Technologies Limited",
  1445. [11][0x31 - 1] = "DSIN",
  1446. [11][0x32 - 1] = "Blu Wireless Technology",
  1447. [11][0x33 - 1] = "Nanjing UCUN Technology Inc",
  1448. [11][0x34 - 1] = "Acacia Communications",
  1449. [11][0x35 - 1] = "Beijinjinshengyihe Technology Co Ltd",
  1450. [11][0x36 - 1] = "Zyzyx",
  1451. [11][0x37 - 1] = "T-HEAD Semiconductor Co Ltd",
  1452. [11][0x38 - 1] = "Shenzhen Hystou Technology Co Ltd",
  1453. [11][0x39 - 1] = "Syzexion",
  1454. [11][0x3a - 1] = "Kembona",
  1455. [11][0x3b - 1] = "Qingdao Thunderobot Technology Co Ltd",
  1456. [11][0x3c - 1] = "Morse Micro",
  1457. [11][0x3d - 1] = "Shenzhen Envida Technology Co Ltd",
  1458. [11][0x3e - 1] = "UDStore Solution Limited",
  1459. [11][0x3f - 1] = "Shunlie",
  1460. [11][0x40 - 1] = "Shenzhen Xin Hong Rui Tech Ltd",
  1461. [11][0x41 - 1] = "Shenzhen Yze Technology Co Ltd",
  1462. [11][0x42 - 1] = "Shenzhen Huang Pu He Xin Technology",
  1463. [11][0x43 - 1] = "Xiamen Pengpai Microelectronics Co Ltd",
  1464. [11][0x44 - 1] = "JISHUN",
  1465. [11][0x45 - 1] = "Shenzhen WODPOSIT Technology Co",
  1466. [11][0x46 - 1] = "Unistar",
  1467. [11][0x47 - 1] = "UNICORE Electronic (Suzhou) Co Ltd",
  1468. [11][0x48 - 1] = "Axonne Inc",
  1469. [11][0x49 - 1] = "Shenzhen SOVERECA Technology Co",
  1470. [11][0x4a - 1] = "Dire Wolf",
  1471. [11][0x4b - 1] = "Whampoa Core Technology Co Ltd",
  1472. [11][0x4c - 1] = "CSI Halbleiter GmbH",
  1473. [11][0x4d - 1] = "ONE Semiconductor",
  1474. [11][0x4e - 1] = "SimpleMachines Inc",
  1475. [11][0x4f - 1] = "Shenzhen Chengyi Qingdian Electronic",
  1476. [11][0x50 - 1] = "Shenzhen Xinlianxin Network Technology",
  1477. [11][0x51 - 1] = "Vayyar Imaging Ltd",
  1478. [11][0x52 - 1] = "Paisen Network Technology Co Ltd",
  1479. [11][0x53 - 1] = "Shenzhen Fengwensi Technology Co Ltd",
  1480. [11][0x54 - 1] = "Caplink Technology Limited",
  1481. [11][0x55 - 1] = "JJT Solution Co Ltd",
  1482. [11][0x56 - 1] = "HOSIN Global Electronics Co Ltd",
  1483. [11][0x57 - 1] = "Shenzhen KingDisk Century Technology",
  1484. [11][0x58 - 1] = "SOYO",
  1485. [11][0x59 - 1] = "DIT Technology Co Ltd",
  1486. [11][0x5a - 1] = "iFound",
  1487. [11][0x5b - 1] = "Aril Computer Company",
  1488. [11][0x5c - 1] = "ASUS",
  1489. [11][0x5d - 1] = "Shenzhen Ruiyingtong Technology Co",
  1490. [11][0x5e - 1] = "HANA Micron",
  1491. [11][0x5f - 1] = "RANSOR",
  1492. [11][0x60 - 1] = "Axiado Corporation",
  1493. [11][0x61 - 1] = "Tesla Corporation",
  1494. [11][0x62 - 1] = "Pingtouge (Shanghai) Semiconductor Co",
  1495. [11][0x63 - 1] = "S3Plus Technologies SA",
  1496. [11][0x64 - 1] = "Integrated Silicon Solution Israel Ltd",
  1497. [11][0x65 - 1] = "GreenWaves Technologies",
  1498. [11][0x66 - 1] = "NUVIA Inc",
  1499. [11][0x67 - 1] = "Guangzhou Shuvrwine Technology Co",
  1500. [11][0x68 - 1] = "Shenzhen Hangshun Chip Technology",
  1501. [11][0x69 - 1] = "Chengboliwei Electronic Business",
  1502. [11][0x6a - 1] = "Kowin Technology HK Limited",
  1503. [11][0x6b - 1] = "Euronet Technology Inc",
  1504. [11][0x6c - 1] = "SCY",
  1505. [11][0x6d - 1] = "Shenzhen Xinhongyusheng Electrical",
  1506. [11][0x6e - 1] = "PICOCOM",
  1507. [11][0x6f - 1] = "Shenzhen Toooogo Memory Technology",
  1508. [11][0x70 - 1] = "VLSI Solution",
  1509. [11][0x71 - 1] = "Costar Electronics Inc",
  1510. [11][0x72 - 1] = "Shenzhen Huatop Technology Co Ltd",
  1511. [11][0x73 - 1] = "Inspur Electronic Information Industry",
  1512. [11][0x74 - 1] = "Shenzhen Boyuan Computer Technology",
  1513. [11][0x75 - 1] = "Beijing Welldisk Electronics Co Ltd",
  1514. [11][0x76 - 1] = "Suzhou EP Semicon Co Ltd",
  1515. [11][0x77 - 1] = "Zhejiang Dahua Memory Technology",
  1516. [11][0x78 - 1] = "Virtu Financial",
  1517. [11][0x79 - 1] = "Datotek International Co Ltd",
  1518. [11][0x7a - 1] = "Telecom and Microelectronics Industries",
  1519. [11][0x7b - 1] = "Echow Technology Ltd",
  1520. [11][0x7c - 1] = "APEX-INFO",
  1521. [11][0x7d - 1] = "Yingpark",
  1522. [11][0x7e - 1] = "Shenzhen Bigway Tech Co Ltd",
  1523. [12][0x01 - 1] = "Beijing Haawking Technology Co Ltd",
  1524. [12][0x02 - 1] = "Open HW Group",
  1525. [12][0x03 - 1] = "JHICC",
  1526. [12][0x04 - 1] = "ncoder AG",
  1527. [12][0x05 - 1] = "ThinkTech Information Technology Co",
  1528. [12][0x06 - 1] = "Shenzhen Chixingzhe Technology Co Ltd",
  1529. [12][0x07 - 1] = "Biao Ram Technology Co Ltd",
  1530. [12][0x08 - 1] = "Shenzhen Kaizhuoyue Electronics Co Ltd",
  1531. [12][0x09 - 1] = "Shenzhen YC Storage Technology Co Ltd",
  1532. [12][0x0a - 1] = "Shenzhen Chixingzhe Technology Co",
  1533. [12][0x0b - 1] = "Wink Semiconductor (Shenzhen) Co Ltd",
  1534. [12][0x0c - 1] = "AISTOR",
  1535. [12][0x0d - 1] = "Palma Ceia SemiDesign",
  1536. [12][0x0e - 1] = "EM Microelectronic-Marin SA",
  1537. [12][0x0f - 1] = "Shenzhen Monarch Memory Technology",
  1538. [12][0x10 - 1] = "Reliance Memory Inc",
  1539. [12][0x11 - 1] = "Jesis",
  1540. [12][0x12 - 1] = "Espressif Systems (Shanghai) Co Ltd",
  1541. [12][0x13 - 1] = "Shenzhen Sati Smart Technology Co Ltd",
  1542. [12][0x14 - 1] = "NeuMem Co Ltd",
  1543. [12][0x15 - 1] = "Lifelong",
  1544. [12][0x16 - 1] = "Beijing Oitech Technology Co Ltd",
  1545. [12][0x17 - 1] = "Groupe LDLC",
  1546. [12][0x18 - 1] = "Semidynamics Technology Services SLU",
  1547. [12][0x19 - 1] = "swordbill",
  1548. [12][0x1a - 1] = "YIREN",
  1549. [12][0x1b - 1] = "Shenzhen Yinxiang Technology Co Ltd",
  1550. [12][0x1c - 1] = "PoweV Electronic Technology Co Ltd",
  1551. [12][0x1d - 1] = "LEORICE",
  1552. [12][0x1e - 1] = "Waymo LLC",
  1553. [12][0x1f - 1] = "Ventana Micro Systems",
  1554. [12][0x20 - 1] = "Hefei Guangxin Microelectronics Co Ltd",
  1555. [12][0x21 - 1] = "Shenzhen Sooner Industrial Co Ltd",
  1556. [12][0x22 - 1] = "Horizon Robotics",
  1557. [12][0x23 - 1] = "Tangem AG",
  1558. [12][0x24 - 1] = "FuturePath Technology (Shenzhen) Co",
  1559. [12][0x25 - 1] = "RC Module",
  1560. [12][0x26 - 1] = "Timetec International Inc",
  1561. [12][0x27 - 1] = "ICMAX Technologies Co Limited",
  1562. [12][0x28 - 1] = "Lynxi Technologies Ltd Co",
  1563. [12][0x29 - 1] = "Guangzhou Taisupanke Computer Equipment",
  1564. [12][0x2a - 1] = "Ceremorphic Inc",
  1565. [12][0x2b - 1] = "Biwin Storage Technology Co Ltd",
  1566. [12][0x2c - 1] = "Beijing ESWIN Computing Technology",
  1567. [12][0x2d - 1] = "WeForce Co Ltd",
  1568. [12][0x2e - 1] = "Shenzhen Fanxiang Information Technology",
  1569. [12][0x2f - 1] = "Unisoc",
  1570. [12][0x30 - 1] = "YingChu",
  1571. [12][0x31 - 1] = "GUANCUN",
  1572. [12][0x32 - 1] = "IPASON",
  1573. [12][0x33 - 1] = "Ayar Labs",
  1574. [12][0x34 - 1] = "Amazon",
  1575. [12][0x35 - 1] = "Shenzhen Xinxinshun Technology Co",
  1576. [12][0x36 - 1] = "Galois Inc",
  1577. [12][0x37 - 1] = "Ubilite Inc",
  1578. [12][0x38 - 1] = "Shenzhen Quanxing Technology Co Ltd",
  1579. [12][0x39 - 1] = "Group RZX Technology LTDA",
  1580. [12][0x3a - 1] = "Yottac Technology (XI'AN) Cooperation",
  1581. [12][0x3b - 1] = "Shenzhen RuiRen Technology Co Ltd",
  1582. [12][0x3c - 1] = "Group Star Technology Co Ltd",
  1583. [12][0x3d - 1] = "RWA (Hong Kong) Ltd",
  1584. [12][0x3e - 1] = "Genesys Logic Inc",
  1585. [12][0x3f - 1] = "T3 Robotics Inc.",
  1586. [12][0x40 - 1] = "Biostar Microtech International Corp",
  1587. [12][0x41 - 1] = "Shenzhen SXmicro Technology Co Ltd",
  1588. [12][0x42 - 1] = "Shanghai Yili Computer Technology Co",
  1589. [12][0x43 - 1] = "Zhixin Semicoducotor Co Ltd",
  1590. [12][0x44 - 1] = "uFound",
  1591. [12][0x45 - 1] = "Aigo Data Security Technology Co. Ltd",
  1592. [12][0x46 - 1] = ".GXore Technologies",
  1593. [12][0x47 - 1] = "Shenzhen Pradeon Intelligent Technology",
  1594. [12][0x48 - 1] = "Power LSI",
  1595. [12][0x49 - 1] = "PRIME",
  1596. [12][0x4a - 1] = "Shenzhen Juyang Innovative Technology",
  1597. [12][0x4b - 1] = "CERVO",
  1598. [12][0x4c - 1] = "SiEngine Technology Co., Ltd.",
  1599. [12][0x4d - 1] = "Beijing Unigroup Tsingteng MicroSystem",
  1600. [12][0x4e - 1] = "Brainsao GmbH",
  1601. [12][0x4f - 1] = "Credo Technology Group Ltd",
  1602. [12][0x50 - 1] = "Shanghai Biren Technology Co Ltd",
  1603. [12][0x51 - 1] = "Nucleu Semiconductor",
  1604. [12][0x52 - 1] = "Shenzhen Guangshuo Electronics Co Ltd",
  1605. [12][0x53 - 1] = "ZhongsihangTechnology Co Ltd",
  1606. [12][0x54 - 1] = "Suzhou Mainshine Electronic Co Ltd.",
  1607. [12][0x55 - 1] = "Guangzhou Riss Electronic Technology",
  1608. [12][0x56 - 1] = "Shenzhen Cloud Security Storage Co",
  1609. [12][0x57 - 1] = "ROG",
  1610. [12][0x58 - 1] = "Perceive",
  1611. [12][0x59 - 1] = "e-peas",
  1612. [12][0x5a - 1] = "Fraunhofer IPMS",
  1613. [12][0x5b - 1] = "Shenzhen Daxinlang Electronic Tech Co",
  1614. [12][0x5c - 1] = "Abacus Peripherals Private Limited",
  1615. [12][0x5d - 1] = "OLOy Technology",
  1616. [12][0x5e - 1] = "Wuhan P&S Semiconductor Co Ltd",
  1617. [12][0x5f - 1] = "Sitrus Technology",
  1618. [12][0x60 - 1] = "AnHui Conner Storage Co Ltd",
  1619. [12][0x61 - 1] = "Rochester Electronics",
  1620. [12][0x62 - 1] = "Wuxi Petabyte Technologies Co Ltd",
  1621. [12][0x63 - 1] = "Star Memory",
  1622. [12][0x64 - 1] = "Agile Memory Technology Co Ltd",
  1623. [12][0x65 - 1] = "MEJEC",
  1624. [12][0x66 - 1] = "Rockchip Electronics Co Ltd",
  1625. [12][0x67 - 1] = "Dongguan Guanma e-commerce Co Ltd",
  1626. [12][0x68 - 1] = "Rayson Hi-Tech (SZ) Limited",
  1627. [12][0x69 - 1] = "MINRES Technologies GmbH",
  1628. [12][0x6a - 1] = "Himax Technologies Inc",
  1629. [12][0x6b - 1] = "Shenzhen Cwinner Technology Co Ltd",
  1630. [12][0x6c - 1] = "Tecmiyo",
  1631. [12][0x6d - 1] = "Shenzhen Suhuicun Technology Co Ltd",
  1632. [12][0x6e - 1] = "Vickter Electronics Co. Ltd.",
  1633. [12][0x6f - 1] = "lowRISC",
  1634. [12][0x70 - 1] = "EXEGate FZE",
  1635. [12][0x71 - 1] = "Shenzhen 9 Chapter Technologies Co",
  1636. [12][0x72 - 1] = "Addlink",
  1637. [12][0x73 - 1] = "Starsway",
  1638. [12][0x74 - 1] = "Pensando Systems Inc.",
  1639. [12][0x75 - 1] = "AirDisk",
  1640. [12][0x76 - 1] = "Shenzhen Speedmobile Technology Co",
  1641. [12][0x77 - 1] = "PEZY Computing",
  1642. [12][0x78 - 1] = "Extreme Engineering Solutions Inc",
  1643. [12][0x79 - 1] = "Shangxin Technology Co Ltd",
  1644. [12][0x7a - 1] = "Shanghai Zhaoxin Semiconductor Co",
  1645. [12][0x7b - 1] = "Xsight Labs Ltd",
  1646. [12][0x7c - 1] = "Hangzhou Hikstorage Technology Co",
  1647. [12][0x7d - 1] = "Dell Technologies",
  1648. [12][0x7e - 1] = "Guangdong StarFive Technology Co",
  1649. [13][0x01 - 1] = "TECOTON",
  1650. [13][0x02 - 1] = "Abko Co Ltd",
  1651. [13][0x03 - 1] = "Shenzhen Feisrike Technology Co Ltd",
  1652. [13][0x04 - 1] = "Shenzhen Sunhome Electronics Co Ltd",
  1653. [13][0x05 - 1] = "Global Mixed-mode Technology Inc",
  1654. [13][0x06 - 1] = "Shenzhen Weien Electronics Co. Ltd.",
  1655. [13][0x07 - 1] = "Shenzhen Cooyes Technology Co Ltd",
  1656. [13][0x08 - 1] = "Keymos Electronics Co., Limited",
  1657. [13][0x09 - 1] = "E-Rockic Technology Company Limited",
  1658. [13][0x0a - 1] = "Aerospace Science Memory Shenzhen",
  1659. [13][0x0b - 1] = "Shenzhen Quanji Technology Co Ltd",
  1660. [13][0x0c - 1] = "Dukosi",
  1661. [13][0x0d - 1] = "Maxell Corporation of America",
  1662. [13][0x0e - 1] = "Shenshen Xinxintao Electronics Co Ltd",
  1663. [13][0x0f - 1] = "Zhuhai Sanxia Semiconductor Co Ltd",
  1664. [13][0x10 - 1] = "Groq Inc",
  1665. [13][0x11 - 1] = "AstraTek",
  1666. [13][0x12 - 1] = "Shenzhen Xinyuze Technology Co Ltd",
  1667. [13][0x13 - 1] = "All Bit Semiconductor",
  1668. [13][0x14 - 1] = "ACFlow",
  1669. [13][0x15 - 1] = "Shenzhen Sipeed Technology Co Ltd",
  1670. [13][0x16 - 1] = "Linzhi Hong Kong Co Limited",
  1671. [13][0x17 - 1] = "Supreme Wise Limited",
  1672. [13][0x18 - 1] = "Blue Cheetah Analog Design Inc",
  1673. [13][0x19 - 1] = "Hefei Laiku Technology Co Ltd",
  1674. [13][0x1a - 1] = "Zord",
  1675. [13][0x1b - 1] = "SBO Hearing A/S",
  1676. [13][0x1c - 1] = "Regent Sharp International Limited",
  1677. [13][0x1d - 1] = "Permanent Potential Limited",
  1678. [13][0x1e - 1] = "Creative World International Limited",
  1679. [13][0x1f - 1] = "Base Creation International Limited",
  1680. [13][0x20 - 1] = "Shenzhen Zhixin Chuanglian Technology",
  1681. [13][0x21 - 1] = "Protected Logic Corporation",
  1682. [13][0x22 - 1] = "Sabrent",
  1683. [13][0x23 - 1] = "Union Memory",
  1684. [13][0x24 - 1] = "NEUCHIPS Corporation",
  1685. [13][0x25 - 1] = "Ingenic Semiconductor Co Ltd",
  1686. [13][0x26 - 1] = "SiPearl",
  1687. [13][0x27 - 1] = "Shenzhen Actseno Information Technology",
  1688. [13][0x28 - 1] = "RIVAI Technologies (Shenzhen) Co Ltd",
  1689. [13][0x29 - 1] = "Shenzhen Sunny Technology Co Ltd",
  1690. [13][0x2a - 1] = "Cott Electronics Ltd",
  1691. [13][0x2b - 1] = "Shanghai Synsense Technologies Co Ltd",
  1692. [13][0x2c - 1] = "Shenzhen Jintang Fuming Optoelectronics",
  1693. [13][0x2d - 1] = "CloudBEAR LLC",
  1694. [13][0x2e - 1] = "Emzior, LLC",
  1695. [13][0x2f - 1] = "Ehiway Microelectronic Science Tech Co",
  1696. [13][0x30 - 1] = "UNIM Innovation Technology (Wu XI)",
  1697. [13][0x31 - 1] = "GDRAMARS",
  1698. [13][0x32 - 1] = "Meminsights Technology",
  1699. [13][0x33 - 1] = "Zhuzhou Hongda Electronics Corp Ltd",
  1700. [13][0x34 - 1] = "Luminous Computing Inc",
  1701. [13][0x35 - 1] = "PROXMEM",
  1702. [13][0x36 - 1] = "Draper Labs",
  1703. [13][0x37 - 1] = "ORICO Technologies Co. Ltd.",
  1704. [13][0x38 - 1] = "Space Exploration Technologies Corp",
  1705. [13][0x39 - 1] = "AONDEVICES Inc",
  1706. [13][0x3a - 1] = "Shenzhen Netforward Micro Electronic",
  1707. [13][0x3b - 1] = "Syntacore Ltd",
  1708. [13][0x3c - 1] = "Shenzhen Secmem Microelectronics Co",
  1709. [13][0x3d - 1] = "ONiO As",
  1710. [13][0x3e - 1] = "Shenzhen Peladn Technology Co Ltd",
  1711. [13][0x3f - 1] = "O-Cubes Shanghai Microelectronics",
  1712. [13][0x40 - 1] = "ASTC",
  1713. [13][0x41 - 1] = "UMIS",
  1714. [13][0x42 - 1] = "Paradromics",
  1715. [13][0x43 - 1] = "Sinh Micro Co Ltd",
  1716. [13][0x44 - 1] = "Metorage Semiconductor Technology Co",
  1717. [13][0x45 - 1] = "Aeva Inc",
  1718. [13][0x46 - 1] = "HongKong Hyunion Electronics Co Ltd",
  1719. [13][0x47 - 1] = "China Flash Co Ltd",
  1720. [13][0x48 - 1] = "Sunplus Technology Co Ltd",
  1721. [13][0x49 - 1] = "Idaho Scientific",
  1722. [13][0x4a - 1] = "Suzhou SF Micro Electronics Co Ltd",
  1723. [13][0x4b - 1] = "IMEX Cap AG",
  1724. [13][0x4c - 1] = "Fitipower Integrated Technology Co Ltd",
  1725. [13][0x4d - 1] = "ShenzhenWooacme Technology Co Ltd",
  1726. [13][0x4e - 1] = "KeepData Original Chips",
  1727. [13][0x4f - 1] = "Rivos Inc",
  1728. [13][0x50 - 1] = "Big Innovation Company Limited",
  1729. [13][0x51 - 1] = "Wuhan YuXin Semiconductor Co Ltd",
  1730. [13][0x52 - 1] = "United Memory Technology (Jiangsu)",
  1731. [13][0x53 - 1] = "PQShield Ltd",
  1732. [13][0x54 - 1] = "ArchiTek Corporation",
  1733. [13][0x55 - 1] = "ShenZhen AZW Technology Co Ltd",
  1734. [13][0x56 - 1] = "Hengchi Zhixin (Dongguan) Technology",
  1735. [13][0x57 - 1] = "Eggtronic Engineering Spa",
  1736. [13][0x58 - 1] = "Fusontai Technology",
  1737. [13][0x59 - 1] = "PULP Platform",
  1738. [13][0x5a - 1] = "Koitek Electronic Technology (Shenzhen) Co",
  1739. [13][0x5b - 1] = "Shenzhen Jiteng Network Technology Co",
  1740. [13][0x5c - 1] = "Aviva Links Inc",
  1741. [13][0x5d - 1] = "Trilinear Technologies Inc",
  1742. [13][0x5e - 1] = "Shenzhen Developer Microelectronics Co",
  1743. [13][0x5f - 1] = "Guangdong OPPO Mobile Telecommunication",
  1744. [13][0x60 - 1] = "Akeana",
  1745. [13][0x61 - 1] = "Lyczar",
  1746. [13][0x62 - 1] = "Shenzhen Qiji Technology Co Ltd",
  1747. [13][0x63 - 1] = "Shenzhen Shangzhaoyuan Technology",
  1748. [13][0x64 - 1] = "Han Stor",
  1749. [13][0x65 - 1] = "China Micro Semicon Co., Ltd.",
  1750. [13][0x66 - 1] = "Shenzhen Zhuqin Technology Co Ltd",
  1751. [13][0x67 - 1] = "Shanghai Ningyuan Electronic Technology",
  1752. [13][0x68 - 1] = "Auradine",
  1753. [13][0x69 - 1] = "Suzhou Yishuo Electronics Co Ltd",
  1754. [13][0x6a - 1] = "Faurecia Clarion Electronics",
  1755. [13][0x6b - 1] = "SiMa Technologies",
  1756. [13][0x6c - 1] = "CFD Sales Inc",
  1757. [13][0x6d - 1] = "Suzhou Comay Information Co Ltd",
  1758. [13][0x6e - 1] = "Yentek",
  1759. [13][0x6f - 1] = "Qorvo Inc",
  1760. [13][0x70 - 1] = "Shenzhen Youzhi Computer Technology",
  1761. [13][0x71 - 1] = "Sychw Technology (Shenzhen) Co Ltd",
  1762. [13][0x72 - 1] = "MK Founder Technology Co Ltd",
  1763. [13][0x73 - 1] = "Siliconwaves Technologies Co Ltd",
  1764. [13][0x74 - 1] = "Hongkong Hyunion Electronics Co Ltd",
  1765. [13][0x75 - 1] = "Shenzhen Xinxinzhitao Electronics Business",
  1766. [13][0x76 - 1] = "Shenzhen HenQi Electronic Commerce Co",
  1767. [13][0x77 - 1] = "Shenzhen Jingyi Technology Co Ltd",
  1768. [13][0x78 - 1] = "Xiaohua Semiconductor Co. Ltd.",
  1769. [13][0x79 - 1] = "Shenzhen Dalu Semiconductor Technology",
  1770. [13][0x7a - 1] = "Shenzhen Ninespeed Electronics Co Ltd",
  1771. [13][0x7b - 1] = "ICYC Semiconductor Co Ltd",
  1772. [13][0x7c - 1] = "Shenzhen Jaguar Microsystems Co Ltd",
  1773. [13][0x7d - 1] = "Beijing EC-Founder Co Ltd",
  1774. [13][0x7e - 1] = "Shenzhen Taike Industrial Automation Co",
  1775. [14][0x01 - 1] = "Kalray SA",
  1776. [14][0x02 - 1] = "Shanghai Iluvatar CoreX Semiconductor Co",
  1777. [14][0x03 - 1] = "Fungible Inc",
  1778. [14][0x04 - 1] = "Song Industria E Comercio de Eletronicos",
  1779. [14][0x05 - 1] = "DreamBig Semiconductor Inc",
  1780. [14][0x06 - 1] = "ChampTek Electronics Corp",
  1781. [14][0x07 - 1] = "Fusontai Technology",
  1782. [14][0x08 - 1] = "Endress Hauser AG",
  1783. [14][0x09 - 1] = "altec ComputerSysteme GmbH",
  1784. [14][0x0a - 1] = "UltraRISC Technology (Shanghai) Co Ltd",
  1785. [14][0x0b - 1] = "Shenzhen Jing Da Kang Technology Co Ltd",
  1786. [14][0x0c - 1] = "Hangzhou Hongjun Microelectronics Co Ltd",
  1787. /* EOF */