ethercrab 0.6.0

A pure Rust EtherCAT MainDevice supporting std and no_std environments
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
#![allow(unused)]

//! EtherCAT vendor ID and name list.
//!
//! This list is extracted from [ethercat.org](https://www.ethercat.org/en/vendor_id_list.html).
//!
//! Last updated: 2022-07-25

pub fn vendor_name(search_id: u32) -> Option<&'static str> {
    ETHERCAT_VENDORS
        .iter()
        .find_map(|(id, name)| if *id == search_id { Some(*name) } else { None })
}

/// EtherCAT vendor ID and name list.
pub const ETHERCAT_VENDORS: &[(u32, &str)] = &[
    (0x0000_0001, "EtherCAT Technology Group"),
    (0x0000_0002, "Beckhoff Automation GmbH & Co. KG"),
    (0x0000_0003, "Scuola Superiore S. Anna"),
    (0x0000_0004, "HMS Technology Center Ravensburg GmbH"),
    (0x0000_0005, "Vector Informatik GmbH"),
    (0x0000_0006, "KNESTEL Technologie & Elektronik GmbH"),
    (0x0000_0007, "Janz Tec AG"),
    (0x0000_0009, "A&C Institute of Shenyang University of Technology"),
    (0x0000_000A, "CMZ Sistemi Elettronici"),
    (0x0000_000B, "JSL Technology Co.,Ltd"),
    (0x0000_000C, "comemso GmbH"),
    (0x0000_000D, "Softing Industrial Automation GmbH"),
    (0x0000_000E, "MicroControl GmbH & Co. KG"),
    (0x0000_000F, "ESR Pollmeier GmbH"),
    (0x0000_0010, "Beihang University, School of Mechanical Engineering & Automation"),
    (0x0000_0011, "GKG Precision Machine Co., Ltd."),
    (0x0000_0012, "Inatech Co., Ltd."),
    (0x0000_0013, "Fritz Kübler GmbH"),
    (0x0000_0014, "KEB Automation KG"),
    (0x0000_0015, "AJINEXTEK Co. Ltd."),
    (0x0000_0016, "KEBA Industrial Automation Germany GmbH"),
    (0x0000_0017, "esd electronics gmbh"),
    (0x0000_0018, "M2I Corporation"),
    (0x0000_0019, "NSD Corporation"),
    (0x0000_001A, "Shanghai ECAT Science and Technology Co.,Ltd"),
    (0x0000_001B, "HMS Industrial Networks AB"),
    (0x0000_001C, "epis Automation GmbH & Co. KG"),
    (0x0000_001D, "Festo SE & Co. KG"),
    (0x0000_001E, "Shanghai MicroPort Medical (Group) Co., Ltd."),
    (0x0000_0020, "DST Robot Co. Ltd."),
    (0x0000_0021, "WAGO GmbH & Co. KG"),
    (0x0000_0022, "Wuhan Farley Laserlab Cutting Welding System Engineering Co., Ltd."),
    (0x0000_0023, "ACTi Corporation"),
    (0x0000_0024, "Bosch Rexroth AG"),
    (0x0000_0025, "Inexbot NanJing Technology Co., Ltd."),
    (0x0000_0026, "Hongke Technology Co., Ltd."),
    (0x0000_0027, "Selcom Group S.p.A."),
    (0x0000_0028, "Moog GmbH"),
    (0x0000_0029, "INTEC - Motion Systems GmbH"),
    (0x0000_002A, "HIGHYAG Lasertechnologie GmbH"),
    (0x0000_002B, "Doosan Robotics Inc."),
    (0x0000_002C, "Probot Automation GmbH"),
    (0x0000_002D, "Beijing NiMotion Control Technology Co., Ltd."),
    (0x0000_002E, "Dinkle Enterprise Co. Ltd."),
    (0x0000_002F, "Guangzhou Kossi Intelligent Technology Co., Ltd."),
    (0x0000_0030, "Epec Oy"),
    (0x0000_0031, "Chengdu EVControl Technology Co., Ltd."),
    (0x0000_0032, "Robotek Otomasyon Teknolojileri San. Tic. Ltd. Sti."),
    (0x0000_0033, "Shenzhen Liwi Automation Co., Ltd."),
    (0x0000_0034, "port industrial automation GmbH"),
    (0x0000_0035, "Weissler Information Technology GmbH"),
    (0x0000_0036, "FAS Electronics (Fujian) Co.,LTD."),
    (0x0000_0037, "Guangzhou Honest Automation Co., Ltd."),
    (0x0000_0038, "InCAT"),
    (0x0000_0039, "Bürkert Werke GmbH"),
    (0x0000_003A, "Adtec Plasma Technology Co. Ltd."),
    (0x0000_003B, "Lenze SE"),
    (0x0000_003C, "Shanghai 3cRobot Co.,Ltd."),
    (0x0000_003D, "Tianjin Fuyun Tianyi Technology Co., Ltd."),
    (0x0000_003E, "MH Robot & Automation Co., Ltd."),
    (0x0000_003F, "Weihai IDENCODER Electronic Technology Co.,Ltd"),
    (0x0000_0040, "Temposonics GmbH & Co. KG"),
    (0x0000_0041, "HIOKI E.E. Corporation"),
    (0x0000_0042, "TIGRIS Electronic GmbH"),
    (0x0000_0043, "Hangzhou Muxun Technology Co., Ltd."),
    (0x0000_0044, "Hilscher GmbH"),
    (0x0000_0045, "MINTROBOT Co., Ltd."),
    (0x0000_0046, "Bosch Rexroth (Xi’an) Electric Drives and Controls Co., Ltd."),
    (0x0000_0047, "WIKA Alexander Wiegand SE & Co. KG"),
    (0x0000_0048, "Handtmann e-solutions GmbH & Co. KG"),
    (0x0000_0049, "Industrial Software Co."),
    (0x0000_004A, "Henschel-Robotics GmbH"),
    (0x0000_004B, "Ever Elettronica srl"),
    (0x0000_004C, "Smart Motion Control Co., Ltd."),
    (0x0000_004D, "Monolithic Motion Solutions"),
    (0x0000_004E, "Xeryon bvba"),
    (0x0000_004F, "Murrelektronik GmbH"),
    (0x0000_0050, "Orion Technology Co., Ltd."),
    (0x0000_0051, "PowerTech Converter GmbH"),
    (0x0000_0052, "Beijing Jingwei New Technology Textile Machinery CO., LTD."),
    (0x0000_0053, "Delta Farm Co., Ltd."),
    (0x0000_0057, "Komax AG"),
    (0x0000_0058, "Shanghai Fangling Software Co., Ltd."),
    (0x0000_0059, "SEW-EURODRIVE GmbH & Co KG"),
    (0x0000_005A, "Shenzhen Yoda Motion Control Technology Co., Ltd."),
    (0x0000_005D, "Schleicher Electronic Berlin GmbH"),
    (0x0000_0060, "INCAA Computers BV"),
    (0x0000_0062, "Bachmann electronic GmbH"),
    (0x0000_0066, "ROFIN-SINAR Laser GmbH"),
    (0x0000_0067, "MAC Valves, Inc."),
    (0x0000_0068, "Fagor Automation Sociedad Cooperativa"),
    (0x0000_006A, "KOLLMORGEN Corporation"),
    (0x0000_006B, "Woodward Kempen GmbH"),
    (0x0000_006C, "Bernecker + Rainer Industrie-Elektronik Ges.m.b.H"),
    (0x0000_0070, "MIRAPRO Co., Ltd."),
    (0x0000_0072, "INAMCT CO.,LTD."),
    (0x0000_0077, "SLC Sautter Lift Components GmbH & Co. KG"),
    (0x0000_0079, "ETLsoft Kft."),
    (0x0000_007A, "SIBONAC Laser Technologies Co.,Ltd."),
    (0x0000_007B, "TÜV SÜD Rail GmbH"),
    (0x0000_0080, "YDIIT Co., Ltd."),
    (0x0000_0081, "AUBO (BEIJING) ROBOTICS TECHNOLOGY CO., LTD"),
    (0x0000_0082, "Infranor SAS"),
    (0x0000_0083, "OMRON Corporation"),
    (0x0000_0084, "Phoenix Contact GmbH & Co. KG"),
    (0x0000_0087, "Boneng Transmission Co. Ltd."),
    (0x0000_0088, "THINKVO Automation Equipment Co.,Ltd."),
    (0x0000_0089, "Shenyang Jinchi Chuangxin Technology Co.,LTD"),
    (0x0000_008A, "System Ceramics S.p.A."),
    (0x0000_008E, "Lazer Safe Pty Ltd"),
    (0x0000_0090, "Vacon Oy"),
    (0x0000_0093, "Gefran S.P.A."),
    (0x0000_0097, "Camozzi Automation S.p.A."),
    (0x0000_0099, "SHENZHEN CO-TRUST TECHNOLOGY CO., LTD."),
    (0x0000_009A, "Elmo Motion Control Ltd."),
    (0x0000_009B, "Hope Win Industrial Co.,Ltd."),
    (0x0000_009C, "Hans Turck GmbH & Co. KG"),
    (0x0000_009F, "Konsept Elektronik Otomasyon ve Yazilim"),
    (0x0000_00A0, "Sontheim Industrie Elektronik GmbH"),
    (0x0000_00A2, "HORIBA STEC, Co., Ltd."),
    (0x0000_00A3, "HORIBA Instruments Incorporated"),
    (0x0000_00A4, "HORIBA Precision Instruments (Beijing) Co,.Ltd."),
    (0x0000_00A5, "Hirschmann Automation and Control GmbH"),
    (0x0000_00A7, "Wieland Electric GmbH"),
    (0x0000_00AA, "Beijing A&E Technologies Co., Ltd."),
    (0x0000_00AB, "Copley Controls, a Division of Analogic Corporation"),
    (0x0000_00AC, "Atlas Copco IAS GmbH"),
    (0x0000_00AD, "Pepperl+Fuchs SE"),
    (0x0000_00AF, "Johannes Hübner Fabrik elektrischer Maschinen GmbH"),
    (0x0000_00B1, "Bristol Industrial & Research Associates Ltd (Biral)"),
    (0x0000_00B3, "Jetter AG"),
    (0x0000_00B4, "Rob Surgical Systems S.L."),
    (0x0000_00B7, "ABB Oy Drives"),
    (0x0000_00B9, "STÖBER ANTRIEBSTECHNIK GmbH & Co. KG"),
    (0x0000_00BB, "Shanghai Baobin Robot Automation Technology CO., LTD."),
    (0x0000_00BC, "AEC S.r.l."),
    (0x0000_00BD, "ADVANCED Motion Controls"),
    (0x0000_00BE, "Bloom Energy (India) Private Limited"),
    (0x0000_00C0, "Technofusion Co.,Ltd."),
    (0x0000_00C5, "Comdel, Inc."),
    (0x0000_00C6, "Mitrol S.r.l."),
    (0x0000_00CC, "DENSAN CO., LTD."),
    (0x0000_00CD, "Wipotec GmbH"),
    (0x0000_00CE, "Mitsubishi Electric India Pvt. Ltd."),
    (0x0000_00D5, "Bonfiglioli Vectron MDS GmbH"),
    (0x0000_00D6, "HENSOLDT Optronics GmbH"),
    (0x0000_00D9, "Phase Motion Control SpA"),
    (0x0000_00DA, "Diener Automation GmbH & Co. KG"),
    (0x0000_00DB, "Dorabot Inc."),
    (0x0000_00DD, "Samsung Electro-Mechanics Co., Ltd."),
    (0x0000_00DE, "Dave Engineering LLC"),
    (0x0000_00E2, "plating electronic GmbH"),
    (0x0000_00E3, "CHONGQING PULSE ROBOT CONTROL SYSTEM CO., LTD."),
    (0x0000_00E4, "Metronix Messgeräte und Elektronik GmbH"),
    (0x0000_00E9, "Ascon S.p.A."),
    (0x0000_00EA, "ESAB-ATAS GmbH"),
    (0x0000_00EB, "Elektrobit Automotive GmbH"),
    (0x0000_00EC, "Baumer IVO GmbH & Co. KG"),
    (0x0000_00ED, "E.D. Elettronica Dedicata S.r.l."),
    (0x0000_00EE, "Ingenieurbüro Dr. Tammo Winkler"),
    (0x0000_00EF, "Elcis Encoder S.r.l."),
    (0x0000_00F1, "McLaren Group Limited"),
    (0x0000_00F2, "Guangdong University of Technology"),
    (0x0000_00F4, "Atos SpA"),
    (0x0000_00F5, "Giant Magellan Telescope Corporation"),
    (0x0000_00F8, "Shanghai Micron Automation Co. Ltd."),
    (0x0000_00F9, "Nidec Control Techniques Ltd."),
    (0x0000_00FB, "maxon motor ag"),
    (0x0000_00FC, "Yacoub Automation GmbH"),
    (0x0000_00FE, "Precitec GmbH & Co. KG"),
    (0x0000_00FF, "South China University of Technology"),
    (0x0000_0100, "Easydur Italiana di Renato Affri"),
    (0x0000_0101, "ISAC Srl."),
    (0x0000_0104, "LMD GmbH & Co. KG aA"),
    (0x0000_0105, "Microcyber Corporation"),
    (0x0000_010A, "WITTENSTEIN cyber motor GmbH"),
    (0x0000_010B, "WITTENSTEIN motion control GmbH"),
    (0x0000_010D, "TWK-Elektronik GmbH"),
    (0x0000_010F, "PSA Elettronica di F. Grifa"),
    (0x0000_0110, "Maxphotonics Co.,Ltd."),
    (0x0000_0111, "HEITEC AG"),
    (0x0000_0113, "Soft Service Co., Ltd."),
    (0x0000_0114, "SMC Corporation"),
    (0x0000_0116, "Eckelmann AG"),
    (0x0000_0117, "JVL Industri Elektronik A/S"),
    (0x0000_0118, "Hangzhou Liwei Technology Co. LTD."),
    (0x0000_011C, "ATESTEO GmbH"),
    (0x0000_011D, "Hottinger Brüel & Kjaer GmbH"),
    (0x0000_0121, "Leuze electronic GmbH + Co. KG"),
    (0x0000_0123, "WEG Equipamentos Elétricos S.A."),
    (0x0000_0126, "JUMO GmbH & Co. KG"),
    (0x0000_0128, "Han's Smart Control Technology Co., Ltd."),
    (0x0000_0129, "HSD S.p.A"),
    (0x0000_012B, "Digital Electronics Corporation"),
    (0x0000_012E, "Lika Electronic Srl"),
    (0x0000_012F, "CSM GmbH"),
    (0x0000_0135, "DUOmetric AG"),
    (0x0000_0137, "Fenwal Controls of Japan,Ltd."),
    (0x0000_0142, "SCAIME S.A.S."),
    (0x0000_0144, "TECNOLOGIX Srl"),
    (0x0000_0146, "LPKF SolarQuipment GmbH"),
    (0x0000_0147, "Dr. Fritz Faulhaber GmbH & Co. KG"),
    (0x0000_0149, "Fraunhofer-Institut für Produktionsanlagen und Konstruktionstechnik IPK"),
    (0x0000_014A, "imc Messysteme GmbH"),
    (0x0000_014F, "TMG Technologie und Engineering GmbH"),
    (0x0000_0151, "Zaklad Produkcji Urzadzen Automatyki Sp. z o.o."),
    (0x0000_0152, "Eckelmann FCS GmbH"),
    (0x0000_0155, "Bluechips Microhouse Co., Ltd."),
    (0x0000_015A, "Baumüller Nürnberg GmbH"),
    (0x0000_015B, "ENGEL Elektroantriebe GmbH"),
    (0x0000_015D, "OSRAM GmbH"),
    (0x0000_0160, "Seltek Ltd."),
    (0x0000_0163, "AeroLas GmbH"),
    (0x0000_0166, "Metso Automation Oy"),
    (0x0000_0168, "Shanghai AMP&MOONS' Automation Co., Ltd."),
    (0x0000_0169, "RINCO ULTRASONICS AG"),
    (0x0000_016D, "COMSOFT GmbH"),
    (0x0000_0170, "Woodward, Inc."),
    (0x0000_0171, "Prima Electro S.p.A."),
    (0x0000_0172, "Fraunhofer-Institut für Produktionsanlagen und Konstruktionstechnik IPK"),
    (0x0000_0173, "Korea Aerospace University"),
    (0x0000_0175, "Massachusetts Institute of Technology (MIT)"),
    (0x0000_0178, "Foshan Korter Automatic Precision Measurement & Control Technology Co., Ltd."),
    (0x0000_017A, "Pneumax S.p.A."),
    (0x0000_017F, "R.T.A. S.r.l."),
    (0x0000_0181, "FEV Software and Testing Solutions GmbH"),
    (0x0000_0184, "BEI Sensors SAS"),
    (0x0000_0186, "Zhejiang University of Technology, College of Information Engineering"),
    (0x0000_0188, "Flexiv Robotics Ltd."),
    (0x0000_0189, "Pilz GmbH & Co. KG"),
    (0x0000_018A, "ASA-RT srl"),
    (0x0000_018C, "University of Patras"),
    (0x0000_0190, "Promess Incorporated"),
    (0x0000_0191, "PROMESS Gesellschaft für Montage- und Prüfsysteme mbH"),
    (0x0000_0192, "Matsusada Precision Inc."),
    (0x0000_0194, "Leine & Linde AB"),
    (0x0000_0195, "SIKO GmbH"),
    (0x0000_0196, "Ningbo Taicen Electronic-Test Technology Co., Ltd."),
    (0x0000_0198, "Automation Modules, Inc."),
    (0x0000_019B, "SP.EL. srl"),
    (0x0000_019D, "Deutschmann Automation GmbH & Co. KG"),
    (0x0000_019E, "Golden A/S"),
    (0x0000_01A1, "Brunner Elektronik AG"),
    (0x0000_01A2, "Heckner Electronics GmbH"),
    (0x0000_01A3, "TECHNOSOFT S.A."),
    (0x0000_01A4, "Kongsberg Maritime AS"),
    (0x0000_01A6, "REO AG"),
    (0x0000_01AC, "Kyushu Institute of Technology, Ochi & Kurosaki Lab, School of Computer Science and Systems Engineering"),
    (0x0000_01AF, "Yanfeng Automotive Interior Systems Co. Ltd."),
    (0x0000_01B0, "ABB AB, Jokab Safety"),
    (0x0000_01B2, "AVENTICS GmbH"),
    (0x0000_01B3, "ASCO Numatics GmbH"),
    (0x0000_01B4, "Peyer Engineering"),
    (0x0000_01B5, "Robox S.P.A."),
    (0x0000_01B8, "PMB Elektronik GmbH"),
    (0x0000_01B9, "Sanyo Denki Co., Ltd."),
    (0x0000_01BA, "ZHONGSHAN MLTOR CNC TECHNOLOGY CO., LTD."),
    (0x0000_01BB, "Sciemetric Instruments ULC"),
    (0x0000_01BC, "Eurotherm Limited"),
    (0x0000_01BD, "Eurotherm Automation SAS"),
    (0x0000_01BE, "PRIMES GmbH"),
    (0x0000_01C0, "Kobe Steel, Ltd."),
    (0x0000_01C4, "Regatron AG"),
    (0x0000_01C7, "Eaton Industries GmbH"),
    (0x0000_01DD, "Delta Electronics, Inc."),
    (0x0000_01DF, "Xeikon N.V. - Xeikon Manufacturing and R&D Center"),
    (0x0000_01E1, "ASCO L.P."),
    (0x0000_01EB, "AMKmotion GmbH + Co KG"),
    (0x0000_01EC, "Plus Electric Co.,Ltd."),
    (0x0000_01EE, "ADTECH (SHENZHEN) CNC TECHNOLOGY CO., LTD."),
    (0x0000_01F4, "Robatech AG"),
    (0x0000_01F7, "Industrial Technology Research Institute (ITRI)"),
    (0x0000_01F8, "Hunan Lianghu Electromechanical Technology Co., Ltd."),
    (0x0000_01F9, "National Instruments Corporation"),
    (0x0000_01FC, "Fernsteuergeräte Kurt Oelsch GmbH"),
    (0x0000_01FD, "INA - Drives & Mechatronics GmbH & Co. KG"),
    (0x0000_01FE, "PRÜFTECHNIK NDT GmbH"),
    (0x0000_01FF, "Zhejiang Qixing Electron Co., Ltd."),
    (0x0000_0205, "BDF DIGITAL S.p.A."),
    (0x0000_0207, "esitron-electronic GmbH"),
    (0x0000_020C, "ITOH DENKI CO.,LTD."),
    (0x0000_0210, "iASYS Technology Solution Pvt Ltd."),
    (0x0000_0214, "Kniel System-Electronic GmbH"),
    (0x0000_0218, "GERMAN POWER GmbH"),
    (0x0000_0219, "Real Time Automation, Inc."),
    (0x0000_021B, "Swift Engineering, Inc."),
    (0x0000_021F, "Wachendorff Automation GmbH & Co. KG"),
    (0x0000_0222, "IBH-Tec GmbH"),
    (0x0000_0223, "Helmholz GmbH & Co. KG"),
    (0x0000_0225, "Pantec Engineering AG"),
    (0x0000_022B, "YASKAWA Europe GmbH"),
    (0x0000_022F, "TOKYO KEIKI INC."),
    (0x0000_0230, "Weidmüller Interface GmbH & Co. KG"),
    (0x0000_0233, "Guangdong Xi'an Jiaotong University Academy"),
    (0x0000_0234, "AStepTech (Shenzhen) CNC Co., Ltd."),
    (0x0000_023A, "ABB Automation Products GmbH"),
    (0x0000_023B, "Berghof Automation GmbH"),
    (0x0000_023C, "NS System Co., Ltd."),
    (0x0000_023D, "Sensor-Technik Wiedemann GmbH"),
    (0x0000_0240, "Spezialantriebstechnik GmbH"),
    (0x0000_0242, "Yuanda Robotics GmbH"),
    (0x0000_0246, "MKP Co., Ltd."),
    (0x0000_0247, "Harmonic Drive LLC"),
    (0x0000_024B, "Dongguan Kaifull Electronics Technology Co., Ltd."),
    (0x0000_024F, "Stotz Feinmesstechnik GmbH"),
    (0x0000_0250, "Litens Automotive Partnership"),
    (0x0000_0252, "Hilscher North America, Inc."),
    (0x0000_0255, "The Chinese University of Hong Kong, T Stone Robotics Institute"),
    (0x0000_0256, "Chengdu CRP Automation Control Technology Co., Ltd."),
    (0x0000_0257, "Dunkermotoren GmbH"),
    (0x0000_025E, "Fuji Electric Co., Ltd."),
    (0x0000_0260, "TRUMPF Hüttinger GmbH + Co. KG"),
    (0x0000_0265, "Aros Electronics AB"),
    (0x0000_0268, "Ho Chi Minh University of Technology, Faculty of Mechanical Engineering"),
    (0x0000_026C, "Nanotec Electronic GmbH & Co. KG"),
    (0x0000_0270, "ME-Meßsysteme GmbH"),
    (0x0000_0275, "Interroll Engineering GmbH"),
    (0x0000_0276, "Interroll Innovation GmbH"),
    (0x0000_0279, "ISH Ingenieursozietät GmbH"),
    (0x0000_027A, "Moog Unna GmbH"),
    (0x0000_027D, "ebm-papst St. Georgen GmbH & Co. KG"),
    (0x0000_0280, "MKPRECISION"),
    (0x0000_0283, "Roche Diagnostics AG"),
    (0x0000_0284, "Toshiba Schneider Inverter Corporation"),
    (0x0000_0285, "Bihl-Wiedemann GmbH"),
    (0x0000_0286, "TRINAMIC Motion Control GmbH & Co. KG"),
    (0x0000_0289, "HDT Srl"),
    (0x0000_0291, "Terzo Power Systems, LLC"),
    (0x0000_0292, "Horner APG LLC"),
    (0x0000_0296, "Performance Motion Devices, Inc."),
    (0x0000_0297, "UNIVER S.p.A."),
    (0x0000_029A, "C.L.GERHARTL Smart Systems GmbH"),
    (0x0000_029C, "INGENIA-CAT, S.L."),
    (0x0000_029D, "CREVIS Co., Ltd."),
    (0x0000_02AA, "WalthMac Measurement & Control Technology Co., Ltd."),
    (0x0000_02AD, "NIMAK GmbH"),
    (0x0000_02B4, "ELAP S.R.L."),
    (0x0000_02B8, "Gripping Power, Inc."),
    (0x0000_02B9, "Advanced Energy Industries, Inc."),
    (0x0000_02BA, "PBA Systems Pte Ltd"),
    (0x0000_02BE, "ORIENTAL MOTOR CO., LTD."),
    (0x0000_02C0, "Glentek, Inc."),
    (0x0000_02C1, "Fronius International GmbH"),
    (0x0000_02CE, "SHANGHAI GEMPLE M&E CO.,LTD"),
    (0x0000_02D0, "THK Co., Ltd."),
    (0x0000_02D1, "SAMICK THK CO.,LTD."),
    (0x0000_02D3, "Joint Peer Systec Corp."),
    (0x0000_02D8, "halstrup-walcher GmbH"),
    (0x0000_02DE, "Trio Motion Technology Ltd."),
    (0x0000_02E1, "Servotronix Motion Control Ltd."),
    (0x0000_02EA, "Suzhou NODKA Automation Technology Co., Ltd."),
    (0x0000_02EB, "Analytica GmbH"),
    (0x0000_02EE, "Metal Work S.p.A"),
    (0x0000_02FE, "Shanghai Chaifu Robot Co., Ltd."),
    (0x0000_0300, "Korea Textile Machinery Research Institute (KOTMI)"),
    (0x0000_0302, "Digitronic Automationsanlagen GmbH"),
    (0x0000_0303, "Dental Manufacturing Unit GmbH"),
    (0x0000_0309, "Seowoo Electron CO., LTD."),
    (0x0000_030C, "LAM Technologies S.a.S."),
    (0x0000_030E, "IEP Ingenieurbüro für Echtzeitprogrammierung GmbH"),
    (0x0000_0311, "Kontron Electronics AG"),
    (0x0000_0312, "A-KYUNG Motion Inc."),
    (0x0000_0314, "PI Electronics (H.K.) Ltd."),
    (0x0000_0317, "TOFLO CORPORATION"),
    (0x0000_0318, "AXIS CORPORATION"),
    (0x0000_0319, "emotas embedded communication GmbH"),
    (0x0000_031D, "Cognex Corporation"),
    (0x0000_0321, "CODESYS GmbH"),
    (0x0000_0325, "SiboTech Automation Co., Ltd."),
    (0x0000_0326, "Intelligent Platforms LLC"),
    (0x0000_0327, "ECSPRIME Co., Ltd."),
    (0x0000_0331, "SHANGHAI SANY SCIENCE & TECHNOLOGY CO., LTD"),
    (0x0000_0333, "HIKARI Co.,Ltd."),
    (0x0000_0334, "CYBELEC S.A."),
    (0x0000_0337, "KOSTAL Industrie Elektrik GmbH"),
    (0x0000_033D, "RS Automation Co., Ltd."),
    (0x0000_0340, "Satelcom Telekomünikasyon, Bilgi ve Iletisim Teknolojileri Ithalat ve Ihracat Sanayi A.S."),
    (0x0000_0343, "K.C.Tech CO.,LTD."),
    (0x0000_0344, "Exlar Corporation"),
    (0x0000_034A, "Drägerwerk AG & Co. KGaA"),
    (0x0000_034D, "Schaefer Elektronik GmbH"),
    (0x0000_034E, "Infineon Technologies AG"),
    (0x0000_0355, "AIDIN ROBOTICS, INC"),
    (0x0000_0358, "Shenzhen Rmotion Technology Co,Ltd."),
    (0x0000_0367, "Novatech-Group Ltd."),
    (0x0000_0368, "Tianjin Geneuo Technology Co.,Ltd."),
    (0x0000_0369, "Kinestas d.o.o."),
    (0x0000_0373, "TAIAN TECHNOLOGY(WUXI)CO.,LTD."),
    (0x0000_037F, "XMOS Semiconductor"),
    (0x0000_0384, "MKS Denmark ApS"),
    (0x0000_038B, "PLASUS GmbH"),
    (0x0000_038C, "Promicon Elektronik GmbH + Co. KG"),
    (0x0000_0397, "Hein Lanz GmbH"),
    (0x0000_039D, "dieEntwickler Elektronik GmbH"),
    (0x0000_03AA, "LARsys-Automation GmbH"),
    (0x0000_03AD, "Procon Electronics Pty Ltd"),
    (0x0000_03AE, "HanYang System"),
    (0x0000_03B0, "J. Schneider Elektrotechnik GmbH"),
    (0x0000_03B8, "Unitronics LTD"),
    (0x0000_03CC, "Motovario S.p.A."),
    (0x0000_03D0, "Wuxi Pneumatic Technical Research Institute Co., Ltd."),
    (0x0000_03DB, "Baldor UK Ltd"),
    (0x0000_03DC, "Wuxi Lingke Automation Technology Co., Ltd."),
    (0x0000_03E1, "Lite-On Technology Corporation"),
    (0x0000_03EB, "Stahl GmbH"),
    (0x0000_03F3, "CoreTigo Ltd."),
    (0x0000_03F5, "Chieftek Precision Co., Ltd."),
    (0x0000_03FF, "MEXICAN REPS OPERATION S DE RL DE CV"),
    (0x0000_0400, "Fenac Mühendislik San. ve Tic. Ltd. Sti."),
    (0x0000_0404, "Applied Motion Products, Inc."),
    (0x0000_040C, "WITZ Corporation"),
    (0x0000_0413, "Shenzhen X-TEC Technology Co., Ltd."),
    (0x0000_0418, "Zume, Inc."),
    (0x0000_041B, "Shenzhen Zmotion Technology Co., Ltd."),
    (0x0000_0428, "TOKKYOKIKI CORPORATION"),
    (0x0000_042B, "TeMec Drive Srl"),
    (0x0000_0432, "Peter Huber Kältemaschinenbau AG"),
    (0x0000_0434, "Peter Mess- und Automatisierungstechnik"),
    (0x0000_0441, "Langer & Laumann Ing.-Büro GmbH"),
    (0x0000_0444, "Ilkotek Otomasyon"),
    (0x0000_0456, "Philips Medical Systems Technologies Ltd."),
    (0x0000_0471, "FURONTEER, INC."),
    (0x0000_0482, "KYOCERA Corporation"),
    (0x0000_0489, "Infinity Sales, Inc."),
    (0x0000_04A2, "UniSwarm SASU"),
    (0x0000_04B3, "Pivotal Systems Corporation"),
    (0x0000_04B5, "Randy Nürnberger Software und Mikroelektronik"),
    (0x0000_04BD, "AMETEK Inc. Haydon Kerk Pittman Division"),
    (0x0000_04C1, "IVEK Corporation"),
    (0x0000_04C6, "MIDDEX-ELECTRONIC GMBH"),
    (0x0000_04CD, "WEETECH GmbH"),
    (0x0000_04D2, "Noda Radio Frequency Technologies Co., Ltd."),
    (0x0000_04D8, "Microchip Technology Inc."),
    (0x0000_04F8, "Duplomatic MS S.p.A"),
    (0x0000_04F9, "PHYTEC America, LLC"),
    (0x0000_0500, "Speciaal Machinefabriek Ketels v.o.f."),
    (0x0000_0501, "Beck IPC GmbH"),
    (0x0000_0502, "ETAS GmbH"),
    (0x0000_0504, "PHYTEC Messtechnik GmbH"),
    (0x0000_0505, "ANCA Motion Pty. Ltd"),
    (0x0000_0506, "Fachhochschule Köln"),
    (0x0000_0507, "IPG Automotive GmbH"),
    (0x0000_0508, "Nuvation Research Corporation"),
    (0x0000_0509, "TR-Electronic GmbH"),
    (0x0000_050A, "Gantner Instruments GmbH"),
    (0x0000_050B, "MKS Instruments Inc."),
    (0x0000_050C, "ABB AB"),
    (0x0000_050D, "Unitro-Fleischmann"),
    (0x0000_050E, "zub machine control AG"),
    (0x0000_050F, "dSPACE GmbH"),
    (0x0000_0510, "Shenzhen ProU software Ltd."),
    (0x0000_0511, "Samsung Heavy Industries"),
    (0x0000_0512, "BCE Elektronik GmbH"),
    (0x0000_0513, "Jäger Computergesteuerte Messtechnik GmbH"),
    (0x0000_0514, "avateramedical Mechatronics GmbH"),
    (0x0000_0515, "Justek Inc."),
    (0x0000_0516, "Baumer Thalheim GmbH & Co. KG"),
    (0x0000_0517, "Elin EBG Traction GmbH"),
    (0x0000_0518, "Meka Robotics"),
    (0x0000_0519, "Altera Japan Ltd."),
    (0x0000_051A, "EBV Elektronik GmbH & Co KG"),
    (0x0000_051B, "Ingenieurgemeinschaft IgH"),
    (0x0000_051C, "IAV GmbH"),
    (0x0000_051D, "Hitachi Industrial Equipment Systems"),
    (0x0000_051E, "TenAsys Corp."),
    (0x0000_051F, "PONDis AG"),
    (0x0000_0520, "Moog Italiana S.r.l."),
    (0x0000_0521, "Walt Disney Imagineering"),
    (0x0000_0522, "Wallner Automation"),
    (0x0000_0523, "AVL List GmbH"),
    (0x0000_0524, "RITTER-Elektronik GmbH"),
    (0x0000_0527, "ZwickRoell GmbH & Co. KG"),
    (0x0000_0528, "dresden elektronik ingenieurtechnik gmbh"),
    (0x0000_0529, "Tokyo Keiso Co., Ltd."),
    (0x0000_052C, "Philips Healthcare (CT Division)"),
    (0x0000_052D, "Chess B.V."),
    (0x0000_052E, "NCT kft"),
    (0x0000_052F, "Anywire Corporation"),
    (0x0000_0530, "Shadow Robot Company Ltd."),
    (0x0000_0531, "FeCon GmbH"),
    (0x0000_0532, "FH Südwestfalen, Fachbereich Elektrische Energietechnik"),
    (0x0000_0533, "add2 Ldt"),
    (0x0000_0534, "ARM Automation, Inc."),
    (0x0000_0537, "KNAPP AG"),
    (0x0000_0538, "Getriebebau NORD GmbH & Co. KG"),
    (0x0000_0539, "Yaskawa Electric Corporation"),
    (0x0000_053A, "OKI IDS Co., Ltd."),
    (0x0000_053B, "Takasaki Kyoudou Computing Center Co."),
    (0x0000_053C, "NITTETSU ELEX Co., Ltd."),
    (0x0000_053D, "WACOH-TECH Inc."),
    (0x0000_053E, "Unjo AB"),
    (0x0000_053F, "Airbus Defence and Space GmbH"),
    (0x0000_0540, "ACS Motion Control Ltd."),
    (0x0000_0541, "KEYENCE Corporation"),
    (0x0000_0542, "MEFI s.r.o."),
    (0x0000_0543, "m-u-t AG Messgeräte für Medizin- und Umwelttechnik"),
    (0x0000_0544, "Universität Stuttgart, Institut ISW"),
    (0x0000_0545, "ELSENA, Inc."),
    (0x0000_0546, "BE Semiconductor Industries N.V."),
    (0x0000_0547, "Hauni LNI Electronics S.A."),
    (0x0000_0548, "ETEL S.A."),
    (0x0000_0549, "VAT Vakuumventile AG"),
    (0x0000_054A, "LayTec AG"),
    (0x0000_054B, "NUM AG"),
    (0x0000_054C, "Hauni Maschinenbau GmbH"),
    (0x0000_054D, "Exatronic, Engenharia Electrónica, Lda"),
    (0x0000_054E, "Chinese Academy of Sciences, Institute of Intelligent Machines"),
    (0x0000_054F, "Eindhoven University of Technology"),
    (0x0000_0550, "Scansonic MI GmbH"),
    (0x0000_0551, "Shanghai Sodick Software Co., Ltd."),
    (0x0000_0552, "CHUO ELECTRONICS CO., LTD"),
    (0x0000_0553, "Agie Charmilles SA"),
    (0x0000_0554, "miControl GmbH"),
    (0x0000_0555, "Haute Ecoled'Ingénierie et de Gestion du Canton de Vaud"),
    (0x0000_0556, "Wuxi Xinje Electric Co., Ltd."),
    (0x0000_0557, "Jenny Science AG"),
    (0x0000_0558, "Industrial Control Communications, Inc."),
    (0x0000_0559, "DMG MORI Additive GmbH"),
    (0x0000_055A, "CKD ELEKTROTECHNIKA, a.s."),
    (0x0000_055B, "QEM S.r.l."),
    (0x0000_055C, "Simatex AG"),
    (0x0000_055D, "Kithara Software GmbH"),
    (0x0000_055E, "GE Energy Power Conversion GmbH"),
    (0x0000_055F, "ARA apparatenfabriek b.v."),
    (0x0000_0560, "Tata Consultancy Services Ltd."),
    (0x0000_0561, "Harmonic Drive Systems Inc."),
    (0x0000_0562, "Tiab Limited"),
    (0x0000_0563, "RKC INSTRUMENT INC."),
    (0x0000_0564, "Switched Reluctance Drives Ltd."),
    (0x0000_0566, "Avnet Electronics Marketing"),
    (0x0000_0567, "ABB AB"),
    (0x0000_0568, "Yamaha Motor Co., Ltd."),
    (0x0000_0569, "KUNBUS GmbH"),
    (0x0000_056A, "ACD Antriebstechnik GmbH"),
    (0x0000_056B, "Bronkhorst High-Tech B.V."),
    (0x0000_056C, "K.MECS Co., Ltd."),
    (0x0000_056D, "Ampegon AG"),
    (0x0000_056E, "UFG Elettronica s.r.l."),
    (0x0000_056F, "Xilinx Inc."),
    (0x0000_0570, "Hitachi Energy Sweden AB"),
    (0x0000_0571, "Servoland Corporation"),
    (0x0000_0572, "Hivertec, Inc."),
    (0x0000_0573, "Mesa Electronics"),
    (0x0000_0574, "OMICRON electronics GmbH"),
    (0x0000_0575, "Fike Europe B.v.b.a."),
    (0x0000_0576, "ROPEX Industrie-Elektronik GmbH"),
    (0x0000_0577, "TLU - Thüringer Leistungselektronik Union GmbH"),
    (0x0000_0579, "Prodrive Technologies B.V."),
    (0x0000_057A, "miho Inspektionssysteme GmbH"),
    (0x0000_057B, "Tokyo Electron Device Limited"),
    (0x0000_057C, "LINTEC CO., LTD."),
    (0x0000_057D, "Emhart Glass Vision GmbH"),
    (0x0000_057E, "Seiko Epson Corporation"),
    (0x0000_057F, "ZINSER GmbH"),
    (0x0000_0580, "abk-technology GmbH"),
    (0x0000_0581, "SUS Corporation"),
    (0x0000_0582, "TRsystems GmbH"),
    (0x0000_0583, "Harmonic Drive SE"),
    (0x0000_0584, "Stäubli Faverges SCA"),
    (0x0000_0585, "ScienLab electronic systems GmbH"),
    (0x0000_0586, "DETO drive systems GmbH"),
    (0x0000_0587, "FUJISOFT Incorporated"),
    (0x0000_0588, "IAI Corporation"),
    (0x0000_0589, "PromAvtomatika"),
    (0x0000_058A, "Kistler Instrumente AG"),
    (0x0000_058B, "LAUDA DR. R. WOBSER GmbH & Co. KG"),
    (0x0000_058C, "Schweitzer Engineering Laboratories, Inc."),
    (0x0000_058D, "Vital Systems Inc."),
    (0x0000_058E, "MuTracx International B.V."),
    (0x0000_058F, "Algo System Co., Ltd."),
    (0x0000_0590, "Mühlbauer GmbH & Co. KG"),
    (0x0000_0591, "DETO drive systems GmbH"),
    (0x0000_0592, "Sealevel Systems, Inc."),
    (0x0000_0593, "igm Robotersysteme AG"),
    (0x0000_0594, "WITTENSTEIN electronics GmbH"),
    (0x0000_0595, "ZBE Inc."),
    (0x0000_0597, "Fraunhofer IOSB-INA Kompetenzzentrum Industrial Automation"),
    (0x0000_0598, "SKF Canada Limited"),
    (0x0000_0599, "Galil Motion Control Inc."),
    (0x0000_059A, "IHI Corporation"),
    (0x0000_059B, "wenglor sensoric gmbh"),
    (0x0000_059C, "Ingeteam Power Technology S.A."),
    (0x0000_059D, "Texas Instruments Incorporated"),
    (0x0000_059E, "Micro-Vu Corporation"),
    (0x0000_059F, "oehri electronic ag"),
    (0x0000_05A0, "Triphase N.V."),
    (0x0000_05A1, "Glass Soft - Robótica & Sistemas Lda."),
    (0x0000_05A2, "Cambridge Medical Robotics Limited"),
    (0x0000_05A3, "China Machinery International Engineering Design & Research Institute CO.,LTD."),
    (0x0000_05A4, "Kastanienbaum GmbH"),
    (0x0000_05A5, "HANYOUNG NUX CO., LTD"),
    (0x0000_05A6, "SLE quality engineering GmbH & Co. KG"),
    (0x0000_05A7, "Omicron NanoTechnology GmbH"),
    (0x0000_05A8, "Micromeritics Instrument Corporation"),
    (0x0000_05A9, "TRUMPF Laser- und Systemtechnik GmbH"),
    (0x0000_05AB, "Beratron GmbH"),
    (0x0000_05AA, "HORIBA Europe GmbH"),
    (0x0000_05AC, "Heinz Siegfried AG"),
    (0x0000_05AD, "Cebora S.p.A."),
    (0x0000_05AE, "W.E.ST Elektronik GmbH"),
    (0x0000_05AF, "ABB gomtec GmbH"),
    (0x0000_05B0, "SIEB & MEYER AG"),
    (0x0000_05B1, "Harbin Robotics Technology Co., Ltd."),
    (0x0000_05B2, "Protechna Herbst GmbH & Co. KG"),
    (0x0000_05B3, "TAEHA Mechatronics Co., Ltd."),
    (0x0000_05B4, "WITTMANN Technology GmbH"),
    (0x0000_05B5, "iotec GmbH"),
    (0x0000_05B6, "Prodel Technologies"),
    (0x0000_05B7, "The Leland Stanford Junior University, Department of Bioengineering"),
    (0x0000_05B8, "Tarasheh System Pishro .co. Ltd"),
    (0x0000_05B9, "CS-Lab s.c. Janusz Wawak, Andrzej Rogozynski, Szymon Paprocki"),
    (0x0000_05BA, "Elitron IPM s.r.l."),
    (0x0000_05BB, "KORYO ELECTRONICS CO.,LTD."),
    (0x0000_05BC, "Shihlin Electric & Engineering Corporation"),
    (0x0000_05BD, "Kookmin University, Graduate School of Automotive Engineering"),
    (0x0000_05BE, "Techmation Co., Ltd."),
    (0x0000_05BF, "ZAPI S.p.A."),
    (0x0000_05C0, "Claus Pribbernow Mikrosystementwicklung eProcessorSolutions"),
    (0x0000_05C1, "Pragati Automation PVT. Limited"),
    (0x0000_05C2, "Siemens Industry Software B.V."),
    (0x0000_05C3, "MicroNova AG"),
    (0x0000_05C4, "Xi'An Aerospace Precision Electromechanical Institute"),
    (0x0000_05C5, "Dr. Mergenthaler GmbH & Co. KG"),
    (0x0000_05C6, "China National Machinery Industry Corporation"),
    (0x0000_05C7, "Berufliches Schulzentrum Hof, Staatliche Fachschule für Technik"),
    (0x0000_05C8, "NDR Co., Ltd"),
    (0x0000_05C9, "\"NPK MSA\" LLC"),
    (0x0000_05CA, "Southeast University, School of Mechanical Engineering"),
    (0x0000_05CB, "Shanghai Baosight Software Co., Ltd."),
    (0x0000_05CC, "Hakko Electronics Co., Ltd."),
    (0x0000_05CD, "GMK electronic design GmbH"),
    (0x0000_05CE, "SIMTEC Elektronik GmbH"),
    (0x0000_05D0, "TEConcept GmbH"),
    (0x0000_05D1, "ESS Co., Ltd."),
    (0x0000_05D3, "MABI AG - Robotic"),
    (0x0000_05D4, "OptoForce Ltd."),
    (0x0000_05D5, "TOSHIBA MITSUBISHI-ELECTRIC INDUSTRIAL SYSTEMS CORPORATION"),
    (0x0000_05D6, "WITTENSTEIN ternary Co.,Ltd."),
    (0x0000_05D7, "Shanghai Friendess Electronic Technology Co., Ltd."),
    (0x0000_05D8, "Aversan Inc."),
    (0x0000_05DA, "Lorch Schweißtechnik GmbH"),
    (0x0000_05D9, "LOTES (GuangZhou) CO., LTD."),
    (0x0000_05DB, "Sungkyunkwan University, School of Mechanical Engineering"),
    (0x0000_05DC, "Tsinghua University, Graduate School at Shenzhen"),
    (0x0000_05DD, "Universidad de los Andes, Faculty of Engineering"),
    (0x0000_05DE, "PFU LIMITED"),
    (0x0000_05DF, "Slovak University of Technology in Bratislava, Faculty of Electrical Engineering and Information Technology"),
    (0x0000_05E0, "Esomatec GmbH"),
    (0x0000_05E1, "LS ELECTRIC Co., Ltd."),
    (0x0000_05E2, "StateCore B.V."),
    (0x0000_05E3, "KJ-Infinity Enterprises Inc."),
    (0x0000_05E4, "Center of Human-centered Interaction for Coexistence (CHIC)"),
    (0x0000_05E5, "Littelfuse Selco A/S"),
    (0x0000_05E6, "ITR GmbH Informationstechnologie Rauch"),
    (0x0000_05E8, "University of Massachusetts at Amherst, Computer Science Department, Laboratory for Perceptual Robotics"),
    (0x0000_05E9, "Pfeiffer Vacuum SAS"),
    (0x0000_05EA, "AXOR INDUSTRIES s.n.c."),
    (0x0000_05EB, "QuadRep Electronics (Taiwan) Ltd."),
    (0x0000_05EC, "Herrmann Ultraschalltechnik GmbH & Co. KG"),
    (0x0000_05ED, "Precizika Metrology, UAB"),
    (0x0000_05EE, "Shanghai ReCAT Automation Control Technology Co., Ltd."),
    (0x0000_05EF, "U&R GmbH Hardware- und Systemdesign"),
    (0x0000_05F0, "XiaMen MicroControl Technology Co., Ltd."),
    (0x0000_05F1, "The Oilgear Company"),
    (0x0000_05F2, "MIE ELECTRONICS CO.,LTD. iSPC"),
    (0x0000_05F3, "in-tech GmbH"),
    (0x0000_05F5, "Starflight Electronics"),
    (0x0000_05F6, "ZIEHL-ABEGG SE"),
    (0x0000_05F7, "Ackermann Automation GmbH"),
    (0x0000_05F8, "Helios Technologies, Inc."),
    (0x0000_05F9, "Italsensor s.r.l."),
    (0x0000_05FA, "Sartorius Mechatronics C&D GmbH & Co. KG"),
    (0x0000_05FB, "Evergrid Solutions & Systems"),
    (0x0000_05FC, "Germanjet Company Limited"),
    (0x0000_05FD, "Mapacode Inc."),
    (0x0000_05FE, "BIBA - Bremer Institut für Produktion und Logistik GmbH"),
    (0x0000_05FF, "The University of Texas at Austin"),
    (0x0000_0600, "OKI Nextech Co.,Ltd."),
    (0x0000_0601, "Condalo GmbH"),
    (0x0000_0602, "Brooks Instrument, LLC"),
    (0x0000_0603, "FLORIDA INSTITUTE FOR HUMAN & MACHINE COGNITION"),
    (0x0000_0604, "Leica Geosystems AG"),
    (0x0000_0605, "Nabtesco Corporation"),
    (0x0000_0606, "BP&M Representações e Consultoria LTDA"),
    (0x0000_0607, "MICRO-EPSILON Optronic GmbH"),
    (0x0000_0608, "Diamond Technologies, Inc."),
    (0x0000_060A, "ESTUN AUTOMATION CO.,LTD"),
    (0x0000_060B, "IMS Messsysteme GmbH"),
    (0x0000_060C, "M-System Co., Ltd."),
    (0x0000_060D, "Ferrotec (USA) Corporation - Temescal Division"),
    (0x0000_060E, "SICK IVP AB"),
    (0x0000_060F, "Oregon State University, School of Mechanical, Industrial and Manufacturing Engineering"),
    (0x0000_0610, "SINFONIA TECHNOLOGY CO., LTD."),
    (0x0000_0611, "Pfeiffer Vacuum GmbH"),
    (0x0000_0612, "Froude Hofmann Limited"),
    (0x0000_0613, "SABO Elektronik GmbH"),
    (0x0000_0615, "Bystronic Laser AG"),
    (0x0000_0616, "INVT Industrial Technology (Shanghai) Co., Ltd."),
    (0x0000_0618, "LumaSense Technologies GmbH"),
    (0x0000_0619, "BBH Products GmbH"),
    (0x0000_061A, "Hecht Automatisierungs-Systeme GmbH"),
    (0x0000_061B, "Xelmo AB"),
    (0x0000_061C, "Carl Zeiss Industrielle Messtechnik GmbH"),
    (0x0000_061D, "University of Genova, Faculty of Engineering"),
    (0x0000_061E, "JOT Automation Oy"),
    (0x0000_061F, "Sankyo Seisakusho Co."),
    (0x0000_0620, "ATV-Elektronik Ges.m.b.H."),
    (0x0000_0621, "Panasonic Industrial Devices SUNX Co., Ltd."),
    (0x0000_0622, "ifm electronic gmbh"),
    (0x0000_0623, "Fisher Technical Services Inc."),
    (0x0000_0624, "SCLE SFE"),
    (0x0000_0625, "HIGEN Motor Co., Ltd."),
    (0x0000_0626, "Baumer hhs GmbH"),
    (0x0000_0627, "Moog Inc."),
    (0x0000_0628, "XIOS Hogeschool Limburg, Department N-Technology"),
    (0x0000_0629, "Azbil Corporation"),
    (0x0000_062A, "Delta Tau Data Systems, Inc."),
    (0x0000_062B, "Heraeus Electro-Nite International N.V."),
    (0x0000_062C, "ESW GmbH"),
    (0x0000_062D, "CG Drives & Automation AB"),
    (0x0000_062E, "ProCom GmbH"),
    (0x0000_062F, "GE Grid Solutions SAS"),
    (0x0000_0630, "Robot Makers GmbH"),
    (0x0000_0631, "Brooks Automation, Inc"),
    (0x0000_0632, "Hitachi Metals Ltd."),
    (0x0000_0633, "Interroll Automation GmbH"),
    (0x0000_0634, "CKD Corporation"),
    (0x0000_0635, "STIWA Automation GmbH"),
    (0x0000_0636, "T.P.A. S.p.A"),
    (0x0000_0637, "Guodian Nanjing Automation Co., Ltd."),
    (0x0000_0638, "Prosoft-Systems Ltd."),
    (0x0000_0639, "Polytype SA"),
    (0x0000_063A, "SENSODRIVE GmbH"),
    (0x0000_063B, "Delta Computer Systems, Inc."),
    (0x0000_063C, "Friedrich Lütze GmbH"),
    (0x0000_063D, "Compressor Controls Corporation"),
    (0x0000_063E, "Diamond Light Source Limited"),
    (0x0000_063F, "Beckman Coulter, Inc."),
    (0x0000_0640, "Allied Motion Technologies, Inc."),
    (0x0000_0641, "Nor-Cal Products, Inc."),
    (0x0000_0642, "AUTOMATA GmbH & Co. KG"),
    (0x0000_0643, "Fraunhofer Institut für Werkstoff- und Strahlentechnik IWS"),
    (0x0000_0644, "INFICON AG"),
    (0x0000_0645, "Hexagon Metrology GmbH"),
    (0x0000_0646, "Shimadzu Corporation"),
    (0x0000_0647, "Dasa Control Systems AB"),
    (0x0000_0648, "SHOEI Electric Co.,Ltd."),
    (0x0000_0649, "Progressio, LLC"),
    (0x0000_064A, "MACCON GmbH"),
    (0x0000_064B, "Moog Ireland, Ltd."),
    (0x0000_064C, "ESPERA-WERKE GMBH"),
    (0x0000_064D, "Automation W+R GmbH"),
    (0x0000_064E, "Oceaneering Space Systems"),
    (0x0000_064F, "EOStech S.r.l."),
    (0x0000_0650, "Lycée Jean-Baptiste de Baudre"),
    (0x0000_0651, "University of Banja Luka"),
    (0x0000_0652, "Eding CNC"),
    (0x0000_0653, "Zühlke Engineering AG"),
    (0x0000_0654, "Addiva Consulting AB"),
    (0x0000_0655, "Pteris Global Limited"),
    (0x0000_0656, "Chaos Technology"),
    (0x0000_0657, "Tokyo Institute of Technology, Hirose Fukushima Lab."),
    (0x0000_0658, "Seichter GmbH"),
    (0x0000_0659, "Motion Control Systems, Inc."),
    (0x0000_065A, "Moog B.V. in the Netherlands"),
    (0x0000_065B, "Kinlo Technology & System (Shenzhen) Co.,Ltd."),
    (0x0000_065C, "CellSystems, LLC"),
    (0x0000_065D, "Shinano Kenshi Co., Ltd."),
    (0x0000_065E, "MICRO-EPSILON MESSTECHNIK GmbH & Co. KG"),
    (0x0000_065F, "Viable Bytes, Inc."),
    (0x0000_0660, "Kontron Europe GmbH"),
    (0x0000_0661, "IKERLAN, S. Coop."),
    (0x0000_0662, "hmk Daten-System-Technik GmbH"),
    (0x0000_0664, "Istituto Italiano di Tecnologia (IIT)"),
    (0x0000_0663, "Qingdao INCMAN Robot Co., Ltd."),
    (0x0000_0665, "Kashiyama Industries, Ltd."),
    (0x0000_0666, "TG Drives s.r.o."),
    (0x0000_0667, "Watlow Electric Manufacturing Company"),
    (0x0000_0668, "synertronixx GmbH"),
    (0x0000_0669, "batalpha Bobach GmbH"),
    (0x0000_066A, "Edwards Limited"),
    (0x0000_066B, "ENGEL AUSTRIA GmbH"),
    (0x0000_066C, "Fujikin Incorporated"),
    (0x0000_066D, "COMET Technologies USA, Inc."),
    (0x0000_066E, "Schleuniger AG"),
    (0x0000_066F, "Panasonic Industry Co., Ltd."),
    (0x0000_0670, "TangShan Kaiyuan Welding Automation Technology Institute Co., Ltd."),
    (0x0000_0671, "Solectrix GmbH"),
    (0x0000_0672, "St. Cloud State University, Electrical and Computer Engineering Department"),
    (0x0000_0673, "JLG AUTOMATION BVBA"),
    (0x0000_0674, "Burckhardt Compression AG"),
    (0x0000_0675, "Rong Shun Xuan Corp."),
    (0x0000_0676, "Balluff STM GmbH"),
    (0x0000_0677, "Endress+Hauser Flowtec AG"),
    (0x0000_0678, "Motor Power Company S.r.l."),
    (0x0000_067A, "EBI Electric Inc."),
    (0x0000_067B, "Hochschule Luzern - Technik & Architektur"),
    (0x0000_067C, "GE Global Research"),
    (0x0000_067D, "Katholieke Universiteit Leuven, Department of Mechanical Engineering"),
    (0x0000_067E, "centrotherm international AG"),
    (0x0000_067F, "Bundesamt für Wehrtechnik und Beschaffung, Dienststelle WTD 81"),
    (0x0000_0680, "DAIHEN Corporation"),
    (0x0000_0681, "HCL Technologies Ltd."),
    (0x0000_0682, "3T B.V."),
    (0x0000_0683, "Eindhoven University of Technology"),
    (0x0000_0684, "INNOVENT e.V."),
    (0x0000_0685, "Surrey Satellite Technology Limited"),
    (0x0000_0686, "AMETEK Programmable Power, Inc."),
    (0x0000_0687, "engleder embedded"),
    (0x0000_0688, "Pusan National University"),
    (0x0000_0689, "ETH Zürich, Institute of Robotics and Intelligent Systems"),
    (0x0000_068A, "Assystem Germany GmbH"),
    (0x0000_068B, "HORIBA, Ltd."),
    (0x0000_068C, "Changwon National University, College of Engineering, Department of Electrical Engineering"),
    (0x0000_068D, "Penko Engineering B.V."),
    (0x0000_068E, "Fujitsu Semiconductor Europe GmbH"),
    (0x0000_0690, "Mirle Automation Corporation"),
    (0x0000_0691, "FANUC CORPORATION"),
    (0x0000_0692, "KSE GmbH"),
    (0x0000_0693, "EUCHNER GmbH + Co. KG"),
    (0x0000_0694, "benjamin GmbH"),
    (0x0000_0695, "Han's Laser Technology Co.,Ltd."),
    (0x0000_0696, "Guangdong University of Technology, Faculty of Automation"),
    (0x0000_0699, "Instituto Federal de Santa Catarina"),
    (0x0000_069A, "InstruTech Inc."),
    (0x0000_069B, "KTL Corporation"),
    (0x0000_069C, "Hochschule Pforzheim, Fakultät für Technik"),
    (0x0000_069D, "EWM HIGHTEC WELDING GmbH"),
    (0x0000_069E, "Jilin Yongda Group Company Ltd."),
    (0x0000_069F, "Arrow Central Europe GmbH"),
    (0x0000_06A0, "Phoseon Technology"),
    (0x0000_06A1, "item Industrietechnik GmbH"),
    (0x0000_06A2, "Shanghai Inno-drive Electric Co., Ltd."),
    (0x0000_06A3, "Wuhan University of Technology, School of Automation"),
    (0x0000_06A4, "Advanet Inc."),
    (0x0000_06A5, "Wandercraft SAS"),
    (0x0000_06A6, "Changzhou Xiangyun Monitoring Software Co., Ltd."),
    (0x0000_06A7, "SANTEST CO., LTD."),
    (0x0000_06A8, "EnTeSys GmbH"),
    (0x0000_06A9, "LOT Vacuum Co., Ltd."),
    (0x0000_06AA, "ASM America Inc."),
    (0x0000_06AB, "Taiwan Pulse Motion Co. Ltd."),
    (0x0000_06AC, "CNi Informatica S.r.l."),
    (0x0000_06AD, "enfas GmbH"),
    (0x0000_06AE, "Shenzhen Megmeet Drive Technology Co., Ltd."),
    (0x0000_06AF, "Danish Aerospace Company"),
    (0x0000_06B0, "Panasonic Production Engineering Co., Ltd."),
    (0x0000_06B1, "ARADEX AG"),
    (0x0000_06B2, "TOYOGIKEN CO.,LTD."),
    (0x0000_06B3, "ZAO Trascon Technology"),
    (0x0000_06B4, "AREM PRO, s.r.o."),
    (0x0000_06B5, "Googol Technology (HK) Ltd."),
    (0x0000_06B6, "Vecna Technologies, Inc."),
    (0x0000_06B7, "Technische Universität Dresden, Fakultät Elektrotechnik und Informationstechnik"),
    (0x0000_06B8, "Axxon Computer Corporation"),
    (0x0000_06B9, "Beijing Motrotech Technology Co., Ltd."),
    (0x0000_06BA, "Wöhner GmbH & Co. KG"),
    (0x0000_06BB, "Hangzhou Tongling Automation Co., Ltd."),
    (0x0000_06BC, "Audix Corporation"),
    (0x0000_06BD, "Technische Universität Wien, Fakultät für Elektrotechnik und Informationstechnik"),
    (0x0000_06BE, "AREVA NP"),
    (0x0000_06BF, "TAURUS instruments GmbH"),
    (0x0000_06C0, "Aveox Inc."),
    (0x0000_06C1, "ASML Netherlands B.V."),
    (0x0000_06C2, "HaslerRail AG"),
    (0x0000_06C3, "Intek Technology Co., Ltd."),
    (0x0000_06C4, "National Computer System Engineering Research Institute of China"),
    (0x0000_06C5, "Crouzet Automatismes"),
    (0x0000_06C7, "Joshua 1 Systems Inc."),
    (0x0000_06C8, "Artech Electronics Co., Ltd."),
    (0x0000_06CA, "FUJI MACHINERY CO.,LTD."),
    (0x0000_06CB, "FoShan Logen Robotics Co., Ltd."),
    (0x0000_06CC, "DVDB-electronics bvba"),
    (0x0000_06CD, "Tool Express-Service Schraubertechnik GmbH (TESS GmbH)"),
    (0x0000_06CE, "King Giants Precision Industry Co., Ltd."),
    (0x0000_06CF, "PANAX SYSTEM Co., Ltd."),
    (0x0000_06D0, "Hitachi Europe GmbH"),
    (0x0000_06D1, "ZDAUTO AZDAUTO Automation Technology Co., Ltd. utomation Technology Co., Ltd."),
    (0x0000_06D2, "Temis S.r.l."),
    (0x0000_06D3, "DAIKIN INDUSTRIES, LTD., Oil Hydraulics Division"),
    (0x0000_06D4, "Avalue Technology Inc."),
    (0x0000_06D5, "LDZ Technology Co., Ltd."),
    (0x0000_06D6, "Eletech S.r.l."),
    (0x0000_06D9, "Portwell, Inc."),
    (0x0000_06DA, "Shenzhen Sine Electric Co., Ltd"),
    (0x0000_06DB, "HIMA Paul Hildebrandt GmbH"),
    (0x0000_06DC, "Covidien LP"),
    (0x0000_06DD, "Weintek Labs., Inc."),
    (0x0000_06DE, "MITWELL Inc."),
    (0x0000_06DF, "DORNA Technology Co., Ltd."),
    (0x0000_06E0, "A M Consulting"),
    (0x0000_06E1, "GENESI ELETTRONICA Srl"),
    (0x0000_06E2, "Molex Canada Limited"),
    (0x0000_06E3, "Vanguard Systems Inc."),
    (0x0000_06E4, "Shenzhen UniMAT Automation Technology Co., Ltd."),
    (0x0000_06E5, "ifatos GmbH & Co. KG"),
    (0x0000_06E6, "Ingeniería UNO S.L"),
    (0x0000_06E7, "Daekhon Corporation"),
    (0x0000_06EA, "Marubeni Information Systems Co., Ltd."),
    (0x0000_06EB, "YDK Co., Ltd."),
    (0x0000_06EC, "E-T-A Elektrotechnische Apparate GmbH"),
    (0x0000_06EE, "Justech Precision Industry Co., Ltd."),
    (0x0000_06F0, "VOLLMER WERKE Maschinenfabrik GmbH"),
    (0x0000_06F1, "Technische Hochschule Nürnberg Georg Simon Ohm"),
    (0x0000_06F2, "Gene Automation Technology Ltd."),
    (0x0000_06F3, "Weihai Zheng Qi Mechatronics Technology Ltd."),
    (0x0000_06F5, "Gopher Inc."),
    (0x0000_06F6, "IntervalZero, Inc."),
    (0x0000_06F7, "AXONIM LLC"),
    (0x0000_06F8, "University of Seoul, College of Engineering, Department of Mechanical and Information Engineering"),
    (0x0000_06F9, "Professional Computer Technology Limited"),
    (0x0000_06FA, "Ninna Solutions Co,.Ltd"),
    (0x0000_06FC, "Shenyang CASNC Technology Co., Ltd."),
    (0x0000_06FD, "IWAKI CO., LTD."),
    (0x0000_06FE, "TRP Engineering College, Department of Electronics & Communication Engineering (ECE)"),
    (0x0000_06FF, "EPI elettronica s.a.s."),
    (0x0000_0700, "Institut de RadioAstronomie Millimétrique"),
    (0x0000_0701, "Technische Universität Graz, Fakultät für Maschinenbau und Wirtschaftswissenschaften"),
    (0x0000_0702, "pro-beam AG & Co. KGaA"),
    (0x0000_0703, "Servotechnica ZAO"),
    (0x0000_0704, "Hanwha Precision Machinery CO., LTD."),
    (0x0000_0705, "G&S Intelligent Technology Co., Ltd."),
    (0x0000_0706, "Schaeffler Engineering"),
    (0x0000_0707, "University of the Basque Country, Faculty of Engineering, Department of Electronics and Telecommunications"),
    (0x0000_0708, "ARGES GmbH"),
    (0x0000_0709, "Control Chief Corporation"),
    (0x0000_070A, "konplan systemhaus ag"),
    (0x0000_070B, "embeX GmbH"),
    (0x0000_070C, "COSMOTECHS Co., Ltd"),
    (0x0000_070D, "Dynamic Systems Inc."),
    (0x0000_070E, "SEMIKRON Elektronik GmbH & Co. KG"),
    (0x0000_070F, "Wuxi Ivoyage Control Technology CO.,LTD"),
    (0x0000_0710, "CAF Signalling S.L."),
    (0x0000_0711, "SMART Electronic Development GmbH"),
    (0x0000_0712, "Yokogawa Electric Corporation"),
    (0x0000_0713, "Norwegian University of Science and Technoloogy, Faculty of Information Technology, Mathematics and Electrical Engineering"),
    (0x0000_0714, "Robostar Co., Ltd"),
    (0x0000_0715, "TRUMPF Werkzeugmaschinen SE + Co. KG"),
    (0x0000_0716, "High Performance Motion System Development Co., Ltd."),
    (0x0000_0717, "Kozaka Electronic Design Inc."),
    (0x0000_0718, "Aeronautical Systems Engineering Inc."),
    (0x0000_0719, "Agile Planet, Inc."),
    (0x0000_071A, "Hon Hai Precision Industry Co., Ltd."),
    (0x0000_071B, "Systeme + Steuerungen GmbH"),
    (0x0000_071C, "Huron Net Works, Inc."),
    (0x0000_071D, "University of Applied Sciences of Southern Switzerland, Department of Innovative Technologies (DTI)"),
    (0x0000_071E, "MAKO Surgical Corp."),
    (0x0000_071F, "Rainer Thomas Messtechnik GmbH"),
    (0x0000_0720, "ELTEK spol. s r.o."),
    (0x0000_0721, "Vecow Co., Ltd."),
    (0x0000_0722, "M&P Motion Control and Power Electronics GmbH"),
    (0x0000_0723, "Leybold GmbH"),
    (0x0000_0725, "Panasonic Industrial Devices Sales Company of America"),
    (0x0000_0726, "Eilersen Electric Digital Systems A/S"),
    (0x0000_0727, "Inter Factory Partners Co., LTD."),
    (0x0000_0728, "Power Instrument Co., Ltd."),
    (0x0000_0729, "Cosworth Group Holdings Ltd"),
    (0x0000_072A, "South China University of Technology, School of Mechanical & Automotive Engineering"),
    (0x0000_072B, "WARWICK INSTRUMENTS LTD."),
    (0x0000_072C, "Shenzhen INVT Co., Ltd."),
    (0x0000_072D, "WIEDEG Elektronik GmbH"),
    (0x0000_072E, "NKE corporation"),
    (0x0000_072F, "Universidad Politécnica de Madrid"),
    (0x0000_0730, "Bot & Dolly"),
    (0x0000_0731, "RECIF Technologies"),
    (0x0000_0732, "ATI Industrial Automation"),
    (0x0000_0733, "ADVANTEST CORPORATION"),
    (0x0000_0734, "MULTIVAC Sepp Haggenmüller SE & Co. KG"),
    (0x0000_0735, "ROLAND ELECTRONIC GmbH"),
    (0x0000_0736, "CONTEC Co., Ltd."),
    (0x0000_0737, "Alizem Inc."),
    (0x0000_0738, "Chyng Hong Electronic Co., Ltd."),
    (0x0000_0739, "Yaskawa America Inc."),
    (0x0000_073A, "Georg Schlegel GmbH & Co. KG"),
    (0x0000_073B, "Faraday Technology Corporation"),
    (0x0000_073C, "SIPRO S.r.l."),
    (0x0000_073D, "University of Twente, Faculty of Engineering Technology (CTW)"),
    (0x0000_073E, "Aalborg University"),
    (0x0000_073F, "S-SYS bvba"),
    (0x0000_0740, "Ningbo Mingpu Automation Technology Co."),
    (0x0000_0741, "elrest Automationssysteme GmbH"),
    (0x0000_0742, "Kyosan Electric Manufacturing Co., Ltd."),
    (0x0000_0743, "Custom Machines"),
    (0x0000_0744, "KFM Regelungstechnik GmbH"),
    (0x0000_0745, "ISHIDA CO., LTD."),
    (0x0000_0746, "Beijing University of Technology"),
    (0x0000_0747, "Shunpeng Technology CO., LTD. (GENTEC TECHNOLOGIES CO., LTD.)"),
    (0x0000_0748, "Tsino-dynatron Electrical Technology Beijing Co., Ltd."),
    (0x0000_0749, "PENTA TRADING Spol. S.r.o."),
    (0x0000_074A, "University of Electronic Science and Technology of China, School of Optoelectronic Information"),
    (0x0000_074B, "Altus Sistemas de Informática S/A"),
    (0x0000_074C, "Sanming University, Sanming Mechanical CAD Engineering Research Center"),
    (0x0000_074E, "JENOPTIK Industrial Metrology Germany GmbH"),
    (0x0000_074F, "Beijing KND CNC Technique Co., Ltd."),
    (0x0000_0750, "JW Shannon Engineers"),
    (0x0000_0751, "A2V Mécatronique SAS"),
    (0x0000_0752, "NEXCOM International Co., Ltd."),
    (0x0000_0753, "Jiangyin Huafeng Printing Machinery Co., Ltd."),
    (0x0000_0754, "Lectra SA"),
    (0x0000_0755, "Beijer Electronics Products AB"),
    (0x0000_0756, "C J Hartman Elektronik AB"),
    (0x0000_0757, "Hurco Automation Ltd."),
    (0x0000_0759, "Autonics Corporation"),
    (0x0000_075A, "Brom Mechatronica B.V."),
    (0x0000_075B, "Vrije Universiteit Brussel, Faculty of Engineering"),
    (0x0000_075C, "Alluris GmbH & Co. KG"),
    (0x0000_075D, "Hochschule Offenburg, Fakultät Elektrotechnik und Informationstechnik"),
    (0x0000_075E, "Instron - Division of ITW Ltd."),
    (0x0000_075F, "Heidolph Elektro GmbH & Co. KG"),
    (0x0000_0760, "GE Transportation"),
    (0x0000_0761, "MÄX GmbH"),
    (0x0000_0762, "Durst Phototechnik Digital Technology GmbH"),
    (0x0000_0763, "Omsk State Technical University, Department of „Electricity industry“"),
    (0x0000_0764, "Embedded-Bonjour GmbH"),
    (0x0000_0765, "Mettler-Toledo Garvens GmbH"),
    (0x0000_0766, "Renesas Electronics Corp."),
    (0x0000_0767, "Conductix-Wampfler Automation GmbH"),
    (0x0000_0768, "EURA DRIVES ELECTRIC CO. LTD"),
    (0x0000_0769, "EUTRON S.p.A."),
    (0x0000_076A, "FLANDERS Inc."),
    (0x0000_076B, "Digital Dynamics, Inc."),
    (0x0000_076C, "GE Medical Systems Europe"),
    (0x0000_076D, "Physik Instumente GmbH & Co. KG"),
    (0x0000_076E, "Hypertherm Inc."),
    (0x0000_076F, "HRID d.o.o."),
    (0x0000_0770, "Aotai Electric Co., LTD"),
    (0x0000_0771, "Control Concepts Inc."),
    (0x0000_0772, "JoveTech Co., Ltd."),
    (0x0000_0773, "POHANG UNIVERSITY OF SCIENCE AND TECHNOLOGY, Department of Electrical Engineering"),
    (0x0000_0774, "CycloMedia Technology B.V."),
    (0x0000_0775, "SUN-TECTRO LTD."),
    (0x0000_0776, "Shanghai Jiao Tong University, School of Electronic Information and Electrical Engineering"),
    (0x0000_0777, "koenig-pa GmbH"),
    (0x0000_0778, "Anton Paar TriTec SA"),
    (0x0000_0779, "V TEX Corporation"),
    (0x0000_077A, "Edge Technologies"),
    (0x0000_077B, "EBARA CORPORATION"),
    (0x0000_077C, "University at Buffalo"),
    (0x0000_077D, "Aurotek Corporation"),
    (0x0000_077E, "Blubit d.o.o."),
    (0x0000_077F, "Toplens Hangzhou, Inc."),
    (0x0000_0780, "National Chung Cheng University"),
    (0x0000_0781, "Hexagon Technology Center GmbH"),
    (0x0000_0782, "Graph-Tech AG"),
    (0x0000_0783, "Lanthan GmbH & Co. KG"),
    (0x0000_0784, "Nucleus GmbH"),
    (0x0000_0785, "STRATEC CONTROL-SYSTEMS GmbH"),
    (0x0000_0786, "Universität Wien, Fakultät für Physik, Isotopenforschung"),
    (0x0000_0787, "inno-spec GmbH"),
    (0x0000_0788, "ThyssenKrupp Presta AG"),
    (0x0000_078A, "DENSO WAVE INCORPORATED"),
    (0x0000_078B, "EuroSoft S.r.l."),
    (0x0000_078C, "University of British Columbia, Faculty of Applied Science, Department of Mechanical Engineering"),
    (0x0000_078D, "REnergy Electric Tianjin Ltd."),
    (0x0000_078E, "NewYoungSystem Co., Ltd."),
    (0x0000_078F, "ESA S.p.A."),
    (0x0000_0790, "University of Reading, School of Systems Engineering"),
    (0x0000_0791, "KOGANEI CORPORATION"),
    (0x0000_0792, "MAZeT GmbH"),
    (0x0000_0793, "The University of Nottingham, Faculty of Engineering, Electrical Systems and Optics Research Division"),
    (0x0000_0794, "Quanta Storage Inc."),
    (0x0000_0795, "Azbil Taishin Co., Ltd."),
    (0x0000_0796, "Relitech B.V."),
    (0x0000_0797, "DHPC Technologies, Inc."),
    (0x0000_0798, "Jordan Valley Semiconductors Ltd."),
    (0x0000_0799, "MicroCreate System Co., Ltd."),
    (0x0000_079A, "AB&T S.r.l."),
    (0x0000_079B, "Medic LLC"),
    (0x0000_079C, "T3LAB - Technology Transfer Team"),
    (0x0000_079D, "Coptonix GmbH"),
    (0x0000_079E, "KARL MAYER STOLL Textilmaschinenfabrik GmbH"),
    (0x0000_079F, "inoson GmbH"),
    (0x0000_07A0, "GE Power & Water Distributed Power"),
    (0x0000_07A1, "Shanghai Yuanzhi Robot Co., Ltd."),
    (0x0000_07A2, "OYO ELECTRIC CO., LTD."),
    (0x0000_07A3, "Solwit SA"),
    (0x0000_07A4, "Jabil Inc."),
    (0x0000_07A5, "Renesas Semiconductor Package & Test Solutions Co., Ltd."),
    (0x0000_07A6, "Technische Universität Berlin, Fakultät Verkehrs- und Maschinensysteme"),
    (0x0000_07A7, "Mettler-Toledo (Changzhou) Precision Instrument Ltd."),
    (0x0000_07A8, "Sentronic International Corp."),
    (0x0000_07A9, "LEAS (Laboratoire d'électronique Angelidis et Sarrault)"),
    (0x0000_07AA, "MAPNA Electric & Control, Engineering & Manufacturing Co."),
    (0x0000_07AB, "NetTechnix E&P GmbH"),
    (0x0000_07AC, "Excelpoint Systems (H.K.) Limited"),
    (0x0000_07AD, "Integrated Dynamics Engineering GmbH"),
    (0x0000_07AE, "Toho Technology Corporation"),
    (0x0000_07AF, "Salvagnini Italia S.p.A."),
    (0x0000_07B0, "Shanghai Triowin Automation Machinery Co., Ltd."),
    (0x0000_07B1, "Hytec Electronics Ltd."),
    (0x0000_07B2, "Xi’an Xiangxun Technology Co., Ltd."),
    (0x0000_07B3, "Schmidiger GmbH"),
    (0x0000_07B4, "MASTER LTD."),
    (0x0000_07B5, "Korea University, College of Engineering"),
    (0x0000_07B6, "H. Kufferath GmbH"),
    (0x0000_07B7, "EFTEC Engineering GmbH"),
    (0x0000_07B9, "DFC Design, s.r.o."),
    (0x0000_07BA, "FUKUDA CO., LTD."),
    (0x0000_07BB, "Fachhochschule Flensburg"),
    (0x0000_07BC, "Karlsruher Institut für Technologie, IAR, H²T"),
    (0x0000_07BD, "Burnon International Ltd."),
    (0x0000_07BE, "Nuova Fima S.P.A."),
    (0x0000_07BF, "Yuban & Co."),
    (0x0000_07C2, "Ricoh Industry Co., Ltd."),
    (0x0000_07C3, "RDC Semiconductor Co., Ltd."),
    (0x0000_07C4, "SETEX Schermuly textile computer GmbH"),
    (0x0000_07C5, "elowerk GmbH & Co. KG"),
    (0x0000_07C6, "iThemba Laboratory for Accelerator Based Sciences (iThemba LABS)"),
    (0x0000_07C8, "CNCSAZAN"),
    (0x0000_07C9, "ShiningView Electronic Technology (Shanghai) Co., Ltd."),
    (0x0000_07CA, "Mikysek Engineering"),
    (0x0000_07CB, "VICTRON TECHNOLOGY CO., LTD."),
    (0x0000_07CD, "Michigan Scientific Corporation"),
    (0x0000_07CE, "ADFweb.com s.r.l."),
    (0x0000_07CF, "Nortion Servo Technology (Beijing) Co., Ltd."),
    (0x0000_07D0, "AKKA DNO GmbH"),
    (0x0000_07D1, "Zhejiang Synmot Electrical Technology Co., Ltd."),
    (0x0000_07D2, "HK-MnS Co., Ltd."),
    (0x0000_07D3, "Tattile S.r.l."),
    (0x0000_07D4, "ELFIN Pracownia Elektroniki"),
    (0x0000_07D5, "Bimba Manufacturing Company"),
    (0x0000_07D6, "Winsonic Electronics Co., Ltd."),
    (0x0000_07D7, "DIMETIX AG"),
    (0x0000_07D8, "GENETEC CORPORATION"),
    (0x0000_07D9, "Tianjin Hengxin Chuangyuan Science & Technology Co., Ltd."),
    (0x0000_07DA, "SFA Engineering Corp."),
    (0x0000_07DB, "Opticon Inc."),
    (0x0000_07DC, "NPN Co., Ltd."),
    (0x0000_07DD, "Wuhan Maxsine Electric Co., Ltd."),
    (0x0000_07DF, "Concept Overdrive Inc."),
    (0x0000_07E0, "HETRONIK GmbH"),
    (0x0000_07E2, "JBT Corporation"),
    (0x0000_07E3, "Technische Universität Dresden, Fakultät Elektrotechnik und Informationstechnik"),
    (0x0000_07E4, "DAJO Solutions Ltd."),
    (0x0000_07E5, "Criterion NDT, Inc."),
    (0x0000_07E6, "Quanzhou Sangchuan Electric Equipment Co., Ltd."),
    (0x0000_07E7, "DATA TECNO Co. Ltd."),
    (0x0000_07E8, "Rainbow Springs Pvt Ltd."),
    (0x0000_07E9, "Renu Electronics Pvt. Ltd."),
    (0x0000_07EA, "Max-Planck-Institut für biologische Kybernetik; Wahrnehmung, Kognition und Handlung"),
    (0x0000_07EB, "Intelligent Automation Equipment (Zhuhai) Co., Ltd."),
    (0x0000_07EC, "SCREEN Holdings Co., Ltd."),
    (0x0000_07ED, "Sysmex Corporation"),
    (0x0000_07EE, "ASM Japan K.K."),
    (0x0000_07EF, "IMAGO Technologies GmbH"),
    (0x0000_07F0, "Happiest Minds Technologies Private Limited"),
    (0x0000_07F1, "Open Control System Technology Co. Ltd."),
    (0x0000_07F2, "University of Seoul, College of Engineering"),
    (0x0000_07F3, "ULVAC, Inc."),
    (0x0000_07F4, "Meliora Scientific Inc."),
    (0x0000_07F5, "Toshiba Corporation"),
    (0x0000_07F6, "Schnell Spa"),
    (0x0000_07F7, "Industrial Technology Research Institute (ITRI)"),
    (0x0000_07F8, "4PICO BV"),
    (0x0000_07F9, "AVL SET GmbH"),
    (0x0000_07FA, "CHANGNAM I.N.T. LTD."),
    (0x0000_07FB, "Shanghai Ruking Technology Co., Ltd."),
    (0x0000_07FC, "META Srl"),
    (0x0000_07FD, "GHM Messtechnik GmbH"),
    (0x0000_07FF, "Xihua University"),
    (0x0000_0800, "Stratus Automation Sdn. Bhd."),
    (0x0000_0801, "OTSL Inc."),
    (0x0000_0802, "Aromasoft Corp."),
    (0x0000_0803, "Bobst S.A."),
    (0x0000_0804, "Beijing Powerbeck Automation Technology CO., LTD."),
    (0x0000_0805, "TESSERA TECHNOLOGY INC."),
    (0x0000_0806, "JWiesemann.com - Dr. Joachim Wiesemann"),
    (0x0000_0807, "Istanbul Ulasim San Tic. A.S."),
    (0x0000_0808, "ProPhotonix (Irl) Ltd."),
    (0x0000_0809, "B.I.N.S.S Datennetze und Gefahrenmeldesysteme GmbH Berlin"),
    (0x0000_080A, "University \"Stefan cel Mare\" Suceava, Electrical Engineering and Computer Science"),
    (0x0000_080B, "Modrol Electric CO., Ltd."),
    (0x0000_080C, "OBS Korea Co.,Ltd"),
    (0x0000_080D, "Shanghai Jiao Tong University, School of Mechanical Engineering"),
    (0x0000_080E, "TEAM ELECTRONICS GmbH"),
    (0x0000_080F, "Southwest University of Science and Technology (SWUST) National University Science Park"),
    (0x0000_0810, "TDK-Lambda Americas Inc."),
    (0x0000_0811, "Ta Liang Technology Co. Ltd."),
    (0x0000_0812, "CCS Inc."),
    (0x0000_0813, "adaptronic Prüftechnik GmbH"),
    (0x0000_0814, "TOHO Electronics Inc."),
    (0x0000_0815, "VMek Group LLC (dba VMek Sorting Technology)"),
    (0x0000_0816, "CKD Nikki Denso Co., Ltd."),
    (0x0000_0817, "Systematic Consulting Group, Inc."),
    (0x0000_0818, "PERITEC Corporation"),
    (0x0000_0819, "Bachmann Technology GmbH & Co. KG"),
    (0x0000_081A, "BMK electronic solutions GmbH & Co. KG"),
    (0x0000_081B, "TECO Electric & Machinery Co., Ltd."),
    (0x0000_081C, "Mechtronic Industries Ltd."),
    (0x0000_081D, "Mernok Elektronik (Pty) Ltd."),
    (0x0000_081E, "Universität Bremen, Institut für elektrische Antriebe, Leistungselektronik und Bauelemente"),
    (0x0000_081F, "Hydro-Québec Research Institute"),
    (0x0000_0820, "GEMTEC Laseroptische Systeme GmbH"),
    (0x0000_0821, "SINTEF Raufoss Manufacturing AS"),
    (0x0000_0822, "Advanced Manufacturing Engineering Technologies Inc."),
    (0x0000_0823, "Levitronix GmbH"),
    (0x0000_0825, "Dipl.-Ing. Carsten Spieß Softwareentwicklung"),
    (0x0000_0826, "Reivax S/A Automação e Controle"),
    (0x0000_0827, "Lappeenranta University of Technology (LUT), School of Energy Systems, Electrical Engineering"),
    (0x0000_0828, "TOTANI CORPORATION"),
    (0x0000_0829, "SERAD S.A.S."),
    (0x0000_082A, "ITW Dynatec GmbH"),
    (0x0000_082B, "Hochschule Emden/Leer, Fachbereich Technik"),
    (0x0000_082C, "JFControl Co., Ltd."),
    (0x0000_082D, "SAEL srl"),
    (0x0000_082E, "Beckman Coulter Biomedical GmbH"),
    (0x0000_082F, "Walter Maschinenbau GmbH"),
    (0x0000_0830, "Alterface s.a."),
    (0x0000_0831, "Lectronix, Inc."),
    (0x0000_0832, "HOKUYO AUTOMATIC CO., LTD."),
    (0x0000_0833, "Shanghai Empower Technologies Co., Ltd."),
    (0x0000_0834, "Thyracont Vacuum Instruments GmbH"),
    (0x0000_0835, "OMAX Corporation"),
    (0x0000_0836, "TOX® PRESSOTECHNIK GmbH & Co. KG"),
    (0x0000_0837, "National Chiao Tung University, College of Electrical and Computer Engineering, Department of Electrical Engineering"),
    (0x0000_0838, "Inspiro BV"),
    (0x0000_0839, "Maxcess International"),
    (0x0000_083A, "Chell Instruments Ltd."),
    (0x0000_083B, "FUJI CORPORATION"),
    (0x0000_083C, "NIDEC SANKYO CORPORATION"),
    (0x0000_083D, "Shizuoka Oki Electric Co., Ltd."),
    (0x0000_083E, "Frencken America Inc."),
    (0x0000_083F, "Granite Devices Oy"),
    (0x0000_0840, "SANEZOO EUROPE s.r.o."),
    (0x0000_0842, "AGILiCOM SARL"),
    (0x0000_0843, "Philips Technologie GmbH, Photonics Aachen"),
    (0x0000_0844, "KLA Corporation"),
    (0x0000_0845, "Meidensha Corporation"),
    (0x0000_0849, "Rolls-Royce Nuclear Services"),
    (0x0000_084A, "University of West Bohemia, Faculty of Applied Sciences"),
    (0x0000_084B, "Korea Electrotechnology Research Institute (KERI)"),
    (0x0000_084C, "MPI Corporation"),
    (0x0000_084D, "Röders GmbH"),
    (0x0000_084E, "Melec Inc."),
    (0x0000_084F, "Mianyang Weibo Electronic Co., Ltd."),
    (0x0000_0851, "Wuhan Huazhong Numerical Control Co., Ltd."),
    (0x0000_0852, "Datalogic Automation S.r.l."),
    (0x0000_0853, "Tri-Tek Corp."),
    (0x0000_0855, "YUHENG OPTICS CO.,LTD (Changchun)"),
    (0x0000_0856, "ETH-messtechnik gmbh"),
    (0x0000_0857, "JTEKT CORPORATION"),
    (0x0000_0858, "ergo: elektronik GmbH"),
    (0x0000_0859, "Engineerdream Co., Ltd."),
    (0x0000_085A, "Samsung Electronics Co. Ltd."),
    (0x0000_085B, "KSJ Co. Ltd."),
    (0x0000_085C, "Messer Cutting Systems GmbH"),
    (0x0000_085D, "Krones AG"),
    (0x0000_085F, "Northwestern Polytechnical University, School of Power&Energy, Department of Power Control and Test"),
    (0x0000_0860, "Blackbird Robotersysteme GmbH"),
    (0x0000_0861, "Mitsuba Corporation"),
    (0x0000_0863, "Foshan Shunde Gatherwin Information Technology Co., Ltd."),
    (0x0000_0864, "duagon Germany GmbH"),
    (0x0000_0865, "Thermo Fisher Scientific Oy"),
    (0x0000_0866, "Pyramid Technical Consultants"),
    (0x0000_0867, "Verity Instruments, Inc."),
    (0x0000_0868, "KAI PLUS TECHNOLOGY CO., LTD."),
    (0x0000_0869, "Texas A&M University at Qatar, Electrical & Computer Engineering"),
    (0x0000_086A, "FPT Motorenforschung AG"),
    (0x0000_086B, "Industries Machinex Inc."),
    (0x0000_086C, "Shanghai Rising Digital Co.,Ltd."),
    (0x0000_086D, "SICK OPTEX CO., LTD."),
    (0x0000_086E, "Laserline GmbH"),
    (0x0000_086F, "Xpress Precision Engineering B.V."),
    (0x0000_0870, "ELECTRA S.p.A."),
    (0x0000_0871, "Magnescale Co., Ltd."),
    (0x0000_0872, "Hitachi Kokusai Electric Inc."),
    (0x0000_0873, "Hangzhou Jingwei Automation Co., Ltd."),
    (0x0000_0874, "Shanghai LYNUC CNC Technology Co., Ltd."),
    (0x0000_0875, "ATLAS ELEKTRONIK GmbH"),
    (0x0000_0876, "EDAC Electronics Technology (Hangzhou) Co., Ltd."),
    (0x0000_0877, "MYCOM, INC."),
    (0x0000_0878, "ElectroCraft, Inc."),
    (0x0000_0879, "Foxconn Technology Group"),
    (0x0000_087A, "Qinhuangdao Boostsolar Photovoltatic Equipment Co.,Ltd."),
    (0x0000_087B, "Chinese Academy of Sciences, Shenyang Institute of Automation (SIA)"),
    (0x0000_087C, "Deere & Company"),
    (0x0000_087D, "Leibniz Universität Hannover, Institut für Mechatronische Systeme (IMES)"),
    (0x0000_087F, "ELTRO Gesellschaft für Elektrotechnik mbH"),
    (0x0000_0880, "UK Grid Solutions Limited"),
    (0x0000_0881, "Control Gaging, Inc."),
    (0x0000_0882, "Trilix Engineering AG"),
    (0x0000_0883, "HFE professionelle Studiotechnik GmbH"),
    (0x0000_0884, "HMT Co., Ltd."),
    (0x0000_0885, "SCHNIER Elektrostatik GmbH"),
    (0x0000_0886, "Wuhan HuaGong Laser Engineering Co.,Ltd."),
    (0x0000_0888, "Zhejiang Keqiang Intelligent Control System Co., Ltd."),
    (0x0000_0889, "Impedans Ltd."),
    (0x0000_088A, "Chinese Academy of Sciences, Institute of Automation"),
    (0x0000_088B, "GCCAlliance Inc."),
    (0x0000_088C, "Interface Corporation"),
    (0x0000_088D, "NEC Platforms, Inc."),
    (0x0000_088E, "Shenyang Piotech Co., Ltd."),
    (0x0000_088F, "TQ-Systems GmbH"),
    (0x0000_0890, "Shanghai Panelmate Electronics Co., Ltd."),
    (0x0000_0891, "Haute Ecole Arc Ingénierie"),
    (0x0000_0892, "Korea Institute of Industrial Technology - KITECH"),
    (0x0000_0893, "CETA Testsysteme GmbH"),
    (0x0000_0895, "STEP Corporation"),
    (0x0000_0896, "Dalian Guangyang Science & Technology Group Co., Ltd."),
    (0x0000_0897, "Hermes Microvision, Inc."),
    (0x0000_0898, "Kawasaki Heavy Industries, Ltd., Robot Division"),
    (0x0000_0899, "ELCO Industry Automation AG"),
    (0x0000_089A, "Neuromeka"),
    (0x0000_089D, "SEMES Co., Ltd."),
    (0x0000_089E, "FEV SA"),
    (0x0000_089F, "Plasmart Inc."),
    (0x0000_08A0, "DRESCHER Industrieelektronik GmbH"),
    (0x0000_08A1, "MK · SYSTEM CO.,LTD"),
    (0x0000_08A2, "bebro electronic GmbH"),
    (0x0000_08A3, "MC-monitoring SA"),
    (0x0000_08A4, "Variable Message Signs"),
    (0x0000_08A5, "Dukane Corporation - Intelligent Assembly Solutions"),
    (0x0000_08A6, "Mecatronix GmbH"),
    (0x0000_08A7, "Prima Power Laserdyne LLC"),
    (0x0000_08A8, "ISOCOMP srl"),
    (0x0000_08A9, "Shinko Shoji Co.,Ltd."),
    (0x0000_08AA, "ASEC International Corporation"),
    (0x0000_08AB, "RTC Electronics Ltd."),
    (0x0000_08AC, "Entegris, Inc."),
    (0x0000_08AD, "ASEM S.r.l."),
    (0x0000_08AE, "Beijing Agie Charmilles Industrial Electronics Co., Ltd."),
    (0x0000_08AF, "Zhengzhou Changhe Electronic Engineering Co., Ltd."),
    (0x0000_08B0, "Leister Technologies AG"),
    (0x0000_08B2, "SAGINOMIYA SEISAKUSHO, INC."),
    (0x0000_08B3, "LNC Technology Co., Ltd."),
    (0x0000_08B4, "Guangdong ELESY Electric CO., LTD."),
    (0x0000_08B5, "Newtouch Electronics (Shanghai) Co.,Ltd."),
    (0x0000_08B6, "TOYO AUTOMATION CO., LTD."),
    (0x0000_08B7, "Université de Bretagne-Sud"),
    (0x0000_08B8, "Shenzhen Zhiyou Battery Integration Technology Co., Ltd."),
    (0x0000_08B9, "Malema Engineering Corporation"),
    (0x0000_08BB, "Ricoh Industrial Solutions Inc."),
    (0x0000_08BC, "Tri-City X-ray, LLC"),
    (0x0000_08BD, "Rutronik Elektronische Bauelemente GmbH"),
    (0x0000_08BE, "SANEI HYTECHS VIETNAM Co.,Ltd."),
    (0x0000_08BF, "Delixi (Hangzhou) Inverter Co.,LTD."),
    (0x0000_08C0, "RITZ Co., Ltd."),
    (0x0000_08C1, "Ricoh Company, Ltd."),
    (0x0000_08C2, "TAE Antriebstechnik GmbH"),
    (0x0000_08C3, "Fontys University of Applied Sciences"),
    (0x0000_08C4, "Hangzhou Riding Control Technology Co., Ltd."),
    (0x0000_08C5, "Atlas Copco Industrial Technique AB"),
    (0x0000_08C6, "Mindtribe Product Engineering, Inc."),
    (0x0000_08C7, "Centre de recherche industrielle du Québec (CRIQ)"),
    (0x0000_08C8, "Elster GmbH"),
    (0x0000_08C9, "Panasonic Industrial Devices Systems and Technology Co., Ltd."),
    (0x0000_08CA, "STV Electronic GmbH & Co. KG"),
    (0x0000_08CB, "Hentschel System GmbH"),
    (0x0000_08CC, "Gree Electric Appliances, Inc. of Zhuhai"),
    (0x0000_08CD, "Futurestar Corp."),
    (0x0000_08CE, "PARA-ENT CO.,LTD."),
    (0x0000_08CF, "SIASUN CO., LTD."),
    (0x0000_08D0, "WFE Technology Corporation"),
    (0x0000_08D1, "driveXpert GmbH"),
    (0x0000_08D2, "Universität zu Lübeck, Institut für Medizinische Elektrotechnik"),
    (0x0000_08D4, "Branson Ultrasonics Corporation"),
    (0x0000_08D5, "Rolls-Royce@NTU Corporate Lab"),
    (0x0000_08D6, "Guilin Stars Science and Technology CO., LTD."),
    (0x0000_08D7, "Ace Designers Limited"),
    (0x0000_08D8, "Biochar Now LLC"),
    (0x0000_08D9, "Varian Medical Systems Inc."),
    (0x0000_08DA, "DAMEDICS GmbH"),
    (0x0000_08DB, "EnergopromAvtomatizaciya LLC"),
    (0x0000_08DC, "MicroSure B.V."),
    (0x0000_08DE, "Finisar SHG Inc."),
    (0x0000_08DF, "PLANET Technology Corporation"),
    (0x0000_08E0, "PEES Components GmbH"),
    (0x0000_08E1, "Belden Deutschland GmbH"),
    (0x0000_08E2, "NACHI-FUJIKOSHI CORP."),
    (0x0000_08E3, "K. A. Schmersal GmbH & Co. KG"),
    (0x0000_08E4, "Radic Technologies, Inc."),
    (0x0000_08E5, "Weightpack S.r.l."),
    (0x0000_08E6, "BS2 MULTIDATA GmbH"),
    (0x0000_08E7, "Sumitomo Heavy Industries, Ltd."),
    (0x0000_08E8, "Micro-Controle Spectra-Physics S.A."),
    (0x0000_08E9, "Apptronik Inc."),
    (0x0000_08EA, "Dr.-Ing. S. Haußmann Industrieelektronik"),
    (0x0000_08EB, "Great River Electronics, Inc."),
    (0x0000_08EC, "Eltra S.p.a. Unipersonale"),
    (0x0000_08ED, "SINOBONDER Co., Ltd."),
    (0x0000_08EE, "ROBOTOUS Co., Ltd."),
    (0x0000_08EF, "Tianjin Sentinel Electronics Co.,Ltd."),
    (0x0000_08F0, "IZOVAC LTD"),
    (0x0000_08F1, "Technical University of Kosice, Faculty of Electrical Engineering and Informatics"),
    (0x0000_08F2, "SANMEI ELECTRONICS Co., Ltd."),
    (0x0000_08F3, "EA Elektro-Automatik GmbH & Co. KG"),
    (0x0000_08F4, "Dynamic Motion Italia S.r.l."),
    (0x0000_08F5, "OOO PKF «Ersted»"),
    (0x0000_08F6, "SHANGHAI MAIHONG ELECTRONIC TECHNOLOGY CO.LTD"),
    (0x0000_08F7, "China Electronics Harvest Technology Co.,Ltd."),
    (0x0000_08F8, "Advanced Scientific Technology & Management Research Institute of Kyoto (ASTEM RI)"),
    (0x0000_08F9, "Mini Motor srl"),
    (0x0000_08FA, "BitifEye Digital Test Solutions GmbH"),
    (0x0000_08FB, "IBIS Computer Pty Ltd"),
    (0x0000_08FC, "Hanbit Micro Inc."),
    (0x0000_08FD, "TATEYAMA KAGAKU MODULE TECHNOLOGY CO., LTD."),
    (0x0000_08FF, "Aone Co.,Ltd"),
    (0x0000_0900, "Shanghai Capital Numerical Control Co., Ltd."),
    (0x0000_0901, "Bose Corporation"),
    (0x0000_0902, "Flow Devices and Systems, Inc."),
    (0x0000_0904, "Anritsu Engineering Co., Ltd."),
    (0x0000_0905, "NUTPOR BREADS, UNIPESSOAL LDA."),
    (0x0000_0906, "Emerson SolaHD (a division of Appleton GRP LLC dba Appleton Group)"),
    (0x0000_0907, "modusoft GmbH"),
    (0x0000_0908, "Sichuan MK Servo Technology"),
    (0x0000_0909, "Intron Technology (China) Co. Ltd."),
    (0x0000_090A, "Jimei University, College of Information Engineering"),
    (0x0000_090C, "CORE CORPORATION"),
    (0x0000_090D, "H.I.B Systemtechnik GmbH"),
    (0x0000_090E, "Nova Fabrica Ltd."),
    (0x0000_090F, "ROTA TEKNIK MAKINA SAN. ve TIC. A.S."),
    (0x0000_0910, "Bird Technologies Group, Inc."),
    (0x0000_0911, "SHENZHEN VMMORE CTRL&TECH CO., LTD"),
    (0x0000_0912, "Leibniz Universität Hannover, Fakultät für Elektrotechnik und Informatik"),
    (0x0000_0913, "Motion Control Products Ltd."),
    (0x0000_0914, "Saft S.A.S."),
    (0x0000_0915, "Star Denshi Co.,Ltd."),
    (0x0000_0916, "MARPOSS S.p.A."),
    (0x0000_0917, "China Orient Institute of Noise & Vibration"),
    (0x0000_0918, "Cosys Inc."),
    (0x0000_0919, "Shenzhen Vector Automation Technology Co., Lt"),
    (0x0000_091B, "INTRAVIS GmbH"),
    (0x0000_091C, "Drobak Unlimited Co."),
    (0x0000_091D, "Technische Hochschule Nürnberg Georg Simon Ohm"),
    (0x0000_091E, "Zenitron Corporation"),
    (0x0000_091F, "Wuhan Endeavor Intelligent Machine Co., Ltd."),
    (0x0000_0920, "LEADJECK AUTOMATION CO., LTD."),
    (0x0000_0922, "Fujian Raynen Technology Co., Ltd."),
    (0x0000_0923, "Demcon Advanced Mechatronics B.V."),
    (0x0000_0924, "serva transport systems GmbH"),
    (0x0000_0925, "Shenyang Neusoft Medical Systems Co., Ltd."),
    (0x0000_0926, "Ruhr-Universität Bochum"),
    (0x0000_0927, "Banner Engineering Corporation"),
    (0x0000_0929, "Guangdong Topstar Technology Co., Ltd."),
    (0x0000_092A, "Evinsys LLC"),
    (0x0000_092B, "Shenzhen Huacheng Industrial Control Co., Ltd."),
    (0x0000_092C, "Mondragon Unibertsitatea"),
    (0x0000_092D, "Katholieke Hogeschool Vives (VIVES)"),
    (0x0000_092E, "Ekso Bionics Inc."),
    (0x0000_092F, "Kaufman & Robinson Inc."),
    (0x0000_0930, "KSM-ELECTRONIC GmbH"),
    (0x0000_0932, "Technical & Try Co.,Ltd"),
    (0x0000_0935, "MAXCOM Co.,Ltd."),
    (0x0000_0936, "National NC System Engineering Research Center"),
    (0x0000_0937, "Ryoei Technica Corporation"),
    (0x0000_0938, "Schaeffler Technologies AG & Co. KG"),
    (0x0000_0939, "NTS-Group"),
    (0x0000_093A, "Alicat Scientific, Inc."),
    (0x0000_093B, "Tekt Industries Pty. Ltd."),
    (0x0000_093C, "Xi’an Aerospace Automation Co., Ltd"),
    (0x0000_093D, "Gal"),
    (0x0000_093E, "TOA Electronics Inc. Hamatou Company"),
    (0x0000_0940, "Friedrich-Alexander-Universität Erlangen-Nürnberg, Technische Fakultät"),
    (0x0000_0941, "Sirius Electronic Systems s.r.l."),
    (0x0000_0942, "Chengdu InPlus Technology Co., Ltd."),
    (0x0000_0943, "MicroStep spol s.r.o."),
    (0x0000_0944, "Murata Machinery, Ltd."),
    (0x0000_0946, "Cabinplant A/S"),
    (0x0000_0948, "FRANKA EMIKA GmbH"),
    (0x0000_094A, "Smart Move GmbH"),
    (0x0000_094B, "Ampere Inc."),
    (0x0000_094C, "Stichting Moving Bird (dba Project March)"),
    (0x0000_094D, "Imkon Endustriyel Otomasyon Sistemleri"),
    (0x0000_094E, "Tangshan Baichuan Intelligent Machine Co Ltd."),
    (0x0000_094F, "Christian-Albrechts-Universität zu Kiel"),
    (0x0000_0950, "University of Lorraine, IUT Nancy-Brabois"),
    (0x0000_0951, "Fraunhofer-Institut für Optronik, Systemtechnik und Bildauswertung IOSB"),
    (0x0000_0952, "IP-Automatika Kft."),
    (0x0000_0953, "EMKO Elektronik San. ve Tic. A.S."),
    (0x0000_0954, "FINE Inc."),
    (0x0000_0955, "Science and Technology Facilities Council, UK Astronomy Technology Centre (UK ATC)"),
    (0x0000_0956, "ITmems s.r.l."),
    (0x0000_0957, "LumaSense Technologies, Inc."),
    (0x0000_0958, "ACUTRONIC Switzerland Ltd."),
    (0x0000_0959, "DieBie EngineeringTSC"),
    (0x0000_095A, "Procept Pty Ltd"),
    (0x0000_095B, "New Power Plasma Co., Ltd"),
    (0x0000_095C, "Advanced Mining Technology Center (AMTC)"),
    (0x0000_095D, "ASM Technology Singapore Pte Ltd."),
    (0x0000_095E, "Weigl GmbH & Co KG"),
    (0x0000_095F, "Wagner International AG"),
    (0x0000_0960, "Liebherr-Components Biberach GmbH"),
    (0x0000_0961, "Mechatronics Labs S.r.l."),
    (0x0000_0962, "JIANGSU TORSUNG M&E CO.,LTD"),
    (0x0000_0963, "Technické služby BAHOZA s.r.o."),
    (0x0000_0964, "Siec Badawcza Lukasiewicz - Instytut Tele- i Radiotechniczny"),
    (0x0000_0965, "Beijing Institute of Technology (BIT), School of Mechatronical Engineering"),
    (0x0000_0966, "ElastiSense ApS"),
    (0x0000_0967, "North China University of Technology, Beijing Key Laboratory of Fieldbus and Automation"),
    (0x0000_0968, "Nidec Corporation"),
    (0x0000_0969, "Hangzhou Zhishan Intelligent Control Technology Co. Ltd."),
    (0x0000_096A, "Interface Devices Ltd."),
    (0x0000_096B, "Nikon Corporation"),
    (0x0000_096C, "FUJITSU COMPONENT LIMITED"),
    (0x0000_096D, "Jiaxing Dealour Electric Technology Co.,Ltd."),
    (0x0000_096E, "ETH Zürich, Department of Mechanical and Process Engineering (D-MAVT), Institute of Robotics and Intelligent Systems (IRIS), Robotic Systems Lab (RSL)"),
    (0x0000_096F, "SURUGA Production Platform Co., Ltd."),
    (0x0000_0970, "Advanio Technology Co., Ltd."),
    (0x0000_0971, "EMBL Hamburg"),
    (0x0000_0972, "Erle Robotics S.L."),
    (0x0000_0973, "SURUGA SEIKI CO., LTD."),
    (0x0000_0974, "EVA Robotics Pty Ltd"),
    (0x0000_0975, "Beijing Etechwin Electric Co., Ltd."),
    (0x0000_0976, "KE Elektronik GmbH"),
    (0x0000_0977, "ACCREA Bartlomiej Stanczyk"),
    (0x0000_0978, "SCHUNK GmbH & Co. KG"),
    (0x0000_0979, "Sciaky, Inc."),
    (0x0000_097A, "Tokyo Robotics Inc."),
    (0x0000_097C, "embeddeers GmbH"),
    (0x0000_097D, "GAMACO s.r.l."),
    (0x0000_097E, "NPP VIUS, LLC"),
    (0x0000_097F, "ISG Industrielle Steuerungstechnik GmbH"),
    (0x0000_0980, "FUJI ELECTRONICS CO.,LTD."),
    (0x0000_0981, "SHENZHEN MINGSU AUTOMATION EQUIPMENT CO., LTD"),
    (0x0000_0982, "Jiangsu Ysphotech Technology Co.,LTD"),
    (0x0000_0983, "Beijing JCZ Technology Co., Ltd."),
    (0x0000_0984, "DMG MORI CO., LTD."),
    (0x0000_0985, "TELSONIC AG"),
    (0x0000_0986, "Tolomatic Inc."),
    (0x0000_0987, "NCWorks"),
    (0x0000_0988, "Van Mierlo Ingenieursbureau BV"),
    (0x0000_0989, "Control Technology Corporation"),
    (0x0000_098A, "TEAC Corporation"),
    (0x0000_098D, "Crossworks Inc."),
    (0x0000_098E, "Agility Robotics"),
    (0x0000_098F, "ShenZhen Double CNC Tech Co., Ltd."),
    (0x0000_0991, "TSC Inc."),
    (0x0000_0992, "TE Connectivity Germany GmbH"),
    (0x0000_0993, "Galli Brasil Comercio de Aparelhos Eletronicos Ltda."),
    (0x0000_0994, "Shenzhen YAKO Automation Technology Co.,Ltd"),
    (0x0000_0995, "PRETTL Electronics India Pvt. Ltd."),
    (0x0000_0997, "Kehua Data Co., Ltd"),
    (0x0000_0998, "Mayser GmbH & Co. KG"),
    (0x0000_0999, "HAITIAN Plastics Machinery Group Co., Ltd"),
    (0x0000_099A, "Waco Giken Co., Ltd."),
    (0x0000_099B, "Mike & Weingartner GmbH"),
    (0x0000_099C, "Ionicon Analytik Gesellschaft m.b.H."),
    (0x0000_099D, "INESC TEC - Instituto de Engenharia de Sistemas e Computadores Tecnologia e Ciência"),
    (0x0000_099E, "4automation"),
    (0x0000_099F, "Moog India Technology Center Pvt Ltd"),
    (0x0000_09A0, "University of Cape Town, Department of Electrical Engineering"),
    (0x0000_09A1, "Auris Health, Inc."),
    (0x0000_09A3, "Technische Universität Ilmenau, Fakultät für Maschinenbau, Fachgebiet Mechatronik"),
    (0x0000_09A4, "HIT SPECIAL ROBOT CO.,LTD"),
    (0x0000_09A5, "SmartDV Technologies India Private Limited"),
    (0x0000_09A6, "Visitech AS"),
    (0x0000_09A7, "Solartron Metrology Ltd."),
    (0x0000_09A8, "NKSystem K.K."),
    (0x0000_09A9, "INTRONIX spol. s.r.o."),
    (0x0000_09AA, "NetModule AG"),
    (0x0000_09AB, "BZ Robot INC."),
    (0x0000_09AC, "PUES Corporation"),
    (0x0000_09AD, "S.H.S. s.r.l."),
    (0x0000_09AE, "Manter International B.V."),
    (0x0000_09AF, "Delft University of Technology, Faculty of Aerospace Engineering"),
    (0x0000_09B0, "GAMADE s.n.c. di Westfal Michèle & C."),
    (0x0000_09B1, "ima-tec GmbH"),
    (0x0000_09B2, "Evest Corporation"),
    (0x0000_09B3, "SHINKO TECHNOS CO.,LTD."),
    (0x0000_09B4, "Sichuan University, School of Manufacturing Science and Engineering"),
    (0x0000_09B5, "FLC Zbigniew Huber"),
    (0x0000_09B6, "Taizhou Topcut-Bullmer Mechanical and Electrical Technology Co., Ltd."),
    (0x0000_09B7, "Shiratech Embedded Ltd."),
    (0x0000_09B9, "Eastern Logic Inc."),
    (0x0000_09BA, "WEBER Schraubautomaten GmbH"),
    (0x0000_09BB, "Power Solution Network"),
    (0x0000_09BC, "Advanced Thermal Sciences Corporation"),
    (0x0000_09BE, "KITZ SCT Corporation"),
    (0x0000_09BF, "Motorcon Inc."),
    (0x0000_09C0, "clownfish information technology GmbH"),
    (0x0000_09C1, "RABE Engineering"),
    (0x0000_09C2, "Ghost Robotics LLC"),
    (0x0000_09C3, "Technische Universität Graz"),
    (0x0000_09C5, "Socionext Inc."),
    (0x0000_09C6, "Shenzhen Best Motion Technology Limited"),
    (0x0000_09C7, "ESCAD Automation GmbH"),
    (0x0000_09C8, "Université Laval"),
    (0x0000_09CA, "AKKA GmbH & Co. KGaA"),
    (0x0000_09CB, "AMS - Gesellschaft für Automatisierungs- und Meß-Systemtechnik GmbH"),
    (0x0000_09CC, "Techno-Holon Corporation"),
    (0x0000_09CD, "J. Zimmer Maschinenbau GmbH"),
    (0x0000_09CE, "e.sigma Technology GmbH"),
    (0x0000_09CF, "OMRON AUTOMATION SYSTEM (HANGZHOU) CO.,LTD."),
    (0x0000_09D0, "SOF-TEK Integrators, Inc."),
    (0x0000_09D1, "Contrinex SA"),
    (0x0000_09D2, "SISE SAS"),
    (0x0000_09D3, "Christ Electronic Systems GmbH"),
    (0x0000_09D4, "Hosta Motion Control Co., LTD"),
    (0x0000_09D5, "Spintrol Limited Corp."),
    (0x0000_09D6, "T.E.M.A. spa"),
    (0x0000_09D7, "Ingenieurbüro Für IC-Technologie Franz Sprenger"),
    (0x0000_09D8, "OPTO4L GmbH"),
    (0x0000_09D9, "QuEST Global Services Pte. Ltd."),
    (0x0000_09DB, "ZIS Industrietechnik GmbH"),
    (0x0000_09DC, "LOVATO Electric S.p.A"),
    (0x0000_09DD, "E2M Technologies B.V."),
    (0x0000_09DE, "Zefatek Co., Ltd."),
    (0x0000_09DF, "Birket Engineering, Inc."),
    (0x0000_09E0, "JD Co., Ltd."),
    (0x0000_09E1, "Institut Clément Ader (ICA)"),
    (0x0000_09E2, "OKANO CABLE CO., LTD"),
    (0x0000_09E3, "Shenzhen OUR New Medical Technologies Development Co., Ltd."),
    (0x0000_09E4, "J. Schmalz GmbH"),
    (0x0000_09E5, "Fives OTO S.p.a."),
    (0x0000_09E6, "INNOCONTACT CO.,LTD."),
    (0x0000_09E7, "silex technology, Inc."),
    (0x0000_09E8, "ShinMaywa Industries, LTD."),
    (0x0000_09E9, "ib prozessleittechnik GmbH & Co. KG"),
    (0x0000_09EA, "EJTECH Inc."),
    (0x0000_09EB, "Shenzhen Hymson Laser Technologies Co.,Ltd."),
    (0x0000_09EC, "FlashCut CNC"),
    (0x0000_09ED, "CTB Co., Ltd."),
    (0x0000_09EE, "Alexander Binzel Schweisstechnik GmbH & Co. KG"),
    (0x0000_09EF, "SAWAMURA DENKI IND.CO.,LTD."),
    (0x0000_09F0, "Robowell Korea Co."),
    (0x0000_09F1, "MUSE Robotics Inc."),
    (0x0000_09F2, "Shenzhen WELLAUTO Technology CO., LTD."),
    (0x0000_09F3, "Primagest Inc."),
    (0x0000_09F4, "Aignep S.p.A."),
    (0x0000_09F5, "Pusan National University"),
    (0x0000_09F6, "KUMOH MACH. & ELEC. CO., LTD."),
    (0x0000_09F7, "Chinese Academy of Sciences, Institute of Modern Physics (IMP)"),
    (0x0000_09F8, "Houston Mechatronics, Inc."),
    (0x0000_09F9, "IAR Systems AB"),
    (0x0000_09FA, "KOSHIDA KOREA CORPORATION"),
    (0x0000_09FB, "Advanced Micro-Fabrication Equipment Inc."),
    (0x0000_09FC, "STEPHANIX S.A."),
    (0x0000_09FD, "CPI Technologies, Inc"),
    (0x0000_09FE, "Harris Corporation"),
    (0x0000_09FF, "Suzhou AGIOE Equipment Co. Ltd."),
    (0x0000_0A00, "OPTOELECTRONICS CO., LTD."),
    (0x0000_0A01, "Hitachi Energy Switzerland Ltd., Semiconductors"),
    (0x0000_0A02, "FMS Force Measuring Systems AG"),
    (0x0000_0A03, "Kulicke & Soffa Pte Ltd"),
    (0x0000_0A04, "HEXMOTO Controls Pvt. Ltd"),
    (0x0000_0A05, "Esautomotion s.r.l"),
    (0x0000_0A06, "Canon ANELVA Corporation"),
    (0x0000_0A07, "Glowbuzzer Ltd"),
    (0x0000_0A08, "Technische Universität München, Fakultät für Maschinenwesen"),
    (0x0000_0A09, "Beijing iTegva Technology Co., Ltd."),
    (0x0000_0A0A, "Zhejiang Wolong Servo Technology Co., Ltd."),
    (0x0000_0A0B, "SINOMACH Intelligence Technology Research Institute Co., Ltd."),
    (0x0000_0A0C, "Pusan National University, Department of Electronics Engineering, Embedded Control System Lab."),
    (0x0000_0A0D, "CRRC ZHUZHOU INSTITUTE CO.,LTD."),
    (0x0000_0A0E, "FATEK Automation Corporation"),
    (0x0000_0A0F, "Racelogic Limited"),
    (0x0000_0A10, "GRITEC AG"),
    (0x0000_0A11, "Synhelion Germany GmbH"),
    (0x0000_0A12, "National Technical University of Athens, School of Mechanical Engineering"),
    (0x0000_0A13, "Changzhou GS Technology Co., Ltd."),
    (0x0000_0A14, "isel facility GmbH"),
    (0x0000_0A15, "inotech Meter Calibration Systems GmbH"),
    (0x0000_0A16, "HYUNDAI WIA CORP."),
    (0x0000_0A17, "DARPAMotion Ltd."),
    (0x0000_0A18, "MICRO TREND AUTOMATION CO.,LTD"),
    (0x0000_0A19, "Suzhou Xiling Control Technology Co., Ltd."),
    (0x0000_0A1A, "UCAM Pvt. Ltd."),
    (0x0000_0A1B, "Thomas More Mechelen-Antwerpen vzw, Campus De Nayer, Department Technology & IT, EmSys Research Group"),
    (0x0000_0A1C, "Planar Motor Incorporated"),
    (0x0000_0A1D, "DYNAX Corporation"),
    (0x0000_0A1E, "Mitsubishi Electric Corporation"),
    (0x0000_0A1F, "Neways Technologies B.V."),
    (0x0000_0A20, "By Three projects Co.,Ltd."),
    (0x0000_0A21, "FMI Industrial Automation B.V."),
    (0x0000_0A22, "elecgator bvba"),
    (0x0000_0A23, "EPA GmbH"),
    (0x0000_0A24, "TESEC Corporation"),
    (0x0000_0A25, "FUJITSU GENERAL ELECTRONICS LIMITED"),
    (0x0000_0A26, "HOERBIGER Automatisierungstechnik GmbH"),
    (0x0000_0A27, "RRRobotica Srl"),
    (0x0000_0A29, "Servo Industrial Systems Co., Ltd."),
    (0x0000_0A2A, "Guangzhou Hongsen Servo Motor Co., Ltd."),
    (0x0000_0A2C, "U-System Co. Ltd."),
    (0x0000_0A2D, "Sarissa GmbH"),
    (0x0000_0A2E, "Zitte Corporation"),
    (0x0000_0A2F, "EOPTIS S.r.l."),
    (0x0000_0A30, "Aerotech, Inc."),
    (0x0000_0A31, "Cognizant Technology Solutions India Private Limited"),
    (0x0000_0A32, "eSSys Co., Ltd."),
    (0x0000_0A33, "Alltec GmbH"),
    (0x0000_0A34, "TDG Co.,Ltd."),
    (0x0000_0A35, "STAR SEIKI CO., LTD."),
    (0x0000_0A36, "SYNTEC TECHNOLOGY CO., LTD."),
    (0x0000_0A38, "COWIN.FA CO., Ltd."),
    (0x0000_0A39, "Rokae (Beijing) Robotics Technology Co.,Ltd."),
    (0x0000_0A3A, "JASA Packaging Systems BV"),
    (0x0000_0A3B, "Tecnos G.A. Srl"),
    (0x0000_0A3C, "NIPPON SYSTEMWARE CO.,LTD."),
    (0x0000_0A3D, "SPG Co., Ltd."),
    (0x0000_0A3E, "ISIT"),
    (0x0000_0A3F, "Mirae Corporation"),
    (0x0000_0A40, "STANLEY Engineered Fastening"),
    (0x0000_0A41, "Beijing Does Robotics Co., Ltd."),
    (0x0000_0A42, "Amazipoint Technology Ltd."),
    (0x0000_0A43, "Arbite Robotics"),
    (0x0000_0A44, "Lodz University of Technology, Faculty of Electrical, Electronic, Computer and Control Engineering"),
    (0x0000_0A45, "Libertron Co., Ltd."),
    (0x0000_0A46, "Performance Controls, Inc."),
    (0x0000_0A47, "Kwangwoon University, College of Electronics and Information Engineering, School of Robotics"),
    (0x0000_0A48, "SCANLAB GmbH"),
    (0x0000_0A49, "Global Electronics Corporation"),
    (0x0000_0A4A, "Embaix Consulting Dipl.-Ing Cord Elias"),
    (0x0000_0A4B, "Wuxi Chihai Intelligent Technology Co., Ltd."),
    (0x0000_0A4C, "PAC TECH CO., LTD."),
    (0x0000_0A4D, "Tietech Co., Ltd."),
    (0x0000_0A4E, "Hauch & Bach ApS"),
    (0x0000_0A4F, "OOO Vnedrencheskaya Firma Elna"),
    (0x0000_0A50, "Shenzhen RuiDa Technology Co., Ltd."),
    (0x0000_0A51, "PTM mechatronics GmbH"),
    (0x0000_0A52, "Schildknecht AG"),
    (0x0000_0A53, "Shanghai Weihong Electronic Technology Co.,Ltd."),
    (0x0000_0A54, "OOO Compel"),
    (0x0000_0A55, "Zixel sas di Beschin Augusto & C."),
    (0x0000_0A57, "Bender Robotics s.r.o."),
    (0x0000_0A58, "Power Standards Lab Inc."),
    (0x0000_0A59, "École Polytechnique de Montréal, Electrical Engineering Department"),
    (0x0000_0A5A, "Novanta IMS"),
    (0x0000_0A5B, "Winservo (Xiamen) Electrical Technology Co., Ltd."),
    (0x0000_0A5C, "Weber Ultrasonics AG"),
    (0x0000_0A5D, "NIDEC COPAL ELECTRONICS CORP."),
    (0x0000_0A5E, "Mattson Thermal Products GmbH"),
    (0x0000_0A5F, "ReACT Technologies Inc."),
    (0x0000_0A60, "MILLAN Automation SAS"),
    (0x0000_0A61, "ANDRITZ HYDRO GmbH"),
    (0x0000_0A62, "Shenzhen Yuejiang Technology Co., Ltd."),
    (0x0000_0A63, "Fineline Limited"),
    (0x0000_0A64, "OEMB SA"),
    (0x0000_0A65, "Philoptics Co., Ltd."),
    (0x0000_0A66, "Vetaphone A/S"),
    (0x0000_0A67, "Herkules-Resotec Elektronik GmbH"),
    (0x0000_0A68, "ArtifactNoise, LLP"),
    (0x0000_0A69, "DEPRAG SCHULZ GMBH & CO."),
    (0x0000_0A6A, "Kinema AST S.r.l"),
    (0x0000_0A6B, "ASAHI SURGICAL ROBOTICS CO.,LTD."),
    (0x0000_0A6C, "LLC \"Plasmatic RnD\""),
    (0x0000_0A6D, "Shanghai Tongyi Automation Technology Co., Ltd."),
    (0x0000_0A6F, "Plasmatreat GmbH"),
    (0x0000_0A70, "Balt-System Ltd."),
    (0x0000_0A71, "Jack Sewing Machine Co., Ltd."),
    (0x0000_0A72, "Okura Yusoki Co., Ltd."),
    (0x0000_0A73, "CB7 Systems LLC"),
    (0x0000_0A74, "Orotig S.r.l."),
    (0x0000_0A75, "SCHMIDT Technology GmbH"),
    (0x0000_0A76, "Ingenieurbüro Holtgrewe"),
    (0x0000_0A77, "SWIGRO Additive Manufacturing Inc."),
    (0x0000_0A78, "SPI Developments Ltd."),
    (0x0000_0A79, "Shenzhen Xinchuan Electric Technology Co., Ltd."),
    (0x0000_0A7A, "Saab AB"),
    (0x0000_0A7B, "Beckman Coulter K.K."),
    (0x0000_0A7D, "Crosscut Prototypes, LLC"),
    (0x0000_0A7E, "Goertek Inc."),
    (0x0000_0A7F, "SHINKAWA LTD."),
    (0x0000_0A80, "adphos Innovative Technologies GmbH"),
    (0x0000_0A81, "University of Stavanger, Faculty of Science and Technology"),
    (0x0000_0A82, "RealSYS"),
    (0x0000_0A83, "MTS Systems Corporation"),
    (0x0000_0A84, "ZUKEN ELMIC, Inc."),
    (0x0000_0A85, "\"Power Supply Systems\" Limited"),
    (0x0000_0A86, "Nanjing Control Intelligent Technology Co.,Ltd."),
    (0x0000_0A87, "Laser Institute of Shandong Academy of Sciences"),
    (0x0000_0A88, "Shenzhen Ruitech Mechanical and Electrical Technology Co.,Ltd."),
    (0x0000_0A89, "Shenzhen Hengyu Controller Technology Co., Ltd."),
    (0x0000_0A8A, "BE.services GmbH"),
    (0x0000_0A8B, "Enertronica Santerno S.p.A."),
    (0x0000_0A8C, "O-DEAR INTERNATIONAL CORP."),
    (0x0000_0A8D, "Scanivalve Corp."),
    (0x0000_0A8E, "SMARTMOTION Co., Ltd."),
    (0x0000_0A8F, "TOYO SYSTEM Co., Ltd."),
    (0x0000_0A90, "Rheinmetall Electronics GmbH"),
    (0x0000_0A91, "Vishay Nobel AB"),
    (0x0000_0A92, "DMM Technology Corp."),
    (0x0000_0A93, "Crossmuller Pty Ltd"),
    (0x0000_0A94, "ibg Prüfcomputer GmbH"),
    (0x0000_0A95, "NSK Ltd."),
    (0x0000_0A96, "ELEDUS s.r.o."),
    (0x0000_0A97, "Baldwin Technology GmbH"),
    (0x0000_0A98, "Blum-Novotest GmbH"),
    (0x0000_0A99, "KROHNE Messtechnik GmbH"),
    (0x0000_0A9B, "Shenzhen ECON Technology Co.,Ltd."),
    (0x0000_0A9C, "National Institute of Advanced Industrial Science and Technology (AIST), Intelligent Systems Research Institute (ISRI)"),
    (0x0000_0A9E, "ZELTWANGER Leaktesting & Automation GmbH"),
    (0x0000_0A9F, "CoSynth GmbH & Co. KG"),
    (0x0000_0AA0, "Technical Development Corporation"),
    (0x0000_0AA1, "AREVO INC."),
    (0x0000_0AA2, "MTT Corporation"),
    (0x0000_0AA3, "MTT Corporation"),
    (0x0000_0AA4, "Mackware GmbH"),
    (0x0000_0AA5, "Reno Sub-Systems Inc."),
    (0x0000_0AA6, "BARBERAN S.A."),
    (0x0000_0AA7, "Stratasys, Ltd."),
    (0x0000_0AA8, "DEPUSH Technology Co.,Ltd."),
    (0x0000_0AA9, "Justus-Liebig-Universität Gießen, I. Physikalisches Institut, Arbeitsgruppe Atom- und Molekülphysik"),
    (0x0000_0AAA, "Think Surgical, Inc."),
    (0x0000_0AAB, "Zhengzhou Runhua Intelligent Equipment Co., Ltd."),
    (0x0000_0AAC, "Unipulse Corporation"),
    (0x0000_0AAD, "Foshan City Coyo Precision Machinery Manufacturing Co. Ltd"),
    (0x0000_0AAE, "Teknix Argentina SRL"),
    (0x0000_0AAF, "TDK Corporation"),
    (0x0000_0AB0, "HYUNDAI MOVEX"),
    (0x0000_0AB1, "The Charles Stark Draper Laboratory, Inc."),
    (0x0000_0AB2, "Technische Universität Berlin, Fakultät Elektrotechnik und Informatik, Fachgebiet Telekommunikationsnetze"),
    (0x0000_0AB3, "Star Asia Trading Pte. Ltd."),
    (0x0000_0AB4, "Changzhou Fulling Motor Co., Ltd."),
    (0x0000_0AB5, "Shenzhen Qinglan Automation Technology Co.,Ltd"),
    (0x0000_0AB6, "Beijing Hollysys Electric Technology Co., Ltd."),
    (0x0000_0AB7, "ANTRIMON Group AG"),
    (0x0000_0AB8, "Technische Universität Dresden (TU Dresden), Fakultät Maschinenwesen, Institut für Werkzeugmaschinen und Steuerungstechnik"),
    (0x0000_0AB9, "MikroElektronika d.o.o."),
    (0x0000_0ABA, "Sasken Technologies Limited"),
    (0x0000_0ABB, "ABB AS Corporate Research"),
    (0x0000_0ABD, "STIGAL"),
    (0x0000_0ABE, "TnS Co., Ltd"),
    (0x0000_0ABF, "PAIX Co.,Ltd"),
    (0x0000_0AC0, "Senfit Ltd."),
    (0x0000_0AC1, "Promaster Technology Corporation"),
    (0x0000_0AC2, "CRSC Urban Rail Transit Technology Co.,Ltd"),
    (0x0000_0AC3, "Anthony Best Dynamics Ltd."),
    (0x0000_0AC4, "TVM Signalling and Transportation Systems Pvt. Ltd"),
    (0x0000_0AC5, "neuroConn GmbH"),
    (0x0000_0AC6, "Servelec Technologies Pty Ltd"),
    (0x0000_0AC7, "Stereotaxis, Inc."),
    (0x0000_0AC8, "National Formosa University, College of Engineering"),
    (0x0000_0AC9, "Alma Mater Studiorum - Università di Bologna, Department of Electrical, Electronic and Information Engineering “Guglielmo Marconi”, Laboratory of Automation and Robotics"),
    (0x0000_0ACA, "Centroid Corporation"),
    (0x0000_0ACC, "Nidec Motor Corporation"),
    (0x0000_0ACD, "NAVER LABS Corp."),
    (0x0000_0ACE, "Hitachi Industry & Control Solutions, Ltd."),
    (0x0000_0ACF, "Thermo Fisher Scientific Messtechnik GmbH"),
    (0x0000_0AD0, "JSC \"T-Platforms\""),
    (0x0000_0AD1, "Halodi Robotics AS"),
    (0x0000_0AD2, "Skala Sp. z o.o."),
    (0x0000_0AD3, "Jin Solution Co., Ltd."),
    (0x0000_0AD4, "KingSemi Co.,Ltd"),
    (0x0000_0AD5, "VA Laserautomation GmbH"),
    (0x0000_0AD6, "Kleintges Elektrogerätebau GmbH"),
    (0x0000_0AD7, "Logosol, Inc."),
    (0x0000_0AD8, "REJ Co., Ltd."),
    (0x0000_0AD9, "TCK Inc."),
    (0x0000_0ADA, "Axetris AG"),
    (0x0000_0ADB, "Replicant Automation FZE"),
    (0x0000_0ADC, "AIRTEC Pneumatic GmbH"),
    (0x0000_0ADD, "Equip-Test Kft."),
    (0x0000_0ADE, "ChromaTan Corporation"),
    (0x0000_0ADF, "Ford Motor Company Limited"),
    (0x0000_0AE0, "thyssenkrupp Marine Systems GmbH"),
    (0x0000_0AE1, "GEFAZ mbH"),
    (0x0000_0AE3, "L&T Technology Services Limited"),
    (0x0000_0AE5, "The Cyber University of Korea, Department of Mechanical and Control Engineering"),
    (0x0000_0AE6, "SCHOBER Elektronik GmbH"),
    (0x0000_0AE7, "Simulation and Control Technologies, Inc"),
    (0x0000_0AE8, "Guangdong Sumida Automation Co.,Ltd."),
    (0x0000_0AE9, "GEMSS Medical Systems Co.,Ltd."),
    (0x0000_0AEA, "Shanghai Electric Power T&D Group"),
    (0x0000_0AEB, "Shandong University, School of Control Science and Engineering"),
    (0x0000_0AEC, "Fiessler Elektronik GmbH & Co. KG"),
    (0x0000_0AED, "Cencorp Automation Technology Co, Ltd."),
    (0x0000_0AEE, "Venture International Pte Ltd"),
    (0x0000_0AEF, "EcoTronic GmbH"),
    (0x0000_0AF0, "Shenzhen Donglaier Smart Technology Co., Ltd."),
    (0x0000_0AF1, "Domino UK Limited"),
    (0x0000_0AF3, "Elekta Solutions AB"),
    (0x0000_0AF4, "Logic Fruit Technologies Pvt. Ltd."),
    (0x0000_0AF5, "ecocoach AG"),
    (0x0000_0AF6, "SIOS Meßtechnik GmbH"),
    (0x0000_0AF7, "Jabil Circuit Magyarország Kft."),
    (0x0000_0AF8, "seven dreamers laundroid, inc."),
    (0x0000_0AF9, "VR Group, a.s."),
    (0x0000_0AFA, "Afag Automation AG"),
    (0x0000_0AFB, "Miyagi Nikon Precision Co., Ltd."),
    (0x0000_0AFC, "AutomationWare S.r.l."),
    (0x0000_0AFD, "Isar Aerospace Technologies GmbH"),
    (0x0000_0AFE, "GTSystem GmbH"),
    (0x0000_0AFF, "Technische Universität München, Department of Physics"),
    (0x0000_0B00, "S+S Regeltechnik GmbH"),
    (0x0000_0B01, "Osaka University, Graduate School of Engineering Science"),
    (0x0000_0B02, "Vögtlin Instruments GmbH"),
    (0x0000_0B03, "TOHAN DENSHI KIKI CO.,LTD."),
    (0x0000_0B04, "Shinwa Industries, Inc."),
    (0x0000_0B05, "Suzhou Linkhou Robot Co.,Ltd"),
    (0x0000_0B06, "DMC, Inc."),
    (0x0000_0B07, "Nippon Pulse Motor Co., Ltd."),
    (0x0000_0B08, "LANG GmbH & Co. KG"),
    (0x0000_0B09, "STICHT Technologie GmbH"),
    (0x0000_0B0A, "HIMS Co., Ltd."),
    (0x0000_0B0B, "WITRON Logistik + Informatik GmbH"),
    (0x0000_0B0C, "Vistec Electron Beam GmbH"),
    (0x0000_0B0D, "General Atomics"),
    (0x0000_0B0E, "Teubner Industrie-Elektronik GmbH"),
    (0x0000_0B0F, "DEWETRON GmbH"),
    (0x0000_0B10, "Philip Morris Products SA"),
    (0x0000_0B11, "Nihon Protech Software Co., Ltd."),
    (0x0000_0B13, "Industrial Indexing Systems, Inc."),
    (0x0000_0B14, "AKIM METAL Sanayi Ve Ticaret Anonim Sirketi"),
    (0x0000_0B15, "MEODAT Messtechnik, Ortung und Datenverarbeitung GmbH"),
    (0x0000_0B17, "Goyo Electronics Co.,Ltd."),
    (0x0000_0B18, "Shanghai Golytec Automation Co., Ltd."),
    (0x0000_0B19, "Redcur GmbH"),
    (0x0000_0B1A, "Room3327, Inc."),
    (0x0000_0B1C, "Love Electronics Ltd"),
    (0x0000_0B1D, "Fontys University of Applied Sciences, School of Information & Communication Technology"),
    (0x0000_0B1E, "Hocoma AG"),
    (0x0000_0B1F, "Sensor Instruments Entwicklungs- und Vertriebs GmbH"),
    (0x0000_0B20, "Reboocon Bionics B.V."),
    (0x0000_0B21, "Olympus NDT Canada, a subsidiary of Olympus Scientific Solutions Americas"),
    (0x0000_0B22, "Photon Control Inc."),
    (0x0000_0B23, "NK Labs, LLC"),
    (0x0000_0B24, "Excelpoint Systems (India) Pvt Ltd"),
    (0x0000_0B25, "\"Gheorghe Asachi\" Technical University of Iasi, Faculty of Automatic Control and Computer Engineering"),
    (0x0000_0B26, "Manroland Sheetfed GmbH"),
    (0x0000_0B27, "OPTEX FA CO., LTD."),
    (0x0000_0B28, "SMAC Corporation"),
    (0x0000_0B29, "Toshiba Infrastructure Systems & Solutions Corporation"),
    (0x0000_0B2A, "SAITEL S.r.l."),
    (0x0000_0B2B, "Hebi Haichang Special Equipment Co.,Ltd."),
    (0x0000_0B2C, "Salunda Ltd"),
    (0x0000_0B2D, "Higerman CNC Technology (SZ) Limited"),
    (0x0000_0B2E, "IPG Laser GmbH"),
    (0x0000_0B2F, "RTSoft, AO"),
    (0x0000_0B30, "Dalian Hi-Sensor Technology Co., Ltd."),
    (0x0000_0B31, "alpiscan srls"),
    (0x0000_0B32, "DYNAMIC OPTICS s.r.l."),
    (0x0000_0B33, "OOO “ITS-Sibir”"),
    (0x0000_0B34, "SUMITOMO RIKO Company Limited"),
    (0x0000_0B35, "Tianjin Automa Technology Co. Ltd."),
    (0x0000_0B37, "Human Automation Co., Ltd."),
    (0x0000_0B38, "Aplex Technology Inc."),
    (0x0000_0B39, "Shanghai Jesee Auto System Co., Ltd"),
    (0x0000_0B3A, "Kunming Unionscience Technology Co.,Ltd"),
    (0x0000_0B3B, "Fitz-Thors Engineering, Inc."),
    (0x0000_0B3C, "ACTIA Automotive SA"),
    (0x0000_0B3D, "Kunshan SVL Electric Co.,Ltd"),
    (0x0000_0B3E, "SilCore Technology"),
    (0x0000_0B3F, "SHENZHEN QITAI TECHNOLOGY CO.LTD"),
    (0x0000_0B40, "A. Sturzenegger Elektronik GmbH"),
    (0x0000_0B41, "ZEUS CO., LTD."),
    (0x0000_0B42, "BETAMONT s.r.o."),
    (0x0000_0B43, "Strategy Automation S.r.l."),
    (0x0000_0B44, "Fachhochschule Nordwestschweiz, Hochschule für Technik, Institut für Automation"),
    (0x0000_0B45, "SMS group GmbH"),
    (0x0000_0B46, "TRUMPF Schweiz AG"),
    (0x0000_0B47, "Fraunhofer-Institut für Silicatforschung"),
    (0x0000_0B48, "The University of Tokyo, Graduate School of Information Science and Technology"),
    (0x0000_0B49, "Indian Institute of Science, Interdisciplinary Centre for Energy Research"),
    (0x0000_0B4A, "Overlay Technology OÜ"),
    (0x0000_0B4B, "CK Automation, LLC"),
    (0x0000_0B4D, "OOO \"Kompex-T\""),
    (0x0000_0B4E, "Ostbayerische Technische Hochschule Regensburg, Fakultät Maschinenbau"),
    (0x0000_0B4F, "Hefei Eagle Automation Engineering Technology Co., Ltd."),
    (0x0000_0B50, "Vertiv Tech Co., Ltd"),
    (0x0000_0B51, "Sanying MotionControl Instruments Ltd."),
    (0x0000_0B52, "Jiangsu Saiyang Mechanical & Electrical Technology Co., Ltd."),
    (0x0000_0B53, "Robosoft NV"),
    (0x0000_0B54, "MotionBank"),
    (0x0000_0B55, "South China University of Technology, School of Automation Science & Engineering"),
    (0x0000_0B56, "Oetiker Schweiz AG"),
    (0x0000_0B57, "Chiang Mai University, Faculty of Engineering"),
    (0x0000_0B58, "Shenzhen FOXON Automation Technology Co., Ltd."),
    (0x0000_0B59, "Heinmade BV"),
    (0x0000_0B5A, "ING-AUTOMATION"),
    (0x0000_0B5B, "Vanteon Corporation"),
    (0x0000_0B5C, "Solvine, Inc."),
    (0x0000_0B5D, "SHINWA Controls Co., Ltd."),
    (0x0000_0B5E, "Sierra CP Engineering Ltd."),
    (0x0000_0B5F, "Rope Robotics ApS"),
    (0x0000_0B60, "Hefei Sineva Intelligent Machine Co.,Ltd"),
    (0x0000_0B61, "Shenzhen Porcheson Technology Co., Ltd"),
    (0x0000_0B62, "Greenlight Innovation Inc."),
    (0x0000_0B63, "PCB Piezotronics, Inc."),
    (0x0000_0B64, "microGauge AG"),
    (0x0000_0B65, "EL Klaszter Iroda Kft."),
    (0x0000_0B66, "A.B.Esse Spa"),
    (0x0000_0B67, "Corindus, Inc."),
    (0x0000_0B68, "Celeroton AG"),
    (0x0000_0B69, "SAMHYUN Co. Ltd."),
    (0x0000_0B6A, "Ecole Polytechnique Fédérale de Lausanne, School of Basic Sciences"),
    (0x0000_0B6B, "AVIC-XINHANG YUBEI STEERING SYSTEM (XINXIANG) CO.,LTD"),
    (0x0000_0B6C, "Creative Conners, Inc."),
    (0x0000_0B6D, "Mamezou Co.,Ltd."),
    (0x0000_0B6E, "Raith B.V."),
    (0x0000_0B6F, "Soft Harmony"),
    (0x0000_0B70, "Elektrik Üretim A.S."),
    (0x0000_0B71, "Delft University of Technology, Electronic and Mechanical Support Division (DEMO)"),
    (0x0000_0B72, "machineering GmbH & Co. KG"),
    (0x0000_0B73, "GRAPHIMECC S.r.l."),
    (0x0000_0B74, "TOPTICA Projects GmbH"),
    (0x0000_0B75, "Enlaica Co., Ltd."),
    (0x0000_0B76, "SYSTEC Corporation"),
    (0x0000_0B77, "Sherpa Inc."),
    (0x0000_0B78, "Sioux Embedded Systems B.V."),
    (0x0000_0B79, "UNISEM Co., Ltd."),
    (0x0000_0B7A, "William Petersen Elektronik A/S"),
    (0x0000_0B7B, "Shanghai Velle Automobile Air Conditioner Co., Ltd."),
    (0x0000_0B7C, "Vision Tech Co."),
    (0x0000_0B7D, "Technische Universität Wien, Fakultät für Elektrotechnik und Informationstechnik"),
    (0x0000_0B7E, "Universität Augsburg, Fakultät für Angewandte Informatik"),
    (0x0000_0B7F, "Tecnomotion Srl"),
    (0x0000_0B80, "Microservo Co., Ltd."),
    (0x0000_0B81, "Micro CleanRoom Technology GmbH"),
    (0x0000_0B82, "Global Motion & Systems Inc."),
    (0x0000_0B83, "L3 Datron Advanced Technologies"),
    (0x0000_0B84, "NTN Technical Service Corporation"),
    (0x0000_0B85, "Chugoku Electric Manufacturing Co.,Inc."),
    (0x0000_0B86, "European Spallation Source ERIC, Integrated Control System Division"),
    (0x0000_0B87, "MARS CO., LTD."),
    (0x0000_0B88, "SCOPX LABS"),
    (0x0000_0B89, "Laser Mechanisms, Inc."),
    (0x0000_0B8A, "TechnoPro, Inc."),
    (0x0000_0B8B, "Advanced Micro Controls, Inc."),
    (0x0000_0B8C, "Intelligence Technology of CEC Co., Ltd"),
    (0x0000_0B8D, "Applied Dynamics International, Inc."),
    (0x0000_0B8E, "Conch Electronic Co.,Ltd."),
    (0x0000_0B8F, "Shenzhen Lisan M&E Co., Ltd."),
    (0x0000_0B90, "FOXIDE LLC"),
    (0x0000_0B91, "C2P Inc."),
    (0x0000_0B92, "SonMicroSystem Co."),
    (0x0000_0B94, "HUST Automation System Co., Ltd."),
    (0x0000_0B95, "ASIX Electronics Corporation"),
    (0x0000_0B97, "Laboratoire d'Analyse et d'Architecture des Systèmes (LAAS-CNRS)"),
    (0x0000_0B98, "KM DIGITECH CO., LTD."),
    (0x0000_0B99, "Sens4 A/S"),
    (0x0000_0B9A, "Nidec Research and Development Center, Taiwan"),
    (0x0000_0B9D, "Cajo Technologies Oy"),
    (0x0000_0B9E, "VAS HIGH TECHNOLOGY SOLUTION CORPORATION"),
    (0x0000_0B9F, "Beijing Chymotion Control Technology Co. Ltd"),
    (0x0000_0BA0, "MarquipWardUnited"),
    (0x0000_0BA1, "Komax Singapore Pte Ltd"),
    (0x0000_0BA2, "Persimmon Technologies Corporation"),
    (0x0000_0BA3, "Tohoku University, New Industry Creation Hatchery Center (NICHe), Fluctuation Free Facility (FFF)"),
    (0x0000_0BA4, "Rheinische Fachhochschule Köln gGmbH, Ingenieurwesen"),
    (0x0000_0BA5, "Luminize"),
    (0x0000_0BA6, "v6e Limited"),
    (0x0000_0BA7, "ECA ROBOTICS SASU"),
    (0x0000_0BA8, "Sphere Fluidics Limited"),
    (0x0000_0BA9, "WELCON Systems Inc."),
    (0x0000_0BAA, "Exor International S.p.A"),
    (0x0000_0BAB, "Dekimo Turnhout"),
    (0x0000_0BAC, "Lavender CE Pty Ltd"),
    (0x0000_0BAD, "Science in Motion Technology Corporation, Ltd."),
    (0x0000_0BAE, "IST Ingenieurbüro für Sensortechnik GmbH"),
    (0x0000_0BAF, "maku engineering GmbH"),
    (0x0000_0BB0, "Geoservices Equipements SAS"),
    (0x0000_0BB1, "NEST Electronics GmbH"),
    (0x0000_0BB2, "MR Shim GmbH"),
    (0x0000_0BB4, "Zettaone Technologies India Pvt Ltd"),
    (0x0000_0BB6, "Universität Augsburg, Fakultät für angewandte Informatik, Institut für Informatik"),
    (0x0000_0BB7, "SCHUNK Electronic Solutions GmbH"),
    (0x0000_0BB8, "KOORD Sàrl"),
    (0x0000_0BB9, "regenHU Ltd."),
    (0x0000_0BBA, "VONSCH spol. s r.o."),
    (0x0000_0BBC, "Bore Automation Tech. Co., Ltd."),
    (0x0000_0BBD, "Board Planning Co., Ltd."),
    (0x0000_0BBE, "Kamp & Kötter GmbH"),
    (0x0000_0BBF, "IOTech Systems Limited"),
    (0x0000_0BC0, "Altinay Robot Technologies Inc."),
    (0x0000_0BC1, "Lorenz Messtechnik GmbH"),
    (0x0000_0BC2, "LJ Welding Automation"),
    (0x0000_0BC3, "DMP Electronics Inc."),
    (0x0000_0BC4, "Dima Motor Tec. Co., Ltd."),
    (0x0000_0BC5, "Fraunhofer-Institut für Produktionstechnik und Automatisierung"),
    (0x0000_0BC6, "Schneider Electric (China) Co., Ltd."),
    (0x0000_0BC7, "Suzhou DaFang Special Vehicle Co., Ltd"),
    (0x0000_0BC8, "Shenzhen OUYE Intelligent Technology Co., Ltd"),
    (0x0000_0BC9, "HBH Microwave GmbH"),
    (0x0000_0BCA, "MTA B.V."),
    (0x0000_0BCB, "SYSTEM ARTWARE, Inc."),
    (0x0000_0BCC, "ProDSP Technologies Zrt."),
    (0x0000_0BCD, "Hypersen Technologies Co., Ltd"),
    (0x0000_0BCE, "Pyramid Vacuum LLC"),
    (0x0000_0BCF, "Hanbaek Tech Co., Ltd."),
    (0x0000_0BD0, "SC3 Automation Inc."),
    (0x0000_0BD1, "Fachhochschule Nordwestschweiz, Hochschule für Technik, Institut für Sensorik und Elektronik"),
    (0x0000_0BD2, "innofas GmbH"),
    (0x0000_0BD3, "Adamant Namiki Precision Jewel Co., Ltd."),
    (0x0000_0BD4, "YUNNAN KSEC INTELLIGENT EQUIPMENT CO.,LTD."),
    (0x0000_0BD6, "Industrial Solutions Zuid-Oost B.V. (Actemium Electronics)"),
    (0x0000_0BD7, "BETONMAC S.A."),
    (0x0000_0BD8, "Manufacturing Objects"),
    (0x0000_0BD9, "Chen Yuan International Co., Ltd."),
    (0x0000_0BDB, "Griffin Technology Co., Ltd."),
    (0x0000_0BDC, "RORZE CORPORATION"),
    (0x0000_0BDD, "Bruker Daltonik GmbH"),
    (0x0000_0BDE, "Logos01 Srl"),
    (0x0000_0BDF, "Coaters Paradise GmbH"),
    (0x0000_0BE0, "Hahn-Schickard-Gesellschaft für angewandte Forschung e.V."),
    (0x0000_0BE2, "R&D Company \"Vector\" LLC"),
    (0x0000_0BE3, "ReeR SpA"),
    (0x0000_0BE4, "HP Scitex Ltd."),
    (0x0000_0BE5, "Hitachi Automotive Systems Americas, Inc."),
    (0x0000_0BE6, "Zhejiang Eternal Automation Sci-Tec Co.,Ltd"),
    (0x0000_0BE7, "Shenzhen Siron Electrical Co.,Ltd."),
    (0x0000_0BE8, "ARUP Laboratories"),
    (0x0000_0BE9, "LETech Co.,Ltd."),
    (0x0000_0BEA, "Bangkok University, School of Engineering, Robotics Laboratory"),
    (0x0000_0BEB, "Kontron Electronics GmbH"),
    (0x0000_0BEC, "Shanghai Junqian Sensing Technology Co., Ltd."),
    (0x0000_0BEE, "VI.BE.MAC s.p.a."),
    (0x0000_0BEF, "EMG Automation GmbH"),
    (0x0000_0BF0, "American Controls & Automation, Inc."),
    (0x0000_0BF1, "Ascale Enterprise Co., Ltd."),
    (0x0000_0BF2, "University of Applied Sciences and Arts Western Switzerland (HES-SO Fribourg)"),
    (0x0000_0BF3, "Lantronix, Inc."),
    (0x0000_0BF4, "Technische Hochschule Rosenheim"),
    (0x0000_0BF5, "LEIFERT INDUCTION GmbH"),
    (0x0000_0BF6, "Automation of Things Europe GmbH"),
    (0x0000_0BF7, "SAMWON ACT Co.,Ltd"),
    (0x0000_0BF8, "Wenling Yuhai Electromechanical CO.,LTD"),
    (0x0000_0BF9, "Faraday Motion Controls Ltd."),
    (0x0000_0BFA, "Nikon Systems Inc."),
    (0x0000_0BFB, "Sanitas EG S.r.l."),
    (0x0000_0BFC, "Videojet Technologies Inc."),
    (0x0000_0BFD, "ABB Automation GmbH"),
    (0x0000_0BFE, "WARDJet LLC"),
    (0x0000_0BFF, "Ichor Systems, Inc."),
    (0x0000_0C00, "UTAREX Co., Ltd."),
    (0x0000_0C01, "GAON SOLUTION Ltd."),
    (0x0000_0C02, "Highlight Tech Corp."),
    (0x0000_0C03, "PO OWEN LLC"),
    (0x0000_0C04, "RFPT Co., Ltd."),
    (0x0000_0C05, "Roboteq, Inc."),
    (0x0000_0C06, "Norgren Manufacturing Co., Ltd."),
    (0x0000_0C07, "FarmWise Labs, Inc."),
    (0x0000_0C08, "AŽD Praha s.r.o."),
    (0x0000_0C0A, "Can Man AG"),
    (0x0000_0C0B, "Plustherm Point AG"),
    (0x0000_0C0C, "MinebeaMitsumi Inc."),
    (0x0000_0C0D, "System Level Solutions (India) Pvt. Ltd."),
    (0x0000_0C0E, "EverMAX s.r.o."),
    (0x0000_0C0F, "Maruyama Manufacturing Corporation (DBA Maruyama Chillers Corporation)"),
    (0x0000_0C10, "Han's Laser (Singapore) Pte Ltd"),
    (0x0000_0C11, "Cordova Industrial Integradores S.A. de C.V."),
    (0x0000_0C12, "NAMOO Co., Ltd."),
    (0x0000_0C13, "Blu Technology di Ing Carlo Mauri"),
    (0x0000_0C14, "isel Germany AG"),
    (0x0000_0C15, "UNITEK Industrie Elektronik GmbH"),
    (0x0000_0C16, "Tohan-Engineering Corporation"),
    (0x0000_0C17, "Machine Prognostics AS"),
    (0x0000_0C18, "Avestron Inc."),
    (0x0000_0C19, "AP Systems Co., Ltd."),
    (0x0000_0C1A, "TIAN JIN SUNKE DIGITAL CONTROL TECHNOLOGY CO.,LTD"),
    (0x0000_0C1B, "Robotech Co., Ltd."),
    (0x0000_0C1C, "AccuteX Technologies Co., Ltd."),
    (0x0000_0C1D, "Coherent Mainz (DILAS Diodenlaser GmbH)"),
    (0x0000_0C1E, "Daxta Equipamentos Eletrônicos Indústria e Comércio Ltda"),
    (0x0000_0C20, "ADG Automatisierung Dresden GmbH"),
    (0x0000_0C21, "WHITEvoid GmbH"),
    (0x0000_0C22, "BAS BV"),
    (0x0000_0C23, "RS Elektroniksysteme GmbH"),
    (0x0000_0C25, "HORIBA FuelCon GmbH"),
    (0x0000_0C26, "miCos Iberia S.L."),
    (0x0000_0C27, "Slovak Academy of Sciences, Institute of Electrical Engineering"),
    (0x0000_0C28, "Roketsan A.S."),
    (0x0000_0C29, "Bescom Global Co., Ltd."),
    (0x0000_0C2A, "Magnet-Schultz GmbH & Co. KG"),
    (0x0000_0C2B, "NEWSUBSTANCE Limited"),
    (0x0000_0C2C, "JingQi (Tianjin) Technology Co., Ltd."),
    (0x0000_0C2D, "TSK Prüfsysteme GmbH"),
    (0x0000_0C2E, "Airity Technologies, Inc."),
    (0x0000_0C2F, "EEP Elektro Elektronik Pranjic GmbH"),
    (0x0000_0C30, "MovekoTech Oy"),
    (0x0000_0C31, "Federal State Institution \"Scientific Research Institute for System Analysis of the Russian Academy of Sciences\""),
    (0x0000_0C32, "Nearfield Instruments B.V."),
    (0x0000_0C33, "TÜBITAK BILGEM, National Research Institute of Electronics and Cryptology (UEKAE)"),
    (0x0000_0C34, "Siemens Energy Global GmbH & Co. KG"),
    (0x0000_0C35, "progress Maschinen & Automation AG"),
    (0x0000_0C36, "Heliotis AG"),
    (0x0000_0C37, "Strong Plus Technology GmbH"),
    (0x0000_0C38, "LS Energy Solutions LLC"),
    (0x0000_0C39, "Yaskawa Controls Co., Ltd."),
    (0x0000_0C3A, "NOVUSS-Automation GmbH"),
    (0x0000_0C3C, "Sanwa Engineering Corp."),
    (0x0000_0C3D, "WIBOND Informationssysteme GmbH"),
    (0x0000_0C3E, "MSP, a division of TSI Inc."),
    (0x0000_0C3F, "Wuxi Xinchang Electronic Technology Co., Ltd."),
    (0x0000_0C40, "NDK Semiconductor Co., Ltd."),
    (0x0000_0C41, "MS Ultraschall Technologie GmbH"),
    (0x0000_0C42, "Korea University of Technology and Education (KOREATECH)"),
    (0x0000_0C43, "Accelerated Software Engineering Ltd."),
    (0x0000_0C44, "Shenzhen Instar Electromechanical Technology Development Co., Ltd."),
    (0x0000_0C45, "Redler Technologies Ltd."),
    (0x0000_0C46, "NPOOO \"Sital\""),
    (0x0000_0C47, "Eaton Corporation"),
    (0x0000_0C48, "Techservo (Shenzhen) Co., Ltd."),
    (0x0000_0C49, "Fabmatics GmbH"),
    (0x0000_0C4A, "Sasaki Sekkei Co., Ltd."),
    (0x0000_0C4B, "Löhnert Elektronik GmbH"),
    (0x0000_0C4C, "Vendée Concept SA"),
    (0x0000_0C4D, "Nobleo Technology Holding BV"),
    (0x0000_0C4E, "ECI Technology, Inc."),
    (0x0000_0C4F, "Linus G Productions GmbH"),
    (0x0000_0C50, "PCB Elektronik San. Ve Tic. Ltd. Sti."),
    (0x0000_0C51, "Omron Scientific Technologies, Inc."),
    (0x0000_0C52, "Engineered Arts Limited"),
    (0x0000_0C53, "NASA Jet Propulsion Laboratory"),
    (0x0000_0C54, "Accelovant Technologies Corporation"),
    (0x0000_0C55, "Hirata Corporation"),
    (0x0000_0C56, "Fujian Nebula Electronics Co.,Ltd."),
    (0x0000_0C58, "CYSCO Co., Ltd."),
    (0x0000_0C59, "Esko-Graphics Kongsberg AS"),
    (0x0000_0C5A, "WOT Co.,Ltd."),
    (0x0000_0C5C, "SHENZHEN SENMUN ELECTRICAL CO.,LTD"),
    (0x0000_0C5D, "Izhprest Ltd."),
    (0x0000_0C5E, "HAWE Hydraulik SE"),
    (0x0000_0C5F, "Finetech GmbH & Co. KG"),
    (0x0000_0C60, "Mitutoyo Corporation"),
    (0x0000_0C61, "Cremer Speciaalmachines B.V."),
    (0x0000_0C62, "Astec Co., Ltd."),
    (0x0000_0C64, "ELNA LTD."),
    (0x0000_0C65, "Janasi Industries Ltd."),
    (0x0000_0C66, "Universidad de La Frontera, Facultad de Ingeniería y Ciencias, Centro de Modelación y Computación Científica (CEMCC)"),
    (0x0000_0C67, "KALEJA GmbH"),
    (0x0000_0C68, "Caldwell Machines & Tools (CMT Engineering)"),
    (0x0000_0C69, "ILJIN Global Holdings Co., Ltd."),
    (0x0000_0C6A, "Proteus Vietnam Limited"),
    (0x0000_0C6C, "JUKI CORPORATION"),
    (0x0000_0C6D, "MT Drive & Control (Shenzhen) Co.,Ltd"),
    (0x0000_0C6E, "ShenZhen HongChuangXing Motion Technology Co.,Ltd"),
    (0x0000_0C6F, "isMedia Co., Ltd."),
    (0x0000_0C70, "Shenzhen Yangshun Tongda Digital Technology Co., Ltd."),
    (0x0000_0C71, "MVTECH Co.,Ltd."),
    (0x0000_0C72, "Kane Terry Partridge dba Open Designer"),
    (0x0000_0C73, "EK-Electronics GmbH"),
    (0x0000_0C74, "Jiann Sheng Machinery & Electric Industrial Co., Ltd"),
    (0x0000_0C75, "Gable Systems B.V."),
    (0x0000_0C76, "Constructions-3D SAS"),
    (0x0000_0C77, "MIP robotics"),
    (0x0000_0C78, "YouTool Automation Co., Ltd."),
    (0x0000_0C79, "Nanjing WEILAN Intelligent Technologies Co., Ltd."),
    (0x0000_0C7A, "ABB S.p.A."),
    (0x0000_0C7B, "Typhoon HIL Inc."),
    (0x0000_0C7C, "BLUTek Inc."),
    (0x0000_0C7D, "University of Engineering and Technology, Lahore, Al-Khwarizmi Institute of Computer Science, Human-Centered Robotics Lab"),
    (0x0000_0C7E, "Technische Universität München, Fakultät für Informatik, Lehrstuhl für Robotik, Künstliche Intelligenz und Echtzeitsysteme (Informatik 6)"),
    (0x0000_0C7F, "Northrop Grumman Sperry Marine B.V., German Branch"),
    (0x0000_0C80, "Technical University of Munich, Department of Electrical and Computer Engineering, Institute for Cognitive Systems (ICS)"),
    (0x0000_0C81, "TNO"),
    (0x0000_0C82, "IK Electronic Manufacturing Services S.L.U"),
    (0x0000_0C83, "Ningbo Schleicher Technology Group Co., Ltd."),
    (0x0000_0C84, "TOWA Corporation"),
    (0x0000_0C85, "Amacker Automation"),
    (0x0000_0C86, "Hardt B.V."),
    (0x0000_0C87, "Anurichip System Inc."),
    (0x0000_0C88, "MESCO Engineering GmbH"),
    (0x0000_0C89, "Oki Electric Industry Co., Ltd."),
    (0x0000_0C8A, "Motorsports Electronics, LLC"),
    (0x0000_0C8B, "PPT Co., Ltd."),
    (0x0000_0C8C, "KYEONGIN TECH Co., Ltd."),
    (0x0000_0C8D, "SAS GYS"),
    (0x0000_0C8E, "Cyber Surgery S.L."),
    (0x0000_0C8F, "CASTEK Mechatron Ind Co., Ltd."),
    (0x0000_0C90, "ERMAKSAN MAKINA SANAYI VE TICARET A.S."),
    (0x0000_0C91, "Elbit Systems Land Ltd."),
    (0x0000_0C93, "Javox Solutions GmbH"),
    (0x0000_0C94, "Resilient Power Systems, Inc."),
    (0x0000_0C95, "CMRO Engineering"),
    (0x0000_0C96, "Teknic, Inc."),
    (0x0000_0C97, "Lug Healthcare Technology S.L."),
    (0x0000_0C98, "Michael Koch GmbH"),
    (0x0000_0C99, "UEC Scientific Instrument Co., Ltd."),
    (0x0000_0C9A, "WEISS GmbH"),
    (0x0000_0C9B, "NITTOSEIKO CO., LTD."),
    (0x0000_0C9C, "WANTS Inc."),
    (0x0000_0C9D, "Tecnosens S.p.A."),
    (0x0000_0C9F, "Print Web International, Inc."),
    (0x0000_0CA0, "FAIR Innovation(Suzhou) Robot System Co.,Ltd."),
    (0x0000_0CA1, "OptiViz Technology, Inc."),
    (0x0000_0CA2, "Shanghai YISU Information Technologies Co.,Ltd."),
    (0x0000_0CA3, "Re S.p.A. Controlli Industriali"),
    (0x0000_0CA4, "Canon Medical Systems Corporation"),
    (0x0000_0CA5, "Suzhou Geyuan Electric Co., Ltd."),
    (0x0000_0CA6, "Shenzhen MICFIND Drive Technology Co., Ltd."),
    (0x0000_0CA7, "SECOM SRL"),
    (0x0000_0CA8, "Panasonic Smart Factory Solutions Co., Ltd."),
    (0x0000_0CA9, "BeiJing Agile Robots Technology Co.,Ltd."),
    (0x0000_0CAB, "Taiwan Innovative Space, Inc."),
    (0x0000_0CAC, "ABB Technikerschule"),
    (0x0000_0CAD, "NOMOS Srl Tecnologie del Software"),
    (0x0000_0CAF, "JSCC AUTOMATION (XIAMEN) LTD."),
    (0x0000_0CB0, "GMVT GmbH"),
    (0x0000_0CB1, "Swisslog AG"),
    (0x0000_0CB2, "Therm-x of California Inc."),
    (0x0000_0CB3, "CogniMade s.r.l."),
    (0x0000_0CB4, "SERT METAL SAS"),
    (0x0000_0CB5, "Kardanan Shargh Co."),
    (0x0000_0CB6, "MPEX ROBOTICS KFT."),
    (0x0000_0CB7, "Critical Link LLC"),
    (0x0000_0CB8, "Flokontrol Endüstriyel Otomasyon San. ve Tic. Koll. Sti."),
    (0x0000_0CB9, "Nidec Avtron Automation Corporation"),
    (0x0000_0CBA, "Alphasystem Co.,Ltd."),
    (0x0000_0CBB, "Carendes BVBA"),
    (0x0000_0CBC, "Eltorque AS"),
    (0x0000_0CBD, "University of Alberta, Faculty of Engineering"),
    (0x0000_0CBE, "TOSIL Systems Private Limited"),
    (0x0000_0CBF, "DELTA I/O CO.,LTD"),
    (0x0000_0CC0, "Sipronika d.o.o."),
    (0x0000_0CC1, "TESA SARL"),
    (0x0000_0CC2, "NXP B.V."),
    (0x0000_0CC3, "HERMOS AG"),
    (0x0000_0CC4, "Svaya Robotics Pvt. Ltd."),
    (0x0000_0CC5, "ARRIVAL LTD."),
    (0x0000_0CC6, "Mold-Masters (2007) Limited"),
    (0x0000_0CC8, "Hypex, d.o.o."),
    (0x0000_0CC9, "Sansei Technologies, Inc."),
    (0x0000_0CCA, "Shanghai United Imaging Healthcare Co., Ltd."),
    (0x0000_0CCB, "Seoul National University"),
    (0x0000_0CCC, "3C MACHINERY CO.,LTD."),
    (0x0000_0CCD, "CHINO CORPORATION"),
    (0x0000_0CCE, "WUHAN MOTUS TECH CO.,LTD."),
    (0x0000_0CCF, "TPC Mechatronics Corp."),
    (0x0000_0CD0, "Philips Medical Systems DMC GmbH"),
    (0x0000_0CD1, "TAZMO Co., Ltd."),
    (0x0000_0CD2, "Robo-Technology GmbH"),
    (0x0000_0CD3, "Vivo Surgical Private Limited"),
    (0x0000_0CD4, "Defence Research and Development Organisation, Research & Development Establishment (Engineers)"),
    (0x0000_0CD5, "Jiangsu Shenzhou Semiconductor Technology Co., Ltd."),
    (0x0000_0CD6, "GrainSoft"),
    (0x0000_0CD7, "MECCAD Sàrl"),
    (0x0000_0CD9, "National Formosa University, Department of Aeronautical Engineering, Innovative Design and Energy Application Lab. (IDEALab)"),
    (0x0000_0CDA, "TOS Inc."),
    (0x0000_0CDB, "GTM Testing and Metrology GmbH"),
    (0x0000_0CDC, "První Signální, a.s."),
    (0x0000_0CDD, "Georgia Institute of Technology, ECE Department, Center for Distributed Energy (CDE)"),
    (0x0000_0CDE, "Plexim GmbH"),
    (0x0000_0CDF, "Automation Industrial, Inc."),
    (0x0000_0CE0, "Regloplas AG"),
    (0x0000_0CE1, "Azureus Solutions Ltd"),
    (0x0000_0CE2, "Safran Electronics & Defense SAS"),
    (0x0000_0CE3, "Sogeti Nederland B.V."),
    (0x0000_0CE4, "AKRYVIA SAS"),
    (0x0000_0CE5, "FIRSTEC CO.,LTD."),
    (0x0000_0CE6, "M.D. Micro Detectors S.p.A."),
    (0x0000_0CE7, "Dataletics GmbH"),
    (0x0000_0CE8, "Korea Institute of Machinery & Materials, Advanced Manufacturing Systems Research Division, Department of Ultra-Precision Machines and Systems"),
    (0x0000_0CE9, "AEG Identifikationssysteme GmbH"),
    (0x0000_0CEA, "CEA LIST"),
    (0x0000_0CEB, "Shenyang Siasun Digital Drive Co., Ltd."),
    (0x0000_0CEC, "TissUse GmbH"),
    (0x0000_0CED, "LithExx-Systems GmbH"),
    (0x0000_0CEE, "AICRA s.r.o."),
    (0x0000_0CEF, "JANOME Corporation"),
    (0x0000_0CF0, "Cambridge Filter Corporation"),
    (0x0000_0CF2, "Celox Photonics Technology Inc."),
    (0x0000_0CF3, "swissQprint AG"),
    (0x0000_0CF4, "COMFILE Technology INC."),
    (0x0000_0CF5, "Chengdu Vantron Technology Co., Ltd."),
    (0x0000_0CF6, "Duale Hochschule Baden-Württemberg Mannheim, Fakultät Technik, Studiengang Elektrotechnik"),
    (0x0000_0CF7, "Tesollo Inc."),
    (0x0000_0CF8, "Roundpeg Technologies GmbH"),
    (0x0000_0CF9, "Tianjin Research Institute of Electric Science Co.,Ltd."),
    (0x0000_0CFB, "Chicago Flyhouse, Inc."),
    (0x0000_0CFC, "Vectis Drive Inc."),
    (0x0000_0CFD, "IMSTec GmbH"),
    (0x0000_0CFE, "Leibniz Universität Hannover, Fakultät für Elektrotechnik und Informatik, Institut für Antriebssysteme und Leistungselektronik"),
    (0x0000_0CFF, "Coretronic Corporation"),
    (0x0000_0D00, "SOTHIS CIC TECH (Shanghai) Co., Ltd"),
    (0x0000_0D01, "The Manufacturing Technology Centre Limited"),
    (0x0000_0D02, "Tramper Technology B.V."),
    (0x0000_0D03, "Reaction Dynamics Lab Inc."),
    (0x0000_0D04, "Aeoon Technologies GmbH"),
    (0x0000_0D05, "John Deere GmbH & Co. KG, John Deere Werk Mannheim"),
    (0x0000_0D06, "Co.fin Elettronica s.r.l."),
    (0x0000_0D07, "CISWORKS GmbH & Co. KG"),
    (0x0000_0D09, "Lucas-Nülle GmbH"),
    (0x0000_0D0A, "Battelle Memorial Institute"),
    (0x0000_0D0B, "Fine Logic Co., Ltd."),
    (0x0000_0D0C, "PACK'R SAS"),
    (0x0000_0D0D, "HP Indigo Ltd."),
    (0x0000_0D0E, "EMBEDDED SYSTEMS INC. dba ESI MOTION"),
    (0x0000_0D0F, "DEIF A/S"),
    (0x0000_0D10, "CEDRAT TECHNOLOGIES SA"),
    (0x0000_0D12, "Givi Misure S.r.l. a socio unico"),
    (0x0000_0D13, "ZETES Industries S.A."),
    (0x0000_0D14, "Ideaflex sp. z o.o."),
    (0x0000_0D15, "Emsiso d.o.o."),
    (0x0000_0D16, "SysTec Systemtechnik und Industrieautomation GmbH"),
    (0x0000_0D17, "Soehnle Industrial Solutions GmbH"),
    (0x0000_0D18, "Unizen Technologies Pvt. Ltd."),
    (0x0000_0D19, "White Oaks Engineering, LLC"),
    (0x0000_0D1A, "Beijing BiTa Technical Services Co., Ltd."),
    (0x0000_0D1B, "Nordmann GmbH & Co. KG"),
    (0x0000_0D1C, "Seven Metal Corp."),
    (0x0000_0D1D, "Festo Korea Co., Ltd."),
    (0x0000_0D1E, "Hyperspectral Sciences, Inc."),
    (0x0000_0D1F, "AA EDM Corporation"),
    (0x0000_0D20, "Corelase Oy"),
    (0x0000_0D21, "CETHIK Group Co., Ltd"),
    (0x0000_0D22, "LIVSMED, Inc."),
    (0x0000_0D23, "Hochschule München"),
    (0x0000_0D24, "WSA:Automation"),
    (0x0000_0D26, "Universität Stuttgart, Fakultät Konstruktions-, Produktions- und Fahrzeugtechnik, Institut für Systemdynamik"),
    (0x0000_0D27, "AXIOS 3D® Services GmbH"),
    (0x0000_0D28, "CASCINATION AG"),
    (0x0000_0D29, "Kontinent ETS LLC"),
    (0x0000_0D2B, "STXI Motion Ltd."),
    (0x0000_0D2C, "RFHIC Corporation"),
    (0x0000_0D2D, "Technische Universität Wien, Fakultät für Maschinenwesen und Betriebswissenschaften, Institut für Fertigungstechnik und Photonische Technologien"),
    (0x0000_0D2E, "RT Corporation"),
    (0x0000_0D2F, "Automation Controls Group, a Division of Milwaukee Electronics Corporation"),
    (0x0000_0D30, "AIRS Medical Inc."),
    (0x0000_0D31, "Cardinal Scale Manufacturing Company"),
    (0x0000_0D32, "Mehta Cad Cam Systems Pvt. Ltd."),
    (0x0000_0D33, "TWERD Power Electronics"),
    (0x0000_0D34, "Canon Nanotechnologies Inc."),
    (0x0000_0D35, "Karlsruher Institut für Technologie, Fakultät für Elektrotechnik und Informationstechnik, Institut für Elektroenergiesysteme und Hochspannungstechnik"),
    (0x0000_0D36, "Beijing Grand Hitek Co., Ltd."),
    (0x0000_0D38, "Y2 Corporation"),
    (0x0000_0D39, "Posts and Telecommunications Institute of Technology, Ho Chi Minh City (PTIT-HCM), Electronics 2 Department, Automatic Control Division"),
    (0x0000_0D3A, "RoPeM Solution Co., Ltd."),
    (0x0000_0D3B, "SEPION TECHNOLOGY INC."),
    (0x0000_0D3C, "TRUMPF Lasersystems for Semiconductor Manufacturing GmbH"),
    (0x0000_0D3D, "Sagentia Limited"),
    (0x0000_0D3F, "ColorPartner GmbH"),
    (0x0000_0D40, "Dongguan embedfire Electronic Technology Co., Ltd."),
    (0x0000_0D41, "Cell-Vit Co., Ltd."),
    (0x0000_0D42, "East China University of Science and Technology, School of Chemistry and Molecular Engineering, Nanopore Single Molecule Detection Laboratory"),
    (0x0000_0D43, "Vanwyk Systems B.V."),
    (0x0000_0D44, "NGK INSULATORS, LTD."),
    (0x0000_0D45, "NIHON KOSHUHA Co., Ltd."),
    (0x0000_0D46, "HEMERIA SAS"),
    (0x0000_0D47, "Qmax Systems India Pvt. Ltd."),
    (0x0000_0D48, "TENDLY ENTERPRISES CO., LTD."),
    (0x0000_0D49, "Chenghuan Technology (Shenzhen) Co., Ltd."),
    (0x0000_0D4A, "Shanghai Weihong Automation Technology Co., Ltd."),
    (0x0000_0D4B, "Uster Technologies (China) Co., Ltd."),
    (0x0000_0D4C, "MGI Tech Co., Ltd."),
    (0x0000_0D4D, "KELI MOTOR GROUP CO., LTD."),
    (0x0000_0D4E, "Carlo Gavazzi Ltd. (Malta)"),
    (0x0000_0D50, "Optiflux NV"),
    (0x0000_0D51, "Mistral Solutions Pvt. Ltd."),
    (0x0000_0D52, "Fraunhofer-Institut für Windenergiesysteme IWES"),
    (0x0000_0D53, "Enekom Enerji Bilisim ve Muhendislik San Tic A.S."),
    (0x0000_0D54, "MASEP Medical Science & Technology Development (Shenzhen) Co., Ltd."),
    (0x0000_0D55, "Shenzhen Soogeen Electronics Co., LTD."),
    (0x0000_0D56, "UJin Technology, Inc."),
    (0x0000_0D57, "TOSEI SYSTEMS CO., LTD."),
    (0x0000_0D58, "TAIYO, LTD."),
    (0x0000_0D59, "Alloc Corporation"),
    (0x0000_0D5A, "WaferPath, Inc."),
    (0x0000_0D5B, "Genesis Dimensions LLC"),
    (0x0000_0D5C, "Zhuhai Tai-Action Electronics Co., Ltd."),
    (0x0000_0D5D, "JSC Diakont"),
    (0x0000_0D5E, "SCHNEKON Automation (Shanghai) Co.,Ltd."),
    (0x0000_0D5F, "NSI-MI Technologies LLC"),
    (0x0000_0D60, "JD Squared, Inc."),
    (0x0000_0D61, "Sanctuary Cognitive Systems Corporation"),
    (0x0000_0D62, "NICEMACH CO., LTD."),
    (0x0000_0D63, "ERTURK MAKINE SAN TIC. LTD. STI"),
    (0x0000_0D64, "Surgnova Healthcare Technologies (Beijing) Co., Ltd."),
    (0x0000_0D65, "soniKKs® Ultrasonics Technology GmbH"),
    (0x0000_0D66, "NBB Controls + Components GmbH"),
    (0x0000_0D68, "OOO \"NPP Mera\""),
    (0x0000_0D69, "Poulten Selfe & Lee Ltd"),
    (0x0000_0D6A, "Monolithic Power Systems, Inc."),
    (0x0000_0D6B, "UK Atomic Energy Authority, RACE"),
    (0x0000_0D6C, "PULS GmbH"),
    (0x0000_0D6D, "FUGEN CO., LTD"),
    (0x0000_0D6E, "coboworx GmbH"),
    (0x0000_0D6F, "A&D Company, Limited"),
    (0x0000_0D70, "JOOWON TECHNOLOGY Co., Ltd."),
    (0x0000_0D71, "ODC Co., Ltd."),
    (0x0000_0D72, "Asyril SA"),
    (0x0000_0D73, "Robotics Robotics (Shenzhen) Ltd."),
    (0x0000_0D74, "Automated Precision Inc."),
    (0x0000_0D75, "Özyegin University, Faculty of Engineering, Department of Mechanical Engineering, Robotics Laboratory"),
    (0x0000_0D76, "Fujikura Ltd."),
    (0x0000_0D77, "Relativity Space, Inc."),
    (0x0000_0D78, "Hangzhou Core Control Robotics CO.,LTD"),
    (0x0000_0D79, "Beijing Shangcon Intelligent Technology Co., Ltd."),
    (0x0000_0D7A, "Panasonic Advanced Technology Development Co.,Ltd."),
    (0x0000_0D7B, "Philips Electronics Nederland B.V., Philips Engineering Solutions"),
    (0x0000_0D7C, "Emoco Labs AB"),
    (0x0000_0D7D, "Otto Heuss GmbH"),
    (0x0000_0D7F, "PRAUCON"),
    (0x0000_0D80, "Ashby Microsystems Ltd"),
    (0x0000_0D81, "Suzhou Veichi Electric Co., Ltd"),
    (0x0000_0D82, "SCAME SISTEMI S.R.L."),
    (0x0000_0D83, "J.M. Voith SE & Co KG"),
    (0x0000_0D84, "Sier Motor (Dongguan) Co., Ltd."),
    (0x0000_0D85, "Shanghai Wingbow Precision Technology Co.,Ltd."),
    (0x0000_0D86, "Mertech Elektronik Arge Sanayi ve Ticaret Anonim Sirketi"),
    (0x0000_0D87, "Summa nv"),
    (0x0000_0D88, "Bucher Hydraulics AG Frutigen"),
    (0x0000_0D89, "Pulse Structural Monitoring Ltd"),
    (0x0000_0D8A, "Sanovo Technology Netherlands B.V."),
    (0x0000_0D8B, "ACCRETECH POWERTRO SYSTEM CO., LTD."),
    (0x0000_0D8C, "TOYOTA INDUSTRIES CORPORATION"),
    (0x0000_0D8D, "KOEM CO., LTD."),
    (0x0000_0D8E, "Beijing NAURA Microelectronics Equipment Co., Ltd."),
    (0x0000_0D8F, "NEXT Prototypes e.V."),
    (0x0000_0D90, "Ningbo Advance Automation Technology Co.,Ltd."),
    (0x0000_0D91, "TRUMPF Laser GmbH"),
    (0x0000_0D92, "Asensus Surgical, Inc."),
    (0x0000_0D93, "Exluce Inc."),
    (0x0000_0D94, "Computer Gesteuerte Systeme GmbH"),
    (0x0000_0D95, "ALSTOM Belgium SA"),
    (0x0000_0D96, "HG-Tronik"),
    (0x0000_0D97, "HAFNER Pneumatika Kft."),
    (0x0000_0D98, "Intigia S.L."),
    (0x0000_0D99, "Next Generation Rail Technologies S.L."),
    (0x0000_0D9A, "APEX Semiconductors (USA) Co., Ltd."),
    (0x0000_0D9B, "True Velocity Ammunition, LLC"),
    (0x0000_0D9C, "Anderson Electric Controls, Inc."),
    (0x0000_0D9E, "Exonetik Inc."),
    (0x0000_0D9F, "R&D Test Systems A/S"),
    (0x0000_0DA0, "SDP (Shanghai) Industrial Corporation Ltd."),
    (0x0000_0DA1, "NOVASEN Co., Ltd."),
    (0x0000_0DA2, "RTDS Technologies Inc."),
    (0x0000_0DA3, "CPI Vertex Antennentechnik GmbH"),
    (0x0000_0DA4, "Eindhoven Medical Robotics B.V."),
    (0x0000_0DA5, "QEI Corporation"),
    (0x0000_0DA6, "Reliste Ges.m.b.H."),
    (0x0000_0DA8, "PostProcess Technologies, Inc."),
    (0x0000_0DA9, "SEcontrol Automation (Shanghai) Co., Ltd."),
    (0x0000_0DAA, "Phoenix Contact Asia-Pacific (Nanjing) Co., Ltd."),
    (0x0000_0DAB, "Heal Force Huayao Biological Technology (Shanghai) Co., Ltd"),
    (0x0000_0DAC, "Spellman High Voltage Electronics Ltd."),
    (0x0000_0DAD, "Wipro GE Healthcare Private Limited"),
    (0x0000_0DAE, "KOFLOC Corp."),
    (0x0000_0DAF, "Niryo SAS"),
    (0x0000_0DB0, "Friedrich Maschinen- und Werkzeugbau GmbH"),
    (0x0000_0DB1, "Togatec Sàrl"),
    (0x0000_0DB2, "EDAG Engineering GmbH"),
    (0x0000_0DB3, "Arius Technology Inc."),
    (0x0000_0DB4, "ROKKO SYSTEMS PTE LTD"),
    (0x0000_0DB5, "Novotechnik Messwertaufnehmer OHG"),
    (0x0000_0DB6, "Shanghai Chenzhu Instrument Co.,LTD"),
    (0x0000_0DB7, "Yantai Free Intelligent Equipment Co.,Ltd."),
    (0x0000_0DB8, "The University of Newcastle, College of Engineering Science and Environment, School of Engineering"),
    (0x0000_0DB9, "California Polytechnic State University, College of Engineering, Computer Engineering Department"),
    (0x0000_0DBA, "PRACTEK Technology Co., Ltd."),
    (0x0000_0DBC, "Ningbo Longtai Medical Technology Co., Ltd."),
    (0x0000_0DBD, "Fülling & Partner Ingenieurgesellschaft mbH"),
    (0x0000_0DBE, "TechMagic, Inc."),
    (0x0000_0DBF, "Bagtech International Pty Ltd"),
    (0x0000_0DC0, "DCO Systems Ltd"),
    (0x0000_0DC1, "Shenzhen Pengxing Intelligence Research Co., Ltd."),
    (0x0000_0DC2, "Sunny Instruments Singapore Pte Ltd"),
    (0x0000_0DC3, "Tokyo Denki University, School of Science and Technology for Future Life, Department of Robotics and Mechatronics"),
    (0x0000_0DC4, "RMD Engineering Inc."),
    (0x0000_0DC5, "Ganzhou Zhongke TOYODA Intelligent Equipment Technology Co., Ltd."),
    (0x0000_0DC6, "&Feurer Automation AG"),
    (0x0000_0DC8, "PLC2 Design GmbH"),
    (0x0000_0DC9, "Elesa S.p.A."),
    (0x0000_0DCA, "SHENYANG KING CAREER TECHNOLOGY CO.,LTD."),
    (0x0000_0DCB, "NexCOBOT Taiwan Co., Ltd."),
    (0x0000_0DCC, "HOERBIGER Flow Control GmbH"),
    (0x0000_0DCE, "KRONO-SAFE, SAS"),
    (0x0000_0DCF, "Merz Maschinenfabrik GmbH"),
    (0x0000_0DD0, "EKS InTec GmbH"),
    (0x0000_0DD1, "HiSilicon (Shanghai) Technologies Co., Ltd."),
    (0x0000_0DD2, "Jiangsu JITRI Sioux Technologies Co.,Ltd."),
    (0x0000_0DD3, "ConTeK, spol. s.r.o."),
    (0x0000_0DD4, "Dr. Hubert GmbH"),
    (0x0000_0DD5, "DELTATEC s.a."),
    (0x0000_0DD6, "ShangHai LeiTong Technology Center Co., Ltd."),
    (0x0000_0DD7, "Shanghai Xinrui Drive Technology Co., Ltd."),
    (0x0000_0DD8, "Macnica Galaxy International Limited"),
    (0x0000_0DDA, "PICODE Corp."),
    (0x0000_0DDB, "VGD Engineering Ltd."),
    (0x0000_0DDC, "WIRobotics Inc."),
    (0x0000_0DDD, "Xingyu Electron (NINGBO) Co.,Ltd."),
    (0x0000_0DDE, "Yamaki Electric Corporation"),
    (0x0000_0DDF, "MST Co., Ltd."),
    (0x0000_0DE0, "Brinkmann Electronic Berlin GmbH"),
    (0x0000_0DE1, "Mazor Robotics Ltd."),
    (0x0000_0DE2, "Center for Power Electronics and Drives"),
    (0x0000_0DE3, "SINTEF Energi AS"),
    (0x0000_0DE4, "Suzhou ST-Intelligence Technology Co., Ltd."),
    (0x0000_0DE5, "GEFASOFT Automatisierung und Software GmbH Regensburg"),
    (0x0000_0DE6, "Shenzhen AS-AI Technology Co., Ltd."),
    (0x0000_0DE7, "Shenzhen Beilai Technology Co.,Ltd"),
    (0x0000_0DE8, "PETER HIRT GmbH"),
    (0x0000_0DE9, "ADTEC Technology Inc."),
    (0x0000_0DEA, "SEMICS Inc."),
    (0x0000_0DEB, "Digitronik Labs Inc."),
    (0x0000_0DEC, "University of Denver, Ritchie School of Engineering and Computer Science, Department of Mechanical and Materials Engineering, Robotics, Locomotion, and Control Lab"),
    (0x0000_0DED, "Capto UG (haftungsbeschränkt)"),
    (0x0000_0DEE, "DST Dräxlmaier Systemtechnik GmbH"),
    (0x0000_0DEF, "Rototest International AB"),
    (0x0000_0DF0, "Shenzhen DH-Robotics Technology Co.,Ltd."),
    (0x0000_0DF1, "Centre Suisse d'Electronique et de Microtechnique"),
    (0x0000_0DF2, "DIGALOG Industrie-Mikroelektronik GmbH"),
    (0x0000_0DF3, "Gevasol Feedback Technologies Ltd."),
    (0x0000_0DF4, "Jiangsu Gtake Electric Co., Ltd."),
    (0x0000_0DF5, "Thermo Fisher Scientific Inc."),
    (0x0000_0DF6, "Stony MicroWorks LTD"),
    (0x0000_0DF8, "Shanghai Tayor Heavy Industry(Group) Co., Ltd."),
    (0x0000_0DF9, "Heartland.Data Inc."),
    (0x0000_0DFA, "FLSmidth Pfister GmbH"),
    (0x0000_0DFB, "Viscom AG"),
    (0x0000_0DFC, "Toyo Label Co., Ltd."),
    (0x0000_0DFD, "Harbin Intelligent Surgery Equipment Co.,Ltd."),
    (0x0000_0DFE, "TGA Industries Limited"),
    (0x0000_0E00, "Phase 1 Engineering, LLC"),
    (0x0000_0E01, "EGON HARIG GmbH"),
    (0x0000_0E02, "I.A.S.G. Kereskedelmi és Szolgáltató Kft."),
    (0x0000_0E03, "MONS University, Faculty of Engineering, Department of Electromagnetism and Telecommunications"),
    (0x0000_0E07, "SUPREME INTELLIGENT TECHNOLOGY CO.,LTD"),
    (0x0000_0E88, "Four Technos Co., Ltd."),
    (0x0000_0EC5, "E.C.S. Sistemi Elettronici S.p.A"),
    (0x0000_0ECD, "Dürr Systems AG"),
    (0x0000_0EED, "Eagle Wing Design"),
    (0x0000_0EEE, "Espotel Oy"),
    (0x0000_0EFA, "Foshan Zhiang Technology Co., Ltd."),
    (0x0000_0EFF, "FUZHOU FU CHANG WECON ELECTRONIC TECHNOLOGY CO., LTD"),
    (0x0000_0F0B, "Distalmotion SA"),
    (0x0000_0F1A, "FIAtec GmbH"),
    (0x0000_0F71, "JAY Electronique S.A.S."),
    (0x0000_0FA0, "KOCH Pac-Systeme GmbH"),
    (0x0000_0FAE, "Arrow (China) Electronics Trading Co. Ltd., Shenzhen Branch"),
    (0x0000_0FCA, "Flowsoft Co., Ltd."),
    (0x0000_0FCE, "KIKUSUI ELECTRONICS CORP."),
    (0x0000_0FEE, "Camera Positioning Systems Inc"),
    (0x0000_0FFA, "PineSolution Co., Ltd."),
    (0x0000_0FFE, "Atel Corp."),
    (0x0000_0FFF, "ZEROSYSTEM CO,LTD"),
    (0x0000_1000, "Motiv Robotics, Inc."),
    (0x0000_1001, "Ray-Links (Beijing) Technologies Co., Ltd."),
    (0x0000_1008, "Rheinmetall Canada Inc."),
    (0x0000_1009, "Smart Buildings BVBA"),
    (0x0000_1010, "NEXTW Technology CO., LTD."),
    (0x0000_1018, "GZ Photonics Technology Co., Ltd."),
    (0x0000_1024, "Jcast Networks Korea, Inc."),
    (0x0000_102B, "Matrox Electronic Systems Ltd."),
    (0x0000_103B, "VELTRU AG"),
    (0x0000_1048, "Shibaura Machine Co., Ltd."),
    (0x0000_10FA, "Beijing BBF Servo Technology Co.,Ltd."),
    (0x0000_1110, "A-KYUNG Motion Inc."),
    (0x0000_1111, "MLS Lanny GmbH"),
    (0x0000_1122, "CanTops"),
    (0x0000_1132, "FERAG AG"),
    (0x0000_115C, "YASKAWA Europe GmbH"),
    (0x0000_115F, "K-TRONIC S.r.l"),
    (0x0000_1191, "Techno Create, Inc."),
    (0x0000_1204, "EAST Group Co., Ltd."),
    (0x0000_1219, "Contexa SA"),
    (0x0000_12A5, "i2A Systems Co., Ltd."),
    (0x0000_12AD, "VIVAVIS AG"),
    (0x0000_1337, "rt-labs AB"),
    (0x0000_1357, "Cosmo Instruments Co.,Ltd."),
    (0x0000_13FE, "Advantech Co., Ltd."),
    (0x0000_1430, "ChengDu HiCNC Equipment Co., Ltd."),
    (0x0000_144A, "ADLINK TECHNOLOGY INC."),
    (0x0000_147A, "eubus GmbH"),
    (0x0000_14FF, "Precise Automation, Inc."),
    (0x0000_1502, "Unico Inc."),
    (0x0000_150E, "Ono Sokki Co. Ltd."),
    (0x0000_1521, "CHIKO AIRTEC CO., LTD."),
    (0x0000_1582, "TRsystems GmbH"),
    (0x0000_1600, "Helmholtz-Zentrum Dresden-Rossendorf e.V."),
    (0x0000_1616, "DLR Deutsches Zentrum für Luft- und Raumfahrt e.V."),
    (0x0000_1619, "Kyoto Denkiki Co.,Ltd."),
    (0x0000_166D, "YXLON International GmbH"),
    (0x0000_1688, "Shanghai Allinmodule Intelligence Co., Ltd"),
    (0x0000_1701, "PLR Prüftechnik Linke & Rühe GmbH"),
    (0x0000_1729, "TOSHIBA MACHINE (CHENNAI) PVT. LTD."),
    (0x0000_177A, "NanJing Aegis-Iron Technology Co., Ltd."),
    (0x0000_1799, "K-one Co., Ltd."),
    (0x0000_179A, "Haute Ecole d'Ingénierie et de Gestion du Canton de Vaud du Canton de Vaud"),
    (0x0000_1800, "TAMAGAWA SEIKI CO.,LTD."),
    (0x0000_1809, "LLC «DOMINANTA-STAGE»"),
    (0x0000_1810, "L & S Electric, Inc."),
    (0x0000_1818, "Fujian Huafeng New Materials Co. Ltd."),
    (0x0000_1848, "Keysight Technologies Deutschland GmbH"),
    (0x0000_1899, "Hagenuk Marinekommunikation GmbH"),
    (0x0000_1919, "SACMI IMOLA S.C."),
    (0x0000_1946, "AMADA Co., Ltd."),
    (0x0000_1962, "Tomsk State University of Control Systems and Radioelectronics, Institute of Innovations"),
    (0x0000_1980, "HANMI Semiconductor Co., Ltd."),
    (0x0000_1984, "LAUMAS Elettronica s.r.l."),
    (0x0000_1987, "DINA Elektronik GmbH"),
    (0x0000_1991, "Shenzhen Samkoon Technology Co., Ltd."),
    (0x0000_1993, "PushCorp, Inc."),
    (0x0000_1997, "MEDICAL TECHNOLOGIES Ltd"),
    (0x0000_1A05, "SYN-TEK Automation Co., Ltd."),
    (0x0000_1A21, "BySTORM & CO. srl"),
    (0x0000_1A85, "Michel Van de Wiele NV"),
    (0x0000_1A90, "IPETRONIK GmbH & Co. KG"),
    (0x0000_1B2C, "Opal-RT Technologies, Inc."),
    (0x0000_1B66, "Sennheiser electronic GmbH & Co. KG"),
    (0x0000_2000, "Motiv Space Systems, Inc."),
    (0x0000_2001, "Nextec Technologies 2001 Ltd."),
    (0x0000_2010, "Shenzhen Xhorse Electronics Co., Ltd."),
    (0x0000_2018, "Thermo Fisher Scientific (Bremen) GmbH"),
    (0x0000_2019, "Komito Bleu BVBA"),
    (0x0000_21DE, "Rüthi Electronic AG"),
    (0x0000_2055, "Bristol Robotics Laboratory"),
    (0x0000_205E, "HyVISION SYSTEM Inc."),
    (0x0000_2103, "ASE Co., Ltd."),
    (0x0000_2186, "Sobal Corporation"),
    (0x0000_21C1, "ATSENSE INC."),
    (0x0000_22CD, "Kinova Inc."),
    (0x0000_22D2, "Synapticon GmbH"),
    (0x0000_2304, "DANIELI AUTOMATION SPA"),
    (0x0000_2380, "Nanjing SCIYON Automation Group Co., Ltd."),
    (0x0000_2501, "EO Technics Co., Ltd."),
    (0x0000_2518, "KUBO Technologies LLC"),
    (0x0000_2631, "MICROPAP ENGINEERING SL"),
    (0x0000_266D, "Comet AG"),
    (0x0000_2727, "Altra Industrial Motion do Brasil Equipamentos Industriais LTDA"),
    (0x0000_276A, "Shenzhen SuperFar lntelligent Control Technology Co.,LTD."),
    (0x0000_27AB, "Rollmann Elektronik"),
    (0x0000_2838, "burster präzisionsmesstechnik gmbh & co kg"),
    (0x0000_2888, "TCOS System Sdn Bhd"),
    (0x0000_2939, "Zaber Technologies Inc."),
    (0x0000_2AA8, "NiniX Technologies NV"),
    (0x0000_2ECC, "PSK Inc."),
    (0x0000_30E0, "DotLine GmbH"),
    (0x0000_31CF, "Schleißheimer Soft- und Hardwareentwicklung GmbH"),
    (0x0000_3333, "Protokit Robotics Pty Ltd"),
    (0x0000_3388, "MEIJI ELECTRIC INDUSTRIES CO., LTD."),
    (0x0000_33AA, "Sanlab Yazilim Arastirma Gelistirme Enerji Mühendislik San. ve Tic. Ltd. Sti"),
    (0x0000_33C3, "MatrixGroup (CMS) Pty Ltd"),
    (0x0000_3443, "4C Electronics Limited"),
    (0x0000_3508, "PURPOSE CO., LTD"),
    (0x0000_3610, "eProLinkTek Co., Ltd."),
    (0x0000_3777, "UBI, Inc."),
    (0x0000_4000, "Automotive Parts and Accessory Systems (APAS) R&D Centre"),
    (0x0000_4100, "Fusion Information Technology Co., Ltd."),
    (0x0000_4123, "University of Basel, Faculty of Medicine"),
    (0x0000_4150, "Korea Advanced Institute of Science and Technology, College of Engineering, Department of Mechanical Engineering, Robotics & Artificial Intelligence Lab"),
    (0x0000_4154, "acontis technologies GmbH"),
    (0x0000_4301, "Ocean Optics, Inc."),
    (0x0000_4321, "Leadshine Technology Co., Ltd."),
    (0x0000_434D, "Columbus McKinnon Corporation"),
    (0x0000_4351, "OPCsoft Co., Ltd."),
    (0x0000_4441, "Myostat Motion Control Inc."),
    (0x0000_4553, "Energy Support Corporation"),
    (0x0000_4567, "Shanghai University"),
    (0x0000_4604, "Budker Institute of Nuclear Physics of Siberian Branch Russian Academy of Sciences (BINP SB RAS)"),
    (0x0000_4654, "FUKOKU TOKAI Co., Ltd."),
    (0x0000_4685, "Sandensha Co., Ltd."),
    (0x0000_4711, "FRABA B.V."),
    (0x0000_4752, "Generic Robotics Limited"),
    (0x0000_4957, "INTERWORKS Co., Ltd."),
    (0x0000_4B41, "Kratzer Automation AG"),
    (0x0000_4D43, "SKS Control OY"),
    (0x0000_4D50, "Max-Planck-Institut für extraterestrische Physik"),
    (0x0000_4D63, "MAGICS Instruments NV"),
    (0x0000_5050, "TSUZUKI DENKI CO., LTD"),
    (0x0000_5053, "PRESTOSOLUTION Ltd."),
    (0x0000_5071, "COTS Technology Co., Ltd."),
    (0x0000_5100, "WOORI Technology Inc."),
    (0x0000_5146, "Ningbo Qifan Automation Technology Co., LTD"),
    (0x0000_5244, "Desird Tasarim Arge Uygulama Elektronik Destek Ithalat Ihracat San. ve Tic. Ltd. Sti."),
    (0x0000_5257, "Rösch & Walter Industrie-Elektronik GmbH"),
    (0x0000_5341, "SOHOAID Corporation"),
    (0x0000_5368, "WUHAN SHARE AUTOMATION TECHNOLOGY CO.,LTD"),
    (0x0000_5549, "Genius Technology Co., Ltd."),
    (0x0000_5858, "Shenyang REDTECH Electric Co., Ltd."),
    (0x0000_5995, "Kristl, Seibt & Co GmbH"),
    (0x0000_5F0A, "Technische Universität Darmstadt, Fachgebiet Elektrotechnik und Informationstechnik"),
    (0x0000_5F5F, "Maurizio Ferraris (dba Studio Ferraris)"),
    (0x0000_6084, "Gerber Technology Inc."),
    (0x0000_60C8, "KUKA Deutschland GmbH"),
    (0x0000_60CB, "Hitachi Zosen Corporation, Precision Machinery Headquarters, Electronic Control Business Unit"),
    (0x0000_6100, "Kurvatur A/S"),
    (0x0000_6145, "Shenzhen Huanan Numerical Control System Co., Ltd."),
    (0x0000_6339, "SINTOKOGIO, LTD."),
    (0x0000_6432, "Beijing Jingwei Hirain Technologies Co.,Ltd."),
    (0x0000_6482, "YUSHIN PRECISION EQUIPMENT CO., LTD."),
    (0x0000_6500, "Triductor Technology(Suzhou), Inc"),
    (0x0000_6666, "Qingdao Technological University, College of Mechanical Engineering"),
    (0x0000_6688, "Gsolar Power Co., Ltd."),
    (0x0000_6741, "NIPPON SIGNAL CO.,LTD."),
    (0x0000_6789, "University of Electronic Science and Technology of China"),
    (0x0000_6888, "Shenzhen Hayhon Equipment Technologies Co., LTD"),
    (0x0000_6889, "JKControl Co., Ltd."),
    (0x0000_6A64, "Beijing Jingdiao Co., Ltd."),
    (0x0000_6A6B, "JK Robots Co., Ltd."),
    (0x0000_6C78, "N.A.T. GmbH"),
    (0x0000_7071, "Thermal Dynamics Oy"),
    (0x0000_7073, "Mahr GmbH"),
    (0x0000_7170, "Hyundai Robotics Co., Ltd."),
    (0x0000_7203, "TOYOTA MOTOR CORPORATION"),
    (0x0000_7217, "YunKe Intelligent Servo Control Technology Co.,Ltd."),
    (0x0000_7220, "Shenyang Machine Tool(Group) Research & Design Institute Co,Ltd. Shanghai Branch"),
    (0x0000_7595, "LS Mecapion Co., Ltd."),
    (0x0000_7604, "ONTEC CO., LTD"),
    (0x0000_7680, "HUNAN SUPER INFORMATION CO., LTD"),
    (0x0000_7684, "LOGTICS Inc."),
    (0x0000_7715, "Foxnum Technology Co., Ltd."),
    (0x0000_7716, "Kyoei Electronics Co., Ltd."),
    (0x0000_7777, "Sheltronics Control Systems Private Limited"),
    (0x0000_7880, "NISSIN SYSTEMS Co., Ltd."),
    (0x0000_7978, "Junchuang (Xiamen) Automation Technology Co., Ltd."),
    (0x0000_7A17, "Tait Towers Manufacturing, LLC"),
    (0x0000_7EC5, "tec5 AG"),
    (0x0000_8027, "Tech Mahindra Ltd."),
    (0x0000_8086, "Intel Corporation"),
    (0x0000_8281, "China Electric Power Research Institute (CEPRI)"),
    (0x0000_8421, "Raonwoori Technology"),
    (0x0000_8484, "PHOENIX CONTACT Power Supplies GmbH"),
    (0x0000_8562, "Brother Industries Ltd."),
    (0x0000_8632, "Shenzhen Anicetech Automation Company Limited"),
    (0x0000_8800, "Akribis Systems Pte Ltd"),
    (0x0000_8818, "Shenyang Machine Tool(Group) Research & Design Institute, Shanghai Branch"),
    (0x0000_8866, "Shanghai DOYEE CNC Technology Co., Ltd."),
    (0x0000_8888, "Changzhou Lead-Motion Intelligent Technology Co., Ltd."),
    (0x0000_88F6, "Harbin Institute of Technology ShenZhen Graduate School"),
    (0x0000_88FA, "SIGMATEK GmbH & Co. KG"),
    (0x0000_8900, "Genesis Systems, IPG Photonics Company"),
    (0x0000_8909, "AIXTRON SE"),
    (0x0000_8A8C, "Zhejiang Sci-Tech University, School of Mechanical Engineering and Automation"),
    (0x0000_9300, "Shotover Camera Systems LP"),
    (0x0000_9320, "Saurer AG, Zweigniederlassung Arbon"),
    (0x0000_9403, "Vosch Electronic AG"),
    (0x0000_9434, "Shenzhen Han's Motor S&T Co., Ltd."),
    (0x0000_9450, "Zünd Systemtechnik AG"),
    (0x0000_9555, "Soft Servo Systems, Inc."),
    (0x0000_962F, "Sun Fuel Technologies, Inc."),
    (0x0000_9638, "Sungrow Power Supply Co., Ltd."),
    (0x0000_9863, "ViE Technologies Sdn. Bhd."),
    (0x0000_9999, "Amoy Dynamics (Xiamen) Co., Ltd."),
    (0x0000_9A9A, "Xi'an Jiaotong University, School of Electronic and Information Engineering"),
    (0x0000_A007, "Shenzhen Han's Scanner S&T Co., Ltd."),
    (0x0000_A0B6, "Sanritz Automation Co., Ltd."),
    (0x0000_A0FB, "Toray Engineering D Solutions Co., Ltd."),
    (0x0000_A1AA, "Shanghai AIM Intelligence Technologies Co., Ltd."),
    (0x0000_A2A2, "MDSI Ventures LLC"),
    (0x0000_A600, "ASIX s.r.o."),
    (0x0000_A75E, "ATSE. LLC"),
    (0x0000_A8A8, "Zhejiang CHINT Electrics Co., Ltd."),
    (0x0000_A8AA, "FUDA Intelligent Systems"),
    (0x0000_AA00, "HATATECH CO., LTD."),
    (0x0000_AA77, "Muscle Corporation"),
    (0x0000_AAAA, "HIWIN MIKROSYSTEM CORP."),
    (0x0000_AABB, "GuangZhou Ronsuo Electronic Technology Co.,Ltd"),
    (0x0000_AACC, "Mega-Fabs Motion Systems Ltd. (A Hiwin Company)"),
    (0x0000_AAEC, "AXIMETRIX Automation Inc."),
    (0x0000_AB57, "RMIT University, School of Electrical and Computer Engineering"),
    (0x0000_ABAB, "Beijing Juntai Tiancheng Technology Co., Ltd."),
    (0x0000_ABBA, "Triamec Motion AG"),
    (0x0000_ABCD, "SoftEnergy Controls Inc"),
    (0x0000_AC00, "ifm software gmbh"),
    (0x0000_ACC0, "Accutron Ltd"),
    (0x0000_ACDC, "Warp9 Tech Design Inc."),
    (0x0000_AD84, "Topcon Precision Agriculture"),
    (0x0000_ADDA, "Fraunhofer-Institut für Lasertechnik (ILT)"),
    (0x0000_ADE5, "ADVES GmbH & Co. KG"),
    (0x0000_AED0, "ANEDO Ltd."),
    (0x0000_AF1E, "Alpine Racing Ltd"),
    (0x0000_AFEC, "Galaxy Far East Corp."),
    (0x0000_AFFE, "YASKAWA Europe GmbH"),
    (0x0000_B02A, "Orsys Orth System GmbH"),
    (0x0000_B07A, "Bota Systems AG"),
    (0x0000_B0CE, "Viveris Technologies"),
    (0x0000_B7A8, "Heinzinger electronic GmbH"),
    (0x0000_BB80, "Sensa automatisering BV"),
    (0x0000_BBAA, "B. Braun Avitum AG"),
    (0x0000_BC00, "Brainchild Electronic Co., Ltd."),
    (0x0000_BE7A, "BETA Dyn GmbH & Co. KG"),
    (0x0000_BEBE, "G.D SpA"),
    (0x0000_BEEF, "National Radio Astronomy Observatory"),
    (0x0000_C00F, "ControlWorks, Inc."),
    (0x0000_C0DE, "Riedl GmbH"),
    (0x0000_C15A, "CISA Intelligent Systems & Automation S.L."),
    (0x0000_C918, "Jiangsu CPTEK Servo Technology Co.Ltd."),
    (0x0000_CAFE, "SOTEC Software Entwicklungs GmbH + Co. Mikrocomputertechnik KG"),
    (0x0000_CEBA, "KEBA Industrial Automation GmbH"),
    (0x0000_D00F, "FRAKO Kondensatoren- und Anlagenbau GmbH"),
    (0x0000_DAB0, "DABO Corporation"),
    (0x0000_DE88, "Dalian University of Technology"),
    (0x0000_DEDA, "Potomac Electric Corporation"),
    (0x0000_E0EE, "Marel Hf."),
    (0x0000_E5AB, "ESAB Welding & Cutting GmbH"),
    (0x0000_EAEA, "meastream GmbH"),
    (0x0000_ECA7, "Emmission"),
    (0x0000_EEEE, "Willow Garage, Inc."),
    (0x0000_EF56, "TA Instruments - Waters LLC"),
    (0x0000_EFFE, "Shanghai Passiontech Information Technology Co., Ltd."),
    (0x0000_F00D, "Hyphen Technologies, Inc."),
    (0x0000_F0CA, "Imagos S.a.s di Renato Andreola e C."),
    (0x0000_F1F1, "Red Bull Technology Ltd."),
    (0x0000_F4F4, "fos4X GmbH"),
    (0x0000_F666, "National Yunlin University of Science and Technology"),
    (0x0000_F888, "GMT GLOBAL INC."),
    (0x0000_FAB9, "Fab-9 Corporation"),
    (0x0000_FACE, "Korea Institute of Robot and Convergence (KIRO)"),
    (0x0000_FE09, "Interroll Trommelmotoren GmbH"),
    (0x0000_FEDC, "Silica, Avnet EMG GmbH"),
    (0x0000_FF66, "Harbin Institute of Technology"),
    (0x0000_FFFE, "UENO SEIKI Co.,LTD."),
    (0x0000_FFAA, "RB3D"),
    (0x0000_FFF1, "BTHL Equipment (Beijing) Co., Ltd."),
    (0x0000_FFFF, "Robotiq Inc."),
    (0x0001_0000, "Zhejiang Alpha Automotive Technology Co., Ltd."),
    (0x0001_0001, "Hitachi Terminal Mechatronics, Corp."),
    (0x0001_0101, "Glidewell Laboratories"),
    (0x0001_0151, "Beijing SaintWise Intelligent Technology Development co.LTD"),
    (0x0001_0203, "Jiangsu Kaiserdrive Intelligent Technology Co., Ltd."),
    (0x0001_0502, "Beijing Sunwise Space Technology Co., Ltd."),
    (0x0001_0608, "Shenzhen Jiayu Mechatronic Co., Ltd."),
    (0x0001_0780, "Servotecnica SpA"),
    (0x0001_0816, "İleri Denetleyici Teknolojiler Mekatronik San. ve Tic. Ltd. Şti."),
    (0x0001_1107, "Utthunga Technologies Pvt. Ltd."),
    (0x0001_1111, "Beijing University of Posts and Telecommunications, School of Automation"),
    (0x0001_1211, "BeiJing ETOUCH Technology CO.,LTD."),
    (0x0001_16C7, "Zhejiang Hechuan Technology Co.,Ltd."),
    (0x0001_2550, "KERAjet S.A."),
    (0x0001_2555, "PROAUT TECHNOLOGY GmbH"),
    (0x0001_3930, "DANAM SYSTEMS INC."),
    (0x0001_44AB, "Carl Zeiss Optotechnik GmbH"),
    (0x0001_5422, "ALPHA MOTION CO., LTD."),
    (0x0001_8843, "M8M Private Limited"),
    (0x0001_DA7A, "MonoDAQ d.o.o."),
    (0x0001_F001, "EN Technologies Inc."),
    (0x0002_0608, "Harbin Yiao Information Technology Co., Ltd."),
    (0x0002_3155, "Carl Zeiss SMT GmbH"),
    (0x0002_8DEC, "Sichuan Dongfang Electric Autocontrol Engineering Co., Ltd."),
    (0x0003_0004, "XP Power LLC"),
    (0x0003_0205, "Levitection Ltd."),
    (0x0003_030D, "Sioux CCM B.V."),
    (0x0003_3332, "Motion Tech Automation, LLC"),
    (0x0003_3333, "Lion Precision"),
    (0x0003_9055, "Sipartek di Marcello Ferri"),
    (0x0004_0411, "Narranz Soluciones SL"),
    (0x0004_0716, "SYSWORK CO.,LTD."),
    (0x0004_1415, "Harmuth Elektronik GmbH"),
    (0x0004_8186, "Intra Corporation"),
    (0x0005_0903, "Guangdong OPPO Mobile Telecommunications Corp.,Ltd."),
    (0x0005_1C4B, "SICK, Inc."),
    (0x0005_3258, "Shenzhen Encom Electric Technologies Co., Ltd."),
    (0x0005_AE41, "Saeki Partners KlG"),
    (0x0006_0688, "China Wide Prevention Telecom Technology Co.,Ltd."),
    (0x0006_4541, "R&D Robotics"),
    (0x0006_6570, "LG Electronics Inc."),
    (0x0007_0707, "Sodick America Corp."),
    (0x0007_3188, "Hunan Matrix Electronic Technology Co., Ltd."),
    (0x0007_4074, "Roll-2-Roll Technologies LLC"),
    (0x0007_4076, "SIC! Software GmbH"),
    (0x0007_4855, "LÄPPLE AG"),
    (0x0007_5500, "ShenZhen Tongchuan Technology Co.,Ltd"),
    (0x0007_6761, "ITK Engineering GmbH"),
    (0x0007_7054, "ColubrisMX, Inc."),
    (0x0007_7777, "Shanghai Sinyo Electronics Co.,Ltd."),
    (0x0008_0301, "CK Precision Instrument"),
    (0x0008_0A0C, "Xi'an Puyuan Industrial Technology Co., Ltd."),
    (0x0008_8326, "Willig Embedded Software"),
    (0x0008_8888, "Alexan Tech. Inc."),
    (0x0009_0130, "Exvision Corporation"),
    (0x0009_0588, "Guangzhou YanWei Electronic Technology Co., Ltd."),
    (0x0009_0606, "Tex Computer SRL"),
    (0x0009_0802, "Suzhou EastTech Electronics Co.,Ltd"),
    (0x0009_0909, "AONE TECHNOLOGY CO.,LTD."),
    (0x0009_9099, "Nanjing Daqo Electrical Institute Co., Ltd."),
    (0x000A_05E5, "KOSES Co.,Ltd"),
    (0x000A_4D7A, "Warsaw University of Technology, Faculty of Electrical Engineering"),
    (0x000A_7B00, "Cornelius Consult"),
    (0x000A_AAAA, "Shandong SIASUN Industrial Software Research Institute Co.,Ltd."),
    (0x000A_AAEC, "AITEC Corporation"),
    (0x000A_B1DE, "The Dude Abides LLC dba Lensrentals.com"),
    (0x000A_BCDE, "ASU PRO LLC"),
    (0x000A_DC05, "adcos GmbH"),
    (0x000B_00B0, "Institute of Physics of the Czech Academy of Sciences"),
    (0x000B_E11A, "Quality Firmware and Processes Solutions, LLC"),
    (0x000C_0815, "CGX Intelligent Manufacturing (Wuxi) Co., Ltd."),
    (0x000C_0C0C, "YES ENERGY srl"),
    (0x000C_1984, "Chroma ATE Inc."),
    (0x000D_0B0C, "WUHAN DBLC SCIENCE & TECHNOLOGY CO.,LTD."),
    (0x000E_1048, "Toshiba Transport Engineering Inc."),
    (0x000F_1016, "OPVengineering GmbH"),
    (0x0010_0000, "Shenzhen Inovance Technology Co., Ltd."),
    (0x0010_0006, "Shenzhen Veinar Technology Co., Ltd."),
    (0x0010_0100, "Cyberlogix Ltd"),
    (0x0010_1998, "Fundação Amazônica de Amparo à Pesquisa e Desenvolvimento Tecnológico Desembargador Paulo dos Anjos"),
    (0x0010_2030, "SERWIS CNC Mariusz Mareczko"),
    (0x0010_4104, "SBS Science & Technology Co., Ltd."),
    (0x0010_5041, "Inovance Technology Europe GmbH"),
    (0x0011_1111, "Zhejiang Feida Environmental Science & Technology Co., Ltd."),
    (0x0011_1713, "Robotic Systems Integration, Inc."),
    (0x0011_2233, "YoungTek Electronics Corp."),
    (0x0011_2299, "MELSİS Elektrik Elektronik Yazılım Donanım Ltd. Şti."),
    (0x0011_3322, "SS Innovations China Co., Ltd."),
    (0x0011_6688, "REYA ELECTRIC CO.,LTD."),
    (0x0012_0187, "Beijing Institute of Technology, School of Mechatronical Engineering"),
    (0x0012_0331, "UBTECH Robotics Corp."),
    (0x0012_3456, "ERAETECH Co., Ltd."),
    (0x0012_34CC, "Compucare India Pvt. Ltd."),
    (0x0012_3ABC, "Microtech Laboratory Inc."),
    (0x0012_4000, "Automatisation JRT Inc."),
    (0x0012_4816, "Easy Etudes et applications système SA"),
    (0x0012_6815, "EQ GLOBAL Inc."),
    (0x0013_0268, "Eule Industrial Robotics GmbH & Co. KG"),
    (0x0013_2333, "Sudhir Srivastava Innovations Pvt. Ltd."),
    (0x0013_6013, "Beijing RichAuto S&T Co., Ltd"),
    (0x0014_1003, "ULVAC AUTOMATION TAIWAN Inc."),
    (0x0014_1209, "EIKO SOKKI Co. Ltd."),
    (0x0014_7852, "Wuxi Lead Intelligent Equipment CO.,LTD."),
    (0x0015_0306, "Shenyang XBANG Technology Co., Ltd."),
    (0x0015_E65E, "iseg Spezialelektronik GmbH"),
    (0x0016_1718, "Guangzhou Start To Sail Industrial Robot Co.,Ltd."),
    (0x0016_8888, "WU-YANG Technology Co., Ltd."),
    (0x0017_0815, "MUHA INC"),
    (0x0017_1010, "NIIC (SUZHOU) TECHNOLOGY CO., LTD."),
    (0x0017_8200, "SmartRay GmbH"),
    (0x0018_0201, "KOMOTEK Co., Ltd."),
    (0x0018_0522, "Shenzhen iManifold Robot Technology Co., Ltd."),
    (0x0018_0613, "Shenzhen Shenzhixin Technology Co., Ltd."),
    (0x0018_1818, "Ningbo Yunsheng Co., Ltd."),
    (0x0018_97EC, "Loop Technology Ltd"),
    (0x0019_0050, "Kayser-Threde GmbH"),
    (0x0019_0556, "AXYZ Automation Inc."),
    (0x0019_0683, "Ege Robotics CNC Makine Elektronik Otomasyon Medikal"),
    (0x0019_18EE, "Tallinn University of Technology (TUT), Faculty of Information Technology"),
    (0x0019_19EE, "Tallinn University of Technology (TUT), Faculty of Information Technology"),
    (0x0019_8452, "NIHON SEIGYO CO.,LTD."),
    (0x0020_0000, "Shenzhen Farwide Electric Co.,Ltd."),
    (0x0020_0924, "ARUM DENTISTRY Co., Ltd."),
    (0x0020_1111, "Glass Expansion Pty Ltd"),
    (0x0020_1811, "Guangzhou ZHIYUAN Electronics Co., Ltd."),
    (0x0020_1812, "FoShan Syckin Intelligent Technology Co., Ltd"),
    (0x0020_1911, "Shenzhen Han's Robot Co., Ltd"),
    (0x0020_2009, "Tismo Technology Solutions (P) Ltd"),
    (0x0020_2288, "Jiangsu DINGS' Intelligent Control Technology Co., Ltd"),
    (0x0020_3040, "meerecompany Inc."),
    (0x0022_0110, "Research and Production Plant «EKRA»"),
    (0x0022_3344, "FPT Software Ltd."),
    (0x0022_8100, "eMotion Co., Ltd."),
    (0x0023_1970, "HRK-BRK SRLS"),
    (0x0023_EFAB, "Shenzhen ROBOTMETA Technology Co., Ltd."),
    (0x0025_0001, "Nanjing Chenguang Group Co., Ltd."),
    (0x0025_0002, "Jiangsu Jinling Institute of Intelligent Manufacturing Co.,Ltd."),
    (0x0025_0993, "Manner Sensortelemetrie GmbH"),
    (0x0025_2525, "EODIGITEK Co.,Ltd"),
    (0x0025_5210, "SMART TESTSOLUTIONS GmbH"),
    (0x0026_0954, "Meinhard Koppitz, Elektronikentwicklung"),
    (0x0027_0919, "GUREN Design & Engineering"),
    (0x0028_9117, "SHENZHEN JINGFENG MEDICAL TECHNOLOGY CO., LTD."),
    (0x0029_0968, "RUAG Defence Deutschland GmbH"),
    (0x0030_0354, "Jiangsu Donghua Testing Technology Co., Ltd."),
    (0x0030_8012, "Creasoft SL"),
    (0x0030_DB07, "Modbot, Inc."),
    (0x0031_0713, "Sruhad Technologies Pvt Ltd"),
    (0x0031_11C0, "RJG Inc."),
    (0x0031_4000, "Balance Systems S.r.l."),
    (0x0031_4159, "Weka Robotics Limited"),
    (0x0031_636F, "T1 Co., LTD."),
    (0x0032_3232, "STMicroelectronics International NV"),
    (0x0033_4658, "CaTs³ Limited"),
    (0x0033_5160, "Precision Technology Corporation"),
    (0x0033_5233, "Shanghai HOCH Laser Technology Co., Ltd."),
    (0x0034_0702, "Shanghai Rui Fast Automation Equipment Co.,Ltd."),
    (0x0034_5588, "UTECHZONE CO., LTD."),
    (0x0034_5678, "ABB Beijing Drive Systems Co., Ltd."),
    (0x0034_5869, "APE Technology Co., Ltd."),
    (0x0035_1090, "Zhejiang Dafeng Industry Co., Ltd."),
    (0x0036_1300, "Egle Systems S.L."),
    (0x0036_9369, "Honeywell Technology Solutions Lab Private Limited"),
    (0x003C_6F3A, "NeoHealthTechnology, LTD."),
    (0x0040_4040, "ViewMove Technologies Inc."),
    (0x0040_83A9, "Deutsches Elektronen-Synchrotron (DESY)"),
    (0x0041_4141, "Bruker Technologies Ltd."),
    (0x0041_444C, "ADL Analoge und Digitale Leistungselektronik GmbH"),
    (0x0041_444D, "Adullam Tech Co., Ltd."),
    (0x0041_4458, "ADX Systems SA"),
    (0x0041_4853, "Riole Eletrônica Ltda"),
    (0x0041_4C54, "ALTIMA Corp."),
    (0x0041_4E59, "ANYbotics AG"),
    (0x0041_5041, "APA Sp. z o.o."),
    (0x0041_5049, "Teledyne API"),
    (0x0041_504C, "APL Automobil-Prüftechnik Landau GmbH"),
    (0x0041_5450, "Atonarp Inc."),
    (0x0041_6C78, "AiLux S.r.l."),
    (0x0041_8108, "Shanghai Xiangshi Intelligent Technology Co.,Ltd."),
    (0x0042_4345, "Seren Industrial Power Systems, Inc."),
    (0x0042_4D54, "Burghart Messtechnik GmbH"),
    (0x0042_5343, "L3 Commercial Training Solutions (Aerosim Technologies, INC)"),
    (0x0043_4954, "Chiba Institute of Technology (CIT)"),
    (0x0043_4D45, "Cambridge Micro Engineering Limited"),
    (0x0043_4D4E, "CIMON CO.,LTD."),
    (0x0044_2656, "D&V Electronics Ltd."),
    (0x0044_4444, "Eltech Ltd."),
    (0x0044_4543, "Nanjing DECOWELL Automation Co., Ltd"),
    (0x0044_4949, "DISTek Integration, Inc."),
    (0x0044_4950, "Astrodyne TDI"),
    (0x0044_4D54, "Dematic Corp."),
    (0x0044_5341, "DS AUTOMOTION GmbH"),
    (0x0044_5345, "Daewoo Shipbuilding & Marine Engineering Co., Ltd."),
    (0x0044_5653, "Shenzhen DVS Mechatronics Co., Ltd."),
    (0x0044_8976, "Busch Manufacturing Korea, Ltd."),
    (0x0045_4854, "Eagle Harbor Technologies Inc."),
    (0x0045_5354, "Steinbeis Embedded Systems Technologies GmbH"),
    (0x0045_5443, "Electronic Theatre Controls, Inc."),
    (0x0045_5453, "ITMO University, Department of Control Systems and Industrial Robotics, Chair of Electrical Engineering and Precision Electromechanical Systems"),
    (0x0045_564F, "Evolution Measurement Ltd."),
    (0x0045_6789, "SKY TECHNOLOGY DEVELOPMENT CO.,LTD. CHINESE ACADEMY OF SCIENCES"),
    (0x0045_6E76, "Envision Energy (Jiangsu) CO., LTD."),
    (0x0046_5554, "Future Electronics Inc."),
    (0x0047_11BB, "Moehwald GmbH"),
    (0x0047_494E, "Ginolis Oy"),
    (0x0047_4E44, "Shanghai GND eTech Co., Ltd."),
    (0x0047_5349, "GSI GeoSolutions International Ltd"),
    (0x0047_5354, "Global Standard Technology Co., Ltd."),
    (0x0048_1417, "Innodelec Sàrl"),
    (0x0048_414D, "Hamilton Bonaduz AG"),
    (0x0048_4D30, "Hexagon Metrology S.p.A."),
    (0x0048_5247, "Neura Robotics GmbH"),
    (0x0048_5349, "Headspring Inc."),
    (0x0048_554B, "Kendrion Kuhnke Automation GmbH"),
    (0x0048_5645, "High Voltage Engineering Europa B.V."),
    (0x0048_5653, "HV Sistemas S.L."),
    (0x0048_5749, "Halleck-Willard Incorporated"),
    (0x0049_0628, "KYOWA ELECTRONIC INSTRUMENTS  CO., LTD."),
    (0x0049_1617, "FST Co., Ltd."),
    (0x0049_4253, "IBS Precision Engineering BV"),
    (0x0049_4256, "IBV - Echtzeit- und Embedded GmbH & Co. KG"),
    (0x0049_4350, "ICP DAS Co.,Ltd."),
    (0x0049_4458, "IDX Co. Ltd."),
    (0x0049_5253, "IRS Systementwicklung GmbH"),
    (0x0049_5254, "IRT SA"),
    (0x0049_9816, "Seoul Precision Machines Co., Ltd."),
    (0x004A_4154, "Jenaer Antriebstechnik GmbH"),
    (0x004A_542E, "JT Corp."),
    (0x004B_4544, "Kinetic Engineering Design Ltd"),
    (0x004B_4657, "Hangzhou ConfirmWare Technology Co., Ltd."),
    (0x004B_465A, "Deutsches Krebsforschungszentrum (DKFZ)"),
    (0x004B_4743, "Keisokugiken Corporation"),
    (0x004B_494D, "PRESYS Co., Ltd."),
    (0x004B_5243, "KAWADA ROBOTICS CORPORATION"),
    (0x004B_6561, "RobCo GmbH"),
    (0x004C_434D, "Linz Center of Mechatronics GmbH"),
    (0x004C_4F43, "Locomotec GmbH´"),
    (0x004C_545A, "Lithoz GmbH"),
    (0x004C_5552, "University of Oviedo, Electrical, Electronic, Computer and Systems Engineering Department"),
    (0x004D_4153, "AGEMA Germany GmbH"),
    (0x004D_4159, "Chr. Mayr GmbH + Co. KG"),
    (0x004d_4448, "Heidelberger Druckmaschinen AG"),
    (0x004D_4543, "Mecalc PTY Limited"),
    (0x004D_4945, "SuperVac Maschinenbau GmbH"),
    (0x004D_5249, "Volga State University of Technology, Faculty of Information Technologies and Computer Engineering"),
    (0x004D_544E, "MOTEON GmbH"),
    (0x004E_4154, "NARAE NANOTECH Corporation"),
    (0x004E_4355, "Nicolaus Copernicus University in Torun (NCU), Faculty of Physics, Astronomy and Informatics"),
    (0x004E_454D, "NEMONOS GmbH"),
    (0x004E_5854, "NEXTY Electronics Corporation"),
    (0x004F_5053, "Opsens Inc."),
    (0x004F_524D, "ORMEC Systems Corp."),
    (0x0050_2654, "POSCO ENGINEERING Co., Ltd."),
    (0x0050_4155, "ONA Electroerosión S.A."),
    (0x0050_434B, "PC Krause and Associates, Inc."),
    (0x0050_4D43, "Ningbo Physis Technology Co.,Ltd."),
    (0x0050_524F, "PROTEC Co.,Ltd."),
    (0x0050_5344, "Panasonic System Design Co., Ltd."),
    (0x0050_5347, "PowerSparks GmbH"),
    (0x0050_5349, "Paul Scherrer Institut"),
    (0x0050_535A, "Packsize Technologies AB"),
    (0x0050_5450, "PT Photonic Tools GmbH"),
    (0x0050_9188, "Ching Hung Machinery & Electric Industrial Co., Ltd."),
    (0x0051_5151, "Shanghai VolBoff Electron Science & Technology Co., Ltd."),
    (0x0051_8888, "Shanghai Rock Technology Co., Ltd."),
    (0x0052_2543, "Shanghai JiQi Robot Technology Co., Ltd."),
    (0x0052_4254, "Daegu Gyeongbuk Institute of Science & Technology, Robotics System Research Division"),
    (0x0052_454E, "Renishaw plc"),
    (0x0052_4D54, "Rheonik Messtechnik GmbH"),
    (0x0052_8785, "Suzhou Lingchen Acquisition Computer Co., Ltd."),
    (0x0053_2579, "NANORAY Co., Ltd."),
    (0x0053_4543, "Samsung Electronics Co. Ltd."),
    (0x0053_4549, "Sumitomo Electric Industries, Ltd."),
    (0x0053_4649, "Starfire Industries, LLC"),
    (0x0053_4652, "SFERA S.r.l."),
    (0x0053_4743, "Skyloom Global Corp."),
    (0x0053_4745, "SG Electronic Systems SRLS"),
    (0x0053_4C4E, "SLN Technologies Pvt. Ltd."),
    (0x0053_4E50, "Marmatek Mühendislik Endüstriyel Test Ölçüm ve Otomasyon San. ve Tic. Ltd. Sti."),
    (0x0053_5349, "SSI CO.,LTD."),
    (0x0053_554E, "SUNSAY GENERIC CO., LTD."),
    (0x0053_6D61, "SmarAct GmbH"),
    (0x0054_4544, "Tokyo Electron Kyushu Limited"),
    (0x0054_454B, "Toray Engineering Co., Ltd."),
    (0x0054_454C, "Tokyo Electron Limited"),
    (0x0054_454D, "Tem-Tech Lab."),
    (0x0054_4855, "Technische Hochschule Ulm, Fakultät für Mechatronik und Medizintechnik"),
    (0x0054_4D45, "TOMEN ELECTRONICS CORPORATION"),
    (0x0054_4E47, "Technolution B.V."),
    (0x0054_4E4D, "STE Trekwerk B.V."),
    (0x0054_4E5A, "TEAM NEW ZEALAND AC35 CHALLENGE LIMITED (dba Emirates Team New Zealand)"),
    (0x0054_5145, "TRONTEQ Electronic GbR"),
    (0x0054_5249, "Techman Robot Inc."),
    (0x0054_5454, "Sakarya University, Faculty of Computer and Information Sciences, Computer Engineering Department"),
    (0x0054_6936, "JS Automation Corp."),
    (0x0055_4549, "United Electronic Industries, Inc. (UEIDAQ)"),
    (0x0055_4C54, "Ultimaker B.V."),
    (0x0055_5555, "Jiangxi Fashion Technology Co., Ltd."),
    (0x0055_555A, "Korea Institute of Machinery & Materials, Advanced Manufacturing Systems Research Division"),
    (0x0055_555B, "Korea Institute of Machinery & Materials, Nano-Convergence Manufacturing Systems Research Division, Department of Printed Electronics"),
    (0x0055_5888, "Zhejiang Shuanghuan Driveline Co., Ltd."),
    (0x0055_6666, "ShenZhen V&T Technologies Co., Ltd."),
    (0x0055_AA88, "Dongguan Strong Intelligent Equipment Co., LTD"),
    (0x0056_4343, "Volvo Car Group"),
    (0x0056_4D49, "VMI Holland B.V."),
    (0x0056_5203, "Shenzhen DOHHO Electric Co., Ltd."),
    (0x0056_8568, "Karma Technology Ltd."),
    (0x0057_4154, "watttron GmbH"),
    (0x0057_4654, "Weatherford Oil Tool GmbH"),
    (0x0057_4954, "Witium Co., Ltd."),
    (0x0057_7800, "Inca Digital Printers Limited"),
    (0x0057_8485, "Cerebrus Corporation"),
    (0x0058_4D4D, "Xiamen Micromatch Electronic Information Technology Co.,Ltd."),
    (0x0059_4188, "Shenzhen TianAn Sensor Technology Co.,Ltd"),
    (0x005A_5A5A, "Hangzhou Zhenzheng Robot Technology Co.,LTD"),
    (0x005A_7967, "Zygo Corporation"),
    (0x005E_5E5E, "Ser.mac srl"),
    (0x005E_A71E, "Tethers Unlimited, Inc."),
    (0x0060_0613, "Google Inc."),
    (0x0061_6978, "aixcon PowerSystems GmbH"),
    (0x0061_6C6C, "Allestec Corporation"),
    (0x0061_8618, "Panasonic Software Development Center Dalian Co., Ltd."),
    (0x0061_8913, "TECHEST Co.,Ltd."),
    (0x0062_696F, "Harmonic Bionics, Inc."),
    (0x0062_AE2D, "Redstone Aerospace Corporation"),
    (0x0064_0627, "MORNSUN Guangzhou Science & Technology Co., Ltd."),
    (0x0064_3000, "Maple Electronics"),
    (0x0065_4321, "YUCHANG TECH Co., Ltd."),
    (0x0066_0066, "Ningbo Zhafir Plastics Machinery Co., LTD."),
    (0x0066_0088, "Ningbo Haitian Precision Machinery Co., Ltd."),
    (0x0066_6666, "Changzhou MVision IT Technology Co., Ltd."),
    (0x0066_6888, "Hunan Sharing Intelligent Machines Co., Ltd."),
    (0x0066_6999, "Shenzhen Diju Intelligent Technology Co., Ltd."),
    (0x0066_7675, "Bilko Computer Control & Automation Co."),
    (0x0068_1168, "Kinco Electric (Shenzhen) Ltd."),
    (0x0068_6868, "Chengdu GUNT Weida CNC Technology Co., Ltd."),
    (0x0068_8165, "EFORT Intelligent Equipment Co., Ltd."),
    (0x0068_8191, "Shanghai Fuxu Tech Co., Ltd."),
    (0x0068_8688, "Foshan Augmented Intelligence Technology Co., Ltd."),
    (0x0068_8888, "GUILIN WINDCON CO.,LTD"),
    (0x0069_0069, "SHENZHEN HENGKETONG ROBOT CO., LTD"),
    (0x0069_6969, "Mianyang Fude Robot Co., Ltd."),
    (0x006A_FE96, "ShuraCore LLC"),
    (0x006B_4F53, "Kjellberg Finsterwalde Plasma und Maschinen GmbH"),
    (0x006C_6267, "SHODENSHA Co., Ltd."),
    (0x006D_7361, "Hefei MacroSilicon Technology Co.,Ltd"),
    (0x006E_542D, "Genesis Robotics and Motion Technologies Canada, ULC"),
    (0x0070_0100, "Cyber Control Systems LLC"),
    (0x0070_6E74, "PONUTech"),
    (0x0072_07EC, "Trotec Laser GmbH"),
    (0x0073_0220, "PLASOURCE Co., Ltd."),
    (0x0074_6563, "tecVenture UG (haftungsbeschränkt)"),
    (0x0074_6568, "MechAdept Limited"),
    (0x0074_6C65, "BST GmbH"),
    (0x0075_0608, "ZHITENG (Shenzhen) Motion Technology Co., Ltd."),
    (0x0075_6500, "Zhuhai Motion Control Motor Co., Ltd."),
    (0x0077_0712, "Rainbow Co."),
    (0x0077_696E, "krtkl inc."),
    (0x0077_7700, "SENTROL Co., Ltd."),
    (0x0077_7777, "HangZhou Dianzi University, School of Mechanical Engineering"),
    (0x0077_9999, "PHUC SON TECHNOLOGY CO., LTD."),
    (0x0078_2782, "Hangzhou Bergerda Automation Technology Co., Ltd."),
    (0x0078_9456, "Devol Advanced Automation, Inc."),
    (0x0079_6866, "Chengdu Yanxing Automation Engineering Co., Ltd."),
    (0x0079_796D, "METIS Co., Ltd."),
    (0x0079_9245, "Goldlücke GmbH"),
    (0x007A_FE76, "Promwad Soft LLC"),
    (0x0080_0188, "NIDEC READ CORPORATION"),
    (0x0081_1791, "Microtime Computer Inc."),
    (0x0081_1811, "EGICON S.R.L."),
    (0x0082_8845, "AL. Robot Co., Inc."),
    (0x0083_0517, "Korea Institute of Science and Technology (KIST)"),
    (0x0083_0518, "Korea Institute of Science and Technology (KIST)"),
    (0x0083_1219, "Chengdu Sino-Tech Smart Energy Co., Ltd."),
    (0x0083_6699, "Hunan Aicortech Intelligent Technology Co.,Ltd."),
    (0x0085_0104, "Shenzhen Veichi Electric Co., Ltd"),
    (0x0086_0816, "Sichuan Odot Automation System Co.,Ltd."),
    (0x0086_8686, "Changzhou Baolong Motor Co., Ltd."),
    (0x0087_1217, "Rocket Lab Kft."),
    (0x0087_5111, "Protech Systems Co., Ltd."),
    (0x0087_6543, "KONE Oyj"),
    (0x0088_0088, "Atop Technologies, Inc."),
    (0x0088_4443, "Nanjing Solidot Electronic Technology Co., Ltd."),
    (0x0088_6688, "Simplo Technology CO., LTD."),
    (0x0088_8880, "NINGBO EST TECHNOLOGY CO., LTD"),
    (0x0088_8882, "Hitachi High-Technologies Corporation"),
    (0x0088_9606, "Dongguan Avatar System Automation Equipment Co., Ltd."),
    (0x0088_9999, "Hangzhou Wahaha Group Co., LTD., Mechanical and Electrical Institute"),
    (0x0092_2189, "Suzhou Quick Laser Technology"),
    (0x0095_0701, "ULVAC Korea, Ltd."),
    (0x0095_2358, "TROY ENTERPRISE CO., LTD"),
    (0x0097_2430, "Moore Nanotechnology Systems, LLC"),
    (0x0099_1000, "Shenzhen SuperFar lntelligent Control Technology Co.,LTD."),
    (0x0099_8877, "DATASCHALT engineering GmbH"),
    (0x0099_9999, "Smartind Technologies Co., Ltd."),
    (0x009C_FBF1, "MESOMATIC GmbH & Co. KG"),
    (0x00A0_415E, "Opsens Solutions Inc."),
    (0x00A1_2000, "Universitat Politecnica de Valencia, Instituto Universitario de Automática e Informática Industrial"),
    (0x00A1_234F, "Shanghai Maritime University, Logistics Engineering College"),
    (0x00A1_BEEF, "F&S PROZESSAUTOMATION GmbH"),
    (0x00A2_1234, "EMP Designs Ltd"),
    (0x00A2_4273, "ASYS Automatic Systems Co., Ltd."),
    (0x00A5_4321, "NEW SOLUTION S.A."),
    (0x00A5_5A5A, "Hikrobot Technology Co., Ltd."),
    (0x00A5_C000, "ASC GmbH"),
    (0x00A5_DFF4, "Kenotom P.C."),
    (0x00A5_E15A, "ASELSAN A.S."),
    (0x00A7_0EA7, "Basemap Inc., DBA Automaton"),
    (0x00AA_0001, "Inventec Appliances (Shanghai) Co., Ltd."),
    (0x00AA_1314, "HENAN XINZHILIN ELECTROMECHANICAL DEVICE CO.,LTD"),
    (0x00AA_55A5, "Bitvis AS"),
    (0x00AA_55AA, "Shenzhen Sipake Electric Co., Ltd."),
    (0x00AA_A111, "Amada Miyachi America, Inc."),
    (0x00AA_A555, "EMOTIONTEK Co., Ltd."),
    (0x00AA_AAAA, "Altera Corporation"),
    (0x00AA_AABB, "TDS Technology (S) Pte Ltd."),
    (0x00AA_ABBB, "CRRC QINGDAO SIFANG ROLLING STOCK RESEARCH INSTITUTE Co., Ltd."),
    (0x00AA_FFEE, "High Q Laser GmbH"),
    (0x00AB_A1EC, "abatec group ag"),
    (0x00AB_AB00, "Pearls of Life AB"),
    (0x00AB_F159, "Promotion Comercio e Serviço Ltda"),
    (0x00AC_CE55, "enders GmbH"),
    (0x00AC_EACE, "HANYANG ROBOTICS CO.,LTD"),
    (0x00AD_CAFE, "Analog Devices, Inc."),
    (0x00AE_4B4B, "KK Wind Solutions A/S"),
    (0x00AE_86FD, "HOFO Automation Co., Ltd."),
    (0x00AE_A000, "AEA Srl"),
    (0x00AF_2497, "Yeungnam University, College of Mechanical and IT Engineering, Department of Information and Communication Engineering, Advanced Networking Technology Lab."),
    (0x00B0_71C5, "PAL Robotics S.L."),
    (0x00B1_00D5, "King’s College London, Faculty of Life Sciences & Medicine, School of Biomedical Engineering & Imaging Sciences"),
    (0x00BA_DA55, "NEWTEC A/S"),
    (0x00BA_DBEE, "4NXT S.r.l."),
    (0x00BA_DFAB, "Nexter Systems S.A."),
    (0x00BA_FF1E, "Memjet Technology Ltd"),
    (0x00BB_BBBB, "BLUESINK Co., Ltd"),
    (0x00BE_E000, "m-Bee GmbH"),
    (0x00C0_07D9, "Guangdong Coordy Numerical Control Technology Co.,Ltd."),
    (0x00C0_FFEE, "Moog Animatics"),
    (0x00CA_71EB, "SENER Aeroespacial, S.A."),
    (0x00CC_00AA, "Saenggaksaemteo Co."),
    (0x00CC_1982, "Comtrol Corporation"),
    (0x00CC_CCCC, "Largan Precision Co.,Ltd."),
    (0x00CE_7C21, "China Electronics Technology Group Corporation, No. 21 Research Institute"),
    (0x00CE_CECE, "Canon Electronics Inc."),
    (0x00D0_2379, "REXA Inc."),
    (0x00D5_6130, "Löwenstein Medical GmbH & Co. KG"),
    (0x00D8_7688, "Robo Biz Core Co., Ltd"),
    (0x00DA_4E00, "DAVE Srl"),
    (0x00DA_D001, "Studio elektronike Rijeka d.o.o."),
    (0x00DA_EAC0, "DAEATI Co., Ltd."),
    (0x00DD_DDDD, "DAINCUBE Corp."),
    (0x00DE_ADBF, "Shanghai xPartner Robotics Co.,Ltd."),
    (0x00DE_DBEF, "Dexterity, Inc."),
    (0x00E0_5DA6, "Detlef Fink Elektronik-& Softwareentwicklung"),
    (0x00E1_1FE1, "Elife International S.r.l."),
    (0x00E5_0E50, "ESO, European Southern Observatory"),
    (0x00E5_7AB1, "Estabili Tecnologia"),
    (0x00E5_CA18, "Weld Tooling Corporation (dba BUG-O Systems)"),
    (0x00EC_1608, "Tongtai Machine & Tool Co., Ltd."),
    (0x00EC_1991, "PROMAX srl"),
    (0x00EC_2018, "PRODRIVES & MOTIONS CO., LTD."),
    (0x00EC_4800, "Hitex (UK) Ltd."),
    (0x00EC_ADC0, "Encoder Products Company"),
    (0x00EC_ADE1, "Mecademic Inc."),
    (0x00EC_EEDA, "Exceed Automation, LLC"),
    (0x00ED_A168, "Endex Automation Technology Co., Ltd."),
    (0x00ED_C0DE, "STÖGRA Antriebstechnik GmbH"),
    (0x00EE_00AA, "ENTEC Electric & Electronic CO., LTD."),
    (0x00EE_1000, "Euto Energy Elektronik San. ve Tic. Ltd. Sti."),
    (0x00EE_CCAA, "Beijing Sevenstar Flow Co., Ltd."),
    (0x00EE_E669, "Henan Mechanical and Electrical Vocational College"),
    (0x00EE_EEEE, "Eonyk AG"),
    (0x00F0_AE1B, "NTCSOFT Co., Ltd."),
    (0x00F1_CA42, "Meccanica 42 S.r.l."),
    (0x00F1_F1F1, "Williams Grand Prix Engineering Limited"),
    (0x00F2_020F, "MİLTEKSAN CNC Teknoloji ve Kontrol Sistemleri Sanayi A.Ş."),
    (0x00F2_F2F2, "spectral process Ingenieurbüro"),
    (0x00F5_CB27, "Alpha Project Co.,Ltd."),
    (0x00F8_F8F8, "Suzhou Otronic Medical Technology Co., Ltd."),
    (0x00FA_1337, "British Columbia Institute of Technology"),
    (0x00FA_140A, "KOYO ELECTRONICS INDUSTRIES CO., LTD."),
    (0x00FA_3C77, "DNV Electronics, LLC"),
    (0x00FA_BADA, "GTD Sistemas de Información SA"),
    (0x00FD_C42D, "MECOS AG"),
    (0x00FE_0001, "Kemppi Oy"),
    (0x00FE_DABC, "Mouvent AG"),
    (0x00FE_DCBA, "E-TEAM di Righini Bruno & C. S.a.s."),
    (0x00FF_00AA, "Dongguan Precision Intelligent Technology Co., Ltd."),
    (0x00FF_00FF, "TDK-Lambda Ltd."),
    (0x00FF_AABB, "YOSIO ELECTRONIC COMPANY"),
    (0x00FF_FAAA, "Xiamen Zhengai Technology Co., Ltd."),
    (0x00FF_FFFF, "Chongqing Huashu Robotics Co.,Ltd."),
    (0x0100_0001, "Arlington Laboratory Corporation"),
    (0x0100_0002, "Beckhoff Automation GmbH & Co. KG"),
    (0x0100_0056, "SICK AG"),
    (0x0100_0083, "Omron Robotics and Safety Technologies, Inc."),
    (0x0100_0089, "Parker Hannifin Manufacturing S.r.l."),
    (0x0100_00E8, "Balluff GmbH"),
    (0x0100_00F9, "Nidec ACIM Germany GmbH"),
    (0x0100_00FB, "maxon precision motors, inc."),
    (0x0100_0230, "Weidmüller Interface (Shanghai) Co.,Ltd."),
    (0x0100_0331, "SHANGHAI SANY SCIENCE & TECHNOLOGY CO., LTD"),
    (0x0100_034E, "Infineon Technologies Americas Corporation"),
    (0x0100_050C, "ABB Engineering (Shanghai) Ltd."),
    (0x0100_0734, "MULTIVAC Sepp Haggenmüller SE & Co. KG"),
    (0x0100_0766, "Renesas Electronics Korea Co., Ltd."),
    (0x0100_07D5, "Bimba Manufacturing Company"),
    (0x0100_07EC, "SCREEN Holdings Co., Ltd."),
    (0x0100_083E, "Frencken America Inc."),
    (0x0100_0844, "KLA-Tencor Corporation"),
    (0x0100_0876, "EDAC Electronics Technology (Hangzhou) Co., Ltd."),
    (0x0100_090C, "CORE CORPORATION"),
    (0x0100_091C, "Drobak Unlimited Co."),
    (0x0100_1946, "AMADA MIYACHI EUROPE GmbH"),
    (0x0100_3610, "eProLinkTek Co., Ltd."),
    (0x0100_7170, "Hyundai Heavy Industries Holdings Co. Ltd."),
    (0x0100_7680, "HUNAN SUPER INFORMATION CO., LTD"),
    (0x0100_ADDA, "Fraunhofer-Institut für Lasertechnik (ILT)"),
    (0x0105_3258, "Shenzhen Encom Electric Technologies Co., Ltd."),
    (0x0168_1168, "Kinco Electric (Shenzhen) Ltd."),
    (0x012E_BC73, "TIME GROUP Inc."),
    (0x01AB_CDEF, "Ma.Vi. srl"),
    (0x0200_0089, "Parker Hannifin Manufacturing Germany GmbH & Co KG"),
    (0x0200_008D, "Danfoss Drives A/S"),
    (0x0200_0331, "SHANGHAI SANY SCIENCE & TECHNOLOGY CO., LTD"),
    (0x0200_034E, "Infineon Technologies China Co., Ltd."),
    (0x0200_ADDA, "Fraunhofer-Institut für Lasertechnik (ILT)"),
    (0x0300_008D, "Danfoss S.r.l."),
    (0x0400_0089, "Parker Hannifin Ltd."),
    (0x0421_0909, "Longxin Zhijian Co. Ltd."),
    (0x0453_3417, "MEYSAR MAKINA ELEKTRONIK ENERJI YAZILIM SAN. TIC. LTD. STI"),
    (0x0500_0089, "Parker Hannifin Corporation"),
    (0x0505_ABCD, "A.L.L. Lasersysteme GmbH"),
    (0x0512_FDFD, "Suzhou GFD Automation Technology Co., Ltd"),
    (0x0640_2200, "L-3 Communications, Communication Systems - West"),
    (0x0695_8326, "BNT"),
    (0x0777_0777, "Japan Radio Co., Ltd."),
    (0x0800_005A, "Schneider Electric SE"),
    (0x0800_0089, "Parker Hannifin Manufacturing Germany GmbH & Co. KG"),
    (0x0900_0089, "Parker Hannifin Corporation"),
    (0x0A5D_0000, "Advanced Systems Development BVBA"),
    (0x0ADA_FFFF, "DSP Automation"),
    (0x0C04_4BAC, "Compac Sorting Equipment Ltd."),
    (0x0FA0_0000, "FASTECH Co., Ltd."),
    (0x0FFF_8888, "GSK CNC EQUIPMENT CO., LTD."),
    (0x1000_0000, "SONOTRONIC Nagel GmbH"),
    (0x1000_0001, "XI’AN MOSVO ELECTRONICS TECHNOLOGY CO.,LTD"),
    (0x1000_0004, "ED Co., Ltd"),
    (0x1000_0031, "SHANGHAI SANY SCIENCE & TECHNOLOGY CO., LTD"),
    (0x1000_0331, "SHANGHAI SANY SCIENCE & TECHNOLOGY CO., LTD"),
    (0x1234_5678, "GA Drilling, Ltd."),
    (0x1707_2003, "METTEM-Specautomatic Ltd."),
    (0x1949_1001, "Tsinghua University, Department of Electronic Engineering"),
    (0x1982_1130, "Control Z Corporation"),
    (0x1986_1230, "Shanghai Damon Logistics Technology Co.,LTD"),
    (0x1BA9_0762, "iba AG"),
    (0x2004_1961, "Hengstler GmbH"),
    (0x2042_2B4C, "Lenord, Bauer & Co. GmbH"),
    (0x2049_4154, "Universität Bremen, Institut für Automatisierungstechnik (IAT)"),
    (0x2222_2222, "Shanghai Cohere Electronics Technology Co., Ltd."),
    (0x2309_1861, "Robert Bosch GmbH"),
    (0x2626_2626, "APDISAR (Association pour la Promotion et le Développement de l’Ecole D’Ingénieurs ESISAR)"),
    (0x2637_6345, "Convex Co., Ltd."),
    (0x2E00_0000, "X2E GmbH"),
    (0x3000_0331, "SHANGHAI SANY SCIENCE & TECHNOLOGY CO., LTD"),
    (0x3131_3131, "Sany Intelligent Control Equipment"),
    (0x3139_3633, "Technische Universität Darmstadt, Institut für Elektromechanische Konstruktionen"),
    (0x314D_4B54, "MKT Systemtechnik GmbH & Co. KG"),
    (0x3333_3333, "The ITAYA Engineering Ltd."),
    (0x3540_9865, "Korea Electronics Technology Institute"),
    (0x4000_0331, "SHANGHAI SANY SCIENCE & TECHNOLOGY CO., LTD"),
    (0x4052_4F54, "Red one technologies"),
    (0x414D_4154, "Applied Materials Inc."),
    (0x4152_4341, "ARCA TECNOLOGIE srl"),
    (0x4156_414C, "AVAL DATA CORPORATION"),
    (0x4200_0000, "Trust Automation Inc."),
    (0x4354_4C42, "Central South University of Forestry and Technology, College of Computer Science and Information Technology"),
    (0x4445_4B31, "DEK Printing Machines Ltd."),
    (0x454C_4F56, "ELOVIS GmbH"),
    (0x454D_5245, "EKTECH Elektronik"),
    (0x4648_5320, "SHF Communication Technologies AG"),
    (0x464D_5331, "FMS (Flexible Manufacturing System)"),
    (0x474F_5353, "Marcus Goßner SYSTEM SOLUTIONS"),
    (0x4753_5953, "Grossenbacher Systeme AG"),
    (0x482A_0000, "Hstar Technologies Corp."),
    (0x4845_5673, "University of Applied Sciences Western Switzerland, Institute of Systems Engineering"),
    (0x4C4E_5449, "NTI AG - LinMot"),
    (0x4C52_4358, "Lam Research Corporation"),
    (0x4D4C_5431, "MLT Micro Laser Technology GmbH"),
    (0x5000_5000, "Technische Universität Braunschweig"),
    (0x5041_4E43, "Power Automation GmbH"),
    (0x5241_4649, "RAFI GmbH & Co. KG"),
    (0x5354_5A53, "Steinbeis-Transferzentrum Systemtechnik"),
    (0x5445_434E, "Tecan Schweiz AG"),
    (0x5445_5753, "TEWS Elektronik GmbH & Co. KG"),
    (0x5449_4158, "Timax Electronics & Machinery Ltd."),
    (0x5555_5555, "OLYMPUS CORPORATION"),
    (0x5555_AAAA, "SIASUN Robot & Automation Co., Ltd."),
    (0x55AA_55AA, "Green Field Control System (I) Pvt. Ltd."),
    (0x55AA_55BB, "JT3, LLC"),
    (0x5647_5454, "Volvo Group"),
    (0x6167_656D, "megatec electronic GmbH"),
    (0x6554_7241, "Arte Motion S.p.A."),
    (0x6666_6666, "Chinese Academy of Sciences, Institute of Optics and Electronics (IOE)"),
    (0x6666_8888, "Shenzhen Just Motion Control Electromechanics Co.,Ltd"),
    (0x7061_756C, "PAUL Maschinenfabrik GmbH & Co.KG"),
    (0x7777_6968, "Mesacon Messelektronik GmbH Dresden"),
    (0x7777_8888, "Shanghai Tech Full Electric Co., Ltd."),
    (0x8169_6189, "Shandong University, School of Electrical Engineering"),
    (0x8888_8888, "ScandiNova Systems AB"),
    (0x8989_8989, "Woojin Plaimm Co., Ltd"),
    (0x9064_6350, "ROBOCUBETECH Co., Ltd"),
    (0x9999_8888, "Shanghai STEP Electric Corporation"),
    (0xAAAA_5555, "Sunin Technology Inc."),
    (0xAAAA_AAAA, "COMIZOA Co., Ltd."),
    (0xAAAA_BBBB, "Ruchservomotor Ltd."),
    (0xAAAA_FFFF, "Dalian Jafeng Electronics Co., Ltd."),
    (0xADD1_DA7A, "ADDI-DATA GmbH"),
    (0xB050_0001, "Husky Injection Molding Systems Ltd."),
    (0xBCDA_0001, "JINOID CO., LTD."),
    (0xBE78_EC01, "Bertec Corporation"),
    (0xC0DE_CAFE, "Innovasic Inc."),
    (0xD4C3_B2A1, "PULOON Technology Inc."),
    (0xDEAD_BEEF, "Albert Handtmann Maschinenfabrik GmbH & Co. KG"),
    (0xDEBE_50F7, "Dewesoft d.o.o."),
];