-
Notifications
You must be signed in to change notification settings - Fork 16
/
USBLookupTables.cpp
5226 lines (5144 loc) · 192 KB
/
USBLookupTables.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include <algorithm>
#include <string>
#include "USBLookupTables.h"
#include "USBTypes.h"
const char* GetDescriptorName( U8 descriptor )
{
switch( descriptor )
{
case DT_DEVICE:
return "DEVICE";
case DT_CONFIGURATION:
return "CONFIGURATION";
case DT_STRING:
return "STRING";
case DT_INTERFACE:
return "INTERFACE";
case DT_ENDPOINT:
return "ENDPOINT";
case DT_DEVICE_QUALIFIER:
return "DEVICE_QUALIFIER";
case DT_OTHER_SPEED_CONFIGURATION:
return "OTHER_SPEED_CONFIGURATION";
case DT_INTERFACE_POWER:
return "INTERFACE_POWER";
// HID Class specific descriptors
case DT_HID:
return "HID";
case DT_HID_REPORT:
return "HID Report Descriptor";
case DT_HID_PHYS:
return "HID Physical Descriptor";
// CDC Class specific descriptors
case DT_CDC_CS_INTERFACE:
return "CS_INTERFACE";
case DT_CDC_CS_ENDPOINT:
return "CS_ENDPOINT";
}
return "<unknown>";
}
const char* GetRequestName( U8 request )
{
switch( request )
{
case GET_STATUS:
return "GET_STATUS";
case CLEAR_FEATURE:
return "CLEAR_FEATURE";
case SET_FEATURE:
return "SET_FEATURE";
case SET_ADDRESS:
return "SET_ADDRESS";
case GET_DESCRIPTOR:
return "GET_DESCRIPTOR";
case SET_DESCRIPTOR:
return "SET_DESCRIPTOR";
case GET_CONFIGURATION:
return "GET_CONFIGURATION";
case SET_CONFIGURATION:
return "SET_CONFIGURATION";
case GET_INTERFACE:
return "GET_INTERFACE";
case SET_INTERFACE:
return "SET_INTERFACE";
case SYNCH_FRAME:
return "SYNCH_FRAME";
}
return "<unknown>";
}
const char* GetHIDRequestName( U8 request )
{
switch( request )
{
case GET_REPORT:
return "GET_REPORT";
case GET_IDLE:
return "GET_IDLE";
case GET_PROTOCOL:
return "GET_PROTOCOL";
case SET_REPORT:
return "SET_REPORT";
case SET_IDLE:
return "SET_IDLE";
case SET_PROTOCOL:
return "SET_PROTOCOL";
}
return "<unknown>";
}
const char* GetCDCRequestName( U8 request )
{
switch( request )
{
case SEND_ENCAPSULATED_COMMAND:
return "SEND_ENCAPSULATED_COMMAND";
case GET_ENCAPSULATED_RESPONSE:
return "GET_ENCAPSULATED_RESPONSE";
case SET_COMM_FEATURE:
return "SET_COMM_FEATURE";
case GET_COMM_FEATURE:
return "GET_COMM_FEATURE";
case CLEAR_COMM_FEATURE:
return "CLEAR_COMM_FEATURE";
case SET_AUX_LINE_STATE:
return "SET_AUX_LINE_STATE";
case SET_HOOK_STATE:
return "SET_HOOK_STATE";
case PULSE_SETUP:
return "PULSE_SETUP";
case SEND_PULSE:
return "SEND_PULSE";
case SET_PULSE_TIME:
return "SET_PULSE_TIME";
case RING_AUX_JACK:
return "RING_AUX_JACK";
case SET_LINE_CODING:
return "SET_LINE_CODING";
case GET_LINE_CODING:
return "GET_LINE_CODING";
case SET_CONTROL_LINE_STATE:
return "SET_CONTROL_LINE_STATE";
case SEND_BREAK:
return "SEND_BREAK";
case SET_RINGER_PARMS:
return "SET_RINGER_PARMS";
case GET_RINGER_PARMS:
return "GET_RINGER_PARMS";
case SET_OPERATION_PARMS:
return "SET_OPERATION_PARMS";
case GET_OPERATION_PARMS:
return "GET_OPERATION_PARMS";
case SET_LINE_PARMS:
return "SET_LINE_PARMS";
case GET_LINE_PARMS:
return "GET_LINE_PARMS";
case DIAL_DIGITS:
return "DIAL_DIGITS";
case SET_UNIT_PARAMETER:
return "SET_UNIT_PARAMETER";
case GET_UNIT_PARAMETER:
return "GET_UNIT_PARAMETER";
case CLEAR_UNIT_PARAMETER:
return "CLEAR_UNIT_PARAMETER";
case GET_PROFILE:
return "GET_PROFILE";
case SET_ETHERNET_MULTICAST_FILTERS:
return "SET_ETHERNET_MULTICAST_FILTERS";
case SET_ETHERNET_POWER_MANAGEMENT_PATTERN_FILTER:
return "SET_ETHERNET_POWER_MANAGEMENT_PATTERN_FILTER";
case GET_ETHERNET_POWER_MANAGEMENT_PATTERN_FILTER:
return "GET_ETHERNET_POWER_MANAGEMENT_PATTERN_FILTER";
case SET_ETHERNET_PACKET_FILTER:
return "SET_ETHERNET_PACKET_FILTER";
case GET_ETHERNET_STATISTIC:
return "GET_ETHERNET_STATISTIC";
case SET_ATM_DATA_FORMAT:
return "SET_ATM_DATA_FORMAT";
case GET_ATM_DEVICE_STATISTICS:
return "GET_ATM_DEVICE_STATISTICS";
case SET_ATM_DEFAULT_VC:
return "SET_ATM_DEFAULT_VC";
case GET_ATM_VC_STATISTICS:
return "GET_ATM_VC_STATISTICS";
}
return "<unknown>";
}
const char* GetHIDCountryName( U8 countryCode )
{
const char* CountryNames[] = { "Not Supported",
"Arabic",
"Belgian",
"Canadian-Bilingual",
"Canadian-French",
"Czech Republic",
"Danish",
"Finnish",
"French",
"German",
"Greek",
"Hebrew",
"Hungary",
"International (ISO)",
"Italian",
"Japan (Katakana)",
"Korean",
"Latin American",
"Netherlands/Dutch",
"Norwegian",
"Persian (Farsi)",
"Poland",
"Portuguese",
"Russia",
"Slovakia",
"Spanish",
"Swedish",
"Swiss/French",
"Swiss/German",
"Switzerland",
"Taiwan",
"Turkish-Q",
"UK",
"US",
"Yugoslavia",
"Turkish-F" };
if( countryCode < sizeof( CountryNames ) / sizeof( *CountryNames ) )
return CountryNames[ countryCode ];
return "Reserved";
}
const char* GetCDCEthFeatureSelectorName( U8 feature )
{
const char* Features[] = { "RESERVED",
"XMIT_OK",
"RCV_OK",
"XMIT_ERROR",
"RCV_ERROR",
"RCV_NO_BUFFER",
"DIRECTED_BYTES_XMIT",
"DIRECTED_FRAMES_XMIT",
"MULTICAST_BYTES_XMIT",
"MULTICAST_FRAMES_XMIT",
"BROADCAST_BYTES_XMIT",
"BROADCAST_FRAMES_XMIT",
"DIRECTED_BYTES_RCV",
"DIRECTED_FRAMES_RCV",
"MULTICAST_BYTES_RCV",
"MULTICAST_FRAMES_RCV",
"BROADCAST_BYTES_RCV",
"BROADCAST_FRAMES_RCV",
"RCV_CRC_ERROR",
"TRANSMIT_QUEUE_LENGTH",
"RCV_ERROR_ALIGNMENT",
"XMIT_ONE_COLLISION",
"XMIT_MORE_COLLISIONS",
"XMIT_DEFERRED",
"XMIT_MAX_COLLISIONS",
"RCV_OVERRUN",
"XMIT_UNDERRUN",
"XMIT_HEARTBEAT_FAILURE",
"XMIT_TIMES_CRS_LOST",
"XMIT_LATE_COLLISIONS" };
if( feature < sizeof( Features ) / sizeof( *Features ) )
return Features[ feature ];
return Features[ 0 ];
}
const char* GetCDCATMFeatureSelectorName( U8 feature )
{
const char* Features[] = {
"RESERVED",
"US_CELLS_SENT",
"DS_CELLS_RECEIVED",
"DS_CELLS_USB_CONGESTION",
"DS_CELLS_AAL5_CRC_ERROR",
"DS_CELLS_HEC_ERROR",
"DS_CELLS_HEC_ERROR_CORRECTED",
};
if( feature < sizeof( Features ) / sizeof( *Features ) )
return Features[ feature ];
return Features[ 0 ];
}
const char* GetCDCDescriptorSubtypeName( U8 subtype )
{
const char* Names[] = {
"Header Functional Descriptor",
"Call Management Functional Descriptor",
"Abstract Control Management Functional Descriptor",
"Direct Line Management Functional Descriptor",
"Telephone Ringer Functional Descriptor",
"Telephone Call and Line State Reporting Capabilities Functional Descriptor",
"Union Functional descriptor",
"Country Selection Functional Descriptor",
"Telephone Operational Modes Functional Descriptor",
"USB Terminal Functional Descriptor",
"Network Channel Terminal Descriptor",
"Protocol Unit Functional Descriptor",
"Extension Unit Functional Descriptor",
"Multi-Channel Management Functional Descriptor",
"CAPI Control Management Functional Descriptor",
"Ethernet Networking Functional Descriptor",
"ATM Networking Functional Descriptor",
};
if( subtype < sizeof( Names ) / sizeof( *Names ) )
return Names[ subtype ];
return "<unknown>";
}
struct IdNamePair
{
U16 id;
const char* name;
bool operator<( const IdNamePair& rhs ) const
{
return id < rhs.id;
}
};
const IdNamePair USBLangIDs[] = {
{ 0x0401, "Arabic (Saudi Arabia)" },
{ 0x0402, "Bulgarian" },
{ 0x0403, "Catalan" },
{ 0x0404, "Chinese (Taiwan)" },
{ 0x0405, "Czech" },
{ 0x0406, "Danish" },
{ 0x0407, "German (Standard)" },
{ 0x0408, "Greek" },
{ 0x0409, "English (United States)" },
{ 0x040a, "Spanish (Traditional Sort)" },
{ 0x040b, "Finnish" },
{ 0x040c, "French (Standard)" },
{ 0x040d, "Hebrew" },
{ 0x040e, "Hungarian" },
{ 0x040f, "Icelandic" },
{ 0x0410, "Italian (Standard)" },
{ 0x0411, "Japanese" },
{ 0x0412, "Korean" },
{ 0x0413, "Dutch (Netherlands)" },
{ 0x0414, "Norwegian (Bokmal)" },
{ 0x0415, "Polish" },
{ 0x0416, "Portuguese (Brazil)" },
{ 0x0418, "Romanian" },
{ 0x0419, "Russian" },
{ 0x041a, "Croatian" },
{ 0x041b, "Slovak" },
{ 0x041c, "Albanian" },
{ 0x041d, "Swedish" },
{ 0x041e, "Thai" },
{ 0x041f, "Turkish" },
{ 0x0420, "Urdu (Pakistan)" },
{ 0x0421, "Indonesian" },
{ 0x0422, "Ukrainian" },
{ 0x0423, "Belarussian" },
{ 0x0424, "Slovenian" },
{ 0x0425, "Estonian" },
{ 0x0426, "Latvian" },
{ 0x0427, "Lithuanian" },
{ 0x0429, "Farsi" },
{ 0x042a, "Vietnamese" },
{ 0x042b, "Armenian." },
{ 0x042c, "Azeri (Latin)" },
{ 0x042d, "Basque" },
{ 0x042f, "Macedonian" },
{ 0x0430, "Sutu" },
{ 0x0436, "Afrikaans" },
{ 0x0437, "Georgian." },
{ 0x0438, "Faeroese" },
{ 0x0439, "Hindi." },
{ 0x043e, "Malay (Malaysian)" },
{ 0x043f, "Kazakh" },
{ 0x0441, "Swahili (Kenya)" },
{ 0x0443, "Uzbek (Latin)" },
{ 0x0444, "Tatar (Tatarstan)" },
{ 0x0445, "Bengali." },
{ 0x0446, "Punjabi." },
{ 0x0447, "Gujarati." },
{ 0x0448, "Oriya." },
{ 0x0449, "Tamil." },
{ 0x044a, "Telugu." },
{ 0x044b, "Kannada." },
{ 0x044c, "Malayalam." },
{ 0x044d, "Assamese." },
{ 0x044e, "Marathi." },
{ 0x044f, "Sanskrit." },
{ 0x0455, "Burmese" },
{ 0x0457, "Konkani." },
{ 0x0458, "Manipuri" },
{ 0x0459, "Sindhi" },
{ 0x04ff, "HID (Usage Data Descriptor)" },
{ 0x0801, "Arabic (Iraq)" },
{ 0x0804, "Chinese (PRC)" },
{ 0x0807, "German (Switzerland)" },
{ 0x0809, "English (United Kingdom)" },
{ 0x080a, "Spanish (Mexican)" },
{ 0x080c, "French (Belgian)" },
{ 0x0810, "Italian (Switzerland)" },
{ 0x0812, "Korean (Johab)" },
{ 0x0813, "Dutch (Belgium)" },
{ 0x0814, "Norwegian (Nynorsk)" },
{ 0x0816, "Portuguese (Standard)" },
{ 0x081a, "Serbian (Latin)" },
{ 0x081d, "Swedish (Finland)" },
{ 0x0820, "Urdu (India)" },
{ 0x0827, "Lithuanian (Classic)" },
{ 0x082c, "Azeri (Cyrillic)" },
{ 0x083e, "Malay (Brunei Darussalam)" },
{ 0x0843, "Uzbek (Cyrillic)" },
{ 0x0860, "Kashmiri (India)" },
{ 0x0861, "Nepali (India)." },
{ 0x0c01, "Arabic (Egypt)" },
{ 0x0c04, "Chinese (Hong Kong SAR, PRC)" },
{ 0x0c07, "German (Austria)" },
{ 0x0c09, "English (Australian)" },
{ 0x0c0a, "Spanish (Modern Sort)" },
{ 0x0c0c, "French (Canadian)" },
{ 0x0c1a, "Serbian (Cyrillic)" },
{ 0x1001, "Arabic (Libya)" },
{ 0x1004, "Chinese (Singapore)" },
{ 0x1007, "German (Luxembourg)" },
{ 0x1009, "English (Canadian)" },
{ 0x100a, "Spanish (Guatemala)" },
{ 0x100c, "French (Switzerland)" },
{ 0x1401, "Arabic (Algeria)" },
{ 0x1404, "Chinese (Macau SAR)" },
{ 0x1407, "German (Liechtenstein)" },
{ 0x1409, "English (New Zealand)" },
{ 0x140a, "Spanish (Costa Rica)" },
{ 0x140c, "French (Luxembourg)" },
{ 0x1801, "Arabic (Morocco)" },
{ 0x1809, "English (Ireland)" },
{ 0x180a, "Spanish (Panama)" },
{ 0x180c, "French (Monaco)" },
{ 0x1c01, "Arabic (Tunisia)" },
{ 0x1c09, "English (South Africa)" },
{ 0x1c0a, "Spanish (Dominican Republic)" },
{ 0x2001, "Arabic (Oman)" },
{ 0x2009, "English (Jamaica)" },
{ 0x200a, "Spanish (Venezuela)" },
{ 0x2401, "Arabic (Yemen)" },
{ 0x2409, "English (Caribbean)" },
{ 0x240a, "Spanish (Colombia)" },
{ 0x2801, "Arabic (Syria)" },
{ 0x2809, "English (Belize)" },
{ 0x280a, "Spanish (Peru)" },
{ 0x2c01, "Arabic (Jordan)" },
{ 0x2c09, "English (Trinidad)" },
{ 0x2c0a, "Spanish (Argentina)" },
{ 0x3001, "Arabic (Lebanon)" },
{ 0x3009, "English (Zimbabwe)" },
{ 0x300a, "Spanish (Ecuador)" },
{ 0x3401, "Arabic (Kuwait)" },
{ 0x3409, "English (Philippines)" },
{ 0x340a, "Spanish (Chile)" },
{ 0x3801, "Arabic (U.A.E.)" },
{ 0x380a, "Spanish (Uruguay)" },
{ 0x3c01, "Arabic (Bahrain)" },
{ 0x3c0a, "Spanish (Paraguay)" },
{ 0x4001, "Arabic (Qatar)" },
{ 0x400a, "Spanish (Bolivia)" },
{ 0x440a, "Spanish (El Salvador)" },
{ 0x480a, "Spanish (Honduras)" },
{ 0x4c0a, "Spanish (Nicaragua)" },
{ 0x500a, "Spanish (Puerto Rico)" },
{ 0xf0ff, "HID (Vendor Defined 1)" },
{ 0xf4ff, "HID (Vendor Defined 2)" },
{ 0xf8ff, "HID (Vendor Defined 3)" },
{ 0xfcff, "HID (Vendor Defined 4)" },
{ 0xffff, NULL },
};
const IdNamePair VendorIDs[] = {
{ 0x0001, "Fry's Electronics" },
{ 0x0002, "Ingram" },
{ 0x0003, "Club Mac" },
{ 0x0004, "Nebraska Furniture Mart" },
{ 0x0053, "Planex" },
{ 0x0079, "DragonRise Inc." },
{ 0x0105, "Trust International B.V." },
{ 0x0145, "Unknown" },
{ 0x017c, "MLK" },
{ 0x0200, "TP-Link" },
{ 0x0204, "Chipsbank Microelectronics Co., Ltd" },
{ 0x0218, "Hangzhou Worlde" },
{ 0x02ad, "HUMAX Co., Ltd." },
{ 0x0300, "MM300 eBook Reader" },
{ 0x0324, "OCZ Technology Inc" },
{ 0x0325, "OCZ Technology Inc" },
{ 0x0386, "LTS" },
{ 0x03d9, "Shenzhen Sinote Tech-Electron Co., Ltd" },
{ 0x03da, "Bernd Walter Computer Technology" },
{ 0x03e8, "EndPoints, Inc." },
{ 0x03e9, "Thesys Microelectronics" },
{ 0x03ea, "Data Broadcasting Corp." },
{ 0x03eb, "Atmel Corp." },
{ 0x03ec, "Iwatsu America, Inc." },
{ 0x03ed, "Mitel Corp." },
{ 0x03ee, "Mitsumi" },
{ 0x03f0, "Hewlett-Packard" },
{ 0x03f1, "Genoa Technology" },
{ 0x03f2, "Oak Technology, Inc." },
{ 0x03f3, "Adaptec, Inc." },
{ 0x03f4, "Diebold, Inc." },
{ 0x03f5, "Siemens Electromechanical" },
{ 0x03f8, "Epson Imaging Technology Center" },
{ 0x03f9, "KeyTronic Corp." },
{ 0x03fb, "OPTi, Inc." },
{ 0x03fc, "Elitegroup Computer Systems" },
{ 0x03fd, "Xilinx, Inc." },
{ 0x03fe, "Farallon Comunications" },
{ 0x0400, "National Semiconductor Corp." },
{ 0x0401, "National Registry, Inc." },
{ 0x0402, "ALi Corp." },
{ 0x0403, "Future Technology Devices International, Ltd" },
{ 0x0404, "NCR Corp." },
{ 0x0405, "Synopsys, Inc." },
{ 0x0406, "Fujitsu-ICL Computers" },
{ 0x0407, "Fujitsu Personal Systems, Inc." },
{ 0x0408, "Quanta Computer, Inc." },
{ 0x0409, "NEC Corp." },
{ 0x040a, "Kodak Co." },
{ 0x040b, "Weltrend Semiconductor" },
{ 0x040c, "VTech Computers, Ltd" },
{ 0x040d, "VIA Technologies, Inc." },
{ 0x040e, "MCCI" },
{ 0x040f, "Echo Speech Corp." },
{ 0x0411, "BUFFALO INC. (formerly MelCo., Inc.)" },
{ 0x0412, "Award Software International" },
{ 0x0413, "Leadtek Research, Inc." },
{ 0x0414, "Giga-Byte Technology Co., Ltd" },
{ 0x0416, "Winbond Electronics Corp." },
{ 0x0417, "Symbios Logic" },
{ 0x0418, "AST Research" },
{ 0x0419, "Samsung Info. Systems America, Inc." },
{ 0x041a, "Phoenix Technologies, Ltd" },
{ 0x041b, "d'TV" },
{ 0x041d, "S3, Inc." },
{ 0x041e, "Creative Technology, Ltd" },
{ 0x041f, "LCS Telegraphics" },
{ 0x0420, "Chips and Technologies" },
{ 0x0421, "Nokia Mobile Phones" },
{ 0x0422, "ADI Systems, Inc." },
{ 0x0423, "Computer Access Technology Corp." },
{ 0x0424, "Standard Microsystems Corp." },
{ 0x0425, "Motorola Semiconductors HK, Ltd" },
{ 0x0426, "Integrated Device Technology, Inc." },
{ 0x0427, "Motorola Electronics Taiwan, Ltd" },
{ 0x0428, "Advanced Gravis Computer Tech, Ltd" },
{ 0x0429, "Cirrus Logic" },
{ 0x042a, "Ericsson Austrian, AG" },
{ 0x042b, "Intel Corp." },
{ 0x042c, "Innovative Semiconductors, Inc." },
{ 0x042d, "Micronics" },
{ 0x042e, "Acer, Inc." },
{ 0x042f, "Molex, Inc." },
{ 0x0430, "Sun Microsystems, Inc." },
{ 0x0431, "Itac Systems, Inc." },
{ 0x0432, "Unisys Corp." },
{ 0x0433, "Alps Electric, Inc." },
{ 0x0434, "Samsung Info. Systems America, Inc." },
{ 0x0435, "Hyundai Electronics America" },
{ 0x0436, "Taugagreining HF" },
{ 0x0437, "Framatome Connectors USA" },
{ 0x0438, "Advanced Micro Devices, Inc." },
{ 0x0439, "Voice Technologies Group" },
{ 0x043d, "Lexmark International, Inc." },
{ 0x043e, "LG Electronics USA, Inc." },
{ 0x043f, "RadiSys Corp." },
{ 0x0440, "Eizo Nanao Corp." },
{ 0x0441, "Winbond Systems Lab." },
{ 0x0442, "Ericsson, Inc." },
{ 0x0443, "Gateway, Inc." },
{ 0x0445, "Lucent Technologies, Inc." },
{ 0x0446, "NMB Technologies Corp." },
{ 0x0447, "Momentum Microsystems" },
{ 0x044a, "Shamrock Tech. Co., Ltd" },
{ 0x044b, "WSI" },
{ 0x044c, "CCL/ITRI" },
{ 0x044d, "Siemens Nixdorf AG" },
{ 0x044e, "Alps Electric Co., Ltd" },
{ 0x044f, "ThrustMaster, Inc." },
{ 0x0450, "DFI, Inc." },
{ 0x0451, "Texas Instruments, Inc." },
{ 0x0452, "Mitsubishi Electronics America, Inc." },
{ 0x0453, "CMD Technology" },
{ 0x0454, "Vobis Microcomputer AG" },
{ 0x0455, "Telematics International, Inc." },
{ 0x0456, "Analog Devices, Inc." },
{ 0x0457, "Silicon Integrated Systems Corp." },
{ 0x0458, "KYE Systems Corp. (Mouse Systems)" },
{ 0x0459, "Adobe Systems, Inc." },
{ 0x045a, "SONICblue, Inc." },
{ 0x045b, "Hitachi, Ltd" },
{ 0x045d, "Nortel Networks, Ltd" },
{ 0x045e, "Microsoft Corp." },
{ 0x0460, "Ace Cad Enterprise Co., Ltd" },
{ 0x0461, "Primax Electronics, Ltd" },
{ 0x0463, "MGE UPS Systems" },
{ 0x0464, "AMP/Tycoelectronics Corp." },
{ 0x0467, "AT&T Paradyne" },
{ 0x0468, "Wieson Technologies Co., Ltd" },
{ 0x046a, "Cherry GmbH" },
{ 0x046b, "American Megatrends, Inc." },
{ 0x046c, "Toshiba Corp., Digital Media Equipment" },
{ 0x046d, "Logitech, Inc." },
{ 0x046e, "Behavior Tech. Computer Corp." },
{ 0x046f, "Crystal Semiconductor" },
{ 0x0471, "Philips (or NXP)" },
{ 0x0472, "Chicony Electronics Co., Ltd" },
{ 0x0473, "Sanyo Information Business Co., Ltd" },
{ 0x0474, "Sanyo Electric Co., Ltd" },
{ 0x0475, "Relisys/Teco Information System" },
{ 0x0476, "AESP" },
{ 0x0477, "Seagate Technology, Inc." },
{ 0x0478, "Connectix Corp." },
{ 0x0479, "Advanced Peripheral Laboratories" },
{ 0x047a, "Semtech Corp." },
{ 0x047b, "Silitek Corp." },
{ 0x047c, "Dell Computer Corp." },
{ 0x047d, "Kensington" },
{ 0x047e, "Agere Systems, Inc. (Lucent)" },
{ 0x047f, "Plantronics, Inc." },
{ 0x0480, "Toshiba America Info. Systems, Inc." },
{ 0x0481, "Zenith Data Systems" },
{ 0x0482, "Kyocera Corp." },
{ 0x0483, "STMicroelectronics" },
{ 0x0484, "Specialix" },
{ 0x0485, "Nokia Monitors" },
{ 0x0486, "ASUS Computers, Inc." },
{ 0x0487, "Stewart Connector" },
{ 0x0488, "Cirque Corp." },
{ 0x0489, "Foxconn / Hon Hai" },
{ 0x048a, "S-MOS Systems, Inc." },
{ 0x048c, "Alps Electric Ireland, Ltd" },
{ 0x048d, "Integrated Technology Express, Inc." },
{ 0x048f, "Eicon Tech." },
{ 0x0490, "United Microelectronics Corp." },
{ 0x0491, "Capetronic" },
{ 0x0492, "Samsung SemiConductor, Inc." },
{ 0x0493, "MAG Technology Co., Ltd" },
{ 0x0495, "ESS Technology, Inc." },
{ 0x0496, "Micron Electronics" },
{ 0x0497, "Smile International" },
{ 0x0498, "Capetronic (Kaohsiung) Corp." },
{ 0x0499, "Yamaha Corp." },
{ 0x049a, "Gandalf Technologies, Ltd" },
{ 0x049b, "Curtis Computer Products" },
{ 0x049c, "Acer Advanced Labs, Inc." },
{ 0x049d, "VLSI Technology" },
{ 0x049f, "Compaq Computer Corp." },
{ 0x04a0, "Digital Equipment Corp." },
{ 0x04a1, "SystemSoft Corp." },
{ 0x04a2, "FirePower Systems" },
{ 0x04a3, "Trident Microsystems, Inc." },
{ 0x04a4, "Hitachi, Ltd" },
{ 0x04a5, "Acer Peripherals Inc. (now BenQ Corp.)" },
{ 0x04a6, "Nokia Display Products" },
{ 0x04a7, "Visioneer" },
{ 0x04a8, "Multivideo Labs, Inc." },
{ 0x04a9, "Canon, Inc." },
{ 0x04aa, "DaeWoo Telecom, Ltd" },
{ 0x04ab, "Chromatic Research" },
{ 0x04ac, "Micro Audiometrics Corp." },
{ 0x04ad, "Dooin Electronics" },
{ 0x04af, "Winnov L.P." },
{ 0x04b0, "Nikon Corp." },
{ 0x04b1, "Pan International" },
{ 0x04b3, "IBM Corp." },
{ 0x04b4, "Cypress Semiconductor Corp." },
{ 0x04b5, "ROHM LSI Systems USA, LLC" },
{ 0x04b6, "Hint Corp." },
{ 0x04b7, "Compal Electronics, Inc." },
{ 0x04b8, "Seiko Epson Corp." },
{ 0x04b9, "Rainbow Technologies, Inc." },
{ 0x04ba, "Toucan Systems, Ltd" },
{ 0x04bb, "I-O Data Device, Inc." },
{ 0x04bd, "Toshiba Electronics Taiwan Corp." },
{ 0x04be, "Telia Research AB" },
{ 0x04bf, "TDK Corp." },
{ 0x04c1, "U.S. Robotics (3Com)" },
{ 0x04c2, "Methode Electronics Far East PTE, Ltd" },
{ 0x04c3, "Maxi Switch, Inc." },
{ 0x04c4, "Lockheed Martin Energy Research" },
{ 0x04c5, "Fujitsu, Ltd" },
{ 0x04c6, "Toshiba America Electronic Components" },
{ 0x04c7, "Micro Macro Technologies" },
{ 0x04c8, "Konica Corp." },
{ 0x04ca, "Lite-On Technology Corp." },
{ 0x04cb, "Fuji Photo Film Co., Ltd" },
{ 0x04cc, "ST-Ericsson" },
{ 0x04cd, "Tatung Co. Of America" },
{ 0x04ce, "ScanLogic Corp." },
{ 0x04cf, "Myson Century, Inc." },
{ 0x04d0, "Digi International" },
{ 0x04d1, "ITT Canon" },
{ 0x04d2, "Altec Lansing Technologies" },
{ 0x04d3, "VidUS, Inc." },
{ 0x04d4, "LSI Logic, Inc." },
{ 0x04d5, "Forte Technologies, Inc." },
{ 0x04d6, "Mentor Graphics" },
{ 0x04d7, "Oki Semiconductor" },
{ 0x04d8, "Microchip Technology, Inc." },
{ 0x04d9, "Holtek Semiconductor, Inc." },
{ 0x04da, "Panasonic (Matsushita)" },
{ 0x04db, "Hypertec Pty, Ltd" },
{ 0x04dc, "Huan Hsin Holdings, Ltd" },
{ 0x04dd, "Sharp Corp." },
{ 0x04de, "MindShare, Inc." },
{ 0x04df, "Interlink Electronics" },
{ 0x04e1, "Iiyama North America, Inc." },
{ 0x04e2, "Exar Corp." },
{ 0x04e3, "Zilog, Inc." },
{ 0x04e4, "ACC Microelectronics" },
{ 0x04e5, "Promise Technology" },
{ 0x04e6, "SCM Microsystems, Inc." },
{ 0x04e7, "Elo TouchSystems" },
{ 0x04e8, "Samsung Electronics Co., Ltd" },
{ 0x04e9, "PC-Tel, Inc." },
{ 0x04ea, "Brooktree Corp." },
{ 0x04eb, "Northstar Systems, Inc." },
{ 0x04ec, "Tokyo Electron Device, Ltd" },
{ 0x04ed, "Annabooks" },
{ 0x04ef, "Pacific Electronic International, Inc." },
{ 0x04f0, "Daewoo Electronics Co., Ltd" },
{ 0x04f1, "Victor Company of Japan, Ltd" },
{ 0x04f2, "Chicony Electronics Co., Ltd" },
{ 0x04f3, "Elan Microelectronics Corp." },
{ 0x04f4, "Harting Elektronik, Inc." },
{ 0x04f5, "Fujitsu-ICL Systems, Inc." },
{ 0x04f6, "Norand Corp." },
{ 0x04f7, "Newnex Technology Corp." },
{ 0x04f8, "FuturePlus Systems" },
{ 0x04f9, "Brother Industries, Ltd" },
{ 0x04fa, "Dallas Semiconductor" },
{ 0x04fb, "Biostar Microtech International Corp." },
{ 0x04fc, "Sunplus Technology Co., Ltd" },
{ 0x04fd, "Soliton Systems, K.K." },
{ 0x04fe, "PFU, Ltd" },
{ 0x04ff, "E-CMOS Corp." },
{ 0x0500, "Siam United Hi-Tech" },
{ 0x0501, "Fujikura DDK, Ltd" },
{ 0x0502, "Acer, Inc." },
{ 0x0503, "Hitachi America, Ltd" },
{ 0x0504, "Hayes Microcomputer Products" },
{ 0x0506, "3Com Corp." },
{ 0x0507, "Hosiden Corp." },
{ 0x0508, "Clarion Co., Ltd" },
{ 0x0509, "Aztech Systems, Ltd" },
{ 0x050a, "Cinch Connectors" },
{ 0x050b, "Cable System International" },
{ 0x050c, "InnoMedia, Inc." },
{ 0x050d, "Belkin Components" },
{ 0x050e, "Neon Technology, Inc." },
{ 0x050f, "KC Technology, Inc." },
{ 0x0510, "Sejin Electron, Inc." },
{ 0x0511, "N'Able (DataBook) Technologies, Inc." },
{ 0x0512, "Hualon Microelectronics Corp." },
{ 0x0513, "digital-X, Inc." },
{ 0x0514, "FCI Electronics" },
{ 0x0515, "ACTC" },
{ 0x0516, "Longwell Electronics" },
{ 0x0517, "Butterfly Communications" },
{ 0x0518, "EzKEY Corp." },
{ 0x0519, "Star Micronics Co., Ltd" },
{ 0x051a, "WYSE Technology" },
{ 0x051b, "Silicon Graphics" },
{ 0x051c, "Shuttle, Inc." },
{ 0x051d, "American Power Conversion" },
{ 0x051e, "Scientific Atlanta, Inc." },
{ 0x051f, "IO Systems (Elite Electronics), Inc." },
{ 0x0520, "Taiwan Semiconductor Manufacturing Co." },
{ 0x0521, "Airborn Connectors" },
{ 0x0522, "Advanced Connectek, Inc." },
{ 0x0523, "ATEN GmbH" },
{ 0x0524, "Sola Electronics" },
{ 0x0525, "Netchip Technology, Inc." },
{ 0x0526, "Temic MHS S.A." },
{ 0x0527, "ALTRA" },
{ 0x0528, "ATI Technologies, Inc." },
{ 0x0529, "Aladdin Knowledge Systems" },
{ 0x052a, "Crescent Heart Software" },
{ 0x052b, "Tekom Technologies, Inc." },
{ 0x052c, "Canon Information Systems, Inc." },
{ 0x052d, "Avid Electronics Corp." },
{ 0x052e, "Standard Microsystems Corp." },
{ 0x052f, "Unicore Software, Inc." },
{ 0x0530, "American Microsystems, Inc." },
{ 0x0531, "Wacom Technology Corp." },
{ 0x0532, "Systech Corp." },
{ 0x0533, "Alcatel Mobile Phones" },
{ 0x0534, "Motorola, Inc." },
{ 0x0535, "LIH TZU Electric Co., Ltd" },
{ 0x0536, "Hand Held Products (Welch Allyn, Inc.)" },
{ 0x0537, "Inventec Corp." },
{ 0x0538, "Caldera International, Inc. (SCO)" },
{ 0x0539, "Shyh Shiun Terminals Co., Ltd" },
{ 0x053a, "PrehKeyTec GmbH" },
{ 0x053b, "Global Village Communication" },
{ 0x053c, "Institut of Microelectronic & Mechatronic Systems" },
{ 0x053d, "Silicon Architect" },
{ 0x053e, "Mobility Electronics" },
{ 0x053f, "Synopsys, Inc." },
{ 0x0540, "UniAccess AB" },
{ 0x0541, "Sirf Technology, Inc." },
{ 0x0543, "ViewSonic Corp." },
{ 0x0544, "Cristie Electronics, Ltd" },
{ 0x0545, "Xirlink, Inc." },
{ 0x0546, "Polaroid Corp." },
{ 0x0547, "Anchor Chips, Inc." },
{ 0x0548, "Tyan Computer Corp." },
{ 0x0549, "Pixera Corp." },
{ 0x054a, "Fujitsu Microelectronics, Inc." },
{ 0x054b, "New Media Corp." },
{ 0x054c, "Sony Corp." },
{ 0x054d, "Try Corp." },
{ 0x054e, "Proside Corp." },
{ 0x054f, "WYSE Technology Taiwan" },
{ 0x0550, "Fuji Xerox Co., Ltd" },
{ 0x0551, "CompuTrend Systems, Inc." },
{ 0x0552, "Philips Monitors" },
{ 0x0553, "STMicroelectronics Imaging Division (VLSI Vision)" },
{ 0x0554, "Dictaphone Corp." },
{ 0x0555, "ANAM S&T Co., Ltd" },
{ 0x0556, "Asahi Kasei Microsystems Co., Ltd" },
{ 0x0557, "ATEN International Co., Ltd" },
{ 0x0558, "Truevision, Inc." },
{ 0x0559, "Cadence Design Systems, Inc." },
{ 0x055a, "Kenwood USA" },
{ 0x055b, "KnowledgeTek, Inc." },
{ 0x055c, "Proton Electronic Ind." },
{ 0x055d, "Samsung Electro-Mechanics Co." },
{ 0x055e, "CTX Opto-Electronics Corp." },
{ 0x055f, "Mustek Systems, Inc." },
{ 0x0560, "Interface Corp." },
{ 0x0561, "Oasis Design, Inc." },
{ 0x0562, "Telex Communications, Inc." },
{ 0x0563, "Immersion Corp." },
{ 0x0564, "Kodak Digital Product Center, Japan Ltd. (formerly Chinon Industries Inc.)" },
{ 0x0565, "Peracom Networks, Inc." },
{ 0x0566, "Monterey International Corp." },
{ 0x0567, "Xyratex International, Ltd" },
{ 0x0568, "Quartz Ingenierie" },
{ 0x0569, "SegaSoft" },
{ 0x056a, "Wacom Co., Ltd" },
{ 0x056b, "Decicon, Inc." },
{ 0x056c, "eTEK Labs" },
{ 0x056d, "EIZO Corp." },
{ 0x056e, "Elecom Co., Ltd" },
{ 0x056f, "Korea Data Systems Co., Ltd" },
{ 0x0570, "Epson America" },
{ 0x0571, "Interex, Inc." },
{ 0x0572, "Conexant Systems (Rockwell), Inc." },
{ 0x0573, "Zoran Co. Personal Media Division (Nogatech)" },
{ 0x0574, "City University of Hong Kong" },
{ 0x0575, "Philips Creative Display Solutions" },
{ 0x0576, "BAFO/Quality Computer Accessories" },
{ 0x0577, "ELSA" },
{ 0x0578, "Intrinsix Corp." },
{ 0x0579, "GVC Corp." },
{ 0x057a, "Samsung Electronics America" },
{ 0x057b, "Y-E Data, Inc." },
{ 0x057c, "AVM GmbH" },
{ 0x057d, "Shark Multimedia, Inc." },
{ 0x057e, "Nintendo Co., Ltd" },
{ 0x057f, "QuickShot, Ltd" },
{ 0x0580, "Denron, Inc." },
{ 0x0581, "Racal Data Group" },
{ 0x0582, "Roland Corp." },
{ 0x0583, "Padix Co., Ltd (Rockfire)" },
{ 0x0584, "RATOC System, Inc." },
{ 0x0585, "FlashPoint Technology, Inc." },
{ 0x0586, "ZyXEL Communications Corp." },
{ 0x0587, "America Kotobuki Electronics Industries, Inc." },
{ 0x0588, "Sapien Design" },
{ 0x0589, "Victron" },
{ 0x058a, "Nohau Corp." },
{ 0x058b, "Infineon Technologies" },
{ 0x058c, "In Focus Systems" },
{ 0x058d, "Micrel Semiconductor" },
{ 0x058e, "Tripath Technology, Inc." },
{ 0x058f, "Alcor Micro Corp." },
{ 0x0590, "Omron Corp." },
{ 0x0591, "Questra Consulting" },
{ 0x0592, "Powerware Corp." },
{ 0x0593, "Incite" },
{ 0x0594, "Princeton Graphic Systems" },
{ 0x0595, "Zoran Microelectronics, Ltd" },
{ 0x0596, "MicroTouch Systems, Inc." },
{ 0x0597, "Trisignal Communications" },
{ 0x0598, "Niigata Canotec Co., Inc." },
{ 0x0599, "Brilliance Semiconductor, Inc." },
{ 0x059a, "Spectrum Signal Processing, Inc." },
{ 0x059b, "Iomega Corp." },
{ 0x059c, "A-Trend Technology Co., Ltd" },
{ 0x059d, "Advanced Input Devices" },
{ 0x059e, "Intelligent Instrumentation" },
{ 0x059f, "LaCie, Ltd" },
{ 0x05a0, "Vetronix Corp." },
{ 0x05a1, "USC Corp." },
{ 0x05a2, "Fuji Film Microdevices Co., Ltd" },
{ 0x05a3, "ARC International" },
{ 0x05a4, "Ortek Technology, Inc." },
{ 0x05a5, "Sampo Technology Corp." },
{ 0x05a6, "Cisco Systems, Inc." },
{ 0x05a7, "Bose Corp." },
{ 0x05a8, "Spacetec IMC Corp." },
{ 0x05a9, "OmniVision Technologies, Inc." },
{ 0x05aa, "Utilux South China, Ltd" },
{ 0x05ab, "In-System Design" },
{ 0x05ac, "Apple, Inc." },
{ 0x05ad, "Y.C. Cable U.S.A., Inc." },
{ 0x05ae, "Synopsys, Inc." },
{ 0x05af, "Jing-Mold Enterprise Co., Ltd" },
{ 0x05b0, "Fountain Technologies, Inc." },
{ 0x05b1, "First International Computer, Inc." },
{ 0x05b4, "LG Semicon Co., Ltd" },
{ 0x05b5, "Dialogic Corp." },
{ 0x05b6, "Proxima Corp." },
{ 0x05b7, "Medianix Semiconductor, Inc." },
{ 0x05b8, "Agiler, Inc." },
{ 0x05b9, "Philips Research Laboratories" },
{ 0x05ba, "DigitalPersona, Inc." },
{ 0x05bb, "Grey Cell Systems" },
{ 0x05bc, "3G Green Green Globe Co., Ltd" },
{ 0x05bd, "RAFI GmbH & Co. KG" },
{ 0x05be, "Tyco Electronics (Raychem)" },
{ 0x05bf, "S & S Research" },
{ 0x05c0, "Keil Software" },
{ 0x05c1, "Kawasaki Microelectronics, Inc." },
{ 0x05c2, "Media Phonics (Suisse) S.A." },
{ 0x05c5, "Digi International, Inc." },
{ 0x05c6, "Qualcomm, Inc." },
{ 0x05c7, "Qtronix Corp." },
{ 0x05c8, "Cheng Uei Precision Industry Co., Ltd (Foxlink)" },
{ 0x05c9, "Semtech Corp." },
{ 0x05ca, "Ricoh Co., Ltd" },
{ 0x05cb, "PowerVision Technologies, Inc." },
{ 0x05cc, "ELSA AG" },
{ 0x05cd, "Silicom, Ltd" },
{ 0x05ce, "sci-worx GmbH" },
{ 0x05cf, "Sung Forn Co., Ltd" },
{ 0x05d0, "GE Medical Systems Lunar" },
{ 0x05d1, "Brainboxes, Ltd" },
{ 0x05d2, "Wave Systems Corp." },
{ 0x05d3, "Tohoku Ricoh Co., Ltd" },
{ 0x05d5, "Super Gate Technology Co., Ltd" },
{ 0x05d6, "Philips Semiconductors, CICT" },
{ 0x05d7, "Thomas & Betts Corp." },
{ 0x05d8, "Ultima Electronics Corp." },
{ 0x05d9, "Axiohm Transaction Solutions" },
{ 0x05da, "Microtek International, Inc." },
{ 0x05db, "Sun Corp. (Suntac?)" },
{ 0x05dc, "Lexar Media, Inc." },
{ 0x05dd, "Delta Electronics, Inc." },
{ 0x05df, "Silicon Vision, Inc." },
{ 0x05e0, "Symbol Technologies" },
{ 0x05e1, "Syntek Semiconductor Co., Ltd" },
{ 0x05e2, "ElecVision, Inc." },
{ 0x05e3, "Genesys Logic, Inc." },
{ 0x05e4, "Red Wing Corp." },
{ 0x05e5, "Fuji Electric Co., Ltd" },
{ 0x05e6, "Keithley Instruments" },
{ 0x05e8, "ICC, Inc." },
{ 0x05e9, "Kawasaki LSI" },
{ 0x05eb, "FFC, Ltd" },
{ 0x05ec, "COM21, Inc." },
{ 0x05ee, "Cytechinfo Inc." },
{ 0x05ef, "AVB, Inc. [anko?]" },
{ 0x05f0, "Canopus Co., Ltd" },
{ 0x05f1, "Compass Communications" },
{ 0x05f2, "Dexin Corp., Ltd" },
{ 0x05f3, "PI Engineering, Inc." },
{ 0x05f5, "Unixtar Technology, Inc." },
{ 0x05f6, "AOC International" },
{ 0x05f7, "RFC Distribution(s) PTE, Ltd" },
{ 0x05f9, "PSC Scanning, Inc." },
{ 0x05fa, "Siemens Telecommunications Systems, Ltd" },
{ 0x05fc, "Harman Multimedia" },
{ 0x05fd, "InterAct, Inc." },
{ 0x05fe, "Chic Technology Corp." },
{ 0x05ff, "LeCroy Corp." },
{ 0x0600, "Barco Display Systems" },
{ 0x0601, "Jazz Hipster Corp." },
{ 0x0602, "Vista Imaging, Inc." },
{ 0x0603, "Novatek Microelectronics Corp." },
{ 0x0604, "Jean Co., Ltd" },
{ 0x0605, "Anchor C&C Co., Ltd" },
{ 0x0606, "Royal Information Electronics Co., Ltd" },
{ 0x0607, "Bridge Information Co., Ltd" },
{ 0x0608, "Genrad Ads" },
{ 0x0609, "SMK Manufacturing, Inc." },
{ 0x060a, "Worthington Data Solutions, Inc." },
{ 0x060b, "Solid Year" },
{ 0x060c, "EEH Datalink GmbH" },
{ 0x060d, "Auctor Corp." },
{ 0x060e, "Transmonde Technologies, Inc." },
{ 0x060f, "Joinsoon Electronics Mfg. Co., Ltd" },
{ 0x0610, "Costar Electronics, Inc." },
{ 0x0611, "Totoku Electric Co., Ltd" },
{ 0x0613, "TransAct Technologies, Inc." },