/src/bluez/lib/bluetooth/bluetooth.c
Line | Count | Source |
1 | | // SPDX-License-Identifier: GPL-2.0-or-later |
2 | | /* |
3 | | * |
4 | | * BlueZ - Bluetooth protocol stack for Linux |
5 | | * |
6 | | * Copyright (C) 2000-2001 Qualcomm Incorporated |
7 | | * Copyright (C) 2002-2003 Maxim Krasnyansky <maxk@qualcomm.com> |
8 | | * Copyright (C) 2002-2010 Marcel Holtmann <marcel@holtmann.org> |
9 | | * |
10 | | * |
11 | | */ |
12 | | |
13 | | #ifdef HAVE_CONFIG_H |
14 | | #include <config.h> |
15 | | #endif |
16 | | |
17 | | #include <stdio.h> |
18 | | #include <errno.h> |
19 | | #include <ctype.h> |
20 | | #include <stdarg.h> |
21 | | #include <stdlib.h> |
22 | | #include <stdbool.h> |
23 | | #include <string.h> |
24 | | #include <sys/socket.h> |
25 | | |
26 | | #include "bluetooth.h" |
27 | | #include "hci.h" |
28 | | |
29 | | void baswap(bdaddr_t *dst, const bdaddr_t *src) |
30 | 0 | { |
31 | 0 | register unsigned char *d = (unsigned char *) dst; |
32 | 0 | register const unsigned char *s = (const unsigned char *) src; |
33 | 0 | register int i; |
34 | |
|
35 | 0 | for (i = 0; i < 6; i++) |
36 | 0 | d[i] = s[5-i]; |
37 | 0 | } |
38 | | |
39 | | char *batostr(const bdaddr_t *ba) |
40 | 0 | { |
41 | 0 | char *str = bt_malloc(18); |
42 | 0 | if (!str) |
43 | 0 | return NULL; |
44 | | |
45 | 0 | sprintf(str, "%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X", |
46 | 0 | ba->b[0], ba->b[1], ba->b[2], |
47 | 0 | ba->b[3], ba->b[4], ba->b[5]); |
48 | |
|
49 | 0 | return str; |
50 | 0 | } |
51 | | |
52 | | bdaddr_t *strtoba(const char *str) |
53 | 0 | { |
54 | 0 | bdaddr_t b; |
55 | 0 | bdaddr_t *ba = bt_malloc(sizeof(*ba)); |
56 | |
|
57 | 0 | if (ba) { |
58 | 0 | str2ba(str, &b); |
59 | 0 | baswap(ba, &b); |
60 | 0 | } |
61 | |
|
62 | 0 | return ba; |
63 | 0 | } |
64 | | |
65 | | int ba2str(const bdaddr_t *ba, char *str) |
66 | 0 | { |
67 | 0 | return sprintf(str, "%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X", |
68 | 0 | ba->b[5], ba->b[4], ba->b[3], ba->b[2], ba->b[1], ba->b[0]); |
69 | 0 | } |
70 | | |
71 | | /* Match kernel's lowercase printing of mac address (%pMR) */ |
72 | | int ba2strlc(const bdaddr_t *ba, char *str) |
73 | 0 | { |
74 | 0 | return sprintf(str, "%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x", |
75 | 0 | ba->b[5], ba->b[4], ba->b[3], ba->b[2], ba->b[1], ba->b[0]); |
76 | 0 | } |
77 | | |
78 | | int str2ba(const char *str, bdaddr_t *ba) |
79 | 0 | { |
80 | 0 | int i; |
81 | |
|
82 | 0 | if (bachk(str) < 0) { |
83 | 0 | memset(ba, 0, sizeof(*ba)); |
84 | 0 | return -1; |
85 | 0 | } |
86 | | |
87 | 0 | for (i = 5; i >= 0; i--, str += 3) |
88 | 0 | ba->b[i] = strtol(str, NULL, 16); |
89 | |
|
90 | 0 | return 0; |
91 | 0 | } |
92 | | |
93 | | int ba2oui(const bdaddr_t *ba, char *str) |
94 | 0 | { |
95 | 0 | return sprintf(str, "%2.2X-%2.2X-%2.2X", ba->b[5], ba->b[4], ba->b[3]); |
96 | 0 | } |
97 | | |
98 | | int bachk(const char *str) |
99 | 0 | { |
100 | 0 | if (!str) |
101 | 0 | return -1; |
102 | | |
103 | 0 | if (strlen(str) != 17) |
104 | 0 | return -1; |
105 | | |
106 | 0 | while (*str) { |
107 | 0 | if (!isxdigit(*str++)) |
108 | 0 | return -1; |
109 | | |
110 | 0 | if (!isxdigit(*str++)) |
111 | 0 | return -1; |
112 | | |
113 | 0 | if (*str == 0) |
114 | 0 | break; |
115 | | |
116 | 0 | if (*str++ != ':') |
117 | 0 | return -1; |
118 | 0 | } |
119 | | |
120 | 0 | return 0; |
121 | 0 | } |
122 | | |
123 | | int baprintf(const char *format, ...) |
124 | 0 | { |
125 | 0 | va_list ap; |
126 | 0 | int len; |
127 | |
|
128 | 0 | va_start(ap, format); |
129 | 0 | len = vprintf(format, ap); |
130 | 0 | va_end(ap); |
131 | |
|
132 | 0 | return len; |
133 | 0 | } |
134 | | |
135 | | int bafprintf(FILE *stream, const char *format, ...) |
136 | 0 | { |
137 | 0 | va_list ap; |
138 | 0 | int len; |
139 | |
|
140 | 0 | va_start(ap, format); |
141 | 0 | len = vfprintf(stream, format, ap); |
142 | 0 | va_end(ap); |
143 | |
|
144 | 0 | return len; |
145 | 0 | } |
146 | | |
147 | | int basprintf(char *str, const char *format, ...) |
148 | 0 | { |
149 | 0 | va_list ap; |
150 | 0 | int len; |
151 | |
|
152 | 0 | va_start(ap, format); |
153 | 0 | len = vsnprintf(str, (~0U) >> 1, format, ap); |
154 | 0 | va_end(ap); |
155 | |
|
156 | 0 | return len; |
157 | 0 | } |
158 | | |
159 | | int basnprintf(char *str, size_t size, const char *format, ...) |
160 | 0 | { |
161 | 0 | va_list ap; |
162 | 0 | int len; |
163 | |
|
164 | 0 | va_start(ap, format); |
165 | 0 | len = vsnprintf(str, size, format, ap); |
166 | 0 | va_end(ap); |
167 | |
|
168 | 0 | return len; |
169 | 0 | } |
170 | | |
171 | | void *bt_malloc(size_t size) |
172 | 0 | { |
173 | 0 | return malloc(size); |
174 | 0 | } |
175 | | |
176 | | void *bt_malloc0(size_t size) |
177 | 1.04M | { |
178 | 1.04M | return calloc(size, 1); |
179 | 1.04M | } |
180 | | |
181 | | void bt_free(void *ptr) |
182 | 7.41k | { |
183 | 7.41k | free(ptr); |
184 | 7.41k | } |
185 | | |
186 | | /* Bluetooth error codes to Unix errno mapping */ |
187 | | int bt_error(uint16_t code) |
188 | 0 | { |
189 | 0 | switch (code) { |
190 | 0 | case 0: |
191 | 0 | return 0; |
192 | 0 | case HCI_UNKNOWN_COMMAND: |
193 | 0 | return EBADRQC; |
194 | 0 | case HCI_NO_CONNECTION: |
195 | 0 | return ENOTCONN; |
196 | 0 | case HCI_HARDWARE_FAILURE: |
197 | 0 | return EIO; |
198 | 0 | case HCI_PAGE_TIMEOUT: |
199 | 0 | return EHOSTDOWN; |
200 | 0 | case HCI_AUTHENTICATION_FAILURE: |
201 | 0 | return EACCES; |
202 | 0 | case HCI_PIN_OR_KEY_MISSING: |
203 | 0 | return EINVAL; |
204 | 0 | case HCI_MEMORY_FULL: |
205 | 0 | return ENOMEM; |
206 | 0 | case HCI_CONNECTION_TIMEOUT: |
207 | 0 | return ETIMEDOUT; |
208 | 0 | case HCI_MAX_NUMBER_OF_CONNECTIONS: |
209 | 0 | case HCI_MAX_NUMBER_OF_SCO_CONNECTIONS: |
210 | 0 | return EMLINK; |
211 | 0 | case HCI_ACL_CONNECTION_EXISTS: |
212 | 0 | return EALREADY; |
213 | 0 | case HCI_COMMAND_DISALLOWED: |
214 | 0 | case HCI_TRANSACTION_COLLISION: |
215 | 0 | case HCI_ROLE_SWITCH_PENDING: |
216 | 0 | return EBUSY; |
217 | 0 | case HCI_REJECTED_LIMITED_RESOURCES: |
218 | 0 | case HCI_REJECTED_PERSONAL: |
219 | 0 | case HCI_QOS_REJECTED: |
220 | 0 | return ECONNREFUSED; |
221 | 0 | case HCI_HOST_TIMEOUT: |
222 | 0 | return ETIMEDOUT; |
223 | 0 | case HCI_UNSUPPORTED_FEATURE: |
224 | 0 | case HCI_QOS_NOT_SUPPORTED: |
225 | 0 | case HCI_PAIRING_NOT_SUPPORTED: |
226 | 0 | case HCI_CLASSIFICATION_NOT_SUPPORTED: |
227 | 0 | case HCI_UNSUPPORTED_LMP_PARAMETER_VALUE: |
228 | 0 | case HCI_PARAMETER_OUT_OF_RANGE: |
229 | 0 | case HCI_QOS_UNACCEPTABLE_PARAMETER: |
230 | 0 | return EOPNOTSUPP; |
231 | 0 | case HCI_INVALID_PARAMETERS: |
232 | 0 | case HCI_SLOT_VIOLATION: |
233 | 0 | return EINVAL; |
234 | 0 | case HCI_OE_USER_ENDED_CONNECTION: |
235 | 0 | case HCI_OE_LOW_RESOURCES: |
236 | 0 | case HCI_OE_POWER_OFF: |
237 | 0 | return ECONNRESET; |
238 | 0 | case HCI_CONNECTION_TERMINATED: |
239 | 0 | return ECONNABORTED; |
240 | 0 | case HCI_REPEATED_ATTEMPTS: |
241 | 0 | return ELOOP; |
242 | 0 | case HCI_REJECTED_SECURITY: |
243 | 0 | case HCI_PAIRING_NOT_ALLOWED: |
244 | 0 | case HCI_INSUFFICIENT_SECURITY: |
245 | 0 | return EACCES; |
246 | 0 | case HCI_UNSUPPORTED_REMOTE_FEATURE: |
247 | 0 | return EPROTONOSUPPORT; |
248 | 0 | case HCI_SCO_OFFSET_REJECTED: |
249 | 0 | return ECONNREFUSED; |
250 | 0 | case HCI_UNKNOWN_LMP_PDU: |
251 | 0 | case HCI_INVALID_LMP_PARAMETERS: |
252 | 0 | case HCI_LMP_ERROR_TRANSACTION_COLLISION: |
253 | 0 | case HCI_LMP_PDU_NOT_ALLOWED: |
254 | 0 | case HCI_ENCRYPTION_MODE_NOT_ACCEPTED: |
255 | 0 | return EPROTO; |
256 | 0 | default: |
257 | 0 | return ENOSYS; |
258 | 0 | } |
259 | 0 | } |
260 | | |
261 | | const char *bt_compidtostr(int compid) |
262 | 2.45k | { |
263 | 2.45k | switch (compid) { |
264 | 11 | case 0: |
265 | 11 | return "Ericsson Technology Licensing"; |
266 | 1 | case 1: |
267 | 1 | return "Nokia Mobile Phones"; |
268 | 1 | case 2: |
269 | 1 | return "Intel Corp."; |
270 | 1 | case 3: |
271 | 1 | return "IBM Corp."; |
272 | 1 | case 4: |
273 | 1 | return "Toshiba Corp."; |
274 | 2 | case 5: |
275 | 2 | return "3Com"; |
276 | 1 | case 6: |
277 | 1 | return "Microsoft"; |
278 | 1 | case 7: |
279 | 1 | return "Lucent"; |
280 | 1 | case 8: |
281 | 1 | return "Motorola"; |
282 | 1 | case 9: |
283 | 1 | return "Infineon Technologies AG"; |
284 | 1 | case 10: |
285 | 1 | return "Cambridge Silicon Radio"; |
286 | 1 | case 11: |
287 | 1 | return "Silicon Wave"; |
288 | 1 | case 12: |
289 | 1 | return "Digianswer A/S"; |
290 | 1 | case 13: |
291 | 1 | return "Texas Instruments Inc."; |
292 | 1 | case 14: |
293 | 1 | return "Parthus Technologies Inc."; |
294 | 1 | case 15: |
295 | 1 | return "Broadcom Corporation"; |
296 | 1 | case 16: |
297 | 1 | return "Mitel Semiconductor"; |
298 | 2 | case 17: |
299 | 2 | return "Widcomm, Inc."; |
300 | 1 | case 18: |
301 | 1 | return "Zeevo, Inc."; |
302 | 1 | case 19: |
303 | 1 | return "Atmel Corporation"; |
304 | 1 | case 20: |
305 | 1 | return "Mitsubishi Electric Corporation"; |
306 | 1 | case 21: |
307 | 1 | return "RTX Telecom A/S"; |
308 | 1 | case 22: |
309 | 1 | return "KC Technology Inc."; |
310 | 1 | case 23: |
311 | 1 | return "Newlogic"; |
312 | 1 | case 24: |
313 | 1 | return "Transilica, Inc."; |
314 | 1 | case 25: |
315 | 1 | return "Rohde & Schwarz GmbH & Co. KG"; |
316 | 1 | case 26: |
317 | 1 | return "TTPCom Limited"; |
318 | 1 | case 27: |
319 | 1 | return "Signia Technologies, Inc."; |
320 | 1 | case 28: |
321 | 1 | return "Conexant Systems Inc."; |
322 | 1 | case 29: |
323 | 1 | return "Qualcomm"; |
324 | 1 | case 30: |
325 | 1 | return "Inventel"; |
326 | 1 | case 31: |
327 | 1 | return "AVM Berlin"; |
328 | 1 | case 32: |
329 | 1 | return "BandSpeed, Inc."; |
330 | 1 | case 33: |
331 | 1 | return "Mansella Ltd"; |
332 | 1 | case 34: |
333 | 1 | return "NEC Corporation"; |
334 | 1 | case 35: |
335 | 1 | return "WavePlus Technology Co., Ltd."; |
336 | 1 | case 36: |
337 | 1 | return "Alcatel"; |
338 | 1 | case 37: |
339 | 1 | return "NXP Semiconductors (formerly Philips Semiconductors)"; |
340 | 1 | case 38: |
341 | 1 | return "C Technologies"; |
342 | 1 | case 39: |
343 | 1 | return "Open Interface"; |
344 | 1 | case 40: |
345 | 1 | return "R F Micro Devices"; |
346 | 1 | case 41: |
347 | 1 | return "Hitachi Ltd"; |
348 | 1 | case 42: |
349 | 1 | return "Symbol Technologies, Inc."; |
350 | 1 | case 43: |
351 | 1 | return "Tenovis"; |
352 | 1 | case 44: |
353 | 1 | return "Macronix International Co. Ltd."; |
354 | 1 | case 45: |
355 | 1 | return "GCT Semiconductor"; |
356 | 1 | case 46: |
357 | 1 | return "Norwood Systems"; |
358 | 1 | case 47: |
359 | 1 | return "MewTel Technology Inc."; |
360 | 1 | case 48: |
361 | 1 | return "ST Microelectronics"; |
362 | 1 | case 49: |
363 | 1 | return "Synopsys, Inc."; |
364 | 1 | case 50: |
365 | 1 | return "Red-M (Communications) Ltd"; |
366 | 1 | case 51: |
367 | 1 | return "Commil Ltd"; |
368 | 1 | case 52: |
369 | 1 | return "Computer Access Technology Corporation (CATC)"; |
370 | 1 | case 53: |
371 | 1 | return "Eclipse (HQ Espana) S.L."; |
372 | 1 | case 54: |
373 | 1 | return "Renesas Electronics Corporation"; |
374 | 1 | case 55: |
375 | 1 | return "Mobilian Corporation"; |
376 | 1 | case 56: |
377 | 1 | return "Syntronix Corporation"; |
378 | 1 | case 57: |
379 | 1 | return "Integrated System Solution Corp."; |
380 | 1 | case 58: |
381 | 1 | return "Panasonic Corporation (formerly Matsushita Electric Industrial Co., Ltd.)"; |
382 | 1 | case 59: |
383 | 1 | return "Gennum Corporation"; |
384 | 1 | case 60: |
385 | 1 | return "BlackBerry Limited (formerly Research In Motion)"; |
386 | 1 | case 61: |
387 | 1 | return "IPextreme, Inc."; |
388 | 1 | case 62: |
389 | 1 | return "Systems and Chips, Inc"; |
390 | 1 | case 63: |
391 | 1 | return "Bluetooth SIG, Inc"; |
392 | 1 | case 64: |
393 | 1 | return "Seiko Epson Corporation"; |
394 | 1 | case 65: |
395 | 1 | return "Integrated Silicon Solution Taiwan, Inc."; |
396 | 1 | case 66: |
397 | 1 | return "CONWISE Technology Corporation Ltd"; |
398 | 1 | case 67: |
399 | 1 | return "PARROT AUTOMOTIVE SAS"; |
400 | 1 | case 68: |
401 | 1 | return "Socket Mobile"; |
402 | 1 | case 69: |
403 | 1 | return "Atheros Communications, Inc."; |
404 | 2 | case 70: |
405 | 2 | return "MediaTek, Inc."; |
406 | 1 | case 71: |
407 | 1 | return "Bluegiga"; |
408 | 1 | case 72: |
409 | 1 | return "Marvell Technology Group Ltd."; |
410 | 1 | case 73: |
411 | 1 | return "3DSP Corporation"; |
412 | 1 | case 74: |
413 | 1 | return "Accel Semiconductor Ltd."; |
414 | 1 | case 75: |
415 | 1 | return "Continental Automotive Systems"; |
416 | 1 | case 76: |
417 | 1 | return "Apple, Inc."; |
418 | 1 | case 77: |
419 | 1 | return "Staccato Communications, Inc."; |
420 | 1 | case 78: |
421 | 1 | return "Avago Technologies"; |
422 | 1 | case 79: |
423 | 1 | return "APT Ltd."; |
424 | 1 | case 80: |
425 | 1 | return "SiRF Technology, Inc."; |
426 | 1 | case 81: |
427 | 1 | return "Tzero Technologies, Inc."; |
428 | 1 | case 82: |
429 | 1 | return "J&M Corporation"; |
430 | 1 | case 83: |
431 | 1 | return "Free2move AB"; |
432 | 1 | case 84: |
433 | 1 | return "3DiJoy Corporation"; |
434 | 1 | case 85: |
435 | 1 | return "Plantronics, Inc."; |
436 | 1 | case 86: |
437 | 1 | return "Sony Ericsson Mobile Communications"; |
438 | 1 | case 87: |
439 | 1 | return "Harman International Industries, Inc."; |
440 | 1 | case 88: |
441 | 1 | return "Vizio, Inc."; |
442 | 1 | case 89: |
443 | 1 | return "Nordic Semiconductor ASA"; |
444 | 1 | case 90: |
445 | 1 | return "EM Microelectronic-Marin SA"; |
446 | 1 | case 91: |
447 | 1 | return "Ralink Technology Corporation"; |
448 | 1 | case 92: |
449 | 1 | return "Belkin International, Inc."; |
450 | 1 | case 93: |
451 | 1 | return "Realtek Semiconductor Corporation"; |
452 | 1 | case 94: |
453 | 1 | return "Stonestreet One, LLC"; |
454 | 1 | case 95: |
455 | 1 | return "Wicentric, Inc."; |
456 | 1 | case 96: |
457 | 1 | return "RivieraWaves S.A.S"; |
458 | 1 | case 97: |
459 | 1 | return "RDA Microelectronics"; |
460 | 1 | case 98: |
461 | 1 | return "Gibson Guitars"; |
462 | 1 | case 99: |
463 | 1 | return "MiCommand Inc."; |
464 | 1 | case 100: |
465 | 1 | return "Band XI International, LLC"; |
466 | 1 | case 101: |
467 | 1 | return "Hewlett-Packard Company"; |
468 | 1 | case 102: |
469 | 1 | return "9Solutions Oy"; |
470 | 1 | case 103: |
471 | 1 | return "GN Netcom A/S"; |
472 | 1 | case 104: |
473 | 1 | return "General Motors"; |
474 | 1 | case 105: |
475 | 1 | return "A&D Engineering, Inc."; |
476 | 1 | case 106: |
477 | 1 | return "MindTree Ltd."; |
478 | 1 | case 107: |
479 | 1 | return "Polar Electro OY"; |
480 | 1 | case 108: |
481 | 1 | return "Beautiful Enterprise Co., Ltd."; |
482 | 1 | case 109: |
483 | 1 | return "BriarTek, Inc"; |
484 | 1 | case 110: |
485 | 1 | return "Summit Data Communications, Inc."; |
486 | 1 | case 111: |
487 | 1 | return "Sound ID"; |
488 | 1 | case 112: |
489 | 1 | return "Monster, LLC"; |
490 | 1 | case 113: |
491 | 1 | return "connectBlue AB"; |
492 | 1 | case 114: |
493 | 1 | return "ShangHai Super Smart Electronics Co. Ltd."; |
494 | 1 | case 115: |
495 | 1 | return "Group Sense Ltd."; |
496 | 1 | case 116: |
497 | 1 | return "Zomm, LLC"; |
498 | 1 | case 117: |
499 | 1 | return "Samsung Electronics Co. Ltd."; |
500 | 1 | case 118: |
501 | 1 | return "Creative Technology Ltd."; |
502 | 1 | case 119: |
503 | 1 | return "Laird Technologies"; |
504 | 1 | case 120: |
505 | 1 | return "Nike, Inc."; |
506 | 1 | case 121: |
507 | 1 | return "lesswire AG"; |
508 | 1 | case 122: |
509 | 1 | return "MStar Semiconductor, Inc."; |
510 | 1 | case 123: |
511 | 1 | return "Hanlynn Technologies"; |
512 | 1 | case 124: |
513 | 1 | return "A & R Cambridge"; |
514 | 1 | case 125: |
515 | 1 | return "Seers Technology Co., Ltd."; |
516 | 1 | case 126: |
517 | 1 | return "Sports Tracking Technologies Ltd."; |
518 | 1 | case 127: |
519 | 1 | return "Autonet Mobile"; |
520 | 1 | case 128: |
521 | 1 | return "DeLorme Publishing Company, Inc."; |
522 | 1 | case 129: |
523 | 1 | return "WuXi Vimicro"; |
524 | 1 | case 130: |
525 | 1 | return "Sennheiser Communications A/S"; |
526 | 1 | case 131: |
527 | 1 | return "TimeKeeping Systems, Inc."; |
528 | 1 | case 132: |
529 | 1 | return "Ludus Helsinki Ltd."; |
530 | 1 | case 133: |
531 | 1 | return "BlueRadios, Inc."; |
532 | 1 | case 134: |
533 | 1 | return "Equinux AG"; |
534 | 1 | case 135: |
535 | 1 | return "Garmin International, Inc."; |
536 | 1 | case 136: |
537 | 1 | return "Ecotest"; |
538 | 1 | case 137: |
539 | 1 | return "GN ReSound A/S"; |
540 | 1 | case 138: |
541 | 1 | return "Jawbone"; |
542 | 1 | case 139: |
543 | 1 | return "Topcon Positioning Systems, LLC"; |
544 | 1 | case 140: |
545 | 1 | return "Gimbal Inc. (formerly Qualcomm Labs, Inc. and Qualcomm Retail Solutions, Inc.)"; |
546 | 1 | case 141: |
547 | 1 | return "Zscan Software"; |
548 | 1 | case 142: |
549 | 1 | return "Quintic Corp"; |
550 | 1 | case 143: |
551 | 1 | return "Telit Wireless Solutions GmbH (formerly Stollmann E+V GmbH)"; |
552 | 1 | case 144: |
553 | 1 | return "Funai Electric Co., Ltd."; |
554 | 1 | case 145: |
555 | 1 | return "Advanced PANMOBIL systems GmbH & Co. KG"; |
556 | 1 | case 146: |
557 | 1 | return "ThinkOptics, Inc."; |
558 | 1 | case 147: |
559 | 1 | return "Universal Electronics, Inc."; |
560 | 1 | case 148: |
561 | 1 | return "Airoha Technology Corp."; |
562 | 1 | case 149: |
563 | 1 | return "NEC Lighting, Ltd."; |
564 | 1 | case 150: |
565 | 1 | return "ODM Technology, Inc."; |
566 | 1 | case 151: |
567 | 1 | return "ConnecteDevice Ltd."; |
568 | 1 | case 152: |
569 | 1 | return "zero1.tv GmbH"; |
570 | 1 | case 153: |
571 | 1 | return "i.Tech Dynamic Global Distribution Ltd."; |
572 | 1 | case 154: |
573 | 1 | return "Alpwise"; |
574 | 1 | case 155: |
575 | 1 | return "Jiangsu Toppower Automotive Electronics Co., Ltd."; |
576 | 1 | case 156: |
577 | 1 | return "Colorfy, Inc."; |
578 | 1 | case 157: |
579 | 1 | return "Geoforce Inc."; |
580 | 1 | case 158: |
581 | 1 | return "Bose Corporation"; |
582 | 1 | case 159: |
583 | 1 | return "Suunto Oy"; |
584 | 1 | case 160: |
585 | 1 | return "Kensington Computer Products Group"; |
586 | 1 | case 161: |
587 | 1 | return "SR-Medizinelektronik"; |
588 | 1 | case 162: |
589 | 1 | return "Vertu Corporation Limited"; |
590 | 1 | case 163: |
591 | 1 | return "Meta Watch Ltd."; |
592 | 1 | case 164: |
593 | 1 | return "LINAK A/S"; |
594 | 1 | case 165: |
595 | 1 | return "OTL Dynamics LLC"; |
596 | 1 | case 166: |
597 | 1 | return "Panda Ocean Inc."; |
598 | 1 | case 167: |
599 | 1 | return "Visteon Corporation"; |
600 | 1 | case 168: |
601 | 1 | return "ARP Devices Limited"; |
602 | 1 | case 169: |
603 | 1 | return "MARELLI EUROPE S.P.A. (formerly Magneti Marelli S.p.A.)"; |
604 | 1 | case 170: |
605 | 1 | return "CAEN RFID srl"; |
606 | 1 | case 171: |
607 | 1 | return "Ingenieur-Systemgruppe Zahn GmbH"; |
608 | 1 | case 172: |
609 | 1 | return "Green Throttle Games"; |
610 | 1 | case 173: |
611 | 1 | return "Peter Systemtechnik GmbH"; |
612 | 1 | case 174: |
613 | 1 | return "Omegawave Oy"; |
614 | 1 | case 175: |
615 | 1 | return "Cinetix"; |
616 | 1 | case 176: |
617 | 1 | return "Passif Semiconductor Corp"; |
618 | 1 | case 177: |
619 | 1 | return "Saris Cycling Group, Inc"; |
620 | 1 | case 178: |
621 | 1 | return "Bekey A/S"; |
622 | 1 | case 179: |
623 | 1 | return "Clarinox Technologies Pty. Ltd."; |
624 | 1 | case 180: |
625 | 1 | return "BDE Technology Co., Ltd."; |
626 | 1 | case 181: |
627 | 1 | return "Swirl Networks"; |
628 | 1 | case 182: |
629 | 1 | return "Meso international"; |
630 | 1 | case 183: |
631 | 1 | return "TreLab Ltd"; |
632 | 1 | case 184: |
633 | 1 | return "Qualcomm Innovation Center, Inc. (QuIC)"; |
634 | 1 | case 185: |
635 | 1 | return "Johnson Controls, Inc."; |
636 | 1 | case 186: |
637 | 1 | return "Starkey Laboratories Inc."; |
638 | 1 | case 187: |
639 | 1 | return "S-Power Electronics Limited"; |
640 | 1 | case 188: |
641 | 1 | return "Ace Sensor Inc"; |
642 | 1 | case 189: |
643 | 1 | return "Aplix Corporation"; |
644 | 1 | case 190: |
645 | 1 | return "AAMP of America"; |
646 | 1 | case 191: |
647 | 1 | return "Stalmart Technology Limited"; |
648 | 1 | case 192: |
649 | 1 | return "AMICCOM Electronics Corporation"; |
650 | 1 | case 193: |
651 | 1 | return "Shenzhen Excelsecu Data Technology Co.,Ltd"; |
652 | 1 | case 194: |
653 | 1 | return "Geneq Inc."; |
654 | 1 | case 195: |
655 | 1 | return "adidas AG"; |
656 | 1 | case 196: |
657 | 1 | return "LG Electronics"; |
658 | 1 | case 197: |
659 | 1 | return "Onset Computer Corporation"; |
660 | 1 | case 198: |
661 | 1 | return "Selfly BV"; |
662 | 1 | case 199: |
663 | 1 | return "Quuppa Oy."; |
664 | 1 | case 200: |
665 | 1 | return "GeLo Inc"; |
666 | 1 | case 201: |
667 | 1 | return "Evluma"; |
668 | 2 | case 202: |
669 | 2 | return "MC10"; |
670 | 1 | case 203: |
671 | 1 | return "Binauric SE"; |
672 | 1 | case 204: |
673 | 1 | return "Beats Electronics"; |
674 | 1 | case 205: |
675 | 1 | return "Microchip Technology Inc."; |
676 | 1 | case 206: |
677 | 1 | return "Elgato Systems GmbH"; |
678 | 1 | case 207: |
679 | 1 | return "ARCHOS SA"; |
680 | 1 | case 208: |
681 | 1 | return "Dexcom, Inc."; |
682 | 1 | case 209: |
683 | 1 | return "Polar Electro Europe B.V."; |
684 | 1 | case 210: |
685 | 1 | return "Dialog Semiconductor B.V."; |
686 | 1 | case 211: |
687 | 1 | return "Taixingbang Technology (HK) Co,. LTD."; |
688 | 1 | case 212: |
689 | 1 | return "Kawantech"; |
690 | 1 | case 213: |
691 | 1 | return "Austco Communication Systems"; |
692 | 1 | case 214: |
693 | 1 | return "Timex Group USA, Inc."; |
694 | 1 | case 215: |
695 | 1 | return "Qualcomm Technologies, Inc."; |
696 | 1 | case 216: |
697 | 1 | return "Qualcomm Connected Experiences, Inc."; |
698 | 1 | case 217: |
699 | 1 | return "Voyetra Turtle Beach"; |
700 | 1 | case 218: |
701 | 1 | return "txtr GmbH"; |
702 | 1 | case 219: |
703 | 1 | return "Biosentronics"; |
704 | 1 | case 220: |
705 | 1 | return "Procter & Gamble"; |
706 | 1 | case 221: |
707 | 1 | return "Hosiden Corporation"; |
708 | 1 | case 222: |
709 | 1 | return "Muzik LLC"; |
710 | 1 | case 223: |
711 | 1 | return "Misfit Wearables Corp"; |
712 | 1 | case 224: |
713 | 1 | return "Google"; |
714 | 1 | case 225: |
715 | 1 | return "Danlers Ltd"; |
716 | 1 | case 226: |
717 | 1 | return "Semilink Inc"; |
718 | 1 | case 227: |
719 | 1 | return "inMusic Brands, Inc"; |
720 | 1 | case 228: |
721 | 1 | return "L.S. Research Inc."; |
722 | 1 | case 229: |
723 | 1 | return "Eden Software Consultants Ltd."; |
724 | 1 | case 230: |
725 | 1 | return "Freshtemp"; |
726 | 1 | case 231: |
727 | 1 | return "KS Technologies"; |
728 | 1 | case 232: |
729 | 1 | return "ACTS Technologies"; |
730 | 1 | case 233: |
731 | 1 | return "Vtrack Systems"; |
732 | 1 | case 234: |
733 | 1 | return "Nielsen-Kellerman Company"; |
734 | 1 | case 235: |
735 | 1 | return "Server Technology Inc."; |
736 | 1 | case 236: |
737 | 1 | return "BioResearch Associates"; |
738 | 1 | case 237: |
739 | 1 | return "Jolly Logic, LLC"; |
740 | 1 | case 238: |
741 | 1 | return "Above Average Outcomes, Inc."; |
742 | 1 | case 239: |
743 | 1 | return "Bitsplitters GmbH"; |
744 | 1 | case 240: |
745 | 1 | return "PayPal, Inc."; |
746 | 1 | case 241: |
747 | 1 | return "Witron Technology Limited"; |
748 | 1 | case 242: |
749 | 1 | return "Morse Project Inc."; |
750 | 1 | case 243: |
751 | 1 | return "Kent Displays Inc."; |
752 | 1 | case 244: |
753 | 1 | return "Nautilus Inc."; |
754 | 1 | case 245: |
755 | 1 | return "Smartifier Oy"; |
756 | 1 | case 246: |
757 | 1 | return "Elcometer Limited"; |
758 | 1 | case 247: |
759 | 1 | return "VSN Technologies, Inc."; |
760 | 2 | case 248: |
761 | 2 | return "AceUni Corp., Ltd."; |
762 | 1 | case 249: |
763 | 1 | return "StickNFind"; |
764 | 1 | case 250: |
765 | 1 | return "Crystal Code AB"; |
766 | 1 | case 251: |
767 | 1 | return "KOUKAAM a.s."; |
768 | 1 | case 252: |
769 | 1 | return "Delphi Corporation"; |
770 | 1 | case 253: |
771 | 1 | return "ValenceTech Limited"; |
772 | 1 | case 254: |
773 | 1 | return "Stanley Black and Decker"; |
774 | 1 | case 255: |
775 | 1 | return "Typo Products, LLC"; |
776 | 1 | case 256: |
777 | 1 | return "TomTom International BV"; |
778 | 1 | case 257: |
779 | 1 | return "Fugoo, Inc."; |
780 | 1 | case 258: |
781 | 1 | return "Keiser Corporation"; |
782 | 1 | case 259: |
783 | 1 | return "Bang & Olufsen A/S"; |
784 | 1 | case 260: |
785 | 1 | return "PLUS Location Systems Pty Ltd"; |
786 | 1 | case 261: |
787 | 1 | return "Ubiquitous Computing Technology Corporation"; |
788 | 1 | case 262: |
789 | 1 | return "Innovative Yachtter Solutions"; |
790 | 1 | case 263: |
791 | 1 | return "William Demant Holding A/S"; |
792 | 1 | case 264: |
793 | 1 | return "Chicony Electronics Co., Ltd."; |
794 | 2 | case 265: |
795 | 2 | return "Atus BV"; |
796 | 1 | case 266: |
797 | 1 | return "Codegate Ltd"; |
798 | 1 | case 267: |
799 | 1 | return "ERi, Inc"; |
800 | 1 | case 268: |
801 | 1 | return "Transducers Direct, LLC"; |
802 | 2 | case 269: |
803 | 2 | return "DENSO TEN LIMITED (formerly Fujitsu Ten LImited)"; |
804 | 1 | case 270: |
805 | 1 | return "Audi AG"; |
806 | 1 | case 271: |
807 | 1 | return "HiSilicon Technologies CO., LIMITED"; |
808 | 1 | case 272: |
809 | 1 | return "Nippon Seiki Co., Ltd."; |
810 | 1 | case 273: |
811 | 1 | return "Steelseries ApS"; |
812 | 1 | case 274: |
813 | 1 | return "Visybl Inc."; |
814 | 1 | case 275: |
815 | 1 | return "Openbrain Technologies, Co., Ltd."; |
816 | 1 | case 276: |
817 | 1 | return "Xensr"; |
818 | 1 | case 277: |
819 | 1 | return "e.solutions"; |
820 | 1 | case 278: |
821 | 1 | return "10AK Technologies"; |
822 | 1 | case 279: |
823 | 1 | return "Wimoto Technologies Inc"; |
824 | 1 | case 280: |
825 | 1 | return "Radius Networks, Inc."; |
826 | 1 | case 281: |
827 | 1 | return "Wize Technology Co., Ltd."; |
828 | 1 | case 282: |
829 | 1 | return "Qualcomm Labs, Inc."; |
830 | 1 | case 283: |
831 | 1 | return "Aruba Networks"; |
832 | 1 | case 284: |
833 | 1 | return "Baidu"; |
834 | 1 | case 285: |
835 | 1 | return "Arendi AG"; |
836 | 1 | case 286: |
837 | 1 | return "Skoda Auto a.s."; |
838 | 1 | case 287: |
839 | 1 | return "Volkswagen AG"; |
840 | 1 | case 288: |
841 | 1 | return "Porsche AG"; |
842 | 1 | case 289: |
843 | 1 | return "Sino Wealth Electronic Ltd."; |
844 | 1 | case 290: |
845 | 1 | return "AirTurn, Inc."; |
846 | 1 | case 291: |
847 | 1 | return "Kinsa, Inc"; |
848 | 1 | case 292: |
849 | 1 | return "HID Global"; |
850 | 1 | case 293: |
851 | 1 | return "SEAT es"; |
852 | 1 | case 294: |
853 | 1 | return "Promethean Ltd."; |
854 | 1 | case 295: |
855 | 1 | return "Salutica Allied Solutions"; |
856 | 1 | case 296: |
857 | 1 | return "GPSI Group Pty Ltd"; |
858 | 1 | case 297: |
859 | 1 | return "Nimble Devices Oy"; |
860 | 1 | case 298: |
861 | 1 | return "Changzhou Yongse Infotech Co., Ltd."; |
862 | 1 | case 299: |
863 | 1 | return "SportIQ"; |
864 | 1 | case 300: |
865 | 1 | return "TEMEC Instruments B.V."; |
866 | 1 | case 301: |
867 | 1 | return "Sony Corporation"; |
868 | 1 | case 302: |
869 | 1 | return "ASSA ABLOY"; |
870 | 1 | case 303: |
871 | 1 | return "Clarion Co. Inc."; |
872 | 1 | case 304: |
873 | 1 | return "Warehouse Innovations"; |
874 | 1 | case 305: |
875 | 1 | return "Cypress Semiconductor"; |
876 | 1 | case 306: |
877 | 1 | return "MADS Inc"; |
878 | 1 | case 307: |
879 | 1 | return "Blue Maestro Limited"; |
880 | 1 | case 308: |
881 | 1 | return "Resolution Products, Ltd."; |
882 | 1 | case 309: |
883 | 1 | return "Aireware LLC"; |
884 | 1 | case 310: |
885 | 1 | return "Silvair, Inc."; |
886 | 1 | case 311: |
887 | 1 | return "Prestigio Plaza Ltd."; |
888 | 1 | case 312: |
889 | 1 | return "NTEO Inc."; |
890 | 1 | case 313: |
891 | 1 | return "Focus Systems Corporation"; |
892 | 1 | case 314: |
893 | 1 | return "Tencent Holdings Ltd."; |
894 | 1 | case 315: |
895 | 1 | return "Allegion"; |
896 | 1 | case 316: |
897 | 1 | return "Murata Manufacturing Co., Ltd."; |
898 | 1 | case 317: |
899 | 1 | return "WirelessWERX"; |
900 | 1 | case 318: |
901 | 1 | return "Nod, Inc."; |
902 | 1 | case 319: |
903 | 1 | return "B&B Manufacturing Company"; |
904 | 1 | case 320: |
905 | 1 | return "Alpine Electronics (China) Co., Ltd"; |
906 | 1 | case 321: |
907 | 1 | return "FedEx Services"; |
908 | 1 | case 322: |
909 | 1 | return "Grape Systems Inc."; |
910 | 1 | case 323: |
911 | 1 | return "Bkon Connect"; |
912 | 1 | case 324: |
913 | 1 | return "Lintech GmbH"; |
914 | 1 | case 325: |
915 | 1 | return "Novatel Wireless"; |
916 | 1 | case 326: |
917 | 1 | return "Ciright"; |
918 | 1 | case 327: |
919 | 1 | return "Mighty Cast, Inc."; |
920 | 1 | case 328: |
921 | 1 | return "Ambimat Electronics"; |
922 | 1 | case 329: |
923 | 1 | return "Perytons Ltd."; |
924 | 1 | case 330: |
925 | 1 | return "Tivoli Audio, LLC"; |
926 | 1 | case 331: |
927 | 1 | return "Master Lock"; |
928 | 1 | case 332: |
929 | 1 | return "Mesh-Net Ltd"; |
930 | 1 | case 333: |
931 | 1 | return "HUIZHOU DESAY SV AUTOMOTIVE CO., LTD."; |
932 | 1 | case 334: |
933 | 1 | return "Tangerine, Inc."; |
934 | 1 | case 335: |
935 | 1 | return "B&W Group Ltd."; |
936 | 1 | case 336: |
937 | 1 | return "Pioneer Corporation"; |
938 | 1 | case 337: |
939 | 1 | return "OnBeep"; |
940 | 1 | case 338: |
941 | 1 | return "Vernier Software & Technology"; |
942 | 1 | case 339: |
943 | 1 | return "ROL Ergo"; |
944 | 1 | case 340: |
945 | 1 | return "Pebble Technology"; |
946 | 1 | case 341: |
947 | 1 | return "NETATMO"; |
948 | 1 | case 342: |
949 | 1 | return "Accumulate AB"; |
950 | 1 | case 343: |
951 | 1 | return "Anhui Huami Information Technology Co., Ltd."; |
952 | 1 | case 344: |
953 | 1 | return "Inmite s.r.o."; |
954 | 1 | case 345: |
955 | 1 | return "ChefSteps, Inc."; |
956 | 1 | case 346: |
957 | 1 | return "micas AG"; |
958 | 1 | case 347: |
959 | 1 | return "Biomedical Research Ltd."; |
960 | 1 | case 348: |
961 | 1 | return "Pitius Tec S.L."; |
962 | 1 | case 349: |
963 | 1 | return "Estimote, Inc."; |
964 | 1 | case 350: |
965 | 1 | return "Unikey Technologies, Inc."; |
966 | 1 | case 351: |
967 | 1 | return "Timer Cap Co."; |
968 | 1 | case 352: |
969 | 1 | return "AwoX"; |
970 | 1 | case 353: |
971 | 1 | return "yikes"; |
972 | 1 | case 354: |
973 | 1 | return "MADSGlobalNZ Ltd."; |
974 | 1 | case 355: |
975 | 1 | return "PCH International"; |
976 | 1 | case 356: |
977 | 1 | return "Qingdao Yeelink Information Technology Co., Ltd."; |
978 | 1 | case 357: |
979 | 1 | return "Milwaukee Tool (Formally Milwaukee Electric Tools)"; |
980 | 1 | case 358: |
981 | 1 | return "MISHIK Pte Ltd"; |
982 | 1 | case 359: |
983 | 1 | return "Ascensia Diabetes Care US Inc."; |
984 | 1 | case 360: |
985 | 1 | return "Spicebox LLC"; |
986 | 1 | case 361: |
987 | 1 | return "emberlight"; |
988 | 1 | case 362: |
989 | 1 | return "Cooper-Atkins Corporation"; |
990 | 1 | case 363: |
991 | 1 | return "Qblinks"; |
992 | 1 | case 364: |
993 | 1 | return "MYSPHERA"; |
994 | 1 | case 365: |
995 | 1 | return "LifeScan Inc"; |
996 | 1 | case 366: |
997 | 1 | return "Volantic AB"; |
998 | 1 | case 367: |
999 | 1 | return "Podo Labs, Inc"; |
1000 | 1 | case 368: |
1001 | 1 | return "Roche Diabetes Care AG"; |
1002 | 1 | case 369: |
1003 | 1 | return "Amazon.com Services, LLC (formerly Amazon Fulfillment Service)"; |
1004 | 1 | case 370: |
1005 | 1 | return "Connovate Technology Private Limited"; |
1006 | 1 | case 371: |
1007 | 1 | return "Kocomojo, LLC"; |
1008 | 1 | case 372: |
1009 | 1 | return "Everykey Inc."; |
1010 | 1 | case 373: |
1011 | 1 | return "Dynamic Controls"; |
1012 | 1 | case 374: |
1013 | 1 | return "SentriLock"; |
1014 | 1 | case 375: |
1015 | 1 | return "I-SYST inc."; |
1016 | 1 | case 376: |
1017 | 1 | return "CASIO COMPUTER CO., LTD."; |
1018 | 1 | case 377: |
1019 | 1 | return "LAPIS Semiconductor Co., Ltd."; |
1020 | 1 | case 378: |
1021 | 1 | return "Telemonitor, Inc."; |
1022 | 1 | case 379: |
1023 | 1 | return "taskit GmbH"; |
1024 | 1 | case 380: |
1025 | 1 | return "Daimler AG"; |
1026 | 1 | case 381: |
1027 | 1 | return "BatAndCat"; |
1028 | 1 | case 382: |
1029 | 1 | return "BluDotz Ltd"; |
1030 | 1 | case 383: |
1031 | 1 | return "XTel Wireless ApS"; |
1032 | 1 | case 384: |
1033 | 1 | return "Gigaset Communications GmbH"; |
1034 | 1 | case 385: |
1035 | 1 | return "Gecko Health Innovations, Inc."; |
1036 | 1 | case 386: |
1037 | 1 | return "HOP Ubiquitous"; |
1038 | 1 | case 387: |
1039 | 1 | return "Walt Disney"; |
1040 | 1 | case 388: |
1041 | 1 | return "Nectar"; |
1042 | 1 | case 389: |
1043 | 1 | return "bel'apps LLC"; |
1044 | 1 | case 390: |
1045 | 1 | return "CORE Lighting Ltd"; |
1046 | 1 | case 391: |
1047 | 1 | return "Seraphim Sense Ltd"; |
1048 | 1 | case 392: |
1049 | 1 | return "Unico RBC"; |
1050 | 1 | case 393: |
1051 | 1 | return "Physical Enterprises Inc."; |
1052 | 1 | case 394: |
1053 | 1 | return "Able Trend Technology Limited"; |
1054 | 1 | case 395: |
1055 | 1 | return "Konica Minolta, Inc."; |
1056 | 1 | case 396: |
1057 | 1 | return "Wilo SE"; |
1058 | 1 | case 397: |
1059 | 1 | return "Extron Design Services"; |
1060 | 1 | case 398: |
1061 | 1 | return "Fitbit, Inc."; |
1062 | 1 | case 399: |
1063 | 1 | return "Fireflies Systems"; |
1064 | 1 | case 400: |
1065 | 1 | return "Intelletto Technologies Inc."; |
1066 | 1 | case 401: |
1067 | 1 | return "FDK CORPORATION"; |
1068 | 1 | case 402: |
1069 | 1 | return "Cloudleaf, Inc"; |
1070 | 1 | case 403: |
1071 | 1 | return "Maveric Automation LLC"; |
1072 | 1 | case 404: |
1073 | 1 | return "Acoustic Stream Corporation"; |
1074 | 1 | case 405: |
1075 | 1 | return "Zuli"; |
1076 | 1 | case 406: |
1077 | 1 | return "Paxton Access Ltd"; |
1078 | 1 | case 407: |
1079 | 1 | return "WiSilica Inc."; |
1080 | 1 | case 408: |
1081 | 1 | return "VENGIT Korlatolt Felelossegu Tarsasag"; |
1082 | 1 | case 409: |
1083 | 1 | return "SALTO SYSTEMS S.L."; |
1084 | 1 | case 410: |
1085 | 1 | return "TRON Forum (formerly T-Engine Forum)"; |
1086 | 1 | case 411: |
1087 | 1 | return "CUBETECH s.r.o."; |
1088 | 1 | case 412: |
1089 | 1 | return "Cokiya Incorporated"; |
1090 | 1 | case 413: |
1091 | 1 | return "CVS Health"; |
1092 | 1 | case 414: |
1093 | 1 | return "Ceruus"; |
1094 | 1 | case 415: |
1095 | 1 | return "Strainstall Ltd"; |
1096 | 1 | case 416: |
1097 | 1 | return "Channel Enterprises (HK) Ltd."; |
1098 | 1 | case 417: |
1099 | 1 | return "FIAMM"; |
1100 | 1 | case 418: |
1101 | 1 | return "GIGALANE.CO.,LTD"; |
1102 | 1 | case 419: |
1103 | 1 | return "EROAD"; |
1104 | 1 | case 420: |
1105 | 1 | return "Mine Safety Appliances"; |
1106 | 1 | case 421: |
1107 | 1 | return "Icon Health and Fitness"; |
1108 | 1 | case 422: |
1109 | 1 | return "Wille Engineering (formerly as Asandoo GmbH)"; |
1110 | 1 | case 423: |
1111 | 1 | return "ENERGOUS CORPORATION"; |
1112 | 1 | case 424: |
1113 | 1 | return "Taobao"; |
1114 | 1 | case 425: |
1115 | 1 | return "Canon Inc."; |
1116 | 1 | case 426: |
1117 | 1 | return "Geophysical Technology Inc."; |
1118 | 1 | case 427: |
1119 | 1 | return "Facebook, Inc."; |
1120 | 1 | case 428: |
1121 | 1 | return "Trividia Health, Inc."; |
1122 | 1 | case 429: |
1123 | 1 | return "FlightSafety International"; |
1124 | 1 | case 430: |
1125 | 1 | return "Earlens Corporation"; |
1126 | 1 | case 431: |
1127 | 1 | return "Sunrise Micro Devices, Inc."; |
1128 | 1 | case 432: |
1129 | 1 | return "Star Micronics Co., Ltd."; |
1130 | 1 | case 433: |
1131 | 1 | return "Netizens Sp. z o.o."; |
1132 | 1 | case 434: |
1133 | 1 | return "Nymi Inc."; |
1134 | 1 | case 435: |
1135 | 1 | return "Nytec, Inc."; |
1136 | 1 | case 436: |
1137 | 1 | return "Trineo Sp. z o.o."; |
1138 | 1 | case 437: |
1139 | 1 | return "Nest Labs Inc."; |
1140 | 1 | case 438: |
1141 | 1 | return "LM Technologies Ltd"; |
1142 | 1 | case 439: |
1143 | 1 | return "General Electric Company"; |
1144 | 1 | case 440: |
1145 | 1 | return "i+D3 S.L."; |
1146 | 1 | case 441: |
1147 | 1 | return "HANA Micron"; |
1148 | 1 | case 442: |
1149 | 1 | return "Stages Cycling LLC"; |
1150 | 1 | case 443: |
1151 | 1 | return "Cochlear Bone Anchored Solutions AB"; |
1152 | 1 | case 444: |
1153 | 1 | return "SenionLab AB"; |
1154 | 1 | case 445: |
1155 | 1 | return "Syszone Co., Ltd"; |
1156 | 1 | case 446: |
1157 | 1 | return "Pulsate Mobile Ltd."; |
1158 | 1 | case 447: |
1159 | 1 | return "Hong Kong HunterSun Electronic Limited"; |
1160 | 1 | case 448: |
1161 | 1 | return "pironex GmbH"; |
1162 | 1 | case 449: |
1163 | 1 | return "BRADATECH Corp."; |
1164 | 1 | case 450: |
1165 | 1 | return "Transenergooil AG"; |
1166 | 1 | case 451: |
1167 | 1 | return "Bunch"; |
1168 | 1 | case 452: |
1169 | 1 | return "DME Microelectronics"; |
1170 | 1 | case 453: |
1171 | 1 | return "Bitcraze AB"; |
1172 | 1 | case 454: |
1173 | 1 | return "HASWARE Inc."; |
1174 | 1 | case 455: |
1175 | 1 | return "Abiogenix Inc."; |
1176 | 1 | case 456: |
1177 | 1 | return "Poly-Control ApS"; |
1178 | 1 | case 457: |
1179 | 1 | return "Avi-on"; |
1180 | 1 | case 458: |
1181 | 1 | return "Laerdal Medical AS"; |
1182 | 1 | case 459: |
1183 | 1 | return "Fetch My Pet"; |
1184 | 1 | case 460: |
1185 | 1 | return "Sam Labs Ltd."; |
1186 | 1 | case 461: |
1187 | 1 | return "Chengdu Synwing Technology Ltd"; |
1188 | 1 | case 462: |
1189 | 1 | return "HOUWA SYSTEM DESIGN, k.k."; |
1190 | 1 | case 463: |
1191 | 1 | return "BSH"; |
1192 | 1 | case 464: |
1193 | 1 | return "Primus Inter Pares Ltd"; |
1194 | 1 | case 465: |
1195 | 1 | return "August Home, Inc"; |
1196 | 1 | case 466: |
1197 | 1 | return "Gill Electronics"; |
1198 | 1 | case 467: |
1199 | 1 | return "Sky Wave Design"; |
1200 | 1 | case 468: |
1201 | 1 | return "Newlab S.r.l."; |
1202 | 1 | case 469: |
1203 | 1 | return "ELAD srl"; |
1204 | 1 | case 470: |
1205 | 1 | return "G-wearables inc."; |
1206 | 1 | case 471: |
1207 | 1 | return "Squadrone Systems Inc."; |
1208 | 1 | case 472: |
1209 | 1 | return "Code Corporation"; |
1210 | 1 | case 473: |
1211 | 1 | return "Savant Systems LLC"; |
1212 | 1 | case 474: |
1213 | 1 | return "Logitech International SA"; |
1214 | 1 | case 475: |
1215 | 1 | return "Innblue Consulting"; |
1216 | 1 | case 476: |
1217 | 1 | return "iParking Ltd."; |
1218 | 1 | case 477: |
1219 | 1 | return "Koninklijke Philips Electronics N.V."; |
1220 | 1 | case 478: |
1221 | 1 | return "Minelab Electronics Pty Limited"; |
1222 | 1 | case 479: |
1223 | 1 | return "Bison Group Ltd."; |
1224 | 1 | case 480: |
1225 | 1 | return "Widex A/S"; |
1226 | 1 | case 481: |
1227 | 1 | return "Jolla Ltd"; |
1228 | 1 | case 482: |
1229 | 1 | return "Lectronix, Inc."; |
1230 | 1 | case 483: |
1231 | 1 | return "Caterpillar Inc"; |
1232 | 1 | case 484: |
1233 | 1 | return "Freedom Innovations"; |
1234 | 1 | case 485: |
1235 | 1 | return "Dynamic Devices Ltd"; |
1236 | 1 | case 486: |
1237 | 1 | return "Technology Solutions (UK) Ltd"; |
1238 | 1 | case 487: |
1239 | 1 | return "IPS Group Inc."; |
1240 | 1 | case 488: |
1241 | 1 | return "STIR"; |
1242 | 1 | case 489: |
1243 | 1 | return "Sano, Inc."; |
1244 | 1 | case 490: |
1245 | 1 | return "Advanced Application Design, Inc."; |
1246 | 1 | case 491: |
1247 | 1 | return "AutoMap LLC"; |
1248 | 1 | case 492: |
1249 | 1 | return "Spreadtrum Communications Shanghai Ltd"; |
1250 | 1 | case 493: |
1251 | 1 | return "CuteCircuit LTD"; |
1252 | 1 | case 494: |
1253 | 1 | return "Valeo Service"; |
1254 | 1 | case 495: |
1255 | 1 | return "Fullpower Technologies, Inc."; |
1256 | 1 | case 496: |
1257 | 1 | return "KloudNation"; |
1258 | 1 | case 497: |
1259 | 1 | return "Zebra Technologies Corporation"; |
1260 | 1 | case 498: |
1261 | 1 | return "Itron, Inc."; |
1262 | 1 | case 499: |
1263 | 1 | return "The University of Tokyo"; |
1264 | 1 | case 500: |
1265 | 1 | return "UTC Fire and Security"; |
1266 | 1 | case 501: |
1267 | 1 | return "Cool Webthings Limited"; |
1268 | 1 | case 502: |
1269 | 1 | return "DJO Global"; |
1270 | 1 | case 503: |
1271 | 1 | return "Gelliner Limited"; |
1272 | 1 | case 504: |
1273 | 1 | return "Anyka (Guangzhou) Microelectronics Technology Co, LTD"; |
1274 | 1 | case 505: |
1275 | 1 | return "Medtronic Inc."; |
1276 | 1 | case 506: |
1277 | 1 | return "Gozio Inc."; |
1278 | 1 | case 507: |
1279 | 1 | return "Form Lifting, LLC"; |
1280 | 1 | case 508: |
1281 | 1 | return "Wahoo Fitness, LLC"; |
1282 | 1 | case 509: |
1283 | 1 | return "Kontakt Micro-Location Sp. z o.o."; |
1284 | 1 | case 510: |
1285 | 1 | return "Radio Systems Corporation"; |
1286 | 1 | case 511: |
1287 | 1 | return "Freescale Semiconductor, Inc."; |
1288 | 1 | case 512: |
1289 | 1 | return "Verifone Systems Pte Ltd. Taiwan Branch"; |
1290 | 1 | case 513: |
1291 | 1 | return "AR Timing"; |
1292 | 1 | case 514: |
1293 | 1 | return "Rigado LLC"; |
1294 | 1 | case 515: |
1295 | 1 | return "Kemppi Oy"; |
1296 | 1 | case 516: |
1297 | 1 | return "Tapcentive Inc."; |
1298 | 1 | case 517: |
1299 | 1 | return "Smartbotics Inc."; |
1300 | 1 | case 518: |
1301 | 1 | return "Otter Products, LLC"; |
1302 | 1 | case 519: |
1303 | 1 | return "STEMP Inc."; |
1304 | 1 | case 520: |
1305 | 1 | return "LumiGeek LLC"; |
1306 | 1 | case 521: |
1307 | 1 | return "InvisionHeart Inc."; |
1308 | 1 | case 522: |
1309 | 1 | return "Macnica Inc."; |
1310 | 1 | case 523: |
1311 | 1 | return "Jaguar Land Rover Limited"; |
1312 | 1 | case 524: |
1313 | 1 | return "CoroWare Technologies, Inc"; |
1314 | 1 | case 525: |
1315 | 1 | return "Simplo Technology Co., LTD"; |
1316 | 1 | case 526: |
1317 | 1 | return "Omron Healthcare Co., LTD"; |
1318 | 1 | case 527: |
1319 | 1 | return "Comodule GMBH"; |
1320 | 1 | case 528: |
1321 | 1 | return "ikeGPS"; |
1322 | 1 | case 529: |
1323 | 1 | return "Telink Semiconductor Co. Ltd"; |
1324 | 1 | case 530: |
1325 | 1 | return "Interplan Co., Ltd"; |
1326 | 1 | case 531: |
1327 | 1 | return "Wyler AG"; |
1328 | 1 | case 532: |
1329 | 1 | return "IK Multimedia Production srl"; |
1330 | 1 | case 533: |
1331 | 1 | return "Lukoton Experience Oy"; |
1332 | 1 | case 534: |
1333 | 1 | return "MTI Ltd"; |
1334 | 1 | case 535: |
1335 | 1 | return "Tech4home, Lda"; |
1336 | 1 | case 536: |
1337 | 1 | return "Hiotech AB"; |
1338 | 1 | case 537: |
1339 | 1 | return "DOTT Limited"; |
1340 | 1 | case 538: |
1341 | 1 | return "Blue Speck Labs, LLC"; |
1342 | 1 | case 539: |
1343 | 1 | return "Cisco Systems, Inc"; |
1344 | 1 | case 540: |
1345 | 1 | return "Mobicomm Inc"; |
1346 | 1 | case 541: |
1347 | 1 | return "Edamic"; |
1348 | 1 | case 542: |
1349 | 1 | return "Goodnet, Ltd"; |
1350 | 1 | case 543: |
1351 | 1 | return "Luster Leaf Products Inc"; |
1352 | 1 | case 544: |
1353 | 1 | return "Manus Machina BV"; |
1354 | 1 | case 545: |
1355 | 1 | return "Mobiquity Networks Inc"; |
1356 | 1 | case 546: |
1357 | 1 | return "Praxis Dynamics"; |
1358 | 1 | case 547: |
1359 | 1 | return "Philip Morris Products S.A."; |
1360 | 1 | case 548: |
1361 | 1 | return "Comarch SA"; |
1362 | 1 | case 549: |
1363 | 1 | return "Nestlé Nespresso S.A."; |
1364 | 1 | case 550: |
1365 | 1 | return "Merlinia A/S"; |
1366 | 1 | case 551: |
1367 | 1 | return "LifeBEAM Technologies"; |
1368 | 1 | case 552: |
1369 | 1 | return "Twocanoes Labs, LLC"; |
1370 | 1 | case 553: |
1371 | 1 | return "Muoverti Limited"; |
1372 | 1 | case 554: |
1373 | 1 | return "Stamer Musikanlagen GMBH"; |
1374 | 1 | case 555: |
1375 | 1 | return "Tesla Motors"; |
1376 | 1 | case 556: |
1377 | 1 | return "Pharynks Corporation"; |
1378 | 1 | case 557: |
1379 | 1 | return "Lupine"; |
1380 | 1 | case 558: |
1381 | 1 | return "Siemens AG"; |
1382 | 1 | case 559: |
1383 | 1 | return "Huami (Shanghai) Culture Communication CO., LTD"; |
1384 | 1 | case 560: |
1385 | 1 | return "Foster Electric Company, Ltd"; |
1386 | 1 | case 561: |
1387 | 1 | return "ETA SA"; |
1388 | 1 | case 562: |
1389 | 1 | return "x-Senso Solutions Kft"; |
1390 | 1 | case 563: |
1391 | 1 | return "Shenzhen SuLong Communication Ltd"; |
1392 | 1 | case 564: |
1393 | 1 | return "FengFan (BeiJing) Technology Co, Ltd"; |
1394 | 1 | case 565: |
1395 | 1 | return "Qrio Inc"; |
1396 | 1 | case 566: |
1397 | 1 | return "Pitpatpet Ltd"; |
1398 | 1 | case 567: |
1399 | 1 | return "MSHeli s.r.l."; |
1400 | 1 | case 568: |
1401 | 1 | return "Trakm8 Ltd"; |
1402 | 1 | case 569: |
1403 | 1 | return "JIN CO, Ltd"; |
1404 | 1 | case 570: |
1405 | 1 | return "Alatech Technology"; |
1406 | 1 | case 571: |
1407 | 1 | return "Beijing CarePulse Electronic Technology Co, Ltd"; |
1408 | 1 | case 572: |
1409 | 1 | return "Awarepoint"; |
1410 | 1 | case 573: |
1411 | 1 | return "ViCentra B.V."; |
1412 | 1 | case 574: |
1413 | 1 | return "Raven Industries"; |
1414 | 1 | case 575: |
1415 | 1 | return "WaveWare Technologies Inc."; |
1416 | 1 | case 576: |
1417 | 1 | return "Argenox Technologies"; |
1418 | 1 | case 577: |
1419 | 1 | return "Bragi GmbH"; |
1420 | 1 | case 578: |
1421 | 1 | return "16Lab Inc"; |
1422 | 1 | case 579: |
1423 | 1 | return "Masimo Corp"; |
1424 | 1 | case 580: |
1425 | 1 | return "Iotera Inc"; |
1426 | 1 | case 581: |
1427 | 1 | return "Endress+Hauser "; |
1428 | 1 | case 582: |
1429 | 1 | return "ACKme Networks, Inc."; |
1430 | 1 | case 583: |
1431 | 1 | return "FiftyThree Inc."; |
1432 | 1 | case 584: |
1433 | 1 | return "Parker Hannifin Corp"; |
1434 | 1 | case 585: |
1435 | 1 | return "Transcranial Ltd"; |
1436 | 1 | case 586: |
1437 | 1 | return "Uwatec AG"; |
1438 | 1 | case 587: |
1439 | 1 | return "Orlan LLC"; |
1440 | 1 | case 588: |
1441 | 1 | return "Blue Clover Devices"; |
1442 | 1 | case 589: |
1443 | 1 | return "M-Way Solutions GmbH"; |
1444 | 1 | case 590: |
1445 | 1 | return "Microtronics Engineering GmbH"; |
1446 | 1 | case 591: |
1447 | 1 | return "Schneider Schreibgeräte GmbH"; |
1448 | 1 | case 592: |
1449 | 1 | return "Sapphire Circuits LLC"; |
1450 | 1 | case 593: |
1451 | 1 | return "Lumo Bodytech Inc."; |
1452 | 1 | case 594: |
1453 | 1 | return "UKC Technosolution"; |
1454 | 1 | case 595: |
1455 | 1 | return "Xicato Inc."; |
1456 | 1 | case 596: |
1457 | 1 | return "Playbrush"; |
1458 | 1 | case 597: |
1459 | 1 | return "Dai Nippon Printing Co., Ltd."; |
1460 | 1 | case 598: |
1461 | 1 | return "G24 Power Limited"; |
1462 | 1 | case 599: |
1463 | 1 | return "AdBabble Local Commerce Inc."; |
1464 | 1 | case 600: |
1465 | 1 | return "Devialet SA"; |
1466 | 1 | case 601: |
1467 | 1 | return "ALTYOR"; |
1468 | 1 | case 602: |
1469 | 1 | return "University of Applied Sciences Valais/Haute Ecole Valaisanne"; |
1470 | 1 | case 603: |
1471 | 1 | return "Five Interactive, LLC dba Zendo"; |
1472 | 1 | case 604: |
1473 | 1 | return "NetEase(Hangzhou)Network co.Ltd."; |
1474 | 1 | case 605: |
1475 | 1 | return "Lexmark International Inc."; |
1476 | 1 | case 606: |
1477 | 1 | return "Fluke Corporation"; |
1478 | 1 | case 607: |
1479 | 1 | return "Yardarm Technologies"; |
1480 | 1 | case 608: |
1481 | 1 | return "SensaRx"; |
1482 | 1 | case 609: |
1483 | 1 | return "SECVRE GmbH"; |
1484 | 1 | case 610: |
1485 | 1 | return "Glacial Ridge Technologies"; |
1486 | 1 | case 611: |
1487 | 1 | return "Identiv, Inc."; |
1488 | 1 | case 612: |
1489 | 1 | return "DDS, Inc."; |
1490 | 1 | case 613: |
1491 | 1 | return "SMK Corporation"; |
1492 | 1 | case 614: |
1493 | 1 | return "Schawbel Technologies LLC"; |
1494 | 1 | case 615: |
1495 | 1 | return "XMI Systems SA"; |
1496 | 1 | case 616: |
1497 | 1 | return "Cerevo"; |
1498 | 1 | case 617: |
1499 | 1 | return "Torrox GmbH & Co KG"; |
1500 | 1 | case 618: |
1501 | 1 | return "Gemalto"; |
1502 | 1 | case 619: |
1503 | 1 | return "DEKA Research & Development Corp."; |
1504 | 1 | case 620: |
1505 | 1 | return "Domster Tadeusz Szydlowski"; |
1506 | 1 | case 621: |
1507 | 1 | return "Technogym SPA"; |
1508 | 1 | case 622: |
1509 | 1 | return "FLEURBAEY BVBA"; |
1510 | 1 | case 623: |
1511 | 1 | return "Aptcode Solutions"; |
1512 | 1 | case 624: |
1513 | 1 | return "LSI ADL Technology"; |
1514 | 1 | case 625: |
1515 | 1 | return "Animas Corp"; |
1516 | 1 | case 626: |
1517 | 1 | return "Alps Electric Co., Ltd."; |
1518 | 1 | case 627: |
1519 | 1 | return "OCEASOFT"; |
1520 | 1 | case 628: |
1521 | 1 | return "Motsai Research"; |
1522 | 1 | case 629: |
1523 | 1 | return "Geotab"; |
1524 | 1 | case 630: |
1525 | 1 | return "E.G.O. Elektro-Geraetebau GmbH"; |
1526 | 1 | case 631: |
1527 | 1 | return "bewhere inc"; |
1528 | 1 | case 632: |
1529 | 1 | return "Johnson Outdoors Inc"; |
1530 | 1 | case 633: |
1531 | 1 | return "steute Schaltgerate GmbH & Co. KG"; |
1532 | 1 | case 634: |
1533 | 1 | return "Ekomini inc."; |
1534 | 1 | case 635: |
1535 | 1 | return "DEFA AS"; |
1536 | 1 | case 636: |
1537 | 1 | return "Aseptika Ltd"; |
1538 | 1 | case 637: |
1539 | 1 | return "HUAWEI Technologies Co., Ltd."; |
1540 | 1 | case 638: |
1541 | 1 | return "HabitAware, LLC"; |
1542 | 1 | case 639: |
1543 | 1 | return "ruwido austria gmbh"; |
1544 | 1 | case 640: |
1545 | 1 | return "ITEC corporation"; |
1546 | 1 | case 641: |
1547 | 1 | return "StoneL"; |
1548 | 1 | case 642: |
1549 | 1 | return "Sonova AG"; |
1550 | 1 | case 643: |
1551 | 1 | return "Maven Machines, Inc."; |
1552 | 1 | case 644: |
1553 | 1 | return "Synapse Electronics"; |
1554 | 1 | case 645: |
1555 | 1 | return "Standard Innovation Inc."; |
1556 | 1 | case 646: |
1557 | 1 | return "RF Code, Inc."; |
1558 | 1 | case 647: |
1559 | 1 | return "Wally Ventures S.L."; |
1560 | 1 | case 648: |
1561 | 1 | return "Willowbank Electronics Ltd"; |
1562 | 1 | case 649: |
1563 | 1 | return "SK Telecom"; |
1564 | 1 | case 650: |
1565 | 1 | return "Jetro AS"; |
1566 | 1 | case 651: |
1567 | 1 | return "Code Gears LTD"; |
1568 | 1 | case 652: |
1569 | 1 | return "NANOLINK APS"; |
1570 | 1 | case 653: |
1571 | 1 | return "IF, LLC"; |
1572 | 1 | case 654: |
1573 | 1 | return "RF Digital Corp"; |
1574 | 1 | case 655: |
1575 | 1 | return "Church & Dwight Co., Inc"; |
1576 | 1 | case 656: |
1577 | 1 | return "Multibit Oy"; |
1578 | 1 | case 657: |
1579 | 1 | return "CliniCloud Inc"; |
1580 | 1 | case 658: |
1581 | 1 | return "SwiftSensors"; |
1582 | 1 | case 659: |
1583 | 1 | return "Blue Bite"; |
1584 | 1 | case 660: |
1585 | 1 | return "ELIAS GmbH"; |
1586 | 1 | case 661: |
1587 | 1 | return "Sivantos GmbH"; |
1588 | 1 | case 662: |
1589 | 1 | return "Petzl"; |
1590 | 1 | case 663: |
1591 | 1 | return "storm power ltd"; |
1592 | 1 | case 664: |
1593 | 1 | return "EISST Ltd"; |
1594 | 1 | case 665: |
1595 | 1 | return "Inexess Technology Simma KG"; |
1596 | 1 | case 666: |
1597 | 1 | return "Currant, Inc."; |
1598 | 1 | case 667: |
1599 | 1 | return "C2 Development, Inc."; |
1600 | 1 | case 668: |
1601 | 1 | return "Blue Sky Scientific, LLC"; |
1602 | 1 | case 669: |
1603 | 1 | return "ALOTTAZS LABS, LLC"; |
1604 | 1 | case 670: |
1605 | 1 | return "Kupson spol. s r.o."; |
1606 | 1 | case 671: |
1607 | 1 | return "Areus Engineering GmbH"; |
1608 | 1 | case 672: |
1609 | 1 | return "Impossible Camera GmbH"; |
1610 | 1 | case 673: |
1611 | 1 | return "InventureTrack Systems"; |
1612 | 1 | case 674: |
1613 | 1 | return "LockedUp"; |
1614 | 1 | case 675: |
1615 | 1 | return "Itude"; |
1616 | 1 | case 676: |
1617 | 1 | return "Pacific Lock Company"; |
1618 | 1 | case 677: |
1619 | 1 | return "Tendyron Corporation ( 天地融科技股份有限公司 )"; |
1620 | 1 | case 678: |
1621 | 1 | return "Robert Bosch GmbH"; |
1622 | 1 | case 679: |
1623 | 1 | return "Illuxtron international B.V."; |
1624 | 1 | case 680: |
1625 | 1 | return "miSport Ltd."; |
1626 | 1 | case 681: |
1627 | 1 | return "Chargelib"; |
1628 | 1 | case 682: |
1629 | 1 | return "Doppler Lab"; |
1630 | 1 | case 683: |
1631 | 1 | return "BBPOS Limited"; |
1632 | 1 | case 684: |
1633 | 1 | return "RTB Elektronik GmbH & Co. KG"; |
1634 | 1 | case 685: |
1635 | 1 | return "Rx Networks, Inc."; |
1636 | 1 | case 686: |
1637 | 1 | return "WeatherFlow, Inc."; |
1638 | 1 | case 687: |
1639 | 1 | return "Technicolor USA Inc."; |
1640 | 1 | case 688: |
1641 | 1 | return "Bestechnic(Shanghai),Ltd"; |
1642 | 1 | case 689: |
1643 | 1 | return "Raden Inc"; |
1644 | 1 | case 690: |
1645 | 1 | return "JouZen Oy"; |
1646 | 1 | case 691: |
1647 | 1 | return "CLABER S.P.A."; |
1648 | 1 | case 692: |
1649 | 1 | return "Hyginex, Inc."; |
1650 | 1 | case 693: |
1651 | 1 | return "HANSHIN ELECTRIC RAILWAY CO.,LTD."; |
1652 | 1 | case 694: |
1653 | 1 | return "Schneider Electric"; |
1654 | 1 | case 695: |
1655 | 1 | return "Oort Technologies LLC"; |
1656 | 1 | case 696: |
1657 | 1 | return "Chrono Therapeutics"; |
1658 | 1 | case 697: |
1659 | 1 | return "Rinnai Corporation"; |
1660 | 1 | case 698: |
1661 | 1 | return "Swissprime Technologies AG"; |
1662 | 1 | case 699: |
1663 | 1 | return "Koha.,Co.Ltd"; |
1664 | 1 | case 700: |
1665 | 1 | return "Genevac Ltd"; |
1666 | 1 | case 701: |
1667 | 1 | return "Chemtronics"; |
1668 | 1 | case 702: |
1669 | 1 | return "Seguro Technology Sp. z o.o."; |
1670 | 1 | case 703: |
1671 | 1 | return "Redbird Flight Simulations"; |
1672 | 1 | case 704: |
1673 | 1 | return "Dash Robotics"; |
1674 | 1 | case 705: |
1675 | 1 | return "LINE Corporation"; |
1676 | 1 | case 706: |
1677 | 1 | return "Guillemot Corporation"; |
1678 | 1 | case 707: |
1679 | 1 | return "Techtronic Power Tools Technology Limited"; |
1680 | 1 | case 708: |
1681 | 1 | return "Wilson Sporting Goods"; |
1682 | 1 | case 709: |
1683 | 1 | return "Lenovo (Singapore) Pte Ltd. ( 联想(新加坡) )"; |
1684 | 1 | case 710: |
1685 | 1 | return "Ayatan Sensors"; |
1686 | 1 | case 711: |
1687 | 1 | return "Electronics Tomorrow Limited"; |
1688 | 1 | case 712: |
1689 | 1 | return "VASCO Data Security International, Inc."; |
1690 | 1 | case 713: |
1691 | 1 | return "PayRange Inc."; |
1692 | 1 | case 714: |
1693 | 1 | return "ABOV Semiconductor"; |
1694 | 1 | case 715: |
1695 | 1 | return "AINA-Wireless Inc."; |
1696 | 1 | case 716: |
1697 | 1 | return "Eijkelkamp Soil & Water"; |
1698 | 1 | case 717: |
1699 | 1 | return "BMA ergonomics b.v."; |
1700 | 1 | case 718: |
1701 | 1 | return "Teva Branded Pharmaceutical Products R&D, Inc."; |
1702 | 1 | case 719: |
1703 | 1 | return "Anima"; |
1704 | 1 | case 720: |
1705 | 1 | return "3M"; |
1706 | 1 | case 721: |
1707 | 1 | return "Empatica Srl"; |
1708 | 1 | case 722: |
1709 | 1 | return "Afero, Inc."; |
1710 | 1 | case 723: |
1711 | 1 | return "Powercast Corporation"; |
1712 | 1 | case 724: |
1713 | 1 | return "Secuyou ApS"; |
1714 | 1 | case 725: |
1715 | 1 | return "OMRON Corporation"; |
1716 | 1 | case 726: |
1717 | 1 | return "Send Solutions"; |
1718 | 1 | case 727: |
1719 | 1 | return "NIPPON SYSTEMWARE CO.,LTD."; |
1720 | 1 | case 728: |
1721 | 1 | return "Neosfar"; |
1722 | 1 | case 729: |
1723 | 1 | return "Fliegl Agrartechnik GmbH"; |
1724 | 1 | case 730: |
1725 | 1 | return "Gilvader"; |
1726 | 1 | case 731: |
1727 | 1 | return "Digi International Inc (R)"; |
1728 | 1 | case 732: |
1729 | 1 | return "DeWalch Technologies, Inc."; |
1730 | 1 | case 733: |
1731 | 1 | return "Flint Rehabilitation Devices, LLC"; |
1732 | 1 | case 734: |
1733 | 1 | return "Samsung SDS Co., Ltd."; |
1734 | 1 | case 735: |
1735 | 1 | return "Blur Product Development"; |
1736 | 1 | case 736: |
1737 | 1 | return "University of Michigan"; |
1738 | 1 | case 737: |
1739 | 1 | return "Victron Energy BV"; |
1740 | 1 | case 738: |
1741 | 1 | return "NTT docomo"; |
1742 | 1 | case 739: |
1743 | 1 | return "Carmanah Technologies Corp."; |
1744 | 1 | case 740: |
1745 | 1 | return "Bytestorm Ltd."; |
1746 | 1 | case 741: |
1747 | 1 | return "Espressif Incorporated ( 乐鑫信息科技(上海)有限公司 )"; |
1748 | 1 | case 742: |
1749 | 1 | return "Unwire"; |
1750 | 1 | case 743: |
1751 | 1 | return "Connected Yard, Inc."; |
1752 | 1 | case 744: |
1753 | 1 | return "American Music Environments"; |
1754 | 1 | case 745: |
1755 | 1 | return "Sensogram Technologies, Inc."; |
1756 | 1 | case 746: |
1757 | 1 | return "Fujitsu Limited"; |
1758 | 1 | case 747: |
1759 | 1 | return "Ardic Technology"; |
1760 | 1 | case 748: |
1761 | 1 | return "Delta Systems, Inc"; |
1762 | 1 | case 749: |
1763 | 1 | return "HTC Corporation"; |
1764 | 1 | case 750: |
1765 | 1 | return "Citizen Holdings Co., Ltd."; |
1766 | 1 | case 751: |
1767 | 1 | return "SMART-INNOVATION.inc"; |
1768 | 1 | case 752: |
1769 | 1 | return "Blackrat Software"; |
1770 | 1 | case 753: |
1771 | 1 | return "The Idea Cave, LLC"; |
1772 | 1 | case 754: |
1773 | 1 | return "GoPro, Inc."; |
1774 | 1 | case 755: |
1775 | 1 | return "AuthAir, Inc"; |
1776 | 1 | case 756: |
1777 | 1 | return "Vensi, Inc."; |
1778 | 1 | case 757: |
1779 | 1 | return "Indagem Tech LLC"; |
1780 | 1 | case 758: |
1781 | 1 | return "Intemo Technologies"; |
1782 | 1 | case 759: |
1783 | 1 | return "DreamVisions co., Ltd."; |
1784 | 1 | case 760: |
1785 | 1 | return "Runteq Oy Ltd"; |
1786 | 1 | case 761: |
1787 | 1 | return "IMAGINATION TECHNOLOGIES LTD"; |
1788 | 1 | case 762: |
1789 | 1 | return "CoSTAR Technologies"; |
1790 | 1 | case 763: |
1791 | 1 | return "Clarius Mobile Health Corp."; |
1792 | 1 | case 764: |
1793 | 1 | return "Shanghai Frequen Microelectronics Co., Ltd."; |
1794 | 1 | case 765: |
1795 | 1 | return "Uwanna, Inc."; |
1796 | 1 | case 766: |
1797 | 1 | return "Lierda Science & Technology Group Co., Ltd."; |
1798 | 1 | case 767: |
1799 | 1 | return "Silicon Laboratories"; |
1800 | 1 | case 768: |
1801 | 1 | return "World Moto Inc."; |
1802 | 1 | case 769: |
1803 | 1 | return "Giatec Scientific Inc."; |
1804 | 1 | case 770: |
1805 | 1 | return "Loop Devices, Inc"; |
1806 | 3 | case 771: |
1807 | 3 | return "IACA electronique"; |
1808 | 1 | case 772: |
1809 | 1 | return "Proxy Technologies, Inc."; |
1810 | 1 | case 773: |
1811 | 1 | return "Swipp ApS"; |
1812 | 1 | case 774: |
1813 | 1 | return "Life Laboratory Inc."; |
1814 | 1 | case 775: |
1815 | 1 | return "FUJI INDUSTRIAL CO.,LTD."; |
1816 | 1 | case 776: |
1817 | 1 | return "Surefire, LLC"; |
1818 | 1 | case 777: |
1819 | 1 | return "Dolby Labs"; |
1820 | 1 | case 778: |
1821 | 1 | return "Ellisys"; |
1822 | 1 | case 779: |
1823 | 1 | return "Magnitude Lighting Converters"; |
1824 | 1 | case 780: |
1825 | 1 | return "Hilti AG"; |
1826 | 1 | case 781: |
1827 | 1 | return "Devdata S.r.l."; |
1828 | 1 | case 782: |
1829 | 1 | return "Deviceworx"; |
1830 | 1 | case 783: |
1831 | 1 | return "Shortcut Labs"; |
1832 | 1 | case 784: |
1833 | 1 | return "SGL Italia S.r.l."; |
1834 | 1 | case 785: |
1835 | 1 | return "PEEQ DATA"; |
1836 | 1 | case 786: |
1837 | 1 | return "Ducere Technologies Pvt Ltd"; |
1838 | 1 | case 787: |
1839 | 1 | return "DiveNav, Inc."; |
1840 | 1 | case 788: |
1841 | 1 | return "RIIG AI Sp. z o.o."; |
1842 | 1 | case 789: |
1843 | 1 | return "Thermo Fisher Scientific"; |
1844 | 1 | case 790: |
1845 | 1 | return "AG Measurematics Pvt. Ltd."; |
1846 | 1 | case 791: |
1847 | 1 | return "CHUO Electronics CO., LTD."; |
1848 | 1 | case 792: |
1849 | 1 | return "Aspenta International"; |
1850 | 1 | case 793: |
1851 | 1 | return "Eugster Frismag AG"; |
1852 | 1 | case 794: |
1853 | 1 | return "Amber wireless GmbH"; |
1854 | 1 | case 795: |
1855 | 1 | return "HQ Inc"; |
1856 | 1 | case 796: |
1857 | 1 | return "Lab Sensor Solutions"; |
1858 | 1 | case 797: |
1859 | 1 | return "Enterlab ApS"; |
1860 | 1 | case 798: |
1861 | 1 | return "Eyefi, Inc."; |
1862 | 1 | case 799: |
1863 | 1 | return "MetaSystem S.p.A"; |
1864 | 1 | case 800: |
1865 | 1 | return "SONO ELECTRONICS. CO., LTD"; |
1866 | 1 | case 801: |
1867 | 1 | return "Jewelbots"; |
1868 | 1 | case 802: |
1869 | 1 | return "Compumedics Limited"; |
1870 | 1 | case 803: |
1871 | 1 | return "Rotor Bike Components"; |
1872 | 1 | case 804: |
1873 | 1 | return "Astro, Inc."; |
1874 | 1 | case 805: |
1875 | 1 | return "Amotus Solutions"; |
1876 | 1 | case 806: |
1877 | 1 | return "Healthwear Technologies (Changzhou)Ltd"; |
1878 | 1 | case 807: |
1879 | 1 | return "Essex Electronics"; |
1880 | 1 | case 808: |
1881 | 1 | return "Grundfos A/S"; |
1882 | 1 | case 809: |
1883 | 1 | return "Eargo, Inc."; |
1884 | 1 | case 810: |
1885 | 1 | return "Electronic Design Lab"; |
1886 | 1 | case 811: |
1887 | 1 | return "ESYLUX"; |
1888 | 1 | case 812: |
1889 | 1 | return "NIPPON SMT.CO.,Ltd"; |
1890 | 1 | case 813: |
1891 | 1 | return "BM innovations GmbH"; |
1892 | 1 | case 814: |
1893 | 1 | return "indoormap"; |
1894 | 1 | case 815: |
1895 | 1 | return "OttoQ Inc"; |
1896 | 1 | case 816: |
1897 | 1 | return "North Pole Engineering"; |
1898 | 1 | case 817: |
1899 | 1 | return "3flares Technologies Inc."; |
1900 | 1 | case 818: |
1901 | 1 | return "Electrocompaniet A.S."; |
1902 | 1 | case 819: |
1903 | 1 | return "Mul-T-Lock"; |
1904 | 1 | case 820: |
1905 | 1 | return "Corentium AS"; |
1906 | 1 | case 821: |
1907 | 1 | return "Enlighted Inc"; |
1908 | 1 | case 822: |
1909 | 1 | return "GISTIC"; |
1910 | 1 | case 823: |
1911 | 1 | return "AJP2 Holdings, LLC"; |
1912 | 1 | case 824: |
1913 | 1 | return "COBI GmbH"; |
1914 | 1 | case 825: |
1915 | 1 | return "Blue Sky Scientific, LLC"; |
1916 | 1 | case 826: |
1917 | 1 | return "Appception, Inc."; |
1918 | 1 | case 827: |
1919 | 1 | return "Courtney Thorne Limited"; |
1920 | 1 | case 828: |
1921 | 1 | return "Virtuosys"; |
1922 | 1 | case 829: |
1923 | 1 | return "TPV Technology Limited"; |
1924 | 1 | case 830: |
1925 | 1 | return "Monitra SA"; |
1926 | 1 | case 831: |
1927 | 1 | return "Automation Components, Inc."; |
1928 | 1 | case 832: |
1929 | 1 | return "Letsense s.r.l."; |
1930 | 1 | case 833: |
1931 | 1 | return "Etesian Technologies LLC"; |
1932 | 1 | case 834: |
1933 | 1 | return "GERTEC BRASIL LTDA."; |
1934 | 1 | case 835: |
1935 | 1 | return "Drekker Development Pty. Ltd."; |
1936 | 1 | case 836: |
1937 | 1 | return "Whirl Inc"; |
1938 | 1 | case 837: |
1939 | 1 | return "Locus Positioning"; |
1940 | 1 | case 838: |
1941 | 1 | return "Acuity Brands Lighting, Inc"; |
1942 | 1 | case 839: |
1943 | 1 | return "Prevent Biometrics"; |
1944 | 1 | case 840: |
1945 | 1 | return "Arioneo"; |
1946 | 1 | case 841: |
1947 | 1 | return "VersaMe"; |
1948 | 1 | case 842: |
1949 | 1 | return "Vaddio"; |
1950 | 1 | case 843: |
1951 | 1 | return "Libratone A/S"; |
1952 | 1 | case 844: |
1953 | 1 | return "HM Electronics, Inc."; |
1954 | 1 | case 845: |
1955 | 1 | return "TASER International, Inc."; |
1956 | 1 | case 846: |
1957 | 1 | return "Safe Trust Inc."; |
1958 | 1 | case 847: |
1959 | 1 | return "Heartland Payment Systems"; |
1960 | 1 | case 848: |
1961 | 1 | return "Bitstrata Systems Inc."; |
1962 | 1 | case 849: |
1963 | 1 | return "Pieps GmbH"; |
1964 | 1 | case 850: |
1965 | 1 | return "iRiding(Xiamen)Technology Co.,Ltd."; |
1966 | 1 | case 851: |
1967 | 1 | return "Alpha Audiotronics, Inc."; |
1968 | 1 | case 852: |
1969 | 1 | return "TOPPAN FORMS CO.,LTD."; |
1970 | 1 | case 853: |
1971 | 1 | return "Sigma Designs, Inc."; |
1972 | 1 | case 854: |
1973 | 1 | return "Spectrum Brands, Inc."; |
1974 | 1 | case 855: |
1975 | 1 | return "Polymap Wireless"; |
1976 | 1 | case 856: |
1977 | 1 | return "MagniWare Ltd."; |
1978 | 1 | case 857: |
1979 | 1 | return "Novotec Medical GmbH"; |
1980 | 1 | case 858: |
1981 | 1 | return "Medicom Innovation Partner a/s"; |
1982 | 1 | case 859: |
1983 | 1 | return "Matrix Inc."; |
1984 | 1 | case 860: |
1985 | 1 | return "Eaton Corporation"; |
1986 | 1 | case 861: |
1987 | 1 | return "KYS"; |
1988 | 1 | case 862: |
1989 | 1 | return "Naya Health, Inc."; |
1990 | 1 | case 863: |
1991 | 1 | return "Acromag"; |
1992 | 1 | case 864: |
1993 | 1 | return "Insulet Corporation"; |
1994 | 1 | case 865: |
1995 | 1 | return "Wellinks Inc."; |
1996 | 1 | case 866: |
1997 | 1 | return "ON Semiconductor"; |
1998 | 1 | case 867: |
1999 | 1 | return "FREELAP SA"; |
2000 | 1 | case 868: |
2001 | 1 | return "Favero Electronics Srl"; |
2002 | 1 | case 869: |
2003 | 1 | return "BioMech Sensor LLC"; |
2004 | 1 | case 870: |
2005 | 1 | return "BOLTT Sports technologies Private limited"; |
2006 | 1 | case 871: |
2007 | 1 | return "Saphe International"; |
2008 | 1 | case 872: |
2009 | 1 | return "Metormote AB"; |
2010 | 1 | case 873: |
2011 | 1 | return "littleBits"; |
2012 | 1 | case 874: |
2013 | 1 | return "SetPoint Medical"; |
2014 | 1 | case 875: |
2015 | 1 | return "BRControls Products BV"; |
2016 | 1 | case 876: |
2017 | 1 | return "Zipcar"; |
2018 | 1 | case 877: |
2019 | 1 | return "AirBolt Pty Ltd"; |
2020 | 1 | case 878: |
2021 | 1 | return "KeepTruckin Inc"; |
2022 | 1 | case 879: |
2023 | 1 | return "Motiv, Inc."; |
2024 | 1 | case 880: |
2025 | 1 | return "Wazombi Labs OÜ"; |
2026 | 1 | case 881: |
2027 | 1 | return "ORBCOMM"; |
2028 | 1 | case 882: |
2029 | 1 | return "Nixie Labs, Inc."; |
2030 | 1 | case 883: |
2031 | 1 | return "AppNearMe Ltd"; |
2032 | 1 | case 884: |
2033 | 1 | return "Holman Industries"; |
2034 | 1 | case 885: |
2035 | 1 | return "Expain AS"; |
2036 | 1 | case 886: |
2037 | 1 | return "Electronic Temperature Instruments Ltd"; |
2038 | 1 | case 887: |
2039 | 1 | return "Plejd AB"; |
2040 | 1 | case 888: |
2041 | 1 | return "Propeller Health"; |
2042 | 1 | case 889: |
2043 | 1 | return "Shenzhen iMCO Electronic Technology Co.,Ltd"; |
2044 | 1 | case 890: |
2045 | 1 | return "Algoria"; |
2046 | 1 | case 891: |
2047 | 1 | return "Apption Labs Inc."; |
2048 | 1 | case 892: |
2049 | 1 | return "Cronologics Corporation"; |
2050 | 1 | case 893: |
2051 | 1 | return "MICRODIA Ltd."; |
2052 | 1 | case 894: |
2053 | 1 | return "lulabytes S.L."; |
2054 | 1 | case 895: |
2055 | 1 | return "Société des Produits Nestlé S.A. (formerly Nestec S.A.)"; |
2056 | 1 | case 896: |
2057 | 1 | return "LLC \"MEGA-F service\""; |
2058 | 1 | case 897: |
2059 | 1 | return "Sharp Corporation"; |
2060 | 1 | case 898: |
2061 | 1 | return "Precision Outcomes Ltd"; |
2062 | 1 | case 899: |
2063 | 1 | return "Kronos Incorporated"; |
2064 | 1 | case 900: |
2065 | 1 | return "OCOSMOS Co., Ltd."; |
2066 | 1 | case 901: |
2067 | 1 | return "Embedded Electronic Solutions Ltd. dba e2Solutions"; |
2068 | 1 | case 902: |
2069 | 1 | return "Aterica Inc."; |
2070 | 1 | case 903: |
2071 | 1 | return "BluStor PMC, Inc."; |
2072 | 1 | case 904: |
2073 | 1 | return "Kapsch TrafficCom AB"; |
2074 | 1 | case 905: |
2075 | 1 | return "ActiveBlu Corporation"; |
2076 | 1 | case 906: |
2077 | 1 | return "Kohler Mira Limited"; |
2078 | 1 | case 907: |
2079 | 1 | return "Noke"; |
2080 | 1 | case 908: |
2081 | 1 | return "Appion Inc."; |
2082 | 1 | case 909: |
2083 | 1 | return "Resmed Ltd"; |
2084 | 1 | case 910: |
2085 | 1 | return "Crownstone B.V."; |
2086 | 1 | case 911: |
2087 | 1 | return "Xiaomi Inc."; |
2088 | 1 | case 912: |
2089 | 1 | return "INFOTECH s.r.o."; |
2090 | 1 | case 913: |
2091 | 1 | return "Thingsquare AB"; |
2092 | 1 | case 914: |
2093 | 1 | return "T&D"; |
2094 | 1 | case 915: |
2095 | 1 | return "LAVAZZA S.p.A."; |
2096 | 1 | case 916: |
2097 | 1 | return "Netclearance Systems, Inc."; |
2098 | 1 | case 917: |
2099 | 1 | return "SDATAWAY"; |
2100 | 1 | case 918: |
2101 | 1 | return "BLOKS GmbH"; |
2102 | 1 | case 919: |
2103 | 1 | return "LEGO System A/S"; |
2104 | 1 | case 920: |
2105 | 1 | return "Thetatronics Ltd"; |
2106 | 1 | case 921: |
2107 | 1 | return "Nikon Corporation"; |
2108 | 1 | case 922: |
2109 | 1 | return "NeST"; |
2110 | 1 | case 923: |
2111 | 1 | return "South Silicon Valley Microelectronics"; |
2112 | 1 | case 924: |
2113 | 1 | return "ALE International"; |
2114 | 1 | case 925: |
2115 | 1 | return "CareView Communications, Inc."; |
2116 | 1 | case 926: |
2117 | 1 | return "SchoolBoard Limited"; |
2118 | 1 | case 927: |
2119 | 1 | return "Molex Corporation"; |
2120 | 1 | case 928: |
2121 | 1 | return "IVT Wireless Limited"; |
2122 | 1 | case 929: |
2123 | 1 | return "Alpine Labs LLC"; |
2124 | 1 | case 930: |
2125 | 1 | return "Candura Instruments"; |
2126 | 1 | case 931: |
2127 | 1 | return "SmartMovt Technology Co., Ltd"; |
2128 | 1 | case 932: |
2129 | 1 | return "Token Zero Ltd"; |
2130 | 1 | case 933: |
2131 | 1 | return "ACE CAD Enterprise Co., Ltd. (ACECAD)"; |
2132 | 1 | case 934: |
2133 | 1 | return "Medela, Inc"; |
2134 | 1 | case 935: |
2135 | 1 | return "AeroScout"; |
2136 | 1 | case 936: |
2137 | 1 | return "Esrille Inc."; |
2138 | 2 | case 937: |
2139 | 2 | return "THINKERLY SRL"; |
2140 | 1 | case 938: |
2141 | 1 | return "Exon Sp. z o.o."; |
2142 | 1 | case 939: |
2143 | 1 | return "Meizu Technology Co., Ltd."; |
2144 | 1 | case 940: |
2145 | 1 | return "Smablo LTD"; |
2146 | 1 | case 941: |
2147 | 1 | return "XiQ"; |
2148 | 1 | case 942: |
2149 | 1 | return "Allswell Inc."; |
2150 | 1 | case 943: |
2151 | 1 | return "Comm-N-Sense Corp DBA Verigo"; |
2152 | 1 | case 944: |
2153 | 1 | return "VIBRADORM GmbH"; |
2154 | 1 | case 945: |
2155 | 1 | return "Otodata Wireless Network Inc."; |
2156 | 1 | case 946: |
2157 | 1 | return "Propagation Systems Limited"; |
2158 | 1 | case 947: |
2159 | 1 | return "Midwest Instruments & Controls"; |
2160 | 1 | case 948: |
2161 | 1 | return "Alpha Nodus, inc."; |
2162 | 1 | case 949: |
2163 | 1 | return "petPOMM, Inc"; |
2164 | 1 | case 950: |
2165 | 1 | return "Mattel"; |
2166 | 1 | case 951: |
2167 | 1 | return "Airbly Inc."; |
2168 | 1 | case 952: |
2169 | 1 | return "A-Safe Limited"; |
2170 | 1 | case 953: |
2171 | 1 | return "FREDERIQUE CONSTANT SA"; |
2172 | 1 | case 954: |
2173 | 1 | return "Maxscend Microelectronics Company Limited"; |
2174 | 1 | case 955: |
2175 | 1 | return "Abbott"; |
2176 | 1 | case 956: |
2177 | 1 | return "ASB Bank Ltd"; |
2178 | 1 | case 957: |
2179 | 1 | return "amadas"; |
2180 | 1 | case 958: |
2181 | 1 | return "Applied Science, Inc."; |
2182 | 1 | case 959: |
2183 | 1 | return "iLumi Solutions Inc."; |
2184 | 1 | case 960: |
2185 | 1 | return "Arch Systems Inc."; |
2186 | 1 | case 961: |
2187 | 1 | return "Ember Technologies, Inc."; |
2188 | 1 | case 962: |
2189 | 1 | return "Snapchat Inc"; |
2190 | 1 | case 963: |
2191 | 1 | return "Casambi Technologies Oy"; |
2192 | 1 | case 964: |
2193 | 1 | return "Pico Technology Inc."; |
2194 | 1 | case 965: |
2195 | 1 | return "St. Jude Medical, Inc."; |
2196 | 1 | case 966: |
2197 | 1 | return "Intricon"; |
2198 | 1 | case 967: |
2199 | 1 | return "Structural Health Systems, Inc."; |
2200 | 1 | case 968: |
2201 | 1 | return "Avvel International"; |
2202 | 1 | case 969: |
2203 | 1 | return "Gallagher Group"; |
2204 | 1 | case 970: |
2205 | 1 | return "In2things Automation Pvt. Ltd."; |
2206 | 1 | case 971: |
2207 | 1 | return "SYSDEV Srl"; |
2208 | 1 | case 972: |
2209 | 1 | return "Vonkil Technologies Ltd"; |
2210 | 1 | case 973: |
2211 | 1 | return "Wynd Technologies, Inc."; |
2212 | 1 | case 974: |
2213 | 1 | return "CONTRINEX S.A."; |
2214 | 1 | case 975: |
2215 | 1 | return "MIRA, Inc."; |
2216 | 1 | case 976: |
2217 | 1 | return "Watteam Ltd"; |
2218 | 1 | case 977: |
2219 | 1 | return "Density Inc."; |
2220 | 1 | case 978: |
2221 | 1 | return "IOT Pot India Private Limited"; |
2222 | 1 | case 979: |
2223 | 1 | return "Sigma Connectivity AB"; |
2224 | 1 | case 980: |
2225 | 1 | return "PEG PEREGO SPA"; |
2226 | 1 | case 981: |
2227 | 1 | return "Wyzelink Systems Inc."; |
2228 | 1 | case 982: |
2229 | 1 | return "Yota Devices LTD"; |
2230 | 1 | case 983: |
2231 | 1 | return "FINSECUR"; |
2232 | 1 | case 984: |
2233 | 1 | return "Zen-Me Labs Ltd"; |
2234 | 1 | case 985: |
2235 | 1 | return "3IWare Co., Ltd."; |
2236 | 1 | case 986: |
2237 | 1 | return "EnOcean GmbH"; |
2238 | 1 | case 987: |
2239 | 1 | return "Instabeat, Inc"; |
2240 | 1 | case 988: |
2241 | 1 | return "Nima Labs"; |
2242 | 1 | case 989: |
2243 | 1 | return "Andreas Stihl AG & Co. KG"; |
2244 | 1 | case 990: |
2245 | 1 | return "Nathan Rhoades LLC"; |
2246 | 1 | case 991: |
2247 | 1 | return "Grob Technologies, LLC"; |
2248 | 1 | case 992: |
2249 | 1 | return "Actions (Zhuhai) Technology Co., Limited"; |
2250 | 1 | case 993: |
2251 | 1 | return "SPD Development Company Ltd"; |
2252 | 1 | case 994: |
2253 | 1 | return "Sensoan Oy"; |
2254 | 1 | case 995: |
2255 | 1 | return "Qualcomm Life Inc"; |
2256 | 1 | case 996: |
2257 | 1 | return "Chip-ing AG"; |
2258 | 1 | case 997: |
2259 | 1 | return "ffly4u"; |
2260 | 1 | case 998: |
2261 | 1 | return "IoT Instruments Oy"; |
2262 | 1 | case 999: |
2263 | 1 | return "TRUE Fitness Technology"; |
2264 | 1 | case 1000: |
2265 | 1 | return "Reiner Kartengeraete GmbH & Co. KG."; |
2266 | 1 | case 1001: |
2267 | 1 | return "SHENZHEN LEMONJOY TECHNOLOGY CO., LTD."; |
2268 | 1 | case 1002: |
2269 | 1 | return "Hello Inc."; |
2270 | 1 | case 1003: |
2271 | 1 | return "Evollve Inc."; |
2272 | 1 | case 1004: |
2273 | 1 | return "Jigowatts Inc."; |
2274 | 1 | case 1005: |
2275 | 1 | return "BASIC MICRO.COM,INC."; |
2276 | 1 | case 1006: |
2277 | 1 | return "CUBE TECHNOLOGIES"; |
2278 | 1 | case 1007: |
2279 | 1 | return "foolography GmbH"; |
2280 | 1 | case 1008: |
2281 | 1 | return "CLINK"; |
2282 | 1 | case 1009: |
2283 | 1 | return "Hestan Smart Cooking Inc."; |
2284 | 1 | case 1010: |
2285 | 1 | return "WindowMaster A/S"; |
2286 | 1 | case 1011: |
2287 | 1 | return "Flowscape AB"; |
2288 | 1 | case 1012: |
2289 | 1 | return "PAL Technologies Ltd"; |
2290 | 1 | case 1013: |
2291 | 1 | return "WHERE, Inc."; |
2292 | 1 | case 1014: |
2293 | 1 | return "Iton Technology Corp."; |
2294 | 1 | case 1015: |
2295 | 1 | return "Owl Labs Inc."; |
2296 | 1 | case 1016: |
2297 | 1 | return "Rockford Corp."; |
2298 | 1 | case 1017: |
2299 | 1 | return "Becon Technologies Co.,Ltd."; |
2300 | 1 | case 1018: |
2301 | 1 | return "Vyassoft Technologies Inc"; |
2302 | 1 | case 1019: |
2303 | 1 | return "Nox Medical"; |
2304 | 1 | case 1020: |
2305 | 1 | return "Kimberly-Clark"; |
2306 | 1 | case 1021: |
2307 | 1 | return "Trimble Navigation Ltd."; |
2308 | 1 | case 1022: |
2309 | 1 | return "Littelfuse"; |
2310 | 1 | case 1023: |
2311 | 1 | return "Withings"; |
2312 | 1 | case 1024: |
2313 | 1 | return "i-developer IT Beratung UG"; |
2314 | 1 | case 1025: |
2315 | 1 | return "Relations Inc."; |
2316 | 1 | case 1026: |
2317 | 1 | return "Sears Holdings Corporation"; |
2318 | 1 | case 1027: |
2319 | 1 | return "Gantner Electronic GmbH"; |
2320 | 1 | case 1028: |
2321 | 1 | return "Authomate Inc"; |
2322 | 1 | case 1029: |
2323 | 1 | return "Vertex International, Inc."; |
2324 | 1 | case 1030: |
2325 | 1 | return "Airtago"; |
2326 | 1 | case 1031: |
2327 | 1 | return "Swiss Audio SA"; |
2328 | 1 | case 1032: |
2329 | 1 | return "ToGetHome Inc."; |
2330 | 1 | case 1033: |
2331 | 1 | return "AXIS"; |
2332 | 1 | case 1034: |
2333 | 1 | return "Openmatics"; |
2334 | 1 | case 1035: |
2335 | 1 | return "Jana Care Inc."; |
2336 | 1 | case 1036: |
2337 | 1 | return "Senix Corporation"; |
2338 | 1 | case 1037: |
2339 | 1 | return "NorthStar Battery Company, LLC"; |
2340 | 1 | case 1038: |
2341 | 1 | return "SKF (U.K.) Limited"; |
2342 | 1 | case 1039: |
2343 | 1 | return "CO-AX Technology, Inc."; |
2344 | 1 | case 1040: |
2345 | 1 | return "Fender Musical Instruments"; |
2346 | 1 | case 1041: |
2347 | 1 | return "Luidia Inc"; |
2348 | 1 | case 1042: |
2349 | 1 | return "SEFAM"; |
2350 | 1 | case 1043: |
2351 | 1 | return "Wireless Cables Inc"; |
2352 | 1 | case 1044: |
2353 | 1 | return "Lightning Protection International Pty Ltd"; |
2354 | 1 | case 1045: |
2355 | 1 | return "Uber Technologies Inc"; |
2356 | 1 | case 1046: |
2357 | 1 | return "SODA GmbH"; |
2358 | 1 | case 1047: |
2359 | 1 | return "Fatigue Science"; |
2360 | 1 | case 1048: |
2361 | 1 | return "Alpine Electronics Inc."; |
2362 | 1 | case 1049: |
2363 | 1 | return "Novalogy LTD"; |
2364 | 1 | case 1050: |
2365 | 1 | return "Friday Labs Limited"; |
2366 | 1 | case 1051: |
2367 | 1 | return "OrthoAccel Technologies"; |
2368 | 1 | case 1052: |
2369 | 1 | return "WaterGuru, Inc."; |
2370 | 1 | case 1053: |
2371 | 1 | return "Benning Elektrotechnik und Elektronik GmbH & Co. KG"; |
2372 | 1 | case 1054: |
2373 | 1 | return "Dell Computer Corporation"; |
2374 | 1 | case 1055: |
2375 | 1 | return "Kopin Corporation"; |
2376 | 1 | case 1056: |
2377 | 1 | return "TecBakery GmbH"; |
2378 | 1 | case 1057: |
2379 | 1 | return "Backbone Labs, Inc."; |
2380 | 1 | case 1058: |
2381 | 1 | return "DELSEY SA"; |
2382 | 1 | case 1059: |
2383 | 1 | return "Chargifi Limited"; |
2384 | 1 | case 1060: |
2385 | 1 | return "Trainesense Ltd."; |
2386 | 1 | case 1061: |
2387 | 1 | return "Unify Software and Solutions GmbH & Co. KG"; |
2388 | 1 | case 1062: |
2389 | 1 | return "Husqvarna AB"; |
2390 | 1 | case 1063: |
2391 | 1 | return "Focus fleet and fuel management inc"; |
2392 | 1 | case 1064: |
2393 | 1 | return "SmallLoop, LLC"; |
2394 | 1 | case 1065: |
2395 | 1 | return "Prolon Inc."; |
2396 | 1 | case 1066: |
2397 | 1 | return "BD Medical"; |
2398 | 1 | case 1067: |
2399 | 1 | return "iMicroMed Incorporated"; |
2400 | 1 | case 1068: |
2401 | 1 | return "Ticto N.V."; |
2402 | 1 | case 1069: |
2403 | 1 | return "Meshtech AS"; |
2404 | 1 | case 1070: |
2405 | 1 | return "MemCachier Inc."; |
2406 | 1 | case 1071: |
2407 | 1 | return "Danfoss A/S"; |
2408 | 1 | case 1072: |
2409 | 1 | return "SnapStyk Inc."; |
2410 | 1 | case 1073: |
2411 | 1 | return "Amway Corporation"; |
2412 | 1 | case 1074: |
2413 | 1 | return "Silk Labs, Inc."; |
2414 | 1 | case 1075: |
2415 | 1 | return "Pillsy Inc."; |
2416 | 1 | case 1076: |
2417 | 1 | return "Hatch Baby, Inc."; |
2418 | 1 | case 1077: |
2419 | 1 | return "Blocks Wearables Ltd."; |
2420 | 1 | case 1078: |
2421 | 1 | return "Drayson Technologies (Europe) Limited"; |
2422 | 1 | case 1079: |
2423 | 1 | return "eBest IOT Inc."; |
2424 | 1 | case 1080: |
2425 | 1 | return "Helvar Ltd"; |
2426 | 1 | case 1081: |
2427 | 1 | return "Radiance Technologies"; |
2428 | 1 | case 1082: |
2429 | 1 | return "Nuheara Limited"; |
2430 | 1 | case 1083: |
2431 | 1 | return "Appside co., ltd."; |
2432 | 1 | case 1084: |
2433 | 1 | return "DeLaval"; |
2434 | 1 | case 1085: |
2435 | 1 | return "Coiler Corporation"; |
2436 | 1 | case 1086: |
2437 | 1 | return "Thermomedics, Inc."; |
2438 | 1 | case 1087: |
2439 | 1 | return "Tentacle Sync GmbH"; |
2440 | 1 | case 1088: |
2441 | 1 | return "Valencell, Inc."; |
2442 | 1 | case 1089: |
2443 | 1 | return "iProtoXi Oy"; |
2444 | 1 | case 1090: |
2445 | 1 | return "SECOM CO., LTD."; |
2446 | 1 | case 1091: |
2447 | 1 | return "Tucker International LLC"; |
2448 | 1 | case 1092: |
2449 | 1 | return "Metanate Limited"; |
2450 | 1 | case 1093: |
2451 | 1 | return "Kobian Canada Inc."; |
2452 | 1 | case 1094: |
2453 | 1 | return "NETGEAR, Inc."; |
2454 | 1 | case 1095: |
2455 | 1 | return "Fabtronics Australia Pty Ltd"; |
2456 | 1 | case 1096: |
2457 | 1 | return "Grand Centrix GmbH"; |
2458 | 1 | case 1097: |
2459 | 1 | return "1UP USA.com llc"; |
2460 | 1 | case 1098: |
2461 | 1 | return "SHIMANO INC."; |
2462 | 1 | case 1099: |
2463 | 1 | return "Nain Inc."; |
2464 | 1 | case 1100: |
2465 | 1 | return "LifeStyle Lock, LLC"; |
2466 | 1 | case 1101: |
2467 | 1 | return "VEGA Grieshaber KG"; |
2468 | 1 | case 1102: |
2469 | 1 | return "Xtrava Inc."; |
2470 | 1 | case 1103: |
2471 | 1 | return "TTS Tooltechnic Systems AG & Co. KG"; |
2472 | 1 | case 1104: |
2473 | 1 | return "Teenage Engineering AB"; |
2474 | 1 | case 1105: |
2475 | 1 | return "Tunstall Nordic AB"; |
2476 | 1 | case 1106: |
2477 | 1 | return "Svep Design Center AB"; |
2478 | 1 | case 1107: |
2479 | 1 | return "GreenPeak Technologies BV"; |
2480 | 1 | case 1108: |
2481 | 1 | return "Sphinx Electronics GmbH & Co KG"; |
2482 | 1 | case 1109: |
2483 | 1 | return "Atomation"; |
2484 | 1 | case 1110: |
2485 | 1 | return "Nemik Consulting Inc"; |
2486 | 1 | case 1111: |
2487 | 1 | return "RF INNOVATION"; |
2488 | 1 | case 1112: |
2489 | 1 | return "Mini Solution Co., Ltd."; |
2490 | 1 | case 1113: |
2491 | 1 | return "Lumenetix, Inc"; |
2492 | 1 | case 1114: |
2493 | 1 | return "2048450 Ontario Inc"; |
2494 | 1 | case 1115: |
2495 | 1 | return "SPACEEK LTD"; |
2496 | 1 | case 1116: |
2497 | 1 | return "Delta T Corporation"; |
2498 | 1 | case 1117: |
2499 | 1 | return "Boston Scientific Corporation"; |
2500 | 1 | case 1118: |
2501 | 1 | return "Nuviz, Inc."; |
2502 | 1 | case 1119: |
2503 | 1 | return "Real Time Automation, Inc."; |
2504 | 1 | case 1120: |
2505 | 1 | return "Kolibree"; |
2506 | 1 | case 1121: |
2507 | 1 | return "vhf elektronik GmbH"; |
2508 | 1 | case 1122: |
2509 | 1 | return "Bonsai Systems GmbH"; |
2510 | 1 | case 1123: |
2511 | 1 | return "Fathom Systems Inc."; |
2512 | 1 | case 1124: |
2513 | 1 | return "Bellman & Symfon"; |
2514 | 1 | case 1125: |
2515 | 1 | return "International Forte Group LLC"; |
2516 | 1 | case 1126: |
2517 | 1 | return "CycleLabs Solutions inc."; |
2518 | 1 | case 1127: |
2519 | 1 | return "Codenex Oy"; |
2520 | 1 | case 1128: |
2521 | 1 | return "Kynesim Ltd"; |
2522 | 1 | case 1129: |
2523 | 1 | return "Palago AB"; |
2524 | 1 | case 1130: |
2525 | 1 | return "INSIGMA INC."; |
2526 | 1 | case 1131: |
2527 | 1 | return "PMD Solutions"; |
2528 | 1 | case 1132: |
2529 | 1 | return "Qingdao Realtime Technology Co., Ltd."; |
2530 | 1 | case 1133: |
2531 | 1 | return "BEGA Gantenbrink-Leuchten KG"; |
2532 | 1 | case 1134: |
2533 | 1 | return "Pambor Ltd."; |
2534 | 1 | case 1135: |
2535 | 1 | return "Develco Products A/S"; |
2536 | 1 | case 1136: |
2537 | 1 | return "iDesign s.r.l."; |
2538 | 1 | case 1137: |
2539 | 1 | return "TiVo Corp"; |
2540 | 1 | case 1138: |
2541 | 1 | return "Control-J Pty Ltd"; |
2542 | 1 | case 1139: |
2543 | 1 | return "Steelcase, Inc."; |
2544 | 1 | case 1140: |
2545 | 1 | return "iApartment co., ltd."; |
2546 | 1 | case 1141: |
2547 | 1 | return "Icom inc."; |
2548 | 1 | case 1142: |
2549 | 1 | return "Oxstren Wearable Technologies Private Limited"; |
2550 | 1 | case 1143: |
2551 | 1 | return "Blue Spark Technologies"; |
2552 | 1 | case 1144: |
2553 | 1 | return "FarSite Communications Limited"; |
2554 | 1 | case 1145: |
2555 | 1 | return "mywerk system GmbH"; |
2556 | 1 | case 1146: |
2557 | 1 | return "Sinosun Technology Co., Ltd."; |
2558 | 1 | case 1147: |
2559 | 1 | return "MIYOSHI ELECTRONICS CORPORATION"; |
2560 | 1 | case 1148: |
2561 | 1 | return "POWERMAT LTD"; |
2562 | 1 | case 1149: |
2563 | 1 | return "Occly LLC"; |
2564 | 1 | case 1150: |
2565 | 1 | return "OurHub Dev IvS"; |
2566 | 1 | case 1151: |
2567 | 1 | return "Pro-Mark, Inc."; |
2568 | 1 | case 1152: |
2569 | 1 | return "Dynometrics Inc."; |
2570 | 1 | case 1153: |
2571 | 1 | return "Quintrax Limited"; |
2572 | 1 | case 1154: |
2573 | 1 | return "POS Tuning Udo Vosshenrich GmbH & Co. KG"; |
2574 | 1 | case 1155: |
2575 | 1 | return "Multi Care Systems B.V."; |
2576 | 1 | case 1156: |
2577 | 1 | return "Revol Technologies Inc"; |
2578 | 1 | case 1157: |
2579 | 1 | return "SKIDATA AG"; |
2580 | 1 | case 1158: |
2581 | 1 | return "DEV TECNOLOGIA INDUSTRIA, COMERCIO E MANUTENCAO DE EQUIPAMENTOS LTDA. - ME"; |
2582 | 1 | case 1159: |
2583 | 1 | return "Centrica Connected Home"; |
2584 | 1 | case 1160: |
2585 | 1 | return "Automotive Data Solutions Inc"; |
2586 | 1 | case 1161: |
2587 | 1 | return "Igarashi Engineering"; |
2588 | 1 | case 1162: |
2589 | 1 | return "Taelek Oy"; |
2590 | 1 | case 1163: |
2591 | 1 | return "CP Electronics Limited"; |
2592 | 1 | case 1164: |
2593 | 1 | return "Vectronix AG"; |
2594 | 1 | case 1165: |
2595 | 1 | return "S-Labs Sp. z o.o."; |
2596 | 1 | case 1166: |
2597 | 1 | return "Companion Medical, Inc."; |
2598 | 1 | case 1167: |
2599 | 1 | return "BlueKitchen GmbH"; |
2600 | 1 | case 1168: |
2601 | 1 | return "Matting AB"; |
2602 | 1 | case 1169: |
2603 | 1 | return "SOREX - Wireless Solutions GmbH"; |
2604 | 1 | case 1170: |
2605 | 1 | return "ADC Technology, Inc."; |
2606 | 1 | case 1171: |
2607 | 1 | return "Lynxemi Pte Ltd"; |
2608 | 1 | case 1172: |
2609 | 1 | return "SENNHEISER electronic GmbH & Co. KG"; |
2610 | 1 | case 1173: |
2611 | 1 | return "LMT Mercer Group, Inc"; |
2612 | 1 | case 1174: |
2613 | 1 | return "Polymorphic Labs LLC"; |
2614 | 1 | case 1175: |
2615 | 1 | return "Cochlear Limited"; |
2616 | 1 | case 1176: |
2617 | 1 | return "METER Group, Inc. USA"; |
2618 | 1 | case 1177: |
2619 | 1 | return "Ruuvi Innovations Ltd."; |
2620 | 1 | case 1178: |
2621 | 1 | return "Situne AS"; |
2622 | 1 | case 1179: |
2623 | 1 | return "nVisti, LLC"; |
2624 | 1 | case 1180: |
2625 | 1 | return "DyOcean"; |
2626 | 1 | case 1181: |
2627 | 1 | return "Uhlmann & Zacher GmbH"; |
2628 | 1 | case 1182: |
2629 | 1 | return "AND!XOR LLC"; |
2630 | 1 | case 1183: |
2631 | 1 | return "tictote AB"; |
2632 | 1 | case 1184: |
2633 | 1 | return "Vypin, LLC"; |
2634 | 1 | case 1185: |
2635 | 1 | return "PNI Sensor Corporation"; |
2636 | 1 | case 1186: |
2637 | 1 | return "ovrEngineered, LLC"; |
2638 | 1 | case 1187: |
2639 | 1 | return "GT-tronics HK Ltd"; |
2640 | 1 | case 1188: |
2641 | 1 | return "Herbert Waldmann GmbH & Co. KG"; |
2642 | 1 | case 1189: |
2643 | 1 | return "Guangzhou FiiO Electronics Technology Co.,Ltd"; |
2644 | 1 | case 1190: |
2645 | 1 | return "Vinetech Co., Ltd"; |
2646 | 1 | case 1191: |
2647 | 1 | return "Dallas Logic Corporation"; |
2648 | 1 | case 1192: |
2649 | 1 | return "BioTex, Inc."; |
2650 | 1 | case 1193: |
2651 | 1 | return "DISCOVERY SOUND TECHNOLOGY, LLC"; |
2652 | 2 | case 1194: |
2653 | 2 | return "LINKIO SAS"; |
2654 | 1 | case 1195: |
2655 | 1 | return "Harbortronics, Inc."; |
2656 | 1 | case 1196: |
2657 | 1 | return "Undagrid B.V."; |
2658 | 1 | case 1197: |
2659 | 1 | return "Shure Inc"; |
2660 | 1 | case 1198: |
2661 | 1 | return "ERM Electronic Systems LTD"; |
2662 | 1 | case 1199: |
2663 | 1 | return "BIOROWER Handelsagentur GmbH"; |
2664 | 1 | case 1200: |
2665 | 1 | return "Weba Sport und Med. Artikel GmbH"; |
2666 | 1 | case 1201: |
2667 | 1 | return "Kartographers Technologies Pvt. Ltd."; |
2668 | 1 | case 1202: |
2669 | 1 | return "The Shadow on the Moon"; |
2670 | 1 | case 1203: |
2671 | 1 | return "mobike (Hong Kong) Limited"; |
2672 | 1 | case 1204: |
2673 | 1 | return "Inuheat Group AB"; |
2674 | 1 | case 1205: |
2675 | 1 | return "Swiftronix AB"; |
2676 | 1 | case 1206: |
2677 | 1 | return "Diagnoptics Technologies"; |
2678 | 1 | case 1207: |
2679 | 1 | return "Analog Devices, Inc."; |
2680 | 1 | case 1208: |
2681 | 1 | return "Soraa Inc."; |
2682 | 1 | case 1209: |
2683 | 1 | return "CSR Building Products Limited"; |
2684 | 1 | case 1210: |
2685 | 1 | return "Crestron Electronics, Inc."; |
2686 | 1 | case 1211: |
2687 | 1 | return "Neatebox Ltd"; |
2688 | 1 | case 1212: |
2689 | 1 | return "Draegerwerk AG & Co. KGaA"; |
2690 | 1 | case 1213: |
2691 | 1 | return "AlbynMedical"; |
2692 | 1 | case 1214: |
2693 | 1 | return "Averos FZCO"; |
2694 | 1 | case 1215: |
2695 | 1 | return "VIT Initiative, LLC"; |
2696 | 1 | case 1216: |
2697 | 1 | return "Statsports International"; |
2698 | 1 | case 1217: |
2699 | 1 | return "Sospitas, s.r.o."; |
2700 | 1 | case 1218: |
2701 | 1 | return "Dmet Products Corp."; |
2702 | 1 | case 1219: |
2703 | 1 | return "Mantracourt Electronics Limited"; |
2704 | 1 | case 1220: |
2705 | 1 | return "TeAM Hutchins AB"; |
2706 | 1 | case 1221: |
2707 | 1 | return "Seibert Williams Glass, LLC"; |
2708 | 1 | case 1222: |
2709 | 1 | return "Insta GmbH"; |
2710 | 1 | case 1223: |
2711 | 1 | return "Svantek Sp. z o.o."; |
2712 | 1 | case 1224: |
2713 | 1 | return "Shanghai Flyco Electrical Appliance Co., Ltd."; |
2714 | 1 | case 1225: |
2715 | 1 | return "Thornwave Labs Inc"; |
2716 | 1 | case 1226: |
2717 | 1 | return "Steiner-Optik GmbH"; |
2718 | 1 | case 1227: |
2719 | 1 | return "Novo Nordisk A/S"; |
2720 | 1 | case 1228: |
2721 | 1 | return "Enflux Inc."; |
2722 | 1 | case 1229: |
2723 | 1 | return "Safetech Products LLC"; |
2724 | 1 | case 1230: |
2725 | 1 | return "GOOOLED S.R.L."; |
2726 | 1 | case 1231: |
2727 | 1 | return "DOM Sicherheitstechnik GmbH & Co. KG"; |
2728 | 1 | case 1232: |
2729 | 1 | return "Olympus Corporation"; |
2730 | 1 | case 1233: |
2731 | 1 | return "KTS GmbH"; |
2732 | 1 | case 1234: |
2733 | 1 | return "Anloq Technologies Inc."; |
2734 | 1 | case 1235: |
2735 | 1 | return "Queercon, Inc"; |
2736 | 1 | case 1236: |
2737 | 1 | return "5th Element Ltd"; |
2738 | 1 | case 1237: |
2739 | 1 | return "Gooee Limited"; |
2740 | 1 | case 1238: |
2741 | 1 | return "LUGLOC LLC"; |
2742 | 1 | case 1239: |
2743 | 1 | return "Blincam, Inc."; |
2744 | 1 | case 1240: |
2745 | 1 | return "FUJIFILM Corporation"; |
2746 | 1 | case 1241: |
2747 | 1 | return "RandMcNally"; |
2748 | 1 | case 1242: |
2749 | 1 | return "Franceschi Marina snc"; |
2750 | 1 | case 1243: |
2751 | 1 | return "Engineered Audio, LLC."; |
2752 | 1 | case 1244: |
2753 | 1 | return "IOTTIVE (OPC) PRIVATE LIMITED"; |
2754 | 1 | case 1245: |
2755 | 1 | return "4MOD Technology"; |
2756 | 1 | case 1246: |
2757 | 1 | return "Lutron Electronics Co., Inc."; |
2758 | 1 | case 1247: |
2759 | 1 | return "Emerson"; |
2760 | 1 | case 1248: |
2761 | 1 | return "Guardtec, Inc."; |
2762 | 1 | case 1249: |
2763 | 1 | return "REACTEC LIMITED"; |
2764 | 1 | case 1250: |
2765 | 1 | return "EllieGrid"; |
2766 | 1 | case 1251: |
2767 | 1 | return "Under Armour"; |
2768 | 1 | case 1252: |
2769 | 1 | return "Woodenshark"; |
2770 | 1 | case 1253: |
2771 | 1 | return "Avack Oy"; |
2772 | 1 | case 1254: |
2773 | 1 | return "Smart Solution Technology, Inc."; |
2774 | 1 | case 1255: |
2775 | 1 | return "REHABTRONICS INC."; |
2776 | 1 | case 1256: |
2777 | 1 | return "STABILO International"; |
2778 | 1 | case 1257: |
2779 | 1 | return "Busch Jaeger Elektro GmbH"; |
2780 | 1 | case 1258: |
2781 | 1 | return "Pacific Bioscience Laboratories, Inc"; |
2782 | 1 | case 1259: |
2783 | 1 | return "Bird Home Automation GmbH"; |
2784 | 1 | case 1260: |
2785 | 1 | return "Motorola Solutions"; |
2786 | 1 | case 1261: |
2787 | 1 | return "R9 Technology, Inc."; |
2788 | 1 | case 1262: |
2789 | 1 | return "Auxivia"; |
2790 | 1 | case 1263: |
2791 | 1 | return "DaisyWorks, Inc"; |
2792 | 1 | case 1264: |
2793 | 1 | return "Kosi Limited"; |
2794 | 1 | case 1265: |
2795 | 1 | return "Theben AG"; |
2796 | 1 | case 1266: |
2797 | 1 | return "InDreamer Techsol Private Limited"; |
2798 | 1 | case 1267: |
2799 | 1 | return "Cerevast Medical"; |
2800 | 1 | case 1268: |
2801 | 1 | return "ZanCompute Inc."; |
2802 | 1 | case 1269: |
2803 | 1 | return "Pirelli Tyre S.P.A."; |
2804 | 1 | case 1270: |
2805 | 1 | return "McLear Limited"; |
2806 | 1 | case 1271: |
2807 | 1 | return "Shenzhen Huiding Technology Co.,Ltd."; |
2808 | 1 | case 1272: |
2809 | 1 | return "Convergence Systems Limited"; |
2810 | 1 | case 1273: |
2811 | 1 | return "Interactio"; |
2812 | 1 | case 1274: |
2813 | 1 | return "Androtec GmbH"; |
2814 | 1 | case 1275: |
2815 | 1 | return "Benchmark Drives GmbH & Co. KG"; |
2816 | 1 | case 1276: |
2817 | 1 | return "SwingLync L. L. C."; |
2818 | 1 | case 1277: |
2819 | 1 | return "Tapkey GmbH"; |
2820 | 1 | case 1278: |
2821 | 1 | return "Woosim Systems Inc."; |
2822 | 1 | case 1279: |
2823 | 1 | return "Microsemi Corporation"; |
2824 | 1 | case 1280: |
2825 | 1 | return "Wiliot LTD."; |
2826 | 1 | case 1281: |
2827 | 1 | return "Polaris IND"; |
2828 | 1 | case 1282: |
2829 | 1 | return "Specifi-Kali LLC"; |
2830 | 1 | case 1283: |
2831 | 1 | return "Locoroll, Inc"; |
2832 | 1 | case 1284: |
2833 | 1 | return "PHYPLUS Inc"; |
2834 | 1 | case 1285: |
2835 | 1 | return "Inplay Technologies LLC"; |
2836 | 1 | case 1286: |
2837 | 1 | return "Hager"; |
2838 | 1 | case 1287: |
2839 | 1 | return "Yellowcog"; |
2840 | 1 | case 1288: |
2841 | 1 | return "Axes System sp. z o. o."; |
2842 | 1 | case 1289: |
2843 | 1 | return "myLIFTER Inc."; |
2844 | 1 | case 1290: |
2845 | 1 | return "Shake-on B.V."; |
2846 | 1 | case 1291: |
2847 | 1 | return "Vibrissa Inc."; |
2848 | 1 | case 1292: |
2849 | 1 | return "OSRAM GmbH"; |
2850 | 1 | case 1293: |
2851 | 1 | return "TRSystems GmbH"; |
2852 | 1 | case 1294: |
2853 | 1 | return "Yichip Microelectronics (Hangzhou) Co.,Ltd."; |
2854 | 1 | case 1295: |
2855 | 1 | return "Foundation Engineering LLC"; |
2856 | 1 | case 1296: |
2857 | 1 | return "UNI-ELECTRONICS, INC."; |
2858 | 1 | case 1297: |
2859 | 1 | return "Brookfield Equinox LLC"; |
2860 | 1 | case 1298: |
2861 | 1 | return "Soprod SA"; |
2862 | 1 | case 1299: |
2863 | 1 | return "9974091 Canada Inc."; |
2864 | 1 | case 1300: |
2865 | 1 | return "FIBRO GmbH"; |
2866 | 1 | case 1301: |
2867 | 1 | return "RB Controls Co., Ltd."; |
2868 | 1 | case 1302: |
2869 | 1 | return "Footmarks"; |
2870 | 1 | case 1303: |
2871 | 1 | return "Amtronic Sverige AB (formerly Amcore AB)"; |
2872 | 1 | case 1304: |
2873 | 1 | return "MAMORIO.inc"; |
2874 | 1 | case 1305: |
2875 | 1 | return "Tyto Life LLC"; |
2876 | 1 | case 1306: |
2877 | 1 | return "Leica Camera AG"; |
2878 | 1 | case 1307: |
2879 | 1 | return "Angee Technologies Ltd."; |
2880 | 1 | case 1308: |
2881 | 1 | return "EDPS"; |
2882 | 1 | case 1309: |
2883 | 1 | return "OFF Line Co., Ltd."; |
2884 | 1 | case 1310: |
2885 | 1 | return "Detect Blue Limited"; |
2886 | 1 | case 1311: |
2887 | 1 | return "Setec Pty Ltd"; |
2888 | 1 | case 1312: |
2889 | 1 | return "Target Corporation"; |
2890 | 1 | case 1313: |
2891 | 1 | return "IAI Corporation"; |
2892 | 1 | case 1314: |
2893 | 1 | return "NS Tech, Inc."; |
2894 | 1 | case 1315: |
2895 | 1 | return "MTG Co., Ltd."; |
2896 | 1 | case 1316: |
2897 | 1 | return "Hangzhou iMagic Technology Co., Ltd"; |
2898 | 1 | case 1317: |
2899 | 1 | return "HONGKONG NANO IC TECHNOLOGIES CO., LIMITED"; |
2900 | 1 | case 1318: |
2901 | 1 | return "Honeywell International Inc."; |
2902 | 1 | case 1319: |
2903 | 1 | return "Albrecht JUNG"; |
2904 | 1 | case 1320: |
2905 | 1 | return "Lunera Lighting Inc."; |
2906 | 1 | case 1321: |
2907 | 1 | return "Lumen UAB"; |
2908 | 1 | case 1322: |
2909 | 1 | return "Keynes Controls Ltd"; |
2910 | 1 | case 1323: |
2911 | 1 | return "Novartis AG"; |
2912 | 1 | case 1324: |
2913 | 1 | return "Geosatis SA"; |
2914 | 1 | case 1325: |
2915 | 1 | return "EXFO, Inc."; |
2916 | 1 | case 1326: |
2917 | 1 | return "LEDVANCE GmbH"; |
2918 | 1 | case 1327: |
2919 | 1 | return "Center ID Corp."; |
2920 | 1 | case 1328: |
2921 | 1 | return "Adolene, Inc."; |
2922 | 1 | case 1329: |
2923 | 1 | return "D&M Holdings Inc."; |
2924 | 1 | case 1330: |
2925 | 1 | return "CRESCO Wireless, Inc."; |
2926 | 1 | case 1331: |
2927 | 1 | return "Nura Operations Pty Ltd"; |
2928 | 1 | case 1332: |
2929 | 1 | return "Frontiergadget, Inc."; |
2930 | 1 | case 1333: |
2931 | 1 | return "Smart Component Technologies Limited"; |
2932 | 1 | case 1334: |
2933 | 1 | return "ZTR Control Systems LLC"; |
2934 | 1 | case 1335: |
2935 | 1 | return "MetaLogics Corporation"; |
2936 | 1 | case 1336: |
2937 | 1 | return "Medela AG"; |
2938 | 1 | case 1337: |
2939 | 1 | return "OPPLE Lighting Co., Ltd"; |
2940 | 1 | case 1338: |
2941 | 1 | return "Savitech Corp.,"; |
2942 | 1 | case 1339: |
2943 | 1 | return "prodigy"; |
2944 | 1 | case 1340: |
2945 | 1 | return "Screenovate Technologies Ltd"; |
2946 | 1 | case 1341: |
2947 | 1 | return "TESA SA"; |
2948 | 1 | case 1342: |
2949 | 1 | return "CLIM8 LIMITED"; |
2950 | 1 | case 1343: |
2951 | 1 | return "Silergy Corp"; |
2952 | 1 | case 1344: |
2953 | 1 | return "SilverPlus, Inc"; |
2954 | 1 | case 1345: |
2955 | 1 | return "Sharknet srl"; |
2956 | 1 | case 1346: |
2957 | 1 | return "Mist Systems, Inc."; |
2958 | 1 | case 1347: |
2959 | 1 | return "MIWA LOCK CO.,Ltd"; |
2960 | 1 | case 1348: |
2961 | 1 | return "OrthoSensor, Inc."; |
2962 | 1 | case 1349: |
2963 | 1 | return "Candy Hoover Group s.r.l"; |
2964 | 1 | case 1350: |
2965 | 1 | return "Apexar Technologies S.A."; |
2966 | 1 | case 1351: |
2967 | 1 | return "LOGICDATA d.o.o."; |
2968 | 1 | case 1352: |
2969 | 1 | return "Knick Elektronische Messgeraete GmbH & Co. KG"; |
2970 | 1 | case 1353: |
2971 | 1 | return "Smart Technologies and Investment Limited"; |
2972 | 1 | case 1354: |
2973 | 1 | return "Linough Inc."; |
2974 | 1 | case 1355: |
2975 | 1 | return "Advanced Electronic Designs, Inc."; |
2976 | 1 | case 1356: |
2977 | 1 | return "Carefree Scott Fetzer Co Inc"; |
2978 | 1 | case 1357: |
2979 | 1 | return "Sensome"; |
2980 | 1 | case 1358: |
2981 | 1 | return "FORTRONIK storitve d.o.o."; |
2982 | 1 | case 1359: |
2983 | 1 | return "Sinnoz"; |
2984 | 1 | case 1360: |
2985 | 1 | return "Versa Networks, Inc."; |
2986 | 1 | case 1361: |
2987 | 1 | return "Sylero"; |
2988 | 1 | case 1362: |
2989 | 1 | return "Avempace SARL"; |
2990 | 1 | case 1363: |
2991 | 1 | return "Nintendo Co., Ltd."; |
2992 | 1 | case 1364: |
2993 | 1 | return "National Instruments"; |
2994 | 1 | case 1365: |
2995 | 1 | return "KROHNE Messtechnik GmbH"; |
2996 | 1 | case 1366: |
2997 | 1 | return "Otodynamics Ltd"; |
2998 | 1 | case 1367: |
2999 | 1 | return "Arwin Technology Limited"; |
3000 | 1 | case 1368: |
3001 | 1 | return "benegear, inc."; |
3002 | 1 | case 1369: |
3003 | 1 | return "Newcon Optik"; |
3004 | 1 | case 1370: |
3005 | 1 | return "CANDY HOUSE, Inc."; |
3006 | 1 | case 1371: |
3007 | 1 | return "FRANKLIN TECHNOLOGY INC"; |
3008 | 1 | case 1372: |
3009 | 1 | return "Lely"; |
3010 | 1 | case 1373: |
3011 | 1 | return "Valve Corporation"; |
3012 | 1 | case 1374: |
3013 | 1 | return "Hekatron Vertriebs GmbH"; |
3014 | 1 | case 1375: |
3015 | 1 | return "PROTECH S.A.S. DI GIRARDI ANDREA & C."; |
3016 | 1 | case 1376: |
3017 | 1 | return "Sarita CareTech APS (formerly Sarita CareTech IVS)"; |
3018 | 1 | case 1377: |
3019 | 1 | return "Finder S.p.A."; |
3020 | 1 | case 1378: |
3021 | 1 | return "Thalmic Labs Inc."; |
3022 | 1 | case 1379: |
3023 | 1 | return "Steinel Vertrieb GmbH"; |
3024 | 1 | case 1380: |
3025 | 1 | return "Beghelli Spa"; |
3026 | 1 | case 1381: |
3027 | 1 | return "Beijing Smartspace Technologies Inc."; |
3028 | 1 | case 1382: |
3029 | 1 | return "CORE TRANSPORT TECHNOLOGIES NZ LIMITED"; |
3030 | 1 | case 1383: |
3031 | 1 | return "Xiamen Everesports Goods Co., Ltd"; |
3032 | 1 | case 1384: |
3033 | 1 | return "Bodyport Inc."; |
3034 | 1 | case 1385: |
3035 | 1 | return "Audionics System, INC."; |
3036 | 1 | case 1386: |
3037 | 1 | return "Flipnavi Co.,Ltd."; |
3038 | 1 | case 1387: |
3039 | 1 | return "Rion Co., Ltd."; |
3040 | 1 | case 1388: |
3041 | 1 | return "Long Range Systems, LLC"; |
3042 | 1 | case 1389: |
3043 | 1 | return "Redmond Industrial Group LLC"; |
3044 | 1 | case 1390: |
3045 | 1 | return "VIZPIN INC."; |
3046 | 1 | case 1391: |
3047 | 1 | return "BikeFinder AS"; |
3048 | 1 | case 1392: |
3049 | 1 | return "Consumer Sleep Solutions LLC"; |
3050 | 1 | case 1393: |
3051 | 1 | return "PSIKICK, INC."; |
3052 | 1 | case 1394: |
3053 | 1 | return "AntTail.com"; |
3054 | 1 | case 1395: |
3055 | 1 | return "Lighting Science Group Corp."; |
3056 | 1 | case 1396: |
3057 | 1 | return "AFFORDABLE ELECTRONICS INC"; |
3058 | 1 | case 1397: |
3059 | 1 | return "Integral Memory Plc"; |
3060 | 1 | case 1398: |
3061 | 1 | return "Globalstar, Inc."; |
3062 | 1 | case 1399: |
3063 | 1 | return "True Wearables, Inc."; |
3064 | 1 | case 1400: |
3065 | 1 | return "Wellington Drive Technologies Ltd"; |
3066 | 1 | case 1401: |
3067 | 1 | return "Ensemble Tech Private Limited"; |
3068 | 1 | case 1402: |
3069 | 1 | return "OMNI Remotes"; |
3070 | 1 | case 1403: |
3071 | 1 | return "Duracell U.S. Operations Inc."; |
3072 | 1 | case 1404: |
3073 | 1 | return "Toor Technologies LLC"; |
3074 | 1 | case 1405: |
3075 | 1 | return "Instinct Performance"; |
3076 | 1 | case 1406: |
3077 | 1 | return "Beco, Inc"; |
3078 | 1 | case 1407: |
3079 | 1 | return "Scuf Gaming International, LLC"; |
3080 | 1 | case 1408: |
3081 | 1 | return "ARANZ Medical Limited"; |
3082 | 1 | case 1409: |
3083 | 1 | return "LYS TECHNOLOGIES LTD"; |
3084 | 1 | case 1410: |
3085 | 1 | return "Breakwall Analytics, LLC"; |
3086 | 1 | case 1411: |
3087 | 1 | return "Code Blue Communications"; |
3088 | 1 | case 1412: |
3089 | 1 | return "Gira Giersiepen GmbH & Co. KG"; |
3090 | 1 | case 1413: |
3091 | 1 | return "Hearing Lab Technology"; |
3092 | 1 | case 1414: |
3093 | 1 | return "LEGRAND"; |
3094 | 1 | case 1415: |
3095 | 1 | return "Derichs GmbH"; |
3096 | 1 | case 1416: |
3097 | 1 | return "ALT-TEKNIK LLC"; |
3098 | 1 | case 1417: |
3099 | 1 | return "Star Technologies"; |
3100 | 1 | case 1418: |
3101 | 1 | return "START TODAY CO.,LTD."; |
3102 | 1 | case 1419: |
3103 | 1 | return "Maxim Integrated Products"; |
3104 | 1 | case 1420: |
3105 | 1 | return "MERCK Kommanditgesellschaft auf Aktien"; |
3106 | 1 | case 1421: |
3107 | 1 | return "Jungheinrich Aktiengesellschaft"; |
3108 | 1 | case 1422: |
3109 | 1 | return "Oculus VR, LLC"; |
3110 | 1 | case 1423: |
3111 | 1 | return "HENDON SEMICONDUCTORS PTY LTD"; |
3112 | 1 | case 1424: |
3113 | 1 | return "Pur3 Ltd"; |
3114 | 1 | case 1425: |
3115 | 1 | return "Viasat Group S.p.A."; |
3116 | 1 | case 1426: |
3117 | 1 | return "IZITHERM"; |
3118 | 1 | case 1427: |
3119 | 1 | return "Spaulding Clinical Research"; |
3120 | 1 | case 1428: |
3121 | 1 | return "Kohler Company"; |
3122 | 1 | case 1429: |
3123 | 1 | return "Inor Process AB"; |
3124 | 1 | case 1430: |
3125 | 1 | return "My Smart Blinds"; |
3126 | 1 | case 1431: |
3127 | 1 | return "RadioPulse Inc"; |
3128 | 1 | case 1432: |
3129 | 1 | return "rapitag GmbH"; |
3130 | 1 | case 1433: |
3131 | 1 | return "Lazlo326, LLC."; |
3132 | 1 | case 1434: |
3133 | 1 | return "Teledyne Lecroy, Inc."; |
3134 | 1 | case 1435: |
3135 | 1 | return "Dataflow Systems Limited"; |
3136 | 1 | case 1436: |
3137 | 1 | return "Macrogiga Electronics"; |
3138 | 1 | case 1437: |
3139 | 1 | return "Tandem Diabetes Care"; |
3140 | 1 | case 1438: |
3141 | 1 | return "Polycom, Inc."; |
3142 | 1 | case 1439: |
3143 | 1 | return "Fisher & Paykel Healthcare"; |
3144 | 1 | case 1440: |
3145 | 1 | return "RCP Software Oy"; |
3146 | 1 | case 1441: |
3147 | 1 | return "Shanghai Xiaoyi Technology Co.,Ltd."; |
3148 | 1 | case 1442: |
3149 | 1 | return "ADHERIUM(NZ) LIMITED"; |
3150 | 1 | case 1443: |
3151 | 1 | return "Axiomware Systems Incorporated"; |
3152 | 1 | case 1444: |
3153 | 1 | return "O. E. M. Controls, Inc."; |
3154 | 1 | case 1445: |
3155 | 1 | return "Kiiroo BV"; |
3156 | 1 | case 1446: |
3157 | 1 | return "Telecon Mobile Limited"; |
3158 | 1 | case 1447: |
3159 | 1 | return "Sonos Inc"; |
3160 | 1 | case 1448: |
3161 | 1 | return "Tom Allebrandi Consulting"; |
3162 | 1 | case 1449: |
3163 | 1 | return "Monidor"; |
3164 | 1 | case 1450: |
3165 | 1 | return "Tramex Limited"; |
3166 | 1 | case 1451: |
3167 | 1 | return "Nofence AS"; |
3168 | 1 | case 1452: |
3169 | 1 | return "GoerTek Dynaudio Co., Ltd."; |
3170 | 1 | case 1453: |
3171 | 1 | return "INIA"; |
3172 | 1 | case 1454: |
3173 | 1 | return "CARMATE MFG.CO.,LTD"; |
3174 | 1 | case 1455: |
3175 | 1 | return "ONvocal"; |
3176 | 1 | case 1456: |
3177 | 1 | return "NewTec GmbH"; |
3178 | 1 | case 1457: |
3179 | 1 | return "Medallion Instrumentation Systems"; |
3180 | 1 | case 1458: |
3181 | 1 | return "CAREL INDUSTRIES S.P.A."; |
3182 | 1 | case 1459: |
3183 | 1 | return "Parabit Systems, Inc."; |
3184 | 1 | case 1460: |
3185 | 1 | return "White Horse Scientific ltd"; |
3186 | 1 | case 1461: |
3187 | 1 | return "verisilicon"; |
3188 | 1 | case 1462: |
3189 | 1 | return "Elecs Industry Co.,Ltd."; |
3190 | 1 | case 1463: |
3191 | 1 | return "Beijing Pinecone Electronics Co.,Ltd."; |
3192 | 1 | case 1464: |
3193 | 1 | return "Ambystoma Labs Inc."; |
3194 | 1 | case 1465: |
3195 | 1 | return "Suzhou Pairlink Network Technology"; |
3196 | 1 | case 1466: |
3197 | 1 | return "igloohome"; |
3198 | 1 | case 1467: |
3199 | 1 | return "Oxford Metrics plc"; |
3200 | 1 | case 1468: |
3201 | 1 | return "Leviton Mfg. Co., Inc."; |
3202 | 1 | case 1469: |
3203 | 1 | return "ULC Robotics Inc."; |
3204 | 1 | case 1470: |
3205 | 1 | return "RFID Global by Softwork SrL"; |
3206 | 1 | case 1471: |
3207 | 1 | return "Real-World-Systems Corporation"; |
3208 | 1 | case 1472: |
3209 | 1 | return "Nalu Medical, Inc."; |
3210 | 1 | case 1473: |
3211 | 1 | return "P.I.Engineering"; |
3212 | 1 | case 1474: |
3213 | 1 | return "Grote Industries"; |
3214 | 1 | case 1475: |
3215 | 1 | return "Runtime, Inc."; |
3216 | 1 | case 1476: |
3217 | 1 | return "Codecoup sp. z o.o. sp. k."; |
3218 | 1 | case 1477: |
3219 | 1 | return "SELVE GmbH & Co. KG"; |
3220 | 1 | case 1478: |
3221 | 1 | return "Smart Animal Training Systems, LLC"; |
3222 | 1 | case 1479: |
3223 | 1 | return "Lippert Components, INC"; |
3224 | 1 | case 1480: |
3225 | 1 | return "SOMFY SAS"; |
3226 | 1 | case 1481: |
3227 | 1 | return "TBS Electronics B.V."; |
3228 | 1 | case 1482: |
3229 | 1 | return "MHL Custom Inc"; |
3230 | 1 | case 1483: |
3231 | 1 | return "LucentWear LLC"; |
3232 | 1 | case 1484: |
3233 | 1 | return "WATTS ELECTRONICS"; |
3234 | 1 | case 1485: |
3235 | 1 | return "RJ Brands LLC"; |
3236 | 1 | case 1486: |
3237 | 1 | return "V-ZUG Ltd"; |
3238 | 1 | case 1487: |
3239 | 1 | return "Biowatch SA"; |
3240 | 1 | case 1488: |
3241 | 1 | return "Anova Applied Electronics"; |
3242 | 1 | case 1489: |
3243 | 1 | return "Lindab AB"; |
3244 | 1 | case 1490: |
3245 | 1 | return "frogblue TECHNOLOGY GmbH"; |
3246 | 1 | case 1491: |
3247 | 1 | return "Acurable Limited"; |
3248 | 2 | case 1492: |
3249 | 2 | return "LAMPLIGHT Co., Ltd."; |
3250 | 1 | case 1493: |
3251 | 1 | return "TEGAM, Inc."; |
3252 | 1 | case 1494: |
3253 | 1 | return "Zhuhai Jieli technology Co.,Ltd"; |
3254 | 1 | case 1495: |
3255 | 1 | return "modum.io AG"; |
3256 | 1 | case 1496: |
3257 | 1 | return "Farm Jenny LLC"; |
3258 | 1 | case 1497: |
3259 | 1 | return "Toyo Electronics Corporation"; |
3260 | 1 | case 1498: |
3261 | 1 | return "Applied Neural Research Corp"; |
3262 | 1 | case 1499: |
3263 | 1 | return "Avid Identification Systems, Inc."; |
3264 | 1 | case 1500: |
3265 | 1 | return "Petronics Inc."; |
3266 | 1 | case 1501: |
3267 | 1 | return "essentim GmbH"; |
3268 | 1 | case 1502: |
3269 | 1 | return "QT Medical INC."; |
3270 | 1 | case 1503: |
3271 | 1 | return "VIRTUALCLINIC.DIRECT LIMITED"; |
3272 | 1 | case 1504: |
3273 | 1 | return "Viper Design LLC"; |
3274 | 1 | case 1505: |
3275 | 1 | return "Human, Incorporated"; |
3276 | 1 | case 1506: |
3277 | 1 | return "stAPPtronics GmbH"; |
3278 | 1 | case 1507: |
3279 | 1 | return "Elemental Machines, Inc."; |
3280 | 1 | case 1508: |
3281 | 1 | return "Taiyo Yuden Co., Ltd"; |
3282 | 1 | case 1509: |
3283 | 1 | return "INEO ENERGY& SYSTEMS"; |
3284 | 1 | case 1510: |
3285 | 1 | return "Motion Instruments Inc."; |
3286 | 1 | case 1511: |
3287 | 1 | return "PressurePro"; |
3288 | 1 | case 1512: |
3289 | 1 | return "COWBOY"; |
3290 | 1 | case 1513: |
3291 | 1 | return "iconmobile GmbH"; |
3292 | 1 | case 1514: |
3293 | 1 | return "ACS-Control-System GmbH"; |
3294 | 1 | case 1515: |
3295 | 1 | return "Bayerische Motoren Werke AG"; |
3296 | 1 | case 1516: |
3297 | 1 | return "Gycom Svenska AB"; |
3298 | 1 | case 1517: |
3299 | 1 | return "Fuji Xerox Co., Ltd"; |
3300 | 1 | case 1518: |
3301 | 1 | return "Glide Inc."; |
3302 | 1 | case 1519: |
3303 | 1 | return "SIKOM AS"; |
3304 | 1 | case 1520: |
3305 | 1 | return "beken"; |
3306 | 1 | case 1521: |
3307 | 1 | return "The Linux Foundation"; |
3308 | 1 | case 1522: |
3309 | 1 | return "Try and E CO.,LTD."; |
3310 | 1 | case 1523: |
3311 | 1 | return "SeeScan"; |
3312 | 1 | case 1524: |
3313 | 1 | return "Clearity, LLC"; |
3314 | 1 | case 1525: |
3315 | 1 | return "GS TAG"; |
3316 | 1 | case 1526: |
3317 | 1 | return "DPTechnics"; |
3318 | 1 | case 1527: |
3319 | 1 | return "TRACMO, INC."; |
3320 | 1 | case 1528: |
3321 | 1 | return "Anki Inc."; |
3322 | 1 | case 1529: |
3323 | 1 | return "Hagleitner Hygiene International GmbH"; |
3324 | 1 | case 1530: |
3325 | 1 | return "Konami Sports Life Co., Ltd."; |
3326 | 1 | case 1531: |
3327 | 1 | return "Arblet Inc."; |
3328 | 1 | case 1532: |
3329 | 1 | return "Masbando GmbH"; |
3330 | 1 | case 1533: |
3331 | 1 | return "Innoseis"; |
3332 | 1 | case 1534: |
3333 | 1 | return "Niko nv"; |
3334 | 1 | case 1535: |
3335 | 1 | return "Wellnomics Ltd"; |
3336 | 1 | case 1536: |
3337 | 1 | return "iRobot Corporation"; |
3338 | 1 | case 1537: |
3339 | 1 | return "Schrader Electronics"; |
3340 | 1 | case 1538: |
3341 | 1 | return "Geberit International AG"; |
3342 | 1 | case 1539: |
3343 | 1 | return "Fourth Evolution Inc"; |
3344 | 1 | case 1540: |
3345 | 1 | return "Cell2Jack LLC"; |
3346 | 1 | case 1541: |
3347 | 1 | return "FMW electronic Futterer u. Maier-Wolf OHG"; |
3348 | 1 | case 1542: |
3349 | 1 | return "John Deere"; |
3350 | 1 | case 1543: |
3351 | 1 | return "Rookery Technology Ltd"; |
3352 | 1 | case 1544: |
3353 | 1 | return "KeySafe-Cloud"; |
3354 | 1 | case 1545: |
3355 | 1 | return "BUCHI Labortechnik AG"; |
3356 | 1 | case 1546: |
3357 | 1 | return "IQAir AG"; |
3358 | 1 | case 1547: |
3359 | 1 | return "Triax Technologies Inc"; |
3360 | 1 | case 1548: |
3361 | 1 | return "Vuzix Corporation"; |
3362 | 1 | case 1549: |
3363 | 1 | return "TDK Corporation"; |
3364 | 1 | case 1550: |
3365 | 1 | return "Blueair AB"; |
3366 | 1 | case 1551: |
3367 | 1 | return "Signify Netherlands"; |
3368 | 1 | case 1552: |
3369 | 1 | return "ADH GUARDIAN USA LLC"; |
3370 | 1 | case 1553: |
3371 | 1 | return "Beurer GmbH"; |
3372 | 1 | case 1554: |
3373 | 1 | return "Playfinity AS"; |
3374 | 1 | case 1555: |
3375 | 1 | return "Hans Dinslage GmbH"; |
3376 | 1 | case 1556: |
3377 | 1 | return "OnAsset Intelligence, Inc."; |
3378 | 1 | case 1557: |
3379 | 1 | return "INTER ACTION Corporation"; |
3380 | 1 | case 1558: |
3381 | 1 | return "OS42 UG (haftungsbeschraenkt)"; |
3382 | 1 | case 1559: |
3383 | 1 | return "WIZCONNECTED COMPANY LIMITED"; |
3384 | 1 | case 1560: |
3385 | 1 | return "Audio-Technica Corporation"; |
3386 | 2 | case 1561: |
3387 | 2 | return "Six Guys Labs, s.r.o."; |
3388 | 1 | case 1562: |
3389 | 1 | return "R.W. Beckett Corporation"; |
3390 | 1 | case 1563: |
3391 | 1 | return "silex technology, inc."; |
3392 | 1 | case 1564: |
3393 | 1 | return "Univations Limited"; |
3394 | 1 | case 1565: |
3395 | 1 | return "SENS Innovation ApS"; |
3396 | 1 | case 1566: |
3397 | 1 | return "Diamond Kinetics, Inc."; |
3398 | 1 | case 1567: |
3399 | 1 | return "Phrame Inc."; |
3400 | 1 | case 1568: |
3401 | 1 | return "Forciot Oy"; |
3402 | 1 | case 1569: |
3403 | 1 | return "Noordung d.o.o."; |
3404 | 1 | case 1570: |
3405 | 1 | return "Beam Labs, LLC"; |
3406 | 1 | case 1571: |
3407 | 1 | return "Philadelphia Scientific (U.K.) Limited"; |
3408 | 1 | case 1572: |
3409 | 1 | return "Biovotion AG"; |
3410 | 1 | case 1573: |
3411 | 1 | return "Square Panda, Inc."; |
3412 | 1 | case 1574: |
3413 | 1 | return "Amplifico"; |
3414 | 1 | case 1575: |
3415 | 1 | return "WEG S.A."; |
3416 | 1 | case 1576: |
3417 | 1 | return "Ensto Oy"; |
3418 | 1 | case 1577: |
3419 | 1 | return "PHONEPE PVT LTD"; |
3420 | 1 | case 1578: |
3421 | 1 | return "Lunatico Astronomia SL"; |
3422 | 1 | case 1579: |
3423 | 1 | return "MinebeaMitsumi Inc."; |
3424 | 1 | case 1580: |
3425 | 1 | return "ASPion GmbH"; |
3426 | 1 | case 1581: |
3427 | 1 | return "Vossloh-Schwabe Deutschland GmbH"; |
3428 | 1 | case 1582: |
3429 | 1 | return "Procept"; |
3430 | 1 | case 1583: |
3431 | 1 | return "ONKYO Corporation"; |
3432 | 1 | case 1584: |
3433 | 1 | return "Asthrea D.O.O."; |
3434 | 1 | case 1585: |
3435 | 1 | return "Fortiori Design LLC"; |
3436 | 1 | case 1586: |
3437 | 1 | return "Hugo Muller GmbH & Co KG"; |
3438 | 1 | case 1587: |
3439 | 1 | return "Wangi Lai PLT"; |
3440 | 1 | case 1588: |
3441 | 1 | return "Fanstel Corp"; |
3442 | 1 | case 1589: |
3443 | 1 | return "Crookwood"; |
3444 | 1 | case 1590: |
3445 | 1 | return "ELECTRONICA INTEGRAL DE SONIDO S.A."; |
3446 | 1 | case 1591: |
3447 | 1 | return "GiP Innovation Tools GmbH"; |
3448 | 1 | case 1592: |
3449 | 1 | return "LX SOLUTIONS PTY LIMITED"; |
3450 | 1 | case 1593: |
3451 | 1 | return "Shenzhen Minew Technologies Co., Ltd."; |
3452 | 1 | case 1594: |
3453 | 1 | return "Prolojik Limited"; |
3454 | 1 | case 1595: |
3455 | 1 | return "Kromek Group Plc"; |
3456 | 1 | case 1596: |
3457 | 1 | return "Contec Medical Systems Co., Ltd."; |
3458 | 1 | case 1597: |
3459 | 1 | return "Xradio Technology Co.,Ltd."; |
3460 | 1 | case 1598: |
3461 | 1 | return "The Indoor Lab, LLC"; |
3462 | 1 | case 1599: |
3463 | 1 | return "LDL TECHNOLOGY"; |
3464 | 1 | case 1600: |
3465 | 1 | return "Parkifi"; |
3466 | 1 | case 1601: |
3467 | 1 | return "Revenue Collection Systems FRANCE SAS"; |
3468 | 1 | case 1602: |
3469 | 1 | return "Bluetrum Technology Co.,Ltd"; |
3470 | 1 | case 1603: |
3471 | 1 | return "makita corporation"; |
3472 | 1 | case 1604: |
3473 | 1 | return "Apogee Instruments"; |
3474 | 1 | case 1605: |
3475 | 1 | return "BM3"; |
3476 | 1 | case 1606: |
3477 | 1 | return "SGV Group Holding GmbH & Co. KG"; |
3478 | 1 | case 1607: |
3479 | 1 | return "MED-EL"; |
3480 | 1 | case 1608: |
3481 | 1 | return "Ultune Technologies"; |
3482 | 1 | case 1609: |
3483 | 1 | return "Ryeex Technology Co.,Ltd."; |
3484 | 1 | case 1610: |
3485 | 1 | return "Open Research Institute, Inc."; |
3486 | 1 | case 1611: |
3487 | 1 | return "Scale-Tec, Ltd"; |
3488 | 1 | case 1612: |
3489 | 1 | return "Zumtobel Group AG"; |
3490 | 1 | case 1613: |
3491 | 1 | return "iLOQ Oy"; |
3492 | 1 | case 1614: |
3493 | 1 | return "KRUXWorks Technologies Private Limited"; |
3494 | 1 | case 1615: |
3495 | 1 | return "Digital Matter Pty Ltd"; |
3496 | 1 | case 1616: |
3497 | 1 | return "Coravin, Inc."; |
3498 | 1 | case 1617: |
3499 | 1 | return "Stasis Labs, Inc."; |
3500 | 1 | case 1618: |
3501 | 1 | return "ITZ Innovations- und Technologiezentrum GmbH"; |
3502 | 1 | case 1619: |
3503 | 1 | return "Meggitt SA"; |
3504 | 1 | case 1620: |
3505 | 1 | return "Ledlenser GmbH & Co. KG"; |
3506 | 1 | case 1621: |
3507 | 1 | return "Renishaw PLC"; |
3508 | 1 | case 1622: |
3509 | 1 | return "ZhuHai AdvanPro Technology Company Limited"; |
3510 | 1 | case 1623: |
3511 | 1 | return "Meshtronix Limited"; |
3512 | 1 | case 1624: |
3513 | 1 | return "Payex Norge AS"; |
3514 | 1 | case 1625: |
3515 | 1 | return "UnSeen Technologies Oy"; |
3516 | 1 | case 1626: |
3517 | 1 | return "Zound Industries International AB"; |
3518 | 1 | case 1627: |
3519 | 1 | return "Sesam Solutions BV"; |
3520 | 1 | case 1628: |
3521 | 1 | return "PixArt Imaging Inc."; |
3522 | 1 | case 1629: |
3523 | 1 | return "Panduit Corp."; |
3524 | 1 | case 1630: |
3525 | 1 | return "Alo AB"; |
3526 | 1 | case 1631: |
3527 | 1 | return "Ricoh Company Ltd"; |
3528 | 1 | case 1632: |
3529 | 1 | return "RTC Industries, Inc."; |
3530 | 1 | case 1633: |
3531 | 1 | return "Mode Lighting Limited"; |
3532 | 1 | case 1634: |
3533 | 1 | return "Particle Industries, Inc."; |
3534 | 1 | case 1635: |
3535 | 1 | return "Advanced Telemetry Systems, Inc."; |
3536 | 1 | case 1636: |
3537 | 1 | return "RHA TECHNOLOGIES LTD"; |
3538 | 1 | case 1637: |
3539 | 1 | return "Pure International Limited"; |
3540 | 1 | case 1638: |
3541 | 1 | return "WTO Werkzeug-Einrichtungen GmbH"; |
3542 | 1 | case 1639: |
3543 | 1 | return "Spark Technology Labs Inc."; |
3544 | 1 | case 1640: |
3545 | 1 | return "Bleb Technology srl"; |
3546 | 1 | case 1641: |
3547 | 1 | return "Livanova USA, Inc."; |
3548 | 1 | case 1642: |
3549 | 1 | return "Brady Worldwide Inc."; |
3550 | 1 | case 1643: |
3551 | 1 | return "DewertOkin GmbH"; |
3552 | 1 | case 1644: |
3553 | 1 | return "Ztove ApS"; |
3554 | 1 | case 1645: |
3555 | 1 | return "Venso EcoSolutions AB"; |
3556 | 1 | case 1646: |
3557 | 1 | return "Eurotronik Kranj d.o.o."; |
3558 | 1 | case 1647: |
3559 | 1 | return "Hug Technology Ltd"; |
3560 | 1 | case 1648: |
3561 | 1 | return "Gema Switzerland GmbH"; |
3562 | 1 | case 1649: |
3563 | 1 | return "Buzz Products Ltd."; |
3564 | 1 | case 1650: |
3565 | 1 | return "Kopi"; |
3566 | 1 | case 1651: |
3567 | 1 | return "Innova Ideas Limited"; |
3568 | 1 | case 1652: |
3569 | 1 | return "BeSpoon"; |
3570 | 1 | case 1653: |
3571 | 1 | return "Deco Enterprises, Inc."; |
3572 | 1 | case 1654: |
3573 | 1 | return "Expai Solutions Private Limited"; |
3574 | 1 | case 1655: |
3575 | 1 | return "Innovation First, Inc."; |
3576 | 1 | case 1656: |
3577 | 1 | return "SABIK Offshore GmbH"; |
3578 | 1 | case 1657: |
3579 | 1 | return "4iiii Innovations Inc."; |
3580 | 1 | case 1658: |
3581 | 1 | return "The Energy Conservatory, Inc."; |
3582 | 1 | case 1659: |
3583 | 1 | return "I.FARM, INC."; |
3584 | 1 | case 1660: |
3585 | 1 | return "Tile, Inc."; |
3586 | 1 | case 1661: |
3587 | 1 | return "Form Athletica Inc."; |
3588 | 1 | case 1662: |
3589 | 1 | return "MbientLab Inc"; |
3590 | 1 | case 1663: |
3591 | 1 | return "NETGRID S.N.C. DI BISSOLI MATTEO, CAMPOREALE SIMONE, TOGNETTI FEDERICO"; |
3592 | 1 | case 1664: |
3593 | 1 | return "Mannkind Corporation"; |
3594 | 1 | case 1665: |
3595 | 1 | return "Trade FIDES a.s."; |
3596 | 1 | case 1666: |
3597 | 1 | return "Photron Limited"; |
3598 | 1 | case 1667: |
3599 | 1 | return "Eltako GmbH"; |
3600 | 1 | case 1668: |
3601 | 1 | return "Dermalapps, LLC"; |
3602 | 1 | case 1669: |
3603 | 1 | return "Greenwald Industries"; |
3604 | 1 | case 1670: |
3605 | 1 | return "inQs Co., Ltd."; |
3606 | 1 | case 1671: |
3607 | 1 | return "Cherry GmbH"; |
3608 | 1 | case 1672: |
3609 | 1 | return "Amsted Digital Solutions Inc."; |
3610 | 1 | case 1673: |
3611 | 1 | return "Tacx b.v."; |
3612 | 1 | case 1674: |
3613 | 1 | return "Raytac Corporation"; |
3614 | 1 | case 1675: |
3615 | 1 | return "Jiangsu Teranovo Tech Co., Ltd."; |
3616 | 1 | case 1676: |
3617 | 1 | return "Changzhou Sound Dragon Electronics and Acoustics Co., Ltd"; |
3618 | 1 | case 1677: |
3619 | 1 | return "JetBeep Inc."; |
3620 | 1 | case 1678: |
3621 | 1 | return "Razer Inc."; |
3622 | 1 | case 1679: |
3623 | 1 | return "JRM Group Limited"; |
3624 | 1 | case 1680: |
3625 | 1 | return "Eccrine Systems, Inc."; |
3626 | 1 | case 1681: |
3627 | 1 | return "Curie Point AB"; |
3628 | 1 | case 1682: |
3629 | 1 | return "Georg Fischer AG"; |
3630 | 1 | case 1683: |
3631 | 1 | return "Hach - Danaher"; |
3632 | 1 | case 1684: |
3633 | 1 | return "T&A Laboratories LLC"; |
3634 | 1 | case 1685: |
3635 | 1 | return "Koki Holdings Co., Ltd."; |
3636 | 1 | case 1686: |
3637 | 1 | return "Gunakar Private Limited"; |
3638 | 1 | case 1687: |
3639 | 1 | return "Stemco Products Inc"; |
3640 | 1 | case 1688: |
3641 | 1 | return "Wood IT Security, LLC"; |
3642 | 1 | case 1689: |
3643 | 1 | return "RandomLab SAS"; |
3644 | 1 | case 1690: |
3645 | 1 | return "Adero, Inc. (formerly as TrackR, Inc.)"; |
3646 | 1 | case 1691: |
3647 | 1 | return "Dragonchip Limited"; |
3648 | 1 | case 1692: |
3649 | 1 | return "Noomi AB"; |
3650 | 1 | case 1693: |
3651 | 1 | return "Vakaros LLC"; |
3652 | 1 | case 1694: |
3653 | 1 | return "Delta Electronics, Inc."; |
3654 | 1 | case 1695: |
3655 | 1 | return "FlowMotion Technologies AS"; |
3656 | 1 | case 1696: |
3657 | 1 | return "OBIQ Location Technology Inc."; |
3658 | 1 | case 1697: |
3659 | 1 | return "Cardo Systems, Ltd"; |
3660 | 1 | case 1698: |
3661 | 1 | return "Globalworx GmbH"; |
3662 | 1 | case 1699: |
3663 | 1 | return "Nymbus, LLC"; |
3664 | 1 | case 1700: |
3665 | 1 | return "Sanyo Techno Solutions Tottori Co., Ltd."; |
3666 | 1 | case 1701: |
3667 | 1 | return "TEKZITEL PTY LTD"; |
3668 | 1 | case 1702: |
3669 | 1 | return "Roambee Corporation"; |
3670 | 1 | case 1703: |
3671 | 1 | return "Chipsea Technologies (ShenZhen) Corp."; |
3672 | 1 | case 1704: |
3673 | 1 | return "GD Midea Air-Conditioning Equipment Co., Ltd."; |
3674 | 1 | case 1705: |
3675 | 1 | return "Soundmax Electronics Limited"; |
3676 | 1 | case 1706: |
3677 | 1 | return "Produal Oy"; |
3678 | 1 | case 1707: |
3679 | 1 | return "HMS Industrial Networks AB"; |
3680 | 1 | case 1708: |
3681 | 1 | return "Ingchips Technology Co., Ltd."; |
3682 | 1 | case 1709: |
3683 | 1 | return "InnovaSea Systems Inc."; |
3684 | 1 | case 1710: |
3685 | 1 | return "SenseQ Inc."; |
3686 | 1 | case 1711: |
3687 | 1 | return "Shoof Technologies"; |
3688 | 1 | case 1712: |
3689 | 1 | return "BRK Brands, Inc."; |
3690 | 1 | case 1713: |
3691 | 1 | return "SimpliSafe, Inc."; |
3692 | 1 | case 1714: |
3693 | 1 | return "Tussock Innovation 2013 Limited"; |
3694 | 1 | case 1715: |
3695 | 1 | return "The Hablab ApS"; |
3696 | 1 | case 1716: |
3697 | 1 | return "Sencilion Oy"; |
3698 | 1 | case 1717: |
3699 | 1 | return "Wabilogic Ltd."; |
3700 | 1 | case 1718: |
3701 | 1 | return "Sociometric Solutions, Inc."; |
3702 | 1 | case 1719: |
3703 | 1 | return "iCOGNIZE GmbH"; |
3704 | 1 | case 1720: |
3705 | 1 | return "ShadeCraft, Inc"; |
3706 | 1 | case 1721: |
3707 | 1 | return "Beflex Inc."; |
3708 | 1 | case 1722: |
3709 | 1 | return "Beaconzone Ltd"; |
3710 | 1 | case 1723: |
3711 | 1 | return "Leaftronix Analogic Solutions Private Limited"; |
3712 | 1 | case 1724: |
3713 | 1 | return "TWS Srl"; |
3714 | 1 | case 1725: |
3715 | 1 | return "ABB Oy"; |
3716 | 1 | case 1726: |
3717 | 1 | return "HitSeed Oy"; |
3718 | 2 | case 1727: |
3719 | 2 | return "Delcom Products Inc."; |
3720 | 1 | case 1728: |
3721 | 1 | return "CAME S.p.A."; |
3722 | 1 | case 1729: |
3723 | 1 | return "Alarm.com Holdings, Inc"; |
3724 | 1 | case 1730: |
3725 | 1 | return "Measurlogic Inc."; |
3726 | 1 | case 1731: |
3727 | 1 | return "King I Electronics.Co.,Ltd"; |
3728 | 1 | case 1732: |
3729 | 1 | return "Dream Labs GmbH"; |
3730 | 1 | case 1733: |
3731 | 1 | return "Urban Compass, Inc"; |
3732 | 1 | case 1734: |
3733 | 1 | return "Simm Tronic Limited"; |
3734 | 1 | case 1735: |
3735 | 1 | return "Somatix Inc"; |
3736 | 1 | case 1736: |
3737 | 1 | return "Storz & Bickel GmbH & Co. KG"; |
3738 | 1 | case 1737: |
3739 | 1 | return "MYLAPS B.V."; |
3740 | 1 | case 1738: |
3741 | 1 | return "Shenzhen Zhongguang Infotech Technology Development Co., Ltd"; |
3742 | 1 | case 1739: |
3743 | 1 | return "Dyeware, LLC"; |
3744 | 1 | case 1740: |
3745 | 1 | return "Dongguan SmartAction Technology Co.,Ltd."; |
3746 | 1 | case 1741: |
3747 | 1 | return "DIG Corporation"; |
3748 | 1 | case 1742: |
3749 | 1 | return "FIOR & GENTZ"; |
3750 | 1 | case 1743: |
3751 | 1 | return "Belparts N.V."; |
3752 | 1 | case 1744: |
3753 | 1 | return "Etekcity Corporation"; |
3754 | 1 | case 1745: |
3755 | 1 | return "Meyer Sound Laboratories, Incorporated"; |
3756 | 1 | case 1746: |
3757 | 1 | return "CeoTronics AG"; |
3758 | 1 | case 1747: |
3759 | 1 | return "TriTeq Lock and Security, LLC"; |
3760 | 1 | case 1748: |
3761 | 1 | return "DYNAKODE TECHNOLOGY PRIVATE LIMITED"; |
3762 | 1 | case 1749: |
3763 | 1 | return "Sensirion AG"; |
3764 | 1 | case 1750: |
3765 | 1 | return "JCT Healthcare Pty Ltd"; |
3766 | 1 | case 1751: |
3767 | 1 | return "FUBA Automotive Electronics GmbH"; |
3768 | 1 | case 1752: |
3769 | 1 | return "AW Company"; |
3770 | 1 | case 1753: |
3771 | 1 | return "Shanghai Mountain View Silicon Co.,Ltd."; |
3772 | 1 | case 1754: |
3773 | 1 | return "Zliide Technologies ApS"; |
3774 | 1 | case 1755: |
3775 | 1 | return "Automatic Labs, Inc."; |
3776 | 1 | case 1756: |
3777 | 1 | return "Industrial Network Controls, LLC"; |
3778 | 1 | case 1757: |
3779 | 1 | return "Intellithings Ltd."; |
3780 | 1 | case 1758: |
3781 | 1 | return "Navcast, Inc."; |
3782 | 1 | case 1759: |
3783 | 1 | return "Hubbell Lighting, Inc."; |
3784 | 1 | case 1760: |
3785 | 1 | return "Avaya "; |
3786 | 1 | case 1761: |
3787 | 1 | return "Milestone AV Technologies LLC"; |
3788 | 1 | case 1762: |
3789 | 1 | return "Alango Technologies Ltd"; |
3790 | 1 | case 1763: |
3791 | 1 | return "Spinlock Ltd"; |
3792 | 1 | case 1764: |
3793 | 1 | return "Aluna"; |
3794 | 1 | case 1765: |
3795 | 1 | return "OPTEX CO.,LTD."; |
3796 | 1 | case 1766: |
3797 | 1 | return "NIHON DENGYO KOUSAKU"; |
3798 | 1 | case 1767: |
3799 | 1 | return "VELUX A/S"; |
3800 | 1 | case 1768: |
3801 | 1 | return "Almendo Technologies GmbH"; |
3802 | 1 | case 1769: |
3803 | 1 | return "Zmartfun Electronics, Inc."; |
3804 | 1 | case 1770: |
3805 | 1 | return "SafeLine Sweden AB"; |
3806 | 1 | case 1771: |
3807 | 1 | return "Houston Radar LLC"; |
3808 | 1 | case 1772: |
3809 | 1 | return "Sigur"; |
3810 | 1 | case 1773: |
3811 | 1 | return "J Neades Ltd"; |
3812 | 1 | case 1774: |
3813 | 1 | return "Avantis Systems Limited"; |
3814 | 1 | case 1775: |
3815 | 1 | return "ALCARE Co., Ltd."; |
3816 | 1 | case 1776: |
3817 | 1 | return "Chargy Technologies, SL"; |
3818 | 1 | case 1777: |
3819 | 1 | return "Shibutani Co., Ltd."; |
3820 | 1 | case 1778: |
3821 | 1 | return "Trapper Data AB"; |
3822 | 1 | case 1779: |
3823 | 1 | return "Alfred International Inc."; |
3824 | 1 | case 1780: |
3825 | 1 | return "Near Field Solutions Ltd"; |
3826 | 1 | case 1781: |
3827 | 1 | return "Vigil Technologies Inc."; |
3828 | 1 | case 1782: |
3829 | 1 | return "Vitulo Plus BV"; |
3830 | 1 | case 1783: |
3831 | 1 | return "WILKA Schliesstechnik GmbH"; |
3832 | 1 | case 1784: |
3833 | 1 | return "BodyPlus Technology Co.,Ltd"; |
3834 | 1 | case 1785: |
3835 | 1 | return "happybrush GmbH"; |
3836 | 1 | case 1786: |
3837 | 1 | return "Enequi AB"; |
3838 | 1 | case 1787: |
3839 | 1 | return "Sartorius AG"; |
3840 | 1 | case 1788: |
3841 | 1 | return "Tom Communication Industrial Co.,Ltd."; |
3842 | 1 | case 1789: |
3843 | 1 | return "ESS Embedded System Solutions Inc."; |
3844 | 1 | case 1790: |
3845 | 1 | return "Mahr GmbH"; |
3846 | 1 | case 1791: |
3847 | 1 | return "Redpine Signals Inc"; |
3848 | 1 | case 1792: |
3849 | 1 | return "TraqFreq LLC"; |
3850 | 1 | case 1793: |
3851 | 1 | return "PAFERS TECH"; |
3852 | 1 | case 1794: |
3853 | 1 | return "Akciju sabiedriba \"SAF TEHNIKA\""; |
3854 | 1 | case 1795: |
3855 | 1 | return "Beijing Jingdong Century Trading Co., Ltd."; |
3856 | 1 | case 1796: |
3857 | 1 | return "JBX Designs Inc."; |
3858 | 1 | case 1797: |
3859 | 1 | return "AB Electrolux"; |
3860 | 1 | case 1798: |
3861 | 1 | return "Wernher von Braun Center for ASdvanced Research"; |
3862 | 1 | case 1799: |
3863 | 1 | return "Essity Hygiene and Health Aktiebolag"; |
3864 | 1 | case 1800: |
3865 | 1 | return "Be Interactive Co., Ltd"; |
3866 | 1 | case 1801: |
3867 | 1 | return "Carewear Corp."; |
3868 | 1 | case 1802: |
3869 | 1 | return "Huf Hülsbeck & Fürst GmbH & Co. KG"; |
3870 | 1 | case 1803: |
3871 | 1 | return "Element Products, Inc."; |
3872 | 1 | case 1804: |
3873 | 1 | return "Beijing Winner Microelectronics Co.,Ltd"; |
3874 | 1 | case 1805: |
3875 | 1 | return "SmartSnugg Pty Ltd"; |
3876 | 1 | case 1806: |
3877 | 1 | return "FiveCo Sarl"; |
3878 | 1 | case 1807: |
3879 | 1 | return "California Things Inc."; |
3880 | 1 | case 1808: |
3881 | 1 | return "Audiodo AB"; |
3882 | 1 | case 1809: |
3883 | 1 | return "ABAX AS"; |
3884 | 1 | case 1810: |
3885 | 1 | return "Bull Group Company Limited"; |
3886 | 1 | case 1811: |
3887 | 1 | return "Respiri Limited"; |
3888 | 1 | case 1812: |
3889 | 1 | return "MindPeace Safety LLC"; |
3890 | 1 | case 1813: |
3891 | 1 | return "Vgyan Solutions"; |
3892 | 1 | case 1814: |
3893 | 1 | return "Altonics"; |
3894 | 1 | case 1815: |
3895 | 1 | return "iQsquare BV"; |
3896 | 1 | case 1816: |
3897 | 1 | return "IDIBAIX enginneering"; |
3898 | 1 | case 1817: |
3899 | 1 | return "ECSG"; |
3900 | 1 | case 1818: |
3901 | 1 | return "REVSMART WEARABLE HK CO LTD"; |
3902 | 1 | case 1819: |
3903 | 1 | return "Precor"; |
3904 | 1 | case 1820: |
3905 | 1 | return "F5 Sports, Inc"; |
3906 | 1 | case 1821: |
3907 | 1 | return "exoTIC Systems"; |
3908 | 1 | case 1822: |
3909 | 1 | return "DONGGUAN HELE ELECTRONICS CO., LTD"; |
3910 | 1 | case 1823: |
3911 | 1 | return "Dongguan Liesheng Electronic Co.Ltd"; |
3912 | 1 | case 1824: |
3913 | 1 | return "Oculeve, Inc."; |
3914 | 1 | case 1825: |
3915 | 1 | return "Clover Network, Inc."; |
3916 | 1 | case 1826: |
3917 | 1 | return "Xiamen Eholder Electronics Co.Ltd"; |
3918 | 1 | case 1827: |
3919 | 1 | return "Ford Motor Company"; |
3920 | 1 | case 1828: |
3921 | 1 | return "Guangzhou SuperSound Information Technology Co.,Ltd"; |
3922 | 1 | case 1829: |
3923 | 1 | return "Tedee Sp. z o.o."; |
3924 | 1 | case 1830: |
3925 | 1 | return "PHC Corporation"; |
3926 | 1 | case 1831: |
3927 | 1 | return "STALKIT AS"; |
3928 | 1 | case 1832: |
3929 | 1 | return "Eli Lilly and Company"; |
3930 | 1 | case 1833: |
3931 | 1 | return "SwaraLink Technologies"; |
3932 | 1 | case 1834: |
3933 | 1 | return "JMR embedded systems GmbH"; |
3934 | 1 | case 1835: |
3935 | 1 | return "Bitkey Inc."; |
3936 | 1 | case 1836: |
3937 | 1 | return "GWA Hygiene GmbH"; |
3938 | 1 | case 1837: |
3939 | 1 | return "Safera Oy"; |
3940 | 1 | case 1838: |
3941 | 1 | return "Open Platform Systems LLC"; |
3942 | 1 | case 1839: |
3943 | 1 | return "OnePlus Electronics (Shenzhen) Co., Ltd."; |
3944 | 1 | case 1840: |
3945 | 1 | return "Wildlife Acoustics, Inc."; |
3946 | 1 | case 1841: |
3947 | 1 | return "ABLIC Inc."; |
3948 | 1 | case 1842: |
3949 | 1 | return "Dairy Tech, Inc."; |
3950 | 1 | case 1843: |
3951 | 1 | return "Iguanavation, Inc."; |
3952 | 1 | case 1844: |
3953 | 1 | return "DiUS Computing Pty Ltd"; |
3954 | 1 | case 1845: |
3955 | 1 | return "UpRight Technologies LTD"; |
3956 | 1 | case 1846: |
3957 | 1 | return "FrancisFund, LLC"; |
3958 | 1 | case 1847: |
3959 | 1 | return "LLC Navitek"; |
3960 | 1 | case 1848: |
3961 | 1 | return "Glass Security Pte Ltd"; |
3962 | 1 | case 1849: |
3963 | 1 | return "Jiangsu Qinheng Co., Ltd."; |
3964 | 1 | case 1850: |
3965 | 1 | return "Chandler Systems Inc."; |
3966 | 1 | case 1851: |
3967 | 1 | return "Fantini Cosmi s.p.a."; |
3968 | 1 | case 1852: |
3969 | 1 | return "Acubit ApS"; |
3970 | 1 | case 1853: |
3971 | 1 | return "Beijing Hao Heng Tian Tech Co., Ltd."; |
3972 | 1 | case 1854: |
3973 | 1 | return "Bluepack S.R.L."; |
3974 | 1 | case 1855: |
3975 | 1 | return "Beijing Unisoc Technologies Co., Ltd."; |
3976 | 1 | case 1856: |
3977 | 1 | return "HITIQ LIMITED"; |
3978 | 1 | case 1857: |
3979 | 1 | return "MAC SRL"; |
3980 | 1 | case 1858: |
3981 | 1 | return "DML LLC"; |
3982 | 1 | case 1859: |
3983 | 1 | return "Sanofi"; |
3984 | 1 | case 1860: |
3985 | 1 | return "SOCOMEC"; |
3986 | 1 | case 1861: |
3987 | 1 | return "WIZNOVA, Inc."; |
3988 | 1 | case 1862: |
3989 | 1 | return "Seitec Elektronik GmbH"; |
3990 | 1 | case 1863: |
3991 | 1 | return "OR Technologies Pty Ltd"; |
3992 | 1 | case 1864: |
3993 | 1 | return "GuangZhou KuGou Computer Technology Co.Ltd"; |
3994 | 1 | case 1865: |
3995 | 1 | return "DIAODIAO (Beijing) Technology Co., Ltd."; |
3996 | 1 | case 1866: |
3997 | 1 | return "Illusory Studios LLC"; |
3998 | 1 | case 1867: |
3999 | 1 | return "Sarvavid Software Solutions LLP"; |
4000 | 1 | case 1868: |
4001 | 1 | return "iopool s.a."; |
4002 | 1 | case 1869: |
4003 | 1 | return "Amtech Systems, LLC"; |
4004 | 1 | case 1870: |
4005 | 1 | return "EAGLE DETECTION SA"; |
4006 | 1 | case 1871: |
4007 | 1 | return "MEDIATECH S.R.L."; |
4008 | 1 | case 1872: |
4009 | 1 | return "Hamilton Professional Services of Canada Incorporated"; |
4010 | 1 | case 1873: |
4011 | 1 | return "Changsha JEMO IC Design Co.,Ltd"; |
4012 | 1 | case 1874: |
4013 | 1 | return "Elatec GmbH"; |
4014 | 1 | case 1875: |
4015 | 1 | return "JLG Industries, Inc."; |
4016 | 1 | case 1876: |
4017 | 1 | return "Michael Parkin"; |
4018 | 1 | case 1877: |
4019 | 1 | return "Brother Industries, Ltd"; |
4020 | 1 | case 1878: |
4021 | 1 | return "Lumens For Less, Inc"; |
4022 | 1 | case 1879: |
4023 | 1 | return "ELA Innovation"; |
4024 | 1 | case 1880: |
4025 | 1 | return "umanSense AB"; |
4026 | 1 | case 1881: |
4027 | 1 | return "Shanghai InGeek Cyber Security Co., Ltd."; |
4028 | 1 | case 1882: |
4029 | 1 | return "HARMAN CO.,LTD."; |
4030 | 1 | case 1883: |
4031 | 1 | return "Smart Sensor Devices AB"; |
4032 | 1 | case 1884: |
4033 | 1 | return "Antitronics Inc."; |
4034 | 1 | case 1885: |
4035 | 1 | return "RHOMBUS SYSTEMS, INC."; |
4036 | 1 | case 1886: |
4037 | 1 | return "Katerra Inc."; |
4038 | 1 | case 1887: |
4039 | 1 | return "Remote Solution Co., LTD."; |
4040 | 1 | case 1888: |
4041 | 1 | return "Vimar SpA"; |
4042 | 1 | case 1889: |
4043 | 1 | return "Mantis Tech LLC"; |
4044 | 1 | case 1890: |
4045 | 1 | return "TerOpta Ltd"; |
4046 | 1 | case 1891: |
4047 | 1 | return "PIKOLIN S.L."; |
4048 | 1 | case 1892: |
4049 | 1 | return "WWZN Information Technology Company Limited"; |
4050 | 1 | case 1893: |
4051 | 1 | return "Voxx International"; |
4052 | 1 | case 1894: |
4053 | 1 | return "ART AND PROGRAM, INC."; |
4054 | 1 | case 1895: |
4055 | 1 | return "NITTO DENKO ASIA TECHNICAL CENTRE PTE. LTD."; |
4056 | 1 | case 1896: |
4057 | 1 | return "Peloton Interactive Inc."; |
4058 | 1 | case 1897: |
4059 | 1 | return "Force Impact Technologies"; |
4060 | 1 | case 1898: |
4061 | 1 | return "Dmac Mobile Developments, LLC"; |
4062 | 1 | case 1899: |
4063 | 1 | return "Engineered Medical Technologies"; |
4064 | 1 | case 1900: |
4065 | 1 | return "Noodle Technology inc"; |
4066 | 1 | case 1901: |
4067 | 1 | return "Graesslin GmbH"; |
4068 | 1 | case 1902: |
4069 | 1 | return "WuQi technologies, Inc."; |
4070 | 1 | case 1903: |
4071 | 1 | return "Successful Endeavours Pty Ltd"; |
4072 | 1 | case 1904: |
4073 | 1 | return "InnoCon Medical ApS"; |
4074 | 1 | case 1905: |
4075 | 1 | return "Corvex Connected Safety"; |
4076 | 1 | case 1906: |
4077 | 1 | return "Thirdwayv Inc."; |
4078 | 1 | case 1907: |
4079 | 1 | return "Echoflex Solutions Inc."; |
4080 | 1 | case 1908: |
4081 | 1 | return "C-MAX Asia Limited"; |
4082 | 1 | case 1909: |
4083 | 1 | return "4eBusiness GmbH"; |
4084 | 1 | case 1910: |
4085 | 1 | return "Cyber Transport Control GmbH"; |
4086 | 1 | case 1911: |
4087 | 1 | return "Cue"; |
4088 | 1 | case 1912: |
4089 | 1 | return "KOAMTAC INC."; |
4090 | 1 | case 1913: |
4091 | 1 | return "Loopshore Oy"; |
4092 | 1 | case 1914: |
4093 | 1 | return "Niruha Systems Private Limited"; |
4094 | 1 | case 1915: |
4095 | 1 | return "AmaterZ, Inc."; |
4096 | 1 | case 1916: |
4097 | 1 | return "radius co., ltd."; |
4098 | 1 | case 1917: |
4099 | 1 | return "Sensority, s.r.o."; |
4100 | 1 | case 1918: |
4101 | 1 | return "Sparkage Inc."; |
4102 | 1 | case 1919: |
4103 | 1 | return "Glenview Software Corporation"; |
4104 | 1 | case 1920: |
4105 | 1 | return "Finch Technologies Ltd."; |
4106 | 1 | case 1921: |
4107 | 1 | return "Qingping Technology (Beijing) Co., Ltd."; |
4108 | 1 | case 1922: |
4109 | 1 | return "DeviceDrive AS"; |
4110 | 1 | case 1923: |
4111 | 1 | return "ESEMBER LIMITED LIABILITY COMPANY"; |
4112 | 1 | case 1924: |
4113 | 1 | return "audifon GmbH & Co. KG"; |
4114 | 1 | case 1925: |
4115 | 1 | return "O2 Micro, Inc."; |
4116 | 1 | case 1926: |
4117 | 1 | return "HLP Controls Pty Limited"; |
4118 | 1 | case 1927: |
4119 | 1 | return "Pangaea Solution"; |
4120 | 1 | case 1928: |
4121 | 1 | return "BubblyNet, LLC"; |
4122 | 1 | case 1930: |
4123 | 1 | return "The Wildflower Foundation"; |
4124 | 1 | case 1931: |
4125 | 1 | return "Optikam Tech Inc."; |
4126 | 1 | case 1932: |
4127 | 1 | return "MINIBREW HOLDING B.V"; |
4128 | 1 | case 1933: |
4129 | 1 | return "Cybex GmbH"; |
4130 | 1 | case 1934: |
4131 | 1 | return "FUJIMIC NIIGATA, INC."; |
4132 | 1 | case 1935: |
4133 | 1 | return "Hanna Instruments, Inc."; |
4134 | 1 | case 1936: |
4135 | 1 | return "KOMPAN A/S"; |
4136 | 1 | case 1937: |
4137 | 1 | return "Scosche Industries, Inc."; |
4138 | 1 | case 1938: |
4139 | 1 | return "Provo Craft"; |
4140 | 1 | case 1939: |
4141 | 1 | return "AEV spol. s r.o."; |
4142 | 1 | case 1940: |
4143 | 1 | return "The Coca-Cola Company"; |
4144 | 1 | case 1941: |
4145 | 1 | return "GASTEC CORPORATION"; |
4146 | 1 | case 1942: |
4147 | 1 | return "StarLeaf Ltd"; |
4148 | 1 | case 1943: |
4149 | 1 | return "Water-i.d. GmbH"; |
4150 | 1 | case 1944: |
4151 | 1 | return "HoloKit, Inc."; |
4152 | 1 | case 1945: |
4153 | 1 | return "PlantChoir Inc."; |
4154 | 1 | case 1946: |
4155 | 1 | return "GuangDong Oppo Mobile Telecommunications Corp., Ltd."; |
4156 | 1 | case 1947: |
4157 | 1 | return "CST ELECTRONICS (PROPRIETARY) LIMITED"; |
4158 | 1 | case 1948: |
4159 | 1 | return "Sky UK Limited"; |
4160 | 1 | case 1949: |
4161 | 1 | return "Digibale Pty Ltd"; |
4162 | 1 | case 1950: |
4163 | 1 | return "Smartloxx GmbH"; |
4164 | 1 | case 1951: |
4165 | 1 | return "Pune Scientific LLP"; |
4166 | 1 | case 1952: |
4167 | 1 | return "Regent Beleuchtungskorper AG"; |
4168 | 1 | case 1953: |
4169 | 1 | return "Apollo Neuroscience, Inc."; |
4170 | 1 | case 1954: |
4171 | 1 | return "Roku, Inc."; |
4172 | 1 | case 1955: |
4173 | 1 | return "Comcast Cable"; |
4174 | 1 | case 1956: |
4175 | 1 | return "Xiamen Mage Information Technology Co., Ltd."; |
4176 | 1 | case 1957: |
4177 | 1 | return "RAB Lighting, Inc."; |
4178 | 1 | case 1958: |
4179 | 1 | return "Musen Connect, Inc."; |
4180 | 1 | case 1959: |
4181 | 1 | return "Zume, Inc."; |
4182 | 1 | case 1960: |
4183 | 1 | return "conbee GmbH"; |
4184 | 1 | case 1961: |
4185 | 1 | return "Bruel & Kjaer Sound & Vibration"; |
4186 | 1 | case 1962: |
4187 | 1 | return "The Kroger Co."; |
4188 | 1 | case 1963: |
4189 | 1 | return "Granite River Solutions, Inc."; |
4190 | 1 | case 1964: |
4191 | 1 | return "LoupeDeck Oy"; |
4192 | 1 | case 1965: |
4193 | 1 | return "New H3C Technologies Co.,Ltd"; |
4194 | 1 | case 1966: |
4195 | 1 | return "Aurea Solucoes Tecnologicas Ltda."; |
4196 | 1 | case 1967: |
4197 | 1 | return "Hong Kong Bouffalo Lab Limited"; |
4198 | 1 | case 1968: |
4199 | 1 | return "GV Concepts Inc."; |
4200 | 1 | case 1969: |
4201 | 1 | return "Thomas Dynamics, LLC"; |
4202 | 1 | case 1970: |
4203 | 1 | return "Moeco IOT Inc."; |
4204 | 1 | case 1971: |
4205 | 1 | return "2N TELEKOMUNIKACE a.s."; |
4206 | 1 | case 1972: |
4207 | 1 | return "Hormann KG Antriebstechnik"; |
4208 | 1 | case 1973: |
4209 | 1 | return "CRONO CHIP, S.L."; |
4210 | 1 | case 1974: |
4211 | 1 | return "Soundbrenner Limited"; |
4212 | 1 | case 1975: |
4213 | 1 | return "ETABLISSEMENTS GEORGES RENAULT"; |
4214 | 1 | case 1976: |
4215 | 1 | return "iSwip"; |
4216 | 1 | case 1977: |
4217 | 1 | return "Epona Biotec Limited"; |
4218 | 1 | case 1978: |
4219 | 1 | return "Battery-Biz Inc."; |
4220 | 1 | case 1979: |
4221 | 1 | return "EPIC S.R.L."; |
4222 | 1 | case 1980: |
4223 | 1 | return "KD CIRCUITS LLC"; |
4224 | 1 | case 1981: |
4225 | 1 | return "Genedrive Diagnostics Ltd"; |
4226 | 1 | case 1982: |
4227 | 1 | return "Axentia Technologies AB"; |
4228 | 1 | case 1983: |
4229 | 1 | return "REGULA Ltd."; |
4230 | 1 | case 1984: |
4231 | 1 | return "Biral AG"; |
4232 | 1 | case 1985: |
4233 | 1 | return "A.W. Chesterton Company"; |
4234 | 1 | case 1986: |
4235 | 1 | return "Radinn AB"; |
4236 | 1 | case 1987: |
4237 | 1 | return "CIMTechniques, Inc."; |
4238 | 1 | case 1988: |
4239 | 1 | return "Johnson Health Tech NA"; |
4240 | 1 | case 1989: |
4241 | 1 | return "June Life, Inc."; |
4242 | 1 | case 1990: |
4243 | 1 | return "Bluenetics GmbH"; |
4244 | 1 | case 1991: |
4245 | 1 | return "iaconicDesign Inc."; |
4246 | 1 | case 1992: |
4247 | 1 | return "WRLDS Creations AB"; |
4248 | 1 | case 1993: |
4249 | 1 | return "Skullcandy, Inc."; |
4250 | 1 | case 1994: |
4251 | 1 | return "Modul-System HH AB"; |
4252 | 1 | case 1995: |
4253 | 1 | return "West Pharmaceutical Services, Inc."; |
4254 | 1 | case 1996: |
4255 | 1 | return "Barnacle Systems Inc."; |
4256 | 1 | case 1997: |
4257 | 1 | return "Smart Wave Technologies Canada Inc"; |
4258 | 1 | case 1998: |
4259 | 1 | return "Shanghai Top-Chip Microelectronics Tech. Co., LTD"; |
4260 | 1 | case 1999: |
4261 | 1 | return "NeoSensory, Inc."; |
4262 | 1 | case 2000: |
4263 | 1 | return "Hangzhou Tuya Information Technology Co., Ltd"; |
4264 | 1 | case 2001: |
4265 | 1 | return "Shanghai Panchip Microelectronics Co., Ltd"; |
4266 | 1 | case 2002: |
4267 | 1 | return "React Accessibility Limited"; |
4268 | 1 | case 2003: |
4269 | 1 | return "LIVNEX Co.,Ltd."; |
4270 | 1 | case 2004: |
4271 | 1 | return "Kano Computing Limited"; |
4272 | 1 | case 2005: |
4273 | 1 | return "hoots classic GmbH"; |
4274 | 1 | case 2006: |
4275 | 1 | return "ecobee Inc."; |
4276 | 1 | case 2007: |
4277 | 1 | return "Nanjing Qinheng Microelectronics Co., Ltd"; |
4278 | 1 | case 2008: |
4279 | 1 | return "SOLUTIONS AMBRA INC."; |
4280 | 1 | case 2009: |
4281 | 1 | return "Micro-Design, Inc."; |
4282 | 1 | case 2010: |
4283 | 1 | return "STARLITE Co., Ltd."; |
4284 | 1 | case 2011: |
4285 | 1 | return "Remedee Labs"; |
4286 | 1 | case 2012: |
4287 | 1 | return "ThingOS GmbH"; |
4288 | 1 | case 2013: |
4289 | 1 | return "Linear Circuits"; |
4290 | 1 | case 2014: |
4291 | 1 | return "Unlimited Engineering SL"; |
4292 | 1 | case 2015: |
4293 | 1 | return "Snap-on Incorporated"; |
4294 | 1 | case 2016: |
4295 | 1 | return "Edifier International Limited"; |
4296 | 1 | case 2017: |
4297 | 1 | return "Lucie Labs"; |
4298 | 1 | case 2018: |
4299 | 1 | return "Alfred Kaercher SE & Co. KG"; |
4300 | 1 | case 2019: |
4301 | 1 | return "Audiowise Technology Inc."; |
4302 | 1 | case 2020: |
4303 | 1 | return "Geeksme S.L."; |
4304 | 1 | case 2021: |
4305 | 1 | return "Minut, Inc."; |
4306 | 1 | case 2022: |
4307 | 1 | return "Autogrow Systems Limited"; |
4308 | 1 | case 2023: |
4309 | 1 | return "Komfort IQ, Inc."; |
4310 | 1 | case 2024: |
4311 | 1 | return "Packetcraft, Inc."; |
4312 | 1 | case 2025: |
4313 | 1 | return "Häfele GmbH & Co KG"; |
4314 | 1 | case 2026: |
4315 | 1 | return "ShapeLog, Inc."; |
4316 | 1 | case 2027: |
4317 | 1 | return "NOVABASE S.R.L."; |
4318 | 1 | case 2028: |
4319 | 1 | return "Frecce LLC"; |
4320 | 1 | case 2029: |
4321 | 1 | return "Joule IQ, INC."; |
4322 | 1 | case 2030: |
4323 | 1 | return "KidzTek LLC"; |
4324 | 1 | case 2031: |
4325 | 1 | return "Aktiebolaget Sandvik Coromant"; |
4326 | 1 | case 2032: |
4327 | 1 | return "e-moola.com Pty Ltd"; |
4328 | 1 | case 2033: |
4329 | 1 | return "GSM Innovations Pty Ltd"; |
4330 | 1 | case 2034: |
4331 | 1 | return "SERENE GROUP, INC"; |
4332 | 1 | case 2035: |
4333 | 1 | return "DIGISINE ENERGYTECH CO. LTD."; |
4334 | 1 | case 2036: |
4335 | 1 | return "MEDIRLAB Orvosbiologiai Fejleszto Korlatolt Felelossegu Tarsasag"; |
4336 | 1 | case 2037: |
4337 | 1 | return "Byton North America Corporation"; |
4338 | 1 | case 2038: |
4339 | 1 | return "Shenzhen TonliScience and Technology Development Co.,Ltd"; |
4340 | 1 | case 2039: |
4341 | 1 | return "Cesar Systems Ltd."; |
4342 | 1 | case 2040: |
4343 | 1 | return "quip NYC Inc."; |
4344 | 1 | case 2041: |
4345 | 1 | return "Direct Communication Solutions, Inc."; |
4346 | 1 | case 2042: |
4347 | 1 | return "Klipsch Group, Inc."; |
4348 | 1 | case 2043: |
4349 | 1 | return "Access Co., Ltd"; |
4350 | 1 | case 2044: |
4351 | 1 | return "Renault SA"; |
4352 | 1 | case 2045: |
4353 | 1 | return "JSK CO., LTD."; |
4354 | 1 | case 2046: |
4355 | 1 | return "BIROTA"; |
4356 | 1 | case 2047: |
4357 | 1 | return "maxon motor ltd."; |
4358 | 1 | case 2048: |
4359 | 1 | return "Optek"; |
4360 | 1 | case 2049: |
4361 | 1 | return "CRONUS ELECTRONICS LTD"; |
4362 | 1 | case 2050: |
4363 | 1 | return "NantSound, Inc."; |
4364 | 1 | case 2051: |
4365 | 1 | return "Domintell s.a."; |
4366 | 1 | case 2052: |
4367 | 1 | return "Andon Health Co.,Ltd"; |
4368 | 1 | case 2053: |
4369 | 1 | return "Urbanminded Ltd"; |
4370 | 1 | case 2054: |
4371 | 1 | return "TYRI Sweden AB"; |
4372 | 1 | case 2055: |
4373 | 1 | return "ECD Electronic Components GmbH Dresden"; |
4374 | 1 | case 2056: |
4375 | 1 | return "SISTEMAS KERN, SOCIEDAD ANÓMINA"; |
4376 | 1 | case 2057: |
4377 | 1 | return "Trulli Audio"; |
4378 | 1 | case 2058: |
4379 | 1 | return "Altaneos"; |
4380 | 1 | case 2059: |
4381 | 1 | return "Nanoleaf Canada Limited"; |
4382 | 1 | case 2060: |
4383 | 1 | return "Ingy B.V."; |
4384 | 1 | case 2061: |
4385 | 1 | return "Azbil Co."; |
4386 | 1 | case 2062: |
4387 | 1 | return "TATTCOM LLC"; |
4388 | 1 | case 2063: |
4389 | 1 | return "Paradox Engineering SA"; |
4390 | 1 | case 2064: |
4391 | 1 | return "LECO Corporation"; |
4392 | 1 | case 2065: |
4393 | 1 | return "Becker Antriebe GmbH"; |
4394 | 1 | case 2066: |
4395 | 1 | return "Mstream Technologies., Inc."; |
4396 | 1 | case 2067: |
4397 | 1 | return "Flextronics International USA Inc."; |
4398 | 1 | case 2068: |
4399 | 1 | return "Ossur hf."; |
4400 | 1 | case 2069: |
4401 | 1 | return "SKC Inc"; |
4402 | 1 | case 2070: |
4403 | 1 | return "SPICA SYSTEMS LLC"; |
4404 | 1 | case 2071: |
4405 | 1 | return "Wangs Alliance Corporation"; |
4406 | 1 | case 2072: |
4407 | 1 | return "tatwah SA"; |
4408 | 1 | case 2073: |
4409 | 1 | return "Hunter Douglas Inc"; |
4410 | 1 | case 2074: |
4411 | 1 | return "Shenzhen Conex"; |
4412 | 1 | case 2075: |
4413 | 1 | return "DIM3"; |
4414 | 1 | case 2076: |
4415 | 1 | return "Bobrick Washroom Equipment, Inc."; |
4416 | 1 | case 2077: |
4417 | 1 | return "Potrykus Holdings and Development LLC"; |
4418 | 1 | case 2078: |
4419 | 1 | return "iNFORM Technology GmbH"; |
4420 | 1 | case 2079: |
4421 | 1 | return "eSenseLab LTD"; |
4422 | 1 | case 2080: |
4423 | 1 | return "Brilliant Home Technology, Inc."; |
4424 | 1 | case 2081: |
4425 | 1 | return "INOVA Geophysical, Inc."; |
4426 | 1 | case 2082: |
4427 | 1 | return "adafruit industries"; |
4428 | 1 | case 2083: |
4429 | 1 | return "Nexite Ltd"; |
4430 | 1 | case 2084: |
4431 | 1 | return "8Power Limited"; |
4432 | 1 | case 2085: |
4433 | 1 | return "CME PTE. LTD."; |
4434 | 1 | case 2086: |
4435 | 1 | return "Hyundai Motor Company"; |
4436 | 1 | case 2087: |
4437 | 1 | return "Kickmaker"; |
4438 | 1 | case 2088: |
4439 | 1 | return "Shanghai Suisheng Information Technology Co., Ltd."; |
4440 | 1 | case 2089: |
4441 | 1 | return "HEXAGON"; |
4442 | 1 | case 2090: |
4443 | 1 | return "Mitutoyo Corporation"; |
4444 | 1 | case 2091: |
4445 | 1 | return "shenzhen fitcare electronics Co.,Ltd"; |
4446 | 1 | case 2092: |
4447 | 1 | return "INGICS TECHNOLOGY CO., LTD."; |
4448 | 1 | case 2093: |
4449 | 1 | return "INCUS PERFORMANCE LTD."; |
4450 | 1 | case 2094: |
4451 | 1 | return "ABB S.p.A."; |
4452 | 1 | case 2095: |
4453 | 1 | return "Blippit AB"; |
4454 | 1 | case 2096: |
4455 | 1 | return "Core Health and Fitness LLC"; |
4456 | 1 | case 2097: |
4457 | 1 | return "Foxble, LLC"; |
4458 | 1 | case 2098: |
4459 | 1 | return "Intermotive,Inc."; |
4460 | 1 | case 2099: |
4461 | 1 | return "Conneqtech B.V."; |
4462 | 1 | case 2100: |
4463 | 1 | return "RIKEN KEIKI CO., LTD.,"; |
4464 | 1 | case 2101: |
4465 | 1 | return "Canopy Growth Corporation"; |
4466 | 1 | case 2102: |
4467 | 1 | return "Bitwards Oy"; |
4468 | 1 | case 2103: |
4469 | 1 | return "vivo Mobile Communication Co., Ltd."; |
4470 | 1 | case 2104: |
4471 | 1 | return "Etymotic Research, Inc."; |
4472 | 1 | case 2105: |
4473 | 1 | return "A puissance 3"; |
4474 | 1 | case 2106: |
4475 | 1 | return "BPW Bergische Achsen Kommanditgesellschaft"; |
4476 | 1 | case 2107: |
4477 | 1 | return "Piaggio Fast Forward"; |
4478 | 1 | case 2108: |
4479 | 1 | return "BeerTech LTD"; |
4480 | 1 | case 2109: |
4481 | 1 | return "Tokenize, Inc."; |
4482 | 1 | case 2110: |
4483 | 1 | return "Zorachka LTD"; |
4484 | 1 | case 2111: |
4485 | 1 | return "D-Link Corp."; |
4486 | 1 | case 2112: |
4487 | 1 | return "Down Range Systems LLC"; |
4488 | 1 | case 2113: |
4489 | 1 | return "General Luminaire (Shanghai) Co., Ltd."; |
4490 | 1 | case 2114: |
4491 | 1 | return "Tangshan HongJia electronic technology co., LTD."; |
4492 | 1 | case 2115: |
4493 | 1 | return "FRAGRANCE DELIVERY TECHNOLOGIES LTD"; |
4494 | 1 | case 2116: |
4495 | 1 | return "Pepperl + Fuchs GmbH"; |
4496 | 1 | case 2117: |
4497 | 1 | return "Dometic Corporation"; |
4498 | 1 | case 2118: |
4499 | 1 | return "USound GmbH"; |
4500 | 1 | case 2119: |
4501 | 1 | return "DNANUDGE LIMITED"; |
4502 | 1 | case 2120: |
4503 | 1 | return "JUJU JOINTS CANADA CORP."; |
4504 | 1 | case 2121: |
4505 | 1 | return "Dopple Technologies B.V."; |
4506 | 1 | case 2122: |
4507 | 1 | return "ARCOM"; |
4508 | 1 | case 2123: |
4509 | 1 | return "Biotechware SRL"; |
4510 | 1 | case 2124: |
4511 | 1 | return "ORSO Inc."; |
4512 | 1 | case 2125: |
4513 | 1 | return "SafePort"; |
4514 | 1 | case 2126: |
4515 | 1 | return "Carol Cole Company"; |
4516 | 1 | case 2127: |
4517 | 1 | return "Embedded Fitness B.V."; |
4518 | 1 | case 2128: |
4519 | 1 | return "Yealink (Xiamen) Network Technology Co.,LTD"; |
4520 | 1 | case 2129: |
4521 | 1 | return "Subeca, Inc."; |
4522 | 1 | case 2130: |
4523 | 1 | return "Cognosos, Inc."; |
4524 | 1 | case 2131: |
4525 | 1 | return "Pektron Group Limited"; |
4526 | 1 | case 2132: |
4527 | 1 | return "Tap Sound System"; |
4528 | 1 | case 2133: |
4529 | 1 | return "Helios Hockey, Inc."; |
4530 | 1 | case 2134: |
4531 | 1 | return "Canopy Growth Corporation"; |
4532 | 1 | case 2135: |
4533 | 1 | return "Parsyl Inc"; |
4534 | 1 | case 2136: |
4535 | 1 | return "SOUNDBOKS"; |
4536 | 1 | case 2137: |
4537 | 1 | return "BlueUp"; |
4538 | 1 | case 2138: |
4539 | 1 | return "DAKATECH"; |
4540 | 1 | case 2139: |
4541 | 1 | return "RICOH ELECTRONIC DEVICES CO., LTD."; |
4542 | 1 | case 2140: |
4543 | 1 | return "ACOS CO.,LTD."; |
4544 | 1 | case 2141: |
4545 | 1 | return "Guilin Zhishen Information Technology Co.,Ltd."; |
4546 | 1 | case 2142: |
4547 | 1 | return "Krog Systems LLC"; |
4548 | 1 | case 2143: |
4549 | 1 | return "COMPEGPS TEAM,SOCIEDAD LIMITADA"; |
4550 | 1 | case 2144: |
4551 | 1 | return "Alflex Products B.V."; |
4552 | 1 | case 2145: |
4553 | 1 | return "SmartSensor Labs Ltd"; |
4554 | 1 | case 2146: |
4555 | 1 | return "SmartDrive Inc."; |
4556 | 1 | case 2147: |
4557 | 1 | return "Yo-tronics Technology Co., Ltd."; |
4558 | 1 | case 2148: |
4559 | 1 | return "Rafaelmicro"; |
4560 | 1 | case 2149: |
4561 | 1 | return "Emergency Lighting Products Limited"; |
4562 | 1 | case 2150: |
4563 | 1 | return "LAONZ Co.,Ltd"; |
4564 | 1 | case 2151: |
4565 | 1 | return "Western Digital Technologies, Inc."; |
4566 | 1 | case 2152: |
4567 | 1 | return "WIOsense GmbH & Co. KG"; |
4568 | 1 | case 2153: |
4569 | 1 | return "EVVA Sicherheitstechnologie GmbH"; |
4570 | 1 | case 2154: |
4571 | 1 | return "Odic Incorporated"; |
4572 | 1 | case 2155: |
4573 | 1 | return "Pacific Track, LLC"; |
4574 | 1 | case 2156: |
4575 | 1 | return "Revvo Technologies, Inc."; |
4576 | 1 | case 2157: |
4577 | 1 | return "Biometrika d.o.o."; |
4578 | 1 | case 2158: |
4579 | 1 | return "Vorwerk Elektrowerke GmbH & Co. KG"; |
4580 | 1 | case 2159: |
4581 | 1 | return "Trackunit A/S"; |
4582 | 1 | case 2160: |
4583 | 1 | return "Wyze Labs, Inc"; |
4584 | 1 | case 2161: |
4585 | 1 | return "Dension Elektronikai Kft. (formerly: Dension Audio Systems Ltd.)"; |
4586 | 1 | case 2162: |
4587 | 1 | return "11 Health & Technologies Limited"; |
4588 | 1 | case 2163: |
4589 | 1 | return "Innophase Incorporated"; |
4590 | 1 | case 2164: |
4591 | 1 | return "Treegreen Limited"; |
4592 | 1 | case 2165: |
4593 | 1 | return "Berner International LLC"; |
4594 | 1 | case 2166: |
4595 | 1 | return "SmartResQ ApS"; |
4596 | 1 | case 2167: |
4597 | 1 | return "Tome, Inc."; |
4598 | 1 | case 2168: |
4599 | 1 | return "The Chamberlain Group, Inc."; |
4600 | 1 | case 2169: |
4601 | 1 | return "MIZUNO Corporation"; |
4602 | 1 | case 2170: |
4603 | 1 | return "ZRF, LLC"; |
4604 | 1 | case 2171: |
4605 | 1 | return "BYSTAMP"; |
4606 | 1 | case 2172: |
4607 | 1 | return "Crosscan GmbH"; |
4608 | 1 | case 2173: |
4609 | 1 | return "Konftel AB"; |
4610 | 1 | case 2174: |
4611 | 1 | return "1bar.net Limited"; |
4612 | 1 | case 2175: |
4613 | 1 | return "Phillips Connect Technologies LLC"; |
4614 | 1 | case 2176: |
4615 | 1 | return "imagiLabs AB"; |
4616 | 1 | case 2177: |
4617 | 1 | return "Optalert"; |
4618 | 1 | case 2178: |
4619 | 1 | return "PSYONIC, Inc."; |
4620 | 1 | case 2179: |
4621 | 1 | return "Wintersteiger AG"; |
4622 | 1 | case 2180: |
4623 | 1 | return "Controlid Industria, Comercio de Hardware e Servicos de Tecnologia Ltda"; |
4624 | 1 | case 2181: |
4625 | 1 | return "LEVOLOR, INC."; |
4626 | 1 | case 2182: |
4627 | 1 | return "Xsens Technologies B.V."; |
4628 | 1 | case 2183: |
4629 | 1 | return "Hydro-Gear Limited Partnership"; |
4630 | 1 | case 2184: |
4631 | 1 | return "EnPointe Fencing Pty Ltd"; |
4632 | 1 | case 2185: |
4633 | 1 | return "XANTHIO"; |
4634 | 1 | case 2186: |
4635 | 1 | return "sclak s.r.l."; |
4636 | 1 | case 2187: |
4637 | 1 | return "Tricorder Array Technologies LLC"; |
4638 | 1 | case 2188: |
4639 | 1 | return "GB Solution co.,Ltd"; |
4640 | 1 | case 2189: |
4641 | 1 | return "Soliton Systems K.K."; |
4642 | 1 | case 2190: |
4643 | 1 | return "GIGA-TMS INC"; |
4644 | 1 | case 2191: |
4645 | 1 | return "Tait International Limited"; |
4646 | 1 | case 2192: |
4647 | 1 | return "NICHIEI INTEC CO., LTD."; |
4648 | 1 | case 2193: |
4649 | 1 | return "SmartWireless GmbH & Co. KG"; |
4650 | 1 | case 2194: |
4651 | 1 | return "Ingenieurbuero Birnfeld UG (haftungsbeschraenkt)"; |
4652 | 1 | case 2195: |
4653 | 1 | return "Maytronics Ltd"; |
4654 | 1 | case 2196: |
4655 | 1 | return "EPIFIT"; |
4656 | 1 | case 2197: |
4657 | 1 | return "Gimer medical"; |
4658 | 1 | case 2198: |
4659 | 1 | return "Nokian Renkaat Oyj"; |
4660 | 1 | case 2199: |
4661 | 1 | return "Current Lighting Solutions LLC"; |
4662 | 1 | case 2200: |
4663 | 1 | return "Sensibo, Inc."; |
4664 | 1 | case 2201: |
4665 | 1 | return "SFS unimarket AG"; |
4666 | 1 | case 2202: |
4667 | 1 | return "Private limited company \"Teltonika\""; |
4668 | 1 | case 2203: |
4669 | 1 | return "Saucon Technologies"; |
4670 | 1 | case 2204: |
4671 | 1 | return "Embedded Devices Co. Company"; |
4672 | 1 | case 2205: |
4673 | 1 | return "J-J.A.D.E. Enterprise LLC"; |
4674 | 1 | case 2206: |
4675 | 1 | return "i-SENS, inc."; |
4676 | 1 | case 2207: |
4677 | 1 | return "Witschi Electronic Ltd"; |
4678 | 1 | case 2208: |
4679 | 1 | return "Aclara Technologies LLC"; |
4680 | 1 | case 2209: |
4681 | 1 | return "EXEO TECH CORPORATION"; |
4682 | 1 | case 2210: |
4683 | 1 | return "Epic Systems Co., Ltd."; |
4684 | 1 | case 2211: |
4685 | 1 | return "Hoffmann SE"; |
4686 | 1 | case 2212: |
4687 | 1 | return "Realme Chongqing Mobile Telecommunications Corp., Ltd."; |
4688 | 1 | case 2213: |
4689 | 1 | return "UMEHEAL Ltd"; |
4690 | 1 | case 2214: |
4691 | 1 | return "Intelligenceworks Inc."; |
4692 | 1 | case 2215: |
4693 | 1 | return "TGR 1.618 Limited"; |
4694 | 1 | case 2216: |
4695 | 1 | return "Shanghai Kfcube Inc"; |
4696 | 1 | case 2217: |
4697 | 1 | return "Fraunhofer IIS"; |
4698 | 1 | case 2218: |
4699 | 1 | return "SZ DJI TECHNOLOGY CO.,LTD"; |
4700 | 1 | case 2219: |
4701 | 1 | return "Coburn Technology, LLC"; |
4702 | 1 | case 2220: |
4703 | 1 | return "Topre Corporation"; |
4704 | 1 | case 2221: |
4705 | 1 | return "Kayamatics Limited"; |
4706 | 1 | case 2222: |
4707 | 1 | return "Moticon ReGo AG"; |
4708 | 1 | case 2223: |
4709 | 1 | return "Polidea Sp. z o.o."; |
4710 | 1 | case 2224: |
4711 | 1 | return "Trivedi Advanced Technologies LLC"; |
4712 | 1 | case 2225: |
4713 | 1 | return "CORE|vision BV"; |
4714 | 1 | case 2226: |
4715 | 1 | return "PF SCHWEISSTECHNOLOGIE GMBH"; |
4716 | 1 | case 2227: |
4717 | 1 | return "IONIQ Skincare GmbH & Co. KG"; |
4718 | 1 | case 2228: |
4719 | 1 | return "Sengled Co., Ltd."; |
4720 | 1 | case 2229: |
4721 | 1 | return "TransferFi"; |
4722 | 1 | case 2230: |
4723 | 1 | return "Boehringer Ingelheim Vetmedica GmbH"; |
4724 | 1 | case 2231: |
4725 | 1 | return "ABB Inc"; |
4726 | 1 | case 2232: |
4727 | 1 | return "Check Technology Solutions LLC"; |
4728 | 1 | case 2233: |
4729 | 1 | return "U-Shin Ltd."; |
4730 | 1 | case 2234: |
4731 | 1 | return "HYPER ICE, INC."; |
4732 | 1 | case 2235: |
4733 | 1 | return "Tokai-rika co.,ltd."; |
4734 | 1 | case 2236: |
4735 | 1 | return "Prevayl Limited"; |
4736 | 1 | case 2237: |
4737 | 1 | return "bf1systems limited"; |
4738 | 1 | case 2238: |
4739 | 1 | return "ubisys technologies GmbH"; |
4740 | 1 | case 2239: |
4741 | 1 | return "SIRC Co., Ltd."; |
4742 | 1 | case 2240: |
4743 | 1 | return "Accent Advanced Systems SLU"; |
4744 | 1 | case 2241: |
4745 | 1 | return "Rayden.Earth LTD"; |
4746 | 1 | case 2242: |
4747 | 1 | return "Lindinvent AB"; |
4748 | 1 | case 2243: |
4749 | 1 | return "CHIPOLO d.o.o."; |
4750 | 1 | case 2244: |
4751 | 1 | return "CellAssist, LLC"; |
4752 | 1 | case 2245: |
4753 | 1 | return "J. Wagner GmbH"; |
4754 | 1 | case 2246: |
4755 | 1 | return "Integra Optics Inc"; |
4756 | 1 | case 2247: |
4757 | 1 | return "Monadnock Systems Ltd."; |
4758 | 1 | case 2248: |
4759 | 1 | return "Liteboxer Technologies Inc."; |
4760 | 1 | case 2249: |
4761 | 1 | return "Noventa AG"; |
4762 | 1 | case 2250: |
4763 | 1 | return "Nubia Technology Co.,Ltd."; |
4764 | 1 | case 2251: |
4765 | 1 | return "JT INNOVATIONS LIMITED"; |
4766 | 1 | case 2252: |
4767 | 1 | return "TGM TECHNOLOGY CO., LTD."; |
4768 | 1 | case 2253: |
4769 | 1 | return "ifly"; |
4770 | 1 | case 2254: |
4771 | 1 | return "ZIMI CORPORATION"; |
4772 | 1 | case 2255: |
4773 | 1 | return "betternotstealmybike UG (with limited liability)"; |
4774 | 1 | case 2256: |
4775 | 1 | return "ESTOM Infotech Kft."; |
4776 | 1 | case 2257: |
4777 | 1 | return "Sensovium Inc."; |
4778 | 1 | case 2258: |
4779 | 1 | return "Virscient Limited"; |
4780 | 1 | case 2259: |
4781 | 1 | return "Novel Bits, LLC"; |
4782 | 1 | case 2260: |
4783 | 1 | return "ADATA Technology Co., LTD."; |
4784 | 1 | case 2261: |
4785 | 1 | return "KEYes"; |
4786 | 1 | case 2262: |
4787 | 1 | return "Nome Oy"; |
4788 | 1 | case 2263: |
4789 | 1 | return "Inovonics Corp"; |
4790 | 1 | case 2264: |
4791 | 1 | return "WARES"; |
4792 | 1 | case 2265: |
4793 | 1 | return "Pointr Labs Limited"; |
4794 | 1 | case 2266: |
4795 | 1 | return "Miridia Technology Incorporated"; |
4796 | 1 | case 2267: |
4797 | 1 | return "Tertium Technology"; |
4798 | 1 | case 2268: |
4799 | 1 | return "SHENZHEN AUKEY E BUSINESS CO., LTD"; |
4800 | 1 | case 2269: |
4801 | 1 | return "code-Q"; |
4802 | 1 | case 2270: |
4803 | 1 | return "Tyco Electronics Corporation a TE Connectivity Ltd Company"; |
4804 | 1 | case 2271: |
4805 | 1 | return "IRIS OHYAMA CO.,LTD."; |
4806 | 1 | case 2272: |
4807 | 1 | return "Philia Technology"; |
4808 | 1 | case 2273: |
4809 | 1 | return "KOZO KEIKAKU ENGINEERING Inc."; |
4810 | 1 | case 2274: |
4811 | 1 | return "Shenzhen Simo Technology co. LTD"; |
4812 | 1 | case 2275: |
4813 | 1 | return "Republic Wireless, Inc."; |
4814 | 1 | case 2276: |
4815 | 1 | return "Rashidov ltd"; |
4816 | 1 | case 2277: |
4817 | 1 | return "Crowd Connected Ltd"; |
4818 | 1 | case 2278: |
4819 | 1 | return "Eneso Tecnologia de Adaptacion S.L."; |
4820 | 1 | case 2279: |
4821 | 1 | return "Barrot Technology Limited"; |
4822 | 1 | case 2280: |
4823 | 1 | return "Naonext"; |
4824 | 1 | case 2281: |
4825 | 1 | return "Taiwan Intelligent Home Corp."; |
4826 | 1 | case 2282: |
4827 | 1 | return "COWBELL ENGINEERING CO.,LTD."; |
4828 | 1 | case 2283: |
4829 | 1 | return "Beijing Big Moment Technology Co., Ltd."; |
4830 | 1 | case 2284: |
4831 | 1 | return "Denso Corporation"; |
4832 | 1 | case 2285: |
4833 | 1 | return "IMI Hydronic Engineering International SA"; |
4834 | 1 | case 2286: |
4835 | 1 | return "ASKEY"; |
4836 | 1 | case 2287: |
4837 | 1 | return "Cumulus Digital Systems, Inc"; |
4838 | 1 | case 2288: |
4839 | 1 | return "Joovv, Inc."; |
4840 | 1 | case 2289: |
4841 | 1 | return "The L.S. Starrett Company"; |
4842 | 1 | case 2290: |
4843 | 1 | return "Microoled"; |
4844 | 1 | case 2291: |
4845 | 1 | return "PSP - Pauli Services & Products GmbH"; |
4846 | 1 | case 2292: |
4847 | 1 | return "Kodimo Technologies Company Limited"; |
4848 | 1 | case 2293: |
4849 | 1 | return "Tymtix Technologies Private Limited"; |
4850 | 1 | case 2294: |
4851 | 1 | return "Dermal Photonics Corporation"; |
4852 | 1 | case 2295: |
4853 | 1 | return "MTD Products Inc & Affiliates"; |
4854 | 1 | case 2296: |
4855 | 1 | return "instagrid GmbH"; |
4856 | 1 | case 2297: |
4857 | 1 | return "Spacelabs Medical Inc."; |
4858 | 1 | case 2298: |
4859 | 1 | return "Troo Corporation"; |
4860 | 1 | case 2299: |
4861 | 1 | return "Darkglass Electronics Oy"; |
4862 | 1 | case 2300: |
4863 | 1 | return "Hill-Rom"; |
4864 | 1 | case 2301: |
4865 | 1 | return "BioIntelliSense, Inc."; |
4866 | 1 | case 2302: |
4867 | 1 | return "Ketronixs Sdn Bhd"; |
4868 | 1 | case 2308: |
4869 | 1 | return "SUNCORPORATION"; |
4870 | 1 | case 2309: |
4871 | 1 | return "Yandex Services AG"; |
4872 | 1 | case 2310: |
4873 | 1 | return "Scope Logistical Solutions"; |
4874 | 1 | case 2311: |
4875 | 1 | return "User Hello, LLC"; |
4876 | 1 | case 2312: |
4877 | 1 | return "Pinpoint Innovations Limited"; |
4878 | 1 | case 2313: |
4879 | 1 | return "70mai Co.,Ltd."; |
4880 | 1 | case 2314: |
4881 | 1 | return "Zhuhai Hoksi Technology CO.,LTD"; |
4882 | 1 | case 2315: |
4883 | 1 | return "EMBR labs, INC"; |
4884 | 1 | case 2316: |
4885 | 1 | return "Radiawave Technologies Co.,Ltd."; |
4886 | 1 | case 2317: |
4887 | 1 | return "IOT Invent GmbH"; |
4888 | 1 | case 2318: |
4889 | 1 | return "OPTIMUSIOT TECH LLP"; |
4890 | 1 | case 2319: |
4891 | 1 | return "VC Inc."; |
4892 | 1 | case 2320: |
4893 | 1 | return "ASR Microelectronics (Shanghai) Co., Ltd."; |
4894 | 2 | case 2321: |
4895 | 2 | return "Douglas Lighting Controls Inc."; |
4896 | 1 | case 2322: |
4897 | 1 | return "Nerbio Medical Software Platforms Inc"; |
4898 | 1 | case 2323: |
4899 | 1 | return "Braveheart Wireless, Inc."; |
4900 | 1 | case 2324: |
4901 | 1 | return "INEO-SENSE"; |
4902 | 1 | case 2325: |
4903 | 1 | return "Honda Motor Co., Ltd."; |
4904 | 1 | case 2326: |
4905 | 1 | return "Ambient Sensors LLC"; |
4906 | 1 | case 2327: |
4907 | 1 | return "ASR Microelectronics(ShenZhen)Co., Ltd."; |
4908 | 1 | case 2328: |
4909 | 1 | return "Technosphere Labs Pvt. Ltd."; |
4910 | 1 | case 2329: |
4911 | 1 | return "NO SMD LIMITED"; |
4912 | 1 | case 2330: |
4913 | 1 | return "Albertronic BV"; |
4914 | 1 | case 2331: |
4915 | 1 | return "Luminostics, Inc."; |
4916 | 1 | case 2332: |
4917 | 1 | return "Oblamatik AG"; |
4918 | 1 | case 2333: |
4919 | 1 | return "Innokind, Inc."; |
4920 | 1 | case 2334: |
4921 | 1 | return "Melbot Studios, Sociedad Limitada"; |
4922 | 1 | case 2335: |
4923 | 1 | return "Myzee Technology"; |
4924 | 1 | case 2336: |
4925 | 1 | return "Omnisense Limited"; |
4926 | 1 | case 2337: |
4927 | 1 | return "KAHA PTE. LTD."; |
4928 | 1 | case 2338: |
4929 | 1 | return "Shanghai MXCHIP Information Technology Co., Ltd."; |
4930 | 1 | case 2339: |
4931 | 1 | return "JSB TECH PTE LTD"; |
4932 | 1 | case 2340: |
4933 | 1 | return "Fundacion Tecnalia Research and Innovation"; |
4934 | 1 | case 2341: |
4935 | 1 | return "Yukai Engineering Inc."; |
4936 | 1 | case 2342: |
4937 | 1 | return "Gooligum Technologies Pty Ltd"; |
4938 | 1 | case 2343: |
4939 | 1 | return "ROOQ GmbH"; |
4940 | 1 | case 2344: |
4941 | 1 | return "AiRISTA"; |
4942 | 1 | case 2345: |
4943 | 1 | return "Qingdao Haier Technology Co., Ltd."; |
4944 | 1 | case 2346: |
4945 | 1 | return "Sappl Verwaltungs- und Betriebs GmbH"; |
4946 | 1 | case 2347: |
4947 | 1 | return "TekHome"; |
4948 | 1 | case 2348: |
4949 | 1 | return "PCI Private Limited"; |
4950 | 1 | case 2349: |
4951 | 1 | return "Leggett & Platt, Incorporated"; |
4952 | 1 | case 2350: |
4953 | 1 | return "PS GmbH"; |
4954 | 1 | case 2351: |
4955 | 1 | return "C.O.B.O. SpA"; |
4956 | 1 | case 2352: |
4957 | 1 | return "James Walker RotaBolt Limited"; |
4958 | 1 | case 2353: |
4959 | 1 | return "BREATHINGS Co., Ltd."; |
4960 | 1 | case 2354: |
4961 | 1 | return "BarVision, LLC"; |
4962 | 1 | case 2355: |
4963 | 1 | return "SRAM"; |
4964 | 1 | case 2356: |
4965 | 1 | return "KiteSpring Inc."; |
4966 | 1 | case 2357: |
4967 | 1 | return "Reconnect, Inc."; |
4968 | 1 | case 2358: |
4969 | 1 | return "Elekon AG"; |
4970 | 1 | case 2359: |
4971 | 1 | return "RealThingks GmbH"; |
4972 | 1 | case 2360: |
4973 | 1 | return "Henway Technologies, LTD."; |
4974 | 1 | case 2361: |
4975 | 1 | return "ASTEM Co.,Ltd."; |
4976 | 1 | case 2362: |
4977 | 1 | return "LinkedSemi Microelectronics (Xiamen) Co., Ltd"; |
4978 | 1 | case 2363: |
4979 | 1 | return "ENSESO LLC"; |
4980 | 1 | case 2364: |
4981 | 1 | return "Xenoma Inc."; |
4982 | 1 | case 2365: |
4983 | 1 | return "Adolf Wuerth GmbH & Co KG"; |
4984 | 1 | case 2366: |
4985 | 1 | return "Catalyft Labs, Inc."; |
4986 | 1 | case 2367: |
4987 | 1 | return "JEPICO Corporation"; |
4988 | 1 | case 2368: |
4989 | 1 | return "Hero Workout GmbH"; |
4990 | 1 | case 2369: |
4991 | 1 | return "Rivian Automotive, LLC"; |
4992 | 1 | case 2370: |
4993 | 1 | return "TRANSSION HOLDINGS LIMITED"; |
4994 | 1 | case 2371: |
4995 | 1 | return "Inovonics Corp."; |
4996 | 1 | case 2372: |
4997 | 1 | return "Agitron d.o.o."; |
4998 | 1 | case 2373: |
4999 | 1 | return "Globe (Jiangsu) Co., Ltd"; |
5000 | 1 | case 2374: |
5001 | 1 | return "AMC International Alfa Metalcraft Corporation AG"; |
5002 | 1 | case 2375: |
5003 | 1 | return "First Light Technologies Ltd."; |
5004 | 1 | case 2376: |
5005 | 1 | return "Wearable Link Limited"; |
5006 | 1 | case 2377: |
5007 | 1 | return "Metronom Health Europe"; |
5008 | 1 | case 2378: |
5009 | 1 | return "Zwift, Inc."; |
5010 | 1 | case 2379: |
5011 | 1 | return "Kindeva Drug Delivery L.P."; |
5012 | 1 | case 2380: |
5013 | 1 | return "GimmiSys GmbH"; |
5014 | 1 | case 2381: |
5015 | 1 | return "tkLABS INC."; |
5016 | 1 | case 2382: |
5017 | 1 | return "PassiveBolt, Inc."; |
5018 | 1 | case 2383: |
5019 | 1 | return "Limited Liability Company \"Mikrotikls\""; |
5020 | 1 | case 2384: |
5021 | 1 | return "Capetech"; |
5022 | 1 | case 2385: |
5023 | 1 | return "PPRS"; |
5024 | 1 | case 2386: |
5025 | 1 | return "Apptricity Corporation"; |
5026 | 1 | case 2387: |
5027 | 1 | return "LogiLube, LLC"; |
5028 | 1 | case 2388: |
5029 | 1 | return "Julbo"; |
5030 | 1 | case 2389: |
5031 | 1 | return "Breville Group"; |
5032 | 1 | case 2390: |
5033 | 1 | return "Kerlink"; |
5034 | 1 | case 2391: |
5035 | 1 | return "Ohsung Electronics"; |
5036 | 1 | case 2392: |
5037 | 1 | return "ZTE Corporation"; |
5038 | 2 | case 65535: |
5039 | 2 | return "internal use"; |
5040 | 43 | default: |
5041 | 43 | return "not assigned"; |
5042 | 2.45k | } |
5043 | 2.45k | } |