diff --git a/acme/bin/source/win/dat.h b/acme/bin/source/win/dat.h
index 38d31dcf01..a03bcd685d 100644
--- a/acme/bin/source/win/dat.h
+++ b/acme/bin/source/win/dat.h
@@ -9,7 +9,7 @@ enum
NPIPEDATA = 8000,
NPIPE = NPIPEDATA+32,
/* EVENTSIZE is really 256 in acme, but we use events internally and want bigger buffers */
- EVENTSIZE = 8192,
+ EVENTSIZE = 16*1024,
NEVENT = 5,
};
diff --git a/acme/bin/source/win/fs.c b/acme/bin/source/win/fs.c
index 6c41eb072b..80e769b962 100644
--- a/acme/bin/source/win/fs.c
+++ b/acme/bin/source/win/fs.c
@@ -44,13 +44,13 @@ fsflush(Req *r)
static void
fswrite(Req *r)
{
- static Event *e[4];
+ static Event *e[4]; /* ours, not the one from event.h */
+ static int n, partial;
Event *ep;
int i, j, ei, nb, wid, pid;
Rune rune;
char *s;
char tmp[UTFmax], *t;
- static int n, partial;
if(r->fid->file == devnew){
if(r->fid->aux){
@@ -84,8 +84,14 @@ fswrite(Req *r)
ep = e[n];
n = (n+1)%nelem(e);
- assert(r->ifcall.count <= 8192); /* is this guaranteed by lib9p? */
+ /*
+ * lib9p ensures that r->ifcall.count is <= srv->msize - IOHDRSZ,
+ * where srv == &fs.
+ */
+ assert((int)r->ifcall.count >= 0);
nb = r->ifcall.count;
+ if (partial + nb >= sizeof ep->b)
+ sysfatal("EVENTSIZE < MAXRPC; increase EVENTSIZE & recompile");
memmove(ep->b+partial, r->ifcall.data, nb);
nb += partial;
ep->b[nb] = '\0';
@@ -97,12 +103,12 @@ fswrite(Req *r)
nb = j;
t[j] = '\0';
}
- ei = nb>8192? 8192 : nb;
+ ei = nb>EVENTSIZE? EVENTSIZE: nb;
/* process bytes into runes, transferring terminal partial runes into next buffer */
for(i=j=0; ib+i, ei-i); i+=wid,j++)
wid = chartorune(&rune, ep->b+i);
memmove(tmp, ep->b+i, nb-i);
- partial = nb-i;
+// partial = nb-i; /* redundant */
ep->nb = i;
ep->nr = j;
ep->b[i] = '\0';
diff --git a/amd64/include/ape/float.h b/amd64/include/ape/float.h
new file mode 100644
index 0000000000..4982868440
--- /dev/null
+++ b/amd64/include/ape/float.h
@@ -0,0 +1,80 @@
+#ifndef __FLOAT
+#define __FLOAT
+/* IEEE, default rounding */
+
+#define FLT_ROUNDS 1
+#define FLT_RADIX 2
+
+#define FLT_DIG 6
+#define FLT_EPSILON 1.19209290e-07
+#define FLT_MANT_DIG 24
+#define FLT_MAX 3.40282347e+38
+#define FLT_MAX_10_EXP 38
+#define FLT_MAX_EXP 128
+#define FLT_MIN 1.17549435e-38
+#define FLT_MIN_10_EXP -37
+#define FLT_MIN_EXP -125
+
+#define DBL_DIG 15
+#define DBL_EPSILON 2.2204460492503131e-16
+#define DBL_MANT_DIG 53
+#define DBL_MAX 1.797693134862315708145e+308
+#define DBL_MAX_10_EXP 308
+#define DBL_MAX_EXP 1024
+#define DBL_MIN 2.225073858507201383090233e-308
+#define DBL_MIN_10_EXP -307
+#define DBL_MIN_EXP -1021
+#define LDBL_MANT_DIG DBL_MANT_DIG
+#define LDBL_EPSILON DBL_EPSILON
+#define LDBL_DIG DBL_DIG
+#define LDBL_MIN_EXP DBL_MIN_EXP
+#define LDBL_MIN DBL_MIN
+#define LDBL_MIN_10_EXP DBL_MIN_10_EXP
+#define LDBL_MAX_EXP DBL_MAX_EXP
+#define LDBL_MAX DBL_MAX
+#define LDBL_MAX_10_EXP DBL_MAX_10_EXP
+
+typedef union FPdbleword FPdbleword;
+union FPdbleword
+{
+ double x;
+ struct { /* little endian */
+ long lo;
+ long hi;
+ };
+};
+
+#ifdef _RESEARCH_SOURCE
+/* define stuff needed for floating conversion */
+#define IEEE_8087 1
+#define Sudden_Underflow 1
+#endif
+#ifdef _PLAN9_SOURCE
+/* MXCSR */
+/* fcr */
+#define FPFTZ (1<<15) /* amd64 */
+#define FPINEX (1<<12)
+#define FPUNFL (1<<11)
+#define FPOVFL (1<<10)
+#define FPZDIV (1<<9)
+#define FPDNRM (1<<8) /* amd64 */
+#define FPINVAL (1<<7)
+#define FPDAZ (1<<6) /* amd64 */
+#define FPRNR (0<<13)
+#define FPRZ (3<<13)
+#define FPRPINF (2<<13)
+#define FPRNINF (1<<13)
+#define FPRMASK (3<<13)
+#define FPPEXT 0
+#define FPPSGL 0
+#define FPPDBL 0
+#define FPPMASK 0
+/* fsr */
+#define FPAINEX (1<<5)
+#define FPAUNFL (1<<4)
+#define FPAOVFL (1<<3)
+#define FPAZDIV (1<<2)
+#define FPADNRM (1<<1) /* not in plan 9 */
+#define FPAINVAL (1<<0)
+#endif
+#endif /* __FLOAT */
diff --git a/amd64/include/ape/math.h b/amd64/include/ape/math.h
new file mode 100644
index 0000000000..41e1024f5a
--- /dev/null
+++ b/amd64/include/ape/math.h
@@ -0,0 +1,74 @@
+#ifndef __MATH
+#define __MATH
+#pragma lib "/$M/lib/ape/libap.a"
+
+/* a HUGE_VAL appropriate for IEEE double-precision */
+/* the correct value, 1.797693134862316e+308, causes a ken overflow */
+#define HUGE_VAL 1.79769313486231e+308
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+extern double acos(double);
+extern double asin(double);
+extern double atan(double);
+extern double atan2(double, double);
+extern double cos(double);
+extern double sin(double);
+extern double tan(double);
+extern double cosh(double);
+extern double sinh(double);
+extern double tanh(double);
+extern double exp(double);
+extern double frexp(double, int *);
+extern double ldexp(double, int);
+extern double log(double);
+extern double log10(double);
+extern double modf(double, double *);
+extern double pow(double, double);
+extern double sqrt(double);
+extern double ceil(double);
+extern double fabs(double);
+extern double floor(double);
+extern double fmod(double, double);
+extern double NaN(void);
+extern int isNaN(double);
+extern double Inf(int);
+extern int isInf(double, int);
+
+#ifdef _RESEARCH_SOURCE
+/* does >> treat left operand as unsigned ? */
+#define Unsigned_Shifts 1
+#define M_E 2.7182818284590452354 /* e */
+#define M_LOG2E 1.4426950408889634074 /* log 2e */
+#define M_LOG10E 0.43429448190325182765 /* log 10e */
+#define M_LN2 0.69314718055994530942 /* log e2 */
+#define M_LN10 2.30258509299404568402 /* log e10 */
+#define M_PI 3.14159265358979323846 /* pi */
+#define M_PI_2 1.57079632679489661923 /* pi/2 */
+#define M_PI_4 0.78539816339744830962 /* pi/4 */
+#define M_1_PI 0.31830988618379067154 /* 1/pi */
+#define M_2_PI 0.63661977236758134308 /* 2/pi */
+#define M_2_SQRTPI 1.12837916709551257390 /* 2/sqrt(pi) */
+#define M_SQRT2 1.41421356237309504880 /* sqrt(2) */
+#define M_SQRT1_2 0.70710678118654752440 /* 1/sqrt(2) */
+
+extern double hypot(double, double);
+extern double erf(double);
+extern double erfc(double);
+extern double j0(double);
+extern double y0(double);
+extern double j1(double);
+extern double y1(double);
+extern double jn(int, double);
+extern double yn(int, double);
+
+#endif
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* __MATH */
diff --git a/amd64/include/ape/stdarg.h b/amd64/include/ape/stdarg.h
new file mode 100644
index 0000000000..cf466841f7
--- /dev/null
+++ b/amd64/include/ape/stdarg.h
@@ -0,0 +1,18 @@
+#ifndef __STDARG
+#define __STDARG
+
+typedef char *va_list;
+
+#define va_start(list, start) list = (sizeof(start)<8 ? (char *)((long long *)&(start)+1) : \
+(char *)(&(start)+1))
+#define va_end(list)
+#define va_arg(list, mode)\
+ ((sizeof(mode) == 1)?\
+ ((mode*)(list += 8))[-8]:\
+ (sizeof(mode) == 2)?\
+ ((mode*)(list += 8))[-4]:\
+ (sizeof(mode) == 4)?\
+ ((mode*)(list += 8))[-2]:\
+ ((mode*)(list += sizeof(mode)))[-1])
+
+#endif /* __STDARG */
diff --git a/amd64/include/ape/ureg.h b/amd64/include/ape/ureg.h
new file mode 100644
index 0000000000..2774630ce5
--- /dev/null
+++ b/amd64/include/ape/ureg.h
@@ -0,0 +1,38 @@
+#ifndef __UREG_H
+#define __UREG_H
+#if !defined(_PLAN9_SOURCE)
+ This header file is an extension to ANSI/POSIX
+#endif
+
+struct Ureg {
+ unsigned long long ax;
+ unsigned long long bx;
+ unsigned long long cx;
+ unsigned long long dx;
+ unsigned long long si;
+ unsigned long long di;
+ unsigned long long bp;
+ unsigned long long r8;
+ unsigned long long r9;
+ unsigned long long r10;
+ unsigned long long r11;
+ unsigned long long r12;
+ unsigned long long r13;
+ unsigned long long r14;
+ unsigned long long r15;
+
+ unsigned short ds;
+ unsigned short es;
+ unsigned short fs;
+ unsigned short gs;
+
+ unsigned long long type;
+ unsigned long long error; /* error code (or zero) */
+ unsigned long long ip; /* pc */
+ unsigned long long cs; /* old context */
+ unsigned long long flags; /* old flags */
+ unsigned long long sp; /* sp */
+ unsigned long long ss; /* old stack segment */
+};
+
+#endif
diff --git a/dist/replica/plan9.proto b/dist/replica/plan9.proto
index b24dfbf477..dd246e978c 100644
--- a/dist/replica/plan9.proto
+++ b/dist/replica/plan9.proto
@@ -37,12 +37,22 @@ arm - sys sys
+ - sys sys
mips - sys sys
+ - sys sys
+mips64 - sys sys
+ + - sys sys
power - sys sys
+ - sys sys
power64 - sys sys
+ - sys sys
+riscv - sys sys
+ + - sys sys
+riscv64 - sys sys
+ + - sys sys
sparc - sys sys
+ - sys sys
+spim - sys sys
+ + - sys sys
+spim64 - sys sys
+ + - sys sys
# everything else is owned by sys
acme - sys sys
@@ -103,8 +113,12 @@ sys - sys sys
+ - sys sys
fax - sys sys
+ - sys sys
+ firmware - sys sys
+ + - sys sys
ghostscript - sys sys
+ - sys sys
+ git - sys sys
+ + - sys sys
kbmap - sys sys
+ - sys sys
lex - sys sys
diff --git a/lib/ndb/common b/lib/ndb/common
index 2b49bbf36e..600a06a200 100644
--- a/lib/ndb/common
+++ b/lib/ndb/common
@@ -253,6 +253,7 @@ tcp=9fs port=564
tcp=whoami port=565
tcp=guard port=566
tcp=ticket port=567
+tcp=submission port=587
tcp=ldaps port=636
tcp=fmclient port=729
tcp=iscsi-system port=860
diff --git a/lib/oui b/lib/oui
index f228f3cadf..4753e4434a 100755
--- a/lib/oui
+++ b/lib/oui
@@ -5,9 +5,11 @@ rfork n
cd /n/boot/lib
{
sed '/^$/q' oui
- hget http://standards.ieee.org/regauth/oui/oui.txt |
+ hget http://standards-oui.ieee.org/oui/oui.txt |
tr A-Z a-z |
- sed -n 's/([^ ]+)[ ]+.base 16.[ ]+(.*)[ ]*/\1 \2/p'
+ sed -n 's/([^ ]+)[ ]+.base 16.[ ]+(.*)[ ]*/ \1 \2/p' |
+ sed 's/
//' |
+ sort
} >_oui && mv _oui oui
chmod +x oui
exit
@@ -24,7 +26,7 @@ exit
000009 xerox corporation
00000a omron tateisi electronics co.
00000b matrix corporation
- 00000c cisco systems, inc.
+ 00000c cisco systems, inc
00000d fibronics ltd.
00000e fujitsu limited
00000f next, inc.
@@ -39,11 +41,11 @@ exit
000018 webster computer corporation
000019 applied dynamics international
00001a advanced micro devices
- 00001b novell inc.
+ 00001b novell, inc.
00001c bell technologies
00001d cabletron systems, inc.
00001e telsist industria electronica
- 00001f telco systems, inc.
+ 00001f telco systems, inc.
000020 dataindustrier diab ab
000021 sureman comp. & commun. corp.
000022 visual technology inc.
@@ -61,7 +63,7 @@ exit
00002e societe evira
00002f timeplex inc.
000030 vg laboratory systems ltd
- 000031 qpsx communications pty ltd
+ 000031 qpsx communications, ltd.
000032 marconi plc
000033 egan machinery company
000034 network resources corporation
@@ -96,7 +98,7 @@ exit
000051 hob electronic gmbh & co. kg
000052 intrusion.com, inc.
000053 compucorp
- 000054 schnieder electric
+ 000054 schneider electric
000055 commissariat a l`energie atom.
000056 dr. b. struck
000057 scitex corporation ltd.
@@ -107,22 +109,22 @@ exit
00005c telematics international inc.
00005d cs telecom
00005e icann, iana department
- 00005f sumitomo electric ind., ltd.
+ 00005f sumitomo electric industries, ltd
000060 kontron elektronik gmbh
000061 gateway communications
000062 bull hn information systems
000063 barco control rooms gmbh
- 000064 yokogawa digital computer corp
+ 000064 yokogawa digital computer corporation
000065 network general corporation
000066 talaris systems, inc.
000067 soft * rite, inc.
000068 rosemount controls
000069 concord communications inc
00006a computer consoles inc.
- 00006b silicon graphics inc./mips
- 00006c
+ 00006b silicon graphics
+ 00006c private
00006d cray communications, ltd.
- 00006e artisoft, inc.
+ 00006e artisoft inc.
00006f madge ltd.
000070 hcl limited
000071 adra systems inc.
@@ -148,7 +150,7 @@ exit
000085 canon inc.
000086 megahertz corporation
000087 hitachi, ltd.
- 000088 brocade communications systems, inc.
+ 000088 brocade communications systems llc
000089 cayman systems inc.
00008a datahouse information systems
00008b infotron
@@ -163,7 +165,7 @@ exit
000094 asante technologies
000095 sony tektronix corp.
000096 marconi electronics ltd.
- 000097 emc corporation
+ 000097 dell emc
000098 crosscomm corporation
000099 mtx, inc.
00009a rc computer a/s
@@ -177,22 +179,22 @@ exit
0000a2 bay networks
0000a3 network application technology
0000a4 acorn computers limited
- 0000a5 tattile srl
+ 0000a5 tattile srl
0000a6 network general corporation
0000a7 network computing devices inc.
- 0000a8 stratus computer inc.
+ 0000a8 stratus technologies
0000a9 network systems corp.
0000aa xerox corporation
0000ab logic modeling corporation
0000ac conware computer consulting
0000ad bruker instruments inc.
0000ae dassault electronique
- 0000af nuclear data instrumentation
+ 0000af canberra industries, inc.
0000b0 rnd-rad network devices
- 0000b1 alpha microsystems inc.
+ 0000b1 alpha micro
0000b2 televideo systems, inc.
0000b3 cimlinc incorporated
- 0000b4 edimax computer company
+ 0000b4 edimax technology co. ltd.
0000b5 datability software sys. inc.
0000b6 micro-matic research
0000b7 dove computer corporation
@@ -201,20 +203,20 @@ exit
0000ba siig, inc.
0000bb tri-data
0000bc rockwell automation
- 0000bd mitsubishi cable company
+ 0000bd mitsubishi cable industries, ltd. / ryosei systems
0000be the nti group
0000bf symmetric computer systems
0000c0 western digital corporation
0000c1 madge ltd.
0000c2 information presentation tech.
- 0000c3 harris corp computer sys div
+ 0000c3 harris corporation
0000c4 waters div. of millipore
- 0000c5 farallon computing/netopia
+ 0000c5 arris group, inc.
0000c6 eon systems
0000c7 arix corporation
0000c8 altos computer systems
0000c9 emulex corporation
- 0000ca arris international
+ 0000ca arris group, inc.
0000cb compu-shack electronic gmbh
0000cc densan co., ltd.
0000cd allied telesis labs ltd
@@ -252,11 +254,11 @@ exit
0000ed april
0000ee network designers, ltd.
0000ef kti
- 0000f0 samsung electronics co., ltd.
+ 0000f0 samsung electronics co.,ltd
0000f1 magna computer corporation
0000f2 spider communications
0000f3 gandalf data limited
- 0000f4 allied telesis
+ 0000f4 allied telesis, inc.
0000f5 diamond sales limited
0000f6 applied microsystems corp.
0000f7 youth keep enterprise co ltd
@@ -266,12 +268,12 @@ exit
0000fb rechner zur kommunikation
0000fc meiko
0000fd high level hardware
- 0000fe annapolis micro systems
+ 0000fe annapolis micro systems, inc.
0000ff camtec electronics ltd.
000100 equip'trans
- 000101
- 000102 3com corporation
- 000103 3com corporation
+ 000101 private
+ 000102 3com
+ 000103 3com
000104 dvico co., ltd.
000105 beckhoff automation gmbh
000106 tews datentechnik gmbh
@@ -281,9 +283,9 @@ exit
00010a cis technology inc.
00010b space cyberlink, inc.
00010c system talks inc.
- 00010d coreco, inc.
+ 00010d teledyne dalsa inc.
00010e bri-link technologies co., ltd
- 00010f brocade communications systems, inc.
+ 00010f brocade communications systems llc
000110 gotham networks
000111 idigm inc.
000112 shark multimedia inc.
@@ -303,7 +305,7 @@ exit
000120 oscilloquartz s.a.
000121 watchguard technologies, inc.
000122 trend communications, ltd.
- 000123 digital electronics corp.
+ 000123 schneider electric japan holdings ltd.
000124 acer incorporated
000125 yaesu musen co., ltd.
000126 pac labs
@@ -316,13 +318,13 @@ exit
00012d komodo technology
00012e pc partner ltd.
00012f twinhead international corp
- 000130 extreme networks
+ 000130 extreme networks, inc.
000131 bosch security systems, inc.
000132 dranetz - bmi
000133 kyowa electronic instruments c
000134 selectron systems ag
000135 kdc corp.
- 000136 cybertan technology, inc.
+ 000136 cybertan technology inc.
000137 it farm corporation
000138 xavi technologies corp.
000139 point multimedia systems
@@ -334,14 +336,14 @@ exit
00013f neighbor world co., ltd.
000140 sendtek corporation
000141 cable print
- 000142 cisco systems, inc.
- 000143 cisco systems, inc.
- 000144 emc corporation
+ 000142 cisco systems, inc
+ 000143 cisco systems, inc
+ 000144 dell emc
000145 winsystems, inc.
000146 tesco controls, inc.
000147 zhone technologies
000148 x-traweb inc.
- 000149 t.d.t. transfer data test gmbh
+ 000149 tdt ag
00014a sony corporation
00014b ennovate networks, inc.
00014c berkeley process control
@@ -361,14 +363,14 @@ exit
00015a digital video broadcasting
00015b italtel s.p.a/rf-up-i
00015c cadant inc.
- 00015d oracle corporation
+ 00015d oracle corporation
00015e best technology co., ltd.
00015f digital design gmbh
000160 elmex co., ltd.
000161 meta machine technology
000162 cygnet technologies, inc.
- 000163 cisco systems, inc.
- 000164 cisco systems, inc.
+ 000163 cisco systems, inc
+ 000164 cisco systems, inc
000165 airswitch corporation
000166 tc group a/s
000167 hioki e.e. corporation
@@ -418,8 +420,8 @@ exit
000193 hanbyul telecom co., ltd.
000194 capital equipment corporation
000195 sena technologies, inc.
- 000196 cisco systems, inc.
- 000197 cisco systems, inc.
+ 000196 cisco systems, inc
+ 000197 cisco systems, inc
000198 darim vision
000199 heisei electronics
00019a leunig gmbh
@@ -443,7 +445,7 @@ exit
0001ac sitara networks, inc.
0001ad coach master international d.b.a. cmi worldwide, inc.
0001ae trex enterprises
- 0001af emerson network power
+ 0001af artesyn embedded technologies
0001b0 fulltek technology co., ltd.
0001b1 general bandwidth
0001b2 digital processing systems, inc.
@@ -453,7 +455,7 @@ exit
0001b6 saejin t&m co., ltd.
0001b7 centos, inc.
0001b8 netsensity, inc.
- 0001b9 skf condition monitoring
+ 0001b9 skf (u.k.) limited
0001ba ic-net, inc.
0001bb frequentis
0001bc brains corporation
@@ -467,10 +469,10 @@ exit
0001c4 neowave, inc.
0001c5 simpler networks
0001c6 quarry technologies
- 0001c7 cisco systems, inc.
- 0001c8 thomas conrad corp.
+ 0001c7 cisco systems, inc
0001c8 conrad corp.
- 0001c9 cisco systems, inc.
+ 0001c8 thomas conrad corp.
+ 0001c9 cisco systems, inc
0001ca geocast network systems, inc.
0001cb evr
0001cc japan total design communication co., ltd.
@@ -479,7 +481,7 @@ exit
0001cf alpha data parallel systems, ltd.
0001d0 vitalpoint, inc.
0001d1 conet communications, inc.
- 0001d2 inxtron, inc.
+ 0001d2 inxtron, inc.
0001d3 paxcomm, inc.
0001d4 leisure time, inc.
0001d5 haedong info & comm co., ltd
@@ -499,8 +501,8 @@ exit
0001e3 siemens ag
0001e4 sitera, inc.
0001e5 supernet, inc.
- 0001e6 hewlett-packard company
- 0001e7 hewlett-packard company
+ 0001e6 hewlett packard
+ 0001e7 hewlett packard
0001e8 force10 networks, inc.
0001e9 litton marine systems b.v.
0001ea cirilium corp.
@@ -513,7 +515,7 @@ exit
0001f1 innovative concepts, inc.
0001f2 mark of the unicorn, inc.
0001f3 qps, inc.
- 0001f4 enterasys networks
+ 0001f4 enterasys
0001f5 erim s.a.
0001f6 association of musical electronics industry
0001f7 image display systems, inc.
@@ -539,7 +541,7 @@ exit
00020b native networks, inc.
00020c metro-optix
00020d micronpc.com
- 00020e eci telecom, ltd
+ 00020e eci telecom ltd.
00020f aatr
000210 fenecom
000211 nature worldwide technology corp.
@@ -547,8 +549,8 @@ exit
000213 s.d.e.l.
000214 dtvro
000215 cotas computer technology a/b
- 000216 cisco systems, inc.
- 000217 cisco systems, inc.
+ 000216 cisco systems, inc
+ 000217 cisco systems, inc
000218 advanced scientific corp
000219 paralon technologies
00021a zuma networks
@@ -586,9 +588,9 @@ exit
00023a zsk stickmaschinen gmbh
00023b ericsson
00023c creative technology, ltd.
- 00023d cisco systems, inc.
+ 00023d cisco systems, inc
00023e selta telematica s.p.a
- 00023f compal electronics, inc.
+ 00023f compal electronics inc.
000240 seedek co., ltd.
000241 amer.com
000242 videoframe systems
@@ -599,8 +601,8 @@ exit
000247 great dragon information technology (group) co., ltd.
000248 pilz gmbh & co.
000249 aviv infocom co, ltd.
- 00024a cisco systems, inc.
- 00024b cisco systems, inc.
+ 00024a cisco systems, inc
+ 00024b cisco systems, inc
00024c sibyte, inc.
00024d mannesman dematic colby pty. ltd.
00024e datacard group
@@ -645,19 +647,19 @@ exit
000275 smart technologies, inc.
000276 primax electronics ltd.
000277 cash systemes industrie
- 000278 samsung electro-mechanics co., ltd.
+ 000278 samsung electro mechanics co., ltd.
000279 control applications, ltd.
00027a ioi technology corporation
00027b amplify net, inc.
00027c trilithic, inc.
- 00027d cisco systems, inc.
- 00027e cisco systems, inc.
+ 00027d cisco systems, inc
+ 00027e cisco systems, inc
00027f ask-technologies.com
000280 mu net, inc.
000281 madge ltd.
000282 viaclix, inc.
000283 spectrum controls, inc.
- 000284 areva t&d
+ 000284 uk grid solutions limited
000285 riverstone networks
000286 occam networks
000287 adapcom
@@ -690,7 +692,7 @@ exit
0002a2 hilscher gmbh
0002a3 abb switzerland ltd, power systems
0002a4 addpac technology co., ltd.
- 0002a5 hewlett-packard company
+ 0002a5 hewlett packard
0002a6 effinet systems co., ltd.
0002a7 vivace networks
0002a8 air link technology
@@ -710,8 +712,8 @@ exit
0002b6 acrosser technology co., ltd.
0002b7 watanabe electric industry co., ltd.
0002b8 whi konsult ab
- 0002b9 cisco systems, inc.
- 0002ba cisco systems, inc.
+ 0002b9 cisco systems, inc
+ 0002ba cisco systems, inc
0002bb continuous computing corp
0002bc lvl 7 systems, inc.
0002bd bionet co., ltd.
@@ -721,12 +723,12 @@ exit
0002c1 innovative electronic designs, inc.
0002c2 net vision telecom
0002c3 arelnet ltd.
- 0002c4 vector international bvba
+ 0002c4 opt machine vision tech co., ltd
0002c5 evertz microsystems ltd.
0002c6 data track technology plc
- 0002c7 alps electric co., ltd.
+ 0002c7 alpsalpine co,.ltd
0002c8 technocom communications technology (pte) ltd
- 0002c9 mellanox technologies
+ 0002c9 mellanox technologies, inc.
0002ca endpoints, inc.
0002cb tristate ltd.
0002cc m.c.c.i
@@ -777,12 +779,12 @@ exit
0002f9 mimos berhad
0002fa dx antenna co., ltd.
0002fb baumuller aulugen-systemtechnik gmbh
- 0002fc cisco systems, inc.
- 0002fd cisco systems, inc.
+ 0002fc cisco systems, inc
+ 0002fd cisco systems, inc
0002fe viditec, inc.
0002ff handan broadinfocom
000300 barracuda networks, inc.
- 000301 avantas networks corporation
+ 000301 exfo
000302 charles industries, ltd.
000303 jama electronics co., ltd.
000304 pacific broadband communications
@@ -799,7 +801,7 @@ exit
00030f digital china (shanghai) networks ltd.
000310 e-globaledge corporation
000311 micro technology co., ltd.
- 000312 tr-systemtechnik gmbh
+ 000312 trsystems gmbh
000313 access media spa
000314 teleware network systems
000315 cidco incorporated
@@ -830,10 +832,10 @@ exit
00032e scope information management, ltd.
00032f global sun technology, inc.
000330 imagenics, co., ltd.
- 000331 cisco systems, inc.
- 000332 cisco systems, inc.
+ 000331 cisco systems, inc
+ 000332 cisco systems, inc
000333 digitel co., ltd.
- 000334 newport electronics
+ 000334 omega engineering inc.
000335 mirae technology
000336 zetes technologies
000337 vaone, inc.
@@ -869,7 +871,7 @@ exit
000355 terabeam internet systems
000356 wincor nixdorf international gmbh
000357 intervoice-brite, inc.
- 000358 hanyang digitech co., ltd.
+ 000358 hanyang digitech co.ltd
000359 digitalsis
00035a photron limited
00035b bridgewave communications
@@ -888,8 +890,8 @@ exit
000368 embedone co., ltd.
000369 nippon antenna co., ltd.
00036a mainnet, ltd.
- 00036b cisco systems, inc.
- 00036c cisco systems, inc.
+ 00036b cisco systems, inc
+ 00036c cisco systems, inc
00036d runtop, inc.
00036e nicon systems (pty) limited
00036f telsey spa
@@ -918,7 +920,7 @@ exit
000386 ho net, inc.
000387 blaze network products
000388 fastfame technology co., ltd.
- 000389 plantronics
+ 000389 plantronics, inc.
00038a america online, inc.
00038b plus-one i&t, inc.
00038c total impact
@@ -928,11 +930,11 @@ exit
000390 digital video communications, inc.
000391 advanced digital broadcast, ltd.
000392 hyundai teletek co., ltd.
- 000393 apple
+ 000393 apple, inc.
000394 connect one
000395 california amplifier
000396 ez cast co., ltd.
- 000397 watchfront limited
+ 000397 firebrick limited
000398 wisi
000399 dongju informations & communications co., ltd.
00039a siconnect
@@ -940,8 +942,8 @@ exit
00039c optimight communications, inc.
00039d qisda corporation
00039e tera system co., ltd.
- 00039f cisco systems, inc.
- 0003a0 cisco systems, inc.
+ 00039f cisco systems, inc
+ 0003a0 cisco systems, inc
0003a1 hiper information & communication, inc.
0003a2 catapult communications
0003a3 mavix, ltd.
@@ -984,7 +986,7 @@ exit
0003c8 cml emergency services
0003c9 tecom co., ltd.
0003ca mts systems corp.
- 0003cb nippon systems development co., ltd.
+ 0003cb systemgear co., ltd.
0003cc momentum computer, inc.
0003cd clovertech, inc.
0003ce eten technologies, inc.
@@ -1002,18 +1004,18 @@ exit
0003da takamisawa cybernetics co., ltd.
0003db apogee electronics corp.
0003dc lexar media, inc.
- 0003dd comark corp.
+ 0003dd comark interactive solutions
0003de otc wireless
0003df desana systems
0003e0 arris group, inc.
0003e1 winmate communication, inc.
0003e2 comspace corporation
- 0003e3 cisco systems, inc.
- 0003e4 cisco systems, inc.
+ 0003e3 cisco systems, inc
+ 0003e4 cisco systems, inc
0003e5 hermstedt sg
0003e6 entone, inc.
0003e7 logostek co. ltd.
- 0003e8 wavelength digital limited
+ 0003e8 wavesight limited
0003e9 akara canada, inc.
0003ea mega system technologies, inc.
0003eb atrica
@@ -1034,8 +1036,8 @@ exit
0003fa timetra networks
0003fb enegate co.,ltd.
0003fc intertex data ab
- 0003fd cisco systems, inc.
- 0003fe cisco systems, inc.
+ 0003fd cisco systems, inc
+ 0003fe cisco systems, inc
0003ff microsoft corporation
000400 lexmark international, inc.
000401 osaki electric co., ltd.
@@ -1048,15 +1050,15 @@ exit
000408 sanko electronics co., ltd.
000409 cratos networks
00040a sage systems
- 00040b 3com europe ltd.
+ 00040b 3com europe ltd
00040c kanno works, ltd.
- 00040d avaya, inc.
+ 00040d avaya inc
00040e avm gmbh
00040f asus network technologies, inc.
000410 spinnaker networks, inc.
000411 inkra networks, inc.
000412 wavesmith networks, inc.
- 000413 snom technology ag
+ 000413 snom technology gmbh
000414 umezawa musen denki co., ltd.
000415 rasteme systems co., ltd.
000416 parks s/a comunicacoes digitais
@@ -1068,16 +1070,16 @@ exit
00041c ipdialog, inc.
00041d corega of america
00041e shikoku instrumentation co., ltd.
- 00041f sony computer entertainment, inc.
+ 00041f sony interactive entertainment inc.
000420 slim devices, inc.
000421 ocular networks
- 000422 gordon kapes, inc.
+ 000422 studio technologies, inc
000423 intel corporation
000424 tmc s.r.l.
000425 atmel corporation
000426 autosys
- 000427 cisco systems, inc.
- 000428 cisco systems, inc.
+ 000427 cisco systems, inc
+ 000428 cisco systems, inc
000429 pixord corporation
00042a wireless networks, inc.
00042b it access co., ltd.
@@ -1090,7 +1092,7 @@ exit
000432 voyetra turtle beach, inc.
000433 cyberboard a/s
000434 accelent systems, inc.
- 000435 comptek international, inc.
+ 000435 infinet llc
000436 elansat technologies, inc.
000437 powin information technology, inc.
000438 nortel networks
@@ -1114,9 +1116,9 @@ exit
00044a ipolicy networks, inc.
00044b nvidia
00044c jenoptik
- 00044d cisco systems, inc.
- 00044e cisco systems, inc.
- 00044f leukhardt systemelektronik gmbh
+ 00044d cisco systems, inc
+ 00044e cisco systems, inc
+ 00044f schubert system elektronik gmbh
000450 dmd computers srl
000451 medrad, inc.
000452 rocketlogix, inc.
@@ -1146,26 +1148,26 @@ exit
00046a navini networks
00046b palm wireless, inc.
00046c cyber technology co., ltd.
- 00046d cisco systems, inc.
- 00046e cisco systems, inc.
+ 00046d cisco systems, inc
+ 00046e cisco systems, inc
00046f digitel s/a industria eletronica
000470 ipunplugged ab
000471 iprad
000472 telelynx, inc.
000473 photonex corporation
000474 legrand
- 000475 3 com corporation
- 000476 3 com corporation
+ 000475 3com
+ 000476 3com
000477 scalant systems, inc.
000478 g. star technology corporation
000479 radius co., ltd.
00047a axxessit asa
00047b schlumberger
00047c skidata ag
- 00047d pelco
+ 00047d motorola solutions inc.
00047e siqura b.v.
00047f chr. mayr gmbh & co. kg
- 000480 brocade communications systems, inc
+ 000480 brocade communications systems llc
000481 econolite control products, inc.
000482 medialogic corp.
000483 deltron technology, inc.
@@ -1178,7 +1180,7 @@ exit
00048a temia vertriebs gmbh
00048b poscon corporation
00048c nayna networks, inc.
- 00048d tone commander systems, inc.
+ 00048d teo technologies, inc
00048e ohm tech labs, inc.
00048f td systems corporation
000490 optical access
@@ -1187,12 +1189,12 @@ exit
000493 tsinghua unisplendour co., ltd.
000494 breezecom, ltd.
000495 tejas networks india limited
- 000496 extreme networks
+ 000496 extreme networks, inc.
000497 macrosystem digital video ag
000498 mahi networks
000499 chino corporation
- 00049a cisco systems, inc.
- 00049b cisco systems, inc.
+ 00049a cisco systems, inc
+ 00049b cisco systems, inc
00049c surgient networks, inc.
00049d ipanema technologies
00049e wirelink co., ltd.
@@ -1200,7 +1202,7 @@ exit
0004a0 verity instruments, inc.
0004a1 pathway connectivity
0004a2 l.s.i. japan co., ltd.
- 0004a3 microchip technology, inc.
+ 0004a3 microchip technology inc.
0004a4 netenabled, inc.
0004a5 barco projection systems nv
0004a6 saf tehnika ltd.
@@ -1208,7 +1210,7 @@ exit
0004a8 broadmax technologies, inc.
0004a9 sandstream technologies, inc.
0004aa jetstream communications
- 0004ab comverse network systems, inc.
+ 0004ab mavenir inc.
0004ac ibm corp
0004ad malibu networks
0004ae sullair corporation
@@ -1229,13 +1231,13 @@ exit
0004bd arris group, inc.
0004be optxcon, inc.
0004bf versalogic corp.
- 0004c0 cisco systems, inc.
- 0004c1 cisco systems, inc.
+ 0004c0 cisco systems, inc
+ 0004c1 cisco systems, inc
0004c2 magnipix, inc.
0004c3 castor informatique
- 0004c4 allen & heath limited
+ 0004c4 audiotonix group limited
0004c5 ase technologies, usa
- 0004c6 yamaha motor co., ltd.
+ 0004c6 yamaha motor co.,ltd
0004c7 netmount
0004c8 liba maschinenfabrik gmbh
0004c9 micro electron co., ltd.
@@ -1258,20 +1260,20 @@ exit
0004da relax technology, inc.
0004db tellus group corp.
0004dc nortel networks
- 0004dd cisco systems, inc.
- 0004de cisco systems, inc.
- 0004df teracom telematica ltda.
+ 0004dd cisco systems, inc
+ 0004de cisco systems, inc
+ 0004df teracom telematica s.a
0004e0 procket networks
0004e1 infinior microsystems
0004e2 smc networks, inc.
- 0004e3 accton technology corp.
+ 0004e3 accton technology corp
0004e4 daeryung ind., inc.
0004e5 glonet systems, inc.
0004e6 banyan network private limited
0004e7 lightpointe communications, inc
0004e8 ier, inc.
0004e9 infiniswitch corporation
- 0004ea hewlett-packard company
+ 0004ea hewlett packard
0004eb paxonet communications, inc.
0004ec memobox sa
0004ed billion electric co., ltd.
@@ -1289,13 +1291,13 @@ exit
0004f9 xtera communications, inc.
0004fa nbs technologies inc.
0004fb commtech, inc.
- 0004fc stratus computer (de), inc.
+ 0004fc stratus technologies
0004fd japan control engineering co., ltd.
0004fe pelago networks
0004ff acronet co., ltd.
- 000500 cisco systems, inc.
- 000501 cisco systems, inc.
- 000502 apple
+ 000500 cisco systems, inc
+ 000501 cisco systems, inc
+ 000502 apple, inc.
000503 iconag
000504 naray information & communication enterprise
000505 systems integration solutions, inc.
@@ -1311,7 +1313,7 @@ exit
00050f tanaka s/s ltd.
000510 infinite shanghai communication terminals ltd.
000511 complementary technologies ltd
- 000512 meshnetworks, inc.
+ 000512 zebra technologies inc
000513 vtlinx multimedia systems, inc.
000514 kdt systems co., ltd.
000515 nuark co., ltd.
@@ -1319,11 +1321,11 @@ exit
000517 shellcomm, inc.
000518 jupiters technology
000519 siemens building technologies ag,
- 00051a 3com europe ltd.
+ 00051a 3com europe ltd
00051b magic control technology corporation
00051c xnet technology corp.
00051d airocon, inc.
- 00051e brocade communications systems, inc.
+ 00051e brocade communications systems llc
00051f taijin media co., ltd.
000520 smartronix, inc.
000521 control microsystems
@@ -1342,9 +1344,9 @@ exit
00052e cinta networks
00052f leviton network solutions
000530 andiamo systems, inc.
- 000531 cisco systems, inc.
- 000532 cisco systems, inc.
- 000533 brocade communications systems, inc.
+ 000531 cisco systems, inc
+ 000532 cisco systems, inc
+ 000533 brocade communications systems llc
000534 northstar engineering ltd.
000535 chip pc ltd.
000536 danam communications, inc.
@@ -1372,7 +1374,7 @@ exit
00054c rf innovations pty ltd
00054d brans technologies, inc.
00054e philips
- 00054f
+ 00054f garmin international
000550 vcomms connect limited
000551 f & s elektronik systeme gmbh
000552 xycotec computer gmbh
@@ -1387,8 +1389,8 @@ exit
00055b charles industries, ltd.
00055c kowa company, ltd.
00055d d-link systems, inc.
- 00055e cisco systems, inc.
- 00055f cisco systems, inc.
+ 00055e cisco systems, inc
+ 00055f cisco systems, inc
000560 leader comm.co., ltd
000561 nac image technology, inc.
000562 digital view limited
@@ -1408,12 +1410,12 @@ exit
000570 baydel ltd.
000571 seiwa electronics co.
000572 deonet co., ltd.
- 000573 cisco systems, inc.
- 000574 cisco systems, inc.
+ 000573 cisco systems, inc
+ 000574 cisco systems, inc
000575 cds-electronics bv
000576 nsm technology ltd.
000577 sm information & communication
- 000578
+ 000578 private
000579 universal control solution corp.
00057a overture networks
00057b chung nam electronic co., ltd.
@@ -1426,7 +1428,7 @@ exit
000582 clearcube technology
000583 imagecom limited
000584 absolutevalue systems, inc.
- 000585 juniper networks, inc.
+ 000585 juniper networks
000586 lucent technologies
000587 locus, incorporated
000588 sensoria corp.
@@ -1441,14 +1443,14 @@ exit
000591 active silicon ltd
000592 pultek corp.
000593 grammar engine inc.
- 000594 ixxat automation gmbh
+ 000594 hms industrial networks
000595 alesis corporation
000596 genotech co., ltd.
000597 eagle traffic control systems
000598 cronos s.r.l.
000599 drs test and energy management or drs-tem
- 00059a cisco systems, inc.
- 00059b cisco systems, inc.
+ 00059a cisco systems, inc
+ 00059b cisco systems, inc
00059c kleinknecht gmbh, ing. büro
00059d daniel computing systems, inc.
00059e zinwell corporation
@@ -1460,7 +1462,7 @@ exit
0005a4 lucid voice ltd.
0005a5 kott
0005a6 extron electronics
- 0005a7 hyperchip, inc.
+ 0005a7 hyperchip inc.
0005a8 wyle electronics
0005a9 princeton networks, inc.
0005aa moore industries international inc.
@@ -1494,11 +1496,11 @@ exit
0005c6 triz communications
0005c7 i/f-com a/s
0005c8 verytech
- 0005c9 lg innotek co., ltd.
+ 0005c9 lg innotek
0005ca hitron technology, inc.
0005cb rois technologies, inc.
0005cc sumtel communications, inc.
- 0005cd denon, ltd.
+ 0005cd d&m holdings inc.
0005ce prolink microsystems corporation
0005cf thunder river technologies, inc.
0005d0 solinet systems
@@ -1513,8 +1515,8 @@ exit
0005d9 techno valley, inc.
0005da apex automationstechnik
0005db psi nentec gmbh
- 0005dc cisco systems, inc.
- 0005dd cisco systems, inc.
+ 0005dc cisco systems, inc
+ 0005dd cisco systems, inc
0005de gi fone korea, inc.
0005df electronic innovation, inc.
0005e0 empirix corp.
@@ -1531,7 +1533,7 @@ exit
0005eb blue ridge networks, inc.
0005ec mosaic systems inc.
0005ed technikum joanneum gmbh
- 0005ee siemens ab, infrastructure & cities, building technologies division, ic bt ssp sp ba pr
+ 0005ee vanderbilt international (swe) ab
0005ef adoir digital technology
0005f0 satec
0005f1 vrcom, inc.
@@ -1560,7 +1562,7 @@ exit
000608 at-sky sas
000609 crossport systems
00060a blue2space
- 00060b emerson network power
+ 00060b artesyn embedded technologies
00060c melco industries, inc.
00060d wave7 optics
00060e igys systems, inc.
@@ -1589,16 +1591,16 @@ exit
000625 the linksys group, inc.
000626 mwe gmbh
000627 uniwide technologies, inc.
- 000628 cisco systems, inc.
+ 000628 cisco systems, inc
000629 ibm corp
- 00062a cisco systems, inc.
+ 00062a cisco systems, inc
00062b intraserver technology
00062c bivio networks
00062d touchstar technologies, l.l.c.
00062e aristos logic corp.
00062f pivotech systems inc.
000630 adtranz sweden
- 000631 calix
+ 000631 calix inc.
000632 mesco engineering gmbh
000633 cross match technologies gmbh
000634 gte airfone inc.
@@ -1617,7 +1619,7 @@ exit
000641 itcn
000642 genetel systems inc.
000643 sono computer co., ltd.
- 000644 neix,inc
+ 000644 nextgen business solutions, inc
000645 meisei electric co. ltd.
000646 shenzhen xunbao network technology co ltd
000647 etrali s.a.
@@ -1631,8 +1633,8 @@ exit
00064f pro-nets technology corporation
000650 tiburon networks, inc.
000651 aspen networks inc.
- 000652 cisco systems, inc.
- 000653 cisco systems, inc.
+ 000652 cisco systems, inc
+ 000653 cisco systems, inc
000654 winpresa building automation technologies gmbh
000655 yipee, inc.
000656 tactel ab
@@ -1640,11 +1642,11 @@ exit
000658 helmut fischer gmbh institut für elektronik und messtechnik
000659 eal (apeldoorn) b.v.
00065a strix systems
- 00065b dell computer corp.
+ 00065b dell inc.
00065c malachite technologies, inc.
00065d heidelberg web systems
00065e photuris, inc.
- 00065f eci telecom - ngts ltd.
+ 00065f eci telecom ltd.
000660 nadex co., ltd.
000661 nia home technologies corp.
000662 mbm technology ltd.
@@ -1669,11 +1671,11 @@ exit
000675 banderacom, inc.
000676 novra technologies inc.
000677 sick ag
- 000678 marantz brand company
+ 000678 d&m holdings inc.
000679 konami corporation
00067a jmp systems
00067b toplink c&c corporation
- 00067c cisco systems, inc.
+ 00067c cisco systems, inc
00067d takasago ltd.
00067e wincom systems, inc.
00067f digeo, inc.
@@ -1689,7 +1691,7 @@ exit
000689 ylez technologies pte ltd
00068a neuronnet co. ltd. r&d center
00068b airrunner technologies, inc.
- 00068c 3com corporation
+ 00068c 3com
00068d sepaton, inc.
00068e hid corporation
00068f telemonitor, inc.
@@ -1742,7 +1744,7 @@ exit
0006be baumer optronic gmbh
0006bf accella technologies co., ltd.
0006c0 united internetworks, inc.
- 0006c1 cisco systems, inc.
+ 0006c1 cisco systems, inc
0006c2 smartmatic corporation
0006c3 schindler elevator ltd.
0006c4 piolink inc.
@@ -1763,8 +1765,8 @@ exit
0006d3 alpha telecom, inc. u.s.a.
0006d4 interactive objects, inc.
0006d5 diamond systems corp.
- 0006d6 cisco systems, inc.
- 0006d7 cisco systems, inc.
+ 0006d6 cisco systems, inc
+ 0006d7 cisco systems, inc
0006d8 maple optical systems
0006d9 ipm-net s.p.a.
0006da itran communications ltd.
@@ -1794,9 +1796,9 @@ exit
0006f2 platys communications
0006f3 accelight networks
0006f4 prime electronics & satellitics inc.
- 0006f5 alps co,. ltd.
- 0006f6 cisco systems, inc.
- 0006f7 alps co,. ltd.
+ 0006f5 alpsalpine co,.ltd
+ 0006f6 cisco systems, inc
+ 0006f7 alpsalpine co,.ltd
0006f8 the boeing company
0006f9 mitsui zosen systems research inc.
0006fa ip square co, ltd.
@@ -1807,9 +1809,9 @@ exit
0006ff sheba systems co., ltd.
000700 zettamedia korea
000701 racal-datacom
- 000702 varian medical systems
+ 000702 varex imaging
000703 csee transport
- 000704 alps co,. ltd.
+ 000704 alpsalpine co,.ltd
000705 endress & hauser gmbh & co
000706 sanritz corporation
000707 interalia inc.
@@ -1818,8 +1820,8 @@ exit
00070a unicom automation co., ltd.
00070b novabase sgps, sa
00070c sva-intrusion.com co. ltd.
- 00070d cisco systems, inc.
- 00070e cisco systems, inc.
+ 00070d cisco systems, inc
+ 00070e cisco systems, inc
00070f fujant, inc.
000710 adax, inc.
000711 acterna
@@ -1833,7 +1835,7 @@ exit
000719 mobiis co., ltd.
00071a finedigital inc.
00071b cdvi americas ltd
- 00071c at&t fixed wireless services
+ 00071c at&t
00071d satelsa sistemas y aplicaciones de telecomunicaciones, s.a.
00071e tri-m engineering / nupak dev. corp.
00071f european systems integration
@@ -1843,7 +1845,7 @@ exit
000723 elcon systemtechnik gmbh
000724 telemax co., ltd.
000725 bematech international corp.
- 000726 shenzhen gongjin electronics co., ltd.
+ 000726 shenzhen gongjin electronics co.,lt
000727 zi corporation (hk) ltd.
000728 neo telecom
000729 kistler instrumente ag
@@ -1863,15 +1865,15 @@ exit
000737 soriya co. ltd.
000738 young technology co., ltd.
000739 scotty group austria gmbh
- 00073a inventel systemes
+ 00073a inventel
00073b tenovis gmbh & co kg
00073c telecom design
00073d nanjing postel telecommunications co., ltd.
00073e china great-wall computer shenzhen co., ltd.
00073f woojyun systec co., ltd.
- 000740 buffalo inc.
+ 000740 buffalo.inc
000741 sierra automated systems
- 000742 current technologies, llc
+ 000742 ormazabal
000743 chelsio communications
000744 unico, inc.
000745 radlan computer communications ltd.
@@ -1884,8 +1886,8 @@ exit
00074c beicom inc.
00074d zebra technologies corp.
00074e ipfront inc
- 00074f cisco systems, inc.
- 000750 cisco systems, inc.
+ 00074f cisco systems, inc
+ 000750 cisco systems, inc
000751 m-u-t ag
000752 rhythm watch co., ltd.
000753 beijing qxcomm technology co., ltd.
@@ -1893,7 +1895,7 @@ exit
000755 lafon
000756 juyoung telecom
000757 topcall international ag
- 000758 dragonwave
+ 000758 dragonwave inc.
000759 boris manufacturing corp.
00075a air products and chemicals, inc.
00075b gibson guitars
@@ -1902,7 +1904,7 @@ exit
00075e ametek power instruments
00075f vcs video communication systems ag
000760 tomis information & telecom corp.
- 000761 logitech europe sa
+ 000761 29530
000762 group sense limited
000763 sunniwell cyber tech. co., ltd.
000764 youngwoo telecom co. ltd.
@@ -1919,7 +1921,7 @@ exit
00076f synoptics limited
000770 ubiquoss inc
000771 embedded system corporation
- 000772 alcatel shanghai bell co., ltd.
+ 000772 alcatel-lucent shanghai bell co., ltd
000773 ascom powerline communications ltd.
000774 guangzhou thinker technology co. ltd.
000775 valence semiconductor, inc.
@@ -1929,32 +1931,32 @@ exit
000779 sungil telecom co., ltd.
00077a infoware system co., ltd.
00077b millimetrix broadband networks
- 00077c westermo teleindustri ab
- 00077d cisco systems, inc.
+ 00077c westermo network technologies ab
+ 00077d cisco systems, inc
00077e elrest gmbh
00077f j communications co., ltd.
000780 bluegiga technologies oy
000781 itron inc.
- 000782 oracle corporation
+ 000782 oracle corporation
000783 syncom network, inc.
- 000784 cisco systems, inc.
- 000785 cisco systems, inc.
+ 000784 cisco systems, inc
+ 000785 cisco systems, inc
000786 wireless networks inc.
000787 idea system co., ltd.
000788 clipcomm, inc.
- 000789 dongwon systems
+ 000789 allradio co., ltd
00078a mentor data system inc.
00078b wegener communications, inc.
00078c elektronikspecialisten i borlange ab
00078d netengines ltd.
- 00078e garz & friche gmbh
+ 00078e garz & fricke gmbh
00078f emkay innovative products
000790 tri-m technologies (s) limited
000791 international data communications, inc.
000792 sütron electronic gmbh
000793 shin satellite public company limited
000794 simple devices, inc.
- 000795 elitegroup computer system co. (ecs)
+ 000795 elitegroup computer systems co.,ltd.
000796 lsi systems, inc.
000797 netpower co., ltd.
000798 selea srl
@@ -1971,27 +1973,27 @@ exit
0007a3 ositis software, inc.
0007a4 gn netcom ltd.
0007a5 y.d.k co. ltd.
- 0007a6 home automation, inc.
+ 0007a6 leviton manufacturing co., inc.
0007a7 a-z inc.
- 0007a8 haier group technologies ltd.
+ 0007a8 haier group technologies ltd
0007a9 novasonics
0007aa quantum data inc.
0007ab samsung electronics co.,ltd
0007ac eolring
0007ad pentacon gmbh foto-und feinwerktechnik
0007ae britestream networks, inc.
- 0007af n-tron corporation
+ 0007af red lion controls, lp
0007b0 office details, inc.
0007b1 equator technologies
0007b2 transaccess s.a.
- 0007b3 cisco systems, inc.
- 0007b4 cisco systems, inc.
+ 0007b3 cisco systems, inc
+ 0007b4 cisco systems, inc
0007b5 any one wireless ltd.
0007b6 telecom technology ltd.
0007b7 samurai ind. prods eletronicos ltda
0007b8 corvalent corporation
0007b9 ginganet corporation
- 0007ba utstarcom, inc.
+ 0007ba utstarcom inc
0007bb candera inc.
0007bc identix inc.
0007bd radionet ltd.
@@ -2008,9 +2010,9 @@ exit
0007c8 brain21, inc.
0007c9 technol seven co., ltd.
0007ca creatix polymedia ges fur kommunikaitonssysteme
- 0007cb freebox sa
+ 0007cb freebox sas
0007cc kaba benzing gmbh
- 0007cd nmtel co., ltd.
+ 0007cd kumoh electronic co, ltd
0007ce cabletime limited
0007cf anoto ab
0007d0 automat engenharia de automação ltda.
@@ -2021,7 +2023,7 @@ exit
0007d5 3e technologies int;., inc.
0007d6 commil ltd.
0007d7 caporis networks ag
- 0007d8 hitron systems inc.
+ 0007d8 hitron technologies. inc
0007d9 splicecom
0007da neuro telecom co., ltd.
0007db kirana networks, inc.
@@ -2040,8 +2042,8 @@ exit
0007e8 edgewave
0007e9 intel corporation
0007ea massana, inc.
- 0007eb cisco systems, inc.
- 0007ec cisco systems, inc.
+ 0007eb cisco systems, inc
+ 0007ec cisco systems, inc
0007ed altera corporation
0007ee telco informationssysteme gmbh
0007ef lockheed martin tactical systems
@@ -2063,7 +2065,7 @@ exit
0007ff gluon networks
000800 multitech systems, inc.
000801 highspeed surfing inc.
- 000802 hewlett-packard company
+ 000802 hewlett packard
000803 cos tron
000804 ica inc.
000805 techno-holon corporation
@@ -2073,7 +2075,7 @@ exit
000809 systemonic ag
00080a espera-werke gmbh
00080b birka bpa informationssystem ab
- 00080c vda elettronica spa
+ 00080c vda group s.p.a.
00080d toshiba
00080e arris group, inc.
00080f proximion fiber optics ab
@@ -2093,8 +2095,8 @@ exit
00081d ipsil, incorporated
00081e repeatit ab
00081f pou yuen tech corp. ltd.
- 000820 cisco systems, inc.
- 000821 cisco systems, inc.
+ 000820 cisco systems, inc
+ 000821 cisco systems, inc
000822 inpro comm
000823 texa corp.
000824 nuance document imaging
@@ -2102,16 +2104,16 @@ exit
000826 colorado med tech
000827 adb broadband italia
000828 koei engineering ltd.
- 000829 aval nagasaki corporation
+ 000829 tokyo electron device nagasaki limited
00082a powerwallz network security
00082b wooksung electronics, inc.
00082c homag ag
00082d indus teqsite private limited
00082e multitone electronics plc
- 00082f cisco systems, inc.
- 000830 cisco systems, inc.
- 000831 cisco systems, inc.
- 000832 cisco
+ 00082f cisco systems, inc
+ 000830 cisco systems, inc
+ 000831 cisco systems, inc
+ 000832 cisco systems, inc
00084e divergenet, inc.
00084f qualstar corporation
000850 arizona instrument corp.
@@ -2127,7 +2129,7 @@ exit
00085a intigate inc.
00085b hanbit electronics co., ltd.
00085c shanghai dare technologies co. ltd.
- 00085d aastra
+ 00085d mitel corporation
00085e pco ag
00085f picanol n.v.
000860 lodgenet entertainment corp.
@@ -2150,7 +2152,7 @@ exit
000871 northdata co., ltd.
000872 sorenson communications
000873 daptechnology b.v.
- 000874 dell computer corp.
+ 000874 dell inc.
000875 acorp electronics corp.
000876 sdsystem
000877 liebert-hiross spa
@@ -2158,20 +2160,20 @@ exit
000879 cem corporation
00087a wipotec gmbh
00087b rtx telecom a/s
- 00087c cisco systems, inc.
- 00087d cisco systems, inc.
+ 00087c cisco systems, inc
+ 00087d cisco systems, inc
00087e bon electro-telecom inc.
00087f spaun electronic gmbh & co. kg
000880 broadtel canada communications inc.
000881 digital hands co.,ltd.
000882 sigma corporation
- 000883 hewlett-packard company
+ 000883 hewlett packard
000884 index braille ab
000885 ems dr. thomas wünsche
000886 hansung teliann, inc.
000887 maschinenfabrik reinhausen gmbh
000888 oullim information technology inc,.
- 000889 echostar technologies corp
+ 000889 dish technologies corp
00088a minds@work
00088b tropic networks inc.
00088c quanta network systems inc.
@@ -2197,8 +2199,8 @@ exit
0008a0 stotz feinmesstechnik gmbh
0008a1 cnet technology inc.
0008a2 adi engineering, inc.
- 0008a3 cisco systems, inc.
- 0008a4 cisco systems, inc.
+ 0008a3 cisco systems, inc
+ 0008a4 cisco systems, inc
0008a5 peninsula systems inc.
0008a6 multiware & image co., ltd.
0008a7 ilogic inc.
@@ -2210,7 +2212,7 @@ exit
0008ad toyo-linx co., ltd.
0008ae packetfront network products ab
0008af novatec corporation
- 0008b0 bktel communications gmbh
+ 0008b0 huber+suhner bktel gmbh
0008b1 proquent systems
0008b2 shenzhen compass technology development co.,ltd
0008b3 fastwel
@@ -2219,7 +2221,7 @@ exit
0008b6 routefree, inc.
0008b7 hit incorporated
0008b8 e.f. johnson
- 0008b9 kaon media co., ltd.
+ 0008b9 kaonmedia co., ltd.
0008ba erskine systems ltd
0008bb netexcell
0008bc ilevo ab
@@ -2228,14 +2230,14 @@ exit
0008bf aptus elektronik ab
0008c0 asa systems
0008c1 avistar communications corporation
- 0008c2 cisco systems, inc.
+ 0008c2 cisco systems, inc
0008c3 contex a/s
0008c4 hikari co.,ltd.
0008c5 liontech co., ltd.
0008c6 philips consumer communications
- 0008c7 hewlett-packard company
+ 0008c7 hewlett packard
0008c8 soneticom, inc.
- 0008c9 technisat digital gmbh
+ 0008c9 technisat digital gmbh daun
0008ca twinhan technology co.,ltd
0008cb zeta broadband inc.
0008cc remotec, inc.
@@ -2260,8 +2262,8 @@ exit
0008df alistel inc.
0008e0 ato technology ltd.
0008e1 barix ag
- 0008e2 cisco systems, inc.
- 0008e3 cisco systems, inc.
+ 0008e2 cisco systems, inc
+ 0008e3 cisco systems, inc
0008e4 envenergy inc
0008e5 idk corporation
0008e6 littlefeet
@@ -2280,11 +2282,11 @@ exit
0008f3 wany
0008f4 bluetake technology co., ltd.
0008f5 yestechnology co.,ltd.
- 0008f6 sumitomo electric system solutions co., ltd.
+ 0008f6 sumitomo electric industries, ltd
0008f7 hitachi ltd, semiconductor & integrated circuits gr
0008f8 utc ccs
- 0008f9 emerson network power
- 0008fa karl e.brinkmann gmbh
+ 0008f9 artesyn embedded technologies
+ 0008fa keb automation kg
0008fb sonosite, inc.
0008fc gigaphoton inc.
0008fd bluekorea co., ltd.
@@ -2307,8 +2309,8 @@ exit
00090e helix technology inc.
00090f fortinet inc.
000910 simple access inc.
- 000911 cisco systems, inc.
- 000912 cisco systems, inc.
+ 000911 cisco systems, inc
+ 000912 cisco systems, inc
000913 systemk corporation
000914 computrols inc.
000915 cas corp.
@@ -2348,17 +2350,17 @@ exit
000937 inventec appliance corp
000938 allot communications
000939 shibasoku co.,ltd.
- 00093a molex fiber optics
+ 00093a molex cms
00093b hyundai networks inc.
00093c jacques technologies p/l
00093d newisys,inc.
00093e c&i technologies
00093f double-win enterpirse co., ltd
000940 agfeo gmbh & co. kg
- 000941 allied telesis k.k.
+ 000941 allied telesis r&d center k.k.
000942 wireless technologies, inc
- 000943 cisco systems, inc.
- 000944 cisco systems, inc.
+ 000943 cisco systems, inc
+ 000944 cisco systems, inc
000945 palmmicro communications inc
000946 cluster labs gmbh
000947 aztek, inc.
@@ -2381,7 +2383,7 @@ exit
000958 intelnet s.a.
000959 sitecsoft
00095a racewood technology
- 00095b netgear, inc.
+ 00095b netgear
00095c philips medical systems - cardiac and monitoring systems (cm
00095d dialogue technology corp.
00095e masstech group inc.
@@ -2392,7 +2394,7 @@ exit
000963 dominion lasercom inc.
000964 hi-techniques, inc.
000965 hyunju computer co., ltd.
- 000966 thales navigation
+ 000966 trimble europe bv
000967 tachyon, inc
000968 technoventure, inc.
000969 meret optical communications
@@ -2413,8 +2415,8 @@ exit
000978 aiji system co., ltd.
000979 advanced television systems committee, inc.
00097a louis design labs.
- 00097b cisco systems, inc.
- 00097c cisco systems, inc.
+ 00097b cisco systems, inc
+ 00097c cisco systems, inc
00097d secwell networks oy
00097e imi technology co., ltd
00097f vsecure 2000 ltd.
@@ -2435,7 +2437,7 @@ exit
00098e ipcas gmbh
00098f cetacean networks
000990 acksys communications & systems
- 000991 ge fanuc automation manufacturing, inc.
+ 000991 intelligent platforms, llc.
000992 interepoch technology,inc.
000993 visteon corporation
000994 cronyx engineering
@@ -2472,13 +2474,13 @@ exit
0009b3 mcm systems ltd
0009b4 kisan telecom co., ltd.
0009b5 3j tech. co., ltd.
- 0009b6 cisco systems, inc.
- 0009b7 cisco systems, inc.
+ 0009b6 cisco systems, inc
+ 0009b7 cisco systems, inc
0009b8 entise systems
0009b9 action imaging solutions
0009ba maku informationstechik gmbh
0009bb mathstar, inc.
- 0009bc digital safety technologies, inc
+ 0009bc utility, inc
0009bd epygi technologies, ltd.
0009be mamiya-op co.,ltd.
0009bf nintendo co., ltd.
@@ -2513,7 +2515,7 @@ exit
0009dc galaxis technology ag
0009dd mavin technology inc.
0009de samjin information & communications co., ltd.
- 0009df vestel komunikasyon sanayi ve ticaret a.s.
+ 0009df vestel elektronik san ve tic. a.Ş.
0009e0 xemics s.a.
0009e1 gemtek technology co., ltd.
0009e2 sinbon electronics co., ltd.
@@ -2522,8 +2524,8 @@ exit
0009e5 hottinger baldwin messtechnik gmbh
0009e6 cyber switching inc.
0009e7 adc techonology
- 0009e8 cisco systems, inc.
- 0009e9 cisco systems, inc.
+ 0009e8 cisco systems, inc
+ 0009e9 cisco systems, inc
0009ea yem inc.
0009eb humandata ltd.
0009ec daktronics, inc.
@@ -2558,7 +2560,7 @@ exit
000a0a sunix co., ltd.
000a0b sealevel systems, inc.
000a0c scientific research corporation
- 000a0d fci deutschland gmbh
+ 000a0d amphenol
000a0e invivo research inc.
000a0f ilryung telesys, inc
000a10 fast media integrations ag
@@ -2584,7 +2586,7 @@ exit
000a24 octave communications
000a25 ceragon networks
000a26 ceia s.p.a.
- 000a27 apple
+ 000a27 apple, inc.
000a28 motorola
000a29 pan dacom networking ag
000a2a qsi systems inc.
@@ -2593,7 +2595,7 @@ exit
000a2d cabot communications limited
000a2e maple networks co., ltd
000a2f artnix inc.
- 000a30 johnson controls-asg
+ 000a30 visteon corporation
000a31 hcv consulting
000a32 xsido corporation
000a33 emulex corporation
@@ -2610,8 +2612,8 @@ exit
000a3e eads telecom
000a3f data east corporation
000a40 crown audio -- harmanm international
- 000a41 cisco systems, inc.
- 000a42 cisco systems, inc.
+ 000a41 cisco systems, inc
+ 000a42 cisco systems, inc
000a43 chunghwa telecom co., ltd.
000a44 avery dennison deutschland gmbh
000a45 audio-technica corp.
@@ -2632,14 +2634,14 @@ exit
000a54 laguna hills, inc.
000a55 markem corporation
000a56 hitachi maxell ltd.
- 000a57 hewlett-packard company - standards
+ 000a57 hewlett packard
000a58 freyer & siegel elektronik gmbh & co. kg
000a59 hw server
000a5a greennet technologies co.,ltd.
000a5b power-one as
000a5c carel s.p.a.
000a5d fingertec worldwide sdn bhd
- 000a5e 3com corporation
+ 000a5e 3com
000a5f almedio inc.
000a60 autostar technology pte ltd
000a61 cellinx systems inc.
@@ -2649,7 +2651,7 @@ exit
000a65 gentechmedia.co.,ltd.
000a66 mitsubishi electric system & service co.,ltd.
000a67 ongcorp
- 000a68 solarflare communications, inc.
+ 000a68 solarflare communications inc.
000a69 sunny bell technology co., ltd.
000a6a svm microwaves s.r.o.
000a6b tadiran telecom business systems ltd
@@ -2683,8 +2685,8 @@ exit
000a87 integrated micromachines inc.
000a88 incypher s.a.
000a89 creval systems, inc.
- 000a8a cisco systems, inc.
- 000a8b cisco systems, inc.
+ 000a8a cisco systems, inc
+ 000a8b cisco systems, inc
000a8c guardware systems ltd.
000a8d eurotherm limited
000a8e invacom ltd
@@ -2694,7 +2696,7 @@ exit
000a92 presonus corporation
000a93 w2 networks, inc.
000a94 shanghai cellink co., ltd
- 000a95 apple
+ 000a95 apple, inc.
000a96 mewtel technology inc.
000a97 sonicblue, inc.
000a98 m+f gwinner gmbh & co
@@ -2728,8 +2730,8 @@ exit
000ab4 etic telecommunications
000ab5 digital electronic network
000ab6 compunetix, inc
- 000ab7 cisco systems, inc.
- 000ab8 cisco systems, inc.
+ 000ab7 cisco systems, inc
+ 000ab8 cisco systems, inc
000ab9 astera technologies corp.
000aba arcon technology limited
000abb taiwan secom co,. ltd
@@ -2739,7 +2741,7 @@ exit
000abf hirota ss
000ac0 fuyoh video industry co., ltd.
000ac1 futuretel
- 000ac2 fiberhome telecommunication technologies co.,ltd
+ 000ac2 wuhan fiberhome digital technology co.,ltd.
000ac3 em technics co., ltd.
000ac4 daewoo teletech co., ltd
000ac5 color kinetics
@@ -2762,9 +2764,9 @@ exit
000ad6 beamreach networks
000ad7 origin electric co.,ltd.
000ad8 ipcserv technology corp.
- 000ad9 sony ericsson mobile communications ab
+ 000ad9 sony mobile communications inc
000ada vindicator technologies
- 000adb skypilot network, inc
+ 000adb trilliant
000adc ruggedcom inc.
000add allworx corp.
000ade happy communication co., ltd.
@@ -2773,32 +2775,32 @@ exit
000ae1 eg technology
000ae2 binatone electronics international, ltd
000ae3 yang mei technology co., ltd
- 000ae4 wistron corp.
+ 000ae4 wistron corporation
000ae5 scottcare corporation
- 000ae6 elitegroup computer system co. (ecs)
+ 000ae6 elitegroup computer systems co.,ltd.
000ae7 eliop s.a.
000ae8 cathay roxus information technology co. ltd
000ae9 airvast technology inc.
000aea adam elektronik ltd. Şti
- 000aeb shenzhen tp-link technology co; ltd.
+ 000aeb tp-link technologies co.,ltd.
000aec koatsu gas kogyo co., ltd.
- 000aed harting systems gmbh & co kg
+ 000aed harting electronics gmbh
000aee gcd hard- & software gmbh
000aef otrum asa
000af0 shin-oh electronics co., ltd. r&d
000af1 clarity design, inc.
000af2 neoaxiom corp.
- 000af3 cisco systems, inc.
- 000af4 cisco systems, inc.
+ 000af3 cisco systems, inc
+ 000af4 cisco systems, inc
000af5 airgo networks, inc.
000af6 emerson climate technologies retail solutions, inc.
- 000af7 broadcom corp.
+ 000af7 broadcom
000af8 american telecare inc.
000af9 hiconnect, inc.
000afa traverse technologies australia
000afb ambri limited
000afc core tec communications, llc
- 000afd viking electronic services
+ 000afd kentec electronics
000afe novapal ltd
000aff kilchherr elektronik ag
000b00 fujian start computer equipment co.,ltd
@@ -2825,7 +2827,7 @@ exit
000b15 platypus technology
000b16 communication machinery corporation
000b17 mks instruments
- 000b18
+ 000b18 private
000b19 vernier networks, inc.
000b1a industrial defender, inc.
000b1b systronix, inc.
@@ -2836,7 +2838,7 @@ exit
000b20 hirata corporation
000b21 g-star communications inc.
000b22 environmental systems and services
- 000b23 siemens subscriber networks
+ 000b23 siemens home & office comm. devices
000b24 airlogic
000b25 aeluros
000b26 wetek corporation
@@ -2847,7 +2849,7 @@ exit
000b2b hostnet corporation
000b2c eiki industrial co. ltd.
000b2d danfoss inc.
- 000b2e cal-comp electronics (thailand) public company limited taipe
+ 000b2e cal-comp electronics & communications company ltd.
000b2f bplan gmbh
000b30 beijing gongye science & technology co.,ltd
000b31 yantai zhiyang scientific and technology industry co., ltd
@@ -2865,13 +2867,13 @@ exit
000b3d contal ok ltd.
000b3e bittware, inc
000b3f anthology solutions inc.
- 000b40 oclaro
+ 000b40 cambridge industries group (cig)
000b41 ing. büro dr. beutlhauser
000b42 commax co., ltd.
000b43 microscan systems, inc.
000b44 concord idea corp.
- 000b45 cisco systems, inc.
- 000b46 cisco systems, inc.
+ 000b45 cisco systems, inc
+ 000b46 cisco systems, inc
000b47 advanced energy
000b48 sofrel
000b49 rf-link system inc.
@@ -2879,8 +2881,8 @@ exit
000b4b visiowave sa
000b4c clarion (m) sdn bhd
000b4d emuzed
- 000b4e vertexrsi, general dynamics satcom technologies, inc.
- 000b4f verifone, inc.
+ 000b4e communications & power industries
+ 000b4f verifone
000b50 oxygnet
000b51 micetek international inc.
000b52 joymax electronics co. ltd.
@@ -2896,8 +2898,8 @@ exit
000b5c newtech co.,ltd
000b5d fujitsu limited
000b5e audio engineering society inc.
- 000b5f cisco systems, inc.
- 000b60 cisco systems, inc.
+ 000b5f cisco systems, inc
+ 000b60 cisco systems, inc
000b61 friedrich lütze gmbh & co. kg
000b62 ib-mohnen kg
000b63 kaleidescape
@@ -2907,8 +2909,8 @@ exit
000b67 topview technology corporation
000b68 addvalue communications pte ltd
000b69 franke finland oy
- 000b6a asiarock incorporation
- 000b6b wistron neweb corp.
+ 000b6a asiarock technology limited
+ 000b6b wistron neweb corporation
000b6c sychip inc.
000b6d solectron japan nakaniida
000b6e neff instrument corp.
@@ -2934,8 +2936,8 @@ exit
000b82 grandstream networks, inc.
000b83 datawatt b.v.
000b84 bodet
- 000b85 cisco systems, inc.
- 000b86 aruba networks
+ 000b85 cisco systems, inc
+ 000b86 aruba, a hewlett packard enterprise company
000b87 american reliance inc.
000b88 vidisco ltd.
000b89 top global technology, ltd.
@@ -2962,9 +2964,9 @@ exit
000b9e yasing technology corp.
000b9f neue elsa gmbh
000ba0 t&l information inc.
- 000ba1 syscom ltd.
- 000ba2 sumitomo electric networks, inc
- 000ba3 siemens ag, i&s
+ 000ba1 fujikura solutions ltd.
+ 000ba2 sumitomo electric industries, ltd
+ 000ba3 siemens ag
000ba4 shiron satellite communications ltd. (1996)
000ba5 quasar cipta mandiri, pt
000ba6 miyakawa electric works ltd.
@@ -2991,8 +2993,8 @@ exit
000bbb etin systems co., ltd
000bbc en garde systems, inc.
000bbd connexionz limited
- 000bbe cisco systems, inc.
- 000bbf cisco systems, inc.
+ 000bbe cisco systems, inc
+ 000bbf cisco systems, inc
000bc0 china iwncomm co., ltd.
000bc1 bay microsystems, inc.
000bc2 corinex communication corp.
@@ -3003,10 +3005,10 @@ exit
000bc7 icet s.p.a.
000bc8 airflow networks
000bc9 electroline equipment
- 000bca datavan international corporation
+ 000bca datavan tc
000bcb fagor automation , s. coop
000bcc jusan, s.a.
- 000bcd hewlett-packard company
+ 000bcd hewlett packard
000bce free2move ab
000bcf agfa ndt inc.
000bd0 ximeta technology americas inc.
@@ -3020,7 +3022,7 @@ exit
000bd8 industrial scientific corp.
000bd9 general hydrogen
000bda eyecross co.,inc.
- 000bdb dell inc
+ 000bdb dell inc.
000bdc akcp
000bdd tohoku ricoh co., ltd.
000bde teldix gmbh
@@ -3045,7 +3047,7 @@ exit
000bf1 lap laser applikations
000bf2 chih-kan technology co., ltd.
000bf3 bae systems
- 000bf4
+ 000bf4 private
000bf5 shanghai sibo telecom technology co.,ltd
000bf6 nitgen co., ltd
000bf7 nidek co.,ltd
@@ -3053,8 +3055,8 @@ exit
000bf9 gemstone communications, inc.
000bfa exemys srl
000bfb d-net international corporation
- 000bfc cisco systems, inc.
- 000bfd cisco systems, inc.
+ 000bfc cisco systems, inc
+ 000bfd cisco systems, inc
000bfe castel broadband limited
000bff berkeley camera engineering
000c00 beb industrie-elektronik ag
@@ -3094,7 +3096,7 @@ exit
000c22 double d electronics ltd
000c23 beijing lanchuan tech. co., ltd.
000c24 anator
- 000c25 allied telesis labs, inc.
+ 000c25 allied telesis labs, inc.
000c26 weintek labs. inc.
000c27 sammy corporation
000c28 rifatron
@@ -3105,9 +3107,9 @@ exit
000c2d fullwave technology co., ltd.
000c2e openet information technology(shenzhen) co., ltd.
000c2f seorimtechnology co.,ltd.
- 000c30 cisco systems, inc.
- 000c31 cisco systems, inc.
- 000c32 avionic design development gmbh
+ 000c30 cisco systems, inc
+ 000c31 cisco systems, inc
+ 000c32 avionic design gmbh
000c33 compucase enterprise co. ltd.
000c34 vixen co., ltd.
000c35 kavo dental gmbh & co. kg
@@ -3122,7 +3124,7 @@ exit
000c3e crest audio
000c3f cogent defence & security networks,
000c40 altech controls
- 000c41 cisco-linksys
+ 000c41 cisco-linksys, llc
000c42 routerboard.com
000c43 ralink technology, corp.
000c44 automated interfaces, inc.
@@ -3130,7 +3132,7 @@ exit
000c46 allied telesyn inc.
000c47 sk teletech(r&d planning team)
000c48 qostek corporation
- 000c49 dangaard telecom rtc division a/s
+ 000c49 dangaard telecom denmark a/s
000c4a cygnus microsystems (p) limited
000c4b cheops elektronik
000c4c arcor ag&co.
@@ -3140,7 +3142,7 @@ exit
000c50 seagate technology
000c51 scientific technologies inc.
000c52 roll systems inc.
- 000c53
+ 000c53 private
000c54 pedestal networks, inc
000c55 microlink communications inc.
000c56 megatel computer (1986) corp.
@@ -3155,7 +3157,7 @@ exit
000c5f avtec, inc.
000c60 acm systems
000c61 ac tech corporation dba advanced digital
- 000c62 abb ab, cewe-control
+ 000c62 abb ab, cewe-control
000c63 zenith electronics corporation
000c64 x2 msa group
000c65 sunin telecom
@@ -3165,7 +3167,7 @@ exit
000c69 national radio astronomy observatory
000c6a mbari
000c6b kurz industrie-elektronik gmbh
- 000c6c elgato systems llc
+ 000c6c eve systems gmbh
000c6d edwards ltd.
000c6e asustek computer inc.
000c6f amtek system co.,ltd.
@@ -3186,12 +3188,12 @@ exit
000c7e tellium incorporated
000c7f synertronixx gmbh
000c80 opelcomm inc.
- 000c81 schneider electric (australia)
+ 000c81 schneider electric (australia)
000c82 network technologies inc
000c83 logical solutions
000c84 eazix, inc.
- 000c85 cisco systems, inc.
- 000c86 cisco systems, inc.
+ 000c85 cisco systems, inc
+ 000c86 cisco systems, inc
000c87 amd
000c88 apache micro peripherals, inc.
000c89 ac electric vehicles, ltd.
@@ -3228,14 +3230,14 @@ exit
000ca8 garuda networks corporation
000ca9 ebtron inc.
000caa cubic transportation systems inc
- 000cab commend international
+ 000cab commend international gmbh
000cac citizen watch co., ltd.
000cad btu international
000cae ailocom oy
000caf tri term co.,ltd.
000cb0 star semiconductor corporation
000cb1 salland engineering (europe) bv
- 000cb2 comstar co., ltd.
+ 000cb2 union co., ltd.
000cb3 round co.,ltd.
000cb4 autocell laboratories, inc.
000cb5 premier technolgies, inc
@@ -3250,7 +3252,7 @@ exit
000cbe innominate security technologies ag
000cbf holy stone ent. co., ltd.
000cc0 genera oy
- 000cc1 cooper industries inc.
+ 000cc1 eaton corporation
000cc2 controlnet (india) private limited
000cc3 bewan systems
000cc4 tiptel ag
@@ -3263,8 +3265,8 @@ exit
000ccb design combus ltd
000ccc aeroscout ltd.
000ccd iec - tc57
- 000cce cisco systems, inc.
- 000ccf cisco systems, inc.
+ 000cce cisco systems, inc
+ 000ccf cisco systems, inc
000cd0 symetrix
000cd1 sfom technology corp.
000cd2 schaffner emv ag
@@ -3276,18 +3278,18 @@ exit
000cd8 m. k. juchheim gmbh & co
000cd9 itcare co., ltd
000cda freehand systems, inc.
- 000cdb brocade communications systems, inc
+ 000cdb brocade communications systems llc
000cdc becs technology, inc
000cdd aos technologies ag
000cde abb stotz-kontakt gmbh
- 000cdf pulnix america, inc
+ 000cdf jai manufacturing
000ce0 trek diagnostics inc.
000ce1 the open group
000ce2 rolls-royce
000ce3 option international n.v.
000ce4 neurocom international, inc.
000ce5 arris group, inc.
- 000ce6 meru networks inc
+ 000ce6 fortinet inc.
000ce7 mediatek inc.
000ce8 guangzhou anjubao co., ltd
000ce9 bloomberg l.p.
@@ -3312,10 +3314,10 @@ exit
000cfc s2io technologies corp
000cfd hyundai imagequest co.,ltd.
000cfe grand electronic co., ltd
- 000cff mro-tek limited
+ 000cff mro-tek realty limited
000d00 seaway networks inc.
000d01 p&e microcomputer systems, inc.
- 000d02 nec accesstechnica, ltd.
+ 000d02 nec platforms, ltd.
000d03 matrics, inc.
000d04 foxboro eckardt development gmbh
000d05 cybernet manufacturing inc.
@@ -3323,8 +3325,8 @@ exit
000d07 calrec audio ltd
000d08 abovecable, inc.
000d09 yuehua(zhuhai) electronic co. ltd
- 000d0a projectiondesign as
- 000d0b buffalo inc.
+ 000d0a barco projection systems nv
+ 000d0b buffalo.inc
000d0c mdi security systems
000d0d itsupported, llc
000d0e inqnet systems, inc.
@@ -3353,11 +3355,11 @@ exit
000d25 sanden corporation
000d26 primagraphics limited
000d27 microplex printware ag
- 000d28 cisco systems, inc.
- 000d29 cisco systems, inc.
+ 000d28 cisco systems, inc
+ 000d29 cisco systems, inc
000d2a scanmatic as
000d2b racal instruments
- 000d2c patapsco designs ltd
+ 000d2c net2edge limited
000d2d nct deutschland gmbh
000d2e matsushita avionics systems corporation
000d2f ain comm.tech.co., ltd
@@ -3388,7 +3390,7 @@ exit
000d48 aewin technologies co., ltd.
000d49 triton systems of delaware, inc.
000d4a steag eta-optik
- 000d4b roku, llc
+ 000d4b roku, inc.
000d4c outline electronics ltd.
000d4d ninelanes
000d4e ndr co.,ltd.
@@ -3399,9 +3401,9 @@ exit
000d53 beijing 5w communication corp.
000d54 3com ltd
000d55 sanycom technology co.,ltd
- 000d56 dell inc
+ 000d56 dell inc.
000d57 fujitsu i-network systems limited.
- 000d58
+ 000d58 private
000d59 amity systems, inc.
000d5a tiesse spa
000d5b smart empire investments limited
@@ -3414,8 +3416,8 @@ exit
000d62 funkwerk dabendorf gmbh
000d63 dent instruments, inc.
000d64 comag handels ag
- 000d65 cisco systems, inc.
- 000d66 cisco systems, inc.
+ 000d65 cisco systems, inc
+ 000d66 cisco systems, inc
000d67 ericsson
000d68 vinci systems, inc.
000d69 tmt&d corporation
@@ -3427,7 +3429,7 @@ exit
000d6f ember corporation
000d70 datamax corporation
000d71 boca systems
- 000d72 2wire, inc
+ 000d72 2wire inc
000d73 technical support, inc.
000d74 sand network systems, inc.
000d75 kobian pte ltd - taiwan branch
@@ -3443,12 +3445,12 @@ exit
000d7f midas communication technologies pte ltd ( foreign branch)
000d80 online development inc
000d81 pepperl+fuchs gmbh
- 000d82 phs srl
+ 000d82 phsnet
000d83 sanmina-sci hungary ltd.
000d84 makus inc.
000d85 tapwave, inc.
000d86 huber + suhner ag
- 000d87 elitegroup computer system co. (ecs)
+ 000d87 elitegroup computer systems co.,ltd.
000d88 d-link corporation
000d89 bils technology inc
000d8a winners electronics co., ltd.
@@ -3459,18 +3461,18 @@ exit
000d8f king tsushin kogyo co., ltd.
000d90 factum electronics ab
000d91 eclipse (hq espana) s.l.
- 000d92 arima communication corporation
- 000d93 apple
+ 000d92 arima communications corp.
+ 000d93 apple, inc.
000d94 afar communications,inc
000d95 opti-cell, inc.
000d96 vtera technology inc.
- 000d97 tropos networks, inc.
+ 000d97 abb inc./tropos
000d98 s.w.a.c. schmitt-walter automation consult gmbh
000d99 orbital sciences corp.; launch systems group
000d9a infotec ltd
000d9b heraeus electro-nite international n.v.
000d9c elan gmbh & co kg
- 000d9d hewlett-packard company
+ 000d9d hewlett packard
000d9e tokuden ohizumi seisakusyo co.,ltd.
000d9f rf micro devices
000da0 nedap n.v.
@@ -3480,7 +3482,7 @@ exit
000da4 dosch & amand systems ag
000da5 fabric7 systems, inc
000da6 universal switching corporation
- 000da7
+ 000da7 private
000da8 teletronics technology corporation
000da9 t.e.a.m. s.l.
000daa s.a.tehnology co.,ltd.
@@ -3493,24 +3495,24 @@ exit
000db1 japan network service co., ltd.
000db2 ammasso, inc.
000db3 sdo communication corperation
- 000db4 netasq
+ 000db4 stormshield
000db5 globalsat technology corporation
- 000db6 broadcom corporation
+ 000db6 broadcom
000db7 sanko electric co,.ltd
000db8 schiller ag
000db9 pc engines gmbh
000dba océ document technologies gmbh
000dbb nippon dentsu co.,ltd.
- 000dbc cisco systems, inc.
- 000dbd cisco systems, inc.
+ 000dbc cisco systems, inc
+ 000dbd cisco systems, inc
000dbe bel fuse europe ltd.,uk
000dbf tektone sound & signal mfg., inc.
000dc0 spagat as
000dc1 safeweb inc
- 000dc2
+ 000dc2 private
000dc3 first communication, inc.
000dc4 emcore corporation
- 000dc5 echostar global b.v.
+ 000dc5 echostar global b.v.
000dc6 digirose technology co., ltd.
000dc7 cosmic engineering inc.
000dc8 airmagnet, inc
@@ -3549,13 +3551,13 @@ exit
000de9 napatech aps
000dea kingtel telecommunication corp.
000deb compxs limited
- 000dec cisco systems, inc.
- 000ded cisco systems, inc.
+ 000dec cisco systems, inc
+ 000ded cisco systems, inc
000dee andrew rf power amplifier group
000def soc. coop. bilanciai
000df0 qcom technology inc.
000df1 ionix inc.
- 000df2
+ 000df2 private
000df3 asmax solutions
000df4 watertek co.
000df5 teletronics international inc.
@@ -3576,8 +3578,8 @@ exit
000e04 cma/microdialysis ab
000e05 wireless matrix corp.
000e06 team simoco ltd
- 000e07 sony ericsson mobile communications ab
- 000e08 cisco linksys llc
+ 000e07 sony mobile communications inc
+ 000e08 cisco-linksys, llc
000e09 shenzhen coship software co.,ltd.
000e0a sakuma design office
000e0b netac technology co., ltd.
@@ -3586,13 +3588,13 @@ exit
000e0e esa elettronica s.p.a.
000e0f ermme
000e10 c-guys, inc.
- 000e11 bdt büro und datentechnik gmbh & co.kg
+ 000e11 bdt büro und datentechnik gmbh & co.kg
000e12 adaptive micro systems inc.
000e13 accu-sort systems inc.
000e14 visionary solutions, inc.
000e15 tadlys ltd
000e16 southwing s.l.
- 000e17
+ 000e17 private
000e18 mya technology
000e19 logicacmg pty ltd
000e1a jps communications
@@ -3603,7 +3605,7 @@ exit
000e1f tcl networks equipment co., ltd.
000e20 access systems americas, inc.
000e21 mtu friedrichshafen gmbh
- 000e22
+ 000e22 private
000e23 incipient, inc.
000e24 huwell technology inc.
000e25 hannae technology co., ltd
@@ -3611,22 +3613,22 @@ exit
000e27 crere networks, inc.
000e28 dynamic ratings p/l
000e29 shester communications inc
- 000e2a
+ 000e2a private
000e2b safari technologies
000e2c netcodec co.
000e2d hyundai digital technology co.,ltd.
- 000e2e edimax technology co., ltd.
+ 000e2e edimax technology co. ltd.
000e2f roche diagnostics gmbh
000e30 aeras networks, inc.
000e31 olympus soft imaging solutions gmbh
000e32 kontron medical
000e33 shuko electronics co.,ltd
000e34 nexgen city, lp
- 000e35 intel corp
+ 000e35 intel corporation
000e36 heinesys, inc.
000e37 harms & wende gmbh & co.kg
- 000e38 cisco systems, inc.
- 000e39 cisco systems, inc.
+ 000e38 cisco systems, inc
+ 000e39 cisco systems, inc
000e3a cirrus logic
000e3b hawking technologies, inc.
000e3c transact technologies inc
@@ -3658,7 +3660,7 @@ exit
000e56 4g systems gmbh & co. kg
000e57 iworld networking, inc.
000e58 sonos, inc.
- 000e59 sagem sa
+ 000e59 sagemcom broadband sas
000e5a telefield inc.
000e5b parkervision - direct2data
000e5c arris group, inc.
@@ -3671,7 +3673,7 @@ exit
000e63 lemke diagnostics gmbh
000e64 elphel, inc
000e65 transcore
- 000e66 hitachi advanced digital, inc.
+ 000e66 hitachi industry & control solutions, ltd.
000e67 eltis microelectronics ltd.
000e68 e-top network technology inc.
000e69 china electric power research institute
@@ -3696,12 +3698,12 @@ exit
000e7c televes s.a.
000e7d electronics line 3000 ltd.
000e7e ionsign oy
- 000e7f hewlett-packard company
+ 000e7f hewlett packard
000e80 thomson technology inc
000e81 devicescape software, inc.
000e82 commtech wireless
- 000e83 cisco systems, inc.
- 000e84 cisco systems, inc.
+ 000e83 cisco systems, inc
+ 000e84 cisco systems, inc
000e85 catalyst enterprises, inc.
000e86 alcatel north america
000e87 adp gauselmann gmbh
@@ -3709,10 +3711,10 @@ exit
000e89 clematic
000e8a avara technologies pty. ltd.
000e8b astarte technology co, ltd.
- 000e8c siemens ag a&d et
+ 000e8c siemens ag
000e8d systems in progress holding gmbh
000e8e sparklan communications, inc.
- 000e8f sercomm corp.
+ 000e8f sercomm corporation.
000e90 ponico corp.
000e91 navico auckland ltd
000e92 open telecom
@@ -3725,7 +3727,7 @@ exit
000e99 spectrum digital, inc
000e9a boe technology group co.,ltd
000e9b ambit microsystems corporation
- 000e9c benchmark electronics
+ 000e9c benchmark electronics
000e9d tiscali uk ltd
000e9e topfield co., ltd
000e9f temic sds gmbh
@@ -3733,7 +3735,7 @@ exit
000ea1 formosa teletek corporation
000ea2 mcafee, inc
000ea3 cncr-it co.,ltd,hangzhou p.r.china
- 000ea4 certance inc.
+ 000ea4 quantum corp.
000ea5 blip systems
000ea6 asustek computer inc.
000ea7 endace technology
@@ -3748,7 +3750,7 @@ exit
000eb0 solutions radio bv
000eb1 newcotech,ltd
000eb2 micro-research finland oy
- 000eb3 hewlett-packard
+ 000eb3 hewlett packard
000eb4 guangzhou gaoke communications technology co.ltd.
000eb5 ecastle electronics co., ltd.
000eb6 riverbed technology, inc.
@@ -3783,9 +3785,9 @@ exit
000ed3 epicenter, inc.
000ed4 cresitt industrie
000ed5 copan systems inc.
- 000ed6 cisco systems, inc.
- 000ed7 cisco systems, inc.
- 000ed8 aktino, inc.
+ 000ed6 cisco systems, inc
+ 000ed7 cisco systems, inc
+ 000ed8 positron access solutions corp
000ed9 aksys, ltd.
000eda c-tech united corp.
000edb xincom corp.
@@ -3795,25 +3797,25 @@ exit
000edf plx technology
000ee0 mcharge
000ee1 extremespeed inc.
- 000ee2 custom engineering s.p.a.
+ 000ee2 custom engineering
000ee3 chiyu technology co.,ltd
000ee4 boe technology group co.,ltd
000ee5 bitwallet, inc.
000ee6 adimos systems ltd
000ee7 aac electronics corp.
- 000ee8 zioncom
+ 000ee8 zioncom electronics (shenzhen) ltd.
000ee9 waytech development, inc.
000eea shadong luneng jicheng electronics,co.,ltd
000eeb sandmartin(zhong shan)electronics co.,ltd
000eec orban
000eed nokia danmark a/s
000eee muco industrie bv
- 000eef
+ 000eef private
000ef0 festo ag & co. kg
000ef1 ezquest inc.
000ef2 infinico corporation
- 000ef3 smarthome
- 000ef4 kasda digital technology co.,ltd
+ 000ef3 smartlabs, inc.
+ 000ef4 kasda networks inc
000ef5 ipac technology co., ltd.
000ef6 e-ten information systems co., ltd.
000ef7 vulcan portals inc
@@ -3834,7 +3836,7 @@ exit
000f06 nortel networks
000f07 mangrove systems, inc.
000f08 indagon oy
- 000f09
+ 000f09 private
000f0a clear edge networks
000f0b kentima technologies ab
000f0c synchronic engineering
@@ -3846,7 +3848,7 @@ exit
000f12 panasonic europe ltd.
000f13 nisca corporation
000f14 mindray co., ltd.
- 000f15 kjaerulff1 a/s
+ 000f15 icotera a/s
000f16 jay how technology co.,
000f17 insta elektro gmbh
000f18 industrial control systems
@@ -3856,12 +3858,12 @@ exit
000f1c digitall world co., ltd
000f1d cosmo techs co., ltd.
000f1e chengdu kt electric co.of high & new technology
- 000f1f dell inc
- 000f20 hewlett-packard company
+ 000f1f dell inc.
+ 000f20 hewlett packard
000f21 scientific atlanta, inc
000f22 helius, inc.
- 000f23 cisco systems, inc.
- 000f24 cisco systems, inc.
+ 000f23 cisco systems, inc
+ 000f24 cisco systems, inc
000f25 aimvalley b.v.
000f26 worldaccxx llc
000f27 teal electronics, inc.
@@ -3877,8 +3879,8 @@ exit
000f31 allied vision technologies canada inc
000f32 lootom telcovideo network wuxi co ltd
000f33 duali inc.
- 000f34 cisco systems, inc.
- 000f35 cisco systems, inc.
+ 000f34 cisco systems, inc
+ 000f35 cisco systems, inc
000f36 accurate techhnologies, inc.
000f37 xambala incorporated
000f38 netstar
@@ -3904,17 +3906,17 @@ exit
000f4c elextech inc
000f4d talkswitch
000f4e cellink
- 000f4f cadmus technology ltd
+ 000f4f pcs systemtechnik gmbh
000f50 streamscale limited
000f51 azul systems, inc.
000f52 york refrigeration, marine & controls
- 000f53 solarflare communications inc
+ 000f53 solarflare communications inc.
000f54 entrelogic corporation
000f55 datawire communication networks inc.
000f56 continuum photonics inc
000f57 cablelogic co., ltd.
000f58 adder technology limited
- 000f59 phonak communications ag
+ 000f59 phonak ag
000f5a peribit networks
000f5b delta information systems, inc.
000f5c day one digital media limited
@@ -3922,12 +3924,12 @@ exit
000f5e veo
000f5f nicety technologies inc. (nts)
000f60 lifetron co.,ltd
- 000f61 hewlett-packard company
+ 000f61 hewlett packard
000f62 alcatel bell space n.v.
000f63 obzerv technologies
000f64 d&r electronica weesp bv
000f65 icube corp.
- 000f66 cisco-linksys
+ 000f66 cisco-linksys, llc
000f67 west instruments
000f68 vavic network technology, inc.
000f69 sew eurodrive gmbh & co. kg
@@ -3959,7 +3961,7 @@ exit
000f83 brainium technologies inc.
000f84 astute networks, inc.
000f85 addo-japan corporation
- 000f86 research in motion limited
+ 000f86 blackberry rts
000f87 maxcess international
000f88 ametek, inc.
000f89 winnertec system co., ltd.
@@ -3968,14 +3970,14 @@ exit
000f8c gigawavetech pte ltd
000f8d fast tv-server ag
000f8e dongyang telecom co.,ltd.
- 000f8f cisco systems, inc.
- 000f90 cisco systems, inc.
+ 000f8f cisco systems, inc
+ 000f90 cisco systems, inc
000f91 aerotelecom co.,ltd.
000f92 microhard systems inc.
000f93 landis+gyr ltd.
000f94 genexis bv
000f95 elecom co.,ltd laneed division
- 000f96 telco systems, inc.
+ 000f96 telco systems, inc.
000f97 avanex corporation
000f98 avamax co. ltd.
000f99 apac opto electronics inc.
@@ -4001,14 +4003,14 @@ exit
000fad fmn communications gmbh
000fae e2o communications
000faf dialog inc.
- 000fb0 compal electronics,inc.
+ 000fb0 compal electronics inc.
000fb1 cognio inc.
000fb2 broadband pacenet (india) pvt. ltd.
000fb3 actiontec electronics, inc
000fb4 timespace technology
- 000fb5 netgear inc
+ 000fb5 netgear
000fb6 europlex technologies
- 000fb7 cavium networks
+ 000fb7 cavium
000fb8 callurl inc.
000fb9 adaptive instruments
000fba tevebox ab
@@ -4029,7 +4031,7 @@ exit
000fc9 allnet gmbh
000fca a-jin techline co, ltd
000fcb 3com ltd
- 000fcc netopia, inc.
+ 000fcc arris group, inc.
000fcd nortel networks
000fce kikusui electronics corp.
000fcf datawind research
@@ -4044,14 +4046,14 @@ exit
000fd8 force, inc.
000fd9 flexdsl telecommunications ag
000fda yazaki corporation
- 000fdb westell technologies
+ 000fdb westell technologies inc.
000fdc ueda japan radio co., ltd.
000fdd sordin ab
- 000fde sony ericsson mobile communications ab
+ 000fde sony mobile communications inc
000fdf solomon technology corp.
000fe0 ncomputing co.,ltd.
000fe1 id digital corporation
- 000fe2 hangzhou h3c technologies co., ltd.
+ 000fe2 hangzhou h3c technologies co., limited
000fe3 damm cellular systems a/s
000fe4 pantech co.,ltd
000fe5 mercury security corporation
@@ -4071,9 +4073,9 @@ exit
000ff3 jung myoung communications&technology
000ff4 guntermann & drunck gmbh
000ff5 gn&s company
- 000ff6 darfon electronics corp.
- 000ff7 cisco systems, inc.
- 000ff8 cisco systems, inc.
+ 000ff6 darfon lighting corp
+ 000ff7 cisco systems, inc
+ 000ff8 cisco systems, inc
000ff9 valcretec, inc.
000ffa optinel systems, inc.
000ffb nippon denso industry co., ltd.
@@ -4088,31 +4090,31 @@ exit
001004 the brantley coile company,inc
001005 uec commercial
001006 thales contact solutions ltd.
- 001007 cisco systems, inc.
+ 001007 cisco systems, inc
001008 vienna systems corporation
- 001009 horo quartz
+ 001009 horanet
00100a williams communications group
- 00100b cisco systems, inc.
+ 00100b cisco systems, inc
00100c ito co., ltd.
- 00100d cisco systems, inc.
+ 00100d cisco systems, inc
00100e micro linear coporation
00100f industrial cpu systems
001010 initio corporation
- 001011 cisco systems, inc.
+ 001011 cisco systems, inc
001012 processor systems (i) pvt ltd
001013 kontron america, inc.
- 001014 cisco systems, inc.
+ 001014 cisco systems, inc
001015 oomon inc.
001016 t.sqware
001017 bosch access systems gmbh
- 001018 broadcom corporation
+ 001018 broadcom
001019 sirona dental systems gmbh & co. kg
00101a picturetel corp.
00101b cornet technology, inc.
00101c ohm technologies intl, llc
00101d winbond electronics corp.
00101e matsushita electronic instruments corp.
- 00101f cisco systems, inc.
+ 00101f cisco systems, inc
001020 hand held products inc
001021 encanto networks, inc.
001022 satcom media corporation
@@ -4122,22 +4124,22 @@ exit
001026 accelerated networks, inc.
001027 l-3 communications east
001028 computer technica, inc.
- 001029 cisco systems, inc.
+ 001029 cisco systems, inc
00102a zf microsystems, inc.
00102b umax data systems, inc.
00102c lasat networks a/s
00102d hitachi software engineering
00102e network systems & technologies pvt. ltd.
- 00102f cisco systems, inc.
+ 00102f cisco systems, inc
001030 eion inc.
001031 objective communications, inc.
001032 alta technology
001033 accesslan communications, inc.
001034 gnp computers
- 001035 elitegroup computer systems co., ltd
+ 001035 elitegroup computer systems co.,ltd.
001036 inter-tel integrated systems
001037 cyq've technology co., ltd.
- 001038 micro research institute, inc.
+ 001038 micro research ltd.
001039 vectron systems ag
00103a diamond network tech
00103b hippi networking forum
@@ -4156,26 +4158,26 @@ exit
001048 htrc automation, inc.
001049 shoretel, inc
00104a the parvus corporation
- 00104b 3com corporation
+ 00104b 3com
00104c teledyne lecroy, inc
00104d surtec industries, inc.
00104e ceologic
- 00104f oracle corporation
+ 00104f oracle corporation
001050 rion co., ltd.
001051 cmicro corporation
001052 mettler-toledo (albstadt) gmbh
001053 computer technology corp.
- 001054 cisco systems, inc.
+ 001054 cisco systems, inc
001055 fujitsu microelectronics, inc.
001056 sodick co., ltd.
001057 rebel.com, inc.
001058 arrowpoint communications
001059 diablo research co. llc
- 00105a 3com corporation
+ 00105a 3com
00105b net insight ab
00105c quantum designs (h.k.) ltd.
00105d draeger medical
- 00105e hekimian laboratories, inc.
+ 00105e spirent plc, service assurance broadband
00105f zodiac data systems
001060 billionton systems, inc.
001061 hostlink corp.
@@ -4202,9 +4204,9 @@ exit
001076 eurem gmbh
001077 saf drive systems, ltd.
001078 nuera communications, inc.
- 001079 cisco systems, inc.
+ 001079 cisco systems, inc
00107a ambicom, inc.
- 00107b cisco systems, inc.
+ 00107b cisco systems, inc
00107c p-com, inc.
00107d aurora communications, ltd.
00107e bachmann electronic gmbh
@@ -4212,7 +4214,7 @@ exit
001080 metawave communications
001081 dps, inc.
001082 jna telecommunications limited
- 001083 hewlett-packard company
+ 001083 hewlett packard
001084 k-bot communications
001085 polaris communications, inc.
001086 atto technology, inc.
@@ -4221,7 +4223,7 @@ exit
001089 websonic
00108a teralogic, inc.
00108b laseranimation sollinger gmbh
- 00108c fujitsu telecommunications europe, ltd.
+ 00108c fujitsu services ltd
00108d johnson controls, inc.
00108e hugh symons concept technologies ltd.
00108f raptor systems
@@ -4247,7 +4249,7 @@ exit
0010a3 omnitronix, inc.
0010a4 xircom
0010a5 oxford instruments
- 0010a6 cisco systems, inc.
+ 0010a6 cisco systems, inc
0010a7 unex technology corporation
0010a8 reliance computer corp.
0010a9 adhoc technologies
@@ -4262,7 +4264,7 @@ exit
0010b2 coactive aesthetics
0010b3 nokia multimedia terminals
0010b4 atmosphere networks
- 0010b5 accton technology corporation
+ 0010b5 accton technology corp
0010b6 entrata communications corp.
0010b7 coyote technologies, llc
0010b8 ishigaki computer system co.
@@ -4274,16 +4276,16 @@ exit
0010be march networks corporation
0010bf interair wireless
0010c0 arma, inc.
- 0010c1 oi electric co., ltd.
+ 0010c1 oi electric co.,ltd
0010c2 willnet, inc.
0010c3 csi-control systems
- 0010c4 media links co., ltd.
+ 0010c4 media global links co., ltd.
0010c5 protocol technologies, inc.
0010c6 universal global scientific industrial co., ltd.
0010c7 data transmission network
0010c8 communications electronics security group
0010c9 mitsubishi electronics logistic support co.
- 0010ca telco systems, inc.
+ 0010ca telco systems, inc.
0010cb facit k.k.
0010cc clp computer logistik planung gmbh
0010cd interface concept
@@ -4295,24 +4297,24 @@ exit
0010d3 grips electronic gmbh
0010d4 storage computer corporation
0010d5 imasde canarias, s.a.
- 0010d6 itt - a/cd
+ 0010d6 exelis
0010d7 argosy research inc.
0010d8 calista
0010d9 ibm japan, fujisawa mt+d
0010da kollmorgen corp
- 0010db juniper networks, inc.
+ 0010db juniper networks
0010dc micro-star international co., ltd.
0010dd enable semiconductor, inc.
0010de international datacasting corporation
0010df rise computer inc.
- 0010e0 oracle corporation
+ 0010e0 oracle corporation
0010e1 s.i. tech, inc.
0010e2 arraycomm, inc.
- 0010e3 hewlett-packard company
+ 0010e3 hewlett packard
0010e4 nsi corporation
0010e5 solectron texas
0010e6 applied intelligent systems, inc.
- 0010e7 breezecom
+ 0010e7 breezecom, ltd.
0010e8 telocity, incorporated
0010e9 raidtec ltd.
0010ea adept technology
@@ -4327,16 +4329,16 @@ exit
0010f3 nexcom international co., ltd.
0010f4 vertical communications
0010f5 amherst systems, inc.
- 0010f6 cisco systems, inc.
+ 0010f6 cisco systems, inc
0010f7 iriichi technologies inc.
0010f8 texio technology corporation
0010f9 unique systems, inc.
- 0010fa apple
+ 0010fa apple, inc.
0010fb zida technologies limited
0010fc broadband networks, inc.
0010fd cocom a/s
0010fe digital equipment corporation
- 0010ff cisco systems, inc.
+ 0010ff cisco systems, inc
001100 schneider electric
001101 cet technologies pte ltd
001102 aurora multimedia corp.
@@ -4347,7 +4349,7 @@ exit
001107 rgb networks inc.
001108 orbital data corporation
001109 micro-star international
- 00110a hewlett-packard company
+ 00110a hewlett packard
00110b franklin technology systems
00110c atmark techno, inc.
00110d sanblaze technology, inc.
@@ -4364,16 +4366,16 @@ exit
001118 blx ic design corp., ltd.
001119 solteras, inc.
00111a arris group, inc.
- 00111b targa systems div l-3 communications canada
+ 00111b targa systems div l-3 communications
00111c pleora technologies inc.
00111d hectrix limited
- 00111e epsg (ethernet powerlink standardization group)
+ 00111e ethernet powerlink standarization group (epsg)
00111f doremi labs, inc.
- 001120 cisco systems, inc.
- 001121 cisco systems, inc.
+ 001120 cisco systems, inc
+ 001121 cisco systems, inc
001122 cimsys inc
001123 appointech, inc.
- 001124 apple
+ 001124 apple, inc.
001125 ibm corp
001126 venstar inc.
001127 tasi, inc
@@ -4388,7 +4390,7 @@ exit
001130 allied telesis (hong kong) ltd.
001131 unatech. co.,ltd
001132 synology incorporated
- 001133 siemens austria simea
+ 001133 siemens ag austria
001134 mediacell, inc.
001135 grandeye ltd
001136 goodrich sensor systems
@@ -4404,7 +4406,7 @@ exit
001140 nanometrics inc.
001141 goodman corporation
001142 e-smartcom inc.
- 001143 dell inc
+ 001143 dell inc.
001144 assurance technology corp
001145 valuepoint networks
001146 telecard-pribor ltd
@@ -4424,13 +4426,13 @@ exit
001154 webpro technologies inc.
001155 sevis systems
001156 pharos systems nz
- 001157 of networks co., ltd.
+ 001157 oki electric industry co., ltd.
001158 nortel networks
001159 matisse networks inc
00115a ivoclar vivadent ag
- 00115b elitegroup computer system co. (ecs)
- 00115c cisco systems, inc.
- 00115d cisco systems, inc.
+ 00115b elitegroup computer systems co.,ltd.
+ 00115c cisco systems, inc
+ 00115d cisco systems, inc
00115e prominent dosiertechnik gmbh
00115f itx security co., ltd.
001160 artdio company co., ltd
@@ -4438,7 +4440,7 @@ exit
001162 star micronics co.,ltd.
001163 system spa dept. electronics
001164 acard technology corp.
- 001165 znyx networks
+ 001165 znyx networks, inc.
001166 taelim electronics co., ltd.
001167 integrated system solution corp.
001168 homelogic llc
@@ -4447,14 +4449,14 @@ exit
00116b digital data communications asia co.,ltd
00116c nanwang multimedia inc.,ltd
00116d american time and signal
- 00116e peplink ltd.
+ 00116e peplink international ltd.
00116f netforyou co., ltd.
001170 gsc srl
001171 dexter communications, inc.
001172 cotron corporation
001173 smart storage systems
- 001174 wibhu technologies, inc.
- 001175 pathscale, inc.
+ 001174 mojo networks, inc.
+ 001175 intel corporation
001176 intellambda systems, inc.
001177 coaxial networks, inc.
001178 chiron technology ltd
@@ -4463,28 +4465,28 @@ exit
00117b büchi labortechnik ag
00117c e-zy.net
00117d zmd america, inc.
- 00117e progeny, a division of midmark corp
+ 00117e midmark corp
00117f neotune information technology corporation,.ltd
001180 arris group, inc.
001181 interenergy co.ltd,
001182 imi norgren ltd
001183 datalogic adc, inc.
001184 humo laboratory,ltd.
- 001185 hewlett-packard company
+ 001185 hewlett packard
001186 prime systems, inc.
001187 category solutions, inc
001188 enterasys
001189 aerotech inc
00118a viewtran technology limited
- 00118b alcatel-lucent, enterprise business group
+ 00118b alcatel-lucent enterprise
00118c missouri department of transportation
00118d hanchang system corp.
00118e halytech mace
00118f eutech instruments pte. ltd.
001190 digital design corporation
001191 cts-clima temperatur systeme gmbh
- 001192 cisco systems, inc.
- 001193 cisco systems, inc.
+ 001192 cisco systems, inc
+ 001193 cisco systems, inc
001194 chi mei communication systems, inc.
001195 d-link corporation
001196 actuality systems, inc.
@@ -4517,15 +4519,15 @@ exit
0011b1 blueexpert technology corp.
0011b2 2001 technology inc.
0011b3 yoshimiya co.,ltd.
- 0011b4 westermo teleindustri ab
+ 0011b4 westermo network technologies ab
0011b5 shenzhen powercom co.,ltd
0011b6 open systems international
0011b7 octalix b.v.
0011b8 liebherr - elektronik gmbh
0011b9 inner range pty. ltd.
0011ba elexol pty ltd
- 0011bb cisco systems, inc.
- 0011bc cisco systems, inc.
+ 0011bb cisco systems, inc
+ 0011bc cisco systems, inc
0011bd bombardier transportation
0011be agp telecom co. ltd
0011bf aesys s.p.a.
@@ -4582,19 +4584,19 @@ exit
0011f2 institute of network technologies
0011f3 neomedia europe ag
0011f4 woori-net
- 0011f5 askey computer corp.
+ 0011f5 askey computer corp
0011f6 asia pacific microsystems , inc.
0011f7 shenzhen forward industry co., ltd
0011f8 airaya corp
0011f9 nortel networks
0011fa rane corporation
0011fb heidelberg engineering gmbh
- 0011fc harting electric gmbh & co.kg
+ 0011fc harting electronics gmbh
0011fd korg inc.
0011fe keiyo system research, inc.
0011ff digitro tecnologia ltda
- 001200 cisco systems, inc.
- 001201 cisco systems, inc.
+ 001200 cisco systems, inc
+ 001201 cisco systems, inc
001202 decrane aerospace - audio international inc.
001203 activnetworks
001204 u10 networks, inc.
@@ -4618,12 +4620,12 @@ exit
001216 icp internet communication payment ag
001217 cisco-linksys, llc
001218 aruze corporation
- 001219 ahead communication systems inc
+ 001219 general datacomm llc
00121a techno soft systemnics inc.
00121b sound devices, llc
- 00121c parrot s.a.
+ 00121c parrot sa
00121d netfabric corporation
- 00121e juniper networks, inc.
+ 00121e juniper networks
00121f harding instruments
001220 cadco systems
001221 b.braun melsungen ag
@@ -4654,25 +4656,25 @@ exit
00123a posystech inc., co.
00123b kero systems aps
00123c second rule llc
- 00123d ges
+ 00123d ges co, ltd
00123e erune technology co., ltd.
- 00123f dell inc
+ 00123f dell inc.
001240 amoi electronics co.,ltd
001241 a2i marketing center
001242 millennial net
- 001243 cisco systems, inc.
- 001244 cisco systems, inc.
+ 001243 cisco systems, inc
+ 001244 cisco systems, inc
001245 zellweger analytics, inc.
001246 t.o.m technology inc..
- 001247 samsung electronics co., ltd.
- 001248 emc corporation (kashya)
+ 001247 samsung electronics co.,ltd
+ 001248 dell emc
001249 delta elettronica s.p.a.
00124a dedicated devices, inc.
00124b texas instruments
00124c bbwm corporation
00124d inducon bv
00124e xac automation corp.
- 00124f pentair thermal management
+ 00124f nvent
001250 tokyo aircaft instrument co., ltd.
001251 silink
001252 citronix, llc
@@ -4681,7 +4683,7 @@ exit
001255 neteffect incorporated
001256 lg information & comm.
001257 leapcomm communication technologies inc.
- 001258 activis polska
+ 001258 techvoip sp z o.o.
001259 thermo electron karlsruhe
00125a microsoft corporation
00125b kaimei electroni
@@ -4701,7 +4703,7 @@ exit
001269 value electronics
00126a optoelectronics co., ltd.
00126b ascalade communications limited
- 00126c visonic ltd.
+ 00126c visonic technologies 1993 ltd.
00126d university of california, berkeley
00126e seidel elektronik gmbh nfg.kg
00126f rayson technology co., ltd.
@@ -4714,14 +4716,14 @@ exit
001276 cg power systems ireland limited
001277 korenix technologies co., ltd.
001278 international bar code
- 001279 hewlett-packard company
+ 001279 hewlett packard
00127a sanyu industry co.,ltd.
00127b via networking technologies, inc.
00127c swegon ab
00127d mobilearia
00127e digital lifestyles group, inc.
- 00127f cisco systems, inc.
- 001280 cisco systems, inc.
+ 00127f cisco systems, inc
+ 001280 cisco systems, inc
001281 march networks s.p.a.
001282 qovia
001283 nortel networks
@@ -4729,7 +4731,7 @@ exit
001285 gizmondo europe ltd
001286 endevco corp
001287 digital everywhere unterhaltungselektronik gmbh
- 001288 2wire, inc
+ 001288 2wire inc
001289 advance sterilization products
00128a arris group, inc.
00128b sensory networks inc
@@ -4740,7 +4742,7 @@ exit
001290 kyowa electric & machinery corp.
001291 kws computersysteme gmbh
001292 griffin technology
- 001293 ge energy
+ 001293 abb power protection (ch)
001294 sumitomo electric device innovations, inc
001295 aiware inc.
001296 addlogix
@@ -4758,7 +4760,7 @@ exit
0012a2 vita
0012a3 trust international b.v.
0012a4 thingmagic, llc
- 0012a5 stargen, inc.
+ 0012a5 dolphin interconnect solutions as
0012a6 dolby australia
0012a7 isr technologies inc
0012a8 intec gmbh
@@ -4766,7 +4768,7 @@ exit
0012aa iee, inc.
0012ab wilife, inc.
0012ac ontimetek inc.
- 0012ad ids gmbh
+ 0012ad vivavis ag
0012ae hls hard-line solutions inc.
0012af elpro technologies
0012b0 efore oyj (plc)
@@ -4800,9 +4802,9 @@ exit
0012cc bitatek co., ltd
0012cd asem spa
0012ce advanced cybernetics group
- 0012cf accton technology corporation
+ 0012cf accton technology corp
0012d0 gossen-metrawatt-gmbh
- 0012d1 texas instruments inc
+ 0012d1 texas instruments
0012d2 texas instruments
0012d3 zetta systems, inc.
0012d4 princeton technology, ltd
@@ -4810,8 +4812,8 @@ exit
0012d6 jiangsu yitong high-tech co.,ltd
0012d7 invento networks, inc.
0012d8 international games system co., ltd.
- 0012d9 cisco systems, inc.
- 0012da cisco systems, inc.
+ 0012d9 cisco systems, inc
+ 0012da cisco systems, inc
0012db ziehl industrie-elektronik gmbh + co kg
0012dc suncorp industrial limited
0012dd shengqu information technology (shanghai) co., ltd.
@@ -4820,7 +4822,7 @@ exit
0012e0 codan limited
0012e1 alliant networks, inc
0012e2 alaxala networks corporation
- 0012e3 agat-rt, ltd.
+ 0012e3 agat soft llc
0012e4 ziehl industrie-electronik gmbh + co kg
0012e5 time america, inc.
0012e6 spectec computer co., ltd.
@@ -4831,11 +4833,11 @@ exit
0012eb pdh solutions, llc
0012ec movacolor b.v.
0012ed avg advanced technologies
- 0012ee sony ericsson mobile communications ab
+ 0012ee sony mobile communications inc
0012ef oneaccess sa
0012f0 intel corporate
0012f1 ifotec
- 0012f2 brocade communications systems, inc
+ 0012f2 brocade communications systems llc
0012f3 connectblue ab
0012f4 belco international co.,ltd.
0012f5 imarda new zealand limited
@@ -4844,7 +4846,7 @@ exit
0012f8 wni resources, llc
0012f9 uryu seisaku, ltd.
0012fa thx ltd
- 0012fb samsung electronics
+ 0012fb samsung electronics co.,ltd
0012fc planet system co.,ltd
0012fd optimus ic s.a.
0012fe lenovo mobile communication technology ltd.
@@ -4859,30 +4861,30 @@ exit
001307 paravirtual corporation
001308 nuvera fuel cells
001309 ocean broadband networks
- 00130a nortel
+ 00130a nortel networks
00130b mextal b.v.
00130c hf system corporation
00130d galileo avionica
00130e focusrite audio engineering limited
00130f egemen bilgisayar muh san ve tic ltd sti
001310 cisco-linksys, llc
- 001311 arris international
+ 001311 arris group, inc.
001312 amedia networks inc.
001313 guangzhou post & telecom equipment ltd
001314 asiamajor inc.
- 001315 sony computer entertainment inc,
+ 001315 sony interactive entertainment inc.
001316 l-s-b broadcast technologies gmbh
- 001317 gn netcom as
+ 001317 gn netcom a/s
001318 dgstation co., ltd.
- 001319 cisco systems, inc.
- 00131a cisco systems, inc.
+ 001319 cisco systems, inc
+ 00131a cisco systems, inc
00131b becell innovations corp.
00131c litetouch, inc.
00131d scanvaegt international a/s
- 00131e peiker acustic gmbh & co. kg
+ 00131e peiker acustic gmbh
00131f nxtphase t&d, corp.
001320 intel corporate
- 001321 hewlett-packard company
+ 001321 hewlett packard
001322 daq electronics, inc.
001323 cap co., ltd.
001324 schneider electric ultra terminal
@@ -4920,7 +4922,7 @@ exit
001344 fargo electronics inc.
001345 eaton corporation
001346 d-link corporation
- 001347 bluetree wireless data inc.
+ 001347 red lion controls, lp
001348 artila electronics co., ltd.
001349 zyxel communications corporation
00134a engim, inc.
@@ -4928,7 +4930,7 @@ exit
00134c ydt technology international
00134d inepro bv
00134e valox systems, inc.
- 00134f tranzeo wireless technologies inc.
+ 00134f rapidus wireless networks inc.
001350 silver spring networks, inc
001351 niles audio corporation
001352 naztec, inc.
@@ -4944,13 +4946,13 @@ exit
00135c onsite systems, inc.
00135d nttpc communications, inc.
00135e eab/rwi/k
- 00135f cisco systems, inc.
- 001360 cisco systems, inc.
+ 00135f cisco systems, inc
+ 001360 cisco systems, inc
001361 biospace co., ltd.
001362 shinheung precision co., ltd.
001363 verascape, inc.
001364 paradigm technology inc..
- 001365 nortel
+ 001365 nortel networks
001366 neturity technologies inc.
001367 narayon. co., ltd.
001368 saab danmark a/s
@@ -4963,12 +4965,12 @@ exit
00136f packetmotion, inc.
001370 nokia danmark a/s
001371 arris group, inc.
- 001372 dell inc
+ 001372 dell inc.
001373 blwave electronics co., ltd
001374 atheros communications, inc.
001375 american security products co.
001376 tabor electronics ltd.
- 001377 samsung electronics co., ltd
+ 001377 samsung electronics co.,ltd
001378 qsan technology, inc.
001379 ponder information industries ltd.
00137a netvox technology co., ltd.
@@ -4976,23 +4978,23 @@ exit
00137c kaicom co., ltd.
00137d dynalab, inc.
00137e coredge networks, inc.
- 00137f cisco systems, inc.
- 001380 cisco systems, inc.
+ 00137f cisco systems, inc
+ 001380 cisco systems, inc
001381 chips & systems, inc.
001382 cetacea networks corporation
001383 application technologies and engineering research laboratory
001384 advanced motion controls
001385 add-on technology co., ltd.
- 001386 abb inc./totalflow
+ 001386 abb inc/totalflow
001387 27m technologies ab
001388 wimedia alliance
001389 redes de telefonía móvil s.a.
- 00138a qingdao goertek electronics co.,ltd.
+ 00138a qingdao goertek technology co., ltd.
00138b phantom technologies llc
00138c kumyoung.co.ltd
00138d kinghold
00138e foab elektronik ab
- 00138f asiarock incorporation
+ 00138f asiarock technology limited
001390 termtek computer co., ltd
001391 ouen co.,ltd.
001392 ruckus wireless
@@ -5000,19 +5002,19 @@ exit
001394 infohand co.,ltd
001395 congatec ag
001396 acbel polytech inc.
- 001397 oracle corporation
+ 001397 oracle corporation
001398 trafficsim co.,ltd
001399 stac corporation.
00139a k-ubique id corp.
00139b ioimage ltd.
00139c exavera technologies, inc.
- 00139d marvell hispana s.l.
+ 00139d maxlinear hispania s.l.u.
00139e ciara technologies inc.
00139f electronics design services, co., ltd.
0013a0 algosystem co., ltd.
0013a1 crow electronic engeneering
0013a2 maxstream, inc
- 0013a3 siemens com cpe devices
+ 0013a3 siemens home & office comm. devices
0013a4 keyeye communications
0013a5 general solutions, ltd.
0013a6 extricom ltd
@@ -5044,8 +5046,8 @@ exit
0013c0 trix tecnologia ltda.
0013c1 asoka usa corporation
0013c2 wacom co.,ltd
- 0013c3 cisco systems, inc.
- 0013c4 cisco systems, inc.
+ 0013c3 cisco systems, inc
+ 0013c4 cisco systems, inc
0013c5 lightron fiber-optic devices inc.
0013c6 opengear, inc
0013c7 ionos co.,ltd.
@@ -5085,7 +5087,7 @@ exit
0013e9 veriwave, inc.
0013ea kamstrup a/s
0013eb sysmaster corporation
- 0013ec sunbay software ag
+ 0013ec netsnapper technologies sarl
0013ed psia
0013ee jbx designs inc.
0013ef kingjon digital technology co.,ltd
@@ -5118,8 +5120,8 @@ exit
00140a wepio co., ltd.
00140b first international computer, inc.
00140c gkb cctv co., ltd.
- 00140d nortel
- 00140e nortel
+ 00140d nortel networks
+ 00140e nortel networks
00140f federal state unitary enterprise leningrad r&d institute of
001410 suzhou keda technology co.,ltd
001411 deutschmann automation gmbh & co. kg
@@ -5132,27 +5134,27 @@ exit
001418 c4line
001419 sidsa
00141a deicy corporation
- 00141b cisco systems, inc.
- 00141c cisco systems, inc.
- 00141d lti drives gmbh
+ 00141b cisco systems, inc
+ 00141c cisco systems, inc
+ 00141d keba industrial automation germany gmbh
00141e p.a. semi, inc.
00141f sunkwang electronics co., ltd
001420 g-links networking company
001421 total wireless technologies pte. ltd.
- 001422 dell inc
+ 001422 dell inc.
001423 j-s co. neurocom
001424 merry electrics co., ltd.
001425 galactic computing corp.
001426 nl technology
001427 jazzmutant
- 001428 vocollect, inc
+ 001428 vocollect inc
001429 v center technologies co., ltd.
- 00142a elitegroup computer system co., ltd
+ 00142a elitegroup computer systems co.,ltd.
00142b edata communication inc.
00142c koncept international, inc.
00142d toradex ag
00142e 77 elektronika kft.
- 00142f wildpackets
+ 00142f savvius
001430 vipower, inc
001431 pdl electronics ltd
001432 tarallax wireless, inc.
@@ -5161,8 +5163,8 @@ exit
001435 citycom corp.
001436 qwerty elektronik ab
001437 gsteletech co.,ltd.
- 001438 hewlett-packard company
- 001439 blonder tongue laboratories, inc.
+ 001438 hewlett packard enterprise
+ 001439 blonder tongue laboratories, inc
00143a raytalk international srl
00143b sensovation ag
00143c rheinmetall canada inc.
@@ -5184,9 +5186,9 @@ exit
00144c general meters corp.
00144d intelligent systems
00144e srisa
- 00144f oracle corporation
+ 00144f oracle corporation
001450 heim systems gmbh
- 001451 apple
+ 001451 apple, inc.
001452 calculex,inc.
001453 advantech technologies co.,ltd
001454 symwave
@@ -5195,7 +5197,7 @@ exit
001457 t-vips as
001458 hs automatic aps
001459 moram co., ltd.
- 00145a neratec solutions ag
+ 00145a westermo neratec ag
00145b seekernet inc.
00145c intronics b.v.
00145d wj communications, inc.
@@ -5210,22 +5212,22 @@ exit
001466 kleinhenz elektronik gmbh
001467 arrowspan inc.
001468 celplan international, inc.
- 001469 cisco systems, inc.
- 00146a cisco systems, inc.
+ 001469 cisco systems, inc
+ 00146a cisco systems, inc
00146b anagran, inc.
- 00146c netgear inc.
+ 00146c netgear
00146d rf technologies
00146e h. stoll gmbh & co. kg
00146f kohler co
001470 prokom software sa
001471 eastern asia technology limited
- 001472 china broadband wireless ip standard group
+ 001472 china broadband wireless ip standard group(chinabwips)
001473 bookham inc
001474 k40 electronics
001475 wiline networks, inc.
001476 multicom industries limited
- 001477 nertec inc.
- 001478 shenzhen tp-link technologies co., ltd.
+ 001477 trilliant
+ 001478 tp-link technologies co.,ltd.
001479 nec magnus communications,ltd.
00147a eubus gmbh
00147b iteris, inc.
@@ -5245,7 +5247,7 @@ exit
001489 b15402100 - jandei, s.l.
00148a elin ebg traction gmbh
00148b globo electronic gmbh & co. kg
- 00148c fortress technologies
+ 00148c general dynamics mission systems
00148d cubic defense simulation systems
00148e tele power inc.
00148f protronic (far east) ltd.
@@ -5254,7 +5256,7 @@ exit
001492 liteon, mobile media solution sbu
001493 systimax solutions
001494 esu ag
- 001495 2wire, inc.
+ 001495 2wire inc
001496 phonic corp.
001497 zhiyuan eletronics co.,ltd.
001498 viking design technology
@@ -5269,12 +5271,12 @@ exit
0014a1 synchronous communication corp
0014a2 core micro systems inc.
0014a3 vitelec bv
- 0014a4 hon hai precision ind. co., ltd.
+ 0014a4 hon hai precision ind. co.,ltd.
0014a5 gemtek technology co., ltd.
0014a6 teranetics, inc.
0014a7 nokia danmark a/s
- 0014a8 cisco systems, inc.
- 0014a9 cisco systems, inc.
+ 0014a8 cisco systems, inc
+ 0014a9 cisco systems, inc
0014aa ashly audio, inc.
0014ab senhai electronic technology co., ltd.
0014ac bountiful wifi
@@ -5282,7 +5284,7 @@ exit
0014ae wizlogics co., ltd.
0014af datasym pos inc.
0014b0 naeil community
- 0014b1 avitec ab
+ 0014b1 axell wireless limited
0014b2 mcubelogics corporation
0014b3 corestar international corp
0014b4 general dynamics united kingdom ltd
@@ -5296,17 +5298,17 @@ exit
0014bc synectic telecom exports pvt. ltd.
0014bd incnetworks, inc
0014be wink communication technology co.ltd
- 0014bf cisco-linksys llc
+ 0014bf cisco-linksys, llc
0014c0 symstream technology group ltd
0014c1 u.s. robotics corporation
- 0014c2 hewlett-packard company
+ 0014c2 hewlett packard
0014c3 seagate technology
0014c4 vitelcom mobile technology
0014c5 alive technologies pty ltd
0014c6 quixant ltd
- 0014c7 nortel
+ 0014c7 nortel networks
0014c8 contemporary research corp
- 0014c9 brocade communications systems, inc.
+ 0014c9 brocade communications systems llc
0014ca key radio systems limited
0014cb lifesync corporation
0014cc zetec, inc.
@@ -5314,7 +5316,7 @@ exit
0014ce nf corporation
0014cf invisio communications
0014d0 bti systems inc.
- 0014d1 trendnet
+ 0014d1 trendnet, inc.
0014d2 kyuden technosystems corporation
0014d3 sepsa
0014d4 k technology corporation
@@ -5346,12 +5348,12 @@ exit
0014ee western digital technologies, inc.
0014ef tzero technologies, inc.
0014f0 business security ol ab
- 0014f1 cisco systems, inc.
- 0014f2 cisco systems, inc.
+ 0014f1 cisco systems, inc
+ 0014f2 cisco systems, inc
0014f3 vixs systems inc
0014f4 dektec digital video b.v.
0014f5 osi security devices
- 0014f6 juniper networks, inc.
+ 0014f6 juniper networks
0014f7 crevis co., ltd
0014f8 scientific atlanta
0014f9 vantage controls
@@ -5391,7 +5393,7 @@ exit
00151b isilon systems inc.
00151c leneco
00151d m2i corporation
- 00151e ethernet powerlink standardization group (epsg)
+ 00151e ethernet powerlink standarization group (epsg)
00151f multivision intelligent surveillance (hong kong) ltd
001520 radiocrafts as
001521 horoquartz
@@ -5403,13 +5405,13 @@ exit
001527 balboa instruments
001528 beacon medical products llc d.b.a. beaconmedaes
001529 n3 corporation
- 00152a nokia gmbh
- 00152b cisco systems, inc.
- 00152c cisco systems, inc.
+ 00152a nokia corporation
+ 00152b cisco systems, inc
+ 00152c cisco systems, inc
00152d tenx networks, llc
00152e packethop, inc.
00152f arris group, inc.
- 001530 emc corporation
+ 001530 dell emc
001531 kocom
001532 consumer technologies group, llc
001533 nadam.co.,ltd
@@ -5425,7 +5427,7 @@ exit
00153d elim product co.
00153e q-matic sweden ab
00153f alcatel alenia space italia
- 001540 nortel
+ 001540 nortel networks
001541 stratalight communications, inc.
001542 microhard s.r.l.
001543 aberdeen test center
@@ -5447,7 +5449,7 @@ exit
001553 cytyc corporation
001554 atalum wireless s.a.
001555 dfm gmbh
- 001556 sagem communication
+ 001556 sagemcom broadband sas
001557 olivetti
001558 foxconn
001559 securaplane technologies, inc.
@@ -5457,10 +5459,10 @@ exit
00155d microsoft corporation
00155e morgan stanley
00155f greenpeak technologies
- 001560 hewlett-packard company
+ 001560 hewlett packard
001561 jjplus corporation
- 001562 cisco systems, inc.
- 001563 cisco systems, inc.
+ 001562 cisco systems, inc
+ 001563 cisco systems, inc
001564 behringer spezielle studiotechnik gmbh
001565 xiamen yealink network technology co.,ltd
001566 a-first technology co., ltd.
@@ -5473,20 +5475,20 @@ exit
00156d ubiquiti networks inc.
00156e a. w. communication systems ltd
00156f xiranet communications gmbh
- 001570 symbol technologieswholly owned subsidiary of motorola
+ 001570 zebra technologies inc
001571 nolan systems
001572 red-lemon
001573 newsoft technology corporation
001574 horizon semiconductors ltd.
001575 nevis networks inc.
001576 labitec - labor biomedical technologies gmbh
- 001577 allied telesis
+ 001577 allied telesis, inc.
001578 audio / video innovations
001579 lunatone industrielle elektronik gmbh
00157a telefin s.p.a.
00157b leuze electronic gmbh + co. kg
00157c dave networks, inc.
- 00157d posdata co., ltd.
+ 00157d posdata
00157e weidmüller interface gmbh & co. kg
00157f chuang international holding co.,ltd.
001580 u-way corporation
@@ -5511,21 +5513,21 @@ exit
001593 u4ea technologies inc.
001594 bixolon co.,ltd
001595 quester tangent corporation
- 001596 arris international
+ 001596 arris group, inc.
001597 aeta audio systems
001598 kolektor group
- 001599 samsung electronics co., ltd
+ 001599 samsung electronics co.,ltd
00159a arris group, inc.
- 00159b nortel
+ 00159b nortel networks
00159c b-kyung system co.,ltd.
- 00159d minicom advanced systems ltd
+ 00159d tripp lite
00159e mad catz interactive inc
00159f terascala, inc.
0015a0 nokia danmark a/s
0015a1 eca-sinters
- 0015a2 arris international
- 0015a3 arris international
- 0015a4 arris international
+ 0015a2 arris group, inc.
+ 0015a3 arris group, inc.
+ 0015a4 arris group, inc.
0015a5 dci co., ltd.
0015a6 digital electronics products ltd.
0015a7 robatech ag
@@ -5536,7 +5538,7 @@ exit
0015ac capelon ab
0015ad accedian networks
0015ae kyung il
- 0015af azurewave technologies, inc.
+ 0015af azurewave technology inc.
0015b0 autotelenet co.,ltd
0015b1 ambient corporation
0015b2 advanced industrial computer, inc.
@@ -5546,7 +5548,7 @@ exit
0015b6 shinmaywa industries, ltd.
0015b7 toshiba
0015b8 tahoe
- 0015b9 samsung electronics co., ltd.
+ 0015b9 samsung electronics co.,ltd
0015ba iba ag
0015bb sma solar technology ag
0015bc develco
@@ -5554,22 +5556,22 @@ exit
0015be iqua ltd.
0015bf technicob
0015c0 digital telemedia co.,ltd.
- 0015c1 sony computer entertainment inc,
+ 0015c1 sony interactive entertainment inc.
0015c2 3m germany
0015c3 ruf telematik ag
0015c4 flovel co., ltd.
- 0015c5 dell inc
- 0015c6 cisco systems, inc.
- 0015c7 cisco systems, inc.
+ 0015c5 dell inc.
+ 0015c6 cisco systems, inc
+ 0015c7 cisco systems, inc
0015c8 flexipanel ltd
0015c9 gumstix, inc
0015ca terarecon, inc.
0015cb surf communication solutions ltd.
0015cc uquest, ltd.
0015cd exartech international corp.
- 0015ce arris international
- 0015cf arris international
- 0015d0 arris international
+ 0015ce arris group, inc.
+ 0015cf arris group, inc.
+ 0015d0 arris group, inc.
0015d1 arris group, inc.
0015d2 xantech corporation
0015d3 pantech&curitel communications, inc.
@@ -5585,7 +5587,7 @@ exit
0015dd ip control systems ltd.
0015de nokia danmark a/s
0015df clivet s.p.a.
- 0015e0 st-ericsson
+ 0015e0 ericsson
0015e1 picochip ltd
0015e2 dr.ing. herbert knauer gmbh
0015e3 dream technologies corporation
@@ -5593,7 +5595,7 @@ exit
0015e5 cheertek inc.
0015e6 mobile technika inc.
0015e7 quantec tontechnik
- 0015e8 nortel
+ 0015e8 nortel networks
0015e9 d-link corporation
0015ea tellumat (pty) ltd
0015eb zte corporation
@@ -5610,15 +5612,15 @@ exit
0015f6 science and engineering services, inc.
0015f7 wintecronics ltd.
0015f8 kingtronics industrial co. ltd.
- 0015f9 cisco systems, inc.
- 0015fa cisco systems, inc.
+ 0015f9 cisco systems, inc
+ 0015fa cisco systems, inc
0015fb setex schermuly textile computer gmbh
0015fc littelfuse startco
0015fd complete media systems
0015fe schilling robotics llc
- 0015ff novatel wireless, inc.
+ 0015ff novatel wireless solutions, inc.
001600 cellebrite mobile synchronization
- 001601 buffalo inc.
+ 001601 buffalo.inc
001602 ceyon technology co.,ltd.
001603 coolksky co., ltd
001604 sigpro
@@ -5649,7 +5651,7 @@ exit
00161d innovative wireless technologies, inc.
00161e woojinnet
00161f sunwavetec co., ltd.
- 001620 sony ericsson mobile communications ab
+ 001620 sony mobile communications inc
001621 colorado vnet
001622 bbh systems gmbh
001623 interval media
@@ -5657,7 +5659,7 @@ exit
001625 impinj, inc.
001626 arris group, inc.
001627 embedded-logic design and more gmbh
- 001628 ultra electronics manufacturing and card systems
+ 001628 magicard ltd
001629 nivus gmbh
00162a antik computers & communications s.r.o.
00162b togami electric mfg.co.,ltd.
@@ -5667,16 +5669,16 @@ exit
00162f geutebrück gmbh
001630 vativ technologies
001631 xteam
- 001632 samsung electronics co., ltd.
+ 001632 samsung electronics co.,ltd
001633 oxford diagnostics ltd.
001634 mathtech, inc.
- 001635 hewlett-packard company
+ 001635 hewlett packard
001636 quanta computer inc.
001637 citel spa
001638 tecom co., ltd.
- 001639 ubiquam co.,ltd
+ 001639 ubiquam co., ltd.
00163a yves technology co., ltd.
- 00163b vertexrsi/general dynamics
+ 00163b communications & power industries
00163c rebox b.v.
00163d tsinghua tongfang legend silicon tech. co., ltd.
00163e xensource, inc.
@@ -5687,17 +5689,17 @@ exit
001643 sunhillo corporation
001644 lite-on technology corp.
001645 power distribution, inc.
- 001646 cisco systems, inc.
- 001647 cisco systems, inc.
+ 001646 cisco systems, inc
+ 001647 cisco systems, inc
001648 ssd company limited
001649 setone gmbh
00164a vibration technology limited
00164b quorion data systems gmbh
00164c planet int co., ltd
- 00164d alcatel north america ip division
+ 00164d alcatel-lucent ipd
00164e nokia danmark a/s
00164f world ethnic broadcastin inc.
- 001650 herley general microwave israel.
+ 001650 kratos epd
001651 exeo systems
001652 hoatech technologies, inc.
001653 lego system a/s ie electronics division
@@ -5709,11 +5711,11 @@ exit
001659 z.m.p. radwag
00165a harman specialty group
00165b grip audio
- 00165c trackflow ltd
+ 00165c trackflow ltd.
00165d airdefense, inc.
00165e precision i/o
00165f fairmount automation
- 001660 nortel
+ 001660 nortel networks
001661 novatium solutions (p) ltd
001662 liyuh technology ltd.
001663 kbt mobile
@@ -5724,9 +5726,9 @@ exit
001668 eishin electronics
001669 mrv communication (networks) ltd
00166a tps
- 00166b samsung electronics
- 00166c samsung electonics digital video system division
- 00166d yulong computer telecommunication scientific(shenzhen)co.,lt
+ 00166b samsung electronics co.,ltd
+ 00166c samsung electronics co.,ltd
+ 00166d yulong computer telecommunication scientific (shenzhen) co.,ltd
00166e arbitron inc.
00166f intel corporate
001670 sknet corporation
@@ -5739,7 +5741,7 @@ exit
001677 bihl + wiedemann gmbh
001678 shenzhen baoan gaoke electronics co., ltd
001679 eon communications
- 00167a skyworth overseas dvelopment ltd.
+ 00167a skyworth overseas development ltd.
00167b haver&boecker
00167c irex technologies bv
00167d sky-line information co., ltd.
@@ -5760,7 +5762,7 @@ exit
00168c dsl partner as
00168d korwin co., ltd.
00168e vimicro corporation
- 00168f gn netcom as
+ 00168f gn netcom a/s
001690 j-tek incorporation
001691 moser-baer ag
001692 scientific-atlanta, inc.
@@ -5773,8 +5775,8 @@ exit
001699 tonic dvb marketing ltd
00169a quadrics ltd
00169b alstom transport
- 00169c cisco systems, inc.
- 00169d cisco systems, inc.
+ 00169c cisco systems, inc
+ 00169d cisco systems, inc
00169e tv one ltd
00169f vimtron electronics co., ltd.
0016a0 auto-maskin
@@ -5797,12 +5799,12 @@ exit
0016b1 kbs
0016b2 drivecam inc
0016b3 photonicbridges (china) co., ltd.
- 0016b4
+ 0016b4 private
0016b5 arris group, inc.
- 0016b6 cisco-linksys
+ 0016b6 cisco-linksys, llc
0016b7 seoul commtech
- 0016b8 sony ericsson mobile communications
- 0016b9 procurve networking
+ 0016b8 sony mobile communications inc
+ 0016b9 procurve networking by hp
0016ba weathernews inc.
0016bb law-chain computer technology co ltd
0016bc nokia danmark a/s
@@ -5816,15 +5818,15 @@ exit
0016c4 sirf technology, inc.
0016c5 shenzhen xing feng industry co.,ltd
0016c6 north atlantic industries
- 0016c7 cisco systems, inc.
- 0016c8 cisco systems, inc.
+ 0016c7 cisco systems, inc
+ 0016c8 cisco systems, inc
0016c9 nat seattle, inc.
- 0016ca nortel
- 0016cb apple
+ 0016ca nortel networks
+ 0016cb apple, inc.
0016cc xcute mobile corp.
0016cd hiji high-tech co., ltd.
- 0016ce hon hai precision ind. co., ltd.
- 0016cf hon hai precision ind. co., ltd.
+ 0016ce hon hai precision ind. co.,ltd.
+ 0016cf hon hai precision ind. co.,ltd.
0016d0 atech elektronika d.o.o.
0016d1 zat a.s.
0016d2 caspian
@@ -5836,7 +5838,7 @@ exit
0016d8 senea ab
0016d9 ningbo bird co.,ltd.
0016da futronic technology co. ltd.
- 0016db samsung electronics co., ltd.
+ 0016db samsung electronics co.,ltd
0016dc archos
0016dd gigabeam corporation
0016de fast inc
@@ -5844,7 +5846,7 @@ exit
0016e0 3com ltd
0016e1 siliconstor, inc.
0016e2 american fibertek, inc.
- 0016e3 askey computer corp.
+ 0016e3 askey computer corp
0016e4 vanguard security engineering corp.
0016e5 fordley development limited
0016e6 giga-byte technology co.,ltd.
@@ -5853,8 +5855,8 @@ exit
0016e9 tiba medical inc
0016ea intel corporate
0016eb intel corporate
- 0016ec elitegroup computer systems co., ltd.
- 0016ed digital safety technologies, inc
+ 0016ec elitegroup computer systems co.,ltd.
+ 0016ed utility, inc
0016ee royaldigital inc.
0016ef koko fitness, inc.
0016f0 dell
@@ -5868,10 +5870,10 @@ exit
0016f8 aviqtech technology co., ltd.
0016f9 cetrta pot, d.o.o., kranj
0016fa eci telecom ltd.
- 0016fb shenzhen mtc co.,ltd.
+ 0016fb shenzhen mtc co ltd
0016fc tohken co.,ltd.
0016fd jaty electronics
- 0016fe alps electric co., ltd
+ 0016fe alpsalpine co,.ltd
0016ff wamin optocomm mfg corp
001700 arris group, inc.
001701 kde, inc.
@@ -5879,18 +5881,18 @@ exit
001703 mosdan internation co.,ltd
001704 shinco electronics group co.,ltd
001705 methode electronics
- 001706 techfaith wireless communication technology limited.
+ 001706 techfaithwireless communication technology limited.
001707 ingrid, inc
- 001708 hewlett-packard company
+ 001708 hewlett packard
001709 exalt communications
00170a inew digital company
00170b contela, inc.
00170c twig com ltd.
00170d dust networks inc.
- 00170e cisco systems, inc.
- 00170f cisco systems, inc.
+ 00170e cisco systems, inc
+ 00170f cisco systems, inc
001710 casa systems inc.
- 001711 ge healthcare bio-sciences ab
+ 001711 cytiva sweden ab
001712 isco international
001713 tiger netcom
001714 br controls nederland bv
@@ -5923,20 +5925,20 @@ exit
00172f neulion incorporated
001730 automation electronics
001731 asustek computer inc.
- 001732 science-technical center "rissa"
+ 001732 science-technical center rissa
001733 sfr
001734 adc telecommunications
- 001735
+ 001735 intel wireless network group
001736 iitron inc.
001737 industrie dial face s.p.a.
001738 international business machines
001739 bright headphone electronics company
- 00173a reach systems inc.
- 00173b cisco systems, inc.
+ 00173a cloudastructure inc
+ 00173b cisco systems, inc
00173c extreme engineering solutions
00173d neology
00173e leucotronequipamentos ltda.
- 00173f belkin corporation
+ 00173f belkin international inc.
001740 bluberi gaming technologies inc
001741 defidev
001742 fujitsu limited
@@ -5962,19 +5964,19 @@ exit
001756 vinci labs oy
001757 rix technology limited
001758 thruvision ltd
- 001759 cisco systems, inc.
- 00175a cisco systems, inc.
+ 001759 cisco systems, inc
+ 00175a cisco systems, inc
00175b acs solutions switzerland ltd.
00175c sharp corporation
00175d dongseo system.
00175e zed-3
00175f xenolink communications co., ltd.
001760 naito densei machida mfg.co.,ltd
- 001761
+ 001761 private
001762 solar technology, inc.
001763 essentia s.p.a.
001764 atmedia gmbh
- 001765 nortel
+ 001765 nortel networks
001766 accense technology, inc.
001767 earforce as
001768 zinwave ltd
@@ -5998,7 +6000,7 @@ exit
00177a assa abloy ab
00177b azalea networks inc
00177c smartlink network systems limited
- 00177d idt international limited
+ 00177d idt technology limited
00177e meshcom technologies inc.
00177f worldsmart retech
001780 applied biosystems b.v.
@@ -6021,14 +6023,14 @@ exit
001791 lintech gmbh
001792 falcom wireless comunications gmbh
001793 tigi corporation
- 001794 cisco systems, inc.
- 001795 cisco systems, inc.
+ 001794 cisco systems, inc
+ 001795 cisco systems, inc
001796 rittmeyer ag
001797 telsy elettronica s.p.a.
001798 azonic technology co., ltd
001799 smartire systems inc.
00179a d-link corporation
- 00179b chant sincere co., ltd.
+ 00179b chant sincere co.,ltd
00179c deprag schulz gmbh u. co.
00179d kelman limited
00179e sirit inc
@@ -6037,7 +6039,7 @@ exit
0017a1 3soft inc.
0017a2 camrivox ltd.
0017a3 mix s.r.l.
- 0017a4 hewlett-packard company
+ 0017a4 hewlett packard
0017a5 ralink technology corp
0017a6 yosin electronics co., ltd.
0017a7 mobile computing promotion consortium
@@ -6055,7 +6057,7 @@ exit
0017b3 aftek infosys limited
0017b4 remote security systems, llc
0017b5 peerless systems corporation
- 0017b6 aquantia
+ 0017b6 aquantia corporation
0017b7 tonze technology co.
0017b8 novatron co., ltd.
0017b9 gambro lundia ab
@@ -6073,8 +6075,8 @@ exit
0017c5 sonicwall
0017c6 cross match technologies inc
0017c7 mara systems consulting ab
- 0017c8 kyocera document solutions inc.
- 0017c9 samsung electronics co., ltd.
+ 0017c8 kyocera display corporation
+ 0017c9 samsung electronics co.,ltd
0017ca qisda corporation
0017cb juniper networks
0017cc alcatel-lucent
@@ -6082,11 +6084,11 @@ exit
0017ce screen service spa
0017cf imca-gmbh
0017d0 opticom communications, llc
- 0017d1 nortel
+ 0017d1 nortel networks
0017d2 thinlinx pty ltd
0017d3 etymotic research, inc.
0017d4 monsoon multimedia, inc
- 0017d5 samsung electronics co., ltd.
+ 0017d5 samsung electronics co.,ltd
0017d6 bluechips microhouse co.,ltd.
0017d7 ion geophysical corporation inc.
0017d8 magnum semiconductor, inc.
@@ -6096,8 +6098,8 @@ exit
0017dc daemyung zero1
0017dd clipsal australia
0017de advantage six ltd
- 0017df cisco systems, inc.
- 0017e0 cisco systems, inc.
+ 0017df cisco systems, inc
+ 0017e0 cisco systems, inc
0017e1 dacos technologies co., ltd.
0017e2 arris group, inc.
0017e3 texas instruments
@@ -6115,8 +6117,8 @@ exit
0017ef ibm corp
0017f0 szcom broadband network technology co.,ltd
0017f1 renu electronics pvt ltd
- 0017f2 apple
- 0017f3 harris corparation
+ 0017f2 apple, inc.
+ 0017f3 harris corporation
0017f4 zeron alliance
0017f5 lig neoptek
0017f6 pyramid meriden inc.
@@ -6139,7 +6141,7 @@ exit
001807 fanstel corp.
001808 sightlogix, inc.
001809 cresyn
- 00180a meraki, inc.
+ 00180a cisco meraki
00180b brilliant telecommunications
00180c optelian access networks
00180d terabytes server storage tech corp
@@ -6148,13 +6150,13 @@ exit
001810 iptrade s.a.
001811 neuros technology international, llc.
001812 beijing xinwei telecom technology co., ltd.
- 001813 sony ericsson mobile communications
+ 001813 sony mobile communications inc
001814 mitutoyo corporation
001815 gz technologies, inc.
001816 ubixon co., ltd.
001817 d. e. shaw research, llc
- 001818 cisco systems, inc.
- 001819 cisco systems, inc.
+ 001818 cisco systems, inc
+ 001819 cisco systems, inc
00181a avermedia information inc.
00181b taijin metal co., ltd.
00181c exterity limited
@@ -6166,7 +6168,7 @@ exit
001822 cec telecom co.,ltd.
001823 delta electronics, inc.
001824 kimaldi electronics, s.l.
- 001825
+ 001825 private
001826 cale access ab
001827 nec unified solutions nederland b.v.
001828 e2v technologies (uk) ltd.
@@ -6175,7 +6177,7 @@ exit
00182b softier
00182c ascend networks, inc.
00182d artec design
- 00182e xstreamhd, llc
+ 00182e xstreamhd
00182f texas instruments
001830 texas instruments
001831 texas instruments
@@ -6183,16 +6185,16 @@ exit
001833 texas instruments
001834 texas instruments
001835 thoratec / itc
- 001836 reliance electric limited
+ 001836 rej co.,ltd
001837 universal abit co., ltd.
001838 panaccess communications,inc.
- 001839 cisco-linksys llc
- 00183a westell technologies
+ 001839 cisco-linksys, llc
+ 00183a westell technologies inc.
00183b cenits co., ltd.
00183c encore software limited
00183d vertex link corporation
00183e digilent, inc
- 00183f 2wire, inc
+ 00183f 2wire inc
001840 3 phoenix, inc.
001841 high tech computer corp
001842 nokia danmark a/s
@@ -6202,11 +6204,11 @@ exit
001846 crypto s.a.
001847 acenet technology inc.
001848 vecima networks inc.
- 001849 pigeon point systems llc
+ 001849 nvent, schroff gmbh
00184a catcher, inc.
00184b las vegas gaming, inc.
00184c bogen communications
- 00184d netgear inc.
+ 00184d netgear
00184e lianhe technologies, inc.
00184f 8 ways technology corp.
001850 secfone kft
@@ -6221,7 +6223,7 @@ exit
001859 strawberry linux co.,ltd.
00185a ucontrol, inc.
00185b network chemistry, inc
- 00185c eds lab pte ltd
+ 00185c edslab technologies
00185d taiguen technology (shen-zhen) co., ltd.
00185e nexterm inc.
00185f tac inc.
@@ -6233,7 +6235,7 @@ exit
001865 siemens healthcare diagnostics manufacturing ltd
001866 leutron vision
001867 datalogic adc
- 001868 scientific atlanta, a cisco company
+ 001868 cisco spvtg
001869 kingjim
00186a global link digital technology co,.ltd
00186b sambu communics co., ltd.
@@ -6242,10 +6244,10 @@ exit
00186e 3com ltd
00186f setha industria eletronica ltda
001870 e28 shanghai limited
- 001871 hewlett-packard company
+ 001871 hewlett packard
001872 expertise engineering
- 001873 cisco systems, inc.
- 001874 cisco systems, inc.
+ 001873 cisco systems, inc
+ 001874 cisco systems, inc
001875 anacise testnology pte ltd
001876 wowwee ltd.
001877 amplex a/s
@@ -6254,21 +6256,21 @@ exit
00187a wiremold
00187b 4nsys co. ltd.
00187c intercross, llc
- 00187d armorlink shanghai co. ltd
+ 00187d armorlink co .ltd
00187e rgb spectrum
00187f zodianet
001880 maxim integrated products
001881 buyang electronics industrial co., ltd
- 001882 huawei technologies co., ltd.
+ 001882 huawei technologies co.,ltd
001883 formosa21 inc.
001884 fon technology s.l.
- 001885 avigilon corporation
+ 001885 motorola solutions inc.
001886 el-tech, inc.
001887 metasystem spa
001888 gotive a.s.
001889 winnet solutions limited
00188a infinova llc
- 00188b dell inc
+ 00188b dell inc.
00188c mobile action technology inc.
00188d nokia danmark a/s
00188e ekahau, inc.
@@ -6277,7 +6279,7 @@ exit
001891 zhongshan general k-mate electronics co., ltd
001892 ads-tec gmbh
001893 shenzhen photon broadband technology co.,ltd
- 001894 zimocom
+ 001894 npcore, inc.
001895 hansun technologies inc.
001896 great well electronic ltd
001897 jess-link products co., ltd
@@ -6304,8 +6306,8 @@ exit
0018ac shanghai jiao da hisys technology co. ltd.
0018ad nidec sankyo corporation
0018ae tvt co.,ltd
- 0018af samsung electronics co., ltd.
- 0018b0 nortel
+ 0018af samsung electronics co.,ltd
+ 0018b0 nortel networks
0018b1 ibm corp
0018b2 adeunis rf
0018b3 tec wizhome co., ltd.
@@ -6314,8 +6316,8 @@ exit
0018b6 s3c, inc.
0018b7 d3 led, llc
0018b8 new voice international ag
- 0018b9 cisco systems, inc.
- 0018ba cisco systems, inc.
+ 0018b9 cisco systems, inc
+ 0018ba cisco systems, inc
0018bb eliwell controls srl
0018bc zao nvp bolid
0018bd shenzhen dvbworld technology co., ltd.
@@ -6344,10 +6346,10 @@ exit
0018d4 unified display interface sig
0018d5 reigncom
0018d6 swirlnet a/s
- 0018d7 javad navigation systems inc.
+ 0018d7 javad gnss, inc.
0018d8 arch meter corporation
0018d9 santosha internatonal, inc
- 0018da amber wireless gmbh
+ 0018da würth elektronik eisos gmbh & co. kg
0018db epl technology ltd
0018dc prostar co., ltd.
0018dd silicondust engineering ltd
@@ -6364,7 +6366,7 @@ exit
0018e8 hacetron corporation
0018e9 numata corporation
0018ea alltec gmbh
- 0018eb brovis wireless networks
+ 0018eb blue zen enterprises private limited
0018ec welding technology corporation
0018ed accutech ultrasystems co., ltd.
0018ee videology imaging solutions, inc.
@@ -6377,13 +6379,13 @@ exit
0018f5 shenzhen streaming video technology company limited
0018f6 thomson telecom belgium
0018f7 kameleon technologies
- 0018f8 cisco-linksys llc
+ 0018f8 cisco-linksys, llc
0018f9 vvond, inc.
0018fa yushin precision equipment co.,ltd.
0018fb compro technology
0018fc altec electronic ag
0018fd optimal technologies international inc.
- 0018fe hewlett-packard company
+ 0018fe hewlett packard
0018ff powerquattro co.
001900 intelliverese - dba voicecom
001901 f1media
@@ -6391,8 +6393,8 @@ exit
001903 bigfoot networks inc
001904 wb electronics sp. z o.o.
001905 schrack seconet ag
- 001906 cisco systems, inc.
- 001907 cisco systems, inc.
+ 001906 cisco systems, inc
+ 001907 cisco systems, inc
001908 duaxes corporation
001909 devi - danfoss a/s
00190a hasware inc.
@@ -6418,7 +6420,7 @@ exit
00191e beyondwiz co., ltd.
00191f microlink communications inc.
001920 kume electric co.,ltd.
- 001921 elitegroup computer system co.
+ 001921 elitegroup computer systems co.,ltd.
001922 cm comandos lineares
001923 phonex korea co., ltd.
001924 lbnl engineering
@@ -6432,10 +6434,10 @@ exit
00192c arris group, inc.
00192d nokia corporation
00192e spectral instruments, inc.
- 00192f cisco systems, inc.
- 001930 cisco systems, inc.
+ 00192f cisco systems, inc
+ 001930 cisco systems, inc
001931 balluff gmbh
- 001932 gude analog- und digialsysteme gmbh
+ 001932 gude systems gmbh
001933 strix systems, inc.
001934 trendon touch technology corp.
001935 duerr dental ag
@@ -6444,7 +6446,7 @@ exit
001938 umb communications co., ltd.
001939 gigamips
00193a oesolutions
- 00193b wilibox deliberant group llc
+ 00193b ligowave
00193c highpoint technologies incorporated
00193d gmc guardian mobility corp.
00193e adb broadband italia
@@ -6454,13 +6456,13 @@ exit
001942 on software international limited
001943 belden
001944 fossil partners, l.p.
- 001945 ten-tec inc.
+ 001945 rf concepts, llc
001946 cianet industria e comercio s/a
- 001947 scientific atlanta, a cisco company
+ 001947 cisco spvtg
001948 airespider networks
001949 tentel comtech co., ltd.
00194a testo ag
- 00194b sagem communication
+ 00194b sagemcom broadband sas
00194c fujian stelcom information & technology co.,ltd
00194d avago technologies sdn bhd
00194e ultra electronics - tcs (tactical communication systems)
@@ -6470,8 +6472,8 @@ exit
001952 acogito co., ltd
001953 chainleader communications corp.
001954 leaf corporation.
- 001955 cisco systems, inc.
- 001956 cisco systems, inc.
+ 001955 cisco systems, inc
+ 001956 cisco systems, inc
001957 saafnet canada inc.
001958 bluetooth sig, inc.
001959 staccato communications inc.
@@ -6484,13 +6486,13 @@ exit
001960 docomo systems, inc.
001961 blaupunkt embedded systems gmbh
001962 commerciant, lp
- 001963 sony ericsson mobile communications ab
+ 001963 sony mobile communications inc
001964 doorking inc.
001965 yuhua teltech (shanghai) co., ltd.
001966 asiarock technology limited
001967 teldat sp.j.
001968 digital video networks(shanghai) co. ltd.
- 001969 nortel
+ 001969 nortel networks
00196a mikrom gmbh
00196b danpex corporation
00196c etrovision technology
@@ -6499,19 +6501,19 @@ exit
00196f sensopart gmbh
001970 z-com, inc.
001971 guangzhou unicomp technology co.,ltd
- 001972 plexus (xiamen) co.,ltd
+ 001972 plexus (xiamen) co.,ltd.
001973 zeugma systems
- 001974 abocom systems, inc.
+ 001974 16063
001975 beijing huisen networks technology inc
001976 xipher technologies, llc
- 001977 aerohive networks, inc.
+ 001977 extreme networks, inc.
001978 datum systems, inc.
001979 nokia danmark a/s
00197a mazet gmbh
00197b picotest corp.
00197c riedel communications gmbh
- 00197d hon hai precision ind. co., ltd
- 00197e hon hai precision ind. co., ltd
+ 00197d hon hai precision ind. co.,ltd.
+ 00197e hon hai precision ind. co.,ltd.
00197f plantronics, inc.
001980 gridpoint systems
001981 vivox inc
@@ -6520,7 +6522,7 @@ exit
001984 estic corporation
001985 it watchdogs, inc
001986 cheng hongjian
- 001987 panasonic mobile communications co., ltd.
+ 001987 panasonic mobile communications co.,ltd.
001988 wi2wi, inc
001989 sonitrol corporation
00198a northrop grumman systems corp.
@@ -6528,21 +6530,21 @@ exit
00198c ixsea
00198d ocean optics, inc.
00198e oticon a/s
- 00198f alcatel bell n.v.
+ 00198f nokia bell n.v.
001990 elm data co., ltd.
001991 avinfo
- 001992 adtran inc.
+ 001992 adtran inc
001993 changshu switchgear mfg. co.,ltd. (former changshu switchgea
001994 jorjin technologies inc.
001995 jurong hi-tech (suzhou)co.ltd
001996 turbochef technologies inc.
001997 soft device sdn bhd
001998 sato corporation
- 001999 fujitsu technology solutions
+ 001999 fujitsu technology solutions gmbh
00199a edo-evi
00199b diversified technical systems, inc.
00199c ctring
- 00199d vizio, inc.
+ 00199d vizio, inc
00199e nifty
00199f dkt a/s
0019a0 nihon data systens, inc.
@@ -6554,8 +6556,8 @@ exit
0019a6 arris group, inc.
0019a7 itu-t
0019a8 wiquest communications
- 0019a9 cisco systems, inc.
- 0019aa cisco systems, inc.
+ 0019a9 cisco systems, inc
+ 0019aa cisco systems, inc
0019ab raycom co ., ltd
0019ac gsp systems inc.
0019ad bobst sa
@@ -6565,24 +6567,24 @@ exit
0019b1 arrow7 corporation
0019b2 xynetsoft co.,ltd
0019b3 stanford research systems
- 0019b4 videocast ltd.
+ 0019b4 intellio ltd
0019b5 famar fueguina s.a.
0019b6 euro emme s.r.l.
0019b7 nokia danmark a/s
0019b8 boundary devices
0019b9 dell inc.
0019ba paradox security systems ltd
- 0019bb hewlett-packard company
+ 0019bb hewlett packard
0019bc electro chance srl
0019bd new media life
0019be altai technologies limited
0019bf citiway technology co.,ltd
0019c0 arris group, inc.
- 0019c1 alps electric co., ltd
+ 0019c1 alpsalpine co,.ltd
0019c2 equustek solutions, inc.
0019c3 qualitrol
0019c4 infocrypt inc.
- 0019c5 sony computer entertainment inc,
+ 0019c5 sony interactive entertainment inc.
0019c6 zte corporation
0019c7 cambridge industries(group) co.,ltd.
0019c8 anydata corporation
@@ -6609,15 +6611,15 @@ exit
0019dd fei-zyfer, inc.
0019de mobitek
0019df thomson inc.
- 0019e0 tp-link technologies co., ltd.
- 0019e1 nortel
+ 0019e0 tp-link technologies co.,ltd.
+ 0019e1 nortel networks
0019e2 juniper networks
- 0019e3 apple
- 0019e4 2wire, inc
+ 0019e3 apple, inc.
+ 0019e4 2wire inc
0019e5 lynx studio technology, inc.
0019e6 toyo medic co.,ltd.
- 0019e7 cisco systems, inc.
- 0019e8 cisco systems, inc.
+ 0019e7 cisco systems, inc
+ 0019e8 cisco systems, inc
0019e9 s-information technolgy, co., ltd.
0019ea teramage technologies co., ltd.
0019eb pyronix ltd
@@ -6658,7 +6660,7 @@ exit
001a0e cheng uei precision industry co.,ltd
001a0f sistemas avanzados de control, s.a.
001a10 lucent trans electronics co.,ltd
- 001a11 google inc.
+ 001a11 google, inc.
001a12 essilor
001a13 wanlida group co., ltd
001a14 xin hua control engineering co.,ltd.
@@ -6671,10 +6673,10 @@ exit
001a1b arris group, inc.
001a1c gt&t engineering pte ltd
001a1d pchome online inc.
- 001a1e aruba networks
+ 001a1e aruba, a hewlett packard enterprise company
001a1f coastal environmental systems
001a20 cmotech co. ltd.
- 001a21 indac b.v.
+ 001a21 brookhuis applied technologies bv
001a22 eq-3 entwicklung gmbh
001a23 ice qube, inc
001a24 galaxy telecom technologies ltd
@@ -6682,15 +6684,15 @@ exit
001a26 deltanode solutions ab
001a27 ubistar
001a28 aswt co., ltd. taiwan branch h.k.
- 001a29 johnson outdoors marine electronics, inc
+ 001a29 johnson outdoors marine electronics d/b/a minnkota
001a2a arcadyan technology corporation
001a2b ayecom technology co., ltd.
001a2c satec co.,ltd
001a2d the navvo group
001a2e ziova coporation
- 001a2f cisco systems, inc.
- 001a30 cisco systems, inc.
- 001a31 scan coin industries ab
+ 001a2f cisco systems, inc
+ 001a30 cisco systems, inc
+ 001a31 scan coin ab
001a32 activa multimedia
001a33 asi communications, inc.
001a34 konka group co., ltd.
@@ -6710,13 +6712,13 @@ exit
001a42 techcity technology co., ltd.
001a43 logical link communications
001a44 jwtrading co., ltd
- 001a45 gn netcom as
+ 001a45 gn netcom a/s
001a46 digital multimedia technology co., ltd
001a47 agami systems, inc.
001a48 takacom corporation
001a49 micro vision co.,ltd
001a4a qumranet inc.
- 001a4b hewlett-packard company
+ 001a4b hewlett packard
001a4c crossbow technology, inc
001a4d giga-byte technology co.,ltd.
001a4e nti ag / linmot
@@ -6749,8 +6751,8 @@ exit
001a69 wuhan yangtze optical technology co.,ltd.
001a6a tranzas, inc.
001a6b universal global scientific industrial co., ltd.
- 001a6c cisco systems, inc.
- 001a6d cisco systems, inc.
+ 001a6c cisco systems, inc
+ 001a6d cisco systems, inc
001a6e impro technologies
001a6f mi.tel s.r.l.
001a70 cisco-linksys, llc
@@ -6758,7 +6760,7 @@ exit
001a72 mosart semiconductor corp.
001a73 gemtek technology co., ltd.
001a74 procare international co
- 001a75 sony ericsson mobile communications
+ 001a75 sony mobile communications inc
001a76 sdt information technology co.,ltd.
001a77 arris group, inc.
001a78 ubtos
@@ -6768,24 +6770,24 @@ exit
001a7c hirschmann multimedia b.v.
001a7d cyber-blue(hk)ltd
001a7e ln srithai comm ltd.
- 001a7f gci science&technology co.,ltd.
+ 001a7f gci science & technology co.,ltd
001a80 sony corporation
001a81 zelax
001a82 proba building automation co.,ltd
001a83 pegasus technologies inc.
001a84 v one multimedia pte ltd
001a85 nv michel van de wiele
- 001a86 advancedio systems inc
+ 001a86 new wave design & verification
001a87 canhold international limited
001a88 venergy,co,ltd
001a89 nokia danmark a/s
- 001a8a samsung electronics co., ltd.
+ 001a8a samsung electronics co.,ltd
001a8b chunil electric ind., co.
- 001a8c astaro ag
+ 001a8c sophos ltd
001a8d avecs bergen gmbh
001a8e 3way networks ltd
- 001a8f nortel
- 001a90 trópico sistemas e telecomunicações da amazônia ltda.
+ 001a8f nortel networks
+ 001a90 trópico sistemas e telecomunicações da amazônia ltda.
001a91 fusiondynamic ltd.
001a92 asustek computer inc.
001a93 erco leuchten gmbh
@@ -6795,15 +6797,15 @@ exit
001a97 fitivision technology inc.
001a98 asotel communication limited taiwan branch
001a99 smarty (hz) information electronics co., ltd
- 001a9a skyworth digital technology(shenzhen)co.ltd.
+ 001a9a skyworth digital technology(shenzhen) co.,ltd
001a9b adec & parter ag
001a9c righthand technologies, inc.
001a9d skipper wireless, inc.
001a9e icon digital international limited
001a9f a-link ltd
- 001aa0 dell inc
- 001aa1 cisco systems, inc.
- 001aa2 cisco systems, inc.
+ 001aa0 dell inc.
+ 001aa1 cisco systems, inc
+ 001aa2 cisco systems, inc
001aa3 delorme
001aa4 future university-hakodate
001aa5 brn phoenix
@@ -6837,8 +6839,8 @@ exit
001ac1 3com ltd
001ac2 yec co.,ltd.
001ac3 scientific-atlanta, inc
- 001ac4 2wire, inc
- 001ac5 breakingpoint systems, inc.
+ 001ac4 2wire inc
+ 001ac5 keysight technologies, inc.
001ac6 micro control designs
001ac7 unipoint
001ac8 isl (instrumentation scientifique de laboratoire)
@@ -6867,21 +6869,21 @@ exit
001adf interactivetv pty limited
001ae0 mythology tech express inc.
001ae1 edge access inc
- 001ae2 cisco systems, inc.
- 001ae3 cisco systems, inc.
+ 001ae2 cisco systems, inc
+ 001ae3 cisco systems, inc
001ae4 medicis technologies corporation
001ae5 mvox technologies inc.
001ae6 atlanta advanced communications holdings limited
001ae7 aztek networks, inc.
- 001ae8 unify gmbh and co kg
+ 001ae8 unify software and solutions gmbh & co. kg
001ae9 nintendo co., ltd.
001aea radio terminal systems pty ltd
- 001aeb allied telesis k.k.
+ 001aeb allied telesis r&d center k.k.
001aec keumbee electronics co.,ltd.
001aed incotec gmbh
001aee shenztech ltd
001aef loopcomm technology, inc.
- 001af0 alcatel - ipd
+ 001af0 alcatel-lucent ipd
001af1 embedded artists ab
001af2 dynavisions schweiz ag
001af3 samyoung electronics
@@ -6909,8 +6911,8 @@ exit
001b09 matrix telecom pvt. ltd.
001b0a intelligent distributed controls ltd
001b0b phidgets inc.
- 001b0c cisco systems, inc.
- 001b0d cisco systems, inc.
+ 001b0c cisco systems, inc
+ 001b0d cisco systems, inc
001b0e inotec gmbh organisationssysteme
001b0f petratec
001b10 shenzhen kang hui technology co.,ltd
@@ -6934,17 +6936,17 @@ exit
001b22 palit microsystems ( h.k.) ltd.
001b23 simplecomtools
001b24 quanta computer inc.
- 001b25 nortel
+ 001b25 nortel networks
001b26 ron-telecom zao
001b27 merlin csi
001b28 polygon, jsc
001b29 avantis.co.,ltd
- 001b2a cisco systems, inc.
- 001b2b cisco systems, inc.
+ 001b2a cisco systems, inc
+ 001b2b cisco systems, inc
001b2c atron electronic gmbh
001b2d med-eng systems inc.
001b2e sinkyo electron inc
- 001b2f netgear inc.
+ 001b2f netgear
001b30 solitech inc.
001b31 neural image. co. ltd.
001b32 qlogic corporation
@@ -6953,7 +6955,7 @@ exit
001b35 chongqing jinou science & technology development co.,ltd
001b36 tsubata engineering co.,ltd. (head office)
001b37 computec oy
- 001b38 compal information (kunshan) co., ltd.
+ 001b38 compal information (kunshan) co., ltd.
001b39 proxicast
001b3a sims corp.
001b3b yi-qing co., ltd
@@ -6976,19 +6978,19 @@ exit
001b4c signtech
001b4d areca technology corporation
001b4e navman new zealand
- 001b4f avaya inc.
+ 001b4f avaya inc
001b50 nizhny novgorod factory named after m.frunze, fsue (nzif)
001b51 vector technology corp.
001b52 arris group, inc.
- 001b53 cisco systems, inc.
- 001b54 cisco systems, inc.
+ 001b53 cisco systems, inc
+ 001b54 cisco systems, inc
001b55 hurco automation ltd.
001b56 tehuti networks ltd.
001b57 semindia systems private limited
001b58 ace cad enterprise co., ltd.
- 001b59 sony ericsson mobile communications ab
+ 001b59 sony mobile communications inc
001b5a apollo imaging technologies, inc.
- 001b5b 2wire, inc.
+ 001b5b 2wire inc
001b5c azuretec co., ltd.
001b5d vololink pty ltd
001b5e bpl limited
@@ -6996,7 +6998,7 @@ exit
001b60 navigon ag
001b61 digital acoustics, llc
001b62 jht optoelectronics co.,ltd.
- 001b63 apple
+ 001b63 apple, inc.
001b64 isaaclandkorea co., ltd,
001b65 china gridcom co., ltd
001b66 sennheiser electronic gmbh & co. kg
@@ -7007,7 +7009,7 @@ exit
001b6b swyx solutions ag
001b6c lookx digital media bv
001b6d midtronics, inc.
- 001b6e anue systems, inc.
+ 001b6e keysight technologies, inc.
001b6f teletrak ltd
001b70 iri ubiteq, inc.
001b71 telular corp.
@@ -7017,7 +7019,7 @@ exit
001b75 hypermedia systems
001b76 ripcode, inc.
001b77 intel corporate
- 001b78 hewlett-packard company
+ 001b78 hewlett packard
001b79 faiveley transport
001b7a nintendo co., ltd.
001b7b the tintometer ltd
@@ -7030,18 +7032,18 @@ exit
001b82 taiwan semiconductor co., ltd.
001b83 finsoft ltd
001b84 scan engineering telecom
- 001b85 man diesel se
+ 001b85 man energy solutions
001b86 bosch access systems gmbh
001b87 deepsound tech. co., ltd
001b88 divinet access technologies ltd
001b89 emza visual sense ltd.
001b8a 2m electronic a/s
- 001b8b nec accesstechnica, ltd.
+ 001b8b nec platforms, ltd.
001b8c jmicron technology corp.
001b8d electronic computer systems, inc.
001b8e hulu sweden ab
- 001b8f cisco systems, inc.
- 001b90 cisco systems, inc.
+ 001b8f cisco systems, inc
+ 001b90 cisco systems, inc
001b91 efkon ag
001b92 l-acoustics
001b93 jc decaux sa dnt
@@ -7049,13 +7051,13 @@ exit
001b95 video systems srl
001b96 general sensing
001b97 violin technologies
- 001b98 samsung electronics co., ltd.
+ 001b98 samsung electronics co.,ltd
001b99 ks system gmbh
001b9a apollo fire detectors ltd
001b9b hose-mccann communications
001b9c satel sp. z o.o.
001b9d novus security sp. z o.o.
- 001b9e askey computer corp
+ 001b9e askey computer corp
001b9f calyptech pty ltd
001ba0 awox
001ba1 Åmic ab
@@ -7073,22 +7075,22 @@ exit
001bad icontrol incorporated
001bae micro control systems, inc
001baf nokia danmark a/s
- 001bb0 bharat electronics
- 001bb1 wistron neweb corp.
+ 001bb0 bharat electronics limited
+ 001bb1 wistron neweb corporation
001bb2 intellect international nv
001bb3 condalo gmbh
001bb4 airvod limited
- 001bb5 zf electronics gmbh
+ 001bb5 cherry gmbh
001bb6 bird electronic corp.
001bb7 alta heights technology corp.
001bb8 blueway electronic co;ltd
- 001bb9 elitegroup computer system co.
- 001bba nortel
+ 001bb9 elitegroup computer systems co.,ltd.
+ 001bba nortel networks
001bbb rftech co.,ltd
001bbc silver peak systems, inc.
001bbd fmc kongsberg subsea as
001bbe icop digital
- 001bbf sagem communication
+ 001bbf sagemcom broadband sas
001bc0 juniper networks
001bc1 holux technology, inc.
001bc2 integrated control technology limitied
@@ -7108,13 +7110,13 @@ exit
001bd0 identec solutions
001bd1 sogestmatic
001bd2 ultra-x asia pacific inc.
- 001bd3 panasonic corp. avc company
- 001bd4 cisco systems, inc.
- 001bd5 cisco systems, inc.
+ 001bd3 panasonic corporation avc networks company
+ 001bd4 cisco systems, inc
+ 001bd5 cisco systems, inc
001bd6 kelvin hughes ltd
- 001bd7 scientific atlanta, a cisco company
- 001bd8 dvtel ltd
- 001bd9 edgewater computer systems
+ 001bd7 cisco spvtg
+ 001bd8 flir systems inc
+ 001bd9 edgewater wireless systems inc
001bda utstarcom inc
001bdb valeo vecs
001bdc vencer co., ltd.
@@ -7130,11 +7132,11 @@ exit
001be6 vr ag
001be7 postek electronics co., ltd.
001be8 ultratronik gmbh
- 001be9 broadcom corporation
+ 001be9 broadcom
001bea nintendo co., ltd.
001beb dmp electronics inc.
001bec netio technologies co., ltd
- 001bed brocade communications systems, inc
+ 001bed brocade communications systems llc
001bee nokia danmark a/s
001bef blossoms digital technology co.,ltd.
001bf0 value platforms limited
@@ -7148,7 +7150,7 @@ exit
001bf8 digitrax inc.
001bf9 intellitect water ltd
001bfa g.i.n. mbh
- 001bfb alps electric co., ltd
+ 001bfb alpsalpine co,.ltd
001bfc asustek computer inc.
001bfd dignsys inc.
001bfe zavio inc.
@@ -7167,16 +7169,16 @@ exit
001c0b smartant telecom
001c0c tanita corporation
001c0d g-technology, inc.
- 001c0e cisco systems, inc.
- 001c0f cisco systems, inc.
+ 001c0e cisco systems, inc
+ 001c0f cisco systems, inc
001c10 cisco-linksys, llc
001c11 arris group, inc.
001c12 arris group, inc.
001c13 optsys technology co., ltd.
- 001c14 vmware, inc
- 001c15 txp corporation
+ 001c14 vmware, inc.
+ 001c15 iphotonix llc
001c16 thyssenkrupp elevator
- 001c17 nortel
+ 001c17 nortel networks
001c18 sicert s.r.l.
001c19 secunet security networks ag
001c1a thomas instrumentation, inc
@@ -7188,12 +7190,12 @@ exit
001c20 clb benelux
001c21 nucsafe inc.
001c22 aeris elettronica s.r.l.
- 001c23 dell inc
+ 001c23 dell inc.
001c24 formosa wireless systems corp.
001c25 hon hai precision ind. co.,ltd.
001c26 hon hai precision ind. co.,ltd.
001c27 sunell electronics co.
- 001c28 sphairon technologies gmbh
+ 001c28 sphairon technologies gmbh
001c29 core digital electronics co., ltd
001c2a envisacor technologies inc.
001c2b alertme.com limited
@@ -7233,15 +7235,15 @@ exit
001c4d aplix ip holdings corporation
001c4e tasa international limited
001c4f macab ab
- 001c50 tcl technoly electronics(huizhou)co.,ltd
+ 001c50 tcl technoly electronics (huizhou) co., ltd.
001c51 celeno communications
001c52 visionee srl
001c53 synergy lighting controls
001c54 hillstone networks inc
001c55 shenzhen kaifa technology co.
001c56 pado systems, inc.
- 001c57 cisco systems, inc.
- 001c58 cisco systems, inc.
+ 001c57 cisco systems, inc
+ 001c58 cisco systems, inc
001c59 devon it
001c5a advanced relay corporation
001c5b chubb electronic security systems ltd
@@ -7251,7 +7253,7 @@ exit
001c5f winland electronics, inc.
001c60 csp frontier technologies,inc.
001c61 galaxy microsystems limited
- 001c62 lg electronics inc
+ 001c62 lg electronics (mobile communications)
001c63 truen
001c64 landis+gyr
001c65 joescan, inc.
@@ -7261,16 +7263,16 @@ exit
001c69 packet vision ltd
001c6a weiss engineering ltd.
001c6b covax co. ltd
- 001c6c jabil circuit (guangzhou) limited
+ 001c6c 30805
001c6d kyohritsu electronic industry co., ltd.
001c6e newbury networks, inc.
001c6f emfit ltd
001c70 novacomm ltda
001c71 emergent electronics
001c72 mayer & cie gmbh & co kg
- 001c73 arista networks, inc.
+ 001c73 arista networks
001c74 syswan technologies inc.
- 001c75 rf systems gmbh
+ 001c75 segnet ltd.
001c76 the wandsworth group ltd
001c77 prodys
001c78 wyplay sas
@@ -7298,7 +7300,7 @@ exit
001c8e alcatel-lucent ipd
001c8f advanced electronic design, inc.
001c90 empacket corporation
- 001c91 gefen inc.
+ 001c91 gefen llc
001c92 tervela
001c93 exadigm inc
001c94 li-cor biosciences
@@ -7309,7 +7311,7 @@ exit
001c99 shunra software ltd.
001c9a nokia danmark a/s
001c9b feig electronic gmbh
- 001c9c nortel
+ 001c9c nortel networks
001c9d liecthi ag
001c9e dualtech it ab
001c9f razorstream, llc
@@ -7317,7 +7319,7 @@ exit
001ca1 akamai technologies, inc.
001ca2 adb broadband italia
001ca3 terra
- 001ca4 sony ericsson mobile communications
+ 001ca4 sony mobile communications inc
001ca5 zygo corporation
001ca6 win4net
001ca7 international quartz limited
@@ -7329,10 +7331,10 @@ exit
001cad wuhan telecommunication devices co.,ltd
001cae wichorus, inc.
001caf plato networks inc.
- 001cb0 cisco systems, inc.
- 001cb1 cisco systems, inc.
+ 001cb0 cisco systems, inc
+ 001cb1 cisco systems, inc
001cb2 bpt spa
- 001cb3 apple
+ 001cb3 apple, inc.
001cb4 iridium satellite llc
001cb5 neihua network technology co.,ltd.(nhn)
001cb6 duzon cnt co., ltd.
@@ -7348,8 +7350,8 @@ exit
001cc0 intel corporate
001cc1 arris group, inc.
001cc2 part ii research, inc.
- 001cc3 pace plc
- 001cc4 hewlett-packard company
+ 001cc3 arris group, inc.
+ 001cc4 hewlett packard
001cc5 3com ltd
001cc6 prostor systems
001cc7 rembrandt technologies, llc d/b/a remstream
@@ -7357,7 +7359,7 @@ exit
001cc9 kaise electronic technology co., ltd.
001cca shanghai gaozhi science & technology development co.
001ccb forth corporation public company limited
- 001ccc research in motion limited
+ 001ccc blackberry rts
001ccd alektrona corporation
001cce by techdesign
001ccf limetek
@@ -7388,25 +7390,25 @@ exit
001ce8 cummins inc
001ce9 galaxy technology limited
001cea scientific-atlanta, inc
- 001ceb nortel
+ 001ceb nortel networks
001cec mobilesoft (aust.) pty ltd
001ced environnement sa
001cee sharp corporation
- 001cef primax electronics ltd
+ 001cef primax electronics ltd.
001cf0 d-link corporation
001cf1 supox technology co. , ltd.
001cf2 tenlon technology co.,ltd.
001cf3 evs broadcast equipment
001cf4 media technology systems inc
001cf5 wiseblue technology limited
- 001cf6 cisco systems, inc.
+ 001cf6 cisco systems, inc
001cf7 audioscience
001cf8 parade technologies, ltd.
- 001cf9 cisco systems, inc.
+ 001cf9 cisco systems, inc
001cfa alarm.com
001cfb arris group, inc.
- 001cfc suminet communication technologies (shanghai) co., ltd.
- 001cfd universal electronics
+ 001cfc sumitomo electric industries, ltd
+ 001cfd universal electronics, inc.
001cfe quartics inc
001cff napera networks inc
001d00 brivo systems, llc
@@ -7414,24 +7416,24 @@ exit
001d02 cybertech telecom development
001d03 design solutions inc.
001d04 zipit wireless, inc.
- 001d05 ilight
+ 001d05 cooper lighting solutions
001d06 hm electronics, inc.
001d07 shenzhen sang fei consumer communications co.,ltd
- 001d08 jiangsu yinhe electronics co., ltd
- 001d09 dell inc
+ 001d08 jiangsu yinhe electronics co.,ltd.
+ 001d09 dell inc.
001d0a davis instruments, inc.
001d0b power standards lab
001d0c mobilecompia
- 001d0d sony computer entertainment inc.
+ 001d0d sony interactive entertainment inc.
001d0e agapha technology co., ltd.
- 001d0f tp-link technologies co., ltd.
+ 001d0f tp-link technologies co.,ltd.
001d10 lighthaus logic, inc.
001d11 analogue & micro ltd
001d12 rohm co., ltd.
001d13 nextgtv
001d14 speradtone information technology limited
001d15 shenzhen dolphin electronic co., ltd
- 001d16 efixo
+ 001d16 sfr
001d17 digital sky corporation
001d18 power innovation gmbh
001d19 arcadyan technology corporation
@@ -7441,15 +7443,15 @@ exit
001d1d inter-m corporation
001d1e kyushu ten co.,ltd
001d1f siauliu tauro televizoriai, jsc
- 001d20 comtrend co.
+ 001d20 comtrend corporation
001d21 alcad sl
001d22 foss analytical a/s
- 001d23 sensus
+ 001d23 sensus
001d24 aclara power-line systems inc.
001d25 samsung electronics co.,ltd
001d26 rockridgesound technology co.
001d27 nac-intercom
- 001d28 sony ericsson mobile communications ab
+ 001d28 sony mobile communications inc
001d29 doro ab
001d2a shenzhen bul-tech co.,ltd.
001d2b wuhan pont technology co. , ltd
@@ -7475,11 +7477,11 @@ exit
001d3f mitron pty ltd
001d40 intel – ge care innovations llc
001d41 hardy instruments
- 001d42 nortel
+ 001d42 nortel networks
001d43 shenzhen g-link digital technology co., ltd.
001d44 krohne
- 001d45 cisco systems, inc.
- 001d46 cisco systems, inc.
+ 001d45 cisco systems, inc
+ 001d46 cisco systems, inc
001d47 covote gmbh & co kg
001d48 sensor-technik wiedemann gmbh
001d49 innovation wireless inc.
@@ -7488,7 +7490,7 @@ exit
001d4c alcatel-lucent
001d4d adaptive recognition hungary, inc
001d4e tcm mobile llc
- 001d4f apple
+ 001d4f apple, inc.
001d50 spinetix sa
001d51 babcock & wilcox power generation group, inc
001d52 defzone b.v.
@@ -7499,7 +7501,7 @@ exit
001d57 caetec messtechnik
001d58 cq inc
001d59 mitra energy & infrastructure
- 001d5a 2wire inc.
+ 001d5a 2wire inc
001d5b tecvan informática ltda
001d5c tom communication industrial co.,ltd.
001d5d control dynamics pty. ltd.
@@ -7521,10 +7523,10 @@ exit
001d6d confidant international llc
001d6e nokia danmark a/s
001d6f chainzone technology co., ltd
- 001d70 cisco systems, inc.
- 001d71 cisco systems, inc.
+ 001d70 cisco systems, inc
+ 001d71 cisco systems, inc
001d72 wistron corporation
- 001d73 buffalo inc.
+ 001d73 buffalo.inc
001d74 tianjin china-silicon microelectronics co., ltd.
001d75 radioscape plc
001d76 eyeheight ltd.
@@ -7539,7 +7541,7 @@ exit
001d7f tekron international ltd
001d80 beijing huahuan eletronics co.,ltd
001d81 guangzhou gateway electronics co., ltd
- 001d82 gn a/s (gn netcom a/s)
+ 001d82 gn netcom a/s
001d83 emitech corporation
001d84 gateway, inc.
001d85 call direct cellular solutions
@@ -7550,7 +7552,7 @@ exit
001d8a techtrex inc
001d8b adb broadband italia
001d8c la crosse technology ltd
- 001d8d raytek gmbh
+ 001d8d fluke process instruments gmbh
001d8e alereon, inc.
001d8f purewave networks
001d90 emco flow systems
@@ -7570,8 +7572,8 @@ exit
001d9e axion technologies
001d9f matt r.p.traczynscy sp.j.
001da0 heng yu electronic manufacturing company limited
- 001da1 cisco systems, inc.
- 001da2 cisco systems, inc.
+ 001da1 cisco systems, inc
+ 001da2 cisco systems, inc
001da3 sabioso
001da4 hangzhou system technology co., ltd
001da5 wb electronics
@@ -7584,7 +7586,7 @@ exit
001dac gigamon systems llc
001dad sinotech engineering consultants, inc. geotechnical enginee
001dae chang tseng technology co., ltd
- 001daf nortel
+ 001daf nortel networks
001db0 fujian hengtong information technology co.,ltd
001db1 crescendo networks
001db2 hokkaido electric engineering co.,ltd.
@@ -7613,7 +7615,7 @@ exit
001dc9 gainspan corp.
001dca pav electronics limited
001dcb exéns development oy
- 001dcc hetra secure solutions
+ 001dcc ayon cyber security, inc
001dcd arris group, inc.
001dce arris group, inc.
001dcf arris group, inc.
@@ -7626,20 +7628,20 @@ exit
001dd6 arris group, inc.
001dd7 algolith
001dd8 microsoft corporation
- 001dd9 hon hai precision ind.co.,ltd.
+ 001dd9 hon hai precision ind. co.,ltd.
001dda mikroelektronika spol. s r. o.
001ddb c-bel corporation
001ddc hangzhou dechanglong tech&info co.,ltd
001ddd dat h.k. limited
001dde zhejiang broadcast&television technology co.,ltd.
- 001ddf sunitec enterprise co., ltd.
+ 001ddf sunitec enterprise co.,ltd
001de0 intel corporate
001de1 intel corporate
001de2 radionor communications
001de3 intuicom
001de4 visioneered image systems
- 001de5 cisco systems, inc.
- 001de6 cisco systems, inc.
+ 001de5 cisco systems, inc
+ 001de6 cisco systems, inc
001de7 marine sonic technology, ltd.
001de8 nikko denki tsushin corporation(ndtc)
001de9 nokia danmark a/s
@@ -7676,16 +7678,16 @@ exit
001e08 centec networks inc
001e09 zefatek co.,ltd
001e0a syba tech limited
- 001e0b hewlett-packard company
+ 001e0b hewlett packard
001e0c sherwood information partners, inc.
001e0d micran ltd.
001e0e maxi view holdings limited
001e0f briot international
- 001e10 shenzhen huawei communication technologies co.,ltd.
+ 001e10 huawei technologies co.,ltd
001e11 elelux international ltd
001e12 ecolab
- 001e13 cisco systems, inc.
- 001e14 cisco systems, inc.
+ 001e13 cisco systems, inc
+ 001e14 cisco systems, inc
001e15 beech hill electronics
001e16 keytronix
001e17 stn bv
@@ -7696,25 +7698,25 @@ exit
001e1c sws australia pty limited
001e1d east coast datacom, inc.
001e1e honeywell life safety
- 001e1f nortel
+ 001e1f nortel networks
001e20 intertain inc.
- 001e21 qisda co.
+ 001e21 qisda corporation
001e22 arvoo imaging products bv
001e23 electronic educational devices, inc
001e24 zhejiang bell technology co.,ltd
- 001e25 intek digital inc
+ 001e25 intek digital
001e26 digifriends co. ltd
001e27 sbn tech co.,ltd.
001e28 lumexis corporation
001e29 hypertherm inc
- 001e2a netgear inc.
+ 001e2a netgear
001e2b radio systems design, inc.
001e2c cyverse corporation
001e2d stim
001e2e sirti s.p.a.
001e2f dimoto pty ltd
001e30 shireen inc
- 001e31 infomark co.,ltd.
+ 001e31 infomark
001e32 zensys
001e33 inventec corporation
001e34 cryptometrics
@@ -7726,28 +7728,28 @@ exit
001e3a nokia danmark a/s
001e3b nokia danmark a/s
001e3c lyngbox media ab
- 001e3d alps electric co., ltd
+ 001e3d alpsalpine co,.ltd
001e3e kmw inc.
001e3f trellisware technologies, inc.
- 001e40 shanghai dareglobal technologies co.,ltd.
+ 001e40 shanghai dareglobal technologies co.,ltd
001e41 microwave communication & component, inc.
001e42 teltonika
001e43 aisin aw co.,ltd.
001e44 santec
- 001e45 sony ericsson mobile communications ab
+ 001e45 sony mobile communications inc
001e46 arris group, inc.
001e47 pt. hariff daya tunggal engineering
001e48 wi-links
- 001e49 cisco systems, inc.
- 001e4a cisco systems, inc.
+ 001e49 cisco systems, inc
+ 001e4a cisco systems, inc
001e4b city theatrical
- 001e4c hon hai precision ind.co., ltd.
+ 001e4c hon hai precision ind. co.,ltd.
001e4d welkin sciences, llc
001e4e dako edv-ingenieur- und systemhaus gmbh
001e4f dell inc.
001e50 battistoni research
001e51 converter industry srl
- 001e52 apple
+ 001e52 apple, inc.
001e53 further tech co., ltd
001e54 toyo electric corporation
001e55 cowon systems,inc.
@@ -7769,31 +7771,31 @@ exit
001e65 intel corporate
001e66 resol elektronische regelungen gmbh
001e67 intel corporate
- 001e68 quanta computer
+ 001e68 quanta computer inc.
001e69 thomson inc.
001e6a beijing bluexon technology co.,ltd
001e6b cisco spvtg
- 001e6c carbon mountain llc
+ 001e6c opaque systems
001e6d it r&d center
001e6e shenzhen first mile communications ltd
001e6f magna-power electronics, inc.
- 001e70 cobham defence communications ltd
+ 001e70 cobham antenna systems
001e71 mircom group of companies
001e72 pcs
001e73 zte corporation
- 001e74 sagem communication
- 001e75 lg electronics
+ 001e74 sagemcom broadband sas
+ 001e75 lg electronics (mobile communications)
001e76 thermo fisher scientific
001e77 air2app
001e78 owitek technology ltd.,
- 001e79 cisco systems, inc.
- 001e7a cisco systems, inc.
+ 001e79 cisco systems, inc
+ 001e7a cisco systems, inc
001e7b r.i.co. s.r.l.
001e7c taiwick limited
001e7d samsung electronics co.,ltd
- 001e7e nortel
+ 001e7e nortel networks
001e7f cbm of america
- 001e80 last mile ltd.
+ 001e80 icotera a/s
001e81 cnb technology inc.
001e82 sandisk corporation
001e83 lan/man standards association (lmsc)
@@ -7809,7 +7811,7 @@ exit
001e8d arris group, inc.
001e8e hunkeler ag
001e8f canon inc.
- 001e90 elitegroup computer systems co
+ 001e90 elitegroup computer systems co.,ltd.
001e91 kimin electronic co., ltd.
001e92 jeulin s.a.
001e93 ciritech systems inc
@@ -7839,7 +7841,7 @@ exit
001eab telewell oy
001eac armadeus systems
001ead wingtech group limited
- 001eae continental automotive systems
+ 001eae continental automotive systems inc.
001eaf ophir optronics ltd
001eb0 imesd electronica s.l.
001eb1 cryptsoft pty ltd
@@ -7849,47 +7851,47 @@ exit
001eb5 ever sparkle technologies ltd
001eb6 tag heuer sa
001eb7 tbtech, co., ltd.
- 001eb8 fortis, inc.
+ 001eb8 aloys, inc
001eb9 sing fai technology limited
001eba high density devices as
001ebb bluelight technology inc.
001ebc wintech automation co.,ltd.
- 001ebd cisco systems, inc.
- 001ebe cisco systems, inc.
+ 001ebd cisco systems, inc
+ 001ebe cisco systems, inc
001ebf haas automation inc.
001ec0 microchip technology inc.
001ec1 3com europe ltd
- 001ec2 apple
+ 001ec2 apple, inc.
001ec3 kozio, inc.
001ec4 celio corp
001ec5 middle atlantic products inc
001ec6 obvius holdings llc
- 001ec7 2wire, inc.
- 001ec8 2wire, inc.
- 001ec9 2wire, inc.
- 001eca 2wire, inc.
- 001ecb 2wire, inc.
- 001ecc 2wire, inc.
+ 001ec7 2wire inc
+ 001ec8 rapid mobile (pty) ltd
+ 001ec9 dell inc.
+ 001eca nortel networks
+ 001ecb rpc energoautomatika ltd
+ 001ecc cdvi
001ecd kyland technology co. ltd
- 001ece 2wire, inc.
- 001ecf 2wire, inc.
- 001ed0 2wire, inc.
- 001ed1 2wire, inc.
- 001ed2 2wire, inc.
- 001ed3 2wire, inc.
- 001ed4 2wire, inc.
- 001ed5 2wire, inc.
- 001ed6 2wire, inc.
- 001ed7 2wire, inc.
- 001ed8 2wire, inc.
- 001ed9 2wire, inc.
- 001eda 2wire, inc.
- 001edb 2wire, inc.
- 001edc 2wire, inc.
- 001edd 2wire, inc.
- 001ede 2wire, inc.
- 001edf 2wire, inc.
- 001ee0 urmet domus spa
+ 001ece bisa technologies (hong kong) limited
+ 001ecf philips electronics uk ltd
+ 001ed0 ingespace
+ 001ed1 keyprocessor b.v.
+ 001ed2 ray shine video technology inc
+ 001ed3 dot technology int'l co., ltd.
+ 001ed4 doble engineering
+ 001ed5 tekon-automatics
+ 001ed6 alentec & orion ab
+ 001ed7 h-stream wireless, inc.
+ 001ed8 digital united inc.
+ 001ed9 mitsubishi precision co.,ltd.
+ 001eda wesemann elektrotechniek b.v.
+ 001edb giken trastem co., ltd.
+ 001edc sony mobile communications inc
+ 001edd wasko s.a.
+ 001ede byd company limited
+ 001edf master industrialization center kista
+ 001ee0 urmet spa
001ee1 samsung electronics co.,ltd
001ee2 samsung electronics co.,ltd
001ee3 t&w electronics (shenzhen) co.,ltd
@@ -7901,7 +7903,7 @@ exit
001ee9 stoneridge electronics ab
001eea sensor switch, inc.
001eeb talk-a-phone co.
- 001eec compal information (kunshan) co., ltd.
+ 001eec compal information (kunshan) co., ltd.
001eed adventiq ltd.
001eee etl systems ltd
001eef cantronic international limited
@@ -7911,13 +7913,13 @@ exit
001ef3 from2
001ef4 l-3 communications display systems
001ef5 hitek automated inc.
- 001ef6 cisco systems, inc.
- 001ef7 cisco systems, inc.
+ 001ef6 cisco systems, inc
+ 001ef7 cisco systems, inc
001ef8 emfinity inc.
001ef9 pascom kommunikations systeme gmbh.
001efa protei ltd.
001efb trio motion technology ltd
- 001efc jsc "massa-k"
+ 001efc jsc massa-k
001efd microbit 2.0 ab
001efe level s.r.o.
001eff mueller-elektronik gmbh & co. kg
@@ -7930,9 +7932,9 @@ exit
001f06 integrated dispatch solutions
001f07 azteq mobile
001f08 risco ltd
- 001f09 jastec co., ltd.
- 001f0a nortel
- 001f0b federal state unitary enterprise industrial union"electropribor"
+ 001f09 jastec
+ 001f0a nortel networks
+ 001f0b federal state unitary enterprise industrial unionelectropribor
001f0c intelligent digital services gmbh
001f0d l3 communications - telemetry west
001f0e japan kyastem co., ltd
@@ -7959,10 +7961,10 @@ exit
001f23 interacoustics
001f24 digitview technology co., ltd.
001f25 mbs gmbh
- 001f26 cisco systems, inc.
- 001f27 cisco systems, inc.
+ 001f26 cisco systems, inc
+ 001f27 cisco systems, inc
001f28 hpn supply chain
- 001f29 hewlett-packard company
+ 001f29 hewlett packard
001f2a accm
001f2b orange logic
001f2c starbridge networks
@@ -7972,14 +7974,14 @@ exit
001f30 travelping
001f31 radiocomp
001f32 nintendo co., ltd.
- 001f33 netgear inc.
+ 001f33 netgear
001f34 lung hwa electronics co., ltd.
001f35 air802 llc
001f36 bellwin information co. ltd.,
001f37 genesis i&c
001f38 positron
001f39 construcciones y auxiliar de ferrocarriles, s.a.
- 001f3a hon hai precision ind.co., ltd.
+ 001f3a hon hai precision ind. co.,ltd.
001f3b intel corporate
001f3c intel corporate
001f3d qbit gmbh
@@ -7991,10 +7993,10 @@ exit
001f43 entes elektronik
001f44 ge transportation systems
001f45 enterasys
- 001f46 nortel
+ 001f46 nortel networks
001f47 mcs logic inc.
001f48 mojix inc.
- 001f49 eurosat distribution ltd
+ 001f49 manhattan tv ltd
001f4a albentia systems s.a.
001f4b lineage power
001f4c roseman engineering ltd
@@ -8004,7 +8006,7 @@ exit
001f50 swissdis ag
001f51 hd communications corp
001f52 uvt unternehmensberatung fur verkehr und technik gmbh
- 001f53 gemac gesellschaft für mikroelektronikanwendung chemnitz mbh
+ 001f53 gemac chemnitz gmbh
001f54 lorex technology inc.
001f55 honeywell security (china) co., ltd.
001f56 digital forecast
@@ -8012,14 +8014,14 @@ exit
001f58 emh energiemesstechnik gmbh
001f59 kronback tracers
001f5a beckwith electric co.
- 001f5b apple
+ 001f5b apple, inc.
001f5c nokia danmark a/s
001f5d nokia danmark a/s
001f5e dyna technology co.,ltd.
001f5f blatand gmbh
001f60 compass systems corp.
001f61 talent communication networks inc.
- 001f62 jsc "stilsoft"
+ 001f62 jsc stilsoft
001f63 jsc goodwin-europa
001f64 beijing autelan technology inc.
001f65 korea electric terminal co., ltd.
@@ -8028,9 +8030,9 @@ exit
001f68 martinsson elektronik ab
001f69 pingood technology co., ltd.
001f6a packetflux technologies, inc.
- 001f6b lg electronics
- 001f6c cisco systems, inc.
- 001f6d cisco systems, inc.
+ 001f6b lg electronics (mobile communications)
+ 001f6c cisco systems, inc
+ 001f6d cisco systems, inc
001f6e vtech engineering corporation
001f6f fujian sunnada communication co.,ltd.
001f70 botik technologies ltd
@@ -8051,7 +8053,7 @@ exit
001f7f phabrix limited
001f80 lucas holding bv
001f81 accel semiconductor corp
- 001f82 cal-comp electronics & communications co., ltd
+ 001f82 cal-comp electronics & communications company ltd.
001f83 teleplan technology services sdn bhd
001f84 gigle semiconductor
001f85 apriva iss, llc
@@ -8067,10 +8069,10 @@ exit
001f8f shanghai bellmann digital source co.,ltd.
001f90 actiontec electronics, inc
001f91 dbs lodging technologies, llc
- 001f92 videoiq, inc.
+ 001f92 motorola solutions inc.
001f93 xiotech corporation
001f94 lascar electronics ltd
- 001f95 sagem communication
+ 001f95 sagemcom broadband sas
001f96 aprotech co.ltd
001f97 bertana srl
001f98 daiichi-dentsu ltd.
@@ -8078,17 +8080,17 @@ exit
001f9a nortel networks
001f9b posbro
001f9c ledco
- 001f9d cisco systems, inc.
- 001f9e cisco systems, inc.
+ 001f9d cisco systems, inc
+ 001f9e cisco systems, inc
001f9f thomson telecom belgium
001fa0 a10 networks
001fa1 gtran inc
001fa2 datron world communications, inc.
001fa3 t&w electronics(shenzhen)co.,ltd.
- 001fa4 shenzhen gongjin electronics co.,ltd
+ 001fa4 shenzhen gongjin electronics co.,lt
001fa5 blue-white industries
001fa6 stilo srl
- 001fa7 sony computer entertainment inc.
+ 001fa7 sony interactive entertainment inc.
001fa8 smart energy instruments inc.
001fa9 atlanta dth, inc.
001faa taseon, inc.
@@ -8100,14 +8102,14 @@ exit
001fb0 timeips, inc.
001fb1 cybertech inc.
001fb2 sontheim industrie elektronik gmbh
- 001fb3 2wire
+ 001fb3 2wire inc
001fb4 smartshare systems
001fb5 i/o interconnect inc.
001fb6 chi lin technology co., ltd.
001fb7 wimate technologies corp.
001fb8 universal remote control, inc.
001fb9 paltronics
- 001fba boyoung tech. & marketing, inc.
+ 001fba boyoung tech
001fbb xenatech co.,ltd
001fbc evga corporation
001fbd kyocera wireless corp.
@@ -8120,13 +8122,13 @@ exit
001fc4 arris group, inc.
001fc5 nintendo co., ltd.
001fc6 asustek computer inc.
- 001fc7 casio hitachi mobile comunications co., ltd.
+ 001fc7 casio hitachi mobile communications co., ltd.
001fc8 up-today industrial co., ltd.
- 001fc9 cisco systems, inc.
- 001fca cisco systems, inc.
+ 001fc9 cisco systems, inc
+ 001fca cisco systems, inc
001fcb niw solutions
001fcc samsung electronics co.,ltd
- 001fcd samsung electronics
+ 001fcd samsung electronics co.,ltd
001fce qtech llc
001fcf msi technology gmbh
001fd0 giga-byte technology co.,ltd.
@@ -8146,10 +8148,10 @@ exit
001fde nokia danmark a/s
001fdf nokia danmark a/s
001fe0 edgevelocity corp
- 001fe1 hon hai precision ind. co., ltd.
- 001fe2 hon hai precision ind. co., ltd.
- 001fe3 lg electronics
- 001fe4 sony ericsson mobile communications
+ 001fe1 hon hai precision ind. co.,ltd.
+ 001fe2 hon hai precision ind. co.,ltd.
+ 001fe3 lg electronics (mobile communications)
+ 001fe4 sony mobile communications inc
001fe5 in-circuit gmbh
001fe6 alphion corporation
001fe7 simet
@@ -8164,7 +8166,7 @@ exit
001ff0 audio partnership
001ff1 paradox hellas s.a.
001ff2 via technologies, inc.
- 001ff3 apple
+ 001ff3 apple, inc.
001ff4 power monitors, inc.
001ff5 kongsberg defence & aerospace
001ff6 ps audio international
@@ -8191,8 +8193,8 @@ exit
00200b octagon systems corp.
00200c adastra systems corp.
00200d carl zeiss
- 00200e satellite technology mgmt, inc
- 00200f tanbac co., ltd.
+ 00200e nsslglobal technologies as
+ 00200f ebrains inc
002010 jeol system technology co. ltd
002011 canopus co., ltd.
002012 camtronics medical systems
@@ -8226,7 +8228,7 @@ exit
00202e daystar digital
00202f zeta communications, ltd.
002030 analog & digital systems
- 002031 tattile srl
+ 002031 tattile srl
002032 alcatel taisel
002033 synapse technologies, inc.
002034 rotec industrieautomation gmbh
@@ -8238,7 +8240,7 @@ exit
00203a digital bi0metrics inc.
00203b wisdm ltd.
00203c eurotime ab
- 00203d honeywell ecc
+ 00203d honeywell environmental & combustion controls
00203e logican technologies, inc.
00203f juki corporation
002040 arris group, inc.
@@ -8280,7 +8282,7 @@ exit
002064 protec microsystems, inc.
002065 supernet networking inc.
002066 general magic, inc.
- 002067
+ 002067 private
002068 isdyne
002069 isdn systems corporation
00206a osaka computer corp.
@@ -8310,7 +8312,7 @@ exit
002082 oneac corporation
002083 presticom incorporated
002084 oce printing systems, gmbh
- 002085 exide electronics
+ 002085 eaton corporation
002086 microtech electronics limited
002087 memotec, inc.
002088 global village communication
@@ -8352,11 +8354,11 @@ exit
0020ac interflex datensysteme gmbh
0020ad linq systems
0020ae ornet data communication tech.
- 0020af 3com corporation
+ 0020af 3com
0020b0 gateway devices, inc.
0020b1 comtech research inc.
0020b2 gkd gesellschaft fur kommunikation und datentechnik
- 0020b3 tattile srl
+ 0020b3 tattile srl
0020b4 terma elektronik as
0020b5 yaskawa electric corporation
0020b6 agile networks, inc.
@@ -8389,19 +8391,19 @@ exit
0020d1 microcomputer systems (m) sdn.
0020d2 rad data communications, ltd.
0020d3 ost (ouest standard telematiqu
- 0020d4 cabletron - zeittnet inc.
+ 0020d4 cabletron systems, inc.
0020d5 vipa gmbh
- 0020d6 breezecom
+ 0020d6 breezecom, ltd.
0020d7 japan minicomputer systems co., ltd.
0020d8 nortel networks
0020d9 panasonic technologies, inc./mieco-us
- 0020da alcatel north america esd
+ 0020da alcatel-lucent enterprise
0020db xnet technology, inc.
0020dc densitron taiwan ltd.
0020dd cybertec pty ltd
0020de japan digital laborat'y co.ltd
0020df kyosan electric mfg. co., ltd.
- 0020e0 actiontec electronics, inc.
+ 0020e0 actiontec electronics, inc
0020e1 alamar electronics
0020e2 information resource engineering
0020e3 mcd kencom corporation
@@ -8419,7 +8421,7 @@ exit
0020ef usc corporation
0020f0 universal microelectronics co.
0020f1 altos india limited
- 0020f2 oracle corporation
+ 0020f2 oracle corporation
0020f3 raynet corporation
0020f4 spectrix corporation
0020f5 pandatel ag
@@ -8438,7 +8440,7 @@ exit
002102 updatelogic inc.
002103 ghi electronics, llc
002104 gigaset communications gmbh
- 002105 alcatel-lucent
+ 002105 alcatel-lucent ipd
002106 rim testing services
002107 seowonintech co ltd.
002108 nokia danmark a/s
@@ -8458,10 +8460,10 @@ exit
002116 transcon electronic systems, spol. s r. o.
002117 tellord
002118 athena tech, inc.
- 002119 samsung electro-mechanics
+ 002119 samsung electro mechanics co., ltd.
00211a lintech corporation
- 00211b cisco systems, inc.
- 00211c cisco systems, inc.
+ 00211b cisco systems, inc
+ 00211c cisco systems, inc
00211d dataline ab
00211e arris group, inc.
00211f shinsung deltatech co.,ltd.
@@ -8472,7 +8474,7 @@ exit
002124 optos plc
002125 kuk je tong shin co.,ltd
002126 shenzhen torch equipment co., ltd.
- 002127 tp-link technology co., ltd.
+ 002127 tp-link technologies co.,ltd.
002128 oracle corporation
002129 cisco-linksys, llc
00212a audiovox corporation
@@ -8495,7 +8497,7 @@ exit
00213b berkshire products, inc
00213c aliphcom
00213d cermetek microelectronics, inc.
- 00213e tomtom
+ 00213e tomtom international bv
00213f a-team technology ltd.
002140 en technologies inc.
002141 radlive
@@ -8509,29 +8511,29 @@ exit
002149 china daheng group ,inc.
00214a pixel velocity, inc
00214b shenzhen hamp science & technology co.,ltd
- 00214c samsung electronics co., ltd.
+ 00214c samsung electronics co.,ltd
00214d guangzhou skytone transmission technology com. ltd.
00214e gs yuasa power supply ltd.
- 00214f alps electric co., ltd
+ 00214f alpsalpine co,.ltd
002150 eyeview electronics
002151 millinet co., ltd.
002152 general satellite research & development limited
002153 seamicro inc.
002154 d-tacq solutions ltd
- 002155 cisco systems, inc.
- 002156 cisco systems, inc.
+ 002155 cisco systems, inc
+ 002156 cisco systems, inc
002157 national datacast, inc.
002158 style flying technology co.
002159 juniper networks
- 00215a hewlett-packard company
- 00215b inotive
+ 00215a hewlett packard
+ 00215b senseanywhere
00215c intel corporate
00215d intel corporate
00215e ibm corp
00215f ihse gmbh
002160 hidea solutions co. ltd.
002161 yournet inc.
- 002162 nortel
+ 002162 nortel networks
002163 askey computer corp
002164 special design bureau for seismic instrumentation
002165 presstek inc.
@@ -8545,7 +8547,7 @@ exit
00216d soltech co., ltd.
00216e function ati (huizhou) telecommunications co., ltd.
00216f symcom, inc.
- 002170 dell inc
+ 002170 dell inc.
002171 wesung tnc co., ltd.
002172 seoultek valley
002173 ion torrent systems, inc.
@@ -8557,17 +8559,17 @@ exit
002179 iogear, inc.
00217a sejin electron, inc.
00217b bastec ab
- 00217c 2wire
+ 00217c 2wire inc
00217d pyxis s.r.l.
00217e telit communication s.p.a
00217f intraco technology pte ltd
002180 arris group, inc.
002181 si2 microsystems limited
002182 sandlinks systems, ltd.
- 002183 vatech hydro
+ 002183 andritz hydro gmbh
002184 powersoft srl
002185 micro-star int'l co.,ltd.
- 002186 universal global scientific industrial co., ltd
+ 002186 universal global scientific industrial co., ltd.
002187 imacs gmbh
002188 emc corporation
002189 apptech, inc.
@@ -8584,17 +8586,17 @@ exit
002194 ping communication
002195 gwd media limited
002196 telsey s.p.a.
- 002197 elitegroup computer system
+ 002197 elitegroup computer systems co.,ltd.
002198 thai radio co, ltd
002199 vacon plc
00219a cambridge visual networks ltd
- 00219b dell inc
+ 00219b dell inc.
00219c honeywld technology corp.
00219d adesys bv
- 00219e sony ericsson mobile communications
+ 00219e sony mobile communications inc
00219f satel oy
- 0021a0 cisco systems, inc.
- 0021a1 cisco systems, inc.
+ 0021a0 cisco systems, inc
+ 0021a1 cisco systems, inc
0021a2 eke-electronics ltd.
0021a3 micromint
0021a4 dbii networks
@@ -8616,14 +8618,14 @@ exit
0021b4 apro media co., ltd
0021b5 galvanic ltd
0021b6 triacta power technologies inc.
- 0021b7 lexmark international inc.
+ 0021b7 lexmark international, inc.
0021b8 inphi corporation
0021b9 universal devices inc.
0021ba texas instruments
0021bb riken keiki co., ltd.
0021bc zala computer
0021bd nintendo co., ltd.
- 0021be cisco, service provider video technology group
+ 0021be cisco spvtg
0021bf hitachi high-tech control systems corporation
0021c0 mobile appliance, inc.
0021c1 abb oy / medium voltage products
@@ -8648,8 +8650,8 @@ exit
0021d4 vollmer werke gmbh
0021d5 x2e gmbh
0021d6 lxi consortium
- 0021d7 cisco systems, inc.
- 0021d8 cisco systems, inc.
+ 0021d7 cisco systems, inc
+ 0021d8 cisco systems, inc
0021d9 sekonic corporation
0021da automation products group inc.
0021db santachi video technology (shenzhen) co., ltd.
@@ -8659,14 +8661,14 @@ exit
0021df martin christ gmbh
0021e0 commagility ltd
0021e1 nortel networks
- 0021e2 creative electronic gmbh
+ 0021e2 visago systems & controls gmbh & co. kg
0021e3 serialtek llc
0021e4 i-win
0021e5 display solution ag
0021e6 starlight video limited
0021e7 informatics services corporation
0021e8 murata manufacturing co., ltd.
- 0021e9 apple
+ 0021e9 apple, inc.
0021ea bystronic laser ag
0021eb esp systems, llc
0021ec solutronic gmbh
@@ -8684,9 +8686,9 @@ exit
0021f8 enseo, inc.
0021f9 wirecom technologies
0021fa a4sp technologies ltd.
- 0021fb lg electronics
+ 0021fb lg electronics (mobile communications)
0021fc nokia danmark a/s
- 0021fd dsta s.l.
+ 0021fd lacroix traffic s.a.u
0021fe nokia danmark a/s
0021ff cyfrowy polsat sa
002200 ibm corp
@@ -8701,8 +8703,8 @@ exit
002209 omron healthcare co., ltd
00220a onlive, inc
00220b national source coding center
- 00220c cisco systems, inc.
- 00220d cisco systems, inc.
+ 00220c cisco systems, inc
+ 00220d cisco systems, inc
00220e indigo security co., ltd.
00220f moca (multimedia over coax alliance)
002210 arris group, inc.
@@ -8713,11 +8715,11 @@ exit
002215 asustek computer inc.
002216 shibaura vending machine corporation
002217 neat electronics
- 002218 verivue inc.
- 002219 dell inc
+ 002218 akamai technologies inc
+ 002219 dell inc.
00221a audio precision
00221b morega systems
- 00221c
+ 00221c private
00221d freegene technology ltd
00221e media devices co., ltd.
00221f esang technologies co., ltd.
@@ -8747,16 +8749,16 @@ exit
002237 shinhint group
002238 logiplus
002239 indiana life sciences incorporated
- 00223a scientific atlanta, cisco spvt group
+ 00223a cisco spvtg
00223b communication networks, llc
00223c ratio entwicklungen gmbh
00223d jumpgen systems, llc
00223e irtrans gmbh
- 00223f netgear inc.
+ 00223f netgear
002240 universal telecom s/a
- 002241 apple
+ 002241 apple, inc.
002242 alacron inc.
- 002243 azurewave technologies, inc.
+ 002243 azurewave technology inc.
002244 chengdu linkon communications device co., ltd
002245 leine & linde ab
002246 evoc intelligent technology co.,ltd.
@@ -8774,8 +8776,8 @@ exit
002252 zoll lifecor corporation
002253 entorian technologies
002254 bigelow aerospace
- 002255 cisco systems, inc.
- 002256 cisco systems, inc.
+ 002255 cisco systems, inc
+ 002256 cisco systems, inc
002257 3com europe ltd
002258 taiyo yuden co., ltd.
002259 guangzhou new postcom equipment co.,ltd.
@@ -8789,12 +8791,12 @@ exit
002261 frontier silicon ltd
002262 bep marine
002263 koos technical services, inc.
- 002264 hewlett-packard company
+ 002264 hewlett packard
002265 nokia danmark a/s
002266 nokia danmark a/s
002267 nortel networks
- 002268 hon hai precision ind. co., ltd.
- 002269 hon hai precision ind. co., ltd.
+ 002268 hon hai precision ind. co.,ltd.
+ 002269 hon hai precision ind. co.,ltd.
00226a honeywell
00226b cisco-linksys, llc
00226c linksprite technologies, inc.
@@ -8826,22 +8828,22 @@ exit
002286 astron
002287 titan wireless llc
002288 sagrad, inc.
- 002289 optosecurity inc.
+ 002289 vandelrande apc inc.
00228a teratronik elektronische systeme gmbh
00228b kensington computer products group
00228c photon europe gmbh
00228d gbs laboratories llc
00228e tv-numeric
00228f cnrs
- 002290 cisco systems, inc.
- 002291 cisco systems, inc.
+ 002290 cisco systems, inc
+ 002291 cisco systems, inc
002292 cinetal
002293 zte corporation
- 002294 kyocera corporation
+ 002294 kyocera corporation
002295 sgm technology for lighting spa
002296 linowave corporation
002297 xmos semiconductor
- 002298 sony ericsson mobile communications
+ 002298 sony mobile communications inc
002299 seamicro inc.
00229a lastar, inc.
00229b averlogic technologies, inc.
@@ -8849,24 +8851,24 @@ exit
00229d pyung-hwa ind.co.,ltd
00229e social aid research co., ltd.
00229f sensys traffic ab
- 0022a0 delphi corporation
+ 0022a0 aptiv services us, llc
0022a1 huawei symantec technologies co.,ltd.
0022a2 xtramus technologies
0022a3 california eastern laboratories
- 0022a4 2wire
+ 0022a4 2wire inc
0022a5 texas instruments
0022a6 sony computer entertainment america
0022a7 tyco electronics amp gmbh
0022a8 ouman oy
- 0022a9 lg electronics inc
+ 0022a9 lg electronics (mobile communications)
0022aa nintendo co., ltd.
0022ab shenzhen turbosight technology ltd
0022ac hangzhou siyuan tech. co., ltd
0022ad telesis technologies, inc.
0022ae mattel inc.
- 0022af safety vision
+ 0022af safety vision, llc
0022b0 d-link corporation
- 0022b1 elbit systems
+ 0022b1 elbit systems ltd.
0022b2 4rf communications ltd
0022b3 sei s.p.a.
0022b4 arris group, inc.
@@ -8878,8 +8880,8 @@ exit
0022ba huth elektronik systeme gmbh
0022bb beyerdynamic gmbh & co. kg
0022bc jdsu france sas
- 0022bd cisco systems, inc.
- 0022be cisco systems, inc.
+ 0022bd cisco systems, inc
+ 0022be cisco systems, inc
0022bf sieamp group of companies
0022c0 shenzhen forcelink electronic co, ltd
0022c1 active storage inc.
@@ -8895,8 +8897,8 @@ exit
0022cb ionodes inc.
0022cc scilog, inc.
0022cd ared technology co., ltd.
- 0022ce cisco, service provider video technology group
- 0022cf planex communications inc
+ 0022ce cisco spvtg
+ 0022cf planex communications inc.
0022d0 polar electro oy
0022d1 albrecht jung gmbh & co. kg
0022d2 all earth comércio de eletrônicos ltda.
@@ -8930,7 +8932,7 @@ exit
0022ee algo communication products ltd
0022ef iwdl technologies
0022f0 3 greens aviation limited
- 0022f1
+ 0022f1 private
0022f2 sunpower corp
0022f3 sharp corporation
0022f4 ampak technology, inc.
@@ -8943,15 +8945,15 @@ exit
0022fb intel corporate
0022fc nokia danmark a/s
0022fd nokia danmark a/s
- 0022fe microprocessor designs inc
- 0022ff iwdl technologies
+ 0022fe advanced illumination
+ 0022ff nivis llc
002300 cayee computer ltd.
002301 witron technology limited
002302 cobalt digital, inc.
002303 lite-on it corporation
- 002304 cisco systems, inc.
- 002305 cisco systems, inc.
- 002306 alps electric co., ltd
+ 002304 cisco systems, inc
+ 002305 cisco systems, inc
+ 002306 alpsalpine co,.ltd
002307 future innovation tech co.,ltd
002308 arcadyan technology corporation
002309 janam technologies llc
@@ -8963,7 +8965,7 @@ exit
00230f hirsch electronics corporation
002310 lnc technology co., ltd.
002311 gloscom co., ltd.
- 002312 apple
+ 002312 apple, inc.
002313 qool technologies ltd.
002314 intel corporate
002315 intel corporate
@@ -8995,38 +8997,38 @@ exit
00232f advanced card systems ltd.
002330 dizipia, inc.
002331 nintendo co., ltd.
- 002332 apple
- 002333 cisco systems, inc.
- 002334 cisco systems, inc.
+ 002332 apple, inc.
+ 002333 cisco systems, inc
+ 002334 cisco systems, inc
002335 linkflex co.,ltd
002336 metel s.r.o.
002337 global star solutions ulc
002338 oj-electronics a/s
- 002339 samsung electronics
+ 002339 samsung electronics co.,ltd
00233a samsung electronics co.,ltd
00233b c-matic systems ltd
00233c alflex
- 00233d novero holding b.v.
- 00233e alcatel-lucent-ipd
+ 00233d laird technologies
+ 00233e alcatel-lucent ipd
00233f purechoice inc
- 002340 mix telematics
- 002341 siemens ab, infrastructure & cities, building technologies division, ic bt ssp sp ba pr
+ 002340 mixtelematics
+ 002341 vanderbilt international (swe) ab
002342 coffee equipment company
002343 tem ag
002344 objective interface systems, inc.
- 002345 sony ericsson mobile communications
+ 002345 sony mobile communications inc
002346 vestac
002347 procurve networking by hp
- 002348 sagem communication
+ 002348 sagemcom broadband sas
002349 helmholtz centre berlin for material and energy
- 00234a
+ 00234a private
00234b inyuan technology inc.
00234c ktc ab
- 00234d hon hai precision ind. co., ltd.
- 00234e hon hai precision ind. co., ltd.
+ 00234d hon hai precision ind. co.,ltd.
+ 00234e hon hai precision ind. co.,ltd.
00234f luminous power technologies pvt. ltd.
- 002350 lyntec
- 002351 2wire
+ 002350 rdc, inc. dba lyntec
+ 002351 2wire inc
002352 datasensor s.p.a.
002353 f e t elettronica snc
002354 asustek computer inc.
@@ -9035,25 +9037,25 @@ exit
002357 pitronot technologies and engineering p.t.e. ltd.
002358 systel sa
002359 benchmark electronics ( thailand ) public company limited
- 00235a compal information (kunshan) co., ltd.
+ 00235a compal information (kunshan) co., ltd.
00235b gulfstream
00235c aprius, inc.
- 00235d cisco systems, inc.
- 00235e cisco systems, inc.
+ 00235d cisco systems, inc
+ 00235e cisco systems, inc
00235f silicon micro sensors gmbh
002360 lookit technology co., ltd
002361 unigen corporation
002362 goldline controls
- 002363 zhuhai raysharp technology co., ltd.
+ 002363 zhuhai raysharp technology co.,ltd
002364 power instruments pte ltd
- 002365 elka-elektronik gmbh
+ 002365 insta elektro gmbh
002366 beijing siasun electronic system co.,ltd.
002367 unicontrols a.s.
- 002368 motorola
+ 002368 zebra technologies inc
002369 cisco-linksys, llc
00236a smartrg inc
00236b xembedded, inc.
- 00236c apple
+ 00236c apple, inc.
00236d resmed ltd
00236e burster gmbh & co kg
00236f daq system
@@ -9070,7 +9072,7 @@ exit
00237a rim
00237b whdi llc
00237c neotion
- 00237d hewlett-packard company
+ 00237d hewlett packard
00237e elster gmbh
00237f plantronics, inc.
002380 nanoteq
@@ -9079,15 +9081,15 @@ exit
002383 inmage systems inc
002384 ggh engineering s.r.l.
002385 antipode
- 002386 tour & andersson ab
+ 002386 imi hydronic engineering international sa
002387 thinkflood, inc.
002388 v.t. telematica s.p.a.
- 002389 hangzhou h3c technologies co., ltd.
+ 002389 hangzhou h3c technologies co., limited
00238a ciena corporation
00238b quanta computer inc.
- 00238c
+ 00238c private
00238d techno design co., ltd.
- 00238e pirelli tyre s.p.a.
+ 00238e adb broadband italia
00238f nidec copal corporation
002390 algolware corporation
002391 maxian
@@ -9097,8 +9099,8 @@ exit
002395 arris group, inc.
002396 andes technology corporation
002397 westell technologies inc.
- 002398 sky control
- 002399 vd division, samsung electronics co.
+ 002398 vutlan sro
+ 002399 samsung electronics co.,ltd
00239a easydata hardware gmbh
00239b elster solutions, llc
00239c juniper networks
@@ -9116,8 +9118,8 @@ exit
0023a8 marshall electronics
0023a9 beijing detianquan electromechanical equipment co., ltd
0023aa hfr, inc.
- 0023ab cisco systems, inc.
- 0023ac cisco systems, inc.
+ 0023ab cisco systems, inc
+ 0023ac cisco systems, inc
0023ad xmark corporation
0023ae dell inc.
0023af arris group, inc.
@@ -9130,9 +9132,9 @@ exit
0023b6 securite communications / honeywell
0023b7 q-light co., ltd.
0023b8 sichuan jiuzhou electronic technology co.,ltd
- 0023b9 eads deutschland gmbh
+ 0023b9 airbus defence and space deutschland gmbh
0023ba chroma
- 0023bb schmitt industries
+ 0023bb accretech sbs, inc.
0023bc eq-sys gmbh
0023bd digital ally, inc.
0023be cisco spvtg
@@ -9150,7 +9152,7 @@ exit
0023ca behind the set, llc
0023cb shenzhen full-join technology co.,ltd
0023cc nintendo co., ltd.
- 0023cd tp-link technologies co., ltd.
+ 0023cd tp-link technologies co.,ltd.
0023ce kita denshi corporation
0023cf cummins-allison corp.
0023d0 uniloc usa inc.
@@ -9160,7 +9162,7 @@ exit
0023d4 texas instruments
0023d5 warema electronic gmbh
0023d6 samsung electronics co.,ltd
- 0023d7 samsung electronics
+ 0023d7 samsung electronics co.,ltd
0023d8 ball-it oy
0023d9 banner engineering
0023da industrial computer source (deutschland)gmbh
@@ -9168,31 +9170,31 @@ exit
0023dc benein, inc
0023dd elgin s.a.
0023de ansync inc.
- 0023df apple
+ 0023df apple, inc.
0023e0 ino therapeutics llc
0023e1 cavena image products ab
0023e2 sea signalisation
0023e3 microtronic ag
0023e4 ipnect co. ltd.
0023e5 ipaxiom networks
- 0023e6 pirkus, inc.
+ 0023e6 innovation farm, inc.
0023e7 hinke a/s
0023e8 demco corp.
0023e9 f5 networks, inc.
- 0023ea cisco systems, inc.
- 0023eb cisco systems, inc.
+ 0023ea cisco systems, inc
+ 0023eb cisco systems, inc
0023ec algorithmix gmbh
0023ed arris group, inc.
0023ee arris group, inc.
0023ef zuend systemtechnik ag
0023f0 shanghai jinghan weighing apparatus co. ltd.
- 0023f1 sony ericsson mobile communications
+ 0023f1 sony mobile communications inc
0023f2 tvlogic
0023f3 glocom, inc.
0023f4 masternaut
0023f5 wilo se
0023f6 softwell technology co., ltd.
- 0023f7
+ 0023f7 private
0023f8 zyxel communications corporation
0023f9 double-take software, inc.
0023fa rg nets, inc.
@@ -9220,13 +9222,13 @@ exit
002410 nueteq technology,inc.
002411 pharmasmart llc
002412 benign technologies co, ltd.
- 002413 cisco systems, inc.
- 002414 cisco systems, inc.
+ 002413 cisco systems, inc
+ 002414 cisco systems, inc
002415 magnetic autocontrol gmbh
002416 any use
002417 thomson telecom belgium
002418 nextwave semiconductor
- 002419
+ 002419 private
00241a red beetle inc.
00241b iwow communications pte ltd
00241c fugang electronic (dg) co.,ltd
@@ -9237,26 +9239,26 @@ exit
002421 micro-star int'l co., ltd.
002422 knapp logistik automation gmbh
002423 azurewave technologies (shanghai) inc.
- 002424 axis network technology
+ 002424 ace axis limited
002425 shenzhenshi chuangzhicheng technology co.,ltd
002426 nohmi bosai ltd.
002427 ssi computer corp
002428 energyict
002429 mk master inc.
00242a hittite microwave corporation
- 00242b hon hai precision ind.co.,ltd.
- 00242c hon hai precision ind. co., ltd.
+ 00242b hon hai precision ind. co.,ltd.
+ 00242c hon hai precision ind. co.,ltd.
00242e datastrip inc.
- 00242f virtensys inc
+ 00242f micron
002430 ruby tech corp.
002431 uni-v co.,ltd
002432 neostar technology co.,ltd
- 002433 alps electric co., ltd
+ 002433 alpsalpine co,.ltd
002434 lectrosonics, inc.
002435 wide corporation
- 002436 apple
+ 002436 apple, inc.
002437 motorola - bsg
- 002438 brocade communications systems, inc
+ 002438 brocade communications systems llc
002439 digital barriers advanced technologies
00243a ludl electronic products
00243b cssi (s) pte ltd
@@ -9268,7 +9270,7 @@ exit
002442 axona limited
002443 nortel networks
002444 nintendo co., ltd.
- 002445 commscope canada inc.
+ 002445 adtran inc
002446 mmb research inc.
002447 kaztek systems
002448 spidercloud wireless, inc
@@ -9279,15 +9281,15 @@ exit
00244d hokkaido electronics corporation
00244e radchips, inc.
00244f asantron technologies ltd.
- 002450 cisco systems, inc.
- 002451 cisco systems, inc.
+ 002450 cisco systems, inc
+ 002451 cisco systems, inc
002452 silicon software gmbh
002453 initra d.o.o.
- 002454 samsung electronics co., ltd
+ 002454 samsung electronics co.,ltd
002455 mulogic bv
- 002456 2wire
+ 002456 2wire inc
002458 pa bastion cc
- 002459 abb stotz-kontakt gmbh
+ 002459 abb automation products gmbh
00245a nanjing panda electronics company limited
00245b raidon technology, inc.
00245c design-com technologies pty. ltd.
@@ -9306,7 +9308,7 @@ exit
002469 smart doorphones
00246a solid year co., ltd.
00246b covia, inc.
- 00246c aruba networks, inc.
+ 00246c aruba, a hewlett packard enterprise company
00246d weinzierl engineering gmbh
00246e phihong usa corp.
00246f onda communication spa
@@ -9324,33 +9326,33 @@ exit
00247b actiontec electronics, inc
00247c nokia danmark a/s
00247d nokia danmark a/s
- 00247e universal global scientific industrial co., ltd
+ 00247e universal global scientific industrial co., ltd.
00247f nortel networks
002480 meteocontrol gmbh
- 002481 hewlett-packard company
+ 002481 hewlett packard
002482 ruckus wireless
- 002483 lg electronics
+ 002483 lg electronics (mobile communications)
002484 bang and olufsen medicom a/s
002485 contextream ltd
002486 designart networks
- 002487 blackboard inc.
+ 002487 transact campus, inc.
002488 centre for development of telematics
002489 vodafone omnitel n.v.
00248a kaga electronics co., ltd.
00248b hybus co., ltd.
00248c asustek computer inc.
- 00248d sony computer entertainment inc.
+ 00248d sony interactive entertainment inc.
00248e infoware zrt.
00248f do-monix
002490 samsung electronics co.,ltd
- 002491 samsung electronics
+ 002491 samsung electronics co.,ltd
002492 motorola, broadband solutions group
002493 arris group, inc.
002494 shenzhen baoxin tech co., ltd.
002495 arris group, inc.
002496 ginzinger electronic systems
- 002497 cisco systems, inc.
- 002498 cisco systems, inc.
+ 002497 cisco systems, inc
+ 002498 cisco systems, inc
002499 aquila technologies
00249a beijing zhongchuang telecommunication test co., ltd.
00249b action star enterprise co., ltd.
@@ -9363,7 +9365,7 @@ exit
0024a2 hong kong middleware technology limited
0024a3 sonim technologies inc
0024a4 siklu communication
- 0024a5 buffalo inc.
+ 0024a5 buffalo.inc
0024a6 telestar digital gmbh
0024a7 advanced video communications inc.
0024a8 procurve networking by hp
@@ -9372,8 +9374,8 @@ exit
0024ab a7 engineering, inc.
0024ac hangzhou dptech technologies co., ltd.
0024ad adolf thies gmbh & co. kg
- 0024ae morpho
- 0024af echostar technologies
+ 0024ae idemia
+ 0024af dish technologies corp
0024b0 esab ab
0024b1 coulomb technologies
0024b2 netgear
@@ -9393,8 +9395,8 @@ exit
0024c0 nti comodo inc
0024c1 arris group, inc.
0024c2 asumo co.,ltd.
- 0024c3 cisco systems, inc.
- 0024c4 cisco systems, inc.
+ 0024c3 cisco systems, inc
+ 0024c4 cisco systems, inc
0024c5 meridian audio limited
0024c6 hager electro sas
0024c7 mobilarm ltd
@@ -9408,9 +9410,9 @@ exit
0024cf inscape data corporation
0024d0 shenzhen sogood industry co.,ltd.
0024d1 thomson inc.
- 0024d2 askey computer
+ 0024d2 askey computer corp
0024d3 qualica inc.
- 0024d4 freebox sa
+ 0024d4 freebox sas
0024d5 winward industrial limited
0024d6 intel corporate
0024d7 intel corporate
@@ -9431,31 +9433,31 @@ exit
0024e6 in motion technology inc.
0024e7 plaster networks
0024e8 dell inc.
- 0024e9 samsung electronics co., ltd., storage system division
+ 0024e9 samsung electronics co.,ltd
0024ea iris-gmbh infrared & intelligent sensors
0024eb clearpath networks, inc.
0024ec united information technology co.,ltd.
0024ed yt elec. co,.ltd.
0024ee wynmax inc.
- 0024ef sony ericsson mobile communications
+ 0024ef sony mobile communications inc
0024f0 seanodes
0024f1 shenzhen fanhai sanjiang electronics co., ltd.
0024f2 uniphone telecommunication co., ltd.
0024f3 nintendo co., ltd.
- 0024f4 kaminario technologies ltd.
+ 0024f4 kaminario, ltd.
0024f5 nds surgical imaging
0024f6 miyoshi electronics corporation
- 0024f7 cisco systems, inc.
+ 0024f7 cisco systems, inc
0024f8 technical solutions company ltd.
- 0024f9 cisco systems, inc.
+ 0024f9 cisco systems, inc
0024fa hilger u. kern gmbh
- 0024fb
+ 0024fb private
0024fc quopin co., ltd.
0024fd accedian networks inc
0024fe avm gmbh
0024ff qlogic corporation
- 002500 apple
- 002501 jsc "supertel"
+ 002500 apple, inc.
+ 002501 jsc supertel
002502 naturalpoint
002503 ibm corp
002504 valiant communications limited
@@ -9466,12 +9468,12 @@ exit
002509 sharetronic group ltd
00250a security expert co. ltd
00250b centrofactor inc
- 00250c enertrac
+ 00250c senet inc
00250d gzt telkom-telmor sp. z o.o.
00250e gt german telematics gmbh
00250f on-ramp wireless, inc.
002510 pico-tesla magnetic therapies
- 002511 elitegroup computer system co., ltd.
+ 002511 elitegroup computer systems co.,ltd.
002512 zte corporation
002513 cxp digital bv
002514 pc worth int'l co., ltd.
@@ -9513,7 +9515,7 @@ exit
002539 ifta gmbh
00253a ceva, ltd.
00253b din dietmar nocker facilitymanagement gmbh
- 00253c 2wire
+ 00253c 2wire inc
00253d drs consolidated controls
00253e sensus metering systems
002540 quasar technologies, inc.
@@ -9521,25 +9523,25 @@ exit
002542 pittasoft
002543 moneytech
002544 lojack corporation
- 002545 cisco systems, inc.
- 002546 cisco systems, inc.
+ 002545 cisco systems, inc
+ 002546 cisco systems, inc
002547 nokia danmark a/s
002548 nokia danmark a/s
002549 jeorich tech. co.,ltd.
00254a ringcube technologies, inc.
- 00254b apple
+ 00254b apple, inc.
00254c videon central, inc.
00254d singapore technologies electronics limited
00254e vertex wireless co., ltd.
00254f elettrolab srl
- 002550 riverbed technology
+ 002550 riverbed technology, inc.
002551 se-elektronic gmbh
002552 vxi corporation
- 002553 pirelli tyre s.p.a.
+ 002553 adb broadband italia
002554 pixel8 networks
- 002555 visonic technologies 1993 ltd
- 002556 hon hai precision ind. co., ltd.
- 002557 research in motion
+ 002555 visonic technologies 1993 ltd.
+ 002556 hon hai precision ind. co.,ltd.
+ 002557 blackberry rts
002558 mpedia
002559 syphan technologies ltd
00255a tantalus systems corp.
@@ -9555,12 +9557,12 @@ exit
002564 dell inc.
002565 vizimax inc.
002566 samsung electronics co.,ltd
- 002567 samsung electronics
- 002568 shenzhen huawei communication technologies co., ltd
- 002569 sagem communication
+ 002567 samsung electronics co.,ltd
+ 002568 huawei technologies co.,ltd
+ 002569 sagemcom broadband sas
00256a init - institut industrial it
00256b atenix e.e. s.r.l.
- 00256c "azimut" production association jsc
+ 00256c azimut production association jsc
00256d broadband forum
00256e van breda b.v.
00256f dantherm power
@@ -9572,7 +9574,7 @@ exit
002575 fiberplex technologies, llc
002576 neli technologies
002577 d-box technologies
- 002578 jsc "concern "sozvezdie"
+ 002578 jsc concern sozvezdie
002579 j & f labs
00257a camco produktions- und vertriebs-gmbh für beschallungs- und beleuchtungsanlagen
00257b stj electronics pvt ltd
@@ -9583,15 +9585,15 @@ exit
002580 equipson s.a.
002581 x-star networks inc.
002582 maksat technologies (p) ltd
- 002583 cisco systems, inc.
- 002584 cisco systems, inc.
+ 002583 cisco systems, inc
+ 002584 cisco systems, inc
002585 kokuyo s&t co., ltd.
- 002586 tp-link technologies co., ltd.
+ 002586 tp-link technologies co.,ltd.
002587 vitality, inc.
002588 genie industries, inc.
002589 hills industries limited
00258a pole/zero corporation
- 00258b mellanox technologies ltd
+ 00258b mellanox technologies, inc.
00258c esus elektronik san. ve dis. tic. ltd. sti.
00258d haier
00258e the weather channel
@@ -9609,8 +9611,8 @@ exit
00259a cestronics gmbh
00259b beijing pkunity microsystems technology co., ltd
00259c cisco-linksys, llc
- 00259d
- 00259e huawei technologies co., ltd.
+ 00259d private
+ 00259e huawei technologies co.,ltd
00259f technodigital technologies gmbh
0025a0 nintendo co., ltd.
0025a1 enalasys
@@ -9619,7 +9621,7 @@ exit
0025a4 eurodesign embedded technologies gmbh
0025a5 walnut media network
0025a6 central network solution co., ltd.
- 0025a7 comverge, inc.
+ 0025a7 itron
0025a8 kontron (beijing) technology co.,ltd
0025a9 shanghai embedway information technologies co.,ltd
0025aa beijing soul technology co.,ltd.
@@ -9631,23 +9633,23 @@ exit
0025b0 schmartz inc
0025b1 maya-creation corporation
0025b2 mbda deutschland gmbh
- 0025b3 hewlett-packard company
- 0025b4 cisco systems, inc.
- 0025b5 cisco systems, inc.
+ 0025b3 hewlett packard
+ 0025b4 cisco systems, inc
+ 0025b5 cisco systems, inc
0025b6 telecom fm
0025b7 costar electronics, inc.,
0025b8 agile communications, inc.
0025b9 cypress solutions inc
0025ba alcatel-lucent ipd
0025bb innerint co., ltd.
- 0025bc apple
+ 0025bc apple, inc.
0025bd italdata ingegneria dell'idea s.p.a.
0025be tektrap systems inc.
0025bf wireless cables inc.
0025c0 zilliontv corporation
0025c1 nawoo korea corp.
0025c2 ringbell co.,ltd.
- 0025c3 nortel networks
+ 0025c3 21168
0025c4 ruckus wireless
0025c5 star link communication pvt. ltd.
0025c6 kasercorp, ltd
@@ -9663,8 +9665,8 @@ exit
0025d0 nokia danmark a/s
0025d1 eastern asia technology limited
0025d2 inpegvision co., ltd
- 0025d3 azurewave technologies, inc
- 0025d4 fortress technologies
+ 0025d3 azurewave technology inc.
+ 0025d4 general dynamics mission systems
0025d5 robonica (pty) ltd
0025d6 the kroger co.
0025d7 cedo
@@ -9672,18 +9674,18 @@ exit
0025d9 datafab systems inc.
0025da secura key
0025db ati electronics(shenzhen) co., ltd
- 0025dc sumitomo electric networks, inc
+ 0025dc sumitomo electric industries, ltd
0025dd sunnytek information co., ltd.
0025de probits co., ltd.
- 0025df
+ 0025df taser international inc.
0025e0 ceedtec sdn bhd
0025e1 shanghai seeyoo electronic & technology co., ltd
0025e2 everspring industry co., ltd.
0025e3 hanshinit inc.
0025e4 omni-wifi, llc
- 0025e5 lg electronics inc
+ 0025e5 lg electronics (mobile communications)
0025e6 belgian monitoring systems bvba
- 0025e7 sony ericsson mobile communications
+ 0025e7 sony mobile communications inc
0025e8 idaho technology
0025e9 i-mate development, inc.
0025ea iphion bv
@@ -9715,10 +9717,10 @@ exit
002605 cc systems ab
002606 raumfeld gmbh
002607 enabling technology pty ltd
- 002608 apple
+ 002608 apple, inc.
002609 phyllis co., ltd.
- 00260a cisco systems, inc.
- 00260b cisco systems, inc.
+ 00260a cisco systems, inc
+ 00260b cisco systems, inc
00260c dataram
00260d mercury systems, inc.
00260e ablaze systems, llc
@@ -9741,7 +9743,7 @@ exit
00261f sae magnetics (h.k.) ltd.
002620 isgus gmbh
002621 intelicloud technology inc.
- 002622 compal information (kunshan) co., ltd.
+ 002622 compal information (kunshan) co., ltd.
002623 jrd communication inc
002624 thomson inc.
002625 mediasputnik
@@ -9762,7 +9764,7 @@ exit
002634 infineta systems, inc
002635 bluetechnix gmbh
002636 arris group, inc.
- 002637 samsung electro-mechanics
+ 002637 samsung electro mechanics co., ltd.
002638 xia men joyatech co., ltd.
002639 t.m. electronics, inc.
00263a digitec systems
@@ -9774,23 +9776,23 @@ exit
002640 baustem broadband technologies, ltd.
002641 arris group, inc.
002642 arris group, inc.
- 002643 alps electric co., ltd
+ 002643 alpsalpine co,.ltd
002644 thomson telecom belgium
002645 circontrol s.a.
002646 shenyang tongfang multimedia technology company limited
002647 wfe technology corp.
002648 emitech corp.
- 00264a apple
+ 00264a apple, inc.
00264c shanghai digivision technology co., ltd.
00264d arcadyan technology corporation
- 00264e rail & road protec gmbh
+ 00264e r2p gmbh
00264f krüger &gothe gmbh
- 002650 2wire
- 002651 cisco systems, inc.
- 002652 cisco systems, inc.
+ 002650 2wire inc
+ 002651 cisco systems, inc
+ 002652 cisco systems, inc
002653 daysequerra corporation
- 002654 3com corporation
- 002655 hewlett-packard company
+ 002654 3com
+ 002655 hewlett packard
002656 sansonic electronics usa
002657 ooo npp ekra
002658 t-platforms (cyprus) limited
@@ -9798,7 +9800,7 @@ exit
00265a d-link corporation
00265b hitron technologies. inc
00265c hon hai precision ind. co.,ltd.
- 00265d samsung electronics
+ 00265d samsung electronics co.,ltd
00265e hon hai precision ind. co.,ltd.
00265f samsung electronics co.,ltd
002660 logiways
@@ -9813,7 +9815,7 @@ exit
002669 nokia danmark a/s
00266a essensium nv
00266b shine union enterprise limited
- 00266c inventec
+ 00266c inventec corporation
00266d mobileaccess networks
00266e nissho-denki co.,ltd.
00266f coordiwise technology corp.
@@ -9821,7 +9823,7 @@ exit
002671 autovision co., ltd
002672 aamp of america
002673 ricoh company,ltd.
- 002674 electronic solutions, inc.
+ 002674 hunter douglas
002675 aztech electronics pte ltd
002676 commidt as
002677 deif a/s
@@ -9833,7 +9835,7 @@ exit
00267d a-max technology macao commercial offshore company limited
00267e parrot sa
00267f zenterio ab
- 002680 lockie innovation pty ltd
+ 002680 sil3 pty.ltd
002681 interspiro ab
002682 gemtek technology co., ltd.
002683 ajoho enterprise co., ltd.
@@ -9850,21 +9852,21 @@ exit
00268e alta solutions, inc.
00268f mta spa
002690 i do it
- 002691 sagem communication
- 002692 mitsubishi electric co.
+ 002691 sagemcom broadband sas
+ 002692 mitsubishi electric corporation
002693 qvidium technologies, inc.
002694 senscient ltd
002695 zt group int'l inc
002696 noolix co., ltd
- 002697 cheetah technologies, l.p.
- 002698 cisco systems, inc.
- 002699 cisco systems, inc.
+ 002697 alpha technologies inc.
+ 002698 cisco systems, inc
+ 002699 cisco systems, inc
00269a carina system co., ltd.
00269b sokrat ltd.
00269c itus japan co. ltd
00269d m2mnet co., ltd.
- 00269e quanta computer inc
- 00269f
+ 00269e quanta computer inc.
+ 00269f private
0026a0 moblic
0026a1 megger
0026a2 instrumentation technology systems
@@ -9881,20 +9883,20 @@ exit
0026ad arada systems, inc.
0026ae wireless measurement ltd
0026af duelco a/s
- 0026b0 apple
+ 0026b0 apple, inc.
0026b1 navis auto motive systems, inc.
0026b2 setrix gmbh
0026b3 thales communications inc
0026b4 ford motor company
0026b5 icomm tele ltd
- 0026b6 askey computer
+ 0026b6 askey computer corp
0026b7 kingston technology company, inc.
0026b8 actiontec electronics, inc
- 0026b9 dell inc
+ 0026b9 dell inc.
0026ba arris group, inc.
- 0026bb apple
+ 0026bb apple, inc.
0026bc general jack technology ltd.
- 0026bd jtec card & communication co., ltd.
+ 0026bd jtec card & communication co., ltd
0026be schoonderbeek elektronica systemen b.v.
0026bf shenzhen temobi science&tech development co.,ltd
0026c0 energyhub
@@ -9907,8 +9909,8 @@ exit
0026c7 intel corporate
0026c8 system sensor
0026c9 proventix systems, inc.
- 0026ca cisco systems, inc.
- 0026cb cisco systems, inc.
+ 0026ca cisco systems, inc
+ 0026cb cisco systems, inc
0026cc nokia danmark a/s
0026cd purplecomm, inc.
0026ce kozumi usa corp.
@@ -9922,7 +9924,7 @@ exit
0026d6 ningbo andy optoelectronic co., ltd.
0026d7 km electornic technology co., ltd.
0026d8 magic point inc.
- 0026d9 pace plc
+ 0026d9 arris group, inc.
0026da universal media corporation /slovakia/ s.r.o.
0026db ionics ems inc.
0026dc optical systems design
@@ -9931,9 +9933,9 @@ exit
0026df taidoc technology corp.
0026e0 asiteq
0026e1 stanford university, openflow group
- 0026e2 lg electronics
+ 0026e2 lg electronics (mobile communications)
0026e3 dti
- 0026e4 canal overseas
+ 0026e4 canal +
0026e5 aeg power solutions
0026e6 visionhitech co., ltd.
0026e7 shanghai onlan communication tech. co., ltd.
@@ -9952,7 +9954,7 @@ exit
0026f4 nesslab
0026f5 xrplus inc.
0026f6 military communication institute
- 0026f7 infosys technologies ltd.
+ 0026f7 nivetti systems pvt. ltd.
0026f8 golden highway industry development co., ltd.
0026f9 s.e.m. srl
0026fa bandrich inc.
@@ -9960,7 +9962,7 @@ exit
0026fc acsip technology corp.
0026fd interactive intelligence
0026fe mkd technology inc.
- 0026ff research in motion
+ 0026ff blackberry rts
002700 shenzhen siglent technology co., ltd.
002701 incostartec gmbh
002702 solaredge technologies
@@ -9973,8 +9975,8 @@ exit
002709 nintendo co., ltd.
00270a iee s.a.
00270b adura technologies
- 00270c cisco systems, inc.
- 00270d cisco systems, inc.
+ 00270c cisco systems, inc
+ 00270d cisco systems, inc
00270e intel corporate
00270f envisionnovation inc
002710 intel corporate
@@ -9986,7 +9988,7 @@ exit
002716 adachi-syokai co., ltd.
002717 ce digital(zhenjiang)co.,ltd
002718 suzhou new seaunion video technology co.,ltd
- 002719 tp-link technologies co., ltd.
+ 002719 tp-link technologies co.,ltd.
00271a geenovo technology ltd.
00271b alec sicherheitssysteme gmbh
00271c mercury corporation
@@ -9995,11 +9997,24 @@ exit
00271f mipro electronics co., ltd
002720 new-sol com
002721 shenzhen baoan fenda industrial co., ltd
- 002722 ubiquiti networks
- 0027f8 brocade communications systems, inc.
- 002a6a cisco systems, inc.
+ 002722 ubiquiti networks inc.
+ 002790 cisco systems, inc
+ 0027e3 cisco systems, inc
+ 0027f8 brocade communications systems llc
+ 00289f semptian co., ltd.
+ 0028f8 intel corporate
+ 002926 applied optoelectronics, inc taiwan branch
+ 0029c2 cisco systems, inc
+ 002a10 cisco systems, inc
+ 002a6a cisco systems, inc
002aaf larsys-automation gmbh
+ 002b67 lcfc(hefei) electronics technology co., ltd
+ 002cc8 cisco systems, inc
002d76 titech gmbh
+ 002db3 ampak technology,inc.
+ 002ec7 huawei technologies co.,ltd
+ 002f5c cisco systems, inc
+ 002fd9 fiberhome telecommunication technologies co.,ltd
003000 allwell technology corp.
003001 smp
003002 expand networks
@@ -10017,7 +10032,7 @@ exit
00300e klotz digital ag
00300f imt - information management t
003010 visionetics international
- 003011 hms industrial networks
+ 003011 hms industrial networks
003012 digital engineering ltd.
003013 nec corporation
003014 divio, inc.
@@ -10025,18 +10040,18 @@ exit
003016 ishida co., ltd.
003017 bluearc uk ltd
003018 jetway information co., ltd.
- 003019 cisco systems, inc.
+ 003019 cisco systems, inc
00301a smartbridges pte. ltd.
00301b shuttle, inc.
00301c altvater airdata systems
00301d skystream, inc.
- 00301e 3com europe ltd.
+ 00301e 3com europe ltd
00301f optical networks, inc.
003020 tsi, inc..
003021 hsing tech. enterprise co.,ltd
003022 fong kai industrial co., ltd.
003023 cogent computer systems, inc.
- 003024 cisco systems, inc.
+ 003024 cisco systems, inc
003025 checkout computer systems, ltd
003026 heitel digital video gmbh
003027 kerbango, inc.
@@ -10064,7 +10079,7 @@ exit
00303d iva corporation
00303e radcom ltd.
00303f turbocomm tech inc.
- 003040 cisco systems, inc.
+ 003040 cisco systems, inc
003041 saejin t & m co., ltd.
003042 detewe-deutsche telephonwerke
003043 idream technologies, pte. ltd.
@@ -10072,7 +10087,7 @@ exit
003045 village networks, inc. (vni)
003046 controlled electronic manageme
003047 nissei electric co., ltd.
- 003048 supermicro computer, inc.
+ 003048 super micro computer, inc.
003049 bryant technology, ltd.
00304a fraunhofer ipms
00304b orbacom systems, inc.
@@ -10084,9 +10099,9 @@ exit
003051 orbit avionic & communication
003052 elastic networks
003053 basler ag
- 003054 castlenet technology, inc.
+ 003054 castlenet technology inc.
003055 renesas technology america, inc.
- 003056 beck ipc gmbh
+ 003056 hms industrial networks
003057 qtelnet, inc.
003058 api motion
003059 kontron compact computers ag
@@ -10101,7 +10116,7 @@ exit
003062 ip video networks inc
003063 santera systems, inc.
003064 adlink technology, inc.
- 003065 apple
+ 003065 apple, inc.
003066 rfm
003067 biostar microtech int'l corp.
003068 cybernetics tech. co., ltd.
@@ -10113,27 +10128,27 @@ exit
00306e hewlett packard
00306f seyeon tech. co., ltd.
003070 1net corporation
- 003071 cisco systems, inc.
+ 003071 cisco systems, inc
003072 intellibyte inc.
003073 international microsystems, in
003074 equiinet ltd.
003075 adtech
003076 akamba corporation
003077 onprem networks
- 003078 cisco systems, inc.
+ 003078 cisco systems, inc
003079 cqos, inc.
00307a advanced technology & systems
- 00307b cisco systems, inc.
+ 00307b cisco systems, inc
00307c adid sa
00307d gre america, inc.
00307e redflex communication systems
00307f irlan ltd.
- 003080 cisco systems, inc.
+ 003080 cisco systems, inc
003081 altos c&c
003082 taihan electric wire co., ltd.
003083 ivron systems
003084 allied telesyn internaional
- 003085 cisco systems, inc.
+ 003085 cisco systems, inc
003086 transistor devices, inc.
003087 vega grieshaber kg
003088 ericsson
@@ -10146,11 +10161,11 @@ exit
00308f micrilor, inc.
003090 cyra technologies, inc.
003091 taiwan first line elec. corp.
- 003092 modunorm gmbh
+ 003092 kontron electronics ag
003093 sonnet technologies, inc
- 003094 cisco systems, inc.
+ 003094 cisco systems, inc
003095 procomp informatics, ltd.
- 003096 cisco systems, inc.
+ 003096 cisco systems, inc
003097 ab regin
003098 global converging technologies
003099 boenig und kallenbach ohg
@@ -10163,7 +10178,7 @@ exit
0030a0 tyco submarine systems, ltd.
0030a1 webgate inc.
0030a2 lightner engineering
- 0030a3 cisco systems, inc.
+ 0030a3 cisco systems, inc
0030a4 woodwind communications system
0030a5 active power
0030a6 vianet technologies, ltd.
@@ -10182,7 +10197,7 @@ exit
0030b3 san valley systems, inc.
0030b4 intersil corp.
0030b5 tadiran microwave networks
- 0030b6 cisco systems, inc.
+ 0030b6 cisco systems, inc
0030b7 teletrol systems, inc.
0030b8 riverdelta networks
0030b9 ectel
@@ -10193,11 +10208,11 @@ exit
0030be city-net technology, inc.
0030bf multidata gmbh
0030c0 lara technology, inc.
- 0030c1 hewlett-packard
+ 0030c1 hewlett packard
0030c2 comone
0030c3 flueckiger elektronik ag
0030c4 canon imaging systems inc.
- 0030c5 cadence design systems
+ 0030c5 cadence design systems, inc.
0030c6 control solutions, inc.
0030c7 macromate corp.
0030c8 gad line, ltd.
@@ -10211,14 +10226,14 @@ exit
0030d0 tellabs
0030d1 inova corporation
0030d2 win technologies, co., ltd.
- 0030d3 agilent technologies
+ 0030d3 agilent technologies, inc.
0030d4 aae systems, inc.
0030d5 dresearch gmbh
0030d6 msc vertriebs gmbh
0030d7 innovative systems, l.l.c.
0030d8 sitek
0030d9 datacore software corp.
- 0030da comtrend co.
+ 0030da comtrend corporation
0030db mindready solutions, inc.
0030dc rightech corporation
0030dd indigita corporation
@@ -10241,8 +10256,8 @@ exit
0030ee dsg technology, inc.
0030ef neon technology, inc.
0030f0 uniform industrial corp.
- 0030f1 accton technology corp.
- 0030f2 cisco systems, inc.
+ 0030f1 accton technology corp
+ 0030f2 cisco systems, inc
0030f3 at work computers
0030f4 stardot technologies
0030f5 wild lab. ltd.
@@ -10255,23 +10270,41 @@ exit
0030fc terawave communications, inc.
0030fd integrated systems design
0030fe dsa gmbh
- 0030ff datafab systems, inc.
+ 0030ff datafab systems inc.
+ 003146 juniper networks
+ 003192 tp-link corporation limited
+ 003217 cisco systems, inc
+ 00323a so-logic
00336c synapsense corporation
+ 0034a1 rf-lambda usa inc.
+ 0034da lg electronics (mobile communications)
0034f1 radicom research, inc.
+ 0034fe huawei technologies co.,ltd
+ 00351a cisco systems, inc
003532 electro-metrics corporation
+ 003560 rosen aviation
+ 0035ff texas instruments
+ 003676 arris group, inc.
+ 0036be northwest towers
0036f8 conti temic microelectronic gmbh
0036fe supervision
00376d murata manufacturing co., ltd.
- 003a98 cisco systems, inc.
- 003a99 cisco systems, inc.
- 003a9a cisco systems, inc.
- 003a9b cisco systems, inc.
- 003a9c cisco systems, inc.
- 003a9d nec accesstechnica, ltd.
+ 0037b7 sagemcom broadband sas
+ 0038df cisco systems, inc
+ 003a7d cisco systems, inc
+ 003a98 cisco systems, inc
+ 003a99 cisco systems, inc
+ 003a9a cisco systems, inc
+ 003a9b cisco systems, inc
+ 003a9c cisco systems, inc
+ 003a9d nec platforms, ltd.
003aaf bluebit ltd.
+ 003c10 cisco systems, inc
003cc5 wonwoo engineering co., ltd
003d41 hatteland computer as
- 003ee1 apple
+ 003de1 huawei device co., ltd.
+ 003de8 lg electronics (mobile communications)
+ 003ee1 apple, inc.
004000 pci componentes da amzonia ltd
004001 zero one technology co. ltd.
004002 perle systems limited
@@ -10283,7 +10316,7 @@ exit
004008 a plus info corporation
004009 tachibana tectron co., ltd.
00400a pivotal technologies, inc.
- 00400b cisco systems, inc.
+ 00400b cisco systems, inc
00400c general micro systems, inc.
00400d lannet data communications,ltd
00400e memotec, inc.
@@ -10304,17 +10337,17 @@ exit
00401d invisible software, inc.
00401e icc
00401f colorgraph ltd
- 004020 te connectivity ltd.
+ 004020 commscope inc
004021 raster graphics
004022 klever computers, inc.
004023 logic corporation
004024 compac inc.
004025 molecular dynamics
- 004026 buffalo inc.
+ 004026 buffalo.inc
004027 smc massachusetts, inc.
004028 netcomm limited
004029 compex
- 00402a canoga-perkins
+ 00402a canoga perkins corporation
00402b trigem computer, inc.
00402c isis distributed systems, inc.
00402d harris adacom corporation
@@ -10326,7 +10359,7 @@ exit
004033 addtron technology co., ltd.
004034 bustek corporation
004035 opcom
- 004036 tribe computer works, inc.
+ 004036 zoom telephonics, inc
004037 sea-ilan, inc.
004038 talent electric incorporated
004039 optec daiichi denko co., ltd.
@@ -10353,7 +10386,7 @@ exit
00404e fluent, inc.
00404f space & naval warfare systems
004050 ironics, incorporated
- 004051 gracilis, inc.
+ 004051 garbee and garbee
004052 star technologies, inc.
004053 ampro computers
004054 connection machines services
@@ -10374,7 +10407,7 @@ exit
004063 via technologies, inc.
004064 kla instruments corporation
004065 gte spacenet
- 004066 hitachi metals, ltd.
+ 004066 apresia systems ltd
004067 omnibyte corporation
004068 extended systems
004069 lemcom systems, inc.
@@ -10389,7 +10422,7 @@ exit
004072 applied innovation inc.
004073 bass associates
004074 cable and wireless
- 004075 tattile srl
+ 004075 tattile srl
004076 sun conversion technologies
004077 maxton technology corporation
004078 wearnes automation pte ltd
@@ -10404,7 +10437,7 @@ exit
004081 mannesmann scangraphic gmbh
004082 laboratory equipment corp.
004083 tda industria de produtos
- 004084 honeywell acs
+ 004084 honeywell international hps
004085 saab instruments ab
004086 michels & kleberhoff computer
004087 ubitrex corporation
@@ -10414,7 +10447,7 @@ exit
00408b raylan corporation
00408c axis communications ab
00408d the goodyear tire & rubber co.
- 00408e tattile srl
+ 00408e tattile srl
00408f wm-data minfo ab
004090 ansel communications
004091 procomp industria eletronica
@@ -10422,16 +10455,16 @@ exit
004093 paxdata networks ltd.
004094 shographics, inc.
004095 r.p.t. intergroups int'l ltd.
- 004096 cisco systems
+ 004096 cisco systems, inc
004097 datex division of
004098 dressler gmbh & co.
004099 newgen systems corp.
00409a network express, inc.
00409b hal computer systems inc.
00409c transware
- 00409d digiboard, inc.
+ 00409d digiboard
00409e concurrent technologies ltd.
- 00409f telco systems, inc.
+ 00409f telco systems, inc.
0040a0 goldstar co., ltd.
0040a1 ergo computing
0040a2 kingstar technology inc.
@@ -10442,7 +10475,7 @@ exit
0040a7 itautec philco s.a.
0040a8 imf international ltd.
0040a9 datacom inc.
- 0040aa metso automation
+ 0040aa valmet automation
0040ab roland dg corporation
0040ac super workstation, inc.
0040ad sma regelsysteme gmbh
@@ -10485,7 +10518,7 @@ exit
0040d2 pagine corporation
0040d3 kimpsion international corp.
0040d4 gage talker corp.
- 0040d5 sartorius mechatronics t&h gmbh
+ 0040d5 sartorius mechatronics t&h gmbh
0040d6 locamation b.v.
0040d7 studio gen inc.
0040d8 ocean office automation ltd.
@@ -10523,45 +10556,56 @@ exit
0040f8 systemhaus discom
0040f9 combinet
0040fa microboards, inc.
- 0040fb cascade communications corp.
+ 0040fb cascade communications
0040fc ibr computer technik gmbh
0040fd lxe
0040fe symplex communications
0040ff telebit corporation
0041b4 wuxi zhongxing optoelectronics technology co.,ltd.
+ 0041d2 cisco systems, inc
+ 004238 intel corporate
004252 rlx technologies
+ 00425a cisco systems, inc
+ 004268 cisco systems, inc
+ 004279 sunitec enterprise co.,ltd
0043ff ketron s.r.l.
- 004501 versus technology, inc.
+ 004501 midmark rtls
+ 00451d cisco systems, inc
+ 0045e2 cybertan technology inc.
00464b huawei technologies co.,ltd
+ 004a77 zte corporation
+ 004bf3 shenzhen mercury communication technologies co.,ltd.
004d32 andon health co.,ltd.
+ 004e01 dell inc.
+ 004e35 hewlett packard enterprise
005000 nexo communications, inc.
005001 yamashita systems corp.
005002 omnisec ag
005003 xrite inc
- 005004 3com corporation
+ 005004 3com
005006 tac ab
005007 siemens telecommunication systems limited
005008 tiva microcomputer corp. (tmc)
005009 philips broadband networks
00500a iris technologies, inc.
- 00500b cisco systems, inc.
+ 00500b cisco systems, inc
00500c e-tek labs, inc.
00500d satori electoric co., ltd.
00500e chromatis networks, inc.
- 00500f cisco systems, inc.
+ 00500f cisco systems, inc
005010 novanet learning, inc.
005012 cbl - gmbh
- 005013 chaparral network storage
- 005014 cisco systems, inc.
+ 005013 seagate cloud systems inc
+ 005014 cisco systems, inc
005015 bright star engineering
- 005016 sst/woodhead industries
+ 005016 molex canada ltd
005017 rsr s.r.l.
005018 amit, inc.
005019 spring tide networks, inc.
00501a iqinvision
00501b abl canada, inc.
00501c jatom systems, inc.
- 00501e miranda technologies, inc.
+ 00501e grass valley, a belden brand
00501f mrg systems, ltd.
005020 mediastar co., ltd.
005021 eis international, inc.
@@ -10572,7 +10616,7 @@ exit
005027 genicom corporation
005028 aval communications
005029 1394 printer working group
- 00502a cisco systems, inc.
+ 00502a cisco systems, inc
00502b genrad ltd.
00502c soyo computer, inc.
00502d accel, inc.
@@ -10589,7 +10633,7 @@ exit
00503a datong electronics ltd.
00503b mediafire corporation
00503c tsinghua novel electronics
- 00503e cisco systems, inc.
+ 00503e cisco systems, inc
00503f anchor games
005040 panasonic electric works co., ltd.
005041 coretronic corporation
@@ -10598,7 +10642,7 @@ exit
005044 asaca corporation
005045 rioworks solutions, inc.
005046 menicx international co., ltd.
- 005047
+ 005047 private
005048 infolibria
005049 arbor networks inc
00504a elteco a.s.
@@ -10607,15 +10651,15 @@ exit
00504d tokyo electron device limited
00504e sierra monitor corp.
00504f olencom electronics
- 005050 cisco systems, inc.
+ 005050 cisco systems, inc
005051 iwatsu electric co., ltd.
005052 tiara networks, inc.
- 005053 cisco systems, inc.
- 005054 cisco systems, inc.
+ 005053 cisco systems, inc
+ 005054 cisco systems, inc
005055 doms a/s
005056 vmware, inc.
005057 broadband access systems
- 005058 vegastream group limted
+ 005058 sangoma technologies
005059 ibahn
00505a network alchemy, inc.
00505b kawasaki lsi u.s.a., inc.
@@ -10640,43 +10684,43 @@ exit
005070 chaintech computer co., ltd.
005071 aiwa co., ltd.
005072 corvis corporation
- 005073 cisco systems, inc.
+ 005073 cisco systems, inc
005074 advanced hi-tech corp.
005075 kestrel solutions
005076 ibm corp
005077 prolific technology, inc.
005078 megaton house, ltd.
- 005079
+ 005079 private
00507a xpeed, inc.
00507b merlot communications
00507c videocon ag
00507d ifp
00507e newer technology
00507f draytek corp.
- 005080 cisco systems, inc.
+ 005080 cisco systems, inc
005081 murata machinery, ltd.
005082 foresson corporation
005083 gilbarco, inc.
- 005084 atl products
+ 005084 quantum corp.
005086 telkom sa, ltd.
005087 terasaki electric co., ltd.
005088 amano corporation
005089 safety management systems
- 00508b hewlett-packard company
+ 00508b hewlett packard
00508c rsi systems
00508d abit computer corporation
00508e optimation, inc.
00508f asita technologies int'l ltd.
005090 dctri
005091 netaccess, inc.
- 005092 rigaku industrial corporation
+ 005092 rigaku corporation osaka plant
005093 boeing
- 005094 pace plc
+ 005094 arris group, inc.
005095 peracom networks
005096 salix technologies, inc.
005097 mmc-embedded computertechnik gmbh
005098 globaloop, ltd.
- 005099 3com europe, ltd.
+ 005099 3com europe ltd
00509a tag electronic systems
00509b switchcore ab
00509c beta research
@@ -10685,12 +10729,12 @@ exit
00509f horizon computer
0050a0 delta computer systems, inc.
0050a1 carlo gavazzi, inc.
- 0050a2 cisco systems, inc.
+ 0050a2 cisco systems, inc
0050a3 transmedia communications, inc.
0050a4 io tech, inc.
0050a5 capitol business systems, ltd.
0050a6 optronics
- 0050a7 cisco systems, inc.
+ 0050a7 cisco systems, inc
0050a8 opencon systems, inc.
0050a9 moldat wireless technolgies
0050aa konica minolta holdings, inc.
@@ -10704,33 +10748,34 @@ exit
0050b2 brodel gmbh
0050b3 voiceboard corporation
0050b4 satchwell control systems, ltd
- 0050b5 fichet-bauche
+ 0050b5 fichet securite electronique
0050b6 good way ind. co., ltd.
0050b7 boser technology co., ltd.
0050b8 inova computers gmbh & co. kg
0050b9 xitron technologies, inc.
- 0050ba d-link
+ 0050ba d-link corporation
0050bb cms technologies
0050bc hammer storage solutions
- 0050bd cisco systems, inc.
+ 0050bd cisco systems, inc
0050be fast multimedia ag
0050bf metalligence technology corp.
0050c0 gatan, inc.
0050c1 gemflex networks, ltd.
- 0050c2 ieee registration authority - please see iab public listing for more information.
+ 0050c2 ieee registration authority
0050c4 imd
0050c5 ads technologies, inc
0050c6 loop telecommunication international, inc.
+ 0050c7 private
0050c8 addonics technologies, inc.
0050c9 maspro denkoh corp.
0050ca net to net technologies
0050cb jetter
- 0050cc xyratex
+ 0050cc seagate cloud systems inc
0050cd digianswer a/s
0050ce lg international corp.
0050cf vanlink communication technology research institute
0050d0 minerva systems
- 0050d1 cisco systems, inc.
+ 0050d1 cisco systems, inc
0050d2 cmc electronics inc
0050d3 digital audio processing pty. ltd.
0050d4 joohong information &
@@ -10739,16 +10784,16 @@ exit
0050d7 telstrat
0050d8 unicorn computer corp.
0050d9 engetron-engenharia eletronica ind. e com. ltda
- 0050da 3com corporation
+ 0050da 3com
0050db contemporary control
0050dc tas telefonbau a. schwabe gmbh & co. kg
0050dd serra soldadura, s.a.
0050de signum systems corp.
0050df airfiber, inc.
0050e1 ns tech electronics sdn bhd
- 0050e2 cisco systems, inc.
+ 0050e2 cisco systems, inc
0050e3 arris group, inc.
- 0050e4 apple
+ 0050e4 apple, inc.
0050e6 hakusan corporation
0050e7 paradise innovations (asia)
0050e8 nomadix inc.
@@ -10758,26 +10803,49 @@ exit
0050ed anda networks
0050ee tek digitel corporation
0050ef spe systemhaus gmbh
- 0050f0 cisco systems, inc.
- 0050f1 intel corporation
+ 0050f0 cisco systems, inc
+ 0050f1 maxlinear, inc
0050f2 microsoft corp.
0050f3 global net information co., ltd.
0050f4 sigmatek gmbh & co. kg
0050f6 pan-international industrial corp.
0050f7 venture manufacturing (singapore) ltd.
0050f8 entrega technologies, inc.
- 0050f9 sensormatic acd
+ 0050f9 sensormatic electronics llc
0050fa oxtel, ltd.
0050fb vsk electronics
- 0050fc edimax technology co., ltd.
+ 0050fc edimax technology co. ltd.
0050fd visioncomm co., ltd.
0050fe pctvnet asa
0050ff hakko electronics co., ltd.
+ 0051ed lg innotek
005218 wuxi keboda electron co.ltd
+ 0052c2 peiker acustic gmbh
+ 00549f avaya inc
0054af continental automotive systems inc.
+ 0054bd swelaser ab
+ 0055b1 shanghai baud data communication co.,ltd.
+ 0055da ieee registration authority
+ 00562b cisco systems, inc
+ 0056cd apple, inc.
+ 0057c1 lg electronics (mobile communications)
+ 0057d2 cisco systems, inc
+ 00583f pc aquarius
005907 lenovoemc products usa, llc
+ 005979 networked energy services
+ 0059ac kpn. b.v.
+ 0059dc cisco systems, inc
+ 005a13 huawei technologies co.,ltd
+ 005a39 shenzhen fast technologies co.,ltd
+ 005b94 apple, inc.
+ 005ba1 shanghai huayuan chuangxin software co., ltd.
+ 005c86 shenzhen fast technologies co.,ltd
005cb1 gospell digital technology co., ltd
005d03 xilinx, inc
+ 005d73 cisco systems, inc
+ 005e0c hmd global oy
+ 005f67 tp-link corporation limited
+ 005f86 cisco systems, inc
006000 xycom inc.
006001 innosys, inc.
006002 screen subtitling systems, ltd
@@ -10786,14 +10854,14 @@ exit
006005 feedback data ltd.
006006 sotec co., ltd
006007 acres gaming, inc.
- 006008 3com corporation
- 006009 cisco systems, inc.
+ 006008 3com
+ 006009 cisco systems, inc
00600a sord computer corporation
00600b logware gmbh
00600c eurotech inc.
00600d digital logic gmbh
00600e wavenet international, inc.
- 00600f westell, inc.
+ 00600f westell technologies inc.
006010 network machines, inc.
006011 crystal semiconductor corp.
006012 power computing corporation
@@ -10825,7 +10893,7 @@ exit
00602c linx data terminals, inc.
00602d alerton technologies, inc.
00602e cyclades corporation
- 00602f cisco systems, inc.
+ 00602f cisco systems, inc
006030 village tronic entwicklung
006031 hrk systems
006032 i-cube, inc.
@@ -10840,24 +10908,24 @@ exit
00603b amtec spa
00603c hagiwara sys-com co., ltd.
00603d 3cx
- 00603e cisco systems, inc.
+ 00603e cisco systems, inc
00603f patapsco designs
006040 netro corp.
- 006041 yokogawa electric corporation
+ 006041 yokogawa digital computer corporation
006042 tks (usa), inc.
006043 idirect, inc.
006044 litton/poly-scientific
006045 pathlight technologies
006046 vmetro, inc.
- 006047 cisco systems, inc.
- 006048 emc corporation
+ 006047 cisco systems, inc
+ 006048 dell emc
006049 vina technologies
00604a saic ideas group
00604b safe-com gmbh & co. kg
- 00604c sagem communication
+ 00604c sagemcom broadband sas
00604d mmc networks, inc.
00604e cycle computer corporation, inc.
- 00604f tattile srl
+ 00604f tattile srl
006050 internix inc.
006051 quality semiconductor
006052 peripherals enterprise co., ltd.
@@ -10870,31 +10938,31 @@ exit
006059 technical communications corp.
00605a celcore, inc.
00605b intraserver technology, inc.
- 00605c cisco systems, inc.
+ 00605c cisco systems, inc
00605d scanivalve corp.
00605e liberty technology networking
00605f nippon unisoft corporation
- 006060 dawning technologies, inc.
+ 006060 data innovations north america
006061 whistle communications corp.
006062 telesync, inc.
006063 psion dacom plc.
006064 netcomm limited
- 006065 bernecker & rainer industrie-elektronic gmbh
+ 006065 b&r industrial automation gmbh
006066 lacroix trafic
006067 acer netxus inc.
006068 dialogic corporation
- 006069 brocade communications systems, inc.
+ 006069 brocade communications systems llc
00606a mitsubishi wireless communications. inc.
00606b synclayer inc.
00606c arescom
00606d digital equipment corp.
00606e davicom semiconductor, inc.
00606f clarion corporation of america
- 006070 cisco systems, inc.
+ 006070 cisco systems, inc
006071 midas lab, inc.
006072 vxl instruments, limited
006073 redcreek communications, inc.
- 006074 qsc audio products
+ 006074 qsc llc
006075 pentek, inc.
006076 schlumberger technologies retail petroleum systems
006077 prisa networks
@@ -10909,16 +10977,16 @@ exit
006080 microtronix datacom ltd.
006081 tv/com international
006082 novalink technologies, inc.
- 006083 cisco systems, inc.
+ 006083 cisco systems, inc
006084 digital video
006085 storage concepts
006086 logic replacement tech. ltd.
006087 kansai electric co., ltd.
- 006088 white mountain dsp, inc.
+ 006088 analog devices, inc.
006089 xata
00608a citadel computer
00608b confertech international
- 00608c 3com corporation
+ 00608c 3com
00608d unipulse corp.
00608e he electronics, technologie & systemtechnik gmbh
00608f tekram technology co., ltd.
@@ -10929,11 +10997,11 @@ exit
006094 ibm corp
006095 accu-time systems, inc.
006096 t.s. microtech inc.
- 006097 3com corporation
+ 006097 3com
006098 ht communications
006099 sbe, inc.
00609a njk techno co.
- 00609b astro-med, inc.
+ 00609b astronova, inc
00609c perkin-elmer incorporated
00609d pmi food equipment group
00609e asc x3 - information technology standards secretariats
@@ -10954,7 +11022,7 @@ exit
0060ad megachips corporation
0060ae trio information systems ab
0060af pacific micro data, inc.
- 0060b0 hewlett-packard co.
+ 0060b0 hewlett packard
0060b1 input/output, inc.
0060b2 process control corp.
0060b3 z-com, inc.
@@ -10963,11 +11031,11 @@ exit
0060b6 land computer co., ltd.
0060b7 channelmatic, inc.
0060b8 corelis inc.
- 0060b9 nec infrontia corporation
+ 0060b9 nec platforms, ltd
0060ba sahara networks, inc.
- 0060bb cabletron - netlink, inc.
+ 0060bb cabletron systems, inc.
0060bc keunyoung electronics & communication co., ltd.
- 0060bd hubbell-pulsecom
+ 0060bd enginuity communications
0060be webtronics
0060bf macraigor systems, inc.
0060c0 nera networks as
@@ -10991,17 +11059,17 @@ exit
0060d2 lucent technologies taiwan telecommunications co., ltd.
0060d3 at&t
0060d4 eldat communication ltd.
- 0060d5 miyachi technos corp.
- 0060d6 novatel wireless technologies ltd.
+ 0060d5 amada miyachi co., ltd
+ 0060d6 novatel inc.
0060d7 ecole polytechnique federale de lausanne (epfl)
0060d8 elmic systems, inc.
0060d9 transys networks inc.
- 0060da jbm electronics co.
+ 0060da red lion controls, lp
0060db ntp elektronik a/s
- 0060dc toyo network systems & system integration co. ltd
+ 0060dc nec magnus communications,ltd.
0060dd myricom, inc.
0060de kayser-threde gmbh
- 0060df brocade communications systems, inc.
+ 0060df brocade communications systems llc
0060e0 axiom technology co., ltd.
0060e1 orckit communications ltd.
0060e2 quest engineering & development
@@ -11034,19 +11102,59 @@ exit
0060fd netics, inc.
0060fe lynx system developers, inc.
0060ff quvis, inc.
- 006440 cisco systems, inc.
+ 006151 huawei technologies co.,ltd
+ 006171 apple, inc.
+ 0062ec cisco systems, inc
+ 0063de cloudwalk technology co.,ltd
+ 006440 cisco systems, inc
0064a6 maquet cardiovascular
- 00664b huawei technologies co., ltd
- 006b9e vizio inc
+ 006619 huawei device co., ltd.
+ 00664b huawei technologies co.,ltd
+ 006762 fiberhome telecommunication technologies co.,ltd
+ 00682b huawei device co., ltd.
+ 0068eb hp inc.
+ 00692d sunnovo international limited
+ 006967 ieee registration authority
+ 006b6f huawei technologies co.,ltd
+ 006b8e shanghai feixun communication co.,ltd.
+ 006b9e vizio, inc
006ba0 shenzhen universal intellisys pte ltd
- 006dfb vutrix (uk) ltd
+ 006bf1 cisco systems, inc
+ 006cbc cisco systems, inc
+ 006cfd sichuan changhong electric ltd.
+ 006d52 apple, inc.
+ 006d61 guangzhou v-solution electronic technology co., ltd.
+ 006dfb vutrix technologies ltd
+ 006e02 xovis ag
+ 006f64 samsung electronics co.,ltd
+ 006ff2 mitsumi electric co.,ltd.
0070b0 m/a-com inc. companies
0070b3 data recall ltd.
- 00738d tinno mobile technology corp
+ 007147 amazon technologies inc.
+ 0071c2 pegatron corporation
+ 0071cc hon hai precision ind. co.,ltd.
+ 007204 samsung electronics co., ltd. artik
+ 007263 netcore technology inc.
+ 007278 cisco systems, inc
+ 00738d shenzhen tinno mobile technology corp.
0073e0 samsung electronics co.,ltd
+ 00749c ruijie networks co.,ltd
+ 007532 inid bv
0075e1 ampt, llc
- 00789e sagemcom
+ 00763d veea
+ 007686 cisco systems, inc
+ 0076b1 somfy-protect by myfox sas
+ 00778d cisco systems, inc
+ 0077e4 nokia solutions and networks gmbh & co. kg
+ 007888 cisco systems, inc
+ 00789e sagemcom broadband sas
+ 0078cd ignition design labs
+ 007b18 sentry co., ltd.
+ 007c2d samsung electronics co.,ltd
+ 007d60 apple, inc.
007dfa volkswagen group of america
+ 007e56 china dragon technology limited
+ 007e95 cisco systems, inc
007f28 actiontec electronics, inc
008000 multitech systems, inc.
008001 periphonics corporation
@@ -11085,7 +11193,7 @@ exit
008022 scan-optics
008023 integrated business networks
008024 kalpana, inc.
- 008025 stollmann gmbh
+ 008025 telit wireless solutions gmbh
008026 network products corporation
008027 adaptive systems, inc.
008028 tradpost (hk) ltd
@@ -11114,11 +11222,11 @@ exit
00803f tatung company
008040 john fluke manufacturing co.
008041 veb kombinat robotron
- 008042 emerson network power
+ 008042 artesyn embedded technologies
008043 networld, inc.
008044 systech computer corp.
008045 matsushita electric ind. co
- 008046 tattile srl
+ 008046 tattile srl
008047 in-net corp.
008048 compex incorporated
008049 nissin electric co., ltd.
@@ -11134,16 +11242,16 @@ exit
008053 intellicom, inc.
008054 frontier technologies corp.
008055 fermilab
- 008056 sphinx elektronik gmbh
+ 008056 sphinx electronics gmbh & co kg
008057 adsoft, ltd.
- 008058 printer systems corporation
+ 008058 printer systems corp.
008059 stanley electric co., ltd
00805a tulip computers internat'l b.v
00805b condor systems, inc.
00805c agilis corporation
00805d canstar
00805e lsi logic corporation
- 00805f hewlett-packard company
+ 00805f hewlett packard
008060 network interface corporation
008061 litton systems, inc.
008062 interface co.
@@ -11156,7 +11264,7 @@ exit
008069 computone systems
00806a eri (empac research inc.)
00806b schmid telecommunication
- 00806c cegelec projects ltd
+ 00806c secure systems & services
00806d century systems corp.
00806e nippon steel corporation
00806f onelan ltd.
@@ -11188,7 +11296,7 @@ exit
008089 tecnetics (pty) ltd.
00808a summit microsystems corp.
00808b dacoll limited
- 00808c netscout systems, inc.
+ 00808c netscout systems inc
00808d westcoast technology b.v.
00808e radstone technology
00808f c. itoh electronics, inc.
@@ -11207,8 +11315,8 @@ exit
00809c luxcom, inc.
00809d commscraft ltd.
00809e datus gmbh
- 00809f alcatel business systems
- 0080a0 edisa hewlett packard s/a
+ 00809f ale international
+ 0080a0 hewlett packard
0080a1 microtest, inc.
0080a2 creative electronic systems
0080a3 lantronix
@@ -11230,9 +11338,9 @@ exit
0080b3 aval data corporation
0080b4 sophia systems
0080b5 united networks inc.
- 0080b6 themis computer
+ 0080b6 mercury systems – trusted mission solutions, inc.
0080b7 stellar computer
- 0080b8 b.u.g. moriseiki, incorporated
+ 0080b8 dmg mori b.u.g. co., ltd.
0080b9 arche technoligies inc.
0080ba specialix (asia) pte, ltd
0080bb hughes lan systems
@@ -11242,7 +11350,7 @@ exit
0080bf takaoka electric mfg. co. ltd.
0080c0 penril datacomm
0080c1 lanex corporation
- 0080c2 ieee 802.1 committee
+ 0080c2 ieee 802.1 working group
0080c3 bicc information systems & svc
0080c4 document technologies, inc.
0080c5 novellco de mexico
@@ -11273,13 +11381,13 @@ exit
0080de gipsi s.a.
0080df adc codenoll technology corp.
0080e0 xtp systems, inc.
- 0080e1 stmicroelectronics
+ 0080e1 stmicroelectronics srl
0080e2 t.d.i. co., ltd.
0080e3 coral network corporation
0080e4 northwest digital systems, inc
- 0080e5 netapp, inc
+ 0080e5 netapp
0080e6 peer networks, inc.
- 0080e7 lynwood scientific dev. ltd.
+ 0080e7 leonardo tactical systems.
0080e8 cumulus corporatiion
0080e9 madge ltd.
0080ea adva optical networking ltd.
@@ -11295,7 +11403,7 @@ exit
0080f4 telemecanique electrique
0080f5 quantel ltd
0080f6 synergy microsystems
- 0080f7 zenith electronics
+ 0080f7 zenith electronics corporation
0080f8 mizar, inc.
0080f9 heurikon corporation
0080fa rwt gmbh
@@ -11304,20 +11412,32 @@ exit
0080fd exsceed corpration
0080fe azure technologies, inc.
0080ff soc. de teleinformatique rtc
- 0086a0
- 008865 apple
+ 0081c4 cisco systems, inc
+ 0081f9 texas instruments
+ 0084ed private
+ 00869c palo alto networks
+ 0086a0 private
+ 008701 samsung electronics co.,ltd
+ 008731 cisco systems, inc
+ 008764 cisco systems, inc
+ 008865 apple, inc.
+ 0088ba nc&c
+ 008a55 huawei device co., ltd.
+ 008a96 cisco systems, inc
008b43 rftech
+ 008bfc mixi,inc.
008c10 black box corp.
008c54 adb broadband italia
008cfa inventec corporation
008d4e cjsc nii stt
008dda link one co., ltd.
- 008ef2 netgear inc.,
+ 008e73 cisco systems, inc
+ 008ef2 netgear
009000 diamond multimedia
009001 nishimu electronics industries co., ltd.
009002 allgon ab
009003 aplio
- 009004 3com europe ltd.
+ 009004 3com europe ltd
009005 protech systems co., ltd.
009006 hamamatsu photonics k.k.
009007 domex technology corp.
@@ -11325,7 +11445,7 @@ exit
009009 i controls, inc.
00900a proton electronic industrial co., ltd.
00900b lanner electronics, inc.
- 00900c cisco systems, inc.
+ 00900c cisco systems, inc
00900d overland storage inc.
00900e handlink technologies, inc.
00900f kawasaki heavy industries, ltd
@@ -11346,7 +11466,7 @@ exit
00901e selesta ingegneria s.p.a.
00901f adtec productions, inc.
009020 philips analytical x-ray b.v.
- 009021 cisco systems, inc.
+ 009021 cisco systems, inc
009022 ivex
009023 zilog inc.
009024 pipelinks, inc.
@@ -11356,7 +11476,7 @@ exit
009028 nippon signal co., ltd.
009029 crypto ag
00902a communication devices, inc.
- 00902b cisco systems, inc.
+ 00902b cisco systems, inc
00902c data & control equipment ltd.
00902d data electronics (aust.) pty, ltd.
00902e namco limited
@@ -11380,7 +11500,7 @@ exit
009040 siemens network convergence llc
009041 applied digital access
009042 eccs, inc.
- 009043 tattile srl
+ 009043 tattile srl
009044 assured digital, inc.
009045 marconi communications
009046 dexdyne, ltd.
@@ -11393,7 +11513,7 @@ exit
00904d spec s.a.
00904e delem bv
00904f abb power t&d company, inc.
- 009050 teleste oy
+ 009050 teleste corporation
009051 ultimate technology corp.
009052 selcom elettronica s.r.l.
009053 daewoo electronics co., ltd.
@@ -11401,14 +11521,14 @@ exit
009055 parker hannifin corporation compumotor division
009056 telestream, inc.
009057 aanetcom, inc.
- 009058 ultra electronics ltd., command and control systems
+ 009058 ultra electronics command & control systems
009059 telecom device k.k.
00905a dearborn group, inc.
00905b raymond and lae engineering
00905c edmi
00905d netcom sicherheitstechnik gmbh
00905e rauland-borg corporation
- 00905f cisco systems, inc.
+ 00905f cisco systems, inc
009060 system create corp.
009061 pacific research & engineering corporation
009062 icp vortex computersysteme gmbh
@@ -11418,13 +11538,13 @@ exit
009066 troika networks, inc.
009067 walkabout computers, inc.
009068 dvt corp.
- 009069 juniper networks, inc.
+ 009069 juniper networks
00906a turnstone systems, inc.
00906b applied resources, inc.
00906c sartorius hamburg gmbh
- 00906d cisco systems, inc.
+ 00906d cisco systems, inc
00906e praxon, inc.
- 00906f cisco systems, inc.
+ 00906f cisco systems, inc
009070 neo networks, inc.
009071 applied innovation inc.
009072 simrad as
@@ -11447,7 +11567,7 @@ exit
009083 turbo communication, inc.
009084 atech system
009085 golden enterprises, inc.
- 009086 cisco systems, inc.
+ 009086 cisco systems, inc
009087 itis
009088 baxall security ltd.
009089 softcom microsystems, inc.
@@ -11459,11 +11579,11 @@ exit
00908f audio codes ltd.
009090 i-bus
009091 digitalscape, inc.
- 009092 cisco systems, inc.
- 009093 nanao corporation
+ 009092 cisco systems, inc
+ 009093 eizo corporation
009094 osprey technologies, inc.
009095 universal avionics
- 009096 askey computer corp.
+ 009096 askey computer corp
009097 sycamore networks
009098 sbc designs, inc.
009099 allied telesis, k.k.
@@ -11475,22 +11595,22 @@ exit
00909f digi-data corporation
0090a0 8x8 inc.
0090a1 flying pig systems/high end systems inc.
- 0090a2 cybertan technology, inc.
+ 0090a2 cybertan technology inc.
0090a3 corecess inc.
0090a4 altiga networks
0090a5 spectra logic
- 0090a6 cisco systems, inc.
+ 0090a6 cisco systems, inc
0090a7 clientec corporation
0090a8 ninetiles networks, ltd.
0090a9 western digital
0090aa indigo active vision systems limited
- 0090ab cisco systems, inc.
+ 0090ab cisco systems, inc
0090ac optivision, inc.
0090ad aspect electronics, inc.
- 0090ae italtel s.p.a.
+ 0090ae italtel s.p.a/rf-up-i
0090af j. morita mfg. corp.
0090b0 vadem
- 0090b1 cisco systems, inc.
+ 0090b1 cisco systems, inc
0090b2 avici systems inc.
0090b3 agranat systems
0090b4 willowbrook technologies
@@ -11504,7 +11624,7 @@ exit
0090bc telemann co., ltd.
0090bd omnia communications, inc.
0090be ibc/integrated business computers
- 0090bf cisco systems, inc.
+ 0090bf cisco systems, inc
0090c0 k.j. law engineers, inc.
0090c1 peco ii, inc.
0090c2 jk microsystems, inc.
@@ -11517,9 +11637,9 @@ exit
0090c9 dpac technologies
0090ca accord video telecommunications, ltd.
0090cb wireless online, inc.
- 0090cc planex communications
+ 0090cc planex communications inc.
0090cd ent-empresa nacional de telecommunicacoes, s.a.
- 0090ce tetra gmbh
+ 0090ce avateramedical mechatronics gmbh
0090cf nortel
0090d0 thomson telecom belgium
0090d1 leichu enterprise co., ltd.
@@ -11527,10 +11647,10 @@ exit
0090d3 giesecke & devrient gmbh
0090d4 bindview development corp.
0090d5 euphonix, inc.
- 0090d6 crystal group
+ 0090d6 crystal group, inc.
0090d7 netboost corp.
0090d8 whitecross systems
- 0090d9 cisco systems, inc.
+ 0090d9 cisco systems, inc
0090da dynarc, inc.
0090db next level communications
0090dc teco information systems
@@ -11554,15 +11674,15 @@ exit
0090ee personal communications technologies
0090ef integrix, inc.
0090f0 harmonic video systems ltd.
- 0090f1 dot hill systems corporation
- 0090f2 cisco systems, inc.
+ 0090f1 seagate cloud systems inc
+ 0090f2 cisco systems, inc
0090f3 aspect communications
0090f4 lightning instrumentation
0090f5 clevo co.
0090f6 escalate networks, inc.
0090f7 nbase communications ltd.
0090f8 mediatrix telecom
- 0090f9 leitch
+ 0090f9 imagine communications
0090fa emulex corporation
0090fb portwell, inc.
0090fc network computing devices
@@ -11571,12 +11691,21 @@ exit
0090ff tellus technology inc.
0091d6 crystal group, inc.
0091fa synapse product development
+ 00927d ficosa internationa(taicang) c0.,ltd.
0092fa shenzhen wisky technology co.,ltd
009363 uni-link technology co., ltd.
+ 0094a1 f5 networks, inc.
+ 0094ec huawei device co., ltd.
009569 lsd science and technology co.,ltd.
0097ff heimann sensor gmbh
- 009c02 hewlett-packard company
+ 009acd huawei technologies co.,ltd
+ 009ad2 cisco systems, inc
+ 009c02 hewlett packard
+ 009d6b murata manufacturing co., ltd.
009d8e cardiac recorders, inc.
+ 009e1e cisco systems, inc
+ 009ec8 xiaomi communications co ltd
+ 009eee positivo tecnologia s.a.
00a000 centillion networks, inc.
00a001 drs signal solutions
00a002 leeds & northrup australia pty ltd
@@ -11591,11 +11720,11 @@ exit
00a00b computex co., ltd.
00a00c kingmax technology, inc.
00a00d the panda project
- 00a00e visual networks, inc.
+ 00a00e netscout systems inc
00a00f broadband technologies
00a010 syslogic datentechnik ag
00a011 mutoh industries ltd.
- 00a012 telco systems, inc.
+ 00a012 telco systems, inc.
00a013 teltrend ltd.
00a014 csir
00a015 wyle
@@ -11606,14 +11735,14 @@ exit
00a01a binar elektronik ab
00a01b premisys communications, inc.
00a01c nascent networks corporation
- 00a01d sixnet
+ 00a01d red lion controls, lp
00a01e est corporation
00a01f tricord systems, inc.
00a020 citicorp/tti
- 00a021 general dynamics
+ 00a021 general dynamics mission systems
00a022 centre for development of advanced computing
00a023 applied creative technology, inc.
- 00a024 3com corporation
+ 00a024 3com
00a025 redcom labs inc.
00a026 teldat, s.a.
00a027 firepower systems, inc.
@@ -11624,7 +11753,7 @@ exit
00a02c interwave communications
00a02d 1394 trade association
00a02e brand communications, ltd.
- 00a02f pirelli cavi
+ 00a02f adb broadband italia
00a030 captor nv/sa
00a031 hazeltine corporation, ms 1-17
00a032 ges singapore pte. ltd.
@@ -11641,12 +11770,12 @@ exit
00a03d opto-22
00a03e atm forum
00a03f computer society microprocessor & microprocessor standards c
- 00a040 apple
+ 00a040 apple, inc.
00a041 inficon
00a042 spur products corp.
00a043 american technology labs, inc.
00a044 ntt it co., ltd.
- 00a045 phoenix contact gmbh & co.
+ 00a045 phoenix contact electronics gmbh
00a046 scitex corp. ltd.
00a047 integrated fitness corp.
00a048 questech, ltd.
@@ -11661,7 +11790,7 @@ exit
00a051 angia communications. inc.
00a052 stanilite electronics pty. ltd
00a053 compact devices, inc.
- 00a054
+ 00a054 private
00a055 data device corporation
00a056 micropross
00a057 lancom systems gmbh
@@ -11688,7 +11817,7 @@ exit
00a06c shindengen electric mfg. co., ltd.
00a06d mannesmann tally corporation
00a06e austron, inc.
- 00a06f the appcon group, inc.
+ 00a06f color sentinel systems, llc
00a070 coastcom
00a071 video lottery technologies,inc
00a072 ovation systems ltd.
@@ -11705,12 +11834,12 @@ exit
00a07d seeq technology, inc.
00a07e avid technology, inc.
00a07f gsm-syntel, ltd.
- 00a080 tattile srl
+ 00a080 tattile srl
00a081 alcatel data networks
00a082 nkt elektronik a/s
00a083 asimmphony turkey
00a084 dataplex pty ltd
- 00a085
+ 00a085 private
00a086 amber wave systems, inc.
00a087 microsemi corporation
00a088 essential communications
@@ -11727,7 +11856,7 @@ exit
00a093 b/e aerospace, inc.
00a094 comsat corporation
00a095 acacia networks, inc.
- 00a096 mitsumi electric co., ltd.
+ 00a096 mitsumi electric co.,ltd.
00a097 jc information systems
00a098 netapp
00a099 k-net ltd.
@@ -11741,7 +11870,7 @@ exit
00a0a1 epic data inc.
00a0a2 digicom s.p.a.
00a0a3 reliable power meters
- 00a0a4 micros systems, inc.
+ 00a0a4 oracle corporation
00a0a5 teknor microsysteme, inc.
00a0a6 m.i. systems, k.k.
00a0a7 vorax corporation
@@ -11753,7 +11882,7 @@ exit
00a0ad marconi spa
00a0ae nucom systems, inc.
00a0af wms industries
- 00a0b0 i-o data device, inc.
+ 00a0b0 i-o data device,inc.
00a0b1 first virtual corporation
00a0b2 shima seiki
00a0b3 zykronix
@@ -11761,7 +11890,7 @@ exit
00a0b5 3h technology
00a0b6 sanritz automation co., ltd.
00a0b7 cordant, inc.
- 00a0b8 symbios logic inc.
+ 00a0b8 netapp
00a0b9 eagle technology, inc.
00a0ba patton electronics co.
00a0bb hilan gmbh
@@ -11774,11 +11903,11 @@ exit
00a0c2 r.a. systems co., ltd.
00a0c3 unicomputer gmbh
00a0c4 cristie electronics ltd.
- 00a0c5 zyxel communication
- 00a0c6 qualcomm incorporated
+ 00a0c5 zyxel communications corporation
+ 00a0c6 qualcomm inc.
00a0c7 tadiran telecommunications
- 00a0c8 adtran inc.
- 00a0c9 intel corporation - hf1-06
+ 00a0c8 adtran inc
+ 00a0c9 intel corporation
00a0ca fujitsu denso ltd.
00a0cb ark telecommunications, inc.
00a0cc lite-on communications, inc.
@@ -11790,7 +11919,7 @@ exit
00a0d2 allied telesis international corporation
00a0d3 instem computer systems, ltd.
00a0d4 radiolan, inc.
- 00a0d5 sierra wireless inc.
+ 00a0d5 sierra wireless
00a0d6 sbe, inc.
00a0d7 kasten chase applied research
00a0d8 spectra - tek
@@ -11825,41 +11954,59 @@ exit
00a0f5 radguard ltd.
00a0f6 autogas systems inc.
00a0f7 v.i computer corp.
- 00a0f8 symbol technologies, inc.
+ 00a0f8 zebra technologies inc
00a0f9 bintec communications gmbh
00a0fa marconi communication gmbh
- 00a0fb toray engineering co., ltd.
+ 00a0fb toray engineering d solutions co., ltd.
00a0fc image sciences, inc.
00a0fd scitex digital printing, inc.
00a0fe boston technology, inc.
00a0ff tellabs operations, inc.
00a1de shenzhen shihua technology co.,ltd
+ 00a289 cisco systems, inc
00a2da inat gmbh
+ 00a2ee cisco systems, inc
+ 00a2f5 guangzhou yuanyun network technology co.,ltd
00a2ff abatec group ag
+ 00a38e cisco systems, inc
+ 00a3d1 cisco systems, inc
+ 00a509 wigwag inc.
+ 00a5bf cisco systems, inc
+ 00a6ca cisco systems, inc
+ 00a742 cisco systems, inc
+ 00a784 itx security
00aa00 intel corporation
00aa01 intel corporation
00aa02 intel corporation
00aa3c olivetti telecom spa (olteco)
- 00aa70 lg electronics
+ 00aa6e cisco systems, inc
+ 00aa70 lg electronics (mobile communications)
+ 00ab48 eero inc.
00ace0 arris group, inc.
- 00b009 grass valley group
+ 00ad24 d-link international
+ 00ad63 dedicated micros malta ltd
+ 00add5 huawei device co., ltd.
+ 00aecd pensando systems
+ 00aefa murata manufacturing co., ltd.
+ 00af1f cisco systems, inc
+ 00b009 grass valley, a belden brand
00b017 infogear technology corp.
00b019 utc ccs
00b01c westport technologies
00b01e rantic labs, inc.
00b02a orsys gmbh
00b02d viagate technologies, inc.
- 00b033 oao "izhevskiy radiozavod"
+ 00b033 oao izhevskiy radiozavod
00b03b hiq networks
00b048 marconi communications inc.
- 00b04a cisco systems, inc.
+ 00b04a cisco systems, inc
00b052 atheros communications
- 00b064 cisco systems, inc.
+ 00b064 cisco systems, inc
00b069 honewell oy
00b06d jones futurex inc.
00b080 mannesmann ipulsys b.v.
00b086 locsoft limited
- 00b08e cisco systems, inc.
+ 00b08e cisco systems, inc
00b091 transmeta corp.
00b094 alaris, inc.
00b09a morrow technologies corp.
@@ -11867,34 +12014,60 @@ exit
00b0ac siae-microelettronica s.p.a.
00b0ae symmetricom
00b0b3 xstreamis plc
- 00b0c2 cisco systems, inc.
+ 00b0c2 cisco systems, inc
00b0c7 tellabs operations, inc.
- 00b0ce technology rescue
- 00b0d0 dell computer corp.
+ 00b0ce viveris technologies
+ 00b0d0 dell inc.
00b0db nextcell, inc.
00b0df starboard storage systems
+ 00b0e1 cisco systems, inc
00b0e7 british federal ltd.
00b0ec eacem
00b0ee ajile systems, inc.
00b0f0 caly networks
00b0f5 networth technologies, inc.
- 00b338 kontron design manufacturing services (m) sdn. bhd
+ 00b1e3 cisco systems, inc
+ 00b338 kontron asia pacific design sdn. bhd
00b342 macrosan technologies co., ltd.
+ 00b362 apple, inc.
+ 00b4f5 dongguan siyoto electronics co., ltd
00b56d david electronics co., ltd.
+ 00b5d0 samsung electronics co.,ltd
00b5d6 omnibit inc.
+ 00b600 voim co., ltd.
+ 00b670 cisco systems, inc
+ 00b69f latch
+ 00b771 cisco systems, inc
00b78d nanjing shining electric automation co., ltd
+ 00b7a8 heinzinger electronic gmbh
+ 00b810 yichip microelectronics (hangzhou) co.,ltd
+ 00b881 new platforms llc
+ 00b8b3 cisco systems, inc
+ 00b8b6 motorola mobility llc, a lenovo company
+ 00b8c2 heights telecom t ltd
00b9f6 shenzhen super rich electronics co.,ltd
00bac0 biometric access company
00bb01 octothorpe corp.
- 00bb3a
+ 00bb1c huawei device co., ltd.
+ 00bb3a amazon technologies inc.
+ 00bb60 intel corporate
00bb8e hme co., ltd.
+ 00bbc1 canon inc.
00bbf0 ungermann-bass inc.
+ 00bc60 cisco systems, inc
00bd27 exar corp.
00bd3a nokia corporation
+ 00bd82 shenzhen youhua technology co., ltd
+ 00be3b huawei technologies co.,ltd
+ 00be75 cisco systems, inc
+ 00be9e fiberhome telecommunication technologies co.,ltd
+ 00bed5 new h3c technologies co., ltd
00bf15 genetec inc.
+ 00bf61 samsung electronics co.,ltd
+ 00bf77 cisco systems, inc
00c000 lanoptics, ltd.
00c001 diatek patient managment
- 00c002 sercomm corporation
+ 00c002 sercomm corporation.
00c003 globalnet communications
00c004 japan business computer co.ltd
00c005 livingston enterprises, inc.
@@ -11915,7 +12088,7 @@ exit
00c014 telematics calabasas int'l,inc
00c015 new media corporation
00c016 electronic theatre controls
- 00c017 fluke corporation
+ 00c017 netally
00c018 lanart corporation
00c019 leap technology, inc.
00c01a corometrics medical systems
@@ -11971,7 +12144,7 @@ exit
00c04c department of foreign affairs
00c04d mitec, inc.
00c04e comtrol corporation
- 00c04f dell computer corporation
+ 00c04f dell inc.
00c050 toyo denki seizo k.k.
00c051 advanced integration research
00c052 burr-brown
@@ -11992,13 +12165,13 @@ exit
00c061 solectek corporation
00c062 impulse technology
00c063 morning star technologies, inc
- 00c064 general datacomm ind. inc.
+ 00c064 general datacomm llc
00c065 scope communications, inc.
00c066 docupoint, inc.
00c067 united barcode industries
00c068 hme clear-com ltd.
00c069 axxcelera broadband wireless
- 00c06a zahner-elektrik gmbh & co. kg
+ 00c06a zahner-elektrik ingeborg zahner-schiller gmbh & co. kg.
00c06b osi plus corporation
00c06c svec computer corp.
00c06d boca research, inc.
@@ -12041,7 +12214,7 @@ exit
00c092 mennen medical inc.
00c093 alta research corp.
00c094 vmx inc.
- 00c095 znyx
+ 00c095 znyx networks, inc.
00c096 tamura corporation
00c097 archipel sa
00c098 chuntex electronic co., ltd.
@@ -12051,7 +12224,7 @@ exit
00c09c hioki e.e. corporation
00c09d distributed systems int'l, inc
00c09e cache computers, inc.
- 00c09f quanta computer, inc.
+ 00c09f quanta computer inc.
00c0a0 advance micro research, inc.
00c0a1 tokyo denshi sekei co.
00c0a2 intermedium a/s
@@ -12063,7 +12236,7 @@ exit
00c0a8 gvc corporation
00c0a9 barron mccann ltd.
00c0aa silicon valley computer
- 00c0ab telco systems, inc.
+ 00c0ab telco systems, inc.
00c0ac gambit computer communications
00c0ad marben communication systems
00c0ae towercom co. inc. dba pc house
@@ -12074,7 +12247,7 @@ exit
00c0b3 comstat datacomm corporation
00c0b4 myson technology, inc.
00c0b5 corporate network systems,inc.
- 00c0b6 overland storage, inc.
+ 00c0b6 hve, inc.
00c0b7 american power conversion corp
00c0b8 fraser's hill ltd.
00c0b9 funk software, inc.
@@ -12130,9 +12303,9 @@ exit
00c0eb seh computertechnik gmbh
00c0ec dauphin technology
00c0ed us army electronic
- 00c0ee kyocera corporation
+ 00c0ee kyocera display corporation
00c0ef abit corporation
- 00c0f0 kingston technology corp.
+ 00c0f0 kingston technology company, inc.
00c0f1 shinko electric co., ltd.
00c0f2 transition networks
00c0f3 network communications corp.
@@ -12141,27 +12314,42 @@ exit
00c0f6 celan technology inc.
00c0f7 engage communication, inc.
00c0f8 about computing inc.
- 00c0f9 emerson network power
+ 00c0f9 artesyn embedded technologies
00c0fa canary communications, inc.
00c0fb advanced technology labs
00c0fc elastic reality, inc.
00c0fd prosum
00c0fe aptec computer systems, inc.
- 00c0ff dot hill systems corporation
+ 00c0ff seagate cloud systems inc
00c14f ddl co,.ltd.
+ 00c164 cisco systems, inc
+ 00c1b1 cisco systems, inc
00c2c6 intel corporate
+ 00c343 e-t-a circuit breakers ltd
+ 00c3f4 samsung electronics co.,ltd
+ 00c52c juniper networks
00c5db datatech sistemas digitales avanzados sl
- 00c610 apple
- 00cbbd cambridge broadband networks ltd.
+ 00c610 apple, inc.
+ 00c88b cisco systems, inc
+ 00cae5 cisco systems, inc
+ 00cb00 private
+ 00cb51 sagemcom broadband sas
+ 00cbb4 shenzhen ateko photoelectricity co.,ltd
+ 00cbbd cambridge broadband networks group
+ 00cc34 juniper networks
+ 00cc3f universal electronics, inc.
+ 00ccfc cisco systems, inc
00cd90 mas elektronik ag
- 00cf1c communication machinery corp.
+ 00cdfe apple, inc.
+ 00cf1c communication machinery corporation
+ 00cfc0 china mobile group device co.,ltd.
00d000 ferran scientific, inc.
00d001 vst technologies, inc.
00d002 ditech corporation
00d003 comda enterprises corp.
00d004 pentacom ltd.
00d005 zhs zeitmanagementsysteme
- 00d006 cisco systems, inc.
+ 00d006 cisco systems, inc
00d007 mic associates, inc.
00d008 mactell corporation
00d009 hsing tech. enterprise co. ltd
@@ -12186,7 +12374,7 @@ exit
00d01c sbs technologies,
00d01d furuno electric co., ltd.
00d01e pingtel corp.
- 00d01f ctam pty. ltd.
+ 00d01f senetas corporation ltd
00d020 aim system, inc.
00d021 regent electronics corp.
00d022 incredible technologies, inc.
@@ -12200,7 +12388,7 @@ exit
00d02a voxent systems ltd.
00d02b jetcell, inc.
00d02c campbell scientific, inc.
- 00d02d ademco
+ 00d02d resideo
00d02e communication automation corp.
00d02f vlsi technology inc.
00d030 safetran systems corp
@@ -12210,7 +12398,7 @@ exit
00d034 ormec systems corp.
00d035 behavior tech. computer corp.
00d036 technology atlanta corp.
- 00d037 pace france
+ 00d037 arris group, inc.
00d038 fivemere, ltd.
00d039 utilicom, inc.
00d03a zoneworx, inc.
@@ -12235,7 +12423,7 @@ exit
00d04d div of research & statistics
00d04e logibag
00d04f bitronics, inc.
- 00d050 iskratel
+ 00d050 iskratel d.o.o.
00d051 o2 micro, inc.
00d052 ascend communications, inc.
00d053 connected systems
@@ -12243,18 +12431,18 @@ exit
00d055 kathrein-werke kg
00d056 somat corporation
00d057 ultrak, inc.
- 00d058 cisco systems, inc.
+ 00d058 cisco systems, inc
00d059 ambit microsystems corp.
00d05a symbionics, ltd.
00d05b acroloop motion control
- 00d05c technotrend systemtechnik gmbh
+ 00d05c kathrein technotrend gmbh
00d05d intelliworxx, inc.
00d05e stratabeam technology, inc.
00d05f valcom, inc.
00d060 panasonic europe ltd.
00d061 tremon enterprises co., ltd.
00d062 digigram
- 00d063 cisco systems, inc.
+ 00d063 cisco systems, inc
00d064 multitel
00d065 toko electric
00d066 wintriss engineering corp.
@@ -12276,7 +12464,7 @@ exit
00d076 bank of america
00d077 lucent technologies
00d078 eltex of sweden ab
- 00d079 cisco systems, inc.
+ 00d079 cisco systems, inc
00d07a amaquest computer corp.
00d07b comcam international inc
00d07c koyo electronics inc. co.,ltd.
@@ -12297,23 +12485,23 @@ exit
00d08b adva optical networking ltd.
00d08c genoa technology, inc.
00d08d phoenix group, inc.
- 00d08e nvision inc.
+ 00d08e grass valley, a belden brand
00d08f ardent technologies, inc.
- 00d090 cisco systems, inc.
+ 00d090 cisco systems, inc
00d091 smartsan systems, inc.
00d092 glenayre western multiplex
00d093 tq - components gmbh
- 00d094 timeline vista, inc.
- 00d095 alcatel-lucent, enterprise business group
- 00d096 3com europe ltd.
- 00d097 cisco systems, inc.
+ 00d094 seeion control llc
+ 00d095 alcatel-lucent enterprise
+ 00d096 3com europe ltd
+ 00d097 cisco systems, inc
00d098 photon dynamics canada inc.
00d099 elcard wireless systems oy
00d09a filanet corporation
00d09b spectel ltd.
00d09c kapadia communications
00d09d veris industries
- 00d09e 2wire, inc.
+ 00d09e 2wire inc
00d09f novtek test systems
00d0a0 mips denmark
00d0a1 oskar vierling gmbh + co. kg
@@ -12327,7 +12515,7 @@ exit
00d0a9 shinano kenshi co., ltd.
00d0aa chase communications
00d0ab deltakabel telecom cv
- 00d0ac grayson wireless
+ 00d0ac commscope, inc
00d0ad tl industries
00d0ae oresis communications, inc.
00d0af cutler-hammer, inc.
@@ -12341,13 +12529,13 @@ exit
00d0b7 intel corporation
00d0b8 iomega corporation
00d0b9 microtek international, inc.
- 00d0ba cisco systems, inc.
- 00d0bb cisco systems, inc.
- 00d0bc cisco systems, inc.
- 00d0bd silicon image gmbh
+ 00d0ba cisco systems, inc
+ 00d0bb cisco systems, inc
+ 00d0bc cisco systems, inc
+ 00d0bd lattice semiconductor corp. (lpa)
00d0be emutec inc.
00d0bf pivotal technologies
- 00d0c0 cisco systems, inc.
+ 00d0c0 cisco systems, inc
00d0c1 harmonic data systems, ltd.
00d0c2 balthazar technology ab
00d0c3 vivid technology pte, ltd.
@@ -12361,17 +12549,17 @@ exit
00d0cb dasan co., ltd.
00d0cc technologies lyre inc.
00d0cd atan technology inc.
- 00d0ce asyst electronic
+ 00d0ce isystem labs
00d0cf moreton bay
00d0d0 zhongxing telecom ltd.
00d0d1 sycamore networks
00d0d2 epilog corporation
- 00d0d3 cisco systems, inc.
+ 00d0d3 cisco systems, inc
00d0d4 v-bits, inc.
00d0d5 grundig ag
00d0d6 aethra telecomunicazioni
00d0d7 b2c2, inc.
- 00d0d8 3com corporation
+ 00d0d8 3com
00d0d9 dedicated microcomputers
00d0da taicom data systems co., ltd.
00d0db mcquay international
@@ -12383,7 +12571,7 @@ exit
00d0e1 avionitek israel inc.
00d0e2 mrt micro, inc.
00d0e3 ele-chem engineering co., ltd.
- 00d0e4 cisco systems, inc.
+ 00d0e4 cisco systems, inc
00d0e5 solidum systems corp.
00d0e6 ibond inc.
00d0e7 vcon telecommunication ltd.
@@ -12391,7 +12579,7 @@ exit
00d0e9 advantage century telecommunication corp.
00d0ea nextone communications, inc.
00d0eb lightera networks, inc.
- 00d0ec nakayo telecommunications, inc
+ 00d0ec nakayo inc
00d0ed xiox
00d0ee dictaphone corporation
00d0ef igt
@@ -12401,7 +12589,7 @@ exit
00d0f3 solari di udine spa
00d0f4 carinthian tech institute
00d0f5 orange micro, inc.
- 00d0f6 alcatel canada
+ 00d0f6 nokia
00d0f7 next nets corporation
00d0f8 fujian star terminal
00d0f9 acute communications corp.
@@ -12410,13 +12598,23 @@ exit
00d0fc granite microsystems
00d0fd optima tele.com, inc.
00d0fe astral point
- 00d0ff cisco systems, inc.
+ 00d0ff cisco systems, inc
00d11c acetel
+ 00d279 vingroup joint stock company
+ 00d2b1 tpv display technology (xiamen) co.,ltd.
+ 00d318 spg controls
00d38d hotel technology next generation
00d632 ge energy
+ 00d6fe cisco systems, inc
+ 00d78f cisco systems, inc
+ 00d861 micro-star intl co., ltd.
+ 00d9d1 sony interactive entertainment inc.
+ 00da55 cisco systems, inc
00db1e albedo telecom sl
00db45 thamway co.,ltd.
+ 00db70 apple, inc.
00dbdf intel corporate
+ 00dcb2 extreme networks, inc.
00dd00 ungermann-bass inc.
00dd01 ungermann-bass inc.
00dd02 ungermann-bass inc.
@@ -12433,7 +12631,8 @@ exit
00dd0d ungermann-bass inc.
00dd0e ungermann-bass inc.
00dd0f ungermann-bass inc.
- 00defb cisco systems, inc.
+ 00dd25 shenzhen hechengdong technology co., ltd
+ 00defb cisco systems, inc
00e000 fujitsu limited
00e001 strand lighting limited
00e002 crossroads systems, inc.
@@ -12443,18 +12642,18 @@ exit
00e006 silicon integrated sys. corp.
00e007 avaya ecs ltd
00e008 amazing controls! inc.
- 00e009 marathon technologies corp.
+ 00e009 stratus technologies
00e00a diba, inc.
00e00b rooftop communications corp.
00e00c motorola
00e00d radiant systems
00e00e avalon imaging systems, inc.
- 00e00f shanghai baud data
+ 00e00f shanghai baud data communication co.,ltd.
00e010 hess sb-automatenbau gmbh
00e011 uniden corporation
00e012 pluto technologies international inc.
00e013 eastern electronic co., ltd.
- 00e014 cisco systems, inc.
+ 00e014 cisco systems, inc
00e015 heiwa corporation
00e016 rapid city communications
00e017 exxact gmbh
@@ -12464,11 +12663,11 @@ exit
00e01b sphere communications, inc.
00e01c cradlepoint, inc
00e01d webtv networks, inc.
- 00e01e cisco systems, inc.
+ 00e01e cisco systems, inc
00e01f avidia systems, inc.
00e020 tecnomen oy
00e021 freegate corp.
- 00e022 analog devices inc.
+ 00e022 analog devices, inc.
00e023 telrad
00e024 gadzoox networks
00e025 dit co., ltd.
@@ -12477,7 +12676,7 @@ exit
00e028 aptix corporation
00e029 standard microsystems corp.
00e02a tandberg television as
- 00e02b extreme networks
+ 00e02b extreme networks, inc.
00e02c ast computer
00e02d innomedialogic, inc.
00e02e spc electronics corporation
@@ -12486,8 +12685,8 @@ exit
00e031 hagiwara electric co., ltd.
00e032 misys financial systems, ltd.
00e033 e.e.p.d. gmbh
- 00e034 cisco systems, inc.
- 00e035 emerson network power
+ 00e034 cisco systems, inc
+ 00e035 artesyn embedded technologies
00e036 pioneer corporation
00e037 century corporation
00e038 proxima corporation
@@ -12508,15 +12707,15 @@ exit
00e047 infocus corporation
00e048 sdl communications, inc.
00e049 microwi electronic gmbh
- 00e04a enhanced messaging systems, inc
+ 00e04a zx technologies, inc
00e04b jump industrielle computertechnik gmbh
00e04c realtek semiconductor corp.
00e04d internet initiative japan, inc
00e04e sanyo denki co., ltd.
- 00e04f cisco systems, inc.
+ 00e04f cisco systems, inc
00e050 executone information systems, inc.
00e051 talx corporation
- 00e052 brocade communications systems, inc
+ 00e052 brocade communications systems llc
00e053 cellport labs, inc.
00e054 kodai hitec co., ltd.
00e055 ingenieria electronica comercial inelcom s.a.
@@ -12526,14 +12725,14 @@ exit
00e059 controlled environments, ltd.
00e05a galea network security
00e05b west end systems corp.
- 00e05c matsushita kotobuki electronics industries, ltd.
+ 00e05c phc corporation
00e05d unitec co., ltd.
00e05e japan aviation electronics industry, ltd.
00e05f e-net, inc.
00e060 sherwood
00e061 edgepoint networks, inc.
00e062 host engineering
- 00e063 cabletron - yago systems, inc.
+ 00e063 cabletron systems, inc.
00e064 samsung electronics
00e065 optical access international
00e066 promax systems, inc.
@@ -12542,7 +12741,7 @@ exit
00e069 jaycor
00e06a kapsch ag
00e06b w&g special products
- 00e06c ultra electronics limited (aep networks)
+ 00e06c ultra electronics command & control systems
00e06d compuware corporation
00e06e far systems s.p.a.
00e06f arris group, inc.
@@ -12573,20 +12772,20 @@ exit
00e088 ltx-credence corporation
00e089 ion networks, inc.
00e08a gec avery, ltd.
- 00e08b qlogic corp.
+ 00e08b qlogic corporation
00e08c neoparadigm labs, inc.
00e08d pressure systems, inc.
00e08e utstarcom
- 00e08f cisco systems, inc.
+ 00e08f cisco systems, inc
00e090 beckman lab. automation div.
- 00e091 lg electronics, inc.
+ 00e091 lg electronics
00e092 admtek incorporated
00e093 ackfin networks
00e094 osai srl
00e095 advanced-vision technolgies corp.
00e096 shimadzu corporation
00e097 carrier access corporation
- 00e098 abocom systems, inc.
+ 00e098 abocom
00e099 samson ag
00e09a positron inc.
00e09b engage networks, inc.
@@ -12597,7 +12796,7 @@ exit
00e0a0 wiltron co.
00e0a1 hima paul hildebrandt gmbh co. kg
00e0a2 microslate inc.
- 00e0a3 cisco systems, inc.
+ 00e0a3 cisco systems, inc
00e0a4 esaote s.p.a.
00e0a5 comcore semiconductor, inc.
00e0a6 telogy networks, inc.
@@ -12610,14 +12809,14 @@ exit
00e0ad ees technology, ltd.
00e0ae xaqti corporation
00e0af general dynamics information systems
- 00e0b0 cisco systems, inc.
- 00e0b1 alcatel-lucent, enterprise business group
+ 00e0b0 cisco systems, inc
+ 00e0b1 alcatel-lucent enterprise
00e0b2 telmax communications corp.
00e0b3 etherwan systems, inc.
00e0b4 techno scope co., ltd.
00e0b5 ardent communications corp.
00e0b6 entrada networks
- 00e0b7 pi group, ltd.
+ 00e0b7 cosworth electronics ltd
00e0b8 gateway 2000
00e0b9 byas systems
00e0ba berghof automationstechnik gmbh
@@ -12641,7 +12840,7 @@ exit
00e0cc hero systems, ltd.
00e0cd saab sensis corporation
00e0ce arn
- 00e0cf integrated device technology, inc.
+ 00e0cf integrated device
00e0d0 netspeed, inc.
00e0d1 telsis limited
00e0d2 versanet communications, inc.
@@ -12652,19 +12851,19 @@ exit
00e0d7 sunshine electronics, inc.
00e0d8 lanbit computer, inc.
00e0d9 tazmo co., ltd.
- 00e0da alcatel north america esd
+ 00e0da alcatel-lucent enterprise
00e0db viavideo communications, inc.
00e0dc nexware corp.
00e0dd zenith electronics corporation
00e0de datax nv
- 00e0df keymile gmbh
+ 00e0df dzs gmbh
00e0e0 si electronics, ltd.
00e0e1 g2 networks, inc.
00e0e2 innova corp.
00e0e3 sk-elektronik gmbh
00e0e4 fanuc robotics north america, inc.
00e0e5 cinco networks, inc.
- 00e0e6 incaa datacom b.v.
+ 00e0e6 incaa computers
00e0e7 raytheon e-systems, inc.
00e0e8 gretacoder data systems ag
00e0e9 data labs, inc.
@@ -12681,143 +12880,346 @@ exit
00e0f4 inside technology a/s
00e0f5 teles ag
00e0f6 decision europe
- 00e0f7 cisco systems, inc.
+ 00e0f7 cisco systems, inc
00e0f8 dicna control ab
- 00e0f9 cisco systems, inc.
+ 00e0f9 cisco systems, inc
00e0fa trl technology, ltd.
00e0fb leightronix, inc.
- 00e0fc huawei technologies co., ltd.
+ 00e0fc huawei technologies co.,ltd
00e0fd a-trend technology co., ltd.
- 00e0fe cisco systems, inc.
+ 00e0fe cisco systems, inc
00e0ff security dynamics technologies, inc.
+ 00e16d cisco systems, inc
00e175 ak-systems ltd
+ 00e18c intel corporate
+ 00e22c china mobile group device co.,ltd.
00e3b2 samsung electronics co.,ltd
+ 00e400 sichuan changhong electric ltd.
+ 00e406 huawei technologies co.,ltd
+ 00e421 sony interactive entertainment inc.
+ 00e5e4 sichuan tianyi comheart telecom co., ltd.
00e666 arima communications corp.
00e6d3 nixdorf computer corp.
+ 00e6e8 netzin technology corporation,.ltd.
00e8ab meggitt training systems, inc.
- 00eb2d sony mobile communications ab
+ 00e93a azurewave technology inc.
+ 00eabd cisco systems, inc
+ 00eb2d sony mobile communications inc
+ 00ebd5 cisco systems, inc
+ 00ec0a xiaomi communications co ltd
+ 00edb8 kyocera corporation
+ 00eeab cisco systems, inc
00eebd htc corporation
00f051 kwb gmbh
+ 00f22c shanghai b-star technology co.,ltd.
+ 00f28b cisco systems, inc
+ 00f361 amazon technologies inc.
+ 00f3db woo sports
00f403 orbis systems oy
- 00f4b9 apple
+ 00f46f samsung electronics co.,ltd
+ 00f48d liteon technology corporation
+ 00f4b9 apple, inc.
+ 00f620 google, inc.
+ 00f663 cisco systems, inc
+ 00f76f apple, inc.
+ 00f81c huawei technologies co.,ltd
+ 00f82c cisco systems, inc
00f860 pt. panggung electric citrabuana
+ 00f871 dgs denmark a/s
+ 00fa21 samsung electronics co.,ltd
00fa3b cloos electronic gmbh
00fc58 websilicon ltd.
00fc70 intrepid control systems, inc.
+ 00fc8b amazon technologies inc.
+ 00fc8d hitron technologies. inc
+ 00fcba cisco systems, inc
+ 00fd22 cisco systems, inc
+ 00fd45 hewlett packard enterprise
00fd4c nevatec
+ 00fec8 cisco systems, inc
020701 racal-datacom
021c7c perq systems corporation
026086 logic replacement tech. ltd.
- 02608c 3com corporation
+ 02608c 3com
027001 racal-datacom
0270b0 m/a-com inc. companies
- 0270b3 data recall ltd
- 029d8e cardiac recorders inc.
+ 0270b3 data recall ltd.
+ 029d8e cardiac recorders, inc.
02aa3c olivetti telecomm spa (olteco)
02bb01 octothorpe corp.
- 02c08c 3com corporation
- 02cf1c communication machinery corp.
- 02e6d3 nixdorf computer corporation
+ 02c08c 3com
+ 02cf1c communication machinery corporation
+ 02e6d3 nixdorf computer corp.
+ 04021f huawei technologies co.,ltd
+ 0402ca shenzhen vtsonic co.,ltd
+ 0403d6 nintendo co.,ltd
+ 0404ea valens semiconductor ltd.
+ 0405dd shenzhen cultraview digital technology co., ltd
+ 04072e vtech electronics ltd.
+ 040973 hewlett packard enterprise
+ 0409a5 hfr, inc.
040a83 alcatel-lucent
040ae0 xmit ag computer networks
- 040cce apple
+ 040cce apple, inc.
+ 040e3c hp inc.
040ec2 viewsonic mobile china limited
- 041552 apple
+ 041119 ieee registration authority
+ 041552 apple, inc.
+ 0415d9 viwone
04180f samsung electronics co.,ltd
- 0418b6
- 0418d6 ubiquiti networks
+ 0418b6 private
+ 0418d6 ubiquiti networks inc.
+ 04197f grasphere japan
041a04 waveip
+ 041b6d lg electronics (mobile communications)
041b94 host mobility ab
041bba samsung electronics co.,ltd
041d10 dream ware inc.
- 041e64 apple
- 04209a panasonic avc networks company
+ 041dc7 zte corporation
+ 041e64 apple, inc.
+ 041e7a dspworks
+ 041efa bissell homecare, inc.
+ 04209a panasonic corporation avc networks company
+ 042144 sunitec enterprise co.,ltd
+ 04214c insight energy ventures llc
042234 wireless standard extensions
+ 0425c5 huawei technologies co.,ltd
+ 0425e0 taicang t&w electronics
042605 gfr gesellschaft für regelungstechnik und energieeinsparung mbh
- 042665 apple
+ 042665 apple, inc.
+ 042728 microsoft corporation
+ 042758 huawei technologies co.,ltd
+ 042ae2 cisco systems, inc
042bbb picocela, inc.
+ 042db4 first property (beijing) co., ltd modern moma branch
042f56 atocs (shenzhen) ltd
+ 043110 inspur group co., ltd.
0432f4 partron
+ 043385 nanchang blackshark co.,ltd.
+ 043389 huawei technologies co.,ltd
+ 0433c2 intel corporate
043604 gyeyoung i&t
+ 043a0d sm optics s.r.l.
043d98 chongqing qingjia electronics co.,ltd
+ 043f72 mellanox technologies, inc.
+ 0440a9 new h3c technologies co., ltd
+ 044169 gopro
0444a1 telecon galicia,s.a.
+ 044562 andra sp. z o. o.
+ 0445a1 nirit- xinwei telecom technology co., ltd.
044665 murata manufacturing co., ltd.
- 04489a apple
+ 0446cf beijing venustech cybervision co.,ltd.
+ 04489a apple, inc.
+ 04495d huawei device co., ltd.
044a50 ramaxel technology (shenzhen) limited company
+ 044a6c huawei technologies co.,ltd
+ 044ac6 aipon electronics co., ltd
+ 044bed apple, inc.
044bff guangzhou hedy digital technology co., ltd
044cef fujian sanao technology co.,ltd
044e06 ericsson ab
+ 044e5a arris group, inc.
+ 044eaf lg innotek
+ 044f17 humax co., ltd.
+ 044f4c huawei technologies co.,ltd
044f8b adapteva, inc.
044faa ruckus wireless
- 045453 apple
+ 0450da qiku internet network scientific (shenzhen) co., ltd
+ 0452c7 bose corporation
+ 0452f3 apple, inc.
+ 0453d5 sysorex global holdings
+ 045453 apple, inc.
0455ca briview (xiamen) corp.
+ 045604 gionee communication equipment co.,ltd.
+ 0456e5 intel corporate
04572f sertel electronics uk ltd
04586f sichuan whayer information industry co.,ltd
045a95 nokia corporation
045c06 zmodo technology corporation
+ 045c6c juniper networks
+ 045c8e gosund group co.,ltd
+ 045d4b sony corporation
045d56 camtron industrial inc.
+ 045ea4 shenzhen netis technology co.,ltd
045fa7 shenzhen yichen technology development co.,ltd
+ 045fb9 cisco systems, inc
+ 046169 media global links co., ltd.
+ 046273 cisco systems, inc
0462d7 alstom hydro france
0463e0 nome oy
+ 046565 testop
+ 046785 scemtec hard- und software fuer mess- und steuerungstechnik gmbh
+ 0469f8 apple, inc.
+ 046b1b sysdine co., ltd.
+ 046b25 sichuan tianyi comheart telecom co.,ltd
+ 046c59 intel corporate
+ 046c9d cisco systems, inc
046d42 bryston ltd.
+ 046e02 openrtls group
046e49 taiyear electronic technology (suzhou) co., ltd
0470bc globalstar inc.
+ 04714b ieee registration authority
+ 047295 apple, inc.
0474a1 aligera equipamentos digitais ltda
+ 047503 huawei technologies co.,ltd
0475f5 csst
- 04766e alps co,. ltd.
+ 04766e alpsalpine co,.ltd
+ 0476b0 cisco systems, inc
+ 047863 shanghai mxchip information technology co., ltd.
+ 047970 huawei technologies co.,ltd
+ 047975 honor device co., ltd.
+ 0479b7 texas instruments
+ 047a0b beijing xiaomi electronics co., ltd.
+ 047bcb universal global scientific industrial co., ltd.
+ 047d50 shenzhen kang ying technology co.ltd.
047d7b quanta computer inc.
+ 047e23 china mobile iot company limited
+ 047e4a moobox co., ltd.
+ 047f0e barrot technology limited
+ 04819b bskyb ltd
0481ae clack corporation
04848a 7inova technology limited
+ 04885f huawei technologies co.,ltd
04888c eifelwerk butler systeme gmbh
0488e2 beats electronics llc
- 048a15 avaya, inc
- 048b42 skspruce technology limited
+ 048a15 avaya inc
+ 048ae1 flextronics manufacturing(zhuhai)co.,ltd.
+ 048b42 skspruce technologies
048c03 thinpad technology (shenzhen)co.,ltd
+ 048c16 huawei technologies co.,ltd
+ 048c9a huawei device co., ltd.
048d38 netcore technology inc.
+ 049081 pensando systems, inc.
+ 049162 microchip technology inc.
+ 049226 asustek computer inc.
+ 0492ee iway ag
+ 04946b tecno mobile limited
0494a1 catch the wind inc
- 0498f3 alps electric co,. ltd.
+ 049573 zte corporation
+ 0495e6 tenda technology co.,ltd.dongguan branch
+ 049645 wuxi sky chip interconnection technology co.,ltd.
+ 049790 lartech telecom llc
+ 0498f3 alpsalpine co,.ltd
+ 0499e6 shenzhen yoostar technology co., ltd
+ 049b9c eadingcore intelligent technology co., ltd.
049c62 bmt medical technology s.r.o.
+ 049dfe hivesystem
049f06 smobile co., ltd.
- 049f81 netscout systems, inc.
- 04a151 netgear inc.,
+ 049f81 netscout systems inc
+ 049fca huawei technologies co.,ltd
+ 04a151 netgear
+ 04a222 arcadyan corporation
+ 04a2f3 fiberhome telecommunication technologies co.,ltd
+ 04a316 texas instruments
04a3f3 emicon
04a82a nokia corporation
+ 04aae1 beijing microvision technology co.,ltd
+ 04ab18 elecom co.,ltd.
+ 04ab6a chun-il co.,ltd.
+ 04ac44 holtek semiconductor inc.
+ 04b0e7 huawei technologies co.,ltd
+ 04b167 xiaomi communications co ltd
+ 04b1a1 samsung electronics co.,ltd
04b3b6 seamap (uk) ltd
+ 04b429 samsung electronics co.,ltd
04b466 bsp co., ltd.
+ 04b648 zenner
+ 04ba1c huawei device co., ltd.
+ 04ba36 li seng technology ltd
+ 04ba8d samsung electronics co.,ltd
+ 04bbf9 pavilion data systems inc
+ 04bc87 shenzhen justlink technology co., ltd
+ 04bd70 huawei technologies co.,ltd
+ 04bd88 aruba, a hewlett packard enterprise company
+ 04bdbf samsung electronics co.,ltd
+ 04bf6d zyxel communications corporation
04bfa8 isb corporation
04c05b tigo energy
- 04c06f shenzhen huawei communication technologies co., ltd
- 04c1b9 fiberhome telecommunication tech.co.,ltd.
- 04c5a4 cisco systems, inc.
+ 04c06f huawei technologies co.,ltd
+ 04c09c tellabs inc.
+ 04c103 clover network, inc.
+ 04c1b9 fiberhome telecommunication technologies co.,ltd
+ 04c1d8 huawei device co., ltd.
+ 04c23e htc corporation
+ 04c241 nokia
+ 04c29b aura home, inc.
+ 04c3e6 ieee registration authority
+ 04c5a4 cisco systems, inc
+ 04c807 xiaomi communications co ltd
04c880 samtec inc
+ 04c991 phistek inc.
+ 04c9d9 dish technologies corp
04cb1d traka plc
+ 04cb88 shenzhen jingxun software telecommunication technology co.,ltd
04ce14 wilocity ltd.
+ 04ce7e nxp france semiconductors france
04cf25 manycolors, inc.
+ 04cf8c xiaomi electronics,co.,ltd
+ 04d13a xiaomi communications co ltd
+ 04d16e ieee registration authority
+ 04d320 itel mobile limited
+ 04d395 motorola mobility llc, a lenovo company
+ 04d3b0 intel corporate
+ 04d3b5 huawei device co., ltd.
+ 04d3cf apple, inc.
04d437 znv
+ 04d4c4 asustek computer inc.
+ 04d590 fortinet, inc.
+ 04d60e funai electric co., ltd.
+ 04d6aa samsung electro-mechanics(thailand)
+ 04d6f4 gd midea air-conditioning equipment co.,ltd.
04d783 y&h e&c co.,ltd.
- 04dad2 cisco
+ 04d7a5 new h3c technologies co., ltd
+ 04d9f5 asustek computer inc.
+ 04dad2 cisco systems, inc
04db56 apple, inc.
04db8a suntech international ltd.
04dd4c velocytech
+ 04dedb rockport networks inc
+ 04def2 shenzhen ecom technology co. ltd
04df69 car connectivity consortium
+ 04e0b0 shenzhen youhua technology co., ltd
04e0c4 triumph-adler ag
04e1c8 ims soluções em energia ltda.
+ 04e229 qingdao haier technology co.,ltd
04e2f8 aep ticketing solutions srl
04e451 texas instruments
- 04e536 apple
+ 04e536 apple, inc.
04e548 cohda wireless pty ltd
+ 04e56e thub co., ltd.
+ 04e598 xiaomi communications co ltd
04e662 acroname inc.
+ 04e676 ampak technology, inc.
+ 04e77e we corporation inc.
+ 04e795 huawei technologies co.,ltd
04e9e5 pjrc.com, llc
+ 04ea56 intel corporate
+ 04eb40 cisco systems, inc
+ 04ecbb fiberhome telecommunication technologies co.,ltd
+ 04ed33 intel corporate
+ 04ee03 texas instruments
04ee91 x-fabric gmbh
04f021 compex systems pte ltd
- 04f13e apple
+ 04f03e huawei device co., ltd.
+ 04f128 hmd global oy
+ 04f13e apple, inc.
+ 04f169 huawei device co., ltd.
04f17d tarana wireless
+ 04f352 huawei technologies co.,ltd
04f4bc xena networks
- 04f7e4 apple
+ 04f5f4 proxim wireless
+ 04f7e4 apple, inc.
04f8c2 flaircomm microelectronics, inc.
+ 04f8f8 edgecore networks corporation
04f938 huawei technologies co.,ltd
+ 04f993 infinix mobility limited
+ 04f9d9 speaker electronic(jiashan) co.,ltd
+ 04fa3f opticore inc.
+ 04fa83 qingdao haier technology co.,ltd
04fe31 samsung electronics co.,ltd
- 04fe7f cisco systems, inc.
+ 04fe7f cisco systems, inc
+ 04fe8d huawei technologies co.,ltd
+ 04fea1 fihonest communication co.,ltd
04ff51 novamedia innovision sp. z o.o.
080001 computervision corporation
080002 bridge communications inc.
@@ -12825,13 +13227,13 @@ exit
080004 cromemco incorporated
080005 symbolics inc.
080006 siemens ag
- 080007 apple
+ 080007 apple, inc.
080008 bolt beranek and newman inc.
080009 hewlett packard
08000a nestar systems incorporated
08000b unisys corporation
08000c miklyn development co.
- 08000d international computers ltd.
+ 08000d international computers, ltd
08000e ncr corporation
08000f mitel corporation
080011 tektronix inc.
@@ -12844,7 +13246,7 @@ exit
080018 pirelli focom networks
080019 general electric corporation
08001a tiara/ 10net
- 08001b emc corporation
+ 08001b dell emc
08001c kdd-kokusai debnsin denwa co.
08001d able communications inc.
08001e apollo computer inc.
@@ -12856,7 +13258,7 @@ exit
080024 10net communications/dca
080025 control data
080026 norsk data a.s.
- 080027 cadmus computer systems
+ 080027 pcs systemtechnik gmbh
080028 texas instruments
080029 megatek corporation
08002a mosaic technologies inc.
@@ -12865,8 +13267,8 @@ exit
08002d lan-tec inc.
08002e metaphor computer systems
08002f prime computer inc.
- 080030 network research corporation
080030 cern
+ 080030 network research corporation
080030 royal melbourne inst of tech
080031 little machines inc.
080032 tigan incorporated
@@ -12897,7 +13299,7 @@ exit
08004b planning research corp.
08004c hydra computer systems inc.
08004d corvus systems inc.
- 08004e 3com europe ltd.
+ 08004e 3com europe ltd
08004f cygnet systems
080050 daisy systems corp.
080051 experdata
@@ -12923,14 +13325,14 @@ exit
080066 agfa corporation
080067 comdesign
080068 ridge computers
- 080069 silicon graphics inc.
- 08006a att bell laboratories
+ 080069 silicon graphics
+ 08006a at&t
08006b accel technologies inc.
08006c suntek technology int'l
08006d whitechapel computer works
08006e masscomp
08006f philips apeldoorn b.v.
- 080070 mitsubishi electric corp.
+ 080070 mitsubishi precision co.,ltd.
080071 matra (dsie)
080072 xerox corp univ grant program
080073 tecmar inc.
@@ -12952,8 +13354,8 @@ exit
080084 tomen electronics corp.
080085 elxsi
080086 konica minolta holdings, inc.
- 080087 xyplex
- 080088 brocade communications systems, inc.
+ 080087 xyplex, inc.
+ 080088 brocade communications systems llc
080089 kinetics
08008a perftech, inc.
08008b pyramid technology corp.
@@ -12962,180 +13364,442 @@ exit
08008e tandem computers
08008f chipcom corporation
080090 sonoma systems
+ 08010f sichuan tianyi comheart telecomco.,ltd
+ 08028e netgear
+ 080342 palo alto networks
080371 krg corporate
+ 080581 roku, inc.
0805cd dongguang enmai electronic product co.ltd.
- 0808c2 samsung electronics
+ 0808c2 samsung electronics co.,ltd
0808ea amsc
+ 0809b6 masimo corp
+ 0809c7 zhuhai unitech power technology co., ltd.
+ 080a4e planet bingo® — 3rd rock gaming®
080c0b sysmik gmbh dresden
080cc9 mission technology group, dba magma
080d84 geco, inc.
080ea8 velex s.r.l.
080ffa ksp inc.
+ 081086 nec platforms, ltd.
+ 08115e bitel co., ltd.
081196 intel corporate
+ 0812a5 amazon technologies inc.
081443 unibrain s.a.
+ 08152f samsung electronics co., ltd. artik
081651 shenzhen sea star technology co.,ltd
- 081735 cisco systems, inc.
+ 081735 cisco systems, inc
0817f4 ibm corp
08181a zte corporation
08184c a. s. thomas, inc.
0819a6 huawei technologies co.,ltd
+ 081dc4 thermo fisher scientific messtechnik gmbh
081dfb shanghai mexon communication technology co.,ltd
081f3f wondalink inc.
- 081ff3 cisco systems, inc.
+ 081f71 tp-link technologies co.,ltd.
+ 081feb bincube
+ 081ff3 cisco systems, inc
+ 0821ef samsung electronics co.,ltd
+ 0823b2 vivo mobile communication co., ltd.
082522 advansee
+ 082525 xiaomi communications co ltd
+ 082697 zyxel communications corporation
082719 aps systems/electronic ag
+ 0827ce nagano keiki co., ltd.
082ad0 srd innovations inc.
+ 082cb0 network instruments
+ 082cb6 apple, inc.
+ 082ced technity solutions inc.
+ 082e36 huawei device co., ltd.
082e5f hewlett packard
+ 082fe9 huawei technologies co.,ltd
+ 08306b palo alto networks
+ 08318b huawei technologies co.,ltd
+ 0831a4 huawei device co., ltd.
+ 08351b shenzhen jialihua electronic technology co., ltd
083571 caswell inc.
+ 0835b2 coreedge networks co., ltd
+ 0836c9 netgear
08373d samsung electronics co.,ltd
08379c topaz co. ltd.
+ 083869 hong kong amobile intelligent corp. limited taiwan branch
0838a5 funkwerk plettac electronic gmbh
+ 0838e6 motorola (wuhan) mobility technologies communication co., ltd.
+ 083a2f guangzhou juan intelligent tech joint stock co.,ltd
+ 083a38 new h3c technologies co., ltd
+ 083a5c junilab, inc.
+ 083a88 universal global scientific industrial co., ltd.
083ab8 shinoda plasma co., ltd.
+ 083af2 espressif inc.
+ 083d88 samsung electronics co.,ltd
083e0c arris group, inc.
- 083e8e hon hai precision ind.co.ltd
+ 083e5d sagemcom broadband sas
+ 083e8e hon hai precision ind. co.,ltd.
083f3e wsh gmbh
083f76 intellian technologies, inc.
+ 083fbc zte corporation
084027 gridstore inc.
+ 0840f3 tenda technology co.,ltd.dongguan branch
+ 084296 mobile technology solutions llc
+ 084656 veo-labs
+ 08474c nokia
+ 0847d0 nokia shanghai bell co., ltd.
08482c raycore taiwan co., ltd.
- 084929 cybati
+ 084acf guangdong oppo mobile telecommunications corp.,ltd
084e1c h2a systems, llc
- 084ebf broad net mux corporation
+ 084ebf sumitomo electric industries, ltd
+ 084f0a huawei technologies co.,ltd
+ 084fa9 cisco systems, inc
+ 084ff9 cisco systems, inc
+ 085114 qingdao topscomm communication co., ltd
08512e orion diagnostica oy
085240 ebv elektronikbau- und vertriebs gmbh
+ 0854bb shenzhen chuangwei-rgb electronics co.,ltd
+ 085531 routerboard.com
085700 tp-link technologies co.,ltd.
+ 0858a5 beijing vrv software corpoaration limited.
085ae0 recovision technology co., ltd.
085b0e fortinet, inc.
+ 085bd6 intel corporate
+ 085bda clinicare ltd
085ddd mercury corporation
08606e asustek computer inc.
- 086361 huawei technologies co., ltd
+ 086083 zte corporation
+ 086195 rockwell automation
+ 086266 asustek computer inc.
+ 086361 huawei technologies co.,ltd
+ 0865f0 jm zengge co., ltd
+ 08661f palo alto networks
+ 086698 apple, inc.
+ 08674e hisense broadband multimedia technology co.,ltd
+ 08688d new h3c technologies co., ltd
0868d0 japan system design
0868ea eito electronics co., ltd.
+ 086a0a askey computer corp
+ 086ac5 intel corporate
+ 086bd1 shenzhen superelectron technology co.,ltd.
+ 086bd7 silicon laboratories
+ 086d41 apple, inc.
086df2 shenzhen mimowave technology co.,ltd
- 087045 apple
+ 087045 apple, inc.
+ 087190 intel corporate
+ 087402 apple, inc.
0874f6 winterhalter gastronom gmbh
087572 obelux oy
087618 vie technologies sdn. bhd.
087695 auto industrial co., ltd.
0876ff thomson telecom belgium
+ 087808 samsung electronics co.,ltd
+ 08798c huawei technologies co.,ltd
087999 aim gmbh
- 087a4c huawei technologies co., ltd
+ 087a4c huawei technologies co.,ltd
087baa svyazkomplektservice, llc
+ 087c39 amazon technologies inc.
087cbe quintic corp.
087d21 altasec technology corporation
+ 087e64 technicolor ch usa inc.
+ 087f98 vivo mobile communication co., ltd.
088039 cisco spvtg
+ 0881b2 logitech (china) technology co., ltd
+ 0881bc hongkong ipro technology co., limited
0881f4 juniper networks
- 08863b belkin international, inc.
+ 088466 novartis pharma ag
+ 08849d amazon technologies inc.
+ 088620 tecno mobile limited
+ 08863b belkin international inc.
+ 0887c6 ingram micro services
+ 088c2c samsung electronics co.,ltd
088dc8 ryowa electronics co.,ltd
088e4f sf software solutions
- 088f2c hills sound vision & lighting
+ 088f2c amber technology ltd.
+ 0890ba danlaw inc
+ 089356 huawei technologies co.,ltd
+ 0894ef wistron infocomm (zhongshan) corporation
+ 08952a technicolor ch usa inc.
+ 0896ad cisco systems, inc
0896d7 avm gmbh
+ 089734 hewlett packard enterprise
089758 shenzhen strong rising electronics co.,ltd dongguan subsidiary
+ 089798 compal information (kunshan) co., ltd.
+ 089ac7 zte corporation
+ 089b4b ikuai networks
+ 089bb9 nokia solutions and networks gmbh & co. kg
+ 089c86 nokia shanghai bell co., ltd.
089e01 quanta computer inc.
+ 089e08 google, inc.
089f97 leroy automation
08a12b shenzhen ezl technology co., ltd
- 08a95a azurewave
+ 08a189 hangzhou hikvision digital technology co.,ltd.
+ 08a5c8 sunnovo international limited
+ 08a6bc amazon technologies inc.
+ 08a7c0 technicolor ch usa inc.
+ 08a8a1 cyclotronics power concepts, inc
+ 08a95a azurewave technology inc.
+ 08aa55 motorola mobility llc, a lenovo company
+ 08aa89 zte corporation
08aca5 benu video, inc.
+ 08acc4 fmtech
+ 08aed6 samsung electronics co.,ltd
08af78 totus solutions, inc.
+ 08b055 askey computer corp
+ 08b0a7 truebeyond co., ltd
+ 08b258 juniper networks
08b2a3 cynny italia s.r.l.
+ 08b3af vivo mobile communication co., ltd.
+ 08b4b1 google, inc.
08b4cf abicom international
08b738 lite-on technogy corp.
08b7ec wireless seismic
+ 08ba22 swaive corporation
+ 08ba5f qingdao hisense electronics co.,ltd.
+ 08bb3c flextronics tech.(ind) pvt ltd
08bbcc ak-nord edv vertriebsges. mbh
- 08bd43 netgear inc.,
+ 08bc20 hangzhou royal cloud technology co., ltd
+ 08bd43 netgear
08be09 astrol electronic ag
+ 08be77 green electronics
+ 08beac edimax technology co. ltd.
+ 08bfa0 samsung electronics co.,ltd
+ 08c021 huawei technologies co.,ltd
+ 08c0eb mellanox technologies, inc.
+ 08c5e1 samsung electro-mechanics(thailand)
+ 08c6b3 qtech llc
08ca45 toyou feiji electronics co., ltd.
- 08cc68 cisco
- 08d09f cisco systems, inc.
+ 08cbe5 r3 - reliable realtime radio communications gmbh
+ 08cc27 motorola mobility llc, a lenovo company
+ 08cc68 cisco systems, inc
+ 08cca7 cisco systems, inc
+ 08cd9b samtec automotive electronics & software gmbh
+ 08d09f cisco systems, inc
+ 08d0b7 qingdao hisense communications co.,ltd.
+ 08d23e intel corporate
08d29a proformatique
+ 08d34b techman electronics (changshu) co., ltd.
08d40c intel corporate
- 08d42b samsung electronics
+ 08d42b samsung electronics co.,ltd
+ 08d46a lg electronics (mobile communications)
+ 08d59d sagemcom broadband sas
08d5c0 seers technology co., ltd
- 08d833 shenzhen rf technology co,.ltd
- 08e5da nanjing fujitsu computer products co.,ltd.
+ 08d833 shenzhen rf technology co., ltd
+ 08df1f bose corporation
+ 08dfcb systrome networks
+ 08e5da nanjing fujitsu computer products co.,ltd.
08e672 jebsee electronics co.,ltd.
- 08ea44 aerohive networks, inc.
- 08eb74 humax
+ 08e689 apple, inc.
+ 08e84f huawei technologies co.,ltd
+ 08e9f6 ampak technology,inc.
+ 08ea40 shenzhen bilian electronic co.,ltd
+ 08ea44 extreme networks, inc.
+ 08eb29 jiangsu huitong group co.,ltd.
+ 08eb74 humax co., ltd.
08ebed world elite technology co.,ltd
+ 08eca9 samsung electronics co.,ltd
+ 08ecf5 cisco systems, inc
+ 08ed02 ieee registration authority
+ 08ed9d tecno mobile limited
08edb9 hon hai precision ind. co.,ltd.
+ 08eded zhejiang dahua technology co., ltd.
+ 08ee8b samsung electronics co.,ltd
08ef3b mcs logic inc.
+ 08efab sayme wireless sensor network
08f1b7 towerstream corpration
+ 08f1ea hewlett packard enterprise
08f2f4 net one partners co.,ltd.
+ 08f458 huawei device co., ltd.
+ 08f4ab apple, inc.
+ 08f606 zte corporation
+ 08f69c apple, inc.
08f6f8 get engineering
+ 08f728 globo multimedia sp. z o.o. sp.k.
+ 08f7e9 hrcp research and development partnership
+ 08f8bc apple, inc.
+ 08fa79 vivo mobile communication co., ltd.
08fae0 fohhn audio ag
+ 08fbea ampak technology,inc.
08fc52 openxs bv
08fc88 samsung electronics co.,ltd
08fd0e samsung electronics co.,ltd
+ 08ff24 shenzhen skyworth digital technology co., ltd
+ 0c01db infinix mobility limited
+ 0c0227 technicolor ch usa inc.
0c0400 jantar d.o.o.
0c0535 juniper systems
- 0c1105 ringslink (xiamen) network communication technologies co., ltd
+ 0c08b4 humax co., ltd.
+ 0c1105 akuvox (xiamen) networks co., ltd
+ 0c1167 cisco systems, inc
0c1262 zte corporation
0c130b uniqoteq ltd.
0c1420 samsung electronics co.,ltd
+ 0c14d2 china mobile group device co.,ltd.
+ 0c1539 apple, inc.
0c15c5 sdtec co., ltd.
+ 0c1773 huawei device co., ltd.
0c17f1 telecsys
0c191f inform electronik
+ 0c19f8 apple, inc.
+ 0c1a10 acoustic stream
+ 0c1c19 longconn electronics(shenzhen) co.,ltd
+ 0c1c20 kakao corp
+ 0c1c57 texas instruments
+ 0c1daf xiaomi communications co ltd
0c1dc2 seah networks
0c2026 noax technologies ag
- 0c2724 cisco
+ 0c20d3 vivo mobile communication co., ltd.
+ 0c2138 hengstler gmbh
+ 0c2369 honeywell sps
+ 0c2576 longcheer telecommunication limited
+ 0c2724 cisco systems, inc
0c2755 valuable techologies limited
+ 0c29ef dell inc.
0c2a69 electric imp, incorporated
+ 0c2a86 fiberhome telecommunication technologies co.,ltd
0c2ae7 beijing general research institute of mining and metallurgy
+ 0c2c54 huawei technologies co.,ltd
0c2d89 qiiq communications inc.
- 0c3021 apple
- 0c37dc huawei technologies co., ltd
+ 0c2fb0 samsung electronics co.,ltd
+ 0c3021 apple, inc.
+ 0c31dc huawei technologies co.,ltd
+ 0c354f nokia
+ 0c35fe fiberhome telecommunication technologies co.,ltd
+ 0c3747 zte corporation
+ 0c3796 bizlink technology, inc.
+ 0c37dc huawei technologies co.,ltd
+ 0c383e fanvil technology co., ltd.
0c3956 observator instruments
+ 0c3afa new h3c technologies co., ltd
+ 0c3b50 apple, inc.
0c3c65 dome imaging inc
- 0c3e9f apple, inc
+ 0c3ccd universal global scientific industrial co., ltd.
+ 0c3e9f apple, inc.
+ 0c4101 ruichi auto technology (guangzhou) co., ltd.
+ 0c413e microsoft corporation
+ 0c41e9 huawei technologies co.,ltd
+ 0c42a1 mellanox technologies, inc.
+ 0c45ba huawei technologies co.,ltd
0c469d ms sedco
0c473d hitron technologies. inc
- 0c4c39 mitrastar technology
- 0c4de9 apple
+ 0c47c9 amazon technologies inc.
+ 0c4885 lg electronics (mobile communications)
+ 0c48c6 celestica inc.
+ 0c4933 sichuan jiuzhou electronic technology co., ltd.
+ 0c4b54 tp-link technologies co.,ltd.
+ 0c4c39 mitrastar technology corp.
+ 0c4de9 apple, inc.
0c4f5a asa-rt s.r.l.
+ 0c5101 apple, inc.
0c51f7 chauvin arnoux
+ 0c5203 agm group limited
+ 0c5331 eth zurich
+ 0c5415 intel corporate
0c54a5 pegatron corporation
+ 0c54b9 nokia
0c5521 axiros gmbh
0c565c hybroad vision (hong kong) technology co ltd
0c57eb mueller systems
+ 0c5842 dme micro
+ 0c599c juniper networks
0c5a19 axtion sdn bhd
+ 0c5a9e wi-sun alliance
+ 0c5cb5 ieee registration authority
0c5cd8 doli elektronik gmbh
+ 0c5f35 niagara video corporation
0c6076 hon hai precision ind. co.,ltd.
+ 0c6111 anda technologies sac
+ 0c6127 actiontec electronics, inc
+ 0c61cf texas instruments
+ 0c62a6 hui zhou gaoshengda technology co.,ltd
0c63fc nanjing signway technology co., ltd
- 0c6803 cisco
+ 0c6803 cisco systems, inc
+ 0c6abc fiberhome telecommunication technologies co.,ltd
+ 0c6ae6 stanley security solutions
0c6e4f primevolt co., ltd.
+ 0c6f9c shaw communications inc.
+ 0c704a huawei technologies co.,ltd
0c715d samsung electronics co.,ltd
0c722c tp-link technologies co.,ltd.
- 0c74c2 apple
+ 0c72d9 zte corporation
+ 0c7329 sercomm corporation.
+ 0c73be dongguan haimai electronie technology co.,ltd
+ 0c73eb ieee registration authority
+ 0c74c2 apple, inc.
+ 0c7512 shenzhen kunlun tongtai technology co.,ltd.
0c7523 beijing gehua catv network co.,ltd
- 0c771a apple
+ 0c756c anaren microwave, inc.
+ 0c75bd cisco systems, inc
+ 0c771a apple, inc.
+ 0c7a15 intel corporate
+ 0c7c28 nokia solutions and networks gmbh & co. kg
0c7d7c kexiang information technology co, ltd.
- 0c8112
+ 0c8063 tp-link technologies co.,ltd.
+ 0c8112 private
+ 0c8126 juniper networks
+ 0c817d eep elektro-elektronik pranjic gmbh
0c8230 shenzhen magnus technologies co.,ltd
0c8268 tp-link technologies co.,ltd.
0c826a wuhan huagong genuine optics technology co., ltd
+ 0c839a huawei device co., ltd.
+ 0c83cc alpha networks inc.
0c8411 a.o. smith water products
+ 0c8447 fiberhome telecommunication technologies co.,ltd
0c8484 zenovia electronics inc.
0c84dc hon hai precision ind. co.,ltd.
- 0c8525 cisco systems, inc.
+ 0c8525 cisco systems, inc
+ 0c8610 juniper networks
0c8910 samsung electronics co.,ltd
+ 0c8a87 aglogica holdings, inc
+ 0c8b7d vizio, inc
+ 0c8bd3 itel mobile limited
0c8bfd intel corporate
+ 0c8c24 shenzhen bilian electronic co.,ltd
+ 0c8c69 shenzhen elink smart co., ltd
+ 0c8c8f kamo technology limited
0c8cdc suunto oy
0c8d98 top eight ind corp
+ 0c8ddb cisco meraki
+ 0c8e29 arcadyan corporation
+ 0c8fff huawei technologies co.,ltd
+ 0c9160 hui zhou gaoshengda technology co.,ltd
0c924e rice lake weighing systems
0c9301 pt. prasimax inovasi teknologi
+ 0c938f guangdong oppo mobile telecommunications corp.,ltd
0c93fb bns solutions
- 0c96bf huawei technologies co., ltd
+ 0c9541 chipsea technologies (shenzhen) corp.
+ 0c96bf huawei technologies co.,ltd
+ 0c96cd mercury corporation
+ 0c96e6 cloud network technology (samoa) limited
+ 0c9838 xiaomi communications co ltd
+ 0c9a42 fn-link technology limited
0c9b13 shanghai magic mobile telecommunication co.ltd.
0c9d56 consort controls ltd
+ 0c9d92 asustek computer inc.
0c9e91 sankosha corporation
+ 0ca06c industrial cyber sensing inc.
0ca138 blinq wireless inc.
0ca2f4 chameleon technology (uk) limited
- 0ca402 alcatel lucent ipd
+ 0ca402 alcatel-lucent ipd
0ca42a ob telecom electronic technology co., ltd
0ca694 sunitec enterprise co.,ltd
+ 0ca8a7 samsung electronics co.,ltd
+ 0cac05 unitend technologies inc.
+ 0cae7d texas instruments
0caf5a genus power infrastructures limited
+ 0cb2b7 texas instruments
+ 0cb319 samsung electronics co.,ltd
+ 0cb34f shenzhen xiaoqi intelligent technology co., ltd.
+ 0cb459 marketech international corp.
+ 0cb4a4 xintai automobile intelligent network technology
0cb4ef digience co.,ltd.
- 0cbd51 tct mobile limited
- 0cbf15 genetec
+ 0cb527 huawei technologies co.,ltd
+ 0cb5de alcatel lucent
+ 0cb6d2 d-link international
+ 0cb771 arris group, inc.
+ 0cb789 honor device co., ltd.
+ 0cb912 jm-data gmbh
+ 0cb937 ubee interactive co., limited
+ 0cbc9f apple, inc.
+ 0cbd51 tct mobile ltd
+ 0cbf15 genetec inc.
+ 0cbf3f shenzhen lencotion technology co.,ltd
+ 0cbf74 morse micro
0cc0c0 magneti marelli sistemas electronicos mexico
0cc3a7 meritec
0cc47a super micro computer, inc.
@@ -13143,948 +13807,2575 @@ exit
0cc655 wuxi ysten technology co.,ltd.
0cc66a nokia corporation
0cc6ac dags
+ 0cc6cc huawei technologies co.,ltd
+ 0cc731 currant, inc.
0cc81f summer infant, inc.
+ 0cc844 cambridge mobile telematics, inc.
0cc9c6 samwin hong kong limited
+ 0ccb0c isys rts gmbh
+ 0ccb85 motorola mobility llc, a lenovo company
0ccb8d asco numatics gmbh
+ 0ccc26 airenetworks
0ccdd3 eastriver technology co., ltd.
0ccdfb edic systems inc.
+ 0ccef6 guizhou fortuneship technology co., ltd
+ 0ccf89 shenzhen bilian electronic co.,ltd
+ 0ccfd1 springwave co., ltd
+ 0cd0f8 cisco systems, inc
0cd292 intel corporate
0cd2b5 binatone telecommunication pvt. ltd
- 0cd502 westell
+ 0cd502 westell technologies inc.
0cd696 amimon ltd
+ 0cd6bd huawei technologies co.,ltd
+ 0cd746 apple, inc.
0cd7c2 axium technologies, inc.
- 0cd996 cisco systems, inc.
- 0cd9c1 johnson controls-asg
+ 0cd86c shenzhen fast technologies co.,ltd
+ 0cd996 cisco systems, inc
+ 0cd9c1 visteon corporation
0cda41 hangzhou h3c technologies co., limited
+ 0cdc7e espressif inc.
0cdccc inala technologies
+ 0cdd24 intel corporate
0cddef nokia corporation
0cdfa4 samsung electronics co.,ltd
- 0ce0e4 plantronics, inc
+ 0ce041 idruide
+ 0ce0dc samsung electronics co.,ltd
+ 0ce0e4 plantronics, inc.
+ 0ce441 apple, inc.
+ 0ce4a0 huawei device co., ltd.
0ce5d3 dh electronics gmbh
0ce709 fox crypto b.v.
+ 0ce725 microsoft corporation
0ce82f bonfiglioli vectron gmbh
0ce936 elimos srl
+ 0ce99a atls altec
+ 0ceac9 arris group, inc.
+ 0cec80 texas instruments
+ 0cec84 shenzhen tinno mobile technology corp.
+ 0cec8d motorola mobility llc, a lenovo company
+ 0cee99 amazon technologies inc.
0ceee6 hon hai precision ind. co.,ltd.
0cef7c anacom inc
+ 0cefaf ieee registration authority
0cf019 malgn technology co., ltd.
0cf0b4 globalsat international technology ltd
+ 0cf346 xiaomi communications co ltd
0cf361 java information
0cf3ee em microelectronic
0cf405 beijing signalway technologies co.,ltd
+ 0cf475 zliide technologies aps
+ 0cf4d5 ruckus wireless
+ 0cf5a4 cisco systems, inc
0cf893 arris group, inc.
+ 0cf9c0 bskyb ltd
0cfc83 airoha technology corp.,
- 100000
+ 0cfd37 suse linux gmbh
+ 0cfe45 sony interactive entertainment inc.
+ 0cfe5d ieee registration authority
+ 100000 private
10005a ibm corp
1000e8 national semiconductor
1000fd laonpeople
+ 100177 huawei technologies co.,ltd
1001ca ashley butterworth
+ 1002b5 intel corporate
+ 100501 pegatron corporation
+ 1005b1 arris group, inc.
+ 1005ca cisco systems, inc
+ 1005e1 nokia
+ 100645 sagemcom broadband sas
+ 100723 ieee registration authority
+ 1007b6 samsung electronics co.,ltd
+ 10082c texas instruments
+ 1008b1 hon hai precision ind. co.,ltd.
10090c janome sewing machine co., ltd.
100ba9 intel corporate
100c24 pomdevices, llc
+ 100c6b netgear
100d2f online security pty. ltd.
100d32 embedian, inc.
- 100d7f netgear inc.,
+ 100d7f netgear
100e2b nec casio mobile communications
100e7e juniper networks
100f18 fu gang electronic(kunshan)co.,ltd
+ 101081 zte corporation
1010b6 mccain inc
101212 vivo international corporation pty ltd
+ 101218 korins inc.
101248 itg, inc.
+ 101250 integrated device technology (malaysia) sdn. bhd.
+ 1012b4 sichuan tianyi comheart telecom co.,ltd
+ 1012fb hangzhou hikvision digital technology co.,ltd.
+ 101331 technicolor
1013ee justec international technology inc.
10189e elmo motion control
+ 101965 new h3c technologies co., ltd
101b54 huawei technologies co.,ltd
- 101c0c apple
- 101d51 on-q llc dba on-q mesh networks
+ 101c0c apple, inc.
+ 101d51 8mesh networks limited
101dc0 samsung electronics co.,ltd
- 101f74 hewlett-packard company
+ 101f74 hewlett packard
102279 zerodesktop, inc.
+ 102779 sadel s.p.a.
1027be tvip
+ 1027f5 tp-link corporation limited
102831 morion inc.
+ 102959 apple, inc.
+ 1029ab samsung electronics co.,ltd
+ 102ab3 xiaomi communications co ltd
+ 102b41 samsung electronics co.,ltd
+ 102c6b ampak technology, inc.
+ 102c83 ximea
+ 102d31 shenzhen americas trading company llc
+ 102d41 sichuan ai-link technology co., ltd.
102d96 looxcie inc.
102eaf texas instruments
+ 102f6b microsoft corporation
+ 102fa3 shenzhen uvision-tech technology co.ltd
+ 103025 apple, inc.
+ 103034 cara systems
+ 103047 samsung electronics co.,ltd
+ 10327e huawei device co., ltd.
103378 flectron co., ltd
+ 1033bf technicolor ch usa inc.
+ 10341b spacelink
+ 10364a boston dynamics
103711 simlink as
+ 10381f sichuan ai-link technology co., ltd.
+ 103917 samsung electronics co.,ltd
+ 10394e hisense broadband multimedia technology co.,ltd
+ 1039e9 juniper networks
103b59 samsung electronics co.,ltd
+ 103d0a hui zhou gaoshengda technology co.,ltd
+ 103d1c intel corporate
+ 103d3e china mobile group device co.,ltd.
103dea hfc technology (beijing) ltd. co.
- 1040f3 apple
- 104369 soundmax electronic limited
+ 103f44 xiaomi communications co ltd
+ 1040f3 apple, inc.
+ 10417f apple, inc.
+ 104369 soundmax electronic limited
+ 104400 huawei technologies co.,ltd
10445a shaanxi hitech electronic co., ltd
1045be norphonic as
1045f8 lnt-automation gmbh
+ 1046b4 formericaoe
104780 huawei technologies co.,ltd
1048b1 beijing duokan technology limited
+ 104963 harting k.k.
+ 104a7d intel corporate
+ 104b46 mitsubishi electric corporation
104d77 innovative computer engineering
+ 104e07 shanghai genvision industries co.,ltd
+ 104e89 garmin international
+ 104f58 aruba, a hewlett packard enterprise company
+ 104fa8 sony corporation
+ 105072 sercomm corporation.
+ 105107 intel corporate
+ 105172 huawei technologies co.,ltd
+ 10521c espressif inc.
+ 105611 arris group, inc.
1056ca peplink international ltd.
+ 105887 fiberhome telecommunication technologies co.,ltd
+ 105917 tonal
+ 105932 roku, inc
+ 105af7 adb italia
+ 105bad mega well limited
105c3b perma-pipe, inc.
105cbf durobyte inc
+ 105ddc huawei device co., ltd.
105f06 actiontec electronics, inc
105f49 cisco spvtg
+ 105fd4 tendyron corporation
10604b hewlett packard
1062c9 adatis gmbh & co. kg
+ 1062d0 technicolor ch usa inc.
+ 1062e5 hewlett packard
+ 1062eb d-link international
+ 1063c8 liteon technology corporation
1064e2 adfweb.com s.r.l.
- 1065a3 core brands llc
+ 106530 dell inc.
+ 1065a3 panamax llc
1065cf iqsim
- 106682 nec accesstechnica, ltd.
- 10683f lg electronics
- 106f3f buffalo inc.
+ 106682 nec platforms, ltd.
+ 10683f lg electronics (mobile communications)
+ 106f3f buffalo.inc
106fef ad-sol nissin corp
+ 1070fd mellanox technologies, inc.
+ 107100 huawei device co., ltd.
1071f9 cloud telecomputers, llc
+ 107223 tellescom industria e comercio em telecomunicacao
+ 10746f motorola solutions malaysia sdn. bhd.
10768a eocell
+ 107717 shenzhen chuangwei-rgb electronics co.,ltd
+ 1077b0 fiberhome telecommunication technologies co.,ltd
1077b1 samsung electronics co.,ltd
+ 10785b actiontec electronics, inc
+ 107873 shenzhen jinkeyi communication co., ltd.
1078ce hanvit si, inc.
- 1078d2 elitegroup computer system co., ltd.
+ 1078d2 elitegroup computer systems co.,ltd.
107a86 u&u engineering inc.
- 107bef zyxel communications corp
+ 107b44 asustek computer inc.
+ 107ba4 olive & dove co.,ltd.
+ 107bef zyxel communications corporation
+ 107d1a dell inc.
+ 1081b4 hunan greatwall galaxy science and technology co.,ltd.
+ 108286 luxshare precision industry co.,ltd
1083d2 microseven systems, llc
+ 10868c arris group, inc.
10880f daruma telecomunicações e informática s.a.
- 1088ce fiberhome telecommunication tech.co.,ltd.
- 108ccf cisco systems, inc.
- 1093e9 apple
+ 1088ce fiberhome telecommunication technologies co.,ltd
+ 1089fb samsung electronics co.,ltd
+ 108a1b raonix inc.
+ 108b6a antailiye technology co.,ltd
+ 108ccf cisco systems, inc
+ 108eba molekule
+ 108ee0 samsung electronics co.,ltd
+ 108ffe huawei technologies co.,ltd
+ 109266 samsung electronics co.,ltd
+ 109397 arris group, inc.
+ 1093e9 apple, inc.
+ 109497 logitech hong kong
+ 1094bb apple, inc.
+ 10954b megabyte ltd.
+ 109693 amazon technologies inc.
+ 109836 dell inc.
+ 1098c3 murata manufacturing co., ltd.
109ab9 tosibox oy
- 109add apple
+ 109add apple, inc.
+ 109c70 prusa research s.r.o.
+ 109d7a huawei device co., ltd.
+ 109e3a zhejiang tmall technology co., ltd.
109fa9 actiontec electronics, inc
10a13b fujikura rubber ltd.
- 10a5d0 murata manufacturing co.,ltd.
+ 10a24e gold3link electronics co., ltd
+ 10a3b8 iskratel d.o.o.
+ 10a4b9 baidu online network technology (beijing) co., ltd
+ 10a4be shenzhen bilian electronic co.,ltd
+ 10a4da huawei technologies co.,ltd
+ 10a5d0 murata manufacturing co., ltd.
+ 10a659 mobile create co.,ltd.
10a743 sk mtek limited
10a932 beijing cyber cloud technology co. ,ltd.
- 10ae60
+ 10ae60 private
+ 10af78 shenzhen atue technology co., ltd
+ 10b1f8 huawei technologies co.,ltd
10b26b base co.,ltd.
- 10b713
+ 10b36f bowei technology company limited
+ 10b3c6 cisco systems, inc
+ 10b3d5 cisco systems, inc
+ 10b3d6 cisco systems, inc
+ 10b713 private
10b7f6 plastoform industries ltd.
+ 10b9f7 niko-servodan
10b9fe lika srl
10baa5 gana i&c co., ltd
- 10bd18 cisco systems, inc.
+ 10bc97 vivo mobile communication co., ltd.
+ 10bd18 cisco systems, inc
+ 10bd55 q-lab corporation
+ 10bef5 d-link international
10bf48 asustek computer inc.
+ 10c07c blu-ray disc association
+ 10c172 huawei technologies co.,ltd
+ 10c22f china entropy co., ltd.
+ 10c25a technicolor ch usa inc.
10c2ba utt co., ltd.
+ 10c37b asustek computer inc.
+ 10c3ab huawei technologies co.,ltd
10c586 bio sound lab co., ltd.
- 10c61f huawei technologies co., ltd
+ 10c595 lenovo
+ 10c60c domino uk ltd
+ 10c61f huawei technologies co.,ltd
+ 10c65e adapt-ip
+ 10c67e shenzhen juchin technology co., ltd
10c6fc garmin international
10c73f midas klark teknik ltd
+ 10c753 qingdao intelligent&precise electronics co.,ltd.
+ 10c9ca ace technology corp.
10ca81 precia
+ 10cc1b liverock technologies,inc
10ccdb aximum produits electroniques
+ 10cd6e fisys
+ 10cdae avaya inc
+ 10cdb6 essential products, inc.
+ 10ce45 miromico ag
+ 10cea9 texas instruments
+ 10cee9 apple, inc.
+ 10d07a ampak technology, inc.
+ 10d0ab zte corporation
10d1dc instar deutschland gmbh
+ 10d38a samsung electronics co.,ltd
10d542 samsung electronics co.,ltd
- 10ddb1 apple
+ 10d561 tuya smart inc.
+ 10d7b0 sagemcom broadband sas
+ 10da43 netgear
+ 10dc4a fiberhome telecommunication technologies co.,ltd
+ 10dcb6 ieee registration authority
+ 10ddb1 apple, inc.
10ddf4 maxway electronics co.,ltd
10dee4 automationnext gmbh
+ 10df8b shenzhen caredear communication technology co.,ltd
+ 10dffc siemens ag
10e2d5 qi hardware inc.
10e3c7 seohwa telecom
10e4af apr, llc
+ 10e68f kwangsung electronics korea co.,ltd.
10e6ae source technologies, llc
+ 10e77a stmicrolectronics international nv
+ 10e7c6 hewlett packard
+ 10e878 nokia
10e8ee phasespace
+ 10e953 huawei device co., ltd.
10ea59 cisco spvtg
+ 10ec81 samsung electronics co.,ltd
10eed9 canoga perkins corporation
- 10f311 cisco
+ 10f005 intel corporate
+ 10f163 tnk co.,ltd
+ 10f1f2 lg electronics (mobile communications)
+ 10f311 cisco systems, inc
10f3db gridco systems, inc.
10f49a t3 innovation
- 10f96f lg electronics
+ 10f681 vivo mobile communication co., ltd.
+ 10f920 cisco systems, inc
+ 10f96f lg electronics (mobile communications)
+ 10f9eb industria fueguina de relojería electrónica s.a.
10f9ee nokia corporation
+ 10face reacheng communication technology co.,ltd
10fbf0 kangsheng ltd.
- 10fc54 shany electronic co., ltd.
- 10feed tp-link technologies co., ltd.
- 1100aa
- 140708
+ 10fc54 shany electronic co., ltd.
+ 10fcb6 mirusystems co.,ltd
+ 10feed tp-link technologies co.,ltd.
+ 1100aa private
+ 111111 private
+ 14007d zte corporation
+ 140152 samsung electronics co.,ltd
+ 1402ec hewlett packard enterprise
+ 140467 snk technologies co.,ltd.
+ 140708 private
1407e0 abrantix ag
+ 1409b4 zte corporation
+ 1409dc huawei technologies co.,ltd
+ 140ac5 amazon technologies inc.
+ 140c5b plnetworks
140c76 freebox sas
140d4f flextronics international
- 14109f apple
+ 140f42 nokia
+ 14109f apple, inc.
+ 141114 tecno mobile limited
+ 14115d skyworth digital technology(shenzhen) co.,ltd
141330 anakreon uk llp
- 14144b fujian star-net communication co.,ltd
+ 141333 azurewave technology inc.
+ 141346 skyworth digital technology(shenzhen) co.,ltd
+ 141357 atp electronics, inc.
+ 1413fb huawei technologies co.,ltd
+ 14144b ruijie networks co.,ltd
+ 141459 vodafone italia s.p.a.
+ 1414e6 ningbo sanhe digital co.,ltd
+ 14157c tokyo cosmos electric co.,ltd.
+ 14169d cisco systems, inc
+ 14169e wingtech group (hongkong)limited
+ 141877 dell inc.
+ 1418c3 intel corporate
141a51 treetech sistemas digitais
+ 141aa3 motorola mobility llc, a lenovo company
+ 141b30 shenzhen yipingfang network technology co., ltd.
141bbd volex inc.
141bf0 intellimedia systems ltd
+ 141f78 samsung electronics co.,ltd
+ 141fba ieee registration authority
+ 14205e apple, inc.
+ 142233 fiberhome telecommunication technologies co.,ltd
+ 1422db eero inc.
+ 14230a huawei technologies co.,ltd
1423d7 eutronix co., ltd.
+ 142475 4dreplay, inc
+ 142882 midicom electronics co.ltd
+ 142971 nemoa electronics (hk) co. ltd
+ 142a14 shenzhen selenview digital technology co.,ltd
142bd2 armtel ltd.
+ 142bd6 guangdong appscomm co.,ltd
+ 142c78 goowi wireless technology co., limited
142d27 hon hai precision ind. co.,ltd.
142d8b incipio technologies, inc
142df5 amphitech
+ 142e5e sercomm corporation.
+ 142ffd lt security inc
+ 143004 huawei technologies co.,ltd
14307a avermetrics
+ 1430c6 motorola mobility llc, a lenovo company
+ 1432d1 samsung electronics co.,ltd
+ 143365 tem mobile limited
14358b mediabridge products, llc.
1435b3 future designs, inc.
143605 nokia corporation
+ 1436c6 lenovo mobile communication technology ltd.
+ 143719 pt prakarsa visi valutama
14373b procom systems
143aea dynapower company llc
+ 143b42 realfit(shenzhen) intelligent technology co., ltd
+ 143cc3 huawei technologies co.,ltd
143df2 beijing shidai hongyuan network communication co.,ltd
- 143e60 alcatel-lucent
+ 143e60 nokia
+ 143ebf zte corporation
+ 143f27 noccela oy
+ 143fa6 sony home entertainment&sound products inc
+ 143fc3 snapav
+ 144146 honeywell (china) co., ltd
1441e2 monaco enterprises, inc.
+ 1442fc texas instruments
144319 creative&link technology limited
+ 14444a apollo seiko ltd.
+ 144658 huawei technologies co.,ltd
1446e4 avistel
+ 14472d guangdong oppo mobile telecommunications corp.,ltd
+ 144802 the yeolrim co.,ltd.
+ 14488b shenzhen doov technology co.,ltd
144978 digital control incorporated
- 1449e0 samsung electro mechanics co.,ltd.
+ 1449bc draytek corp.
+ 1449e0 samsung electro-mechanics(thailand)
144c1a max communication gmbh
+ 144d67 zioncom electronics (shenzhen) ltd.
+ 144e2a ciena corporation
+ 144e34 remote solution
+ 144f8a intel corporate
+ 144fd7 ieee registration authority
+ 145051 sharp corporation
+ 145120 huawei device co., ltd.
+ 14517e new h3c technologies co., ltd
+ 145290 kns group llc (yadro company)
145412 entis co., ltd.
+ 14563a huawei device co., ltd.
145645 savitech corp.
- 145a05 apple
+ 14568e samsung electronics co.,ltd
+ 14579f huawei technologies co.,ltd
+ 1458d0 hewlett packard
+ 1459c0 netgear
+ 1459c3 creative chips gmbh
+ 145a05 apple, inc.
+ 145a83 logi-d inc
+ 145afc liteon technology corporation
145bd1 arris group, inc.
+ 145be1 nyantec gmbh
+ 145e45 bamboo systems group
+ 145e69 guangdong oppo mobile telecommunications corp.,ltd
+ 145f94 huawei technologies co.,ltd
146080 zte corporation
+ 1460cb apple, inc.
+ 146102 alpine electronics, inc.
+ 14612f avaya inc
146308 jabil circuit (shanghai) ltd.
+ 1469a2 sichuan tianyi comheart telecom co.,ltd
146a0b cypress electronics limited
- 146e0a
+ 146b72 shenzhen fortune ship technology co., ltd.
+ 146b9a zte corporation
+ 146b9c shenzhen bilian electronic co.,ltd
+ 146e0a private
147373 tubitak uekae
147411 rim
+ 147590 tp-link technologies co.,ltd.
+ 147740 huawei device co., ltd.
+ 14780b varex imaging deutschland ag
+ 1479f3 china mobile group device co.,ltd.
+ 147bac nokia
+ 147d05 sercomm philippines inc
147db3 joa telecom.co.,ltd
147dc5 murata manufacturing co., ltd.
- 14825b hefei radio communication technology co., ltd
+ 147dda apple, inc.
+ 14825b hefei radio communication technology co., ltd
+ 148430 mitac computing technology corporation
+ 14857f intel corporate
148692 tp-link technologies co.,ltd.
- 1489fd samsung electronics
+ 14876a apple, inc.
+ 1488e6 apple, inc.
+ 14893e vixtel technologies limted
+ 1489cb huawei technologies co.,ltd
+ 1489fd samsung electronics co.,ltd
148a70 ads gmbh
- 148fc6 apple
+ 148f21 garmin international
+ 148fc6 apple, inc.
149090 kongtop industrial(shen zhen)co.,ltd
+ 149138 amazon technologies inc.
+ 149182 belkin international inc.
+ 149346 pni sensor corporation
+ 14942f usys co.,ltd.
149448 blu castle s.a.
- 1499e2 apple, inc
+ 1495ce apple, inc.
+ 1496e5 samsung electronics co.,ltd
+ 149877 apple, inc.
+ 14987d technicolor ch usa inc.
+ 1499e2 apple, inc.
+ 149a10 microsoft corporation
+ 149b2f jiangsu zhongxie intelligent technology co., ltd
+ 149d09 huawei technologies co.,ltd
+ 149d99 apple, inc.
+ 149ecf dell inc.
+ 149f3c samsung electronics co.,ltd
+ 149fb6 guangdong genius technology co., ltd.
149fe8 lenovo mobile communication technology ltd.
+ 14a0f8 huawei technologies co.,ltd
+ 14a1bf assa abloy korea co., ltd unilock
+ 14a2a0 cisco systems, inc
+ 14a32f huawei device co., ltd.
+ 14a364 samsung electronics co.,ltd
+ 14a3b4 huawei device co., ltd.
+ 14a51a huawei technologies co.,ltd
14a62c s.m. dezac s.a.
+ 14a72b currentoptronics pvt.ltd
+ 14a78b zhejiang dahua technology co., ltd.
14a86b shenzhen telacom science&technology co., ltd
+ 14a9d0 f5 networks, inc.
14a9e3 mst corporation
+ 14ab02 huawei technologies co.,ltd
+ 14ab56 wuxi funide digital co.,ltd
+ 14abc5 intel corporate
14abf0 arris group, inc.
+ 14adca china mobile iot limited company
+ 14ae85 ieee registration authority
+ 14aedb vtech telecommunications ltd.
14b126 industrial software co
14b1c8 infiniwing, inc.
+ 14b2e5 shenzhen icomm semiconductor co.,ltd
+ 14b31f dell inc.
+ 14b370 gigaset digital technology (shenzhen) co., ltd.
+ 14b457 silicon laboratories
+ 14b484 samsung electronics co.,ltd
14b73d archean technologies
- 14b968 huawei technologies co., ltd
+ 14b7f8 technicolor ch usa inc.
+ 14b837 shenzhen youhua technology co., ltd
+ 14b968 huawei technologies co.,ltd
+ 14bb6e samsung electronics co.,ltd
+ 14bd61 apple, inc.
+ 14c03e arris group, inc.
14c089 dune hd ltd
+ 14c126 nokia corporation
+ 14c14e google, inc.
+ 14c1ff shenzhen qianhai comlan communication co.,ltd
+ 14c213 apple, inc.
14c21d sabtech industries
- 14cc20 tp-link technologies co.,ltd
- 14cf8d ohsung electronics co., ltd.
- 14cf92 tp-link technologies co., ltd.
+ 14c3c2 k.a. schmersal gmbh & co. kg
+ 14c697 guangdong oppo mobile telecommunications corp.,ltd
+ 14c88b apple, inc.
+ 14c913 lg electronics
+ 14caa0 hu&co
+ 14cb19 hp inc.
+ 14cc20 tp-link technologies co.,ltd.
+ 14ccb3 ao gk nateks
+ 14cf8d ohsung
+ 14cf92 tp-link technologies co.,ltd.
14cfe2 arris group, inc.
- 14d4fe pace plc
+ 14d00d apple, inc.
+ 14d11f huawei technologies co.,ltd
+ 14d169 huawei technologies co.,ltd
+ 14d19e apple, inc.
+ 14d4fe arris group, inc.
14d64d d-link international
14d76e conch electronic co.,ltd
14dae9 asustek computer inc.
14db85 s net media
+ 14dd9c vivo mobile communication co., ltd.
+ 14dda9 asustek computer inc.
+ 14dde5 mpmkvvcl
+ 14de39 huawei device co., ltd.
14e4ec mlogic llc
- 14e6e4 tp-link technologies co., ltd.
+ 14e6e4 tp-link technologies co.,ltd.
+ 14e7c8 integrated device technology (malaysia) sdn. bhd.
+ 14e9b2 fiberhome telecommunication technologies co.,ltd
+ 14eb08 huawei technologies co.,ltd
14eb33 bsmediasoft co., ltd.
14eda5 wächter gmbh sicherheitssysteme
+ 14edbb 2wire inc
+ 14ede4 kaiam corporation
14ee9d airnav systems llc
+ 14efcf schreder
14f0c5 xtremio ltd.
14f28e shenyang zhongke-allwin technology co.ltd
- 14f42a samsung electronics
+ 14f42a samsung electronics co.,ltd
+ 14f65a xiaomi communications co ltd
+ 14f6d8 intel corporate
+ 14f893 wuhan fiberhome digital technology co.,ltd.
14feaf sagittar limited
- 14feb5 dell inc
- 18002d sony mobile communications ab
+ 14feb5 dell inc.
+ 18002d sony mobile communications inc
1800db fitbit inc.
- 1801e3 elektrobit wireless communications ltd
- 180373 dell inc
+ 18017d harbin arteor technology co., ltd
+ 1801e3 bittium wireless ltd
+ 1801f1 xiaomi communications co ltd
+ 18022d huawei technologies co.,ltd
+ 1802ae vivo mobile communication co., ltd.
+ 180373 dell inc.
1803fa ibt interfaces
+ 1804ed texas instruments
180675 dilax intelcom gmbh
+ 1806f5 rad data communications, ltd.
+ 1806ff acer computer(shanghai) limited.
180b52 nanotron technologies gmbh
180c14 isonea limited
180c77 westinghouse electric company, llc
180cac canon inc.
+ 180d2c intelbras
+ 180f76 d-link international
18104e cedint-upm
+ 181171 guangzhou doctorpai education & technology co.,ltd
+ 181212 cepton technologies
+ 18132d zte corporation
181420 teb sas
181456 nokia corporation
+ 18146c zhejiang tmall technology co., ltd.
+ 1816c9 samsung electronics co.,ltd
181714 daewoois
181725 cameo communications, inc.
+ 18188b fujitsu connected technologies limited
18193f tamtron oy
+ 1819d6 samsung electronics co.,ltd
181beb actiontec electronics, inc
+ 181dea intel corporate
+ 181e78 sagemcom broadband sas
+ 181e95 auverte
181eb0 samsung electronics co.,ltd
182012 aztech associates inc.
- 182032 apple
+ 182032 apple, inc.
+ 18204c kummler+matter ag
1820a6 sage co., ltd.
+ 1820d5 arris group, inc.
+ 182195 samsung electronics co.,ltd
+ 18227e samsung electronics co.,ltd
+ 182649 intel corporate
182666 samsung electronics co.,ltd
182861 airties wireless networks
+ 182a44 hirose electronic system
+ 182a57 huawei technologies co.,ltd
182a7b nintendo co., ltd.
+ 182ad3 juniper networks
182b05 8d technologies
182c91 concept development, inc.
+ 182cb4 nectarsoft co., ltd.
+ 182d98 jinwoo industrial system
+ 183009 woojin industrial systems co., ltd.
+ 18300c hisense electric co.,ltd
+ 1831bf asustek computer inc.
+ 183219 em microelectronic
1832a2 laon technology co., ltd.
- 18339d cisco systems, inc.
- 183451 apple
+ 18339d cisco systems, inc
+ 183451 apple, inc.
+ 1835d1 arris group, inc.
+ 183672 shaoxing shunchuang technology co.,ltd
1836fc elecsys international corporation
183825 wuhan lingjiu high-tech co.,ltd.
+ 183864 cap-tech international co., ltd.
+ 1838ae conspin solution
183919 unicoi systems
+ 18396e sunsea telecommunications co.,ltd.
+ 18399c skorpios technologies
+ 183a2d samsung electronics co.,ltd
+ 183a48 vostronet
183bd2 byd precision manufacture company ltd.
+ 183cb7 huawei device co., ltd.
+ 183d5e huawei technologies co.,ltd
183da2 intel corporate
+ 183eef apple, inc.
183f47 samsung electronics co.,ltd
- 18421d
+ 1840a4 shenzhen trylong smart science and technology co., ltd.
+ 1841fe digital 14
+ 18421d private
18422f alcatel lucent
+ 1842d4 wuhan hosan telecommunication technology co.,ltd
184462 riava networks, inc.
- 184617 samsung electronics
+ 1844e6 zte corporation
+ 184516 texas instruments
+ 184593 taicang t&w electronics
+ 184617 samsung electronics co.,ltd
+ 184644 home control singapore pte ltd
+ 18473d chongqing fugui electronics co.,ltd.
+ 184859 castlenet technology inc.
+ 1848ca murata manufacturing co., ltd.
1848d8 fastback networks
+ 184a6f alcatel-lucent shanghai bell co., ltd
+ 184b0d ruckus wireless
+ 184bdf caavo inc
+ 184c08 rockwell automation
+ 184cae continental
+ 184e16 samsung electronics co.,ltd
184e94 messoa technologies inc.
+ 184ecb samsung electronics co.,ltd
+ 184f32 hon hai precision ind. co.,ltd.
+ 184f5d jrc mobility inc.
+ 18502a soarnex
+ 185207 sichuan tianyi comheart telecomco., ltd
185253 pixord corporation
+ 185282 fiberhome telecommunication technologies co.,ltd
1853e0 hanyang digitech co.ltd
+ 1854cf samsung electronics co.,ltd
18550f cisco spvtg
+ 1855e3 apple, inc.
+ 185644 huawei technologies co.,ltd
+ 185680 intel corporate
+ 185869 sailer electronic co., ltd
185933 cisco spvtg
+ 185936 xiaomi communications co ltd
+ 185a58 dell inc.
185ae8 zenotech.co.,ltd
- 18622c sagemcom sas
- 186472 aruba networks
+ 185bb3 samsung electronics co.,ltd
+ 185d9a bobjgear llc
+ 185e0f intel corporate
+ 186024 hewlett packard
+ 1861c7 lemonbeat gmbh
+ 18622c sagemcom broadband sas
+ 1862e4 texas instruments
+ 186472 aruba, a hewlett packard enterprise company
+ 186571 top victory electronics (taiwan) co., ltd.
+ 186590 apple, inc.
+ 1866c7 shenzhen libre technology co., ltd
+ 1866da dell inc.
1866e3 veros systems, inc.
18673f hanover displays limited
186751 komeg industrielle messtechnik gmbh
1867b0 samsung electronics co.,ltd
+ 18686a zte corporation
+ 186882 beward r&d co., ltd.
+ 1868cb hangzhou hikvision digital technology co.,ltd.
+ 1869d8 tuya smart inc.
+ 1869da china mobile group device co.,ltd.
186d99 adanis inc.
+ 186f2d shenzhen sundray technologies company limited
+ 18703b huawei device co., ltd.
+ 187117 eta plus electronic gmbh
+ 1871d5 hazens automotive electronics(sz)co.,ltd.
+ 18742e amazon technologies inc.
+ 187532 sichuan tianyi comheart telecomco., ltd
+ 1878d4 verizon
1879a2 gmj electric limited
187a93 amiccom electronics corporation
+ 187c0b ruckus wireless
187c81 valeo vision systems
+ 187eb9 apple, inc.
187ed5 shenzhen kaism technology co. ltd
+ 188090 cisco systems, inc
1880ce barberry solutions ltd
1880f5 alcatel-lucent shanghai bell co., ltd
+ 18810e apple, inc.
+ 188219 alibaba cloud computing ltd.
+ 18828c arcadyan corporation
188331 samsung electronics co.,ltd
+ 1883bf arcadyan technology corporation
188410 coretrust inc.
18863a digital art system
1886ac nokia danmark a/s
+ 188740 xiaomi communications co ltd
188796 htc corporation
188857 beijing jinhong xi-dian information technology corp.
+ 18895b samsung electronics co.,ltd
+ 1889a0 wuhan funshion online technologies co.,ltd
1889df cerebrex inc.
+ 188a6a avpro global hldgs
+ 188b15 shenzhen zhongruijing technology co.,ltd
+ 188b45 cisco systems, inc
+ 188b9d cisco systems, inc
188ed5 tp vision belgium n.v. - innovation site brugge
+ 188ef9 g2c co. ltd.
+ 189088 eero inc.
+ 1890d8 sagemcom broadband sas
18922c virtual instruments
+ 1892a4 ciena corporation
+ 18937f ampak technology, inc.
+ 1893d7 texas instruments
+ 1894c6 shenzhen chenyee technology co., ltd.
+ 189552 1more
1897ff techfaith wireless technology limited
+ 1899f5 sichuan changhong electric ltd.
189a67 cse-servelec limited
- 189c5d cisco
- 189efc apple
- 18a905 hewlett-packard company
- 18a99b dell inc
+ 189ba5 ieee registration authority
+ 189c27 arris group, inc.
+ 189c5d cisco systems, inc
+ 189e2c huawei device co., ltd.
+ 189efc apple, inc.
+ 18a28a essel-t co., ltd
+ 18a3e8 fiberhome telecommunication technologies co.,ltd
+ 18a4a9 vanu inc.
+ 18a6f7 tp-link technologies co.,ltd.
+ 18a7f1 qingdao haier technology co.,ltd
+ 18a905 hewlett packard
+ 18a958 provision thai co., ltd.
+ 18a99b dell inc.
+ 18aa0f huawei device co., ltd.
18aa45 fon technology
- 18abf5 ultra electronics - electrics
+ 18aaca sichuan tianyi kanghe communications co., ltd
+ 18ab1d samsung electronics co.,ltd
+ 18abf5 ultra electronics electrics
+ 18ac9e itel mobile limited
18ad4d polostar technology corporation
18aebb siemens convergence creators gmbh&co.kg
- 18af61 apple, inc
- 18af8f apple
+ 18af61 apple, inc.
+ 18af8f apple, inc.
18af9f digitronic automationsanlagen gmbh
+ 18b169 sonicwall
18b209 torrey pines logic, inc
18b3ba netlogic ab
18b430 nest labs inc.
18b591 i-storm
+ 18b6cc we corporation inc.
+ 18b6f7 new pos technology limited
18b79e invoxia
- 18c086 broadcom corporation
+ 18b81f arris group, inc.
+ 18b905 hong kong bouffalo lab limited
+ 18bb26 fn-link technology limited
+ 18bb41 huawei device co., ltd.
+ 18bc5a zhejiang tmall technology co., ltd.
+ 18bdad l-tech corporation
+ 18be92 delta networks, inc.
+ 18bf1c jiangsu huitong group co.,ltd.
+ 18bfb3 samsung electronics co., ltd., memory division
+ 18c04d giga-byte technology co.,ltd.
+ 18c086 broadcom
+ 18c19d integrated device technology (malaysia) sdn. bhd.
+ 18c241 sonicwall
+ 18c2bf buffalo.inc
18c451 tucson embedded systems
+ 18c501 shenzhen gongjin electronics co.,lt
+ 18c58a huawei technologies co.,ltd
18c8e7 shenzhen hualistone technology co.,ltd
+ 18cc18 intel corporate
18cc23 philio technology corporation
- 18d071 dasan smc, inc.
+ 18cc88 hitachi johnson controls air
+ 18ce94 samsung electronics co.,ltd
+ 18cf24 huawei technologies co.,ltd
+ 18cf5e liteon technology corporation
+ 18d071 dasan co., ltd.
+ 18d0c5 guangdong oppo mobile telecommunications corp.,ltd
+ 18d225 fiberhome telecommunication technologies co.,ltd
+ 18d276 huawei technologies co.,ltd
+ 18d5b6 smg holdings llc
+ 18d61c shenzhen tinno mobile technology corp.
18d66a inmarsat
+ 18d6c7 tp-link technologies co.,ltd.
18d6cf kurth electronic gmbh
+ 18d717 guangdong oppo mobile telecommunications corp.,ltd
18d949 qvis labs, llc
- 18dc56 yulong computer telecommunication scientific(shenzhen)co.,lt
+ 18d98f huawei device co., ltd.
+ 18d9ef shuttle inc.
+ 18dbf2 dell inc.
+ 18dc56 yulong computer telecommunication scientific (shenzhen) co.,ltd
+ 18ded7 huawei technologies co.,ltd
+ 18dfb4 bosung powertec co.,ltd.
+ 18dfc1 aetheros
+ 18e1ca wanze
18e288 stt condigi
- 18e2c2 samsung electronics
- 18e728 cisco
- 18e7f4 apple
+ 18e29f vivo mobile communication co., ltd.
+ 18e2c2 samsung electronics co.,ltd
+ 18e3bc tct mobile ltd
+ 18e728 cisco systems, inc
+ 18e777 vivo mobile communication co., ltd.
+ 18e7f4 apple, inc.
18e80f viking electronics inc.
+ 18e829 ubiquiti networks inc.
18e8dd moduletek
- 18ef63 cisco systems, inc.
+ 18ece7 buffalo.inc
+ 18ee69 apple, inc.
+ 18ee86 novatel wireless solutions, inc.
+ 18ef63 cisco systems, inc
+ 18f0e4 xiaomi communications co ltd
+ 18f145 netcomm wireless limited
+ 18f18e chiper technology co. ltd
+ 18f1d8 apple, inc.
+ 18f292 shannon systems
18f46a hon hai precision ind. co.,ltd.
+ 18f643 apple, inc.
18f650 multimedia pacific limited
+ 18f76b zhejiang winsight technology co.,ltd
18f87a i3 international inc.
+ 18f9c4 bae systems
18fa6f isc applied systems corp
- 18fb7b dell inc
+ 18fb7b dell inc.
18fc9f changhe electronics co., ltd.
+ 18fdcb ieee registration authority
18fe34 espressif inc.
+ 18ff0f intel corporate
18ff2e shenzhen rui ying da technology co., ltd
+ 1c0042 nari technology co., ltd.
+ 1c012d ficer technology
+ 1c0219 guangdong oppo mobile telecommunications corp.,ltd
+ 1c05b7 chongqing trantor technology co., ltd.
1c0656 idy corporation
1c08c1 lg innotek
1c0b52 epicom s.a
+ 1c0faf lucid vision labs
1c0fcf sypro optics gmbh
+ 1c1161 ciena corporation
1c11e1 wartsila finland oy
- 1c129d ieee pes psrc/sub
+ 1c129d ieee pes psrc/sub
+ 1c12b0 amazon technologies inc.
+ 1c1338 kimball electronics group, llc
+ 1c1386 huawei device co., ltd.
1c1448 arris group, inc.
- 1c17d3 cisco systems, inc.
+ 1c14b3 airwire technologies
+ 1c151f huawei technologies co.,ltd
+ 1c17d3 cisco systems, inc
1c184a shenzhen richerlink technologies co.,ltd
1c19de eyevis gmbh
- 1c1ac0 apple
+ 1c1ac0 apple, inc.
+ 1c1adf microsoft corporation
+ 1c1b0d giga-byte technology co.,ltd.
1c1b68 arris group, inc.
+ 1c1bb5 intel corporate
1c1cfd dalian hi-think computer technology, corp
- 1c1d67 shenzhen huawei communication technologies co., ltd
- 1c1d86 cisco
+ 1c1d67 huawei technologies co.,ltd
+ 1c1d86 cisco systems, inc
+ 1c1e38 pccw global, inc.
+ 1c1ee3 hui zhou gaoshengda technology co.,ltd
+ 1c1fd4 lifebeam technologies ltd
+ 1c1ff1 huawei device co., ltd.
+ 1c20db huawei technologies co.,ltd
+ 1c21d1 ieee registration authority
+ 1c232c samsung electronics co.,ltd
+ 1c234f edmi europe ltd
+ 1c24cd askey computer corp.
+ 1c24eb burlywood
+ 1c25e1 china mobile iot company limited
+ 1c2704 zte corporation
+ 1c27dd datang gohighsec(zhejiang)information technology co.,ltd.
+ 1c28af aruba, a hewlett packard enterprise company
+ 1c2aa3 shenzhen hongrui optical technology co., ltd.
+ 1c2e1b suzhou tremenet communication technology co., ltd.
+ 1c3008 hui zhou gaoshengda technology co.,ltd
+ 1c330e pernixdata
1c334d its telecom
1c3477 innovation wireless
+ 1c34da mellanox technologies, inc.
1c35f1 new lift neue elektronische wege steuerungsbau gmbh
+ 1c36bb apple, inc.
1c37bf cloudium systems ltd.
+ 1c3929 ohsung
+ 1c3947 compal information (kunshan) co., ltd.
+ 1c398a fiberhome telecommunication technologies co.,ltd
1c3a4f accuspec electronics, llc
+ 1c3a60 ruckus wireless
+ 1c3ade samsung electronics co.,ltd
+ 1c3b8f selve gmbh & co. kg
+ 1c3bf3 tp-link technologies co.,ltd.
+ 1c3d2f huawei technologies co.,ltd
1c3de7 sigma koki co.,ltd.
1c3e84 hon hai precision ind. co.,ltd.
+ 1c4024 dell inc.
+ 1c40e8 shenzhen progress&win technology co.,ltd
1c4158 gemalto m2m gmbh
+ 1c4176 china mobile group device co.,ltd.
+ 1c427d guangdong oppo mobile telecommunications corp.,ltd
+ 1c4363 huawei technologies co.,ltd
1c43ec japan circuit co.,ltd
+ 1c4419 tp-link technologies co.,ltd.
+ 1c4455 sieb & meyer ag
1c4593 texas instruments
+ 1c45c2 huizhou city sunsin lntelligent technology co.,ltd
+ 1c472f huawei device co., ltd.
+ 1c4840 ims messsysteme gmbh
+ 1c48ce guangdong oppo mobile telecommunications corp.,ltd
1c48f9 gn netcom a/s
+ 1c497b gemtek technology co., ltd.
1c4af7 amon inc
1c4bb9 smg enterprise, llc
- 1c4bd6 azurewave
+ 1c4bd6 azurewave technology inc.
+ 1c4c48 itel mobile limited
+ 1c4d66 amazon technologies inc.
+ 1c4d70 intel corporate
+ 1c501e sunplus technology co., ltd.
1c51b5 techaya ltd
+ 1c5216 dongguan hele electronics co., ltd
1c52d6 flat display technology corporation
- 1c5a3e samsung eletronics co., ltd (visual display divison)
+ 1c549e universal electronics, inc.
+ 1c553a qiangua corp.
+ 1c56fe motorola mobility llc, a lenovo company
+ 1c57d8 kraftway corporation plc
+ 1c599b huawei technologies co.,ltd
+ 1c5a0b tegile systems
+ 1c5a3e samsung electronics co.,ltd
1c5a6b philips electronics nederland bv
1c5c55 prima cinema, inc
1c5c60 shenzhen belzon technology co.,ltd.
+ 1c5cf2 apple, inc.
+ 1c5d80 mitubishi hitachi power systems industries co., ltd.
+ 1c5f2b d-link international
1c5fff beijing ereneben information technology co.,ltd shenzhen branch
+ 1c60d2 fiberhome telecommunication technologies co.,ltd
+ 1c60de mercury communication technologies co.,ltd.
1c62b8 samsung electronics co.,ltd
1c63b7 openproducts 237 ab
+ 1c63bf shenzhen broadtel telecom co.,ltd
+ 1c6499 comtrend corporation
1c659d liteon technology corporation
- 1c666d hon hai precision ind.co.ltd
- 1c66aa samsung electronics
- 1c69a5 research in motion
+ 1c666d hon hai precision ind. co.,ltd.
+ 1c66aa samsung electronics co.,ltd
+ 1c6758 huawei technologies co.,ltd
+ 1c687e shenzhen qihu intelligent technology company limited
+ 1c697a elitegroup computer systems co., ltd
+ 1c69a5 blackberry rts
+ 1c6a7a cisco systems, inc
1c6bca mitsunami co., ltd.
+ 1c6e4c logistic service & engineering co.,ltd
+ 1c6e76 quarion technology inc
+ 1c6ee6 nhnetworks
1c6f65 giga-byte technology co.,ltd.
- 1c7508 compal information (kunshan) co., ltd.
+ 1c7022 murata manufacturing co., ltd.
+ 1c721d dell inc.
+ 1c7328 connected home
+ 1c7370 neotech
+ 1c740d zyxel communications corporation
+ 1c7508 compal information (kunshan) co., ltd.
1c76ca terasic technologies inc.
+ 1c77f6 guangdong oppo mobile telecommunications corp.,ltd
1c7839 shenzhen tencent computer system co., ltd.
- 1c7b21 sony mobile communications ab
- 1c7c11 eid
+ 1c784e china mobile iot limited company
+ 1c7b21 sony mobile communications inc
+ 1c7b23 qingdao hisense communications co.,ltd.
+ 1c7c11 eid
1c7c45 vitek industrial video products, inc.
1c7cc7 coriant gmbh
+ 1c7d22 fuji xerox co., ltd.
+ 1c7e51 3bumen.com
1c7ee5 d-link international
+ 1c7f2c huawei technologies co.,ltd
+ 1c8259 ieee registration authority
+ 1c8341 hefei bitland information technology co.ltd
1c83b0 linked ip gmbh
1c8464 formosa wireless communication corp.
1c86ad mct co., ltd.
+ 1c872c asustek computer inc.
+ 1c87e3 tecno mobile limited
+ 1c8e5c huawei technologies co.,ltd
1c8e8e db communication & systems co., ltd.
1c8f8a phase motion control spa
+ 1c90be ericsson ab
+ 1c9148 apple, inc.
1c9179 integrated system technologies ltd
+ 1c9180 apple, inc.
+ 1c919d dongguan liesheng electronic co., ltd.
+ 1c937c arris group, inc.
1c9492 ruag schweiz ag
1c955d i-lax electronics inc.
1c959f veethree electronics and marine llc
+ 1c965a weifang goertek electronics co.,ltd
1c973d pricom design
- 1c994c murata manufactuaring co.,ltd.
- 1ca770 shenzhen chuangwei-rgb electronics co.,lt
- 1caa07 cisco systems, inc.
+ 1c97c5 ynomia pty ltd
+ 1c98c1 cloud network technology singapore pte. ltd.
+ 1c98ec hewlett packard enterprise
+ 1c994c murata manufacturing co., ltd.
+ 1c9957 intel corporate
+ 1c9c26 zoovel technologies
+ 1c9c8c juniper networks
+ 1c9d3e integrated device technology (malaysia) sdn. bhd.
+ 1c9e46 apple, inc.
+ 1c9ecb beijing nari smartchip microelectronics company limited
+ 1c9f4e coosea group (hk) company limited
+ 1ca0b8 hon hai precision ind. co., ltd.
+ 1ca0d3 ieee registration authority
+ 1ca0ef ieee registration authority
+ 1ca2b1 ruwido austria gmbh
+ 1ca532 shenzhen gongjin electronics co.,lt
+ 1ca681 huawei technologies co.,ltd
+ 1ca770 shenzhen chuangwei-rgb electronics co.,ltd
+ 1ca852 sensaio pte ltd
+ 1caa07 cisco systems, inc
1cab01 innovolt
- 1caba7 apple
+ 1cab34 new h3c technologies co., ltd
+ 1caba7 apple, inc.
+ 1cabc0 hitron technologies. inc
+ 1cadd1 bosung electronics co., ltd.
+ 1caecb huawei technologies co.,ltd
1caf05 samsung electronics co.,ltd
- 1caff7 d-link international pte limited
+ 1caff7 d-link international
+ 1cb044 askey computer corp
1cb094 htc corporation
- 1cb17f nec accesstechnica, ltd.
+ 1cb17f nec platforms, ltd.
1cb243 tdc a/s
+ 1cb3e9 shenzhen zhongke united communication technology
+ 1cb72c asustek computer inc.
+ 1cb796 huawei technologies co.,ltd
+ 1cb857 becon technologies co,.ltd.
+ 1cb9c4 ruckus wireless
1cba8c texas instruments
- 1cbba8 ojsc "ufimskiy zavod "promsvyaz"
+ 1cbba8 ojsc ufimskiy zavod promsvyaz
1cbd0e amplified engineering pty ltd
- 1cbdb9 d-link international pte limited
+ 1cbdb9 d-link international
+ 1cbfc0 chongqing fugui electronics co.,ltd.
+ 1cbfce shenzhen century xinyang technology co., ltd
+ 1cc035 planex communications inc.
+ 1cc0e1 ieee registration authority
1cc11a wavetronix
- 1cc1de hewlett-packard company
+ 1cc1bc yichip microelectronics (hangzhou) co.,ltd
+ 1cc1de hewlett packard
1cc316 milesight technology co., ltd.
+ 1cc3eb guangdong oppo mobile telecommunications corp.,ltd
+ 1cc586 absolute acoustics
1cc63c arcadyan technology corporation
+ 1cc72d shenzhen huapu digital co.,ltd
+ 1ccae3 ieee registration authority
+ 1ccb99 tct mobile ltd
+ 1cccd6 xiaomi communications co ltd
+ 1ccde5 shanghai wind technologies co.,ltd
+ 1cd107 realme chongqing mobile telecommunications corp.,ltd.
+ 1cd1ba fiberhome telecommunication technologies co.,ltd
+ 1cd1e0 cisco systems, inc
1cd40c kriwan industrie-elektronik gmbh
- 1cdf0f cisco systems, inc.
+ 1cd5e2 shenzhen youhua technology co., ltd
+ 1cd6bd leedarson lighting co., ltd.
+ 1cd6be wistron neweb corporation
+ 1cda27 vivo mobile communication co., ltd.
+ 1cddea guangdong oppo mobile telecommunications corp.,ltd
+ 1cde57 fiberhome telecommunication technologies co.,ltd
+ 1cdea7 cisco systems, inc
+ 1cdf0f cisco systems, inc
+ 1cdf52 texas instruments
1ce165 marshal corporation
1ce192 qisda corporation
1ce2cc texas instruments
- 1ce62b apple
- 1ce6c7 cisco
+ 1ce57f samsung electronics co.,ltd
+ 1ce61d samsung electronics co.,ltd
+ 1ce62b apple, inc.
+ 1ce6ad huawei device co., ltd.
+ 1ce6c7 cisco systems, inc
+ 1ce85d cisco systems, inc
+ 1cea0b edgecore networks corporation
+ 1cea1b nokia
+ 1cec72 allradio co., ltd
+ 1ceec9 elo touch solutions
1ceee8 ilshin elecom
+ 1cefce bebro electronic gmbh
+ 1cf03e wearhaus inc.
1cf061 scaps gmbh
- 1cf4ca
+ 1cf29a google, inc.
+ 1cf4ca private
1cf5e7 turtle industry co., ltd.
1cfa68 tp-link technologies co.,ltd.
1cfcbb realfiction aps
+ 1cfd08 ieee registration authority
+ 1cfe2b amazon technologies inc.
1cfea7 identytech solutins ltd.
+ 1cff59 sichuan tianyi comheart telecom co., ltd.
20014f linea research ltd
- 2002af murata manufactuaring co.,ltd.
+ 2002af murata manufacturing co., ltd.
+ 20040f dell inc.
200505 radmax communication private limited
2005e8 ooo inpromedia
- 2008ed huawei technologies co., ltd
- 200a5e xiangshan giant eagle technology developing co.,ltd
+ 2008ed huawei technologies co.,ltd
+ 200a0d ieee registration authority
+ 200a5e xiangshan giant eagle technology developing co., ltd.
200bc7 huawei technologies co.,ltd
- 200cc8 netgear inc.,
+ 200bcf nintendo co.,ltd
+ 200cc8 netgear
+ 200db0 shenzhen four seas global link network technology co., ltd.
200e95 iec – tc9 wg43
+ 200f70 foxtech
20107a gemtek technology co., ltd.
+ 20114e metersit s.r.l.
201257 most lucky trading ltd
+ 2012d5 scientech materials corporation
2013e0 samsung electronics co.,ltd
+ 20163d integrated device technology (malaysia) sdn. bhd.
+ 2016b9 intel corporate
2016d8 liteon technology corporation
+ 201742 lg electronics
20180e shenzhen sunchip technology co., ltd
- 201a06 compal information (kunshan) co., ltd.
+ 201a06 compal information (kunshan) co., ltd.
+ 201b88 dongguan liesheng electronic co., ltd.
+ 201bc9 juniper networks
201d03 elatec gmbh
- 2021a5 lg electronics inc
+ 201e88 intel corporate
+ 201f31 inteno broadband technology ab
+ 2021a5 lg electronics (mobile communications)
202564 pegatron corporation
202598 teleview
- 202bc1 shenzhen huawei communication technologies co., ltd
+ 2025d2 fiberhome telecommunication technologies co.,ltd
+ 202681 tecno mobile limited
+ 20283e huawei technologies co.,ltd
+ 2028bc visionscape co,. ltd.
+ 202ac5 petite-en
+ 202bc1 huawei technologies co.,ltd
202cb7 kong yue electronics & information industry (xinhui) ltd.
- 203706 cisco systems, inc.
+ 202d07 samsung electronics co.,ltd
+ 202d23 collinear networks inc.
+ 202df8 digital media cartridge ltd.
+ 20311c vivo mobile communication co., ltd.
+ 2031eb hdsn
+ 203233 shenzhen bilian electronic co.,ltd
+ 20326c samsung electronics co.,ltd
+ 2034fb xiaomi communications co ltd
+ 20365b megafone limited
+ 2036d7 shanghai reacheng communication technology co.,ltd
+ 203706 cisco systems, inc
2037bc kuipers electronic engineering bv
- 203a07 cisco
+ 203956 hmd global oy
+ 203a07 cisco systems, inc
+ 203aef sivantos gmbh
+ 203b69 vivo mobile communication co., ltd.
+ 203cae apple, inc.
+ 203d66 arris group, inc.
+ 203db2 huawei technologies co.,ltd
+ 203dbd lg innotek
204005 feno gmbh
20415a smarteh d.o.o.
20443a schneider electric asia pacific ltd
+ 204441 remote solution
2046a1 vecow co., ltd
2046f9 advanced network devices (dba:and)
+ 204747 dell inc.
+ 2047da xiaomi communications co ltd
+ 2047ed bskyb ltd
204aaa hanscan spain s.a.
+ 204c03 aruba, a hewlett packard enterprise company
204c6d hugo brennenstuhl gmbh & co. kg.
+ 204c9e cisco systems, inc
204e6b axxana(israel) ltd
+ 204e71 juniper networks
204e7f netgear
- 205476 sony mobile communications ab
+ 204ef6 azurewave technology inc.
+ 2050e7 ampak technology,inc.
+ 2053ca risk technology ltd
+ 205476 sony mobile communications inc
+ 2054fa huawei technologies co.,ltd
+ 205531 samsung electronics co.,ltd
+ 205532 gotech international technology limited
205721 salix technology co., ltd.
+ 2057af shenzhen fh-net optoelectronics co.,ltd
+ 205869 ruckus wireless
2059a0 paragon technologies inc.
205a00 coval
- 205b2a
+ 205b2a private
205b5e shenzhen wonhe technology co., ltd
- 206432 samsung electro mechanics co.,ltd.
+ 205cfa yangzhou changlian network technology co,ltd.
+ 205d47 vivo mobile communication co., ltd.
+ 205e64 huawei device co., ltd.
+ 205ef7 samsung electronics co.,ltd
+ 205f3d cambridge communication systems ltd
+ 206274 microsoft corporation
+ 20635f abeeway
+ 206432 samsung electro mechanics co., ltd.
+ 2064cb guangdong oppo mobile telecommunications corp.,ltd
+ 20658e huawei technologies co.,ltd
+ 2066cf freebox sas
+ 20677c hewlett packard enterprise
2067b1 pluto inc.
20689d liteon technology corporation
- 206a8a wistron infocomm manufacturing(kunshan)co.,ltd.
+ 206980 apple, inc.
+ 206a8a wistron infocomm (zhongshan) corporation
+ 206a94 hitron technologies. inc
206aff atlas elektronik uk limited
+ 206be7 tp-link technologies co.,ltd.
+ 206c8a extreme networks, inc.
+ 206d31 firewalla inc
+ 206e9c samsung electronics co.,ltd
206fec braemac ca llc
+ 20719e sf technology co.,ltd
207355 arris group, inc.
+ 207454 vivo mobile communication co., ltd.
2074cf shenzhen voxtech co.,ltd
207600 actiontec electronics, inc
+ 20768f apple, inc.
+ 207693 lenovo (beijing) limited.
+ 207759 optical network video technologies (shenzhen) co., ltd.
+ 20780b delta faucet company
+ 207852 nokia solutions and networks gmbh & co. kg
+ 2078f0 apple, inc.
+ 207918 intel corporate
207c8f quanta microsystems,inc.
- 207d74 apple
+ 207d74 apple, inc.
+ 208058 ciena corporation
+ 20826a guangdong oppo mobile telecommunications corp.,ltd
+ 2082c0 xiaomi communications co ltd
+ 2083f8 advanced digital broadcast sa
20858c assa
+ 208593 ieee registration authority
+ 208756 siemens ag
2087ac aes motomation
- 208984 compal information (kunshan) co., ltd
+ 2087ec huawei technologies co.,ltd
+ 20896f fiberhome telecommunication technologies co.,ltd
+ 208984 compal information (kunshan) co., ltd.
208986 zte corporation
+ 208b37 skyworth digital technology(shenzhen) co.,ltd
+ 20906f shenzhen tencent computer system co., ltd.
+ 209148 texas instruments
20918a profalux
2091d9 i'm spa
+ 20934d fujian star-net communication co.,ltd
+ 20968a china mobile (hangzhou) information technology co., ltd.
+ 2098d8 shenzhen yingdakang technology co., ltd
+ 209a7d sagemcom broadband sas
209ae9 volacomm co., ltd
209ba5 jiaxing glead electronics co.,ltd
+ 209bcd apple, inc.
+ 209e79 universal electronics, inc.
+ 209ef7 extreme networks, inc.
+ 20a171 amazon technologies inc.
+ 20a2e4 apple, inc.
20a2e7 lee-dickens ltd
+ 20a60c xiaomi communications co ltd
+ 20a680 huawei technologies co.,ltd
+ 20a6cd hewlett packard enterprise
+ 20a783 micontrol gmbh
20a787 bointec taiwan corporation limited
+ 20a7f9 shenzhen olanboa technology co., ltd
+ 20a8b9 siemens ag
+ 20a90e tct mobile ltd
+ 20a99b microsoft corporation
20aa25 ip-net llc
20aa4b cisco-linksys, llc
+ 20ab37 apple, inc.
+ 20ab48 huawei technologies co.,ltd
+ 20ac9c china telecom corporation limited
+ 20ad56 continental automotive systems inc.
+ 20b001 technicolor
20b0f7 enclustra gmbh
20b399 enterasys
20b5c6 mimosa networks
+ 20b730 tecongroup, inc
+ 20b780 toshiba visual solutions corporation co.,ltd
20b7c0 omicron electronics gmbh
- 20bbc0 cisco
+ 20bb76 col giovanni paolo spa
+ 20bbc0 cisco systems, inc
20bbc6 jabil circuit hungary ltd.
20bfdb dvl
+ 20c047 verizon
+ 20c06d shenzhen spacetek technology co.,ltd
20c1af i wit digital co., limited
+ 20c38f texas instruments
+ 20c3a4 retailnext
20c60d shanghai annijie information technology co.,ltd
20c6eb panasonic corporation avc networks company
+ 20c74f sensorpush
20c8b3 shenzhen bul-tech co.,ltd.
- 20c9d0 apple
- 20cd39 texas instruments, inc
+ 20c9d0 apple, inc.
+ 20cd39 texas instruments
+ 20cd6e realme chongqing mobile telecommunications corp.,ltd.
+ 20ce2a ieee registration authority
20cec4 peraso technologies
20cf30 asustek computer inc.
+ 20d160 private
20d21f wincal technology corp.
+ 20d25f smartcap technologies
20d390 samsung electronics co.,ltd
20d5ab korea infocom co.,ltd.
- 20d5bf samsung eletronics co., ltd
+ 20d5bf samsung electronics co.,ltd
20d607 nokia corporation
+ 20d75a posh mobile limited
+ 20d80b juniper networks
20d906 iota, inc.
+ 20da22 huawei technologies co.,ltd
+ 20dbab samsung electronics co., ltd.
20dc93 cheetah hi-tech, inc.
- 20dce6 tp-link technologies co., ltd.
+ 20dce6 tp-link technologies co.,ltd.
+ 20dcfd huawei device co., ltd.
+ 20de88 ic realtime llc
20df3f nanjing sac power grid automation co., ltd.
- 20e52a netgear inc.,
+ 20dfb9 google, inc.
+ 20e09c nokia
+ 20e2a8 apple, inc.
+ 20e407 spark srl
+ 20e52a netgear
20e564 arris group, inc.
20e791 siemens healthcare diagnostics, inc
+ 20e874 apple, inc.
+ 20e882 zte corporation
20eac7 shenzhen riopine electronics co., ltd
+ 20ed74 ability enterprise co.,ltd.
+ 20ee28 apple, inc.
20eec6 elefirst science & tech co ., ltd
+ 20efbd roku, inc
20f002 mtdata developments pty. ltd.
- 20f3a3 huawei technologies co., ltd
+ 20f17c huawei technologies co.,ltd
+ 20f19e arris group, inc.
+ 20f375 arris group, inc.
+ 20f3a3 huawei technologies co.,ltd
+ 20f41b shenzhen bilian electronic co.,ltd
+ 20f44f nokia
+ 20f452 shanghai iuv software development co. ltd
+ 20f478 xiaomi communications co ltd
+ 20f510 codex digital limited
+ 20f543 hui zhou gaoshengda technology co.,ltd
+ 20f77c vivo mobile communication co., ltd.
20f85e delta electronics
20fabb cambridge executive limited
20fdf1 3com europe ltd
20fecd system in frontier inc.
20fedb m2m solution s.a.s.
- 2401c7 cisco
+ 20ff36 iflytek co.,ltd.
+ 2400ba huawei technologies co.,ltd
+ 2400fa china mobile (hangzhou) information technology co., ltd
+ 24016f huawei device co., ltd.
+ 2401c7 cisco systems, inc
24050f mtn electronic co. ltd
+ 240588 google, inc.
+ 2405f5 integrated device technology (malaysia) sdn. bhd.
+ 2406aa guangdong oppo mobile telecommunications corp.,ltd
240917 devlin electronics limited
- 240a11 tct mobile limited
- 240a64 azurewavetechnologies,inc
+ 240995 huawei technologies co.,ltd
+ 240a11 tct mobile ltd
+ 240a63 arris group, inc.
+ 240a64 azurewave technology inc.
+ 240ac4 espressif inc.
+ 240b0a palo alto networks
240b2a viettel group
- 240bb1 kostal industrie elektrik gmbh
+ 240b88 taicang t&w electronics
+ 240bb1 kostal industrie elektrik gmbh
+ 240d65 shenzhen vsun communication technology co., ltd.
+ 240d6c smnd
+ 240dc2 tct mobile ltd
241064 shenzhen ecsino tecnical co. ltd
241125 hutek co., ltd.
+ 241145 xiaomi communications co ltd
241148 entropix, llc
2411d0 chongqing ehs science and technology development co.,ltd.
+ 241407 xiamen sigmastar technology ltd.
+ 241510 ieee registration authority
+ 24166d huawei technologies co.,ltd
+ 24169d cisco systems, inc
+ 24181d samsung electro-mechanics(thailand)
+ 2418c6 hunan fn-link technology limited
241a8c squarehead technology as
+ 241ae6 huawei device co., ltd.
241b13 shanghai nutshell electronic co., ltd.
+ 241b44 hangzhou tuners electronics co., ltd
+ 241b7a apple, inc.
+ 241c04 shenzhen jehe technology development co., ltd.
+ 241eeb apple, inc.
241f2c calsys, inc.
- 2421ab sony ericsson mobile communications
+ 241fa0 huawei technologies co.,ltd
+ 2420c7 sagemcom broadband sas
+ 242124 nokia
+ 2421ab sony mobile communications inc
+ 24240e apple, inc.
242642 sharp corporation.
+ 2429fe kyocera corporation
+ 242e02 huawei technologies co.,ltd
+ 242e90 palit microsystems, ltd
242ffa toshiba global commerce solutions
- 24336c
+ 2430f8 huawei device co., ltd.
+ 243154 huawei technologies co.,ltd
+ 243184 sharp corporation
+ 24336c private
+ 2435cc zhongshan scinan internet of things co.,ltd.
24374c cisco spvtg
2437ef emc electronic media communication sa
+ 243a82 irts
243c20 dynamode group
+ 243f30 oxygen broadband s.a.
+ 2440ae niic technology co., ltd.
+ 24418c intel corporate
+ 2442bc alinco,incorporated
+ 2443e2 dasan network solutions
+ 244427 huawei technologies co.,ltd
+ 24456b huawei device co., ltd.
244597 gemue gebr. mueller apparatebau
+ 2446c8 motorola mobility llc, a lenovo company
24470e pentronicab
24497b innovative converged devices inc
- 245fdf kyocera corporation
+ 244b03 samsung electronics co.,ltd
+ 244b81 samsung electronics co.,ltd
+ 244bfe asustek computer inc.
+ 244c07 huawei technologies co.,ltd
+ 244ce3 amazon technologies inc.
+ 244e7b ieee registration authority
+ 244f1d irule llc
+ 24526a zhejiang dahua technology co., ltd.
+ 2453bf enernet
+ 24586e zte corporation
+ 245880 vizeo
+ 24590b white sky inc. limited
+ 245a4c ubiquiti networks inc.
+ 245ab5 samsung electronics co.,ltd
+ 245b83 renesas electronics (penang) sdn. bhd.
+ 245ba7 apple, inc.
+ 245bf0 liteon, inc.
+ 245cbf ncse
+ 245ccb axie consortium, inc.
+ 245dfc ieee registration authority
+ 245ebe qnap systems, inc.
+ 245f9f huawei device co., ltd.
+ 245fdf kyocera corporation
+ 246081 razberi technologies
+ 24615a china mobile group device co.,ltd.
246278 sysmocom - systems for mobile communications gmbh
+ 2462ab espressif inc.
+ 2462ce aruba, a hewlett packard enterprise company
+ 24649f huawei device co., ltd.
2464ef cyg sunri co.,ltd.
246511 avm gmbh
+ 246880 braveridge.co.,ltd.
+ 2468b0 samsung electronics co.,ltd
+ 24693e innodisk corporation
24694a jasmine systems inc.
- 2469a5 huawei technologies co., ltd
+ 246968 tp-link technologies co.,ltd.
+ 2469a5 huawei technologies co.,ltd
246aab it-is international
+ 246c8a yukai engineering
+ 246e96 dell inc.
+ 246f28 espressif inc.
+ 246f8c huawei device co., ltd.
+ 247152 dell inc.
+ 247189 texas instruments
+ 247260 iottech corp
+ 2474f7 gopro
+ 247625 texas instruments
+ 247656 shanghai net miles fiber optics technology co., ltd.
24767d cisco spvtg
247703 intel corporate
+ 24792a ruckus wireless
+ 2479ef greenpacket berhad, taiwan
+ 2479f3 guangdong oppo mobile telecommunications corp.,ltd
+ 2479f8 kupson spol. s r.o.
+ 247c4c herman miller
+ 247d4d texas instruments
+ 247e12 cisco systems, inc
+ 247e51 zte corporation
+ 247f20 sagemcom broadband sas
+ 247f3c huawei technologies co.,ltd
248000 westcontrol as
2481aa ksh international co., ltd.
+ 2481c7 huawei device co., ltd.
24828a prowave technologies ltd.
+ 248498 beijing jiaoda microunion tech.co.,ltd.
2486f4 ctek, inc.
248707 senergy corporation
- 2493ca voxtronic technology computer-systeme gmbh
+ 248894 shenzhen lensun communication technology ltd
+ 248a07 mellanox technologies, inc.
+ 248be0 sichuan tianyi comheart telecomco., ltd
+ 2491bb huawei technologies co.,ltd
+ 24920e samsung electronics co.,ltd
+ 2493ca voxtronic austria
249442 open road solutions , inc.
+ 249493 fibrsol global network limited
+ 249494 hong kong bouffalo lab limited
+ 2494cb arris group, inc.
249504 sfr
- 24a2e1 apple, inc
+ 2497ed techvision intelligent technology limited
+ 249ad8 yealink(xiamen) network technology co.,ltd.
+ 249eab huawei technologies co.,ltd
+ 249f89 texas instruments
+ 24a074 apple, inc.
+ 24a160 espressif inc.
+ 24a2e1 apple, inc.
24a42c koukaam a.s.
- 24a43c ubiquiti networks, inc
+ 24a43c ubiquiti networks inc.
+ 24a487 huawei device co., ltd.
24a495 thales canada inc.
+ 24a52c huawei technologies co.,ltd
+ 24a534 syntrust tech international ltd.
+ 24a65e zte corporation
+ 24a7dc bskyb ltd
24a87d panasonic automotive systems asia pacific(thailand)co.,ltd.
24a937 pure storage
- 24ab81 apple
- 24af4a alcatel-lucent-ipd
+ 24ab81 apple, inc.
+ 24af4a alcatel-lucent ipd
24af54 nexgen mediatech inc.
- 24b657 cisco systems, inc.
+ 24b0a9 shanghai mobiletek communication ltd.
+ 24b105 prama hikvision india private limited
+ 24b209 avaya inc
+ 24b2de espressif inc.
+ 24b657 cisco systems, inc
24b6b8 friem spa
- 24b6fd dell inc
+ 24b6fd dell inc.
24b88c crenus co.,ltd.
24b8d2 opzoon technology co.,ltd.
+ 24ba13 riso kagaku corporation
24ba30 technical consumer products, inc.
24bbc1 absolute analysis
24bc82 dali wireless, inc.
+ 24bcf8 huawei technologies co.,ltd
24be05 hewlett packard
- 24bf74
+ 24be18 dadoutek company limited
+ 24bf74 private
24c0b3 rsf
+ 24c17a beijing iactive network co.,ltd
+ 24c1bd crrc dalian r&d co.,ltd.
+ 24c3f9 securitas direct ab
+ 24c42f philips lifeline
+ 24c44a zte corporation
24c696 samsung electronics co.,ltd
- 24c848 mywerk system gmbh
+ 24c848 mywerk portal gmbh
24c86e chaney instrument co.
+ 24c8d3 mcwane india pvt ltd
24c9a1 ruckus wireless
24c9de genoray
+ 24cacb fiberhome telecommunication technologies co.,ltd
24cbe7 myk, inc.
24cf21 shenzhen state micro technology co., ltd
+ 24d0df apple, inc.
+ 24d13f mexus co.,ltd
24d2cc smartdrive systems inc.
- 24d921 avaya, inc
+ 24d3f2 zte corporation
+ 24d51c zhongtian broadband technology co., ltd
+ 24d76b syntronic ab
+ 24d921 avaya inc
+ 24da11 no nda inc
+ 24da33 huawei technologies co.,ltd
+ 24da9b motorola mobility llc, a lenovo company
24dab6 sistemas de gestión energética s.a. de c.v
- 24dbac shenzhen huawei communication technologies co., ltd
+ 24dbac huawei technologies co.,ltd
24dbad shoppertrak rct corporation
24dbed samsung electronics co.,ltd
- 24dec6 aruba networks
- 24e271 qingdao hisense communications co.,ltd
+ 24dec6 aruba, a hewlett packard enterprise company
+ 24df6a huawei technologies co.,ltd
+ 24dfa7 hangzhou broadlink technology co.,ltd
+ 24e124 xiamen ursalink technology co., ltd.
+ 24e271 qingdao hisense communications co.,ltd.
+ 24e314 apple, inc.
+ 24e43f wenzhou kunmei communication technology co.,ltd.
+ 24e4c8 fiberhome telecommunication technologies co.,ltd
+ 24e5aa philips oral healthcare, inc.
24e6ba jsc zavod im. kozitsky
- 24e9b3 cisco
- 24ea40 systeme helmholz gmbh
+ 24e853 lg innotek
+ 24e927 tomtom international bv
+ 24e9b3 cisco systems, inc
+ 24e9ca huawei device co., ltd.
+ 24ea40 helmholz gmbh & co. kg
24eb65 saet i.s. s.r.l.
+ 24ec51 adf technologies sdn bhd
24ec99 askey computer corp
24ecd6 csg science & technology co.,ltd.hefei
+ 24edfd siemens canada limited
24ee3a chengdu yingji electronic hi-tech co ltd
+ 24ee9a intel corporate
+ 24f094 apple, inc.
24f0ff ght co., ltd.
+ 24f128 telstra
+ 24f150 guangzhou qi'an technology co., ltd.
+ 24f27f hewlett packard enterprise
24f2dd radiant zemax llc
+ 24f57e hwh co., ltd.
+ 24f5a2 belkin international inc.
24f5aa samsung electronics co.,ltd
+ 24f677 apple, inc.
+ 24faf3 shanghai flexem technology co.,ltd.
+ 24fb65 huawei technologies co.,ltd
+ 24fce5 samsung electronics co.,ltd
+ 24fd0d intelbras
24fd52 liteon technology corporation
+ 24fd5b smartthings, inc.
+ 280245 konze system technology co.,ltd.
+ 2802d8 samsung electronics co.,ltd
2804e0 fermax electronica s.a.u.
+ 28052e dematic corp
28061e ningbo global useful electric co.,ltd
28068d itl, llc
- 280b5c apple
+ 28070d guangzhou winsound information technology co.,ltd.
+ 280b5c apple, inc.
+ 280c28 unigen datastorage corporation
280cb8 mikrosay yazilim ve elektronik a.s.
- 280dfc sony computer entertainment inc.
+ 280dfc sony interactive entertainment inc.
+ 280e8b beijing spirit technology development co., ltd.
+ 280fc5 beijing leadsec technology co., ltd.
+ 28101b magnacom
28107b d-link international
+ 2811a5 bose corporation
+ 2811ec huawei technologies co.,ltd
281471 lantis co., ltd.
- 28162e 2wire
+ 28162e 2wire inc
+ 28167f xiaomi communications co ltd
+ 2816a8 microsoft corporation
+ 2816ad intel corporate
2817ce omnisense ltd
281878 microsoft corporation
2818fd aditya infotech ltd.
+ 281b04 zalliant llc
282246 beijing sinoix communication co., ltd
+ 282373 digita
+ 2823f5 china mobile (hangzhou) information technology co., ltd.
+ 2824ff wistron neweb corporation
+ 282536 shenzhen holatek co.,ltd
2826a6 pbr electronics gmbh
+ 2827bf samsung electronics co.,ltd
28285d zyxel communications corporation
+ 282986 apc by schneider electric
+ 2829cc corsa technology incorporated
2829d9 globalbeiming technology (beijing)co. ltd
+ 282b96 huawei device co., ltd.
+ 282c02 ieee registration authority
282cb2 tp-link technologies co.,ltd.
+ 282fc2 automotive data solutions
+ 2830ac frontiir co. ltd.
283152 huawei technologies co.,ltd
+ 283166 vivo mobile communication co., ltd.
+ 28317e hongkong nano ic technologies co., ltd
+ 2832c5 humax co., ltd.
+ 283334 huawei device co., ltd.
283410 enigma diagnostics limited
- 2834a2 cisco
- 283737 apple
+ 2834a2 cisco systems, inc
+ 283545 shenzhen chuangwei-rgb electronics co.,ltd
+ 283638 ieee registration authority
+ 283713 shenzhen 3nod digital technology co., ltd.
+ 283737 apple, inc.
+ 28385c flextronics
2838cf gen2wave
+ 283926 cybertan technology inc.
+ 28395e samsung electronics co.,ltd
2839e7 preceno technology pte.ltd.
+ 283a4d cloud network technology (samoa) limited
+ 283b82 d-link international
283b96 cool control ltd
- 283ce4 huawei technologies co., ltd
+ 283ce4 huawei technologies co.,ltd
+ 283e76 common networks
+ 283f69 sony mobile communications inc
28401a c8 medisensors, inc.
284121 optisense network, llc
+ 2841c6 huawei technologies co.,ltd
+ 2841ec huawei technologies co.,ltd
284430 genesistechnical systems (uk) ltd
2847aa nokia corporation
284846 gridcentric inc.
+ 2848e7 huawei device co., ltd.
284c53 intune networks
284d92 luminator
+ 284ed7 outsmart power systems, inc.
284fce liaoning wontel science and technology development co.,ltd.
285132 shenzhen prayfly technology co.,ltd
- 285767 echostar technologies corp
- 285fdb shenzhen huawei communication technologies co., ltd
+ 285261 cisco systems, inc
+ 2852e0 layon international electronic & telecom co.,ltd
+ 2852f9 zhongxin intelligent times (shenzhen) co., ltd.
+ 28534e huawei technologies co.,ltd
+ 285471 huawei device co., ltd.
+ 28565a hon hai precision ind. co.,ltd.
+ 2856c1 harman/becker automotive systems gmbh
+ 285767 dish technologies corp
+ 2857be hangzhou hikvision digital technology co.,ltd.
+ 285aeb apple, inc.
+ 285b0c sichuan jiuzhou electronic technology co., ltd.
+ 285f2f rnware co.,ltd.
+ 285fdb huawei technologies co.,ltd
286046 lantech communications global, inc.
286094 capelec
- 286336 siemens ag - industrial automation - ewa
+ 286336 siemens ag
+ 2863bd aptiv services us, llc
+ 2864b0 huawei device co., ltd.
28656b keystone microtech corporation
- 286ab8 apple
- 286aba apple
+ 2866e3 azurewave technology inc.
+ 2868d2 huawei technologies co.,ltd
+ 286ab8 apple, inc.
+ 286aba apple, inc.
+ 286c07 xiaomi electronics,co.,ltd
286d97 samjin co., ltd.
+ 286dcd beijing winner microelectronics co.,ltd.
286ed4 huawei technologies co.,ltd
+ 286f7f cisco systems, inc
287184 spire payments
2872c5 smartmatic corp
2872f0 athena
+ 2875d8 fujian star-net communication co.,ltd
+ 287610 ignitenet
+ 2876cd funshion online technologies co.,ltd
+ 2877f1 apple, inc.
287994 realplay digital technology(shenzhen) co.,ltd
+ 287aee arris group, inc.
+ 287b09 zte corporation
+ 287cdb hefei toycloud technology co.,ltd
+ 287fcf intel corporate
+ 288023 hewlett packard
+ 288088 netgear
+ 2880a2 novatel wireless solutions, inc.
+ 288335 samsung electronics co.,ltd
+ 28840e silicon valley immigration service
+ 2884fa sharp corporation
28852d touch networks
288915 cashguard sverige ab
288a1c juniper networks
+ 288cb8 zte corporation
2891d0 stage tec entwicklungsgesellschaft für professionelle audiotechnik mbh
28924a hewlett packard
- 2893fe cisco systems, inc.
- 28940f cisco systems, inc.
+ 2893fe cisco systems, inc
+ 28940f cisco systems, inc
2894af samhwa telecom
28987b samsung electronics co.,ltd
+ 28993a arista networks
+ 2899c7 lindsay broadband inc
289a4b steelseries aps
- 289afa tct mobile limited
+ 289af7 adva optical networking ltd.
+ 289afa tct mobile ltd
+ 289e97 huawei technologies co.,ltd
289edf danfoss turbocor compressors, inc
+ 289efc sagemcom broadband sas
+ 28a02b apple, inc.
+ 28a183 alpsalpine co,.ltd
28a186 enblink
28a192 gerp solution
28a1eb etek technology (shenzhen) co.,ltd
28a241 exlar corp
+ 28a24b juniper networks
28a574 miller electric mfg. co.
+ 28a5ee shenzhen sdgi catv co., ltd
+ 28a6ac seca gmbh & co. kg
+ 28a6db huawei technologies co.,ltd
+ 28ac67 mach power, rappresentanze internazionali s.r.l.
+ 28ac9e cisco systems, inc
+ 28ad18 hui zhou gaoshengda technology co.,ltd
+ 28ad3e shenzhen tong bo wei technology co.,ltd
28af0a sirius xm radio inc
+ 28affd cisco systems, inc
28b0cc xenya d.o.o.
28b2bd intel corporate
+ 28b371 ruckus wireless
28b3ab genmark automation
+ 28b448 huawei technologies co.,ltd
+ 28b4fb sprocomm technologies co.,ltd.
+ 28b77c ieee registration authority
+ 28b9d9 radisys corporation
28ba18 nextnav, llc
28bab5 samsung electronics co.,ltd
28bb59 rnet technologies, inc.
- 28be9b technicolor usa inc.
+ 28bc18 sourcingoverseas co. ltd
+ 28bc56 emac, inc.
+ 28bd89 google, inc.
+ 28be03 tct mobile ltd
+ 28be9b technicolor ch usa inc.
+ 28bf89 fiberhome telecommunication technologies co.,ltd
28c0da juniper networks
+ 28c13c hon hai precision ind. co., ltd.
+ 28c21f samsung electro-mechanics(thailand)
+ 28c2dd azurewave technology inc.
+ 28c63f intel corporate
28c671 yota devices oy
- 28c68e netgear inc.,
+ 28c68e netgear
+ 28c709 apple, inc.
28c718 altierre
+ 28c7ce cisco systems, inc
28c825 dellking industrial co., ltd
+ 28c87a arris group, inc.
+ 28c87c zte corporation
28c914 taimag corporation
+ 28ca09 thyssenkrupp elevators (shanghai) co.,ltd
28cbeb one
28cc01 samsung electronics co.,ltd
28ccff corporacion empresarial altra sl
28cd1c espotel oy
28cd4c individual computers gmbh
28cd9c shenzhen dynamax software development co.,ltd.
- 28cfda apple
- 28cfe9 apple
+ 28cdc4 chongqing fugui electronics co.,ltd.
+ 28cf08 essys
+ 28cfda apple, inc.
+ 28cfe9 apple, inc.
+ 28d044 shenzhen xinyin technology company
+ 28d0cb cambridge communication systems ltd
+ 28d0ea intel corporate
+ 28d127 beijing xiaomi mobile software co., ltd
28d1af nokia corporation
+ 28d1b7 shenzhen youhua technology co., ltd
28d244 lcfc(hefei) electronics technology co., ltd.
+ 28d3ea huawei device co., ltd.
+ 28d436 jiangsu dewosi electric co., ltd
28d576 premier wireless, inc.
28d93e telecor inc.
+ 28d98a hangzhou konke technology co.,ltd.
28d997 yuduan mobile co., ltd.
28db81 shanghai guao electronic technology co., ltd
+ 28de65 aruba, a hewlett packard enterprise company
+ 28dee5 huawei technologies co.,ltd
28def6 biomerieux inc.
- 28e02c apple
+ 28e02c apple, inc.
28e14c apple, inc.
28e297 shanghai infotm microelectronics co.,ltd.
+ 28e31f xiaomi communications co ltd
28e347 liteon technology corporation
+ 28e34e huawei technologies co.,ltd
+ 28e476 pi-coral
+ 28e5b0 huawei technologies co.,ltd
28e608 tokheim
+ 28e6e9 sis sat internet services gmbh
28e794 microtime computer inc.
- 28e7cf apple
+ 28e7cf apple, inc.
+ 28e98e mitsubishi electric corporation
+ 28ec95 apple, inc.
+ 28ec9a texas instruments
28ed58 jag jakob ag
+ 28ed6a apple, inc.
+ 28ede0 ampak technology, inc.
28ee2c frontline test equipment
- 28ef01
+ 28ee52 tp-link technologies co.,ltd.
+ 28eed3 shenzhen super d technology co., ltd
+ 28ef01 amazon technologies inc.
+ 28f033 apple, inc.
+ 28f076 apple, inc.
+ 28f10e dell inc.
28f358 2c - trifonov & co
+ 28f366 shenzhen bilian electronic co.,ltd
+ 28f49b leetek
28f532 add-engineering bv
+ 28f537 ieee registration authority
28f606 syes srl
+ 28fa7a zhejiang tmall technology co., ltd.
+ 28faa0 vivo mobile communication co., ltd.
28fbd3 ragentek technology group
28fc51 the electric controller and manufacturing co., llc
+ 28fcf6 shenzhen xin kingbrand enterprises co.,ltd
+ 28fd80 ieee registration authority
+ 28fe65 dongguan siyoto electronics co., ltd
+ 28fecd lemobile information technology (beijing) co., ltd.
+ 28fede comesta, inc.
+ 28ff3c apple, inc.
+ 28ff3e zte corporation
+ 28ffb2 toshiba corp.
2c002c unowhy
2c0033 econtrols, llc
+ 2c00ab arris group, inc.
2c00f7 xos
+ 2c010b nascent technology, llc - remkon
+ 2c01b5 cisco systems, inc
+ 2c029f 3alogics
2c0623 win leader inc.
2c073c devline limited
+ 2c0786 huawei device co., ltd.
+ 2c081c ovh
+ 2c0823 sercomm france sarl
+ 2c088c humax co., ltd.
+ 2c094d raptor engineering, llc
+ 2c09cb cobs ab
+ 2c0be9 cisco systems, inc
+ 2c0e3d samsung electro-mechanics(thailand)
2c10c1 nintendo co., ltd.
+ 2c15e1 phicomm (shanghai) co., ltd.
+ 2c16bd ieee registration authority
+ 2c17e0 systemes et technologies identification (stid)
+ 2c1875 skyworth digital technology(shenzhen) co.,ltd
2c18ae trend electronics co., ltd.
2c1984 idn telecom, inc.
+ 2c1a01 huawei technologies co.,ltd
+ 2c1a31 electronics company limited
+ 2c1bc8 hunan topview network system co.,ltd
+ 2c1cf6 alien green llc
+ 2c1db8 arris group, inc.
+ 2c1e4f chengdu qianli network technology co., ltd.
2c1eea aerodev
+ 2c1f23 apple, inc.
+ 2c200b apple, inc.
+ 2c2131 juniper networks
2c2172 juniper networks
+ 2c21d7 imax corporation
+ 2c228b ctr srl
+ 2c233a hewlett packard
2c245f babolat vs
+ 2c2617 oculus vr, llc
+ 2c265f ieee registration authority
2c26c5 zte corporation
- 2c27d7 hewlett-packard company
- 2c282d bbk communicatiao technology co.,ltd.
+ 2c279e ieee registration authority
+ 2c27d7 hewlett packard
+ 2c282d bbk educational electronics corp.,ltd.
+ 2c28b7 hangzhou ruiying technology co., ltd
+ 2c2997 microsoft corporation
+ 2c2bf9 lg innotek
2c2d48 bct electronic gesmbh
+ 2c3033 netgear
2c3068 pantech co.,ltd
+ 2c3124 cisco systems, inc
+ 2c3311 cisco systems, inc
+ 2c3361 apple, inc.
+ 2c337a hon hai precision ind. co.,ltd.
2c3427 erco & gener
2c3557 elliy power co..ltd
2c36a0 capisco limited
- 2c36f8 cisco systems, inc.
- 2c3731 shenzhen yifang digital technology co.,ltd
- 2c3996 sagemcom
+ 2c36f8 cisco systems, inc
+ 2c3731 shenzhen yifang digital technology co.,ltd.
+ 2c3796 cybo co.,ltd.
+ 2c37c5 qingdao haier intelligent home appliance technology co.,ltd
+ 2c3996 sagemcom broadband sas
2c39c1 ciena corporation
2c3a28 fagor electrónica
+ 2c3ae8 espressif inc.
+ 2c3afd avm audiovisuelles marketing und computersysteme gmbh
2c3bfd netstor technology co., ltd.
- 2c3ecf cisco
- 2c3f38 cisco systems, inc.
+ 2c3ecf cisco systems, inc
+ 2c3f0b cisco meraki
+ 2c3f38 cisco systems, inc
2c3f3e alge-timing gmbh
- 2c4138 hewlett-packard company
+ 2c402b smart iblue technology limited
+ 2c4053 samsung electronics co.,ltd
+ 2c4138 hewlett packard
+ 2c41a1 bose corporation
+ 2c4205 lytx
+ 2c431a shenzhen youhua technology co., ltd
+ 2c43be sunnovo international limited
2c4401 samsung electronics co.,ltd
2c441b spectrum medical limited
2c44fd hewlett packard
+ 2c4759 beijing mega preponderance science & technology co. ltd
+ 2c4835 ieee registration authority
+ 2c4a11 ciena corporation
+ 2c4cc6 murata manufacturing co., ltd.
+ 2c4d54 asustek computer inc.
+ 2c4d79 weifang goertek electronics co.,ltd
+ 2c4e7d chunghua intelligent network equipment inc.
+ 2c4f52 cisco systems, inc
+ 2c5089 shenzhen kaixuan visual technology co.,limited
+ 2c52af huawei technologies co.,ltd
2c534a shenzhen winyao electronic limited
- 2c542d cisco systems, inc.
+ 2c542d cisco systems, inc
+ 2c5491 microsoft corporation
+ 2c54cf lg electronics (mobile communications)
2c553c gainspeed, inc.
+ 2c557c shenzhen youhua technology co., ltd
+ 2c55d3 huawei technologies co.,ltd
+ 2c56dc asustek computer inc.
+ 2c5731 wingtech group (hongkong)limited
+ 2c5741 cisco systems, inc
+ 2c584f arris group, inc.
+ 2c58e8 huawei technologies co.,ltd
+ 2c598a lg electronics (mobile communications)
2c59e5 hewlett packard
2c5a05 nokia corporation
+ 2c5a0f cisco systems, inc
+ 2c5a8d systronik elektronik u. systemtechnik gmbh
2c5aa3 promate electronic co.ltd
+ 2c5bb8 guangdong oppo mobile telecommunications corp.,ltd
+ 2c5be1 centripetal networks, inc
+ 2c5d34 guangdong oppo mobile telecommunications corp.,ltd
2c5d93 ruckus wireless
2c5ff3 pertronic industries
+ 2c600c quanta computer inc.
+ 2c6104 shenzhen fenglian technology co., ltd.
+ 2c61f6 apple, inc.
2c625a finest security systems co., ltd
2c6289 regenersis (glenrothes) ltd
+ 2c6373 sichuan tianyi comheart telecomco., ltd
+ 2c641f vizio, inc
+ 2c6798 intaltech ltd.
2c67fb shenzhen zhengjili electronics co., ltd
2c69ba rf controls, llc
+ 2c6a6f ieee registration authority
+ 2c6b7d texas instruments
2c6bf5 juniper networks
+ 2c6e85 intel corporate
+ 2c6f51 herospeed digital technology limited
+ 2c6fc9 hon hai precision ind. co.,ltd.
2c7155 hivemotion
+ 2c71ff amazon technologies inc.
2c72c3 soundmatters
+ 2c7360 earda technologies co ltd
+ 2c73a0 cisco systems, inc
2c750f shanghai dongzhou-lawton communication technology co. ltd.
- 2c768a hewlett-packard company
+ 2c768a hewlett packard
+ 2c780e huawei device co., ltd.
+ 2c793d boditech med
+ 2c79d7 sagemcom broadband sas
2c7b5a milper ltd
2c7b84 ooo petr telegin
+ 2c7ce4 wuhan tianyu information industry co., ltd.
+ 2c7e81 arris group, inc.
2c7ecf onzo ltd
2c8065 harting inc. of north america
- 2c8158 hon hai precision ind. co.,ltd
+ 2c8158 hon hai precision ind. co.,ltd.
+ 2c86d2 cisco systems, inc
+ 2c8a72 htc corporation
2c8bf2 hitachi metals america ltd
+ 2c8db1 intel corporate
2c9127 eintechno corporation
+ 2c91ab avm audiovisuelles marketing und computersysteme gmbh
2c922c kishu giken kogyou company ltd,.
2c9464 cincoze co., ltd.
+ 2c9569 arris group, inc.
2c957f zte corporation
+ 2c9662 invenit bv
2c9717 i.c.y. b.v.
- 2c9aa4 ngi spa
+ 2c97b1 huawei technologies co.,ltd
+ 2c97ed sony imaging products & solutions inc.
+ 2c9924 arris group, inc.
+ 2c9aa4 eolo spa
+ 2c9d1e huawei technologies co.,ltd
2c9e5f arris group, inc.
+ 2c9eec jabil circuit penang
2c9efc canon inc.
+ 2c9ffb wistron neweb corporation
+ 2ca02f veroguard systems pty ltd
+ 2ca042 huawei device co., ltd.
2ca157 acromate, inc.
+ 2ca17d arris group, inc.
+ 2ca2b4 fortify technologies, llc
+ 2ca30e power dragon development limited
+ 2ca539 parallel wireless, inc
+ 2ca59c hangzhou hikvision digital technology co.,ltd.
2ca780 true technologies inc.
2ca835 rim
- 2cab25 shenzhen gongjin electronics co.,ltd
+ 2ca89c creatz inc.
+ 2ca9f0 guangdong oppo mobile telecommunications corp.,ltd
+ 2caa8e wyze labs inc
+ 2cab00 huawei technologies co.,ltd
+ 2cab25 shenzhen gongjin electronics co.,lt
+ 2cab33 texas instruments
+ 2caba4 cisco spvtg
+ 2cabeb cisco systems, inc
+ 2cac44 conextop
+ 2cad13 shenzhen zhilu technology co.,ltd
+ 2cae2b samsung electronics co.,ltd
2cb05d netgear
2cb0df soliton technologies pvt ltd
- 2cb43a apple
+ 2cb115 integrated device technology (malaysia) sdn. bhd.
+ 2cb21a phicomm (shanghai) co., ltd.
+ 2cb43a apple, inc.
2cb693 radware
2cb69d red digital cinema
+ 2cb8ed sonicwall
+ 2cbaba samsung electronics co.,ltd
+ 2cbe08 apple, inc.
2cbe97 ingenieurbuero bickele und buehler gmbh
- 2cc260 ravello systems
+ 2cbeeb nothing technology limited
+ 2cc260 oracle corporation
+ 2cc407 machineq
+ 2cc546 huawei device co., ltd.
+ 2cc548 iadea corporation
+ 2cc5d3 ruckus wireless
+ 2cc81b routerboard.com
+ 2cca0c withus planet
2ccc15 nokia corporation
+ 2ccc44 sony interactive entertainment inc.
+ 2ccce6 skyworth digital technology(shenzhen) co.,ltd
2ccd27 precor inc
2ccd43 summit technology group
2ccd69 aqavi.com
+ 2cce1e cloudtronics pty ltd
+ 2ccf58 huawei technologies co.,ltd
+ 2cd02d cisco systems, inc
2cd05a liteon technology corporation
+ 2cd066 xiaomi communications co ltd
+ 2cd141 ieee registration authority
2cd1da sanjole, inc.
+ 2cd26b fn-link technology limited
+ 2cd2e3 guangzhou aoshi electronic co.,ltd
2cd2e7 nokia corporation
2cd444 fujitsu limited
+ 2cd974 hui zhou gaoshengda technology co.,ltd
+ 2cdb07 intel corporate
+ 2cdcad wistron neweb corporation
+ 2cdcd7 azurewave technology inc.
2cdd0c discovergy gmbh
+ 2cdd95 taicang t&w electronics
+ 2cdda3 point grey research inc.
2ce2a8 devicedesign
- 2ce412 sagemcom sas
+ 2ce310 stratacache
+ 2ce412 sagemcom broadband sas
2ce6cc ruckus wireless
2ce871 alert metalguard aps
+ 2cea7f dell inc.
2cedeb alpheus digital company limited
2cee26 petroleum geo-services
+ 2cf05d micro-star intl co., ltd.
+ 2cf0a2 apple, inc.
+ 2cf0ee apple, inc.
2cf203 emko elektronik san ve tic as
- 2cf4c5 avaya, inc
+ 2cf432 espressif inc.
+ 2cf4c5 avaya inc
+ 2cf7f1 seeed technology inc.
+ 2cf89b cisco systems, inc
+ 2cfaa2 alcatel-lucent enterprise
+ 2cfce4 ctek sweden ab
+ 2cfd37 blue calypso, inc.
+ 2cfda1 asustek computer inc.
+ 2cfdab motorola (wuhan) mobility technologies communication co., ltd.
+ 2cfdb3 tcl technoly electronics(huizhou).,ltd
+ 2cff65 oki electric industry co., ltd.
+ 2cffee vivo mobile communication co., ltd.
+ 30053f jti co.,ltd.
30055c brother industries, ltd.
+ 30074d samsung electro-mechanics(thailand)
+ 3009f9 ieee registration authority
+ 300a60 ieee registration authority
+ 300ac5 ruio telecommunication technologies co., limited
300b9c delta mobile systems, inc.
- 300ed5 hon hai precision ind.co.ltd
+ 300c23 zte corporation
+ 300d2a zhejiang wellcom technology co.,ltd.
+ 300d43 microsoft mobile oy
+ 300d9e ruijie networks co.,ltd
+ 300ed5 hon hai precision ind. co.,ltd.
+ 300ee3 aquantia corporation
+ 3010b3 liteon technology corporation
3010e4 apple, inc.
+ 301389 siemens ag, automations & drives,
30142d piciorgros gmbh
- 30144a wistron neweb corp.
+ 30144a wistron neweb corporation
301518 ubiquitous communication co. ltd.
30168d prolon
- 3017c8 sony ericsson mobile communications ab
+ 3017c8 sony mobile communications inc
3018cf deos control systems gmbh
301966 samsung electronics co.,ltd
301a28 mako networks ltd
+ 301b97 lierda science & technology group co.,ltd
+ 301f9a ieee registration authority
30215b shenzhen ostar display electronic co.,ltd
+ 302303 belkin international inc.
+ 302432 intel corporate
+ 302478 sagemcom broadband sas
+ 3024a9 hp inc.
+ 3027cf private
+ 302952 hillstone networks inc
+ 3029be shanghai mrdcom co.,ltd
302de8 jda, llc (jda systems)
+ 30317d hosiden corporation
+ 303235 qingdao intelligent&precise electronics co.,ltd.
303294 w-ie-ne-r plein & baus gmbh
3032d4 hanilstm co., ltd.
- 3037a6 cisco systems, inc.
+ 303335 boosty
+ 3034d2 availink, inc.
+ 3035ad apple, inc.
+ 3037a6 cisco systems, inc
+ 3037b3 huawei technologies co.,ltd
303855 nokia corporation
- 303926 sony ericsson mobile communications ab
+ 303926 sony mobile communications inc
303955 shenzhen jinhengjia electronic co., ltd.
3039f2 adb broadband italia
303a64 intel corporate
+ 303aba guangzhou baolun electronics co., ltd
303d08 glintt tes s.a.
303ead sonavox canada inc
304174 altec lansing llc
+ 304225 burg-wÄchter kg
+ 304240 zte corporation
+ 3042a1 ilumisys inc. dba toggled
304449 plath gmbh
+ 304487 hefei radio communication technology co., ltd
+ 3044a1 shanghai nanchao information technology
+ 304511 texas instruments
+ 304596 huawei technologies co.,ltd
30469a netgear
30493b nanjing z-com wireless co.,ltd
+ 304950 ieee registration authority
+ 304a26 shenzhen trolink technology co, ltd
+ 304b07 motorola mobility llc, a lenovo company
304c7e panasonic electric works automation controls techno co.,ltd.
+ 304e1b huawei device co., ltd.
304ec3 tianjin techua technology co., ltd.
+ 304f75 dasan network solutions
+ 305075 gn audio a/s
+ 3050fd skyworth digital technology(shenzhen) co.,ltd
3051f8 byk-gardner gmbh
30525a nst co., ltd
+ 3052cb liteon technology corporation
3055ed trex network llc
+ 305684 shenzhen yunji intelligent technology co.,ltd
+ 305714 apple, inc.
+ 30578e eero inc.
3057ac irlab ltd.
+ 305890 frontier silicon ltd
+ 30595b streamnow ag
3059b7 microsoft
- 305d38 beissbarth
+ 305a3a asustek computer inc.
+ 305d38 beissbarth
+ 305da6 advaly system inc.
306023 arris group, inc.
306112 pav gmbh
306118 paradom inc.
+ 30636b apple, inc.
3065ec wistron (chongqing)
+ 3066d0 huawei device co., ltd.
30688c reach technology inc.
30694b rim
+ 306a85 samsung electronics co.,ltd
306cbe skymotion technology (hk) limited
306e5c validus technologies
+ 306f07 nations technologies inc.
3071b2 hangzhou prevail optoelectronic equipment co.,ltd.
- 30766f lg electronics
+ 307350 inpeco sa
+ 307496 huawei technologies co.,ltd
+ 307512 sony mobile communications inc
+ 30766f lg electronics (mobile communications)
+ 3077cb maike industry(shenzhen)co.,ltd
+ 30785c partow tamas novin (parman)
30786b tianjin golden pentagon electronics co., ltd.
- 3078c2 innowireless, co. ltd.
+ 3078c2 innowireless / qucell networks
+ 3078d3 virgilant technologies ltd.
+ 307bac new h3c technologies co., ltd
307c30 rim
+ 307c4a huawei device co., ltd.
+ 307c5e juniper networks
+ 307cb2 anov france
307ecb sfr
- 3085a9 asustek computer inc
- 308730 shenzhen huawei communication technologies co., ltd
+ 30809b new h3c technologies co., ltd
+ 308398 espressif inc.
+ 308454 guangdong oppo mobile telecommunications corp.,ltd
+ 3085a9 asustek computer inc.
+ 3085eb fiberhome telecommunication technologies co.,ltd
+ 30862d arista network, inc.
+ 308730 huawei technologies co.,ltd
+ 3087d9 ruckus wireless
+ 308841 sichuan ai-link technology co., ltd.
+ 308944 deva broadcast ltd.
+ 308976 dalian lamba technology co.,ltd
308999 guangdong east power co.,
+ 3089d3 hongkong ucloudlink network technology limited
+ 308af7 huawei device co., ltd.
+ 308bb2 cisco systems, inc
308cfb dropcam
- 3090ab apple
+ 308d99 hewlett packard
+ 308e7a shenzhen icomm semiconductor co.,ltd
+ 309048 apple, inc.
+ 3090ab apple, inc.
+ 309176 skyworth digital technology(shenzhen) co.,ltd
30918f technicolor
3092f6 shanghai sunmon communication technogy co.,ltd
- 309bad bbk electronics corp., ltd.,
- 30a8db sony mobile communications ab
+ 3093bc sagemcom broadband sas
+ 309435 vivo mobile communication co., ltd.
+ 309587 hunan fn-link technology limited
+ 3095e3 shanghai simcom limited
+ 309610 huawei device co., ltd.
+ 3096fb samsung electronics co.,ltd
+ 309935 zte corporation
+ 309bad bbk educational electronics corp.,ltd.
+ 309c23 micro-star intl co., ltd.
+ 309e1d ohsung
+ 309ffb ardomus networks corporation
+ 30a023 rock path s.r.l
+ 30a1fa huawei technologies co.,ltd
+ 30a220 arg telecom
+ 30a243 shenzhen prifox innovation technology co., ltd.
+ 30a2c2 huawei device co., ltd.
+ 30a452 arrival elements bv
+ 30a612 shenzhen hugsun technology co.,ltd.
+ 30a889 decimator design
+ 30a8db sony mobile communications inc
+ 30a998 huawei device co., ltd.
+ 30a9de lg innotek
30aabd shanghai reallytek information technology co.,ltd
+ 30aae4 huawei device co., ltd.
+ 30ab6a samsung electro-mechanics(thailand)
30ae7b deqing dusun electron co., ltd
+ 30aea4 espressif inc.
30aef6 radio mobile access
- 30b216 hytec geraetebau gmbh
+ 30afce vivo mobile communication co., ltd.
+ 30b164 power electronics international inc.
+ 30b1b5 arcadyan corporation
+ 30b216 hitachi abb power grids – grid automation
+ 30b237 gd midea air-conditioning equipment co.,ltd.
30b3a2 shenzhen heguang measurement & control technology co.,ltd
+ 30b49e tp-link technologies co.,ltd.
+ 30b4b8 lg electronics
30b5c2 tp-link technologies co.,ltd.
+ 30b5f1 aitexin technology co., ltd
+ 30b62d mojo networks, inc.
+ 30b64f juniper networks
+ 30b7d4 hitron technologies. inc
+ 30b9b0 intracom asia co., ltd
+ 30be3b mitsubishi electric corporation
+ 30c01b shenzhen jingxun software telecommunication technology co.,ltd
+ 30c3d9 alpsalpine co,.ltd
+ 30c507 eci telecom ltd.
+ 30c50f huawei technologies co.,ltd
30c750 mic technology group
- 30c82a wi-next s.r.l.
- 30cda7 samsung electronics its, printer division
+ 30c7ae samsung electronics co.,ltd
+ 30c82a wi-biz srl
+ 30c9ab cloud network technology singapore pte. ltd.
+ 30cbf8 samsung electronics co.,ltd
+ 30cc21 zte corporation
+ 30cda7 samsung electronics co.,ltd
+ 30d042 dell inc.
+ 30d16b liteon technology corporation
+ 30d17e huawei technologies co.,ltd
+ 30d32d devolo ag
30d357 logosol, inc.
+ 30d386 zte corporation
30d46a autosales incorporated
+ 30d587 samsung electronics co.,ltd
+ 30d659 merging technologies sa
30d6c9 samsung electronics co.,ltd
+ 30d941 raydium semiconductor corp.
+ 30d9d9 apple, inc.
30de86 cedac software s.r.l.
+ 30df8d shenzhen gongjin electronics co.,lt
+ 30e090 linctronix ltd,
+ 30e171 hewlett packard
+ 30e283 texas instruments
+ 30e37a intel corporate
+ 30e396 huawei device co., ltd.
+ 30e3d6 spotify usa inc.
30e48e vodafone uk
- 30e4db cisco systems, inc.
+ 30e4db cisco systems, inc
+ 30e98e huawei technologies co.,ltd
+ 30ea26 sycada bv
+ 30eb1f skylab m&c technology co.,ltd
30eb25 intek digital
+ 30eb5a landis + gyr
30efd1 alstom strongwish (shenzhen) co., ltd.
30f31d zte corporation
+ 30f335 huawei technologies co.,ltd
30f33a +plugg srl
30f42f esp
- 30f70d cisco systems
- 30f7c5 apple
+ 30f6b9 ecocentric energy
+ 30f70d cisco systems, inc
+ 30f772 hon hai precision ind. co.,ltd.
+ 30f77f s mobile devices limited
+ 30f7c5 apple, inc.
+ 30f7d7 thread technology co., ltd
+ 30f94b universal electronics, inc.
30f9ed sony corporation
+ 30fab7 tunai creative
+ 30fb94 shanghai fangzhiwei information technology co.,ltd.
+ 30fbb8 huawei technologies co.,ltd
+ 30fc68 tp-link technologies co.,ltd.
+ 30fceb lg electronics (mobile communications)
30fd11 macrotech (usa) inc.
+ 30fd38 google, inc.
+ 30fd65 huawei technologies co.,ltd
+ 30fe31 nokia
+ 30fff6 hangzhou kuoheng technology co.,ltd
+ 34008a ieee registration authority
+ 3400a3 huawei technologies co.,ltd
+ 340286 intel corporate
+ 34029b plexonics technologies limited
+ 3403de texas instruments
+ 34049e ieee registration authority
+ 34074f accelstor, inc.
3407fb ericsson ab
340804 d-link corporation
+ 3408bc apple, inc.
+ 340a22 top-access electronics co ltd
+ 340a33 d-link international
+ 340a98 huawei technologies co.,ltd
+ 340aff qingdao hisense communications co.,ltd.
+ 340b40 mios elettronica srl
+ 340ced moduel ab
+ 340f66 web sensing llc
+ 341290 treeview co.,ltd.
+ 341298 apple, inc.
+ 3412f9 huawei technologies co.,ltd
3413a8 mediplan limited
3413e8 intel corporate
- 34159e apple
- 3417eb dell inc
+ 34145f samsung electronics co.,ltd
+ 3414b5 texas instruments
+ 341513 texas instruments
+ 34159e apple, inc.
+ 3417eb dell inc.
+ 341a35 fiberhome telecommunication technologies co.,ltd
341a4c shenzhen weibu electronics co.,ltd.
341b22 grandbeing technology co., ltd
+ 341cf0 xiaomi communications co ltd
+ 341e6b huawei technologies co.,ltd
+ 341fe4 arris group, inc.
+ 342003 shenzhen feitengyun technology co.,ltd
+ 3420e3 ruckus wireless
342109 jensen scandinavia as
342387 hon hai precision ind. co.,ltd.
- 3423ba samsung electro mechanics co.,ltd.
+ 3423ba samsung electro-mechanics(thailand)
34255d shenzhen loadcom technology co.,ltd
+ 342606 carepredict, inc.
+ 342792 freebox sas
+ 3428f0 atn international limited
+ 342912 huawei technologies co.,ltd
+ 34298f ieee registration authority
3429ea mcd electronics sp. z o.o.
+ 342af1 texas instruments
+ 342b70 arris
+ 342cc4 compal broadband networks, inc.
+ 342d0d samsung electronics co.,ltd
+ 342eb6 huawei technologies co.,ltd
+ 342eb7 intel corporate
342f6e anywire corporation
+ 342fbd nintendo co.,ltd
343111 samsung electronics co.,ltd
+ 34318f apple, inc.
+ 3431c4 avm gmbh
+ 3432e6 panasonic industrial devices europe gmbh
+ 34363b apple, inc.
+ 343654 zte corporation
+ 343759 zte corporation
+ 343794 hamee corp.
+ 3438af inlab software gmbh
+ 3438b7 humax co., ltd.
+ 343d98 jinqianmao technology co.,ltd.
+ 343dc4 buffalo.inc
+ 343ea4 ring llc
3440b5 ibm
+ 34415d intel corporate
+ 3441a8 er-telecom
+ 344262 apple, inc.
34466f hitem engineering
- 344b3d fiberhome telecommunication tech.co.,ltd.
+ 3446ec huawei device co., ltd.
+ 3448ed dell inc.
+ 34495b sagemcom broadband sas
+ 344ac3 hunan zikun information technology co., ltd
+ 344b3d fiberhome telecommunication technologies co.,ltd
344b50 zte corporation
+ 344ca4 amazipoint technology ltd.
+ 344cc8 echodyne corp
+ 344dea zte corporation
+ 344df7 lg electronics (mobile communications)
344f3f io-power technology co., ltd.
344f5c r&m ag
344f69 ekinops sas
+ 345180 tcl king electrical appliances (huizhou) co., ltd
3451aa jid global
- 3451c9 apple
+ 3451c9 apple, inc.
+ 34543c takaoka toko co.,ltd.
+ 345594 fujian star-net communication co.,ltd
+ 3456fe cisco meraki
+ 345760 mitrastar technology corp.
+ 345840 huawei technologies co.,ltd
+ 34587c mirae information technology co., ltd.
+ 345a06 sharp corporation
+ 345aba tcloud intelligence
345b11 evi heat ab
+ 345bbb gd midea air-conditioning equipment co.,ltd.
345c40 cargt holdings llc
345d10 wytek
346178 the boeing company
+ 346288 cisco systems, inc
+ 3463d4 bionix supplychain technologies slu
+ 3464a9 hewlett packard
+ 3466ea vertu international corporation limited
34684a teraworks co., ltd.
- 346bd3 huawei technologies co., ltd
+ 346893 tecnovideo srl
+ 346895 hon hai precision ind. co.,ltd.
+ 346987 zte corporation
+ 346ac2 huawei technologies co.,ltd
+ 346b46 sagemcom broadband sas
+ 346b5b new h3c technologies co., ltd
+ 346bd3 huawei technologies co.,ltd
+ 346c0f pramod telecom pvt. ltd
+ 346d9c carrier corporation
346e8a ecosense
+ 346e9d ericsson ab
+ 346f90 cisco systems, inc
346f92 white rodgers division
- 3475c7 avaya, inc
- 3476c5 i-o data device, inc.
- 347877 o-net communications(shenzhen) limited
+ 346fed enovation controls
+ 347146 huawei device co., ltd.
+ 34732d cisco systems, inc
+ 34735a dell inc.
+ 347563 shenzhen rf-link technology co.,ltd.
+ 3475c7 avaya inc
+ 3476c5 i-o data device,inc.
+ 347839 zte corporation
+ 347877 o-net communications (shenzhen) limited
+ 3478d7 gionee communication equipment co.,ltd.
+ 347916 huawei technologies co.,ltd
+ 347a60 arris group, inc.
+ 347c25 apple, inc.
+ 347df6 intel corporate
+ 347e00 huawei device co., ltd.
347e39 nokia danmark a/s
+ 347e5c sonos, inc.
+ 347eca nextwill
+ 34800d cavium inc
+ 3480b3 xiaomi communications co ltd
348137 unicard sa
3481c4 avm gmbh
- 3482de kayo technology, inc.
+ 3481f4 sst taiwan ltd.
+ 3482c5 samsung electronics co.,ltd
+ 3482de kiio inc
348302 iforcom co., ltd
348446 ericsson ab
+ 348584 extreme networks, inc.
34862a heinz lackmann gmbh & co kg
+ 34865d espressif inc.
+ 34873d quectel wireless solutions co., ltd.
34885d logitech far east
- 348aae sagemcom sas
+ 348a12 aruba, a hewlett packard enterprise company
+ 348a7b samsung electronics co.,ltd
+ 348aae sagemcom broadband sas
+ 348b75 lava international(h.k) limited
+ 348f27 ruckus wireless
+ 34916f usergate ltd.
+ 349342 tte corporation
3495db logitec corporation
+ 349672 tp-link technologies co.,ltd.
+ 3497f6 asustek computer inc.
3497fb advanced rf technologies inc
34996f vpi engineering
+ 349971 quanta storage inc.
3499d7 universal flow monitors, inc.
349a0d zbd displays ltd
+ 349b5b maquet gmbh
349d90 heinzmann gmbh & co. kg
+ 349e34 evervictory electronic co.ltd
+ 349f7b canon inc.
34a183 aware, inc
+ 34a2a2 huawei technologies co.,ltd
+ 34a395 apple, inc.
34a3bf terewave. inc.
34a55d technosoft international srl
34a5e1 sensorist aps
@@ -14092,803 +16383,2234 @@ exit
34a709 trevil srl
34a7ba fischer international systems corporation
34a843 kyocera display corporation
- 34a84e cisco
+ 34a84e cisco systems, inc
+ 34a8eb apple, inc.
34aa8b samsung electronics co.,ltd
- 34aa99 alcatel-lucent
+ 34aa99 nokia
34aaee mikrovisatos servisas uab
+ 34ab37 apple, inc.
+ 34ab95 espressif inc.
34ade4 shanghai chint power systems co., ltd.
34af2c nintendo co., ltd.
+ 34afb3 amazon technologies inc.
34b1f7 texas instruments
+ 34b20a huawei device co., ltd.
+ 34b354 huawei technologies co.,ltd
34b571 plds
+ 34b5a3 cig shanghai co ltd
+ 34b7fd guangzhou younghead electronic technology co.,ltd
+ 34ba38 pal mohan electronics pvt ltd
34ba51 se-kure controls, inc.
+ 34ba75 everest networks, inc
34ba9a asiatelco technologies co.
- 34bb1f research in motion
+ 34bb1f blackberry rts
+ 34bb26 motorola mobility llc, a lenovo company
34bca6 beijing ding qing technology, ltd.
- 34bdc8 cisco systems
+ 34bdc8 cisco systems, inc
34bdf9 shanghai wdk industrial co.,ltd.
34bdfa cisco spvtg
34be00 samsung electronics co.,ltd
- 34bf90 fiberhome telecommunication tech.co.,ltd.
- 34c059 apple
- 34c3ac samsung electronics
+ 34bf90 fiberhome telecommunication technologies co.,ltd
+ 34c059 apple, inc.
+ 34c0f9 rockwell automation
+ 34c103 hangzhou huamu technology co.,ltd.
+ 34c3ac samsung electronics co.,ltd
+ 34c3d2 fn-link technology limited
+ 34c5d0 hagleitner hygiene international gmbh
34c69a enecsys ltd
- 34c731 alps co,. ltd.
+ 34c731 alpsalpine co,.ltd
34c803 nokia corporation
+ 34c93d intel corporate
34c99d eidolon communications technology co. ltd.
+ 34c9f0 lm technologies ltd
+ 34cb1a procter & gamble company
+ 34cc28 nexpring co. ltd.,
34cd6d commsky technologies
- 34cdbe huawei technologies co., ltd
+ 34cdbe huawei technologies co.,ltd
+ 34ce00 xiaomi electronics,co.,ltd
34ce94 parsec (pty) ltd
+ 34cff6 intel corporate
34d09b mobilmax technology inc.
+ 34d0b8 ieee registration authority
+ 34d262 sz dji technology co.,ltd
+ 34d270 amazon technologies inc.
34d2c4 rena gmbh print systeme
+ 34d693 huawei device co., ltd.
+ 34d712 smartisan digital co., ltd
+ 34d772 xiamen yudian automation technology co., ltd
34d7b4 tributary systems, inc.
- 34dbfd cisco
+ 34d954 wibotic inc.
+ 34dab7 zte corporation
+ 34dac1 sae technologies development(dongguan) co., ltd.
+ 34db9c sagemcom broadband sas
+ 34dbfd cisco systems, inc
+ 34dd7e umeox innovations co.,ltd
34de1a intel corporate
34de34 zte corporation
34df2a fujikon industrial co.,limited
34e0cf zte corporation
34e0d7 dongguan qisheng electronics industrial co., ltd
- 34e2fd apple
+ 34e12d intel corporate
+ 34e1d1 ieee registration authority
+ 34e2fd apple, inc.
+ 34e380 genexis b.v.
+ 34e3da hoval aktiengesellschaft
34e42a automatic bar controls inc.
- 34ef44 2wire
+ 34e5ec palo alto networks
+ 34e6ad intel corporate
+ 34e6d7 dell inc.
+ 34e70b han networks co., ltd
+ 34e71c shenzhen youhua technology co., ltd
+ 34e894 tp-link technologies co.,ltd.
+ 34e911 vivo mobile communication co., ltd.
+ 34e9fe metis co., ltd.
+ 34ea34 hangzhou gubei electronics technology co.,ltd
+ 34eae7 shanghai high-flying electronics technology co., ltd
+ 34ed0b shanghai xz-com.co.,ltd.
+ 34ed1b cisco systems, inc
+ 34ef44 2wire inc
34ef8b ntt communications corporation
+ 34efb6 edgecore networks corporation
+ 34f0ca shenzhen linghangyuan digital technology co.,ltd.
+ 34f150 hui zhou gaoshengda technology co.,ltd
+ 34f39a intel corporate
34f39b wizlan ltd.
34f62d sharp corporation
+ 34f64b intel corporate
+ 34f6d2 panasonic taiwan co.,ltd.
+ 34f716 tp-link technologies co.,ltd.
+ 34f8e7 cisco systems, inc
34f968 atek products, llc
34fa40 guangzhou robustel technologies co., limited
+ 34fa9f ruckus wireless
34fc6f alcea
- 380197 toshiba samsung storage technolgoy korea corporation
+ 34fcb9 hewlett packard enterprise
+ 34fcef lg electronics (mobile communications)
+ 34fd6a apple, inc.
+ 34fec5 shenzhen sunwoda intelligent hardware co.,ltd
+ 380025 intel corporate
+ 380118 ulvac,inc.
+ 380146 shenzhen bilian electronic co.,ltd
+ 380195 samsung electronics co.,ltd
+ 380197 tsst global,inc
+ 38019f shenzhen fast technologies co.,ltd
+ 3802de sercomm corporation.
+ 380546 foctek photonics, inc.
+ 3805ac piller group gmbh
3806b4 a.d.c. gmbh
+ 3807d4 zeppelin systems gmbh
+ 3808fd silca spa
+ 3809a4 firefly integrations
380a0a sky-city communication and electronics limited company
380a94 samsung electronics co.,ltd
+ 380aab formlabs
+ 380b3c texas instruments
380b40 samsung electronics co.,ltd
380dd4 primax electronics ltd.
- 380f4a apple
+ 380e4d cisco systems, inc
+ 380e7b v.p.s. thai co., ltd
+ 380f4a apple, inc.
380fe4 dedicated network partners oy
+ 3810d5 avm audiovisuelles marketing und computersysteme gmbh
+ 3810f0 aruba, a hewlett packard enterprise company
+ 38144e fiberhome telecommunication technologies co.,ltd
3816d1 samsung electronics co.,ltd
+ 381730 ulrich lippert gmbh & co kg
381766 promzakaz ltd.
+ 3817c3 hewlett packard enterprise
+ 3817e1 technicolor ch usa inc.
+ 38184c sony home entertainment&sound products inc
38192f nokia corporation
+ 381a52 seiko epson corporation
+ 381c1a cisco systems, inc
+ 381c23 hilan technology co.,ltd
381c4a simcom wireless solutions co.,ltd.
- 38229d pirelli tyre s.p.a.
- 3822d6 h3c technologies co., limited
+ 381d14 skydio inc.
+ 381dd9 fn-link technology limited
+ 382028 huawei technologies co.,ltd
+ 382056 cisco systems, inc
+ 3820a8 colortokens, inc.
+ 382187 midea group co., ltd.
+ 3821c7 aruba, a hewlett packard enterprise company
+ 38229d adb broadband italia
+ 3822d6 hangzhou h3c technologies co., limited
+ 3822e2 hp inc.
+ 38256b microsoft mobile oy
+ 38262b utran technology
3826cd andtek
3828ea fujian netcom technology co., ltd
+ 38295a guangdong oppo mobile telecommunications corp.,ltd
+ 3829dd onvocal inc
+ 382a19 technica engineering gmbh
+ 382b78 eco plugs enterprise co., ltd
+ 382c4a asustek computer inc.
+ 382dd1 samsung electronics co.,ltd
+ 382de8 samsung electronics co.,ltd
+ 3830f9 lg electronics (mobile communications)
3831ac weg
+ 3835fb sagemcom broadband sas
+ 38378b huawei technologies co.,ltd
+ 383a21 ieee registration authority
+ 383b26 jiangsu qinheng co., ltd.
+ 383bc8 2wire inc
+ 383c9c fujian newland payment technology co.,ltd.
+ 383d5b fiberhome telecommunication technologies co.,ltd
383f10 dbl technology ltd.
+ 383fb3 technicolor ch usa inc.
+ 38420b sonos, inc.
384233 wildeboer bauteile gmbh
3842a6 ingenieurbuero stahlkopf
384369 patrol products consortium llc
+ 38437d compal broadband networks, inc.
+ 3843e5 grotech inc
+ 38454c light labs, inc.
38458c mycloud technology corporation
384608 zte corporation
- 38484c apple
- 384ff0 azurewave technologies, inc.
- 38521a alcatel-lucent 7705
+ 3847bc huawei technologies co.,ltd
+ 38484c apple, inc.
+ 384b5b ztron technology limited
+ 384b76 airtame aps
+ 384c4f huawei technologies co.,ltd
+ 384c90 arris group, inc.
+ 384f49 juniper networks
+ 384ff0 azurewave technology inc.
+ 38521a nokia
+ 385247 huawei device co., ltd.
+ 38539c apple, inc.
+ 38549b zte corporation
+ 385610 candy house, inc.
+ 3856b5 peerbridge health inc
38580c panaccess systems gmbh
3859f8 mindmade sp. z o.o.
3859f9 hon hai precision ind. co.,ltd.
385aa8 beijing zhongdun security technology development co.
+ 385f66 cisco spvtg
385fc3 yu jeong system, co.ltd
386077 pegatron corporation
+ 3863bb hewlett packard
3863f6 3nod multimedia(shenzhen)co.,ltd
386645 oosic technology co.,ltd
+ 3866f0 apple, inc.
386793 asia optical co., inc.
+ 386893 intel corporate
+ 3868a4 samsung electronics co.,ltd
+ 3868dd inventec corporation
+ 386a77 samsung electronics co.,ltd
+ 386b1c shenzhen mercury communication technologies co.,ltd.
386bbb arris group, inc.
386c9b ivy biomedical
386e21 wasion group ltd.
- 3872c0 comtrend
+ 386e88 zte corporation
+ 386ea2 vivo mobile communication co., ltd.
+ 38700c arris group, inc.
+ 3871de apple, inc.
+ 3872c0 comtrend corporation
+ 3873ea ieee registration authority
+ 3876ca shenzhen smart intelligent technology co.ltd
+ 3876d1 euronda spa
+ 387862 sony mobile communications inc
+ 387a3c fiberhome telecommunication technologies co.,ltd
387b47 akela, inc.
- 388345 tp-link technologies co., ltd.
+ 3880df motorola mobility llc, a lenovo company
+ 3881d7 texas instruments
+ 388345 tp-link technologies co.,ltd.
+ 38839a shenzhen rf-link technology co.,ltd.
+ 388479 cisco meraki
+ 388602 flexoptix gmbh
+ 3887d5 intel corporate
+ 38881e huawei technologies co.,ltd
+ 38892c apple, inc.
3889dc opticon sensors europe b.v.
388ab7 itc networks
+ 388abe guangdong oppo mobile telecommunications corp.,ltd
+ 388b59 google, inc.
+ 388c50 lg electronics
+ 388e7a autoit
388ee7 fanhattan llc
+ 389052 huawei technologies co.,ltd
+ 3890a5 cisco systems, inc
+ 3891d5 hangzhou h3c technologies co., limited
3891fb xenox holding bv
+ 389496 samsung electronics co.,ltd
+ 3894e0 syrotech networks. ltd.
+ 3894ed netgear
389592 beijing tendyron corporation
+ 3897a4 elecom co.,ltd.
+ 3897d6 hangzhou h3c technologies co., limited
+ 3898d8 meritech co.,ltd
+ 3898e9 huawei device co., ltd.
+ 389af6 samsung electronics co.,ltd
+ 389d92 seiko epson corporation
+ 389f5a c-kur tv inc.
389f83 otn systems n.v.
- 38a53c veenstra instruments
+ 38a067 nokia solutions and networks gmbh & co. kg
+ 38a28c shenzhen rf-link technology co.,ltd.
+ 38a4ed xiaomi communications co ltd
+ 38a53c comecer netherlands
38a5b6 shenzhen megmeet electrical co.,ltd
+ 38a6ce bskyb ltd
38a851 moog, ing
38a86b orga bv
38a95f actifio inc
- 38aa3c samsung electro-mechanics
+ 38aa3c samsung electro mechanics co., ltd.
+ 38ac3d nephos inc
+ 38ad8e new h3c technologies co., ltd
+ 38adbe new h3c technologies co., ltd
+ 38af29 zhejiang dahua technology co., ltd.
+ 38afd0 nevro
+ 38afd7 fujitsu limited
38b12d sonotronic nagel gmbh
+ 38b19e ieee registration authority
+ 38b1db hon hai precision ind. co.,ltd.
+ 38b3f7 huawei device co., ltd.
+ 38b4d3 bsh hausgeraete gmbh
+ 38b54d apple, inc.
38b5bd e.g.o. elektro-ger
+ 38b5d3 secuworks
+ 38b725 wistron infocomm (zhongshan) corporation
38b74d fijowave limited
+ 38b8eb ieee registration authority
+ 38bab0 broadcom
+ 38baf8 intel corporate
38bb23 ozvision america llc
- 38bc1a meizu technology co.,ltd
+ 38bb3c avaya inc
+ 38bc01 huawei technologies co.,ltd
+ 38bc1a meizu technology co., ltd.
38bf2f espec corp.
38bf33 nec casio mobile communications
- 38c096 alps electric co.,ltd.
+ 38c096 alpsalpine co,.ltd
+ 38c2ba cctv neotech
+ 38c4e8 nss sp. z o.o.
+ 38c70a wifisong
38c7ba cs services co.,ltd.
38c85c cisco spvtg
+ 38c986 apple, inc.
38c9a9 smart high reliability solutions, inc.
+ 38ca73 shenzhen miaoming intelligent technology co.,ltd
38ca97 contour design llc
+ 38cada apple, inc.
+ 38cd07 beijing facecam technology co., ltd.
38d135 easyio corporation sdn. bhd.
+ 38d269 texas instruments
+ 38d2ca zhejiang tmall technology co., ltd.
+ 38d40b samsung electronics co.,ltd
+ 38d547 asustek computer inc.
+ 38d620 limidea concept pte. ltd.
+ 38d7ca 7hugs labs
+ 38d82f zte corporation
+ 38d9a5 mikotek information inc.
38dbbb sunbow telecom co., ltd.
38de60 mohlenhoff gmbh
+ 38dead intel corporate
38e08e mitsubishi electric corporation
- 38e595 shenzhen gongjin electronics co.,ltd
+ 38e1aa zte corporation
+ 38e26e shenzhen sweet rain electronics co.,ltd.
+ 38e2dd zte corporation
+ 38e3c5 taicang t&w electronics
+ 38e595 shenzhen gongjin electronics co.,lt
+ 38e60a xiaomi communications co ltd
38e7d8 htc corporation
38e8df b gmbh medien + datenbanken
+ 38e8ee nanjing youkuo electric technology co., ltd
38e98c reco s.p.a.
38eaa7 hewlett packard
+ 38eb47 huawei technologies co.,ltd
+ 38ec0d apple, inc.
38ec11 novatek microelectronics corp.
- 38ece4 samsung electronics
+ 38ece4 samsung electronics co.,ltd
+ 38ed18 cisco systems, inc
38ee9d anedo ltd.
+ 38efe3 ingenico terminals sas
38f098 vapor stone rail systems
+ 38f0c8 mevo inc.
+ 38f135 sensortec-canada
+ 38f23e microsoft mobile oy
+ 38f32e skullcandy
+ 38f33f tatsuno corporation
+ 38f3ab lcfc(hefei) electronics technology co., ltd
+ 38f3fb asperiq
+ 38f554 hisense electric co.,ltd
+ 38f557 jolata, inc.
38f597 home2net gmbh
+ 38f601 solid state storage technology corporation
38f708 national resource management, inc.
+ 38f73d amazon technologies inc.
+ 38f7b2 seojun electric
+ 38f7cd ieee registration authority
+ 38f85e humax co., ltd.
+ 38f889 huawei technologies co.,ltd
38f8b7 v2com participacoes s.a.
+ 38f8ca owin inc.
+ 38f9d3 apple, inc.
+ 38faca skyworth digital technology(shenzhen) co.,ltd
+ 38fb14 huawei technologies co.,ltd
+ 38fc98 intel corporate
+ 38fdfe ieee registration authority
38fec5 ellips b.v.
+ 38ff36 ruckus wireless
+ 3c01ef sony mobile communications inc
3c02b1 creation technologies lp
+ 3c0461 arris group, inc.
3c04bf pravis systems co.ltd.,
+ 3c0518 samsung electronics co.,ltd
3c05ab product creation studio
- 3c0754 apple
+ 3c0630 apple, inc.
+ 3c06a7 tp-link technologies co.,ltd.
+ 3c0754 apple, inc.
3c0771 sony corporation
3c081e beijing yupont electric power technology co.,ltd
- 3c08f6 cisco
+ 3c08f6 cisco systems, inc
3c096d powerhouse dynamics
3c0c48 servergy, inc.
- 3c0e23 cisco
+ 3c0c7d tiny mesh as
+ 3c0cdb unionman technology co.,ltd
+ 3c0e23 cisco systems, inc
3c0fc1 kbc networks
3c1040 daesung network
- 3c106f albahith technologies
- 3c15c2 apple
+ 3c106f albahith technologies
+ 3c10e6 phazr inc.
+ 3c11b2 fraunhofer fit
+ 3c13cc cisco systems, inc
+ 3c1512 shenzhen huanhu technology co.,ltd
+ 3c15c2 apple, inc.
3c15ea tescom co., ltd.
- 3c18a0 luxshare precision industry co.,ltd.
+ 3c15fb huawei technologies co.,ltd
+ 3c1710 sagemcom broadband sas
+ 3c189f nokia corporation
+ 3c18a0 luxshare precision industry company limited
3c1915 gfi chrono time
3c197d ericsson ab
+ 3c1a0f clearsky data
3c1a57 cardiopulmonary corp
3c1a79 huayuan technology co.,ltd
+ 3c1a9e vitalthings as
3c1cbe jadak llc
+ 3c1e04 d-link international
+ 3c1e13 hangzhou sunrise technology co., ltd
+ 3c2093 gd midea air-conditioning equipment co.,ltd.
+ 3c20f6 samsung electronics co.,ltd
+ 3c22fb apple, inc.
+ 3c24f0 ieee registration authority
3c25d7 nokia corporation
3c26d5 sotera wireless
3c2763 sle quality engineering gmbh & co. kg
+ 3c286d google, inc.
+ 3c28a6 alcatel-lucent enterprise (china)
+ 3c2af4 brother industries, ltd.
+ 3c2c30 dell inc.
+ 3c2c94 杭州德澜科技有限公司(hangzhou delan technology co.,ltd)
+ 3c2c99 edgecore networks corporation
3c2db7 texas instruments
+ 3c2ef9 apple, inc.
+ 3c2eff apple, inc.
3c2f3a sforzato corp.
3c300c dewar electronics pty ltd
+ 3c306f huawei technologies co.,ltd
+ 3c3178 qolsys inc.
+ 3c3300 shenzhen bilian electronic co.,ltd
+ 3c3556 cognitec systems gmbh
3c363d nokia corporation
3c36e4 arris group, inc.
+ 3c3712 avm audiovisuelles marketing und computersysteme gmbh
+ 3c3786 netgear
3c3888 connectquest, llc
3c39c3 jw electronics co., ltd.
- 3c3a73 avaya, inc
- 3c404f guangdong pisen electronics co. ltd.
+ 3c39e7 ieee registration authority
+ 3c3a73 avaya inc
+ 3c3f51 2crsi
+ 3c404f guangdong pisen electronics co.,ltd
+ 3c410e cisco systems, inc
+ 3c427e ieee registration authority
3c438e arris group, inc.
- 3c4a92 hewlett-packard company
+ 3c46d8 tp-link technologies co.,ltd.
+ 3c4711 huawei technologies co.,ltd
+ 3c479b theissen training systems, inc.
+ 3c4937 assmann electronic gmbh
+ 3c4a92 hewlett packard
3c4c69 infinity system s.l.
+ 3c4cd0 ceragon networks
+ 3c4dbe apple, inc.
3c4e47 etronic a/s
+ 3c510e cisco systems, inc
+ 3c5282 hewlett packard
+ 3c53d7 cedes ag
+ 3c5447 huawei technologies co.,ltd
+ 3c5731 cisco systems, inc
+ 3c574f china mobile group device co.,ltd.
+ 3c576c samsung electronics co.,ltd
3c57bd kessler crane inc.
3c57d5 fiveco
- 3c5a37 samsung electronics
+ 3c58c2 intel corporate
+ 3c591e tcl king electrical appliances (huizhou) co., ltd
+ 3c5a37 samsung electronics co.,ltd
+ 3c5ab4 google, inc.
+ 3c5cc3 shenzhen first blue chip technology ltd
+ 3c5cc4 amazon technologies inc.
+ 3c5cf1 eero inc.
+ 3c5ec3 cisco systems, inc
3c5f01 synerchip co., ltd.
3c6104 juniper networks
- 3c6200 samsung electronics co., ltd
+ 3c6105 espressif inc.
+ 3c6200 samsung electronics co.,ltd
3c6278 shenzhen jetnet technology co.,ltd.
+ 3c6716 lily robotics
3c672c sciovid inc.
+ 3c678c huawei technologies co.,ltd
+ 3c6816 vxi corporation
+ 3c6a2c ieee registration authority
3c6a7d niigata power systems co., ltd.
+ 3c6a9d dexatek technology ltd.
+ 3c6aa7 intel corporate
3c6e63 mitron oy
3c6f45 fiberpro inc.
+ 3c6fea panasonic india pvt. ltd.
3c6ff7 entek systems, inc.
3c7059 makerbot industries
+ 3c71bf espressif inc.
3c7437 rim
3c754a arris group, inc.
3c77e6 hon hai precision ind. co.,ltd.
+ 3c7843 huawei technologies co.,ltd
+ 3c7873 airsonics
+ 3c7a8a arris group, inc.
+ 3c7aaa china dragon technology limited
+ 3c7ac4 chemtronics
+ 3c7c3f asustek computer inc.
+ 3c7d0a apple, inc.
3c7db1 texas instruments
- 3c81d8 sagemcom sas
+ 3c7f6f telechips, inc.
+ 3c806b hunan voc acoustics technology co., ltd.
+ 3c80aa ransnet singapore pte ltd
+ 3c81d8 sagemcom broadband sas
+ 3c831e ckd corporation
+ 3c8375 microsoft corporation
3c83b5 advance vision electronics co. ltd.
+ 3c846a tp-link technologies co.,ltd.
3c86a8 sangshin elecom .co,, ltd
+ 3c86d1 vivo mobile communication co., ltd.
+ 3c894d dr. ing. h.c. f. porsche ag
+ 3c8970 neosfar
+ 3c8994 bskyb ltd
3c89a6 kapelse
3c8ab0 juniper networks
3c8ae5 tensun information technology(hangzhou) co.,ltd
- 3c8bfe samsung electronics
- 3c9157 hangzhou yulong conmunication co.,ltd
+ 3c8bcd alcatel-lucent shanghai bell co., ltd
+ 3c8bfe samsung electronics co.,ltd
+ 3c8c40 hangzhou h3c technologies co., limited
+ 3c8c93 juniper networks
+ 3c8cf8 trendnet, inc.
+ 3c8d20 google, inc.
+ 3c8f06 shenzhen libtor technology co.,ltd
+ 3c9066 smartrg, inc.
+ 3c912b vexata inc
+ 3c9157 yulong computer telecommunication scientific (shenzhen) co.,ltd
3c9174 along communication technology
+ 3c9180 liteon technology corporation
+ 3c92dc octopod technology co. ltd.
3c94d5 juniper networks
+ 3c9509 liteon technology corporation
3c970e wistron infocomm(kunshan)co.,ltd.
3c977e ips technology limited
+ 3c9872 sercomm corporation.
3c98bf quest controls, inc.
3c99f7 lansentechnology ab
+ 3c9a77 technicolor ch usa inc.
+ 3c9bc6 huawei device co., ltd.
+ 3c9bd6 vizio, inc
+ 3c9c0f intel corporate
+ 3c9d56 huawei technologies co.,ltd
3c9f81 shenzhen catic bit communications technology co.,ltd
+ 3ca067 liteon technology corporation
+ 3ca10d samsung electronics co.,ltd
+ 3ca308 texas instruments
3ca315 bless information & communications co., ltd
+ 3ca31a oilfind international llc
+ 3ca348 vivo mobile communication co., ltd.
+ 3ca37e huawei technologies co.,ltd
+ 3ca581 vivo mobile communication co., ltd.
+ 3ca616 vivo mobile communication co., ltd.
+ 3ca62f avm audiovisuelles marketing und computersysteme gmbh
3ca72b mrv communications (networks) ltd
+ 3ca82a hewlett packard
+ 3ca8ed smart light technology
3ca9f4 intel corporate
- 3cab8e apple
- 3cb15b avaya, inc
+ 3caa3f ikey, ltd.
+ 3cab8e apple, inc.
+ 3cae69 esa elektroschaltanlagen grimma gmbh
+ 3cb15b avaya inc
3cb17f wattwatchers pty ld
- 3cb87a
+ 3cb233 huawei device co., ltd.
+ 3cb53d hunan goke microelectronics co.,ltd
+ 3cb6b7 vivo mobile communication co., ltd.
+ 3cb72b plumgrid inc
+ 3cb74b technicolor ch usa inc.
+ 3cb792 hitachi maxell, ltd., optronics division
+ 3cb87a private
3cb9a6 belden deutschland gmbh
+ 3cbb73 shenzhen xinguodu technology co., ltd.
+ 3cbbfd samsung electronics co.,ltd
+ 3cbd3e beijing xiaomi electronics co., ltd.
+ 3cbdc5 arcadyan corporation
3cbdd8 lg electronics inc
+ 3cbee1 nikon corporation
+ 3cbf60 apple, inc.
+ 3cc079 shenzhen one-nine intelligent electronic science and technology co., ltd
3cc0c6 d&b audiotechnik gmbh
3cc12c aes corporation
3cc1f6 melange systems pvt. ltd.
3cc243 nokia corporation
+ 3cc2e1 xinhua control engineering co.,ltd
+ 3cc786 dongguan huarong communication technologies co.,ltd.
3cc99e huiyang technology co., ltd
3cca87 iders incorporated
+ 3ccb7c tct mobile ltd
+ 3ccd36 apple, inc.
+ 3ccd5a technische alternative gmbh
+ 3ccd5d huawei technologies co.,ltd
3ccd93 lg electronics inc
- 3cce73 cisco systems, inc.
- 3cd0f8 apple
+ 3cce15 mercedes-benz usa, llc
+ 3cce73 cisco systems, inc
+ 3ccf5b icomm hk limited
+ 3cd0f8 apple, inc.
3cd16e telepower communication co., ltd
+ 3cd2e5 new h3c technologies co., ltd
3cd4d6 wirelesswerx, inc
3cd7da sk mtek microelectronics(shenzhen)limited
- 3cd92b hewlett-packard company
- 3cdf1e cisco systems, inc.
- 3cdfbd huawei technologies co., ltd
- 3ce072 apple
- 3ce5a6 hangzhou h3c technologies co., ltd.
+ 3cd92b hewlett packard
+ 3cd9ce eclipse wifi
+ 3cda2a zte corporation
+ 3cda6d tiandy technologies co.,ltd
+ 3cdcbc samsung electronics co.,ltd
+ 3cdd89 somo holdings & tech. co.,ltd.
+ 3cdf1e cisco systems, inc
+ 3cdfa9 arris group, inc.
+ 3cdfbd huawei technologies co.,ltd
+ 3ce038 plumeria networks, inc.
+ 3ce072 apple, inc.
+ 3ce1a1 universal global scientific industrial co., ltd.
+ 3ce36b zhejiang dahua technology co., ltd.
+ 3ce3e7 china mobile group device co.,ltd.
+ 3ce5a6 hangzhou h3c technologies co., limited
3ce5b4 kidasen industria e comercio de antenas ltda
- 3ce624 lg display
- 3cea4f 2wire
+ 3ce624 lg display
+ 3ce824 huawei technologies co.,ltd
+ 3cea4f 2wire inc
+ 3ceaf9 jubixcoltd
3ceafb nse ag
+ 3cecef super micro computer, inc.
+ 3cef8c zhejiang dahua technology co., ltd.
+ 3cf011 intel corporate
3cf392 virtualtek. co. ltd
+ 3cf4f9 moda-innochips
3cf52c dspecialists gmbh
+ 3cf591 guangdong oppo mobile telecommunications corp.,ltd
+ 3cf5cc new h3c technologies co., ltd
+ 3cf652 zte corporation
3cf72a nokia corporation
3cf748 shenzhen linsn technology development co.,ltd
+ 3cf7a4 samsung electronics co.,ltd
+ 3cf808 huawei technologies co.,ltd
+ 3cf862 intel corporate
+ 3cfa43 huawei technologies co.,ltd
+ 3cfad3 ieee registration authority
+ 3cfb5c fiberhome telecommunication technologies co.,ltd
3cfb96 emcraft systems llc
+ 3cfdfe intel corporate
+ 3cffd8 huawei technologies co.,ltd
+ 4000e0 derek(shaoguan)limited
400107 arista corp
+ 40017a cisco systems, inc
4001c6 3com europe ltd
40040c a&t
+ 400589 t-mobile, usa
+ 400634 huawei device co., ltd.
+ 4006a0 texas instruments
4007c0 railtec systems gmbh
+ 400d10 arris group, inc.
400e67 tremol ltd.
- 400e85 samsung electro mechanics co.,ltd.
+ 400e85 samsung electro-mechanics(thailand)
+ 401175 ieee registration authority
+ 4011dc sonance
4012e4 compass-eos
4013d9 global es
+ 4014ad huawei device co., ltd.
401597 protect america, inc.
+ 40163b samsung electronics co.,ltd
40167e asustek computer inc.
- 40169f tp-link technologies co., ltd.
+ 40169f tp-link technologies co.,ltd.
4016fa ekm metering
- 4018b1 aerohive networks inc.
- 4018d7 wyle telemetry and data systems
+ 4017e2 intai technology corp.
+ 4018b1 extreme networks, inc.
+ 4018d7 smartronix, inc.
+ 401920 movon corporation
+ 401b5f weifang goertek electronics co.,ltd
+ 401c83 intel corporate
401d59 biometric associates, lp
4022ed digital projection ltd
+ 402343 chongqing fugui electronics co.,ltd.
+ 4024b2 sichuan ai-link technology co., ltd.
4025c2 intel corporate
+ 402619 apple, inc.
40270b mobileeco co., ltd
- 402ba1 sony ericsson mobile communications ab
+ 402814 rfi engineering
+ 402b50 arris group, inc.
+ 402b69 kumho electric inc.
+ 402ba1 sony mobile communications inc
+ 402c76 ieee registration authority
402cf4 universal global scientific industrial co., ltd.
- 403004 apple
+ 402e28 mixtelematics
+ 402e71 texas instruments
+ 402f86 lg innotek
+ 403004 apple, inc.
403067 conlog (pty) ltd
+ 40313c xiaomi electronics,co.,ltd
+ 40331a apple, inc.
40336c godrej & boyce mfg. co. ltd
4037ad macro image technology, inc.
- 403cfc apple
+ 403cfc apple, inc.
+ 403dec humax co., ltd.
+ 403f8c tp-link technologies co.,ltd.
404022 ziv
+ 404028 ziv
40406b icomera
+ 4040a7 sony mobile communications inc
+ 404101 rockwell automation
+ 404229 layer3tv, inc
+ 4044fd realme chongqing mobile telecommunications corp.,ltd.
4045da spreadtrum communications (shanghai) co., ltd.
+ 40476a astro gaming
+ 4048fd ieee registration authority
+ 40490f hon hai precision ind. co.,ltd.
+ 40498a synapticon gmbh
404a03 zyxel communications corporation
404a18 addrek smart solutions
- 404d8e shenzhen huawei communication technologies co., ltd
+ 404ad4 widex a/s
+ 404c77 arris group, inc.
+ 404d7f apple, inc.
+ 404d8e huawei technologies co.,ltd
+ 404e36 htc corporation
+ 404eeb higher way electronic co., ltd.
+ 4050b5 shenzhen new species technology co., ltd.
4050e0 milton security group llc
40516c grandex international corporation
40520d pico technology
- 405539 cisco systems, inc.
+ 4054e4 wearsafe labs inc
+ 405539 cisco systems, inc
+ 405582 nokia
40560c in home displays ltd
+ 40562d smartron india pvt ltd
+ 405662 guotengshenghua electronics ltd.
405a9b anovo
+ 405bd8 chongqing fugui electronics co.,ltd.
+ 405cfd dell inc.
+ 405d82 netgear
+ 405ee1 shenzhen h&t intelligent control co.,ltd.
405fbe rim
405fc2 texas instruments
40605a hawkeye tech co. ltd
406186 micro-star int'l co.,ltd
40618e stella-green co
+ 406231 gifa
+ 406234 telink semiconductor (shanghai) co., ltd.
+ 4062b6 tele system communication
+ 4062ea china mobile group device co.,ltd.
+ 4064a4 the furukawa electric co., ltd
+ 4065a3 sagemcom broadband sas
40667a mediola - connected living ag
406826 thales uk limited
+ 406a8e hangzhou puwell oe tech ltd.
406aab rim
- 406c8f apple
- 406f2a research in motion
+ 406c8f apple, inc.
+ 406f2a blackberry rts
407009 arris group, inc.
40704a power idea technology limited
407074 life technology (china) co., ltd
+ 4070f5 apple, inc.
+ 407183 juniper networks
407496 afun technology inc.
+ 4074e0 intel corporate
+ 4077a9 new h3c technologies co., ltd
+ 40786a motorola mobility llc, a lenovo company
407875 imbel - industria de material belico do brasil
407a80 nokia corporation
407b1b mettle networks inc.
- 4083de motorola
+ 407c7d nokia
+ 407d0f huawei technologies co.,ltd
+ 407fe0 glory star technics (shenzhen) limited
+ 408256 continental automotive gmbh
+ 40831d apple, inc.
+ 4083de zebra technologies inc
408493 clavister ab
+ 40862e jdm mobile internet solution co., ltd.
+ 408805 motorola mobility llc, a lenovo company
+ 40882f extreme networks, inc.
4088e0 beijing ereneben information technology limited shenzhen branch
+ 4089a8 wirediq, llc
408a9a titeng co., ltd.
408b07 actiontec electronics, inc
- 408bf6 shenzhen tcl new technology co; ltd.
+ 408bf6 shenzhen tcl new technology co., ltd
+ 408c1f guangdong oppo mobile telecommunications corp.,ltd
+ 408c4c shenzhen miaoming intelligent technology co.,ltd
+ 408d5c giga-byte technology co.,ltd.
+ 408f9d juniper networks
+ 409505 acoinfo technology co.,ltd
409558 aisino corporation
+ 4095bd ntmore.co.,ltd
4097d1 bk electronics cc
40984c casacom solutions ag
40984e texas instruments
40987b aisino corporation
+ 4098ad apple, inc.
+ 409922 azurewave technology inc.
+ 409b0d shenzhen yourf kwan industrial co., ltd
+ 409bcd d-link international
+ 409c28 apple, inc.
+ 409f38 azurewave technology inc.
+ 409f87 jide technology (hong kong) limited
409fc7 baekchun i&c co., ltd.
+ 40a108 motorola (wuhan) mobility technologies communication co., ltd.
+ 40a2db amazon technologies inc.
+ 40a3cc intel corporate
+ 40a5ef shenzhen four seas global link network technology co., ltd.
+ 40a677 juniper networks
40a6a4 passivsystems ltd
- 40a6d9 apple
+ 40a6b7 intel corporate
+ 40a6d9 apple, inc.
+ 40a6e8 cisco systems, inc
40a8f0 hewlett packard
+ 40a93f pivotal commware, inc.
+ 40a9cf amazon technologies inc.
+ 40aa56 china dragon technology limited
40ac8d data management, inc.
- 40b0fa lg electronics
+ 40b034 hewlett packard
+ 40b076 asustek computer inc.
+ 40b0fa lg electronics (mobile communications)
40b2c8 nortel networks
- 40b395 apple
+ 40b30e integrated device technology (malaysia) sdn. bhd.
+ 40b31e universal electronics, inc.
+ 40b395 apple, inc.
40b3cd chiyoda electronics co.,ltd.
- 40b3fc logital co. limited
+ 40b3fc logital co. limited
+ 40b4cd amazon technologies inc.
40b4f0 juniper networks
+ 40b5c1 cisco systems, inc
+ 40b688 legic identsystems ag
40b6b1 sungsam co,.ltd
+ 40b6e7 huawei device co., ltd.
40b7f3 arris group, inc.
+ 40b837 sony mobile communications inc
+ 40b89a hon hai precision ind. co.,ltd.
+ 40b93c hewlett packard enterprise
40ba61 arima communications corp.
+ 40bc60 apple, inc.
+ 40bc68 wuhan funshion online technologies co.,ltd
40bc73 cronoplast s.l.
40bc8b itelio gmbh
+ 40bd32 texas instruments
40bd9e physio-control, inc
+ 40beee shenzhen yunding information technology co.,ltd
40bf17 digistar telecom. sa
40c245 shenzhen hexicom technology co., ltd.
+ 40c3c6 snaproute
40c4d6 chongqing camyu technology development co.,ltd.
+ 40c62a shanghai jing ren electronic technology co., ltd.
+ 40c711 apple, inc.
+ 40c729 sagemcom broadband sas
40c7c9 naviit inc.
- 40cba8 huawei technologies co., ltd
+ 40c81f shenzhen xinguodu technology co., ltd.
+ 40c8cb am telecom co., ltd.
+ 40cba8 huawei technologies co.,ltd
+ 40cbc0 apple, inc.
40cd3a z3 technology
- 40d32d apple
+ 40cd7a qingdao hisense communications co.,ltd.
+ 40ce24 cisco systems, inc
+ 40d25f itel mobile limited
+ 40d28a nintendo co., ltd.
+ 40d32d apple, inc.
+ 40d357 ison technology co., ltd.
+ 40d3ae samsung electronics co.,ltd
40d40e biodata ltd
+ 40d4bd sk networks service co., ltd.
40d559 micro s.e.r.i.
+ 40d63c equitech industrial(dongguan)co.,ltd
40d855 ieee registration authority
+ 40dc9d hajen
+ 40dca5 huawei device co., ltd.
+ 40ddd1 beautiful card corporation
+ 40de17 shenzhen lanfeng times industrial co.,ltd.
+ 40dead juniper networks
+ 40df02 line biz plus
+ 40e230 azurewave technology inc.
+ 40e3d6 aruba, a hewlett packard enterprise company
+ 40e64b apple, inc.
40e730 dey storage systems, inc.
40e793 shenzhen siviton technology co.,ltd
+ 40eace founder broadband network service co.,ltd
+ 40ec99 intel corporate
40ecf8 siemens ag
+ 40ed98 ieee registration authority
+ 40ee15 zioncom electronics (shenzhen) ltd.
+ 40eedd huawei technologies co.,ltd
40ef4c fihonest communication co.,ltd
40f02f liteon technology corporation
+ 40f04e integrated device technology (malaysia) sdn. bhd.
+ 40f078 cisco systems, inc
40f14c ise europe sprl
+ 40f201 sagemcom broadband sas
+ 40f21c dasan zhone solutions
40f2e9 ibm
- 40f308 murata manufactuaring co.,ltd.
+ 40f308 murata manufacturing co., ltd.
+ 40f385 ieee registration authority
40f407 nintendo co., ltd.
- 40f4ec cisco systems, inc.
+ 40f413 rubezh
+ 40f420 sichuan tianyi comheart telecomco.,ltd
+ 40f4ec cisco systems, inc
+ 40f520 espressif inc.
40f52e leica microsystems (schweiz) ag
+ 40f946 apple, inc.
+ 40f9d5 tecore networks
+ 40fa7f preh car connect gmbh
40fc89 arris group, inc.
- 4403a7 cisco
+ 40fe0d maxio
+ 440010 apple, inc.
+ 440049 amazon technologies inc.
+ 44004d huawei technologies co.,ltd
+ 4401bb shenzhen bilian electronic co.,ltd
+ 44032c intel corporate
+ 440377 ieee registration authority
+ 4403a7 cisco systems, inc
+ 440444 guangdong oppo mobile telecommunications corp.,ltd
+ 44070b google, inc.
+ 4409b8 salcomp (shenzhen) co., ltd.
440cfd netman co., ltd.
+ 4410fe huizhou foryou general electronics co., ltd.
+ 441102 edmi europe ltd
4411c2 telegartner karl gartner gmbh
441319 wkk technology ltd.
+ 4413d0 zte corporation
+ 441441 audiocontrol inc.
+ 441622 microsoft corporation
+ 441847 hunan scrown electronic information tech.co.,ltd
44184f fitview
+ 4418fd apple, inc.
4419b6 hangzhou hikvision digital technology co.,ltd.
+ 441afa new h3c technologies co., ltd
+ 441c12 technicolor ch usa inc.
+ 441c7f motorola mobility llc, a lenovo company
+ 441ca8 hon hai precision ind. co.,ltd.
441e91 arvida intelligent electronics technology co.,ltd.
- 441ea1 hewlett-packard company
+ 441e98 ruckus wireless
+ 441ea1 hewlett packard
+ 44227c huawei technologies co.,ltd
+ 442295 china mobile iot limited company
+ 4422f1 s.fac, inc
+ 44237c beijing xiaomi mobile software co., ltd
4423aa farmage co., ltd.
4425bb bamboo entertainment corporation
+ 4427f3 70mai co.,ltd.
+ 4428a3 jiangsu fulian communication technology co., ltd.
442938 nietzsche enterprise co.ltd.
- 442a60 apple
+ 442a60 apple, inc.
442aff e3 technology, inc.
- 442b03 cisco systems, inc.
+ 442b03 cisco systems, inc
+ 442c05 ampak technology, inc.
443192 hewlett packard
- 44322a avaya, inc
- 4432c8 technicolor usa inc.
+ 44322a avaya inc
+ 4432c8 technicolor ch usa inc.
44334c shenzhen bilian electronic co.,ltd
44348f mxt industrial ltda
+ 4434a7 arris group, inc.
+ 44356f neterix
+ 443583 apple, inc.
+ 443708 mrv comunications
443719 2 save energy ltd
44376f young electric sign co
- 4437e6 hon hai precision ind.co.ltd
+ 4437e6 hon hai precision ind. co.,ltd.
443839 cumulus networks, inc
- 4439c4 universal global scientific industrial co.,ltd
+ 4439c4 universal global scientific industrial co., ltd.
+ 443b32 intelbras
+ 443c88 ficosa maroc international
443c9c pintsch tiefenbach gmbh
443d21 nuvolt
+ 443e07 electrolux
443eb2 deotron co., ltd.
+ 44422f testop co.,ltd.
+ 444450 ottoq
+ 444687 realme chongqing mobiletelecommunications corp ltd
+ 4447cc hangzhou hikvision digital technology co.,ltd.
444891 hdmi licensing, llc
+ 4448c1 hewlett packard enterprise
444a65 silverflare ltd.
- 444c0c apple
+ 444ab0 zhejiang moorgen intelligence technology co., ltd
+ 444adb apple, inc.
+ 444b5d ge healthcare
+ 444b7e fiberhome telecommunication technologies co.,ltd
+ 444c0c apple, inc.
+ 444ca8 arista networks
444e1a samsung electronics co.,ltd
+ 444e6d avm audiovisuelles marketing und computersysteme gmbh
444f5e pan studios co.,ltd.
4451db raytheon bbn technologies
4454c0 thompson aerospace
+ 4455b1 huawei technologies co.,ltd
+ 4455c4 huawei device co., ltd.
44568d pnc technologies co., ltd.
4456b7 spawn labs, inc
+ 4456e2 sichuan tianyi comheart telecom co., ltd.
445829 cisco spvtg
+ 445943 zte corporation
44599f criticare systems, inc
+ 4459e3 huawei technologies co.,ltd
+ 445ce9 samsung electronics co.,ltd
+ 445d5e shenzhen coolkit technology co.,ltd
+ 445ecd razer inc
445ef3 tonalite holding b.v.
445f7a shihlin electric & engineering corp.
+ 445f8c intercel group limited
446132 ecobee inc
44619c fonsystem co. ltd.
+ 446246 comat ag
+ 44650d amazon technologies inc.
+ 44656a mega video electronic(hk) industry co., ltd
+ 44657f calix inc.
+ 44666e ip-line
+ 4466fc guangdong oppo mobile telecommunications corp.,ltd
+ 446747 huawei technologies co.,ltd
446755 orbit irrigation
+ 44680c wacom co.,ltd.
4468ab juin company, limited
+ 446a2e huawei technologies co.,ltd
+ 446ab7 arris group, inc.
446c24 reallin electronic co.,ltd
446d57 liteon technology corporation
+ 446d6c samsung electronics co.,ltd
+ 446ee5 huawei technologies co.,ltd
+ 446fd8 ieee registration authority
+ 446ff8 dyson limited
44700b iffu
447098 ming hong technology (shen zhen) limited
+ 4473d6 logitech
+ 44746c sony mobile communications inc
+ 447654 huawei technologies co.,ltd
+ 44783e samsung electronics co.,ltd
+ 447bbb shenzhen youhua technology co., ltd
447bc4 dualshine technology(sz)co.,ltd
447c7f innolight technology corporation
447da5 vtion information technology (fujian) co.,ltd
447e76 trek technology (s) pte ltd
447e95 alpha and omega, inc
+ 447f77 connected home
+ 4480eb motorola mobility llc, a lenovo company
+ 4482e5 huawei technologies co.,ltd
448312 star-net
448500 intel corporate
- 4487fc elitegroup computer system co., ltd.
+ 4486c1 siemens low voltage & products
+ 448723 hoya service corporation
+ 4487db tymphany acoustic technology (huizhou) co., ltd.
+ 4487fc elitegroup computer systems co.,ltd.
+ 4488cb camco technologies nv
448a5b micro-star int'l co., ltd.
448c52 ktis co., ltd
+ 448dbf rhino mobility llc
448e12 dt research, inc.
448e81 vig
+ 448f17 samsung electronics co., ltd. artik
+ 4490bb apple, inc.
+ 449160 murata manufacturing co., ltd.
+ 44917c hmd global oy
4491db shanghai huaqin telecom technology co.,ltd
- 4494fc netgear inc.,
+ 4494fc netgear
4495fa qingdao santong digital technology co.ltd
+ 44962b aidon oy
+ 44975a shenzhen fast technologies co.,ltd
449b78 the now factory
+ 449bc1 huawei technologies co.,ltd
449cb5 alcomp, inc
- 44a42d tct mobile limited
+ 449ef9 vivo mobile communication co., ltd.
+ 449f7f datacore software corporation
+ 44a191 huawei technologies co.,ltd
+ 44a42d tct mobile ltd
+ 44a466 groupe ldlc
+ 44a54e qorvo international pte. ltd.
+ 44a56e netgear
+ 44a61e ingram micro services
44a689 promax electronica sa
+ 44a6e5 thinking technology co.,ltd
44a7cf murata manufacturing co., ltd.
+ 44a842 dell inc.
44a8c2 sewoo tech co., ltd
+ 44a8fc apple, inc.
44aa27 udworks co., ltd.
+ 44aa50 juniper networks
44aae8 nanotec electronic gmbh & co. kg
- 44add9 cisco
+ 44aaf5 arris group, inc.
+ 44ad19 xingfei (h.k)limited
+ 44adb1 sagemcom broadband sas
+ 44add9 cisco systems, inc
+ 44ae25 cisco systems, inc
+ 44aeab guangdong oppo mobile telecommunications corp.,ltd
+ 44af28 intel corporate
+ 44b295 sichuan ai-link technology co., ltd.
+ 44b32d tp-link technologies co.,ltd.
44b382 kuang-chi institute of advanced technology
+ 44b412 sius ag
+ 44b433 tide.co.,ltd
+ 44b462 flextronics tech.(ind) pvt ltd
+ 44b6be cisco systems, inc
+ 44b994 douglas lighting controls
+ 44ba46 sichuan tianyi comheart telecomco.,ltd
+ 44bb3b google, inc.
+ 44bdde bhtc gmbh
+ 44bfe3 shenzhen longtech electronics co.,ltd
44c15c texas instruments
44c233 guangzhou comet technology development co.ltd
44c306 sifrom inc.
+ 44c346 huawei technologies co.,ltd
44c39b ooo rubezh npo
44c4a9 opticom communication, llc
44c56f ngn easy satfinder (tianjin) electronic co., ltd
+ 44c65d apple, inc.
+ 44c69b wuhan feng tian information network co.,ltd
+ 44c7fc huawei device co., ltd.
+ 44c874 china mobile group device co.,ltd.
44c9a2 greenwald industries
+ 44cb8b lg innotek
+ 44cd0e flextronics manufacturing(zhuhai)co.,ltd.
+ 44ce3a jiangsu huacun electronic technology co., ltd.
+ 44ce7d sfr
44d15e shanghai kingto information technology ltd
+ 44d1fa shenzhen yunlink technology co., ltd
+ 44d244 seiko epson corporation
44d2ca anvia tv oy
- 44d3ca cisco systems, inc.
+ 44d3ad shenzhen tinno mobile technology corp.
+ 44d3ca cisco systems, inc
+ 44d437 inteno broadband technology ab
+ 44d453 sagemcom broadband sas
+ 44d4e0 sony mobile communications inc
+ 44d5a5 addon computer
+ 44d5f2 ieee registration authority
44d63d talari networks
- 44d832 azurewave technologies, inc.
- 44d884 apple
+ 44d6e1 snuza international pty. ltd.
+ 44d791 huawei technologies co.,ltd
+ 44d832 azurewave technology inc.
+ 44d878 hui zhou gaoshengda technology co.,ltd
+ 44d884 apple, inc.
+ 44d9e7 ubiquiti networks inc.
+ 44dc4e itel mobile limited
44dc91 planex communications inc.
44dccb semindia systems pvt ltd
44e08e cisco spvtg
+ 44e137 arris group, inc.
44e49a omnitronics pty ltd
- 44e4d9 cisco systems, inc.
+ 44e4d9 cisco systems, inc
+ 44e4ee wistron neweb corporation
+ 44e66e apple, inc.
+ 44e6b0 china mobile iot company limited
44e8a5 myreka technologies sdn. bhd.
+ 44e968 huawei technologies co.,ltd
+ 44e9dd sagemcom broadband sas
+ 44ea4b actlas inc.
+ 44ead8 texas instruments
+ 44ecce juniper networks
44ed57 longicorn, inc.
+ 44ee02 mti ltd.
44ee30 budelmann elektronik gmbh
- 44f459 samsung electronics
+ 44efbf china dragon technology limited
+ 44efcf ugene solution inc.
+ 44f034 kaonmedia co., ltd.
+ 44f21b apple, inc.
+ 44f436 zte corporation
+ 44f459 samsung electronics co.,ltd
+ 44f477 juniper networks
+ 44f4e7 cohesity inc
44f849 union pacific railroad
- 44fb42 apple
+ 44f971 shenzhen mercury communication technologies co.,ltd.
+ 44fb42 apple, inc.
+ 44fb5a zte corporation
+ 44fda3 everysight ltd.
+ 44fe3b arcadyan corporation
+ 44ffba zte corporation
+ 480031 huawei technologies co.,ltd
+ 480033 technicolor ch usa inc.
+ 48007d dts elektronik san. tic. ltd. sti.
+ 4801c5 oneplus technology (shenzhen) co., ltd
48022a b-link electronic limited
480362 desay electronics(huizhou)co.,ltd
+ 48049f elecom co., ltd
+ 4805e2 huawei device co., ltd.
+ 48066a tempered networks, inc.
+ 480bb2 ieee registration authority
+ 480c49 nakayo inc
+ 480eec tp-link technologies co.,ltd.
+ 480fcf hewlett packard
+ 481063 ntt innovation institute, inc.
481249 luxcom technologies inc.
- 4813f3 bbk electronics corp., ltd.
+ 481258 huawei technologies co.,ltd
+ 48137e samsung electronics co.,ltd
+ 4813f3 bbk educational electronics corp.,ltd.
+ 481693 lear corporation gmbh
48174c micropower technologies
481842 shanghai winaas co. equipment co. ltd.
+ 4818fa nocsys
+ 481a84 pointer telocation ltd
481bd2 intron scientific co., ltd.
+ 481d70 cisco spvtg
+ 481f2d shenzhen jie shi lian industrial co.,ltd
+ 48210b pegatron corporation
+ 48216c china mobile iot company limited
+ 482335 dialog semiconductor hellas sa
+ 482567 poly
+ 48262c apple, inc.
+ 4826e8 tek-air systems, inc.
+ 482759 levven electronics ltd.
+ 4827ea samsung electronics co.,ltd
48282f zte corporation
+ 482952 sagemcom broadband sas
+ 4829e4 zao npk rotek
+ 482ae3 wistron infocomm(kunshan)co.,ltd.
+ 482ca0 xiaomi communications co ltd
+ 482cd0 huawei technologies co.,ltd
482cea motorola inc business light radios
4833dd zennio avance y tecnologia, s.l.
48343d iep gmbh
+ 48352e shenzhen wolck network product co.,ltd
+ 48365f wintecronics ltd.
+ 483871 huawei device co., ltd.
+ 483974 proware technologies co., ltd.
+ 483b38 apple, inc.
+ 483c0c huawei technologies co.,ltd
483d32 syscor controls & automation
+ 483fda espressif inc.
+ 483fe9 huawei technologies co.,ltd
+ 48435a huawei technologies co.,ltd
+ 48437c apple, inc.
+ 4843dd amazon technologies inc.
484487 cisco spvtg
- 4844f7 samsung electronics co., ltd
+ 4844f7 samsung electronics co.,ltd
+ 484520 intel corporate
+ 4846c1 fn-link technology limited
4846f1 uros oy
4846fb huawei technologies co.,ltd
+ 4849c7 samsung electronics co.,ltd
+ 484a30 george robotics limited
+ 484ae9 hewlett packard enterprise
+ 484baa apple, inc.
+ 484bd4 technicolor ch usa inc.
+ 484c29 huawei technologies co.,ltd
+ 484c86 huawei device co., ltd.
+ 484d7e dell inc.
+ 484efc arris group, inc.
+ 485073 microsoft corporation
+ 485169 samsung electronics co.,ltd
+ 4851b7 intel corporate
+ 4851c5 intel corporate
+ 4851cf intelbras
485261 soreel
+ 485415 net rules tecnologia eireli
+ 48555c wu qi technologies,inc.
+ 48555f fiberhome telecommunication technologies co.,ltd
+ 485702 huawei technologies co.,ltd
+ 4857dd facebook inc
+ 485929 lg electronics (mobile communications)
+ 4859a4 zte corporation
485a3f wisol
485ab6 hon hai precision ind. co.,ltd.
485b39 asustek computer inc.
- 485d60 azurewave technologies, inc.
- 4860bc apple
- 4861a3 concern "axion" jsc
+ 485d36 verizon
+ 485d60 azurewave technology inc.
+ 485deb just add power
+ 485f99 cloud network technology (samoa) limited
+ 48605f lg electronics (mobile communications)
+ 4860bc apple, inc.
+ 4861a3 concern axion jsc
486276 huawei technologies co.,ltd
+ 4865ee ieee registration authority
+ 486834 silicon motion, inc.
+ 48684a intel corporate
+ 486b2c bbk educational electronics corp.,ltd.
486b91 fleetwood group inc.
+ 486dbb vestel elektronik san ve tic. a.Ş.
+ 486e70 zhejiang tmall technology co., ltd.
486e73 pica8, inc.
+ 486efb davit system technology co., ltd.
486fd2 storsimple inc
+ 48701e texas instruments
487119 sgb group ltd.
- 48746e apple
- 487604
+ 48746e apple, inc.
+ 487583 intellion ag
+ 487604 private
+ 487746 calix inc.
+ 48785e amazon technologies inc.
+ 48794d samsung electronics co.,ltd
+ 487a55 ale international
+ 487ada hangzhou h3c technologies co., limited
+ 487af6 ncs electrical sdn bhd
+ 487aff essys
+ 487b5e smt telecomm hk
+ 487b6b huawei technologies co.,ltd
+ 487d2e tp-link technologies co.,ltd.
+ 487e48 earda technologies co ltd
+ 488244 life fitness / div. of brunswick
+ 4882f2 appel elektronik gmbh
+ 4883b4 guangdong oppo mobile telecommunications corp.,ltd
+ 4883c7 sagemcom broadband sas
+ 4886e8 microsoft corporation
+ 48872d shen zhen da xia long que technology co.,ltd
+ 488764 vivo mobile communication co., ltd.
+ 488803 mantechnology inc.
+ 48881e ethoswitch llc
+ 488899 shenzhen superelectron technology co.,ltd.
+ 4888ca motorola (wuhan) mobility technologies communication co., ltd.
+ 4889e7 intel corporate
+ 488ad2 mercury communication technologies co.,ltd.
+ 488b0a cisco systems, inc
+ 488c63 huawei device co., ltd.
+ 488d36 arcadyan corporation
488e42 digalog gmbh
+ 488eef huawei technologies co.,ltd
+ 488f5a routerboard.com
+ 48902f lg electronics (mobile communications)
489153 weinmann geräte für medizin gmbh + co. kg
4891f6 shenzhen reach software technology co.,ltd
+ 489507 guangdong oppo mobile telecommunications corp.,ltd
+ 4898ca sichuan ai-link technology co., ltd.
+ 489a42 technomate ltd
+ 489bd5 extreme networks, inc.
489be2 sci innovations ltd
- 489d24 research in motion
+ 489d18 flashbay limited
+ 489d24 blackberry rts
+ 489dd1 samsung electronics co.,ltd
+ 48a0f8 fiberhome telecommunication technologies co.,ltd
+ 48a195 apple, inc.
48a22d shenzhen huaxuchang telecom technology co.,ltd
48a2b7 kodofon jsc
+ 48a2b8 chengdu vision-zenith tech.co,.ltd
+ 48a2e6 resideo
+ 48a380 gionee communication equipment co.,ltd.
+ 48a472 intel corporate
+ 48a493 taiyo yuden co.,ltd
+ 48a516 huawei device co., ltd.
+ 48a5e7 nintendo co.,ltd
+ 48a6b8 sonos, inc.
48a6d2 gjsun optical science and tech co.,ltd.
+ 48a73c sichuan tianyi kanghe communications co., ltd
+ 48a74e zte corporation
+ 48a91c apple, inc.
+ 48a9d2 wistron neweb corporation
48aa5d store electronic systems
+ 48ad08 huawei technologies co.,ltd
+ 48b02d nvidia corporation
48b253 marketaxess corporation
+ 48b25d huawei technologies co.,ltd
48b5a7 glory horse industries ltd.
+ 48b620 roli ltd.
+ 48b8a3 apple, inc.
48b8de homewins technology co.,ltd.
48b977 pulseon oy
48b9c2 teletics inc.
+ 48ba4e hewlett packard
+ 48bca6 asung techno co.,ltd
+ 48bd0e quanta storage inc.
+ 48bd3d new h3c technologies co., ltd
48be2d symanitron
+ 48bf6b apple, inc.
+ 48bf74 baicells technologies co.,ltd
+ 48c049 broad telecom sa
+ 48c093 xirrus, inc.
48c1ac plantronics, inc.
+ 48c3b0 pharos co.ltd
+ 48c58d lear corporation gmbh
+ 48c663 gto access systems llc
+ 48c796 samsung electronics co.,ltd
48c862 simo wireless,inc.
48c8b6 systec gmbh
48cb6e cello electronics (uk) ltd
48d0cf universal electronics, inc.
48d18e metis communication co.,ltd
48d224 liteon technology corporation
+ 48d24f sagemcom broadband sas
+ 48d343 arris group, inc.
+ 48d35d private
+ 48d539 huawei technologies co.,ltd
48d54c jeda networks
+ 48d6d5 google, inc.
+ 48d705 apple, inc.
48d7ff blankom antennentechnik gmbh
+ 48d845 shenzhen mainuoke electronics co., ltd
+ 48d855 telvent
+ 48d875 china transinfo technology co., ltd
+ 48d890 fn-link technology limited
48d8fe claridy solutions, inc.
+ 48da96 eddy smart home solutions inc.
+ 48db50 huawei technologies co.,ltd
+ 48dc2d huawei technologies co.,ltd
48dcfb nokia corporation
+ 48dd0c eero inc.
+ 48dd9d itel mobile limited
48df1c wuhan nec fibre optic communications industry co. ltd
+ 48df37 hewlett packard enterprise
48e1af vity
+ 48e1e9 chengdu meross technology co., ltd.
+ 48e244 hon hai precision ind. co.,ltd.
+ 48e3c3 jenoptik advanced systems gmbh
+ 48e695 insigma inc
+ 48e6c0 simcom wireless solutions co.,ltd.
+ 48e9f1 apple, inc.
48ea63 zhejiang uniview technologies co., ltd.
48eb30 eterna technology, inc.
+ 48eb62 murata manufacturing co., ltd.
+ 48ec5b nokia solutions and networks gmbh & co. kg
48ed80 daesung eltec
48ee07 silver palm technologies llc
+ 48ee0c d-link international
48ee86 utstarcom (china) co.,ltd
+ 48ef61 huawei device co., ltd.
+ 48f027 chengdu newifi co.,ltd
+ 48f07b alpsalpine co,.ltd
+ 48f17f intel corporate
48f230 ubizcore co.,ltd
- 48f317
+ 48f317 private
48f47d techvision holding internation limited
- 48f7f1 alcatel-lucent
+ 48f7c0 technicolor ch usa inc.
+ 48f7f1 nokia
48f8b3 cisco-linksys, llc
- 48f8e1 alcatel lucent wt
+ 48f8db huawei technologies co.,ltd
+ 48f8e1 nokia
48f925 maestronic
+ 48f97c fiberhome telecommunication technologies co.,ltd
+ 48fcb6 lava international(h.k) limited
48fcb8 woodstream corporation
+ 48fd8e huawei technologies co.,ltd
+ 48fda3 xiaomi communications co ltd
48feea homa b.v.
- 4c0082 cisco
+ 4c0082 cisco systems, inc
+ 4c0143 eero inc.
+ 4c0220 xiaomi communications co ltd
4c022e cmr korea co., ltd
4c0289 lex computech co., ltd
4c068a basler electric company
4c07c9 computer office co.,ltd.
4c09b4 zte corporation
- 4c0b3a tct mobile limited
+ 4c09d4 arcadyan technology corporation
+ 4c0a3d adnacom inc.
+ 4c0b3a tct mobile ltd
+ 4c0bbe microsoft
4c0dee jabil circuit (shanghai) ltd.
4c0f6e hon hai precision ind. co.,ltd.
- 4c0fc7 earda electronics co.,ltd
+ 4c0fc7 earda technologies co ltd
+ 4c1154 mobiwire mobiles (ningbo) co., ltd
+ 4c1159 vision information & communications
+ 4c11ae espressif inc.
+ 4c11bf zhejiang dahua technology co., ltd.
+ 4c1265 arris group, inc.
+ 4c1365 emplus technologies
4c1480 noregon systems, inc
4c14a3 tcl technoly electronics (huizhou) co., ltd.
- 4c17eb sagemcom
+ 4c1694 shenzhen sibituo technology co., ltd
+ 4c16f1 zte corporation
+ 4c16fc juniper networks
+ 4c1744 amazon technologies inc.
+ 4c17eb sagemcom broadband sas
+ 4c189a guangdong oppo mobile telecommunications corp.,ltd
4c1a3a prima research and production enterprise ltd.
+ 4c1a3d guangdong oppo mobile telecommunications corp.,ltd
4c1a95 novakon co., ltd.
+ 4c1b86 arcadyan corporation
+ 4c1d96 intel corporate
4c1fcc huawei technologies co.,ltd
- 4c21d0 sony mobile communications ab
+ 4c20b8 apple, inc.
+ 4c2113 nokia shanghai bell co., ltd.
+ 4c218c panasonic india private limited
+ 4c21d0 sony mobile communications inc
+ 4c2219 yuanfudao hk limted
4c2258 cozybit, inc.
+ 4c2498 texas instruments
4c2578 nokia corporation
- 4c2c80 beijing skyway technologies co.,ltd
+ 4c26e7 welgate co., ltd.
+ 4c2c80 beijing skyway technologies co.,ltd
+ 4c2c83 zhejiang kanong network technology co.,ltd.
+ 4c2efe shenzhen comnect technology co.,ltd
4c2f9d icm controls
4c3089 thales transportation systems gmbh
4c322d teledata networks
+ 4c3275 apple, inc.
4c32d9 m rutty holdings pty. ltd.
+ 4c3329 sweroam
+ 4c334e hightech
+ 4c3488 intel corporate
+ 4c364e panasonic corporation connected solutions company
+ 4c38d5 mitac computing technology corporation
+ 4c38d8 arris group, inc.
+ 4c3909 hpl electric & power private limited
4c3910 newtek electronics co., ltd.
4c3b74 vogtec(h.k.) co., ltd
+ 4c3bdf microsoft corporation
4c3c16 samsung electronics co.,ltd
- 4c4b68 mobile device, inc.
- 4c4e35 cisco
+ 4c3fd3 texas instruments
+ 4c4088 sanshin electronics co.,ltd.
+ 4c4576 china mobile(hangzhou) information technology co.,ltd.
+ 4c48da beijing autelan technology co.,ltd
+ 4c494f zte corporation
+ 4c49e3 xiaomi communications co ltd
+ 4c4b68 mobile device, inc.
+ 4c4bf9 ieee registration authority
+ 4c4d66 nanjing jiahao technology co., ltd.
+ 4c4e03 tct mobile ltd
+ 4c4e35 cisco systems, inc
+ 4c4fee oneplus technology (shenzhen) co., ltd
+ 4c5077 huawei device co., ltd.
+ 4c5262 fujitsu technology solutions gmbh
+ 4c52ec solarwatt gmbh
4c5427 linepro sp. z o.o.
- 4c5499 shenzhen huawei communication technologies co., ltd
+ 4c5499 huawei technologies co.,ltd
4c5585 hamilton systems
4c55b8 turkcell teknoloji
- 4c55cc ackme networks pty ltd
+ 4c55cc zentri pty ltd
+ 4c569d apple, inc.
+ 4c56df targus us llc
+ 4c57ca apple, inc.
+ 4c5d3c cisco systems, inc
4c5dcd oy finnish electric vehicle technologies ltd
4c5e0c routerboard.com
4c5fd2 alcatel-lucent
4c60d5 airpointe of new hampshire
4c60de netgear
+ 4c617e huawei device co., ltd.
4c6255 sanmina-sci system de mexico s.a. de c.v.
+ 4c6371 xiaomi communications co ltd
4c63eb application solutions (electronics and vision) ltd
4c64d9 guangdong leawin group co., ltd
+ 4c65a8 ieee registration authority
+ 4c6641 samsung electro-mechanics(thailand)
+ 4c6af6 hmd global oy
+ 4c6be8 apple, inc.
+ 4c6c13 iot company solucoes tecnologicas ltda
+ 4c6d58 juniper networks
+ 4c6e6e comnect technology co.,ltd
+ 4c6f9c guangdong oppo mobile telecommunications corp.,ltd
+ 4c710c cisco systems, inc
+ 4c710d cisco systems, inc
4c72b9 pegatron corporation
4c7367 genius bytes software solutions gmbh
4c73a5 kove
- 4c774f embedded wireless labs
+ 4c7403 bq
+ 4c7487 leader phone communication technology co., ltd.
+ 4c74bf apple, inc.
+ 4c7525 espressif inc.
+ 4c7625 dell inc.
+ 4c774f embedded wireless labs
+ 4c7766 shenzhen mercury communication technologies co.,ltd.
+ 4c776d cisco systems, inc
+ 4c7872 cav. uff. giacomo cimberio s.p.a.
4c7897 arrowhead alarm products ltd
+ 4c796e intel corporate
4c79ba intel corporate
+ 4c7a48 nippon seiki (europe) b.v.
+ 4c7c5f apple, inc.
+ 4c7cd9 apple, inc.
4c7f62 nokia corporation
4c804f armstrong monitoring corp
4c8093 intel corporate
- 4c82cf echostar technologies
+ 4c80ba wuhan tianyu information industry co., ltd.
+ 4c8120 taicang t&w electronics
+ 4c82cf dish technologies corp
+ 4c83de cisco spvtg
+ 4c875d bose corporation
4c8b30 actiontec electronics, inc
4c8b55 grupo digicon
- 4c8bef huawei technologies co., ltd
- 4c8d79 apple
+ 4c8bef huawei technologies co.,ltd
+ 4c8d79 apple, inc.
+ 4c8ecc silkan sa
4c8fa5 jastec
+ 4c90db jl audio
+ 4c910c lanix internacional, s.a. de c.v.
+ 4c9157 fujian landi commercial equipment co.,ltd
+ 4c917a ieee registration authority
+ 4c93a6 ieee registration authority
4c9614 juniper networks
+ 4c962d fresh ab
4c98ef zeo
4c9e80 kyokko electric co., ltd.
4c9ee4 hanyang navicom co.,ltd.
+ 4c9eff zyxel communications corporation
+ 4ca003 vitec
+ 4ca161 rain bird corporation
+ 4ca515 baikal electronics jsc
4ca56d samsung electronics co.,ltd
+ 4ca64d cisco systems, inc
4ca74b alcatel lucent
+ 4ca928 insensi
4caa16 azurewave technologies (shanghai) inc.
4cab33 kst technology
+ 4cabfc zte corporation
4cac0a zte corporation
+ 4cada8 panoptics corp.
+ 4cae13 huawei technologies co.,ltd
+ 4cae1c sainxt technologies llp
+ 4cae31 shenghai electronics (shenzhen) ltd
+ 4caea3 hewlett packard enterprise
+ 4caeec guangzhou limee technology co.,ltd
+ 4cb008 shenzhen gwelltimes technology co.,ltd
+ 4cb0e8 beijing rongzhi xinghua technology co., ltd
4cb16c huawei technologies co.,ltd
- 4cb199 apple
+ 4cb199 apple, inc.
+ 4cb1cd ruckus wireless
+ 4cb21c maxphotonics co.,ltd
+ 4cb44a nanowave technologies inc.
4cb4ea hrd (s) pte., ltd.
+ 4cb76d novi security
4cb81c sam electronics gmbh
+ 4cb82c cambridge mobile telematics, inc.
+ 4cb8b5 shenzhen youhua technology co., ltd
+ 4cb910 apple, inc.
+ 4cb911 raisecom technology co.,ltd
+ 4cb99b weifang goertek electronics co.,ltd
4cb9c8 conet co., ltd.
4cbaa3 bison electronics inc.
+ 4cbb58 chicony electronics co., ltd.
+ 4cbc42 shenzhen hangsheng electronics co.,ltd.
+ 4cbc48 cisco systems, inc
+ 4cbc72 primex wireless
+ 4cbc98 ieee registration authority
4cbca5 samsung electronics co.,ltd
+ 4cbcb4 abb spa - din rail
+ 4cbd8f hangzhou hikvision digital technology co.,ltd.
+ 4cc00a vivo mobile communication co., ltd.
+ 4cc206 somfy
4cc452 shang hai tyd. electon technology ltd.
+ 4cc53e zyxel communications corporation
4cc602 radios, inc.
- 4cc94f alcatel-lucent
+ 4cc681 shenzhen aisat electronic co., ltd.
+ 4cc7d6 flextronics manufacturing(zhuhai)co.,ltd.
+ 4cc8a1 cisco meraki
+ 4cc94f nokia
+ 4cc95e samsung electronics co.,ltd
4cca53 skyera, inc.
4ccbf5 zte corporation
4ccc34 motorola solutions inc.
+ 4ccc6a micro-star intl co., ltd.
+ 4cce2d danlaw inc
+ 4cd08a humax co., ltd.
+ 4cd0cb huawei technologies co.,ltd
+ 4cd1a1 huawei technologies co.,ltd
4cd637 qsono electronics co., ltd
4cd7b6 helmer scientific
+ 4cd98f dell inc.
4cd9c4 magneti marelli automotive electronics (guangzhou) co. ltd
+ 4cdc0d coral telecom limited
+ 4cdd31 samsung electronics co.,ltd
+ 4cdd7d lhp telematics llc
4cdf3d team engineers advance technologies india pvt ltd
+ 4ce173 ieee registration authority
+ 4ce175 cisco systems, inc
+ 4ce176 cisco systems, inc
+ 4ce19e tecno mobile limited
4ce1bb zhuhai hifocus technology co., ltd.
- 4ce676 buffalo inc.
+ 4ce2f1 sclak srl
+ 4ce5ae tianjin beebox intelligent technology co.,ltd.
+ 4ce676 buffalo.inc
+ 4ce933 railcomm, llc
+ 4ce9e4 new h3c technologies co., ltd
4ceb42 intel corporate
+ 4cebbd chongqing fugui electronics co.,ltd.
+ 4cecef soraa, inc.
4cedde askey computer corp
+ 4cedfb asustek computer inc.
+ 4ceeb0 shc netzwerktechnik gmbh
+ 4cef56 shenzhen sundray technologies company limited
+ 4cefc0 amazon technologies inc.
4cf02e vifa denmark a/s
+ 4cf19e groupe atlantic
+ 4cf202 xiaomi communications co ltd
+ 4cf2bf cambridge industries(group) co.,ltd.
4cf45b blue clover devices
+ 4cf55b huawei technologies co.,ltd
+ 4cf5a0 scalable network technologies inc
4cf737 samji electronics co., ltd
+ 4cf95d huawei technologies co.,ltd
+ 4cfaca cambridge industries(group) co.,ltd.
+ 4cfb45 huawei technologies co.,ltd
+ 4cfbf4 optimal audio ltd
+ 4cfbfe sercomm japan corporation
+ 4cfcaa tesla,inc.
+ 4cff12 fuze entertainment co., ltd
+ 500084 siemens canada
50008c hong kong telecommunications (hkt) limited
- 5001bb samsung electronics
+ 50016b huawei technologies co.,ltd
+ 5001bb samsung electronics co.,ltd
+ 5001d9 huawei technologies co.,ltd
+ 500291 espressif inc.
+ 5004b8 huawei technologies co.,ltd
50053d cywee group ltd
- 500604 cisco
+ 500604 cisco systems, inc
+ 5006ab cisco systems, inc
+ 500959 technicolor ch usa inc.
500b32 foxda technology industrial(shenzhen)co.,ltd
+ 500b91 ieee registration authority
500e6d trafficcast international
+ 500f80 cisco systems, inc
+ 500ff5 tenda technology co.,ltd.dongguan branch
5011eb silvernet ltd
- 5017ff cisco
+ 501395 sichuan ai-link technology co., ltd.
+ 501408 ainet
+ 501479 irobot corporation
+ 5014b5 richfit information technology co., ltd
+ 5017ff cisco systems, inc
+ 50184c platina systems inc.
+ 501aa5 gn netcom a/s
501ac5 microsoft
- 501cbf cisco
+ 501b32 taicang t&w electronics
+ 501cb0 cisco systems, inc
+ 501cbf cisco systems, inc
+ 501d93 huawei technologies co.,ltd
+ 501e2d streamunlimited engineering gmbh
+ 501fc6 apple, inc.
50206b emerson climate technologies transportation solutions
+ 5021ec huawei device co., ltd.
502267 pixelink
50252b nethra imaging incorporated
502690 fujitsu limited
5027c7 technart co.,ltd
+ 502873 huawei device co., ltd.
+ 50294d nanjing iot sensor technology co,ltd
+ 5029f5 guangdong oppo mobile telecommunications corp.,ltd
502a7e smart electronic gmbh
502a8b telekom research and development sdn bhd
+ 502b73 tenda technology co.,ltd.dongguan branch
+ 502b98 es-tech international
+ 502cc6 gree electric appliances, inc. of zhuhai
502d1d nokia corporation
502da2 intel corporate
+ 502dbb gd midea air-conditioning equipment co.,ltd.
502df4 phytec messtechnik gmbh
+ 502dfb igshare co., ltd.
502e5c htc corporation
502ece asahi electronics co.,ltd
+ 502f9b intel corporate
+ 502fa8 cisco systems, inc
+ 5031ad abb global industries and services private limited
+ 503237 apple, inc.
503275 samsung electronics co.,ltd
+ 50338b texas instruments
+ 5033f0 yichen (shenzhen) technology co.ltd
+ 50382f ase group chung-li
503955 cisco spvtg
+ 503a7d alphatech plc int’l co., ltd.
+ 503aa0 shenzhen mercury communication technologies co.,ltd.
503cc4 lenovo mobile communication technology ltd.
- 503de5 cisco systems, inc.
+ 503cea guangdong oppo mobile telecommunications corp.,ltd
+ 503da1 samsung electronics co.,ltd
+ 503dc6 xiaomi communications co ltd
+ 503de5 cisco systems, inc
+ 503e7c leishen intelligent system co.ltd
+ 503eaa tp-link technologies co.,ltd.
503f56 syncmold enterprise corp
+ 503f98 cmitech
+ 504061 nokia
+ 5041b9 i-o data device,inc.
+ 504348 thingsmatrix inc.
+ 5043b9 oktoinform rus
+ 5045f7 liuhe intelligence technology ltd.
+ 50464a huawei technologies co.,ltd
50465d asustek computer inc.
5048eb beijing haihejinsheng network technology co. ltd.
504a5e masimo corporation
- 504a6e netgear inc.,
+ 504a6e netgear
+ 504b5b controltronic gmbh
+ 504c7e the 41st institute of cetc
+ 504edc ping communication
504f94 loxone electronics gmbh
+ 50502a egardia
+ 505065 takt corporation
+ 5050a4 samsung electronics co.,ltd
+ 5050ce hangzhou dianyixia communication technology co. ltd.
+ 5051a9 texas instruments
+ 50523b nokia
+ 5052d2 hangzhou telin technologies co., limited
+ 505527 lg electronics (mobile communications)
+ 50558d china mobile iot company limited
505663 texas instruments
5056a8 jolla ltd
5056bf samsung electronics co.,ltd
- 5057a8 cisco systems, inc.
+ 50579c seiko epson corporation
+ 5057a8 cisco systems, inc
505800 wytec international, inc.
+ 50584f waytotec,inc.
+ 505967 intent solutions inc
505ac6 guangdong super telecom co.,ltd.
+ 505bc2 liteon technology corporation
+ 505dac huawei technologies co.,ltd
+ 505fb5 askey computer corp.
506028 xirrus inc.
- 506184 avaya, inc
+ 506184 avaya inc
+ 5061bf cisco systems, inc
5061d6 indu-sol gmbh
+ 5061f6 universal electronics, inc.
+ 506255 ieee registration authority
506313 hon hai precision ind. co.,ltd.
+ 50642b xiaomi electronics,co.,ltd
506441 greenlee
+ 506583 texas instruments
+ 5065f3 hewlett packard
+ 506787 planet networks
+ 5067ae cisco systems, inc
5067f0 zyxel communications corporation
+ 50680a huawei technologies co.,ltd
+ 506a03 netgear
+ 506b4b mellanox technologies, inc.
+ 506b8d nutanix
+ 506cbe innosilicontechnology ltd
+ 506e92 innocent technology co., ltd.
+ 506f77 huawei technologies co.,ltd
+ 506f98 sehaj synergy technologies private limited
506f9a wi-fi alliance
+ 507043 bskyb ltd
5070e5 he shan world fair electronics technology limited
+ 507224 texas instruments
50724d beg brueck electronic gmbh
+ 5075f1 arris group, inc.
507691 tekpea, inc.
5076a6 ecil informatica ind. com. ltda
+ 5076af intel corporate
+ 507705 samsung electronics co.,ltd
+ 5078b3 zte corporation
50795b interexport telecomunicaciones s.a.
+ 507a55 apple, inc.
+ 507ac5 apple, inc.
+ 507b9d lcfc(hefei) electronics technology co., ltd
507d02 biodit
507e5d arcadyan technology corporation
+ 50804a quectel wireless solutions co., ltd.
+ 5082d5 apple, inc.
508569 samsung electronics co.,ltd
+ 508789 cisco systems, inc
5087b8 nuvyyo inc
+ 508965 shenzhen mercury communication technologies co.,ltd.
+ 508a0f shenzhen fise technology holding co.,ltd.
508a42 uptmate technology co., ltd
508acb shenzhen maxmade technology co., ltd.
508c77 dirmeier schanktechnik gmbh &co kg
+ 508cb1 texas instruments
+ 508cf5 china mobile group device co.,ltd.
508d6f chahoo limited
+ 508e49 xiaomi communications co ltd
+ 508f4c xiaomi communications co ltd
+ 5092b9 samsung electronics co.,ltd
50934f gradual tecnologia ltda.
+ 509551 arris group, inc.
+ 509707 xiamen paperang technology co.,ltd.
+ 509744 integrated device technology (malaysia) sdn. bhd.
509772 westinghouse digital
+ 509839 xiaomi communications co ltd
509871 inventum technologies private limited
- 509f27 huawei technologies co., ltd
+ 5098b8 new h3c technologies co., ltd
+ 5098f3 rheem australia pty ltd
+ 509a46 safetrust inc
+ 509a4c dell inc.
+ 509ea7 samsung electronics co.,ltd
+ 509f27 huawei technologies co.,ltd
+ 509f3b oi electric co.,ltd
+ 50a009 xiaomi communications co ltd
50a054 actineon
+ 50a0a4 nokia
50a0bf alba fiber systems inc.
+ 50a132 shenzhen miaoming intelligent technology co.,ltd
50a4c8 samsung electronics co.,ltd
+ 50a4d0 ieee registration authority
+ 50a5dc arris group, inc.
+ 50a67f apple, inc.
50a6e3 david clark company
50a715 aboundi, inc.
+ 50a72b huawei technologies co.,ltd
50a733 ruckus wireless
+ 50a83a s mobile devices limited
+ 50a9de smartcom - bulgaria ad
+ 50ab3e qibixx ag
50abbf hoseo telecom
+ 50ad71 tessolve semiconductor private limited
+ 50ad92 nx technologies
+ 50add5 dynalec corporation
+ 50ae86 linkintec co., ltd
+ 50af4d zte corporation
50af73 shenzhen bitland information technology co., ltd.
+ 50b363 digitron da amazonia s/a
50b695 micropoint biotechnologies,inc.
- 50b7c3 samsung electronics co., ltd
+ 50b7c3 samsung electronics co.,ltd
50b888 wi2be tecnologia s/a
50b8a2 imtech technologies llc,
+ 50bc96 apple, inc.
+ 50bd5f tp-link technologies co.,ltd.
50c006 carmanah signs
50c271 securetech inc
+ 50c2ed gn audio a/s
+ 50c3a2 nfore technology co.,ltd.
+ 50c4dd buffalo.inc
50c58d juniper networks
+ 50c68e biwin semiconductor (hk) company limted
+ 50c6ad fiberhome telecommunication technologies co.,ltd
+ 50c709 juniper networks
50c7bf tp-link technologies co.,ltd.
+ 50c8e5 samsung electronics co.,ltd
50c971 gn netcom a/s
- 50c9a0 skipper electronics as
- 50ccf8 samsung electro mechanics
+ 50c9a0 skipper as
+ 50ccf8 samsung electro mechanics co., ltd.
+ 50cd22 avaya inc
50cd32 nanjing chaoran science & technology co.,ltd.
- 50ce75 measy electronics ltd
+ 50ce75 measy electronics co., ltd.
+ 50cee3 gigafirm.co.ltd
+ 50d213 cvilux corporation
50d274 steffes corporation
+ 50d2f5 beijing xiaomi mobile software co., ltd
+ 50d37f yu fly mikly way science and technology co., ltd.
+ 50d4f7 tp-link technologies co.,ltd.
+ 50d59c thai habel industrial co., ltd.
50d6d7 takahata precision
+ 50d753 conelcom gmbh
+ 50da00 hangzhou h3c technologies co., limited
+ 50db3f shenzhen gongjin electronics co.,lt
+ 50dce7 amazon technologies inc.
+ 50dcfc ecocom
+ 50dd4f automation components, inc
+ 50de06 apple, inc.
+ 50df95 lytx
+ 50e039 zyxel communications corporation
+ 50e085 intel corporate
50e0c7 turcontrolsystme ag
- 50e14a
+ 50e0ef nokia
+ 50e14a private
+ 50e24e zte corporation
50e549 giga-byte technology co.,ltd.
- 50ead6 apple
- 50eb1a brocade communications systems, inc.
+ 50e666 shenzhen techtion electronics co., ltd.
+ 50e971 jibo, inc.
+ 50ead6 apple, inc.
+ 50eb1a brocade communications systems llc
+ 50eb71 intel corporate
+ 50ec50 beijing xiaomi mobile software co., ltd
+ 50ed3c apple, inc.
50ed78 changzhou yongse infotech co.,ltd
50ed94 egatel sl
50f003 open stack, inc.
+ 50f0d3 samsung electronics co.,ltd
+ 50f14a texas instruments
+ 50f43c leeo inc
+ 50f4eb apple, inc.
50f520 samsung electronics co.,ltd
+ 50f5da amazon technologies inc.
50f61a kunshan jade technologies co., ltd.
+ 50f722 cisco systems, inc
+ 50f7ed huawei device co., ltd.
+ 50f8a5 ewbm co., ltd.
+ 50f958 huawei device co., ltd.
+ 50fa84 tp-link technologies co.,ltd.
50faab l-tek d.o.o.
+ 50fb19 chipsea technologies (shenzhen) corp.
50fc30 treehouse labs
50fc9f samsung electronics co.,ltd
+ 50fef2 sify technologies ltd
+ 50ff20 keenetic limited
+ 50ff99 ieee registration authority
+ 540237 teltronic ag
+ 540384 hongkong nano ic technologies co., ltd
5403f5 ebn technology corp.
540496 gigawave ltd
5404a6 asustek computer inc.
540536 vivago oy
54055f alcatel lucent
+ 540593 woori elec co.,ltd
+ 5405db lcfc(hefei) electronics technology co., ltd
+ 54068b ningbo deli kebei technology co.ltd
+ 540764 huawei device co., ltd.
+ 540910 apple, inc.
+ 540955 zte corporation
+ 54098d deister electronic gmbh
+ 540df9 huawei device co., ltd.
+ 540e2d vivo mobile communication co., ltd.
+ 540e58 guangdong oppo mobile telecommunications corp.,ltd
+ 541031 smarto
+ 5410ec microchip technology inc.
54112f sulzer pump solutions finland oy
54115f atamo pty ltd
+ 541310 huawei technologies co.,ltd
+ 541379 hon hai precision ind. co.,ltd.
+ 541473 wingtech group (hongkong)limited
+ 5414f3 intel corporate
+ 5414fd orbbec 3d technology international
+ 541589 mcs logic inc.
+ 5419c8 vivo mobile communication co., ltd.
541b5d techno-innov
541dfb freestyle energy ltd
+ 541e56 juniper networks
541fd5 advantage electronics
542018 tely labs
- 542160 resolution products
+ 54211d huawei device co., ltd.
+ 542160 alula
+ 54219d samsung electronics co.,ltd
5422f8 zte corporation
- 542696 apple
- 54271e azurewave technonloies, inc.
+ 5425ea huawei technologies co.,ltd
+ 542696 apple, inc.
+ 54271e azurewave technology inc.
+ 542758 motorola (wuhan) mobility technologies communication co., ltd.
+ 54276c jiangsu houge technology corp.
+ 54278d nxp (china) management ltd.
+ 542a1b sonos, inc.
542a9c lsy defense, llc.
+ 542aa2 alpha networks inc.
+ 542b57 night owl sp
+ 542b8d apple, inc.
+ 542bde new h3c technologies co., ltd
542cea protectron
542f89 euclid laboratories, inc.
+ 542f8a tellescom industria e comercio em telecomunicacao
543131 raster vision ltd
+ 5433cb apple, inc.
+ 5434ef huawei technologies co.,ltd
543530 hon hai precision ind. co.,ltd.
5435df symeo gmbh
+ 54369b 1verge internet technology (beijing) co., ltd.
543968 edgewater networks inc
5439df huawei technologies co.,ltd
+ 543ad6 samsung electronics co.,ltd
+ 543b30 duagon ag
543d37 ruckus wireless
+ 543e64 fiberhome telecommunication technologies co.,ltd
+ 5440ad samsung electronics co.,ltd
544249 sony corporation
544408 nokia corporation
- 54466b shenzhen cztic electronic technology co., ltd
+ 544617 zte corporation
+ 54466b shenzhen cztic electronic technology co., ltd
+ 544741 xcheng holding
+ 5447d3 tsat as
+ 544810 dell inc.
+ 54489c cdoubles electronics co. ltd.
+ 5448e6 beijing xiaomi mobile software co., ltd
+ 5449df peloton interactive, inc
+ 544a00 cisco systems, inc
544a05 wenglor sensoric gmbh
544a16 texas instruments
+ 544b8c juniper networks
+ 544e45 private
+ 544e90 apple, inc.
+ 54511b huawei technologies co.,ltd
+ 545146 amg systems ltd.
5453ed sony corporation
545414 digital rf corea, inc
+ 5454cf probedigital co.,ltd
+ 5455d5 huawei device co., ltd.
+ 545aa6 espressif inc.
545ebd nl technologies
545fa9 teracom limited
+ 546009 google, inc.
+ 546172 zodiac aerospace sas
5461ea zaplox ab
- 54724f apple
+ 5462e2 apple, inc.
+ 5464d9 sagemcom broadband sas
+ 546503 quectel wireless solutions co., ltd.
+ 5465de arris group, inc.
+ 54666c shenzhen youhua technology co., ltd
+ 546751 compal broadband networks, inc.
+ 5467e6 shenzhen mtc co ltd
+ 546ad8 elster water metering
+ 546c0e texas instruments
+ 546d52 topview optronics corp.
+ 5471dd huawei device co., ltd.
+ 54724f apple, inc.
+ 54725e unionman technology co.,ltd
547398 toyo electronics corporation
5474e6 webtech wireless
- 5475d0 cisco systems, inc.
- 54781a cisco
+ 547595 tp-link technologies co.,ltd.
+ 5475d0 cisco systems, inc
+ 54778a hewlett packard enterprise
+ 54781a cisco systems, inc
547975 nokia corporation
+ 547a52 cte international srl
+ 547c69 cisco systems, inc
+ 547dcd texas instruments
547f54 ingenico
547fa8 telco systems, s.r.o.
- 547fee cisco systems, inc.
+ 547fbc iodyne
+ 547fee cisco systems, inc
+ 548028 hewlett packard enterprise
+ 54812d pax computer technology(shenzhen) ltd.
5481ad eagle research corporation
+ 54833a zyxel communications corporation
54847b digital devices gmbh
- 54880e samsung electro mechanics co., ltd.
+ 5484dc zte corporation
+ 5486bc cisco systems, inc
+ 54880e samsung electro-mechanics(thailand)
+ 5488de cisco systems, inc
548922 zelfy inc
548998 huawei technologies co.,ltd
+ 548aba cisco systems, inc
+ 548ca0 liteon technology corporation
+ 548d5a intel corporate
+ 549209 huawei technologies co.,ltd
5492be samsung electronics co.,ltd
549359 shenzhen twowing technologies co.,ltd.
549478 silvershore technology partners
+ 549963 apple, inc.
+ 549a11 ieee registration authority
549a16 uzushio electric co.,ltd.
- 549b12 samsung electronics
+ 549a4c guangdong homecare technology co.,ltd.
+ 549b12 samsung electronics co.,ltd
+ 549b72 ericsson ab
+ 549c27 plasma cloud limited
549d85 eneraccess inc
+ 549f13 apple, inc.
+ 549f35 dell inc.
+ 549fae ibase gaming inc
+ 549fc6 cisco systems, inc
54a04f t-mac technologies ltd
+ 54a050 asustek computer inc.
+ 54a274 cisco systems, inc
54a31b shenzhen linkworld technology co,.ltd
- 54a51b shenzhen huawei communication technologies co., ltd
+ 54a3fa bqt solutions (australia)pty ltd
+ 54a493 ieee registration authority
+ 54a51b huawei technologies co.,ltd
54a54b nsc communications siberia ltd
54a619 alcatel-lucent shanghai bell co., ltd
+ 54a65c technicolor ch usa inc.
+ 54a6db huawei device co., ltd.
+ 54a703 tp-link technologies co.,ltd.
54a9d4 minibar systems
- 54ae27 apple
+ 54ab3a quanta computer inc.
+ 54ae27 apple, inc.
+ 54aed0 dasan networks, inc.
+ 54b121 huawei technologies co.,ltd
+ 54b203 pegatron corporation
+ 54b56c xi'an novastar tech co., ltd
54b620 suhdol e&c co.ltd.
+ 54b753 hunan fenghui yinjia science and technology co.,ltd
+ 54b7e5 rayson technology co., ltd.
+ 54b802 samsung electronics co.,ltd
+ 54b80a d-link international
+ 54bad6 huawei technologies co.,ltd
+ 54bd79 samsung electronics co.,ltd
+ 54be53 zte corporation
54bef7 pegatron corporation
+ 54bf64 dell inc.
+ 54c33e ciena corporation
+ 54c415 hangzhou hikvision digital technology co.,ltd.
+ 54c57a sunnovo international limited
54c80f tp-link technologies co.,ltd.
+ 54c9df fn-link technology limited
+ 54cd10 panasonic mobile communications co.,ltd.
54cda7 fujian shenzhou electronic co.,ltd
54cdee shenzhen apexis electronic co.,ltd
+ 54ce69 hikari trading co.,ltd.
+ 54d0b4 xiamen four-faith communication technology co.,ltd
54d0ed axim communications
54d163 max-tech,inc
54d1b0 universal laser systems, inc
+ 54d272 nuki home solutions gmbh
54d46f cisco spvtg
+ 54d751 proximus
+ 54d9c6 huawei device co., ltd.
+ 54d9e4 brilliantts co., ltd
+ 54dba2 fibrain
+ 54dc1d yulong computer telecommunication scientific (shenzhen) co.,ltd
+ 54ded0 sevio srl
+ 54df00 ulterius technologies, llc
+ 54df24 fiberhome telecommunication technologies co.,ltd
54df63 intrakey technologies gmbh
+ 54e019 ring llc
54e032 juniper networks
- 54e2e0 pace plc
+ 54e061 sichuan tianyi comheart telecomco., ltd
+ 54e140 ingenico
+ 54e1ad lcfc(hefei) electronics technology co., ltd
+ 54e2c8 dongguan aoyuan electronics technology co., ltd
+ 54e2e0 arris group, inc.
54e3b0 jvl industri elektronik
+ 54e3f6 alcatel-lucent
54e43a apple, inc.
+ 54e4a9 bhr tech gmbh
+ 54e4bd fn-link technology limited
+ 54e61b apple, inc.
54e63f shenzhen lingkeweier technology co., ltd.
- 54e6fc tp-link technologies co., ltd.
+ 54e6fc tp-link technologies co.,ltd.
+ 54e7d5 sun cupid technology (hk) ltd
54eaa8 apple, inc.
+ 54ec2f ruckus wireless
+ 54eda3 navdy, inc.
54ee75 wistron infocomm(kunshan)co.,ltd.
+ 54ef44 lumi united technology co., ltd
54ef92 shenzhen elink technology co., ltd
+ 54effe fullpower technologies, inc.
+ 54f15f sichuan ai-link technology co., ltd.
+ 54f201 samsung electronics co.,ltd
+ 54f294 huawei device co., ltd.
54f5b6 oriental pacific international limited
+ 54f607 huawei device co., ltd.
54f666 berthold technologies gmbh and co.kg
+ 54f6c5 fujian star-net communication co.,ltd
+ 54f6e2 huawei technologies co.,ltd
+ 54f876 abb ag
+ 54fa3e samsung electronics co.,ltd
+ 54fa96 nokia solutions and networks gmbh & co. kg
54fb58 wiseware, lda
+ 54fcf0 samsung electronics co.,ltd
54fdbf scheidt & bachmann gmbh
+ 54ff82 davit solution co.
+ 54ffcf mopria alliance
+ 5800bb juniper networks
+ 5800e3 liteon technology corporation
+ 5803fb hangzhou hikvision digital technology co.,ltd.
+ 580454 icomm hk limited
+ 5804cb tianjin huisun technology co.,ltd.
580528 labris networks
580556 elettronica gf s.r.l.
5808fa fiber optic & telecommunication inc.
- 580943
+ 580943 private
5809e5 kivic inc.
- 580a20 cisco
+ 580a20 cisco systems, inc
+ 58108c intelbras
+ 5810b7 infinix mobility limited
581243 acsip technology corp.
- 581626 avaya, inc
- 58170c sony ericsson mobile communications ab
+ 581626 avaya inc
+ 5816d7 alpsalpine co,.ltd
+ 58170c sony mobile communications inc
+ 5819f8 arris group, inc.
581cbd affinegy
581d91 advanced mobile telecom co.,ltd.
- 581faa apple
+ 581f28 huawei technologies co.,ltd
+ 581f67 open-m technology limited
+ 581faa apple, inc.
581fef tuttnaer ltd
+ 582059 xiaomi communications co ltd
+ 58208a ieee registration authority
+ 5820b1 hewlett packard
+ 582136 kmb systems, s.r.o.
+ 5821e9 twpi
+ 58238c technicolor ch usa inc.
+ 582429 google, inc.
+ 582575 huawei technologies co.,ltd
+ 58278c buffalo.inc
+ 582af7 huawei technologies co.,ltd
+ 582bdb pax ab
+ 582d34 qingping electronics (suzhou) co., ltd
582efe lighting science group
+ 582f40 nintendo co.,ltd
582f42 universal electric corporation
+ 583112 drust
+ 583277 reliance communications llc
58343b glovast technology ltd.
- 5835d9 cisco systems, inc.
+ 583526 deeplet technology corp
+ 58356b tecno mobile limited
+ 5835d9 cisco systems, inc
+ 583879 ricoh company, ltd.
+ 583bd9 fiberhome telecommunication technologies co.,ltd
583cc6 omneality ltd.
- 5842e4 sigma international general medical apparatus, llc.
+ 583f54 lg electronics (mobile communications)
+ 58404e apple, inc.
+ 584120 tp-link technologies co.,ltd.
+ 5842e4 baxter international inc
+ 584498 xiaomi communications co ltd
+ 58454c ericsson ab
58468f koncar electronics and informatics
- 5846e1 baxter healthcare
+ 5846e1 baxter international inc
+ 584704 shenzhen webridge technology co.,ltd
+ 584822 sony mobile communications inc
5848c0 coflec
+ 584925 e3 enterprise
58493b palo alto networks
5849ba chitai electronic corp.
584c19 chongqing guohong technology development company limited
@@ -14896,293 +18618,768 @@ exit
585076 linear equipamentos eletronicos sa
5850ab tls corporation
5850e6 best buy corporation
- 5855ca apple
+ 5850ed hangzhou hikvision digital technology co.,ltd.
+ 58528a mitsubishi electric corporation
+ 5853c0 beijing guang runtong technology development company co.,ltd
+ 5855ca apple, inc.
+ 5856c2 huawei technologies co.,ltd
5856e8 arris group, inc.
58570d danfoss solar inverters
+ 5859c2 extreme networks, inc.
+ 585ff6 zte corporation
+ 58605f huawei technologies co.,ltd
+ 5860d8 arris group, inc.
+ 586163 quantum networks (sg) pte. ltd.
+ 586356 fn-link technology limited
58639a tpl systemes
- 5865e6 infomark co., ltd.
+ 5865e6 infomark
5866ba hangzhou h3c technologies co., limited
- 58671a barnes&noble.com
+ 58671a barnes&noble
58677f clare controls inc.
- 58696c fujian ruijie networks co, ltd
+ 58685d tempo australia pty ltd
+ 58696c ruijie networks co.,ltd
5869f9 fusion transactive ltd.
+ 586ab1 hangzhou h3c technologies co., limited
+ 586b14 apple, inc.
+ 586c25 intel corporate
586d8f cisco-linksys, llc
- 586ed6
+ 586ed6 private
+ 5870c6 shanghai xiaoyi technology co., ltd.
587521 cjsc rtsoft
587675 beijing echo technologies co.,ltd
+ 5876c5 digi i's ltd
587a4d stonesoft corporation
- 587e61 hisense electric co., ltd
+ 587a62 texas instruments
+ 587a6a guangdong oppo mobile telecommunications corp.,ltd
+ 587be9 airpro technology india pvt. ltd
+ 587e61 qingdao hisense communications co.,ltd.
+ 587f57 apple, inc.
+ 587f66 huawei technologies co.,ltd
+ 587fb7 sonar industrial co., ltd.
587fc8 s2m
+ 58821d h. schomäcker gmbh
+ 5882a8 microsoft
5884e4 ip500 alliance e.v.
+ 58856e qsc ag
+ 5885a2 realme chongqing mobiletelecommunications corp ltd
+ 5885e9 realme chongqing mobiletelecommunications corp ltd
+ 588694 efm networks
58874c lite-on clean energy technology corp.
5887e2 shenzhen coship electronics co., ltd.
- 588d09 cisco systems, inc.
+ 588a5a dell inc.
+ 588bf3 zyxel communications corporation
+ 588d09 cisco systems, inc
+ 588d64 xi'an clevbee technology co.,ltd
+ 588e81 silicon laboratories
+ 589043 sagemcom broadband sas
5891cf intel corporate
58920d kinetic avionics limited
589396 ruckus wireless
+ 5893d8 texas instruments
58946b intel corporate
+ 5894a2 ketek gmbh
+ 5894ae huawei device co., ltd.
+ 5894b2 brainco
5894cf vertex standard lmr, inc.
- 58971e cisco
+ 5895d8 ieee registration authority
+ 58961d intel corporate
+ 589630 technicolor ch usa inc.
+ 58971e cisco systems, inc
+ 5897bd cisco systems, inc
589835 technicolor
58986f revolution display
+ 589b0b shineway technologies, inc.
589cfc freebsd foundation
- 58a2b5 lg electronics
+ 589ec6 gigaset communications gmbh
+ 58a023 intel corporate
+ 58a0cb tracknet, inc
+ 58a2b5 lg electronics (mobile communications)
+ 58a48e pixart imaging inc.
+ 58a639 samsung electronics co.,ltd
58a76f id corporation
- 58b035 apple
+ 58a839 intel corporate
+ 58a87b fitbit, inc.
+ 58ac78 cisco systems, inc
+ 58ae2b huawei device co., ltd.
+ 58aea8 huawei technologies co.,ltd
+ 58aef1 fiberhome telecommunication technologies co.,ltd
+ 58b035 apple, inc.
58b0d4 zunidata systems inc.
+ 58b0fe team eps gmbh
+ 58b10f samsung electronics co.,ltd
+ 58b3fc shenzhen rf-link technology co.,ltd.
+ 58b42d ysten technology co.,ltd
+ 58b568 securitas direct espaÑa, sau
+ 58b623 beijing xiaomi mobile software co., ltd
+ 58b633 ruckus wireless
58b961 solem electronique
58b9e1 crystalfontz america, inc.
- 58bc27 cisco systems, inc.
+ 58bad4 huawei technologies co.,ltd
+ 58bc27 cisco systems, inc
+ 58bc8f cognitive systems corp.
58bda3 nintendo co., ltd.
58bdf9 sigrand
- 58bfea cisco systems, inc.
+ 58be72 huawei technologies co.,ltd
+ 58bfea cisco systems, inc
+ 58c17a cambium networks limited
58c232 nec corporation
- 58c38b samsung electronics
+ 58c38b samsung electronics co.,ltd
+ 58c583 itel mobile limited
+ 58c5cb samsung electronics co.,ltd
+ 58c6f0 guangdong oppo mobile telecommunications corp.,ltd
+ 58c876 china mobile (hangzhou) information technology co., ltd.
+ 58c935 chiun mai communication systems, inc
+ 58cb52 google, inc.
58cf4b lufkin industries
+ 58d061 huawei technologies co.,ltd
58d071 bw broadcast
58d08f ieee 1904.1 working group
+ 58d349 apple, inc.
+ 58d391 quectel wireless solutions co., ltd.
+ 58d50a murata manufacturing co., ltd.
+ 58d56e d-link international
+ 58d67a tcplink
58d6d3 dairy cheq inc
+ 58d759 huawei technologies co.,ltd
+ 58d9c3 motorola mobility llc, a lenovo company
+ 58d9d5 tenda technology co.,ltd.dongguan branch
+ 58db15 tecno mobile limited
58db8d fast co., ltd.
+ 58dc6d exceptional innovation, inc.
58e02c micro technic a/s
+ 58e16c ying hua information technology (shanghai)co., ltd
+ 58e28f apple, inc.
58e326 compass technologies inc.
58e476 centron communications technologies fujian co.,ltd
58e636 evrsafe technologies
+ 58e6ba apple, inc.
58e747 deltanet ag
58e808 autonics corporation
+ 58e873 hangzhou dangbei network tech.co.,ltd
+ 58e876 ieee registration authority
+ 58eafc ell-iot inc
58eb14 proteus digital health
58ece1 newport corporation
+ 58eced integrated device technology (malaysia) sdn. bhd.
58eece icon time systems
+ 58ef68 belkin international inc.
+ 58f102 blu products inc.
+ 58f2fc huawei device co., ltd.
58f387 hccp
+ 58f39c cisco systems, inc
+ 58f496 source chain
58f67b xia men unioncore technology ltd.
58f6bf kyoto university
+ 58f987 huawei technologies co.,ltd
58f98e secudos gmbh
- 58fd20 bravida sakerhet ab
+ 58fb84 intel corporate
+ 58fb96 ruckus wireless
+ 58fc20 altice labs s.a.
+ 58fc73 arria live media, inc.
+ 58fcdb ieee registration authority
+ 58fd20 systemhouse solutions ab
+ 58fdb1 lg electronics
+ 58fdbe shenzhen taikaida technology co., ltd
+ 5c0038 viasat group s.p.a.
5c026a applied vision corporation
+ 5c0272 silicon laboratories
+ 5c0339 huawei technologies co.,ltd
5c076f thought creator
- 5c0a5b samsung electro-mechanics co., ltd.
+ 5c0947 apple, inc.
+ 5c0979 huawei technologies co.,ltd
+ 5c0a5b samsung electro mechanics co., ltd.
+ 5c0bca tunstall nordic ab
+ 5c0c0e guizhou huaxintong semiconductor technology co ltd
5c0cbb celizion inc.
- 5c0e8b motorola
+ 5c0e8b extreme networks, inc.
+ 5c0ffb amino communications ltd
+ 5c10c5 samsung electronics co.,ltd
5c1193 seal one ag
5c1437 thyssenkrupp aufzugswerke gmbh
+ 5c1515 advan
5c15e1 aidc technology (s) pte ltd
5c16c7 big switch networks
+ 5c1720 huawei device co., ltd.
5c1737 i-view now, llc.
- 5c17d3 lge
+ 5c17cf oneplus technology (shenzhen) co., ltd
+ 5c17d3 lge
5c18b5 talon communications
+ 5c1a6f cambridge industries(group) co.,ltd.
+ 5c1cb9 vivo mobile communication co., ltd.
+ 5c1dd9 apple, inc.
5c20d0 asoni communication co., ltd.
5c22c4 dae eun eletronics co., ltd
+ 5c2316 squirrels research labs llc
+ 5c2443 o-sung telecom co., ltd.
5c2479 baltech ag
5c254c avire global pte ltd
5c260a dell inc.
- 5c2aef open access pty ltd
+ 5c2623 wavelynx technologies corporation
+ 5c27d4 shenzhen qihu intelligent technology company limited
+ 5c2aef r2p asia-pacific pty ltd
+ 5c2bf5 vivint wireless inc.
+ 5c2e59 samsung electronics co.,ltd
+ 5c2ed2 abc(xisheng) electronics co.,ltd
5c313e texas instruments
+ 5c32c5 teracom ltd.
5c3327 spazio italia srl
5c335c swissphone telecom ag
- 5c338e alpha networkc inc.
- 5c353b compal broadband networks inc.
+ 5c338e alpha networks inc.
+ 5c3400 hisense electric co.,ltd
+ 5c353b compal broadband networks, inc.
5c35da there corporation oy
- 5c36b8 tcl king electrical appliances (huizhou) ltd.
+ 5c36b8 tcl king electrical appliances (huizhou) co., ltd
5c38e0 shanghai super electronics technology co.,ltd
+ 5c3a3d zte corporation
+ 5c3a45 chongqing fugui electronics co.,ltd.
+ 5c3b35 gehirn inc.
5c3c27 samsung electronics co.,ltd
5c4058 jefferson audio video systems, inc.
+ 5c415a amazon.com, llc
+ 5c41e7 wiatec international ltd.
5c43d2 hazemeyer
+ 5c443e skullcandy
+ 5c4527 juniper networks
+ 5c4979 avm audiovisuelles marketing und computersysteme gmbh
+ 5c497d samsung electronics co.,ltd
+ 5c4a1f sichuan tianyi comheart telecomco., ltd
5c4a26 enguity technology corp
- 5c4ca9 shenzhen huawei communication technologies co., ltd
- 5c5015 cisco systems, inc.
+ 5c4ca9 huawei technologies co.,ltd
+ 5c5015 cisco systems, inc
5c514f intel corporate
+ 5c5181 samsung electronics co.,ltd
+ 5c5188 motorola mobility llc, a lenovo company
+ 5c521e nintendo co.,ltd
+ 5c546d huawei technologies co.,ltd
+ 5c5578 iryx corp
+ 5c56a4 wanan hongsheng electronic co.ltd
5c56ed 3pleplay electronics private limited
5c571a arris group, inc.
5c57c8 nokia corporation
- 5c5948 apple
+ 5c5819 jingsheng technology co., ltd.
+ 5c5948 apple, inc.
+ 5c5ac7 cisco systems, inc
+ 5c5aea ford
+ 5c5b35 mist systems, inc.
+ 5c5bc2 yik corporation
5c5eab juniper networks
- 5c63bf tp-link technologies co., ltd.
+ 5c5f67 intel corporate
+ 5c6199 cloud network technology singapore pte. ltd.
+ 5c625a canon inc.
+ 5c63bf tp-link technologies co.,ltd.
+ 5c63c9 intellithings ltd.
+ 5c647a huawei technologies co.,ltd
+ 5c648e zyxel communications corporation
+ 5c666c guangdong oppo mobile telecommunications corp.,ltd
+ 5c6776 ids imaging development systems gmbh
+ 5c68d0 aurora innovation inc.
5c6984 nuvico
- 5c6a7d kentkart ege elektronik san. ve tic. ltd. sti.
+ 5c6a7d kentkart ege elektronik san. ve tic. ltd. sti.
+ 5c6a80 zyxel communications corporation
5c6b32 texas instruments
+ 5c6b4f hello inc.
+ 5c6bd7 foshan viomi electric appliance technology co. ltd.
5c6d20 hon hai precision ind. co.,ltd.
5c6f4f s.a. sistel
+ 5c6f69 broadcom limited
+ 5c7017 apple, inc.
+ 5c70a3 lg electronics (mobile communications)
+ 5c710d cisco systems, inc
+ 5c75af fitbit, inc.
+ 5c7695 technicolor ch usa inc.
5c7757 haivision network video
- 5c7d5e huawei technologies co., ltd
+ 5c7776 tct mobile ltd
+ 5c78f8 huawei device co., ltd.
+ 5c7d5e huawei technologies co.,ltd
+ 5c7d7d technicolor ch usa inc.
+ 5c80b6 intel corporate
+ 5c81a7 network devices pty ltd
+ 5c838f cisco systems, inc
5c8486 brightsource industries israel ltd
+ 5c857e ieee registration authority
+ 5c85f8 shenzhen kaifa technology co.,ltd.
+ 5c8613 beijing zhoenet technology co., ltd
5c864a secret labs llc
+ 5c865c samsung electronics co.,ltd
+ 5c86c1 dongguan solum electronics co.,ltd
+ 5c8730 apple, inc.
5c8778 cybertelbridge co.,ltd
+ 5c879c intel corporate
+ 5c8816 rockwell automation
+ 5c899a tp-link technologies co.,ltd.
5c89d4 beijing banner electric co.,ltd
- 5c95ae apple
- 5c969d apple
+ 5c8a38 hewlett packard
+ 5c8d2d shanghai wellpay information technology co., ltd
+ 5c8d4e apple, inc.
+ 5c8fe0 arris group, inc.
+ 5c9012 owl cyber defense solutions, llc
+ 5c9157 huawei technologies co.,ltd
+ 5c91fd jaewoncnc
+ 5c925e zioncom electronics (shenzhen) ltd.
+ 5c93a2 liteon technology corporation
+ 5c95ae apple, inc.
+ 5c9656 azurewave technology inc.
+ 5c966a rtnet
+ 5c969d apple, inc.
+ 5c97f3 apple, inc.
+ 5c9960 samsung electronics co.,ltd
+ 5c9aa1 huawei device co., ltd.
5c9ad8 fujitsu limited
- 5ca39d samsung electro-mechanics co., ltd.
+ 5ca176 sichuan tianyi comheart telecomco., ltd
+ 5ca178 tabletop media (dba ziosk)
+ 5ca1e0 embedway technologies
+ 5ca39d samsung electro mechanics co., ltd.
5ca3eb lokel s.r.o.
- 5ca48a cisco
+ 5ca48a cisco systems, inc
+ 5ca4a4 fiberhome telecommunication technologies co.,ltd
+ 5ca5bc eero inc.
+ 5ca62d cisco systems, inc
+ 5ca86a huawei technologies co.,ltd
+ 5ca933 luma home
+ 5caafd sonos, inc.
5cac4c hon hai precision ind. co.,ltd.
- 5cb524 sony ericsson mobile communications ab
+ 5cad76 shenzhen tcl new technology co., ltd
+ 5cadcf apple, inc.
+ 5caf06 lg electronics (mobile communications)
+ 5cb00a huawei technologies co.,ltd
+ 5cb066 arris group, inc.
+ 5cb13e sagemcom broadband sas
+ 5cb15f oceanblue cloud technology limited
+ 5cb29e asco power technologies
+ 5cb395 huawei technologies co.,ltd
+ 5cb3f6 human, incorporated
+ 5cb43e huawei technologies co.,ltd
+ 5cb4e2 inspur software group ltd.
+ 5cb524 sony mobile communications inc
+ 5cb559 cnex labs
+ 5cb6cc novacomm technologies inc.
+ 5cb8cb allis communications
+ 5cb901 hewlett packard
+ 5cba2c hewlett packard enterprise
+ 5cba37 microsoft corporation
+ 5cbaef chongqing fugui electronics co.,ltd.
+ 5cbd9a huawei device co., ltd.
5cbd9e hongkong miracle eagle technology(group) limited
+ 5cc0a0 huawei technologies co.,ltd
+ 5cc1d7 samsung electronics co.,ltd
5cc213 fr. sauter ag
+ 5cc307 huawei technologies co.,ltd
+ 5cc336 ittim
5cc5d4 intel corporate
- 5cc6d0 skyworth digital technology(shenzhen)co.ltd.
+ 5cc6d0 skyworth digital technology(shenzhen) co.,ltd
+ 5cc6e9 edifier international
+ 5cc7d7 azroad technology company limited
+ 5cc8e3 shintec hozumi co.ltd.
+ 5cc999 new h3c technologies co., ltd
5cc9d3 palladium energy eletronica da amazonia ltda
+ 5cca1a microsoft mobile oy
5cca32 theben ag
+ 5ccad3 chipsea technologies (shenzhen) corp.
+ 5ccb99 samsung electronics co.,ltd
+ 5ccbca fujian star-net communication co.,ltd
+ 5ccca0 gridwiz inc.
+ 5cccff techroutes network pvt ltd
+ 5ccd5b intel corporate
+ 5ccd7c meizu technology co.,ltd.
5ccead cdyne corporation
+ 5ccf7f espressif inc.
5cd135 xtreme power systems
+ 5cd20b yytek co., ltd.
5cd2e4 intel corporate
5cd41b uczoon technology co., ltd
5cd4ab zektor
+ 5cd5b5 shenzhen wisiyilink technology co.,ltd
5cd61f qardio, inc
+ 5cd89e huawei device co., ltd.
5cd998 d-link corporation
5cdad4 murata manufacturing co., ltd.
+ 5cdc96 arcadyan technology corporation
5cdd70 hangzhou h3c technologies co., limited
+ 5cde34 shenzhen mercury communication technologies co.,ltd.
+ 5ce0c5 intel corporate
5ce0ca feitian united (beijing) system technology co., ltd.
5ce0f6 nic.br- nucleo de informacao e coordenacao do ponto br
+ 5ce176 cisco systems, inc
5ce223 delphin technology ag
5ce286 nortel networks
+ 5ce28c zyxel communications corporation
5ce2f4 acsip technology corp.
+ 5ce30e arris group, inc.
+ 5ce3b6 fiberhome telecommunication technologies co.,ltd
+ 5ce50c beijing xiaomi mobile software co., ltd
+ 5ce747 huawei technologies co.,ltd
+ 5ce7a0 nokia
5ce7bf new singularity international technical development co.,ltd
- 5ce8eb samsung electronics
+ 5ce883 huawei technologies co.,ltd
+ 5ce8b7 oraimo technology limited
+ 5ce8eb samsung electronics co.,ltd
+ 5cea1d hon hai precision ind. co.,ltd.
5ceb4e r. stahl hmi systems gmbh
+ 5ceb68 cheerstar technology co., ltd
+ 5ced8c hewlett packard enterprise
5cee79 global digitech co ltd
5cf207 speco technologies
+ 5cf286 ieee registration authority
5cf370 cc&c technologies, inc
5cf3fc ibm corp
- 5cf4ab zyxel communications corp
+ 5cf4ab zyxel communications corporation
5cf50d institute of microelectronic applications
+ 5cf5da apple, inc.
5cf6dc samsung electronics co.,ltd
- 5cf8a1 murata manufactuaring co.,ltd.
- 5cf938 apple, inc
- 5cf9dd dell inc
+ 5cf7c3 syntech (hk) technology limited
+ 5cf7e6 apple, inc.
+ 5cf821 texas instruments
+ 5cf8a1 murata manufacturing co., ltd.
+ 5cf938 apple, inc.
+ 5cf96a huawei technologies co.,ltd
+ 5cf9dd dell inc.
+ 5cf9f0 atomos engineering p/l
+ 5cf9fd taicang t&w electronics
+ 5cfafb acubit
+ 5cfb3a chongqing fugui electronics co.,ltd.
+ 5cfb7c shenzhen jingxun software telecommunication technology co.,ltd
+ 5cfc66 cisco systems, inc
+ 5cfe9e wiwynn corporation tainan branch
5cff35 wistron corporation
5cffff shenzhen kezhonglong optoelectronic technology co., ltd
- 6002b4 wistron neweb corp.
- 600308 apple
+ 600194 espressif inc.
+ 600292 pegatron corporation
+ 6002b4 wistron neweb corporation
+ 600308 apple, inc.
600347 billion electric co. ltd.
+ 6003a6 inteno broadband technology ab
+ 600417 posbank co.,ltd
+ 60058a hitachi metals, ltd.
+ 60077c jala group
+ 600810 huawei technologies co.,ltd
+ 600837 ivvi scientific(nanchang)co.ltd
+ 6009c3 u-blox ag
+ 600b03 hangzhou h3c technologies co., limited
600f77 silverplus, inc
+ 6010a2 crompton instruments
601199 siama systems inc
- 601283 soluciones tecnologicas para la salud y el bienestar sa
+ 60123c huawei technologies co.,ltd
+ 601283 tsb real time location systems s.l.
+ 60128b canon inc.
+ 601466 zte corporation
+ 6014b3 cybertan technology inc.
+ 601592 ieee registration authority
6015c7 idatech
+ 601803 daikin air-conditioning (shanghai) co., ltd.
+ 60182e shenzhen protruly electronic ltd co.
+ 601888 zte corporation
+ 601895 dell inc.
60190c rramac
601929 voltronic power technology(shenzhen) corp.
+ 601970 huizhou qiaoxing electronics technology co., ltd.
+ 601971 arris group, inc.
601d0f midnite solar
+ 601d91 motorola mobility llc, a lenovo company
+ 601d9d sichuan ai-link technology co., ltd.
601e02 eltexalatau
- 602103 stcube.inc
- 6021c0 murata manufactuaring co.,ltd.
+ 602101 guangdong oppo mobile telecommunications corp.,ltd
+ 602103 i4vine, inc
+ 6021c0 murata manufacturing co., ltd.
+ 6023a4 sichuan ai-link technology co., ltd.
6024c1 jiangsu zhongxun electronic technology co., ltd
+ 60271c videor e. hartig gmbh
+ 6029d5 davolink inc.
602a54 cardiotek b.v.
602ad0 cisco spvtg
+ 602e20 huawei technologies co.,ltd
+ 6030d4 apple, inc.
+ 60313b sunnovo international limited
+ 603197 zyxel communications corporation
+ 6032b1 tp-link technologies co.,ltd.
6032f0 mplus technology
- 60334b apple
+ 60334b apple, inc.
603553 buwon technology
+ 603573 earda technologies co ltd
+ 6035c0 sfr
+ 603696 the sapling company
6036dd intel corporate
- 60380e alps electric co.,
+ 60380e alpsalpine co,.ltd
+ 6038e0 belkin international inc.
60391f abb ltd
+ 603a7c tp-link technologies co.,ltd.
+ 603cee lg electronics (mobile communications)
+ 603d26 technicolor ch usa inc.
+ 603e7b gafachi, inc.
+ 603eca cambridge medical robotics ltd
603fc5 cox co., ltd
+ 60427f shenzhen chuangwei-rgb electronics co.,ltd
+ 60447a water-i.d. gmbh
6044f5 easy digital ltd.
60455e liptel s.r.o.
6045bd microsoft
+ 6045cb asustek computer inc.
604616 xiamen vann intelligent co., ltd
+ 604762 beijing sensoro technology co.,ltd.
6047d4 forics electronic technology co., ltd.
+ 604826 newbridge technologies int. ltd.
+ 6049c1 avaya inc
604a1c suyin corporation
- 6052d0 facts engineering
+ 604baa magic leap, inc.
+ 6050c1 kinetek sports
+ 60512c tct mobile ltd
+ 6052d0 facts engineering
+ 605317 sandstone technologies
605464 eyedro green solutions inc.
+ 6055f9 espressif inc.
+ 605661 ixecloud tech
605718 intel corporate
+ 60577d eero inc.
+ 605bb4 azurewave technology inc.
+ 605e4f huawei device co., ltd.
+ 605f8d eero inc.
60601f sz dji technology co.,ltd
+ 6061df z-meta research llc
+ 60634c d-link international
+ 6063f9 ciholas, inc.
6063fd transcend communication beijing co.,ltd.
+ 606405 texas instruments
+ 606453 aod co.,ltd.
6064a1 radiflow ltd.
606720 intel corporate
- 606944 apple, inc
+ 60684e samsung electronics co.,ltd
+ 606944 apple, inc.
60699b isepos gmbh
- 606bbd samsung electronics co., ltd
+ 606bbd samsung electronics co.,ltd
+ 606bff nintendo co.,ltd
+ 606c63 hitron technologies. inc
606c66 intel corporate
- 60735c cisco
+ 606d3c luxshare precision industry company limited
+ 606dc7 hon hai precision ind. co.,ltd.
+ 606ed0 seal ag
+ 607072 shenzhen hongde smart link technology co., ltd
+ 6070c0 apple, inc.
+ 60720b blu products inc
+ 60735c cisco systems, inc
+ 6073bc zte corporation
60748d atmaca elektronik
607688 velodyne
- 60812b custom control concepts
+ 607771 texas instruments
+ 6077e2 samsung electronics co.,ltd
+ 607ea4 shanghai imilab technology co.ltd
+ 607ec9 apple, inc.
+ 607ecd huawei technologies co.,ltd
+ 607edd microsoft mobile oy
+ 60812b astronics custom control concepts
+ 6081f9 helium systems, inc
+ 608334 huawei technologies co.,ltd
+ 608373 apple, inc.
6083b2 gkware e.k.
60843b soladigm, inc.
+ 6084bd buffalo.inc
608645 avery weigh-tronix, llc
60893c thermo fisher scientific p.o.a.
6089b1 key digital systems
6089b7 kael mÜhendİslİk elektronİk tİcaret sanayİ lİmİted Şİrketİ
+ 608b0e apple, inc.
608c2b hanson technology
+ 608c4a apple, inc.
+ 608cdf private
+ 608ce6 arris group, inc.
608d17 sentrus government systems division, inc
+ 608d26 arcadyan corporation
+ 608e08 samsung electronics co.,ltd
+ 608f5c samsung electronics co.,ltd
609084 dssd inc
- 609217 apple
- 609620
+ 6091f3 vivo mobile communication co., ltd.
+ 609217 apple, inc.
+ 6092f5 arris group, inc.
+ 6095ce ieee registration authority
+ 609620 private
+ 6097dd microsys electronics gmbh
+ 609813 shanghai visking digital technology co. ltd
+ 609866 texas instruments
+ 6099d1 vuzix / lenovo
609aa4 gvi security inc.
+ 609ac1 apple, inc.
+ 609b2d jmacs japan co., ltd.
+ 609bc8 hipad intelligent technology co., ltd.
+ 609c9f brocade communications systems llc
609e64 vivonic gmbh
609f9d cloudswitch
60a10a samsung electronics co.,ltd
+ 60a11e wuhan maxsine electric co.,ltd.
+ 60a37d apple, inc.
+ 60a423 silicon laboratories
60a44c asustek computer inc.
+ 60a4b7 tp-link corporation limited
+ 60a4d0 samsung electronics co.,ltd
+ 60a730 shenzhen yipinfang internet technology co.,ltd
+ 60a751 huawei device co., ltd.
+ 60a8fe nokia solutions and networks gmbh & co. kg
60a9b0 merchandising technologies, inc
+ 60aaef huawei device co., ltd.
+ 60ab14 lg innotek
+ 60ab67 xiaomi communications co ltd
+ 60abd2 bose corporation
+ 60acc8 kunteng inc.
+ 60af6d samsung electronics co.,ltd
60b185 ath system
+ 60b387 synergics technologies gmbh
60b3c4 elber srl
+ 60b4f7 plume design inc
60b606 phorus
- 60b617 fiberhome telecommunication tech.co.,ltd.
+ 60b617 fiberhome telecommunication technologies co.,ltd
+ 60b76e google, inc.
60b933 deutron electronics corp.
60b982 ro.ve.r. laboratories s.p.a.
+ 60ba18 nextlap gmbh
60bb0c beijing huaqinworld technology co,ltd
60bc4c ewm hightec welding gmbh
60bd91 move innovation
- 60beb5 motorola mobility llc
+ 60beb5 motorola mobility llc, a lenovo company
+ 60bec4 apple, inc.
+ 60c0bf on semiconductor
+ 60c1cb fujian great power plc equipment co.,ltd
60c397 2wire inc
- 60c547 apple
+ 60c547 apple, inc.
60c5a8 beijing lt honway technology co.,ltd
+ 60c5ad samsung electronics co.,ltd
+ 60c5e6 skullcandy
+ 60c658 phytronix co.,ltd.
+ 60c798 verifone
60c980 trymus
60cbfb airscape inc.
+ 60cda9 abloomy
60cdc5 taiwan carol electronics., ltd
+ 60ce86 sercomm corporation.
+ 60ce92 the refined industry company limited
+ 60d02c ruckus wireless
60d0a9 samsung electronics co.,ltd
60d1aa vishal telecommunications pvt ltd
+ 60d21c sunnovo international limited
+ 60d248 arris group, inc.
+ 60d262 tzukuri pty ltd
60d2b9 realand bio co., ltd.
+ 60d2dd shenzhen baitong putian technology co.,ltd.
60d30a quatius limited
+ 60d4e9 guangdong oppo mobile telecommunications corp.,ltd
+ 60d755 huawei technologies co.,ltd
+ 60d7e3 ieee registration authority
60d819 hon hai precision ind. co.,ltd.
- 60d9c7 apple
+ 60d89c hmd global oy
+ 60d9a0 lenovo mobile communication technology ltd.
+ 60d9c7 apple, inc.
60da23 estech co.,ltd
+ 60da83 hangzhou h3c technologies co., limited
60db2a hns
+ 60db98 calix inc.
+ 60de35 gitsn, inc.
60de44 huawei technologies co.,ltd
+ 60def3 huawei technologies co.,ltd
60e00e shinsei electronics co ltd
60e327 tp-link technologies co.,ltd.
+ 60e3ac lg electronics (mobile communications)
+ 60e6bc sino-telecom technology co.,ltd.
+ 60e701 huawei technologies co.,ltd
+ 60e78a unisem
60e956 ayla networks, inc
+ 60eb5a asterfusion data technologies co.,ltd
60eb69 quanta computer inc.
+ 60ee5c shenzhen fast technologies co.,ltd
+ 60efc6 shenzhen chima technologies co limited
60f13d jablocom s.r.o.
+ 60f189 murata manufacturing co., ltd.
+ 60f18a huawei technologies co.,ltd
+ 60f262 intel corporate
60f281 tranwo technology co., ltd.
60f2ef visionvera international co., ltd.
60f3da logic way gmbh
+ 60f43a edifier international
+ 60f445 apple, inc.
60f494 hon hai precision ind. co.,ltd.
60f59c cru-dataport
60f673 terumo corporation
- 60facd apple
- 60fb42 apple
+ 60f677 intel corporate
+ 60f81d apple, inc.
+ 60fa9d huawei technologies co.,ltd
+ 60facd apple, inc.
+ 60fb42 apple, inc.
+ 60fd56 woorisystems co., ltd
60fe1e china palms telecom.ltd
- 60fe20 2 wire
- 60fec5 apple
+ 60fe20 2wire inc
+ 60fec5 apple, inc.
60fef9 thomas & betts
60ffdd c.e. electronics, inc
- 6400f1 cisco systems, inc.
+ 64002d powerlinq co., ltd
+ 64006a dell inc.
+ 6400f1 cisco systems, inc
+ 6402cb arris group, inc.
+ 64037f samsung electronics co.,ltd
6405be new light led
+ 6405e4 alpsalpine co .,ltd
+ 6405e9 shenzhen wayos technology crop., ltd.
+ 6407f6 samsung electronics co.,ltd
64094c beijing superbee wireless technology co.,ltd
+ 640980 xiaomi communications co ltd
+ 6409ac tct mobile ltd
640b4a digital telecom technology limited
+ 640bd7 apple, inc.
+ 640d22 lg electronics (mobile communications)
+ 640dce shenzhen mercury communication technologies co.,ltd.
+ 640de6 petra systems
640e36 taztag
640e94 pluribus networks, inc.
- 640f28 2wire
+ 640f28 2wire inc
641084 hexium technical development co., ltd.
- 64168d cisco systems, inc.
- 6416f0 shehzhen huawei communication technologies co., ltd.
- 641a22 heliospectra/woodhill investments
+ 641225 cisco systems, inc
+ 641236 technicolor ch usa inc.
+ 641269 arris group, inc.
+ 641331 bosch car multimedia (wuhu) co. ltd.
+ 64136c zte corporation
+ 6413ab huawei technologies co.,ltd
+ 641666 nest labs inc.
+ 64167f polycom
+ 64168d cisco systems, inc
+ 6416f0 huawei technologies co.,ltd
+ 641759 intellivision holdings, llc
+ 641a22 heliospectra ab
641c67 digibras industria do brasils/a
+ 641cae samsung electronics co.,ltd
+ 641cb0 samsung electronics co.,ltd
641e81 dowslake microsystems
- 64200c apple
+ 64200c apple, inc.
+ 64209f tilgin ab
+ 6420e0 t3 technology co., ltd.
642184 nippon denki kagaku co.,ltd
642216 shandong taixin electronic co.,ltd
+ 642315 huawei device co., ltd.
642400 xorcom ltd.
+ 64255e observint technologies, inc.
+ 642656 shenzhen fanweitai technology service co.,ltd
642737 hon hai precision ind. co.,ltd.
+ 642753 huawei device co., ltd.
+ 6429ed ao pkk milandr
+ 642b8a all best industrial co., ltd.
+ 642c0f vivo mobile communication co., ltd.
+ 642cac huawei technologies co.,ltd
642db7 seungil electronics
- 643150 hewlett-packard company
+ 643139 ieee registration authority
+ 643150 hewlett packard
64317e dexin corporation
+ 6432a8 intel corporate
+ 6433db texas instruments
643409 bitwave pte ltd
+ 64351c e-con systems india pvt ltd
+ 643ab1 sichuan tianyi comheart telecomco.,ltd
+ 643aea cisco systems, inc
+ 643e8c huawei technologies co.,ltd
643f5f exablaze
644214 swisscom energy solutions ag
644346 guangdong quick network computer co.,ltd
+ 6447e0 feitian technologies co., ltd
644bc3 shanghai woasis telecommunications ltd., co.
644bf0 caldigit, inc
+ 644c36 intel corporate
644d70 dspace gmbh
+ 644f42 jetter co., ltd.
644f74 lenus co., ltd.
+ 644fb0 hyunjin.com
+ 645106 hewlett packard
64517e long ben (dongguan) electronic technology co.,ltd.
645299 the chamberlain group, inc
64535d frauscher sensortechnik
@@ -15190,1544 +19387,4051 @@ exit
645563 intelight inc.
64557f nsfocus information technology co., ltd.
6455b1 arris group, inc.
- 645601 tp-link technologies co.,ltd
+ 645601 tp-link technologies co.,ltd.
+ 6458ad china mobile iot company limited
+ 6459f8 vodafone omnitel b.v.
645a04 chicony electronics co., ltd.
- 645dd7 shenzhen lifesense medical electronics co., ltd.
+ 645aed apple, inc.
+ 645cf3 parantek inc.
+ 645d86 intel corporate
+ 645d92 sichuan tianyi comheart telecomco.,ltd
+ 645dd7 shenzhen lifesense medical electronics co., ltd.
+ 645e10 huawei technologies co.,ltd
+ 645e2c iray technology co., ltd.
645ebe yahoo! japan
645fff nicolet neuro
+ 646038 hirschmann automation and control gmbh
+ 646184 velux
646223 cellient co., ltd.
+ 646266 ieee registration authority
+ 64628a evon gmbh
+ 64644a beijing xiaomi mobile software co., ltd
+ 64649b juniper networks
6465c0 nuvon, inc
- 6466b3 tp-link technologies co., ltd.
+ 646624 sagemcom broadband sas
+ 6466b3 tp-link technologies co.,ltd.
646707 beijing omnific technology, ltd.
- 64680c comtrend
+ 64680c comtrend corporation
+ 64694e texas instruments
6469bc hytera communications co .,ltd
+ 646a52 avaya inc
+ 646a74 auth-servers, llc
+ 646c80 chongqing fugui electronics co.,ltd.
+ 646cb2 samsung electronics co.,ltd
+ 646d6c huawei technologies co.,ltd
+ 646e69 liteon technology corporation
646e6c radio datacom llc
+ 646e97 tp-link technologies co.,ltd.
+ 646ee0 intel corporate
646eea iskratel d.o.o.
- 647002 tp-link technologies co., ltd.
+ 647002 tp-link technologies co.,ltd.
+ 647033 apple, inc.
6472d8 goowi technology co.,limited
+ 647366 shenzhen siera technology ltd
6473e2 arbiter systems, inc.
+ 6474f6 shooter detection systems
647657 innovative security designs
- 6476ba apple
+ 6476ba apple, inc.
+ 64777d hitron technologies. inc
647791 samsung electronics co.,ltd
+ 647924 huawei device co., ltd.
+ 6479a7 phison electronics corp.
+ 6479f0 intel corporate
+ 647bce samsung electronics co.,ltd
647bd4 texas instruments
- 647c34 ubee interactive corp.
+ 647c34 ubee interactive co., limited
647d81 yokota industrial co,.ltd
647fda tektelic communications inc.
64808b vg controls, inc.
648099 intel corporate
648125 alphatron marine bv
648788 juniper networks
- 6487d7 pirelli tyre s.p.a.
+ 6487d7 adb broadband italia
6488ff sichuan changhong electric ltd.
+ 64899a lg electronics (mobile communications)
+ 6489f1 samsung electronics co.,ltd
648d9e ivt electronic co.,ltd
- 64995d lge
+ 6490c1 beijing xiaomi mobile software co., ltd
+ 64956c lg electronics
+ 649714 eero inc.
+ 649829 integrated device technology (malaysia) sdn. bhd.
+ 64995d lge
649968 elentec
6499a0 ag elektronik ab
+ 649a08 shenzhen superelectron technology co.,ltd
+ 649a12 p2 mobile technologies limited
+ 649abe apple, inc.
649b24 v technology co., ltd.
- 649c81 qualcomm iskoot, inc.
+ 649c81 qualcomm inc.
649c8e texas instruments
- 649ef3 cisco systems, inc.
+ 649d99 fs com inc
+ 649ef3 cisco systems, inc
649ff7 kone oyj
- 64a0e7 cisco systems, inc.
+ 64a0e7 cisco systems, inc
+ 64a198 huawei device co., ltd.
+ 64a200 xiaomi communications co ltd
64a232 ooo samlight
+ 64a28a huawei device co., ltd.
+ 64a2f9 oneplus technology (shenzhen) co., ltd
64a341 wonderlan (beijing) technology co., ltd.
- 64a3cb apple
+ 64a3cb apple, inc.
+ 64a5c3 apple, inc.
+ 64a651 huawei technologies co.,ltd
+ 64a68f zhongshan readboy electronics co.,ltd
64a769 htc corporation
+ 64a7dd avaya inc
64a837 juni korea co., ltd
- 64ae0c cisco systems, inc.
+ 64a965 linkflow co., ltd.
+ 64ae0c cisco systems, inc
64ae88 polytec gmbh
+ 64aef1 qingdao hisense electronics co.,ltd.
+ 64b0a6 apple, inc.
+ 64b0e8 huawei device co., ltd.
+ 64b21d chengdu phycom tech co., ltd.
64b310 samsung electronics co.,ltd
- 64b370 powercomm solutons llc
+ 64b370 powercomm solutions llc
+ 64b473 xiaomi communications co ltd
+ 64b5c6 nintendo co.,ltd
+ 64b623 ccs care communication solutions gmbh
64b64a vivotech, inc.
- 64b9e8 apple
+ 64b853 samsung electronics co.,ltd
+ 64b9e8 apple, inc.
64babd sdj technologies, inc.
+ 64bc0c lg electronics (mobile communications)
64bc11 combiq ab
+ 64bc58 intel corporate
+ 64c2de lg electronics (mobile communications)
+ 64c354 avaya inc
+ 64c3d6 juniper networks
64c5aa south african broadcasting corporation
64c667 barnes&noble
64c6af axerra networks ltd
+ 64c753 apple, inc.
+ 64c901 inventec corporation
64c944 lark technologies, inc
+ 64cb5d sia teleset
+ 64cb9f tecno mobile limited
+ 64cba3 pointmobile
+ 64cc22 arcadyan corporation
+ 64cc2e xiaomi communications co ltd
+ 64ce6e sierra wireless
+ 64cfd9 texas instruments
64d02d next generation integration (ngi)
+ 64d154 routerboard.com
64d1a3 sitecom europe bv
64d241 keith & koep gmbh
- 64d4bd alps electric co.,ltd.
+ 64d2c4 apple, inc.
+ 64d4bd alpsalpine co,.ltd
64d4da intel corporate
- 64d814 cisco systems, inc.
+ 64d7c0 huawei device co., ltd.
+ 64d814 cisco systems, inc
64d912 solidica, inc.
- 64d989 cisco systems, inc.
+ 64d954 taicang t&w electronics
+ 64d989 cisco systems, inc
+ 64daa0 robert bosch smart home gmbh
64db18 openpattern
+ 64db43 motorola (wuhan) mobility technologies communication co., ltd.
+ 64db81 syszone co., ltd.
+ 64db8b hangzhou hikvision digital technology co.,ltd.
+ 64dba0 select comfort
64dc01 static systems group plc
+ 64dde9 xiaomi communications co ltd
64de1c kingnetic pte ltd
+ 64df10 jinglue semiconductor(sh) ltd.
+ 64dfe9 ateme
+ 64e003 hui zhou gaoshengda technology co.,ltd
+ 64e0ab unionman technology co.,ltd
64e161 dep corp.
+ 64e172 shenzhen qihoo intelligent technology co.,ltd
64e599 efm networks
64e625 woxu wireless co., ltd
- 64e682 apple
+ 64e682 apple, inc.
+ 64e7d8 samsung electronics co.,ltd
64e84f serialway communication technology co. ltd
+ 64e881 aruba, a hewlett packard enterprise company
64e892 morio denki co., ltd.
64e8e6 global moisture management system
- 64e950 cisco
+ 64e950 cisco systems, inc
+ 64eac5 sibotech automation co., ltd.
64eb8c seiko epson corporation
64ed57 arris group, inc.
64ed62 woori systems co., ltd
+ 64eeb7 netcore technology inc
64f242 gerdes aktiengesellschaft
+ 64f2fb hangzhou ezviz software co.,ltd.
64f50e kinion technology company limited
+ 64f54e em microelectronic
+ 64f69d cisco systems, inc
+ 64f6bb fibocom wireless inc.
+ 64f6f7 anhui dynamic power co., ltd.
+ 64f81c huawei technologies co., ltd.
+ 64f88a china mobile iot company limited
+ 64f947 senscomm semiconductor co., ltd.
64f970 kenade electronics technology co.,ltd.
64f987 avvasi inc.
+ 64f9c0 analog devices
+ 64fb50 roomready/zdi, inc.
+ 64fb81 ieee registration authority
+ 64fb92 ppc broadband inc.
64fc8c zonar systems
+ 64ff0a wistron neweb corporation
+ 680235 konten networks inc.
+ 6802b8 compal broadband networks, inc.
+ 680571 samsung electronics co.,ltd
6805ca intel corporate
- 680927 apple
+ 68070a tpvision europe b.v
+ 680715 intel corporate
+ 680927 apple, inc.
680ad7 yancheng kecheng optoelectronic technology co., ltd
+ 680ae2 silicon laboratories
68122d special instrument development co., ltd.
- 681590 sagemcom sas
+ 681295 lupine lighting systems gmbh
+ 681324 huawei device co., ltd.
+ 681401 hon hai precision ind. co.,ltd.
+ 681590 sagemcom broadband sas
6815d3 zaklady elektroniki i mechaniki precyzyjnej r&g s.a.
681605 systems and electronic development fzco
681729 intel corporate
68193f digital airways
+ 6819ac guangzhou xianyou intelligent technogoly co., ltd
681ab2 zte corporation
681ca2 rosewill inc.
681d64 sunwave communications co., ltd
+ 681def shenzhen cyx technology co., ltd.
681e8b infosight corporation
- 681fd8 advanced telemetry
+ 681f40 blu wireless technology ltd
+ 681fd8 siemens industry, inc.
+ 68215f edgecore networks corporation
68234b nihon dengyo kousaku
+ 68262a sichuan tianyi comheart telecomco., ltd
+ 682719 microchip technology inc.
+ 682737 samsung electronics co.,ltd
6828ba dejai
+ 6828f6 vubiq networks, inc.
+ 6829dc ficosa electronics s.l.u.
+ 682c7b cisco systems, inc
+ 682d83 shenzhen dinghe communication company
682ddc wuhan changjiang electro-communication equipment co.,ltd
+ 682f67 apple, inc.
+ 6831fe teladin co.,ltd.
+ 68332c kenstel networks limited
+ 683489 lea professional
+ 683563 shenzhen liown electronics co.,ltd.
+ 6836b5 drivescale, inc.
+ 6837e9 amazon technologies inc.
+ 683943 ittim
+ 683a1e cisco meraki
683b1e countwise ltd
+ 683b78 cisco systems, inc
+ 683c7d magic intelligence technology limited
+ 683e02 siemens ag, digital factory, motion control system
+ 683e26 intel corporate
+ 683e34 meizu technology co., ltd.
683eec ereca
+ 683f1e effect photonics b.v.
+ 683f7d ingram micro services
684352 bhuu limited
+ 6843d7 agilecom photonics solutions guangdong limited
+ 684571 huawei device co., ltd.
+ 6845f1 toshiba client solutions co., ltd.
+ 684749 texas instruments
684898 samsung electronics co.,ltd
+ 6849b2 carlo gavazzi ltd
+ 684a76 eero inc.
+ 684aae huawei technologies co.,ltd
684b88 galtronics telemetry inc.
684ca8 shenzhen herotel tech. co., ltd.
+ 684f64 dell inc.
6851b7 powercloud systems, inc.
- 6854ed alcatel-lucent - nuage
+ 6852d6 ugame technology co.,ltd
+ 68536c spns co.,ltd
+ 685388 p&s technology
+ 68545a intel corporate
+ 6854c1 colortokens, inc.
+ 6854ed alcatel-lucent
6854f5 enlighted inc
+ 6854fd amazon technologies inc.
+ 68572d tuya smart inc.
+ 6858c5 zf trw automotive
68597f alcatel lucent
- 685b35 apple
+ 685acf samsung electronics co.,ltd
+ 685b35 apple, inc.
685b36 powertech industrial co., ltd.
685d43 intel corporate
685e6b powerray co., ltd.
+ 686350 hella india automotive pvt ltd
686359 advanced digital broadcast sa
+ 68644b apple, inc.
68692e zycoo co.,ltd
+ 686975 angler labs inc
+ 6869ca hitachi, ltd.
6869f2 comap s.r.o.
+ 686dbc hangzhou hikvision digital technology co.,ltd.
686e23 wi3 inc.
- 687251 ubiquiti networks
- 68764f sony mobile communications ab
+ 686e48 prophet electronic technology corp.,ltd
+ 687251 ubiquiti networks inc.
+ 6872c3 samsung electronics co.,ltd
+ 6872dc cetory.tv company limited
+ 687627 zhuhai dingzhi electronic technology co., ltd
+ 68764f sony mobile communications inc
687848 westunitis co., ltd.
68784c nortel networks
+ 687912 ieee registration authority
687924 els-gmbh & co. kg
6879ed sharp corporation
687cc8 measurement systems s. de r.l.
687cd5 y soft corporation, a.s.
+ 687d6b samsung electronics co.,ltd
+ 687db4 cisco systems, inc
687f74 cisco-linksys, llc
+ 6882f2 grandcentrix gmbh
68831a pandora mobility corporation
688470 essys co.,ltd
+ 68847e fujitsu limited
688540 igi mobile, inc.
68856a outerlink corporation
- 6886a7 cisco
+ 6886a7 cisco systems, inc
6886e7 orbotix, inc.
68876b inq mobile limited
+ 6888a1 universal electronics, inc.
+ 688975 nuoxc
+ 6889c1 huawei technologies co.,ltd
688ab5 edp servicos
+ 688af0 zte corporation
+ 688b0f china mobile iot company limited
+ 688db6 aetek inc.
+ 688f2e hitron technologies. inc
+ 688f84 huawei technologies co.,ltd
+ 688fc9 zhuolian (shenzhen) communication co., ltd
+ 6891d0 ieee registration authority
689234 ruckus wireless
+ 689320 new h3c technologies co., ltd
+ 689361 integrated device technology (malaysia) sdn. bhd.
689423 hon hai precision ind. co.,ltd.
- 68967b apple
+ 68967b apple, inc.
68974b shenzhen costar electronics co. ltd.
6897e8 society of motion picture & television engineers
+ 689861 beacon inc
+ 6899cd cisco systems, inc
+ 689a87 amazon technologies inc.
+ 689ab7 atelier vision corporation
689c5e acsip technology corp.
- 689c70 apple
+ 689c70 apple, inc.
+ 689ce2 cisco systems, inc
+ 689e0b cisco systems, inc
+ 689e19 texas instruments
+ 689e6a huawei device co., ltd.
+ 689ff0 zte corporation
+ 68a03e huawei technologies co.,ltd
+ 68a0f6 huawei technologies co.,ltd
68a1b7 honghao mingchuan technology (beijing) co.,ltd.
+ 68a378 freebox sas
68a3c4 liteon technology corporation
- 68a40e bsh bosch and siemens home appliances gmbh
- 68a86d apple
+ 68a40e bsh hausgeräte gmbh
+ 68a47d sun cupid technology (hk) ltd
+ 68a682 shenzhen youhua technology co., ltd
+ 68a828 huawei technologies co.,ltd
+ 68a86d apple, inc.
+ 68a8e1 wacom co.,ltd.
68aad2 datecs ltd.,
+ 68ab09 nokia
+ 68ab1e apple, inc.
68ab8a rf ideas
+ 68abbc beijing xiaomi mobile software co., ltd
+ 68ae20 apple, inc.
68af13 futura mobility
+ 68afff shanghai cambricon information technology co., ltd.
68b094 inesa electron co.,ltd
+ 68b35e shenzhen neostra technology co.ltd
68b43a waterfurnace international, inc.
- 68b599 hewlett-packard company
+ 68b599 hewlett packard
68b6fc hitron technologies. inc
68b8d9 act kde, inc.
- 68bc0c cisco systems, inc.
- 68bdab cisco systems, inc.
+ 68b983 b-plus gmbh
+ 68b9d3 shenzhen trolink technology co, ltd
+ 68bc0c cisco systems, inc
+ 68bdab cisco systems, inc
+ 68bfc4 samsung electronics co.,ltd
+ 68c44d motorola mobility llc, a lenovo company
+ 68c63a espressif inc.
+ 68c90b texas instruments
68ca00 octopus systems limited
+ 68cae4 cisco systems, inc
+ 68cc6e huawei technologies co.,ltd
68cc9c mine site technologies
68cd0f u tek company limited
68ce4e l-3 communications infrared products
+ 68d1ba shenzhen youhua technology co., ltd
68d1fd shenzhen trimax technology co.,ltd
68d247 portalis lc
+ 68d482 shenzhen gongjin electronics co.,lt
+ 68d48b hailo technologies ltd.
+ 68d6ed goowi wireless technology co., limited
+ 68d79a ubiquiti networks inc.
68d925 prosys development services
- 68db67 nantong coship electronics co., ltd
+ 68d93c apple, inc.
+ 68db54 phicomm (shanghai) co., ltd.
+ 68db67 nantong coship electronics co., ltd.
68db96 opwill technologies co .,ltd
+ 68dbca apple, inc.
+ 68dbf5 amazon technologies inc.
68dce8 packetstorm communications
- 68dfdd xiaomi inc.
- 68e166
+ 68dd26 shanghai focus vision security technology co.,ltd
+ 68dfdd xiaomi communications co ltd
+ 68e166 private
+ 68e209 huawei technologies co.,ltd
68e41f unglaube identech gmbh
+ 68e7c2 samsung electronics co.,ltd
+ 68e8eb linktel technologies co.,ltd
68ebae samsung electronics co.,ltd
68ebc5 angstrem telecom
68ec62 yodo technology corp. ltd.
- 68ed43 research in motion
+ 68ecc5 intel corporate
+ 68ed43 blackberry rts
+ 68eda4 shenzhen seavo technology co.,ltd
68ee96 cisco spvtg
- 68efbd cisco systems, inc.
+ 68ef43 apple, inc.
+ 68efbd cisco systems, inc
+ 68f06d along industrial co., limited
+ 68f0bc shenzhen liwifi technology co., ltd
68f125 data controls inc.
+ 68f728 lcfc(hefei) electronics technology co., ltd
68f895 redflow limited
+ 68f956 objetivos y servicio de valor añadido
+ 68fb7e apple, inc.
68fb95 generalplus technology inc.
68fcb3 next level security systems, inc.
+ 68feda fiberhome telecommunication technologies co.,ltd
+ 68fef7 apple, inc.
+ 68ff7b tp-link technologies co.,ltd.
+ 6c006b samsung electronics co.,ltd
+ 6c0273 shenzhen jin yun video equipment co., ltd.
+ 6c02e0 hp inc.
+ 6c0309 cisco systems, inc
6c0460 rbh access technologies inc.
+ 6c05d5 ethertronics inc
+ 6c06d6 huawei device co., ltd.
+ 6c090a gematica srl
+ 6c09bf fiberhome telecommunication technologies co.,ltd
6c09d6 digiquest electronics ltd
- 6c0e0d sony ericsson mobile communications ab
+ 6c0b84 universal global scientific industrial co., ltd.
+ 6c0d34 nokia
+ 6c0dc4 beijing xiaomi electronics co., ltd.
+ 6c0de1 dongguan cannice precision manufacturing co., ltd.
+ 6c0e0d sony mobile communications inc
+ 6c0ee6 chengdu xiyida electronic technology co,.ltd
6c0f6a jdc tech co., ltd.
+ 6c13d5 cisco systems, inc
+ 6c1414 bujeon electronics co,.ltd
+ 6c146e huawei technologies co.,ltd
6c14f7 erhardt+leimer gmbh
6c15f9 nautronix limited
+ 6c160e shottracker
+ 6c1632 huawei technologies co.,ltd
6c1811 decatur electronics
- 6c2056 cisco
+ 6c198f d-link international
+ 6c19c0 apple, inc.
+ 6c1a75 huawei device co., ltd.
+ 6c1b3f miraesignal co., ltd
+ 6c1c71 zhejiang dahua technology co., ltd.
+ 6c1deb u-blox ag
+ 6c1e70 guangzhou ybds it co.,ltd
+ 6c1e90 hansol technics co., ltd.
+ 6c1ed7 vivo mobile communication co., ltd.
+ 6c2056 cisco systems, inc
+ 6c21a2 ampak technology, inc.
6c22ab ainsworth game technology
- 6c23b9 sony ericsson mobile communications ab
+ 6c23b9 sony mobile communications inc
+ 6c23cb wattty corporation
+ 6c2483 microsoft mobile oy
+ 6c24a6 vivo mobile communication co., ltd.
+ 6c25b9 bbk educational electronics corp.,ltd.
+ 6c2636 huawei technologies co.,ltd
+ 6c2779 microsoft mobile oy
+ 6c2990 wiz connected lighting company limited
6c2995 intel corporate
+ 6c2acb paxton access ltd
+ 6c2b59 dell inc.
6c2c06 ooo npp systemotechnika-nn
+ 6c2cdc skyworth digital technology(shenzhen) co.,ltd
+ 6c2d24 zhen shi information technology (shanghai) co., ltd.
6c2e33 accelink technologies co.,ltd.
- 6c2e85 sagemcom
+ 6c2e72 b&b exporting limited
+ 6c2e85 sagemcom broadband sas
+ 6c2f2c samsung electronics co.,ltd
+ 6c2f8a samsung electronics co.,ltd
+ 6c310e cisco systems, inc
6c32de indieon technologies pvt. ltd.
6c33a9 magicjack lp
+ 6c3491 huawei technologies co.,ltd
+ 6c3838 marking system technology co., ltd.
+ 6c3845 fiberhome telecommunication technologies co.,ltd
+ 6c38a1 ubee interactive co., limited
6c391d beijing zhonghuahun network information center
6c3a84 shenzhen aero-startech. co.ltd
+ 6c3b6b routerboard.com
6c3be5 hewlett packard
6c3c53 soundhawk corp
- 6c3e6d apple
+ 6c3e6d apple, inc.
6c3e9c ke knestel elektronik gmbh
- 6c40c6 nimbus data systems, inc.
- 6c416a cisco
+ 6c4008 apple, inc.
+ 6c40c6 nimbus data, inc.
+ 6c410e cisco systems, inc
+ 6c416a cisco systems, inc
+ 6c42ab subscriber networks, inc.
+ 6c4418 zappware
+ 6c442a huawei technologies co.,ltd
+ 6c4598 antex electronic corp.
+ 6c4760 sunitec enterprise co.,ltd
+ 6c49c1 o2ones co., ltd.
+ 6c4a39 bita
+ 6c4a74 aerodisk llc
+ 6c4a85 apple, inc.
6c4b7f vossloh-schwabe deutschland gmbh
- 6c504d cisco systems, inc.
+ 6c4b90 liteon
+ 6c4d51 shenzhen ceres technology co., ltd.
+ 6c4d73 apple, inc.
+ 6c4e86 third millennium systems ltd.
+ 6c504d cisco systems, inc
+ 6c54cd lampex electronics limited
+ 6c55e8 technicolor ch usa inc.
+ 6c5640 blu products inc
+ 6c5697 amazon technologies inc.
6c5779 aclima, inc.
+ 6c5940 mercury communication technologies co.,ltd.
+ 6c5976 shanghai tricheer technology co.,ltd.
6c5a34 shenzhen haitianxiong electronic co., ltd.
6c5ab5 tcl technoly electronics (huizhou) co., ltd.
+ 6c5c14 guangdong oppo mobile telecommunications corp.,ltd
+ 6c5c3d ieee registration authority
6c5cde sunreports, inc.
+ 6c5d3a microsoft corporation
6c5d63 shenzhen rapoo technology co., ltd.
+ 6c5e3b cisco systems, inc
6c5e7a ubiquitous internet telecom co., ltd
6c5f1c lenovo mobile communication technology ltd.
+ 6c60eb zhi yuan electronics co., limited
6c6126 rinicom holdings
+ 6c61f4 sfr
6c626d micro-star int'l co., ltd
+ 6c639c arris group, inc.
6c641a penguin computing
+ 6c6a77 intel corporate
+ 6c6cd3 cisco systems, inc
+ 6c6d09 kyowa electronics co.,ltd.
+ 6c6efe core logic inc.
6c6f18 stereotaxis, inc.
6c7039 novar gmbh
- 6c709f apple
- 6c71d9 azurewave technologies, inc
+ 6c709f apple, inc.
+ 6c710d cisco systems, inc
+ 6c71bd ezelink telecom
+ 6c71d9 azurewave technology inc.
+ 6c7220 d-link international
+ 6c72e7 apple, inc.
+ 6c750d wifisong
+ 6c7637 huawei device co., ltd.
+ 6c7660 kyocera corporation
6c81fe mitsuba corporation
6c8336 samsung electronics co.,ltd
6c8366 nanjing sac power grid automation co., ltd.
6c8686 technonia
6c8814 intel corporate
+ 6c8aec nantong coship electronics co., ltd.
6c8b2f zte corporation
+ 6c8bd3 cisco systems, inc
6c8cdb otus technologies ltd
6c8d65 wireless glue networks, inc.
+ 6c8dc1 apple, inc.
+ 6c8fb5 microsoft mobile oy
6c90b1 sanlogic inc
6c92bf inspur electronic information industry co.,ltd.
- 6c98eb xyne gmbh
- 6c9989 cisco
+ 6c9354 yaojin technology (shenzhen) co., ltd.
+ 6c94f8 apple, inc.
+ 6c9522 scalys
+ 6c96cf apple, inc.
+ 6c98eb riverbed technology, inc.
+ 6c9961 sagemcom broadband sas
+ 6c9989 cisco systems, inc
6c9ac9 valentine research, inc.
6c9b02 nokia corporation
+ 6c9bc0 chemoptics inc.
6c9ce9 nimble storage
- 6c9ced cisco systems, inc.
+ 6c9ced cisco systems, inc
+ 6c9e7c fiberhome telecommunication technologies co.,ltd
+ 6ca0b4 bskyb ltd
+ 6ca100 intel corporate
+ 6ca4d1 fiberhome telecommunication technologies co.,ltd
+ 6ca604 arris group, inc.
6ca682 edam information & communications
+ 6ca75f zte corporation
6ca780 nokia corporation
+ 6ca7fa youngbo engineering inc.
+ 6ca849 avaya inc
+ 6ca858 fiberhome telecommunication technologies co.,ltd
6ca906 telefield ltd
+ 6ca928 hmd global oy
+ 6ca936 displaylink (uk) ltd
6ca96f transpacket as
6caab3 ruckus wireless
+ 6cab05 cisco systems, inc
+ 6cab31 apple, inc.
6cab4d digital payment technologies
6cac60 venetex corp
6cad3f hubbell building automation, inc.
- 6cadef kz broadband technologies, ltd.
- 6cadf8 azurewave technologies, inc.
+ 6cadad chongqing fugui electronics co.,ltd.
+ 6cadef kz broadband technologies, ltd.
+ 6cadf8 azurewave technology inc.
6cae8b ibm corporation
+ 6caef6 eero inc.
+ 6caf15 webasto se
+ 6cb0ce netgear
+ 6cb227 sony video & sound products inc.
+ 6cb2ae cisco systems, inc
6cb311 shenzhen lianrui electronics co.,ltd
6cb350 anhui comhigher tech co.,ltd
+ 6cb4a7 landauer, inc.
+ 6cb56b humax co., ltd.
+ 6cb6ca divus gmbh
+ 6cb749 huawei technologies co.,ltd
6cb7f4 samsung electronics co.,ltd
- 6cbee9 alcatel-lucent-ipd
+ 6cb881 zte corporation
+ 6cb9c5 delta networks, inc.
+ 6cbab8 sagemcom broadband sas
+ 6cbee9 alcatel-lucent ipd
+ 6cbfb5 noon technology co., ltd
+ 6cc147 xiamen hanin electronic technology co., ltd
6cc1d2 arris group, inc.
- 6cc26b apple
+ 6cc217 hewlett packard
+ 6cc26b apple, inc.
+ 6cc374 texas instruments
+ 6cc4d5 hmd global oy
+ 6cc63b taicang t&w electronics
+ 6cc7ec samsung electro-mechanics(thailand)
+ 6cca08 arris group, inc.
+ 6ccdd6 netgear
+ 6cce44 1more
6cd032 lg electronics
- 6cd146 smartek d.o.o.
+ 6cd146 framos gmbh
6cd1b0 wing sing electronics hong kong limited
- 6cd68a lg electronics inc
+ 6cd2ba zte corporation
+ 6cd630 rootous system co.,ltd
+ 6cd68a lg electronics (mobile communications)
+ 6cd704 huawei technologies co.,ltd
+ 6cd71f guangdong oppo mobile telecommunications corp.,ltd
+ 6cd94c vivo mobile communication co., ltd.
6cdc6a promethean limited
+ 6cdd30 cisco systems, inc
+ 6cddbc samsung electronics co.,ltd
+ 6cdea9 cisco meraki
+ 6cdffb ieee registration authority
+ 6ce01e modcam ab
6ce0b0 sound4
+ 6ce3b6 nera telecommunications ltd.
6ce4ce villiger security solutions ag
- 6ce873 tp-link technologies co., ltd.
+ 6ce4da nec platforms, ltd.
+ 6ce5f7 new h3c technologies co., ltd
+ 6ce85c apple, inc.
+ 6ce873 tp-link technologies co.,ltd.
+ 6ce874 huawei technologies co.,ltd
+ 6ce8c6 earda technologies co ltd
6ce907 nokia corporation
6ce983 gastron co., ltd.
+ 6cebb2 dongguan sen donglv electronics co.,ltd
+ 6cebb6 huawei technologies co.,ltd
+ 6cec5a hon hai precision ind. co.,ltd.
6ceca1 shenzhen clou electronics co. ltd.
6ceceb texas instruments
+ 6ced51 nexcontrol co.,ltd
+ 6cefc6 shenzhen twowing technologies co.,ltd.
6cf049 giga-byte technology co.,ltd.
+ 6cf17e zhejiang uniview technologies co.,ltd.
6cf373 samsung electronics co.,ltd
- 6cf37f aruba networks
+ 6cf37f aruba, a hewlett packard enterprise company
+ 6cf5e8 mooredoll inc.
+ 6cf712 nokia solutions and networks gmbh & co. kg
6cf97c nanoptix inc.
- 6cfa58 avaya, inc
- 6cfaa7 ampak technology inc.
+ 6cf9d2 chengdu povodo electronic technology co., ltd
+ 6cfa58 avaya inc
+ 6cfa89 cisco systems, inc
+ 6cfaa7 ampak technology, inc.
6cfdb9 proware technologies co ltd.
+ 6cfe54 intel corporate
6cffbe mpb communications inc.
+ 700136 fatek automation corporation
+ 7001b5 cisco systems, inc
700258 01db-metravib
- 700514 lg electronics
+ 70037e technicolor ch usa inc.
+ 70039f espressif inc.
+ 700433 california things inc.
+ 700514 lg electronics (mobile communications)
+ 7006ac eastcompeace technology co., ltd
+ 700b01 sagemcom broadband sas
+ 700b4f cisco systems, inc
700bc0 dewav technology company
+ 700f6a cisco systems, inc
+ 700fc7 shenzhen ikinloop technology co.,ltd.
700fec poindus systems corp.
- 70105c cisco
- 701124 apple
+ 70105c cisco systems, inc
+ 70106f hewlett packard enterprise
+ 701124 apple, inc.
+ 7011ae music life ltd
701404 limited liability company
+ 7014a6 apple, inc.
+ 70169f ethercat technology group
70188b hon hai precision ind. co.,ltd.
- 701a04 liteon tech corp.
+ 7018a7 cisco systems, inc
+ 70192f huawei technologies co.,ltd
+ 701a04 liteon technology corporation
701aed advas co., ltd.
+ 701bfb integrated device technology (malaysia) sdn. bhd.
+ 701ce7 intel corporate
+ 701d08 99iot shenzhen co.,ltd
701d7f comtech technology co., ltd.
+ 701dc4 northstar battery company, llc
+ 701e68 hanna instruments, inc.
+ 701f3c samsung electronics co.,ltd
+ 701f53 cisco systems, inc
+ 702084 hon hai precision ind. co., ltd.
702393 fos4x gmbh
- 702526 alcatel-lucent
- 702559 cybertan technology, inc.
+ 702526 nokia
+ 702559 cybertan technology inc.
+ 702605 sony visual products inc.
+ 70288b samsung electronics co.,ltd
+ 702900 shenzhen chiptrip technology co,ltd
+ 702a7d epspot ab
+ 702ad5 samsung electronics co.,ltd
702b1d e-domus international limited
+ 702c09 nintendo co.,ltd
702c1f wisol
- 702f4b polyvision inc.
+ 702d84 i4c innovations
+ 702dd1 newings communication co., ltd.
+ 702e22 zte corporation
+ 702e80 diehl connectivity solutions
+ 702ed9 guangzhou shiyuan electronics co., ltd.
+ 702f35 huawei technologies co.,ltd
+ 702f4b steelcase inc.
702f97 aava mobile oy
- 703018 avaya, inc
+ 703018 avaya inc
70305d ubiquoss inc
70305e nanjing zhongke menglian information technology co.,ltd
703187 acx gmbh
7032d5 athena wireless communications inc
- 703811 invensys rail
+ 703509 cisco systems, inc
+ 703811 siemens mobility limited
7038b4 low tech solutions
- 7038ee avaya, inc
+ 7038ee avaya inc
+ 703a0e aruba, a hewlett packard enterprise company
+ 703a2d shenzhen v-link technology co., ltd.
+ 703a51 xiaomi communications co ltd
+ 703a73 shenzhen sundray technologies company limited
+ 703aa6 new h3c technologies co., ltd
+ 703acb google, inc.
703ad8 shenzhen afoundry electronic co., ltd
+ 703c03 radiant co.,ltd
703c39 seawing kft
+ 703c69 apple, inc.
+ 703d15 hangzhou h3c technologies co., limited
+ 703eac apple, inc.
+ 7040ff huawei device co., ltd.
7041b7 edwards lifesciences llc
+ 70441c shenzhen kaifa technology co.,ltd.
704642 chyng hong electronic co., ltd.
+ 7047e9 vivo mobile communication co., ltd.
+ 70480f apple, inc.
+ 7048f7 nintendo co.,ltd
+ 704a0e ampak technology,inc.
704aae xstream flow (pty) ltd
704ae4 rinstrum pty ltd
+ 704ca5 fortinet, inc.
704ced tmrg, inc.
+ 704d7b asustek computer inc.
704e01 kwangwon tech co., ltd.
- 7052c5 avaya, inc.
+ 704e66 shenzhen fast technologies co.,ltd
+ 704f08 shenzhen huisheng information technology co., ltd.
+ 704f57 tp-link technologies co.,ltd.
+ 704fb8 arris group, inc.
+ 7050af bskyb ltd
+ 7052c5 avaya inc
70533f alfa instrumentos eletronicos ltda.
+ 705425 arris group, inc.
+ 7054b4 vestel elektronik san ve tic. a.Ş.
7054d2 pegatron corporation
7054f5 huawei technologies co.,ltd
- 705681 apple
- 705812 panasonic avc networks company
+ 7055f8 cerebras systems inc
+ 705681 apple, inc.
+ 7057bf new h3c technologies co., ltd
+ 705812 panasonic corporation avc networks company
+ 705896 inshow technology
705957 medallion instrumentation systems
705986 ooo ttv
- 705ab6 compal information (kunshan) co., ltd.
+ 705a0f hewlett packard
+ 705a9e technicolor ch usa inc.
+ 705aac samsung electronics co.,ltd
+ 705ab6 compal information (kunshan) co., ltd.
+ 705b2e m2communication inc.
705cad konami gaming inc
+ 705dcc efm networks
+ 705e55 realme chongqing mobiletelecommunications corp ltd
705eaa action target, inc.
7060de lavision gmbh
706173 calantec gmbh
+ 70617b cisco systems, inc
+ 7061be wistron neweb corporation
+ 7061ee sunwoda electronic co.,ltd
7062b8 d-link international
706417 orbis tecnologia electrica s.a.
706582 suzhou hanming technologies co., ltd.
- 706f81
+ 7065a3 kandao lightforge co., ltd.
+ 70661b sonova ag
+ 706655 azurewave technology inc.
+ 706879 saijo denki international co., ltd.
+ 70695a cisco systems, inc
+ 706979 ieee registration authority
+ 706bb9 cisco systems, inc
+ 706d15 cisco systems, inc
+ 706dec wifi-soft llc
+ 706e6d cisco systems, inc
+ 706f81 private
+ 70700d apple, inc.
70704c purple communications, inc
+ 70708b cisco systems, inc
7071b3 brain corporation
7071bc pegatron corporation
- 70723c huawei technologies co., ltd
+ 70720d lenovo mobile communication technology ltd.
+ 70723c huawei technologies co.,ltd
7072cf edgecore networks
- 7073cb apple
- 707630 pace plc.
- 7076dd oxyguard international a/s
+ 7073cb apple, inc.
+ 707414 murata manufacturing co., ltd.
+ 707630 arris group, inc.
+ 7076dd oxyguard internation a/s
7076f0 levelone communications (india) private limited
+ 7076ff kerlink
+ 707781 hon hai precision ind. co.,ltd.
+ 70788b vivo mobile communication co., ltd.
+ 707938 wuxi zhanrui electronic technology co.,ltd
+ 707990 huawei technologies co.,ltd
+ 7079b3 cisco systems, inc
707be8 huawei technologies co.,ltd
707c18 adata technology co., ltd
+ 707c69 avaya inc
+ 707d95 shenzhen city linwlantechnology co. ltd.
+ 707db9 cisco systems, inc
707e43 arris group, inc.
707ede nastec ltd.
- 708105 cisco systems, inc.
+ 708105 cisco systems, inc
+ 7081eb apple, inc.
70820e as electronics gmbh
70828e oleumtech corporation
- 7085c6 pace plc.
+ 708540 skyworth digital technology(shenzhen) co.,ltd
+ 7085c2 asrock incorporation
+ 7085c6 arris group, inc.
+ 7086c1 texas instruments
+ 70879e beken corporation
+ 70884d japan radio co., ltd.
+ 708976 tuya (hk) limietd
+ 7089cc china mobile group device co.,ltd.
+ 708a09 huawei technologies co.,ltd
708b78 citygrow technology co., ltd
+ 708bcd asustek computer inc.
+ 708cb6 huawei technologies co.,ltd
+ 708cbb mimodisplaykorea
708d09 nokia corporation
+ 708f47 vivo mobile communication co., ltd.
+ 7090b7 huawei device co., ltd.
+ 70918f weber-stephen products llc
+ 7091f3 universal electronics, inc.
709383 intelligent optical network high tech co.,ltd.
7093f8 space monkey, inc.
709756 happyelectronics co.,ltd
+ 70991c shenzhen honesty electronics co.,ltd
709a0b italian institute of technology
709ba5 shenzhen y&d electronics co.,ltd.
709bfc bryton inc.
- 709e29 sony computer entertainment inc.
+ 709c8f nero ag
+ 709cd1 intel corporate
+ 709e29 sony interactive entertainment inc.
709e86 x6d limited
+ 709f2d zte corporation
+ 709fa9 tecno mobile limited
70a191 trendsetter medical, llc
+ 70a2b3 apple, inc.
70a41c advanced wireless dynamics s.l.
70a66a prox dynamics as
+ 70a84c monad., inc.
70a8e3 huawei technologies co.,ltd
- 70aab2 research in motion
+ 70aab2 blackberry rts
+ 70acd7 shenzhen youhua technology co., ltd
+ 70ad54 malvern instruments ltd
+ 70af24 tp vision belgium nv
+ 70af25 nishiyama industry co.,ltd.
+ 70af6a shenzhen fenglian technology co., ltd.
70b035 shenzhen zowee technology co., ltd
70b08c shenou communication equipment co.,ltd
- 70b14e pace plc
+ 70b13d samsung electronics co.,ltd
+ 70b14e arris group, inc.
70b265 hiltron s.r.l.
- 70b3d5 ieee registration authority - please see oui36 public listing for more information.
+ 70b317 cisco systems, inc
+ 70b3d5 ieee registration authority
70b599 embedded technologies s.r.o.
+ 70b5e8 dell inc.
+ 70b7aa vivo mobile communication co., ltd.
+ 70b7e2 jiangsu miter technology co.,ltd.
70b921 fiberhome telecommunication technologies co.,ltd
+ 70baef hangzhou h3c technologies co., limited
+ 70bbe9 xiaomi communications co ltd
+ 70bc10 microsoft corporation
+ 70bf3e charles river laboratories
+ 70bf92 gn audio a/s
70c6ac bosch automotive aftermarket
- 70ca9b cisco systems, inc.
- 70cd60 apple
+ 70c76f inno s
+ 70c7f2 huawei technologies co.,ltd
+ 70c833 wirepas oy
+ 70c94e liteon technology corporation
+ 70c9c6 cisco systems, inc
+ 70ca4d shenzhen lnovance technology co.,ltd.
+ 70ca97 ruckus wireless
+ 70ca9b cisco systems, inc
+ 70cd60 apple, inc.
+ 70cd91 teracom telematica s.a
+ 70ce8c samsung electronics co.,ltd
+ 70cf49 intel corporate
+ 70d081 beijing netpower technologies inc.
+ 70d313 huawei technologies co.,ltd
+ 70d379 cisco systems, inc
70d4f2 rim
70d57e scalar corporation
70d5e7 wellcore corporation
70d6b6 metrum technologies
70d880 upos system sp. z o.o.
+ 70d923 vivo mobile communication co., ltd.
+ 70d931 cambridge industries(group) co.,ltd.
+ 70da9c tecsen
+ 70db98 cisco systems, inc
70dda1 tellabs
- 70dee2 apple
+ 70dda8 guangdong oppo mobile telecommunications corp.,ltd
+ 70ddef huawei device co., ltd.
+ 70dee2 apple, inc.
+ 70def9 fai wah international (hong kong) limited
+ 70df2f cisco systems, inc
+ 70dff7 arris group, inc.
70e027 hongyu communication technology limited
70e139 3view ltd
+ 70e1fd flextronics
70e24c sae it-systems gmbh & co. kg
- 70e284 wistron infocomm(zhongshan) corporation
+ 70e284 wistron infocomm (zhongshan) corporation
+ 70e422 cisco systems, inc
+ 70e56e texas instruments
+ 70e72c apple, inc.
70e843 beijing c&w optical communication technology co.,ltd.
+ 70ea1a cisco systems, inc
+ 70ea5a apple, inc.
+ 70ece4 apple, inc.
70ee50 netatmo
+ 70eea3 eoptolink technology inc. ltd,
+ 70ef00 apple, inc.
+ 70f087 apple, inc.
+ 70f088 nintendo co.,ltd
+ 70f096 cisco systems, inc
+ 70f11c shenzhen ogemray technology co.,ltd
70f176 data modul ag
+ 70f196 actiontec electronics, inc
70f1a1 liteon technology corporation
70f1e5 xetawave llc
+ 70f220 actiontec electronics, inc
+ 70f35a cisco systems, inc
70f395 universal global scientific industrial co., ltd.
- 70f927 samsung electronics
+ 70f754 ampak technology,inc.
+ 70f82b dwnet technologies(suzhou) corporation
+ 70f8e7 ieee registration authority
+ 70f927 samsung electronics co.,ltd
70f96d hangzhou h3c technologies co., limited
+ 70fc8c oneaccess sa
+ 70fc8f freebox sas
+ 70fd45 huawei technologies co.,ltd
+ 70fd46 samsung electronics co.,ltd
+ 70ff5c cheerzing communication(xiamen)technology co.,ltd
70ff76 texas instruments
- 740abc jsjs designs (europe) limited
+ 7403bd buffalo.inc
+ 74042b lenovo mobile communication (wuhan) company limited
+ 7404f0 mobiwire mobiles (ningbo) co., ltd
+ 7405a5 tp-link technologies co.,ltd.
+ 7409ac quext, llc
+ 740abc lightwaverf technology ltd
+ 740ae1 huawei device co., ltd.
740edb optowiz co., ltd
+ 7412b3 chongqing fugui electronics co.,ltd.
+ 7412bb fiberhome telecommunication technologies co.,ltd
741489 srt wireless
+ 741575 xiaomi communications co ltd
7415e2 tri-sen systems corporation
- 7419f8 ieee registration authority - please see mam public listing for more information.
- 741e93 fiberhome telecommunication tech.co.,ltd.
+ 741865 shanghai dareglobal technologies co.,ltd
+ 7419f8 ieee registration authority
+ 741ae0 ieee registration authority
+ 741bb2 apple, inc.
+ 741c27 itel mobile limited
+ 741e93 fiberhome telecommunication technologies co.,ltd
+ 741f4a hangzhou h3c technologies co., limited
+ 741f79 youngkook electronics co.,ltd
+ 7422bb huawei device co., ltd.
+ 742344 xiaomi communications co ltd
74258a hangzhou h3c technologies co., limited
- 7426ac cisco
+ 7426ac cisco systems, inc
74273c changyang technology (nanjing) co., ltd
- 7427ea elitegroup computer systems co., ltd.
+ 7427ea elitegroup computer systems co.,ltd.
+ 742857 mayfield robotics
+ 7429af hon hai precision ind. co.,ltd.
742b0f infinidat ltd.
742b62 fujitsu limited
742d0a norfolk elektronik ag
- 742f68 azurewave technologies, inc.
+ 742edb perinet gmbh
+ 742efc directpacket research, inc,
+ 742f68 azurewave technology inc.
743170 arcadyan technology corporation
743256 nt-ware systemprg gmbh
+ 743400 mtg co., ltd.
+ 7434ae this is engineering inc.
+ 74366d vodafone italia s.p.a.
74372f tongfang shenzhen cloudcomputing technology co.,ltd
+ 74373b uninet co.,ltd.
743889 annax anzeigesysteme gmbh
+ 7438b7 canon inc.
+ 743a20 new h3c technologies co., ltd
+ 743a65 nec corporation
+ 743aef kaonmedia co., ltd.
+ 743c18 taicang t&w electronics
+ 743e2b ruckus wireless
743ecb gentrice tech
+ 7440bb hon hai precision ind. co.,ltd.
+ 7440be lg innotek
+ 74427f avm audiovisuelles marketing und computersysteme gmbh
+ 74428b apple, inc.
744401 netgear
+ 74452d huawei device co., ltd.
74458a samsung electronics co.,ltd
+ 7445ce cresyn
7446a0 hewlett packard
+ 744aa4 zte corporation
744be9 explorer hypertech co.,ltd
+ 744ca1 liteon technology corporation
+ 744d28 routerboard.com
744d79 arrive systems inc.
+ 74504e new h3c technologies co., ltd
+ 7451ba xiaomi communications co ltd
745327 commsen co., limited
+ 745427 shenzhen fast technologies co.,ltd
+ 74547d cisco spvtg
745612 arris group, inc.
745798 trumpf laser gmbh + co. kg
+ 7458f3 amazon technologies inc.
+ 745909 huawei technologies co.,ltd
+ 745933 danal entertainment
+ 745aaa huawei technologies co.,ltd
+ 745bc5 ieee registration authority
+ 745c4b gn audio a/s
+ 745c9f tct mobile ltd
745e1c pioneer corporation
745f00 samsung semiconductor inc.
+ 745f90 lam technologies
745fae tsl ppl
+ 7460fa huawei technologies co.,ltd
+ 74614b chongqing huijiatong information technology co., ltd.
7463df vts gmbh
+ 74650c apple, inc.
7465d1 atlinks
746630 t:mi ytti
+ 7467f7 extreme networks, inc.
+ 746a3a aperi corporation
746a89 rezolt corporation
746a8f vs vision systems gmbh
- 746b82 movek
+ 746b82 movek
+ 746bab guangdong enok communication co., ltd
+ 746ee4 asia vital components co.,ltd.
+ 746f19 icarvisions (shenzhen) technology co., ltd.
746f3d contec gmbh
+ 746ff7 wistron neweb corporation
+ 7470fd intel corporate
+ 74721e edison labs inc.
+ 7472b0 guangzhou shiyuan electronics co., ltd.
7472f2 chipsip technology co., ltd.
- 747818 serviceassure
+ 74731d ifm electronic gmbh
+ 747336 microdigtal inc
+ 747548 amazon technologies inc.
+ 747818 jurumani solutions
+ 747827 dell inc.
+ 747a90 murata manufacturing co., ltd.
747b7a eth inc.
+ 747d24 phicomm (shanghai) co., ltd.
747db6 aliwei communications, inc
747e1a red embedded design limited
747e2d beijing thomson citic digital technology co. ltd.
- 74867a dell inc
+ 748114 apple, inc.
+ 74819a pt. hartono istana teknologi
+ 7483c2 ubiquiti networks inc.
+ 7483ef arista networks
+ 7484e1 dongguan haoyuan electronics co.,ltd
+ 74852a pegatron corporation
+ 7485c4 new h3c technologies co., ltd
+ 74860b cisco systems, inc
+ 74867a dell inc.
+ 7487a9 oct technology co., ltd.
+ 7487bb ciena corporation
74882a huawei technologies co.,ltd
74888b adb broadband italia
+ 7488bb cisco systems, inc
+ 748a0d arris group, inc.
+ 748a28 hmd global oy
+ 748a69 korea image technology co., ltd
+ 748b29 micobiomed
+ 748b34 shanghai smart system technology co., ltd
+ 748d08 apple, inc.
748e08 bestek corp.
- 748ef8 brocade communications systems, inc.
+ 748ef8 brocade communications systems llc
748f1b masterimage 3d
+ 748f3c apple, inc.
+ 748f4d duagon germany gmbh
+ 74901f ragile networks inc.
749050 renesas electronics corporation
74911a ruckus wireless
+ 7491bd four systems co.,ltd.
7493a4 zebra technologies corp.
74943d agjunction
+ 7495ec alpsalpine co,.ltd
+ 749637 todaair electronic co., ltd
+ 749781 zte corporation
749975 ibm corporation
+ 749ac0 cachengo, inc.
+ 749be8 hitron technologies. inc
749c52 huizhou desay sv automotive co., ltd.
- 749ddc 2wire
+ 749ce3 kodacloud canada, inc
+ 749d79 sercomm corporation.
+ 749d8f huawei technologies co.,ltd
+ 749ddc 2wire inc
+ 749ea5 ohsung
+ 749eaf apple, inc.
+ 749ef5 samsung electronics co.,ltd
+ 74a02f cisco systems, inc
+ 74a063 huawei technologies co.,ltd
+ 74a2e6 cisco systems, inc
+ 74a34a zimi corporation
74a4a7 qrs music technologies, inc.
74a4b5 powerleader science and technology co. ltd.
- 74a722 lg electronics
+ 74a528 huawei technologies co.,ltd
+ 74a722 lg electronics (mobile communications)
+ 74a78e zte corporation
+ 74a7ea amazon technologies inc.
+ 74ab93 blink by amazon
+ 74ac5f qiku internet network scientific (shenzhen) co., ltd.
+ 74acb9 ubiquiti networks inc.
+ 74ad98 cisco systems, inc
74adb7 china mobile group device co.,ltd.
74ae76 inovo broadband, inc.
74b00c network video technologies, inc
- 74b9eb fujian jinqianmao electronic technology co.,ltd
+ 74b472 ciesse
+ 74b57e zte corporation
+ 74b587 apple, inc.
+ 74b6b6 eero inc.
+ 74b7b3 shenzhen youhua technology co., ltd
+ 74b91e nanjing bestway automation system co., ltd
+ 74b9eb jinqianmao technology co.,ltd.
+ 74badb longconn electornics(shenzhen)co.,ltd
+ 74bbd3 shenzhen xeme communication co., ltd.
74be08 atek products, llc
74bfa1 hyunteck
+ 74bfb7 nusoft corporation
+ 74bfc0 canon inc.
+ 74c14f huawei technologies co.,ltd
+ 74c17d infinix mobility limited
+ 74c246 amazon technologies inc.
+ 74c330 shenzhen fast technologies co.,ltd
74c621 zhejiang hite renewable energy co.,ltd
+ 74c63b azurewave technology inc.
+ 74c929 zhejiang dahua technology co., ltd.
74c99a ericsson ab
+ 74c9a3 fiberhome telecommunication technologies co.,ltd
74ca25 calxeda, inc.
+ 74cbf3 lava international limited
+ 74cc39 fiberhome telecommunication technologies co.,ltd
74cd0c smith myers communications ltd.
74ce56 packet force technology limited company
74d02b asustek computer inc.
74d0dc ericsson ab
+ 74d21d huawei technologies co.,ltd
+ 74d285 texas instruments
74d435 giga-byte technology co.,ltd.
+ 74d637 amazon technologies inc.
+ 74d654 gint
74d675 wyma tecnologia
+ 74d6cb new h3c technologies co., ltd
+ 74d6ea texas instruments
+ 74d7ca panasonic corporation automotive
+ 74d83e intel corporate
74d850 evrisko systems
+ 74da38 edimax technology co. ltd.
+ 74da88 tp-link technologies co.,ltd.
+ 74dada d-link international
+ 74daea texas instruments
+ 74dbd1 ebay inc
74de2b liteon technology corporation
+ 74dfbf liteon technology corporation
74e06e ergophone gmbh
- 74e1b6 apple
- 74e2f5 apple
+ 74e14a ieee registration authority
+ 74e182 texas instruments
+ 74e19a fiberhome telecommunication technologies co.,ltd
+ 74e1b6 apple, inc.
+ 74e277 vizmonet pte ltd
+ 74e28c microsoft corporation
+ 74e2f5 apple, inc.
74e424 apiste corporation
74e50b intel corporate
74e537 radspin
74e543 liteon technology corporation
+ 74e5f9 intel corporate
+ 74e60f tecno mobile limited
+ 74e6e2 dell inc.
74e7c6 arris group, inc.
+ 74e9bf huawei technologies co.,ltd
74ea3a tp-link technologies co.,ltd.
+ 74eac8 new h3c technologies co., ltd
+ 74eacb new h3c technologies co., ltd
+ 74eae8 arris group, inc.
+ 74eb80 samsung electronics co.,ltd
+ 74ec42 fiberhome telecommunication technologies co.,ltd
+ 74ecb2 amazon technologies inc.
74ecf1 acumen
- 74f06d azurewave technologies, inc.
+ 74ee2a shenzhen bilian electronic co.,ltd
+ 74f06d azurewave technology inc.
74f07d bncom co.,ltd
74f102 beijing hchcom technology co., ltd
+ 74f413 maxwell forest
74f612 arris group, inc.
+ 74f61c htc corporation
+ 74f661 schneider electric fire & security oy
74f726 neuron robotics
+ 74f737 kce
+ 74f7f6 shanghai sunmi technology co.,ltd.
74f85d berkeley nucleonics corp
- 74fda0 compupal (group) corporation
+ 74f8db ieee registration authority
+ 74f91a onface
+ 74f9ca nintendo co.,ltd
+ 74fda0 compupal (group) corporation
74fe48 advantech co., ltd.
+ 74ff4c skyworth digital technology(shenzhen) co.,ltd
74ff7d wren sound systems, llc
+ 78009e samsung electronics co.,ltd
78028f adaptive spectrum and signal alignment (assia), inc.
+ 7802b1 cisco systems, inc
+ 7802b7 shenzhen ultra easy technology co.,ltd
+ 7802f8 xiaomi communications co ltd
+ 780473 texas instruments
+ 7804e3 huawei device co., ltd.
+ 780541 queclink wireless solutions co., ltd
+ 78055f shenzhen wyc technology co., ltd.
+ 78058c mmax communications, inc.
780738 z.u.k. elzab s.a.
+ 780ac7 baofeng tv co., ltd.
+ 780cb8 intel corporate
+ 780cf0 cisco systems, inc
+ 780ed1 trumpf werkzeugmaschinen gmbh+co.kg
+ 780f77 hangzhou gubei electronics technology co.,ltd
+ 781053 china mobile group device co.,ltd.
+ 781100 quantumsolution
781185 nbs payment solutions inc.
+ 7811dc xiaomi electronics,co.,ltd
7812b8 orantek limited
- 781881 azurewave technologies, inc.
+ 781735 nokia shanghai bell co., ltd.
+ 7817be huawei technologies co.,ltd
+ 781881 azurewave technology inc.
+ 7818a8 huawei device co., ltd.
78192e nascent technology
7819f7 juniper networks
781c5a sharp corporation
+ 781d4a zte corporation
781dba huawei technologies co.,ltd
781dfd jabil inc
+ 781f11 rab lighting
781fdb samsung electronics co.,ltd
+ 782079 id tech
78223d affirmed networks
+ 782327 samsung electronics co.,ltd
+ 7823ae arris group, inc.
+ 7824af asustek computer inc.
782544 omnima limited
- 7825ad samsung electronics co., ltd.
- 782bcb dell inc
+ 78257a leo innovation lab
+ 7825ad samsung electronics co.,ltd
+ 7828ca sonos, inc.
+ 7829ed askey computer corp
+ 782a79 integrated device technology (malaysia) sdn. bhd.
+ 782b46 intel corporate
+ 782b64 bose corporation
+ 782bcb dell inc.
+ 782c29 new h3c technologies co., ltd
+ 782d7e trendnet, inc.
+ 782e56 china mobile group device co.,ltd.
782eef nokia corporation
+ 782f17 xlab co.,ltd
78303b stephen technologies co.,limited
7830e1 ultraclenz, llc
- 7831c1 apple
+ 78312b zte corporation
+ 7831c1 apple, inc.
+ 78321b d-link international
78324f millennium group, inc.
+ 7835a0 zurn industries llc
+ 783607 cermate technologies inc.
+ 783690 yulong computer telecommunication scientific (shenzhen) co.,ltd
+ 7836cc guangdong oppo mobile telecommunications corp.,ltd
+ 783716 samsung electronics co.,ltd
+ 783a6c tecno mobile limited
+ 783a84 apple, inc.
783ce3 kai-ee
783d5b telnet redes inteligentes s.a.
783e53 bskyb ltd
783f15 easysync ltd.
+ 7840e4 samsung electronics co.,ltd
784405 fujitu(hong kong) electronic co.,ltd.
- 784476 zioncom technology co.,ltd
- 7845c4 dell inc
+ 784476 zioncom electronics (shenzhen) ltd.
+ 7844fd tp-link technologies co.,ltd.
+ 784501 biamp systems
+ 784558 ubiquiti networks inc.
+ 784561 cybertan technology inc.
+ 7845b3 huawei device co., ltd.
+ 7845c4 dell inc.
7846c4 daehap hyper-tech
+ 7846d4 samsung electronics co.,ltd
78471d samsung electronics co.,ltd
+ 7847e3 sichuan tianyi comheart telecom co.,ltd
784859 hewlett packard
78491d the will-burt company
784b08 f.robotics acquisitions ltd
- 784b87 murata manufacturing co.,ltd.
+ 784b87 murata manufacturing co., ltd.
+ 784f43 apple, inc.
+ 784f9b juniper networks
+ 78507c juniper networks
78510c liveu ltd.
78521a samsung electronics co.,ltd
+ 78524a ensenso gmbh
785262 shenzhen hojy software co., ltd.
+ 78530d shenzhen skyworth digital technology co., ltd
+ 785364 shift gmbh
+ 7853f2 roxton systems ltd.
78542e d-link international
785517 sankyuelectronics
785712 mobile integration workgroup
+ 785773 huawei technologies co.,ltd
+ 785860 huawei technologies co.,ltd
+ 7858f3 vachen co.,ltd
78593e rafi gmbh & co.kg
78595e samsung electronics co.,ltd
- 785968 hon hai precision ind.co.,ltd.
+ 785968 hon hai precision ind. co.,ltd.
+ 785c28 prime motion inc.
785c72 hioso technology co., ltd.
- 78617c mitsumi electric co.,ltd
+ 785dc8 lg electronics
+ 785f4c argox information co., ltd.
+ 78617c mitsumi electric co.,ltd.
+ 786256 huawei technologies co.,ltd
+ 7864c0 apple, inc.
+ 7864e6 green motive technology limited
+ 78653b shaoxing ourten electronics co., ltd.
+ 786559 sagemcom broadband sas
7866ae ztec instruments, inc.
- 786a89 huawei technologies co., ltd
- 786c1c apple
+ 7867d7 apple, inc.
+ 7868f7 ysten technology co.,ltd
+ 7869d4 shenyang vibrotech instruments inc.
+ 786a1f arris group, inc.
+ 786a89 huawei technologies co.,ltd
+ 786c1c apple, inc.
+ 786d94 palo alto networks
+ 786deb ge lighting
+ 787052 welotec gmbh
+ 78719c arris group, inc.
+ 78725d cisco systems, inc
+ 787a6f juice technology ag
+ 787b8a apple, inc.
+ 787d48 itel mobile limited
+ 787d53 extreme networks, inc.
+ 787df3 sterlite technologies limited
+ 787e61 apple, inc.
787f62 gik mbh
+ 788038 funai electric co., ltd.
+ 788102 sercomm corporation.
78818f server racks australia pty ltd
+ 7881ce china mobile iot limited company
78843c sony corporation
7884ee indra espacio s.a.
+ 7885f4 huawei device co., ltd.
+ 78870d unifiedgateways india private limited
+ 78886d apple, inc.
+ 78888a cdr sp. z o.o. sp. k.
788973 cmc
- 788c54 eltek technologies ltd
+ 788a20 ubiquiti networks inc.
+ 788b2a zhen shi information technology (shanghai) co., ltd.
+ 788b77 standar telecom
+ 788c4d indyme solutions, llc
+ 788c54 ping communication
+ 788c77 lexmark international, inc.
788df7 hitron technologies. inc
+ 788e33 jiangsu seuic technology co.,ltd
+ 7891e9 raisecom technology co.,ltd
78923e nokia corporation
78929c intel corporate
+ 7894b4 sercomm corporation.
+ 7894e8 radio bridge
+ 7895eb itel mobile limited
+ 789682 zte corporation
+ 789684 arris group, inc.
+ 7897c3 dingxin information technology co.,ltd
+ 7898e8 d-link international
7898fd q9 networks inc.
78995c nationz technologies inc
789966 musilab electronics (dongguan)co.,ltd.
78998f mediline italia srl
- 789ed0 samsung electronics
+ 789c85 august home, inc.
+ 789ce7 shenzhen aikede technology co., ltd
+ 789ed0 samsung electronics co.,ltd
789f4c hoerbiger elektronik gmbh
+ 789f70 apple, inc.
789f87 siemens ag i ia pp prm
- 78a051 iinet labs pty ltd
+ 78a051 iinet labs pty ltd
78a106 tp-link technologies co.,ltd.
78a183 advidia
78a2a0 nintendo co., ltd.
- 78a3e4 apple
+ 78a351 shenzhen zhibotong electronics co.,ltd
+ 78a3e4 apple, inc.
78a504 texas instruments
78a5dd shenzhen smarteye digital electronics co., ltd
78a683 precidata
+ 78a6a0 hangzhou ezviz software co.,ltd.
78a6bd daeyeon control&instrument co,.ltd
+ 78a6e1 brocade communications systems llc
78a714 amphenol
+ 78a7eb 1more
78a873 samsung electronics co.,ltd
+ 78aa82 new h3c technologies co., ltd
78ab60 abb australia
78abbb samsung electronics co.,ltd
- 78acc0 hewlett-packard company
+ 78ac44 dell inc.
+ 78acbf igneous systems
+ 78acc0 hewlett packard
78ae0c far south networks
+ 78af58 gimasi sa
+ 78afe4 comau s.p.a
+ 78b213 dwnet technologies(suzhou) corporation
+ 78b28d beijing tengling technology co.ltd
+ 78b3b9 shanghai sunup lighting co.,ltd
78b3ce elo touch solutions
+ 78b46a huawei technologies co.,ltd
+ 78b554 huawei device co., ltd.
78b5d2 ever treasure industrial limited
78b6c1 aobo telecom co.,ltd
+ 78b6ec scuf gaming international llc
78b81a inter sales a/s
+ 78b84b sichuan tianyi comheart telecomco.,ltd
+ 78b8d6 zebra technologies inc.
78bad0 shinybow technology co. ltd.
+ 78baf9 cisco systems, inc
+ 78bc1a cisco systems, inc
+ 78bdbc samsung electronics co.,ltd
78beb6 enhanced vision
78bebd stulz gmbh
+ 78c1a7 zte corporation
+ 78c2c0 ieee registration authority
+ 78c313 china mobile group device co.,ltd.
+ 78c3e9 samsung electronics co.,ltd
78c40e h&d wireless
78c4ab shenzhen runsil technology co.,ltd
78c5e5 texas instruments
+ 78c5f8 huawei device co., ltd.
78c6bb innovasic, inc.
+ 78c881 sony interactive entertainment inc.
+ 78c95e midmark rtls
78ca04 nokia corporation
- 78ca39 apple
+ 78ca39 apple, inc.
78ca5e elno
+ 78ca83 ieee registration authority
+ 78cb2c join digital, inc.
78cb33 dhc software co.,ltd
+ 78cb68 daehap hyper-tech
+ 78cc2b sinewy technology co., ltd
78cd8e smc networks inc
+ 78cf2f huawei technologies co.,ltd
+ 78cff9 huawei device co., ltd.
78d004 neousys technology inc.
78d129 vicos
+ 78d162 apple, inc.
+ 78d294 netgear
+ 78d347 ericsson ab
78d34f pace-o-matic, inc.
78d38d hongkong yunlink technology limited
+ 78d4f1 ieee registration authority
78d5b5 navielektro ky
78d66f aristocrat technologies australia pty. ltd.
- 78d6f0 samsung electro mechanics
+ 78d6b2 toshiba
+ 78d6f0 samsung electro mechanics co., ltd.
+ 78d71a ciena corporation
78d752 huawei technologies co.,ltd
+ 78d75f apple, inc.
+ 78d800 ieee registration authority
78d99f nucom hk ltd.
- 78da6e cisco
+ 78d9e9 momentum iot
+ 78da07 zhejiang tmall technology co., ltd.
+ 78da6e cisco systems, inc
+ 78daa2 cynosure technologies co.,ltd
78dab3 gbo technology
+ 78db2f texas instruments
78dd08 hon hai precision ind. co.,ltd.
+ 78dd12 arcadyan corporation
78ddd6 c-scape
+ 78ddd9 guangzhou shiyuan electronics co., ltd.
78dee4 texas instruments
- 78e3b5 hewlett-packard company
+ 78e103 amazon technologies inc.
+ 78e22c huawei device co., ltd.
+ 78e2bd vodafone automotive s.p.a.
+ 78e36d espressif inc.
+ 78e3b5 hewlett packard
+ 78e3de apple, inc.
78e400 hon hai precision ind. co.,ltd.
- 78e7d1 hewlett-packard company
+ 78e7d1 hewlett packard
78e8b6 zte corporation
+ 78e980 rainus co.,ltd
+ 78eb14 shenzhen fast technologies co.,ltd
+ 78eb39 instituto nacional de tecnología industrial
78ec22 shanghai qihui telecom technology co., ltd
78ec74 kyland-usa
78ef4c unetconvergence co., ltd.
+ 78f09b huawei device co., ltd.
+ 78f235 sichuan ai-link technology co., ltd.
+ 78f29e pegatron corporation
+ 78f557 huawei technologies co.,ltd
78f5e5 bega gantenbrink-leuchten kg
- 78f5fd huawei technologies co., ltd
+ 78f5fd huawei technologies co.,ltd
78f7be samsung electronics co.,ltd
78f7d0 silverbrook research
+ 78f882 lg electronics (mobile communications)
+ 78f8b8 rako controls ltd
+ 78f944 private
+ 78f9b4 nokia solutions and networks gmbh & co. kg
+ 78fc14 family zone cyber safety ltd
+ 78fd94 apple, inc.
78fe3d juniper networks
78fe41 socus networks
78fee2 shanghai diveo technology co., ltd
78ff57 intel corporate
+ 78ffca tecno mobile limited
+ 7c004d huawei technologies co.,ltd
+ 7c010a texas instruments
7c0187 curtis instruments, inc.
+ 7c0191 apple, inc.
7c02bc hansung electronics co. ltd
- 7c034c sagemcom
- 7c03d8 sagemcom sas
+ 7c034c sagemcom broadband sas
+ 7c035e xiaomi communications co ltd
+ 7c03ab xiaomi communications co ltd
+ 7c03c9 shenzhen youhua technology co., ltd
+ 7c03d8 sagemcom broadband sas
+ 7c04d0 apple, inc.
7c0507 pegatron corporation
7c051e rafael ltd.
- 7c0623 ultra electronics, cis
+ 7c0623 ultra electronics sonar system division
7c08d9 shanghai b-star technology co
7c092b bekey a/s
+ 7c0a3f samsung electronics co.,ltd
7c0a50 j-mex inc.
- 7c11be apple
+ 7c0bc6 samsung electronics co.,ltd
+ 7c0cf6 guangdong huiwei high-tech co., ltd.
+ 7c0ece cisco systems, inc
+ 7c1015 brilliant home technology, inc.
+ 7c11be apple, inc.
+ 7c11cb huawei technologies co.,ltd
+ 7c11cd qiantang technology
7c1476 damall technologies sas
7c160d saia-burgess controls ag
+ 7c18cd e-tron co.,ltd.
7c1a03 8locations co., ltd.
7c1afc dalian co-edifice video technology co., ltd
+ 7c1b93 huawei device co., ltd.
+ 7c1c4e lg innotek
+ 7c1c68 samsung electronics co.,ltd
+ 7c1cf1 huawei technologies co.,ltd
+ 7c1dd9 xiaomi communications co ltd
+ 7c1e06 new h3c technologies co., ltd
7c1e52 microsoft
7c1eb3 2n telekomunikace a.s.
7c2048 koamtac
- 7c2064 alcatel lucent ipd
+ 7c2064 alcatel-lucent ipd
+ 7c210d cisco systems, inc
+ 7c210e cisco systems, inc
+ 7c21d8 shenzhen think will communication technology co., ltd.
+ 7c2302 samsung electronics co.,ltd
+ 7c240c telechips, inc.
+ 7c2586 juniper networks
+ 7c2587 chaowifi.com
+ 7c25da fn-link technology limited
+ 7c2634 arris group, inc.
+ 7c2664 sagemcom broadband sas
+ 7c2a31 intel corporate
+ 7c2adb xiaomi communications co ltd
+ 7c2be1 shenzhen ferex electrical co.,ltd
7c2cf3 secure electrans ltd
7c2e0d blackmagic design
+ 7c2ebd google, inc.
+ 7c2edd samsung electronics co.,ltd
7c2f80 gigaset communications gmbh
+ 7c310e cisco systems, inc
7c336e meg electronics inc.
+ 7c3548 transcend information
+ 7c3866 texas instruments
7c386c real time logic
+ 7c38ad samsung electronics co.,ltd
7c3920 ssoma security
+ 7c3953 zte corporation
7c3bd5 imago group
+ 7c3cb6 shenzhen homecare technology co.,ltd.
+ 7c3d2b huawei device co., ltd.
7c3e9d patech
+ 7c41a2 nokia
7c438f e-band communications corp.
7c444c entertainment solutions, s.l.
+ 7c4685 motorola (wuhan) mobility technologies communication co., ltd.
+ 7c477c ieee registration authority
+ 7c48b2 vida resources lte ltd
7c49b9 plexus manufacturing sdn bhd
+ 7c49eb xiaomi electronics,co.,ltd
7c4a82 portsmith llc
7c4aa8 mindtree wireless pvt ltd
7c4b78 red sun synthesis pte ltd
7c4c58 scale computing, inc.
7c4ca5 bskyb ltd
+ 7c4e09 shenzhen skyworth wireless technology co.,ltd
+ 7c4f7d sawwave
7c4fb5 arcadyan technology corporation
+ 7c5049 apple, inc.
+ 7c5079 intel corporate
+ 7c50da private
+ 7c5189 sg wireless limited
+ 7c5259 sichuan jiuzhou electronic technology co., ltd.
+ 7c534a metamako
+ 7c55a7 kastle systems
7c55e7 ysi, inc.
+ 7c573c aruba, a hewlett packard enterprise company
+ 7c574e cobi gmbh
+ 7c5a1c sophos ltd
+ 7c5a67 jnc systems, inc.
+ 7c5cf8 intel corporate
+ 7c604a avelon
7c6097 huawei technologies co.,ltd
+ 7c6166 amazon technologies inc.
7c6193 htc corporation
+ 7c6456 samsung electronics co.,ltd
7c669d texas instruments
- 7c69f6 cisco
+ 7c67a2 intel corporate
+ 7c696b atmosic technologies
+ 7c69f6 cisco systems, inc
7c6ab3 ibc technologies inc.
+ 7c6ac3 gatesair, inc
7c6adb safetone technology co.,ltd
+ 7c6af3 integrated device technology (malaysia) sdn. bhd.
7c6b33 tenyu tech co. ltd.
7c6b52 tigaro wireless
+ 7c6b9c guangdong oppo mobile telecommunications corp.,ltd
+ 7c6bf7 nti co., ltd.
7c6c39 pixsys srl
7c6c8f ams neve ltd
- 7c6d62 apple
+ 7c6d62 apple, inc.
+ 7c6da6 superwave group llc
+ 7c6df8 apple, inc.
7c6f06 caterpillar trimble control technologies
7c6ff8 shenzhen acto digital video technology co.,ltd.
+ 7c70bc ieee registration authority
+ 7c7176 wuxi idata technology company ltd.
7c72e4 unikey technologies
+ 7c738b cocoon alarm ltd
+ 7c73eb huawei device co., ltd.
+ 7c7630 shenzhen youhua technology co., ltd
+ 7c7635 intel corporate
+ 7c7668 huawei technologies co.,ltd
7c7673 enmas gmbh
+ 7c787e samsung electronics co.,ltd
+ 7c78b2 wyze labs inc
+ 7c79e8 payrange inc.
+ 7c7a53 phytrex technology corp.
7c7a91 intel corporate
+ 7c7b8b control concepts, inc.
7c7be4 z'sedai kenkyusho corporation
+ 7c7d3d huawei technologies co.,ltd
7c7d41 jinmuyu electronics co., ltd.
7c822d nortec
+ 7c8274 shenzhen hikeen technology co.,ltd
7c8306 glen dimplex nordic as
+ 7c8956 samsung electronics co.,ltd
+ 7c89c1 palo alto networks
+ 7c8ae1 compal information (kunshan) co., ltd.
+ 7c8bb5 samsung electronics co.,ltd
+ 7c8bca tp-link technologies co.,ltd.
7c8d91 shanghai hongzhuo information technology co.,ltd
7c8ee4 texas instruments
+ 7c8fde dwnet technologies(suzhou) corporation
+ 7c9122 samsung electronics co.,ltd
+ 7c942a huawei technologies co.,ltd
7c94b2 philips healthcare pcci
- 7c95f3 cisco
+ 7c95b1 extreme networks, inc.
+ 7c95f3 cisco systems, inc
+ 7c96d2 fihonest communication co.,ltd
7c9763 openmatics s.r.o.
+ 7c9a1d apple, inc.
+ 7c9a54 technicolor ch usa inc.
7c9a9b vse valencia smart energy
+ 7c9ebd espressif inc.
+ 7c9f07 cig shanghai co ltd
7ca15d gn resound a/s
+ 7ca177 huawei technologies co.,ltd
+ 7ca1ae apple, inc.
+ 7ca237 king slide technology co., ltd.
+ 7ca23e huawei technologies co.,ltd
7ca29b d.signt gmbh & co. kg
7ca61d mhl, llc
+ 7ca7b0 shenzhen bilian electronic co.,ltd
+ 7ca96b syrotech networks. ltd.
+ 7ca97d objenious
+ 7cab25 mesmo technology inc.
+ 7cab60 apple, inc.
7cacb2 bosch software innovations gmbh
- 7cad74 cisco
+ 7cad4f cisco systems, inc
+ 7cad74 cisco systems, inc
7cb03e osram gmbh
+ 7cb0c2 intel corporate
+ 7cb15d huawei technologies co.,ltd
+ 7cb177 satelco ag
7cb21b cisco spvtg
- 7cb232 tcl king high frequency ei,co.,ltd
+ 7cb232 hui zhou gaoshengda technology co.,ltd
+ 7cb25c acacia communications
+ 7cb27d intel corporate
+ 7cb37b qingdao intelligent&precise electronics co.,ltd.
7cb542 aces technology
+ 7cb59b tp-link technologies co.,ltd.
7cb733 askey computer corp
7cb77b paradigm electronics inc
+ 7cb94c bouffalo lab (nanjing) co., ltd.
+ 7cb960 shanghai x-cheng telecom ltd
+ 7cbacc ieee registration authority
7cbb6f cosco electronics co., ltd.
+ 7cbb8a nintendo co., ltd.
+ 7cbc84 ieee registration authority
7cbd06 ae refusol
7cbf88 mobilicom ltd
7cbfb1 arris group, inc.
- 7cc3a1 apple
- 7cc537 apple
+ 7cc294 beijing xiaomi mobile software co., ltd
+ 7cc2c6 tp-link corporation limited
+ 7cc385 huawei technologies co.,ltd
+ 7cc3a1 apple, inc.
+ 7cc4ef devialet
+ 7cc537 apple, inc.
+ 7cc6c4 kolff computer supplies b.v.
+ 7cc709 shenzhen rf-link technology co.,ltd.
+ 7cc77e fiberhome telecommunication technologies co.,ltd
7cc8ab acro associates, inc.
7cc8d0 tianjin yaan technology co., ltd.
7cc8d7 damalisk
+ 7cc926 wuhan greenet information service co.,ltd.
+ 7cc95a dell emc
7ccb0d antaira technologies, llc
+ 7ccbe2 ieee registration authority
+ 7ccc1f sichuan tianyi comheart telecomco.,ltd
+ 7cccb8 intel corporate
7ccd11 ms-magnet
7ccd3c guangzhou juzing technology co., ltd
7ccfcf shanghai seari intelligent system co., ltd
- 7cd1c3 apple
+ 7cd1c3 apple, inc.
7cd30a inventec corporation
+ 7cd566 amazon technologies inc.
+ 7cd661 xiaomi communications co ltd
7cd762 freestyle technology pty ltd
7cd844 enmotus inc
+ 7cd95c google, inc.
+ 7cd9a0 huawei technologies co.,ltd
+ 7cd9f4 uab teltonika telematics
7cd9fe new cosmos electric co., ltd.
7cda84 dongnian networks inc.
+ 7cdb98 askey computer corp
7cdd11 chongqing mas sci&tech.co.,ltd
7cdd20 ioxos technologies s.a.
+ 7cdd76 suzhou hanming technologies co., ltd.
7cdd90 shenzhen ogemray technology co., ltd.
+ 7cdde9 atom tech inc.
+ 7cdfa1 espressif inc.
7ce044 neon inc
7ce1ff computer performance, inc. dba digital loggers, inc.
- 7ce4aa
+ 7ce2ca juniper networks
+ 7ce4aa private
+ 7ce524 quirky, inc.
7ce56b esen optoelectronics technology co.,ltd.
+ 7ce97c itel mobile limited
7ce9d3 hon hai precision ind. co.,ltd.
+ 7ceb7f dmet products corp.
+ 7cebae ridgeline instruments
7cebea asct
+ 7cec79 texas instruments
+ 7cec9b fuzhou teraway information technology co.,ltd
7ced8d microsoft
7cef18 creative product design pty. ltd.
+ 7cef61 str elektronik josef schlechtinger gmbh
7cef8a inhon international ltd.
- 7cf05f apple
+ 7cf05f apple, inc.
7cf098 bee beans technologies, inc.
7cf0ba linkwell telesystems pvt ltd
- 7cf429 nuuo inc.
- 7cfadf apple
+ 7cf2dd vence corp
+ 7cf31b lg electronics (mobile communications)
+ 7cf429 nuuo inc.
+ 7cf666 tuya smart inc.
+ 7cf854 samsung electronics co.,ltd
+ 7cf880 cisco systems, inc
+ 7cf90e samsung electronics co.,ltd
+ 7cf95c u.i. lapp gmbh
+ 7cf9a0 fiberhome telecommunication technologies co.,ltd
+ 7cfadf apple, inc.
+ 7cfc3c visteon corporation
+ 7cfd6b xiaomi communications co ltd
+ 7cfd82 guangdong genius technology co., ltd.
7cfe28 salutron inc.
+ 7cfe4e shenzhen safe vision technology co.,ltd
+ 7cfe90 mellanox technologies, inc.
+ 7cff4d avm audiovisuelles marketing und computersysteme gmbh
7cff62 huizhou super electron technology co.,ltd.
80000b intel corporate
- 800010 att bell laboratories
- 80006e apple
+ 800010 at&t
+ 80006e apple, inc.
+ 800184 htc corporation
+ 80029c gemtek technology co., ltd.
+ 8002df ora inc.
+ 800384 ruckus wireless
+ 800588 ruijie networks co.,ltd
8005df montage technology group limited
+ 80071b vsolution telecommunication technology co.,ltd.
8007a2 esson technology inc.
+ 800902 keysight technologies, inc.
800a06 comtec co.,ltd
+ 800a80 ieee registration authority
+ 800b51 chengdu xgimi technology co.,ltd
+ 800c67 apple, inc.
+ 800dd7 latticework, inc
800e24 forgetbox
+ 8012df shenzhen superelectron technology co.,ltd.
+ 801382 huawei technologies co.,ltd
801440 sunlit system technology corp
+ 8014a8 guangzhou v-solution electronic technology co., ltd.
+ 801605 vodafone italia s.p.a.
+ 801609 sleep number
8016b7 brunel university
80177d nortel networks
- 8018a7 samsung eletronics co., ltd
+ 801844 dell inc.
+ 8018a7 samsung electronics co.,ltd
+ 801934 intel corporate
+ 801967 shanghai reallytek information technology co.,ltd
+ 8019fe jianling technology co., ltd
801daa avaya inc
801f02 edimax technology co. ltd.
+ 801f12 microchip technology inc.
8020af trade fides, a.s.
+ 8020da sagemcom broadband sas
+ 8020e1 bvba dptechnics
+ 8020fd samsung electronics co.,ltd
802275 beijing beny wave technology co ltd
+ 802278 china mobile iot company limited
+ 8022a7 nec platforms, ltd.
+ 802511 itel mobile limited
+ 802689 d-link international
+ 802994 technicolor ch usa inc.
+ 802aa8 ubiquiti networks inc.
802afa germaneers gmbh
+ 802bf9 hon hai precision ind. co.,ltd.
+ 802dbf cisco systems, inc
802de1 solarbridge technologies
802e14 azeti networks ag
802fde zurich instruments ag
+ 803049 liteon technology corporation
+ 8030dc texas instruments
+ 8030e0 hewlett packard enterprise
+ 8031f0 samsung electronics co.,ltd
+ 803253 intel corporate
+ 803428 microchip technology inc.
803457 ot systems limited
+ 8035c1 xiaomi communications co ltd
+ 803773 netgear
+ 803896 sharp corporation
+ 8038bc huawei technologies co.,ltd
+ 8038fb intel corporate
8038fd leapfrog enterprises, inc.
8039e5 patlite corporation
+ 803a0a integrated device technology (malaysia) sdn. bhd.
+ 803a59 at&t
+ 803af4 fiberhome telecommunication technologies co.,ltd
+ 803b2a abb xiamen low voltage equipment co.,ltd.
803b9a ghe-ces electronic ag
+ 803bf6 look easy international limited
+ 803e48 shenzhen gongjin electronics co.,lt
803f5d winstars technology ltd
803fd6 bytes at work ag
- 80414e bbk electronics corp., ltd.,
+ 804126 huawei technologies co.,ltd
+ 80414e bbk educational electronics corp.,ltd.
80427c adolf tedsen gmbh & co. kg
+ 8044fd china mobile (hangzhou) information technology co., ltd.
+ 8045dd intel corporate
804731 packet design, inc.
- 8048a5 sichuan tianyi comheart telecom co.,ltd
- 804971 apple
+ 804786 samsung electronics co.,ltd
+ 8048a5 sichuan tianyi comheart telecomco.,ltd
+ 804971 apple, inc.
+ 804a14 apple, inc.
804b20 ventilation control
+ 804b50 silicon laboratories
+ 804e70 samsung electronics co.,ltd
+ 804e81 samsung electronics co.,ltd
804f58 thinkeco, inc.
80501b nokia corporation
+ 805067 w & d technology corporation
+ 8050f6 itel mobile limited
+ 80546a shenzhen gongjin electronics co.,lt
8056f2 hon hai precision ind. co.,ltd.
805719 samsung electronics co.,ltd
8058c5 novatec kommunikationstechnik gmbh
+ 8058f8 motorola mobility llc, a lenovo company
8059fd noviga
+ 805a04 lg electronics (mobile communications)
+ 805e0c yealink(xiamen) network technology co.,ltd.
+ 805e4f fn-link technology limited
+ 805ec0 yealink(xiamen) network technology co.,ltd.
+ 805fc5 apple, inc.
806007 rim
+ 8060b7 cloud network technology singapore pte. ltd.
+ 80615f beijing sinead technology co., ltd.
80618f shenzhen sangfei consumer communications co.,ltd
806459 nimbus inc.
+ 80647a ola sense inc
+ 806559 em microelectronic
+ 80656d samsung electronics co.,ltd
8065e9 benq corporation
806629 prescope technologies co.,ltd.
+ 806933 huawei technologies co.,ltd
+ 806940 lexar co.,limited
+ 806ab0 shenzhen tinno mobile technology corp.
+ 806c1b motorola mobility llc, a lenovo company
806c8b kaeser kompressoren ag
806cbc net new electronic technology gmbh
+ 806d97 private
+ 806fb0 texas instruments
80711f juniper networks
+ 80717a huawei technologies co.,ltd
+ 807215 bskyb ltd
+ 807264 huawei device co., ltd.
+ 80739f kyocera corporation
+ 807459 k's co.,ltd.
+ 807484 all winner (hong kong) limited
+ 80751f bskyb ltd
807693 newag sa
+ 807871 askey computer corp
+ 80795d infinix mobility limited
8079ae shandong tecsunrise co.,ltd
807a7f abb genway xiamen electrical equipment co., ltd
- 807b1e corsair components
+ 807abf htc corporation
+ 807b1e corsair memory, inc.
+ 807b3e samsung electronics co.,ltd
+ 807b85 ieee registration authority
+ 807d14 huawei technologies co.,ltd
807d1b neosystem co. ltd.
+ 807d3a espressif inc.
807de3 chongqing sichuan instrument microcircuit co.ltd.
+ 807ff8 juniper networks
8081a5 tongqing communication equipment (shenzhen) co.,ltd
+ 808223 apple, inc.
808287 atcom technology co.ltd.
+ 8084a9 oshkosh corporation
808698 netronics technologies inc.
+ 8086d9 samsung electronics co.,ltd
8086f2 intel corporate
+ 808917 tp-link technologies co.,ltd.
+ 808a8b vivo mobile communication co., ltd.
+ 808af7 nanoleaf
808b5c shenzhen runhuicheng technology co., ltd
+ 808c97 kaonmedia co., ltd.
+ 808db7 hewlett packard enterprise
+ 808f1d tp-link technologies co.,ltd.
+ 808fe8 intelbras
80912a lih rong electronic enterprise co., ltd.
+ 809133 azurewave technology inc.
8091c0 agilemesh, inc.
- 80929f apple
+ 80929f apple, inc.
809393 xapt gmbh
80946c tokyo radar corporation
+ 809621 lenovo
8096b1 arris group, inc.
+ 8096ca hon hai precision ind. co.,ltd.
80971b altenergy power system,inc.
809b20 intel corporate
+ 809f9b sichuan ai-link technology co., ltd.
+ 809fab fiberhome telecommunication technologies co.,ltd
+ 809ff5 samsung electronics co.,ltd
+ 80a036 shanghai mxchip information technology co., ltd.
+ 80a1ab intellisis
80a1d7 shanghai dareglobal technologies co.,ltd
+ 80a235 edgecore networks corporation
+ 80a589 azurewave technology inc.
+ 80a796 neurotek llc
+ 80a85d osterhout design group
80aaa4 usag
+ 80ac7c sichuan ai-link technology co., ltd.
+ 80acac juniper networks
+ 80ad16 xiaomi communications co ltd
+ 80ad67 kasda networks inc
+ 80b03d apple, inc.
+ 80b07b zte corporation
80b219 elektron technology uk limited
+ 80b234 technicolor ch usa inc.
80b289 forworld electronics ltd.
- 80b32a alstom grid
- 80b686 huawei technologies co., ltd
+ 80b32a uk grid solutions ltd
+ 80b575 huawei technologies co.,ltd
+ 80b624 ivs
+ 80b655 intel corporate
+ 80b686 huawei technologies co.,ltd
+ 80b708 blue danube systems, inc
+ 80b709 viptela, inc
80b95c elftech co., ltd.
+ 80b97a eero inc.
80baac teleadapt ltd
80bae6 neets
80bbeb satmap systems ltd
+ 80be05 apple, inc.
80c16e hewlett packard
+ 80c501 octogate it security systems gmbh
+ 80c548 shenzhen zowee technology co.,ltd
+ 80c5e6 microsoft corporation
+ 80c5f2 azurewave technology inc.
80c63f remec broadband wireless , llc
- 80c6ab technicolor usa inc.
+ 80c6ab technicolor ch usa inc.
80c6ca endian s.r.l.
+ 80c755 panasonic appliances company
+ 80c7c5 fiberhome telecommunication technologies co.,ltd
80c862 openpeak, inc
+ 80c955 redpine signals, inc.
+ 80ca4b shenzhen gongjin electronics co.,ltd
+ 80cc12 huawei device co., ltd.
+ 80ce62 hewlett packard
80ceb1 theissen training systems gmbh
+ 80ceb9 samsung electronics co.,ltd
80cf41 lenovo mobile communication technology ltd.
+ 80cfa2 huawei device co., ltd.
80d019 embed, inc
+ 80d04a technicolor ch usa inc.
+ 80d065 cks corporation
+ 80d09b huawei technologies co.,ltd
+ 80d160 integrated device technology (malaysia) sdn. bhd.
80d18b hangzhou i'converge technology co.,ltd
+ 80d21d azurewave technology inc.
+ 80d336 cern
80d433 lzlabs gmbh
+ 80d4a5 huawei technologies co.,ltd
+ 80d605 apple, inc.
80d733 qsr automations, inc.
+ 80da13 eero inc.
+ 80dabc megafone limited
80db31 power quotient international co., ltd.
- 80ea96 apple
+ 80e01d cisco systems, inc
+ 80e1bf huawei technologies co.,ltd
+ 80e455 new h3c technologies co., ltd
+ 80e4da ieee registration authority
+ 80e540 arris group, inc.
+ 80e650 apple, inc.
+ 80e82c hewlett packard
+ 80e86f cisco systems, inc
+ 80ea07 tp-link technologies co.,ltd.
+ 80ea23 wistron neweb corporation
+ 80ea96 apple, inc.
+ 80eaca dialog semiconductor hellas sa
+ 80eb77 wistron corporation
+ 80ed2c apple, inc.
+ 80ee25 shenzhen skyworth digital technology co., ltd
80ee73 shuttle inc.
+ 80f1f1 tech4home, lda
80f25e kyynel
+ 80f3ef facebook technologies, llc
+ 80f503 arris group, inc.
80f593 irco sistemas de telecomunicación s.a.
+ 80f5b5 texas instruments
80f62e hangzhou h3c technologies co., limited
+ 80f8eb raytight
80fa5b clevo co.
80fb06 huawei technologies co.,ltd
+ 80fbf0 quectel wireless solutions co., ltd.
+ 80fd7a blu products inc
80ffa8 unidis
- 8400d2 sony ericsson mobile communications ab
- 840b2d samsung electro-mechanics co., ltd
+ 84002d pegatron corporation
+ 8400d2 sony mobile communications inc
+ 8401a7 greyware automation products, inc
+ 840283 humax co., ltd.
+ 840328 juniper networks
+ 8404d2 kirale technologies sl
+ 8406fa fiberhome telecommunication technologies co.,ltd
+ 840b2d samsung electro mechanics co., ltd.
+ 840b7c hitron technologies. inc
+ 840d8e espressif inc.
840f45 shanghai gmt digital technologies co., ltd
+ 84100d motorola mobility llc, a lenovo company
+ 84119e samsung electronics co.,ltd
+ 8411c2 ieee registration authority
+ 84139f zte corporation
+ 8416f9 tp-link technologies co.,ltd.
841715 gp electronics (hk) ltd.
- 841766 weifang goertek electronics co., ltd
+ 841766 weifang goertek electronics co.,ltd
+ 8417ef technicolor ch usa inc.
+ 841826 osram gmbh
+ 84183a ruckus wireless
841888 juniper networks
841b38 shenzhen excelsecu data technology co.,ltd
841b5e netgear
+ 841b77 intel corporate
+ 841c70 zte corporation
841e26 kernel-i co.,ltd
+ 841ea3 sagemcom broadband sas
+ 842096 shenzhen rf-link technology co.,ltd.
842141 shenzhen ginwave technologies ltd.
- 84248d motorola solutions inc
- 84253f silex technology, inc
+ 8421f1 huawei technologies co.,ltd
+ 84225e shenzhen technewchip technology co.,ltd.
+ 842388 ruckus wireless
+ 84248d zebra technologies inc
+ 842519 samsung electronics
+ 84253f silex technology, inc.
8425a4 tariox limited
8425db samsung electronics co.,ltd
842615 adb broadband italia
- 84262b alcatel-lucent
+ 84262b nokia
+ 84267a guangdong taide zhilian technology co.,ltd
+ 842690 beijing thought science co.,ltd.
8427ce corporation of the presiding bishop of the church of jesus christ of latter-day saints
+ 84285a saffron solutions inc
842914 emporia telecom produktions- und vertriebsgesmbh & co kg
- 842999 apple
+ 842999 apple, inc.
+ 842afd hp inc.
842b2b dell inc.
842b50 huria co.,ltd.
842bbc modelleisenbahn gmbh
+ 842c80 sichuan changhong electric ltd.
+ 842e14 silicon laboratories
+ 842e27 samsung electronics co.,ltd
842f75 innokas group
+ 843095 hon hai precision ind.co.,ltd
8430e5 skyhawke technologies, llc
+ 84326f guangzhou ava electronics technology co.,ltd
+ 8432ea anhui wanzten p&t co., ltd
843497 hewlett packard
843611 hyungseul publishing networks
- 843835 apple
+ 8437d5 samsung electronics co.,ltd
+ 843835 apple, inc.
+ 843838 samsung electro-mechanics(thailand)
843a4b intel corporate
+ 843a5b inventec(chongqing) corporation
+ 843b10 lv switch inc.
+ 843dc6 cisco systems, inc
+ 843e79 shenzhen belon technology co.,ltd
+ 843e92 huawei technologies co.,ltd
843f4e tri-tech manufacturing, inc.
+ 844076 drivenets
+ 844167 apple, inc.
+ 844464 serveru inc
+ 8444af zhejiang tmall technology co., ltd.
+ 8446fe huawei technologies co.,ltd
+ 844765 huawei technologies co.,ltd
844823 woxter technology co. ltd
844915 varmour networks, inc.
+ 844bb7 beijing sankuai online technology co.,ltd
844bf5 hon hai precision ind. co.,ltd.
844f03 ablelink electronics ltd
+ 84509a easy soft tv co., ltd
845181 samsung electronics co.,ltd
+ 8454df huawei device co., ltd.
+ 8455a5 samsung electronics co.,ltd
84569c coho data, inc.,
+ 845733 microsoft corporation
845787 dvr c&c co., ltd.
+ 845a81 ffly4u
+ 845b12 huawei technologies co.,ltd
845c93 chabrier services
+ 845cf3 intel corporate
845dd7 shenzhen netcom electronics co.,ltd
+ 846082 private
+ 8461a0 arris group, inc.
846223 shenzhen coship electronics co., ltd.
8462a6 eurocb (phils), inc.
+ 8463d6 microsoft corporation
+ 846569 new h3c technologies co., ltd
+ 84683e intel corporate
+ 846878 apple, inc.
+ 8468c8 totolink technology int‘l limited
+ 846991 nokia
+ 846a66 sumitomo kizai co.,ltd.
846aed wireless tsukamoto.,co.ltd
+ 846b48 shenzhen eepulink co., ltd.
846eb1 park assist llc
+ 846fce guangdong oppo mobile telecommunications corp.,ltd
+ 847127 silicon laboratories
+ 84716a huawei device co., ltd.
847207 i&c technology
+ 847303 letv mobile and intelligent information technology (beijing) corporation ltd.
84742a zte corporation
+ 847460 zte corporation
847616 addat s.r.o.
- 8478ac cisco
+ 847637 huawei technologies co.,ltd
+ 847778 cochlear limited
+ 84788b apple, inc.
+ 8478ac cisco systems, inc
+ 847933 profichip gmbh
+ 847973 shanghai baud data communication co.,ltd.
847a88 htc corporation
+ 847ab6 altobeam (china) inc.
+ 847beb dell inc.
+ 847c9b gd midea air-conditioning equipment co.,ltd.
+ 847d50 holley metering limited
847e40 texas instruments
+ 847f3d integrated device technology (malaysia) sdn. bhd.
+ 84802d cisco systems, inc
+ 848094 meter, inc.
8482f4 beijing huasun unicreate technology co., ltd
+ 848319 hangzhou zero zero technology co., ltd.
848336 newrun
- 848371 avaya, inc
+ 848371 avaya inc
848433 paradox engineering sa
- 848506 apple
+ 848506 apple, inc.
+ 84850a hella sonnen- und wetterschutztechnik gmbh
+ 8485e6 guangdong asano technology co.,ltd.
+ 8486f3 greenvity communications
+ 8489ad apple, inc.
+ 8489ec ieee registration authority
+ 848a8d cisco systems, inc
+ 848bcd ieee registration authority
+ 848c8d apple, inc.
848d84 rajant corporation
848dc7 cisco spvtg
- 848e0c apple
+ 848e0c apple, inc.
848e96 embertec pty ltd
+ 848edf sony mobile communications inc
848f69 dell inc.
- 849000 arnold & richter cine technik
+ 849000 arnold&richter cine technik gmbh & co. betriebs kg
+ 84930c incoax networks europe ab
+ 8493a0 huawei device co., ltd.
+ 84948c hitron technologies. inc
+ 849681 cathay communication co.,ltd
+ 8496d8 arris group, inc.
8497b8 memjet inc.
+ 849866 samsung electronics co.,ltd
+ 849a40 hangzhou hikvision digital technology co.,ltd.
849ca6 arcadyan technology corporation
+ 849d64 smc corporation
+ 849dc2 shanghai mxchip information technology co., ltd.
849dc5 centera photonics inc.
+ 849fb5 huawei technologies co.,ltd
+ 84a06e sagemcom broadband sas
+ 84a134 apple, inc.
+ 84a1d1 sagemcom broadband sas
+ 84a24d birds eye systems private limited
+ 84a3b5 propulsion systems
+ 84a423 sagemcom broadband sas
+ 84a466 samsung electronics co.,ltd
84a6c8 intel corporate
84a783 alcatel lucent
- 84a8e4 shenzhen huawei communication technologies co., ltd
+ 84a788 perples
+ 84a8e4 huawei technologies co.,ltd
+ 84a93e hewlett packard
84a991 cyber trans japan co.,ltd.
+ 84a9c4 huawei technologies co.,ltd
+ 84a9ea career technologies usa
+ 84aa9c mitrastar technology corp.
+ 84ab1a apple, inc.
+ 84ab26 tiinlab corporation
84aca4 beijing novel super digital tv technology co., ltd
+ 84acfb crouzet automatismes
+ 84ad58 huawei technologies co.,ltd
+ 84ad8d apple, inc.
84af1f beat system service co,. ltd.
- 84b153 apple
+ 84afec buffalo.inc
+ 84b153 apple, inc.
+ 84b261 cisco systems, inc
+ 84b31b kinexon gmbh
+ 84b517 cisco systems, inc
+ 84b541 samsung electronics co.,ltd
84b59c juniper networks
+ 84b802 cisco systems, inc
+ 84b866 beijing xiaolu technology co. ltd
+ 84b8b8 motorola (wuhan) mobility technologies communication co., ltd.
+ 84ba3b canon inc.
+ 84bb69 arris group, inc.
+ 84be52 huawei technologies co.,ltd
+ 84c0ef samsung electronics co.,ltd
+ 84c1c1 juniper networks
84c2e4 jiangsu qinheng co., ltd.
+ 84c3e8 vaillant gmbh
+ 84c5a6 intel corporate
84c727 gnodal ltd
+ 84c78f aps networks gmbh
84c7a9 c3po s.a.
- 84c8b1 incognito software inc.
+ 84c7ea sony mobile communications inc
+ 84c807 adva optical networking ltd.
+ 84c8b1 incognito software systems inc.
84c9b2 d-link international
+ 84c9c6 shenzhen gongjin electronics co.,lt
+ 84cc63 huawei device co., ltd.
+ 84cca8 espressif inc.
+ 84cd62 shenzhen idwell technology co.,ltd
+ 84cfbf fairphone
+ 84d15a tct mobile ltd
84d32a ieee 1905.1
+ 84d343 calix inc.
+ 84d412 palo alto networks
+ 84d47e aruba, a hewlett packard enterprise company
+ 84d4c8 widex a/s
+ 84d608 wingtech mobile communications co., ltd.
+ 84d6c5 solaredge technologies
+ 84d6d0 amazon technologies inc.
+ 84d81b tp-link technologies co.,ltd.
+ 84d931 hangzhou h3c technologies co., limited
84d9c8 unipattern co.,
- 84db2f sierra wireless inc
+ 84db2f sierra wireless
+ 84db9e pink nectarine health ab
+ 84dbac huawei technologies co.,ltd
+ 84dbfc nokia
84dd20 texas instruments
+ 84ddb7 cilag gmbh international
84de3d crystal vision ltd
84df0c net2grid bv
+ 84df19 chuango security technology corporation
+ 84e058 arris group, inc.
+ 84e0f4 ieee registration authority
+ 84e323 green wave telecommunication sdn bhd
+ 84e327 tailyn technologies inc
+ 84e342 tuya (hk) limietd
84e4d9 shenzhen need technology ltd.
+ 84e5d8 guangdong unipoe iot technology co.,ltd.
84e629 bluwan sa
84e714 liang herng enterprise,co.ltd.
+ 84e892 actiontec electronics, inc
+ 84e986 huawei device co., ltd.
+ 84ea97 shenzhen icomm semiconductor co.,ltd
84ea99 vieworks
+ 84eaed roku, inc
+ 84eb18 texas instruments
+ 84eb3e vivint smart home
84ed33 bbmc co.,ltd
+ 84ef18 intel corporate
+ 84f129 metrascale inc.
+ 84f147 cisco systems, inc
+ 84f3eb espressif inc.
84f493 oms spol. s.r.o.
84f64c cross point bv
- 84fcfe apple
+ 84f6fa miovision technologies incorporated
+ 84f883 luminar technologies
+ 84fcac apple, inc.
+ 84fcfe apple, inc.
+ 84fd27 silicon laboratories
+ 84fdd1 intel corporate
84fe9e rtc industries, inc.
- 880355 arcadyan technology corp.
+ 84fedc borqs beijing ltd.
+ 880118 blt co
+ 8801f2 vitec system engineering inc.
+ 880355 arcadyan technology corporation
+ 8803e9 guangdong oppo mobile telecommunications corp.,ltd
+ 88074b lg electronics (mobile communications)
880905 mtmcommunications
+ 880907 mkt systemtechnik gmbh & co. kg
+ 8809af masimo corporation
880f10 huami information technology co.,ltd.
880fb6 jabil circuits india pvt ltd,-ehtp unit
881036 panodic(shenzhen) electronics limted
- 88124e qualcomm atheros
+ 88108f huawei technologies co.,ltd
+ 881196 huawei technologies co.,ltd
+ 88123d suzhou aquila solutions inc.
+ 88124e qualcomm inc.
88142b protonic holland
- 881544 meraki, inc.
+ 881544 cisco meraki
+ 8815c5 huawei device co., ltd.
+ 8817a3 integrated device technology (malaysia) sdn. bhd.
8818ae tamron co., ltd
- 881fa1 apple
+ 881908 apple, inc.
+ 881b99 shenzhen xin fei jia electronic co. ltd.
+ 881c95 itel mobile limited
+ 881dfc cisco systems, inc
+ 881fa1 apple, inc.
882012 lmi technologies
8821e3 nebusens, s.l.
882364 watchnet dvr inc
+ 88238c fiberhome telecommunication technologies co.,ltd
8823fe tttech computertechnik ag
88252c arcadyan technology corporation
+ 882593 tp-link technologies co.,ltd.
+ 8828b3 huawei technologies co.,ltd
+ 882949 renesas electronics (penang) sdn. bhd.
+ 882950 netmoon technology co., ltd
+ 88299c samsung electronics co.,ltd
+ 882a5e new h3c technologies co., ltd
+ 882b94 madoka system co.,ltd.
+ 882bd7 addÉnergie technologies
+ 882d53 baidu online network technology (beijing) co., ltd.
882e5a storone
- 88308a murata manufactuaring co.,ltd.
- 88329b samsung electro mechanics co.,ltd.
+ 88308a murata manufacturing co., ltd.
+ 88329b samsung electro-mechanics(thailand)
883314 texas instruments
+ 8833be ivenix, inc.
+ 8834fe bosch automotive products (suzhou) co. ltd
88354c transics
+ 8835c1 oi electric co.,ltd
883612 src computers, llc
+ 88365f lg electronics (mobile communications)
+ 88366c efm networks
+ 8836cf huawei device co., ltd.
+ 883a30 aruba, a hewlett packard enterprise company
+ 883b8b cheering connection co. ltd.
+ 883c1c mercury corporation
+ 883d24 google, inc.
+ 883f4a texas instruments
+ 883f99 siemens ag
+ 883fd3 huawei technologies co.,ltd
+ 884033 huawei technologies co.,ltd
+ 88403b huawei technologies co.,ltd
+ 884067 infomark
+ 884157 shenzhen atsmart technology co.,ltd.
8841c1 orbisat da amazonia ind e aerol sa
- 8841fc airties wireless netowrks
- 8843e1 cisco systems, inc.
+ 8841fc airties wireless networks
+ 8843e1 cisco systems, inc
+ 884477 huawei technologies co.,ltd
8844f6 nokia corporation
+ 884604 xiaomi communications co ltd
88462a telechips inc.
+ 884a18 opulinks
+ 884a70 wacom co.,ltd.
+ 884aea texas instruments
884b39 siemens ag, healthcare sector
+ 884ccf pulzze systems, inc
+ 8850dd infiniband trade association
+ 8850f6 shenzhen jingxun software telecommunication technology co.,ltd
+ 88517a hmd global oy
8851fb hewlett packard
88532e intel corporate
- 885395 apple
- 8853d4 huawei technologies co., ltd
+ 885395 apple, inc.
+ 8853d4 huawei technologies co.,ltd
+ 88541f google, inc.
+ 88571d seongji industry company
88576d xta electronics ltd
- 885a92 cisco
- 885bdd aerohive networks inc.
- 885c4f alcatel lucent
+ 8857ee buffalo.inc
+ 885a06 guangdong oppo mobile telecommunications corp.,ltd
+ 885a85 wistron neweb corporation
+ 885a92 cisco systems, inc
+ 885bdd extreme networks, inc.
+ 885c47 alcatel lucent
+ 885d90 ieee registration authority
+ 885dfb zte corporation
+ 885fe8 ieee registration authority
88615a siano mobile silicon ltd.
+ 8863df apple, inc.
+ 886440 apple, inc.
+ 886639 huawei technologies co.,ltd
+ 88665a apple, inc.
+ 8866a5 apple, inc.
88685c shenzhen chuangdao & perpetual eternal technology co.,ltd
+ 886ab1 vivo mobile communication co., ltd.
+ 886ae3 alpha networks inc.
+ 886b0f bluegiga technologies oy
+ 886b44 sunnovo international limited
+ 886b6e apple, inc.
886b76 china hopeful group hopeful electric co.,ltd
+ 886fd4 dell inc.
+ 887033 hangzhou silan microelectronic inc
+ 88708c lenovo mobile communication technology ltd.
+ 8870ef sc professional trading co., ltd.
+ 8871b1 arris group, inc.
+ 8871e5 amazon technologies inc.
+ 887384 toshiba
887398 k2e tekpoint
- 887556 cisco
+ 887556 cisco systems, inc
+ 887598 samsung electronics co.,ltd
+ 887873 intel corporate
88789c game technologies sa
+ 88795b konka group co., ltd.
+ 88797e motorola mobility llc, a lenovo company
+ 887a31 velankani electronics pvt. ltd.
+ 887e25 extreme networks, inc.
+ 887f03 comper technology investment limited
+ 888279 shenzhen rb-link intelligent technology co.ltd
+ 888322 samsung electronics co.,ltd
+ 88835d fn-link technology limited
888603 huawei technologies co.,ltd
8886a0 simton technologies, ltd.
+ 8886c2 stabilo international gmbh
888717 canon inc.
8887dd darbeevision inc.
888914 all components incorporated
+ 88892f huawei technologies co.,ltd
888964 gsi electronics inc.
- 888b5d storage appliance corporation
+ 888b5d storage appliance corporation
888c19 brady corp asia pacific ltd
+ 888e68 huawei device co., ltd.
+ 889009 juniper networks
+ 88908d cisco systems, inc
889166 viewcooper corp.
8891dd racktivity
- 889471 brocade communications systems, inc.
+ 889471 brocade communications systems llc
+ 88947e fiberhome telecommunication technologies co.,ltd
+ 88948f xi'an zhisensor technologies co.,ltd
8894f9 gemicom technology, inc.
8895b9 unified packet systems crop
+ 88964e arris group, inc.
+ 889655 zitte corporation
889676 ttc marconi s.r.o.
+ 8896b6 global fire equipment s.a.
+ 8896f2 valeo schalter und sensoren gmbh
+ 889746 sichuan ai-link technology co., ltd.
+ 889765 exands
8897df entrypass corporation sdn. bhd.
889821 teraon
889b39 samsung electronics co.,ltd
889ca6 btb korea inc
+ 889d98 allied-telesisk.k.
+ 889e33 tct mobile ltd
+ 889e68 technicolor ch usa inc.
+ 889f6f samsung electronics co.,ltd
+ 889faa hella gutmann solutions gmbh
889ffa hon hai precision ind. co.,ltd.
+ 88a084 formation data systems
+ 88a25e juniper networks
+ 88a2d7 huawei technologies co.,ltd
+ 88a303 samsung electronics co.,ltd
88a3cc amatis controls
+ 88a479 apple, inc.
88a5bd qpcom inc.
+ 88a6c6 sagemcom broadband sas
88a73c ragentek technology group
- 88acc1 generiton co., ltd.
- 88ae1d compal information(kunshan)co.,ltd
+ 88a9a7 ieee registration authority
+ 88a9b7 apple, inc.
+ 88acc0 zyxel communications corporation
+ 88acc1 generiton co., ltd.
+ 88ad43 pegatron corporation
+ 88add2 samsung electronics co.,ltd
+ 88ae07 apple, inc.
+ 88ae1d compal information (kunshan) co., ltd.
+ 88b111 intel corporate
88b168 delta control gmbh
- 88b1e1 airtight networks, inc.
+ 88b1e1 mojo networks, inc.
+ 88b291 apple, inc.
+ 88b362 nokia shanghai bell co., ltd.
+ 88b436 private
+ 88b4a6 motorola mobility llc, a lenovo company
88b627 gembird europe bv
+ 88b66b easynetworks
+ 88b6ee dish technologies corp
+ 88b8d0 dongguan koppo electronic co.,ltd
88ba7f qfiednet co., ltd.
+ 88bcc1 huawei technologies co.,ltd
+ 88bd45 samsung electronics co.,ltd
+ 88bd78 flaircomm microelectronics,inc.
88bfd5 simple audio ltd
+ 88bfe4 huawei technologies co.,ltd
+ 88c08b apple, inc.
+ 88c242 poynt co.
+ 88c255 texas instruments
88c36e beijing ereneben lnformation technology limited
- 88c626 logitech - ultimate ears
- 88c663 apple
- 88cb87 apple
+ 88c397 beijing xiaomi mobile software co., ltd
+ 88c3b3 sovico
+ 88c3e5 betop techonologies
+ 88c626 logitech, inc
+ 88c663 apple, inc.
+ 88c9d0 lg electronics (mobile communications)
+ 88cb87 apple, inc.
+ 88cba5 suzhou torchstar intelligent technology co.,ltd
+ 88cc45 skyworth digital technology(shenzhen) co.,ltd
+ 88cefa huawei technologies co.,ltd
+ 88cf98 huawei technologies co.,ltd
+ 88d039 tcl technoly electronics(huizhou).,ltd
+ 88d171 beghelli s.p.a
+ 88d211 eko devices, inc.
+ 88d274 zte corporation
+ 88d2bf german autolabs
+ 88d37b firmtek, llc
+ 88d50c guangdong oppo mobile telecommunications corp.,ltd
+ 88d5a8 itel mobile limited
+ 88d652 amergint technologies
88d7bc dep company
+ 88d7f6 asustek computer inc.
88d962 canopus systems us llc
+ 88d98f juniper networks
+ 88da1a redpine signals, inc.
+ 88da33 beijing xiaoyuer network technology co., ltd
88dc96 senao networks, inc.
88dd79 voltaire
+ 88de7c askey computer corp.
+ 88dea9 roku, inc.
+ 88df9e new h3c technologies co., ltd
+ 88e034 shinwa industries(china) ltd.
+ 88e056 huawei technologies co.,ltd
88e0a0 shenzhen visionstor technologies co., ltd
88e0f3 juniper networks
- 88e3ab huawei technologies co., ltd
+ 88e161 art beijing science and technology development co., ltd.
+ 88e3ab huawei technologies co.,ltd
+ 88e603 avotek corporation
+ 88e628 shenzhen kezhonglong optoelectronic technology co.,ltd
+ 88e64b juniper networks
88e712 whirlpool corporation
88e7a6 iknowledge integration corp.
+ 88e87f apple, inc.
88e8f8 yong tai electronic (dongguan) ltd.
+ 88e90f innomdlelab
88e917 tamaggo
+ 88e9a4 hewlett packard enterprise
+ 88e9fe apple, inc.
88ed1c cudo communication co., ltd.
- 88f077 cisco systems, inc.
+ 88ef16 arris group, inc.
+ 88f031 cisco systems, inc
+ 88f077 cisco systems, inc
88f488 cellon communications technology(shenzhen)co.,ltd.
88f490 jetmobile pte ltd
- 88f7c7 technicolor usa inc.
+ 88f56e huawei technologies co.,ltd
+ 88f7bf vivo mobile communication co., ltd.
+ 88f7c7 technicolor ch usa inc.
+ 88f872 huawei technologies co.,ltd
88fd15 lineeye co., ltd
88fed6 shanghai wangyong software co., ltd.
- 8c006d apple
- 8c04ff technicolor usa inc.
+ 8c006d apple, inc.
+ 8c02fa commando networks limited
+ 8c04ba dell inc.
+ 8c04ff technicolor ch usa inc.
+ 8c0551 koubachi ag
8c078c flow data inc
8c088b remote solution
8c09f4 arris group, inc.
+ 8c0c87 nokia
8c0c90 ruckus wireless
8c0ca3 amper
- 8c0ee3 guangdong oppo mobile telecommunications corp.,ltd.
+ 8c0d76 huawei technologies co.,ltd
+ 8c0e60 nanjing juplink intelligent technologies co., ltd.
+ 8c0ee3 guangdong oppo mobile telecommunications corp.,ltd
+ 8c0f6f pegatron corporation
+ 8c0f83 angie hospitality llc
+ 8c0fa0 di-soric gmbh & co. kg
+ 8c0fc9 huawei device co., ltd.
+ 8c0ffa hutec co.,ltd
+ 8c10d4 sagemcom broadband sas
8c11cb abus security-center gmbh & co. kg
- 8c1f94 rf surgical system inc.
- 8c210a tp-link technologies co., ltd.
+ 8c147d ieee registration authority
+ 8c14b4 zte corporation
+ 8c15c7 huawei technologies co.,ltd
+ 8c1645 lcfc(hefei) electronics technology co., ltd
+ 8c1850 china mobile (hangzhou) information technology co., ltd.
+ 8c18d9 shenzhen rf technology co., ltd
+ 8c192d ieee registration authority
+ 8c19b5 arcadyan corporation
+ 8c1abf samsung electronics co.,ltd
+ 8c1cda ieee registration authority
+ 8c1f94 rf surgical system inc.
+ 8c210a tp-link technologies co.,ltd.
+ 8c2505 huawei technologies co.,ltd
8c271d quanthouse
8c278a vocollect inc
- 8c2937 apple
- 8c2daa apple
+ 8c2937 apple, inc.
+ 8c2a8e dongguan ramaxel memory technology
+ 8c2daa apple, inc.
8c2f39 iba dosimetry gmbh
+ 8c2fa6 solid optics b.v.
+ 8c31e2 dayouplus
8c3330 emfirst co., ltd.
- 8c3ae3 lg electronics
+ 8c3357 hitevision digital media technology co.,ltd.
+ 8c3401 guangdong oppo mobile telecommunications corp.,ltd
+ 8c3446 huawei device co., ltd.
+ 8c34fd huawei technologies co.,ltd
+ 8c3579 qdiqo sp. z o.o.
+ 8c367a palo alto networks
+ 8c395c bit4id srl
+ 8c3a7e universal electronics, inc.
+ 8c3ae3 lg electronics (mobile communications)
+ 8c3b32 microfan b.v.
+ 8c3bad netgear
8c3c07 skiva technologies, inc.
- 8c3c4a nakayo telecommunications,inc.
+ 8c3c4a nakayo inc
8c41f2 rda technologies ltd.
+ 8c41f4 ipmotion gmbh
+ 8c426d huawei technologies co.,ltd
+ 8c4361 hailo digital hub gmbh & co. kg
8c4435 shanghai broadmobi communication technology co., ltd.
+ 8c444f humax co., ltd.
+ 8c4500 murata manufacturing co., ltd.
+ 8c476e ieee registration authority
+ 8c47be dell inc.
+ 8c4962 roku, inc
8c4aee giga tms inc
8c4b59 3d imaging & simulations corp
+ 8c4cad evoluzn inc.
8c4cdc planex communications inc.
8c4db9 unmonday ltd
8c4dea cerio corporation
8c5105 shenzhen ireadygo information technology co.,ltd.
+ 8c53c3 beijing xiaomi mobile software co., ltd
+ 8c53d2 china mobile group device co.,ltd.
8c53f7 a&d engineering co., ltd.
- 8c541d lge
+ 8c541d lge
+ 8c554a intel corporate
+ 8c55bb songwoo information & technology co., ltd
8c569d imaging solutions group
8c56c5 nintendo co., ltd.
+ 8c579b wistron neweb corporation
8c57fd lvx western
- 8c5877 apple
+ 8c5877 apple, inc.
+ 8c593c ieee registration authority
+ 8c5973 zyxel communications corporation
8c598b c technologies ab
+ 8c59c3 adb italia
+ 8c59dc asr microelectronics (shanghai) co., ltd.
+ 8c5a25 arris group, inc.
+ 8c5ac1 huawei device co., ltd.
8c5af0 exeltech solar products
+ 8c5af8 beijing xiaomi electronics co., ltd.
+ 8c5bf0 arris group, inc.
8c5ca1 d-broad,inc
+ 8c5d60 uci corporation co.,ltd.
+ 8c5ebd huawei device co., ltd.
+ 8c5f48 continental intelligent transportation systems llc
+ 8c5fad fiberhome telecommunication technologies co.,ltd
8c5fdf beijing railway signal factory
- 8c604f cisco systems, inc.
+ 8c604f cisco systems, inc
+ 8c6078 swissbit ag
+ 8c60e7 mpgio co.,ltd
+ 8c6102 beijing baofengmojing technologies co., ltd
+ 8c61a3 arris group, inc.
8c640b beyond devices d.o.o.
- 8c6422 sony ericsson mobile communications ab
+ 8c6422 sony mobile communications inc
+ 8c64d4 hyeco smart tech co.,ltd
+ 8c683a huawei technologies co.,ltd
8c6878 nortek-as
+ 8c68c8 zte corporation
8c6ae4 viogem limited
+ 8c6d50 shenzhen mtc co ltd
+ 8c6d77 huawei technologies co.,ltd
+ 8c6dc4 megapixel vr
8c705a intel corporate
+ 8c7086 gesellschaft für sonder-edv-anlagen mbh
8c71f8 samsung electronics co.,ltd
8c736e fujitsu limited
+ 8c73a0 fiberhome telecommunication technologies co.,ltd
8c76c1 goden tech limited
8c7712 samsung electronics co.,ltd
8c7716 longcheer telecommunication limited
- 8c7b9d apple
- 8c7c92 apple
+ 8c78d7 shenzhen fast technologies co.,ltd
+ 8c7967 zte corporation
+ 8c79f5 samsung electronics co.,ltd
+ 8c7a15 ruckus wireless
+ 8c7b9d apple, inc.
+ 8c7bf0 xufeng development limited
+ 8c7c92 apple, inc.
8c7cb5 hon hai precision ind. co.,ltd.
- 8c7cff brocade communications systems, inc.
+ 8c7cff brocade communications systems llc
8c7eb3 lytro, inc.
+ 8c7f3b arris group, inc.
+ 8c8126 arcom
8c82a8 insigma technology co.,ltd
- 8c8401
+ 8c839d shenzhen xinyupeng electronic technology co., ltd
+ 8c83df nokia
+ 8c83e1 samsung electronics co.,ltd
+ 8c83fc axioma metering uab
+ 8c8401 private
+ 8c8580 smart innovation llc
+ 8c8590 apple, inc.
+ 8c85c1 aruba, a hewlett packard enterprise company
+ 8c85e6 cleondris gmbh
+ 8c861e apple, inc.
+ 8c873b leica camera ag
+ 8c897a augtek
8c89a5 micro-star int'l co., ltd
+ 8c89fa zhejiang hechuan technology co., ltd.
8c8a6e estun automation technoloy co., ltd
+ 8c8abb beijing orient view technology co., ltd.
+ 8c8b83 texas instruments
+ 8c8caa lcfc(hefei) electronics technology co., ltd
+ 8c8d28 intel corporate
8c8e76 taskit gmbh
- 8c90d3 alcatel lucent
+ 8c8ef2 apple, inc.
+ 8c8f8b china mobile chongqing branch
+ 8c8fe9 apple, inc.
+ 8c90d3 nokia
+ 8c9109 toyoshima electric technoeogy(suzhou) co.,ltd.
8c9236 aus.linx technology co., ltd.
+ 8c9246 oerlikon textile gmbh&co.kg
+ 8c9351 jigowatts inc.
+ 8c941f cisco systems, inc
8c94cf encell technology, inc.
+ 8c965f shandong zhongan technology co., ltd.
+ 8c97ea freebox sas
+ 8c99e6 tct mobile ltd
+ 8c9f3b qingdao hisense communications co.,ltd.
8ca048 beijing netopchip technology co.,ltd
+ 8ca2fd starry, inc.
+ 8ca5a1 oregano systems - design & consulting gmbh
+ 8ca6df tp-link technologies co.,ltd.
+ 8ca96f d&m holdings inc.
8ca982 intel corporate
+ 8caab5 espressif inc.
+ 8caace xiaomi communications co ltd
+ 8cab8e shanghai feixun communication co.,ltd.
+ 8cae49 ieee registration authority
8cae4c plugable technologies
8cae89 y-cam solutions ltd
- 8cb64f cisco systems, inc.
+ 8caedb nag llc
+ 8cb094 airtech i&c co., ltd
+ 8cb0e9 samsung electronics.,ltd
+ 8cb64f cisco systems, inc
8cb7f7 shenzhen unistrong science & technology co., ltd
8cb82c ipitomy communications
+ 8cb84a samsung electro-mechanics(thailand)
8cb864 acsip technology corp.
- 8cbebe xiaomi technology co.,ltd
+ 8cba25 unionman technology co.,ltd
+ 8cbe24 tashang semiconductor(shanghai) co., ltd.
+ 8cbebe xiaomi communications co ltd
+ 8cbf9d shanghai xinyou information technology ltd. co.
+ 8cbfa6 samsung electronics co.,ltd
8cc121 panasonic corporation avc networks company
+ 8cc5b4 sagemcom broadband sas
8cc5e1 shenzhen konka telecommunication technology co.,ltd
+ 8cc661 current, powered by ge
+ 8cc681 intel corporate
8cc7aa radinet communications inc.
8cc7d0 zhejiang ebang communication co.,ltd
- 8cc8cd samsung electronics co., ltd
+ 8cc84b chongqing fugui electronics co.,ltd.
+ 8cc8cd samsung electronics co.,ltd
+ 8cc8f4 ieee registration authority
8ccda2 actp, inc.
8ccde8 nintendo co., ltd.
+ 8cce4e espressif inc.
+ 8ccefd shenzhen zhouhai technology co.,ltd
+ 8ccf09 dell emc
8ccf5c befega gmbh
+ 8ccf8f itc systems
8cd17b cg mobile
+ 8cd2e9 yokote seiko co., ltd.
8cd3a2 vissim as
+ 8cd48e itel mobile limited
8cd628 ikor metering
+ 8cd67f em microelectronic
+ 8cd9d6 xiaomi communications co ltd
8cdb25 esg solutions
+ 8cdc02 zte corporation
+ 8cdcd4 hewlett packard
8cdd8d wifly-city system inc.
8cde52 issc technologies corp.
8cde99 comlab inc.
+ 8cdee6 samsung electronics co.,ltd
+ 8cdef9 beijing xiaomi mobile software co., ltd
+ 8cdf9d nec corporation
8ce081 zte corporation
- 8ce748
+ 8ce117 zte corporation
+ 8ce2da circle media inc
+ 8ce38e kioxia corporation
+ 8ce468 guangzhou sageran technology co., ltd.
+ 8ce5c0 samsung electronics co.,ltd
+ 8ce5ef huawei technologies co.,ltd
+ 8ce748 hangzhou hikvision digital technology co.,ltd.
+ 8ce78c dk networks
8ce7b3 sonardyne international ltd
+ 8cea1b edgecore networks corporation
+ 8cea48 samsung electronics co.,ltd
+ 8cebc6 huawei technologies co.,ltd
+ 8cec4b dell inc.
+ 8cec7b apple, inc.
8ceec6 precepscion pty. ltd.
+ 8cf112 motorola mobility llc, a lenovo company
+ 8cf228 mercury communication technologies co.,ltd.
+ 8cf319 siemens industrial automation products ltd., chengdu
+ 8cf5a3 samsung electro-mechanics(thailand)
+ 8cf710 ampak technology, inc.
+ 8cf773 nokia
+ 8cf813 orange polska
8cf945 power automation pte ltd
+ 8cf957 ruixinghengfang network (shenzhen) co.,ltd
8cf9c9 mesada technology co.,ltd.
- 8cfaba apple
- 8cfdf0 qualcomm incorporated
+ 8cfaba apple, inc.
+ 8cfca0 shenzhen smart device technology co., ltd.
+ 8cfd18 huawei technologies co.,ltd
+ 8cfdde sagemcom broadband sas
+ 8cfdf0 qualcomm inc.
+ 8cfe57 apple, inc.
+ 8cfe74 ruckus wireless
+ 8cfeb4 vsoontech electronics co., limited
90004e hon hai precision ind. co.,ltd.
- 90013b sagemcom
+ 9000db samsung electronics co.,ltd
+ 90013b sagemcom broadband sas
+ 900218 bskyb ltd
+ 90027a shenzhen sworix techonlogy co., ltd
90028a shenzhen shidean legrand electronic products co.,ltd
- 9002a9 zhejiang dahua technology co.,ltd
- 9003b7 parrot
+ 9002a9 zhejiang dahua technology co., ltd.
+ 900325 huawei technologies co.,ltd
+ 900372 longnan junya digital technology co. ltd.
+ 9003b7 parrot sa
+ 900628 samsung electronics co.,ltd
900917 far-sighted mobile
+ 900a1a taicang t&w electronics
+ 900a39 wiio, inc.
900a3a psg plastic service gmbh
+ 900a84 mellanox technologies, inc.
+ 900bc1 sprocomm technologies co.,ltd
+ 900cb4 alinket electronic technology co., ltd
+ 900cc8 google, inc.
900d66 digimore electronics co., ltd
900dcb arris group, inc.
+ 900e83 monico monitoring, inc.
+ 900eb3 shenzhen amediatech technology co., ltd.
+ 900f0c cloud network technology singapore pte. ltd.
+ 901234 shenzhen youhua technology co., ltd
+ 9012a1 we corporation inc.
+ 9013da athom b.v.
+ 9016ba huawei technologies co.,ltd
+ 901711 hagenuk marinekommunikation gmbh
+ 90173f huawei technologies co.,ltd
+ 90179b nanomegas
+ 9017ac huawei technologies co.,ltd
+ 9017c8 huawei technologies co.,ltd
90185e apex tool group gmbh & co ohg
90187c samsung electro mechanics co., ltd.
9018ae shanghai meridian technologies, co. ltd.
901900 scs sa
+ 901a4f em microelectronic
901aca arris group, inc.
901b0e fujitsu technology solutions gmbh
901d27 zte corporation
901edd great computer corporation
+ 90203a byd precision manufacture co.,ltd
902083 general engine management systems ltd.
+ 9020c2 aruba, a hewlett packard enterprise company
+ 902106 bskyb ltd
902155 htc corporation
- 9027e4 apple
+ 902181 shanghai huaqin telecom technology co.,ltd
+ 9023b4 new h3c technologies co., ltd
+ 9023ec availink, inc.
+ 90272b algorab s.r.l.
+ 9027e4 apple, inc.
902b34 giga-byte technology co.,ltd.
+ 902bd2 huawei technologies co.,ltd
+ 902cc7 c-max asia limited
+ 902e1c intel corporate
902e87 labjack
9031cd onyx healthcare inc.
+ 90324b hon hai precision ind. co.,ltd.
90342b gatekeeper systems, inc.
9034fc hon hai precision ind. co.,ltd.
90356e vodafone omnitel n.v.
+ 903809 ericsson ab
9038df changzhou tiannengbo system co. ltd.
- 903aa0 alcatel-lucent
+ 903a72 ruckus wireless
+ 903aa0 nokia
+ 903ae6 parrot sa
+ 903c92 apple, inc.
903cae yunnan ksec digital technology co.,ltd.
+ 903cb3 edgecore networks corporation
903d5a shenzhen wision technology holding limited
+ 903d68 g-printec, inc.
903d6b zicon technology corp.
+ 903dbd secure meters limited
903eab arris group, inc.
+ 903fea huawei technologies co.,ltd
+ 9043e2 cornami, inc
+ 904506 tokyo boeki medisys inc.
+ 9046a2 tedipay uk ltd
9046b7 vadaro pte ltd
904716 rorze corporation
- 9049fa intel corporation
+ 90473c china mobile group device co.,ltd.
+ 90489a hon hai precision ind. co.,ltd.
+ 9049fa intel corporate
+ 904c81 hewlett packard enterprise
904ce5 hon hai precision ind. co.,ltd.
- 904e2b huawei technologies co., ltd
+ 904d4a sagemcom broadband sas
+ 904dc3 flonidan a/s
+ 904e2b huawei technologies co.,ltd
+ 904e91 ieee registration authority
+ 90505a unglue, inc
90507b advanced panmobil systems gmbh & co. kg
- 90513f elettronica santerno
+ 9050ca hitron technologies. inc
+ 90513f elettronica santerno spa
905446 tes electronic solutions
9055ae ericsson, eab/rwi/k
+ 9055de fiberhome telecommunication technologies co.,ltd
905682 lenbrook industries limited
905692 autotalks ltd.
+ 9056fc tecno mobile limited
+ 905851 technicolor ch usa inc.
9059af texas instruments
- 905f2e tct mobile limited
+ 905c34 sirius electronic systems srl
+ 905c44 compal broadband networks, inc.
+ 905d7c new h3c technologies co., ltd
+ 905f2e tct mobile ltd
905f8d modas gmbh
+ 9060f1 apple, inc.
90610c fida international (s) pte ltd
+ 9061ae intel corporate
+ 90633b samsung electronics co.,ltd
906717 alphion india private limited
+ 90671c huawei technologies co.,ltd
9067b5 alcatel-lucent
9067f3 alcatel lucent
+ 9068c3 motorola mobility llc, a lenovo company
+ 906cac fortinet, inc.
+ 906d05 bxb electronics co., ltd
906dc8 dlg automação industrial ltda
906ebb hon hai precision ind. co.,ltd.
+ 906f18 private
+ 906fa9 nanjing putian telecommunications technology co.,ltd.
907025 garea microsys co.,ltd.
- 907240 apple
+ 907065 texas instruments
+ 907240 apple, inc.
+ 907282 sagemcom broadband sas
+ 90735a motorola mobility llc, a lenovo company
+ 90749d iray technology co., ltd.
+ 90769f shenzhen mercury communication technologies co.,ltd.
+ 9077ee cisco systems, inc
+ 907841 intel corporate
+ 9078b2 xiaomi communications co ltd
+ 907910 integrated device technology (malaysia) sdn. bhd.
907990 benchmark electronics romania srl
907a0a gebr. bode gmbh & co kg
907a28 beijing morncloud information and technology co. ltd.
- 907af1 snupi technologies
+ 907a58 zegna-daidong limited
+ 907af1 wally
+ 907e30 lars
+ 907eba utek technology (shenzhen) co.,ltd
907f61 chicony electronics co., ltd.
+ 90808f huawei device co., ltd.
+ 90812a apple, inc.
+ 908158 apple, inc.
908260 ieee 1904.1 working group
+ 90834b beijing yunyi times technology co,.ltd
90837a general electric water & process technologies
- 90840d apple
+ 90840d apple, inc.
+ 90842b lego system a/s
+ 90848b hdr10+ technologies, llc
+ 908674 sichuan tianyi comheart telecomco., ltd
+ 90869b zte corporation
9088a2 ionics technology me ltda
+ 90895f weifang goertek electronics co.,ltd
+ 908c09 total phase
+ 908c43 apple, inc.
908c44 h.k zongmu technology co., ltd.
+ 908c63 gz weedong networks technology co. , ltd
908d1d gh technologies
+ 908d6c apple, inc.
+ 908d78 d-link international
908fcf uno system co., ltd
90903c trison technology corporation
909060 rsi video technologies
+ 909164 chongqing lavid technology co., ltd.
9092b4 diehl bgt defence gmbh & co. kg
+ 90940a analog devices, inc
+ 909497 huawei technologies co.,ltd
9094e4 d-link international
+ 9096f3 buffalo.inc
+ 9097d5 espressif inc.
+ 9097f3 samsung electronics co.,ltd
+ 909838 huawei device co., ltd.
909864 impex-sat gmbh&co kg
909916 elvees neotek ojsc
+ 909a4a tp-link technologies co.,ltd.
+ 909a77 texas instruments
+ 909c4a apple, inc.
+ 909d7d arris group, inc.
909de0 newland design + assoc. inc.
+ 909f33 efm networks
909f43 accutron instruments inc.
+ 90a137 beijing splendidtel communication technology co,. ltd
+ 90a210 united telecoms ltd
+ 90a25b apple, inc.
90a2da gheo sa
- 90a4de wistron neweb corp.
- 90a783 jsw pacific corporation
+ 90a365 hmd global oy
+ 90a46a sisnet co., ltd
+ 90a4de wistron neweb corporation
+ 90a5af huawei technologies co.,ltd
+ 90a62f naver
+ 90a783 jsw pacific corporation
90a7c1 pakedge device and software inc.
+ 90a822 amazon technologies inc.
+ 90a935 jwentertainment
+ 90aac3 hitron technologies. inc
90ac3f brightsign llc
+ 90adf7 vivo mobile communication co., ltd.
+ 90adfc telechips, inc.
90ae1b tp-link technologies co.,ltd.
+ 90afd1 netkti co., ltd
+ 90b0ed apple, inc.
90b11c dell inc.
90b134 arris group, inc.
- 90b21f apple
+ 90b144 samsung electronics co.,ltd
+ 90b1e0 beijing nebula link technology co., ltd
+ 90b21f apple, inc.
+ 90b4dd private
+ 90b67a shenzhen skyworth digital technology co., ltd
+ 90b686 murata manufacturing co., ltd.
+ 90b832 extreme networks, inc.
90b8d0 joyent, inc.
- 90b931 apple, inc
+ 90b8e0 shenzhen yanray technology co.,ltd
+ 90b931 apple, inc.
90b97d johnson outdoors marine electronics d/b/a minnkota
- 90c115 sony ericsson mobile communications ab
+ 90bde6 quectel wireless solutions co., ltd.
+ 90c115 sony mobile communications inc
+ 90c119 nokia
+ 90c1c6 apple, inc.
+ 90c35f nanjing jiahao technology co., ltd.
+ 90c54a vivo mobile communication co., ltd.
+ 90c682 ieee registration authority
+ 90c792 arris group, inc.
+ 90c7d8 zte corporation
+ 90c99b tesorion nederland b.v.
90cc24 synaptics, inc
+ 90ccdf intel corporate
+ 90cdb6 hon hai precision ind. co.,ltd.
90cf15 nokia corporation
90cf6f dlogixs co ltd
- 90cf7d qingdao hisense electric co.,ltd.
+ 90cf7d qingdao hisense communications co.,ltd.
90d11b palomar medical technologies
90d74f bookeen
+ 90d7be wavelab global inc.
90d7eb texas instruments
90d852 comtec co., ltd.
+ 90d8f3 zte corporation
90d92c hug-witschi ag
90da4e avanu
+ 90da6a focus h&s co., ltd.
90db46 e-lead electronic co., ltd
+ 90dd5d apple, inc.
+ 90de80 shenzhen century xinyang technology co., ltd
90dfb7 s.m.s smart microwave sensors gmbh
+ 90dffb homerider systems
90e0f0 ieee 1722a working group
+ 90e17b apple, inc.
+ 90e202 texas instruments
90e2ba intel corporate
+ 90e2fc ieee registration authority
90e6ba asustek computer inc.
- 90ea60 spi lasers ltd
+ 90e710 new h3c technologies co., ltd
+ 90e7c4 htc corporation
+ 90ea60 spi lasers ltd
+ 90ec50 c.o.b.o. spa
+ 90ec77 silicom
+ 90eec7 samsung electronics co.,ltd
+ 90eed9 universal de desarrollos electrÓnicos, sa
+ 90ef68 zyxel communications corporation
+ 90f052 meizu technology co., ltd.
90f1aa samsung electronics co.,ltd
90f1b0 hangzhou anheng info&tech co.,ltd
90f278 radius gateway
+ 90f305 humax co., ltd.
90f3b7 kirisun communications co., ltd.
90f4c1 rand mcnally
- 90f652 tp-link technologies co., ltd.
- 90f72f phillips machine & welding co., inc.
- 90fb5b avaya, inc
- 90fba6 hon hai precision ind.co.ltd
+ 90f644 huawei device co., ltd.
+ 90f652 tp-link technologies co.,ltd.
+ 90f72f phillips machine & welding co., inc.
+ 90f891 kaonmedia co., ltd.
+ 90f9b7 huawei technologies co.,ltd
+ 90fb5b avaya inc
+ 90fba6 hon hai precision ind. co.,ltd.
+ 90fd61 apple, inc.
+ 90fd73 zte corporation
+ 90fd9f silicon laboratories
90ff79 metro ethernet forum
+ 90ffd6 honor device co., ltd.
+ 940006 jinyoung
940070 nokia corporation
+ 9400b0 huawei technologies co.,ltd
940149 autohotbox
9401c2 samsung electronics co.,ltd
+ 94026b optictimes co.,ltd
+ 94049c huawei technologies co.,ltd
+ 9405b6 liling fullriver electronics & technology ltd
+ 9405bb ieee registration authority
+ 940853 liteon technology corporation
+ 9408c7 huawei device co., ltd.
+ 940937 humax co., ltd.
+ 9409d3 shenzhen maxtopic technology co.,ltd
+ 940b19 huawei technologies co.,ltd
940b2d netview technologies(shenzhen) co., ltd
940bd5 himax technologies, inc
940c6d tp-link technologies co.,ltd.
+ 940c98 apple, inc.
+ 940e6b huawei technologies co.,ltd
94103e belkin international inc.
9411da itf fröschl gmbh
+ 94147a vivo mobile communication co., ltd.
+ 941625 apple, inc.
941673 point core sarl
+ 941700 xiaomi communications co ltd
+ 941882 hewlett packard enterprise
+ 94193a elvaco ab
+ 941c56 actiontec electronics, inc
941d1c tlab west systems ab
942053 nokia corporation
942197 stalmart technology limited
94236e shenzhen junlan electronic ltd
+ 9424b8 gree electric appliances, inc. of zhuhai
+ 9424e1 alcatel-lucent enterprise
+ 942533 huawei technologies co.,ltd
+ 942790 tct mobile ltd
+ 94282e new h3c technologies co., ltd
+ 94290c shenyang wisdom foundation technology development co., ltd.
+ 94292f new h3c technologies co., ltd
+ 94298d shanghai adaptcomm technology co., ltd.
+ 942a3f diversey inc
+ 942cb3 humax co., ltd.
+ 942ddc samsung electronics co.,ltd
942e17 schneider electric canada inc
942e63 finsécur
94319b alphatronics bv
- 9433dd taco electronic solutions, inc.
+ 9433dd taco inc
94350a samsung electronics co.,ltd
9436e0 sichuan bihong broadcast & television new technologies co.,ltd
+ 9437f7 huawei device co., ltd.
9439e5 hon hai precision ind. co.,ltd.
+ 943a91 amazon technologies inc.
943af0 nokia corporation
- 943bb1 kaonmedia
+ 943bb0 new h3c technologies co., ltd
+ 943bb1 kaonmedia co., ltd.
+ 943cc6 espressif inc.
+ 943dc9 asahi net, inc.
+ 943fc2 hewlett packard enterprise
9440a2 anywave communication technologies, inc.
+ 9440c9 hewlett packard enterprise
+ 9441c1 mini-cam limited
+ 94434d ciena corporation
944444 lg innotek
944452 belkin international inc.
944696 baudtec corporation
+ 9447b0 beijing eswin computing technology co., ltd
+ 944996 wisilica inc
944a09 bitwise controls
+ 944a0c sercomm corporation.
+ 944f4c sound united llc
945047 rechnerbetriebsgruppe
- 945103 samsung electronics
+ 945089 simonsvoss technologies gmbh
+ 945103 samsung electronics co.,ltd
+ 94513d ismart alarm, inc.
9451bf hyundai esg
+ 945330 hon hai precision ind. co.,ltd.
+ 945493 rigado, llc
+ 9454ce guangdong oppo mobile telecommunications corp.,ltd
+ 9454df yst corp.
+ 945641 palo alto networks
+ 9457a5 hewlett packard
+ 9458cb nintendo co.,ltd
+ 945907 shanghai hite-belden network technology co., ltd.
94592d eke building technology systems ltd
945b7e trilobit ltda.
+ 945f34 renesas electronics (penang) sdn. bhd.
+ 946010 huawei device co., ltd.
+ 94611e wata electronics co.,ltd.
946124 pason systems
+ 946269 arris group, inc.
+ 946372 vivo mobile communication co., ltd.
9463d1 samsung electronics co.,ltd
- 9471ac tct mobile limited
+ 94652d oneplus technology (shenzhen) co., ltd
+ 94659c intel corporate
+ 9466e7 wom engineering
+ 94677e belden india private limited
+ 946a77 technicolor ch usa inc.
+ 946ab0 arcadyan corporation
+ 9470d2 winfirm technology
+ 9471ac tct mobile ltd
94756e qinetiq north america
+ 9476b7 samsung electronics co.,ltd
+ 94772b huawei technologies co.,ltd
+ 947bbe ubicquia llc
+ 947be7 samsung electronics co.,ltd
947c3e polewall norge as
+ 947eb9 national narrowband network communications pty ltd
9481a4 azuray technologies
+ 9483c4 gl technologies (hong kong) limited
94857a evantage industries corp
+ 9486cd seoul electronics&telecom
9486d4 surveillance pro corporation
94877c arris group, inc.
+ 9487e0 xiaomi communications co ltd
+ 948815 infinique worldwide inc
948854 texas instruments
+ 94885e surfilter network technology co., ltd.
+ 948ac6 realme chongqing mobile telecommunications corp.,ltd.
948b03 eaget innovation and technology co., ltd.
+ 948bc1 samsung electronics co.,ltd
948d50 beamex oy ab
- 948fee hughes telematics, inc.
- 949426 apple
+ 948def oetiker schweiz ag
+ 948e89 industrias unidas sa de cv
+ 948ed3 arista networks
+ 948fcf arris group, inc.
+ 948fee verizon telematics
+ 949034 shenzhen chuangwei-rgb electronics co.,ltd
+ 94917f askey computer corp
+ 9492bc syntech(hk) technology limited
+ 9492d2 kcf technologies, inc.
+ 949426 apple, inc.
+ 9495a0 google, inc.
9498a2 shanghai listen tech.ltd
+ 949901 shenzhen yitoa digital appliance co.,ltd
+ 949990 vtc telecommunications
+ 949aa9 microsoft corporation
+ 949b2c extreme networks, inc.
949bfd trans new technology, inc.
949c55 alta data technologies
+ 949d57 panasonic do brasil limitada
+ 949f3e sonos, inc.
949f3f optek digital technology company limited
949fb4 chengdu jiafaantai technology co.,ltd
+ 94a04e bostex technology co., ltd
+ 94a1a2 ampak technology, inc.
+ 94a3ca konnectone, llc
+ 94a40c diehl metering gmbh
+ 94a4f9 huawei technologies co.,ltd
+ 94a67e netgear
+ 94a7b7 zte corporation
94a7bc bodymedia, inc.
94aab8 joview(beijing) technology co. ltd.
+ 94abde omx technology - fze
94acca trivum technologies gmbh
94ae61 alcatel lucent
+ 94aee3 belden hirschmann industries (suzhou) ltd.
+ 94aef0 cisco systems, inc
+ 94b01f apple, inc.
+ 94b10a samsung electronics co.,ltd
+ 94b271 huawei technologies co.,ltd
+ 94b2cc pioneer corporation
+ 94b40f aruba, a hewlett packard enterprise company
+ 94b819 nokia
+ 94b86d intel corporate
94b8c5 ruggedcom inc.
+ 94b97e espressif inc.
94b9b4 aptos technology
94ba31 visiontec da amazônia ltda.
94ba56 shenzhen coship electronics co., ltd.
+ 94bbae husqvarna ab
+ 94be46 motorola (wuhan) mobility technologies communication co., ltd.
94bf1e eflow inc. / smart device planning and development division
+ 94bf2d apple, inc.
+ 94bf80 zte corporation
+ 94bf94 juniper networks
+ 94bf95 shenzhen coship electronics co., ltd
+ 94bfc4 ruckus wireless
94c014 sorter sp. j. konrad grzeszczyk michaa, ziomek
+ 94c038 tallac networks
94c150 2wire inc
- 94c3e4 sca schucker gmbh & co kg
+ 94c2bd tecnobit
+ 94c3e4 atlas copco ias gmbh
94c4e9 powerlayer microsystems hongkong limited
+ 94c691 elitegroup computer systems co., ltd
94c6eb nova electronics, inc.
94c7af raylios technology
+ 94c960 zhongshan b&t technology.co.,ltd
94c962 teseq ag
94ca0f honeywell analytics
+ 94cc04 ieee registration authority
94ccb9 arris group, inc.
94cdac creowave oy
- 94ce2c sony mobile communications ab
+ 94ce2c sony mobile communications inc
+ 94ce31 cts limited
+ 94d00d huawei technologies co.,ltd
94d019 cydle corp.
- 94d723 shanghai dareglobal technologies co., ltd
+ 94d029 guangdong oppo mobile telecommunications corp.,ltd
+ 94d075 cis crypto
+ 94d299 techmation co.,ltd.
+ 94d417 gpi korea inc.
+ 94d469 cisco systems, inc
+ 94d505 fiberhome telecommunication technologies co.,ltd
+ 94d60e shenzhen yunmao information technologies co., ltd
+ 94d6db nexfi
+ 94d723 shanghai dareglobal technologies co.,ltd
94d771 samsung electronics co.,ltd
+ 94d859 tct mobile ltd
94d93c enelps
+ 94d9b3 tp-link technologies co.,ltd.
94db49 sitcorp
- 94dbc9 azurewave
+ 94db56 sony home entertainment&sound products inc
+ 94dbc9 azurewave technology inc.
+ 94dbda huawei technologies co.,ltd
+ 94dc4e aev, spol. s r. o.
94dd3f a+v link technologies, corp.
94de0e smartoptics as
94de80 giga-byte technology co.,ltd.
94df4e wistron infocomm(kunshan)co.,ltd.
94df58 ij electron co.,ltd.
94e0d0 healthstream taiwan inc.
+ 94e0d6 china dragon technology limited
+ 94e1ac hangzhou hikvision digital technology co.,ltd.
94e226 d. ortiz consulting, llc
+ 94e23c intel corporate
+ 94e2fd boge kompressoren otto boge gmbh & co. kg
+ 94e36d texas instruments
+ 94e3ee zte corporation
+ 94e4ba huawei device co., ltd.
+ 94e6f7 intel corporate
+ 94e70b intel corporate
94e711 xirka dama persada pt
+ 94e7ea huawei technologies co.,ltd
94e848 fylde micro ltd
- 94e98c alcatel-lucent
- 94eb2c google inc.
- 94ebcd research in motion limited
+ 94e8c5 arris group, inc.
+ 94e96a apple, inc.
+ 94e979 liteon technology corporation
+ 94e98c nokia
+ 94e9ee huawei device co., ltd.
+ 94ea32 apple, inc.
+ 94eaea tellescom industria e comercio em telecomunicacao
+ 94eb2c google, inc.
+ 94ebcd blackberry rts
+ 94ee9f hmd global oy
+ 94f128 hewlett packard enterprise
+ 94f19e huizhou maorong intelligent technology co.,ltd
+ 94f278 elma electronic
+ 94f2bb valeo vision systems
+ 94f551 cadi scientific pte ltd
+ 94f665 ruckus wireless
94f692 geminico co.,ltd.
+ 94f6a3 apple, inc.
+ 94f6d6 apple, inc.
94f720 tianjin deviser electronics instrument co., ltd
- 94fae8 shenzhen eycom technology co., ltd
- 94fbb2 shenzhen gongjin electronics co.,ltd
+ 94f7ad juniper networks
+ 94fae8 shenzhen eycom technology co., ltd
+ 94fb29 zebra technologies inc.
+ 94fba7 ieee registration authority
+ 94fbb2 shenzhen gongjin electronics co.,lt
94fd1d wherewhen corp
94fd2e shanghai uniscope technologies co.,ltd
- 94fef4 sagemcom
+ 94fe22 huawei technologies co.,ltd
+ 94fe9d shenzhen gongjin electronics co.,lt
+ 94fef4 sagemcom broadband sas
+ 94ff61 china mobile group device co.,ltd.
+ 98006a zte corporation
+ 980074 raisecom technology co., ltd
+ 9800c1 guangzhou creator technology co.,ltd.(china)
+ 9800c6 apple, inc.
+ 9801a7 apple, inc.
980284 theobroma systems gmbh
+ 9802d8 ieee registration authority
+ 98039b mellanox technologies, inc.
9803a0 abb n.v. power quality products
- 9803d8 apple
- 980c82 samsung electro mechanics
+ 9803d8 apple, inc.
+ 980637 ieee registration authority
+ 98063a home control singapore pte ltd
+ 98063c samsung electronics co.,ltd
+ 98072d texas instruments
+ 9809cf oneplus technology (shenzhen) co., ltd
+ 980c82 samsung electro mechanics co., ltd.
+ 980ca5 motorola (wuhan) mobility technologies communication co., ltd.
980d2e htc corporation
- 980ee4
+ 980d51 huawei device co., ltd.
+ 980d67 zyxel communications corporation
+ 980e24 phytium technology co.,ltd.
+ 980ee4 private
981094 shenzhen vsun communication technology co.,ltd
+ 9810e8 apple, inc.
+ 981333 zte corporation
+ 9814d2 avonic
+ 9816ec ic intracom
+ 981888 cisco meraki
+ 981a35 huawei technologies co.,ltd
+ 981bb5 assa abloy korea co., ltd irevo
+ 981dfa samsung electronics co.,ltd
+ 981e0f jeelan (shanghai jeelan technology information inc
+ 981e19 sagemcom broadband sas
+ 981fb1 shenzhen lemon network technology co.,ltd
98208e definium technologies
+ 9822ef liteon technology corporation
+ 98234e micromedia ag
98262a applied research associates, inc
+ 982782 ieee registration authority
+ 9828a6 compal information (kunshan) co., ltd.
98291d jaguar de mexico, sa de cv
98293f fujian start computer equipment co.,ltd
- 982cbe 2wire
+ 9829a6 compal information (kunshan) co., ltd.
+ 982cbc intel corporate
+ 982cbe 2wire inc
982d56 resolution audio
+ 982d68 samsung electronics co., ltd
+ 982dba fibergate inc.
+ 982f3c sichuan changhong electric ltd.
+ 982ff8 huawei device co., ltd.
983000 beijing kemacom technologies co., ltd.
983071 daikyung vascom
98349d krauss maffei technologies gmbh
983571 sub10 systems ltd
9835b8 assembled products corporation
+ 9835ed huawei technologies co.,ltd
983713 pt.navicom indonesia
- 983b16 ampak technology inc
+ 98387d itronic technology co . , ltd .
+ 98398e samsung electronics co.,ltd
+ 983b16 ampak technology, inc.
+ 983b8f intel corporate
+ 983f60 huawei technologies co.,ltd
+ 983f66 wuhan funshion online technologies co.,ltd
983f9f china ssj (suzhou) network technology inc.
+ 9840bb dell inc.
+ 98415c nintendo co.,ltd
984246 sol industry pte., ltd
+ 984265 sagemcom broadband sas
9843da intertech
+ 9844b6 infranor sas
+ 9844ce huawei technologies co.,ltd
+ 984562 shanghai baud data communication co.,ltd.
+ 98460a apple, inc.
98473c shanghai sunmon communication technogy co.,ltd
+ 984827 tp-link technologies co.,ltd.
+ 984874 huawei technologies co.,ltd
+ 984914 wistron neweb corporation
+ 9849e1 boeing defence australia
984a47 chg hospital beds
984b4a arris group, inc.
- 984be1 hewlett-packard company
+ 984be1 hewlett packard
984c04 zhangzhou keneng electrical equipment co ltd
984cd3 mantis deposition
984e97 starlight marketing (h. k.) ltd.
984fee intel corporate
- 9852b1 samsung electronics
+ 98523d sunitec enterprise co.,ltd
+ 98524a technicolor ch usa inc.
+ 9852b1 samsung electronics co.,ltd
+ 98541b intel corporate
9857d3 hon hai-ccpbg precision ind.co.,ltd.
98588a sysgration ltd.
985945 texas instruments
+ 985949 luxottica group s.p.a.
+ 985aeb apple, inc.
+ 985bb0 kmdata inc.
985c93 sbg systems sas
985d46 peoplenet communication
+ 985d82 arista networks
+ 985dad texas instruments
985e1b conversdigital co., ltd.
+ 985fd3 microsoft corporation
986022 emw co., ltd.
+ 9860ca apple, inc.
9866ea industrial control communications, inc.
986b3d arris group, inc.
+ 986c5c jiangxi gosun guard security co.,ltd
986cf5 zte corporation
+ 986d35 ieee registration authority
986dc8 toshiba mitsubishi-electric industrial systems corporation
+ 986f60 guangdong oppo mobile telecommunications corp.,ltd
+ 9870e8 innatech sdn bhd
9873c4 sage electronic engineering llc
+ 98743d shenzhen jun kai hengye technology co. ltd
+ 9874da infinix mobility limited
+ 98751a huawei device co., ltd.
9876b6 adafruit
987770 pep digital technology (guangzhou) co., ltd
+ 9877e7 kaonmedia co., ltd.
+ 987a10 ericsson ab
+ 987a14 microsoft corporation
+ 987bf3 texas instruments
+ 987e46 emizon networks limited
+ 987eca inventus power eletronica do brasil ltda
+ 9880ee samsung electronics co.,ltd
988217 disruptive ltd
+ 988389 samsung electronics co.,ltd
+ 9884e3 texas instruments
+ 98865d nokia shanghai bell co., ltd.
9886b1 flyaudio corporation (china)
+ 988744 wuxi hongda science and technology co.,ltd
9889ed anadem information inc.
- 988b5d sagem communication
+ 988b0a hangzhou hikvision digital technology co.,ltd.
+ 988b5d sagemcom broadband sas
+ 988b69 shenzhen hylitech co.,ltd
988bad corintech ltd.
+ 988d46 intel corporate
988e34 zhejiang boxsam electronic co.,ltd
988e4a noxus(beijing) technology co.,ltd
+ 988e79 qudelix, inc.
+ 988ed4 itel mobile limited
988edd te connectivity limerick
989080 linkpower network system inc ltd.
- 9893cc lg electronics inc.
+ 989096 dell inc.
+ 9893cc lg electronics inc
989449 skyworth wireless technology ltd.
+ 9897d1 mitrastar technology corp.
+ 989ab9 zte corporation
+ 989bcb avm audiovisuelles marketing und computersysteme gmbh
+ 989c57 huawei technologies co.,ltd
+ 989d5d technicolor ch usa inc.
+ 989e63 apple, inc.
+ 98a404 ericsson ab
+ 98a40e snap, inc.
98a7b0 mcst zao
+ 98a942 guangzhou tozed kangwei intelligent technology co., ltd
+ 98aa3c will i-tech co., ltd.
98aad7 blue wave networking co ltd
- 98b039 alcatel-lucent
- 98b8e3 apple
+ 98aafc ieee registration authority
+ 98ad1d huawei device co., ltd.
+ 98ae71 vvdn technologies pvt ltd
+ 98af65 intel corporate
+ 98b039 nokia
+ 98b3ef huawei device co., ltd.
+ 98b6e9 nintendo co.,ltd
+ 98b8ba lg electronics (mobile communications)
+ 98b8bc samsung electronics co.,ltd
+ 98b8e3 apple, inc.
+ 98ba39 doro ab
+ 98bb1e byd precision manufacture company ltd.
+ 98bb99 phicomm (sichuan) co.,ltd.
98bc57 sva technologies co.ltd
98bc99 edeltech co.,ltd.
98be94 ibm
+ 98bedc honor device co., ltd.
98c0eb global regency ltd
+ 98c3d2 ningbo sanxing medical electric co.,ltd
+ 98c5db ericsson ab
+ 98c7a4 shenzhen hs fiber communication equipment co., ltd
98c845 packetaccess
+ 98c8b8 vivo mobile communication co., ltd.
+ 98c97c shenzhen icomm semiconductor co.,ltd
+ 98ca33 apple, inc.
+ 98cb27 galore networks pvt. ltd.
+ 98cba4 benchmark electronics
+ 98cc4d shenzhen mantunsci co., ltd
+ 98cdac espressif inc.
98cdb4 virident systems, inc.
+ 98cf53 bbk educational electronics corp.,ltd.
+ 98d293 google, inc.
98d331 shenzhen bolutek technology co.,ltd.
+ 98d3d2 mekra lang gmbh & co. kg
+ 98d3e7 netafim l
98d686 chyi lee industry co., ltd.
- 98d6bb apple
- 98d6f7 lg electronics
+ 98d6bb apple, inc.
+ 98d6f7 lg electronics (mobile communications)
+ 98d863 shanghai high-flying electronics technology co., ltd
98d88c nortel networks
98da92 vuzix corporation
+ 98dac4 tp-link technologies co.,ltd.
98dcd9 unitec co., ltd.
+ 98dd5b takumi japan ltd
+ 98ddea infinix mobility limited
+ 98ded0 tp-link technologies co.,ltd.
+ 98df82 hangzhou hikvision digital technology co.,ltd.
+ 98e0d9 apple, inc.
98e165 accutome
+ 98e476 zentan
+ 98e743 dell inc.
98e79a foxconn(nanjing) communication co.,ltd.
+ 98e7f4 hewlett packard
+ 98e7f5 huawei technologies co.,ltd
+ 98e848 axiim
+ 98e8fa nintendo co.,ltd
98ec65 cosesy aps
- 98f0ab apple
+ 98ed5c tesla,inc.
+ 98ed7e eero inc.
+ 98eecb wistron infocomm (zhongshan) corporation
+ 98ef9b ohsung
+ 98f058 lynxspring, incl.
+ 98f0ab apple, inc.
+ 98f170 murata manufacturing co., ltd.
+ 98f181 new h3c technologies co., ltd
+ 98f199 nec platforms, ltd.
+ 98f2b3 hewlett packard enterprise
+ 98f428 zte corporation
+ 98f4ab espressif inc.
98f537 zte corporation
+ 98f5a9 ohsung
+ 98f621 xiaomi communications co ltd
+ 98f781 arris group, inc.
+ 98f7d7 arris group, inc.
98f8c1 idt technology limited
98f8db marini impianti industriali s.r.l.
+ 98f9c7 ieee registration authority
+ 98fa9b lcfc(hefei) electronics technology co., ltd
+ 98faa7 innonet
+ 98fae3 xiaomi communications co ltd
98fb12 grand electronics (hk) ltd
98fc11 cisco-linksys, llc
+ 98fc84 ieee registration authority
+ 98fd74 act.co.ltd
+ 98fdb4 primax electronics ltd.
98fe03 ericsson - north america
- 98fe94 apple
+ 98fe94 apple, inc.
98ff6a otec(shanghai)technology co.,ltd.
98ffd0 lenovo mobile communication technology ltd.
9c0111 shenzhen newabel electronic co., ltd.
9c0298 samsung electronics co.,ltd
9c039e beijing winchannel software technology co., ltd
- 9c0473 tecmobile (international) ltd.
- 9c04eb apple
+ 9c0473 tecmobile (international) ltd.
+ 9c04eb apple, inc.
+ 9c0567 honor device co., ltd.
+ 9c061b hangzhou h3c technologies co., limited
9c066e hytera communications corporation limited
+ 9c0cdf guangdong oppo mobile telecommunications corp.,ltd
9c0dac tymphany hk limited
+ 9c0e4a shenzhen vastking electronic co.,ltd.
+ 9c13ab chanson water co., ltd.
+ 9c1463 zhejiang dahua technology co., ltd.
9c1465 edata elektronik san. ve tic. a.Ş.
9c1874 nokia danmark a/s
- 9c1c12 aruba networks
+ 9c19c2 dongguan liesheng electronic co., ltd.
+ 9c1c12 aruba, a hewlett packard enterprise company
+ 9c1c37 altobeam (china) inc.
+ 9c1d36 huawei technologies co.,ltd
+ 9c1d58 texas instruments
+ 9c1e95 actiontec electronics, inc
+ 9c1ea4 renesas electronics (penang) sdn. bhd.
9c1fdd accupix inc.
- 9c207b apple
+ 9c207b apple, inc.
9c216a tp-link technologies co.,ltd.
- 9c220e tascan service gmbh
+ 9c220e tascan systems gmbh
+ 9c25be wildlife acoustics, inc.
9c2840 discovery technology,ltd..
+ 9c28b3 apple, inc.
9c28bf continental automotive czech republic s.r.o.
9c28ef huawei technologies co.,ltd
+ 9c28f7 xiaomi communications co ltd
+ 9c293f apple, inc.
+ 9c2976 intel corporate
9c2a70 hon hai precision ind. co.,ltd.
+ 9c2a83 samsung electronics co.,ltd
+ 9c2dcf shishi tongyun technology(chengdu)co.,ltd.
+ 9c2ea1 xiaomi communications co ltd
+ 9c2f4e zte corporation
+ 9c2f73 universal tiancheng technology (beijing) co., ltd.
+ 9c305b hon hai precision ind. co.,ltd.
+ 9c3066 rwe effizienz gmbh
9c3178 foshan huadian intelligent communications teachnologies co.,ltd
9c31b6 kulite semiconductor products inc
+ 9c31c3 bskyb ltd
+ 9c32a9 sichuan tianyi comheart telecomco., ltd
+ 9c32ce canon inc.
+ 9c3426 arris group, inc.
+ 9c3583 nipro diagnostics, inc
+ 9c35eb apple, inc.
+ 9c37f4 huawei technologies co.,ltd
+ 9c3a9a shenzhen sundray technologies company limited
9c3aaf samsung electronics co.,ltd
+ 9c3dcf netgear
9c3eaa envylogic co.,ltd.
- 9c417c hame technology co., limited
+ 9c417c hame technology co., limited
+ 9c431e ieee registration authority
9c443d chengdu xuguang technology co, ltd
9c44a6 swifttest, inc.
9c4563 dimep sistemas
+ 9c497f integrated device technology (malaysia) sdn. bhd.
9c4a7b nokia corporation
9c4cae mesa labs
- 9c4e20 cisco systems, inc.
+ 9c4e20 cisco systems, inc
9c4e36 intel corporate
9c4e8e alt systems ltd
9c4ebf boxcast
+ 9c4f5f tap sound system
+ 9c4fcf tct mobile ltd
+ 9c4fda apple, inc.
+ 9c50ee cambridge industries(group) co.,ltd.
+ 9c52f8 huawei technologies co.,ltd
9c53cd engicam s.r.l.
9c541c shenzhen my-power technology co.,ltd
9c54ca zhengzhou vcom science and technology co.,ltd
+ 9c54da skybell technologies inc.
9c55b4 i.s.e. s.r.l.
9c5711 feitian xunda(beijing) aeronautical information technology co., ltd.
+ 9c57ad cisco systems, inc
+ 9c5a44 compal information (kunshan) co., ltd.
9c5b96 nmr corporation
9c5c8d firemax indÚstria e comÉrcio de produtos eletrÔnicos ltda
- 9c5d12 aerohive networks inc
+ 9c5c8e asustek computer inc.
+ 9c5cf9 sony mobile communications inc
+ 9c5d12 extreme networks, inc.
9c5d95 vtc electronics corp.
9c5e73 calibre uk ltd
- 9c611d omni-id usa, inc.
+ 9c5f5a guangdong oppo mobile telecommunications corp.,ltd
+ 9c5fb0 samsung electronics co.,ltd
+ 9c611d panasonic corporation of north america
+ 9c6121 sichuan tianyi comheart telecomco.,ltd
+ 9c62ab sumavision technologies co.,ltd
+ 9c63ed zte corporation
9c645e harman consumer group
+ 9c648b apple, inc.
9c65b0 samsung electronics co.,ltd
+ 9c65ee dasan network solutions
9c65f9 acsip technology corp.
9c6650 glodio technolies co.,ltd tianjin branch
+ 9c685b octonion sa
+ 9c6865 fiberhome telecommunication technologies co.,ltd
+ 9c6937 qorvo international pte. ltd.
+ 9c69b4 ieee registration authority
+ 9c69d1 huawei technologies co.,ltd
9c6abe qees aps.
+ 9c6b37 renesas electronics (penang) sdn. bhd.
+ 9c6b72 realme chongqing mobiletelecommunications corp ltd
+ 9c6c15 microsoft corporation
+ 9c6f52 zte corporation
+ 9c713a huawei technologies co.,ltd
+ 9c7370 huawei technologies co.,ltd
+ 9c741a huawei technologies co.,ltd
+ 9c746f huawei technologies co.,ltd
9c7514 wildix srl
+ 9c760e apple, inc.
+ 9c7613 ring llc
9c77aa nadasnv
9c79ac suntec software(shanghai) co., ltd.
+ 9c7a03 ciena corporation
9c7bd2 neolab convergence
+ 9c7bef hewlett packard
+ 9c7da3 huawei technologies co.,ltd
+ 9c7f57 unic memory technology co ltd
+ 9c7f81 shenzhen fast technologies co.,ltd
9c807d syscable korea inc.
9c80df arcadyan technology corporation
+ 9c823f huawei device co., ltd.
+ 9c8275 yichip microelectronics (hangzhou) co.,ltd
+ 9c8281 vivo mobile communication co., ltd.
+ 9c83bf pro-vision, inc.
+ 9c84bf apple, inc.
9c86da phoenix geophysics ltd.
9c8888 simac techniek nv
+ 9c88ad fiberhome telecommunication technologies co.,ltd
+ 9c8acb juniper networks
+ 9c8ba0 apple, inc.
9c8bf1 the warehouse limited
+ 9c8c6e samsung electronics co.,ltd
+ 9c8cd8 hewlett packard enterprise
9c8d1a integ process group inc
- 9c8e99 hewlett-packard company
+ 9c8d7c alpsalpine co,.ltd
+ 9c8dd3 leonton technologies
+ 9c8e99 hewlett packard
+ 9c8e9c huawei device co., ltd.
+ 9c8ecd amcrest technologies
9c8edc teracom limited
9c934e xerox corporation
+ 9c93b0 megatronix (beijing) technology co., ltd.
+ 9c93e4 private
+ 9c9567 huawei device co., ltd.
9c95f8 smartdoor systems, llc
9c9726 technicolor
+ 9c9789 1more
9c9811 guangzhou sunrise electronics development co., ltd
+ 9c99a0 xiaomi communications co ltd
+ 9c99cd voippartners
+ 9c9ac0 lego system a/s
9c9c1d starkey labs inc.
+ 9c9c1f espressif inc.
+ 9c9c40 sichuan tianyi comheart telecomco., ltd
+ 9c9d5d raden inc
+ 9c9d7e beijing xiaomi mobile software co., ltd
9ca10a scle sfe
9ca134 nike, inc.
+ 9ca3a9 guangzhou juan optical and electronical tech joint stock co., ltd
9ca3ba sakura internet inc.
+ 9ca513 samsung electronics co.,ltd
+ 9ca525 shandong usr iot technology limited
+ 9ca570 eero inc.
9ca577 osorno enterprises inc.
+ 9ca5c0 vivo mobile communication co., ltd.
+ 9ca615 tp-link technologies co.,ltd.
+ 9ca69d whaley technology co.ltd
9ca9e4 zte corporation
+ 9caa1b microsoft corporation
+ 9cac6d universal electronics, inc.
+ 9cad97 hon hai precision ind. co.,ltd.
9cadef obihai technology, inc.
- 9cafca cisco systems, inc.
+ 9caed3 seiko epson corporation
+ 9caf6f itel mobile limited
+ 9cafca cisco systems, inc
9cb008 ubiquitous computing technology corporation
9cb206 procentec
+ 9cb2b2 huawei technologies co.,ltd
+ 9cb2e8 huawei technologies co.,ltd
9cb654 hewlett packard
+ 9cb6d0 rivet networks
9cb70d liteon technology corporation
9cb793 creatcomm technology inc.
9cbb98 shen zhen rnd electronic co.,ltd
+ 9cbcf0 xiaomi communications co ltd
+ 9cbd6e dera co., ltd
9cbd9d skydisk, inc.
+ 9cbee0 biosoundlab co., ltd.
9cc077 printcounts, llc
- 9cc0d2 conductix-wampfler ag
+ 9cc0d2 conductix-wampfler gmbh
+ 9cc172 huawei technologies co.,ltd
9cc7a6 avm gmbh
9cc7d1 sharp corporation
+ 9cc8ae becton, dickinson and company
+ 9cc8fc arris group, inc.
+ 9cc950 baumer holding
+ 9cc9eb netgear
9ccad9 nokia corporation
+ 9ccc83 juniper networks
9ccd82 cheng uei precision industry co.,ltd
9cd21e hon hai precision ind. co.,ltd.
9cd24b zte corporation
- 9cd36d netgear inc.,
+ 9cd332 plc technology ltd
+ 9cd35b samsung electronics co.,ltd
+ 9cd36d netgear
+ 9cd48b innolux technology europe bv
9cd643 d-link international
+ 9cd917 motorola mobility llc, a lenovo company
+ 9cd9cb lesira manufacturing pty ltd
+ 9cda3e intel corporate
+ 9cdb07 thum+mahr gmbh
+ 9cdbcb wuhan funshion online technologies co.,ltd
+ 9cdc71 hewlett packard enterprise
+ 9cdd1f intelligent steward co.,ltd
9cdf03 harman/becker automotive systems gmbh
+ 9cdfb1 shenzhen crave communication co., ltd
+ 9ce063 samsung electronics co.,ltd
9ce10e nctech ltd
+ 9ce176 cisco systems, inc
9ce1d6 junger audio-studiotechnik gmbh
+ 9ce230 julong co,.ltd.
+ 9ce33f apple, inc.
+ 9ce374 huawei technologies co.,ltd
9ce635 nintendo co., ltd.
+ 9ce65e apple, inc.
9ce6e7 samsung electronics co.,ltd
9ce7bd winduskorea co., ltd
+ 9ce82b vivo mobile communication co., ltd.
+ 9ce895 new h3c technologies co., ltd
+ 9ce91c zte corporation
+ 9ce951 shenzhen sang fei consumer communications ltd., co.
+ 9cea97 honor device co., ltd.
9cebe8 bizlink (kunshan) co.,ltd
- 9cf61a utc fire and security
+ 9cedfa evulution ag
+ 9cefd5 panda wireless, inc.
+ 9cf029 integrated device technology (malaysia) sdn. bhd.
+ 9cf387 apple, inc.
+ 9cf48e apple, inc.
+ 9cf531 guangdong oppo mobile telecommunications corp.,ltd
+ 9cf61a carrier fire & security
9cf67d ricardo prague, s.r.o.
+ 9cf6dd ieee registration authority
9cf8db shenzhen eyunmei technology co,.ltd
9cf938 areva np gmbh
+ 9cfbd5 vivo mobile communication co., ltd.
9cfbf1 mesomatic gmbh & co.kg
+ 9cfc01 apple, inc.
+ 9cfc28 apple, inc.
+ 9cfcd1 aetheris technology (shanghai) co., ltd.
+ 9cfce8 intel corporate
+ 9cfea1 fiberhome telecommunication technologies co.,ltd
9cffbe otsl inc.
+ 9cffc2 avi systems gmbh
+ a002dc amazon technologies inc.
a00363 robert bosch healthcare gmbh
- a00798 samsung electronics
+ a0043e parker hannifin manufacturing germany gmbh & co. kg
+ a00460 netgear
+ a00627 nexpa system
+ a00798 samsung electronics co.,ltd
a007b6 advanced technical support, inc.
+ a0086f huawei technologies co.,ltd
+ a0094c centurylink
+ a009ed avaya inc
a00abf wieson technologies co., ltd.
- a00bba samsung electro-mechanics
+ a00bba samsung electro mechanics co., ltd.
a00ca1 sktb skit
- a01290 avaya, inc
- a0133b copyright © hiti digital, inc.
+ a01081 samsung electronics co.,ltd
+ a01290 avaya inc
+ a012db tabuchi electric co.,ltd
+ a0133b hiti digital, inc.
+ a013cb fiberhome telecommunication technologies co.,ltd
a0143d parrot sa
a0165c triteka ltd
+ a01828 apple, inc.
a01859 shenzhen yidashi electronics co ltd
a01917 bertel s.p.a.
+ a019b2 ieee registration authority
+ a01b29 sagemcom broadband sas
a01c05 nimax telecom co.,ltd.
+ a01c8d huawei technologies co.,ltd
a01d48 hewlett packard
- a02195 samsung electronics digital imaging
+ a01e0b minix technology limited
+ a020a6 espressif inc.
+ a02195 samsung electronics co.,ltd
a021b7 netgear
+ a0224e ieee registration authority
+ a022de vivo mobile communication co., ltd.
a0231b telecomp r&d corp.
+ a0239f cisco systems, inc
+ a027b6 samsung electronics co.,ltd
+ a02833 ieee registration authority
+ a028ed hmd global oy
a02bb8 hewlett packard
+ a02c36 fn-link technology limited
+ a02d13 airties wireless networks
a02ef3 united integrated services co., led.
+ a03299 lenovo (beijing) co., ltd.
+ a0341b adero inc
+ a03679 huawei technologies co.,ltd
a0369f intel corporate
a036f0 comprehensive power
a036fa ettus research llc
+ a038f8 oura health oy
+ a039ee sagemcom broadband sas
+ a039f7 lg electronics (mobile communications)
a03a75 pss belgium n.v.
+ a03b01 kyung in electronics
a03b1b inspire tech
+ a03be3 apple, inc.
+ a03c31 shenzhen belon technology co.,ltd
+ a03d6e cisco systems, inc
+ a03d6f cisco systems, inc
+ a03e6b ieee registration authority
a04025 actioncable, inc.
a04041 samwonfa co.,ltd.
+ a040a0 netgear
+ a0412d lansen systems ab
+ a04147 huawei device co., ltd.
+ a0415e opsens solution inc.
a041a7 nl ministry of defense
a0423f tyan computer corp
+ a04246 it telecom co., ltd.
+ a043b0 hangzhou broadlink technology co.,ltd
+ a043db sitael s.p.a.
+ a047d7 best it world (india) pvt ltd
a0481c hewlett packard
+ a04a5e microsoft corporation
+ a04c5b shenzhen tinno mobile technology corp.
a04cc1 helixtech corp.
+ a04e01 central engineering co.,ltd.
a04e04 nokia corporation
- a051c6 avaya, inc
- a055de pace plc
+ a04ea7 apple, inc.
+ a04f85 lg electronics (mobile communications)
+ a04fd4 adb broadband italia
+ a0510b intel corporate
+ a051c6 avaya inc
+ a0554f cisco systems, inc
+ a055de arris group, inc.
+ a056b2 harman/becker automotive systems gmbh
+ a056f3 apple, inc.
+ a057e3 huawei technologies co.,ltd
a0593a v.d.s. video display systems srl
a05aa4 grand products nevada, inc.
a05b21 envinet gmbh
a05dc1 tmct co., ltd.
a05de7 directv, inc.
a05e6b melper co., ltd.
+ a06090 samsung electronics co.,ltd
+ a06260 private
+ a062fb hisense visual technology co.,ltd
+ a06391 netgear
+ a0648f askey computer corp
a06518 vnpt technology
- a067be sicon s.r.l.
+ a06610 fujitsu limited
+ a067be sicon srl
+ a0681c gd midea air-conditioning equipment co.,ltd.
+ a0687e arris group, inc.
+ a06974 honor device co., ltd.
a06986 wellav technologies ltd
a06a00 verilink corporation
+ a06a44 vizio, inc
a06cec rim
a06d09 intelcan technosystems inc.
a06e50 nanotek elektronik sistemler ltd. sti.
+ a06faa lg innotek
+ a07099 beijing huacan electronics co., ltd
+ a070b7 huawei technologies co.,ltd
a071a9 nokia corporation
+ a0722c humax co., ltd.
+ a072e4 nj system co.,ltd
a07332 cashmaster international limited
a073fc rancore technologies private limited
a07591 samsung electronics co.,ltd
+ a075ea boxlock, inc.
+ a0764e espressif inc.
+ a07751 asmedia technology inc.
a07771 vialis bv
+ a07817 apple, inc.
a078ba pantech co., ltd.
a0821f samsung electronics co.,ltd
+ a082ac linear dms solutions sdn. bhd.
a082c7 p.t.i co.,ltd
+ a084cb sonicsensory,inc.
+ a085fc microsoft corporation
a0861d chengdu fuhuaxin technology co.,ltd
+ a086c6 xiaomi communications co ltd
a086ec saehan hitec co., ltd
a08869 intel corporate
a088b4 intel corporate
@@ -16735,1895 +23439,4979 @@ exit
a08a87 huizhou kaiyue electronic co.,ltd
a08c15 gerhard d. wempe kg
a08c9b xtreme technologies corp
+ a08cf8 huawei technologies co.,ltd
+ a08cfd hewlett packard
+ a08d16 huawei technologies co.,ltd
+ a08e78 sagemcom broadband sas
a090de veedims,llc
+ a09169 lg electronics (mobile communications)
+ a091a2 oneplus electronics (shenzhen) co., ltd.
+ a091c8 zte corporation
+ a09347 guangdong oppo mobile telecommunications corp.,ltd
+ a09351 cisco systems, inc
+ a0946a shenzhen xgtec technology co,.ltd.
+ a0950c china mobile iot company limited
a09805 openvox communication co ltd
a098ed shandong intelligent optical communication development co., ltd.
+ a0999b apple, inc.
a09a5a time domain
+ a09b12 china mobile iot company limited
+ a09b17 taicang t&w electronics
a09bbd total aviation solutions pty ltd
+ a09d86 alcatel-lucent shanghai bell co., ltd
+ a09d91 soundbridge
+ a09dc1 china dragon technology limited
+ a09e1a polar electro oy
+ a09f10 shenzhen bilian electronic co.,ltd
a0a130 dli taiwan branch office
a0a23c gpms
+ a0a33b huawei technologies co.,ltd
+ a0a3b8 wiscloud
+ a0a3e2 actiontec electronics, inc
+ a0a3f0 d-link international
+ a0a4c5 intel corporate
+ a0a65c supercomputing systems ag
a0a763 polytron vertrieb gmbh
a0a8cd intel corporate
a0aafd erathink technologies corp.
+ a0ab1b d-link international
+ a0ab51 weifang goertek electronics co.,ltd
+ a0ac69 samsung electronics co.,ltd
+ a0ada1 jmr electronics, inc
+ a0afbd intel corporate
+ a0b045 halong mining
a0b100 shenzhen cando electronics co.,ltd
a0b3cc hewlett packard
+ a0b437 gd mission systems
+ a0b439 cisco systems, inc
+ a0b4a5 samsung electronics co.,ltd
+ a0b549 arcadyan corporation
a0b5da hongkong thtf co., ltd
a0b662 acutvista innovation co., ltd.
+ a0b8f8 amgen u.s.a. inc.
a0b9ed skytap
a0bab8 pixon imaging
+ a0bb3e ieee registration authority
+ a0bd1d zhejiang dahua technology co., ltd.
+ a0bdcd bskyb ltd
a0bf50 s.c. add-production s.r.l.
a0bfa5 coresys
+ a0c2de costar video systems
a0c3de triton electronic systems ltd.
+ a0c4a5 sygn house co.,ltd
+ a0c562 arris group, inc.
+ a0c589 intel corporate
+ a0c5f2 ieee registration authority
a0c6ec shenzhen anyk technology co.,ltd
+ a0c9a0 murata manufacturing co., ltd.
+ a0caa5 intelligence technology of cec co., ltd
+ a0cbfd samsung electronics co.,ltd
+ a0cc2b murata manufacturing co., ltd.
a0cec8 ce link limited
- a0cf5b cisco systems, inc.
+ a0cf5b cisco systems, inc
+ a0cff5 zte corporation
+ a0d0dc amazon technologies inc.
a0d12a axpro technology inc.
+ a0d37a intel corporate
+ a0d385 auma riester gmbh & co. kg
a0d3c1 hewlett packard
+ a0d635 wbs technology
+ a0d795 apple, inc.
+ a0d7a0 huawei device co., ltd.
+ a0d807 huawei device co., ltd.
+ a0d83d fiberhome telecommunication technologies co.,ltd
+ a0d86f argo ai, llc
a0da92 nanjing glarun atten technology co. ltd.
a0dc04 becker-antriebe gmbh
a0dd97 polarlink technologies, ltd
a0dde5 sharp corporation
- a0de05 jsc "irbis-t"
+ a0de05 jsc irbis-t
+ a0de0f huawei device co., ltd.
+ a0df15 huawei technologies co.,ltd
+ a0e0af cisco systems, inc
a0e201 avtrace ltd.(china)
a0e25a amicus sk, s.r.o.
a0e295 dat system co.,ltd
- a0e453 sony mobile communications ab
+ a0e453 sony mobile communications inc
+ a0e4cb zyxel communications corporation
a0e534 stratec biomedical ag
a0e5e9 enimai inc
+ a0e617 matis
+ a0e6f8 texas instruments
a0e9db ningbo freewings technologies co.,ltd
a0eb76 aircuve inc.
a0ec80 zte corporation
- a0edcd apple
+ a0ecf9 cisco systems, inc
+ a0edcd apple, inc.
a0ef84 seine image int'l co., ltd
- a0f217 ge medical system(china) co., ltd.
- a0f3c1 tp-link technologies co., ltd.
- a0f3e4 alcatel lucent ipd
+ a0f217 ge medical system(china) co., ltd.
+ a0f3c1 tp-link technologies co.,ltd.
+ a0f3e4 alcatel-lucent ipd
a0f419 nokia corporation
a0f450 htc corporation
a0f459 fn-link technology limited
+ a0f479 huawei technologies co.,ltd
+ a0f6fd texas instruments
+ a0f849 cisco systems, inc
+ a0f895 shenzhen tinno mobile technology corp.
+ a0f9b7 ademco smart homes technology(tianjin)co.,ltd.
+ a0f9e0 vivatel company limited
+ a0fbc5 apple, inc.
+ a0fc6e telegrafia a.s.
+ a0fe61 vivint wireless inc.
a0fe91 avat automation gmbh
+ a0ff70 technicolor ch usa inc.
+ a400e2 huawei technologies co.,ltd
a40130 abisystems co., ltd
+ a402b9 intel corporate
+ a40450 nfore technology inc.
+ a4056e tiinlab corporation
a4059e sta infinity llp
+ a406e9 texas instruments
+ a407b6 samsung electronics co.,ltd
+ a40801 amazon technologies inc.
+ a408ea murata manufacturing co., ltd.
+ a408f5 sagemcom broadband sas
a409cb alfred kaercher gmbh & co kg
a40bed carry technology co.,ltd
- a40cc3 cisco systems, inc.
- a4134e luxul
- a41566 wei fang goertek electronics co.,ltd
+ a40c66 shenzhen colorful yugong technology and development co., ltd.
+ a40cc3 cisco systems, inc
+ a40dbc xiamen intretech inc.
+ a40e2b facebook inc
+ a41115 robert bosch engineering and business solutions pvt. ltd.
+ a41162 arlo technology
+ a41163 ieee registration authority
+ a41194 lenovo
+ a41232 guangdong oppo mobile telecommunications corp.,ltd
+ a41242 nec platforms, ltd.
+ a4134e luxul
+ a41437 hangzhou hikvision digital technology co.,ltd.
+ a41566 weifang goertek electronics co.,ltd
+ a41588 arris group, inc.
+ a416e7 huawei technologies co.,ltd
a41731 hon hai precision ind. co.,ltd.
- a41875 cisco systems, inc.
+ a4178b huawei technologies co.,ltd
+ a41791 shenzhen decnta technology co.,ltd.
+ a41875 cisco systems, inc
+ a41908 fiberhome telecommunication technologies co.,ltd
+ a41b34 china mobile group device co.,ltd.
a41bc0 fastec imaging corporation
a41f72 dell inc.
a4218a nortel networks
a42305 open networking laboratory
a424b3 flatfrog laboratories ab
+ a424dd cambrionix ltd
+ a4251b avaya inc
+ a42618 integrated device technology (malaysia) sdn. bhd.
+ a42655 lti motion (shanghai) co., ltd.
+ a428b7 yangtze memory technologies co., ltd.
a42940 shenzhen youhua technology co., ltd
+ a42983 boeing defence australia
+ a42985 sichuan ai-link technology co., ltd.
a429b7 bluesky
+ a42b8c netgear
+ a42bb0 tp-link technologies co.,ltd.
a42c08 masterwork automodules
+ a4307a samsung electronics co.,ltd
+ a43111 ziv
+ a43135 apple, inc.
a433d1 fibrlink communications co.,ltd.
+ a433d7 mitrastar technology corp.
+ a43412 thales alenia space
+ a434d9 intel corporate
+ a434f1 texas instruments
+ a43523 guangdong donyan network technologies co.,ltd.
+ a4352d triz networks corp.
+ a43831 rf elements s.r.o.
+ a438cc nintendo co.,ltd
a438fc plastic logic
+ a439b6 shenzhen peizhe microelectronics co .ltd
a43a69 vers inc
+ a43b0e huawei device co., ltd.
+ a43bfa ieee registration authority
+ a43d78 guangdong oppo mobile telecommunications corp.,ltd
+ a43e51 anov france
+ a43ea0 icomm hk limited
+ a44027 zte corporation
+ a4423b intel corporate
+ a444d1 wingtech group (hongkong)limited
+ a44519 xiaomi communications co ltd
+ a445cd iot diagnostics
a4466b eoc technology
+ a446b4 huawei device co., ltd.
a446fa amtran video corporation
+ a44ad3 st electronics(shanghai) co.,ltd
a44b15 sun cupid technology (hk) ltd
- a44c11 cisco systems, inc.
+ a44bd5 xiaomi communications co ltd
+ a44c11 cisco systems, inc
+ a44c62 hangzhou microimage software co., ltd
+ a44cc8 dell inc.
a44e2d adaptive wireless solutions, llc
a44e31 intel corporate
+ a44f29 ieee registration authority
+ a45006 shenzhen huachuang shidai technologyco.,ltd
+ a45046 xiaomi communications co ltd
a45055 busware.de
+ a45129 xag
+ a4516f microsoft mobile oy
a4526f adb broadband italia
+ a4530e cisco systems, inc
+ a45385 weifang goertek electronics co.,ltd
+ a453ee ieee registration authority
+ a45602 fenglian technology co.,ltd.
a4561b mcot corporation
- a45630 cisco systems, inc.
+ a45630 cisco systems, inc
+ a456cc technicolor ch usa inc.
+ a45802 shin-il tech
+ a4580f ieee registration authority
a45a1c smart-electronic gmbh
a45c27 nintendo co., ltd.
a45d36 hewlett packard
+ a45da1 adb broadband italia
+ a45e5a activio inc.
+ a45e60 apple, inc.
+ a45f9b nexell
+ a46011 verifone
a46032 mrv communications (networks) ltd
- a46706 apple
+ a46191 namjunsa
+ a462df ds global. co., ltd
+ a463a1 inventus power eletronica do brasil ltda
+ a46706 apple, inc.
+ a468bc oakley inc.
+ a46bb6 intel corporate
+ a46c2a cisco systems, inc
a46cc1 lti reenergy gmbh
+ a46cf1 samsung electronics co.,ltd
+ a46da4 huawei technologies co.,ltd
a46e79 dft system co.ltd
- a47733 google
+ a470d6 motorola mobility llc, a lenovo company
+ a47174 huawei technologies co.,ltd
+ a47733 google, inc.
+ a47758 ningbo freewings technologies co.,ltd
a47760 nokia corporation
+ a47886 avaya inc
a479e4 klinfo corp
a47aa4 arris group, inc.
a47acf vibicom communications inc.
+ a47b1a huawei device co., ltd.
+ a47b2c nokia
+ a47b85 ultimedia co ltd,
+ a47b9d espressif inc.
a47c14 chargestorm ab
a47c1f cobham plc
+ a47cc9 huawei technologies co.,ltd
+ a47d9f shenzhen icomm semiconductor co.,ltd
+ a47e36 em microelectronic
a47e39 zte corporation
+ a4817a cig shanghai co ltd
a481ee nokia corporation
+ a48269 datrium, inc.
+ a483e7 apple, inc.
+ a48431 samsung electronics co.,ltd
a4856b q electronics ltd
+ a486ae quectel wireless solutions co., ltd.
+ a48873 cisco systems, inc
a4895b ark infosolutions pvt ltd
+ a48cc0 jlg industries, inc.
+ a48cdb lenovo
+ a48d3b vizio, inc
+ a48e0a delaval international ab
a49005 china greatwall computer shenzhen co.,ltd
- a4934c cisco systems, inc.
+ a491b1 technicolor
+ a492cb nokia
+ a4933f huawei technologies co.,ltd
+ a49340 beijing supvan information technology co.,ltd.
+ a4934c cisco systems, inc
+ a49426 elgama-elektronika ltd.
+ a49733 askey computer corp
+ a4975c vtech telecommunications ltd.
+ a497b1 chongqing fugui electronics co.,ltd.
a497bb hitachi industrial equipment systems co.,ltd
- a49947 huawei technologies co., ltd
+ a49813 arris group, inc.
+ a49947 huawei technologies co.,ltd
a49981 fujian elite power tech co.,ltd.
a49a58 samsung electronics co.,ltd
- a49b13 burroughs payment systems, inc.
+ a49b13 digital check
+ a49b4f huawei technologies co.,ltd
+ a49bcd cisco systems, inc
+ a49bf5 hybridserver tec gmbh
+ a49d49 ketra, inc.
a49edb autocrib, inc.
a49f85 lyve minds, inc
a49f89 shanghai rui rui communication technology co.ltd.
+ a4a179 nanjing dianyan electric power automation co. ltd
+ a4a1c2 ericsson ab
+ a4a1e4 innotube, inc.
a4a24a cisco spvtg
+ a4a46b huawei technologies co.,ltd
+ a4a4d3 bluebank communication technology co.ltd
+ a4a6a9 private
a4a80f shenzhen coship electronics co., ltd.
+ a4aafe huawei device co., ltd.
+ a4ac0f huawei device co., ltd.
a4ad00 ragsdale technology
a4adb8 vitec group, camera dynamics ltd
+ a4ae11 hon hai precision ind. co., ltd.
+ a4ae12 hon hai precision ind. co., ltd.
a4ae9a maestro wireless solutions ltd.
a4b121 arantia 2010 s.l.
- a4b197 apple
+ a4b197 apple, inc.
+ a4b1c1 intel corporate
a4b1e9 technicolor
a4b1ee h. zander gmbh & co. kg
+ a4b239 cisco systems, inc
a4b2a7 adaxys solutions ag
a4b36a jsc sdo chromatec
+ a4b439 cisco systems, inc
+ a4b52e integrated device technology (malaysia) sdn. bhd.
+ a4b61e huawei device co., ltd.
+ a4b805 apple, inc.
a4b818 penta gesellschaft für elektronische industriedatenverarbeitung mbh
a4b980 parking boxx inc.
+ a4ba76 huawei technologies co.,ltd
a4badb dell inc.
+ a4bb6d dell inc.
a4bbaf lime instruments
+ a4bdc4 huawei technologies co.,ltd
+ a4be2b huawei technologies co.,ltd
a4be61 eutrovision system, inc.
+ a4bf01 intel corporate
a4c0c7 shenzhen hitom communication technology co..ltd
a4c0e1 nintendo co., ltd.
+ a4c138 telink semiconductor (taipei) co. ltd.
a4c2ab hangzhou lead-it information & technology co.,ltd
- a4c361 apple
+ a4c361 apple, inc.
+ a4c3f0 intel corporate
+ a4c494 intel corporate
+ a4c54e huawei device co., ltd.
+ a4c64f huawei technologies co.,ltd
+ a4c74b huawei device co., ltd.
a4c7de cambridge industries(group) co.,ltd.
+ a4c939 guangdong oppo mobile telecommunications corp.,ltd
+ a4caa0 huawei technologies co.,ltd
+ a4cc32 inficomm co., ltd
+ a4ccb9 realme chongqing mobile telecommunications corp.,ltd.
+ a4cd23 shenzhenshi xinzhongxin co., ltd
+ a4ceda arcadyan corporation
+ a4cf12 espressif inc.
+ a4cfd2 ubee interactive co., limited
a4d094 erwin peters systemtechnik gmbh
- a4d18f shenzhen skyee optical fiber communication technology ltd.
+ a4d18c apple, inc.
+ a4d18f shenzhen skyee optical fiber communication technology ltd.
a4d1d1 ecotality north america
- a4d1d2 apple
+ a4d1d2 apple, inc.
a4d3b5 glitel stropkov, s.r.o.
- a4d856 qualcomm labs inc.
+ a4d4b2 shenzhen meig smart technology co.,ltd
+ a4d578 texas instruments
+ a4d795 wingtech mobile communications co.,ltd
+ a4d856 gimbal, inc
+ a4d8ca hong kong water world technology co. limited
+ a4d931 apple, inc.
+ a4d990 samsung electronics co.,ltd
+ a4d9a4 nexus id solutions ab
+ a4da22 ieee registration authority
+ a4da32 texas instruments
a4da3f bionics corp.
+ a4dad4 yamato denki co.,ltd.
a4db2e kingspan environmental ltd
a4db30 liteon technology corporation
+ a4dcbe huawei technologies co.,ltd
a4de50 total walther gmbh
+ a4dec9 qlove mobile intelligence information technology (w.h.) co. ltd.
a4e0e6 filizola s.a. pesagem e automacao
+ a4e31b nokia
a4e32e silicon & software systems ltd.
a4e391 deny fontaine
- a4e4b8 blackberry limited
+ a4e4b8 blackberry rts
+ a4e57c espressif inc.
+ a4e597 gessler gmbh
+ a4e615 shenzhen chuangwei-rgb electronics co.,ltd
+ a4e6b1 shanghai joindata technology co.,ltd.
a4e731 nokia corporation
a4e7e4 connex gmbh
+ a4e975 apple, inc.
a4e991 sistemas audiovisuales itelsis s.l.
a4e9a3 honest technology co., ltd
+ a4ea8e extreme networks, inc.
a4ebd3 samsung electronics co.,ltd
+ a4ed43 ieee registration authority
a4ed4e arris group, inc.
a4ee57 seiko epson corporation
a4ef52 telewave co., ltd.
+ a4f05e guangdong oppo mobile telecommunications corp.,ltd
+ a4f1e8 apple, inc.
a4f3c1 open source robotics foundation, inc.
+ a4f3e7 integrated device technology (malaysia) sdn. bhd.
+ a4f465 itel mobile limited
+ a4f4c2 vnpt technology
a4f522 chofu seisakusho co.,ltd
a4f7d0 lan accessories co., ltd.
+ a4f9e4 airvine scientific, inc.
+ a4fa76 new h3c technologies co., ltd
a4fb8d hangzhou dunchong technology co.ltd
+ a4fc77 mega well limited
a4fcce security expert ltd.
+ a8016d aiwa corporation
a80180 imago technologies gmbh
+ a802db zte corporation
+ a8032a espressif inc.
+ a80577 netlist, inc.
a80600 samsung electronics co.,ltd
- a80c0d cisco
+ a80c0d cisco systems, inc
+ a80c63 huawei technologies co.,ltd
+ a80cca shenzhen sundray technologies company limited
+ a81087 texas instruments
+ a811fc arris group, inc.
+ a81374 panasonic corporation avc networks company
a8154d tp-link technologies co.,ltd.
- a816b2 lg electronics
+ a81559 breathometer, inc.
+ a815d6 shenzhen meione technology co., ltd
+ a816b2 lg electronics (mobile communications)
+ a816d0 samsung electronics co.,ltd
a81758 elektronik system i umeå ab
a81b18 xts corp
+ a81b5a guangdong oppo mobile telecommunications corp.,ltd
+ a81b5d foxtel management pty ltd
+ a81b6a texas instruments
+ a81d16 azurewave technology inc.
+ a81e84 quanta computer inc.
a81faf krypton polska
- a82066 apple
+ a82066 apple, inc.
+ a823fe lg electronics
+ a824b8 nokia
a824eb zao npo introtest
+ a825eb cambridge industries(group) co.,ltd.
a826d9 htc corporation
a8294c precision optical transceivers, inc.
+ a82bb5 edgecore networks corporation
+ a82bb9 samsung electronics co.,ltd
+ a82bcd huawei technologies co.,ltd
a82bd6 shina system co., ltd
- a830ad wei fang goertek electronics co.,ltd
+ a8301c qingdao intelligent&precise electronics co.,ltd.
+ a830ad weifang goertek electronics co.,ltd
+ a830bc samsung electronics co.,ltd
+ a8329a digicom futuristic technologies ltd.
+ a8346a samsung electronics co.,ltd
+ a83512 huawei device co., ltd.
+ a8367a frogblue technology gmbh
+ a83759 huawei device co., ltd.
a83944 actiontec electronics, inc
+ a83b5c huawei technologies co.,ltd
+ a83ccb rossma
+ a83e0e hmd global oy
+ a83fa1 ieee registration authority
+ a84025 oxide computer company
a84041 dragino technology co., limited
+ a8407d gd midea air-conditioning equipment co.,ltd.
+ a84122 china mobile (hangzhou) information technology co.,ltd.
+ a842a7 jiangsu huitong group co.,ltd.
+ a84397 innogrit corporation
a84481 nokia corporation
+ a845cd siselectron technology ltd.
a845e9 firich enterprises co., ltd.
+ a8469d cisco meraki
+ a8474a hon hai precision ind. co.,ltd.
+ a8494d huawei technologies co.,ltd
a849a5 lisantech co., ltd.
- a854b2 wistron neweb corp.
+ a84d4a audiowise technology inc.
+ a84e3f hitron technologies. inc
+ a85081 huawei technologies co.,ltd
+ a8515b samsung electronics co.,ltd
+ a854b2 wistron neweb corporation
a8556a pocketnet technology inc.
a8574e tp-link technologies co.,ltd.
+ a85840 cambridge industries(group) co.,ltd.
+ a85ae0 huawei device co., ltd.
+ a85af3 shanghai siflower communication technology co., ltd
+ a85b6c robert bosch gmbh, cm-ci2
+ a85b78 apple, inc.
a85bb0 shenzhen dehoo technology co.,ltd
a85bf3 audivo gmbh
+ a85c2c apple, inc.
+ a85e45 asustek computer inc.
+ a85ee4 12sided technology, llc
+ a860b6 apple, inc.
+ a8610a arduino ag
a861aa cloudview limited
a862a2 jiwumedia co., ltd.
+ a8637d d-link international
a863df displaire corporation
a863f2 texas instruments
+ a86405 nimbus 9, inc
a865b2 dongguan yishang electronic technology co., limited
+ a8667f apple, inc.
+ a8698c oracle corporation
a86a6f rim
+ a86abb sagemcom broadband sas
+ a86ac1 hanbiteds co., ltd.
+ a86b7c shenzhen fenglian technology co., ltd.
+ a86bad hon hai precision ind. co.,ltd.
+ a86d5f raisecom technology co., ltd
+ a86daa intel corporate
+ a86e4e huawei device co., ltd.
+ a8705d arris group, inc.
a870a5 unicomm inc.
+ a87285 idt, inc.
+ a8741d phoenix contact electronics gmbh
+ a87484 zte corporation
a875d6 freetek international co., ltd.
a875e2 aventura technologies, inc.
a8776f zonoff
+ a877e5 shenzhen chuangwei-rgb electronics co.,ltd
a87b39 nokia corporation
+ a87c01 samsung electronics co.,ltd
+ a87d12 huawei technologies co.,ltd
a87e33 nokia danmark a/s
+ a87eea intel corporate
+ a88038 shenzhen movingcomm technology co., limited
+ a8817e apple, inc.
+ a88195 samsung electronics co.,ltd
a881f1 bmeye b.v.
+ a88200 hisense electric co.,ltd
+ a8827f cibn oriental network(beijing) co.,ltd
+ a885d7 sangfor technologies inc.
a886dd apple, inc.
a88792 broadband antenna tracking systems
+ a887b3 samsung electronics co.,ltd
a887ed arc wireless llc
- a88808 apple
+ a88808 apple, inc.
a88cee micromade galka i drozdz sp.j.
a88d7b sundroid global limited.
- a8922c lg electronics
+ a88e24 apple, inc.
+ a89008 beijing yuecheng technology co. ltd.
+ a89042 beijing wanwei intelligent technology co., ltd.
+ a8913d apple, inc.
+ a8922c lg electronics (mobile communications)
+ a8934a chongqing fugui electronics co.,ltd.
+ a89352 shanghai zhongmi communication technology co.,ltd
a893e6 jiangxi jinggangshan cking communication technology co.,ltd
a895b0 aker subsea ltd
- a8968a apple
+ a89675 motorola mobility llc, a lenovo company
+ a8968a apple, inc.
+ a897cd arris group, inc.
a897dc ibm
a898c6 shinbo co., ltd.
a8995c aizo ag
+ a89969 dell inc.
+ a899dc i-top desing technology co.,ltd
+ a89a93 sagemcom broadband sas
+ a89ad7 nokia
a89b10 inmotion ltd.
+ a89ca4 furrion limited
+ a89ced xiaomi communications co ltd
+ a89d21 cisco systems, inc
+ a89dd2 shanghai dareglobal technologies co.,ltd
+ a89fba samsung electronics co.,ltd
+ a89fec arris group, inc.
+ a8a089 tactical communications
+ a8a097 scioteq bvba
+ a8a159 asrock incorporation
+ a8a198 tct mobile ltd
+ a8a5e2 msf-vathauer antriebstechnik gmbh & co kg
+ a8a648 qingdao hisense communications co.,ltd.
a8a668 zte corporation
+ a8a795 hon hai precision ind. co.,ltd.
a8ad3d alcatel-lucent shanghai bell co., ltd
- a8b0ae leoni
- a8b1d4 cisco systems, inc.
+ a8b088 eero inc.
+ a8b0ae leoni
+ a8b1d4 cisco systems, inc
+ a8b2da fujitsu limited
+ a8b456 cisco systems, inc
+ a8b86e lg electronics (mobile communications)
a8b9b3 essys
- a8bbcf apple
+ a8bb50 wiz iot company limited
+ a8bbcf apple, inc.
+ a8bc9c cloud light technology limited
a8bd1a honey bee (hong kong) limited
+ a8bd27 hewlett packard enterprise
a8bd3a unionman technology co.,ltd
+ a8be27 apple, inc.
+ a8bf3c hdv phoelectron technology limited
+ a8c092 huawei device co., ltd.
+ a8c0ea pepwave limited
a8c222 tm-research inc.
+ a8c252 huawei device co., ltd.
+ a8c83a huawei technologies co.,ltd
+ a8c87f roqos, inc.
+ a8ca7b huawei technologies co.,ltd
+ a8cab9 samsung electro mechanics co., ltd.
a8cb95 east best co., ltd.
+ a8cc6f hmd global oy
a8ccc5 saab ab (publ)
a8ce90 cvc
+ a8d0e3 systech electronics ltd
a8d0e5 juniper networks
a8d236 lightware visual engineering
- a8d3c8 wachendorff elektronik gmbh & co. kg
+ a8d3c8 topcon electronics gmbh & co. kg
+ a8d3f7 arcadyan technology corporation
+ a8d409 usa 111 inc
+ a8d498 avira operations gmbh & co. kg
+ a8d579 beijing chushang science and technology co.,ltd
+ a8d828 ascensia diabetes care
+ a8d88a wyconn
+ a8da01 shenzhen nuolijia digital technology co.,ltd
+ a8da0c servercom (india) private limited
+ a8db03 samsung electro-mechanics(thailand)
a8e018 nokia corporation
- a8e3ee sony computer entertainment inc.
+ a8e2c1 texas instruments
+ a8e2c3 shenzhen youhua technology co., ltd
+ a8e3ee sony interactive entertainment inc.
+ a8e539 moimstone co.,ltd
+ a8e544 huawei technologies co.,ltd
+ a8e552 juwel aquarium ag & co. kg
+ a8e705 fiberhome telecommunication technologies co.,ltd
+ a8e77d texas instruments
+ a8e81e atw technology, inc.
+ a8e824 inim electronics s.r.l.
+ a8e978 huawei device co., ltd.
+ a8eec6 muuselabs nv/sa
a8ef26 tritonwave
- a8f274 samsung electronics
+ a8f038 shen zhen shi jin hua tai electronics co.,ltd
+ a8f266 huawei device co., ltd.
+ a8f274 samsung electronics co.,ltd
a8f470 fujian newland communication science technologies co.,ltd.
+ a8f5ac huawei technologies co.,ltd
+ a8f5dd arris group, inc.
+ a8f766 ite tech inc
+ a8f7e0 planet technology corporation
a8f94b eltex enterprise ltd.
- a8fad8 apple
+ a8fad8 apple, inc.
a8fb70 wisesec l.t.d
a8fcb7 consolidated resource imaging
+ a8ffba huawei technologies co.,ltd
aa0000 digital equipment corporation
aa0001 digital equipment corporation
aa0002 digital equipment corporation
aa0003 digital equipment corporation
aa0004 digital equipment corporation
+ ac00d0 zte corporation
ac0142 uriel technologies sia
ac02ca hi solutions, inc.
ac02cf rw tecnologia industria e comercio ltda
ac02ef comsis
+ ac040b peloton interactive, inc
+ ac0481 jiangsu huaxing electronics co., ltd.
ac0613 senselogix ltd
+ ac06c7 servernet s.r.l.
+ ac075f huawei technologies co.,ltd
ac0a61 labor s.r.l.
+ ac0d1b lg electronics (mobile communications)
ac0dfe ekon gmbh - mygekko
+ ac11d3 suzhou hotek video technology co. ltd
+ ac1203 intel corporate
+ ac122f fantasia trading llc
+ ac139c adtran inc
ac1461 ataw co., ltd.
ac14d2 wi-daq, inc.
+ ac1585 silergy corp
+ ac15f4 apple, inc.
ac162d hewlett packard
ac1702 fibar group sp. z o.o.
+ ac17c8 cisco meraki
ac1826 seiko epson corporation
ac199f sungrow power supply co.,ltd.
+ ac1d06 apple, inc.
+ ac1ddf ieee registration authority
+ ac1e92 samsung electronics co.,ltd
+ ac1ed0 temic automotive philippines inc.
+ ac1f09 shenzhen rakwireless technology co.,ltd
+ ac1f0f texas instruments
+ ac1f6b super micro computer, inc.
+ ac1f74 apple, inc.
+ ac1fd7 real vision technology co.,ltd.
+ ac202e hitron technologies. inc
+ ac203e wuhan tianyu information industry co., ltd.
ac20aa dmatek co., ltd.
+ ac2205 compal broadband networks, inc.
ac220b asustek computer inc.
+ ac2316 mist systems, inc.
+ ac2334 infinix mobility limited
+ ac233f shenzhen minew technologies co., ltd.
+ ac293a apple, inc.
+ ac2a0c csr zhuzhou institute co.,ltd.
+ ac2b6e intel corporate
ac2da3 txtr gmbh
+ ac2da9 tecno mobile limited
ac2fa8 humannix co.,ltd.
ac319d shenzhen tg-net botone technology co.,ltd.
+ ac3328 huawei device co., ltd.
ac34cb shanhai gbcom communication technology co. ltd
+ ac35ee fn-link technology limited
ac3613 samsung electronics co.,ltd
- ac3c0b apple
+ ac3651 jiangsu hengtong terahertz technology co., ltd.
+ ac3728 taicang t&w electronics
+ ac3743 htc corporation
+ ac37c9 raid incorporated
+ ac3870 lenovo mobile communication technology ltd.
+ ac3a67 cisco systems, inc
+ ac3a7a roku, inc.
+ ac3b77 sagemcom broadband sas
+ ac3c0b apple, inc.
+ ac3c8e flextronics computing(suzhou)co.,ltd.
ac3cb4 nilan a/s
ac3d05 instorescreen aisa
ac3d75 hangzhou zhiway technologies co.,ltd.
ac3fa4 taiyo yuden co.,ltd
- ac40ea c&t solution inc.
+ ac40ea c&t solution inc.
ac4122 eclipse electronic systems inc.
- ac44f2 revolabs inc
+ ac4228 parta networks
+ ac4330 versa networks
+ ac44f2 yamaha corporation
+ ac471b huawei device co., ltd.
ac4723 genelec
+ ac482d ralinwi nanjing electronic technology co., ltd.
+ ac4a56 cisco systems, inc
+ ac4a67 cisco systems, inc
ac4afe hisense broadband multimedia technology co.,ltd.
+ ac4b1e integri-sys.com llc
ac4bc8 juniper networks
+ ac4e2e shenzhen jinghanda electronics co.ltd
ac4e91 huawei technologies co.,ltd
ac4ffc svs-vistek gmbh
ac5036 pi-coral inc
+ ac5093 magna electronics europe gmbh & co. ohg
+ ac512c infinix mobility limited
ac5135 mpi tech
ac51ee cambridge communication systems ltd
+ ac5474 china mobile iot company limited
ac54ec ieee p1823 standards working group
+ ac562c lava international(h.k) limited
+ ac5775 hmd global oy
ac583b human assembler, inc.
+ ac587b jct healthcare
+ ac5a14 samsung electronics co.,ltd
+ ac5aee china mobile group device co.,ltd.
+ ac5afc intel corporate
ac5d10 pace americas
+ ac5d5c fn-link technology limited
ac5e8c utillink
+ ac5f3e samsung electro-mechanics(thailand)
+ ac5fea oneplus technology (shenzhen) co., ltd
+ ac6089 huawei technologies co.,ltd
+ ac60b6 ericsson ab
ac6123 drivven, inc.
+ ac6175 huawei technologies co.,ltd
+ ac61b9 wama technology limited
+ ac61ea apple, inc.
+ ac620d jabil circuit(wuxi) co.,ltd
+ ac63be amazon technologies inc.
+ ac6417 siemens ag
+ ac6462 zte corporation
+ ac64cf fn-link technology limited
+ ac64dd ieee registration authority
ac6706 ruckus wireless
+ ac675d intel corporate
+ ac676f electrocompaniet a.s.
+ ac6784 google, inc.
+ ac67b2 espressif inc.
+ ac6aa3 shenzhen kertong technology co.,ltd
+ ac6b0f cadence design systems inc
ac6bac jenny science ag
- ac6e1a shenzhen gongjin electronics co.,ltd
+ ac6e1a shenzhen gongjin electronics co.,lt
ac6f4f enspert inc
ac6fbb tatung technology inc.
ac6fd9 valueplus inc.
+ ac710c china mobile group device co.,ltd.
ac7236 lexking technology co., ltd.
ac7289 intel corporate
+ ac7409 hangzhou h3c technologies co., limited
+ ac74c4 maytronics ltd.
+ ac751d huawei technologies co.,ltd
+ ac7713 honeywell safety products (shanghai) co.,ltd
+ ac78d1 juniper networks
ac7a42 iconnectivity
+ ac7a4d alpsalpine co,.ltd
+ ac7a56 cisco systems, inc
ac7ba1 intel corporate
- ac7f3e apple
+ ac7e8a cisco systems, inc
+ ac7f3e apple, inc.
ac80d6 hexatronic ab
ac8112 gemtek technology co., ltd.
ac81f3 nokia corporation
+ ac8247 intel corporate
ac8317 shenzhen furtunetel communication co., ltd
+ ac83e9 beijing zile technology co., ltd
ac83f0 immediatv corporation
+ ac83f3 ampak technology, inc.
+ ac84c6 tp-link technologies co.,ltd.
+ ac84c9 sagemcom broadband sas
ac853d huawei technologies co.,ltd
ac8674 open mesh, inc.
ac867e create new technology (hk) limited company
+ ac87a3 apple, inc.
+ ac88fd apple, inc.
+ ac8995 azurewave technology inc.
ac8acd roger d.wensker, g.wensker sp.j.
+ ac8b9c primera technology, inc.
ac8d14 smartrove inc
+ ac8d34 huawei technologies co.,ltd
+ ac8ff8 nokia
+ ac9085 apple, inc.
+ ac9232 huawei technologies co.,ltd
ac932f nokia corporation
ac9403 envision peripherals inc
- ac9a96 lantiq deutschland gmbh
+ ac9572 jovision technology co., ltd.
+ ac9929 huawei technologies co.,ltd
+ ac9a22 nxp semiconductors
+ ac9a96 maxlinear, inc
+ ac9b0a sony corporation
ac9b84 smak tecnologia e automacao
ac9ce4 alcatel-lucent shanghai bell co., ltd
- aca016 cisco systems, inc.
+ ac9e17 asustek computer inc.
+ aca016 cisco systems, inc
+ aca213 shenzhen bilian electronic co.,ltd
aca22c baycity technologies ltd
+ aca31e aruba, a hewlett packard enterprise company
aca430 peerless av
+ aca46e shenzhen gongjin electronics co.,lt
+ aca667 electronic systems protection, inc.
+ aca88e sharp corporation
aca919 trekstor gmbh
aca9a0 audioengine, ltd.
+ acab2e beijing lasnubes technology co., ltd.
acab8d lyngso marine a/s
+ acabbf athentek inc.
+ acae19 roku, inc
+ acafb9 samsung electronics co.,ltd
+ acb1ee shenzhen fenda technology co., ltd
acb313 arris group, inc.
+ acb3b5 huawei technologies co.,ltd
+ acb57d liteon technology corporation
+ acb74f metel s.r.o.
acb859 uniband electronic corp,
- acbd0b imac co.,ltd
+ acbb61 ysten technology co.,ltd
+ acbc32 apple, inc.
+ acbd0b leimac ltd.
+ acbd70 huawei device co., ltd.
acbe75 ufine technologies co.,ltd.
acbeb6 visualedge technology co., ltd.
+ acc1ee xiaomi communications co ltd
+ acc25d fiberhome telecommunication technologies co.,ltd
acc2ec clt int'l ind. corp.
+ acc33a samsung electronics co.,ltd
+ acc358 continental automotive czech republic s.r.o.
+ acc51b zhuhai pantum electronics co., ltd.
acc595 graphite systems
+ acc662 mitrastar technology corp.
acc698 kohzu precision co., ltd.
+ acc73f vitsmo co., ltd.
acc935 ness corporation
acca54 telldus technologies ab
acca8e oda technologies
- accaba midokura co., ltd.
+ accaab virtual electric inc
+ accaba midokura co., ltd.
accb09 hefcom metering (pty) ltd
+ accb51 hangzhou hikvision digital technology co.,ltd.
accc8e axis communications ab
acce8f hwa yao technologies co., ltd
accf23 hi-flying electronics technology co.,ltd
- accf5c apple
+ accf5c apple, inc.
+ accf85 huawei technologies co.,ltd
+ acd074 espressif inc.
acd180 crexendo business solutions, inc.
+ acd1b8 hon hai precision ind. co.,ltd.
acd364 abb spa, abb sace div.
- acd657 shaanxi guolian digital tv technology co., ltd.
+ acd564 chongqing fugui electronics co.,ltd.
+ acd618 oneplus technology (shenzhen) co., ltd
+ acd657 shaanxi guolian digital tv technology co.,ltd.
acd9d6 tci gmbh
+ acdb48 arris group, inc.
acdbda shenzhen geniatech inc, ltd
- acde48
+ acdcca huawei technologies co.,ltd
+ acdce5 procter & gamble company
+ acde48 private
+ ace010 liteon technology corporation
ace069 isaac instruments
- ace215 huawei technologies co., ltd
+ ace215 huawei technologies co.,ltd
+ ace2d3 hewlett packard
+ ace342 huawei technologies co.,ltd
ace348 madgetech, inc
ace42e sk hynix
+ ace4b5 apple, inc.
+ ace5f0 doppler labs
ace64b shenzhen baojia battery technology co., ltd.
- ace87b huawei technologies co., ltd
+ ace77b sichuan tianyi comheart telecomco.,ltd
+ ace87b huawei technologies co.,ltd
ace87e bytemark computer consulting ltd
ace97f iot tech limited
ace9aa hay systems ltd
acea6a genix infocomm co., ltd.
+ aceb51 universal electronics, inc.
+ acec80 arris group, inc.
+ aced5c intel corporate
acee3b 6harmonics inc
+ acee70 fontem ventures bv
+ acee9e samsung electronics co.,ltd
acf0b2 becker electronics taiwan ltd.
+ acf108 lg innotek
acf1df d-link international
- acf2c5 cisco
- acf7f3 xiaomi corporation
+ acf2c5 cisco systems, inc
+ acf5e6 cisco systems, inc
+ acf6f7 lg electronics (mobile communications)
+ acf7f3 xiaomi communications co ltd
+ acf85c chengdu higon integrated circuit design co,. ltd.
+ acf8cc arris group, inc.
+ acf970 huawei technologies co.,ltd
acf97e elesys inc.
- acfdec apple, inc
- b000b4 cisco
+ acfaa5 digitron
+ acfd93 weifang goertek electronics co.,ltd
+ acfdce intel corporate
+ acfdec apple, inc.
+ acfe05 itel mobile limited
+ b00073 wistron neweb corporation
+ b000b4 cisco systems, inc
+ b00247 ampak technology, inc.
+ b0027e muller services
b00594 liteon technology corporation
+ b00875 huawei technologies co.,ltd
+ b008bf vital connect, inc.
+ b009d3 avizia
+ b009da ring solutions
+ b00ad5 zte corporation
+ b00cd1 hewlett packard
+ b01041 hon hai precision ind. co.,ltd.
b01203 dynamics hong kong limited
b01266 futaba-kikaku
b01408 lightspeed international co.
+ b01656 huawei technologies co.,ltd
b01743 edison global circuits llc
+ b01886 smardtv
+ b019c6 apple, inc.
b01b7c ontrol a.s.
+ b01bd2 le shi zhi xin electronic technology (tianjin) limited
b01c91 elim co
+ b01f29 helvetia inc.
+ b01f81 ieee registration authority
+ b0227a hp inc.
+ b02491 huawei device co., ltd.
b024f3 progeny systems
- b025aa
- b03495 apple
+ b025aa private
+ b02628 broadcom limited
+ b02680 cisco systems, inc
+ b02a1f wingtech group (hongkong)limited
+ b02a43 google, inc.
+ b03055 china mobile iot company limited
+ b030c8 teal drones, inc.
+ b033a6 juniper networks
+ b03495 apple, inc.
+ b0350b mobiwire mobiles (ningbo) co.,ltd
b0358d nokia corporation
+ b0359f intel corporate
+ b035b5 apple, inc.
b03829 siliconware precision industries co., ltd.
b03850 nanjing cas-zdc iot system co.,ltd
+ b03956 netgear
+ b03ace huawei device co., ltd.
+ b03d96 vision valley fz llc
+ b03dc2 wasp artificial intelligence(shenzhen) co.,ltd
+ b03e51 bskyb ltd
+ b03eb0 microdia ltd.
+ b04089 senient systems ltd
+ b0411d ittim technologies
+ b0416f shenzhen maxtang computer co.,ltd
b0435d nuleds, inc.
+ b04414 new h3c technologies co., ltd
+ b04502 huawei device co., ltd.
+ b04515 mira fitness,llc.
+ b04519 tct mobile ltd
+ b04530 bskyb ltd
b04545 yacoub automation gmbh
b046fc mitrastar technology corp.
- b0487a tp-link technologies co., ltd.
+ b047bf samsung electronics co.,ltd
+ b0481a apple, inc.
+ b0487a tp-link technologies co.,ltd.
+ b0495f omron healthcare co., ltd.
+ b04a39 beijing roborock technology co., ltd.
+ b04bbf pt han sung electoronics indonesia
b04c05 fresenius medical care deutschland gmbh
+ b04e26 tp-link technologies co.,ltd.
+ b04f13 dell inc.
+ b04fc3 shenzhen nvc cloud technology co., ltd.
b050bc shenzhen basicom electronic co.,ltd.
b0518e holl technology co.ltd.
+ b05216 hon hai precision ind. co.,ltd.
+ b05365 china mobile iot company limited
+ b05508 huawei technologies co.,ltd
b05706 vallox oy
b058c4 broadcast microwave services, inc
+ b05947 shenzhen qihu intelligent technology company limited
+ b05ada hewlett packard
b05b1f thermo fisher scientific s.p.a.
+ b05b67 huawei technologies co.,ltd
+ b05cda hp inc.
b05ce5 nokia corporation
+ b05dd4 arris group, inc.
+ b06088 intel corporate
b061c7 ericsson-lg enterprise
b06563 shanghai railway communication factory
- b065bd apple
+ b065bd apple, inc.
+ b065f1 wio manufacturing hk limited
+ b0672f bowers & wilkins
b068b6 hangzhou oye technology co. ltd
+ b068e6 chongqing fugui electronics co.,ltd.
b06971 dei sales, inc.
b06cbf 3ality digital systems gmbh
+ b06ebf asustek computer inc.
+ b06fe0 samsung electronics co.,ltd
+ b0700d nokia
+ b0702d apple, inc.
+ b072bf murata manufacturing co., ltd.
+ b0735d huawei device co., ltd.
b0750c qa cafe
+ b0754d nokia
b075d5 zte corporation
+ b0761b huawei technologies co.,ltd
b077ac arris group, inc.
+ b07870 wi-next, inc.
+ b078f0 beijing huaqinworld technology co.,ltd.
b07908 cummings engineering
b0793c revolv inc
- b07994 motorola mobility llc
+ b07994 motorola mobility llc, a lenovo company
+ b07b25 dell inc.
+ b07d47 cisco systems, inc
b07d62 dipl.-ing. h. horstmann gmbh
+ b07d64 intel corporate
+ b07e11 texas instruments
+ b07e70 zadara storage ltd.
+ b07fb9 netgear
b0808c laser light engines
b081d8 i-sys corp
+ b083d6 arris group, inc.
+ b083fe dell inc.
b0869e chloride s.r.l
b08807 strata worldwide
- b08991 lge
+ b08900 huawei technologies co.,ltd
+ b08991 lge
+ b089c2 zyptonite
+ b08bcf cisco systems, inc
+ b08bd0 cisco systems, inc
+ b08c75 apple, inc.
b08e1a uradio systems co., ltd
b09074 fulan electronics limited
+ b0907e cisco systems, inc
+ b090d4 shenzhen hoin internet technology co., ltd
+ b09122 texas instruments
b09134 taleo
+ b09137 isis imagestream internet solutions, inc
+ b0935b arris group, inc.
+ b09575 tp-link technologies co.,ltd.
+ b0958e tp-link technologies co.,ltd.
+ b0966c lanbowan technology ltd.
b0973a e-fuel corporation
+ b0982b sagemcom broadband sas
b0989f lg cns
+ b098bc huawei device co., ltd.
b09928 fujitsu limited
b09ae2 stemmer imaging gmbh
b09bd4 gnh software india private limited
- b09fba apple
+ b09fba apple, inc.
b0a10a pivotal systems corporation
+ b0a2e7 shenzhen tinno mobile technology corp.
+ b0a37e qing dao haier telecom co.,ltd.
+ b0a454 tripwire inc.
+ b0a460 intel corporate
+ b0a651 cisco systems, inc
+ b0a6f5 xaptum, inc.
b0a72a ensemble designs, inc.
+ b0a737 roku, inc.
b0a86e juniper networks
- b0aa36 guangdong oppo mobile telecommunications corp.,ltd.
+ b0aa36 guangdong oppo mobile telecommunications corp.,ltd
+ b0aa77 cisco systems, inc
+ b0aad2 sichuan tianyi kanghe communications co., ltd
+ b0acd2 zte corporation
b0acfa fujitsu limited
- b0adaa avaya, inc
+ b0adaa avaya inc
+ b0ae25 varikorea
+ b0b113 texas instruments
+ b0b194 zte corporation
+ b0b28f sagemcom broadband sas
b0b2dc zyxel communications corporation
b0b32b slican sp. z o.o.
+ b0b353 ieee registration authority
+ b0b3ad humax co., ltd.
b0b448 texas instruments
+ b0b5c3 guangdong oppo mobile telecommunications corp.,ltd
+ b0b5e8 ruroc ltd
+ b0b867 hewlett packard enterprise
b0b8d5 nanjing nengrui auto equipment co.,ltd
+ b0b98a netgear
+ b0bb8b wavetel technology limited
+ b0bbe5 sagemcom broadband sas
+ b0bd1b dongguan liesheng electronic co., ltd.
b0bd6d echostreams innovative solutions
b0bda1 zaklad elektroniczny sims
+ b0be76 tp-link technologies co.,ltd.
b0bf99 wizitdongdo
- b0c4e7 samsung electronics
+ b0c090 chicony electronics co., ltd.
+ b0c128 adler elreha gmbh
+ b0c19e zte corporation
+ b0c205 bionime
+ b0c287 technicolor ch usa inc.
+ b0c387 goefer, inc.
+ b0c46c senseit
+ b0c4e7 samsung electronics co.,ltd
+ b0c53c cisco systems, inc
b0c554 d-link international
+ b0c559 samsung electronics co.,ltd
+ b0c5ca ieee registration authority
b0c69a juniper networks
- b0c745 buffalo inc.
+ b0c745 buffalo.inc
b0c83f jiangsu cynray iot co., ltd.
b0c8ad people power company
+ b0c952 guangdong oppo mobile telecommunications corp.,ltd
b0c95b beijing symtech co.,ltd
+ b0ca68 apple, inc.
+ b0ccfe huawei device co., ltd.
b0ce18 zhejiang shenghui lighting co.,ltd
b0cf4d mi-zone technology ireland
b0d09c samsung electronics co.,ltd
b0d2f5 vello systems, inc.
+ b0d568 shenzhen cultraview digital technology co., ltd
b0d59d shenzhen zowee technology co., ltd
- b0d7c5 stp kft
+ b0d5cc texas instruments
+ b0d7c5 logipix ltd
+ b0d7cc tridonic gmbh & co kg
b0da00 cera electronique
+ b0daf9 arris group, inc.
b0df3a samsung electronics co.,ltd
+ b0dfc1 tenda technology co.,ltd.dongguan branch
+ b0e03c tct mobile ltd
+ b0e17e huawei technologies co.,ltd
+ b0e235 xiaomi communications co ltd
+ b0e2e5 fiberhome telecommunication technologies co.,ltd
b0e39d cat system co.,ltd.
+ b0e4d5 google, inc.
b0e50e nrg systems inc
- b0e754 2wire
+ b0e5ed huawei technologies co.,ltd
+ b0e5f9 apple, inc.
+ b0e71d shanghai maigantech co.,ltd
+ b0e754 2wire inc
+ b0e7de homa technologies jsc
b0e892 seiko epson corporation
b0e97e advanced micro peripherals
+ b0eabc askey computer corp
+ b0eb57 huawei technologies co.,ltd
b0ec71 samsung electronics co.,ltd
b0ec8f gmx sas
- b0ee45 azurewave technologies, inc.
+ b0ecdd huawei technologies co.,ltd
+ b0ece1 private
+ b0ee45 azurewave technology inc.
+ b0ee7b roku, inc
+ b0f1a3 fengfan (beijing) technology co., ltd.
b0f1bc dhemax ingenieros ltda
- b0faeb cisco
- b0febd
+ b0f1ec ampak technology, inc.
+ b0f530 hitron technologies. inc
+ b0f893 shanghai mxchip information technology co., ltd.
+ b0f963 hangzhou h3c technologies co., limited
+ b0faeb cisco systems, inc
+ b0fc0d amazon technologies inc.
+ b0fc36 cybertan technology inc.
+ b0fd0b ieee registration authority
+ b0febd private
+ b0fee5 huawei device co., ltd.
+ b40016 ingenico terminals sas
b4009c cableworld ltd.
b40142 gci science & technology co.,ltd
+ b40216 cisco systems, inc
b40418 smartchip integrated inc.
- b407f9 samsung electro-mechanics
+ b4055d inspur electronic information industry co.,ltd.
+ b40566 sp best corporation co., ltd.
+ b407f9 samsung electro mechanics co., ltd.
b40832 tc communications
+ b40931 huawei technologies co.,ltd
+ b40ac6 dexon systems ltd.
+ b40b44 smartisan technology co., ltd.
+ b40b78 brusa elektronik ag
b40b7a brusa elektronik ag
b40c25 palo alto networks
- b40e96 heran
+ b40e96 heran
b40edc lg-ericsson co.,ltd.
- b41489 cisco systems, inc.
+ b40ede intel corporate
+ b40f3b tenda technology co.,ltd.dongguan branch
+ b40fb3 vivo mobile communication co., ltd.
+ b4107b texas instruments
+ b41489 cisco systems, inc
+ b414e6 huawei technologies co.,ltd
b41513 huawei technologies co.,ltd
- b418d1 apple
+ b4157e celona inc.
+ b41780 dti group ltd
+ b418d1 apple, inc.
+ b41a1d samsung electronics co.,ltd
+ b41bb0 apple, inc.
+ b41c30 zte corporation
+ b41d2b shenzhen youhua technology co., ltd
b41def internet laboratories, inc.
b4211d beijing guangxin technology co., ltd
b4218a dog hunter llc
+ b42200 brother industries, ltd.
+ b42330 itron inc
b424e7 codetek technology co.,ltd
+ b4265d taicang t&w electronics
b428f1 e-prime co., ltd.
+ b4293d shenzhen urovo technology co.,ltd.
+ b42a0e technicolor ch usa inc.
b42a39 orbit merret, spol. s r. o.
b42c92 zhejiang weirong electronic co., ltd
b42cbe direct payment solutions limited
+ b42d56 extreme networks, inc.
+ b42e99 giga-byte technology co.,ltd.
+ b42ef8 eline technology co.ltd
+ b43052 huawei technologies co.,ltd
+ b430c0 york instruments ltd
b431b8 aviwest
b4346c matsunichi digital technology (hong kong) limited
b43564 fujian tian cheng electron science & technical development co.,ltd.
b435f7 zhejiang pearmain electronics co.ltd.
+ b436a9 fibocom wireless inc.
+ b436d1 renesas electronics (penang) sdn. bhd.
+ b436e3 kbvision group
b43741 consert, inc.
+ b437d1 ieee registration authority
+ b43934 pen generations, inc.
+ b43939 shenzhen tinno mobile technology corp.
b439d6 procurve networking by hp
b43a28 samsung electronics co.,ltd
b43db2 degreane horizon
b43e3b viableware, inc
- b4417a shenzhen gongjin electronics co.,ltd
+ b440a4 apple, inc.
+ b4417a shenzhen gongjin electronics co.,lt
b4430d broadlink pty ltd
+ b44326 huawei technologies co.,ltd
+ b4475e avaya inc
+ b447f5 earda technologies co ltd
+ b44bd2 apple, inc.
+ b44bd6 ieee registration authority
+ b44c3b zhejiang dahua technology co., ltd.
b44cc2 nr electric co., ltd
+ b44f96 zhejiang xinzailing technology co., ltd
+ b45062 embestor technology inc.
b451f9 nb software
b45253 seagate technology
- b4527d sony mobile communications ab
- b4527e sony mobile communications ab
+ b4527d sony mobile communications inc
+ b4527e sony mobile communications inc
+ b452a9 texas instruments
+ b45459 china mobile (hangzhou) information technology co., ltd.
b45570 borea
+ b456b9 teraspek technologies co.,ltd
+ b456e3 apple, inc.
b45861 cremote, llc
b45ca4 thing-talk wireless communication technologies corporation limited
+ b45d50 aruba, a hewlett packard enterprise company
+ b46077 sichuan changhong electric ltd.
+ b4608c fiberhome telecommunication technologies co.,ltd
+ b460ed beijing xiaomi mobile software co., ltd
b461ff lumigon a/s
b46238 exablox
b46293 samsung electronics co.,ltd
- b462ad raytest gmbh
+ b462ad elysia germany gmbh
b46698 zealabs srl
b467e9 qingdao goertek technology co., ltd.
+ b46921 intel corporate
+ b46bfc intel corporate
+ b46c47 panasonic appliances company
+ b46d35 dalian seasky automation co;ltd
+ b46d83 intel corporate
+ b46e08 huawei technologies co.,ltd
+ b46f2d wahoo fitness
+ b47356 hangzhou treebear networking co., ltd.
+ b47443 samsung electronics co.,ltd
+ b47447 coreos
b4749f askey computer corp
b4750e belkin international inc.
+ b47748 shenzhen neoway technology co.,ltd.
+ b47947 nutanix
+ b479a7 samsung electro-mechanics(thailand)
+ b479c8 ruckus wireless
+ b47af1 hewlett packard enterprise
+ b47c29 shenzhen guzidi technology co.,ltd
+ b47c59 jiangsu hengxin technology co.,ltd.
+ b47c9c amazon technologies inc.
b47f5e foresight manufacture (s) pte ltd
+ b48107 shenzhen chuangwei-rgb electronics co.,ltd
+ b481bf meta-networks, llc
b48255 research products corporation
b4827b akg acoustics gmbh
b482c5 relay2, inc.
b482fe askey computer corp
b48547 amptown system company gmbh
+ b485e1 apple, inc.
+ b48655 huawei technologies co.,ltd
+ b48901 huawei technologies co.,ltd
b48910 coster t.e. s.p.a.
+ b48a5f juniper networks
+ b48b19 apple, inc.
b4944e wetelecom co., ltd.
+ b49691 intel corporate
b49842 zte corporation
b4994c texas instruments
- b499ba hewlett-packard company
+ b499ba hewlett packard
+ b49a95 shenzhen boomtech industrial corporation
+ b49cdf apple, inc.
+ b49d02 samsung electronics co.,ltd
+ b49d0b bq
b49db4 axion technologies inc.
+ b49e80 sichuan changhong electric ltd.
+ b49eac imagik int'l corp
b49ee6 shenzhen technology co ltd
+ b4a25c cambium networks limited
+ b4a2eb ieee registration authority
+ b4a305 xiamen yaxon network co., ltd.
+ b4a382 hangzhou hikvision digital technology co.,ltd.
b4a4b5 zen eye co.,ltd
- b4a4e3 cisco systems, inc.
+ b4a4e3 cisco systems, inc
b4a5a9 modi gmbh
+ b4a5ac guangdong oppo mobile telecommunications corp.,ltd
+ b4a5ef sercomm corporation.
+ b4a828 shenzhen concox information technology co., ltd
b4a82b histar digital electronics co., ltd.
- b4a95a avaya, inc
+ b4a898 huawei device co., ltd.
+ b4a8b9 cisco systems, inc
+ b4a94f mercury corporation
+ b4a95a avaya inc
+ b4a984 symantec corporation
+ b4a9fc quanta computer inc.
+ b4a9fe ghia technology (shenzhen) ltd
b4aa4d ensequence, inc.
b4ab2c mtm technology corporation
- b4b017 avaya, inc
+ b4ada3 guangzhou shiyuan electronic technology company limited
+ b4ae2b microsoft
+ b4ae6f circle reliance, inc dba cranberry networks
+ b4b017 avaya inc
+ b4b055 huawei technologies co.,ltd
+ b4b15a siemens ag energy management division
+ b4b265 daeho i&t
+ b4b291 lg electronics
b4b362 zte corporation
+ b4b384 shenzhen figigantic electronic co.,ltd
b4b52f hewlett packard
b4b542 hubbell power systems, inc.
b4b5af minsung electronics
+ b4b5b6 chongqing fugui electronics co.,ltd.
b4b676 intel corporate
+ b4b686 hewlett packard
+ b4b859 texa spa
b4b88d thuh company
+ b4ba12 china mobile (hangzhou) information technology co.,ltd.
+ b4bc7c texas instruments
+ b4bff6 samsung electronics co.,ltd
+ b4c0f5 shenzhen tinno mobile technology corp.
+ b4c170 yi chip microelectronics (hangzhou) co., ltd
+ b4c26a garmin international
b4c44e vxl etech pvt ltd
- b4c799 motorola solutions inc.
+ b4c476 wuhan maritime communication research institute
+ b4c4fc xiaomi communications co ltd
+ b4c62e molex cms
+ b4c6f8 axilspot communication
+ b4c799 extreme networks, inc.
b4c810 umpi elettronica
+ b4c9b9 sichuan ai-link technology co., ltd.
+ b4cb57 guangdong oppo mobile telecommunications corp.,ltd
+ b4cc04 piranti
b4cce9 prosyst
+ b4cd27 huawei technologies co.,ltd
+ b4ce40 samsung electronics co.,ltd
+ b4cef6 htc corporation
+ b4cefe james czekaj
b4cfdb shenzhen jiuzhou electric co.,ltd
+ b4cfe0 sichuan tianyi kanghe communications co., ltd
+ b4d0a9 china mobile group device co.,ltd.
+ b4d135 cloudistics
+ b4d5bd intel corporate
+ b4d64e caldero limited
b4d8a9 betterbots
b4d8de iota computing, inc.
+ b4dc09 guangzhou dawei communication co.,ltd
b4dd15 controlthings oy ab
+ b4ddd0 continental automotive hungary kft
+ b4de31 cisco systems, inc
+ b4dedf zte corporation
b4df3b chromlech
b4dffa litemax electronics inc.
+ b4e01d conception electronique
b4e0cd fusion-io, inc
- b4e1eb
- b4e9b0 cisco
+ b4e10f dell inc.
+ b4e1c4 microsoft mobile oy
+ b4e1eb private
+ b4e3f9 silicon laboratories
+ b4e62a lg innotek
+ b4e62d espressif inc.
+ b4e782 vivalnk
+ b4e842 hong kong bouffalo lab limited
+ b4e8c9 xada technologies
+ b4e9a3 port industrial automation gmbh
+ b4e9b0 cisco systems, inc
+ b4ec02 alpsalpine co,.ltd
+ b4ecf2 shanghai listent medical tech co., ltd.
b4ed19 pie digital, inc.
b4ed54 wohler technologies
+ b4ee25 shenzhen belon technology co.,ltd
+ b4eeb4 askey computer corp
b4eed4 texas instruments
- b4f0ab apple
- b4f2e8 pace plc
+ b4ef04 daihan scientific co., ltd.
+ b4ef1c 360 ai technology co.ltd
+ b4ef39 samsung electronics co.,ltd
+ b4effa lemobile information technology (beijing) co., ltd.
+ b4f0ab apple, inc.
+ b4f18c huawei device co., ltd.
+ b4f1da lg electronics (mobile communications)
+ b4f2e8 arris group, inc.
b4f323 petatel inc.
+ b4f58e huawei technologies co.,ltd
+ b4f61c apple, inc.
+ b4f7a1 lg electronics (mobile communications)
+ b4f81e kinova
+ b4f949 optilink networks pvt ltd
+ b4fa48 apple, inc.
+ b4fbe3 altobeam (china) inc.
+ b4fbe4 ubiquiti networks inc.
+ b4fbf9 huawei technologies co.,ltd
b4fc75 sema electronics(hk) co.,ltd
b4fe8c centro sicurezza italia spa
+ b4ff98 huawei technologies co.,ltd
+ b80018 htel
+ b802a4 aeonsemi, inc.
b80305 intel corporate
b80415 bayan audio
+ b805ab zte corporation
+ b80716 vivo mobile communication co., ltd.
+ b80756 cisco meraki
+ b808cf intel corporate
+ b808d7 huawei technologies co.,ltd
+ b8098a apple, inc.
b80b9d ropex industrie-elektronik gmbh
+ b810d4 masimo corporation
+ b8114b cisco systems, inc
+ b813e9 trace live network
b81413 keen high holding(hk) ltd.
+ b814db ohsung
b81619 arris group, inc.
- b817c2 apple
+ b816db chant sincere co.,ltd
+ b817c2 apple, inc.
+ b8186f oriental motor co., ltd.
+ b81904 nokia shanghai bell co., ltd.
b81999 nesys
+ b81daa lg electronics (mobile communications)
+ b81f5e apption labs limited
b820e7 guangzhou horizontal information & network integration co. ltd
+ b8224f sichuan tianyi comheart telecomco., ltd
b82410 magneti marelli slovakia s.r.o.
b8241a sweda informatica ltda
+ b824f0 soyo technology development co., ltd.
+ b8259a thalmic labs
b8266c anov france
b826d4 furukawa industrial s.a. produtos elétricos
+ b827c5 huawei device co., ltd.
b827eb raspberry pi foundation
- b8288b parker hannifin
+ b8288b parker hannifin manufacturing (uk) ltd
b829f7 blaster tech
- b82a72 dell inc
+ b82a72 dell inc.
+ b82aa9 apple, inc.
b82adc efr europäische funk-rundsteuerung gmbh
- b82ca0 honeywell hommed
+ b82ca0 resideo
+ b82d28 ampak technology,inc.
+ b82fcb cms electracom
b830a8 road-track telematics development
+ b831b5 microsoft corporation
+ b83241 wuhan tianyu information industry co., ltd.
b836d8 videoswitch
- b83861 cisco
+ b83765 guangdong oppo mobile telecommunications corp.,ltd
+ b83861 cisco systems, inc
b838ca kyokko tsushin system co.,ltd
+ b83a08 tenda technology co.,ltd.dongguan branch
+ b83a5a aruba, a hewlett packard enterprise company
b83a7b worldplay (canada) inc.
+ b83a9d alarm.com
b83d4e shenzhen cultraview digital technology co.,ltd shanghai branch
- b83e59 roku, inc
+ b83e59 roku, inc.
b8415f asp ag
+ b841a4 apple, inc.
b843e4 vlatacom
+ b844ae tct mobile ltd
+ b844d9 apple, inc.
+ b8477a dasan electron co., ltd.
b847c6 sanjet technology corp.
+ b848aa em microelectronic
+ b84dee hisense broadband multimedia technology co.,ltd
+ b84fd5 microsoft corporation
+ b85001 extreme networks, inc.
+ b853ac apple, inc.
b85510 zioncom electronics (shenzhen) ltd.
+ b856bd itt llc
+ b85776 lignex1
+ b857d8 samsung electronics co.,ltd
b85810 numera, inc.
+ b8599f mellanox technologies, inc.
+ b85a73 samsung electronics co.,ltd
b85af7 ouya, inc
b85afe handaer communication technology (beijing) co., ltd
+ b85d0a apple, inc.
b85e7b samsung electronics co.,ltd
+ b85f98 amazon technologies inc.
+ b85fb0 huawei technologies co.,ltd
b86091 onnet technologies and innovations llc
- b8616f accton wireless broadband(awb), corp.
- b8621f cisco systems, inc.
+ b86142 beijing tricolor technology co., ltd
+ b8616f accton technology corp
+ b8621f cisco systems, inc
+ b8634d apple, inc.
+ b86392 guangdong genius technology co., ltd.
b863bc robotis, co, ltd
b86491 ck telecom ltd
b8653b bolymin, inc.
+ b86685 sagemcom broadband sas
+ b869c2 sunitec enterprise co., ltd.
+ b869f4 routerboard.com
+ b86a97 edgecore networks corporation
b86b23 toshiba
b86ce8 samsung electronics co.,ltd
- b870f4 compal information (kunshan) co., ltd.
+ b870f4 compal information (kunshan) co., ltd.
b87424 viessmann elektronik gmbh
b87447 convergence technologies
b875c0 paypal, inc.
b8763f hon hai precision ind. co.,ltd.
- b877c3 decagon devices, inc.
- b8782e apple
+ b877c3 meter group
+ b87826 nintendo co.,ltd
+ b8782e apple, inc.
+ b87879 roche diagnostics gmbh
b8797e secure meters (uk) limited
b87ac9 siemens ltd.
- b87cf2 aerohive networks inc.
+ b87bc5 apple, inc.
+ b87c6f nxp (china) management ltd.
+ b87cf2 extreme networks, inc.
+ b88035 shenzhen qihu intelligent technology company limited
+ b8804f texas instruments
+ b88198 intel corporate
+ b881fa apple, inc.
+ b88303 hewlett packard enterprise
+ b88584 dell inc.
+ b88687 liteon technology corporation
b8871e good mind industries co., ltd.
+ b8876e yandex services ag
b887a8 step ahead innovations inc.
- b888e3 compal information (kunshan) co., ltd
+ b887c6 prudential technology co.,ltd
+ b888e3 compal information (kunshan) co., ltd.
+ b88981 chengdu innothings technology co., ltd.
b889ca iljin electric co., ltd.
b88a60 intel corporate
- b88d12 apple
+ b88aec nintendo co.,ltd
+ b88d12 apple, inc.
+ b88df1 nanjing bigfish semiconductor co., ltd.
b88e3a infinite technologies jlt
+ b88e82 huawei device co., ltd.
+ b88ec6 stateless networks
+ b88edf zencheer communication technology co., ltd.
b88f14 analytica gmbh
+ b88fb4 jabil circuit italia s.r.l
+ b89047 apple, inc.
+ b891c9 handreamnet
b8921d bg t&a
+ b89436 huawei technologies co.,ltd
b894d2 retail innovation htt ab
b89674 alldsp gmbh & co. kg
b8975a biostar microtech int'l corp.
b898b0 atlona inc.
b898f7 gionee communication equipment co,ltd.shenzhen
+ b89919 7signal solutions, inc
+ b899ae shenzhen miaoming intelligent technology co.,ltd
+ b899b0 cohere technologies
+ b89a2a intel corporate
+ b89a9a xin shi jia technology (beijing) co.,ltd
+ b89acd elite optoelectronic(asia)co.,ltd
b89aed oceanserver technology, inc
b89bc9 smc networks inc
+ b89be4 abb power systems power generation
+ b89f09 wistron neweb corporation
+ b8a175 roku, inc.
+ b8a377 cisco systems, inc
b8a386 d-link international
b8a3e0 benrui technology co.,ltd
+ b8a44f axis communications ab
+ b8a58d axe group holdings limited
b8a8af logic s.p.a.
- b8ac6f dell inc
+ b8ac6f dell inc.
+ b8ad3e bluecom
+ b8ae1c smart cube., ltd
b8ae6e nintendo co., ltd.
- b8af67 hewlett-packard company
+ b8aeed elitegroup computer systems co.,ltd.
+ b8af67 hewlett packard
b8b1c7 bt&com co.,ltd
+ b8b2eb googol technology (hk) limited
+ b8b2f8 apple, inc.
+ b8b3dc derek (shaoguan) limited
b8b42e gionee communication equipment co,ltd.shenzhen
b8b7d7 2gig technologies
+ b8b7f1 wistron neweb corporation
+ b8b81e intel corporate
b8b94e shenzhen ibaby labs, inc.
b8ba68 xi'an jizhong digital communication co.,ltd
b8ba72 cynove
+ b8bb23 guangdong nufront csc co., ltd
b8bb6d eneres co.,ltd.
- b8bebf cisco systems, inc.
+ b8bbaf samsung electronics co.,ltd
+ b8bc1b huawei technologies co.,ltd
+ b8bc5b samsung electronics co.,ltd
+ b8bd79 trendpoint systems
+ b8bebf cisco systems, inc
+ b8bef4 devolo ag
+ b8bf83 intel corporate
+ b8c111 apple, inc.
b8c1a2 dragon path technologies co., limited
+ b8c227 pstec
+ b8c253 juniper networks
+ b8c385 huawei technologies co.,ltd
+ b8c3bf henan chengshi network technology co.,ltd
b8c46f primmcon industries inc
b8c68e samsung electronics co.,ltd
+ b8c6aa earda technologies co ltd
b8c716 fiberhome telecommunication technologies co.,ltd
- b8c75d apple
+ b8c74a guangdong oppo mobile telecommunications corp.,ltd
+ b8c75d apple, inc.
b8c855 shanghai gbcom communication technology co.,ltd.
- b8ca3a dell inc
+ b8c8eb itel mobile limited
+ b8c9b5 guangdong oppo mobile telecommunications corp.,ltd
+ b8ca04 holtek semiconductor inc.
+ b8ca3a dell inc.
+ b8cb29 dell inc.
b8cd93 penetek, inc
b8cda7 maxeler technologies ltd.
+ b8cef6 mellanox technologies, inc.
b8d06f guangzhou hkust fok ying tung research institute
+ b8d309 cox communications, inc
+ b8d43e vivo mobile communication co., ltd.
b8d49d m seven system ltd.
- b8d9ce samsung electronics
+ b8d4e7 aruba, a hewlett packard enterprise company
+ b8d50b sunitec enterprise co.,ltd
+ b8d526 zyxel communications corporation
+ b8d6f6 huawei technologies co.,ltd
+ b8d7af murata manufacturing co., ltd.
+ b8d812 ieee registration authority
+ b8d94d sagemcom broadband sas
+ b8d9ce samsung electronics co.,ltd
b8daf1 strahlenschutz- entwicklungs- und ausruestungsgesellschaft mbh
b8daf7 advanced photonics, inc.
+ b8db1c integrated device technology (malaysia) sdn. bhd.
b8dc87 iai corporation
+ b8dd71 zte corporation
+ b8de5e longcheer telecommunication limited
b8df6b spotcam co., ltd.
+ b8e3b1 huawei technologies co.,ltd
+ b8e3ee universal electronics, inc.
b8e589 payter bv
- b8e625 2wire
+ b8e625 2wire inc
b8e779 9solutions oy
- b8e856 apple
+ b8e856 apple, inc.
b8e937 sonos, inc.
+ b8eaaa icg networks co.,ltd
+ b8eca3 zyxel communications corporation
+ b8ee0e sagemcom broadband sas
+ b8ee65 liteon technology corporation
b8ee79 ywire technologies, inc.
+ b8ef8b shenzhen cannice technology co.,ltd
+ b8f009 espressif inc.
+ b8f080 sps, inc.
+ b8f12a apple, inc.
+ b8f317 isun smasher communications private limited
b8f4d0 herrmann ultraschalltechnik gmbh & co. kg
b8f5e7 waytools, llc
- b8f6b1 apple
+ b8f653 shenzhen jingxun software telecommunication technology co.,ltd
+ b8f6b1 apple, inc.
b8f732 aryaka networks inc
+ b8f74a rcntec
b8f828 changshu gaoshida optoelectronic technology co. ltd.
- b8f934 sony ericsson mobile communications ab
+ b8f853 arcadyan corporation
+ b8f883 tp-link technologies co.,ltd.
+ b8f8be bluecom
+ b8f934 sony mobile communications inc
+ b8fc9a le shi zhi xin electronic technology (tianjin) limited
b8fd32 zhejiang roicx microelectronics
- b8ff61 apple
+ b8ff61 apple, inc.
b8ff6f shanghai typrotech technology co.ltd
+ b8ffb3 mitrastar technology corp.
b8fffe texas instruments
bc0200 stewart audio
+ bc024a hmd global oy
+ bc03a7 mfp michelin
bc0543 avm gmbh
+ bc0963 apple, inc.
bc0da5 texas instruments
bc0f2b fortune techgroup co.,ltd
+ bc0f64 intel corporate
+ bc0f9a d-link international
+ bc0fa7 ouster
bc125e beijing wisvideo inc.
+ bc13a8 shenzhen youhua technology co., ltd
bc1401 hitron technologies. inc
+ bc1485 samsung electronics co.,ltd
bc14ef iton technology limited
bc15a6 taiwan jantek electronics,ltd.
- bc1665 cisco
+ bc15ac vodafone italia s.p.a.
+ bc1665 cisco systems, inc
+ bc1695 zte corporation
+ bc16f5 cisco systems, inc
+ bc17b8 intel corporate
bc1a67 yf technology co., ltd
- bc20a4 samsung electronics
+ bc1ae4 huawei device co., ltd.
+ bc1c81 sichuan ilink technology co., ltd.
+ bc20a4 samsung electronics co.,ltd
bc20ba inspur (shandong) electronic information co., ltd
+ bc22fb rf industries
+ bc2392 byd precision manufacture company ltd.
+ bc25e0 huawei technologies co.,ltd
+ bc25f0 3d display technologies co., ltd.
bc261d hong kong tecon technology
+ bc2643 elprotronic inc.
+ bc26a1 factory five corporation
+ bc26c7 cisco systems, inc
+ bc282c e-smart systems pvt. ltd
bc2846 nextbit computing pvt. ltd.
bc28d6 rowley associates limited
bc2b6b beijing haier ic design co.,ltd
bc2bd7 revogi innovation co., ltd.
bc2c55 bear flag design, inc.
bc2d98 thinglobal llc
+ bc2def realme chongqing mobile telecommunications corp.,ltd.
+ bc2e48 arris group, inc.
+ bc2ef6 huawei device co., ltd.
+ bc2f3d vivo mobile communication co., ltd.
bc305b dell inc.
- bc307d wistron neweb corp.
+ bc307d wistron neweb corporation
+ bc307e wistron neweb corporation
+ bc30d9 arcadyan corporation
+ bc325f zhejiang dahua technology co., ltd.
+ bc33ac silicon laboratories
+ bc3400 ieee registration authority
bc35e5 hydro systems company
+ bc3865 jwcnetworks
bc38d2 pandachip limited
bc39a6 csun system technology co.,ltd
- bc3baf apple
+ bc39d9 z-tec
+ bc3aea guangdong oppo mobile telecommunications corp.,ltd
+ bc3baf apple, inc.
+ bc3d85 huawei technologies co.,ltd
+ bc3e07 hitron technologies. inc
bc3e13 accordance systems inc.
+ bc3ecb vivo mobile communication co., ltd.
+ bc3f4e teleepoch ltd
+ bc3f8f huawei technologies co.,ltd
bc4100 codaco electronic s.r.o.
+ bc4101 shenzhen tinno mobile technology corp.
+ bc428c alpsalpine co,.ltd
bc4377 hang zhou huite technology co.,ltd.
+ bc4434 shenzhen tinno mobile technology corp.
bc4486 samsung electronics co.,ltd
+ bc44b0 elastifile
+ bc452e knowledge development for pof s.l.
+ bc4699 tp-link technologies co.,ltd.
bc4760 samsung electronics co.,ltd
+ bc4a56 cisco systems, inc
bc4b79 sensingtek
+ bc4cc4 apple, inc.
+ bc4dfb hitron technologies. inc
bc4e3c core staff co., ltd.
+ bc4e5d zhongmiao technology co., ltd.
bc51fe swann communications pty ltd
- bc52b7 apple
+ bc52b4 nokia
+ bc52b7 apple, inc.
+ bc542f intel corporate
+ bc5436 apple, inc.
+ bc5451 samsung electronics co.,ltd
+ bc54f9 drogoo technology co., ltd.
+ bc54fc shenzhen mercury communication technologies co.,ltd.
+ bc5a56 cisco systems, inc
+ bc5bd5 arris group, inc.
+ bc5c4c elecom co.,ltd.
+ bc5ea1 psikick, inc.
bc5ff4 asrock incorporation
+ bc5ff6 mercury communication technologies co.,ltd.
+ bc6010 qingdao hisense communications co.,ltd.
+ bc60a7 sony interactive entertainment inc.
+ bc620e huawei technologies co.,ltd
bc629f telenet systems p. ltd.
- bc6778 apple
+ bc62ce shenzhen netis technology co.,ltd
+ bc62d2 genexis international b.v.
+ bc644b arris group, inc.
+ bc6641 ieee registration authority
+ bc66de shadow creator information technology co.,ltd.
+ bc671c cisco systems, inc
+ bc6778 apple, inc.
bc6784 environics oy
+ bc69cb panasonic life solutions networks co., ltd.
bc6a16 tdvine
bc6a29 texas instruments
+ bc6a2f henge docks llc
+ bc6a44 commend international gmbh
+ bc6b4d nokia
+ bc6c21 apple, inc.
+ bc6d05 dusun electron co.,ltd.
+ bc6e64 sony mobile communications inc
bc6e76 green energy options ltd
bc71c1 xtrillion, inc.
bc72b1 samsung electronics co.,ltd
+ bc74d7 hangzhou juru technology co.,ltd
+ bc7536 alpsalpine co,.ltd
+ bc7574 huawei technologies co.,ltd
+ bc7596 beijing broadwit technology co., ltd.
bc764e rackspace us, inc.
- bc7670 shenzhen huawei communication technologies co., ltd
+ bc765e samsung electronics co.,ltd
+ bc7670 huawei technologies co.,ltd
+ bc76c5 huawei technologies co.,ltd
bc7737 intel corporate
bc779f sbm co., ltd.
bc79ad samsung electronics co.,ltd
+ bc7abf samsung electronics co.,ltd
bc7dd1 radio data comms
+ bc7e8b samsung electronics co.,ltd
+ bc7f7b huawei device co., ltd.
+ bc7fa4 xiaomi communications co ltd
bc811f ingate systems
bc8199 basic co.,ltd.
- bc83a7 shenzhen chuangwei-rgb electronics co.,lt
- bc851f samsung electronics
+ bc825d mitsumi electric co.,ltd.
+ bc8385 microsoft corporation
+ bc83a7 shenzhen chuangwei-rgb electronics co.,ltd
+ bc851f samsung electronics co.,ltd
bc8556 hon hai precision ind. co.,ltd.
bc8893 villbau ltd.
+ bc88c3 ningbo dooya mechanic & electronic technology co., ltd
+ bc8aa3 nhn entertainment
+ bc8ae8 qing dao haier telecom co.,ltd.
bc8b55 npp eliks america inc. dba t&m atlantic
- bc8ccd samsung electro mechanics co.,ltd.
- bc8d0e alcatel-lucent
- bc926b apple
- bc9680 shenzhen gongjin electronics co.,ltd
- bc9889 fiberhome telecommunication tech.co.,ltd.
+ bc8ccd samsung electro-mechanics(thailand)
+ bc8d0e nokia
+ bc903a robert bosch gmbh
+ bc91b5 infinix mobility limited
+ bc926b apple, inc.
+ bc9325 ningbo joyson preh car connect co.,ltd.
+ bc9680 shenzhen gongjin electronics co.,lt
+ bc9740 ieee registration authority
+ bc9789 huawei device co., ltd.
+ bc97e1 broadcom limited
+ bc9889 fiberhome telecommunication technologies co.,ltd
+ bc98df motorola mobility llc, a lenovo company
+ bc9911 zyxel communications corporation
+ bc9930 huawei technologies co.,ltd
bc99bc fonsee technology inc.
+ bc9a53 huawei device co., ltd.
+ bc9b68 technicolor ch usa inc.
+ bc9c31 huawei technologies co.,ltd
+ bc9cc5 beijing huafei technology co., ltd.
+ bc9d42 shenzhen rf-link technology co.,ltd.
bc9da5 dascom europe gmbh
+ bc9fe4 aruba, a hewlett packard enterprise company
+ bc9fef apple, inc.
+ bca042 shanghai flyco electrical appliance co.,ltd
+ bca13a ses-imagotag
bca4e1 nabto
+ bca511 netgear
+ bca58b samsung electronics co.,ltd
+ bca5a9 apple, inc.
+ bca8a6 intel corporate
+ bca920 apple, inc.
+ bca993 cambium networks limited
bca9d6 cyber-rain, inc.
+ bcab7c trnp korea co ltd
+ bcad28 hangzhou hikvision digital technology co.,ltd.
+ bcadab avaya inc
bcaec5 asustek computer inc.
+ bcaf91 te connectivity sensor solutions
+ bcb0e7 huawei technologies co.,ltd
bcb181 sharp corporation
- bcb1f3 samsung electronics
+ bcb1f3 samsung electronics co.,ltd
+ bcb22b em-tech
+ bcb308 hongkong ragentek communication technology co.,limited
bcb852 cybera, inc.
+ bcb863 apple, inc.
+ bcbac2 hangzhou hikvision digital technology co.,ltd.
bcbae1 arec inc.
bcbbc9 kellendonk elektronik gmbh
+ bcbc46 sks welding systems gmbh
+ bcbd9e itel mobile limited
+ bcc00f fiberhome telecommunication technologies co.,ltd
bcc168 dinbox sverige ab
bcc23a thomson video networks
+ bcc31b kygo life a
+ bcc342 panasonic communications co., ltd.
+ bcc493 cisco systems, inc
bcc61a spectra embedded systems
bcc6db nokia corporation
bcc810 cisco spvtg
+ bccab5 arris group, inc.
bccd45 voismart
+ bccf4f zyxel communications corporation
bccfcc htc corporation
+ bcd11f samsung electronics co.,ltd
+ bcd165 cisco spvtg
bcd177 tp-link technologies co.,ltd.
+ bcd1d3 shenzhen tinno mobile technology corp.
+ bcd295 cisco systems, inc
bcd5b6 d2d technologies
+ bcd713 owl labs
+ bcd767 private
+ bcd7ce china mobile (hangzhou) information technology co., ltd.
bcd940 asr co,.ltd.
+ bcddc2 espressif inc.
bce09d eoslink
+ bce143 apple, inc.
+ bce265 huawei technologies co.,ltd
bce59f waterworld technology co.,ltd
+ bce63f samsung electronics co.,ltd
+ bce67c cambium networks limited
+ bce712 cisco systems, inc
+ bce767 quanzhou tdx electronics co., ltd
+ bce796 wireless cctv ltd
+ bce92f hp inc.
bcea2b citycom gmbh
+ bceafa hewlett packard
+ bceb5f fujian beifeng telecom technology co., ltd.
+ bcec23 shenzhen chuangwei-rgb electronics co.,ltd
+ bcec5d apple, inc.
bcee7b asustek computer inc.
+ bcf171 intel corporate
+ bcf1f2 cisco systems, inc
+ bcf292 plantronics, inc.
bcf2af devolo ag
- bcf5ac lg electronics
+ bcf310 extreme networks, inc.
+ bcf45f zte corporation
+ bcf5ac lg electronics (mobile communications)
bcf61c geomodeling wuxi technology co. ltd.
bcf685 d-link international
+ bcf811 xiamen dnake technology co.,ltd
+ bcf9f2 teko
+ bcfab8 guangzhou shiyuan electronic technology company limited
bcfe8c altronic, llc
+ bcfed9 apple, inc.
+ bcff21 smart code(shenzhen)technology co.,ltd
+ bcff4d espressif inc.
bcffac topcon corporation
+ bcffeb motorola mobility llc, a lenovo company
+ c0028d winstar display co.,ltd
+ c00380 juniper networks
+ c005c2 arris group, inc.
+ c006c3 tp-link corporation limited
+ c0074a brita gmbh
c00d7e additech, inc.
+ c010b1 hmd global oy
+ c01173 samsung electronics co.,ltd
c011a6 fort-telecom ltd.
c01242 alpha security products
+ c0132b sichuan changhong electric ltd.
c0143d hon hai precision ind. co.,ltd.
+ c014b8 nokia
+ c014fe cisco systems, inc
+ c01692 china mobile group device co.,ltd.
+ c0174d samsung electronics co.,ltd
+ c01850 quanta computer inc.
c01885 hon hai precision ind. co.,ltd.
+ c01ada apple, inc.
+ c01b23 sichuan tianyi comheart telecom co.,ltd
+ c01c30 shenzhen wifi-3l technology co.,ltd
c01e9b pixavi as
- c02250
+ c0210d shenzhen rf-link technology co.,ltd.
+ c02250 koss corporation
c02506 avm gmbh
- c0255c cisco
+ c0252f shenzhen mercury communication technologies co.,ltd.
+ c0255c cisco systems, inc
+ c02567 nexxt solutions
+ c025a2 nec platforms, ltd.
+ c025e9 tp-link technologies co.,ltd.
c027b9 beijing national railway research & design institute of signal & communication co., ltd.
+ c0280b honor device co., ltd.
+ c0288d logitech, inc
c02973 audyssey laboratories inc.
c029f3 xysystem
c02bfc ines. applied informatics gmbh
- c02c7a shen zhen horn audio co., ltd.
+ c02c7a shenzhen horn audio co.,ltd.
+ c02dee cuff
+ c02e25 guangdong oppo mobile telecommunications corp.,ltd
+ c02e26 private
+ c02ff1 volta networks
+ c0335e microsoft
+ c033da shenzhen jrun technologies co., ltd
c034b4 gigastone corporation
c03580 a&r tech
c035bd velocytech aps
+ c035c5 prosoft systems ltd
+ c03656 fiberhome telecommunication technologies co.,ltd
+ c03896 hon hai precision ind. co.,ltd.
c038f9 nokia danmark a/s
+ c03937 gree electric appliances, inc. of zhuhai
+ c0395a zhejiang dahua technology co., ltd.
c03b8f minicom digital signage
+ c03c59 intel corporate
+ c03d03 samsung electronics co.,ltd
+ c03d46 shanghai sango network technology co.,ltd
+ c03dd9 mitrastar technology corp.
c03e0f bskyb ltd
+ c03eba dell inc.
c03f0e netgear
c03f2a biscotti, inc.
- c03fd5 elitegroup computer systems co., ltd
+ c03fd5 elitegroup computer systems co.,ltd.
+ c03fdd huawei technologies co.,ltd
+ c04004 medicaroid corporation
+ c04121 nokia solutions and networks gmbh & co. kg
c041f6 lg electronics inc
+ c042d0 juniper networks
c04301 epec oy
c044e3 shenzhen sinkna electronics co., ltd
+ c04754 vivo mobile communication co., ltd.
+ c048e6 samsung electronics co.,ltd
+ c048fb shenzhen jinghanda electronics co.ltd
c0493d maitrise technologique
c04a00 tp-link technologies co.,ltd.
+ c04a09 zhejiang everbright communication equip. co,. ltd
+ c04b13 wondersound technology co., ltd
c04df7 serelec
- c057bc avaya, inc
+ c0517e hangzhou hikvision digital technology co.,ltd.
+ c05336 beijing national railway research & design institute of signal & communication group co..ltd.
+ c05627 belkin international inc.
+ c056e3 hangzhou hikvision digital technology co.,ltd.
+ c057bc avaya inc
c058a7 pico systems co., ltd.
- c05e6f v. stonkaus firma "kodinis raktas"
+ c05e6f v. stonkaus firma kodinis raktas
c05e79 shenzhen huaxun ark technologies co.,ltd
c06118 tp-link technologies co.,ltd.
- c0626b cisco systems, inc.
- c06394 apple
+ c0619a ieee registration authority
+ c0626b cisco systems, inc
+ c06369 binxin technology(zhejiang) ltd.
+ c06394 apple, inc.
c064c6 nokia corporation
+ c064e4 cisco systems, inc
c06599 samsung electronics co.,ltd
- c067af cisco
+ c067af cisco systems, inc
c06c0f dobbs stanford
c06c6d magnemotion, inc.
- c07bbc cisco
+ c06d1a tianjin henxinhuifeng technology co.,ltd.
+ c07009 huawei technologies co.,ltd
+ c0742b shenzhen xunlong software co.,limited
+ c074ad grandstream networks, inc.
+ c07831 huawei device co., ltd.
+ c07878 flextronics manufacturing(zhuhai)co.,ltd.
+ c07bbc cisco systems, inc
+ c07cd1 pegatron corporation
c07e40 shenzhen xdk communication equipment co.,ltd
+ c08135 ningbo forfan technology co., ltd
c08170 effigis geosolutions
- c0830a 2wire
- c0847a apple
+ c0830a 2wire inc
+ c08359 ieee registration authority
+ c083c9 huawei device co., ltd.
+ c0847a apple, inc.
+ c0847d ampak technology, inc.
+ c08488 finis inc
+ c0854c ragentek technology group
+ c086b3 shenzhen voxtech co., ltd.
+ c087eb samsung electronics co.,ltd
c0885b snd tech co., ltd.
+ c08997 samsung electronics co.,ltd
+ c089ab arris group, inc.
+ c08acd guangzhou shiyuan electronic technology company limited
c08ade ruckus wireless
c08b6f s i sistemas inteligentes eletrônicos ltda
- c08c60 cisco
+ c08c60 cisco systems, inc
+ c08c71 motorola mobility llc, a lenovo company
+ c08f20 shenzhen skyworth digital technology co., ltd
c09132 patriot memory
c09134 procurve networking by hp
+ c09296 zte corporation
+ c09435 arris group, inc.
+ c094ad zte corporation
+ c095da nxp india private limited
+ c09727 samsung electro-mechanics(thailand)
+ c09879 acer inc.
+ c098da china mobile iot company limited
c098e5 university of michigan
+ c09a71 xiamen meitu mobile technology co.ltd
+ c09ad0 apple, inc.
+ c09bf4 ieee registration authority
+ c09c04 shaanxi guolian digital tv technology co.,ltd.
c09c92 coby
c09d26 topicon hk lmd.
- c09f42 apple
+ c09f05 guangdong oppo mobile telecommunications corp.,ltd
+ c09f42 apple, inc.
+ c09fe1 zte corporation
+ c0a00d arris group, inc.
c0a0bb d-link international
c0a0c7 fairfield industries
c0a0de multi touch oy
c0a0e2 eden innovations
+ c0a1a2 marqmetrix
c0a26d abbott point of care
c0a364 3d systems massachusetts
+ c0a36e bskyb ltd
c0a39e earthcam, inc.
+ c0a53e apple, inc.
+ c0a5dd shenzhen mercury communication technologies co.,ltd.
+ c0a600 apple, inc.
+ c0a66d inspur group co., ltd.
+ c0a8f0 adamson systems engineering
c0aa68 osasi technos inc.
- c0ac54 sagemcom
+ c0ac54 sagemcom broadband sas
+ c0aefd shenzhen hc-wlan technology co.,ltd
+ c0b101 zte corporation
c0b339 comigo ltd.
c0b357 yoshiki electronics industry ltd.
+ c0b47d huawei device co., ltd.
+ c0b5cd huawei device co., ltd.
+ c0b5d7 chongqing fugui electronics co.,ltd.
+ c0b658 apple, inc.
+ c0b6f9 intel corporate
+ c0b713 beijing xiaoyuer technology co. ltd.
+ c0b883 intel corporate
c0b8b1 bitbox ltd
+ c0b8e6 ruijie networks co.,ltd
c0bae6 application solutions (electronics and vision) ltd
+ c0bc9a huawei technologies co.,ltd
c0bd42 zpa smart energy a.s.
+ c0bdc8 samsung electronics co.,ltd
+ c0bdd1 samsung electro-mechanics(thailand)
+ c0bfa7 juniper networks
+ c0bfc0 huawei technologies co.,ltd
c0c1c0 cisco-linksys, llc
c0c3b6 automatic systems
c0c520 ruckus wireless
+ c0c522 arris group, inc.
c0c569 shanghai lynuc cnc technology co.,ltd
c0c687 cisco spvtg
c0c946 mitsuya laboratories inc.
+ c0c976 shenzhen tinno mobile technology corp.
+ c0c9e3 tp-link technologies co.,ltd.
c0cb38 hon hai precision ind. co.,ltd.
+ c0cbf1 mobiwire mobiles (ningbo) co., ltd
+ c0cc42 sichuan tianyi comheart telecom co., ltd.
+ c0ccf8 apple, inc.
+ c0cecd apple, inc.
c0cfa3 creative electronics & software, inc.
- c0d044 sagemcom
- c0d962 askey computer corp.
+ c0d012 apple, inc.
+ c0d026 huawei device co., ltd.
+ c0d044 sagemcom broadband sas
+ c0d0ff china mobile iot company limited
+ c0d193 huawei device co., ltd.
+ c0d2dd samsung electronics co.,ltd
+ c0d2f3 hui zhou gaoshengda technology co.,ltd
+ c0d391 ieee registration authority
+ c0d3c0 samsung electronics co.,ltd
+ c0d46b huawei device co., ltd.
+ c0d682 arista networks
+ c0d834 xvtec ltd
+ c0d962 askey computer corp
+ c0d9f7 shandong domor intelligent s&t co.,ltd
c0da74 hangzhou sunyard technology co., ltd.
+ c0dc6a qingdao eastsoft communication technology co.,ltd
+ c0dcd7 huawei device co., ltd.
+ c0dcda samsung electronics co.,ltd
c0df77 conrad electronic se
+ c0e018 huawei technologies co.,ltd
+ c0e1be huawei technologies co.,ltd
+ c0e3a0 renesas electronics (penang) sdn. bhd.
+ c0e3fb huawei technologies co.,ltd
c0e422 texas instruments
- c0e54e denx computer systems gmbh
+ c0e42d tp-link technologies co.,ltd.
+ c0e434 azurewave technology inc.
+ c0e54e aries embedded gmbh
+ c0e7bf sichuan ai-link technology co., ltd.
+ c0e862 apple, inc.
c0eae4 sonicwall
+ c0ee40 laird technologies
+ c0eeb5 enice network.
+ c0eefb oneplus tech (shenzhen) ltd
c0f1c4 pacidal corporation ltd.
+ c0f2fb apple, inc.
+ c0f4e6 huawei technologies co.,ltd
+ c0f636 hangzhou kuaiyue technologies, ltd.
+ c0f6c2 huawei technologies co.,ltd
+ c0f6ec huawei technologies co.,ltd
c0f79d powercode
c0f8da hon hai precision ind. co.,ltd.
+ c0f945 toshiba toko meter systems co., ltd.
c0f991 gme standard communications p/l
+ c0fd84 zte corporation
+ c0ffa8 huawei technologies co.,ltd
+ c0ffd4 netgear
+ c40006 lipi data systems ltd.
+ c40049 kamama
+ c400ad advantech technology (china) co., ltd.
c40142 maxmedia technology limited
c4017c ruckus wireless
c401b1 seektech inc
- c40415 netgear inc.,
- c40528 huawei technologies co., ltd
- c40938 fujian star-net communication co., ltd
- c40acb cisco systems, inc.
+ c401ce presition (2000) co., ltd.
+ c402e1 khwahish technologies private limited
+ c40415 netgear
+ c4047b shenzhen youhua technology co., ltd
+ c40528 huawei technologies co.,ltd
+ c40683 huawei technologies co.,ltd
+ c4072f huawei technologies co.,ltd
+ c4084a nokia
+ c40880 shenzhen utepo tech co., ltd.
+ c40938 fujian star-net communication co.,ltd
+ c40acb cisco systems, inc
+ c40b31 apple, inc.
+ c40bcb xiaomi communications co ltd
+ c40d96 huawei technologies co.,ltd
c40e45 ack networks,inc.
c40f09 hermes electronic gmbh
c4108a ruckus wireless
- c4143c cisco
+ c411e0 bull group co., ltd
+ c412f5 d-link international
+ c413e2 extreme networks, inc.
+ c41411 apple, inc.
+ c4143c cisco systems, inc
+ c41688 huawei device co., ltd.
c416fa prysm inc
c417fe hon hai precision ind. co.,ltd.
+ c418e9 samsung electronics co.,ltd
c4198b dominion voting systems corporation
+ c419d1 telink semiconductor (shanghai) co., ltd.
c419ec qualisys ab
+ c41c9c jiqidao
+ c41cff vizio, inc
c41ece hmi sources ltd.
- c421c8 kyocera corporation
+ c421c8 kyocera corporation
+ c42360 intel corporate
c4237a whiznets inc.
+ c423a2 pt. emsonic indonesia
c4242e galvanic applied sciences inc
+ c42456 palo alto networks
c42628 airo wireless
- c42795 technicolor usa inc.
+ c4278c huawei device co., ltd.
+ c42795 technicolor ch usa inc.
+ c4282d embedded intellect pty ltd
c4291d klemsan elektrik elektronik san.ve tic.as.
- c42c03 apple
+ c42996 signify b.v.
+ c42ad0 apple, inc.
+ c42b44 huawei device co., ltd.
+ c42c03 apple, inc.
+ c42c4f qingdao hisense mobile communication technology co,ltd
+ c42f90 hangzhou hikvision digital technology co.,ltd.
+ c43018 mcs logic inc.
+ c430ca sd biosensor
+ c432d1 farlink technology limited
+ c43306 china mobile group device co.,ltd.
c4346b hewlett packard
+ c43655 shenzhen fenglian technology co., ltd.
+ c4366c lg innotek
c436da rusteletech ltd.
+ c43772 virtuozzo international gmbh
c438d3 tagatec co.,ltd
c4393a smc networks inc
+ c43960 gd midea air-conditioning equipment co.,ltd.
+ c43a35 fn-link technology limited
c43a9f siconix inc.
+ c43abe sony mobile communications inc
c43c3c cybelec sa
+ c43cea buffalo.inc
c43dc7 netgear
- c4438f lg electronics
+ c44044 racktop systems inc.
+ c440f6 guangdong oppo mobile telecommunications corp.,ltd
+ c4411e belkin international inc.
+ c44137 quectel wireless solutions co., ltd.
+ c44202 samsung electronics co.,ltd
+ c44268 crestron electronics, inc.
+ c4438f lg electronics (mobile communications)
+ c4447d huawei technologies co.,ltd
+ c444a0 cisco systems, inc
c44567 sambon precison and electronics
c445ec shanghai yali electron co.,ltd
c44619 hon hai precision ind. co.,ltd.
+ c4473f huawei technologies co.,ltd
c44838 satcom direct, inc.
+ c449bb mitsumi electric co.,ltd.
c44ad0 fireflies systems
c44b44 omniprint inc.
+ c44bd1 wallys communications teachnologies co.,ltd.
c44e1f bluen
c44eac shenzhen shiningworth technology co., ltd.
+ c44f33 espressif inc.
c45006 samsung electronics co.,ltd
+ c4518d shenzhen youhua technology co., ltd
c45444 quanta computer inc.
c455a6 cadac holdings ltd
c455c2 bach-simpson
c45600 galleon embedded computing
+ c456fe lava international ltd.
+ c4571f june life inc
+ c4576e samsung electronics co.,ltd
c458c2 shenzhen tatfook technology co., ltd.
c45976 fugoo coorporation
+ c45a86 huawei device co., ltd.
+ c45bbe espressif inc.
+ c45bf7 ants
+ c45d83 samsung electronics co.,ltd
c45dd8 hdmi forum
c46044 everex electronics limited
+ c4618b apple, inc.
c4626b zpt vigantice
c462ea samsung electronics co.,ltd
c46354 u-raku, inc.
- c46413 cisco systems, inc.
+ c463fb neatframe as
+ c46413 cisco systems, inc
+ c464b7 fiberhome telecommunication technologies co.,ltd
+ c464e3 texas instruments
+ c46516 hewlett packard
+ c46699 vivo mobile communication co., ltd.
c467b5 libratone a/s
- c46ab7 xiaomi technology,inc.
+ c467d1 huawei technologies co.,ltd
+ c468d0 vtech telecommunications ltd.
+ c4693e turbulence design inc.
+ c469f0 huawei technologies co.,ltd
+ c46ab7 xiaomi communications co ltd
c46bb4 myidkey
c46df1 datagravity
- c46e1f tp-link technologies co.,ltd
+ c46e1f tp-link technologies co.,ltd.
+ c46e7b shenzhen rf-link technology co.,ltd.
+ c4700b guangzhou chip technologies co.,ltd
+ c470ab ruijie networks co.,ltd
c47130 fon technology s.l.
- c471fe cisco systems, inc.
- c4731e samsung eletronics co., ltd
+ c47154 tp-link technologies co.,ltd.
+ c471fe cisco systems, inc
+ c47295 cisco systems, inc
+ c4731e samsung electronics co.,ltd
+ c4741e zte corporation
+ c47469 bt9
+ c474f8 hot pepper, inc.
+ c477ab beijing asu tech co.,ltd
+ c477af advanced digital broadcast sa
c47b2f beijing joinhope image technology ltd.
c47ba3 navis inc.
- c47d4f cisco systems, inc.
- c47dcc motorola solutions inc.
+ c47c8d ieee registration authority
+ c47d46 fujitsu limited
+ c47d4f cisco systems, inc
+ c47dcc zebra technologies inc
c47dfe a.n. solutions gmbh
c47f51 inventek systems
c4823f fujian newland auto-id tech. co,.ltd.
c4824e changzhou uchip electronics co., ltd.
+ c4836f ciena corporation
+ c48466 apple, inc.
c48508 intel corporate
+ c486e9 huawei technologies co.,ltd
c488e5 samsung electronics co.,ltd
+ c489ed solid optics eu n.v.
+ c48a5a jfcontrol
+ c48e8f hon hai precision ind. co.,ltd.
+ c48f07 shenzhen yihao hulian science and technology co., ltd.
+ c48fc1 deeptrack s.l.u.
+ c4910c apple, inc.
c4913a shenzhen sanland electronic co., ltd.
+ c491cf luxul
+ c4924c keisokuki center co.,ltd.
c49300 8devices
c49313 100fio networks technology llc
c49380 speedytel technology
+ c493d9 samsung electronics co.,ltd
+ c49500 amazon technologies inc.
+ c4954d ieee registration authority
c495a2 shenzhen weijiu industry and trade development co., ltd
c49805 minieum networks, inc
+ c4985c hui zhou gaoshengda technology co.,ltd
+ c49878 shanghai moaan intelligent technology co.,ltd
+ c49880 apple, inc.
+ c49886 qorvo international pte. ltd.
+ c49a02 lg electronics (mobile communications)
+ c49ded microsoft corporation
+ c49e41 g24 power limited
+ c49f4c huawei technologies co.,ltd
+ c49ff3 mciao technologies, inc.
+ c4a151 sichuan tianyi comheart telecom co., ltd.
+ c4a366 zte corporation
+ c4a402 huawei technologies co.,ltd
+ c4a72b shenzhen chuangwei-rgb electronics co.,ltd
c4a81d d-link international
c4aaa1 summit development, spol.s r.o.
+ c4abb2 vivo mobile communication co., ltd.
+ c4ac59 murata manufacturing co., ltd.
c4ad21 mediaedge corporation
+ c4ad34 routerboard.com
+ c4adf1 gopeace inc.
+ c4ae12 samsung electronics co.,ltd
+ c4b239 cisco systems, inc
+ c4b301 apple, inc.
+ c4b36a cisco systems, inc
c4b512 general electric digital energy
+ c4b8b4 huawei technologies co.,ltd
+ c4b9cd cisco systems, inc
c4ba99 i+me actia informatik und mikro-elektronik gmbh
+ c4baa3 beijing winicssec technologies co., ltd.
+ c4bb4c zebra information tech co. ltd
+ c4bbea pakedge device and software inc
+ c4bcd7 new ryatek
+ c4bd6a skf gmbh
+ c4be84 texas instruments
+ c4bed4 avaya inc
+ c4bf60 tecno mobile limited
c4c0ae midori electronic co., ltd.
+ c4c138 owlink technology inc
c4c19f national oilwell varco instrumentation, monitoring, and optimization (nov imo)
+ c4c563 tecno mobile limited
+ c4c603 cisco systems, inc
c4c755 beijing huaqinworld technology co.,ltd
c4c919 energy imports ltd
+ c4c9ec gugaoo hk limited
c4cad9 hangzhou h3c technologies co., limited
+ c4cb54 fibocom auto inc.
+ c4cb6b airista flow, inc.
c4cd45 beijing boomsense technology co.,ltd.
+ c4cd82 hangzhou lowan information technology co., ltd.
+ c4d0e3 intel corporate
+ c4d197 ventia utility services
+ c4d438 huawei technologies co.,ltd
c4d489 jiangsu joyque information industry co.,ltd
c4d655 tercel technology co.,ltd
+ c4d738 huawei device co., ltd.
+ c4d8f3 izotope
c4d987 intel corporate
c4da26 noblex sa
+ c4da7d ivium technologies b.v.
+ c4dd57 espressif inc.
+ c4de7b huawei device co., ltd.
c4e032 ieee 1904.1 working group
+ c4e0de zhengzhou xindajiean information technology co.,ltd.
c4e17c u2s co.
+ c4e1a1 guangdong oppo mobile telecommunications corp.,ltd
+ c4e287 huawei technologies co.,ltd
+ c4e39f guangdong oppo mobile telecommunications corp.,ltd
+ c4e506 piper networks, inc.
+ c4e510 mechatro, inc.
c4e7be scspro co.,ltd
+ c4e90a d-link international
c4e92f ab sciex
c4e984 tp-link technologies co.,ltd.
+ c4ea1d technicolor
c4ebe3 rrcn sas
c4edba texas instruments
c4eeae vss monitoring
- c4eef5 oclaro, inc.
+ c4eef5 ii-vi incorporated
+ c4ef70 home skinovations
+ c4f081 huawei technologies co.,ltd
+ c4f0ec fiberhome telecommunication technologies co.,ltd
+ c4f174 eero inc.
+ c4f1d1 beijing sogou technology development co., ltd.
+ c4f312 texas instruments
c4f464 spica international
- c4f57c brocade communications systems, inc.
+ c4f57c brocade communications systems llc
+ c4f5a5 kumalift co., ltd.
+ c4f7d5 cisco systems, inc
+ c4f839 actia automotive
+ c4fbaa huawei technologies co.,ltd
c4fce4 dishtv nz ltd
+ c4fde6 drtech
+ c4fe5b guangdong oppo mobile telecommunications corp.,ltd
+ c4fee2 amiccom electronics corporation
+ c4ff1f huawei technologies co.,ltd
+ c4ffbc ieee registration authority
+ c80084 cisco systems, inc
+ c80210 lg innotek
c80258 itw gse aps
+ c8028f nova electronics (shanghai) co., ltd.
c802a6 beijing newmine technology
+ c803f5 ruckus wireless
c80718 tdsi
+ c80739 nakayo inc
+ c80873 ruckus wireless
+ c808e9 lg electronics
+ c809a8 intel corporate
c80aa9 quanta computer inc.
- c80e77 le shi zhi xin electronic technology (tianjin) co.,ltd
+ c80cc8 huawei technologies co.,ltd
+ c80d32 holoplot gmbh
+ c80e14 avm audiovisuelles marketing und computersysteme gmbh
+ c80e77 le shi zhi xin electronic technology (tianjin) limited
c80e95 omnilync inc.
+ c81073 century opticomm co.,ltd
+ c8138b shenzhen skyworth digital technology co., ltd
+ c81451 huawei technologies co.,ltd
c81479 samsung electronics co.,ltd
- c816bd hisense electric co.,ltd.
+ c816a5 masimo corporation
+ c816bd qingdao hisense communications co.,ltd.
+ c816da realme chongqing mobile telecommunications corp.,ltd.
+ c81739 itel mobile limited
c819f7 samsung electronics co.,ltd
c81afe dlogic gmbh
+ c81b5c bctech
+ c81b6b innova security
c81e8e adv security (s) pte ltd
- c81f66 dell inc
+ c81ee7 apple, inc.
+ c81f66 dell inc.
+ c81fbe huawei technologies co.,ltd
+ c81fea avaya inc
c8208e storagedata
+ c82158 intel corporate
+ c821da shenzhen youhua technology co., ltd
+ c825e1 lemobile information technology (beijing) co., ltd
+ c82832 beijing xiaomi electronics co., ltd.
c8292a barun electronics
- c82a14 apple
+ c82a14 apple, inc.
+ c82b96 espressif inc.
+ c82c2b ieee registration authority
+ c82e47 suzhou smartchip semiconductor co., ltd
c82e94 halfa enterprise co., ltd.
+ c83168 ezex corporation
c83232 hunting innova
- c8334b apple
+ c8334b apple, inc.
+ c833e5 huawei technologies co.,ltd
+ c8348e intel corporate
c835b8 ericsson, eab/rwi/k
+ c83870 samsung electronics co.,ltd
c83a35 tenda technology co., ltd.
- c83b45 jri-maxant
+ c83a6b roku, inc
+ c83b45 jri
+ c83c85 apple, inc.
c83d97 nokia corporation
+ c83dd4 cybertan technology inc.
+ c83ddc xiaomi communications co ltd
+ c83dfc alphatheta corporation
c83e99 texas instruments
c83ea7 kunbus gmbh
+ c83f26 microsoft corporation
+ c83fb4 arris group, inc.
+ c84029 fiberhome telecommunication technologies co.,ltd
c84529 imk networks co.,ltd
- c84544 shanghai enlogic electric technology co., ltd.
+ c84544 asia pacific cis (wuxi) co, ltd
+ c8458f wyler ag
+ c84782 areson technology corp.
+ c8478c beken corporation
c848f5 medison xray co., ltd
- c84c75 cisco systems, inc.
+ c84c75 cisco systems, inc
+ c84d34 lions taiwan technology inc.
+ c84f0e integrated device technology (malaysia) sdn. bhd.
+ c84f86 sophos ltd
+ c850ce huawei technologies co.,ltd
+ c850e9 raisecom technology co., ltd
+ c85195 huawei technologies co.,ltd
+ c85261 arris group, inc.
+ c853e1 beijing bytedance network technology co., ltd
+ c8544b zyxel communications corporation
c85645 intermas france
c85663 sunflex europe gmbh
+ c858c0 intel corporate
+ c85a9f zte corporation
+ c85b76 lcfc(hefei) electronics technology co., ltd
+ c85ba0 shenzhen qihu intelligent technology company limited
+ c85d38 humax co., ltd.
c86000 asustek computer inc.
+ c86314 ieee registration authority
+ c863f1 sony interactive entertainment inc.
+ c863fc arris group, inc.
c864c7 zte corporation
+ c8662c beijing haitai fangyuan high technology co,.ltd.
+ c8665d extreme networks, inc.
+ c8675e extreme networks, inc.
+ c868de huawei device co., ltd.
+ c869cd apple, inc.
c86c1e display systems ltd
- c86c87 zyxel communications corp
+ c86c3d amazon technologies inc.
+ c86c87 zyxel communications corporation
c86cb6 optcom co., ltd.
- c86f1d apple
+ c86f1d apple, inc.
+ c87125 johnson outdoors marine electronics d/b/a minnkota
c87248 aplicom oy
+ c87324 sow cheng technology co. ltd.
+ c8755b quantify technology pty. ltd.
+ c87765 tiesse spa
+ c8778b mercury systems – trusted mission solutions, inc.
+ c87b23 bose corporation
c87b5b zte corporation
- c87cbc valink co., ltd.
+ c87cbc valink co., ltd.
c87d77 shenzhen kingtech communication equipment co.,ltd
c87e75 samsung electronics co.,ltd
+ c87ea1 tcl moka international limited
+ c88314 tempo communications
c88439 sunrise technologies
c88447 beautiful enterprise co., ltd
+ c884a1 cisco systems, inc
+ c88550 apple, inc.
+ c88629 shenzhen duubee intelligent technologies co.,ltd.
+ c88722 lumenpulse
c8873b net optics
c88a83 dongguan huahong electronics co.,ltd
c88b47 nolangroup s.p.a con socio unico
+ c88be8 masimo corporation
+ c88d83 huawei technologies co.,ltd
+ c88ed1 ieee registration authority
+ c88f26 skyworth digital technology(shenzhen) co.,ltd
c8903e pakton technologies
+ c891f9 sagemcom broadband sas
c89346 mxchip company limited
c89383 embedded automation, inc.
+ c89402 chongqing fugui electronics co.,ltd.
+ c894bb huawei technologies co.,ltd
c894d2 jiangsu datang electronic products co., ltd
c8979f nokia corporation
- c89c1d cisco systems, inc.
- c89cdc elitegroup computer system co., ltd.
+ c89bad honor device co., ltd.
+ c89c13 inspiremobile
+ c89c1d cisco systems, inc
+ c89cdc elitegroup computer systems co.,ltd.
c89f1d shenzhen communication technologies co.,ltd
c89f42 vdii innovation ab
c8a030 texas instruments
c8a1b6 shenzhen longway technologies co., ltd
c8a1ba neul ltd
+ c8a2ce oasis media systems llc
+ c8a40d cooler master technology inc
c8a620 nebula, inc
c8a70a verizon business
c8a729 systronics co., ltd.
+ c8a776 huawei technologies co.,ltd
+ c8a823 samsung electronics co.,ltd
+ c8a9fc goyoo networks inc.
c8aa21 arris group, inc.
- c8aacc
+ c8aa55 hunan comtom electronic incorporated co.,ltd
+ c8aacc private
c8ae9c shanghai tyd elecronic technology co. ltd
c8af40 marco systemanalyse und entwicklung gmbh
+ c8afe3 hefei radio communication technology co., ltd
+ c8b1cd apple, inc.
+ c8b1ee qorvo
+ c8b21e chipsea technologies (shenzhen) corp.
+ c8b29b intel corporate
c8b373 cisco-linksys, llc
- c8b5b7 apple
+ c8b422 askey computer corp
+ c8b5ad hewlett packard enterprise
+ c8b5b7 apple, inc.
+ c8b6d3 huawei technologies co.,ltd
+ c8ba94 samsung electro-mechanics(thailand)
+ c8bae9 qdis
+ c8bb81 huawei device co., ltd.
c8bbd3 embrane
- c8bcc8 apple
+ c8bc9c huawei device co., ltd.
+ c8bcc8 apple, inc.
+ c8bce5 sense things japan inc.
c8be19 d-link international
+ c8bffe huawei device co., ltd.
c8c126 zpm industria e comercio ltda
c8c13c ruggedtek hangzhou co., ltd
+ c8c2c6 shanghai airm2m communication technology co., ltd
+ c8c2f5 flextronics manufacturing(zhuhai)co.,ltd.
+ c8c2fa huawei technologies co.,ltd
+ c8c465 huawei technologies co.,ltd
+ c8c50e shenzhen primestone network technologies.co., ltd.
+ c8c64a flextronics tech.(ind) pvt ltd
+ c8c750 motorola mobility llc, a lenovo company
c8c791 zero1.tv gmbh
+ c8ca63 huawei device co., ltd.
c8cbb8 hewlett packard
- c8cd72 sagemcom
+ c8cd72 sagemcom broadband sas
+ c8d019 shanghai tigercel communication technology co.,ltd
+ c8d083 apple, inc.
c8d10b nokia corporation
- c8d15e huawei technologies co., ltd
+ c8d12a comtrend corporation
+ c8d15e huawei technologies co.,ltd
c8d1d1 agait technology corporation
c8d2c1 jetlun (shenzhen) corporation
c8d3a3 d-link international
+ c8d3ff hewlett packard
c8d429 muehlbauer ag
c8d590 flight data systems
c8d5fe shenzhen zowee technology co., ltd
- c8d719 cisco consumer products, llc
+ c8d69d arab international optronics
+ c8d719 cisco-linksys, llc
+ c8d778 bsh hausgeraete gmbh
+ c8d779 qing dao haier telecom co.,ltd.
+ c8d7b0 samsung electronics co.,ltd
+ c8d884 universal electronics, inc.
+ c8d9d2 hewlett packard
+ c8db26 logitech
c8ddc9 lenovo mobile communication technology ltd.
- c8de51 integra networks, inc.
+ c8de51 integraoptics
+ c8dec9 coriant
c8df7c nokia corporation
- c8e0eb apple
+ c8df84 texas instruments
+ c8e0eb apple, inc.
+ c8e130 milkyway group ltd
c8e1a7 vertu corporation limited
+ c8e265 intel corporate
+ c8e42f technical research design and development
+ c8e600 huawei technologies co.,ltd
+ c8e776 ptcom technology
+ c8e7d8 mercury communication technologies co.,ltd.
+ c8e7f0 juniper networks
+ c8eaf8 zte corporation
c8ee08 tangtop technology co.,ltd
c8ee75 pishion international co. ltd
c8eea6 shenzhen shx technology co., ltd
- c8ef2e beijing gefei tech. co., ltd
+ c8ef2e beijing gefei tech. co., ltd
+ c8f230 guangdong oppo mobile telecommunications corp.,ltd
+ c8f319 lg electronics (mobile communications)
c8f36b yamato scale co.,ltd.
c8f386 shenzhen xiaoniao technology co.,ltd
- c8f406 avaya, inc
- c8f650 apple
+ c8f406 avaya inc
+ c8f650 apple, inc.
c8f68d s.e.technologies limited
+ c8f6c8 fiberhome telecommunication technologies co.,ltd
c8f704 building block video
c8f733 intel corporate
+ c8f742 hangzhou gubei electronics technology co.,ltd
+ c8f750 dell inc.
+ c8f86d alcatel-lucent shanghai bell co., ltd
+ c8f946 locosys technology inc.
c8f981 seneca s.r.l.
- c8f9f9 cisco systems, inc.
+ c8f9c8 newsharp technology(suzhou)co,ltd
+ c8f9f9 cisco systems, inc
+ c8fa84 trusonus corp.
+ c8fae1 arq digital llc
c8fb26 cisco spvtg
+ c8fd19 texas instruments
c8fe30 bejing dayo mobile communication technology ltd.
+ c8fe6a juniper networks
+ c8ff28 liteon technology corporation
+ c8ff77 dyson limited
cc0080 bettini srl
+ cc03d9 cisco meraki
+ cc03fa technicolor ch usa inc.
cc047c g-way microwave
cc04b4 select comfort
cc051b samsung electronics co.,ltd
+ cc0577 huawei technologies co.,ltd
+ cc0677 fiberhome telecommunication technologies co.,ltd
cc07ab samsung electronics co.,ltd
cc07e4 lenovo mobile communication technology ltd.
- cc08e0 apple
+ cc088d apple, inc.
+ cc08e0 apple, inc.
+ cc08fb tp-link technologies co.,ltd.
cc09c8 imaqliq ltd
cc0cda miljovakt as
cc0dec cisco spvtg
+ cc0df2 motorola mobility llc, a lenovo company
+ cc10a3 beijing nan bao technology co., ltd.
cc14a6 yichun myenergy domain, inc
+ cc167e cisco systems, inc
cc187b manzanita systems, inc.
+ cc19a8 pt inovação e sistemas sa
cc1afa zte corporation
+ cc1be0 ieee registration authority
cc1eff metrological group bv
+ cc1fc4 invue
+ cc208c huawei technologies co.,ltd
+ cc20e8 apple, inc.
+ cc2119 samsung electronics co.,ltd
cc2218 innodigital co., ltd.
+ cc2237 ieee registration authority
+ cc242e shenzhen superelectron technology co.,ltd.
+ cc25ef apple, inc.
cc262d verifi, llc
+ cc29f5 apple, inc.
cc2a80 micro-biz intelligence solutions co.,ltd
+ cc2c83 darkmatter l.l.c
+ cc2d1b sfr
+ cc2d21 tenda technology co.,ltd.dongguan branch
+ cc2d83 guangdong oppo mobile telecommunications corp.,ltd
cc2d8c lg electronics inc
- cc33bb sagemcom sas
+ cc2db7 apple, inc.
+ cc2de0 routerboard.com
+ cc2f71 intel corporate
+ cc3080 vaio corporation
+ cc3296 huawei device co., ltd.
+ cc32e5 tp-link technologies co.,ltd.
+ cc3331 texas instruments
+ cc33bb sagemcom broadband sas
cc3429 tp-link technologies co.,ltd.
cc34d7 gewiss s.p.a.
- cc3540 technicolor usa inc.
+ cc3540 technicolor ch usa inc.
+ cc355a secugen corporation
+ cc37ab edgecore networks corporation
cc398c shiningtek
cc3a61 samsung electro mechanics co., ltd.
+ cc3adf private
+ cc3b27 tecno mobile limited
+ cc3b3e lester electrical
+ cc3b58 curiouser products inc
cc3c3f sa.s.s. datentechnik ag
+ cc3d82 intel corporate
cc3e5f hewlett packard
+ cc3f1d intesis software sl
+ cc3fea bae systems, inc
+ cc40d0 netgear
+ cc418e msa innovation
cc43e3 trump s.a.
+ cc4463 apple, inc.
+ cc4639 waav, inc.
+ cc464e samsung electronics co.,ltd
+ cc46d6 cisco systems, inc
cc4703 intercon systems co., ltd.
+ cc47bd rhombus systems
+ cc483a dell inc.
cc4ae1 fourtec -fourier technologies
+ cc4b73 ampak technology, inc.
cc4bfb hellberg safety ab
- cc4e24 brocade communications systems, inc.
+ cc4d38 carnegie technologies
+ cc4e24 brocade communications systems llc
+ cc4eec humax co., ltd.
+ cc4f5c ieee registration authority
+ cc500a fiberhome telecommunication technologies co.,ltd
cc501c kvh industries, inc.
cc5076 ocom communications, inc.
+ cc50e3 espressif inc.
+ cc51b4 integrated device technology (malaysia) sdn. bhd.
+ cc5289 shenzhen optfocus technology.,ltd
cc52af universal global scientific industrial co., ltd.
cc53b5 huawei technologies co.,ltd
cc5459 ontime networks as
cc55ad rim
- cc593e toumaz ltd
+ cc593e sensium healthcare limited
+ cc5a53 cisco systems, inc
cc5c75 weightech com. imp. exp. equip. pesagem ltda
+ cc5cde china mobile group device co.,ltd.
cc5d4e zyxel communications corporation
cc5d57 information system research institute,inc.
+ cc5d78 jtd consulting
+ cc5fbf topwise 3g communication co., ltd.
cc60bb empower rf systems
+ cc61e5 motorola mobility llc, a lenovo company
+ cc64a6 huawei technologies co.,ltd
cc65ad arris group, inc.
+ cc660a apple, inc.
+ cc66b2 nokia
+ cc68b6 tp-link corporation limited
cc69b0 global traffic technologies, llc
+ cc69fa apple, inc.
+ cc6a10 the chamberlain group, inc
+ cc6b1e cloud network technology singapore pte. ltd.
cc6b98 minetec wireless technologies
cc6bf1 sound masking inc.
cc6da0 roku, inc.
cc6def tjk tietolaite oy
+ cc6ea4 samsung electronics co.,ltd
+ cc70ed cisco systems, inc
cc720f viscount systems inc.
+ cc7286 xi'an fengyu information technology co., ltd.
+ cc7314 hong kong wheatek technology limited
cc7498 filmetrics inc.
+ cc75e2 arris group, inc.
cc7669 seetech
- cc785f apple
+ cc785f apple, inc.
+ cc78ab texas instruments
+ cc794a blu products inc.
+ cc79cf shenzhen rf-link technology co.,ltd.
cc7a30 cmax wireless co., ltd.
cc7b35 zte corporation
+ cc7b61 nikkiso co., ltd.
cc7d37 arris group, inc.
- cc7ee7 panasonic avc networks company
+ cc7ee7 panasonic corporation avc networks company
+ cc7f75 cisco systems, inc
+ cc7f76 cisco systems, inc
+ cc812a vivo mobile communication co., ltd.
+ cc81da phicomm (shanghai) co., ltd.
+ cc82eb kyocera corporation
cc856c shenzhen mdk digital technology co.,ltd
+ cc86ec silicon laboratories
+ cc874a nokia
+ cc8826 lg innotek
+ cc88c7 aruba, a hewlett packard enterprise company
+ cc895e huawei technologies co.,ltd
cc89fd nokia corporation
+ cc8cda shenzhen wei da intelligent technology go.,ltd
cc8ce3 texas instruments
+ cc8e71 cisco systems, inc
+ cc9070 cisco systems, inc
cc9093 hansong tehnologies
+ cc90e8 shenzhen youhua technology co., ltd
cc912b te connectivity touch solutions
+ cc934a sierra wireless
cc944a pfeiffer vacuum gmbh
+ cc9470 kinestral technologies, inc.
cc95d7 vizio, inc
- cc96a0 shenzhen huawei communication technologies co., ltd
+ cc9635 lvs co.,ltd.
+ cc96a0 huawei technologies co.,ltd
+ cc988b sony visual products inc.
+ cc9891 cisco systems, inc
+ cc9916 integrated device technology (malaysia) sdn. bhd.
+ cc9c3e cisco meraki
cc9e00 nintendo co., ltd.
+ cc9ea2 amazon technologies inc.
+ cc9eca hmd global oy
cc9f35 transbit sp. z o.o.
+ cc9f7a chiun mai communication systems, inc
cca0e5 dzg metering gmbh
+ cca12b tcl king electrical appliances (huizhou) co., ltd
+ cca219 shenzhen along investment co.,ltd
+ cca223 huawei technologies co.,ltd
+ cca260 sichuan tianyi comheart telecomco.,ltd
cca374 guangdong guanglian electronic technology co.ltd
cca462 arris group, inc.
+ cca4af shenzhen sowell technology co., ltd
cca614 aifa technology corp.
+ cca7c1 google, inc.
+ ccab2c humax co., ltd.
ccaf78 hon hai precision ind. co.,ltd.
+ ccb0a8 huawei device co., ltd.
+ ccb0da liteon technology corporation
+ ccb11a samsung electronics co.,ltd
+ ccb182 huawei technologies co.,ltd
ccb255 d-link international
+ ccb3ab shenzhen biocare bio-medical equipment co.,ltd.
ccb3f8 fujitsu isotec limited
ccb55a fraunhofer itwm
ccb691 necmagnuscommunications
ccb888 anb securite s.a.
+ ccb8a8 ampak technology, inc.
ccb8f1 eagle kingdom technologies limited
+ ccbbfe huawei technologies co.,ltd
ccbd35 steinel gmbh
+ ccbdd3 ultimaker b.v.
+ ccbe59 calix inc.
ccbe71 optilogix bv
+ ccc079 murata manufacturing co., ltd.
ccc104 applied technical systems
- ccc3ea motorola mobility llc
+ ccc261 ieee registration authority
+ ccc2e0 raisecom technology co., ltd
+ ccc3ea motorola mobility llc, a lenovo company
ccc50a shenzhen dajiahao technology co.,ltd
+ ccc5e5 dell inc.
+ ccc5ef co-comm servicios telecomunicaciones s.l.
ccc62b tri-systems corporation
+ ccc760 apple, inc.
ccc8d7 cias elettronica srl
- cccc4e sun fountainhead usa. corp
+ ccc92c schindler - port technology
+ ccc95d apple, inc.
+ cccc4e sun fountainhead usa. corp
cccc81 huawei technologies co.,ltd
+ cccccc silicon laboratories
cccd64 sm-electronic gmbh
+ ccce1e avm audiovisuelles marketing und computersysteme gmbh
ccce40 janteq corp
+ ccd083 aruba, a hewlett packard enterprise company
+ ccd281 apple, inc.
ccd29b shenzhen bopengfa elec&technology co.,ltd
- ccd539 cisco
+ ccd31e ieee registration authority
+ ccd39d ieee registration authority
+ ccd3c1 vestel elektronik san ve tic. a.Ş.
+ ccd3e2 jiangsu yinhe electronics co.,ltd.
+ ccd42e arcadyan corporation
+ ccd4a1 mitrastar technology corp.
+ ccd539 cisco systems, inc
+ ccd73c huawei technologies co.,ltd
ccd811 aiconn technology corporation
+ ccd81f maipu communication technology co.,ltd.
+ ccd8c1 cisco systems, inc
+ ccd9ac intel corporate
ccd9e9 scr engineers ltd.
- cce1d5 buffalo inc.
+ ccdb04 dataremote inc.
+ ccdb93 cisco systems, inc
+ ccdc55 dragonchip limited
+ cce0c3 exten technologies, inc.
+ cce0da baidu online network technology (beijing) co., ltd
+ cce17f juniper networks
+ cce194 juniper networks
+ cce1d5 buffalo.inc
cce798 my social stuff
cce7df american magnetics, inc.
cce8ac soyea technology co.,ltd.
ccea1c dconworks co., ltd
- cceed9 deto mechatronic gmbh
- ccef48 cisco systems, inc.
+ cced21 nokia shanghai bell co., ltd.
+ cceddc mitrastar technology corp.
+ cceed9 vahle automation gmbh
+ ccef03 hunan keyshare communication technology co., ltd.
+ ccef48 cisco systems, inc
+ ccf0fd china mobile (hangzhou) information technology co., ltd.
ccf3a5 chi mei communication systems, inc
ccf407 eukrea electromatique sarl
+ ccf411 google, inc.
+ ccf538 3isysnetworks
+ ccf55f e focus instruments india private limited
ccf67a ayecka communication systems ltd
+ ccf735 amazon technologies inc.
ccf841 lumewave
ccf8f0 xi'an hisu multimedia technology co.,ltd.
- ccf954 avaya, inc
+ ccf954 avaya inc
+ ccf957 u-blox ag
+ ccf9e4 intel corporate
ccf9e8 samsung electronics co.,ltd
- ccfa00 lg electronics
+ ccfa00 lg electronics (mobile communications)
ccfb65 nintendo co., ltd.
ccfc6d riz transmitters
ccfcb1 wireless technology, inc.
- ccfe3c samsung electronics
+ ccfd17 tct mobile ltd
+ ccfe3c samsung electronics co.,ltd
+ ccff90 huawei device co., ltd.
+ d0034b apple, inc.
+ d003df samsung electronics co.,ltd
+ d003eb texas instruments
+ d00401 motorola mobility llc, a lenovo company
+ d00492 fiberhome telecommunication technologies co.,ltd
+ d0052a arcadyan corporation
+ d005e4 huawei device co., ltd.
d00790 texas instruments
+ d007ca juniper networks
+ d00aab yokogawa digital computer corporation
+ d00df7 huawei device co., ltd.
d00ea4 porsche cars north america
+ d00ed9 taicang t&w electronics
+ d00f6d t&w electronics company
+ d01242 bios corporation
+ d012cb avm audiovisuelles marketing und computersysteme gmbh
d0131e sunrex technology corp
+ d013fd lg electronics (mobile communications)
+ d01411 ieee registration authority
d0154a zte corporation
+ d015a6 aruba, a hewlett packard enterprise company
+ d016b4 huawei technologies co.,ltd
d0176a samsung electronics co.,ltd
+ d017c2 asustek computer inc.
+ d0196a ciena corporation
d01aa7 uniprint
+ d01c3c tecno mobile limited
d01cbb beijing ctimes digital technology co., ltd.
- d022be samsung electro mechanics co.,ltd.
- d023db apple
- d02788 hon hai precision ind.co.ltd
+ d021ac yo labs llc
+ d021f9 ubiquiti networks inc.
+ d02212 ieee registration authority
+ d022be samsung electro-mechanics(thailand)
+ d023db apple, inc.
+ d02516 mercury communication technologies co.,ltd.
+ d02544 samsung electro-mechanics(thailand)
+ d02598 apple, inc.
+ d02788 hon hai precision ind. co.,ltd.
+ d028ba realme chongqing mobiletelecommunications corp ltd
+ d02b20 apple, inc.
d02c45 littlebits electronics, inc.
- d02db3 huawei technologies co., ltd
+ d02db3 huawei technologies co.,ltd
+ d02eab texas instruments
d03110 ingenic semiconductor co.,ltd
+ d03169 samsung electronics co.,ltd
+ d03311 apple, inc.
+ d035e5 em microelectronic
+ d03742 yulong computer telecommunication scientific (shenzhen) co.,ltd
+ d03745 tp-link technologies co.,ltd.
d03761 texas instruments
d03972 texas instruments
+ d039b3 arris group, inc.
+ d039ea netapp
+ d03c1f intel corporate
+ d03d52 ava security limited
+ d03dc3 aq corporation
+ d03e5c huawei technologies co.,ltd
+ d03faa apple, inc.
+ d040ef murata manufacturing co., ltd.
+ d041c9 fiberhome telecommunication technologies co.,ltd
+ d0431e dell inc.
d046dc southwest research institute
+ d047c1 elma electronic ag
+ d048f3 dattus inc
+ d0498b zoom server
d04cc1 sintrones technology corp.
+ d04d2c roku, inc.
+ d04e50 mobiwire mobiles (ningbo) co., ltd
+ d04f7e apple, inc.
d05099 asrock incorporation
- d05162 sony mobile communications ab
+ d05157 leax arkivator telecom
+ d05162 sony mobile communications inc
d052a8 physical graph corporation
+ d05349 liteon technology corporation
d0542d cambridge industries(group) co.,ltd.
- d0574c cisco systems, inc.
+ d05509 nintendo co.,ltd
+ d055b2 integrated device technology (malaysia) sdn. bhd.
+ d056bf amosense
+ d0574c cisco systems, inc
+ d0577b intel corporate
d05785 pantech co., ltd.
+ d05794 sagemcom broadband sas
d057a1 werma signaltechnik gmbh & co. kg
d05875 active control technology inc.
+ d058a8 zte corporation
+ d058c0 qingdao haier multimedia limited.
+ d058fc bskyb ltd
+ d05919 zte corporation
+ d05995 fiberhome telecommunication technologies co.,ltd
d059c3 ceramicro technology corporation
+ d059e4 samsung electronics co.,ltd
+ d05a00 technicolor ch usa inc.
d05a0f i-bt digital co.,ltd
+ d05af1 shenzhen pulier tech co.,ltd
+ d05afd realme chongqing mobile telecommunications corp.,ltd.
+ d05ba8 zte corporation
+ d05c7a sartura d.o.o.
+ d05f64 ieee registration authority
d05fb8 texas instruments
d05fce hitachi data systems
+ d0608c zte corporation
+ d062a0 china essence technology (zhumadian) co., ltd.
d0634d meiko maschinenbau gmbh & co. kg
d063b4 solidrun ltd.
- d0667b samsung electronics co., ltd
- d067e5 dell inc
+ d06544 apple, inc.
+ d065ca huawei technologies co.,ltd
+ d0666d shenzhen bus-lan technology co., ltd.
+ d0667b samsung electronics co.,ltd
+ d06726 hewlett packard enterprise
+ d067e5 dell inc.
d0699e luminex lighting control equipment
d069d0 verto medical solutions, llc
- d072dc cisco
+ d06a1f bse co.,ltd.
+ d06ede sagemcom broadband sas
+ d06f4a topwell international holdings limited
+ d06f82 huawei technologies co.,ltd
+ d071c4 zte corporation
+ d072dc cisco systems, inc
d0737f mini-circuits
- d0738e dong oh precision co., ltd.
+ d0738e dong oh precision co., ltd.
d073d5 lifi labs management pty ltd
d075be reno a&e
- d07650 ieee registration authority - please see mam public listing for more information.
- d07ab5 huawei technologies co., ltd
+ d07650 ieee registration authority
+ d0768f calix inc.
+ d076e7 tp-link technologies co.,ltd.
+ d07714 motorola mobility llc, a lenovo company
+ d07ab5 huawei technologies co.,ltd
+ d07c2d leie iot technology co., ltd
+ d07d33 huawei device co., ltd.
d07de5 forward pay systems, inc.
d07e28 hewlett packard
d07e35 intel corporate
+ d07fa0 samsung electronics co.,ltd
+ d07fc4 ou wei technology co.,ltd. of shenzhen city
+ d0817a apple, inc.
+ d083d4 xtel wireless aps
+ d084b0 sagemcom broadband sas
+ d087e2 samsung electronics co.,ltd
d08999 apcon, inc.
d08a55 skullcandy
+ d08a91 technicolor ch usa inc.
d08b7e passif semiconductor
d08cb5 texas instruments
d08cff upwis ab
+ d0929e microsoft corporation
+ d092fa fiberhome telecommunication technologies co.,ltd
+ d09380 ducere technologies pvt. ltd.
d093f8 stonestreet one llc
+ d09466 dell inc.
d095c7 pantech co., ltd.
+ d096fb dasan network solutions
+ d097fe realme chongqing mobile telecommunications corp.,ltd.
+ d099d5 alcatel-lucent
d09b05 emtronix
d09c30 foster electric company, limited
+ d09c7a xiaomi communications co ltd
d09d0a linkcom
+ d09dab tct mobile ltd
+ d0a0d6 chengdu td tech ltd.
d0a311 neuberger gebäudeautomation gmbh
+ d0a4b1 sonifex ltd.
+ d0a5a6 cisco systems, inc
+ d0a637 apple, inc.
+ d0abd5 intel corporate
d0aeec alpha networks inc.
d0afb6 linktop technology co., ltd
- d0b33f shenzhen tinno mobile technology co.,ltd.
+ d0b0cd moen
+ d0b128 samsung electronics co.,ltd
+ d0b214 poewit inc
+ d0b2c4 technicolor ch usa inc.
+ d0b33f shenzhen tinno mobile technology corp.
+ d0b45d huawei device co., ltd.
d0b498 robert bosch llc automotive electronics
d0b523 bestcare cloucal corp.
d0b53d sepro robotique
+ d0b5c2 texas instruments
+ d0b60a xingluo technology company limited
+ d0bae4 shanghai mxchip information technology co., ltd.
d0bb80 shl telemedicine international ltd.
+ d0bcc1 weifang goertek electronics co.,ltd
d0bd01 ds international
d0be2c cnslink co., ltd.
+ d0bf9c hewlett packard
+ d0c0bf actions microelectronics co., ltd
+ d0c193 skybell, inc
d0c1b1 samsung electronics co.,ltd
- d0c282 cisco systems, inc.
+ d0c282 cisco systems, inc
+ d0c31e jungjin electronics co.,ltd
d0c42f tamagawa seiki co.,ltd.
- d0c789 cisco
+ d0c5d3 azurewave technology inc.
+ d0c5d8 latecoere
+ d0c5f3 apple, inc.
+ d0c637 intel corporate
+ d0c65b huawei technologies co.,ltd
+ d0c789 cisco systems, inc
d0c7c0 tp-link technologies co.,ltd.
+ d0c857 ieee registration authority
d0cde1 scientech electronics
d0cf5e energy micro as
- d0d0fd cisco systems, inc.
+ d0cfd8 huizhou boshijie technology co.,ltd
+ d0d003 samsung electronics co.,ltd
+ d0d04b huawei technologies co.,ltd
+ d0d0fd cisco systems, inc
d0d212 k2net co.,ltd.
+ d0d23c apple, inc.
d0d286 beckman coulter k.k.
+ d0d2b0 apple, inc.
+ d0d3e0 aruba, a hewlett packard enterprise company
d0d3fc mios, ltd.
d0d412 adb broadband italia
d0d471 mvtech co., ltd
d0d6cc wintop
+ d0d783 huawei technologies co.,ltd
+ d0d94f ieee registration authority
d0db32 nokia corporation
+ d0dd49 juniper networks
d0df9a liteon technology corporation
d0dfb2 genie networks limited
d0dfc7 samsung electronics co.,ltd
- d0e140 apple, inc
+ d0e042 cisco systems, inc
+ d0e140 apple, inc.
d0e347 yoga
d0e40b wearable inc.
- d0e54d pace plc
- d0e782 azurewave technologies, inc.
+ d0e44a murata manufacturing co., ltd.
+ d0e54d arris group, inc.
+ d0e782 azurewave technology inc.
d0eb03 zhehua technology limited
d0eb9e seowoo inc.
+ d0ec35 cisco systems, inc
+ d0efc1 huawei technologies co.,ltd
d0f0db ericsson
d0f27f steadyserv technoligies, llc
- d0f73b helmut mauell gmbh
- d0ff50 texas instruments, inc
+ d0f3f5 huawei device co., ltd.
+ d0f73b helmut mauell gmbh werk weida
+ d0f88c motorola (wuhan) mobility technologies communication co., ltd.
+ d0fa1d qihoo 360 technology co.,ltd
+ d0fccc samsung electronics co.,ltd
+ d0ff50 texas instruments
+ d0ff98 huawei technologies co.,ltd
d4000d phoenix broadband technologies, llc.
d40057 mc technologies gmbh
- d40129 broadcom corporation
+ d40129 broadcom
d4016d tp-link technologies co.,ltd.
d4024a delphian systems llc
+ d404cd arris group, inc.
+ d404ff juniper networks
+ d40598 arris group, inc.
+ d40aa9 arris group, inc.
+ d40b1a htc corporation
d40bb9 solid semecs bv.
d40fb2 applied micro electronics ame bv
d41090 inform systems ag
d410cf huanshun network science and technology co., ltd.
+ d411a3 samsung electronics co.,ltd
d411d6 shotspotter, inc.
+ d41243 ampak technology, inc.
d41296 anobit technologies ltd.
d412bb quadrant components inc. ltd
d4136f asia pacific brands
+ d41a3f guangdong oppo mobile telecommunications corp.,ltd
+ d41ac8 nippon printer engineering
+ d41b81 chongqing fugui electronics co.,ltd.
d41c1c rcf s.p.a.
+ d41d71 palo alto networks
d41e35 toho electronics inc.
- d41f0c tvi vision oy
+ d41f0c jai manufacturing
d4206d htc corporation
- d42122 sercomm corporation
+ d420b0 mist systems, inc.
+ d42122 sercomm corporation.
d4223f lenovo mobile communication technology ltd.
d4224e alcatel lucent
+ d422cd xsens technologies b.v.
+ d42493 gw technologies co.,ltd
+ d4258b intel corporate
+ d425cc ieee registration authority
d42751 infopia co., ltd
d428b2 iobridge, inc.
+ d428d5 tct mobile ltd
d429ea zimory gmbh
+ d42c0f arris group, inc.
d42c3d sky light digital limited
+ d42c44 cisco systems, inc
+ d42dc5 panasonic i-pro sensing solutions co., ltd.
d42f23 akenori pte ltd
d4319d sinwatec
+ d43260 gopro
+ d43266 fike corporation
+ d4351d technicolor
+ d43639 texas instruments
+ d436db jiangsu toppower automotive electronics co., ltd
+ d437d7 zte corporation
+ d4389c sony mobile communications inc
+ d439b8 ciena corporation
+ d43a2e shenzhen mtc co ltd
d43a65 igrs engineering lab ltd.
d43ae9 dongguan ipt industrial co., ltd
+ d43b04 intel corporate
+ d43d39 dialog semiconductor
d43d67 carma industries inc.
d43d7e micro-star int'l co, ltd
+ d43fcb arris group, inc.
+ d440d0 ocosmos co., ltd
+ d440f0 huawei technologies co.,ltd
+ d44165 sichuan tianyi comheart telecomco.,ltd
d443a8 changzhou haojie electric co., ltd.
+ d445e8 jiangxi hongpai technology co., ltd.
+ d44649 huawei technologies co.,ltd
+ d446e1 apple, inc.
+ d4475a screenbeam, inc.
+ d4482d shenzhen deejoy lighting technology co.,ltd.
d44b5e taiyo yuden co., ltd.
+ d44bb6 zhejiang tmall technology co., ltd.
d44c24 vuppalamritha magnetic components ltd
d44c9c shenzhen yoobao technology co.ltd
d44ca7 informtekhnika & communication, llc
+ d44da4 murata manufacturing co., ltd.
+ d44f67 huawei technologies co.,ltd
+ d44f68 eidetic communications inc
d44f80 kemper digital gmbh
+ d4503f guangdong oppo mobile telecommunications corp.,ltd
d4507a ceiva logic, inc
+ d4522a tangowifi.com
d45251 ibt ingenieurbureau broennimann thun
d45297 nstreams technologies, inc.
+ d452ee bskyb ltd
+ d45383 murata manufacturing co., ltd.
d453af vigo system s.a.
+ d45556 fiber mountain inc.
+ d455be shenzhen fast technologies co.,ltd
+ d45800 fiberhome telecommunication technologies co.,ltd
d45ab2 galleon systems
- d45c70 wireless gigabit alliance
+ d45c70 wi-fi alliance
d45d42 nokia corporation
+ d45d64 asustek computer inc.
+ d45ddf pegatron corporation
+ d45eec beijing xiaomi electronics co., ltd.
+ d45f25 shenzhen youhua technology co., ltd
+ d46075 baidu online network technology (beijing) co., ltd
+ d460e3 sercomm corporation.
+ d4612e huawei technologies co.,ltd
+ d46132 pro concept manufacturer co.,ltd.
+ d4619d apple, inc.
+ d461da apple, inc.
+ d461fe hangzhou h3c technologies co., limited
+ d462ea huawei technologies co.,ltd
+ d463c6 motorola mobility llc, a lenovo company
+ d463fe arcadyan corporation
d464f7 chengdu usee digital technology co., ltd
- d466a8 riedo networks gmbh
- d46761 sahab technology
- d467e7 fiberhome telecommunication tech.co.,ltd.
+ d466a8 riedo networks ltd
+ d46761 xontel technology co.
+ d467d3 guangdong oppo mobile telecommunications corp.,ltd
+ d467e7 fiberhome telecommunication technologies co.,ltd
+ d4684d ruckus wireless
d46867 neoventus design group
- d46a91 snap av
+ d468ba shenzhen sundray technologies company limited
+ d469a5 miura systems ltd.
+ d46a35 cisco systems, inc
+ d46a6a hon hai precision ind. co.,ltd.
+ d46a91 snapav
d46aa8 huawei technologies co.,ltd
+ d46ba6 huawei technologies co.,ltd
d46cbf goodrich isr
d46cda csm gmbh
- d46e5c huawei technologies co., ltd
+ d46d50 cisco systems, inc
+ d46d6d intel corporate
+ d46e0e tp-link technologies co.,ltd.
+ d46e5c huawei technologies co.,ltd
d46f42 waxess usa inc
+ d47208 bragi gmbh
+ d47226 zte corporation
+ d4741b beijing huada zhibao electronic system co.,ltd.
+ d476a0 fortinet, inc.
+ d476ea zte corporation
+ d4772b nanjing ztlink network technology co.,ltd
+ d47798 cisco systems, inc
+ d477b2 netix global b.v.
+ d47856 avaya inc
+ d4789b cisco systems, inc
d479c3 cameronet gmbh & co. kg
+ d47ae2 samsung electronics co.,ltd
+ d47b35 neo monitors as
d47b75 harting electronics gmbh
+ d47bb0 askey computer corp
+ d47c44 ieee registration authority
+ d47dfc tecno mobile limited
+ d47ee4 china mobile iot company limited
d481ca idevices, llc
+ d481d7 dell inc.
d4823e argosy technologies, ltd.
- d48564 hewlett-packard company
- d487d8 samsung electronics
+ d48304 shenzhen fast technologies co.,ltd
+ d48564 hewlett packard
+ d487d8 samsung electronics co.,ltd
+ d4883f hdpro co., ltd.
d48890 samsung electronics co.,ltd
- d48cb5 cisco systems, inc.
+ d48a39 samsung electronics co.,ltd
+ d48cb5 cisco systems, inc
+ d48dd9 meld technology, inc
+ d48f33 microsoft corporation
d48faa sogecam industrial, s.a.
+ d4909c apple, inc.
+ d490e0 topcon electronics gmbh & co. kg
+ d4910f amazon technologies inc.
d491af electroacustica general iberica, s.a.
+ d49234 nec corporation
+ d49398 nokia corporation
d493a0 fidelix oy
d4945a cosmo co., ltd
d494a1 texas instruments
+ d494e8 huawei technologies co.,ltd
d49524 clover network, inc.
d496df sungjin c&t co.,ltd
- d49a20 apple
- d49c28 jaybird gear llc
+ d4970b xiaomi communications co ltd
+ d49a20 apple, inc.
+ d49aa0 vnpt technology
+ d49b5c chongqing miedu technology co., ltd.
+ d49c28 jaybird llc
d49c8e university of fukui
+ d49cdd ampak technology,inc.
+ d49cf4 palo alto networks
+ d49dc0 samsung electronics co.,ltd
+ d49e05 zte corporation
+ d49e3b guangzhou shiyuan electronic technology company limited
d49e6d wuhan zhongyuan huadian science & technology co.,
- d4a02a cisco systems, inc.
+ d4a02a cisco systems, inc
+ d4a148 huawei technologies co.,ltd
+ d4a33d apple, inc.
d4a425 smax technology co., ltd.
d4a499 inview technology corporation
+ d4a651 tuya smart inc.
d4a928 greenwave reality inc
- d4aaff micro world
+ d4aaff micro world
+ d4ab82 arris group, inc.
+ d4abcd hui zhou gaoshengda technology co.,ltd
d4ac4e bodi rs, llc
- d4ad2d fiberhome telecommunication tech.co.,ltd.
- d4ae52 dell inc
+ d4ad2d fiberhome telecommunication technologies co.,ltd
+ d4ad71 cisco systems, inc
+ d4adbd cisco systems, inc
+ d4ae05 samsung electronics co.,ltd
+ d4ae52 dell inc.
+ d4aff7 arista networks
d4b110 huawei technologies co.,ltd
+ d4b169 le shi zhi xin electronic technology (tianjin) limited
+ d4b27a arris group, inc.
d4b43e messcomp datentechnik gmbh
- d4bed9 dell inc
+ d4b709 zte corporation
+ d4b761 sichuan ai-link technology co., ltd.
+ d4b8ff home control singapore pte ltd
+ d4b92f technicolor ch usa inc.
+ d4bbc8 vivo mobile communication co., ltd.
+ d4bbe6 huawei device co., ltd.
+ d4bd1e 5vt technologies,taiwan ltd.
+ d4bed9 dell inc.
d4bf2d se controls asia pacific ltd
d4bf7f upvel
+ d4c19e ruckus wireless
+ d4c1c8 zte corporation
d4c1fc nokia corporation
d4c766 acentic gmbh
+ d4c8b0 prime electronics & satellitics inc.
+ d4c93c cisco systems, inc
+ d4c94b motorola mobility llc, a lenovo company
+ d4c9b2 quanergy systems inc
d4c9ef hewlett packard
d4ca6d routerboard.com
d4ca6e u-blox ag
d4cbaf nokia corporation
d4ceb8 enatel ltd
- d4cff9 shenzhen sen5 technology co., ltd.
+ d4cf37 symbolic io
+ d4cff9 shenzhen sei robotics co.,ltd
d4d184 adb broadband italia
d4d249 power ethernet
+ d4d252 intel corporate
+ d4d2d6 fn-link technology limited
+ d4d2e5 bkav corporation
d4d50d southwest microwave, inc
- d4d748 cisco systems, inc.
+ d4d51b huawei technologies co.,ltd
+ d4d748 cisco systems, inc
+ d4d7a9 shanghai kaixiang info tech ltd
d4d898 korea cno tech co., ltd
d4d919 gopro
+ d4dacd bskyb ltd
+ d4dc09 mist systems, inc.
+ d4dccd apple, inc.
d4df57 alpinion medical systems
d4e08e valuehd corporation
d4e32c s. siedle & sohne
- d4e33f alcatel-lucent
- d4e8b2 samsung electronics
- d4ea0e avaya, inc
+ d4e33f nokia
+ d4e6b7 samsung electronics co.,ltd
+ d4e880 cisco systems, inc
+ d4e8b2 samsung electronics co.,ltd
+ d4e90b cvt co.,ltd
+ d4ea0e avaya inc
d4ec0c harley-davidson motor company
+ d4ec86 linkedhope intelligent technologies co., ltd
+ d4ecab vivo mobile communication co., ltd.
d4ee07 hiwifi co., ltd.
- d4f027 navetas energy management
+ d4f027 trust power ltd.
+ d4f057 nintendo co.,ltd
d4f0b4 napco security technologies
d4f143 iproad.,inc
+ d4f207 diaodiao(beijing)technology co.,ltd
+ d4f337 xunison ltd.
+ d4f46f apple, inc.
+ d4f4be palo alto networks
+ d4f513 texas instruments
+ d4f527 siemens ag
+ d4f547 google, inc.
+ d4f5ef hewlett packard enterprise
d4f63f iea s.r.l.
- d8004d apple
+ d4f756 zte corporation
+ d4f786 fiberhome telecommunication technologies co.,ltd
+ d4f829 sagemcom broadband sas
+ d4f9a1 huawei technologies co.,ltd
+ d4fc13 fiberhome telecommunication technologies co.,ltd
+ d8004d apple, inc.
+ d80093 aurender inc.
d8052e skyviia corporation
d806d1 honeywell fire system (shanghai) co,. ltd.
- d808f5 arcadia networks co. ltd.
+ d807b6 tp-link technologies co.,ltd.
+ d80831 samsung electronics co.,ltd
+ d808f5 arcadia networks co. ltd.
d809c3 cercacor labs
+ d809d6 zexelon co., ltd.
+ d80b9a samsung electronics co.,ltd
+ d80bcb telink semiconductor (shanghai) co., ltd.
+ d80ccf c.g.v. s.a.s.
+ d80d17 tp-link technologies co.,ltd.
d80de3 fxi technologies as
+ d80f99 hon hai precision ind. co.,ltd.
+ d8109f huawei technologies co.,ltd
+ d810cb andrea informatique
+ d81265 chongqing fugui electronics co.,ltd.
+ d81399 hui zhou gaoshengda technology co.,ltd
+ d814d6 sure system co ltd
+ d814df tcl king electrical appliances (huizhou) co., ltd
d8150d tp-link technologies co.,ltd.
d8160a nippon electro-sensory devices
+ d816c1 dewav (hk) electronics limited
d8182b conti temic microelectronic gmbh
+ d818d3 juniper networks
+ d8197a nuheara ltd
d819ce telesquare
d81bfe twinlinx corporation
d81c14 compacta international, ltd.
+ d81c79 apple, inc.
+ d81d72 apple, inc.
+ d81edd guangdong oppo mobile telecommunications corp.,ltd
d81ede b&w group ltd
- d824bd cisco systems, inc.
- d826b9 guangdong coagent electronics s &t co., ltd.
+ d81fcc brocade communications systems llc
+ d8209f cubro acronet gesmbh
+ d822f4 avnet silica
+ d82477 universal electric corporation
+ d824bd cisco systems, inc
+ d82522 arris group, inc.
+ d825b0 rockeetech systems co.,ltd.
+ d826b9 guangdong coagent electronics s&t co.,ltd.
d8270c maxtronic international co., ltd.
d828c9 general electric consumer and industrial
d82916 ascent communication technology
+ d82918 huawei technologies co.,ltd
d82986 best wish technology ltd
d82a15 leitner spa
d82a7e nokia corporation
d82d9b shenzhen g.credit communication technology co., ltd
d82de1 tricascade inc.
- d83062 apple
+ d82fe6 zhejiang tmall technology co., ltd.
+ d83062 apple, inc.
+ d83134 roku, inc
d831cf samsung electronics co.,ltd
+ d83214 tenda technology co.,ltd.dongguan branch
+ d8325a shenzhen youhua technology co., ltd
+ d832e3 xiaomi communications co ltd
d8337f office fa.com co.,ltd.
+ d834ee stem audio
+ d8373b shenzhen jingxun software telecommunication technology co.,ltd
+ d837be shenzhen gongjin electronics co.,lt
+ d8380d shenzhen ip-com network co.,ltd
+ d838fc ruckus wireless
+ d83af5 wideband labs llc
+ d83bbf intel corporate
+ d83c69 shenzhen tinno mobile technology corp.
d842ac shanghai feixun communication co.,ltd.
+ d842e2 canary connect, inc.
+ d843ed suzuken
+ d8445c dev tecnologia ind com man eq ltda
+ d8452b integrated device technology (malaysia) sdn. bhd.
d84606 silicon valley global marketing
+ d84710 sichuan changhong electric ltd.
+ d84732 tp-link technologies co.,ltd.
+ d847bb huawei device co., ltd.
+ d848ee hangzhou xueji technology co., ltd.
d8490b huawei technologies co.,ltd
d8492f canon inc.
+ d84a87 oi electric co.,ltd
d84b2a cognitas technologies, inc.
+ d84c90 apple, inc.
+ d84db9 wu qi technologies,inc.
+ d84f37 proxis, spol. s r.o.
+ d84fb8 lg electronics
d850e6 asustek computer inc.
d8543a texas instruments
- d857ef samsung electronics
+ d854a2 extreme networks, inc.
+ d85575 samsung electronics co.,ltd
+ d855a3 zte corporation
+ d857ef samsung electronics co.,ltd
d858d7 cz.nic, z.s.p.o.
+ d85982 huawei technologies co.,ltd
+ d85b2a samsung electronics co.,ltd
d85d4c tp-link technologies co.,ltd.
d85d84 cax soft gmbh
+ d85de2 hon hai precision ind. co.,ltd.
+ d85def busch-jaeger elektro gmbh
+ d85dfb private
+ d85ed3 giga-byte technology co.,ltd.
+ d85f77 telink semiconductor (shanghai) co., ltd.
+ d860b0 biomérieux italia s.p.a.
+ d860b3 guangdong global electronic technology co.,ltd
+ d86162 wistron neweb corporation
d86194 objetivos y sevicios de valor añadido
d862db eno inc.
+ d86375 xiaomi communications co ltd
d86595 toy's myth inc.
d866c6 shenzhen daystar technology co.,ltd
- d867d9 cisco systems, inc.
+ d866ee boxin communication co.,ltd.
+ d867d9 cisco systems, inc
+ d868c3 samsung electronics co.,ltd
d86960 steinsvik
d86bf7 nintendo co., ltd.
- d86ce9 sagemcom sas
+ d86c02 huaqin telecom technology co.,ltd
+ d86c63 google, inc.
+ d86ce9 sagemcom broadband sas
+ d8714d texas instruments
d87157 lenovo mobile communication technology ltd.
+ d87495 zte corporation
d87533 nokia corporation
d8760a escort, inc.
+ d8778b intelbras
+ d8787f ubee interactive co., limited
d878e5 kuhn sa
- d87988 hon hai precision ind. co., ltd.
+ d87988 hon hai precision ind. co.,ltd.
d87cdd sanix incorporated
+ d87d7f sagemcom broadband sas
+ d87e76 itel mobile limited
d87eb1 x.o.ware, inc.
+ d88039 microchip technology inc.
+ d8803c anhui huami information technology company limited
d881ce ahn inc.
+ d88466 extreme networks, inc.
+ d8860b ieee registration authority
+ d887d5 leadcore technology co.,ltd
+ d888ce rf technology pty ltd
d88a3b unit-em
+ d88adc huawei device co., ltd.
+ d88b4c kingting tech.
+ d88c79 google, inc.
+ d88d5c elentec
+ d88dc8 atil technology co., ltd
+ d88f76 apple, inc.
d890e8 samsung electronics co.,ltd
+ d8912a zyxel communications corporation
+ d89136 dover fueling solutions
+ d89341 general electric global research
+ d89403 hewlett packard enterprise
d8952f texas instruments
d89685 gopro
- d89695 apple
- d8973b emerson network power embedded power
+ d89695 apple, inc.
+ d896e0 alibaba cloud computing ltd.
+ d8973b artesyn embedded technologies
d89760 c2 development, inc.
d8977c grey innovation
+ d89790 commonwealth scientific and industrial research organisation
+ d897ba pegatron corporation
+ d89a34 beijing shenqi technology co., ltd.
+ d89ac1 nokia
+ d89b3b huawei technologies co.,ltd
+ d89c67 hon hai precision ind. co.,ltd.
d89d67 hewlett packard
d89db9 emegatech international corp.
- d89e3f apple
- d8a25e apple
+ d89e3f apple, inc.
+ d89e61 huawei device co., ltd.
+ d89ed4 fiberhome telecommunication technologies co.,ltd
+ d89ef3 dell inc.
+ d8a01d espressif inc.
+ d8a105 syslane, co., ltd.
+ d8a25e apple, inc.
+ d8a315 vivo mobile communication co., ltd.
+ d8a35c samsung electronics co.,ltd
+ d8a491 huawei device co., ltd.
+ d8a534 spectronix corporation
+ d8a6fd ghost locomotion
+ d8a756 sagemcom broadband sas
+ d8a8c8 zte corporation
+ d8a98b texas instruments
+ d8addd sonavation, inc.
d8ae90 itibia technologies
+ d8aed0 shanghai engineering science & technology co.,ltd cgnpc
d8af3b hangzhou bigbright integrated communications system co.,ltd
+ d8af81 zao npk rotek
d8aff1 panasonic appliances company
- d8b02e guangzhou zonerich business machine co., ltd
+ d8b02e guangzhou zonerich business machine co., ltd.
d8b04c jinan usr iot technology co., ltd.
- d8b12a panasonic mobile communications co., ltd.
+ d8b122 juniper networks
+ d8b12a panasonic mobile communications co.,ltd.
+ d8b190 cisco systems, inc
d8b377 htc corporation
+ d8b6b7 comtrend corporation
d8b6c1 networkaccountant, inc.
d8b6d6 blu tether limited
d8b8f6 nantworks
d8b90e triple domain vision co.,ltd.
+ d8bb2c apple, inc.
+ d8bbc1 micro-star intl co., ltd.
+ d8bc59 shenzhen dapu microelectronics co., ltd
d8bf4c victory concept electronics limited
+ d8bfc0 espressif inc.
d8c068 netgenetech.co.,ltd.
+ d8c06a hunantv.com interactive entertainment media co.,ltd.
+ d8c0a6 azurewave technology inc.
d8c3fb detracom
+ d8c46a murata manufacturing co., ltd.
+ d8c497 quanta computer inc.
+ d8c4e9 samsung electronics co.,ltd
+ d8c561 commfront communications pte ltd
+ d8c678 mitrastar technology corp.
d8c691 hichan technology corp.
- d8c7c8 aruba networks
+ d8c771 huawei technologies co.,ltd
+ d8c7c8 aruba, a hewlett packard enterprise company
+ d8c8e9 phicomm (shanghai) co., ltd.
d8c99d ea display limited
- d8cf9c apple
- d8d1cb apple
+ d8ca06 titan datacenters france
+ d8cb8a micro-star intl co., ltd.
+ d8cc98 huawei device co., ltd.
+ d8cd2c wuxi neihua network technology co., ltd
+ d8ce3a xiaomi communications co ltd
+ d8cf89 beijing dosee science and technology co., ltd.
+ d8cf9c apple, inc.
+ d8d090 dell inc.
+ d8d1cb apple, inc.
d8d27c jema energy, sa
- d8d385 hewlett-packard company
+ d8d385 hewlett packard
d8d43c sony corporation
+ d8d4e6 hytec inter co., ltd.
d8d5b9 rainforest automation, inc.
d8d67e gsk cnc equipment co.,ltd
+ d8d6f3 integrated device technology (malaysia) sdn. bhd.
+ d8d723 ids, inc
+ d8d775 sagemcom broadband sas
+ d8d866 shenzhen tozed technologies co.,ltd.
d8da52 apator s.a.
+ d8dc40 apple, inc.
d8dce9 kunshan erlab ductless filtration system co.,ltd
d8dd5f balmuda inc.
d8ddfd texas instruments
+ d8dece isung co.,ltd
d8df0d beronet gmbh
+ d8df7a quest software, inc.
+ d8e004 vodia networks inc
+ d8e0b8 bulat llc
+ d8e0e1 samsung electronics co.,ltd
d8e3ae cirtec medical systems
- d8e72b onpath technologies
+ d8e56d tct mobile ltd
+ d8e72b netscout systems inc
d8e743 wush, inc
d8e952 keopsys
+ d8eb46 google, inc.
d8eb97 trendnet, inc.
+ d8ec5e belkin international inc.
+ d8ece5 zyxel communications corporation
+ d8ed1c magna technology sl
d8ee78 moog protokraft
+ d8ef42 huawei device co., ltd.
+ d8efcd nokia solutions and networks gmbh & co. kg
d8f0f2 zeebo inc
+ d8f15b espressif inc.
+ d8f1f0 pepxim international limited
+ d8f2ca intel corporate
+ d8f3bc liteon technology corporation
+ d8f3db post ch ag
+ d8f710 libre wireless technologies inc.
+ d8f883 intel corporate
+ d8f8af daontec
+ d8fb11 axacore
+ d8fb5e askey computer corp
+ d8fb68 cloud corner ltd.
+ d8fc38 giantec semiconductor inc
d8fc93 intel corporate
d8fe8f idfone co., ltd.
d8fee3 d-link international
+ dc0077 tp-link technologies co.,ltd.
+ dc00b0 freebox sas
dc0265 meditech kft
dc028e zte corporation
dc052f national products inc.
dc0575 siemens energy automation
dc05ed nabtesco corporation
dc07c1 hangzhou qiyang technology co.,ltd.
+ dc080f apple, inc.
+ dc0856 alcatel-lucent enterprise
+ dc0914 talk-a-phone co.
+ dc094c huawei technologies co.,ltd
dc0b1a adb broadband italia
- dc0ea1 compal information (kunshan) co., ltd
+ dc0b34 lg electronics (mobile communications)
+ dc0c2d weifang goertek electronics co.,ltd
+ dc0c5c apple, inc.
+ dc0d30 shenzhen feasycom technology co., ltd.
+ dc0ea1 compal information (kunshan) co., ltd.
+ dc15c8 avm audiovisuelles marketing und computersysteme gmbh
+ dc15db ge ruili intelligent technology ( beijing ) co., ltd.
dc16a2 medtronic diabetes
+ dc16b2 huawei technologies co.,ltd
dc175a hitachi high-technologies corporation
dc1792 captivate network
+ dc1a01 ecoliv technology ( shenzhen ) ltd.
+ dc1ac5 vivo mobile communication co., ltd.
+ dc1ba1 intel corporate
dc1d9f u & b tech
dc1dd4 microstep-mis spol. s r.o.
dc1ea3 accensus llc
- dc2008 asd electronics ltd
+ dc2008 asd electronics ltd
+ dc21b9 sentec co.ltd
+ dc21e2 huawei technologies co.,ltd
+ dc2727 huawei device co., ltd.
+ dc2834 hakko corporation
+ dc2919 altobeam (xiamen) technology ltd, co.
+ dc293a shenzhen nuoshi technology co., ltd.
dc2a14 shanghai longjing technology co.
- dc2b61 apple
+ dc2aa1 medhab llc
+ dc2b2a apple, inc.
+ dc2b61 apple, inc.
dc2b66 infoblock s.a. de c.v.
dc2bca zera gmbh
dc2c26 iton technology limited
+ dc2d3c huawei device co., ltd.
+ dc2dcb beijing unis hengyue technology co., ltd.
dc2e6a hct. co., ltd.
+ dc2f03 step forward group co., ltd.
dc309c heyrex limited
+ dc31d1 vivo mobile communication co., ltd.
+ dc330d qing dao haier telecom co.,ltd.
+ dc333d huawei device co., ltd.
dc3350 techsat gmbh
+ dc35f1 positivo tecnologia s.a.
+ dc3714 apple, inc.
+ dc3752 ge
+ dc3757 integrated device technology (malaysia) sdn. bhd.
dc37d2 hunan hkt electronic technology co., ltd
- dc3a5e roku, inc
+ dc38e1 juniper networks
+ dc396f avm audiovisuelles marketing und computersysteme gmbh
+ dc3979 cisco systems, inc
+ dc3a5e roku, inc.
dc3c2e manufacturing system insights, inc.
dc3c84 ticom geomatics, inc.
+ dc3cf6 atomic rules llc
dc3e51 solberg & andersen as
dc3ef8 nokia corporation
+ dc415f apple, inc.
+ dc41a9 intel corporate
+ dc41e5 shenzhen zhixin data service co., ltd.
+ dc4427 ieee registration authority
+ dc446d allwinner technology co., ltd
+ dc44b6 samsung electronics co.,ltd
dc4517 arris group, inc.
+ dc48b2 baraja pty. ltd.
dc49c9 casco signal ltd
+ dc4a3e hewlett packard
+ dc4a9e ieee registration authority
+ dc4bdd shenzhen superelectron technology co.,ltd.
+ dc4bfe shenzhen belon technology co.,ltd
+ dc4d23 mrv comunications
dc4ede shinyei technology co., ltd.
+ dc4ef4 shenzhen mtn electronics co., ltd
+ dc4f22 espressif inc.
+ dc503a nanjing ticom tech co., ltd.
+ dc5285 apple, inc.
+ dc5360 intel corporate
+ dc537c compal broadband networks, inc.
+ dc543d itel mobile limited
+ dc54d7 amazon technologies inc.
+ dc5583 guangdong oppo mobile telecommunications corp.,ltd
+ dc56e6 shenzhen bococom technology co.,ltd
+ dc56e7 apple, inc.
dc5726 power-one
+ dc58bc thomas-krenn.ag
dc5e36 paterson technology
+ dc60a1 teledyne dalsa professional imaging
+ dc6373 obara korea
dc647c c.r.s. iimotion gmbh
+ dc64b8 shenzhen jinghanda electronics co.ltd
+ dc663a apacer technology inc.
+ dc6672 samsung electronics co.,ltd
+ dc6723 barox kommunikation gmbh
+ dc680c hewlett packard enterprise
+ dc68eb nintendo co.,ltd
+ dc6aea infinix mobility limited
+ dc6b12 worldcns inc.
+ dc6dcd guangdong oppo mobile telecommunications corp.,ltd
dc6f00 livescribe, inc.
dc6f08 bay storage technology
- dc7014
- dc7144 samsung electro mechanics
- dc7b94 cisco systems, inc.
+ dc7014 private
+ dc7137 zte corporation
+ dc7144 samsung electro mechanics co., ltd.
+ dc7196 intel corporate
+ dc7223 hui zhou gaoshengda technology co.,ltd
+ dc729b huawei technologies co.,ltd
+ dc7385 huawei device co., ltd.
+ dc74a8 samsung electronics co.,ltd
+ dc774c cisco systems, inc
+ dc7834 logicom sa
+ dc7b94 cisco systems, inc
+ dc7fa4 2wire inc
dc825b janus, spol. s r.o.
- dc85de azurewave technologies., inc.
- dc86d8 apple, inc
+ dc82f6 iport
+ dc85de azurewave technology inc.
+ dc86d8 apple, inc.
+ dc87cb beijing perfectek technologies co., ltd.
+ dc8983 samsung electronics co.,ltd
+ dc8b28 intel corporate
+ dc8c1b vivo mobile communication co., ltd.
+ dc8c37 cisco systems, inc
+ dc9020 ruru tek private limited
+ dc9088 huawei technologies co.,ltd
+ dc91bf amazon technologies inc.
+ dc962c nst audio ltd
+ dc9840 microsoft corporation
+ dc9914 huawei technologies co.,ltd
+ dc9a8e nanjing cocomm electronics co., ltd
dc9b1e intercom, inc.
- dc9b9c apple
+ dc9b9c apple, inc.
+ dc9bd6 tct mobile ltd
dc9c52 sapphire technology limited.
+ dc9c9f shenzhen youhua technology co., ltd
dc9fa4 nokia corporation
- dc9fdb ubiquiti networks, inc.
- dca5f4 cisco
+ dc9fdb ubiquiti networks inc.
+ dca120 nokia
+ dca266 hon hai precision ind. co.,ltd.
+ dca333 shenzhen youhua technology co., ltd
+ dca3a2 feng mi(beijing)technology co., ltd
+ dca3ac rbcloudtech
+ dca4ca apple, inc.
+ dca5f4 cisco systems, inc
+ dca632 raspberry pi trading ltd
dca6bd beijing lanbo technology co., ltd.
dca7d9 compressor controls corp
dca8cf new spin golf, llc.
+ dca904 apple, inc.
dca971 intel corporate
dca989 macandc
dcad9e greenpriz
dcae04 celoxica ltd
- dcb058 burkert werke gmbh
+ dcaeeb ruckus wireless
+ dcaf68 weifang goertek electronics co.,ltd
+ dcb058 bürkert werke gmbh
+ dcb082 nokia
+ dcb131 shenzhen huaruian technology co.,ltd
+ dcb3b4 honeywell environmental & combustion controls (tianjin) co., ltd.
+ dcb4ac flextronics manufacturing(zhuhai)co.,ltd.
dcb4c4 microsoft xcg
+ dcb72e xiaomi communications co ltd
+ dcb7fc alps electric (ireland) ltd
+ dcb808 extreme networks, inc.
+ dcbd7a guangzhou shiyuan electronic technology company limited
+ dcbe7a zhejiang nurotron biotechnology co.
dcbf90 huizhou qiaoxing telecommunication industry co.,ltd.
+ dcbfe9 motorola mobility llc, a lenovo company
dcc0db shenzhen kaiboer technology co., ltd.
+ dcc0eb assa abloy cÔte picarde
dcc101 solid technologies, inc.
dcc422 systembase limited
+ dcc622 buheung system
+ dcc64b huawei technologies co.,ltd
dcc793 nokia corporation
+ dcc8f5 shanghai umeinfo co.,ltd.
dccba8 explora technologies inc
+ dccc8d integrated device technology (malaysia) sdn. bhd.
+ dccd2f seiko epson corporation
+ dccd74 japan e.m.solutions co., ltd.
dcce41 fe global hong kong limited
dccebc shenzhen jsr technology co.,ltd.
+ dccec1 cisco systems, inc
dccf94 beijing rongcheng hutong technology co., ltd.
+ dccf96 samsung electronics co.,ltd
dcd0f7 bentek systems ltd.
+ dcd255 kinpo electronics, inc.
dcd2fc huawei technologies co.,ltd
- dcd321 humax co.,tld
+ dcd321 humax co., ltd.
+ dcd3a2 apple, inc.
+ dcd444 huawei device co., ltd.
dcd52a sunny heart limited
+ dcd7a0 huawei device co., ltd.
+ dcd87c beijing jingdong century trading co., ltd.
dcd87f shenzhen joincyber telecom equipment ltd
+ dcd916 huawei technologies co.,ltd
+ dcd9ae nokia shanghai bell co., ltd.
+ dcda4f getck technology, inc
+ dcda80 new h3c technologies co., ltd
+ dcdb70 tonfunk systementwicklung und service gmbh
+ dcdc07 trp systems bv
+ dcdce2 samsung electronics co.,ltd
+ dcdd24 energica motor company spa
+ dcde4f gionee communication equipment co ltd
dcdeca akyllor
+ dcdfd6 zte corporation
+ dce026 patrol tag, inc
+ dce0eb nanjing aozheng information technology co.ltd
+ dce1ad shenzhen wintop photoelectric technology co., ltd
dce2ac lumens digital optics inc.
+ dce305 zao npk rotek
+ dce533 ieee registration authority
dce578 experimental factory of scientific engineering and special design department
dce71c aug elektronik gmbh
+ dce838 ck telecom (shenzhen) limited
+ dce994 cloud network technology singapore pte. ltd.
+ dceb53 wuhan qianxiao elecronic technology co.,ltd
+ dceb69 technicolor ch usa inc.
+ dceb94 cisco systems, inc
+ dcec06 heimi network technology co., ltd.
+ dced84 haverford systems inc
+ dcee06 huawei technologies co.,ltd
+ dcef09 netgear
+ dcef80 huawei technologies co.,ltd
+ dcefca murata manufacturing co., ltd.
dcf05d letta teknoloji
+ dcf090 nubia technology co.,ltd.
+ dcf110 nokia corporation
+ dcf401 dell inc.
+ dcf505 azurewave technology inc.
+ dcf719 cisco systems, inc
dcf755 sitronik
+ dcf756 samsung electronics co.,ltd
dcf858 lorent networks, inc.
+ dcf8b9 zte corporation
dcfad5 strong ges.m.b.h.
- dcfb02 buffalo inc.
+ dcfb02 buffalo.inc
+ dcfb48 intel corporate
+ dcfe07 pegatron corporation
+ dcfe18 tp-link technologies co.,ltd.
+ e00084 huawei technologies co.,ltd
+ e002a5 abb robotics
+ e00370 shenzhen continental wireless technology co., ltd.
e005c5 tp-link technologies co.,ltd.
e006e6 hon hai precision ind. co.,ltd.
+ e0071b hewlett packard enterprise
+ e009bf shenzhen tong bo wei technology co.,ltd
e00b28 inovonics
e00c7f nintendo co., ltd.
+ e00ce5 huawei technologies co.,ltd
+ e00db9 cree, inc.
+ e00eda cisco systems, inc
+ e00ee1 we corporation inc.
+ e00ee4 dwnet technologies(suzhou) corporation
+ e0107f ruckus wireless
+ e01283 shenzhen fanzhuo communication technology co., lt
+ e013b5 vivo mobile communication co., ltd.
e0143e modoosis inc.
e01877 fujitsu limited
- e01c41 aerohive networks inc.
+ e0189f em microelectronic
+ e0191d huawei technologies co.,ltd
+ e01954 zte corporation
+ e01995 nutanix
+ e019d8 bh technologies
+ e01aea allied telesis, inc.
+ e01c41 extreme networks, inc.
e01cee bravo tech, inc.
- e01d3b cambridge industries(group) co.,ltd
+ e01cfc d-link international
+ e01d38 beijing huaqinworld technology co.,ltd
+ e01d3b cambridge industries(group) co.,ltd.
e01e07 anite telecoms us. inc
e01f0a xslent energy technologies. llc
+ e01f88 xiaomi communications co ltd
+ e01fed nokia shanghai bell co., ltd.
+ e02202 arris group, inc.
+ e023ff fortinet, inc.
e0247f huawei technologies co.,ltd
+ e02481 huawei technologies co.,ltd
e02538 titan pet products
e02630 intrigue technologies, inc.
e02636 nortel networks
e0271a ttc next-generation home network system wg
+ e02861 huawei technologies co.,ltd
+ e0286d avm audiovisuelles marketing und computersysteme gmbh
+ e02967 hmd global oy
e02a82 universal global scientific industrial co., ltd.
- e02f6d cisco
+ e02ae6 fiberhome telecommunication technologies co.,ltd
+ e02b96 apple, inc.
+ e02be9 intel corporate
+ e02cb2 lenovo mobile communication (wuhan) company limited
+ e02cf3 mrs electronic gmbh
+ e02e3f huawei device co., ltd.
+ e02f6d cisco systems, inc
e03005 alcatel-lucent shanghai bell co., ltd
+ e0319e valve corporation
e031d0 sz telstar co., ltd
+ e0338e apple, inc.
+ e034e4 feit electric company, inc.
+ e03560 challenger supply holdings, llc
+ e03676 huawei technologies co.,ltd
e036e3 stage one international co., ltd.
+ e03717 technicolor ch usa inc.
+ e037bf wistron neweb corporation
+ e0383f zte corporation
e039d7 plexxi, inc.
e03c5b shenzhen jiaxinjie electron co.,ltd
+ e03e44 broadcom
e03e4a cavanagh group international
e03e7d data-complex gmbh
e03f49 asustek computer inc.
+ e04007 huawei device co., ltd.
+ e04136 mitrastar technology corp.
+ e043db shenzhen viewat technology co.,ltd.
+ e0456d china mobile group device co.,ltd.
e0469a netgear
+ e046e5 gosuncn technology group co., ltd.
+ e048af premietech limited
+ e048d3 mobiwire mobiles (ningbo) co.,ltd
+ e049ed audeze llc
+ e04b45 hi-p electronics pte ltd
+ e04ba6 huawei technologies co.,ltd
+ e04f43 universal global scientific industrial co., ltd.
+ e04fbd sichuan tianyi comheart telecomco.,ltd
+ e0508b zhejiang dahua technology co., ltd.
+ e05124 nxp semiconductors
+ e05163 arcadyan corporation
+ e0553d cisco meraki
e05597 emergent vision technologies inc.
e056f4 axesnetwork solutions inc.
e0589e laerdal medical
+ e05a9f ieee registration authority
e05b70 innovid, co., ltd.
+ e05d5c oy everon ab
e05da6 detlef fink elektronik & softwareentwicklung
- e05fb9 cisco systems, inc.
+ e05f45 apple, inc.
+ e05fb9 cisco systems, inc
+ e06066 sercomm corporation.
+ e06089 cloudleaf, inc.
e061b2 hangzhou zenointel technology co., ltd
+ e06234 texas instruments
+ e06267 xiaomi communications co ltd
e06290 jinan jovision science & technology co., ltd.
- e063e5 sony mobile communications ab
+ e063da ubiquiti networks inc.
+ e063e5 sony mobile communications inc
e064bb digiview s.r.l.
- e067b3 c-data technology co., ltd
+ e06678 apple, inc.
+ e067b3 shenzhen c-data technology co., ltd
+ e0686d raybased ab
+ e0693a innophase inc.
e06995 pegatron corporation
- e0750a alps erectoric co.,ltd.
- e0757d motorola mobility llc
+ e06c4e shenzhen tinno mobile technology corp.
+ e06ca6 creotech instruments s.a.
+ e06d17 apple, inc.
+ e0735f nucom
+ e0750a alpsalpine co,.ltd
+ e0757d motorola mobility llc, a lenovo company
+ e076d0 ampak technology, inc.
+ e07726 huawei device co., ltd.
+ e078a3 shanghai winner information technology co.,inc
+ e0795e wuxi xiaohu technology co.,ltd.
+ e079c4 iray technology company limited
+ e07c13 zte corporation
e07c62 whistle labs, inc.
+ e07dea texas instruments
e07f53 techboard srl
e07f88 evidence network sia
e08177 greenbytes, inc.
+ e084f3 high grade controls corporation
+ e0859a shenzhen rf-link technology co.,ltd.
e087b1 nata-info ltd.
+ e0885d technicolor ch usa inc.
+ e0897e apple, inc.
+ e0899d cisco systems, inc
e08a7e exponent
+ e08e3c aztech electronics pte ltd
e08fec repotec co., ltd.
+ e0913c kyeungin cns co., ltd.
e09153 xavi technologies corp.
e091f5 netgear
+ e0925c apple, inc.
+ e092a7 feitian technologies co., ltd
e09467 intel corporate
e09579 orthosoft inc, d/b/a zimmer cas
+ e09796 huawei technologies co.,ltd
e097f2 atomax inc.
+ e09806 espressif inc.
+ e09861 motorola mobility llc, a lenovo company
+ e09971 samsung electronics co.,ltd
e09d31 intel corporate
e09db8 planex communications inc.
+ e09dfa wanan hongsheng electronic co.ltd
+ e09f2a iton technology corp.
e0a198 noja power switchgear pty ltd
e0a1d7 sfr
e0a30f pevco
+ e0a3ac huawei technologies co.,ltd
+ e0a509 bitmain technologies inc
e0a670 nokia corporation
- e0aab0 general vision electronics co. ltd.
+ e0a700 verkada inc
+ e0a8b8 le shi zhi xin electronic technology (tianjin) limited
+ e0aa96 samsung electronics co.,ltd
+ e0aab0 suntaili enterprise co. ltd,
+ e0aadb nanjing paneng technology development co.,ltd
e0abfe orb networks, inc.
- e0ae5e alps co,. ltd.
+ e0accb apple, inc.
+ e0acf1 cisco systems, inc
+ e0ae5e alpsalpine co,.ltd
e0aeb2 bender gmbh & co.kg
e0aeed loenk
e0af4b pluribus networks, inc.
+ e0af4f deutsche telekom ag
+ e0b260 teno network technologies company limited
e0b2f1 fn-link technology limited
- e0b7b1 pace plc
- e0b9a5 azurewave
- e0b9ba apple
+ e0b52d apple, inc.
+ e0b55f apple, inc.
+ e0b655 beijing xiaomi electronics co., ltd.
+ e0b6f5 ieee registration authority
+ e0b70a arris group, inc.
+ e0b7b1 arris group, inc.
+ e0b94d shenzhen bilian electronic co.,ltd
+ e0b9a5 azurewave technology inc.
+ e0b9ba apple, inc.
+ e0b9e5 technicolor
+ e0bab4 arrcus, inc
+ e0bb9e seiko epson corporation
e0bc43 c2 microsystems, inc.
+ e0be03 lite-on network communication (dongguan) limited
+ e0c0d1 ck telecom (shenzhen) limited
e0c286 aisai communication technology co., ltd.
e0c2b7 masimo corporation
+ e0c377 samsung electronics co.,ltd
e0c3f3 zte corporation
+ e0c63c sichuan tianyi comheart telecomco., ltd
e0c6b3 mildef ab
+ e0c767 apple, inc.
e0c79d texas instruments
e0c86a shenzhen tw-scie co., ltd
e0c922 jireh energy tech., ltd.
- e0c97a apple
+ e0c97a apple, inc.
e0ca4d shenzhen unistar communication co.,ltd
- e0ca94 askey computer
- e0cb1d
+ e0ca94 askey computer corp
+ e0cb1d private
e0cb4e asustek computer inc.
+ e0cbbc cisco meraki
+ e0cbee samsung electronics co.,ltd
+ e0cc7a huawei technologies co.,ltd
+ e0ccf8 xiaomi communications co ltd
+ e0cdfd beijing e3control technology co, ltd
e0cec3 askey computer corp
e0cf2d gemintek corporation
+ e0d083 samsung electronics co.,ltd
e0d10a katoudenkikougyousyo co ltd
+ e0d173 cisco systems, inc
e0d1e6 aliph dba jawbone
e0d31a eques technology co., limited
+ e0d462 huawei device co., ltd.
+ e0d464 intel corporate
+ e0d4e8 intel corporate
+ e0d55e giga-byte technology co.,ltd.
e0d7ba texas instruments
+ e0d848 dell inc.
e0d9a2 hippih aps
+ e0d9e3 eltex enterprise ltd.
+ e0da90 huawei technologies co.,ltd
e0dadc jvc kenwood corporation
- e0db55 dell inc
+ e0db10 samsung electronics co.,ltd
+ e0db55 dell inc.
e0db88 open standard digital-if interface for satcom systems
- e0dca0 siemens electrical apparatus ltd., suzhou chengdu branch
+ e0dbd1 technicolor ch usa inc.
+ e0dca0 siemens industrial automation products ltd chengdu
+ e0dcff xiaomi communications co ltd
+ e0ddc0 vivo mobile communication co., ltd.
+ e0e0c2 china mobile group device co.,ltd.
+ e0e0fc huawei device co., ltd.
+ e0e1a9 shenzhen four seas global link network technology co., ltd.
+ e0e2e6 espressif inc.
+ e0e37c huawei device co., ltd.
+ e0e5cf texas instruments
+ e0e62e tct mobile ltd
e0e631 snb technologies limited
+ e0e656 nethesis srl
e0e751 nintendo co., ltd.
+ e0e7bb nureva, inc.
+ e0e8bb unicom vsens telecommunications co., ltd.
+ e0e8e6 shenzhen c-data technology co., ltd.
e0e8e8 olive telecommunication pvt. ltd
+ e0eb40 apple, inc.
+ e0eb62 shanghai hulu devices co., ltd
e0ed1a vastriver technology co., ltd
e0edc7 shenzhen friendcom technology development co., ltd
e0ee1b panasonic automotive systems company of america
e0ef25 lintes technology co., ltd.
e0f211 digitalwatt
e0f379 vaddio
- e0f5c6 apple
+ e0f442 huawei device co., ltd.
+ e0f5c6 apple, inc.
e0f5ca cheng uei precision industry co.,ltd.
- e0f847 apple
+ e0f6b5 nintendo co.,ltd
+ e0f847 apple, inc.
e0f9be cloudena corp.
e0faec platan sp. z o.o. sp. k.
+ e0fff7 softiron inc.
+ e4029b intel corporate
e40439 tomtom software ltd
+ e405f8 bytedance
+ e40eee huawei technologies co.,ltd
e4115b hewlett packard
+ e41218 shenzhen rapoo technology co., ltd.
e4121d samsung electronics co.,ltd
e41289 topsystem systemhaus gmbh
+ e415f6 texas instruments
+ e417d8 8bitdo technology hk limited
+ e4186b zyxel communications corporation
+ e419c1 huawei technologies co.,ltd
+ e41a2c zpe systems, inc.
e41c4b v2 technology, inc.
+ e41d2d mellanox technologies, inc.
+ e41e0a ieee registration authority
e41f13 ibm corp
- e425e7 apple
+ e41f7b cisco systems, inc
+ e41fe9 dunkermotoren gmbh
+ e422a5 plantronics, inc.
+ e42354 shenzhen fuzhi software technology co.,ltd
+ e4246c zhejiang dahua technology co., ltd.
+ e425e7 apple, inc.
e425e9 color-chip
+ e42686 dwnet technologies(suzhou) corporation
+ e4268b huawei device co., ltd.
+ e42761 honor device co., ltd.
e42771 smartlabs
+ e428a4 prama india private limited
e42ad3 magneti marelli s.p.a. powertrain
+ e42b34 apple, inc.
e42c56 lilee systems, ltd.
- e42d02 tct mobile limited
- e42f26 fiberhome telecommunication tech.co.,ltd.
+ e42d02 tct mobile ltd
+ e42d7b china mobile iot company limited
+ e42f26 fiberhome telecommunication technologies co.,ltd
+ e42f56 optomet gmbh
e42ff6 unicore communication inc.
+ e43022 hanwha techwin security vietnam
e432cb samsung electronics co.,ltd
+ e433ae guangdong oppo mobile telecommunications corp.,ltd
+ e43493 huawei technologies co.,ltd
e43593 hangzhou goto technology co.ltd
+ e435c8 huawei technologies co.,ltd
e435fb sabre technology (hull) ltd
e437d7 henri depaepe s.a.s.
+ e4388c digital products limited
e438f2 advantage controls
+ e43a65 mofinetwork inc
+ e43a6e shenzhen zeroone technology co.,ltd
+ e43c80 university of oklahoma
+ e43d1a broadcom limited
+ e43ec6 huawei technologies co.,ltd
+ e43ed7 arcadyan corporation
e43fa2 wuxi dsp technologies inc.
e440e2 samsung electronics co.,ltd
+ e44122 oneplus technology (shenzhen) co., ltd
+ e44164 nokia
e441e6 ottec technology gmbh
+ e442a6 intel corporate
+ e4434b dell inc.
e446bd c&c technic taiwan co., ltd.
+ e446da xiaomi communications co ltd
+ e44790 guangdong oppo mobile telecommunications corp.,ltd
+ e44791 iris id systems, inc.
+ e447b3 zte corporation
e448c7 cisco spvtg
e44c6c shenzhen guo wei electronic co,. ltd.
+ e44cc7 ieee registration authority
e44e18 gardasoft visionlimited
+ e44e2d cisco systems, inc
+ e44e76 championtech enterprise (shenzhen) inc
e44f29 ma lighting technology gmbh
e44f5f eds elektronik destek san.tic.ltd.sti
+ e4509a hw communications ltd
+ e450eb apple, inc.
+ e454e8 dell inc.
+ e455a8 cisco meraki
e455ea dedicated computing
e45614 suttle apparatus
+ e45740 arris group, inc.
e457a8 stuart manufacturing, inc.
+ e458b8 samsung electronics co.,ltd
+ e458e7 samsung electronics co.,ltd
+ e45aa2 vivo mobile communication co., ltd.
+ e45ad4 eltex enterprise ltd.
+ e45d37 juniper networks
+ e45d51 sfr
+ e45d52 avaya inc
+ e45d75 samsung electronics co.,ltd
+ e45e1b google, inc.
+ e45e37 intel corporate
+ e45f01 raspberry pi trading ltd
+ e46059 pingtek co., ltd.
+ e46251 hao cheng group limited
e46449 arris group, inc.
+ e4671e shen zhen nuo xin cheng technology co., ltd.
e467ba danish interpretation systems a/s
e468a3 huawei technologies co.,ltd
+ e4695a dictum health, inc.
e46c21 messma gmbh
+ e46f13 d-link international
+ e470b8 intel corporate
e47185 securifi ltd
+ e472e2 huawei technologies co.,ltd
e4751e getinge sterilization ab
+ e475dc arcadyan corporation
+ e47684 apple, inc.
e47723 zte corporation
+ e47727 huawei technologies co.,ltd
e4776b aartesys ag
- e477d4 minrray industry co.,ltd
- e47cf9 samsung electronics co., ltd
+ e477d4 minrray industry co.,ltd
+ e47b3f beijing co-cloud technology ltd.
+ e47c65 sunstar communication technology co., ltd
+ e47cf9 samsung electronics co.,ltd
e47d5a beijing hanbang technology corp.
- e48184 alcatel-lucent
+ e47dbd samsung electronics co.,ltd
+ e47deb shanghai notion information technology co.,ltd.
+ e47e66 huawei technologies co.,ltd
+ e47e9a zte corporation
+ e47fb2 fujitsu limited
+ e48184 nokia
e481b3 shenzhen act industrial co.,ltd.
+ e482cc jumptronic gmbh
+ e48326 huawei technologies co.,ltd
e48399 arris group, inc.
+ e4842b hangzhou softel optic co., ltd
+ e48501 geberit international ag
e48ad5 rf window co., ltd.
- e48b7f apple
+ e48b7f apple, inc.
+ e48c0f discovery insure
+ e48d8c routerboard.com
+ e48f1d huawei device co., ltd.
+ e48f34 vodafone italia s.p.a.
+ e48f65 yelatma instrument making enterprise, jsc
e49069 rockwell automation
+ e4907e motorola mobility llc, a lenovo company
+ e490fd apple, inc.
+ e4922a dbg holdings limited
e492e7 gridlink tech. co.,ltd.
e492fb samsung electronics co.,ltd
+ e4956e ieee registration authority
e496ae altographics inc.
e497f0 shanghai vlc technologies ltd. co.
- e498d6 apple, inc
+ e498bb phyplus microelectronics limited
+ e498d1 microsoft mobile oy
+ e498d6 apple, inc.
+ e49a79 apple, inc.
+ e49adc apple, inc.
+ e49e12 freebox sas
+ e49f1e arris group, inc.
+ e4a1e6 alcatel-lucent shanghai bell co., ltd
+ e4a32f shanghai artimen technology co., ltd.
+ e4a387 control solutions llc
+ e4a471 intel corporate
e4a5ef tron link electronics co., ltd.
+ e4a749 palo alto networks
+ e4a7a0 intel corporate
+ e4a7c5 huawei technologies co.,ltd
e4a7fd cellco partnership
+ e4a8b6 huawei technologies co.,ltd
+ e4a8df compal information (kunshan) co., ltd.
+ e4aa5d cisco systems, inc
+ e4aaea liteon technology corporation
+ e4aaec tianjin hualai technology co., ltd
e4ab46 uab selteka
+ e4ab89 mitrastar technology corp.
e4ad7d scl elements
e4afa1 hes-so
+ e4b005 beijing iqiyi science & technology co., ltd.
e4b021 samsung electronics co.,ltd
+ e4b2fb apple, inc.
+ e4b318 intel corporate
+ e4b97a dell inc.
+ e4bad9 360 fly inc.
+ e4bd4b zte corporation
+ e4beed netcore technology inc.
+ e4bffa technicolor ch usa inc.
+ e4c0cc china mobile group device co.,ltd.
e4c146 objetivos y servicios de valor a
+ e4c1f1 shenzhen spotmau information technoligy co., ltd
+ e4c2d1 huawei technologies co.,ltd
+ e4c32a tp-link technologies co.,ltd.
+ e4c483 guangdong oppo mobile telecommunications corp.,ltd
+ e4c62b airware
e4c63d apple, inc.
e4c6e6 mophie, llc
- e4c722 cisco
+ e4c722 cisco systems, inc
+ e4c801 blu products inc
e4c806 ceiec electric technology inc.
- e4ce8f apple
+ e4c90b radwin
+ e4ca12 zte corporation
+ e4cb59 beijing loveair science and technology co. ltd.
+ e4cc9d integrated device technology (malaysia) sdn. bhd.
+ e4ce02 wyrestorm technologies ltd
+ e4ce70 health & life co., ltd.
+ e4ce8f apple, inc.
+ e4d124 mojo networks, inc.
e4d332 tp-link technologies co.,ltd.
- e4d3f1 cisco
+ e4d373 huawei technologies co.,ltd
+ e4d3aa fujitsu connected technologies limited
+ e4d3f1 cisco systems, inc
e4d53d hon hai precision ind. co.,ltd.
e4d71d oraya therapeutics
+ e4db6d beijing xiaomi electronics co., ltd.
+ e4dc43 huawei device co., ltd.
e4dd79 en-vision america, inc.
- e4e0c5 samsung electronics co., ltd
+ e4e0a6 apple, inc.
+ e4e0c5 samsung electronics co.,ltd
+ e4e112 texas instruments
+ e4e130 tct mobile ltd
e4e409 leifheit ag
+ e4e4ab apple, inc.
+ e4e749 hewlett packard
+ e4ea83 shenzhen gongjin electronics co.,lt
e4ec10 nokia corporation
e4eefd mr&d manufacturing
+ e4f004 dell inc.
+ e4f042 google, inc.
+ e4f14c private
+ e4f1d4 vivo mobile communication co., ltd.
+ e4f327 atol llc
e4f365 time-o-matic, inc.
+ e4f3c4 samsung electronics co.,ltd
e4f3e3 shanghai icomhome co.,ltd.
+ e4f3e8 shenzhen superelectron technology co.,ltd.
+ e4f3f5 shenzhen mercury communication technologies co.,ltd.
+ e4f4c6 netgear
+ e4f75b arris group, inc.
e4f7a1 datafox gmbh
+ e4f89c intel corporate
+ e4f8ef samsung electronics co.,ltd
+ e4f939 minxon hotel technology inc.
e4fa1d pad peripheral advanced design inc.
+ e4faed samsung electronics co.,ltd
+ e4fafd intel corporate
+ e4fb5d huawei technologies co.,ltd
+ e4fb8f mobiwire mobiles (ningbo) co.,ltd
+ e4fc82 juniper networks
+ e4fd45 intel corporate
+ e4fda1 huawei technologies co.,ltd
+ e4fed9 edmi europe ltd
e4ffdd electron india
- e8039a samsung electronics co., ltd
- e8040b apple
- e80410
- e80462 cisco systems, inc.
+ e80036 befs co,. ltd
+ e8018d fiberhome telecommunication technologies co.,ltd
+ e8039a samsung electronics co.,ltd
+ e8040b apple, inc.
+ e80410 private
+ e80462 cisco systems, inc
e804f3 throughtek co., ltd.
e8056d nortel networks
- e80688 apple
- e8088b huawei technologies co., ltd
+ e80688 apple, inc.
+ e80734 champion optical network engineering, llc
+ e807bf shenzhen boomtech industry co.,ltd
+ e8088b huawei technologies co.,ltd
+ e80945 integrated device technology (malaysia) sdn. bhd.
+ e80959 guoguang electric co.,ltd
+ e80aec jiangsu hengtong optic-electric co., ltd
e80b13 akib systems taiwan, inc
e80c38 daeyoung information system co., ltd
e80c75 syncbak, inc.
+ e80fc8 universal electronics, inc.
e8102e really simple software, inc
- e81132 samsung electronics co., ltd
+ e81132 samsung electronics co.,ltd
+ e811ca shandong kaer electric.co.,ltd
e81324 guangzhou bonsoninfo system co.,ltd
- e817fc nifty corporation
+ e81363 comstock rd, inc.
+ e81367 airsound inc.
+ e8136e huawei technologies co.,ltd
+ e8150e nokia corporation
+ e8162b ideo security co., ltd.
+ e817fc fujitsu cloud technologies limited
+ e81863 ieee registration authority
+ e81a58 technologic systems
+ e81aac orfeo soundworks inc.
+ e81b4b amnimo inc.
+ e81b69 sercomm corporation.
+ e81cba fortinet, inc.
+ e81cd8 apple, inc.
+ e81da8 ruckus wireless
+ e81e92 huawei device co., ltd.
+ e820e2 humax co., ltd.
+ e82689 aruba, a hewlett packard enterprise company
+ e826b6 inside biometrics international limited
e82877 tmy co., ltd.
+ e828c1 eltex enterprise ltd.
e828d5 cots technology
+ e82a44 liteon technology corporation
e82aea intel corporate
+ e82c6d smartrg, inc.
+ e82e0c netint technologies inc.
e82e24 out of the fog research llc
+ e8330d xaptec gmbh
+ e83381 arris group, inc.
+ e8343e beijing infosec technologies co., ltd.
+ e83617 apple, inc.
+ e8361d sense labs, inc.
+ e8377a zyxel communications corporation
e83935 hewlett packard
- e839df askey computer
- e83a97 ocz technology group
+ e839df askey computer corp
+ e83a12 samsung electronics co.,ltd
+ e83a97 toshiba corporation
e83eb6 rim
e83efb geodesic ltd.
e83efc arris group, inc.
- e84040 cisco systems, inc.
+ e83f67 huawei device co., ltd.
+ e84040 cisco systems, inc
e840f2 pegatron corporation
e843b6 qnap systems, inc.
+ e8447e bitdefender srl
e8481f advanced automotive antennas
+ e848b8 tp-link corporation limited
+ e84943 yuge information technology co. ltd
+ e84c56 intercept services limited
+ e84d74 huawei technologies co.,ltd
+ e84dd0 huawei technologies co.,ltd
e84e06 edup international (hk) co., ltd
e84e84 samsung electronics co.,ltd
e84ece nintendo co., ltd.
+ e84f25 murata manufacturing co., ltd.
+ e84f4b shenzhen delos electronic co., ltd
+ e8508b samsung electro-mechanics(thailand)
e8516e tsmart inc.
e8519d yeonhab precision co.,ltd
e85484 neo information systems co., ltd.
+ e855b4 sai technology inc.
+ e85659 advanced-connectek inc.
e856d6 nctech ltd
+ e85a8b xiaomi communications co ltd
e85aa7 llc emzior
+ e85ad1 fiberhome telecommunication technologies co.,ltd
e85b5b lg electronics inc
+ e85bb7 ample systems inc.
e85bf0 imaging diagnostics
+ e85d6b luminate wireless
+ e85d86 chang yow technologies international co.,ltd.
e85e53 infratec datentechnik gmbh
e8611f dawning information industry co.,ltd
e8617e liteon technology corporation
e86183 black diamond advanced technology, llc
+ e861be melec inc.
+ e86549 cisco systems, inc
+ e865d4 tenda technology co.,ltd.dongguan branch
+ e866c4 diamanti
+ e86819 huawei technologies co.,ltd
+ e868e7 espressif inc.
+ e86a64 lcfc(hefei) electronics technology co., ltd
+ e86cc7 ieee registration authority
e86cda supercomputers and neurocomputers research center
e86d52 arris group, inc.
e86d54 digit mobile inc
- e86d6e control & display systems ltd t/a cdsrail
+ e86d65 audio mobil elektronik gmbh
+ e86d6e voestalpine signaling fareham ltd.
+ e86dcb samsung electronics co.,ltd
+ e86de9 huawei technologies co.,ltd
+ e86f38 chongqing fugui electronics co.,ltd.
+ e86ff2 actiontec electronics, inc
e8718d elsys equipamentos eletronicos ltda
+ e874c7 sentinhealth
+ e874e6 adb broadband italia
e8757f firs technologies(shenzhen) co., ltd
e878a1 beoview intercom doo
e87af3 s5 tech s.r.l.
+ e87f6b samsung electronics co.,ltd
+ e87f95 apple, inc.
+ e8802e apple, inc.
e880d8 gntek electronics co.,ltd.
+ e88152 apple, inc.
+ e8825b arris group, inc.
+ e884a5 intel corporate
+ e884c6 huawei technologies co.,ltd
+ e8854b apple, inc.
+ e887a3 loxley public company limited
+ e8886c shenzhen sc technologies co.,ltd
e8892c arris group, inc.
- e88d28 apple
+ e88d28 apple, inc.
e88df5 znyx networks, inc.
+ e88e60 nsd corporation
+ e8910f fiberhome telecommunication technologies co.,ltd
+ e89120 motorola mobility llc, a lenovo company
e89218 arcontia international ab
- e892a4 lg electronics
+ e892a4 lg electronics (mobile communications)
+ e89309 samsung electronics co.,ltd
+ e89363 nokia
e8944c cogent healthcare systems ltd
e894f6 tp-link technologies co.,ltd.
+ e89606 testo instruments (shenzhen) co., ltd.
+ e8986d palo alto networks
+ e898c2 zetlab company
e8995a piigab, processinformation i goteborg ab
e899c4 htc corporation
e89a8f quanta computer inc.
e89aff fujian landi commercial equipment co.,ltd
e89d87 toshiba
+ e89e0c max8usa distributors inc.
+ e89eb4 hon hai precision ind. co.,ltd.
+ e89f39 nokia
+ e89f80 belkin international inc.
+ e89fec chengdu kt electronic hi-tech co.,ltd
+ e8a0cd nintendo co.,ltd
+ e8a1f8 zte corporation
+ e8a245 juniper networks
e8a364 signal path international / peachtree audio
- e8a4c1 deep sea electronics plc
+ e8a4c1 deep sea electronics ltd
+ e8a660 huawei technologies co.,ltd
+ e8a788 xiamen leelen technology co., ltd
+ e8a7f2 straffic
+ e8abf3 huawei technologies co.,ltd
e8abfa shenzhen reecam tech.ltd.
+ e8acad zte corporation
+ e8ada6 sagemcom broadband sas
e8b1fc intel corporate
+ e8b2ac apple, inc.
+ e8b2fe humax co., ltd.
+ e8b470 ieee registration authority
e8b4ae shenzhen c&d electronics co.,ltd
- e8b748 cisco systems, inc.
- e8ba70 cisco systems, inc.
+ e8b4c8 samsung electronics co.,ltd
+ e8b541 zte corporation
+ e8b6c2 juniper networks
+ e8b748 cisco systems, inc
+ e8ba70 cisco systems, inc
e8bb3d sino prime-tech limited
- e8bba8 guangdong oppo mobile telecommunications corp.,ltd.
- e8be81 sagemcom
+ e8bba8 guangdong oppo mobile telecommunications corp.,ltd
+ e8bdd1 huawei technologies co.,ltd
+ e8be81 sagemcom broadband sas
+ e8c1b8 nanjing bangzhong electronic commerce limited
+ e8c1d7 philips
e8c229 h-displays (msc) bhd
- e8c320 austco communication systems pty ltd
+ e8c2dd infinix mobility limited
+ e8c320 austco marketing & service (usa) ltd.
+ e8c417 fiberhome telecommunication technologies co.,ltd
+ e8c57a ufispace co., ltd.
+ e8c74f liteon technology corporation
e8cba1 nokia corporation
+ e8cc18 d-link international
e8cc32 micronet ltd
- e8cd2d huawei technologies co., ltd
+ e8cd2d huawei technologies co.,ltd
e8ce06 skyhawke technologies, llc.
+ e8d03c shenzhen jingxun software telecommunication technology co.,ltd
+ e8d099 fiberhome telecommunication technologies co.,ltd
+ e8d0b9 taicang t&w electronics
e8d0fa mks instruments deutschland gmbh
+ e8d0fc liteon technology corporation
+ e8d11b askey computer corp
+ e8d2ff sagemcom broadband sas
e8d483 ultimate europe transportation equipment gmbh
e8d4e0 beijing benywave technology co., ltd.
+ e8d765 huawei technologies co.,ltd
+ e8d819 azurewave technology inc.
+ e8d8d1 hp inc.
+ e8da20 nintendo co.,ltd
e8da96 zhuhai tianrui electrical power tech. co., ltd.
e8daaa videohome technology corp.
+ e8db84 espressif inc.
+ e8de00 chongqing guanfang technology co.,ltd
e8de27 tp-link technologies co.,ltd.
+ e8de8e integrated device technology (malaysia) sdn. bhd.
+ e8ded6 intrising networks, inc.
+ e8defb mesotic sas
+ e8df70 avm audiovisuelles marketing und computersysteme gmbh
e8dff2 prf co., ltd.
e8e08f gravotech marking sas
e8e0b7 toshiba
+ e8e1e1 gemtek technology co., ltd.
e8e1e2 energotest
e8e5d6 samsung electronics co.,ltd
- e8e732 alcatel-lucent
+ e8e732 alcatel-lucent enterprise
e8e770 warp9 tech design, inc.
e8e776 shenzhen kootion technology co., ltd
e8e875 is5 communications inc.
+ e8e8b7 murata manufacturing co., ltd.
+ e8e98e solar controls s.r.o.
+ e8ea4d huawei technologies co.,ltd
e8ea6a startech.com
- e8eada denkovi assembly electroncs ltd
- e8edf3 cisco
- e8f1b0 sagemcom sas
+ e8eada denkovi assembly electronics ltd
+ e8eb11 texas instruments
+ e8eb1b microchip technology inc.
+ e8eb34 cisco systems, inc
+ e8eca3 dongguan liesheng electronic co.ltd
+ e8ed05 arris group, inc.
+ e8edf3 cisco systems, inc
+ e8ef89 opmex tech.
+ e8f1b0 sagemcom broadband sas
e8f226 millson custom solutions inc.
+ e8f2e2 lg innotek
+ e8f2e3 starcor beijing co.,limited
+ e8f408 intel corporate
+ e8f654 huawei technologies co.,ltd
+ e8f724 hewlett packard enterprise
e8f928 rftech srl
+ e8faf7 guangdong uniteddata holding group co., ltd.
+ e8fbe9 apple, inc.
e8fc60 elcom innovations private limited
+ e8fcaf netgear
+ e8fd35 huawei device co., ltd.
+ e8fd72 shanghai linguo technology co., ltd.
+ e8fd90 turbostor
+ e8fde8 cela link corporation
+ ec0133 trinus systems inc.
+ ec01e2 foxconn interconnect technology
+ ec01ee guangdong oppo mobile telecommunications corp.,ltd
+ ec0273 aruba, a hewlett packard enterprise company
+ ec0441 shenzhen tigo semiconductor co., ltd.
+ ec086b tp-link technologies co.,ltd.
+ ec0bae hangzhou broadlink technology co.,ltd
+ ec0d9a mellanox technologies, inc.
+ ec0de4 amazon technologies inc.
+ ec0ec4 hon hai precision ind. co.,ltd.
ec0ed6 itech instruments sas
+ ec107b samsung electronics co.,ltd
ec1120 flodesign wind turbine corporation
+ ec1127 texas instruments
+ ec13b2 netonix
+ ec13db juniper networks
ec14f6 biocontrol as
- ec172f tp-link technologies co., ltd.
+ ec153d beijing yaxunhongda technology co., ltd.
+ ec172f tp-link technologies co.,ltd.
ec1766 research centre module
ec1a59 belkin international inc.
+ ec1bbd silicon laboratories
+ ec1d7f zte corporation
+ ec1d8b cisco systems, inc
+ ec1f72 samsung electro-mechanics(thailand)
ec219f vidabox llc
+ ec21e5 toshiba
ec2257 jiangsu nanjing university electronic information technology co.,ltd
- ec233d huawei technologies co., ltd
+ ec2280 d-link international
+ ec233d huawei technologies co.,ltd
ec2368 intellivoice co.,ltd.
+ ec237b zte corporation
+ ec24b8 texas instruments
+ ec2651 apple, inc.
+ ec26ca tp-link technologies co.,ltd.
+ ec26fb tecc co.,ltd.
ec2af0 ypsomed ag
ec2c49 university of tokyo
+ ec2ce2 apple, inc.
ec2e4e hitachi-lg data storage inc
- ec3091 cisco systems, inc.
- ec3586 apple
+ ec2e98 azurewave technology inc.
+ ec3091 cisco systems, inc
+ ec316d hansgrohe
+ ec3586 apple, inc.
+ ec363f markov corporation
+ ec3873 juniper networks
+ ec388f huawei technologies co.,ltd
ec3bf0 novelsat
+ ec3c5a shen zhen heng sheng hui digital technology co.,ltd
+ ec3c88 mcnex co.,ltd.
+ ec3cbb huawei device co., ltd.
+ ec3dfd shenzhen bilian electronic co.,ltd
ec3e09 performance designed products, llc
+ ec3eb3 zyxel communications corporation
+ ec3ef7 juniper networks
ec3f05 institute 706, the second academy china aerospace science & industry corp
+ ec4118 xiaomi electronics,co.,ltd
+ ec42b4 adc corporation
ec42f0 adl embedded solutions, inc.
+ ec438b yaptv
ec43e6 awcer ltd.
ec43f6 zyxel communications corporation
- ec4476 cisco systems, inc.
+ ec4476 cisco systems, inc
ec4644 ttk sas
ec4670 meinberg funkuhren gmbh & co. kg
ec473c redwire, llc
- ec4993 qihan technology co., ltd
+ ec4993 qihan technology co., ltd
ec4c4d zao npk rotek
+ ec4d3e beijing xiaomi mobile software co., ltd
+ ec4d47 huawei technologies co.,ltd
+ ec4f82 calix inc.
+ ec51bc guangdong oppo mobile telecommunications corp.,ltd
+ ec52dc world media and technology corp.
ec542e shanghai ximei electronic technology co. ltd
ec55f9 hon hai precision ind. co.,ltd.
+ ec5623 huawei technologies co.,ltd
+ ec570d afe inc.
+ ec58ea ruckus wireless
+ ec59e7 microsoft corporation
+ ec5a86 yulong computer telecommunication scientific (shenzhen) co.,ltd
+ ec5b73 advanced & wise technology corp.
+ ec5c68 chongqing fugui electronics co.,ltd.
ec5c69 mitsubishi heavy industries mechatronics systems,ltd.
+ ec5f23 qinghai kimascend electronics technology co. ltd.
+ ec60e0 avi-on labs
ec6264 global411 internet services, llc
+ ec63d7 intel corporate
ec63e5 epboard design llc
+ ec63ed hyundai autoever corp.
+ ec6488 honor device co., ltd.
+ ec64e7 mocacare corporation
+ ec65cc panasonic automotive systems company of america
ec66d1 b&w group ltd
+ ec6881 palo alto networks
+ ec6c9a arcadyan corporation
ec6c9f chengdu volans technology co.,ltd
+ ec6cb5 zte corporation
+ ec6f0b fadu, inc.
+ ec7097 arris group, inc.
ec71db shenzhen baichuan digital technology co., ltd.
+ ec74ba hirschmann automation and control gmbh
+ ec753e huawei technologies co.,ltd
+ ec75ed citrix systems, inc.
+ ec7949 fujitsu limited
+ ec79f2 startel
ec7c74 justone technologies co., ltd.
- ec7d9d mei
+ ec7cb6 samsung electronics co.,ltd
+ ec7d11 vivo mobile communication co., ltd.
+ ec7d9d cpi
+ ec7e91 itel mobile limited
+ ec7fc6 eccel corporation sas
+ ec8009 novasparks
+ ec8193 logitech, inc
+ ec8263 zte corporation
+ ec8350 microsoft corporation
ec836c rm tech co., ltd.
- ec852f apple
- ec888f tp-link technologies co., ltd.
+ ec83d5 gird systems inc
+ ec84b4 cig shanghai co ltd
+ ec852f apple, inc.
+ ec888f tp-link technologies co.,ltd.
+ ec8892 motorola mobility llc, a lenovo company
+ ec8914 huawei technologies co.,ltd
ec89f5 lenovo mobile communication technology ltd.
+ ec8a4c zte corporation
+ ec8ac7 fiberhome telecommunication technologies co.,ltd
+ ec8c9a huawei technologies co.,ltd
+ ec8ca2 ruckus wireless
ec8ead dlx
+ ec8eae nagravision sa
+ ec8eb5 hewlett packard
ec9233 eddyfi ndt inc
ec9327 memmert gmbh + co. kg
+ ec9365 mapper.ai, inc.
+ ec93ed ddos-guard ltd
ec9681 2276427 ontario inc
+ ec97b2 sumec machinery & electric co.,ltd.
ec986c lufft mess- und regeltechnik gmbh
ec98c1 beijing risbo network technology co.,ltd
ec9a74 hewlett packard
ec9b5b nokia corporation
- ec9ecd emerson network power and embedded computing
+ ec9b8b hewlett packard enterprise
+ ec9bf3 samsung electro-mechanics(thailand)
+ ec9c32 sichuan ai-link technology co., ltd.
+ ec9ecd artesyn embedded technologies
+ ec9f0d ieee registration authority
+ eca1d1 huawei technologies co.,ltd
eca29b kemppi oy
- eca86b elitegroup computer systems co., ltd.
+ eca5de onyx wifi inc
+ eca86b elitegroup computer systems co.,ltd.
+ eca940 arris group, inc.
+ eca9fa guangdong genius technology co., ltd.
+ ecaa25 samsung electronics co.,ltd
+ ecaaa0 pegatron corporation
+ ecadb8 apple, inc.
+ ecade0 d-link international
+ ecaf97 git
+ ecb0e1 ciena corporation
ecb106 acuro networks, inc
+ ecb1d7 hewlett packard
+ ecb313 shenzhen gongjin electronics co.,lt
+ ecb4e8 wistron mexico sa de cv
ecb541 shinano e and e co.ltd.
+ ecb5fa philips lighting bv
+ ecb870 beijing heweinet technology co.,ltd.
+ ecb907 cloudgenix inc
+ ecb970 ruijie networks co.,ltd
+ ecbafe giroptic
ecbbae digivoice tecnologia em eletronica ltda
ecbd09 fusion electronics ltd
+ ecbd1d cisco systems, inc
+ ecbe5f vestel elektronik san ve tic. a.Ş.
+ ecbedd sagemcom broadband sas
+ ecc01b huawei technologies co.,ltd
+ ecc06a powerchord group limited
+ ecc302 humax co., ltd.
ecc38a accuenergy (canada) inc
- ecc882 cisco systems, inc.
+ ecc40d nintendo co.,ltd
+ ecc57f suzhou pairlink network technology
+ ecc5d2 huawei device co., ltd.
+ ecc882 cisco systems, inc
+ ecc89c hangzhou hikvision digital technology co.,ltd.
+ eccb30 huawei technologies co.,ltd
eccd6d allied telesis, inc.
+ ecce13 cisco systems, inc
+ ecced7 apple, inc.
ecd00e miraerecognition co., ltd.
ecd040 gea farm technologies gmbh
+ ecd09f xiaomi communications co ltd
ecd19a zhuhai liming industries co., ltd
+ ecd68a shenzhen jmicron intelligent technology developmen
ecd925 rami
ecd950 irt sa
+ ecd9d1 shenzhen tg-net botone technology co.,ltd.
+ ecdb86 api-k
ecde3d lamprey networks, inc.
- ece09b samsung electronics co., ltd
- ece1a9 cisco
+ ecdf3a vivo mobile communication co., ltd.
+ ece09b samsung electronics co.,ltd
+ ece154 beijing unisound information technology co.,ltd.
+ ece1a9 cisco systems, inc
+ ece2fd skg electric group(thailand) co., ltd.
ece512 tado gmbh
ece555 hirschmann automation
ece744 omntec mfg. inc
@@ -18631,412 +28419,1109 @@ exit
ece915 sti ltd
ece9f8 guang zhou tri-sun electronics technology co., ltd
ecea03 darfon lighting corp
+ ecebb8 hewlett packard enterprise
+ eceed8 ztlx network technology co.,ltd
ecf00e abocom
+ ecf0fe zte corporation
+ ecf22b tecno mobile limited
ecf236 neomontana electronics
+ ecf342 guangdong oppo mobile telecommunications corp.,ltd
ecf35b nokia corporation
- ecf4bb dell inc
+ ecf451 arcadyan corporation
+ ecf4bb dell inc.
+ ecf6bd sncf mobilitÉs
ecf72b hd digital tech co., ltd.
+ ecf8eb sichuan tianyi comheart telecomco., ltd
+ ecfa03 fca
+ ecfa5c beijing xiaomi electronics co., ltd.
ecfaaa the ims company
+ ecfabc espressif inc.
+ ecfaf4 senra tech pvt. ltd
ecfc55 a. eberle gmbh & co. kg
ecfe7e blueradios, inc.
f0007f janz - contadores de energia, sa
+ f0016e tianyi telecom terminals company limited
f0022b chrontel
f00248 smartebuilding
+ f0038c azurewave technology inc.
f00786 shandong bittel electronics co., ltd
+ f008d1 espressif inc.
f008f1 samsung electronics co.,ltd
+ f00d5c jinqianmao technology co.,ltd.
+ f00df5 acoma medical industry co,. ltd.
+ f00e1d megafone limited
+ f00ebf zettahash inc.
+ f00fec huawei technologies co.,ltd
+ f01090 new h3c technologies co., ltd
+ f010ab china mobile (hangzhou) information technology co., ltd.
+ f013c1 hannto technology co., ltd
f013c3 shenzhen fenda technology co., ltd
f015a0 kyungdong one co., ltd.
- f01c13 lg electronics
- f01faf dell inc
+ f015b9 playfusion limited
+ f01628 technicolor (china) technology co., ltd.
+ f0182b lg chem
+ f01898 apple, inc.
+ f01b6c vivo mobile communication co., ltd.
+ f01c13 lg electronics (mobile communications)
+ f01c2d juniper networks
+ f01d2d cisco systems, inc
+ f01dbc microsoft corporation
+ f01e34 orico technologies co., ltd
+ f01faf dell inc.
f0219d cal-comp electronics & communications company ltd.
+ f021e0 eero inc.
+ f0224e esan electronic co.
f02329 showa denki co.,ltd.
+ f023ae ampak technology,inc.
+ f023b9 ieee registration authority
f02405 opus high technology corporation
f02408 talaris (sweden) ab
- f02572 cisco systems, inc.
- f025b7 samsung electro mechanics co., ltd.
- f0264c dr. sigrist ag
- f02765 murata manufactuaring co.,ltd.
- f02929 cisco
+ f02475 apple, inc.
+ f02572 cisco systems, inc
+ f0258e huawei technologies co.,ltd
+ f025b7 samsung electro-mechanics(thailand)
+ f02624 wafa technologies co., ltd.
+ f0264c sigrist-photometer ag
+ f0272d amazon technologies inc.
+ f02745 f-secure corporation
+ f02765 murata manufacturing co., ltd.
+ f02929 cisco systems, inc
+ f02a23 creative next design
f02a61 waldo networks, inc.
+ f02e51 casa systems
+ f02f4b apple, inc.
+ f02f74 asustek computer inc.
+ f02fa7 huawei technologies co.,ltd
f02fd8 bi2-vision
f0321a mita-teknik a/s
+ f033e5 huawei technologies co.,ltd
+ f03404 tct mobile ltd
f037a1 huike electronics (shenzhen) co., ltd.
+ f03965 samsung electronics co.,ltd
f03a4b bloombase, inc.
f03a55 omega elektronik as
+ f03d03 tecno mobile limited
+ f03d29 actility
+ f03e90 ruckus wireless
+ f03ebf gogoro taiwan limited
+ f03f95 huawei technologies co.,ltd
f03ff8 r l drake
+ f0407b fiberhome telecommunication technologies co.,ltd
+ f041c6 heat tech company, ltd.
+ f041c8 ieee registration authority
+ f0421c intel corporate
+ f042f5 huawei device co., ltd.
f04335 dvn(shanghai)ltd.
+ f04347 huawei technologies co.,ltd
+ f045da texas instruments
+ f0463b comcast cable corporation
+ f04a02 cisco systems, inc
f04a2b pyramid computer gmbh
+ f04b3a juniper networks
f04b6a scientific production association siberian arsenal, ltd.
f04bf2 jtech communications, inc.
+ f04cd5 maxlinear, inc
f04da2 dell inc.
- f04f7c
+ f04f7c amazon technologies inc.
+ f05136 tct mobile ltd
+ f051ea fitbit, inc.
+ f05494 honeywell connected building
+ f05501 huawei device co., ltd.
f05849 careview communications
f05a09 samsung electronics co.,ltd
+ f05b7b samsung electronics co.,ltd
+ f05c19 aruba, a hewlett packard enterprise company
+ f05c77 google, inc.
+ f05cd5 apple, inc.
f05d89 dycon limited
f05dc8 duracell powermat
f05f5a getriebebau nord gmbh and co. kg
f06130 advantage pharmacy services, llc
f0620d shenzhen egreat tech corp.,ltd
+ f0625a realme chongqing mobile telecommunications corp.,ltd.
f06281 procurve networking by hp
+ f063f9 huawei technologies co.,ltd
+ f06426 extreme networks, inc.
+ f065c2 yanfeng visteon electronics technology (shanghai) co.,ltd.
f065dd primax electronics ltd.
+ f06728 guangdong oppo mobile telecommunications corp.,ltd
f06853 integrated corporation
+ f06865 taicang t&w electronics
f06bca samsung electronics co.,ltd
+ f06d78 guangdong oppo mobile telecommunications corp.,ltd
+ f06e0b microsoft corporation
+ f06e32 microtel innovation s.r.l.
+ f06f46 ubiik
f0728c samsung electronics co.,ltd
+ f072ea google, inc.
f073ae peak-system technik
+ f07485 ngd systems, inc.
+ f074e4 thundercomm technology co., ltd
+ f0761c compal information (kunshan) co., ltd.
+ f0766f apple, inc.
f07765 sourcefire, inc
+ f077c3 intel corporate
f077d0 xcellen
+ f07807 apple, inc.
+ f07816 cisco systems, inc
+ f07959 asustek computer inc.
+ f07960 apple, inc.
+ f079e8 guangdong oppo mobile telecommunications corp.,ltd
f07bcb hon hai precision ind. co.,ltd.
+ f07cc7 juniper networks
f07d68 d-link corporation
+ f07f06 cisco systems, inc
f07f0c leopold kostal gmbh &co. kg
+ f08173 amazon technologies inc.
+ f08175 sagemcom broadband sas
f081af irz automation technologies ltd
- f08261 sagemcom
+ f08261 sagemcom broadband sas
f0842f adb broadband italia
f084c9 zte corporation
+ f085c1 shenzhen rf-link technology co.,ltd.
+ f08620 arcadyan corporation
f08a28 jiangsu hengsion electronic s and t co.,ltd
+ f08a76 samsung electronics co.,ltd
f08bfe costel.,co.ltd
- f08cfb fiberhome telecommunication tech.co.,ltd.
+ f08cfb fiberhome telecommunication technologies co.,ltd
f08edb velocloud networks
f0921c hewlett packard
+ f092b4 sichuan tianyi comheart telecomco., ltd
f0933a nxtconect
f093c5 garland technology
+ f095f1 carl zeiss ag
+ f097e5 tamio, inc
+ f09838 huawei technologies co.,ltd
+ f0989d apple, inc.
+ f09919 garmin international
+ f099b6 apple, inc.
+ f099bf apple, inc.
+ f09a51 shanghai viroyal electronic technology company limited
+ f09bb8 huawei technologies co.,ltd
f09cbb raonthink inc.
- f09ce9 aerohive networks inc
- f0a225
+ f09cd7 guangzhou blue cheetah intelligent technology co., ltd.
+ f09ce9 extreme networks, inc.
+ f09e4a intel corporate
+ f09e63 cisco systems, inc
+ f09fc2 ubiquiti networks inc.
+ f09ffc sharp corporation
+ f0a225 amazon technologies inc.
+ f0a35a apple, inc.
+ f0a3b2 hui zhou gaoshengda technology co.,ltd
f0a764 gst co., ltd.
+ f0a7b2 futaba corporation
+ f0a968 antailiye technology co.,ltd
+ f0aa0b arra networks/ spectramesh
+ f0ab54 mitsumi electric co.,ltd.
f0aca4 hbc-radiomatic
+ f0acd7 ieee registration authority
f0ad4e globalscale technologies, inc.
f0ae51 xi3 corp
- f0b479 apple
+ f0af50 phantom intelligence
+ f0af85 arris group, inc.
+ f0b014 avm audiovisuelles marketing und computersysteme gmbh
+ f0b022 toho electronics inc.
+ f0b052 ruckus wireless
+ f0b0e7 apple, inc.
+ f0b107 ericsson ab
+ f0b11d nokia
+ f0b2e5 cisco systems, inc
+ f0b31e universal electronics, inc.
+ f0b3ec apple, inc.
+ f0b429 xiaomi communications co ltd
+ f0b479 apple, inc.
+ f0b4d2 d-link international
+ f0b5b7 disruptive technologies research as
+ f0b5d1 texas instruments
f0b6eb poslab technology co., ltd.
+ f0b968 itel mobile limited
f0bcc8 maxid (pty) ltd
+ f0bcc9 pfu limited
+ f0bd2e h+s polatis ltd
f0bdf1 sipod inc.
f0bf97 sony corporation
f0c1f1 apple, inc.
f0c24c zhejiang feiyue digital technology co., ltd
f0c27c mianyang netop telecom equipment co.,ltd.
+ f0c371 apple, inc.
+ f0c42f huawei device co., ltd.
+ f0c77f texas instruments
+ f0c850 huawei technologies co.,ltd
f0c88c leddartech inc.
- f0cba1 apple
+ f0c9d1 gd midea air-conditioning equipment co.,ltd.
+ f0cba1 apple, inc.
+ f0d08c tct mobile ltd
f0d14f linear llc
- f0d1a9 apple
+ f0d1a9 apple, inc.
+ f0d1b8 ledvance
+ f0d2f1 amazon technologies inc.
f0d3a7 cobaltray co., ltd
f0d3e7 sensometrix sa
+ f0d4e2 dell inc.
+ f0d4f6 lars thrane a/s
+ f0d4f7 varram system
+ f0d5bf intel corporate
+ f0d657 echosens
f0d767 axema passagekontroll ab
+ f0d7aa motorola mobility llc, a lenovo company
+ f0d7af ieee registration authority
+ f0d7dc wesine (wuhan) technology co., ltd.
+ f0d9b2 exo s.a.
f0da7c rlh industries,inc.
f0db30 yottabyte
- f0dbf8 apple
- f0dce2 apple
+ f0dbe2 apple, inc.
+ f0dbf8 apple, inc.
+ f0dce2 apple, inc.
f0de71 shanghai edo technologies co.,ltd.
f0deb9 shanghai y&y electronics co., ltd
- f0def1 wistron infocomm (kunshan)co
+ f0def1 wistron infocomm (zhongshan) corporation
+ f0e3dc tecon mt, llc
+ f0e4a2 huawei technologies co.,ltd
f0e5c3 drägerwerk ag & co. kg aa
f0e77e samsung electronics co.,ltd
f0ebd0 shanghai feixun communication co.,ltd.
f0ec39 essec
f0ed1e bilkon bilgisayar kontrollu cih. im.ltd.
+ f0ee10 samsung electronics co.,ltd
+ f0ee58 pace telematics gmbh
f0eebb vipar gmbh
+ f0ef86 google, inc.
+ f0efd2 tf payment service co., ltd
f0f002 hon hai precision ind. co.,ltd.
+ f0f08f nextek solutions pte ltd
+ f0f0a4 amazon technologies inc.
+ f0f249 hitron technologies. inc
f0f260 mobitec ab
+ f0f336 tp-link technologies co.,ltd.
+ f0f564 samsung electronics co.,ltd
f0f5ae adaptrum inc.
- f0f61c apple
+ f0f61c apple, inc.
f0f644 whitesky science & technology co.,ltd.
f0f669 motion analysis corporation
- f0f755 cisco systems, inc.
+ f0f6c1 sonos, inc.
+ f0f755 cisco systems, inc
f0f7b3 phorm
+ f0f7e7 huawei technologies co.,ltd
f0f842 keebox, inc.
+ f0f8f2 texas instruments
f0f9f7 ies gmbh & co. kg
- f0fda0 acurix networks lp
+ f0fac7 huawei device co., ltd.
+ f0fcc8 arris group, inc.
+ f0fda0 acurix networks pty ltd
+ f0fe6b shanghai high-flying electronics technology co., ltd
+ f0fee7 huawei device co., ltd.
+ f40223 pax computer technology(shenzhen) ltd.
+ f40228 samsung electro-mechanics(thailand)
+ f40270 dell inc.
+ f40304 google, inc.
f40321 benext b.v.
+ f4032a amazon technologies inc.
+ f4032f reduxio systems
+ f40343 hewlett packard enterprise
f4044c valencetech limited
+ f40616 apple, inc.
+ f40669 intel corporate
f4068d devolo ag
- f40b93 research in motion
+ f406a5 hangzhou bianfeng networking technology co., ltd.
+ f409d8 samsung electro-mechanics(thailand)
+ f40a4a indusnet communication technology co.,ltd
+ f40b93 blackberry rts
+ f40b9f cig shanghai co ltd
+ f40e01 apple, inc.
+ f40e11 ieee registration authority
+ f40e22 samsung electronics co.,ltd
+ f40e83 arris group, inc.
+ f40f1b cisco systems, inc
+ f40f24 apple, inc.
f40f9b wavelink
+ f41535 spon communication technology co.,ltd
+ f41563 f5 networks, inc.
f415fd shanghai pateo electronic equipment manufacturing co., ltd.
- f41ba1 apple
+ f417b8 airties wireless networks
+ f419e2 volterra
+ f41ba1 apple, inc.
+ f41c95 beijing yunyi times technology co,.ltd
+ f41d6b huawei technologies co.,ltd
f41e26 simon-kaloi engineering
+ f41e5e rtbrick inc.
f41f0b yamabishi corporation
- f41fc2 cisco
+ f41f88 zte corporation
+ f41fc2 cisco systems, inc
f42012 cuciniale gmbh
+ f42833 mmpc inc.
+ f42853 zioncom electronics (shenzhen) ltd.
f42896 specto paineis eletronicos ltda
+ f42981 vivo mobile communication co., ltd.
+ f42a7d tp-link technologies co.,ltd.
+ f42b48 ubiqam
+ f42c56 senor tech co ltd
+ f42e7f aruba, a hewlett packard enterprise company
+ f4308b xiaomi communications co ltd
+ f430b9 hewlett packard
+ f431c3 apple, inc.
+ f4323d sichuan tianyi kanghe communications co., ltd
+ f43328 cimcon lighting inc.
+ f434f0 apple, inc.
f436e1 abilis systems sarl
- f437b7 apple
+ f437b7 apple, inc.
f43814 shanghai howell electronic co.,ltd
+ f43909 hewlett packard
f43d80 fag industrial services gmbh
- f43e61 shenzhen gongjin electronics co., ltd
+ f43e61 shenzhen gongjin electronics co.,lt
+ f43e66 bee computing (hk) limited
f43e9d benu networks, inc.
+ f44156 arrikto inc.
+ f4419e huawei device co., ltd.
f44227 s & s research inc.
+ f4428f samsung electronics co.,ltd
f44450 bnd co., ltd.
+ f44588 huawei technologies co.,ltd
f445ed portable innovation technology ltd.
+ f44713 leading public performance co., ltd.
f4472a nanjing rousing sci. and tech. industrial co., ltd
f44848 amscreen group ltd
+ f44955 mimo tech co., ltd.
+ f449ef emstone
+ f44b2a cisco spvtg
+ f44c70 skyworth digital technology(shenzhen) co.,ltd
+ f44c7f huawei technologies co.,ltd
+ f44d17 goldcard high-tech co.,ltd.
+ f44d30 elitegroup computer systems co.,ltd.
+ f44e05 cisco systems, inc
+ f44ee3 intel corporate
f44efd actions semiconductor co.,ltd.(cayman islands)
+ f44fd3 shenzhen hemuwei technology co.,ltd
f450eb telechips inc
f45214 mellanox technologies, inc.
+ f45420 tellescom industria e comercio em telecomunicacao
f45433 rockwell automation
f45595 hengbao corporation ltd.
- f4559c huawei technologies co., ltd
+ f4559c huawei technologies co.,ltd
f455e0 niceway cnc technology co.,ltd.hunan province
+ f4573e fiberhome telecommunication technologies co.,ltd
f45842 boxx tv ltd
+ f45b73 wanjiaan interconnected technology co., ltd
+ f45c89 apple, inc.
+ f45eab texas instruments
f45f69 matsufu electronics distribution company
f45fd4 cisco spvtg
f45ff7 dq technology inc.
f4600d panoptic technology, inc
+ f460e2 xiaomi communications co ltd
+ f462d0 not for radio, llc
+ f4631f huawei technologies co.,ltd
f46349 diffon corporation
+ f4645d toshiba
+ f465a6 apple, inc.
+ f4672d shenzhen topstar technology company
+ f46942 askey computer corp
+ f469d5 ieee registration authority
+ f46a92 shenzhen fast technologies co.,ltd
f46abc adonit corp. ltd.
+ f46ad7 microsoft corporation
+ f46b8c hon hai precision ind. co., ltd.
+ f46bef sagemcom broadband sas
f46d04 asustek computer inc.
f46de2 zte corporation
+ f46e24 nec personal computers, ltd.
+ f46e95 extreme networks, inc.
+ f46f4e echowell
+ f46fa4 physik instrumente gmbh & co. kg
+ f46fed fiberhome telecommunication technologies co.,ltd
+ f470ab vivo mobile communication co., ltd.
+ f47190 samsung electronics co.,ltd
+ f47335 logitech far east
f473ca conversion sound inc.
- f47626 viltechmeda uab
+ f47488 new h3c technologies co., ltd
+ f47626 viltechmeda uab
+ f47960 huawei technologies co.,ltd
f47a4e woojeon&handan
f47acc solidfire, inc.
- f47b5e samsung eletronics co., ltd
- f47f35 cisco systems, inc.
+ f47b5e samsung electronics co.,ltd
+ f47def samsung electronics co.,ltd
+ f47f35 cisco systems, inc
f48139 canon inc.
+ f483cd tp-link technologies co.,ltd.
+ f483e1 shanghai clouder semiconductor co.,ltd
+ f4844c texas instruments
+ f485c6 fdt technologies
f48771 infoblox
+ f487c5 huawei device co., ltd.
+ f48b32 xiaomi communications co ltd
+ f48c50 intel corporate
+ f48ceb d-link international
f48e09 nokia corporation
+ f48e38 dell inc.
+ f48e92 huawei technologies co.,ltd
f490ca tensorcom
+ f490cb ieee registration authority
f490ea deciso b.v.
+ f4911e zhuhai ewpe information technology inc
+ f492bf ubiquiti networks inc.
+ f4939f hon hai precision ind. co., ltd.
f49461 nexgen storage
f49466 countmax, ltd
+ f4951b hefei radio communication technology co., ltd
+ f49634 intel corporate
+ f49651 nakayo inc
+ f497c2 nebulon inc
f499ac weber schraubautomaten gmbh
- f49f54 samsung electronics
+ f49c12 structab ab
+ f49eef taicang t&w electronics
+ f49f54 samsung electronics co.,ltd
+ f49ff3 huawei technologies co.,ltd
f4a294 eagle world development co., limited
+ f4a4d6 huawei technologies co.,ltd
f4a52a hawa technologies inc
- f4acc1 cisco systems, inc.
+ f4a59d huawei device co., ltd.
+ f4a739 juniper networks
+ f4a80d wistron infocomm(kunshan)co.,ltd.
+ f4a997 canon inc.
+ f4acc1 cisco systems, inc
+ f4afe7 apple, inc.
f4b164 lightning telecommunications technology co. ltd
+ f4b1c2 zhejiang dahua technology co., ltd.
+ f4b301 intel corporate
f4b381 windowmaster a/s
+ f4b520 biostar microtech international corp.
f4b52f juniper networks
- f4b549 yeastar technology co., ltd.
+ f4b549 xiamen yeastar information technology co., ltd.
+ f4b5aa zte corporation
+ f4b5bb ceragon networks
+ f4b688 plantronics, inc.
f4b6e5 terrasem co.,ltd
f4b72a time interconnect ltd
+ f4b78d huawei technologies co.,ltd
+ f4b7b3 vivo mobile communication co., ltd.
f4b7e2 hon hai precision ind. co.,ltd.
+ f4b85e texas instruments
+ f4b8a7 zte corporation
+ f4bc97 shenzhen crave communication co., ltd
+ f4bcda shenzhen jingxun software telecommunication technology co.,ltd
f4bd7c chengdu jinshi communication co., ltd
+ f4bd9e cisco systems, inc
+ f4beec apple, inc.
+ f4bf80 huawei technologies co.,ltd
+ f4bfa8 juniper networks
+ f4c114 technicolor ch usa inc.
+ f4c248 samsung electronics co.,ltd
+ f4c447 coagent international enterprise limited
+ f4c4d6 shenzhen xinfa electronic co.,ltd
+ f4c613 alcatel-lucent shanghai bell co., ltd
f4c6d7 blackned gmbh
- f4c714 shenzhen huawei communication technologies co., ltd
- f4c795 wey elektronik ag
- f4cae5 freebox sa
+ f4c714 huawei technologies co.,ltd
+ f4c795 wey technology ag
+ f4c7aa marvell semiconductors
+ f4c7c8 kelvin inc.
+ f4ca24 freebit co., ltd.
+ f4cae5 freebox sas
+ f4cb52 huawei technologies co.,ltd
+ f4cc55 juniper networks
f4cd90 vispiron rotec gmbh
- f4ce46 hewlett-packard company
- f4cfe2 cisco
- f4d9fb samsung electronics co., ltd
+ f4ce36 nordic semiconductor asa
+ f4ce46 hewlett packard
+ f4cfa2 espressif inc.
+ f4cfe2 cisco systems, inc
+ f4d032 yunnan ideal information&technology.,ltd
+ f4d108 intel corporate
+ f4d261 semocon co., ltd
+ f4d488 apple, inc.
+ f4d620 guangdong oppo mobile telecommunications corp.,ltd
+ f4d7b2 lgs innovations, llc
+ f4d9c6 unionman technology co.,ltd
+ f4d9fb samsung electronics co.,ltd
+ f4dbe3 apple, inc.
+ f4dbe6 cisco systems, inc
+ f4dc41 youngzone culture (shanghai) corp
f4dc4d beijing ccd digital technology co., ltd
+ f4dca5 dawon dns
f4dcda zhuhai jiahe communication technology co., limited
- f4dcf9 huawei technologies co., ltd
+ f4dcf9 huawei technologies co.,ltd
+ f4dd9e gopro
+ f4de0c espod ltd.
+ f4deaf huawei technologies co.,ltd
+ f4e11e texas instruments
f4e142 delta elektronika bv
+ f4e204 traqueur
+ f4e3fb huawei technologies co.,ltd
+ f4e4ad zte corporation
+ f4e578 llc proizvodstvennaya kompania transservice
+ f4e5f2 huawei technologies co.,ltd
f4e6d7 solar power technologies, inc.
- f4ea67 cisco systems, inc.
- f4ec38 tp-link technologies co., ltd.
- f4f15a apple
+ f4e926 tianjin zanpu technology inc.
+ f4e9d4 qlogic corporation
+ f4ea67 cisco systems, inc
+ f4eab5 extreme networks, inc.
+ f4eb38 sagemcom broadband sas
+ f4eb9f ellu company 2019 sl
+ f4ec38 tp-link technologies co.,ltd.
+ f4ed5f shenzhen ktc technology group
+ f4ee14 mercury communication technologies co.,ltd.
+ f4ef9e sgsg science & technology co. ltd
+ f4f15a apple, inc.
+ f4f197 emtake inc
+ f4f1e1 motorola mobility llc, a lenovo company
+ f4f26d tp-link technologies co.,ltd.
+ f4f3aa jbl gmbh & co. kg
+ f4f524 motorola mobility llc, a lenovo company
f4f5a5 nokia corporation
- f4f951 apple
+ f4f5d8 google, inc.
+ f4f5db xiaomi communications co ltd
+ f4f5e8 google, inc.
+ f4f646 dediprog technology co. ltd.
+ f4f951 apple, inc.
+ f4fbb8 huawei technologies co.,ltd
f4fc32 texas instruments
- f80113 huawei technologies co., ltd
+ f4fcb1 jj corp
+ f4fd2b zoyi company
+ f4fefb samsung electronics co.,ltd
+ f80113 huawei technologies co.,ltd
+ f80278 ieee registration authority
f80332 khomp
+ f80377 apple, inc.
+ f8042e samsung electro-mechanics(thailand)
f8051c drs imaging and targeting solutions
+ f8084f sagemcom broadband sas
f80bbe arris group, inc.
+ f80bcb cisco systems, inc
f80bd0 datang telecom communication terminal (tianjin) co., ltd.
- f80cf3 lg electronics
+ f80cf3 lg electronics (mobile communications)
+ f80d43 hon hai precision ind. co.,ltd.
+ f80d60 canon inc.
+ f80dac hp inc.
f80dea zycast technology inc.
- f80f41 wistron infocomm(zhongshan) corporation
+ f80df0 zte corporation
+ f80df1 sontex sa
+ f80f41 wistron infocomm (zhongshan) corporation
+ f80f6f cisco systems, inc
f80f84 natural security sas
+ f80ff9 google, inc.
f81037 atopia systems, lp
- f81547 avaya, inc
+ f81093 apple, inc.
+ f81308 nokia
+ f81547 avaya inc
f81654 intel corporate
- f81a67 tp-link technologies co., ltd.
+ f81897 2wire inc
+ f81a2b google, inc.
+ f81a67 tp-link technologies co.,ltd.
+ f81b04 zhong shan city richsound electronic industrial ltd
f81ce5 telefonbau behnke gmbh
+ f81d0f hitron technologies. inc
+ f81d78 ieee registration authority
+ f81d90 solidwintech
f81d93 longdhua(beijing) controls technology co.,ltd
- f81edf apple
+ f81e6f ebg compleo gmbh
+ f81edf apple, inc.
+ f81f32 motorola mobility llc, a lenovo company
+ f82055 green information system
f82285 cypress technology co., ltd.
- f82793 apple, inc
+ f82387 shenzhen horn audio co.,ltd.
+ f823b2 huawei technologies co.,ltd
+ f82441 yeelink
+ f8272e mercku
+ f82793 apple, inc.
+ f82819 liteon technology corporation
f82bc8 jiangsu switter co., ltd
+ f82c18 2wire inc
+ f82d7c apple, inc.
+ f82dc0 arris group, inc.
+ f82e3f huawei technologies co.,ltd
+ f82e8e nanjing kechen electric co., ltd.
f82edb rtw gmbh & co. kg
+ f82f08 molex cms
f82f5b egauge systems llc
+ f82f65 huawei device co., ltd.
+ f82f6a itel mobile limited
f82fa8 hon hai precision ind. co.,ltd.
+ f83002 texas instruments
f83094 alcatel-lucent telecom limited
f8313e endeavour gmbh
+ f832e4 asustek computer inc.
+ f83331 texas instruments
f83376 good mind innovation co., ltd.
+ f83441 intel corporate
f83553 magenta research ltd.
f835dd gemtek technology co., ltd.
+ f8369b texas instruments
+ f83880 apple, inc.
+ f83b1d technicolor ch usa inc.
+ f83b7e huawei device co., ltd.
+ f83cbf botato electronics sdn bhd
f83d4e softlink automation system co., ltd
- f83dff huawei technologies co., ltd
+ f83dff huawei technologies co.,ltd
+ f83e95 huawei technologies co.,ltd
+ f83f51 samsung electronics co.,ltd
f842fb yasuda joho co.,ltd.
+ f844e3 taicang t&w electronics
f845ad konka group co., ltd.
+ f845c4 shenzhen netforward micro-electronic co., ltd.
+ f8461c sony interactive entertainment inc.
f8462d syntec incorporation
f8472d x2gen digital corp. ltd
f84897 hitachi, ltd.
+ f848fd china mobile group device co.,ltd.
f84a73 eumtech co., ltd
f84a7f innometriks inc
f84abf huawei technologies co.,ltd
- f84f57 cisco
+ f84cda huawei technologies co.,ltd
+ f84d33 fiberhome telecommunication technologies co.,ltd
+ f84dfc hangzhou hikvision digital technology co.,ltd.
+ f84e73 apple, inc.
+ f84f57 cisco systems, inc
+ f84fad hui zhou gaoshengda technology co.,ltd
+ f8501c tianjin geneuo technology co.,ltd
f85063 verathon
+ f85128 simplisafe
f8516d denwa technology corp.
f852df vnl europe ab
+ f85329 huawei technologies co.,ltd
f854af eci telecom ltd.
+ f854b8 amazon technologies inc.
+ f855cd visteon corporation
f8572e core brands, llc
+ f85971 intel corporate
+ f85a00 sanford lp
+ f85b3b askey computer corp
+ f85b9c sb systems co.,ltd
f85bc9 m-cube spa
f85c45 ic nexus co. ltd.
+ f85c4d nokia
+ f85c7d shenzhen honesty electronics co.,ltd.
+ f85e3c shenzhen zhibotong electronics co.,ltd
+ f85e42 technicolor ch usa inc.
+ f85ea0 intel corporate
f85f2a nokia corporation
+ f860f0 aruba, a hewlett packard enterprise company
+ f86214 apple, inc.
f862aa xn systems
+ f8633f intel corporate
+ f86465 anova applied electronics, inc.
+ f864b8 zte corporation
f86601 suzhou chi-tek information technology co., ltd
- f866f2 cisco systems, inc.
+ f8665a apple, inc.
+ f866d1 hon hai precision ind. co.,ltd.
+ f866f2 cisco systems, inc
f86971 seibu electric co.,
+ f86bd9 cisco systems, inc
+ f86c03 shenzhen teleone technology co., ltd
+ f86ce1 taicang t&w electronics
+ f86d73 zengge co., limited
f86ecf arcx inc
+ f86eee huawei technologies co.,ltd
+ f86fc1 apple, inc.
+ f86fde shenzhen goodix technology co.,ltd.
f871fe the goldman sachs group, inc.
- f872ea cisco
+ f872ea cisco systems, inc
+ f87394 netgear
+ f873a2 avaya inc
+ f87588 huawei technologies co.,ltd
+ f875a4 lcfc(hefei) electronics technology co., ltd
f8769b neopis co., ltd.
+ f877b8 samsung electronics co.,ltd
+ f8790a arris group, inc.
+ f87a41 cisco systems, inc
+ f87aef rosonix technology, inc.
+ f87b20 cisco systems, inc
f87b62 fastwel international co., ltd. taiwan branch
f87b7a arris group, inc.
f87b8c amped wireless
+ f88096 elsys equipamentos eletrônicos ltda
f8811a overkiz
+ f88200 captioncall
+ f88479 yaojin technology(shenzhen)co.,ltd
+ f884f2 samsung electronics co.,ltd
+ f885f9 calix inc.
+ f887f1 apple, inc.
+ f8893c inventec appliances corp.
+ f889d2 cloud network technology singapore pte. ltd.
+ f88a3c ieee registration authority
+ f88a5e texas instruments
+ f88b37 arris group, inc.
f88c1c kaishun electronic technology co., ltd. beijing
+ f88c21 tp-link technologies co.,ltd.
f88def tenebraex
f88e85 comtrend corporation
- f88fca google fiber, inc
+ f88f07 samsung electronics co.,ltd
+ f88fca google, inc.
+ f89066 nain inc.
f8912a glp german light products gmbh
+ f89173 aedle sas
f893f3 volans
+ f894c2 intel corporate
f89550 proton products chengdu ltd
+ f895c7 lg electronics (mobile communications)
+ f895ea apple, inc.
+ f89753 huawei device co., ltd.
f897cf daeshin-information technology co., ltd.
+ f8983a leeman international (hongkong) limited
+ f898b9 huawei technologies co.,ltd
+ f898ef huawei technologies co.,ltd
+ f89910 integrated device technology (malaysia) sdn. bhd.
f89955 fortress technology inc
+ f89a78 huawei technologies co.,ltd
f89d0d control technology inc.
+ f89dbb tintri
+ f89e28 cisco meraki
f89fb8 yazaki energy system corporation
f8a03d dinstar technologies co., ltd.
+ f8a097 arris group, inc.
+ f8a188 led roadway lighting
+ f8a26d canon inc.
f8a2b4 rhewa-waagenfabrik august freudewald gmbh &co. kg
- f8a45f beijing xiaomi communications co.,ltd
- f8a963 compal information (kunshan) co., ltd.
- f8a9d0 lg electronics
+ f8a2d6 liteon technology corporation
+ f8a34f zte corporation
+ f8a45f xiaomi communications co ltd
+ f8a5c5 cisco systems, inc
+ f8a73a cisco systems, inc
+ f8a763 zhejiang tmall technology co., ltd.
+ f8a963 compal information (kunshan) co., ltd.
+ f8a9d0 lg electronics (mobile communications)
f8a9de puissance plus
+ f8aa3f dwnet technologies(suzhou) corporation
f8aa8a axview technology (shenzhen) co.,ltd
+ f8ab05 sagemcom broadband sas
+ f8abe5 shenzhen worldelite electronics co., ltd
+ f8ac65 intel corporate
f8ac6d deltenna ltd
- f8b156 dell inc
+ f8adcb hmd global oy
+ f8ae27 john deere electronic solutions
+ f8af05 huawei device co., ltd.
+ f8afdb fiberhome telecommunication technologies co.,ltd
+ f8b156 dell inc.
+ f8b1dd apple, inc.
+ f8b2f3 guangzhou bosma technology co.,ltd
+ f8b46a hewlett packard
+ f8b568 ieee registration authority
f8b599 guangzhou chnavs digital technology co.,ltd
- f8bc12 dell inc
+ f8b797 nec platforms, ltd.
+ f8b7e2 cisco systems, inc
+ f8b95a lg innotek
+ f8bbbf eero inc.
+ f8bc0e eero inc.
+ f8bc12 dell inc.
+ f8bc41 rosslare enterprises limited
+ f8be0d a2uict co.,ltd.
+ f8bf09 huawei technologies co.,ltd
f8c001 juniper networks
f8c091 highgates technology
+ f8c120 xi'an link-science technology co.,ltd
+ f8c249 private
+ f8c288 cisco systems, inc
+ f8c372 tsuzuki denki
+ f8c397 nzxt corp. ltd.
+ f8c39e huawei technologies co.,ltd
+ f8c4f3 shanghai infinity wireless technologies co.,ltd.
f8c678 carefusion
- f8d0ac sony computer entertainment inc.
+ f8c96c fiberhome telecommunication technologies co.,ltd
+ f8ca59 netcomm wireless
+ f8cab8 dell inc.
+ f8cc6e depo electronics ltd
+ f8cfc5 motorola mobility llc, a lenovo company
+ f8d027 seiko epson corporation
+ f8d0ac sony interactive entertainment inc.
f8d0bd samsung electronics co.,ltd
- f8d111 tp-link technologies co., ltd.
+ f8d111 tp-link technologies co.,ltd.
f8d3a9 axan networks
f8d462 pumatronix equipamentos eletronicos ltda.
- f8d756 simm tronic limited
+ f8d478 flextronics tech.(ind) pvt ltd
+ f8d756 simm tronic limited
f8d7bf rev ritter gmbh
+ f8d9b8 open mesh, inc.
+ f8da0c hon hai precision ind. co.,ltd.
f8dadf ecotech, inc.
- f8dae2 beta lasermike
+ f8dae2 ndc technologies
f8daf4 taishan online technology co., ltd.
f8db4c pny technologies, inc.
f8db7f htc corporation
- f8db88 dell inc
+ f8db88 dell inc.
f8dc7a variscite ltd
+ f8df15 sunitec enterprise co.,ltd
f8dfa8 zte corporation
- f8e079 motorola mobility llc
+ f8dfe1 mylight systems
+ f8e079 motorola mobility llc, a lenovo company
+ f8e43b asix electronics corporation
+ f8e44e mcot inc.
+ f8e4e3 intel corporate
f8e4fb actiontec electronics, inc
+ f8e5cf cgi it uk limited
+ f8e61a samsung electronics co.,ltd
+ f8e71e ruckus wireless
+ f8e7a0 vivo mobile communication co., ltd.
f8e7b5 µtech tecnologia ltda
+ f8e811 huawei technologies co.,ltd
+ f8e877 harman/becker automotive systems gmbh
+ f8e903 d-link international
+ f8e94e apple, inc.
f8e968 egker kft.
f8ea0a dipl.-math. michael rauch
f8eda5 arris group, inc.
f8f005 newport media inc.
f8f014 rackware inc.
- f8f082 orion networks international, inc
- f8f1b6 motorola mobility llc
+ f8f082 nag llc
+ f8f1b6 motorola mobility llc, a lenovo company
+ f8f1e6 samsung electronics co.,ltd
+ f8f21e intel corporate
f8f25a g-lab gmbh
+ f8f464 rawe electonic gmbh
+ f8f532 arris group, inc.
f8f7d3 international communications corporation
f8f7ff syn-tech systems inc
f8fb2f santur corporation
f8fe5c reciprocal labs corp
f8fea8 technico japan corporation
+ f8ff0b electronic technology inc.
f8ff5f shenzhen communication technology co.,ltd
- fc0012 toshiba samsung storage technolgoy korea corporation
+ f8ffc2 apple, inc.
+ fc0012 toshiba samsung storage technolgoy korea corporation
+ fc017c hon hai precision ind. co.,ltd.
fc019e vievu
fc01cd fundacion tekniker
+ fc039f samsung electronics co.,ltd
+ fc041c guangdong oppo mobile telecommunications corp.,ltd
fc0647 cortland research, llc
+ fc06ed m2motive technology inc.
fc07a0 lre medical gmbh
+ fc084a fujitsu limited
fc0877 prentke romich company
fc09d8 acteon group
fc09f6 guangdong tonze electric co.,ltd
- fc0a81 motorola solutions inc.
- fc0fe6 sony computer entertainment inc.
+ fc0a81 extreme networks, inc.
+ fc0c45 shenzhen superelectron technology co.,ltd.
+ fc0f4b texas instruments
+ fc0fe6 sony interactive entertainment inc.
fc10bd control sistematizado s.a.
+ fc10c6 taicang t&w electronics
fc1186 logic3 plc
fc1349 global apps corp.
+ fc13f0 bouffalo lab (nanjing) co., ltd.
+ fc1499 aimore acoustics incorporation
fc15b4 hewlett packard
fc1607 taian technology(wuxi) co.,ltd.
fc1794 intercreative co., ltd
+ fc183c apple, inc.
+ fc1910 samsung electronics co.,ltd
+ fc1928 actions microelectronics co., ltd
+ fc1999 xiaomi communications co ltd
fc19d0 cloud vision networks technology co.,ltd.
+ fc1a11 vivo mobile communication co., ltd.
+ fc1bd1 huawei technologies co.,ltd
fc1bff v-zug ag
+ fc1ca1 nokia
+ fc1d43 apple, inc.
fc1d59 i smart cities hk ltd
+ fc1d84 autobase
fc1e16 ipevo corp
- fc1f19 samsung electro-mechanics co., ltd.
+ fc1f19 samsung electro mechanics co., ltd.
fc1fc0 eurecam
fc229c han kyung i net co.,ltd.
- fc253f apple
+ fc2325 eostek (shenzhen) co., ltd.
+ fc253f apple, inc.
fc27a2 trans electric co., ltd.
+ fc29f3 mcpay co.,ltd.
fc2a54 connected data, inc.
+ fc2a9c apple, inc.
+ fc2bb2 actiontec electronics, inc
+ fc2d5e zte corporation
fc2e2d lorom industrial co.ltd.
fc2f40 calxeda, inc.
+ fc2f6b everspin technologies, inc.
+ fc2faa nokia
+ fc2fef utt technologies co., ltd.
+ fc3288 celot wireless co., ltd
+ fc3342 juniper networks
+ fc335f polyera
+ fc3497 asustek computer inc.
fc3598 favite inc.
fc35e6 visteon corp
+ fc372b sichuan tianyi comheart telecomco.,ltd
+ fc3964 itel mobile limited
+ fc3ce9 tsingtong technologies co, ltd.
+ fc3d93 longcheer telecommunication limited
+ fc3da5 arcadyan corporation
+ fc3f7c huawei technologies co.,ltd
fc3fab henan lanxin technology co., ltd
- fc4463 universal audio
+ fc3fdb hewlett packard
+ fc4009 zte corporation
+ fc4203 samsung electronics co.,ltd
+ fc4463 universal audio, inc
+ fc4482 intel corporate
fc4499 swarco lea d.o.o.
+ fc449f zte corporation
fc455f jiangxi shanshui optoelectronic technology co.,ltd
+ fc4596 compal information (kunshan) co., ltd.
+ fc45c3 texas instruments
fc48ef huawei technologies co.,ltd
+ fc492d amazon technologies inc.
fc4ae9 castlenet technology inc.
fc4b1c intersensor s.r.l.
+ fc4b57 peerless instrument division of curtiss-wright
fc4bbc sunplus technology co., ltd.
+ fc4d8c shenzhen pante electronics technology co., ltd
+ fc4da6 huawei technologies co.,ltd
fc4dd4 universal global scientific industrial co., ltd.
+ fc4ea4 apple, inc.
fc5090 simex sp. z o.o.
+ fc51a4 arris group, inc.
+ fc528d technicolor ch usa inc.
fc52ce control id
+ fc539e shanghai wind technologies co.,ltd
+ fc55dc baltic latvian universal electronics llc
+ fc584a xiamenshi c-chip technology co., ltd
+ fc589a cisco systems, inc
fc58fa shen zhen shi xin zhong xin technology co.,ltd.
+ fc5a1d hitron technologies. inc
fc5b24 weibel scientific a/s
fc5b26 mikrobits
+ fc5b39 cisco systems, inc
fc6018 zhejiang kangtai electric co., ltd.
+ fc609b new h3c technologies co., ltd
fc6198 nec personal products, ltd
+ fc61e9 fiberhome telecommunication technologies co.,ltd
fc626e beijing mdc telecom
+ fc62b9 alpsalpine co,.ltd
+ fc643a samsung electronics co.,ltd
+ fc64ba xiaomi communications co ltd
+ fc65b3 huawei device co., ltd.
+ fc65de amazon technologies inc.
+ fc66cf apple, inc.
fc683e directed perception, inc
+ fc6947 texas instruments
+ fc698c andreas stihl ag & co. kg
+ fc6bf0 topwell international holdinds limited
fc6c31 lxinstruments gmbh
+ fc6dc0 bme corporation
+ fc6dd1 apresia systems, ltd.
+ fc6fb7 arris group, inc.
+ fc71fa trane technologies
+ fc73fb huawei technologies co.,ltd
fc7516 d-link international
fc75e6 handreamnet
+ fc7774 intel corporate
+ fc790b hitachi high technologies america, inc.
+ fc7c02 phicomm (shanghai) co., ltd.
fc7ce7 fci usa llc
+ fc7d6c hyesung techwin co., ltd
+ fc7f56 cosyst control systems gmbh
+ fc7ff1 aruba, a hewlett packard enterprise company
fc8329 trei technics
- fc8399 avaya, inc
- fc8b97 shenzhen gongjin electronics co.,ltd
- fc8e7e pace plc
+ fc8399 avaya inc
+ fc83c6 n-radio technologies co., ltd.
+ fc8596 axonne inc.
+ fc862a huawei device co., ltd.
+ fc8743 huawei technologies co.,ltd
+ fc8b97 shenzhen gongjin electronics co.,lt
+ fc8d3d leapfive tech. ltd.
+ fc8e5b china mobile iot limited company
+ fc8e6e streamcctv, llc
+ fc8e7e arris group, inc.
+ fc8f7d shenzhen gongjin electronics co.,lt
+ fc8f90 samsung electronics co.,ltd
fc8fc4 intelligent technology inc.
+ fc90fa independent technologies
+ fc9114 technicolor ch usa inc.
fc923b nokia corporation
+ fc9435 huawei technologies co.,ltd
fc946c ubivelox
- fc94e3 technicolor usa inc.
- fc9947 cisco
+ fc94ce zte corporation
+ fc94e3 technicolor ch usa inc.
+ fc956a octagon systems corp.
+ fc9643 juniper networks
+ fc9947 cisco systems, inc
+ fc9afa motus global inc.
+ fc9bc6 sumavision technologies co.,ltd
+ fc9c98 arlo technology
+ fc9dd8 beijing tongtongyilian science and technology ltd.
fc9fae fidus systems inc
- fca13e samsung electronics
- fca841 avaya, inc
+ fc9fe1 conwin.tech. ltd
+ fca13e samsung electronics co.,ltd
+ fca183 amazon technologies inc.
+ fca22a pt. callysta multi engineering
+ fca386 shenzhen chuangwei-rgb electronics co.,ltd
+ fca47a ieee registration authority
+ fca5d0 guangdong oppo mobile telecommunications corp.,ltd
+ fca621 samsung electronics co.,ltd
+ fca667 amazon technologies inc.
+ fca6cd fiberhome telecommunication technologies co.,ltd
+ fca841 avaya inc
+ fca89a sunitec enterprise co.,ltd
fca9b0 miartech (shanghai),inc.
+ fca9dc renesas electronics (penang) sdn. bhd.
+ fcaa14 giga-byte technology co.,ltd.
+ fcaab6 samsung electronics co.,ltd
+ fcab90 huawei technologies co.,ltd
fcad0f qts networks
- fcaf6a conemtech ab
- fcb0c4 shanghai dareglobal technologies co., ltd
+ fcae34 arris group, inc.
+ fcaf6a qulsar inc
+ fcafac socionext inc.
+ fcb0c4 shanghai dareglobal technologies co.,ltd
+ fcb10d shenzhen tian kun technology co.,ltd.
+ fcb3bc intel corporate
+ fcb4e6 askey computer corp
+ fcb58a wapice ltd.
+ fcb662 ic holdings llc
+ fcb698 cambridge industries(group) co.,ltd.
+ fcb69d zhejiang dahua technology co., ltd.
+ fcb6d8 apple, inc.
+ fcb7f0 idaho national laboratory
fcbba1 shenzhen minicreate technology co.,ltd
+ fcbc0e zhejiang cainiao supply chain management co., ltd
+ fcbc9c vimar spa
+ fcbcd1 huawei technologies co.,ltd
+ fcbd67 arista networks
+ fcbe7b vivo mobile communication co., ltd.
+ fcc233 asustek computer inc.
fcc23d atmel corporation
fcc2de murata manufacturing co., ltd.
fcc734 samsung electronics co.,ltd
fcc897 zte corporation
+ fccac4 lifehealth, llc
fccce4 ascon ltd.
+ fccd2f ieee registration authority
+ fccf43 huizhou city huiyang district meisiqi industry development co,.ltd
fccf62 ibm corp
+ fcd2b6 ieee registration authority
+ fcd436 motorola mobility llc, a lenovo company
fcd4f2 the coca cola company
fcd4f6 messana air.ray conditioning s.r.l.
+ fcd5d9 shenzhen sdmc technology co., ltd.
fcd6bd robert bosch gmbh
+ fcd733 tp-link technologies co.,ltd.
fcd817 beijing hesun technologies co.ltd.
+ fcd848 apple, inc.
+ fcdb21 samsara networks inc
fcdb96 enervalley co., ltd
+ fcdbb3 murata manufacturing co., ltd.
+ fcdc4a g-wearables corp.
fcdd55 shenzhen wewins wireless co.,ltd
+ fcde90 samsung electronics co.,ltd
+ fce14f brk brands, inc.
fce186 a3m co., ltd
fce192 sichuan jinwangtong electronic science&technology co,.ltd
fce1d9 stable imaging solutions llc
+ fce1fb array networks
fce23f clay paky spa
+ fce33c huawei technologies co.,ltd
fce557 nokia corporation
+ fce66a industrial software co
+ fce806 edifier international
fce892 hangzhou lancable technology co.,ltd
+ fce998 apple, inc.
+ fcea50 integrated device technology (malaysia) sdn. bhd.
+ fcecda ubiquiti networks inc.
fcedb9 arrayent
+ fceee6 formike electronic co., ltd
+ fcf136 samsung electronics co.,ltd
+ fcf152 sony corporation
fcf1cd optex-fa co.,ltd.
+ fcf29f china mobile iot limited company
fcf528 zyxel communications corporation
- fcf647 fiberhome telecommunication tech.co.,ltd.
+ fcf5c4 espressif inc.
+ fcf647 fiberhome telecommunication technologies co.,ltd
fcf8ae intel corporate
fcf8b7 tronteq electronic
fcfaf7 shanghai baud data communication co.,ltd.
- fcfbfb cisco systems, inc.
+ fcfbfb cisco systems, inc
+ fcfc48 apple, inc.
fcfe77 hitachi reftechno, inc.
+ fcfec2 invensys controls uk limited
+ fcffaa ieee registration authority
diff --git a/lib/pci b/lib/pci
index 2027571b76..2d76b8cc06 100644
--- a/lib/pci
+++ b/lib/pci
@@ -24,7 +24,7 @@ exit 0
; Updated and currently maintained by:
; Kavi Corporation (admin@pcidatabase.com)
;
-; This header created on Mon Feb 17 12:02:30 PST 2014
+; This header created on Thu Feb 18 00:00:00 EST 2016
;---------------------------------------------------------------------------
;
; This text file is formatted as follows:
@@ -54,20 +54,23 @@ exit 0
;
0033 Paradyne Corp.
- 002F .43 ieee 1394 controller
- 00333 1ACPI\GenuineIntel_-_x86_Family_6_Model_23\_0 1ACPI\GenuineIntel_-_x86_Family_6_Model_23\_0
+ 002F MAIAM Spitfire VGA Accelerator
+ 00333 OTI107 Spitfire VGA Accelerator
003D master
+ 003a mx98715/25 i740pci
003d mx98715/25 1740pci
00D1 mx98715/25 i740 PCI
0070 Hauppauge Computer Works Inc.
- 6800 PCI\VEN_14F1&DEV_8810&REV_05 Hauppage Nova -TD-500 DVB-T Tuner Device
+ 6800 PCI\VEN_14F1&DEV_2F30&SUBSY5_205D14F1&REV_01\3&130 Hauppage Nova -TD-500 DVB-T Tuner Device
68001 PCI\VEN_14F1&DEV_8810&REV_05 Hauppage Nova -TD-500 DVB-T Tuner Device
0100 USBPDO-8
0123 General Dynamics
0315 SK - Electronics Co., Ltd.
0402 Acer aspire one
- 5606 0x8086 0x2592
- 9665 0009 ZCT8YBT
+ 1050 0x1050 ethernet controller
+ 5606 0x0436 0x4752
+ 8086 0x8086 video controller
+ 9665 PCI\VEN_10DE&DEV_0059&SUBSYS_2052161F&REV_A2 ZCT8YBT'
046D Logitech Inc.
0805 atom ıntel ınsıde n.a.
0808 n/a Logitech Webcam C600
@@ -85,83 +88,97 @@ exit 0
0A1F USB _ phone toush Logitech G930 Headset
5a61 356254
C018 ? Baesline 3 Button Corded Optical Mouse, 2 button + scroll wheel
- C045 M/N: M-BZ96C. P/N: 810-000207. PID: HS91013. Epoxy Hidden
+ C045 M/N: M-BJ96C. P/N: 830667-0000. PID: c00e Epoxy Hidden
C046 n/a n/a
c05b ee ftht
C063 k251d DELL 6-Button mouse
C226 n/a n/a
C227 n/a n/a
+ C22D n/a n/a
C281 J-UA9 Wingman Force J-UA9
C312 n/a n/a
C404 n/a Logitech TrackMan Wheel
C50E M-RAM99, C-BS35 MediaPlay Cordless Mouse
C512 n/a n/a
+ C51B n/a n/a
c51e Unknown Unknown
C526 n/a n/a
C52A Dell Wireless Keyboard w/ mouse HID Keyboard Device
- C52B FC8708A607198-10F1043TA3 N/A
+ C52B FC8708A607198-10F1043TA3 USB Receiver for Wireless Mouse
C52E n/a USB3 receiver
+ C52F Logitech Wireless Mouse USB Controller Logitech Wireless Mouse USB Controller
0483 UPEK
2016 UPEK fingerprint sensors Driver Windows xp
04A9 Canon
+ 314D unknown uhknown
04B3 IBM
- 24D5 PCI\VEN_8086&DEV_24D5&SUBSYS_90111584&REV_02 Audio Controller
+ 24D5 PCI\VEN_8086&DEV_24D5&SUBSYS_B026144D&REV_02 Audio Controller
401 8086 PCI\VEN_8086&DEV_293E&SUBSYS_20F217AA&REV_03\3&B1BFB68&0&D8
401 24C5 PCI\VEN_8086&DEV_24C6&REV_03\3 267A616A
- 4010 cc020000 PCI\VEN_8086&DEV_108C&SUBSYS_02F61014&REV03
- 9876 CC_040100 PCI\VEN_8086&DEV_101E&SUBSYS_0591014&REV_03\4&39A85202&0&08F0
+ 4010 cc020000 PCI\VEN_10EC&DEV_5227&SUBSYS_220C17AA&REV_01
+ 9876 CC_040100 PCI\VEN_8086&DEV_1C3A&SUBSYS_1C3A1458&REV_04
04D9 Filco
1603 n\a Samsung
2011 n/a n/a
04F2 Chicony Electronics Co.
- b008 . .oem44.inf
+ b008 USB\VID_138A&PID_0001 .oem44.inf
+ B044 . Webcam
B175 0001 SN
+ B217 01A000166 Integrated Camera
B307 6030 Webcam
-051D APC
- 0002 n/a n/a
- 051D INT33A0 0 x051d
+051D ACPI\VEN_INT&DEV_33A0
+ 0002 USB\VID_0B05&PID_580F\E6AZCY495152 Inter (R) Core [TM] 2 Duo cpu
+ 051D USB\VID_0B05&PID_580F\E6AZCY495152 0x051d
+ 9876 USB\VID_0B05&PID_580F\E6AZCY495152 USB\VID_0B05&PID_580F\E6AZCY495152
0529 Aladdin E-Token
0553 Aiptek USA
0200, 0x0201, 0x02 DS38xx Oregon Scientific
058f Alcor Micro Corp.
- 0001 6377 AM usb storage
+ 0001 6387 AM usb storage
+ 0107 0x03 0x01
1234 9380 6387
+ 1600 00000000 http://www.alldatasheet.com/datasheet-pdf/pdf/91600/ETC/AU9254A21.html
6362 UNKNOWN Unknown 4-in-1 card reader (istar)
6366 Unknown Multi Flash Reader USB Device
- 6387 C508(FC8508)/AU6985/AU6992 - F/W 2902 USB Mass Storage Device(USB1005B Flash Disk)
+ 6387 intel g620 USB Mass Storage Device(USB1005B Flash Disk)
+ 8CBA PCI\VEN_8086&DEV_8CBA&SUBSYS_78211462&REV_00\3&115 PCI Simple Communications Controller
9254 AU9254A21-HAS http://www.alldatasheet.com/datasheet-pdf/pdf/91600/ETC/AU9254A21.html
- 9380 2C680446 Micron=MT29F32G08CBABA
+ 9380 FC8708-3 Micron=MT29F32G08CBABA
9540 Unknown SmartCard Reader
0590 Omron Corp
0028 HEM-790IT hid device class blood pressure monitor
-05ac Apple, Inc.
+05ac Apple Inc.
021e Keyboard IT USB Alluminium Keyboard IT USB
- 1293 Apple iPod Apple iPod
- 1297 Apple iPhone Apple iPhone g3
+ 1293 Apple iPod 5 Apple iPod 5
+ 1297 Apple iPhone Apple iPhone 4
21e phone 3g Allumium keyboard it USB
+ 8215 BCM2046 Broadcom BCM2046 Bluetooth chipset iMac
05E1 D-MAX
0408 00000000000 USB 2.0 Video Capture Controller
0501 120315000000621 web cam
064e SUYIN Corporation
- 064e VID_064E&PID_A111&MI_00 Suyin
+ 064e VID_0000&PID_0000\5&2B3B5BA1&0&1 Suyin
a101 suYin Acer Crystal Eye Webcam
a103 SuYin WebCam
- a116 Suiyn Optronics USB 2.0 UVC 1.3M WebCam
+ a116 Suiyn Optronics USB 2.0 UVC 0.3M WebCam
A219 SUYIN SUYIN 1.3M WebCam
+ B250 SuYin 1.3M HD WebCam
c108 dont know its a webcam software
d101 SuYin Web Cam
+ D217 SUYIN HP TrueVision HD
067B Prolific Technology Inc.
2303 2303 HXA Prolific USB 2 Serial Comm Port контроллеl
2305 PL-2303 USB-to-Printer Bridge Controller
- 2393 prolific prolific
+ 2393 prolific prolificz
2506 PL-2506 Hi-Speed USB to IDE Bridge Controller
25a1 PL-2501 Prolific PCLinq3 USB Transfer Cable Driver
9876 067B TES
06FE Acresso Software Inc.
9700 i don't know a netcard used usb interface
0711 SIIG, Inc.
-093a KYE Systems Corp.
- 2468 Genius iLook 110 http://genius.ru/products.aspx?pnum=24948&archive=1
+093a KYE Systems Corp. / Pixart Imaging
+ 2468 Genius iLook 300 http://genius.ru/products.aspx?pnum=24948&archive=1
+ 2600 PAC7311 http://www.speedlink.com/support/bin/24-02-2012/SETUP.rar
2608 PAC7311 - Toshiba PX1342E-1 CAM USB\VID_093A&PID_2608&REV_0100&MI_00
2620 CNR-WCAM53G WEBCAM http://www.canyon-tech.com/archive/voip/webcams/CNR-WCAM53#pr-switcher
096E USB Rockey dongle from Feitain
@@ -172,11 +189,11 @@ exit 0
2000 0578A97 Broadcom Bluetooth Firmware Upgrade Device
2009 Broadcom Bluetooth Controller
200a Broadcom Bluetooth Controller
- 200f Broadcom Bluetooth Controller
+ 200f PCI\VEN_14E4&DEV_43B1&SUBSYS_2B231A3B&REV_03 Broadcom 802.11ac Network Adapter
201d n450 BROADCOM Bluetooth Device
201e IBM Integrated Bluetooth IV
2020 Broadcom Bluetooth Dongle
- 2021 BCM2035B3 ROM Adapter Generic
+ 2021 0A5C BCM2035B3 ROM Adapter Generic
2033 1ujy100539f Broadcom Blutonium Device Firmware Downloader
2035 5&263C7E89&0&1 BCM92035NMD Bluetooth
2038 Broadcom Blutonium Device Firmware Downloader (BCM2038)
@@ -204,7 +221,7 @@ exit 0
2145 bcm9204md Broadcom BCM9204MD LENO Module
2146 Broadcom 2045 Bluetooth 2.1 USB UHE Dongle
2147 0A5C&PID_5800 Broadcom 2046 Bluetooth 2.1 USB Dongle
- 2148 Broadcom 2046 Bluetooth 2.1 USB UHE Dongle
+ 2148 GBU421 Broadcom 2046 Bluetooth 2.1 USB UHE Dongle
2149 Broadcom 2046 Bluetooth 2.1 USB Dongle
214a Broadcom 2046 Bluetooth 2.1 USB Module
214b 52AF1AB24D Broadcom 2046 Bluetooth 2.1 USB Module
@@ -221,6 +238,7 @@ exit 0
2157 BCM2046 B1 USB 500
2158 Broadcom 2046 Bluetooth 2.1 Device
219C BCM2070 Broadcom BCM2070 Bluetooth 3.0+HS USB Device
+ 21E1 Broadcom 20702 Bluetooth 4.0 .0112
21E3 BCM43142A0 Broadcom Bluetooth 4.0
4500 BCM2046B1 Broadcom 2046 Bluetooth 2.1 USB Dongle
4502 BCM2046B1 Broadcom 2046 Bluetooth 2.1 USB Dongle
@@ -236,23 +254,24 @@ exit 0
1010 1010&REV_0101&MI_00 RoMI/o by Egosys - Midi USB Cable
0AC8 ASUS
1234 1 1
- 6719 asus PCI\VEN_8086&DEV_27DA&SUBSYS_81791043&REV_01\3&11583659&0&FB
+ 6719 3330 8086&DEV_0F18&SUBSYS_16DD1043&REV_0E
+ 9876 1 1
0b05 Toshiba Bluetooth RFBUS, RFCOM, RFHID
170C 6205 WIFI USB Card
0c45 Microdia Ltd.
- 0C45 USB\VID_0000&PID_0000\6&14BE79D5&0&4 USB2.0
+ 0C45 USB\VID_041&PID_6143&REV_0101 USB2.0
1111 USB\VID_0C45&PID_612A\5&B0F4C74&0&2 USB webcam
5243 USB xda exec Uknown device
6007 USB\VID_0C45&PID_6007&REV_0101 Genius WebCam Eye
600D USB\VID_0C45&PID_600D&REV_0101 USB(v1.1) webcam
- 602C SN9C102C Webcam
+ 602C SN9C102C home made
602D VID_0C45&PID_6480&MI_00 USB Webcam
- 6030 USB\VID_0C45&PID_6030\5&18D8BE1C&0&1 USB WebCam
+ 6030 USB\VID_0C45&PID_6029\5&18D8BE1C&0&1 USB WebCam
610C USB\VID_0C45&PID_610B\7&3211544E$0$2 usb web camera
6128 USB\VID_0C45&PID_613C&REV_0101 USB веб-камера
6128_ USB\VID_0C45&PID_6148&REV_0101 USB PC Camera Plus
6129 USB\VID_0C45&PID_6128\5&3875c171&0&1 USB WebCam
- 6130 USB\VID_090C&PID_1000\0346113020045748 USB HUB
+ 6130 USB\VID_0000&PID_0000\5&1AAEDD8&0&2 USB HUB
613A USB\VID_0C45&PID_613A\5&2F621EE5&0&5 USB WEBCAM
613c USB\VID_0C45&PID_613C\5&377B3285&0&1 USB Webcam
613E 5&29957435&0&1 USB Camera
@@ -263,31 +282,33 @@ exit 0
627F USB\VID_17A1&PID_0118&REV_0100 USB\VID_17A1&PID_0118&REV_0100
62B3 USB\Vid_0c45&Pid_62b3&Rev_0100&MI_00 USB 2.0 PC Camera
62BF USB\Vid_0c45&Pid_62bf USB\Vid_0c45&Pid_62bf&Rev_0100
- 62c0 SNP2UVC Sonix Wecam
- 6353 USB\VID_0000&PID_0000\5&21F6DCD1&0&5 USB Microscope
+ 62c0 SNP2UVC Sonix Webcam
+ 6353 USB\VID_0000&PID_0000\5&1FFD6427&0&2 USB Microscope
641D USB\VID_0C45&PID_643d 1.3 MPixel Integrated Webcam used in Dell N5010 series
6421 USB\VID_0C45&PID_6421&REV_0224&MI_00 USB 2.0 Webcam slim 32
642F USB\VID_0C45&PID_642F&REV_1224 Webcam
- 644b not known not known
+ 644b oc45&oid 641d& 9:07&mi oo oc45&oid 641d& 9:07&mi oo
6489 0x6489 Integrated Webcam Universal Serial Bus controllers
6840 USB\VID_0C45&PID_6480&MI_00 sonix 1.3 mp laptop integrated webcam
+ 7401 n.a. RDing TEMPer1V1.4
9876 USB\VID_090C&PID_B371&MI_00\6&462987E&0&0000 webcam
0cf3 TP-Link
1002 Wireless USB 2.0 adapter TL-WN821N Wireless USB 2.0 adapter TL-WN821N
- 3000 неизвес& неизвестное уст&
- 3002 unknown unkown
+ 3000 USB\VID_0000&PID_0000\6&F763642&0&4 USB\VID_0000&PID_0000\6&F763642&0&4
+ 3002 USB\VID_0CF3&PID_3002&REV_0001 USB\VID_0CF3&PID_3002&REV_0001
3002_ unknown unknown
3005 AR3011 Atheros Bluetooth Module
9271 0x0108 TP-LINK 150 Mbps Wireless Lite N Adapter TL-WN721N
0D2E Feedback Instruments Ltd.
0D8C C-Media Electronics, Inc.
+ 000E 00 Generic USB Audio Device
0102 6206lc USB 5.1CH audio codec
5200 0x5200 C-Media USB 2.0 Mass Storage Controller
0DF6 Sitecom
9071 \t9071\t WL-113 - Wireless Network USB dongle 5 \t9071\t WL-113 - Wireless Network USB dongle 54g
0E11 Compaq Computer Corp.
0001 2 PCI to EISA Bridge
- 0002 55919 W9B0Tx Win 8.1) (Win 2003 - 2008R2)
7268 PCI / ISA IEEE1284 ECP/EPP/SPP/BPP Signal Chips So PCI parallel port
7268 PCI / ISA IEEE1284 ECP/EPP/SPP/BPP PAR4008A PCI parallel port
140A DSP Research Inc
@@ -6241,7 +6428,7 @@ exit 0
140F Salient Systems Corp
1412 IC Ensemble, Inc.
1712 ICE1712 M-audio Delta 44 (http://www.m-audio.com)
- 1724 VT1723 Envy24PT/HT PCI Multi-Channel Audio Controller
+ 1724 VT1723 Envy24PT/HT PCI Multi-Channel Audio Controller (аудиоко
1413 Addonics
1415 Oxford Semiconductor Ltd - now part of PLX Technology
8401 OX9162 PCI Interface to local bus
@@ -6258,13 +6445,14 @@ exit 0
9521 OX16PCI952 Dual UART
9523 OX16PCI952 Integrated Parallel Port
c110 OXPCIe952 Parallel PCI Express Card (Manhattan 158176)
- c158 OXPCIe952 2 native UARTs (function 0)
+ c158 OXPCIe952 Scheda PCI Express Seriale Due porte, X1 linea
c15d OXPCIe952 2 native UARTs (function 1)
c208 OXPCIe954 Quad UARTs
c20d OXPCIe954 Quad UARTs (function 1)
c308 OXPCIe958 Octo UARTs
c30d OXPCIe958 Octo UARTs (function 1)
1418 Kyushu Electronics Systems Inc
+ 0781 RaLink RT2860 300Mbps 802.11n Wireless Card
1419 Excel Switching Corp
141B Zoom Telephonics Inc
141E Fanuc Co. Ltd
@@ -6316,15 +6504,16 @@ exit 0
1441 Agie SA.
1443 Unibrain S.A.
1445 Logical Co Ltd
-1446 Graphin Co. Ltd
+1446 Graphin Co., LTD
+ 6A73 not known not known
1447 Aim GMBH
1448 Alesis Studio
0001 ADAT/EDIT Audio Editing
144A ADLINK Technology Inc
348A LPCI-3488A Low-profile High-Performance IEEE488 GPIB Interface Card for PCI Bus
- 7230
+ 7230 PLX PCI-9052 PLX PCI-9052
7248 PCI-9052 PLX PCI9052
- 7250 PCI-7250 PLX PCI9052
+ 7250 PCI-7250 PLX PCI-9050
7256 PCI-7256 PCI-7256 16-CH Latching Relay & 16-CH Isolated Digital Input Card
7296 PCI-7296 (PLX PCI-9052) 96-ch digital I/O card
7432 PCI-7432
@@ -6343,8 +6532,9 @@ exit 0
1451 SP3D Chip Design GMBH
1453 Mycom Inc
1458 Giga-Byte Technologies
- 1458 0x1458 microsoft
+ 1458 0x29e0 microsoft
5000 0x29e0 GA-X48T-DQ6
+ 67B1 0x29e0 GA-X48T-DQ6
145C Cryptek
145F Baldor Electric Company
0001 NextMove PCI Multi-axis Motion Controller
@@ -6354,7 +6544,7 @@ exit 0
00C1 NV41.1 NX6800-TD256E
4720 883 Audio controller
5071 883 Audio controller
- 5964 0PCI\VEN_11C1&DEV_0620&SUBSYS_062011C1 RADEON 9250/9200 series AGP
+ 5964 PCI\VEN_1002&DEV_7291&SUBSYS_08101462&REV_9A0PCI\V RADEON 9250/9200 series AGP
7120
7960 MCP2T MCP2T
1463 Fast Corporation
@@ -6386,12 +6576,12 @@ exit 0
148E OSI Plus Corporation
148F Plant Equipment Inc.
1000 unknown Ralink Motorola BC4 Bluetooth 3.0+HS Adapter
- 148f 2070 TP-LINK 7200ND
+ 148f 5370 TP-LINK 7200ND
2000 Unknown Ralink Motorola BC8 Bluetooth 3.0 + HS Adapter
2070 1.0 802.11 g WLAN
2573 1192Af7b 802.11 bg
2870 1.0 802.11 n WLAN
- 3000 RT3290 802.11n + Bluetooth 3.0
+ 3000 RT3290 ralink rt3290_bluetooth_01
3070 RT3070L FreeWifiLink D3-10000N
3572 RT3572 Ralink 3572
5370 Ralink RT2870 802.11n USB Wireless LAN Card
@@ -6410,13 +6600,14 @@ exit 0
149B Seiko Instruments Inc
149E Mapletree Networks Inc.
149F Lectron Co Ltd
-14A0 Softing GMBH
+14A0 Softing AG
14A2 Millennium Engineering Inc
14A4 GVC/BCM Advanced Research
14A9 Hivertec Inc.
ad1f 1 1
14AB Mentor Graphics Corp.
14B1 Nextcom K.K.
+ 0FECF0000 i865P/PE/G/i848P rev. A2 Intel 82801EB (ICH5) rev. 02
1033 R6795-12 RH56D-PCI
2F30 01 zyxel omni 56k CI lus rev.
14B3 Xpeed Inc.
@@ -6461,7 +6652,9 @@ exit 0
14C9 Odin Telesystems Inc
14CB Billionton Systems Inc./Cadmus Micro Inc
14CD Universal Scientific Ind.
- 03 0x02 0x0200
+ 03 0x02 0x1212
+ 1001 BCM4356 802.11 ac wireless module
+ 168a NA Multi-Card reader
14CF TEK Microsystems Inc.
2920 FPMC-FIO1-F100-1 Serial I/O Controller aka FPMC-DFLEX64
14D4 Panacom Technology Corporation
@@ -6534,6 +6727,7 @@ exit 0
1234 7175144F networkcontroller
1361 BCM4313 Ethernet
14E4 BCM57780 802.11b/g Wireless Lan Controller
+ 1570 720p FaceTime HD camera Webcam found on Macbook Pro with Retina Display, 2014 (aka. Macbook Pro /w Retina 11,3)
1600 BCM5752 NetXtreme BCM5752 Gigabit Ethernet PCI Express
1601 BCM5752M NetXtreme Desktop/Mobile
1610 BCM70010 Broadcom BCN70010 Video Decoder
@@ -6545,7 +6739,7 @@ exit 0
1644 BCM5751F ven_1102dev_0004
1645 BCM570123 broadtcomBCM5701 Gigabit EthernetASD
1646 BCM5702x1 NetXtreme Gigabit Ethernet
- 1647 BCM5703 NetXtreme Gigabit Ethernet
+ 1647 BCM57788 NetLink tm Gigabit Ethernet pcie
1648 BCM5704 NetXtreme Dual Gigabit Adapter
164C BCM5708 Broadcom NetXtreme II Gigabit Ethernet Adapter
164D 83471043 NetXtreme Fast Ethernet Controller
@@ -6583,7 +6777,7 @@ exit 0
1692 BCM57780 NetLink
1693 BCM5787 Ethernet Controller Broadcom Netlink Gigabit
1696 BCM5782 Broadcom NetXtreme Gigabit Ethernet
- 1698 02941028 NetLink-FOR DELL LAPTOP AND MAYBE OTHERS
+ 1698 02941028 NetLink Ethernet-FOR DELL LAPTOP AND MAYBE OTHERS
169A BCM5787 Broadcom Netlink (TM) gigabit ethernet Driver
169B BCM5786 NetXtreme Gigabit Ethernet
169C 17351043 Broadcom NetLink (TM) Gigabit Ethernet
@@ -6596,21 +6790,22 @@ exit 0
16B1 BCM57781 BCM57781
16B5 BCM57785X Broadcom NetLink Gigabit Ethernet
16BE 16BE8 CardReader Broadcom 1.0.0.221
- 16BF 0x16BF CardReader Broadcom 1.0.0.221
+ 16BF 0x16BF CardReader Broadcom 15.0.7.2
16C6 BCM5702A3 NetXtreme Gigabit Ethernet
16C7 BCM 94311 DELL Wireless 1390 WLAN MiniCard
16DD BCM5781 NetXtreme Gigabit Ethernet
16f7 BCM5753 NetXtreme BCM5753 Gigabit PCI Express
16FD BCM5753M NetXtreme Gigabit Ethernet PciXpress
16FE BCM5753F NetXtreme Gigabit Ethernet
- 170C PCI\VEN_14E4&DEV_4727&SUBSYS_1483103C&REV_01 Broadcom 440x 10/100 Integrated Controller
+ 170C PCI\VEN_14E4&DEV_1692&CC_020000 Broadcom 440x 10/100 Integrated Controller
170D BCM5901 NetXtreme
170E BCM5901 NetXtreme 100Base-TX
1713 BCM5906m Broadcom NetLink (TM) Fast Ethernet
+ 21E3 BCM43142A0 Broadcom Bluetooth 4.0
333 BCM53333 16p 1G (PHY)
3352 BCM3352 BCM3352 QAMLink® Single-Chip 4-Line VoIP
3360 BCM3360 Advanced PHY Broadband Gateway Cable Modem
- 4211 intel 10Mb/s NIC
+ 4211 intel CORE I5 10Mb/s NIC
4212 BCM V.90 56k Modem
4301 Broadcom BCM4301 802.11g Wireless LAN Controller Dell Truemobile 1180 802.11g MiniPCI
4303 BCM4303 BCM4301 802.11b802.11b Wireless LAN Controller
@@ -6618,26 +6813,28 @@ exit 0
4306 BCM4306 Unknown device 4306 (rev 02)
4307 BCM4306 802.11b Wireless LAN Controller
4310 BCM4310 BCM4301USB Controller
- 4311 BCM4311 Wireless LAN BroadCom
+ 4311 BCM4311 802.11b/g Wireless LAN
4312 BCM4310 broadcom wireless 1490 (dell)
4313 BCM4310 UART wireless network card
4315 BCM4315/BCM22062000 Broadcom Wireless b/g (Tested Drivers)
- 4318 BCM4318 Broadcom 802.11b/g
- 4320 BCM4306 802.11B/G Wireless Lan Controller Revision 3
+ 4318 BCM4318 Broadcom 802.11b/g WLAN
+ 4320 BCM4306 802.11B/G Wireless Lan Controller 3-я Редакция
4321 BCM4306 802.11a Wireless LAN Controller
4322 BCM4306 UART
4323 BCM4306 V.90 56k Modem
- 4324 BCM4357 802.11a/b/g Wireless LAN
+ 4324 Broadcom 43225 802.11a/b/g Wireless LAN
4325 BCM4306 802.11b/g Wireless LAN Controller
4326 BCM4306 Chipcommon I/O Controller?
4328 BCM4321KFBG Broadcom BCM43xx 1.0 (5.10.91.27)
4329 BCM43XX Broadcom 802.11n Network Adapter
432B 4322 Broadcom Wireless LAN Driver
- 4353 BCM943224HMS Broadcom Half Mini PCI Express Wifi card / DL1520
+ 4331 BCM4331 Broadcom BCM4331
+ 4353 BCM943224HMS Broadcom Half Mini PCI Express Wifi card / DL1520 (aka Dell Wireless 1520 802.11n Mini Card WLAN Dri
4357 BCM94322c5HM Broadcom WiFi 802.11b/g/n
4358 BCM943227HM4L Broadcom 802.11n WLAN module
4359 BCM943228HM4L Half-mini wireless-N card DW1530
4365 061117AA Broadcom 43142 Wireless LAN Adapter
+ 43a1 0x4360 Broadcom BCM4708A0
4401 BCM4401 10/100 Integrated Ethernet Controller
4402 BCM440 10/100 Integrated Ethernet Controller
4403 BCM4402 V.90 56k Modem
@@ -6665,7 +6862,7 @@ exit 0
4718 BCM47xx Sentry5 Crypto Accelerator
4720 BCM4712 MIPS CPU
4726 7175144f 01
- 4727 BCM94313HMGB Broadcom 802.11n Network Adapter + BT combo card
+ 4727 BCM1503HMGIPAD_NT61 Dell Wireless 1501/1503/1701 Half Mini Card Driver (used google chrome to download file)
4728 7175144f 01
53343 BCM53343 16P 1G (PHY)
5365 BCM5365P Sentry5 PCI to SB Bridge
@@ -6701,6 +6898,7 @@ exit 0
8022 BCM53022 Next generation router SOC with gigabit switch with RGMII/SDIO
8023 BCM53023 Next generation router SOC with gigabit switch with SATA instead of RGMII/SDIO
8025 BCM53025 Next generation router SOC with gigabit switch with RGMII/SDIO, GMII, SGMII and SATA
+ 8202 BCM8202 Packet Processor ASIC
8334 BCM53334 24 1G
8342 BCM53342 8 1G (PHY)
8344 BCM53344 24P 1G +4P 1G (PHY)
@@ -6717,6 +6915,15 @@ exit 0
8415 BCM53415 160Gbps L2+ Ethernet Switch
8416 BCM53416 160Gbps L2+ Ethernet Switch
8418 BCM53418 160Gbps L2+ Ethernet Switch
+ 8433 BCM53433 L2+ Ethernet switch: 16P 1G
+ 8434 BCM53434 L2+ Ethernet switch: 24P 1G
+ 8442 BCM53442 L2+ Ethernet switch: 8P 1G + 4P 1G
+ 8443 BCM53443 L2+ Ethernet switch: 16P 1G + 4P 1G
+ 8444 BCM53444 L2+ Ethernet switch: 24P 1G + 4P 1G
+ 8446 BCM53446 L2+ Ethernet switch: 24P 1G +2P 1G/10G +2P 1G/10G
+ 8447 BCM53447 L2+ Ethernet switch: 24P 1G +2P 1G/10G +2P 1G/10G
+ 8448 BCM53448 L2+ Ethernet switch: 8P 1G + 8P 1G/2.5G + 4P 10G
+ 8449 BCM53449 L2+ Ethernet switch: 16P 1G + 8P 1G/2.5G + 4P 10G + 2P 20G
9867 900000000 900000000
9876 Texas Instruments PCI GemCore based SmartCard cont 0x14E4
A8D6 BCM6368 Broadcom 802.11n WLAN chip
@@ -6726,11 +6933,16 @@ exit 0
B064 BCM56064 160Gbps L2+ Ethernet Switch
B150 BCM56150 Hurricane2 (Lightly Managed) 24P 1G +4P 1G/10G (PHY)
b152 BCM56152 24P 1G (PHY)
+ B160 BCM56160 L2+ switch: 24P 1G +2P 1G/10G +2P 1G/10G
+ B161 BCM56161 L2+ Ethernet switch: 24P 1G +2P 1G/10G +2P 1G/10G
+ B162 BCM56162 L2+ Ethernet switch: 24P 1G +4P 1G
B340 BCM56340 48-port multi-layer switch with embedded CPU
B450 BCM56450 100G Multi-layer Ethernet Switch
B640 BCM56640 260Gbps Extensible Switch with 100GE
+ B842 BCM56842 320Gbps Ethernet Multilayer Switch
B845 BCM56845 640G Multi-layer Ethernet Switch
B850 BCM56850 1.28T I/O Multi-layer Ethernet Switch
+ B960 BCM56960 3.2T I/O Multi-layer Ethernet Switch
dev_4311 1364103c subsys
14EA Planex Communications, Inc.
AB06 XFNW-3603-T 10/100 Fast Ethernet CardBus (RTL8139)
@@ -6741,15 +6953,15 @@ exit 0
16BE CardReader_Broadcom 1.0.0.222_W7x86_A
14ED Datakinetics Ltd
14EF Carry Computer Eng. Co Ltd
-14F1 Conexant Systems, Inc. (Formerly Rockwell)
+14F1 Conexant
0F00 cx11252-11 HSF Generic Modem
0F30 0x14F1 0x14F1
1031 332 dfd
1033 RH56D RH56D-PCI
1033a RH56D RH56D-PCI
1035 R6795-11 RH56D/SP-PCI, R6795-11, E416921/1, 0336 Mexico
- 1036 Conexant RH56D/SP-PCI unknown
- 1056 4-1b359d48-0-10f06 Symphony modem DSL router6
+ 1036 Conexant RH56D/SP-PCI
+ 1056 105614f1 subsys
1059 DI15630-5, DI5631, DI5633 SmartHCF
10B4 Conextant HFC All Conextant HFC Modems (PCI)
10B6 unknown Conexant HCF PCI Soft modem
@@ -6778,9 +6990,9 @@ exit 0
2F81
2F82 cx9510-11z Conexant PCI-E Soft Data/Fax Modem with SmartCP
5045 4.0.3.1 http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-43284-1&lc=en&dlc=en&cc=us&
- 50451 14f12f30 Conextant High Definition Audio-Venice 5051
+ 50451 14f12f30 Conextant High Definition
50452 14e4 Conextant High Definition SmartAudio 221
- 50452 PCI\VEN_14F1&DEV_5047 Conextant High Definition Audio-Venice 5051
+ 50452 PCI\VEN_14F1&DEV_5051 Conextant High Definition Audio-Venice 5051
5047 Not sure HDAUDIO Soft Data Fax Modm- Conexant Sound Card Audio Driver
5051 4.0.1.6 Conexant HD-Audio SmartAudio 221
5051_ DG31PR Conexant HD-Audio SmartAudio 221
@@ -6795,16 +7007,16 @@ exit 0
8800 Conexant CX23881 PAL audio/video decoder
88000 0x14F1 0x14F1
8801 CX23880 PCI Broadcast Audio/Video Decoder
- 8802 CX2388x MPEG Encoder (ASUS Blackbird)
+ 8802 CX2388x MPEG Encoder
8811 CX2388x Audio Capture ike
8852 cx23885 Leadtek Winfast PxDVR3200 H (XC3028)
8880 CX23888 PCI Express Video and Broadcast Audio Decoder
- 9876 PCI\VEN_14F1&DEV_2F20&SUBSYS_200C14F1&REV_00\4&CF8 f
+ 9876 PCI\VEN_14F1&DEV_2F20&SUBSYS_200C14F1&REV_00\4&CF8 Communication controller
x27d8 A62516F3 INTEL IDT Audio
14F2 Mobility Electronics, Inc.
0001 Moselle Split Bridge
0002 Capilano Split Bridge
- 0120 win7_rtm.090713-1255 Merlin Split Bridge
+ 0120 win7_rtm.090713-1257 Merlin Split Bridge
0121 PCI Parallel Port
0122 unknown PCI Serial Port
0123 6.1.7600.16385 PCI PS/2 Keyboard Port
@@ -6850,14 +7062,14 @@ exit 0
1514 TFL LAN Inc
1515 ICS Advent
1516 Myson Technology Inc
- 0800 MTD800 10/100 Mbps Fast Ethernet Controller
+ 0800 Myson MTD803/TAMARACK TC6020 PCI Ethernet controller
0803 Myson MTD803/TAMARACK TC6020 PCI Ethernet controller
- 0891 MTD891 10/100/1000 Mbps Gigabit Ethernet Controller
+ 0891 Myson MTD803/TAMARACK TC6020 PCI Ethernet controller
1517 Echotek Corporation
1518 Kontron Modular Computers GmbH (PEP Modular Computers GMBH)
1519 Telefon Aktiebolaget LM Ericsson
0020 0123456789 HSIC Device
- 2004 0x1 PCI Interface bus
+ 2004 1 PCI Interface bus
151A Globetek Inc.
1002 PCI-1002&DEV_4341&subsys_82441033&rev_01\ 4341
1004 PCI-1004
@@ -6879,7 +7091,7 @@ exit 0
8 MU9C8K64 Content Addressable Memory
1524 ENE Technology Inc
0751 08011558 pci
- 0100 ACPI\ENE0100 ENE CIR Receiver
+ 0100 ACPI\ENE0100 ENE CIR Receiver
0510 1.4.5.0 PCI Memory Card Reader Controller
0530 CB-712/714/810 Memory Stick Card Reader
0550 CB-712/714/810 Secure Digital Card Reader
@@ -6887,7 +7099,7 @@ exit 0
0555 10c11734 ven1524&dev_0551&SUBSYS_009F1025&REV_01
0610 ??? PCI Smart Card Reader Controller
0730 0x0751 CardBus Controller
- 100 ACPI/ENE0100 ENE CIR Receiver
+ 100 ACPI/ENE0100/3&21436425&0 ENE CIR Receiver
1025 1025123 PCI\VEN_127a&DEV_1025&SUBSYS_1025123A&REV_01\4&1351887D&0&58F0
1211 CB-1211 CardBus Controller
1225 CB-1225 CardBus Controller
@@ -6911,6 +7123,7 @@ exit 0
152C Macraigor Systems LLC
152D Quanta Computer Inc
2329 2338 J micron JM20329
+ 2519 n/a JMicron Technology Corp. / JMicron USA Technology Corp
152E Melec Inc
2507 0
152F Philips - Crypto
@@ -6967,7 +7180,7 @@ exit 0
5555 001 an cpci application
1557 Mediastar Co. Ltd
1558 Clevo/Kapok Computer
- 1558 gtx 670mx GPU
+ 1558 0x1558 gtx 670mx GPU
1559 SI Logic Ltd
155A Innomedia Inc
155B Protac International Corp
@@ -7006,7 +7219,7 @@ exit 0
A005 CCSI PCI20-CXS ARCnet
A006 CCSI PCI20-FOG-SMA ARCnet
A007 CCSI PCI20-FOG-ST ARCnet
- A008 CCSI PCI20-TB5 ARCnet
+ A008 CCSI PCI20-TB5 SONY
A009 CCSI PCI20-5-485 5 Mbit ARCnet
A00A CCSI PCI20-5-485D 5 Mbit ARCnet
A00B CCSI PCI20-5-485X 5 Mbit ARCnet
@@ -7037,7 +7250,7 @@ exit 0
1581 SEH Computertechnik GMBH
1582 Cytec Corporation
1583 Inet Technologies Inc
-1584 Uniwill Computer Corporation
+1584 Vetronix Corporation Engenharia Ltda
5054 VAS5055 VAS Vetronix Automotive Service
4003 VAS5052 VAS Vetronix Automotive Service
1585 Marconi Commerce Systems SRL
@@ -7095,10 +7308,10 @@ exit 0
15AB Bluesteel Networks Inc
15AC North Atlantic Instruments
15AD VMware Inc.
- 0405 9500MGS VMWare Player 3.1.6 Software Driver
+ 0405 9500MGS VMWARE SVGA II
0710 0740 Virtual SVGA
0720 VMXNET VMware PCI Ethernet Adapter
- 0740 0X0880 VMWare VMCI Bus Device
+ 0740 58 VMW5858are VMCI Bus Device
0770 n/a Standard Enhanced PCI to USB Host Controller
0778 0778 Sabrent USB-to-Parallel Adapter
07B0 VMXNET 3 VMware vSphere 4 PCI Ethernet Adapter
@@ -7133,7 +7346,7 @@ exit 0
0101 n2530a DX2+ FC-AL Adapter
0103 QX4 4 Port Fibre Channel Controller
0B01 SUBSYS_000015BC&REV_00 Agilen PCI-GPIB
- 1200 n/a Agilent QX4 Fibre Channel Controller
+ 1200 0x15bc Agilent QX4 Fibre Channel Controller
2530 ??? HP Communications Port
2531 ??? HP Toptools Remote Control Adapter
2532 ??? HP Toptools Remote Control Adapter
@@ -7400,15 +7613,21 @@ exit 0
167F iba AG
4634 FOB-IO Card
4C32 L2B PCI Board
- 5344 SD \ VID_03 и OID_5344 и PID_SU01G и REV_8.0 FOB-SD Card
+ 5344 SD \ VID_03 �¸ OID_5344 �¸ PID_SU01G �¸ REV_ FOB-SD Card
5443 FOB-TDC Card
+ F0B1 ibaFOB-io-D ibaFOB-io-D
F0B2 ibaFOB-2io-D ibaFOB-2io-D
F0B4 ibaFOB-4io-D ibaFOB-4io-D
+ F1B2 ibaFOB-2i-D ibaFOB-2i-D
+ F5DE ibaFOB-SDexp ibaFOB-SDexp
+ FDCE ibaFOB-TDCexp ibaFOB-TDCexp
+ FEC1 ibaFOB-io-ExpressCard ibaFOB-io-ExpressCard
1680 Dunti Corp.
1681 Hercules
0050 HWGPCI-54 Hercules WiFi PCI 802.11G
1682 PINE Technology, Ltd.
- 9875
+ 2931 unknown HD-467X-DDF2 video card
+ 9875 779A HD 7700 Series
1688 CastleNet Technology Inc.
0013 AR5213
168A Utimaco Safeware AG
@@ -7416,39 +7635,39 @@ exit 0
168C Atheros Communications Inc.
001c AR5005GS pci\ven_10ac&dev_ooo
00027 E017105B Atheros AR5B95 Wireless LAN 802.11 a/b/g/n Controller
- 00030 PCI\VEN_168C&DEV_0030&SUBSYS_3112168C&REV_01 TP-LINK 450Mbps Wireless N Adapter
- 0007 AR5007EG Wireless Network Adapter
- 0011 11a/b/g Wireless LAN Mini PCI Adapter 11a/b/g Wireless LAN Mini PCI Adapter
+ 00030 PCI\VEN_168C&DEV_0030&SUBSYS_16A810CF&REV_01 TP-LINK 450Mbps Wireless N Adapter
+ 0007 AR5007UG ROOT\MS_SSTPMINIPORT\0000
+ 0011 11L/b/g Wireless LAN Mini PCI Adapter 11L/b/g Wireless LAN Mini PCI Adapter
0012 AR5211 PCI\VEN_1217&DEV_7130&SUBSYS_FF501179&REV_01 DELL Latitude C510 as mini-PCI board behind the larg
0013 Netgear WPN311 Netgear RangeMax WPN311 PCI Wireless NIC
0019 AR5bmb5 802.11a Wireless Adapter
001A Atheros AR5005GS http://support1.toshiba-tro.de/tools/updates/atheros-wlan/atheros-wlan-xp-7702331.zip
001B AR5006X 802.11abg NIC
- 001c ACPI\PNP0C32\1 PCI\VEN_8086&DEV_2805&SUBSYS_80860101&REV_1000\4&245E8196&0&0301
+ 001c AR5007EG Atheros AR5007EG Wireless Network Adapter
001C other AR5BXB63 Atheros AR5BXB63 WWAN Chip
001c_again AR5BXB61 AR5006EX AR5423a
- 001D TP-Link TL-WN350GD PCI\VEN_168C&DEV_002E&SUBSYS_E034105B&REV_01\4&124A40C8&0&00E1
+ 001D TP-Link TL-WN350GD PCI\VEN_168C&DEV_002B&SUBSYS_E034105B&REV_01\4&124A40C8&0&00E1
002 c660 PCI/VEN_168C&DEV_002B&SUBSYS_7173144F&REV_01\4&200004B7&0&00E1
0023 AR5416 802.11a/b/g/nБеспроводной PC
- 0024 AR5B95 Atheros 802.11a/b/g/n
+ 0024 AR5B97 Atheros 802.11a/b/g/n
0027 E017105B Atheros AR5B95 Wireless LAN 802.11 a/b/g/n Controller
- 002A 2 Atheros AR5B91
- 002B 1461103c Atheros AR5B95
+ 002A AR9283-ALIA or DW1525 Wireless Network Adapter
+ 002B 66318898888811ad Atheros AR5B95
002C AR5006 Wireless 802.11 a/b/g/n WiFi Adapter (PCI-Express)
002D AR9287 rev01 802.11b/g/n
002E AR9287 Atheros ar9287 PCI Можливості: З
0030 1102 - 1103 Killer Wireless - N
- 0032 0x028000 Atheros AR9485
+ 0032 168Cx0032 Atheros AR9485
0034 DW1901 802.11a/b/g/n, BT4.0+HS
- 0036 Qualcomm Atheros 956x Wireless Adapter Acer E1-432g
+ 0036 AR956x Qualcomm Atheros AR956x Wireless Network Adapter
0037 AR1111 Atheros AR1111 WB-EG Wireless Network Adapter
- 003e 1 1
+ 003e QCA61x4 Wireless Network Adapter
007 AR5007UG Wireless Network Adapter
0280 0x002b PCI\VEN_168C&DEV_002B&SUBSYS_30AF185F
032 0x0280 Dell Wireless DW1703 802.11b/g/n, BT4.0 + HS
- 1014 AR5112 Atheros AR5212 802.11abg wireless Drivers
+ 1014 AR9285 Atheros AR5212 802.11abg wireless Drivers
14F1 nForce6100-430 PCI\VEN_168C&DEV_001A&SUBSYS_04181468&REV_01\4&FCF0450&0&10A4
- 168C 0x001b PCI\VEN_168C
+ 168C AREG9485WB-0036 Qualcomm Atheros AR9485WB-EG Wireless Network Adapter
1a3b ar8132 802.11a/b/g/n Wireless PCI Adapte
3002 AR3011 Bluetooth 3.0
6666 AR5007UG Atheros AR5B95 Wireless LAN 802.11 a/b/g/n Controller
@@ -7459,6 +7678,7 @@ exit 0
168E Hyundai MultiCAV Computer Co. Ltd.
168F KDS Innotech Corp.
1690 NetContinuum, Inc.
+ 0742 BCM2070 BRCM Bluetooth Controller BCM2070
1693 FERMA
0212 PLX PCI9054 EPONINE ESR-PCI Board
0213 Motorola MPC8245 EPONINE MTM120 PCI Board
@@ -7505,7 +7725,7 @@ exit 0
170D SensoMotoric Instruments GmbH
170E San Valley Systems, Inc.
170F Cyberdyne Inc.
-1710 Pelago Nutworks
+1710 Pelago Networks
5812 5812 itech numeric small keyboard
9835 9825 2 serial, 1 LPT port PCI Card
1711 MyName Technologies, Inc.
@@ -7534,6 +7754,7 @@ exit 0
0261 RV280 Sapphire Radeon 9250 - Secondary
7176 RV250 RADEON 9000 ATLANTIS PRO
7177 RV280 RADEON 9000 ATLANTIS PRO - Secondary
+ 71C6 RV530 ATI RADEON X1650 Series
7244 RV580 Sapphire ATI X1950 XT
7C12 RV280 RADEON 9200 ATLANTIS - Secondary
7C13 RV280 RADEON 9200 ATLANTIS
@@ -7556,10 +7777,11 @@ exit 0
0128 17A1 USB2.0 JPEG WebCam
17A7 Start Network Technology Co., Ltd.
17AA Legend Ltd. (Beijing)
+ 0106 Intel HD Graphics 2000 Intel Sandy Bridge-MB GT1 - Integrated Graphics Controller [D2/J1/Q0] [Lenovo
7145 138A Mobility ATI Radeon X1400
17AB Phillips Components
17AF Hightech Information Systems, Ltd.
- 4150 200 HIS Excalibur Radeon 9600
+ 4150 200 HIS Excalibur Radeon 6870
7291 RV560 HIS Radeon X1650 XT
17BE Philips Semiconductors
17C0 Wistron Corp.
@@ -7574,8 +7796,12 @@ exit 0
5832 X2 Xframe II 10GbE PCI-X 2.0 Adapter
5833 X3 E3100 PCI-Express 10Gb Ethernet Interface
17db Cray, Inc.
+ 0101 NA Seastar Network
+ 0201 NA Gemini Network
+ 0301 NA Aries Network
17E9 DH electronics GmbH / Sabrent
02a7 0000 USB VGA/DVI Adapter UV-D4A1-B
+ 4318 n/a Dell GigabitEthernet (USB-G1000)
17EE Connect Components, Ltd.
4153 RV350 Radeon 9550
17F3 RDC Semiconductor Co., Ltd.
@@ -7590,7 +7816,7 @@ exit 0
6060 modem USB Controller (OHCI)
6061 V90479. 1 USB 2.0 Controller (EHCI)
17FE INPROCOMM
- 2220 n/a Generic IEEE 802.11b/g Wireless LAN Card
+ 2220 2120 Generic IEEE 802.11b/g Wireless LAN Card
1813 Ambient Technologies Inc
3059 VT8237 AC97 Enhanced Audio Controller - the 8251 controller is different
4000 MD5628D-L-A intel V.92 HaM Modem
@@ -7598,7 +7824,7 @@ exit 0
1814 Ralink Technology, Corp.
0001 ...B742000 ...I don't know
0101 2460 802.11b RT2460 802.11b Baseband/MAC integrated chip
- 0201 PCI\VEN_1814&DEV_5390&SUBSYS_1451033 Ralink Chipset 802.11b/g WLAN Card
+ 0201 PCI\VEN_1814&DEV_3298&SUBSYS_1451033 Ralink Chipset 802.11b/g WLAN Card
0201 (1) WiFiSKY Ralink RT2500 802.11b/g WLAN Card
0201 (2) 001167F044E5 W-LAN 802.11b/g
0201 (3) RT2560F RaLink
@@ -7616,10 +7842,10 @@ exit 0
3060 RT3060 Ralink corp. RT3060 Wireless 802.11n PCI adapter
3090 Ralink RT3090 Ralink RT3090 Wireless Lan Card with Bluetooth
3290 1010 802.11n Bluetooth 4.0
- 3298 -3298 Ralink Bluetooth
+ 3298 -3290 Ralink Bluetooth
3592 RT3592 Wireless LAN a/b/g/n plus Bluetooth 3.0 combo
5360 RT5360 http://www.wikidevi.com/wiki/D-Link_DWA-525_rev_A2
- 5390 RT5390 Ralink RT5390 802.11b/g/n WiFi
+ 5390 ASUS X55VD VEN_1814&DEV_5390&SUBSYS_E054105B&REV00 802.11n Wireless Lan Card - Asus X55V - Win 7 64bit - Foxconn Wireless
539B RT5390R Ralink RT5390R 802.11b/g/n WiFi
9876 b8341462 Edimax 54 MBit WLan 802.11g rt 2500
1815 devolo AG
@@ -7670,13 +7896,13 @@ exit 0
000a 232/4-PCI-335 Fastcom:232/4-PCI-335 Asyncronous RS232 serial adapter
18FB Resilience Corporation
1904 Ritmo
- 2031 n /a controladora ethernet
- 8139 8139 Realtek RTL8139 PCI Fast Ethernet Adapter
+ 2031 n /a silan sc92031 Network adapter
+ 8139 8129 Realtek RTL8139 PCI Fast Ethernet Adapter
8139 8139 Realtek RTL8139 PCI Fast Ethernet Adapter
1905 WIS Technology, Inc.
1910 Seaway Networks
0001 SW5000-NCA Seaway Network Content Accelerator
-1912 usb 3.0 Renesas Electronics
+1912 Renesas Electronics
0014 YET-D720201-0014 usb3.0 renesas
0015 upd720202 nec
0015_ EC01-P Renesas Electronics USB 3.0 Host Controller
@@ -7687,32 +7913,36 @@ exit 0
1026 AR8121/AR8113 PCI-E ETHERNET CONTROLLER
1048 Atheros L1 Gigabit Ethernet 10/100/1000 Base-T Controller
1060 AR8162 PCI-E Fast Ethernet Controller
- 1062 AR8132 Atheros AR8132 PCI-E Контроллер Fast Eth
+ 1062 AR8132 Atheros AR8132 PCI-EКонтроллер Б
1062c Atheros L1 Gigabit Ethernet 10/100/1000 Base-T Controller
1063 AR8131 Atheros AR8131 PCI-E Gigabit Ethernet Controller
- 1073 AR81512 Atheros AR81512
+ 1073 AR8151 Atheros AR8151
1083 78161462 Atheros AR8151 PCI-E Gigabit Ethernet Controller (NDIS 6.20)
- 1090 AR8162 Fast Ethernet
+ 1090 AR8162+ Fast Ethernet
1091 AR8161/8165 PCI-E Gigabit Ethernet Controller
+ 10a0 Atheros AR8172/8176/8178 Controller Ethernet Qualcomm Atheros AR8172/8176/8178 PCI-E Fast (NDIS 6.30)
168c Atheros L1 Gigabit Ethernet 10/100/1000 Base-T Controller
- 1969 Atheros L1 Gigabit Ethernet 10/100/1000 Base-T à šà ¾Ã ½Ñ'Ãâ€Ë
+ 1969 Atheros L3 Atheros AR815x/816x Ethernet Controller Driver
2048 Atheros L2 Fast Ethernet 10/100 Base-T Controller
2049 234543 der
- 2060 f121 AR8152 v1.1 Fast Ethernet
+ 2060 fd501179&rev-c1 AR8152 v1.1 Fast Ethernet
2061 1 Ethernet Controller
2062 FB501179 Qualcomm Atheros AR8152/8158
4747 1969 VEN_1969
9876 Atheros L2 Fast Ethernet 10/100 Base-T Controller
+ E091 Killer E2200 Killer E2200 Network Card
+ R091 Killer E2200 Killer E2200 Network Card
1971 AGEIA Technologies, Inc.
- 0001 PCI\\VEN_1971&DEV_0000&SUBSYS_00021028&REV_00\\4&2 AGEIA PhysX 100 Series PCI Express Card
+ 0001 PCI\VEN_1971&DEV_0000&SUBSYS_0003105B&REV_00 AGEIA PhysX 100 Series PCI Express Card
1011 PCI\\VEN_1971&DEV_1011&CC_FF00 AGEIA PhysX 100 Series PCI Card
1021 AGEIA PhysX 200 Series PCI Express Card
197B JMicron Technology Corp.
0250 JMC25 JMC250 PCI Express, Gigabit Ethernet
0256 JMC2XX JMC260 PCI Express Fast Ethernet
- 0260 JMC2XX JMC260 PCI Express Fast Ethernet
+ 0260 ethernet JMC260 PCI Express Fast Ethernet
+ 0261 0261 JMB38X MS Host Controller
1234 12345678 1234567
- 197b JMB38X JMB38X SD/MMC Хост-Контролл&
+ 197b JMB38X JMB38X SD/MMC
2360 JMicron JMB36X JMB36X
2361 JMB363 PCI Express to SATA II and PATA Host Controller
2363 JMB36X JMicron JMB362/JMB363 AHCI Controller
@@ -7720,13 +7950,14 @@ exit 0
2368 JMB368 IDE Comtroller
2380 JMB38X IEEE 1394 Host Controller
2381 JMB38X JMB38X SD Host Controller
- 2382 JMB38Xam5 JMB38X SD/MMC Host Controller ftp://driver.jmicron.com.tw/CardReader/Windows/
+ 2382 JMB38X JMB38X SD/MMC Host Controller
2383 0261 JMB38X MS Host Controller
2384 JMB38X JMB38X xD Host Controller
- 2391 9.2.0.1031 Intel
- 2392 721179 JMB38X SD/MMC Host Controller
+ 2391 JMB38X JMB38X SD/MMC - JMicron PCIe SD Host Controller
+ 2392 721179 JMB38X SD/MMC - JMicron PCIe SD Host Controller
2393 Chip Number: JMB38X Chip Description: JMB38X SD/MMC Host Controller
7002 JMB38Xam5 JMB38X SD/MMC Host Controller
+ JMB38 JMB38X JMB38X SD/MMC Host Controller
198a Nallatech
0210 XMC-210
0220 XMC-220
@@ -7747,7 +7978,7 @@ exit 0
19a2 ServerEngines
0710 Emulex OneConnect 10Gb NIC (be3) (rev01)
0712 Emulex OneConnect 10Gb iSCSI Initiator (be3) (rev 01)
- 0714 Emulex OneConnect 10Gb FCoE Ини& Emulex OneConnect 10Gb FCoE Инициатор (be3) (&
+ 0714 Emulex OneConnect 10Gb FCoE Emulex OneConnect 10Gb FCoE Инициатор (be3) (&
19A8 DAQDATA GmbH
19AC Kasten Chase Applied Research
0001 ACA2400 Crypto Accelerator
@@ -7764,12 +7995,14 @@ exit 0
1B13 Jaton Corporation USA
0001 GeForce4 MX 440 nVidia Corporation NV17
1B21 Asustek - ASMedia Technology Inc.
+ 0612 Asmedia 106x SATA Controler Link Below to Mainboard Driver inside
1041 SUBSYS_2104174C USB 3.0 Host Controller Driver for Windows 7
- 1042 1 Asmedia ASM104x USB 3.0 Host Controller
+ 1042 pci\ven_14f1&dev_2f50&subsys_205f14f1&rev_01\4&cf8 Asmedia ASM104x USB 3.0 Host Controller
1B6F Etron
7023 DEV_7023&REV_010 Etron USB 3.0 Extensible Host Controller
1B73 Fresco Logic Inc.
1000 1 PCI\VEN_1000&DEV_0020&SUBSYS_10301000&REV_01PCI\VEN
+ 1009 Unknown USB3.0 host controller
1100 n/a USB 3.0 eXtensibile Host controller
1B91 Averna
1BAD ReFLEX CES
@@ -7787,10 +8020,10 @@ exit 0
1FCF Miranda Technologies Ltd.
2001 Temporal Research Ltd
3C19 Ralink RT5370 USB <=> Wireless N 150 Adapter
- F103 . .
+ F103 .7D01 .driver
2646 Kingston Technology Co.
0001 12333 22323
- 2646 6.06000 22323
+ 2646 6.06324 22323
270F ChainTek Computer Co. Ltd.
2EC1 Zenic Inc
3388 Hint Corp.
@@ -7873,8 +8106,9 @@ exit 0
4348 wch.cn
1453 202204073 WCH353L
3253 32534348 SIE9835 PCI=>DUAL SERIAL
- 5053 4348 5053
- 7173 ch CH35X
+ 5053 4348 4980
+ 7053 35255 PCI Serial Port
+ 7173 ch350L CH35X
4680 UMAX Computer Corp.
4843 Hercules Computer Technology
4943 Growth Networks
@@ -7890,7 +8124,8 @@ exit 0
4D54 Microtechnica Co Ltd
4DDC ILC Data Device Corp.
4E8 Samsung Windows Portable Devices
- 618d rev_0400 usb lan adapter
+ 618c rev_0400 usb lan adapter4
+ 618d rev_0400 usb lan adapter4
5053 TBS/Voyetra Technologies
2010 14441 Daytona Audio Adapter
508A Samsung T10 MP3 Player
@@ -7933,7 +8168,7 @@ exit 0
88F2 86C968 Vision 968 GUI Accelerator VRAM rev. 2
88F3 86C968 Vision 968 GUI Accelerator VRAM rev. 3
8900 86C775 Trio64V2/DX
- 8901 pci\ven_5333dev_8C2E&SUBSYS_00011179&REV_05\4&74C6 S3 trio64uv+ for windows xp
+ 8901 pci\ven_5333dev_8C2E&SUBSYS_00011179&REV_05\4&74C6 S3 trio64uv+ for windows 7
8902 86C551 SMA Family
8903 TrioV Family
8904 86C365/366 Trio3D QFP/BGA
@@ -7988,6 +8223,7 @@ exit 0
5853 Citrix Systems, Inc.
0001 n/a Citrix XenServer PV SCSI Host Adapter
0002 n/a Citrix PV Bus Device
+ C000 N/A XenServer Device of Windows Update
6409 Logitec Corp.
6666 Decision Computer International Co.
0001 815 PCCOM4
@@ -7999,34 +8235,40 @@ exit 0
3c03 DWL-G122 Wifi PCI Same chipset of RALINK RT2500
3C07 D-Link Wireless G DWA-110 USB Adapter PCI\VEN_1799&DEV_700F&SUBSYS_700F1799&REV_20\3&61AAA01&0&48
8080 Xirlink, Inc
- 1040 VIA 82C259 rev 0 PCI\VEN_8086&DEV_1040&SUBSYS_1008086&REV_00
+ 1040 VIA 82C259 rev 0 PCI\VEN_8086&DEV_0084&SUBSYS_13158086&REV_00
8086 Intel Corporation
27B8 82801GB/GR Intel(R) 82801GB/GR (ICH7 Family) LPC Interface Controller
+ 0004 0x05971028 IUSB3\ROOT
0008 Extended Express System Support Ctrlr
0011 0x108D Ethernet Controller
0042 Intel graphics Intel Q57/H55 Clarkdale (Onboard on D2912-A1x)
- 0046 Intel Graphics Media Accelerator HD Intel Graphics Media Accelerator HD
+ 0044 0044 Intel(R) Processor DRAM Controller
+ 0046 Intel(R) HD Graphics (Core i3) Intel(R) HD Graphics
0054 not known Audio
0082 6205 Centrino Advanced-N 6205
- 0083 Mobile Intel® 5 Series Chipset Intel® PROSet/Wireless Software and Drivers for Windows 7 32-Bit
+ 0083 Mobile Intel® 5 Series Chipset Intel Centrino Wireless-N 1000
0084 Intel PROSet WiFi 1000 Intel Wireless Link WiFi 1000, download -> http://downloadmirror.intel.com/20791/eng/Wireless_14.3.0
0085 0x0280 Intel Centrino(R) Advanced-N 6205
0087 1306 00E1
008A ??? Intel Centrino Wireless-N1030
008B Intel Wireless-N 1030 Intel(R) Centrino(R) Wireless-N 1030
0091 622ANHW Intel® Centrino® Advanced-N 6230
- 0102 0001 Intel HD Graphics 2000
+ 0100 0100 2nd Generation Intel(R) Core(TM) Processor Family DRAM Controller
+ 0102 0001 Intel HD Graphics 3000
0104 2nd Gen Intel(R) Core(TM) Processor Family DRAM Controller (Host Bus Controller)
- 0106 HD Graphics 3000/2000 2nd Generation Intel® Core™ Processors with Intel® HD Graphics 3000/2000
+ 0106 HD Graphics 3000/2000 asus x501a
010A 010A Lenovo TS130 Intel Video Adapter HD
- 0111 82810e Intel Graphics Conroller
+ 0111 82915 Intel Graphics Conroller
0116 intel core i3 Intel HD Graphics 3000
0123 0300 hardwareids
+ 0152 Intel HD Graphics 2500 3rd Generation Intel Core Processors with Intel HD Graphics 2500
+ 0153 Intel® Dynamic Platform and Thermal Framework Driv Use the Link, choose Win7 64Bit -> Others -> Intel DPTF Driver -> Global. Then download, install and
+ 0154 0x01548086 3rd Gen Core processor DRAM Controller (rev 09)
0162 Core I5, Core I7, Ivy Bridge Graphics embedded
- 0166 I3 3rd Generation Intel® HD Graphics 4000
+ 0166 I3 Intel(R) HD Graphics 4000
0189 Intel Centrino Wireless-N 1030 Bluetooth Adapter Intel Centrino Wireless Bluetooth 3.0 + High Speed Adapter
027AE 82945GM Mobile Intel(R) 945 Express Chipset Family
- 027D8 293esd Mobile PCI-to-PCIsdsdsdI2)
+ 027D8 293esd High Definition Audio Controller
0283E AA01211025 Intel(R) ICH8 Family SMBus Controller
0308 3220 PCI Audio Device + modem
0309 80303 I/O Processor PCI-to-PCI Bridge Unit
@@ -8049,15 +8291,18 @@ exit 0
0341 41210 Serial to Parallel PCI Bridge B
0370 80333 Segment-A PCI Express-to-PCI Express Bridge
0371 80333 A-Bus IOAPIC
- 0372 80333 Segment-B PCI Express-to-PCI Express Bridge
+ 0372 0893 network controller
0373 80333 B-Bus IOAPIC
0374 80333 Address Translation Unit
0401 266E P040100
- 0402 ACPI x86-based PC intel core i5
- 0482 82375MB PCI-EISA Bridge (PCEB)hp dx 7300 microwave tower
+ 0402 ACPI x86-based PC HD Graphics 4200
+ 0412 Intel HD Graphics 4600 ven_8086&dev_0412
+ 0416 SUBSYS_197A103C Intel(R) HD Graphics 4600
+ 0482 82375MB PCI\VEN_8086&DEV_3B64&SUBSYS_20391B0A&REV_06
0483 82424TX/ZX CPU (i486) Bridge (Saturn)
0484 82378ZB/IB SIO ISA Bridge
- 0486 82425EX 1261028
+ 0486 PCI\VEN_8086&DEV_1C22&SUBSYS_2AC2103C&REV_04 HP Pro 3400 XPx32/7x32 drivers
+ 04931028 0x1502 Intel 82579 Gigabit Network Card
04A3 82434bX/zX Mercury/Neptune Cache/DRAM Controller
0500 E8870 Processor Bus Controller
0501 E8870 Memory Controller
@@ -8086,14 +8331,33 @@ exit 0
0888 Intel Centrino Wireless-N 2230
088E 40608086 Intel Centrino Advanced N 6235
0890 Intel Network Controller
- 0894 86881 MRMgRH
+ 0894 86881 Centrino Wireless-N 105
0896 Wireless-N 130 Intel Centrino Wireless-N 130
08AE 802.11n Intel Centrino Wireless-N 100
+ 08B1 PCI\VEN_8086&DEV_08B1 Intel(R) Dual Band Wireless-AC 7260
+ 08B3 ? Intel Dual Band Wireless-AC 3160
0960 80960RP i960 RP Microprocessor/Bridge
0962 80960RM/RN i960RM/RN Microprocessor/Bridge
0964 80960RP i960 RP Microprocessor Bridge
+ 0A03 0A03 Intel(R) Dynamic Platform and Thermal Framework Processor Participant
+ 0A04 0A04 PCI standard host CPU bridge
+ 0A0C 0A0C High Definition Audio Controller
+ 0A16 3000 Intel HD Graphics Controller
+ 0A1E 0A1 Intel(R) HD Graphics
0BE1 0000000 Intel Graphics Media Accelerator 3600 Series
+ 0C00 0C00 Intel(R) 4th Gen Core processor DRAM Controller
0C05 V9201015 Intel(R) 6 Series/C200 Series Chipset Family SMBus Controller
+ 0F00 0F00 Intel(R) Pentium(R)/Celeron(R) processor N-/J- series SoC Transaction Router
+ 0F04 0F04 High Definition Audio Controller
+ 0F12 0F12 Intel(R) Pentium(R)/Celeron(R) processor N-/J- series Platform Control Unit - SMBus Port
+ 0F18 0F18 Intel(R) Trusted Execution Engine Interface
+ 0F1C 0F1C Intel(R) Pentium(R)/Celeron(R) processor N-/J- series Platform Conrol Unit LPC: Bridge to Intel Lega
+ 0F23 0F23 Intel(R) Pentium(R)/Celeron(R) processor N-/J- series AHCI
+ 0f31 5200 Iris pro 5200
+ 0F35 0F35 Intel(R) USB 3.0 eXtensible Host Controller
+ 0F48 0F48 Intel(R) Pentium(R)/Celeron(R) processor N-/J- series PCI Express Root Port
+ 0F4A 0F4A Intel(R) Pentium(R)/Celeron(R) processor N-/J- series PCI Express Root Port
+ 100 0100 2nd Generation Intel(R) Core(TM) Processor Family DRAM Controller
1000 82542 Gigabit Ethernet Controller
1001 2572 10/100/1000 Ethernet Controller (Fiber)
1002 Pro 100 LAN+Modem 56 CardBus II
@@ -8103,7 +8367,7 @@ exit 0
100C 82543EI/GC Gigabit Ethernet Controller (Copper)
100D 82544GC Gigabit Ethernet Controller (LOM)
100E 02000 Intel Pro 1000/MT
- 100F 82545EM Gigabit Ethernet Controller (copper)
+ 100F 82545EM Intel(R) PRO/1000 MT Network Connection
1010 82546EB Dual Port Gigabit Ethernet Controller (Copper)
1011 82545EM Gigabit Ethernet Controller (Fiber)
1012 82546EB Dual Port Gigabit Ethernet Controller (Fiber)
@@ -8147,7 +8411,7 @@ exit 0
1050 82562EZ PRO/100 VE Network Connection
1051 82801EB/ER PRO/100 VE Network Connection
1052 82801EB/ER PRO/100 VM Network Connection
- 1053 82801EB/ER PRO/100 VM Network Connection
+ 1053 82801EB/ER PRO/100 VM ork NetConnectionw
1054 82801EB/ER PRO/100 VE Network Connection (mobile)
1055 82801EB/ER PRO/100 VM Network Connection (mobile)
1059 82551QM Fast Ethernet PCI/CardBus Controller
@@ -8182,6 +8446,7 @@ exit 0
10c4 82562GT Intel 82562GT 10/100 Network Controller
10c4 82562EZ PLC Intel 82562GT 10/100 Network Controller
10c9 82576? 82576 Gigabit ET Dual Port Server Adapter
+ 10cd 82567 Intel(R) 82567LF-2 Gigabit Network Connection
10CE 82567V-2 Intel 82567V-2 Gigabit Network Connection
10d3 82574L Intel® 82574L Gigabit Ethernet Controller
10d6 82575 82566 DM-2-gigabyte
@@ -8202,9 +8467,10 @@ exit 0
1112 82815 Internal Graphics Device
1120 82815 Host-Hub Interface Bridge / DRAM Ctrlr
1121 82815 AGP Bridge
+ 112D 2200 pci simple controller
1130 82815/82815EM/EP Host-Hub Interface Bridge / DRAM Ctrlr
1131 82815/82815EM/EP AGP Bridge
- 1132 65416 Internal Graphics Device [810/815 chipset AGP]
+ 1132 65416http://www.pcidatabase.com/update_device.php? Internal Graphics Device [810/815 chipset AGP]
1161 82806AA I/O APIC Device
1162 BECC XScale 80200 Companion Chip (FPGA)
1179 82546EB Dual Port Gigabit Ethernet Controller
@@ -8218,7 +8484,7 @@ exit 0
1226 82596 EtherExpress PRO/10
1227 82801db ich4 LAN Controller with 82562EM
1228 EE PRO/100 Smart Intelligent 10/100 Fast Ethernet Adapter
- 1229 1e22 Intel(R) PRO/100 M 00000Desktop Adapter http://downloadmirror.intel.com/8659/eng/LAN_ALLOS_11.2_PV
+ 1229 1e22 Intel(R) PRO/100 http://ftp.dell.com/network/R56484.EXE
122D 82437FX System Controller (TSC)
122E 82371AB/EB PCI PCI to ISA Bridge (Triton)
1230 FW82371AB IDE Interface (Triton)
@@ -8232,9 +8498,10 @@ exit 0
123D 683053 Programmable Interrupt Device
123E 82466GX Integrated Hot-Plug Controller (IHPC)
123F 82466GX Integrated Hot-Plug Controller (IHPC)
+ 124 PCI\VEN_8086&DEV_9C22 24c6
1240 82752 AGP Graphics Accelerator
124B 293esd Mobile PCI-to-PCIsdsdsdI2)
- 124B 293esd Mobile PCI-to-PCIsdsdsdI2)v5
+ 124B PCI\VEN_8086&DEV_2E17&CC_070002 24c6
124C 9776 Mobile PCI-to-PCI Bridge (MPCI2)
1250 82430HX System Controller (TXC)
12D8 92XX SIGMATEL STAC 92XX C-Major HD Audio
@@ -8259,6 +8526,12 @@ exit 0
1525 82567V-4 Intel 82567V-4 Gigabit Network Connection
1526 82576 Intel Gigabit ET2 Quad Port Server Adapter
1533 210 Intel I210 Gigabit Network Connection
+ 153A USB\VID_0424&PID_2504&REV_0001 Intel I217-LM Ethernet Connection
+ 153B I217-V Intel Gigabit Ethernet Controller I217-V
+ 1559 0x8CBA Intel Ethernet I218-V
+ 155a I218LM Gigabit Ethernet
+ 15A1 0x8CBA Intel® Ethernet Connection I218-V
+ 15A2 I218LM Gigabit Ethernet
167D 2200bg PCI Simple Communications Controller
1960 80960RP i960RP Microprocessor
1962 ??? Promise SuperTrak SX6000 IDE RAID Controller
@@ -8272,35 +8545,57 @@ exit 0
1A30 82845G[GL/GV/GE/PE] Host-Hub Interface Bridge
1A31 82845[MP/MZ] AGP Bridge
1A38 5000P 5000 Series Chipset DMA Engine
- 1c02 8086&dev_1c02 SATA ahci controller 3Gbps 6 ports
+ 1A3E Z77 C216 Chipset - Platform controller hub
+ 1c02 1C02 Intel(R) 6/C200 Series Chipset Family 6 Port SATA AHCI Controller
1c02_ 8086&dev_1c02 Intel(R) Desktop/Workstation/Server Express Chipset SATA AHCI Controller
1C03 Intel(R) Mobile Express Chipset SATA AHCI Controll Intel(R) CPT Chipset Family 6 Port SATA AHCI Controller
- 1C22 win7 64-bit (tc40140300b.exe) Intel(R) 6 Series/C200 Series Chipset Family SMBus Controller
- 1C26 HM65 USB Enhanced Host Controller
+ 1C10 1C10 Intel(R) 6/C200 Series Chipset Family PCI Express Root Port
+ 1C18 1C18 Intel(R) 6/C200 Series Chipset Family PCI Express Root Port
+ 1C1A 1C3Afsfsdf 1C3Asfsfsdf
+ 1C1C 1C1C Intel(R) 6/C200 Series Chipset Family PCI Express Root Port
+ 1C1E 1C1E Intel(R) 6/C200 Series Chipset Family PCI Express Root Port
+ 1C20 1C20 High Definition Audio Controller
+ 1C22 win7 64-bit Intel(R) 6 Series/C200 Series Chipset Family SMBus Controller
+ 1C26 HM65 Intel(R) 6/C200 Series Chipset Family USB Enhanced Host Controller
+ 1C2D 1C2D Intel(R) 6/C200 Series Chipset Family USB Enhanced Host Controller
1c34a 0780 pci simple communications controller
1c3a 161C103C Intel Management Engine Interface
+ 1c3a. 161C103C Intel Management Engine Interface
1C3b 111 Series Chipset Family HECI Controller #2
1C3D Intel(R) 6 Series Series Chipset Family Intel(R) Active Management Technology - SOL
1C49 FCD01179 04
+ 1C4C Q65 Intel(R) Q65 Express Chipset Family LPC Interface Controller
1D3A X79 series chipset HECI Controller X79/C600 series chipset Management Engine Interface
+ 1D3D CC0700 Intel Active Management Technology AMT
1e00 Intel H77 Express Chipset 2 ports IDE Controller
1e02 SUBSYS_102E17AA&REV_04 Intel 7 Series/C216 Chipset Family SATA AHCI Controller
+ 1E03 PCI\CC_010601 Intel(R) 7 Series Chipset Family SATA AHCI Controller
1e08 Intel H77 Express Chipset 2 ports IDE Controller
- 1E12 c4 rev
+ 1E10 C216 Intel(R) 7 Series/C216 Chipset Family PCI Express Root Port
+ 1E12 1E12 Intel(R) 7 Series/C216 Chipset Family PCI Express Root Port
+ 1E16 C216 Intel(R) 7 Series/C216 Chipset Family PCI Express Root Port
+ 1E20 1E20 High Definition Audio Controller
1E22 Intel(R) 7 SeriesC216 Chipset Family SMBus Host Co SM-Bus Controller of the Intel Z77 Chipset
- 1e31 Intel USB 3.0 eXtensible Host Controller Intel USB 3.0
- 1E3A PCI\VEN_8086&DEV_1E3A&SUBSYS_500217&REV_04 Intel Management Engine Interface (MEI)
+ 1E26 C216 Intel(R) 7 Series/C216 Chipset Family USB Enhanced Host Controller
+ 1E2D C216 Intel(R) 7 Series/C216 Chipset Family USB Enhanced Host Controller
+ 1e31 Intel USB 3.0 eXtensible Host Controller 1E31 Intel USB 3.0
+ 1E3A PCI\VEN_8086&DEV_1E3A&SUBSYS Intel Management Engine Interface (MEI)
1E3A_ C216 8555555555555999999999999999999999999999999999999999999999999999999900000000000000000001222222222222
1E3A__ Z77 C216 Chipset - Platform controller hub
- 1E3D 833810F7 Intel(R) AMT LMS_SOL for AMT 8.xx
- 1E59 140889 140889
+ 1E3D 602317 Intel(R) AMT LMS_SOL for AMT 8.xx
+ 1E59 140889 Intel(R) HM76 Express Chipset LPC Controller
+ 1f41 Avoton SoC Intel Corporation Ethernet Connection I354
2000 CA 95054 505943621
2014 0x18C9 Framegrabber
2048 Atheros L2 Fast Ethernet 10/100 Base-T Controller
2124 27DA PRO/100 VE Network Connection
- 2125 82801AA AC97 Audio Controller. website to download - http://www.intel.com/design/chipsets/manuals/29802801.p
+ 2125 82801G AC97 Audio Controller. website to download - http://www.intel.com/design/chipsets/manuals/29802801.p
2222 82801 Intel Management Interface
+ 2250 5110P Intel(R) Xeon Phi(TM) Coprocessor
2255 810D1043 02\3
+ 225C SE10 Intel(R) Xeon Phi(TM) Coprocessor
+ 225D 3120 Intel(R) Xeon Phi(TM) Coprocessor
+ 225E 31S1P Intel(R) Xeon Phi(TM) Coprocessor
2406 82801 / ? AC97 Modem Controller / PCI Modem
2410 82801AA LPC Interface
2411 82801AA IDE Controller (UltraATA/66)
@@ -8329,7 +8624,7 @@ exit 0
244A 82801BAM IDE Controller
244B 82801BA IDE Controller
244C 82801BAM LPC Interface Bridge
- 244E 82801DB Hub Interface to PCI Bridge
+ 244E 82801DB Intel(R) 82801 PCI Bridge
2450 82801E LPC Interface Bridge
2452 82801E USB Controller
2453 82801E SMBus Controller
@@ -8370,7 +8665,7 @@ exit 0
24D2 82801EB/ER USB UHCI Controller 1
24D3 82801EB/ER SMBus Controller
24D4 82801EB/ER USB UHCI Controller #2
- 24D5 ALC850 Realtek AC'97 Звуковой Сист&
+ 24D5 AD1888/AD1980 Analog Devices AD1888/AD1980 @ Intel 82801EB ICH5 - AC'97 Audio Controller [A-2/A-3]
24D6 82801EB/ER Motorola SM56 Data Fax Modem
24D7 82801EB/ER USB UHCI Controller #3
24DB 82801EB/ER EIDE Controller
@@ -8492,46 +8787,50 @@ exit 0
269B 631xESB/6321ESB/3100 SMBus Controller
269E 631x/632x ESB2 PATA100 IDE Controller
27 82801G ICH7 Family
- 2770 82945G/GZ/P/PL Host Bridge/DRAM Controller
+ 2770 82945G/GZ/P/PL Intel(R) 945G/GZ/GC/P/PL Processor to I/O Controller
2771 82945G/GZ/P/PL Host to PCI Express Bridge
- 2772 82945G/GZ Chipset Intel® 82945G Express
+ 2772 82945G/GZ PCI\VEN_8086&DEV_2772&SUBSYS_2A57103C&REV_02\3&11583659&0&10
2776 82945G INTEL(R) 82945G EXPRESS FAMILY
277C 82975X Intel 975X Express Chipset
2780 82915G Graphics device
2782 82915G Graphics device: 82915G/GV/910GL Express Chipset Family
2792 038000 Mobile Intel(R) 915GM/GMS/, 910GML Express Chipset Family
2794 945 Mobile chipset
- 27A0 874079 i945GM Express Chipset
+ 27A0 874079 Mobile Intel(R) 945GM/GU/PM/GMS/940GML/943GML and Intel(R) 945GT Express Processor to DRAM Controlle
27A1 Intel 82945PM Memory Controller Intel Corporation Mobile 945PM Express PCI Express Root Port
27A2 HPQ0006 Mobile Intel(R) 945 Express Chipset Family
27A6 945GM Intel 945GM/950
- 27B8 945GL PCI\VEN_8086&_27B8&SUBSYS_8179DEV1043&REV_01\3&11583659&0&F8
+ 27B8 945GL Intel(R) ICH7 Family LPC Interface Controller
+ 27B9 ICH7 Intel(R) ICH7M/U LPC Interface Controller
27BC NM10 NM10 Family LPC Interface Controller
- 27c0 82801GB/GR/GH 82801 GB Serial ATA Storage Controllers
+ 27c0 82801GB/GR/GH Intel(R) N10/ICH7 Family Serial ATA Storage Controller
27C1 82801GB/GR/GH AHCI Controller
27c3 82801GR/GH Raid Controller
27c4 82801GBM/GHM SATA IDE Controller
- 27C5 82801GBM/GHM AHCI Controller
+ 27C5 82801GBM/GHM Intel(R) ICH7/M/MDH SATA AHCI Controller
27C6 82801GHM Raid Controller
- 27c8 946 USB UHCI Controller
- 27c9 USB UHCI Controller USB UHCI Controller
- 27CA -INTEL USB UHCI Controller
- 27CB USB UHCI Controller
- 27CC 82801G Intel(R) 82801G (ICH7 Family) USB2 Enhanced Host Controller
+ 27c8 946 Intel(R) N10/ICH7 Family USB Universal Host Controller
+ 27c9 USB UHCI Controller Intel(R) N10/ICH7 Family USB Universal Host Controller
+ 27CA ICH7 Intel(R) N10/ICH7 Family USB Universal Host Controller
+ 27CB ICH7 Intel(R) N10/ICH7 Family USB Universal Host Controller
+ 27CC 82801G Intel(R) N10/ICH7 Family USB2 Enhanced Host Controller
27D0 82801G Intel(R) 82801G (ICH7 Family) PCI Express Root Port
27D2 82801G Intel(R) 82801G (ICH7 Family) PCI Express Root Port
- 27d8 FF311179 Realtek High Definition Audio Driver FF311179 thequetta.com
+ 27D4 ICH7 Intel(R) N10/ICH7 Family PCI Express Root Port
+ 27d8 27D8 UAA Bus Driver for HD Audio
27d8xzx PCI\VEN_8086&DEV_2485&SUBSYS_AD021458&REV_02 Microsoft UAA Bus HD Audio
27D9 A62516F3 IDT High Definition Audio Driver
- 27DA 82801G Intel[R] 82801G (ICH7 Family) C- 27DA
- 27DC 336C1462 Intel® PRO/100 VE Desktop Adapter
- 27DC0x27DC 336C1462 Intel® PRO/100 VE Desktop Adapter
+ 27DA 82801G Intel(R) N10/ICH7 Family SMBus Controller
+ 27DC 336C1462 Intel® PRO/100 VE Desktop Adapter
+ 27DC0x27DC 336C1462 Intel® PRO/100 VE Desktop Adapter
27DE RTL8100C AUDIO (ALC850) << Realtek
- 27df 82801GB/GBM PATA100
+ 27df 82801GB/GBM Intel(R) ICH7 Family Ultra ATA Storage Controller
27RR ALC850 no
2802 8086 INTEL(R) HIGH DEFINITION AUDIO HDMI
2803 0111 Intel(R) High Definition Audio HDMI Service
2804 80860101 IntcDAudModel
+ 2807 Intel HD Audio Intel HDMI Audio Chip
+ 2812 2812 Intel(R) ICH8DH LPC Interface Controller
2815 902D104D Intel(R) ICH8M LPC Interface Controller - 2815 Driver
2820 82801HB/HR/HH/HO SATA IDE Controller:4 port
2821 82821HR/HH/HO AHCI Controller
@@ -8539,17 +8838,30 @@ exit 0
2824 82801HB ICH8 AHCI Controller
2825 82801IIH Intel Q35
2828 82801HBM/HEM SATA IDE Controller
- 2829 82801HBM AHCI Controller
+ 2829 82801HBM Intel(R) ICH8M SATA AHCI Controller
282A ICH8M/9M/ICH10M/i5M Raid Controller
- 283A 81EC1043 (?) ICH8 Enhanced USB2 Enhanced Host Controller
- 283E PCI\VEN_8086&DEV_283E&SUBSYS_20A917AA&REV_03\3&B1B SM Bus Controller
+ 2830 2830 Intel(R) ICH8 Family USB Universal Host Controller
+ 2831 2831 Intel(R) ICH8 Family USB Universal Host Controller
+ 2832 2832 Intel(R) ICH8 Family USB Universal Host Controller
+ 2834 2834 Intel(R) ICH8 Family USB Universal Host Controller
+ 2835 2835 Intel(R) ICH8 Family USB Universal Host Controller
+ 2836 2836 Intel(R) ICH8 Family USB2 Enhanced Host Controller
+ 283A 81EC1043 (?) ICH8 Family USB2 Enhanced Host Controller
+ 283E PCI\VEN_8086&DEV_283E&SUBSYS_20A917AA&REV_03\3&B1B Intel(R) ICH8 Family SMBus Controller
+ 283F 283F Intel(R) ICH8 Family PCI Express Root Port
284 888 Microsoft UAA bus for HD audio
+ 2841 ICH8 Intel(R) ICH8 Family PCI Express Root Port
+ 2843 ICH8 Intel(R) ICH8 Family PCI Express Root Port
+ 2845 ICH8 Intel(R) ICH8 Family PCI Express Root Port
+ 2847 2847 Intel(R) ICH8 Family PCI Express Root Port
284B 888 Microsoft UAA bus for HD audio
- 2850 82801HBM/HEM PATA Controller
+ 2850 82801HBM/HEM Intel(R) ICH8M Ultra ATA Storage Controller
2880 0000000 Intel Display Audio
2888 Q945 Q945
2914 ICH9D0 LPC bridge of ICH9
2916 3 PCI Simple Communications-Controller
+ 2918 ATK0110 driver for WindowsXP/Vista/Win7 32&64-bit http://dlcdnet.asus.com/pub/ASUS/misc/utils/MB_WIN7_ATK.ZIP
+ 2919 ICH9M Intel(R) ICH9M/M-E Family 4 Port SATA AHCI Controller
2920 82801(IB)/IR/IH/IO SATA IDE Controller:4 port
2921 82801IR/IH/IO SATA IDE Controller:2 port1
2922 82801IR/IH/IO AHCI Controller
@@ -8562,62 +8874,81 @@ exit 0
292E ?(ICH9M Family) SATA IDE Controller:1port2
2930 8086 2930
2930 Intel ICH9 Family SMBus Controller Intel ICH9 Family SMBus Controller
+ 2932 ICH9 Intel(R) ICH9 Family Thermal Subsystem
+ 2934 ICH9 Intel(R) ICH9 Family USB Universal Host Controller
+ 2935 ICH9 Intel(R) ICH9 Family USB Universal Host Controller
2936 0x02141028 Intel(R) ICH9 Family USB Univeral Host Controller
+ 2937 ICH9 Intel(R) ICH9 Family USB Universal Host Controller
+ 2938 ICH9 Intel(R) ICH9 Family USB Universal Host Controller
+ 2939 ICH9 Intel(R) ICH9 Family USB Universal Host Controller
+ 293A ICH9 Intel(R) ICH9 Family USB2 Enhanced Host Controller
+ 293C ICH9 Intel(R) ICH9 Family USB2 Enhanced Host Controller
293E 486486 82801IB/IR/IH (ICH9 Family) HD Audio Controller
293E 486486 82801IB/IR/IH (ICH9 Family) HD Audio Controller
+ 2940 ICH9 Intel(R) ICH9 Family PCI Express Root Port
+ 2942 ICH9 Intel(R) ICH9 Family PCI Express Root Port
+ 2944 ICH9 Intel(R) ICH9 Family PCI Express Root Port
+ 2948 ICH9 Intel(R) ICH9 Family PCI Express Root Port
294C 82566DC-2 Intel(R) 82566DC-2 Gigabit Network Connection
2972 82946GZ Onboard Video Device for 82946GZ chips
2986 265452 Intel
2987 Q965/Q963 Intel PCI Serial Port
2992 Q965/Q963 Intel(R) Express Chipset video
- 2993 G965 Intel(R) Express Chipset (Dell Version)
- 2994 2802103C intel management engine interface
+ 2993 G965 Intel(R) Express Chipset Dell Version
+ 2994 2802103C Intel Management Engine Interface (HECI)
2996 Q963/Q965 IDE Controller
- 2997 Q965/Q963 Intel® Active Management Technology (AMT) - SOL
+ 2997 Q965/Q963 PCI Serial Port
29a0 ?(82P965) Intel P965/G965 Processor to I/O Controller
29a1 ?(82Q965, 82G965, 82P965) Intel P965/G965 PCI Express Root Port
29A2 Intel 82G965 Graphics and Memory Controller Hub (G Intel 82G965 Graphics and Memory Controller Hub (GMCH)
- 29A4 86881 MRMgRH > treat left operand as unsigned ? */
+#define Unsigned_Shifts 1
+#define M_E 2.7182818284590452354 /* e */
+#define M_LOG2E 1.4426950408889634074 /* log 2e */
+#define M_LOG10E 0.43429448190325182765 /* log 10e */
+#define M_LN2 0.69314718055994530942 /* log e2 */
+#define M_LN10 2.30258509299404568402 /* log e10 */
+#define M_PI 3.14159265358979323846 /* pi */
+#define M_PI_2 1.57079632679489661923 /* pi/2 */
+#define M_PI_4 0.78539816339744830962 /* pi/4 */
+#define M_1_PI 0.31830988618379067154 /* 1/pi */
+#define M_2_PI 0.63661977236758134308 /* 2/pi */
+#define M_2_SQRTPI 1.12837916709551257390 /* 2/sqrt(pi) */
+#define M_SQRT2 1.41421356237309504880 /* sqrt(2) */
+#define M_SQRT1_2 0.70710678118654752440 /* 1/sqrt(2) */
+
+extern double hypot(double, double);
+extern double erf(double);
+extern double erfc(double);
+extern double j0(double);
+extern double y0(double);
+extern double j1(double);
+extern double y1(double);
+extern double jn(int, double);
+extern double yn(int, double);
+
+#endif
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#define isnan(x) isNaN(x)
+#define isinf(x) isInf(x, 0)
+
+#endif /* __MATH */
diff --git a/mips64/include/ape/stdarg.h b/mips64/include/ape/stdarg.h
new file mode 100644
index 0000000000..7eb9f7ac2f
--- /dev/null
+++ b/mips64/include/ape/stdarg.h
@@ -0,0 +1,20 @@
+#ifndef __STDARG
+#define __STDARG
+
+typedef char *va_list;
+
+#define va_start(list, start) list =\
+ (sizeof(start) < 8?\
+ (char*)((int*)&(start)+1):\
+ (char*)(&(start)+1))
+#define va_end(list)
+#define va_arg(list, mode)\
+ ((sizeof(mode) == 1)?\
+ ((list += 8), (mode*)list)[-1]:\
+ (sizeof(mode) == 2)?\
+ ((list += 8), (mode*)list)[-1]:\
+ (sizeof(mode) == 4)?\
+ ((list += 8), (mode*)list)[-1]:\
+ ((list += sizeof(mode)), (mode*)list)[-1])
+
+#endif /* __STDARG */
diff --git a/mips64/include/ape/ureg.h b/mips64/include/ape/ureg.h
new file mode 100644
index 0000000000..ee83ab40ff
--- /dev/null
+++ b/mips64/include/ape/ureg.h
@@ -0,0 +1,52 @@
+#ifndef __UREG_H
+#define __UREG_H
+#if !defined(_PLAN9_SOURCE)
+ This header file is an extension to ANSI/POSIX
+#endif
+
+struct Ureg
+{
+ unsigned long long status;
+ unsigned long long pc;
+ union{
+ unsigned long long sp; /* r29 */
+ unsigned long long usp; /* r29 */
+ };
+ unsigned long long cause;
+ unsigned long long badvaddr;
+ unsigned long long tlbvirt;
+ unsigned long long hi;
+ unsigned long long lo;
+ unsigned long long r31;
+ unsigned long long r30;
+ unsigned long long r28;
+ unsigned long long r27; /* unused */
+ unsigned long long r26; /* unused */
+ unsigned long long r25;
+ unsigned long long r24;
+ unsigned long long r23;
+ unsigned long long r22;
+ unsigned long long r21;
+ unsigned long long r20;
+ unsigned long long r19;
+ unsigned long long r18;
+ unsigned long long r17;
+ unsigned long long r16;
+ unsigned long long r15;
+ unsigned long long r14;
+ unsigned long long r13;
+ unsigned long long r12;
+ unsigned long long r11;
+ unsigned long long r10;
+ unsigned long long r9;
+ unsigned long long r8;
+ unsigned long long r7;
+ unsigned long long r6;
+ unsigned long long r5;
+ unsigned long long r4;
+ unsigned long long r3;
+ unsigned long long r2;
+ unsigned long long r1;
+};
+
+#endif
diff --git a/mips64/include/u.h b/mips64/include/u.h
new file mode 100644
index 0000000000..2df61ce963
--- /dev/null
+++ b/mips64/include/u.h
@@ -0,0 +1,71 @@
+#define nil ((void*)0)
+typedef unsigned short ushort;
+typedef unsigned char uchar;
+typedef unsigned long ulong;
+typedef unsigned int uint;
+typedef signed char schar;
+typedef long long vlong;
+typedef unsigned long long uvlong;
+typedef unsigned long long uintptr;
+typedef unsigned long usize;
+typedef uint Rune;
+typedef union FPdbleword FPdbleword;
+typedef uintptr jmp_buf[2];
+#define JMPBUFSP 0
+#define JMPBUFPC 1
+#define JMPBUFDPC 0
+typedef unsigned int mpdigit; /* for /sys/include/mp.h */
+typedef unsigned char u8int;
+typedef unsigned short u16int;
+typedef unsigned int u32int;
+typedef unsigned long long u64int;
+
+/* FCR (FCR31) */
+#define FPINEX (1<<7) /* enables */
+#define FPUNFL (1<<8)
+#define FPOVFL (1<<9)
+#define FPZDIV (1<<10)
+#define FPINVAL (1<<11)
+#define FPRNR (0<<0) /* rounding modes */
+#define FPRZ (1<<0)
+#define FPRPINF (2<<0)
+#define FPRNINF (3<<0)
+#define FPRMASK (3<<0)
+#define FPPEXT 0
+#define FPPSGL 0
+#define FPPDBL 0
+#define FPPMASK 0
+#define FPCOND (1<<23)
+
+/* FSR (also FCR31) */
+#define FPAINEX (1<<2) /* flags */
+#define FPAOVFL (1<<4)
+#define FPAUNFL (1<<3)
+#define FPAZDIV (1<<5)
+#define FPAINVAL (1<<6)
+
+union FPdbleword
+{
+ double x;
+ struct { /* big endian */
+ ulong hi;
+ ulong lo;
+ };
+};
+
+/* stdarg */
+typedef char* va_list;
+#define va_start(list, start) list =\
+ (sizeof(start) < 8?\
+ (char*)((vlong*)&(start)+1):\
+ (char*)(&(start)+1))
+#define va_end(list)\
+ USED(list)
+#define va_arg(list, mode)\
+ ((sizeof(mode) == 1)?\
+ ((list += 8), (mode*)list)[-1]:\
+ (sizeof(mode) == 2)?\
+ ((list += 8), (mode*)list)[-1]:\
+ (sizeof(mode) == 4)?\
+ ((list += 8), (mode*)list)[-1]:\
+ ((list += sizeof(mode)), (mode*)list)[-1])
diff --git a/mips64/include/ureg.h b/mips64/include/ureg.h
new file mode 100644
index 0000000000..5127f2d6bf
--- /dev/null
+++ b/mips64/include/ureg.h
@@ -0,0 +1,44 @@
+struct Ureg
+{
+ u64int status;
+ u64int pc;
+ union{
+ u64int sp; /* r29 */
+ u64int usp; /* r29 */
+ };
+ u64int cause;
+ u64int badvaddr;
+ u64int tlbvirt;
+ u64int hi;
+ u64int lo;
+ u64int r31;
+ u64int r30;
+ u64int r28;
+ u64int r27; /* unused */
+ u64int r26; /* unused */
+ u64int r25;
+ u64int r24;
+ u64int r23;
+ u64int r22;
+ u64int r21;
+ u64int r20;
+ u64int r19;
+ u64int r18;
+ u64int r17;
+ u64int r16;
+ u64int r15;
+ u64int r14;
+ u64int r13;
+ u64int r12;
+ u64int r11;
+ u64int r10;
+ u64int r9;
+ u64int r8;
+ u64int r7;
+ u64int r6;
+ u64int r5;
+ u64int r4;
+ u64int r3;
+ u64int r2;
+ u64int r1;
+};
diff --git a/mips64/mkfile b/mips64/mkfile
new file mode 100644
index 0000000000..0710e742cb
--- /dev/null
+++ b/mips64/mkfile
@@ -0,0 +1,9 @@
+> treat left operand as unsigned ? */
+#define Unsigned_Shifts 1
+#define M_E 2.7182818284590452354 /* e */
+#define M_LOG2E 1.4426950408889634074 /* log 2e */
+#define M_LOG10E 0.43429448190325182765 /* log 10e */
+#define M_LN2 0.69314718055994530942 /* log e2 */
+#define M_LN10 2.30258509299404568402 /* log e10 */
+#define M_PI 3.14159265358979323846 /* pi */
+#define M_PI_2 1.57079632679489661923 /* pi/2 */
+#define M_PI_4 0.78539816339744830962 /* pi/4 */
+#define M_1_PI 0.31830988618379067154 /* 1/pi */
+#define M_2_PI 0.63661977236758134308 /* 2/pi */
+#define M_2_SQRTPI 1.12837916709551257390 /* 2/sqrt(pi) */
+#define M_SQRT2 1.41421356237309504880 /* sqrt(2) */
+#define M_SQRT1_2 0.70710678118654752440 /* 1/sqrt(2) */
+
+extern double hypot(double, double);
+extern double erf(double);
+extern double erfc(double);
+extern double j0(double);
+extern double y0(double);
+extern double j1(double);
+extern double y1(double);
+extern double jn(int, double);
+extern double yn(int, double);
+
+#endif
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#define isnan(x) isNaN(x)
+#define isinf(x) isInf(x, 0)
+
+#endif /* __MATH */
diff --git a/power64/include/ape/stdarg.h b/power64/include/ape/stdarg.h
new file mode 100644
index 0000000000..b7e2282e67
--- /dev/null
+++ b/power64/include/ape/stdarg.h
@@ -0,0 +1,11 @@
+#ifndef __STDARG
+#define __STDARG
+
+typedef char *va_list;
+
+#define va_start(list, start) list = (char *)(&(start)+1)
+#define va_end(list)
+#define va_arg(list, mode) (sizeof(mode)==1 ? ((mode *) (list += 4))[-4] : \
+sizeof(mode)==2 ? ((mode *) (list += 4))[-2] : ((mode *) (list += sizeof(mode)))[-1])
+
+#endif /* __STDARG */
diff --git a/power64/include/ape/ureg.h b/power64/include/ape/ureg.h
new file mode 100644
index 0000000000..bd48db70fa
--- /dev/null
+++ b/power64/include/ape/ureg.h
@@ -0,0 +1,50 @@
+#ifndef __UREG_H
+#define __UREG_H
+#if !defined(_PLAN9_SOURCE)
+ This header file is an extension to ANSI/POSIX
+#endif
+
+struct Ureg
+{ unsigned long cause;
+ union { unsigned long srr1; unsigned long status;};
+ unsigned long pc; /* SRR0 */
+ unsigned long pad;
+ unsigned long lr;
+ unsigned long cr;
+ unsigned long xer;
+ unsigned long ctr;
+ unsigned long r0;
+ union{ unsigned long r1; unsigned long sp; unsigned long usp; };
+ unsigned long r2;
+ unsigned long r3;
+ unsigned long r4;
+ unsigned long r5;
+ unsigned long r6;
+ unsigned long r7;
+ unsigned long r8;
+ unsigned long r9;
+ unsigned long r10;
+ unsigned long r11;
+ unsigned long r12;
+ unsigned long r13;
+ unsigned long r14;
+ unsigned long r15;
+ unsigned long r16;
+ unsigned long r17;
+ unsigned long r18;
+ unsigned long r19;
+ unsigned long r20;
+ unsigned long r21;
+ unsigned long r22;
+ unsigned long r23;
+ unsigned long r24;
+ unsigned long r25;
+ unsigned long r26;
+ unsigned long r27;
+ unsigned long r28;
+ unsigned long r29;
+ unsigned long r30;
+ unsigned long r31;
+};
+
+#endif
diff --git a/rc/bin/9fs b/rc/bin/9fs
index 70c4961763..2006564a3a 100755
--- a/rc/bin/9fs
+++ b/rc/bin/9fs
@@ -21,7 +21,7 @@ case other
case juke # ye olde file server
srv -q il!jukefs && mount /srv/il!jukefs /n/juke
case sources
- srv -nq tcp!sources.cs.bell-labs.com sources /n/sources
+ srv -nq tcp!9p.io sources /n/sources
case sourcesdump
9fs sources
mount -n /srv/sources /n/sourcesdump main/archive
@@ -44,7 +44,7 @@ case *.vac
}
vacfs -m /n/`{basename $1 .vac} `{cat $score}
case wiki
- srv -m 'net!plan9.bell-labs.com!wiki' wiki /mnt/wiki
+ srv -m 'net!9p.io!wiki' wiki /mnt/wiki
case *
switch($#*){
case 1
diff --git a/rc/bin/await b/rc/bin/await
new file mode 100644
index 0000000000..bdf72517e1
--- /dev/null
+++ b/rc/bin/await
@@ -0,0 +1,21 @@
+#!/bin/rc
+# await secs cmd ... - wait at most secs for cmd to complete, but don't kill it.
+# cmd's stdin will be /dev/null.
+switch ($#*) {
+case 0 1
+ echo usage: $0: 'maxsecs cmd ...' >[1=2]
+ exit usage
+}
+
+rfork e
+secs=$1
+shift
+
+$* &
+cmdpid=$apid
+
+for (s in `{seq $secs})
+ if (test -e /proc/$cmdpid)
+ sleep 1
+if (test -e /proc/$cmdpid)
+ echo $0: $"*: still running >[1=2]
diff --git a/rc/bin/fshalt b/rc/bin/fshalt
index 5cf6ce6e43..e69e7c7f24 100755
--- a/rc/bin/fshalt
+++ b/rc/bin/fshalt
@@ -4,9 +4,10 @@
rfork nes
kern=()
kerncopy=()
+loadkern=yes
reboot=no
fn usage {
- echo usage: $1 '[-r] [new-kernel]' >[1=2]
+ echo usage: $1 '[-r] [-R] [new-kernel]' >[1=2]
exit usage
}
if (! ~ $#* 0)
@@ -14,6 +15,10 @@ if (! ~ $#* 0)
case -r
reboot=yes
shift
+ case -R
+ loadkern=no
+ reboot=yes
+ shift
case -*
usage $0
}
@@ -53,7 +58,8 @@ fn usekernel {
}
# make a copy of the right kernel
-if (~ $reboot yes) {
+if (~ $reboot yes)
+if (~ $loadkern yes) {
if (~ $#kern 0)
kern=`{echo $terminal |
sed 's;^([^ ]+) .*/([^/ ]+).*$;/n/boot/'$cputype'/9\2;'}
diff --git a/rc/bin/termrc b/rc/bin/termrc
index 5de208a553..d4555af60c 100755
--- a/rc/bin/termrc
+++ b/rc/bin/termrc
@@ -1,6 +1,6 @@
#!/bin/rc
# terminal startup
-TIMESYNCARGS=(-rLa1000000)
+TIMESYNCARGS=(-ra1000000)
NDBFILE=/lib/ndb/local
mntgen -s slashn && chmod 666 /srv/slashn
@@ -42,8 +42,8 @@ if(test -e /cfg/$sysname/termrc)
#
# If your site provides DHCP service,
#
-#if(! test -e /net/ipifc/0/ctl)
-# ip/ipconfig
+if(! test -e /net/ipifc/0/ctl)
+ ip/ipconfig
#
# Otherwise, see /cfg/$sysname/termrc (/cfg/example/termrc is an example).
@@ -92,8 +92,11 @@ if(test -f /dev/mousectl){
aux/mouse $mouseport
# parse vgasize into fields
vgasize=`{echo $vgasize}
- if(! ~ $"monitor '' && ! ~ `{cat /dev/user} none)
+ if(! ~ $"monitor '' && ! ~ `{cat /dev/user} none){
+ if(~ $monitor vesa)
+ aux/realemu
aux/vga -l $vgasize
+ }
if(~ $accupoint 1)
pipefile -dr /bin/aux/accupoint /dev/mouse
}
diff --git a/rc/bin/xa b/rc/bin/xa
new file mode 100644
index 0000000000..61464e1dd2
--- /dev/null
+++ b/rc/bin/xa
@@ -0,0 +1,2 @@
+#!/bin/rc
+exec 4a -L $*
diff --git a/rc/bin/xc b/rc/bin/xc
new file mode 100644
index 0000000000..c643193e5b
--- /dev/null
+++ b/rc/bin/xc
@@ -0,0 +1,2 @@
+#!/bin/rc
+exec 4c -l $*
diff --git a/rc/bin/xl b/rc/bin/xl
new file mode 100644
index 0000000000..366177dd55
--- /dev/null
+++ b/rc/bin/xl
@@ -0,0 +1,2 @@
+#!/bin/rc
+exec 4l -m $*
diff --git a/riscv/include/ape/float.h b/riscv/include/ape/float.h
new file mode 100644
index 0000000000..da0a52992b
--- /dev/null
+++ b/riscv/include/ape/float.h
@@ -0,0 +1,75 @@
+#ifndef __FLOAT
+#define __FLOAT
+/* IEEE, default rounding */
+
+#define FLT_ROUNDS 1
+#define FLT_RADIX 2
+
+#define FLT_DIG 6
+#define FLT_EPSILON 1.19209290e-07
+#define FLT_MANT_DIG 24
+#define FLT_MAX 3.40282347e+38
+#define FLT_MAX_10_EXP 38
+#define FLT_MAX_EXP 128
+#define FLT_MIN 1.17549435e-38
+#define FLT_MIN_10_EXP -37
+#define FLT_MIN_EXP -125
+
+#define DBL_DIG 15
+#define DBL_EPSILON 2.2204460492503131e-16
+#define DBL_MANT_DIG 53
+#define DBL_MAX 1.797693134862315708145e+308
+#define DBL_MAX_10_EXP 308
+#define DBL_MAX_EXP 1024
+#define DBL_MIN 2.225073858507201383090233e-308
+#define DBL_MIN_10_EXP -307
+#define DBL_MIN_EXP -1021
+#define LDBL_MANT_DIG DBL_MANT_DIG
+#define LDBL_EPSILON DBL_EPSILON
+#define LDBL_DIG DBL_DIG
+#define LDBL_MIN_EXP DBL_MIN_EXP
+#define LDBL_MIN DBL_MIN
+#define LDBL_MIN_10_EXP DBL_MIN_10_EXP
+#define LDBL_MAX_EXP DBL_MAX_EXP
+#define LDBL_MAX DBL_MAX
+#define LDBL_MAX_10_EXP DBL_MAX_10_EXP
+
+typedef union FPdbleword FPdbleword;
+union FPdbleword
+{
+ double x;
+ struct { /* big endian */
+ long lo;
+ long hi;
+ };
+};
+
+#ifdef _RESEARCH_SOURCE
+/* define stuff needed for floating conversion */
+#define IEEE_8087 1
+#define Sudden_Underflow 1
+#endif
+#ifdef _PLAN9_SOURCE
+/* FCR */
+#define FPINEX 0
+#define FPUNFL 0
+#define FPOVFL 0
+#define FPZDIV 0
+#define FPINVAL 0
+#define FPRNR (0<<5)
+#define FPRZ (1<<5)
+#define FPRPINF (3<<5)
+#define FPRNINF (2<<5)
+#define FPRMASK (15<<5)
+#define FPPEXT 0
+#define FPPSGL 0
+#define FPPDBL 0
+#define FPPMASK 0
+/* FSR */
+#define FPAINEX (1<<0)
+#define FPAOVFL (1<<2)
+#define FPAUNFL (1<<1)
+#define FPAZDIV (1<<3)
+#define FPAINVAL (1<<4)
+#endif
+#endif /* __FLOAT */
diff --git a/riscv/include/ape/math.h b/riscv/include/ape/math.h
new file mode 100644
index 0000000000..a880a01f84
--- /dev/null
+++ b/riscv/include/ape/math.h
@@ -0,0 +1,78 @@
+#ifndef __MATH
+#define __MATH
+#pragma lib "/$M/lib/ape/libap.a"
+
+/* a HUGE_VAL appropriate for IEEE double-precision */
+/* the correct value, 1.797693134862316e+308, causes a ken overflow */
+#define HUGE_VAL 1.79769313486231e+308
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+extern double acos(double);
+extern double asin(double);
+extern double atan(double);
+extern double atan2(double, double);
+extern double cos(double);
+extern double hypot(double, double);
+extern double sin(double);
+extern double tan(double);
+extern double cosh(double);
+extern double sinh(double);
+extern double tanh(double);
+extern double exp(double);
+extern double frexp(double, int *);
+extern double ldexp(double, int);
+extern double log(double);
+extern double log10(double);
+extern double modf(double, double *);
+extern double pow(double, double);
+extern double sqrt(double);
+extern double ceil(double);
+extern double fabs(double);
+extern double floor(double);
+extern double fmod(double, double);
+extern double NaN(void);
+extern int isNaN(double);
+extern double Inf(int);
+extern int isInf(double, int);
+
+#ifdef _RESEARCH_SOURCE
+/* does >> treat left operand as unsigned ? */
+#define Unsigned_Shifts 1
+#define M_E 2.7182818284590452354 /* e */
+#define M_LOG2E 1.4426950408889634074 /* log 2e */
+#define M_LOG10E 0.43429448190325182765 /* log 10e */
+#define M_LN2 0.69314718055994530942 /* log e2 */
+#define M_LN10 2.30258509299404568402 /* log e10 */
+#define M_PI 3.14159265358979323846 /* pi */
+#define M_PI_2 1.57079632679489661923 /* pi/2 */
+#define M_PI_4 0.78539816339744830962 /* pi/4 */
+#define M_1_PI 0.31830988618379067154 /* 1/pi */
+#define M_2_PI 0.63661977236758134308 /* 2/pi */
+#define M_2_SQRTPI 1.12837916709551257390 /* 2/sqrt(pi) */
+#define M_SQRT2 1.41421356237309504880 /* sqrt(2) */
+#define M_SQRT1_2 0.70710678118654752440 /* 1/sqrt(2) */
+
+extern double hypot(double, double);
+extern double erf(double);
+extern double erfc(double);
+extern double j0(double);
+extern double y0(double);
+extern double j1(double);
+extern double y1(double);
+extern double jn(int, double);
+extern double yn(int, double);
+
+#endif
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#define isnan(x) isNaN(x)
+#define isinf(x) isInf(x, 0)
+
+#endif /* __MATH */
diff --git a/riscv/include/ape/stdarg.h b/riscv/include/ape/stdarg.h
new file mode 100644
index 0000000000..f8f971f667
--- /dev/null
+++ b/riscv/include/ape/stdarg.h
@@ -0,0 +1,20 @@
+#ifndef __STDARG
+#define __STDARG
+
+typedef char *va_list;
+
+#define va_start(list, start) list =\
+ (sizeof(start) < 4?\
+ (char*)((int*)&(start)+1):\
+ (char*)(&(start)+1))
+#define va_end(list)
+/* little-endian 32-bit */
+#define va_arg(list, mode)\
+ ((sizeof(mode) == 1)?\
+ ((list += 4), (mode*)list)[-4]:\
+ (sizeof(mode) == 2)?\
+ ((list += 4), (mode*)list)[-2]:\
+ (sizeof(mode) == 4)?\
+ ((list += 4), (mode*)list)[-1]:\
+ ((list = (char*)((unsigned long)(list+7) & ~7) + sizeof(mode)), (mode*)list)[-1])
+#endif /* __STDARG */
diff --git a/riscv/include/ape/ureg.h b/riscv/include/ape/ureg.h
new file mode 100644
index 0000000000..39595449f1
--- /dev/null
+++ b/riscv/include/ape/ureg.h
@@ -0,0 +1,63 @@
+#ifndef __UREG_H
+#define __UREG_H
+#if !defined(_PLAN9_SOURCE)
+ This header file is an extension to ANSI/POSIX
+#endif
+
+struct Ureg
+{
+ union {
+ unsigned long pc;
+ unsigned long regs[1];
+ };
+ unsigned long r1; /* link */
+ union{
+ unsigned long r2;
+ unsigned long sp;
+ unsigned long usp;
+ };
+ unsigned long r3; /* sb */
+ unsigned long r4;
+ unsigned long r5;
+ unsigned long r6; /* up in kernel */
+ unsigned long r7; /* m in kernel */
+ union{
+ unsigned long r8;
+ unsigned long arg;
+ unsigned long ret;
+ };
+ unsigned long r9;
+ unsigned long r10;
+ unsigned long r11;
+ unsigned long r12;
+ unsigned long r13;
+ unsigned long r14;
+ unsigned long r15;
+ unsigned long r16;
+ unsigned long r17;
+ unsigned long r18;
+ unsigned long r19;
+ unsigned long r20;
+ unsigned long r21;
+ unsigned long r22;
+ unsigned long r23;
+ unsigned long r24;
+ unsigned long r25;
+ unsigned long r26;
+ unsigned long r27;
+ unsigned long r28;
+ unsigned long r29;
+ unsigned long r30;
+ unsigned long r31;
+
+ /* csrs: generally supervisor ones */
+ unsigned long status;
+ unsigned long ie;
+ union {
+ unsigned long cause;
+ unsigned long type;
+ };
+ unsigned long tval; /* faulting address */
+};
+
+#endif
diff --git a/riscv/include/u.h b/riscv/include/u.h
new file mode 100644
index 0000000000..d097533675
--- /dev/null
+++ b/riscv/include/u.h
@@ -0,0 +1,68 @@
+#define nil ((void*)0)
+typedef unsigned short ushort;
+typedef unsigned char uchar;
+typedef unsigned long ulong;
+typedef unsigned int uint;
+typedef signed char schar;
+typedef long long vlong;
+typedef unsigned long long uvlong;
+typedef unsigned long uintptr;
+typedef unsigned long usize;
+typedef uint Rune;
+typedef union FPdbleword FPdbleword;
+typedef long jmp_buf[2];
+#define JMPBUFSP 0
+#define JMPBUFPC 1
+#define JMPBUFDPC 0
+typedef unsigned int mpdigit; /* for /sys/include/mp.h */
+typedef unsigned char u8int;
+typedef unsigned short u16int;
+typedef unsigned int u32int;
+typedef unsigned long long u64int;
+
+/* FCR */
+#define FPINEX 0
+#define FPUNFL 0
+#define FPOVFL 0
+#define FPZDIV 0
+#define FPINVAL 0
+#define FPRNR (0<<5)
+#define FPRZ (1<<5)
+#define FPRPINF (3<<5)
+#define FPRNINF (2<<5)
+#define FPRMASK (15<<5)
+#define FPPEXT 0
+#define FPPSGL 0
+#define FPPDBL 0
+#define FPPMASK 0
+/* FSR */
+#define FPAINEX (1<<0)
+#define FPAOVFL (1<<2)
+#define FPAUNFL (1<<1)
+#define FPAZDIV (1<<3)
+#define FPAINVAL (1<<4)
+union FPdbleword
+{
+ double x;
+ struct { /* little endian */
+ ulong lo;
+ ulong hi;
+ };
+};
+
+/* stdarg */
+typedef char* va_list;
+#define va_start(list, start) list =\
+ (sizeof(start) < 4?\
+ (char*)((int*)&(start)+1):\
+ (char*)(&(start)+1))
+#define va_end(list)\
+ USED(list)
+#define va_arg(list, mode)\
+ ((sizeof(mode) == 1)?\
+ ((list += 4), (mode*)list)[-4]:\
+ (sizeof(mode) == 2)?\
+ ((list += 4), (mode*)list)[-2]:\
+ (sizeof(mode) == 4)?\
+ ((list += 4), (mode*)list)[-1]:\
+ ((list = (char*)((uintptr)(list+7) & ~7) + sizeof(mode)), (mode*)list)[-1])
diff --git a/riscv/include/ureg.h b/riscv/include/ureg.h
new file mode 100644
index 0000000000..27d202b697
--- /dev/null
+++ b/riscv/include/ureg.h
@@ -0,0 +1,57 @@
+struct Ureg
+{
+ union {
+ uintptr pc;
+ uintptr regs[1];
+ };
+ uintptr r1; /* link */
+ union{
+ uintptr r2;
+ uintptr sp;
+ uintptr usp;
+ };
+ uintptr r3; /* sb */
+ uintptr r4;
+ uintptr r5;
+ uintptr r6; /* up in kernel */
+ uintptr r7; /* m in kernel */
+ union{
+ uintptr r8;
+ uintptr arg;
+ uintptr ret;
+ };
+ uintptr r9;
+ uintptr r10;
+ uintptr r11;
+ uintptr r12;
+ uintptr r13;
+ uintptr r14;
+ uintptr r15;
+ uintptr r16;
+ uintptr r17;
+ uintptr r18;
+ uintptr r19;
+ uintptr r20;
+ uintptr r21;
+ uintptr r22;
+ uintptr r23;
+ uintptr r24;
+ uintptr r25;
+ uintptr r26;
+ uintptr r27;
+ uintptr r28;
+ uintptr r29;
+ uintptr r30;
+ uintptr r31;
+
+ /* csrs: generally supervisor ones */
+ uintptr status;
+ uintptr ie;
+ union {
+ uintptr cause;
+ uintptr type;
+ };
+ uintptr tval; /* faulting address */
+
+ uintptr curmode;
+};
diff --git a/riscv/mkfile b/riscv/mkfile
new file mode 100644
index 0000000000..cb3ead9559
--- /dev/null
+++ b/riscv/mkfile
@@ -0,0 +1,6 @@
+> treat left operand as unsigned ? */
+#define Unsigned_Shifts 1
+#define M_E 2.7182818284590452354 /* e */
+#define M_LOG2E 1.4426950408889634074 /* log 2e */
+#define M_LOG10E 0.43429448190325182765 /* log 10e */
+#define M_LN2 0.69314718055994530942 /* log e2 */
+#define M_LN10 2.30258509299404568402 /* log e10 */
+#define M_PI 3.14159265358979323846 /* pi */
+#define M_PI_2 1.57079632679489661923 /* pi/2 */
+#define M_PI_4 0.78539816339744830962 /* pi/4 */
+#define M_1_PI 0.31830988618379067154 /* 1/pi */
+#define M_2_PI 0.63661977236758134308 /* 2/pi */
+#define M_2_SQRTPI 1.12837916709551257390 /* 2/sqrt(pi) */
+#define M_SQRT2 1.41421356237309504880 /* sqrt(2) */
+#define M_SQRT1_2 0.70710678118654752440 /* 1/sqrt(2) */
+
+extern double hypot(double, double);
+extern double erf(double);
+extern double erfc(double);
+extern double j0(double);
+extern double y0(double);
+extern double j1(double);
+extern double y1(double);
+extern double jn(int, double);
+extern double yn(int, double);
+
+#endif
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#define isnan(x) isNaN(x)
+#define isinf(x) isInf(x, 0)
+
+#endif /* __MATH */
diff --git a/riscv64/include/ape/stdarg.h b/riscv64/include/ape/stdarg.h
new file mode 100644
index 0000000000..62d1c608f7
--- /dev/null
+++ b/riscv64/include/ape/stdarg.h
@@ -0,0 +1,22 @@
+#ifndef __STDARG
+#define __STDARG
+
+typedef unsigned long long va_list;
+
+/* stdarg - little-endian 64-bit */
+#define va_start(list, start) list =\
+ (sizeof(start) < 4?\
+ (unsigned long long)((long*)&(start)+1):\
+ (unsigned long long)(&(start)+1))
+#define va_end(list)\
+ USED(list)
+#define va_arg(list, mode)\
+ ((sizeof(mode) == 1)?\
+ ((list += 4), (mode*)list)[-4]:\
+ (sizeof(mode) == 2)?\
+ ((list += 4), (mode*)list)[-2]:\
+ (sizeof(mode) == 4)?\
+ ((list += 4), (mode*)list)[-1]:\
+ ((list += sizeof(mode)+7), (list &= ~7), (mode*)list)[-1])
+
+#endif /* __STDARG */
diff --git a/riscv64/include/ape/ureg.h b/riscv64/include/ape/ureg.h
new file mode 100644
index 0000000000..5f1c105d76
--- /dev/null
+++ b/riscv64/include/ape/ureg.h
@@ -0,0 +1,67 @@
+#ifndef __UREG_H
+#define __UREG_H
+#if !defined(_PLAN9_SOURCE)
+ This header file is an extension to ANSI/POSIX
+#endif
+
+#define uvlong unsigned long long
+
+struct Ureg
+{
+ union {
+ uvlong pc;
+ uvlong regs[1];
+ };
+ uvlong r1; /* link */
+ union{
+ uvlong r2;
+ uvlong sp;
+ uvlong usp;
+ };
+ uvlong r3; /* sb */
+ uvlong r4;
+ uvlong r5;
+ uvlong r6; /* up in kernel */
+ uvlong r7; /* m in kernel */
+ union{
+ uvlong r8;
+ uvlong arg;
+ uvlong ret;
+ };
+ uvlong r9;
+ uvlong r10;
+ uvlong r11;
+ uvlong r12;
+ uvlong r13;
+ uvlong r14;
+ uvlong r15;
+ uvlong r16;
+ uvlong r17;
+ uvlong r18;
+ uvlong r19;
+ uvlong r20;
+ uvlong r21;
+ uvlong r22;
+ uvlong r23;
+ uvlong r24;
+ uvlong r25;
+ uvlong r26;
+ uvlong r27;
+ uvlong r28;
+ uvlong r29;
+ uvlong r30;
+ uvlong r31;
+
+ /* csrs: generally supervisor ones */
+ uvlong status;
+ uvlong ie;
+ union {
+ uvlong cause;
+ uvlong type;
+ };
+ uvlong tval; /* faulting address */
+
+ uvlong curmode;
+};
+
+#endif
diff --git a/riscv64/include/u.h b/riscv64/include/u.h
new file mode 100644
index 0000000000..68755e81c3
--- /dev/null
+++ b/riscv64/include/u.h
@@ -0,0 +1,74 @@
+#define nil ((void*)0)
+typedef unsigned short ushort;
+typedef unsigned char uchar;
+typedef unsigned long ulong;
+typedef unsigned int uint;
+typedef signed char schar;
+typedef long long vlong;
+typedef unsigned long long uvlong;
+typedef vlong intptr;
+typedef unsigned long long uintptr;
+typedef unsigned long usize;
+typedef uint Rune;
+typedef union FPdbleword FPdbleword;
+
+typedef uintptr jmp_buf[2];
+#define JMPBUFSP 0
+#define JMPBUFPC 1
+#define JMPBUFDPC 0
+typedef unsigned int mpdigit; /* for /sys/include/mp.h */
+
+typedef unsigned char u8int;
+typedef unsigned short u16int;
+typedef unsigned int u32int;
+typedef unsigned long long u64int;
+
+/* FCR */
+#define FPINEX 0
+#define FPUNFL 0
+#define FPOVFL 0
+#define FPZDIV 0
+#define FPINVAL 0
+#define FPRNR (0<<5)
+#define FPRZ (1<<5)
+#define FPRPINF (3<<5)
+#define FPRNINF (2<<5)
+#define FPRMASK (15<<5)
+#define FPPEXT 0
+#define FPPSGL 0
+#define FPPDBL 0
+#define FPPMASK 0
+/* FSR */
+#define FPAINEX (1<<0)
+#define FPAOVFL (1<<2)
+#define FPAUNFL (1<<1)
+#define FPAZDIV (1<<3)
+#define FPAINVAL (1<<4)
+
+union FPdbleword
+{
+ double x;
+ struct { /* little endian */
+ ulong lo;
+ ulong hi;
+ };
+};
+
+/* stdarg - little-endian 64-bit */
+typedef uintptr va_list;
+#define va_start(list, start) list =\
+ (sizeof(start) < 4?\
+ (uintptr)((long*)&(start)+1):\
+ (uintptr)(&(start)+1))
+#define va_end(list)\
+ USED(list)
+#define va_arg(list, mode)\
+ ((sizeof(mode) == 1)?\
+ ((list += 4), (mode*)list)[-4]:\
+ (sizeof(mode) == 2)?\
+ ((list += 4), (mode*)list)[-2]:\
+ (sizeof(mode) == 4)?\
+ ((list += 4), (mode*)list)[-1]:\
+ ((list += sizeof(mode)+7), (list &= ~7), (mode*)list)[-1])
+
+#define _BITS64 /* for ape */
diff --git a/riscv64/include/ureg.h b/riscv64/include/ureg.h
new file mode 100644
index 0000000000..27d202b697
--- /dev/null
+++ b/riscv64/include/ureg.h
@@ -0,0 +1,57 @@
+struct Ureg
+{
+ union {
+ uintptr pc;
+ uintptr regs[1];
+ };
+ uintptr r1; /* link */
+ union{
+ uintptr r2;
+ uintptr sp;
+ uintptr usp;
+ };
+ uintptr r3; /* sb */
+ uintptr r4;
+ uintptr r5;
+ uintptr r6; /* up in kernel */
+ uintptr r7; /* m in kernel */
+ union{
+ uintptr r8;
+ uintptr arg;
+ uintptr ret;
+ };
+ uintptr r9;
+ uintptr r10;
+ uintptr r11;
+ uintptr r12;
+ uintptr r13;
+ uintptr r14;
+ uintptr r15;
+ uintptr r16;
+ uintptr r17;
+ uintptr r18;
+ uintptr r19;
+ uintptr r20;
+ uintptr r21;
+ uintptr r22;
+ uintptr r23;
+ uintptr r24;
+ uintptr r25;
+ uintptr r26;
+ uintptr r27;
+ uintptr r28;
+ uintptr r29;
+ uintptr r30;
+ uintptr r31;
+
+ /* csrs: generally supervisor ones */
+ uintptr status;
+ uintptr ie;
+ union {
+ uintptr cause;
+ uintptr type;
+ };
+ uintptr tval; /* faulting address */
+
+ uintptr curmode;
+};
diff --git a/riscv64/mkfile b/riscv64/mkfile
new file mode 100644
index 0000000000..9e4b471c92
--- /dev/null
+++ b/riscv64/mkfile
@@ -0,0 +1,6 @@
+> treat left operand as unsigned ? */
+#define Unsigned_Shifts 1
+#define M_E 2.7182818284590452354 /* e */
+#define M_LOG2E 1.4426950408889634074 /* log 2e */
+#define M_LOG10E 0.43429448190325182765 /* log 10e */
+#define M_LN2 0.69314718055994530942 /* log e2 */
+#define M_LN10 2.30258509299404568402 /* log e10 */
+#define M_PI 3.14159265358979323846 /* pi */
+#define M_PI_2 1.57079632679489661923 /* pi/2 */
+#define M_PI_4 0.78539816339744830962 /* pi/4 */
+#define M_1_PI 0.31830988618379067154 /* 1/pi */
+#define M_2_PI 0.63661977236758134308 /* 2/pi */
+#define M_2_SQRTPI 1.12837916709551257390 /* 2/sqrt(pi) */
+#define M_SQRT2 1.41421356237309504880 /* sqrt(2) */
+#define M_SQRT1_2 0.70710678118654752440 /* 1/sqrt(2) */
+
+extern double hypot(double, double);
+extern double erf(double);
+extern double erfc(double);
+extern double j0(double);
+extern double y0(double);
+extern double j1(double);
+extern double y1(double);
+extern double jn(int, double);
+extern double yn(int, double);
+
+#endif
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#define isnan(x) isNaN(x)
+#define isinf(x) isInf(x, 0)
+
+#endif /* __MATH */
diff --git a/spim/include/ape/stdarg.h b/spim/include/ape/stdarg.h
new file mode 100644
index 0000000000..a19210b35d
--- /dev/null
+++ b/spim/include/ape/stdarg.h
@@ -0,0 +1,18 @@
+#ifndef __STDARG
+#define __STDARG
+
+typedef char *va_list;
+
+#define va_start(list, start) list =\
+ (sizeof(start) < 4?\
+ (char*)((int*)&(start)+1):\
+ (char*)(&(start)+1))
+#define va_end(list)
+#define va_arg(list, mode)\
+ ((sizeof(mode) == 1)?\
+ ((list += 4), (mode*)list)[-4]:\
+ (sizeof(mode) == 2)?\
+ ((list += 4), (mode*)list)[-2]:\
+ ((list += sizeof(mode)), (mode*)list)[-1])
+
+#endif /* __STDARG */
diff --git a/spim/include/ape/ureg.h b/spim/include/ape/ureg.h
new file mode 100644
index 0000000000..702bd1f5d4
--- /dev/null
+++ b/spim/include/ape/ureg.h
@@ -0,0 +1,52 @@
+#ifndef __UREG_H
+#define __UREG_H
+#if !defined(_PLAN9_SOURCE)
+ This header file is an extension to ANSI/POSIX
+#endif
+
+struct Ureg
+{
+ unsigned long status;
+ unsigned long pc;
+ union{
+ unsigned long sp; /* r29 */
+ unsigned long usp; /* r29 */
+ };
+ unsigned long cause;
+ unsigned long badvaddr;
+ unsigned long tlbvirt;
+ unsigned long hi;
+ unsigned long lo;
+ unsigned long r31;
+ unsigned long r30;
+ unsigned long r28;
+ unsigned long r27; /* unused */
+ unsigned long r26; /* unused */
+ unsigned long r25;
+ unsigned long r24;
+ unsigned long r23;
+ unsigned long r22;
+ unsigned long r21;
+ unsigned long r20;
+ unsigned long r19;
+ unsigned long r18;
+ unsigned long r17;
+ unsigned long r16;
+ unsigned long r15;
+ unsigned long r14;
+ unsigned long r13;
+ unsigned long r12;
+ unsigned long r11;
+ unsigned long r10;
+ unsigned long r9;
+ unsigned long r8;
+ unsigned long r7;
+ unsigned long r6;
+ unsigned long r5;
+ unsigned long r4;
+ unsigned long r3;
+ unsigned long r2;
+ unsigned long r1;
+};
+
+#endif
diff --git a/spim/include/u.h b/spim/include/u.h
new file mode 100644
index 0000000000..43901d37b1
--- /dev/null
+++ b/spim/include/u.h
@@ -0,0 +1,69 @@
+#define nil ((void*)0)
+typedef unsigned short ushort;
+typedef unsigned char uchar;
+typedef unsigned long ulong;
+typedef unsigned int uint;
+typedef signed char schar;
+typedef long long vlong;
+typedef unsigned long long uvlong;
+typedef unsigned long uintptr;
+typedef unsigned long usize;
+typedef uint Rune;
+typedef union FPdbleword FPdbleword;
+typedef long jmp_buf[2];
+#define JMPBUFSP 0
+#define JMPBUFPC 1
+#define JMPBUFDPC 0
+typedef unsigned int mpdigit; /* for /sys/include/mp.h */
+typedef unsigned char u8int;
+typedef unsigned short u16int;
+typedef unsigned int u32int;
+typedef unsigned long long u64int;
+
+/* FCR (FCR31) */
+#define FPINEX (1<<7) /* enables */
+#define FPUNFL (1<<8)
+#define FPOVFL (1<<9)
+#define FPZDIV (1<<10)
+#define FPINVAL (1<<11)
+#define FPRNR (0<<0) /* rounding modes */
+#define FPRZ (1<<0)
+#define FPRPINF (2<<0)
+#define FPRNINF (3<<0)
+#define FPRMASK (3<<0)
+#define FPPEXT 0
+#define FPPSGL 0
+#define FPPDBL 0
+#define FPPMASK 0
+#define FPCOND (1<<23)
+
+/* FSR (also FCR31) */
+#define FPAINEX (1<<2) /* flags */
+#define FPAOVFL (1<<4)
+#define FPAUNFL (1<<3)
+#define FPAZDIV (1<<5)
+#define FPAINVAL (1<<6)
+
+union FPdbleword
+{
+ double x;
+ struct { /* little endian */
+ ulong lo;
+ ulong hi;
+ };
+};
+
+/* stdarg */
+typedef char* va_list;
+#define va_start(list, start) list =\
+ (sizeof(start) < 4?\
+ (char*)((int*)&(start)+1):\
+ (char*)(&(start)+1))
+#define va_end(list)\
+ USED(list)
+#define va_arg(list, mode)\
+ ((sizeof(mode) == 1)?\
+ ((list += 4), (mode*)list)[-4]:\
+ (sizeof(mode) == 2)?\
+ ((list += 4), (mode*)list)[-2]:\
+ ((list += sizeof(mode)), (mode*)list)[-1])
diff --git a/spim/include/ureg.h b/spim/include/ureg.h
new file mode 100644
index 0000000000..32cbfb3fc8
--- /dev/null
+++ b/spim/include/ureg.h
@@ -0,0 +1,44 @@
+struct Ureg
+{
+ ulong status;
+ ulong pc;
+ union{
+ ulong sp; /* r29 */
+ ulong usp; /* r29 */
+ };
+ ulong cause;
+ ulong badvaddr;
+ ulong tlbvirt;
+ ulong hi;
+ ulong lo;
+ ulong r31;
+ ulong r30;
+ ulong r28;
+ ulong r27; /* unused */
+ ulong r26; /* unused */
+ ulong r25;
+ ulong r24;
+ ulong r23;
+ ulong r22;
+ ulong r21;
+ ulong r20;
+ ulong r19;
+ ulong r18;
+ ulong r17;
+ ulong r16;
+ ulong r15;
+ ulong r14;
+ ulong r13;
+ ulong r12;
+ ulong r11;
+ ulong r10;
+ ulong r9;
+ ulong r8;
+ ulong r7;
+ ulong r6;
+ ulong r5;
+ ulong r4;
+ ulong r3;
+ ulong r2;
+ ulong r1;
+};
diff --git a/spim/mkfile b/spim/mkfile
new file mode 100644
index 0000000000..d20e5cb6e5
--- /dev/null
+++ b/spim/mkfile
@@ -0,0 +1,9 @@
+> treat left operand as unsigned ? */
+#define Unsigned_Shifts 1
+#define M_E 2.7182818284590452354 /* e */
+#define M_LOG2E 1.4426950408889634074 /* log 2e */
+#define M_LOG10E 0.43429448190325182765 /* log 10e */
+#define M_LN2 0.69314718055994530942 /* log e2 */
+#define M_LN10 2.30258509299404568402 /* log e10 */
+#define M_PI 3.14159265358979323846 /* pi */
+#define M_PI_2 1.57079632679489661923 /* pi/2 */
+#define M_PI_4 0.78539816339744830962 /* pi/4 */
+#define M_1_PI 0.31830988618379067154 /* 1/pi */
+#define M_2_PI 0.63661977236758134308 /* 2/pi */
+#define M_2_SQRTPI 1.12837916709551257390 /* 2/sqrt(pi) */
+#define M_SQRT2 1.41421356237309504880 /* sqrt(2) */
+#define M_SQRT1_2 0.70710678118654752440 /* 1/sqrt(2) */
+
+extern double hypot(double, double);
+extern double erf(double);
+extern double erfc(double);
+extern double j0(double);
+extern double y0(double);
+extern double j1(double);
+extern double y1(double);
+extern double jn(int, double);
+extern double yn(int, double);
+
+#endif
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#define isnan(x) isNaN(x)
+#define isinf(x) isInf(x, 0)
+
+#endif /* __MATH */
diff --git a/spim64/include/ape/stdarg.h b/spim64/include/ape/stdarg.h
new file mode 100644
index 0000000000..5c99e11bce
--- /dev/null
+++ b/spim64/include/ape/stdarg.h
@@ -0,0 +1,20 @@
+#ifndef __STDARG
+#define __STDARG
+
+typedef char *va_list;
+
+#define va_start(list, start) list =\
+ (sizeof(start) < 8?\
+ (char*)((int*)&(start)+1):\
+ (char*)(&(start)+1))
+#define va_end(list)
+#define va_arg(list, mode)\
+ ((sizeof(mode) == 1)?\
+ ((list += 8), (mode*)list)[-8]:\
+ (sizeof(mode) == 2)?\
+ ((list += 8), (mode*)list)[-4]:\
+ (sizeof(mode) == 4)?\
+ ((list += 8), (mode*)list)[-2]:\
+ ((list += sizeof(mode)), (mode*)list)[-1])
+
+#endif /* __STDARG */
diff --git a/spim64/include/ape/ureg.h b/spim64/include/ape/ureg.h
new file mode 100644
index 0000000000..ee83ab40ff
--- /dev/null
+++ b/spim64/include/ape/ureg.h
@@ -0,0 +1,52 @@
+#ifndef __UREG_H
+#define __UREG_H
+#if !defined(_PLAN9_SOURCE)
+ This header file is an extension to ANSI/POSIX
+#endif
+
+struct Ureg
+{
+ unsigned long long status;
+ unsigned long long pc;
+ union{
+ unsigned long long sp; /* r29 */
+ unsigned long long usp; /* r29 */
+ };
+ unsigned long long cause;
+ unsigned long long badvaddr;
+ unsigned long long tlbvirt;
+ unsigned long long hi;
+ unsigned long long lo;
+ unsigned long long r31;
+ unsigned long long r30;
+ unsigned long long r28;
+ unsigned long long r27; /* unused */
+ unsigned long long r26; /* unused */
+ unsigned long long r25;
+ unsigned long long r24;
+ unsigned long long r23;
+ unsigned long long r22;
+ unsigned long long r21;
+ unsigned long long r20;
+ unsigned long long r19;
+ unsigned long long r18;
+ unsigned long long r17;
+ unsigned long long r16;
+ unsigned long long r15;
+ unsigned long long r14;
+ unsigned long long r13;
+ unsigned long long r12;
+ unsigned long long r11;
+ unsigned long long r10;
+ unsigned long long r9;
+ unsigned long long r8;
+ unsigned long long r7;
+ unsigned long long r6;
+ unsigned long long r5;
+ unsigned long long r4;
+ unsigned long long r3;
+ unsigned long long r2;
+ unsigned long long r1;
+};
+
+#endif
diff --git a/spim64/include/u.h b/spim64/include/u.h
new file mode 100644
index 0000000000..31ebb14179
--- /dev/null
+++ b/spim64/include/u.h
@@ -0,0 +1,71 @@
+#define nil ((void*)0)
+typedef unsigned short ushort;
+typedef unsigned char uchar;
+typedef unsigned long ulong;
+typedef unsigned int uint;
+typedef signed char schar;
+typedef long long vlong;
+typedef unsigned long long uvlong;
+typedef unsigned long long uintptr;
+typedef unsigned long usize;
+typedef uint Rune;
+typedef union FPdbleword FPdbleword;
+typedef uintptr jmp_buf[2];
+#define JMPBUFSP 0
+#define JMPBUFPC 1
+#define JMPBUFDPC 0
+typedef unsigned int mpdigit; /* for /sys/include/mp.h */
+typedef unsigned char u8int;
+typedef unsigned short u16int;
+typedef unsigned int u32int;
+typedef unsigned long long u64int;
+
+/* FCR (FCR31) */
+#define FPINEX (1<<7) /* enables */
+#define FPUNFL (1<<8)
+#define FPOVFL (1<<9)
+#define FPZDIV (1<<10)
+#define FPINVAL (1<<11)
+#define FPRNR (0<<0) /* rounding modes */
+#define FPRZ (1<<0)
+#define FPRPINF (2<<0)
+#define FPRNINF (3<<0)
+#define FPRMASK (3<<0)
+#define FPPEXT 0
+#define FPPSGL 0
+#define FPPDBL 0
+#define FPPMASK 0
+#define FPCOND (1<<23)
+
+/* FSR (also FCR31) */
+#define FPAINEX (1<<2) /* flags */
+#define FPAOVFL (1<<4)
+#define FPAUNFL (1<<3)
+#define FPAZDIV (1<<5)
+#define FPAINVAL (1<<6)
+
+union FPdbleword
+{
+ double x;
+ struct { /* little endian */
+ ulong lo;
+ ulong hi;
+ };
+};
+
+/* stdarg */
+typedef char* va_list;
+#define va_start(list, start) list =\
+ (sizeof(start) < 8?\
+ (char*)((vlong*)&(start)+1):\
+ (char*)(&(start)+1))
+#define va_end(list)\
+ USED(list)
+#define va_arg(list, mode)\
+ ((sizeof(mode) == 1)?\
+ ((list += 8), (mode*)list)[-8]:\
+ (sizeof(mode) == 2)?\
+ ((list += 8), (mode*)list)[-4]:\
+ (sizeof(mode) == 4)?\
+ ((list += 8), (mode*)list)[-2]:\
+ ((list += sizeof(mode)), (mode*)list)[-1])
diff --git a/spim64/include/ureg.h b/spim64/include/ureg.h
new file mode 100644
index 0000000000..5127f2d6bf
--- /dev/null
+++ b/spim64/include/ureg.h
@@ -0,0 +1,44 @@
+struct Ureg
+{
+ u64int status;
+ u64int pc;
+ union{
+ u64int sp; /* r29 */
+ u64int usp; /* r29 */
+ };
+ u64int cause;
+ u64int badvaddr;
+ u64int tlbvirt;
+ u64int hi;
+ u64int lo;
+ u64int r31;
+ u64int r30;
+ u64int r28;
+ u64int r27; /* unused */
+ u64int r26; /* unused */
+ u64int r25;
+ u64int r24;
+ u64int r23;
+ u64int r22;
+ u64int r21;
+ u64int r20;
+ u64int r19;
+ u64int r18;
+ u64int r17;
+ u64int r16;
+ u64int r15;
+ u64int r14;
+ u64int r13;
+ u64int r12;
+ u64int r11;
+ u64int r10;
+ u64int r9;
+ u64int r8;
+ u64int r7;
+ u64int r6;
+ u64int r5;
+ u64int r4;
+ u64int r3;
+ u64int r2;
+ u64int r1;
+};
diff --git a/spim64/mkfile b/spim64/mkfile
new file mode 100644
index 0000000000..6b5029aa27
--- /dev/null
+++ b/spim64/mkfile
@@ -0,0 +1,9 @@
+Archival block-level storage using secure hashes as block identifiers.
+Fossil, an Archival File Server
+(html |
+ps |
+pdf)
+
+Sean Quinlan, Jim McKie and Russ Cox
+
+An archival file server built for Plan 9.
+
+
The IL protocol
(html |
ps |
diff --git a/sys/include/a.out.h b/sys/include/a.out.h
index 08c3a1509d..36db59a865 100644
--- a/sys/include/a.out.h
+++ b/sys/include/a.out.h
@@ -31,9 +31,11 @@ struct Exec
#define S_MAGIC _MAGIC(HDR_MAGIC, 26) /* amd64 */
#define T_MAGIC _MAGIC(HDR_MAGIC, 27) /* powerpc64 */
#define R_MAGIC _MAGIC(HDR_MAGIC, 28) /* arm64 */
+#define Z_MAGIC _MAGIC(0, 29) /* riscv */
+#define Y_MAGIC _MAGIC(0, 30) /* riscv64 */
#define MIN_MAGIC 8
-#define MAX_MAGIC 28 /* <= 90 */
+#define MAX_MAGIC 30 /* <= 90 */
#define DYN_MAGIC 0x80000000 /* dlm */
diff --git a/sys/include/aml.h b/sys/include/aml.h
new file mode 100644
index 0000000000..18f76538f8
--- /dev/null
+++ b/sys/include/aml.h
@@ -0,0 +1,76 @@
+#pragma lib "libaml.a"
+#pragma src "/sys/src/libaml"
+
+/*
+ * b uchar* buffer amllen() returns number of bytes
+ * s char* string amllen() is strlen()
+ * n char* undefined name amllen() is strlen()
+ * i uvlong* integer
+ * p void** package amllen() is # of elements
+ * r void* region
+ * f void* field
+ * u void* bufferfield
+ * N void* name
+ * R void* reference
+ */
+int amltag(void *);
+void* amlval(void *);
+uvlong amlint(void *);
+int amllen(void *);
+
+void* amlnew(char tag, int len);
+
+void amlinit(void);
+void amlexit(void);
+
+int amlload(uchar *data, int len);
+void* amlwalk(void *dot, char *name);
+int amleval(void *dot, char *fmt, ...);
+void amlenum(void *dot, char *seg, int (*proc)(void *, void *), void *arg);
+
+/*
+ * exclude from garbage collection
+ */
+void amltake(void *);
+void amldrop(void *);
+
+void* amlroot;
+int amldebug;
+
+#pragma varargck type "V" void*
+#pragma varargck type "N" void*
+
+/* to be provided by operating system */
+extern void* amlalloc(int);
+extern void amlfree(void*);
+
+extern void amldelay(int); /* microseconds */
+
+enum {
+ MemSpace = 0x00,
+ IoSpace = 0x01,
+ PcicfgSpace = 0x02,
+ EbctlSpace = 0x03,
+ SmbusSpace = 0x04,
+ CmosSpace = 0x05,
+ PcibarSpace = 0x06,
+ FixedhwSpace = 0x08,
+ IpmiSpace = 0x07,
+};
+
+typedef struct Amlio Amlio;
+struct Amlio
+{
+ int space;
+ uvlong off;
+ uvlong len;
+ void *name;
+ uchar *va;
+
+ void *aux;
+ int (*read)(Amlio *io, void *data, int len, int off);
+ int (*write)(Amlio *io, void *data, int len, int off);
+};
+
+extern int amlmapio(Amlio *io);
+extern void amlunmapio(Amlio *io);
diff --git a/sys/include/ape/dynld.h b/sys/include/ape/dynld.h
new file mode 100644
index 0000000000..03261d331e
--- /dev/null
+++ b/sys/include/ape/dynld.h
@@ -0,0 +1,49 @@
+#ifndef __DYNLD_H
+#define __DYNLD_H
+#if !defined(_PLAN9_SOURCE)
+ This header file is an extension to ANSI/POSIX
+#endif
+
+#pragma src "/sys/src/ape/lib/dynld"
+#pragma lib "/$M/lib/ape/libdynld.a"
+
+typedef struct Dynobj Dynobj;
+typedef struct Dynsym Dynsym;
+
+struct Dynobj
+{
+ unsigned long size; /* total size in bytes */
+ unsigned long text; /* bytes of text */
+ unsigned long data; /* bytes of data */
+ unsigned long bss; /* bytes of bss */
+ unsigned char* base; /* start of text, data, bss */
+ int nexport;
+ Dynsym* export; /* export table */
+ int nimport;
+ Dynsym** import; /* import table */
+};
+
+/*
+ * this structure is known to the linkers
+ */
+struct Dynsym
+{
+ unsigned long sig;
+ unsigned long addr;
+ char *name;
+};
+
+extern Dynsym* dynfindsym(char*, Dynsym*, int);
+extern void dynfreeimport(Dynobj*);
+extern void* dynimport(Dynobj*, char*, unsigned long);
+extern int dynloadable(void*, long (*r)(void*,void*,long), long long(*sk)(void*,long long,int));
+extern Dynobj* dynloadfd(int, Dynsym*, int, unsigned long);
+extern Dynobj* dynloadgen(void*, long (*r)(void*,void*,long), long long (*s)(void*,long long,int), void (*e)(char*), Dynsym*, int, unsigned long);
+extern long dynmagic(void);
+extern void dynobjfree(Dynobj*);
+extern char* dynreloc(unsigned char*, unsigned long, int, Dynsym**, int);
+extern int dyntabsize(Dynsym*);
+
+extern Dynsym _exporttab[]; /* created by linker -x (when desired) */
+
+#endif
diff --git a/sys/include/ape/stdio.h b/sys/include/ape/stdio.h
index c1be325ac6..a5b727ba1d 100644
--- a/sys/include/ape/stdio.h
+++ b/sys/include/ape/stdio.h
@@ -11,35 +11,37 @@
/*
* According to X3J11, there is only one i/o buffer
* and it must not be occupied by both input and output data.
- * If rpwp>=(f)->rp || (f)->flags&LINEBUF && _IO_ctmp=='\n'\
- * ?_IO_putc(_IO_ctmp, f)\
- * :*(f)->wp++=_IO_ctmp)
- *
+ *
+ * If rpwp>=(f)->rp || (f)->flags&LINEBUF && _IO_ctmp=='\n'?\
+ * _IO_putc(_IO_ctmp, f): *(f)->wp++=_IO_ctmp)
*/
typedef struct{
int fd; /* UNIX file pointer */
char flags; /* bits for must free buffer on close, line-buffered */
char state; /* last operation was read, write, position, error, eof */
- char *buf; /* pointer to i/o buffer */
- char *rp; /* read pointer (or write end-of-buffer) */
- char *wp; /* write pointer (or read end-of-buffer) */
- char *lp; /* actual write pointer used when line-buffering */
+ unsigned char *buf; /* pointer to i/o buffer */
+ unsigned char *rp; /* read pointer (or write end-of-buffer) */
+ unsigned char *wp; /* write pointer (or read end-of-buffer) */
+ unsigned char *lp; /* actual write pointer used when line-buffering */
size_t bufl; /* actual length of buffer */
- char unbuf[1]; /* tiny buffer for unbuffered io (used for ungetc?) */
+ unsigned char unbuf[1]; /* tiny buffer for unbuffered io (used for ungetc?) */
+ int junk;
}FILE;
-typedef long long fpos_t;
+
+typedef off_t fpos_t;
+
#ifndef NULL
#ifdef __cplusplus
#define NULL 0
@@ -47,107 +49,115 @@ typedef long long fpos_t;
#define NULL ((void*)0)
#endif
#endif
+
/*
* Third arg of setvbuf
*/
#define _IOFBF 1 /* block-buffered */
#define _IOLBF 2 /* line-buffered */
#define _IONBF 3 /* unbuffered */
-#define BUFSIZ 4096 /* size of setbuf buffer */
+
+#define BUFSIZ 8192 /* size of setbuf buffer */
#define EOF (-1) /* returned on end of file */
-#define FOPEN_MAX 90 /* max files open */
+#define FOPEN_MAX 128 /* max files open */
#define FILENAME_MAX BUFSIZ /* silly filename length */
#define L_tmpnam 20 /* sizeof "/tmp/abcdefghij9999 */
#define L_cuserid 32 /* maximum size user name */
#define L_ctermid 32 /* size of name of controlling tty */
+
+#ifndef SEEK_SET /* also defined in unistd.h */
#define SEEK_CUR 1
#define SEEK_END 2
#define SEEK_SET 0
+#endif
#define TMP_MAX 64 /* very hard to set correctly */
+
#define stderr (&_IO_stream[2])
#define stdin (&_IO_stream[0])
#define stdout (&_IO_stream[1])
-#define _IO_CHMASK 0377 /* mask for 8 bit characters */
+
+extern FILE _IO_stream[FOPEN_MAX];
#ifdef __cplusplus
extern "C" {
#endif
-extern int remove(const char *);
-extern int rename(const char *, const char *);
-extern FILE *tmpfile(void);
-extern char *tmpnam(char *);
-extern int fclose(FILE *);
-extern int fflush(FILE *);
-extern FILE *fopen(const char *, const char *);
-extern FILE *freopen(const char *, const char *, FILE *);
-extern void setbuf(FILE *, char *);
-extern int setvbuf(FILE *, char *, int, size_t);
-extern int fprintf(FILE *, const char *, ...);
-extern int fscanf(FILE *, const char *, ...);
-extern int printf(const char *, ...);
-extern int scanf(const char *, ...);
-extern int sprintf(char *, const char *, ...);
-
+int _IO_getc(FILE *f);
+int _IO_putc(int, FILE *);
+void clearerr(FILE *);
+int fclose(FILE *);
+FILE *fdopen(const int, const char *);
+int feof(FILE *);
+int ferror(FILE *);
+int fflush(FILE *);
+int fgetc(FILE *);
+int fgetpos(FILE *, fpos_t *);
+char *fgets(char *, int, FILE *);
+int fileno(FILE *);
+FILE *fopen(const char *, const char *);
+int fprintf(FILE *, const char *, ...);
+int fputc(int, FILE *);
+int fputs(const char *, FILE *);
+size_t fread(void *, size_t, size_t, FILE *);
+FILE *freopen(const char *, const char *, FILE *);
+int fscanf(FILE *, const char *, ...);
+int fseek(FILE *, long, int);
+int fseeko(FILE *, off_t, int);
+int fsetpos(FILE *, const fpos_t *);
+long ftell(FILE *);
+off_t ftello(FILE *);
+size_t fwrite(const void *, size_t, size_t, FILE *);
+int getc(FILE *);
+#define getc(f) ((f)->rp>=(f)->wp? _IO_getc(f): *(f)->rp++)
+int getchar(void);
+#define getchar() getc(stdin)
+char *gets(char *);
+void perror(const char *);
+int printf(const char *, ...);
+int putc(int, FILE *);
+/* assignment to f->junk eliminates warnings about unused result of operation */
+#define putc(c, f) ((f)->junk = ((f)->wp>=(f)->rp? \
+ _IO_putc(c, f): (*(f)->wp++ = (c))))
+int putchar(int);
+#define putchar(c) putc(c, stdout)
+int puts(const char *);
+int remove(const char *);
+int rename(const char *, const char *);
+void rewind(FILE *);
+int scanf(const char *, ...);
+void setbuf(FILE *, char *);
+int setvbuf(FILE *, char *, int, size_t);
/*
- * NB: C99 now *requires *snprintf to return the number of characters
+ * NB: C99 now requires *snprintf to return the number of characters
* that would have been written, had there been room.
*/
-extern int snprintf(char *, size_t, const char *, ...);
-extern int vsnprintf(char *, size_t, const char *, va_list);
-
-extern int sscanf(const char *, const char *, ...);
-extern int vfprintf(FILE *, const char *, va_list);
-extern int vprintf(const char *, va_list);
-extern int vsprintf(char *, const char *, va_list);
-extern int vfscanf(FILE *, const char *, va_list);
-extern int fgetc(FILE *);
-extern char *fgets(char *, int, FILE *);
-extern int fputc(int, FILE *);
-extern int fputs(const char *, FILE *);
-extern int getc(FILE *);
-#define getc(f) ((f)->rp>=(f)->wp?_IO_getc(f):*(f)->rp++&_IO_CHMASK)
-extern int _IO_getc(FILE *f);
-extern int getchar(void);
-#define getchar() getc(stdin)
-extern char *gets(char *);
-extern int putc(int, FILE *);
-#define putc(c, f) ((f)->wp>=(f)->rp?_IO_putc(c, f):(*(f)->wp++=c)&_IO_CHMASK)
-extern int _IO_putc(int, FILE *);
-extern int putchar(int);
-#define putchar(c) putc(c, stdout)
-extern int puts(const char *);
-extern int ungetc(int, FILE *);
-extern size_t fread(void *, size_t, size_t, FILE *);
-extern size_t fwrite(const void *, size_t, size_t, FILE *);
-extern int fgetpos(FILE *, fpos_t *);
-extern int fseek(FILE *, long, int);
-extern int fseeko(FILE *, off_t, int);
-extern int fsetpos(FILE *, const fpos_t *);
-extern long ftell(FILE *);
-extern off_t ftello(FILE *);
-extern void rewind(FILE *);
-extern void clearerr(FILE *);
-extern int feof(FILE *);
-extern int ferror(FILE *);
-extern void perror(const char *);
-extern FILE _IO_stream[FOPEN_MAX];
+int snprintf(char *, size_t, const char *, ...);
+int sprintf(char *, const char *, ...);
+int sscanf(const char *, const char *, ...);
+FILE *tmpfile(void);
+char *tmpnam(char *);
+int ungetc(int, FILE *);
+int vfprintf(FILE *, const char *, va_list);
+int vfscanf(FILE *, const char *, va_list);
+int vprintf(const char *, va_list);
+int vsnprintf(char *, size_t, const char *, va_list);
+int vsprintf(char *, const char *, va_list);
#ifdef _POSIX_SOURCE
-extern int fileno(FILE *);
-extern FILE* fdopen(int, const char*);
-extern char *ctermid(char *);
+int fileno(FILE *);
+FILE* fdopen(int, const char*);
+char *ctermid(char *);
#endif
#ifdef _REENTRANT_SOURCE
-extern char *tmpnam_r(char *);
-extern char *ctermid_r(char *);
+char *tmpnam_r(char *);
+char *ctermid_r(char *);
#endif
#ifdef _BSD_EXTENSION
#pragma lib "/$M/lib/ape/libbsd.a"
-extern FILE *popen(char *, char *);
-extern int pclose(FILE *);
+FILE *popen(char *, char *);
+int pclose(FILE *);
#endif
#ifdef __cplusplus
diff --git a/sys/include/bio.h b/sys/include/bio.h
index 763692b07c..fe92a99cf7 100644
--- a/sys/include/bio.h
+++ b/sys/include/bio.h
@@ -6,7 +6,7 @@ typedef struct Biobufhdr Biobufhdr;
enum
{
- Bsize = 8*1024,
+ Bsize = 16*1024,
Bungetsize = UTFmax+1, /* space for ungetc */
Bmagic = 0x314159,
Beof = -1,
@@ -58,6 +58,7 @@ int Binits(Biobufhdr*, int, int, uchar*, int);
int Blinelen(Biobufhdr*);
vlong Boffset(Biobufhdr*);
Biobuf* Bopen(char*, int);
+Biobuf* Bfdopen(int, int);
int Bprint(Biobufhdr*, char*, ...);
int Bvprint(Biobufhdr*, char*, va_list);
int Bputc(Biobufhdr*, int);
diff --git a/sys/include/disk.h b/sys/include/disk.h
index b8fdb49094..bf6fa73d7a 100644
--- a/sys/include/disk.h
+++ b/sys/include/disk.h
@@ -1,6 +1,8 @@
#pragma src "/sys/src/libdisk"
#pragma lib "libdisk.a"
+#include
+
/* SCSI interface */
typedef struct Scsi Scsi;
struct Scsi {
@@ -59,71 +61,6 @@ enum {
Gdisk,
Gguess,
};
-enum { /* SCSI command codes */
- ScmdTur = 0x00, /* test unit ready */
- ScmdRewind = 0x01, /* rezero/rewind */
- ScmdRsense = 0x03, /* request sense */
- ScmdFormat = 0x04, /* format unit */
- ScmdRblimits = 0x05, /* read block limits */
- ScmdRead = 0x08, /* read */
- ScmdWrite = 0x0A, /* write */
- ScmdSeek = 0x0B, /* seek */
- ScmdFmark = 0x10, /* write filemarks */
- ScmdSpace = 0x11, /* space forward/backward */
- ScmdInq = 0x12, /* inquiry */
- ScmdMselect6 = 0x15, /* mode select */
- ScmdMselect10 = 0x55, /* mode select */
- ScmdMsense6 = 0x1A, /* mode sense */
- ScmdMsense10 = 0x5A, /* mode sense */
- ScmdStart = 0x1B, /* start/stop unit */
- ScmdRcapacity = 0x25, /* read capacity */
- ScmdRcapacity16 = 0x9e, /* long read capacity */
- ScmdRformatcap = 0x23, /* read format capacity */
- ScmdExtread = 0x28, /* extended read (10 bytes) */
- ScmdRead16 = 0x88, /* long read (16 bytes) */
- ScmdExtwrite = 0x2A, /* extended write (10 bytes) */
- ScmdExtwritever = 0x2E, /* extended write and verify (10) */
- ScmdWrite16 = 0x8A, /* long write (16 bytes) */
- ScmdExtseek = 0x2B, /* extended seek */
-
- ScmdSynccache = 0x35, /* flush cache */
- ScmdRTOC = 0x43, /* read TOC data */
- ScmdRdiscinfo = 0x51, /* read disc information */
- ScmdRtrackinfo = 0x52, /* read track information */
- ScmdReserve = 0x53, /* reserve track */
- ScmdBlank = 0xA1, /* blank *-RW media */
-
- ScmdCDpause = 0x4B, /* pause/resume */
- ScmdCDstop = 0x4E, /* stop play/scan */
- ScmdCDplay = 0xA5, /* play audio */
- ScmdCDload = 0xA6, /* load/unload */
- ScmdCDscan = 0xBA, /* fast forward/reverse */
- ScmdCDstatus = 0xBD, /* mechanism status */
- Scmdgetconf = 0x46, /* get configuration */
-
- ScmdEInitialise = 0x07, /* initialise element status */
- ScmdMMove = 0xA5, /* move medium */
- ScmdEStatus = 0xB8, /* read element status */
- ScmdMExchange = 0xA6, /* exchange medium */
- ScmdEposition = 0x2B, /* position to element */
-
- ScmdReadDVD = 0xAD, /* read dvd structure */
- ScmdReportKey = 0xA4, /* read dvd key */
- ScmdSendKey = 0xA3, /* write dvd key */
-
- ScmdClosetracksess= 0x5B,
- ScmdRead12 = 0xA8,
- ScmdSetcdspeed = 0xBB,
- ScmdReadcd = 0xBE,
-
- /* vendor-specific */
- ScmdFwaddr = 0xE2, /* first writeable address */
- ScmdTreserve = 0xE4, /* reserve track */
- ScmdTinfo = 0xE5, /* read track info */
- ScmdTwrite = 0xE6, /* write track */
- ScmdMload = 0xE7, /* medium load/unload */
- ScmdFixation = 0xE9, /* fixation */
-};
/* proto file parsing */
typedef void Protoenum(char *new, char *old, Dir *d, void *a);
diff --git a/sys/include/diskcmd.h b/sys/include/diskcmd.h
new file mode 100644
index 0000000000..0c0fbe050f
--- /dev/null
+++ b/sys/include/diskcmd.h
@@ -0,0 +1,66 @@
+enum { /* SCSI command codes */
+ ScmdTur = 0x00, /* test unit ready */
+ ScmdRewind = 0x01, /* rezero/rewind */
+ ScmdRsense = 0x03, /* request sense */
+ ScmdFormat = 0x04, /* format unit */
+ ScmdRblimits = 0x05, /* read block limits */
+ ScmdRead = 0x08, /* read */
+ ScmdWrite = 0x0A, /* write */
+ ScmdSeek = 0x0B, /* seek */
+ ScmdFmark = 0x10, /* write filemarks */
+ ScmdSpace = 0x11, /* space forward/backward */
+ ScmdInq = 0x12, /* inquiry */
+ ScmdMselect6 = 0x15, /* mode select */
+ ScmdMselect10 = 0x55, /* mode select */
+ ScmdMsense6 = 0x1A, /* mode sense */
+ ScmdMsense10 = 0x5A, /* mode sense */
+ ScmdStart = 0x1B, /* start/stop unit */
+ ScmdRcapacity = 0x25, /* read capacity */
+ ScmdRcapacity16 = 0x9e, /* long read capacity */
+ ScmdRformatcap = 0x23, /* read format capacity */
+ ScmdExtread = 0x28, /* extended read (10 bytes) */
+ ScmdRead16 = 0x88, /* long read (16 bytes) */
+ ScmdExtwrite = 0x2A, /* extended write (10 bytes) */
+ ScmdExtwritever = 0x2E, /* extended write and verify (10) */
+ ScmdWrite16 = 0x8A, /* long write (16 bytes) */
+ ScmdExtseek = 0x2B, /* extended seek */
+
+ ScmdSynccache = 0x35, /* flush cache */
+ ScmdSynccache16 = 0x91, /* flush cache (16) */
+ ScmdRTOC = 0x43, /* read TOC data */
+ ScmdRdiscinfo = 0x51, /* read disc information */
+ ScmdRtrackinfo = 0x52, /* read track information */
+ ScmdReserve = 0x53, /* reserve track */
+ ScmdBlank = 0xA1, /* blank *-RW media */
+
+ ScmdCDpause = 0x4B, /* pause/resume */
+ ScmdCDstop = 0x4E, /* stop play/scan */
+ ScmdCDplay = 0xA5, /* play audio */
+ ScmdCDload = 0xA6, /* load/unload */
+ ScmdCDscan = 0xBA, /* fast forward/reverse */
+ ScmdCDstatus = 0xBD, /* mechanism status */
+ Scmdgetconf = 0x46, /* get configuration */
+
+ ScmdEInitialise = 0x07, /* initialise element status */
+ ScmdMMove = 0xA5, /* move medium */
+ ScmdEStatus = 0xB8, /* read element status */
+ ScmdMExchange = 0xA6, /* exchange medium */
+ ScmdEposition = 0x2B, /* position to element */
+
+ ScmdReadDVD = 0xAD, /* read dvd structure */
+ ScmdReportKey = 0xA4, /* read dvd key */
+ ScmdSendKey = 0xA3, /* write dvd key */
+
+ ScmdClosetracksess= 0x5B,
+ ScmdRead12 = 0xA8,
+ ScmdSetcdspeed = 0xBB,
+ ScmdReadcd = 0xBE,
+
+ /* vendor-specific */
+ ScmdFwaddr = 0xE2, /* first writeable address */
+ ScmdTreserve = 0xE4, /* reserve track */
+ ScmdTinfo = 0xE5, /* read track info */
+ ScmdTwrite = 0xE6, /* write track */
+ ScmdMload = 0xE7, /* medium load/unload */
+ ScmdFixation = 0xE9, /* fixation */
+};
diff --git a/sys/include/dynld.h b/sys/include/dynld.h
new file mode 100644
index 0000000000..eeac1c2aad
--- /dev/null
+++ b/sys/include/dynld.h
@@ -0,0 +1,41 @@
+#pragma src "/sys/src/libdynld"
+#pragma lib "libdynld.a"
+
+typedef struct Dynobj Dynobj;
+typedef struct Dynsym Dynsym;
+
+struct Dynobj
+{
+ ulong size; /* total size in bytes */
+ ulong text; /* bytes of text */
+ ulong data; /* bytes of data */
+ ulong bss; /* bytes of bss */
+ uchar* base; /* start of text, data, bss */
+ int nexport;
+ Dynsym* export; /* export table */
+ int nimport;
+ Dynsym** import; /* import table */
+};
+
+/*
+ * this structure is known to the linkers
+ */
+struct Dynsym
+{
+ ulong sig;
+ ulong addr;
+ char *name;
+};
+
+extern Dynsym* dynfindsym(char*, Dynsym*, int);
+extern void dynfreeimport(Dynobj*);
+extern void* dynimport(Dynobj*, char*, ulong);
+extern int dynloadable(void*, long (*r)(void*,void*,long), vlong(*sk)(void*,vlong,int));
+extern Dynobj* dynloadfd(int, Dynsym*, int, ulong);
+extern Dynobj* dynloadgen(void*, long (*r)(void*,void*,long), vlong (*s)(void*,vlong,int), void (*e)(char*), Dynsym*, int, ulong);
+extern long dynmagic(void);
+extern void dynobjfree(Dynobj*);
+extern char* dynreloc(uchar*, ulong, int, Dynsym**, int);
+extern int dyntabsize(Dynsym*);
+
+extern Dynsym _exporttab[]; /* created by linker -x (when desired) */
diff --git a/sys/include/event.h b/sys/include/event.h
index 03679f8f2c..f474b9fc9a 100644
--- a/sys/include/event.h
+++ b/sys/include/event.h
@@ -14,7 +14,7 @@ enum
enum
{
MAXSLAVE = 32,
- EMAXMSG = 128+8192, /* size of 9p header+data */
+ EMAXMSG = 128+16*1024, /* size of 9p header+data */
};
struct Mouse
diff --git a/sys/include/frame.h b/sys/include/frame.h
index 162483f2c5..d898e33e1e 100644
--- a/sys/include/frame.h
+++ b/sys/include/frame.h
@@ -49,6 +49,7 @@ struct Frame
Image *tick; /* typing tick */
Image *tickback; /* saved image under tick */
int ticked; /* flag: is tick onscreen? */
+ int noredraw; /* don't draw on the screen */
};
ulong frcharofpt(Frame*, Point);
diff --git a/sys/include/httpd.h b/sys/include/httpd.h
index af1166745a..63c97dd0d3 100644
--- a/sys/include/httpd.h
+++ b/sys/include/httpd.h
@@ -249,6 +249,7 @@ void hokheaders(HConnect *c);
int hparseheaders(HConnect*, int timeout);
HSPairs *hparsequery(HConnect *c, char *search);
int hparsereq(HConnect *c, int timeout);
+int hparseuri(HConnect*, char*);
int hprint(Hio*, char*, ...);
int hputc(Hio*, int);
void *hreadbuf(Hio *h, void *vsave);
diff --git a/sys/include/libc.h b/sys/include/libc.h
index 40776e58cf..ffacc848a6 100644
--- a/sys/include/libc.h
+++ b/sys/include/libc.h
@@ -335,6 +335,26 @@ extern vlong nsec(void);
extern void cycles(uvlong*); /* 64-bit value of the cycle counter if there is one, 0 if there isn't */
+/*
+ * endian conversion
+ */
+extern u16int le16get(uchar *t, uchar **r);
+extern u32int le24get(uchar *t, uchar **r);
+extern u32int le32get(uchar *t, uchar **r);
+extern u64int le64get(uchar *t, uchar **r);
+extern uchar* le16put(uchar *t, u16int r);
+extern uchar* le24put(uchar *t, u32int r);
+extern uchar* le32put(uchar *t, u32int r);
+extern uchar* le64put(uchar *t, u64int r);
+extern u16int be16get(uchar *t, uchar **r);
+extern u32int be24get(uchar *t, uchar **r);
+extern u32int be32get(uchar *t, uchar **r);
+extern u64int be64get(uchar *t, uchar **r);
+extern uchar* be16put(uchar *t, u16int r);
+extern uchar* be24put(uchar *t, u32int r);
+extern uchar* be32put(uchar *t, u32int r);
+extern uchar* be64put(uchar *t, u64int r);
+
/*
* one-of-a-kind
*/
@@ -383,6 +403,7 @@ extern void notejmp(void*, jmp_buf, int);
extern void perror(char*);
extern int postnote(int, int, char *);
extern double pow10(int);
+extern void procsetname(char*, ...);
extern int putenv(char*, char*);
extern void qsort(void*, long, long, int (*)(void*, void*));
extern int setjmp(jmp_buf);
diff --git a/sys/include/libsec.h b/sys/include/libsec.h
index 59592f1d2b..63fa341c59 100644
--- a/sys/include/libsec.h
+++ b/sys/include/libsec.h
@@ -73,6 +73,47 @@ void bfCBCdecrypt(uchar*, int, BFstate*);
void bfECBencrypt(uchar*, int, BFstate*);
void bfECBdecrypt(uchar*, int, BFstate*);
+/*
+ * Chacha definitions
+ */
+
+enum{
+ ChachaBsize= 64,
+ ChachaKeylen= 256/8,
+ ChachaIVlen= 96/8
+};
+
+typedef struct Chachastate Chachastate;
+struct Chachastate
+{
+ /*
+ * 0-3: a constant (sigma or tau)
+ * 4-11: the key
+ * 12: block counter
+ * 13-15: IV
+ */
+ union{
+ u32int input[16];
+ struct{
+ u32int constant[4];
+ u32int key[8];
+ u32int counter;
+ u32int iv[3];
+ };
+ };
+ int rounds;
+ int ivwords;
+};
+
+void setupChachastate(Chachastate*, uchar*, usize, uchar*, ulong, int);
+void chacha_setiv(Chachastate *, uchar*);
+void chacha_setblock(Chachastate*, u64int);
+void chacha_encrypt(uchar*, usize, Chachastate*);
+void chacha_encrypt2(uchar*, uchar*, usize, Chachastate*);
+
+void ccpoly_encrypt(uchar *dat, ulong ndat, uchar *aad, ulong naad, uchar tag[16], Chachastate *cs);
+int ccpoly_decrypt(uchar *dat, ulong ndat, uchar *aad, ulong naad, uchar tag[16], Chachastate *cs);
+
/*
* DES definitions
*/
@@ -145,6 +186,7 @@ enum
MD4dlen= 16, /* MD4 digest length */
MD5dlen= 16, /* MD5 digest length */
AESdlen= 16, /* TODO: see rfc */
+ Poly1305dlen= 16, /* Poly1305 digest length */
Hmacblksz = 64, /* in bytes; from rfc2104 */
};
@@ -196,6 +238,8 @@ MD5state* md5unpickle(char*);
char* sha1pickle(SHA1state*);
SHA1state* sha1unpickle(char*);
+DigestState* poly1305(uchar*, ulong, uchar*, ulong, uchar*, DigestState*);
+
/*
* random number generation
*/
@@ -402,3 +446,14 @@ int okThumbprint(uchar *sha1, Thumbprint *ok);
/* readcert.c */
uchar *readcert(char *filename, int *pcertlen);
PEMChain*readcertchain(char *filename);
+
+/* password-based key derivation function 2 (rfc2898) */
+void pbkdf2_x(uchar *p, ulong plen, uchar *s, ulong slen, ulong rounds, uchar *d, ulong dlen,
+ DigestState* (*x)(uchar*, ulong, uchar*, ulong, uchar*, DigestState*), int xlen);
+
+/* hmac-based key derivation function (rfc5869) */
+void hkdf_x(uchar *salt, ulong nsalt, uchar *info, ulong ninfo, uchar *key, ulong nkey, uchar *d, ulong dlen,
+ DigestState* (*x)(uchar*, ulong, uchar*, ulong, uchar*, DigestState*), int xlen);
+
+/* timing safe memcmp() */
+int tsmemcmp(void*, void*, ulong);
diff --git a/sys/include/mach.h b/sys/include/mach.h
index 23be822cfc..ac19885e48 100644
--- a/sys/include/mach.h
+++ b/sys/include/mach.h
@@ -16,6 +16,8 @@
* powerpc,
* powerpc64
* arm64
+ * riscv
+ * riscv64
*/
enum
{
@@ -36,6 +38,8 @@ enum
MAMD64,
MPOWER64,
MARM64,
+ MRISCV,
+ MRISCV64,
/* types of executables */
FNONE = 0, /* unidentified */
FMIPS, /* v.out */
@@ -67,6 +71,10 @@ enum
FPOWER64B, /* 9.out bootable */
FARM64, /* arm64 */
FARM64B, /* arm64 bootable */
+ FRISCV, /* riscv */
+ FRISCVB, /* riscv bootable */
+ FRISCV64, /* riscv64 */
+ FRISCV64B, /* riscv64 bootable */
ANONE = 0, /* dissembler types */
AMIPS,
@@ -85,6 +93,8 @@ enum
AAMD64,
APOWER64,
AARM64,
+ ARISCV,
+ ARISCV64,
/* object file types */
Obj68020 = 0, /* .2 */
ObjSparc, /* .k */
@@ -103,6 +113,8 @@ enum
ObjSpim, /* .0 */
ObjPower64, /* .9 */
ObjArm64, /* .4? */
+ ObjRiscv, /* .i */
+ ObjRiscv64, /* .j */
Maxobjtype,
CNONE = 0, /* symbol table classes */
diff --git a/sys/include/memdraw.h b/sys/include/memdraw.h
index 6e527696ae..ffb2082606 100644
--- a/sys/include/memdraw.h
+++ b/sys/include/memdraw.h
@@ -173,6 +173,7 @@ extern Memcmap *memdefcmap;
* Kernel interface
*/
void memimagemove(void*, void*);
+void memdrawallocinit(void);
/*
* Kernel cruft
diff --git a/sys/include/mp.h b/sys/include/mp.h
index 0cfc9e211b..29f171cfde 100644
--- a/sys/include/mp.h
+++ b/sys/include/mp.h
@@ -38,6 +38,8 @@ void mpassign(mpint *old, mpint *new);
/* random bits */
mpint* mprand(int bits, void (*gen)(uchar*, int), mpint *b);
+/* return uniform random [0..n-1] */
+mpint* mpnrand(mpint *n, void (*gen)(uchar*, int), mpint *b);
/* conversion */
mpint* strtomp(char*, char**, int, mpint*); /* ascii */
diff --git a/sys/include/ptrace.h b/sys/include/ptrace.h
new file mode 100644
index 0000000000..1403174606
--- /dev/null
+++ b/sys/include/ptrace.h
@@ -0,0 +1,59 @@
+typedef enum PTevent {
+ SAdmit = 0, /* Edf admit */
+ SRelease, /* Edf release, waiting to be scheduled */
+ SEdf, /* running under EDF */
+ SRun, /* running best effort */
+
+ SReady, /* runnable but not running */
+ SSleep, /* blocked; arg is PSstate| pc<<8 */
+ SYield, /* blocked waiting for release */
+ SSlice, /* slice exhausted */
+
+ SDeadline, /* proc's deadline */
+ SExpel, /* Edf expel */
+ SDead, /* proc dies */
+ SInts, /* Interrupt start */
+
+ SInte, /* Interrupt end */
+ STrap, /* fault */
+ SUser, /* user event */
+ SName, /* used to report names for pids */
+ Nevent,
+} Tevent;
+
+enum {
+ PTsize = 4 + 4 + 4 + 8 + 8,
+
+ /* STrap arg flags */
+ STrapRPF = 0x1000000000000000ULL, /* page fault (read) STrap arg */
+ STrapWPF = 0x1000000000000000ULL, /* page fault (write) STrap arg */
+ STrapSC = 0x2000000000000000ULL, /* sys call STrap arg */
+ STrapMask = 0x0FFFFFFFFFFFFFFFULL, /* bits available in arg */
+
+ /* Sleep states; keep in sync with the kernel schedstate
+ * BUG: generate automatically.
+ */
+ PSDead = 0, /* not used */
+ PSMoribund, /* not used */
+ PSReady, /* not used */
+ PSScheding, /* not used */
+ PSRunning, /* not used */
+ PSQueueing,
+ PSQueueingR,
+ PSQueueingW,
+ PSWakeme,
+ PSBroken, /* not used */
+ PSStopped, /* not used */
+ PSRendezvous,
+ PSWaitrelease,
+
+};
+
+typedef struct PTraceevent PTraceevent;
+struct PTraceevent {
+ u32int pid; /* for the process */
+ u32int etype; /* Event type */
+ u32int machno; /* where the event happen */
+ vlong time; /* time stamp */
+ u64int arg; /* for this event type */
+};
diff --git a/sys/include/stdio.h b/sys/include/stdio.h
index 834bfb4ab9..1f9605dc34 100644
--- a/sys/include/stdio.h
+++ b/sys/include/stdio.h
@@ -2,117 +2,123 @@
#pragma lib "libstdio.a"
/*
- * pANS astdio.h
+ * pANS stdio.h
*/
/*
* According to X3J11, there is only one i/o buffer
* and it must not be occupied by both input and output data.
- * If rpwp>=(f)->rp || (f)->flags&LINEBUF && _IO_ctmp=='\n'\
- * ?_IO_putc(_IO_ctmp, f)\
- * :*(f)->wp++=_IO_ctmp)
- *
+ *
+ * If rpwp>=(f)->rp || (f)->flags&LINEBUF && _IO_ctmp=='\n'?\
+ * _IO_putc(_IO_ctmp, f): *(f)->wp++=_IO_ctmp)
*/
typedef struct{
int fd; /* UNIX file pointer */
char flags; /* bits for must free buffer on close, line-buffered */
char state; /* last operation was read, write, position, error, eof */
- char *buf; /* pointer to i/o buffer */
- char *rp; /* read pointer (or write end-of-buffer) */
- char *wp; /* write pointer (or read end-of-buffer) */
- char *lp; /* actual write pointer used when line-buffering */
+ unsigned char *buf; /* pointer to i/o buffer */
+ unsigned char *rp; /* read pointer (or write end-of-buffer) */
+ unsigned char *wp; /* write pointer (or read end-of-buffer) */
+ unsigned char *lp; /* actual write pointer used when line-buffering */
long bufl; /* actual length of buffer */
- char unbuf[1]; /* tiny buffer for unbuffered io (used for ungetc?) */
+ unsigned char unbuf[1]; /* tiny buffer for unbuffered io (used for ungetc?) */
+ int junk;
}FILE;
-typedef long fpos_t;
+
+typedef long long fpos_t;
+
#ifndef NULL
#define NULL ((void*)0)
#endif
+
/*
* Third arg of setvbuf
*/
#define _IOFBF 1 /* block-buffered */
#define _IOLBF 2 /* line-buffered */
#define _IONBF 3 /* unbuffered */
-#define BUFSIZ 4096 /* size of setbuf buffer */
+
+#define BUFSIZ 8192 /* size of setbuf buffer */
#define EOF (-1) /* returned on end of file */
-#define FOPEN_MAX 100 /* max files open */
+#define FOPEN_MAX 128 /* max files open */
#define FILENAME_MAX BUFSIZ /* silly filename length */
#define L_tmpnam 20 /* sizeof "/tmp/abcdefghij9999 */
-#ifndef SEEK_SET /* also defined in unistd.h */
#define SEEK_CUR 1
#define SEEK_END 2
#define SEEK_SET 0
-#endif
#define TMP_MAX 64 /* very hard to set correctly */
+
#define stderr (&_IO_stream[2])
#define stdin (&_IO_stream[0])
#define stdout (&_IO_stream[1])
-#define _IO_CHMASK 0377 /* mask for 8 bit characters */
-FILE *tmpfile(void);
-char *tmpnam(char *);
-int fclose(FILE *);
-int fflush(FILE *);
-FILE *fopen(const char *, const char *);
-FILE *fdopen(const int, const char *);
-FILE *freopen(const char *, const char *, FILE *);
-void setbuf(FILE *, char *);
-int setvbuf(FILE *, char *, int, long);
-int fprintf(FILE *, const char *, ...);
-int fscanf(FILE *, const char *, ...);
-int printf(const char *, ...);
-int scanf(const char *, ...);
-int sprintf(char *, const char *, ...);
-int snprintf(char *, int, const char *, ...);
-int sscanf(const char *, const char *, ...);
-int vfprintf(FILE *, const char *, va_list);
-int vprintf(const char *, va_list);
-int vsprintf(char *, const char *, va_list);
-int vsnprintf(char *, int, const char *, va_list);
-int vfscanf(FILE *, const char *, va_list);
-int fgetc(FILE *);
-char *fgets(char *, int, FILE *);
-int fputc(int, FILE *);
-int fputs(const char *, FILE *);
-int getc(FILE *);
-#define getc(f) ((f)->rp>=(f)->wp?_IO_getc(f):*(f)->rp++&_IO_CHMASK)
-int _IO_getc(FILE *f);
-int getchar(void);
+
+extern FILE _IO_stream[FOPEN_MAX];
+
+int _IO_getc(FILE *f);
+int _IO_putc(int, FILE *);
+void clearerr(FILE *);
+int fclose(FILE *);
+FILE *fdopen(const int, const char *);
+int feof(FILE *);
+int ferror(FILE *);
+int fflush(FILE *);
+int fgetc(FILE *);
+int fgetpos(FILE *, fpos_t *);
+char *fgets(char *, int, FILE *);
+int fileno(FILE *);
+FILE *fopen(const char *, const char *);
+int fprintf(FILE *, const char *, ...);
+int fputc(int, FILE *);
+int fputs(const char *, FILE *);
+long fread(void *, long, long, FILE *);
+FILE *freopen(const char *, const char *, FILE *);
+int fscanf(FILE *, const char *, ...);
+int fseek(FILE *, long, int);
+int fseeko(FILE *, long long, int);
+int fsetpos(FILE *, const fpos_t *);
+long ftell(FILE *);
+long long ftello(FILE *);
+long fwrite(const void *, long, long, FILE *);
+int getc(FILE *);
+#define getc(f) ((f)->rp>=(f)->wp?_IO_getc(f):*(f)->rp++)
+int getchar(void);
#define getchar() getc(stdin)
-char *gets(char *);
-int putc(int, FILE *);
-#define putc(c, f) ((f)->wp>=(f)->rp?_IO_putc(c, f):(*(f)->wp++=c)&_IO_CHMASK)
-int _IO_putc(int, FILE *);
-int putchar(int);
+char *gets(char *);
+void perror(const char *);
+int printf(const char *, ...);
+int putc(int, FILE *);
+/* assignment to f->junk eliminates warnings about unused result of operation */
+#define putc(c, f) ((f)->junk = ((f)->wp>=(f)->rp? \
+ _IO_putc(c, f): (*(f)->wp++ = (c))))
+int putchar(int);
#define putchar(c) putc(c, stdout)
-int puts(const char *);
-int ungetc(int, FILE *);
-long fread(void *, long, long, FILE *);
-long fwrite(const void *, long, long, FILE *);
-int fgetpos(FILE *, fpos_t *);
-int fseek(FILE *, long, int);
-int fseeko(FILE *, long long, int);
-int fsetpos(FILE *, const fpos_t *);
-long ftell(FILE *);
-long long ftello(FILE *);
-void rewind(FILE *);
-void clearerr(FILE *);
-int feof(FILE *);
-int ferror(FILE *);
-void perror(const char *);
-extern FILE _IO_stream[FOPEN_MAX];
-FILE *sopenr(const char *);
-FILE *sopenw(void);
-char *sclose(FILE *);
-int fileno(FILE *);
+int puts(const char *);
+void rewind(FILE *);
+int scanf(const char *, ...);
+char *sclose(FILE *);
+void setbuf(FILE *, void *);
+int setvbuf(FILE *, void *, int, long);
+int snprintf(char *, int, const char *, ...);
+FILE *sopenr(const char *);
+FILE *sopenw(void);
+int sprintf(char *, const char *, ...);
+int sscanf(const char *, const char *, ...);
+FILE *tmpfile(void);
+char *tmpnam(char *);
+int ungetc(int, FILE *);
+int vfprintf(FILE *, const char *, va_list);
+int vfscanf(FILE *, const char *, va_list);
+int vprintf(const char *, va_list);
+int vsnprintf(char *, int, const char *, va_list);
+int vsprintf(char *, const char *, va_list);
diff --git a/sys/include/thread.h b/sys/include/thread.h
index f67012f772..57bff0a32e 100644
--- a/sys/include/thread.h
+++ b/sys/include/thread.h
@@ -98,6 +98,8 @@ void threadkill(int); /* kill thread */
void threadkillgrp(int); /* kill threads in group */
void threadmain(int argc, char *argv[]);
void threadnonotes(void);
+int threadspawn(int[3], char*, char*[]);
+int threadspawnl(int[3], char*, ...);
int threadnotify(int (*f)(void*, char*), int in);
int threadid(void);
int threadpid(int);
diff --git a/sys/include/trace.h b/sys/include/trace.h
index 759d41ecbe..39415caf59 100644
--- a/sys/include/trace.h
+++ b/sys/include/trace.h
@@ -13,12 +13,14 @@ typedef enum Tevent {
SInts, /* Interrupt start */
SInte, /* Interrupt end */
SUser, /* user event */
+ SLock, /* blocked on a queue or lock */
Nevent,
} Tevent;
typedef struct Traceevent Traceevent;
struct Traceevent {
- ulong pid;
- ulong etype; /* Event type */
- vlong time; /* time stamp */
+ u32int pid;
+ u32int etype; /* Event type */
+ u64int time; /* time stamp */
+ u32int core; /* core number */
};
diff --git a/sys/include/venti.h b/sys/include/venti.h
index c899a66ab1..e4677c1a30 100644
--- a/sys/include/venti.h
+++ b/sys/include/venti.h
@@ -134,7 +134,8 @@ enum
_VtEntryDir = 1<<1, /* a directory */
_VtEntryDepthShift = 2, /* shift for pointer depth */
_VtEntryDepthMask = 7<<2, /* mask for pointer depth */
- VtEntryLocal = 1<<5 /* for local storage only */
+ VtEntryLocal = 1<<5, /* for local storage only */
+ VtEntryNoArchive = 1<<6 /* for local storage only */
};
enum
{
@@ -334,7 +335,9 @@ struct VtConn
};
VtConn* vtconn(int infd, int outfd);
+int vtreconn(VtConn*, int, int);
VtConn* vtdial(char*);
+int vtredial(VtConn*, char*);
void vtfreeconn(VtConn*);
int vtsend(VtConn*, Packet*);
Packet* vtrecv(VtConn*);
@@ -378,6 +381,10 @@ int vtwritepacket(VtConn*, uchar score[VtScoreSize], uint type, Packet *p);
int vtsync(VtConn*);
int vtping(VtConn*);
+/* sha1 */
+void vtsha1(uchar score[VtScoreSize], uchar*, int);
+int vtsha1check(uchar score[VtScoreSize], uchar*, int);
+
/*
* Data blocks and block cache.
*/
diff --git a/sys/lib/acid/jtag b/sys/lib/acid/jtag
new file mode 100644
index 0000000000..6e231f3b14
--- /dev/null
+++ b/sys/lib/acid/jtag
@@ -0,0 +1,245 @@
+include("/sys/lib/acid/arm");
+
+// feroceon memory definitions
+TmrWDenable=1<<4;
+PHYSIO=0xf1000000;
+TIMERREG=0xf1020300;
+PsrMsvc=0x00000013;
+timerctl=0;
+KZERO=0x60000000;
+
+ureg = 0;
+complex Ureg ureg;
+uregtypeaddr=60; //kludge
+
+//generated from 8c -a
+sizeofMMURegs = 32;
+aggr MMURegs
+{
+ 'U' 0 cpid;
+ 'U' 4 control;
+ 'U' 8 ttb;
+ 'U' 12 dac;
+ 'U' 16 fsr;
+ 'U' 20 far;
+ 'U' 24 ct;
+ 'U' 28 pid;
+};
+
+defn
+remapdata()
+{
+ mps = map();
+
+ while mps do {
+ m = head mps;
+ name = head m;
+ if name == "*data" then {
+ dend = head tail tail m;
+ map({"*data", KZERO, dend, KZERO});
+ }
+ mps = tail mps;
+ }
+}
+//I want to be able to access MACH and other stuff
+remapdata();
+memmap=map();
+//TO DO is there any arm with fpregs?
+map({"regs", 0, sizeofUreg+sizeofMMURegs, 0});
+
+defn
+MMURegs(addr) {
+ complex MMURegs addr;
+ print(" cpid ", addr.cpid\X, "\n");
+ print(" control ", addr.control\X, "\n");
+ print(" ttb ", addr.ttb\X, "\n");
+ print(" dac ", addr.dac\X, "\n");
+ print(" fsr ", addr.fsr\X, "\n");
+ print(" far ", addr.far\X, "\n");
+ print(" ct ", addr.ct\X, "\n");
+ print(" pid ", addr.pid\X, "\n");
+};
+
+complex MMURegs mmuregs;
+mmuregs=sizeofUreg; // plus size of floating point registers
+
+defn
+mmuregs()
+{
+ MMURegs(mmuregs);
+}
+
+defn
+stopwdog()
+{
+ // change to svc mode to be able to access the address
+ stype = ureg.type;
+ *uregtypeaddr=PsrMsvc;
+ timerctl=*TIMERREG;
+ *TIMERREG = ~TmrWDenable&*TIMERREG;
+ *uregtypeaddr=stype;
+}
+
+defn
+startwdog()
+{
+ stype = ureg.type;
+ *uregtypeaddr=PsrMsvc;
+ *TIMERREG = TmrWDenable|timerctl;
+ *uregtypeaddr=stype;
+}
+
+defn
+hwbpset(addr, mask)
+{
+ printto("/proc/"+itoa(pid)+"/ctl", "breakpoint ", itoa(addr), " ", itoa(mask));
+}
+
+defn
+veccatch(vecstr)
+{
+ printto("/proc/"+itoa(pid)+"/ctl", "veccatch ", vecstr);
+}
+
+defn
+reset()
+{
+ printto("/proc/"+itoa(pid)+"/ctl", "reset ");
+}
+
+defn
+debug(dbstr)
+{
+ printto("/proc/"+itoa(pid)+"/ctl", "debug ", dbstr);
+}
+
+defn
+cpuid()
+{
+ printto("/proc/"+itoa(pid)+"/ctl", "cpuid");
+}
+
+defn
+jtaginfo()
+{
+ rc("cat /proc/"+itoa(pid)+"/ctl");
+}
+
+defn
+sheevastop()
+{
+ stop(pid);
+ stopwdog();
+}
+
+defn
+sheevastart()
+{
+ startwdog();
+ start(pid);
+}
+
+defn
+sheevawaitstop()
+{
+ waitstop(pid);
+ stopwdog();
+}
+
+// FROM here down on, UNTRIED BUG BUG BUG!!!!!
+
+//CpCONTROL, h2acid
+CpCmmu = 0x00000001;
+CpCalign = 0x00000002;
+CpCdcache = 0x00000004;
+CpCwb = 0x00000008;
+CpCi32 = 0x00000010;
+CpCd32 = 0x00000020;
+CpCbe = 0x00000080;
+CpCsystem = 0x00000100;
+CpCrom = 0x00000200;
+CpCicache = 0x00001000;
+CpChv = 0x00002000;
+
+//MMU definitions, h2acid
+KB=1024;
+MB=1024*1024;
+Mbo = 0x10;
+Coarse = (Mbo|1);
+Section = (Mbo|2);
+Fine = (Mbo|3);
+
+defn
+ismmuon()
+{
+ mmu = mmuregs;
+ complex MMURegs mmu;
+ return mmu.control&CpCmmu;
+}
+
+defn
+l1x(vaddr)
+{
+ return ((vaddr>>20) & 0x0fff)<<2;
+}
+
+defn
+l2x(vaddr)
+{
+ return ((vaddr>>12) & 0xff)<<2;
+}
+
+defn
+pgsz(type)
+{
+ if type == Fine then {
+ return KB;
+ } else if type == Section then {
+ return MB;
+ } else if type == Coarse then {
+ return 4*KB;
+ }
+ return 4*KB;
+}
+
+defn
+kaddr(vaddr)
+{
+ return KZERO|vaddr; //very non portable
+}
+
+defn
+ttbpaddr(ttb, vaddr)
+{
+ if ! ismmuon() then {
+ print("paddr: mmu is off\n");
+ return 0;
+ }
+ l1idx = l1x(vaddr);
+ l2idx = l2x(vaddr);
+ pte1 = *((kaddr(ttb)&~0x1fff) + l1idx);
+ if pte1 == 0 then {
+ return 0;
+ }
+ type = pte1 & (Fine|Section|Coarse);
+ sz = pgsz(type);
+ if type == Section then {
+ return (pte1 & ~(sz - 1)) + (vaddr & (sz - 1));
+ }
+
+ l2addr = pte1 & ~(sz - 1);
+ if l2addr == 0 then {
+ return 0;
+ }
+ pte2 = *(kaddr(l2addr) + l2idx);
+ return (pte2 & ~(sz - 1)) + (vaddr & (sz - 1));
+}
+
+defn
+paddr(vaddr)
+{
+ mmu = mmuregs;
+ complex MMURegs mmu;
+ return ttbpaddr(mmu.ttb, vaddr);
+}
+
diff --git a/sys/lib/acid/mips64 b/sys/lib/acid/mips64
new file mode 100644
index 0000000000..81d8122b68
--- /dev/null
+++ b/sys/lib/acid/mips64
@@ -0,0 +1,222 @@
+// Mips64 support
+
+defn acidinit() // Called after all the init modules are loaded
+{
+ bplist = {};
+ bpfmt = 'X';
+
+ srcpath = {
+ "./",
+ "/sys/src/libc/port/",
+ "/sys/src/libc/9sys/",
+ "/sys/src/libc/mips64/"
+ };
+
+ srcfiles = {}; // list of loaded files
+ srctext = {}; // the text of the files
+}
+
+defn stk() // trace
+{
+ _stk(*PC, *SP, linkreg(0), 0);
+}
+
+defn lstk() // trace with locals
+{
+ _stk(*PC, *SP, linkreg(0), 1);
+}
+
+defn gpr() // print general purpose registers
+{
+ print("R1\t", *R1, " R2\t", *R2, "\n");
+ print("R3\t", *R3, " R4\t", *R4, "\n");
+ print("R5\t", *R5, " R6\t", *R6, "\n");
+ print("R7\t", *R7, " R8\t", *R8, "\n");
+ print("R9\t", *R9, " R10\t", *R10, "\n");
+ print("R11\t", *R11, " R12\t", *R12, "\n");
+ print("R13\t", *R13, " R14\t", *R14, "\n");
+ print("R15\t", *R15, " R16\t", *R16, "\n");
+ print("R17\t", *R17, " R18\t", *R18, "\n");
+ print("R19\t", *R19, " R20\t", *R20, "\n");
+ print("R21\t", *R21, " R22\t", *R22, "\n");
+ print("R23\t", *R23, " R24\t", *R24, "\n");
+ print("R25\t", *R25, " R26\t", *R26, "\n");
+ print("R27\t", *R27, " R28\t", *R28, "\n");
+ print("R29\t", *SP, " R30\t", *R30, "\n");
+ print("R31\t", *R31, "\n");
+}
+
+defn Fpr()
+{
+ print("F0\t", *fmt(F0, 'G'), "\tF2\t", *fmt(F2, 'G'), "\n");
+ print("F4\t", *fmt(F4, 'G'), "\tF6\t", *fmt(F6, 'G'), "\n");
+ print("F8\t", *fmt(F8, 'G'), "\tF10\t", *fmt(F10, 'G'), "\n");
+ print("F12\t", *fmt(F12, 'G'), "\tF14\t", *fmt(F14, 'G'), "\n");
+ print("F16\t", *fmt(F16, 'G'), "\tF18\t", *fmt(F18, 'G'), "\n");
+ print("F20\t", *fmt(F20, 'G'), "\tF22\t", *fmt(F22, 'G'), "\n");
+ print("F24\t", *fmt(F24, 'G'), "\tF26\t", *fmt(F26, 'G'), "\n");
+ print("F28\t", *fmt(F28, 'G'), "\tF30\t", *fmt(F30, 'G'), "\n");
+}
+
+defn fpr()
+{
+ print("F0\t", *fmt(F0, 'g'), "\tF1\t", *fmt(F1, 'g'), "\n");
+ print("F2\t", *fmt(F2, 'g'), "\tF3\t", *fmt(F3, 'g'), "\n");
+ print("F4\t", *fmt(F4, 'g'), "\tF5\t", *fmt(F5, 'g'), "\n");
+ print("F6\t", *fmt(F6, 'g'), "\tF7\t", *fmt(F7, 'g'), "\n");
+ print("F8\t", *fmt(F8, 'g'), "\tF9\t", *fmt(F9, 'g'), "\n");
+ print("F10\t", *fmt(F10, 'g'), "\tF11\t", *fmt(F11, 'g'), "\n");
+ print("F12\t", *fmt(F12, 'g'), "\tF13\t", *fmt(F13, 'g'), "\n");
+ print("F14\t", *fmt(F14, 'g'), "\tF15\t", *fmt(F15, 'g'), "\n");
+ print("F16\t", *fmt(F16, 'g'), "\tF17\t", *fmt(F17, 'g'), "\n");
+ print("F18\t", *fmt(F18, 'g'), "\tF19\t", *fmt(F19, 'g'), "\n");
+ print("F20\t", *fmt(F20, 'g'), "\tF21\t", *fmt(F21, 'g'), "\n");
+ print("F22\t", *fmt(F22, 'g'), "\tF23\t", *fmt(F23, 'g'), "\n");
+ print("F24\t", *fmt(F24, 'g'), "\tF25\t", *fmt(F25, 'g'), "\n");
+ print("F26\t", *fmt(F26, 'g'), "\tF27\t", *fmt(F27, 'g'), "\n");
+ print("F28\t", *fmt(F28, 'g'), "\tF29\t", *fmt(F29, 'g'), "\n");
+ print("F30\t", *fmt(F30, 'g'), "\tF31\t", *fmt(F31, 'g'), "\n");
+}
+
+defn spr() // print special processor registers
+{
+ local pc, link, cause;
+
+ pc = *PC;
+ print("PC\t", pc, " ", fmt(pc, 'a'), " ");
+ pfl(pc);
+
+ link = *R31;
+ print("SP\t", *SP, "\tLINK\t", link, " ", fmt(link, 'a'), " ");
+ pfl(link);
+
+ cause = *CAUSE;
+ print("STATUS\t", *STATUS, "\tCAUSE\t", cause, " ", reason(cause), "\n");
+ print("TLBVIR\t", *TLBVIRT, "\tBADVADR\t", *BADVADDR, "\n");
+
+ print("HI\t", *HI, "\tLO\t", *LO, "\n");
+}
+
+defn regs() // print all registers
+{
+ spr();
+ gpr();
+}
+
+defn pstop(pid)
+{
+ local l, pc;
+
+ pc = *PC;
+
+ print(pid,": ", reason(*CAUSE), "\t");
+ print(fmt(pc, 'a'), "\t", fmt(pc, 'i'), "\n");
+
+ if notes then {
+ if notes[0] != "sys: breakpoint" then {
+ print("Notes pending:\n");
+ l = notes;
+ while l do {
+ print("\t", head l, "\n");
+ l = tail l;
+ }
+ }
+ }
+}
+
+sizeofUreg = 152;
+aggr Ureg
+{
+ 'X' 0 status;
+ 'Y' 8 pc;
+ {
+ 'Y' 16 sp;
+ 'Y' 16 usp;
+ };
+ 'X' 24 cause;
+ 'Y' 32 badvaddr;
+ 'Y' 40 tlbvirt;
+ 'Y' 48 hi;
+ 'Y' 56 lo;
+ 'Y' 64 r31;
+ 'Y' 72 r30;
+ 'Y' 80 r28;
+ 'Y' 88 r27;
+ 'Y' 96 r26;
+ 'Y' 104 r25;
+ 'Y' 112 r24;
+ 'Y' 120 r23;
+ 'Y' 128 r22;
+ 'Y' 136 r21;
+ 'Y' 144 r20;
+ 'Y' 152 r19;
+ 'Y' 160 r18;
+ 'Y' 168 r17;
+ 'Y' 176 r16;
+ 'Y' 184 r15;
+ 'Y' 192 r14;
+ 'Y' 200 r13;
+ 'Y' 208 r12;
+ 'Y' 216 r11;
+ 'Y' 224 r10;
+ 'Y' 232 r9;
+ 'Y' 240 r8;
+ 'Y' 248 r7;
+ 'Y' 256 r6;
+ 'Y' 264 r5;
+ 'Y' 272 r4;
+ 'Y' 280 r3;
+ 'Y' 288 r2;
+ 'Y' 296 r1;
+};
+
+defn
+Ureg(addr) {
+ complex Ureg addr;
+ print(" status ", addr.status, "\n");
+ print(" pc ", addr.pc, "\n");
+ print(" sp ", addr.sp, "\n");
+ print(" cause ", addr.cause, "\n");
+ print(" badvaddr ", addr.badvaddr, "\n");
+ print(" tlbvirt ", addr.tlbvirt, "\n");
+ print(" hi ", addr.hi, "\n");
+ print(" lo ", addr.lo, "\n");
+ print(" r31 ", addr.r31, "\n");
+ print(" r30 ", addr.r30, "\n");
+ print(" r28 ", addr.r28, "\n");
+ print(" r27 ", addr.r27, "\n");
+ print(" r26 ", addr.r26, "\n");
+ print(" r25 ", addr.r25, "\n");
+ print(" r24 ", addr.r24, "\n");
+ print(" r23 ", addr.r23, "\n");
+ print(" r22 ", addr.r22, "\n");
+ print(" r21 ", addr.r21, "\n");
+ print(" r20 ", addr.r20, "\n");
+ print(" r19 ", addr.r19, "\n");
+ print(" r18 ", addr.r18, "\n");
+ print(" r17 ", addr.r17, "\n");
+ print(" r16 ", addr.r16, "\n");
+ print(" r15 ", addr.r15, "\n");
+ print(" r14 ", addr.r14, "\n");
+ print(" r13 ", addr.r13, "\n");
+ print(" r12 ", addr.r12, "\n");
+ print(" r11 ", addr.r11, "\n");
+ print(" r10 ", addr.r10, "\n");
+ print(" r9 ", addr.r9, "\n");
+ print(" r8 ", addr.r8, "\n");
+ print(" r7 ", addr.r7, "\n");
+ print(" r6 ", addr.r6, "\n");
+ print(" r5 ", addr.r5, "\n");
+ print(" r4 ", addr.r4, "\n");
+ print(" r3 ", addr.r3, "\n");
+ print(" r2 ", addr.r2, "\n");
+ print(" r1 ", addr.r1, "\n");
+};
+
+defn linkreg(addr)
+{
+ complex Ureg addr;
+ return addr.r31\Y;
+}
+
+print("/sys/lib/acid/mips64");
diff --git a/sys/lib/acid/power64 b/sys/lib/acid/power64
new file mode 100644
index 0000000000..16e5b07fd4
--- /dev/null
+++ b/sys/lib/acid/power64
@@ -0,0 +1,142 @@
+// power64
+// incomplete until there are processes to debug
+
+defn acidinit() // Called after all the init modules are loaded
+{
+ bplist = {};
+ bpfmt = 'X';
+
+ srcpath = {
+ "./",
+ "/sys/src/libc/port/",
+ "/sys/src/libc/9sys/",
+ "/sys/src/libc/power64/"
+ };
+
+ srcfiles = {}; // list of loaded files
+ srctext = {}; // the text of the files
+}
+
+defn stk() // trace
+{
+ _stk(*PC, *SP, linkreg(0), 0);
+}
+
+defn lstk() // trace with locals
+{
+ _stk(*PC, *SP, linkreg(0), 1);
+}
+
+defn gpr() // print general purpose registers
+{
+ print("R0 ", *R0, "\n");
+ print("SP ", *SP, "\n");
+ print("R2 ", *R2, "\n");
+ print("R3 ", *R3, "\n");
+ print("R4 ", *R4, "\n");
+ print("R5 ", *R5, "\n");
+ print("R6 ", *R6, "\n");
+ print("R7 ", *R7, "\n");
+ print("R8 ", *R8, "\n");
+ print("R9 ", *R9, "\n");
+ print("R10 ", *R10, "\n");
+ print("R11 ", *R11, "\n");
+ print("R12 ", *R12, "\n");
+ print("R13 ", *R13, "\n");
+ print("R14 ", *R14, "\n");
+ print("R15 ", *R15, "\n");
+ print("R16 ", *R16, "\n");
+ print("R17 ", *R17, "\n");
+ print("R18 ", *R18, "\n");
+ print("R19 ", *R19, "\n");
+ print("R20 ", *R20, "\n");
+ print("R21 ", *R21, "\n");
+ print("R22 ", *R22, "\n");
+ print("R23 ", *R23, "\n");
+ print("R24 ", *R24, "\n");
+ print("R25 ", *R25, "\n");
+ print("R26 ", *R26, "\n");
+ print("R27 ", *R27, "\n");
+ print("R28 ", *R28, "\n");
+ print("R29 ", *R29, "\n");
+ print("R30 ", *R30, "\n");
+ print("R31 ", *R31, "\n");
+}
+
+defn Fpr()
+{
+ fpr();
+}
+
+defn fpr()
+{
+ print("F0\t", *fmt(F0, 'G'), "\tF1\t", *fmt(F1, 'G'), "\n");
+ print("F2\t", *fmt(F2, 'G'), "\tF3\t", *fmt(F3, 'G'), "\n");
+ print("F4\t", *fmt(F4, 'G'), "\tF5\t", *fmt(F5, 'G'), "\n");
+ print("F6\t", *fmt(F6, 'G'), "\tF7\t", *fmt(F7, 'G'), "\n");
+ print("F8\t", *fmt(F8, 'G'), "\tF9\t", *fmt(F9, 'G'), "\n");
+ print("F10\t", *fmt(F10, 'G'), "\tF11\t", *fmt(F11, 'G'), "\n");
+ print("F12\t", *fmt(F12, 'G'), "\tF13\t", *fmt(F13, 'G'), "\n");
+ print("F14\t", *fmt(F14, 'G'), "\tF15\t", *fmt(F15, 'G'), "\n");
+ print("F16\t", *fmt(F16, 'G'), "\tF17\t", *fmt(F17, 'G'), "\n");
+ print("F18\t", *fmt(F18, 'G'), "\tF19\t", *fmt(F19, 'G'), "\n");
+ print("F20\t", *fmt(F20, 'G'), "\tF21\t", *fmt(F21, 'G'), "\n");
+ print("F22\t", *fmt(F22, 'G'), "\tF23\t", *fmt(F23, 'G'), "\n");
+ print("F24\t", *fmt(F24, 'G'), "\tF25\t", *fmt(F25, 'G'), "\n");
+ print("F26\t", *fmt(F26, 'G'), "\tF27\t", *fmt(F27, 'G'), "\n");
+ print("F28\t", *fmt(F28, 'G'), "\tF29\t", *fmt(F29, 'G'), "\n");
+ print("F30\t", *fmt(F30, 'G'), "\tF31\t", *fmt(F31, 'G'), "\n");
+}
+
+defn spr() // print special processor registers
+{
+ local pc, link, cause;
+
+ pc = *PC;
+ print("PC\t", pc, " ", fmt(pc, 'a'), " ");
+ pfl(pc);
+
+ link = *R31;
+ print("SP\t", *SP, "\tLINK\t", link, " ", fmt(link, 'a'), " ");
+ pfl(link);
+
+ cause = *CAUSE;
+ print("SRR1\t", *SRR1, "\tCAUSE\t", cause, " ", reason(cause), "\n");
+ print("LR\t", *LR, "\tCR\t", *CR, "\n");
+
+ print("XER\t", *XER, "\tCTR\t", *CTR, "\n");
+}
+
+defn regs() // print all registers
+{
+ spr();
+ gpr();
+}
+
+defn pstop(pid)
+{
+ local l, pc;
+
+ pc = *PC;
+
+ print(pid,": ", reason(*CAUSE), "\t");
+ print(fmt(pc, 'a'), "\t", fmt(pc, 'i'), "\n");
+
+ if notes then {
+ if notes[0] != "sys: breakpoint" then {
+ print("Notes pending:\n");
+ l = notes;
+ while l do {
+ print("\t", head l, "\n");
+ l = tail l;
+ }
+ }
+ }
+}
+
+defn linkreg(addr)
+{
+ return *LR;
+}
+
+print("/sys/lib/acid/power64");
diff --git a/sys/lib/acid/riscv b/sys/lib/acid/riscv
new file mode 100644
index 0000000000..0bd80ddbc0
--- /dev/null
+++ b/sys/lib/acid/riscv
@@ -0,0 +1,224 @@
+// riscv support
+
+defn acidinit() // Called after all the init modules are loaded
+{
+ bplist = {};
+ bpfmt = 'X';
+
+ srcpath = {
+ "./",
+ "/sys/src/libc/port/",
+ "/sys/src/libc/9sys/",
+ "/sys/src/libc/riscv/"
+ };
+
+ srcfiles = {}; // list of loaded files
+ srctext = {}; // the text of the files
+}
+
+defn stk() // trace
+{
+ _stk(*PC, *SP, linkreg(0), 0);
+}
+
+defn lstk() // trace with locals
+{
+ _stk(*PC, *SP, linkreg(0), 1);
+}
+
+defn gpr() // print general purpose registers
+{
+ print("R1\t", *R1, " R2\t", *R2, " R3\t", *R3, "\n");
+ print("R4\t", *R4, " R5\t", *R5, " R6\t", *R6, "\n");
+ print("R7\t", *R7, " R8\t", *R8, " R9\t", *R9, "\n");
+ print("R10\t", *R10, " R11\t", *R11, " R12\t", *R12, "\n");
+ print("R13\t", *R13, " R14\t", *R14, " R15\t", *R15, "\n");
+ print("R16\t", *R16, " R17\t", *R17, " R18\t", *R18, "\n");
+ print("R19\t", *R19, " R20\t", *R20, " R21\t", *R21, "\n");
+ print("R22\t", *R22, " R23\t", *R23, " R24\t", *R24, "\n");
+ print("R25\t", *R25, " R26\t", *R26, " R27\t", *R27, "\n");
+ print("R28\t", *R28, " R29\t", *SP, " R30\t", *R30, "\n");
+ print("R31\t", *R31, "\n");
+}
+
+defn Fpr()
+{
+ print("F0\t", *fmt(F0, 'G'), "\tF2\t", *fmt(F2, 'G'), "\n");
+ print("F4\t", *fmt(F4, 'G'), "\tF6\t", *fmt(F6, 'G'), "\n");
+ print("F8\t", *fmt(F8, 'G'), "\tF10\t", *fmt(F10, 'G'), "\n");
+ print("F12\t", *fmt(F12, 'G'), "\tF14\t", *fmt(F14, 'G'), "\n");
+ print("F16\t", *fmt(F16, 'G'), "\tF18\t", *fmt(F18, 'G'), "\n");
+ print("F20\t", *fmt(F20, 'G'), "\tF22\t", *fmt(F22, 'G'), "\n");
+ print("F24\t", *fmt(F24, 'G'), "\tF26\t", *fmt(F26, 'G'), "\n");
+ print("F28\t", *fmt(F28, 'G'), "\tF30\t", *fmt(F30, 'G'), "\n");
+}
+
+defn fpr()
+{
+ print("F0\t", *fmt(F0, 'g'), "\tF1\t", *fmt(F1, 'g'), "\n");
+ print("F2\t", *fmt(F2, 'g'), "\tF3\t", *fmt(F3, 'g'), "\n");
+ print("F4\t", *fmt(F4, 'g'), "\tF5\t", *fmt(F5, 'g'), "\n");
+ print("F6\t", *fmt(F6, 'g'), "\tF7\t", *fmt(F7, 'g'), "\n");
+ print("F8\t", *fmt(F8, 'g'), "\tF9\t", *fmt(F9, 'g'), "\n");
+ print("F10\t", *fmt(F10, 'g'), "\tF11\t", *fmt(F11, 'g'), "\n");
+ print("F12\t", *fmt(F12, 'g'), "\tF13\t", *fmt(F13, 'g'), "\n");
+ print("F14\t", *fmt(F14, 'g'), "\tF15\t", *fmt(F15, 'g'), "\n");
+ print("F16\t", *fmt(F16, 'g'), "\tF17\t", *fmt(F17, 'g'), "\n");
+ print("F18\t", *fmt(F18, 'g'), "\tF19\t", *fmt(F19, 'g'), "\n");
+ print("F20\t", *fmt(F20, 'g'), "\tF21\t", *fmt(F21, 'g'), "\n");
+ print("F22\t", *fmt(F22, 'g'), "\tF23\t", *fmt(F23, 'g'), "\n");
+ print("F24\t", *fmt(F24, 'g'), "\tF25\t", *fmt(F25, 'g'), "\n");
+ print("F26\t", *fmt(F26, 'g'), "\tF27\t", *fmt(F27, 'g'), "\n");
+ print("F28\t", *fmt(F28, 'g'), "\tF29\t", *fmt(F29, 'g'), "\n");
+ print("F30\t", *fmt(F30, 'g'), "\tF31\t", *fmt(F31, 'g'), "\n");
+}
+
+defn spr() // print special processor registers
+{
+ local pc, link, cause;
+
+ pc = *PC;
+ print("PC\t", pc, " ", fmt(pc, 'a'), " ");
+ pfl(pc);
+
+ link = *R1;
+ print("SP\t", *SP, "\tLINK\t", link, " ", fmt(link, 'a'), " ");
+ pfl(link);
+
+ cause = *CAUSE;
+ print("STATUS\t", *STATUS, "\tMCAUSE\t", mcause, " ", reason(mcause), "\n");
+// print("TLBVIR\t", *TLBVIRT, "\tBADVADR\t", *BADVADDR, "\n");
+}
+
+defn regs() // print all registers
+{
+ spr();
+ gpr();
+}
+
+defn pstop(pid)
+{
+ local l, pc;
+
+ pc = *PC;
+
+ print(pid,": ", reason(*MCAUSE), "\t");
+ print(fmt(pc, 'a'), "\t", fmt(pc, 'i'), "\n");
+
+ if notes then {
+ if notes[0] != "sys: breakpoint" then {
+ print("Notes pending:\n");
+ l = notes;
+ while l do {
+ print("\t", head l, "\n");
+ l = tail l;
+ }
+ }
+ }
+}
+
+sizeofUreg = 148;
+aggr Ureg
+{
+ {
+ 'U' 0 pc;
+ 'a' 0 regs;
+ };
+ 'U' 4 r1;
+ {
+ 'U' 8 r2;
+ 'U' 8 sp;
+ 'U' 8 usp;
+ };
+ 'U' 12 r3;
+ 'U' 16 r4;
+ 'U' 20 r5;
+ 'U' 24 r6;
+ 'U' 28 r7;
+ {
+ 'U' 32 r8;
+ 'U' 32 arg;
+ 'U' 32 ret;
+ };
+ 'U' 36 r9;
+ 'U' 40 r10;
+ 'U' 44 r11;
+ 'U' 48 r12;
+ 'U' 52 r13;
+ 'U' 56 r14;
+ 'U' 60 r15;
+ 'U' 64 r16;
+ 'U' 68 r17;
+ 'U' 72 r18;
+ 'U' 76 r19;
+ 'U' 80 r20;
+ 'U' 84 r21;
+ 'U' 88 r22;
+ 'U' 92 r23;
+ 'U' 96 r24;
+ 'U' 100 r25;
+ 'U' 104 r26;
+ 'U' 108 r27;
+ 'U' 112 r28;
+ 'U' 116 r29;
+ 'U' 120 r30;
+ 'U' 124 r31;
+ 'U' 128 status;
+ 'U' 132 ie;
+ {
+ 'U' 136 cause;
+ 'U' 136 type;
+ };
+ 'U' 140 tval;
+ 'U' 144 curmode;
+};
+
+defn
+Ureg(addr) {
+ complex Ureg addr;
+ print(" status ", addr.status, "\n");
+ print(" pc ", addr.pc, "\n");
+ print(" sp ", addr.sp, "\n");
+ print(" cause ", addr.cause, "\n");
+ print(" badvaddr ", addr.tval, "\n");
+// print(" hi ", addr.hi, "\n");
+// print(" lo ", addr.lo, "\n");
+ print(" r31 ", addr.r31, "\n");
+ print(" r30 ", addr.r30, "\n");
+ print(" r28 ", addr.r28, "\n");
+ print(" r27 ", addr.r27, "\n");
+ print(" r26 ", addr.r26, "\n");
+ print(" r25 ", addr.r25, "\n");
+ print(" r24 ", addr.r24, "\n");
+ print(" r23 ", addr.r23, "\n");
+ print(" r22 ", addr.r22, "\n");
+ print(" r21 ", addr.r21, "\n");
+ print(" r20 ", addr.r20, "\n");
+ print(" r19 ", addr.r19, "\n");
+ print(" r18 ", addr.r18, "\n");
+ print(" r17 ", addr.r17, "\n");
+ print(" r16 ", addr.r16, "\n");
+ print(" r15 ", addr.r15, "\n");
+ print(" r14 ", addr.r14, "\n");
+ print(" r13 ", addr.r13, "\n");
+ print(" r12 ", addr.r12, "\n");
+ print(" r11 ", addr.r11, "\n");
+ print(" r10 ", addr.r10, "\n");
+ print(" r9 ", addr.r9, "\n");
+ print(" r8 ", addr.r8, "\n");
+ print(" r7 ", addr.r7, "\n");
+ print(" r6 ", addr.r6, "\n");
+ print(" r5 ", addr.r5, "\n");
+ print(" r4 ", addr.r4, "\n");
+ print(" r3 ", addr.r3, "\n");
+ print(" r2 ", addr.r2, "\n");
+ print(" r1 ", addr.r1, "\n");
+};
+
+defn linkreg(addr)
+{
+ complex Ureg addr;
+ return addr.r1\X;
+}
+
+print("/sys/lib/acid/riscv");
diff --git a/sys/lib/acid/riscv64 b/sys/lib/acid/riscv64
new file mode 100644
index 0000000000..41b2a365be
--- /dev/null
+++ b/sys/lib/acid/riscv64
@@ -0,0 +1,240 @@
+// riscv64 support
+
+defn acidinit() // Called after all the init modules are loaded
+{
+ bplist = {};
+ bpfmt = 'Y';
+
+ srcpath = {
+ "./",
+ "/sys/src/libc/port/",
+ "/sys/src/libc/9sys/",
+ "/sys/src/libc/riscv64/"
+ };
+
+ srcfiles = {}; // list of loaded files
+ srctext = {}; // the text of the files
+}
+
+defn stk() // trace
+{
+ _stk(*PC, *SP, linkreg(0), 0);
+}
+
+defn lstk() // trace with locals
+{
+ _stk(*PC, *SP, linkreg(0), 1);
+}
+
+defn gpr() // print general purpose registers
+{
+ print("R1\t", *R1, " R2\t", *R2, " R3\t", *R3, "\n");
+ print("R4\t", *R4, " R5\t", *R5, " R6\t", *R6, "\n");
+ print("R7\t", *R7, " R8\t", *R8, " R9\t", *R9, "\n");
+ print("R10\t", *R10, " R11\t", *R11, " R12\t", *R12, "\n");
+ print("R13\t", *R13, " R14\t", *R14, " R15\t", *R15, "\n");
+ print("R16\t", *R16, " R17\t", *R17, " R18\t", *R18, "\n");
+ print("R19\t", *R19, " R20\t", *R20, " R21\t", *R21, "\n");
+ print("R22\t", *R22, " R23\t", *R23, " R24\t", *R24, "\n");
+ print("R25\t", *R25, " R26\t", *R26, " R27\t", *R27, "\n");
+ print("R28\t", *R28, " R29\t", *SP, " R30\t", *R30, "\n");
+ print("R31\t", *R31, "\n");
+}
+
+defn Fpr()
+{
+ print("F0\t", *fmt(F0, 'G'), "\tF1\t", *fmt(F1, 'G'), "\n");
+ print("F2\t", *fmt(F2, 'G'), "\tF3\t", *fmt(F3, 'G'), "\n");
+ print("F4\t", *fmt(F4, 'G'), "\tF5\t", *fmt(F5, 'G'), "\n");
+ print("F6\t", *fmt(F6, 'G'), "\tF7\t", *fmt(F7, 'G'), "\n");
+ print("F8\t", *fmt(F8, 'G'), "\tF9\t", *fmt(F9, 'G'), "\n");
+ print("F10\t", *fmt(F10, 'G'), "\tF11\t", *fmt(F11, 'G'), "\n");
+ print("F12\t", *fmt(F12, 'G'), "\tF13\t", *fmt(F13, 'G'), "\n");
+ print("F14\t", *fmt(F14, 'G'), "\tF15\t", *fmt(F15, 'G'), "\n");
+ print("F16\t", *fmt(F16, 'G'), "\tF17\t", *fmt(F17, 'G'), "\n");
+ print("F18\t", *fmt(F18, 'G'), "\tF19\t", *fmt(F19, 'G'), "\n");
+ print("F20\t", *fmt(F20, 'G'), "\tF21\t", *fmt(F21, 'G'), "\n");
+ print("F22\t", *fmt(F22, 'G'), "\tF23\t", *fmt(F23, 'G'), "\n");
+ print("F24\t", *fmt(F24, 'G'), "\tF25\t", *fmt(F25, 'G'), "\n");
+ print("F26\t", *fmt(F26, 'G'), "\tF27\t", *fmt(F27, 'G'), "\n");
+ print("F28\t", *fmt(F28, 'G'), "\tF29\t", *fmt(F29, 'G'), "\n");
+ print("F30\t", *fmt(F30, 'G'), "\tF31\t", *fmt(F31, 'G'), "\n");
+}
+
+defn fpr()
+{
+ print("F0\t", *fmt(F0, 'g'), "\tF1\t", *fmt(F1, 'g'), "\n");
+ print("F2\t", *fmt(F2, 'g'), "\tF3\t", *fmt(F3, 'g'), "\n");
+ print("F4\t", *fmt(F4, 'g'), "\tF5\t", *fmt(F5, 'g'), "\n");
+ print("F6\t", *fmt(F6, 'g'), "\tF7\t", *fmt(F7, 'g'), "\n");
+ print("F8\t", *fmt(F8, 'g'), "\tF9\t", *fmt(F9, 'g'), "\n");
+ print("F10\t", *fmt(F10, 'g'), "\tF11\t", *fmt(F11, 'g'), "\n");
+ print("F12\t", *fmt(F12, 'g'), "\tF13\t", *fmt(F13, 'g'), "\n");
+ print("F14\t", *fmt(F14, 'g'), "\tF15\t", *fmt(F15, 'g'), "\n");
+ print("F16\t", *fmt(F16, 'g'), "\tF17\t", *fmt(F17, 'g'), "\n");
+ print("F18\t", *fmt(F18, 'g'), "\tF19\t", *fmt(F19, 'g'), "\n");
+ print("F20\t", *fmt(F20, 'g'), "\tF21\t", *fmt(F21, 'g'), "\n");
+ print("F22\t", *fmt(F22, 'g'), "\tF23\t", *fmt(F23, 'g'), "\n");
+ print("F24\t", *fmt(F24, 'g'), "\tF25\t", *fmt(F25, 'g'), "\n");
+ print("F26\t", *fmt(F26, 'g'), "\tF27\t", *fmt(F27, 'g'), "\n");
+ print("F28\t", *fmt(F28, 'g'), "\tF29\t", *fmt(F29, 'g'), "\n");
+ print("F30\t", *fmt(F30, 'g'), "\tF31\t", *fmt(F31, 'g'), "\n");
+}
+
+defn spr() // print special processor registers
+{
+ local pc, link, cause;
+
+ pc = *PC;
+ print("PC\t", pc, " ", fmt(pc, 'a'), " ");
+ pfl(pc);
+
+ link = *R1;
+ print("SP\t", *SP, "\tLINK\t", link, " ", fmt(link, 'a'), " ");
+ pfl(link);
+
+ cause = *CAUSE;
+ print("STATUS\t", *STATUS, "\tCAUSE\t", cause, " ", reason(cause), "\n");
+}
+
+defn regs() // print all registers
+{
+ spr();
+ gpr();
+ Fpr();
+}
+
+defn pstop(pid)
+{
+ local l, pc;
+
+ pc = *PC;
+
+ print(pid,": ", reason(*CAUSE), "\t");
+ print(fmt(pc, 'a'), "\t", fmt(pc, 'i'), "\n");
+
+ if notes then {
+ if notes[0] != "sys: breakpoint" then {
+ print("Notes pending:\n");
+ l = notes;
+ while l do {
+ print("\t", head l, "\n");
+ l = tail l;
+ }
+ }
+ }
+}
+
+sizeofUreg = 296;
+aggr Ureg
+{
+ {
+ 'W' 0 pc;
+ 'a' 0 regs;
+ };
+ 'W' 8 r1;
+ {
+ 'W' 16 r2;
+ 'W' 16 sp;
+ 'W' 16 usp;
+ };
+ 'W' 24 r3;
+ 'W' 32 r4;
+ 'W' 40 r5;
+ 'W' 48 r6;
+ 'W' 56 r7;
+ {
+ 'W' 64 r8;
+ 'W' 64 arg;
+ 'W' 64 ret;
+ };
+ 'W' 72 r9;
+ 'W' 80 r10;
+ 'W' 88 r11;
+ 'W' 96 r12;
+ 'W' 104 r13;
+ 'W' 112 r14;
+ 'W' 120 r15;
+ 'W' 128 r16;
+ 'W' 136 r17;
+ 'W' 144 r18;
+ 'W' 152 r19;
+ 'W' 160 r20;
+ 'W' 168 r21;
+ 'W' 176 r22;
+ 'W' 184 r23;
+ 'W' 192 r24;
+ 'W' 200 r25;
+ 'W' 208 r26;
+ 'W' 216 r27;
+ 'W' 224 r28;
+ 'W' 232 r29;
+ 'W' 240 r30;
+ 'W' 248 r31;
+ 'W' 256 status;
+ 'W' 264 ie;
+ {
+ 'W' 272 cause;
+ 'W' 272 type;
+ };
+ 'W' 280 tval;
+ 'W' 288 curmode;
+};
+
+defn
+Ureg(addr) {
+ complex Ureg addr;
+ print("_32_ {\n");
+ _32_(addr+0);
+ print("}\n");
+ print(" r1 ", addr.r1, "\n");
+ print("_33_ {\n");
+ _33_(addr+16);
+ print("}\n");
+ print(" r3 ", addr.r3, "\n");
+ print(" r4 ", addr.r4, "\n");
+ print(" r5 ", addr.r5, "\n");
+ print(" r6 ", addr.r6, "\n");
+ print(" r7 ", addr.r7, "\n");
+ print("_34_ {\n");
+ _34_(addr+64);
+ print("}\n");
+ print(" r9 ", addr.r9, "\n");
+ print(" r10 ", addr.r10, "\n");
+ print(" r11 ", addr.r11, "\n");
+ print(" r12 ", addr.r12, "\n");
+ print(" r13 ", addr.r13, "\n");
+ print(" r14 ", addr.r14, "\n");
+ print(" r15 ", addr.r15, "\n");
+ print(" r16 ", addr.r16, "\n");
+ print(" r17 ", addr.r17, "\n");
+ print(" r18 ", addr.r18, "\n");
+ print(" r19 ", addr.r19, "\n");
+ print(" r20 ", addr.r20, "\n");
+ print(" r21 ", addr.r21, "\n");
+ print(" r22 ", addr.r22, "\n");
+ print(" r23 ", addr.r23, "\n");
+ print(" r24 ", addr.r24, "\n");
+ print(" r25 ", addr.r25, "\n");
+ print(" r26 ", addr.r26, "\n");
+ print(" r27 ", addr.r27, "\n");
+ print(" r28 ", addr.r28, "\n");
+ print(" r29 ", addr.r29, "\n");
+ print(" r30 ", addr.r30, "\n");
+ print(" r31 ", addr.r31, "\n");
+ print(" status ", addr.status, "\n");
+ print(" ie ", addr.ie, "\n");
+ print("_35_ {\n");
+ _35_(addr+272);
+ print("}\n");
+ print(" tval ", addr.tval, "\n");
+ print(" curmode ", addr.curmode, "\n");
+};
+
+defn linkreg(addr)
+{
+ complex Ureg addr;
+ return addr.r1\Y;
+}
+
+print("/sys/lib/acid/riscv64");
diff --git a/sys/lib/acid/syscall b/sys/lib/acid/syscall
index 754b4449a7..6cf4421b50 100644
--- a/sys/lib/acid/syscall
+++ b/sys/lib/acid/syscall
@@ -57,10 +57,10 @@ defn printsyscall(name, fmt, arg) {
print(argl);
} else if (fmt[i] == 'Z') && (~*a == 0) then {
print("-1");
- a++; // advance extra word for quadword
+ if fmtsize(a) != 8 then a++; // advance extra word for quadword
} else if (fmt[i] == 'Y') || (fmt[i] == 'V') then {
print(fmt(*a, fmt[i]));
- a++; // advance extra word for quadword
+ if fmtsize(a) != 8 then a++; // advance extra word for quadword
} else if (fmt[i] == 'T') then {
if *a == 0 then
print("nil");
@@ -152,6 +152,8 @@ defn UPCSPRET() {
return { code(*(*PC-4)), code(*SP+4), code(*AX) };
if (objtype == "mips") || (objtype == "mips2") then
return { code(*(*PC-4) & 0xffff), code(*SP+4), code(*R1) };
+ if objtype == "mips64" then
+ return { code(*(*PC-8) & 0xffff), code(*SP), code(*R1) };
if objtype == "arm" then
return { code(*(*PC-4) & 0xffff), code(*SP+4), code(*R0) }; // untested
if objtype == "alpha" then
@@ -163,15 +165,17 @@ defn trapoffset() {
if objtype == "386" then return 5;
if objtype == "mips" then return 8;
if objtype == "mips2" then return 8;
+ if objtype == "mips64" then return 12;
if objtype == "arm" then return 8; // untested
if objtype == "alpha" then return 8; // untested
-}
+}
defn trapreason() {
// return reason for trap
if objtype == "386" then return reason(*TRAP);
if objtype == "mips" then return reason(*CAUSE);
if objtype == "mips2" then return reason(*CAUSE);
+ if objtype == "mips64" then return reason(*CAUSE);
if objtype == "arm" then return "unknown trap"; // untested
if objtype == "alpha" then return reason(cause); // untested
}
diff --git a/sys/lib/acid/truss b/sys/lib/acid/truss
index c7cf327cab..85155322e5 100644
--- a/sys/lib/acid/truss
+++ b/sys/lib/acid/truss
@@ -164,6 +164,8 @@ defn setuptruss() {
while lst do
{
name = head lst;
+ if objtype == "mips64" && name == "seek" then
+ name = "_seek";
lst = tail lst;
addr = addressof(name);
if addr then
@@ -198,7 +200,7 @@ defn new() {
}
defn truss() {
- local pc, lst, offset, prevpc, pcspret, ret;
+ local pc, lst, offset, prevpc, pcspret, ret, dataoffset;
offset = trapoffset();
@@ -207,6 +209,11 @@ defn truss() {
setuptruss();
pcspret = UPCSPRET();
+ if objtype == "mips64" then
+ dataoffset = 8;
+ else
+ dataoffset = 4;
+
while !_stoprunning do {
cont();
if notes[0]!="sys: breakpoint" then {
@@ -229,11 +236,11 @@ defn truss() {
print("\treturn value: ", ret\D, "\n");
if (ret>=0) && (match(prevpc, readPC)>=0) then {
print("\tdata: ");
- printtextordata(*((eval pcspret[1])+4), ret);
+ printtextordata(*((eval pcspret[1])+dataoffset), ret);
print("\n");
}
if (ret>=0) && (match(prevpc, fd2pathPC)>=0) then {
- print("\tdata: \"", *(*((eval pcspret[1])+4)\s), "\"\n");
+ print("\tdata: \"", *(*((eval pcspret[1])+dataoffset)\s), "\"\n");
}
if (ret>=0) && (match(prevpc, errstrPC)>=0) then {
print("\tdata: \"", *(*(eval pcspret[1])\s), "\"\n");
diff --git a/sys/lib/dist/cmd/multi/mkmulti b/sys/lib/dist/cmd/multi/mkmulti
index 2317e51e8a..5511893d47 100755
--- a/sys/lib/dist/cmd/multi/mkmulti
+++ b/sys/lib/dist/cmd/multi/mkmulti
@@ -43,7 +43,7 @@ echo $i...
}
if not if(test -d /sys/src/cmd/$i && @{cd /sys/src/cmd/$i && mk 8.$b}){
cd /sys/src/cmd/$i
- rm 8.out
+ rm 8.$b
files=`{mk 8.$b | getfiles}
}
if not if(test -d /sys/src/cmd/$d && @{cd /sys/src/cmd/$d && mk 8.$b}){
diff --git a/sys/lib/dist/pc/inst/bootsetup b/sys/lib/dist/pc/inst/bootsetup
index cc22fe6ee9..a22a50f050 100755
--- a/sys/lib/dist/pc/inst/bootsetup
+++ b/sys/lib/dist/pc/inst/bootsetup
@@ -24,6 +24,7 @@ case go
sfs=`{echo $fs | sed 's;/dev;#S;'}
if(~ $fstype fossil fossil+venti){
echo bootfile'='$bootfat!9pcf
+ echo 'nobootprompt=local!'^$sfs
echo 'bootargs=local!'^$sfs
echo 'bootdisk=local!'^$sfs
}
@@ -42,6 +43,7 @@ case go
echo 'mouseport='^$mouseport
echo 'monitor='^$monitor
echo 'vgasize='^$vgasize
+ echo 'user=glenda'
} >/tmp/plan9.ini
}
if(! test -f /tmp/plan9ini.bak)
@@ -59,7 +61,7 @@ case go
bind /n/newfs/386/9loadnousb /n/newfs/386/9load # cater to old bioses
if(~ $need9fatformat yes){
log Initializing Plan 9 FAT partition.
- disk/format -r 2 -d -b /386/pbs \
+ disk/format -r 2 -d -b /386/pbslba \
/dev/$disk/9fat /n/newfs/386/9load
# silently install pbslba if the partition is way into the disk.
# it''s our only hope. only need this for >8.5GB into the disk.
diff --git a/sys/lib/dist/pc/inst/download b/sys/lib/dist/pc/inst/download
index 70d7f5ba75..70a2aa5396 100755
--- a/sys/lib/dist/pc/inst/download
+++ b/sys/lib/dist/pc/inst/download
@@ -1,6 +1,6 @@
#!/bin/rc
-# prereq: mountfs
+# prereq: mountfs confignet
# desc: download or continue to download the distribution archives
switch($1) {
diff --git a/sys/lib/dist/pc/inst/fmtventi b/sys/lib/dist/pc/inst/fmtventi
index db79440acf..add5b88051 100755
--- a/sys/lib/dist/pc/inst/fmtventi
+++ b/sys/lib/dist/pc/inst/fmtventi
@@ -10,9 +10,9 @@ case checkready checkdone
export fmtventi
exit
}
- if(! test -e /bin/venti/fmtarenas || ! test -e /bin/venti/fmtisect || ! test -e /bin/venti/fmtindex){
+ if(! test -e /bin/venti/fmtarenas || ! test -e /bin/venti/fmtisect || ! test -e /bin/venti/fmtindex || ! test -e /bin/venti/fmtbloom){
bind -a /n/dist/386/bin/venti /bin/venti
- if(! test -e /bin/venti/fmtarenas || ! test -e /bin/venti/fmtisect || ! test -e /bin/venti/fmtindex){
+ if(! test -e /bin/venti/fmtarenas || ! test -e /bin/venti/fmtisect || ! test -e /bin/venti/fmtindex || ! test -e /bin/venti/fmtbloom){
fmtventi=notdone
export fmtventi
exit
@@ -105,6 +105,38 @@ case go
ventiindex=$aa
export ventiindex
+ hh=`{ls /dev/sd*/bloom* /dev/fs/bloom* >[2]/dev/null}
+ if(~ $#hh 0){
+ echo 'You need to create a partition or partitions to hold the Venti bloom.'
+ echo 'The bloom partition names must begin with "bloom".'
+ echo
+ fmtventi=notdone
+ export fmtventi
+ exit
+ }
+ default=(-d $"hh)
+ if(! ~ $#ventibloom 0){
+ default=(-d $"ventibloom)
+ }
+
+ echo You have the following Venti bloom partitions.
+ ls -l $hh
+ echo
+
+ prompt $default 'Venti bloom partitions to use'
+ aa=`{echo $rd}
+ bad=no
+ for(a in $aa){
+ if(! ~ $a $hh){
+ echo 'Bad venti bloom partition' $a
+ fmtventi=notdone
+ export fmtventi
+ exit
+ }
+ }
+ ventibloom=$aa
+ export ventibloom
+
n=-1
fmta=()
for(a in $ventiarena){
@@ -133,11 +165,25 @@ case go
fmti=($fmti isect$n:$a)
}
+ n=-1
+ fmtb=()
+ for(a in $ventibloom){
+ do=yes
+ n=`{hoc -e 1+$n}
+ if(isventibloom $a){
+ echo File $a is already formatted as a Venti bloom section.
+ prompt -d no 'Reformat '$a yes no
+ do=$rd
+ }
+ if(~ $do yes)
+ fmtb=($fmtb bloom$n:$a)
+ }
+
echo Formatting Venti arenas and indices (this takes a while).
# do each disk in parallel
echo good >/tmp/fmt
dd=()
- for(a in $fmta $fmti){
+ for(a in $fmta $fmti $fmtb){
d=`{echo $a | sed 's!.*:(/.*/).*!\1!'}
if(! ~ $d $dd)
dd=($dd $d)
@@ -160,6 +206,24 @@ case go
echo done with $i(3)
}
}
+ for(a in $fmtb){
+ i=`{echo $a | sed 's!(.*):(/.*/)(.*)!\1 \2 \2\3!'}
+ pgsize=`{grep pagesize /dev/swap | sed 's/^([0-9]+) .*$/\1/'}
+ userused=`{grep user /dev/swap | sed 's/^([0-9]+)\/([0-9]+) .*$/\1/'}
+ userpgs=`{grep user /dev/swap | sed 's/^([0-9]+)\/([0-9]+) .*$/\2/'}
+ userfree=`{hoc -e '('$userpgs-$userused')'*$pgsize}
+ bloomsize=`{hoc -e 2'^(int(log('$userfree/1024/1024*20/100*1/3')/log(2)))'}
+ partsize=`{ls -l $i(3) | awk '{print int($6/1024/1024)}' | hoc}
+ if(test $bloomsize -gt $partsize)
+ bloomsize=$partsize
+ if(test $bloomsize -lt 1)
+ bloomsize=1
+ if(~ $i(2) $d){
+ echo $i(3) ...
+ venti/fmtbloom -s $bloomsize^m $i(3) || echo bad >/tmp/fmt
+ echo done with $i(3)
+ }
+ }
} &
}
wait
@@ -178,6 +242,8 @@ case go
echo index main
for(i in $ventiindex)
echo isect $i
+ for(b in $ventibloom)
+ echo bloom $b
for(a in $ventiarena)
echo arenas $a
} | venti/conf -w $v
diff --git a/sys/lib/dist/pc/inst/isventibloom b/sys/lib/dist/pc/inst/isventibloom
new file mode 100644
index 0000000000..bc62af5218
--- /dev/null
+++ b/sys/lib/dist/pc/inst/isventibloom
@@ -0,0 +1,13 @@
+#!/bin/rc
+
+if(! ~ $#* 1){
+ echo 'usage: isventibloom /dev/sdC0/part' >[1=2]
+ exit usage
+}
+
+arg=$1
+if(! cmp -s <{dd -quiet 1 -if $arg -bs 1024 |
+ dd -quiet 1 -bs 4 -count 1 | xd -b | sed 1q} <{echo '0000000 b1 00 4e ad'})
+ exit notbloom
+exit 0
+
diff --git a/sys/lib/dist/pc/inst/main b/sys/lib/dist/pc/inst/main
index 25ac0d1683..742d0e4678 100755
--- a/sys/lib/dist/pc/inst/main
+++ b/sys/lib/dist/pc/inst/main
@@ -18,9 +18,9 @@ tasks=(\
mountfs\
configdist\
confignet\
+ download\
mountdist\
fmtventi\
- download\
copydist\
bootsetup finish stop\
stopether stopppp\
diff --git a/sys/lib/dist/pc/inst/prepdisk b/sys/lib/dist/pc/inst/prepdisk
index 6ef4a92f8a..b31dae9a04 100755
--- a/sys/lib/dist/pc/inst/prepdisk
+++ b/sys/lib/dist/pc/inst/prepdisk
@@ -7,7 +7,7 @@ fn autotype {
if(~ $fstype fossil)
echo -a 9fat -a nvram -a fossil -a swap
if(~ $fstype fossil+venti)
- echo -a 9fat -a nvram -a arenas -a isect -a fossil -a swap # -a other
+ echo -a 9fat -a nvram -a arenas -a isect -a bloom -a fossil -a swap # -a other
}
switch($1) {
diff --git a/sys/lib/dist/pc/plan9.ini.cd b/sys/lib/dist/pc/plan9.ini.cd
index 828a1f856b..0633ed7523 100644
--- a/sys/lib/dist/pc/plan9.ini.cd
+++ b/sys/lib/dist/pc/plan9.ini.cd
@@ -24,7 +24,8 @@ vgasize=ask
dmamode=ask
adisk=/dev/sdD0/cdboot
cdboot=yes
-# console=0
+installurl=http://148.251.6.120/plan9/download
+console=0 b115200
# baud=9600
[install]
diff --git a/sys/lib/dist/sources2web b/sys/lib/dist/sources2web
new file mode 100644
index 0000000000..18e2c0a22e
--- /dev/null
+++ b/sys/lib/dist/sources2web
@@ -0,0 +1,56 @@
+#!/bin/rc
+# sources2web source-file - massage source file into html
+rfork e
+contrib=`{cat /sys/lib/dist/contrib.note}
+contrib=`{echo $contrib | sed 's;/;\\/;g'}
+ifs='
+'
+file=$1
+safefile=`{cleanname -d `{pwd} $file | sed 's;/;\\/;g'} # safe for sed
+if(! ~ $safefile *contrib*)
+ contrib=''
+
+fn html {
+ echo Content-Type: text/html
+ echo
+}
+fn head {
+ sed -n '1,/END HEADER/p' /usr/web/plan9/sources.html | translate
+}
+fn tail {
+ sed -n '/BEGIN TAIL/,$p' /usr/web/plan9/sources.html | translate
+}
+fn translate {
+ sed 's/PATH/'$safefile'/g; s/CONTRIB/'$"contrib'/g;' $*
+}
+
+if(test -f $1){
+ type=`{file -m $1}
+ if(! ~ $type text/*){
+ len=`{ls -l $1 | awk '{print $6}'}
+ echo Content-Type: $type
+ echo Content-Length: $len
+ echo
+ cat $1
+ exit 0
+ }
+ html
+ head
+ cat $1 | aux/htmlsanitize
+ tail
+ exit 0
+}
+if(test -d $1){
+ html
+ head
+ # exclude stuff that we don't want to publish with grep -v
+ ls -lp $1 | grep -v ' _| snap$| (9k|nix|pac)' |
+ sed 's/ . [0-9]+ / /' |
+ aux/htmlsanitize |
+ sed 's; ([^ /]+)$; \1;'
+ tail
+ exit 0
+}
+
+echo not found
+exit 0
diff --git a/sys/lib/git/common.rc b/sys/lib/git/common.rc
new file mode 100644
index 0000000000..653d6bfb10
--- /dev/null
+++ b/sys/lib/git/common.rc
@@ -0,0 +1,109 @@
+nl='
+'
+
+fn die{
+ >[1=2] echo $0: $*
+ exit $"*
+}
+
+fn usage{
+ >[1=2] echo -n 'usage:' $usage
+ exit 'usage'
+}
+
+fn subst {
+ awk '
+ BEGIN{ARGC=0}
+ {sub(ARGV[1], ARGV[2]); print}
+ ' $*
+}
+
+fn drop {
+ awk '
+ BEGIN{ARGC=0}
+ {
+ if(index($0, ARGV[1]) == 1)
+ $0=substr($0, length(ARGV[1])+1)
+ print
+ }
+ ' $*
+}
+
+fn present {
+ if(~ $1 /dev/null && cmp $2 $3>/dev/null)
+ status=gone
+ if not if (~ $3 /dev/null && cmp $1 $2>/dev/null)
+ status=gone
+ if not
+ status=()
+}
+
+fn whoami{
+ name=`$nl{git/conf user.name}
+ email=`$nl{git/conf user.email}
+ if(test -f /adm/keys.who){
+ if(~ $name '')
+ name=`$nl{awk -F'|' '$1=="'$user'" {x=$3} END{print x}' $tmp)
+ echo merge needed: $out >[1=2]
+
+ if(present $ours $base $theirs){
+ mv $tmp $out
+ git/add $out
+ }
+ if not {
+ rm -f $tmp $out
+ git/rm $out
+ }
+}}
+
+fn gitup{
+ gitroot=`{git/conf -r >[2]/dev/null}
+ if(~ $#gitroot 0)
+ die 'not a git repository'
+ gitfs=$gitroot/.git/fs
+ gitrel=`{pwd | drop $gitroot | sed 's@^/@@'}
+ if(~ $#gitrel 0)
+ gitrel='.'
+ cd $gitroot
+ startfs=()
+ if(! test -d $gitfs)
+ mkdir -p $gitfs
+ if(! test -e $gitfs/ctl)
+ startfs=true
+ if(! grep -s '^repo '$gitroot'$' $gitfs/ctl >[2]/dev/null)
+ startfs=true
+ if(~ $#startfs 1)
+ git/fs
+ if not
+ status=''
+}
diff --git a/sys/lib/man/mkhtmlindex b/sys/lib/man/mkhtmlindex
index 93cd333f41..b7d41e85e4 100755
--- a/sys/lib/man/mkhtmlindex
+++ b/sys/lib/man/mkhtmlindex
@@ -23,6 +23,8 @@ case 7
echo -n Databases
case 8
echo -n System Administration
+case 9
+ echo -n Kernel Functions
}
echo ''
echo '
'
diff --git a/sys/lib/mimetype b/sys/lib/mimetype
index 780cf65242..98a718f979 100644
--- a/sys/lib/mimetype
+++ b/sys/lib/mimetype
@@ -21,7 +21,7 @@
.bcpio application x-bcpio - m
.bib text plain - y # BibTex input
.bmp image bmp - y # bitmapped image
-.bz2 application x-bzip2 bzip2 m # bzipped file
+.bz2 application x-bzip2 - m # bzipped file
.c text plain - y # C program
.c++ text plain - y # C++ program
.cacert application x-x509-ca-cert - y # DER X.509 CA certificate
@@ -53,7 +53,7 @@
.gcd text x-pcs-gcd - y # helper file for .qcp
.gif image gif - y
.gtar application x-gtar - m
-.gz application x-gzip gzip m # gzipped file
+.gz application x-gzip - m # gzipped file
.h text plain - y # C header file
.hdf application x-hdf - y
.hdml text x-hdml - y
@@ -135,7 +135,7 @@
.texi application x-texinfo - y
.texinfo application x-texinfo - y
.text text plain - y
-.tgz application x-tar gzip m
+.tgz application x-tar - m
.tif image tiff - y
.tiff image tiff - y
.toc text plain - y # table of contents
diff --git a/sys/lib/tls/ca.pem b/sys/lib/tls/ca.pem
new file mode 100644
index 0000000000..3c79c596ee
--- /dev/null
+++ b/sys/lib/tls/ca.pem
@@ -0,0 +1,3228 @@
+##
+## Bundle of CA Root Certificates
+##
+## Certificate data from Mozilla as of: Tue Jan 19 04:12:04 2021 GMT
+##
+## This is a bundle of X.509 certificates of public Certificate Authorities
+## (CA). These were automatically extracted from Mozilla's root certificates
+## file (certdata.txt). This file can be found in the mozilla source tree:
+## https://hg.mozilla.org/releases/mozilla-release/raw-file/default/security/nss/lib/ckfw/builtins/certdata.txt
+##
+## It contains the certificates in PEM format and therefore
+## can be directly used with curl / libcurl / php_curl, or with
+## an Apache+mod_ssl webserver for SSL client authentication.
+## Just configure this file as the SSLCACertificateFile.
+##
+## Conversion done with mk-ca-bundle.pl version 1.28.
+## SHA256: 3bdc63d1de27058fec943a999a2a8a01fcc6806a611b19221a7727d3d9bbbdfd
+##
+
+
+GlobalSign Root CA
+==================
+-----BEGIN CERTIFICATE-----
+MIIDdTCCAl2gAwIBAgILBAAAAAABFUtaw5QwDQYJKoZIhvcNAQEFBQAwVzELMAkGA1UEBhMCQkUx
+GTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jvb3QgQ0ExGzAZBgNVBAMTEkds
+b2JhbFNpZ24gUm9vdCBDQTAeFw05ODA5MDExMjAwMDBaFw0yODAxMjgxMjAwMDBaMFcxCzAJBgNV
+BAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYD
+VQQDExJHbG9iYWxTaWduIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDa
+DuaZjc6j40+Kfvvxi4Mla+pIH/EqsLmVEQS98GPR4mdmzxzdzxtIK+6NiY6arymAZavpxy0Sy6sc
+THAHoT0KMM0VjU/43dSMUBUc71DuxC73/OlS8pF94G3VNTCOXkNz8kHp1Wrjsok6Vjk4bwY8iGlb
+Kk3Fp1S4bInMm/k8yuX9ifUSPJJ4ltbcdG6TRGHRjcdGsnUOhugZitVtbNV4FpWi6cgKOOvyJBNP
+c1STE4U6G7weNLWLBYy5d4ux2x8gkasJU26Qzns3dLlwR5EiUWMWea6xrkEmCMgZK9FGqkjWZCrX
+gzT/LCrBbBlDSgeF59N89iFo7+ryUp9/k5DPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV
+HRMBAf8EBTADAQH/MB0GA1UdDgQWBBRge2YaRQ2XyolQL30EzTSo//z9SzANBgkqhkiG9w0BAQUF
+AAOCAQEA1nPnfE920I2/7LqivjTFKDK1fPxsnCwrvQmeU79rXqoRSLblCKOzyj1hTdNGCbM+w6Dj
+Y1Ub8rrvrTnhQ7k4o+YviiY776BQVvnGCv04zcQLcFGUl5gE38NflNUVyRRBnMRddWQVDf9VMOyG
+j/8N7yy5Y0b2qvzfvGn9LhJIZJrglfCm7ymPAbEVtQwdpf5pLGkkeB6zpxxxYu7KyJesF12KwvhH
+hm4qxFYxldBniYUr+WymXUadDKqC5JlR3XC321Y9YeRq4VzW9v493kHMB65jUr9TU/Qr6cf9tveC
+X4XSQRjbgbMEHMUfpIBvFSDJ3gyICh3WZlXi/EjJKSZp4A==
+-----END CERTIFICATE-----
+
+GlobalSign Root CA - R2
+=======================
+-----BEGIN CERTIFICATE-----
+MIIDujCCAqKgAwIBAgILBAAAAAABD4Ym5g0wDQYJKoZIhvcNAQEFBQAwTDEgMB4GA1UECxMXR2xv
+YmFsU2lnbiBSb290IENBIC0gUjIxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2Jh
+bFNpZ24wHhcNMDYxMjE1MDgwMDAwWhcNMjExMjE1MDgwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxT
+aWduIFJvb3QgQ0EgLSBSMjETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2ln
+bjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKbPJA6+Lm8omUVCxKs+IVSbC9N/hHD6
+ErPLv4dfxn+G07IwXNb9rfF73OX4YJYJkhD10FPe+3t+c4isUoh7SqbKSaZeqKeMWhG8eoLrvozp
+s6yWJQeXSpkqBy+0Hne/ig+1AnwblrjFuTosvNYSuetZfeLQBoZfXklqtTleiDTsvHgMCJiEbKjN
+S7SgfQx5TfC4LcshytVsW33hoCmEofnTlEnLJGKRILzdC9XZzPnqJworc5HGnRusyMvo4KD0L5CL
+TfuwNhv2GXqF4G3yYROIXJ/gkwpRl4pazq+r1feqCapgvdzZX99yqWATXgAByUr6P6TqBwMhAo6C
+ygPCm48CAwEAAaOBnDCBmTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4E
+FgQUm+IHV2ccHsBqBt5ZtJot39wZhi4wNgYDVR0fBC8wLTAroCmgJ4YlaHR0cDovL2NybC5nbG9i
+YWxzaWduLm5ldC9yb290LXIyLmNybDAfBgNVHSMEGDAWgBSb4gdXZxwewGoG3lm0mi3f3BmGLjAN
+BgkqhkiG9w0BAQUFAAOCAQEAmYFThxxol4aR7OBKuEQLq4GsJ0/WwbgcQ3izDJr86iw8bmEbTUsp
+9Z8FHSbBuOmDAGJFtqkIk7mpM0sYmsL4h4hO291xNBrBVNpGP+DTKqttVCL1OmLNIG+6KYnX3ZHu
+01yiPqFbQfXf5WRDLenVOavSot+3i9DAgBkcRcAtjOj4LaR0VknFBbVPFd5uRHg5h6h+u/N5GJG7
+9G+dwfCMNYxdAfvDbbnvRG15RjF+Cv6pgsH/76tuIMRQyV+dTZsXjAzlAcmgQWpzU/qlULRuJQ/7
+TBj0/VLZjmmx6BEP3ojY+x1J96relc8geMJgEtslQIxq/H5COEBkEveegeGTLg==
+-----END CERTIFICATE-----
+
+Entrust.net Premium 2048 Secure Server CA
+=========================================
+-----BEGIN CERTIFICATE-----
+MIIEKjCCAxKgAwIBAgIEOGPe+DANBgkqhkiG9w0BAQUFADCBtDEUMBIGA1UEChMLRW50cnVzdC5u
+ZXQxQDA+BgNVBAsUN3d3dy5lbnRydXN0Lm5ldC9DUFNfMjA0OCBpbmNvcnAuIGJ5IHJlZi4gKGxp
+bWl0cyBsaWFiLikxJTAjBgNVBAsTHChjKSAxOTk5IEVudHJ1c3QubmV0IExpbWl0ZWQxMzAxBgNV
+BAMTKkVudHJ1c3QubmV0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5ICgyMDQ4KTAeFw05OTEyMjQx
+NzUwNTFaFw0yOTA3MjQxNDE1MTJaMIG0MRQwEgYDVQQKEwtFbnRydXN0Lm5ldDFAMD4GA1UECxQ3
+d3d3LmVudHJ1c3QubmV0L0NQU18yMDQ4IGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxpYWIuKTEl
+MCMGA1UECxMcKGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDEzMDEGA1UEAxMqRW50cnVzdC5u
+ZXQgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgKDIwNDgpMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A
+MIIBCgKCAQEArU1LqRKGsuqjIAcVFmQqK0vRvwtKTY7tgHalZ7d4QMBzQshowNtTK91euHaYNZOL
+Gp18EzoOH1u3Hs/lJBQesYGpjX24zGtLA/ECDNyrpUAkAH90lKGdCCmziAv1h3edVc3kw37XamSr
+hRSGlVuXMlBvPci6Zgzj/L24ScF2iUkZ/cCovYmjZy/Gn7xxGWC4LeksyZB2ZnuU4q941mVTXTzW
+nLLPKQP5L6RQstRIzgUyVYr9smRMDuSYB3Xbf9+5CFVghTAp+XtIpGmG4zU/HoZdenoVve8AjhUi
+VBcAkCaTvA5JaJG/+EfTnZVCwQ5N328mz8MYIWJmQ3DW1cAH4QIDAQABo0IwQDAOBgNVHQ8BAf8E
+BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUVeSB0RGAvtiJuQijMfmhJAkWuXAwDQYJ
+KoZIhvcNAQEFBQADggEBADubj1abMOdTmXx6eadNl9cZlZD7Bh/KM3xGY4+WZiT6QBshJ8rmcnPy
+T/4xmf3IDExoU8aAghOY+rat2l098c5u9hURlIIM7j+VrxGrD9cv3h8Dj1csHsm7mhpElesYT6Yf
+zX1XEC+bBAlahLVu2B064dae0Wx5XnkcFMXj0EyTO2U87d89vqbllRrDtRnDvV5bu/8j72gZyxKT
+J1wDLW8w0B62GqzeWvfRqqgnpv55gcR5mTNXuhKwqeBCbJPKVt7+bYQLCIt+jerXmCHG8+c8eS9e
+nNFMFY3h7CI3zJpDC5fcgJCNs2ebb0gIFVbPv/ErfF6adulZkMV8gzURZVE=
+-----END CERTIFICATE-----
+
+Baltimore CyberTrust Root
+=========================
+-----BEGIN CERTIFICATE-----
+MIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJRTESMBAGA1UE
+ChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3li
+ZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoXDTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMC
+SUUxEjAQBgNVBAoTCUJhbHRpbW9yZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFs
+dGltb3JlIEN5YmVyVHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKME
+uyKrmD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjrIZ3AQSsB
+UnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeKmpYcqWe4PwzV9/lSEy/C
+G9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSuXmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9
+XbIGevOF6uvUA65ehD5f/xXtabz5OTZydc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjpr
+l3RjM71oGDHweI12v/yejl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoI
+VDaGezq1BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEB
+BQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT929hkTI7gQCvlYpNRh
+cL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3WgxjkzSswF07r51XgdIGn9w/xZchMB5
+hbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsa
+Y71k5h+3zvDyny67G7fyUIhzksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9H
+RCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp
+-----END CERTIFICATE-----
+
+Entrust Root Certification Authority
+====================================
+-----BEGIN CERTIFICATE-----
+MIIEkTCCA3mgAwIBAgIERWtQVDANBgkqhkiG9w0BAQUFADCBsDELMAkGA1UEBhMCVVMxFjAUBgNV
+BAoTDUVudHJ1c3QsIEluYy4xOTA3BgNVBAsTMHd3dy5lbnRydXN0Lm5ldC9DUFMgaXMgaW5jb3Jw
+b3JhdGVkIGJ5IHJlZmVyZW5jZTEfMB0GA1UECxMWKGMpIDIwMDYgRW50cnVzdCwgSW5jLjEtMCsG
+A1UEAxMkRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA2MTEyNzIwMjM0
+MloXDTI2MTEyNzIwNTM0MlowgbAxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMu
+MTkwNwYDVQQLEzB3d3cuZW50cnVzdC5uZXQvQ1BTIGlzIGluY29ycG9yYXRlZCBieSByZWZlcmVu
+Y2UxHzAdBgNVBAsTFihjKSAyMDA2IEVudHJ1c3QsIEluYy4xLTArBgNVBAMTJEVudHJ1c3QgUm9v
+dCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB
+ALaVtkNC+sZtKm9I35RMOVcF7sN5EUFoNu3s/poBj6E4KPz3EEZmLk0eGrEaTsbRwJWIsMn/MYsz
+A9u3g3s+IIRe7bJWKKf44LlAcTfFy0cOlypowCKVYhXbR9n10Cv/gkvJrT7eTNuQgFA/CYqEAOww
+Cj0Yzfv9KlmaI5UXLEWeH25DeW0MXJj+SKfFI0dcXv1u5x609mhF0YaDW6KKjbHjKYD+JXGIrb68
+j6xSlkuqUY3kEzEZ6E5Nn9uss2rVvDlUccp6en+Q3X0dgNmBu1kmwhH+5pPi94DkZfs0Nw4pgHBN
+rziGLp5/V6+eF67rHMsoIV+2HNjnogQi+dPa2MsCAwEAAaOBsDCBrTAOBgNVHQ8BAf8EBAMCAQYw
+DwYDVR0TAQH/BAUwAwEB/zArBgNVHRAEJDAigA8yMDA2MTEyNzIwMjM0MlqBDzIwMjYxMTI3MjA1
+MzQyWjAfBgNVHSMEGDAWgBRokORnpKZTgMeGZqTx90tD+4S9bTAdBgNVHQ4EFgQUaJDkZ6SmU4DH
+hmak8fdLQ/uEvW0wHQYJKoZIhvZ9B0EABBAwDhsIVjcuMTo0LjADAgSQMA0GCSqGSIb3DQEBBQUA
+A4IBAQCT1DCw1wMgKtD5Y+iRDAUgqV8ZyntyTtSx29CW+1RaGSwMCPeyvIWonX9tO1KzKtvn1ISM
+Y/YPyyYBkVBs9F8U4pN0wBOeMDpQ47RgxRzwIkSNcUesyBrJ6ZuaAGAT/3B+XxFNSRuzFVJ7yVTa
+v52Vr2ua2J7p8eRDjeIRRDq/r72DQnNSi6q7pynP9WQcCk3RvKqsnyrQ/39/2n3qse0wJcGE2jTS
+W3iDVuycNsMm4hH2Z0kdkquM++v/eu6FSqdQgPCnXEqULl8FmTxSQeDNtGPPAUO6nIPcj2A781q0
+tHuu2guQOHXvgR1m0vdXcDazv/wor3ElhVsT/h5/WrQ8
+-----END CERTIFICATE-----
+
+Comodo AAA Services root
+========================
+-----BEGIN CERTIFICATE-----
+MIIEMjCCAxqgAwIBAgIBATANBgkqhkiG9w0BAQUFADB7MQswCQYDVQQGEwJHQjEbMBkGA1UECAwS
+R3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRowGAYDVQQKDBFDb21vZG8gQ0Eg
+TGltaXRlZDEhMB8GA1UEAwwYQUFBIENlcnRpZmljYXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAwMDAw
+MFoXDTI4MTIzMTIzNTk1OVowezELMAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hl
+c3RlcjEQMA4GA1UEBwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxITAfBgNV
+BAMMGEFBQSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC
+ggEBAL5AnfRu4ep2hxxNRUSOvkbIgwadwSr+GB+O5AL686tdUIoWMQuaBtDFcCLNSS1UY8y2bmhG
+C1Pqy0wkwLxyTurxFa70VJoSCsN6sjNg4tqJVfMiWPPe3M/vg4aijJRPn2jymJBGhCfHdr/jzDUs
+i14HZGWCwEiwqJH5YZ92IFCokcdmtet4YgNW8IoaE+oxox6gmf049vYnMlhvB/VruPsUK6+3qszW
+Y19zjNoFmag4qMsXeDZRrOme9Hg6jc8P2ULimAyrL58OAd7vn5lJ8S3frHRNG5i1R8XlKdH5kBjH
+Ypy+g8cmez6KJcfA3Z3mNWgQIJ2P2N7Sw4ScDV7oL8kCAwEAAaOBwDCBvTAdBgNVHQ4EFgQUoBEK
+Iz6W8Qfs4q8p74Klf9AwpLQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wewYDVR0f
+BHQwcjA4oDagNIYyaHR0cDovL2NybC5jb21vZG9jYS5jb20vQUFBQ2VydGlmaWNhdGVTZXJ2aWNl
+cy5jcmwwNqA0oDKGMGh0dHA6Ly9jcmwuY29tb2RvLm5ldC9BQUFDZXJ0aWZpY2F0ZVNlcnZpY2Vz
+LmNybDANBgkqhkiG9w0BAQUFAAOCAQEACFb8AvCb6P+k+tZ7xkSAzk/ExfYAWMymtrwUSWgEdujm
+7l3sAg9g1o1QGE8mTgHj5rCl7r+8dFRBv/38ErjHT1r0iWAFf2C3BUrz9vHCv8S5dIa2LX1rzNLz
+Rt0vxuBqw8M0Ayx9lt1awg6nCpnBBYurDC/zXDrPbDdVCYfeU0BsWO/8tqtlbgT2G9w84FoVxp7Z
+8VlIMCFlA2zs6SFz7JsDoeA3raAVGI/6ugLOpyypEBMs1OUIJqsil2D4kF501KKaU73yqWjgom7C
+12yxow+ev+to51byrvLjKzg6CYG1a4XXvi3tPxq3smPi9WIsgtRqAEFQ8TmDn5XpNpaYbg==
+-----END CERTIFICATE-----
+
+QuoVadis Root CA
+================
+-----BEGIN CERTIFICATE-----
+MIIF0DCCBLigAwIBAgIEOrZQizANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJCTTEZMBcGA1UE
+ChMQUXVvVmFkaXMgTGltaXRlZDElMCMGA1UECxMcUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0
+eTEuMCwGA1UEAxMlUXVvVmFkaXMgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wMTAz
+MTkxODMzMzNaFw0yMTAzMTcxODMzMzNaMH8xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRp
+cyBMaW1pdGVkMSUwIwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MS4wLAYDVQQD
+EyVRdW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEF
+AAOCAQ8AMIIBCgKCAQEAv2G1lVO6V/z68mcLOhrfEYBklbTRvM16z/Ypli4kVEAkOPcahdxYTMuk
+J0KX0J+DisPkBgNbAKVRHnAEdOLB1Dqr1607BxgFjv2DrOpm2RgbaIr1VxqYuvXtdj182d6UajtL
+F8HVj71lODqV0D1VNk7feVcxKh7YWWVJWCCYfqtffp/p1k3sg3Spx2zY7ilKhSoGFPlU5tPaZQeL
+YzcS19Dsw3sgQUSj7cugF+FxZc4dZjH3dgEZyH0DWLaVSR2mEiboxgx24ONmy+pdpibu5cxfvWen
+AScOospUxbF6lR1xHkopigPcakXBpBlebzbNw6Kwt/5cOOJSvPhEQ+aQuwIDAQABo4ICUjCCAk4w
+PQYIKwYBBQUHAQEEMTAvMC0GCCsGAQUFBzABhiFodHRwczovL29jc3AucXVvdmFkaXNvZmZzaG9y
+ZS5jb20wDwYDVR0TAQH/BAUwAwEB/zCCARoGA1UdIASCAREwggENMIIBCQYJKwYBBAG+WAABMIH7
+MIHUBggrBgEFBQcCAjCBxxqBxFJlbGlhbmNlIG9uIHRoZSBRdW9WYWRpcyBSb290IENlcnRpZmlj
+YXRlIGJ5IGFueSBwYXJ0eSBhc3N1bWVzIGFjY2VwdGFuY2Ugb2YgdGhlIHRoZW4gYXBwbGljYWJs
+ZSBzdGFuZGFyZCB0ZXJtcyBhbmQgY29uZGl0aW9ucyBvZiB1c2UsIGNlcnRpZmljYXRpb24gcHJh
+Y3RpY2VzLCBhbmQgdGhlIFF1b1ZhZGlzIENlcnRpZmljYXRlIFBvbGljeS4wIgYIKwYBBQUHAgEW
+Fmh0dHA6Ly93d3cucXVvdmFkaXMuYm0wHQYDVR0OBBYEFItLbe3TKbkGGew5Oanwl4Rqy+/fMIGu
+BgNVHSMEgaYwgaOAFItLbe3TKbkGGew5Oanwl4Rqy+/foYGEpIGBMH8xCzAJBgNVBAYTAkJNMRkw
+FwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSUwIwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0
+aG9yaXR5MS4wLAYDVQQDEyVRdW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggQ6
+tlCLMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOCAQEAitQUtf70mpKnGdSkfnIYj9lo
+fFIk3WdvOXrEql494liwTXCYhGHoG+NpGA7O+0dQoE7/8CQfvbLO9Sf87C9TqnN7Az10buYWnuul
+LsS/VidQK2K6vkscPFVcQR0kvoIgR13VRH56FmjffU1RcHhXHTMe/QKZnAzNCgVPx7uOpHX6Sm2x
+gI4JVrmcGmD+XcHXetwReNDWXcG31a0ymQM6isxUJTkxgXsTIlG6Rmyhu576BGxJJnSP0nPrzDCi
+5upZIof4l/UO/erMkqQWxFIY6iHOsfHmhIHluqmGKPJDWl0Snawe2ajlCmqnf6CHKc/yiU3U7MXi
+5nrQNiOKSnQ2+Q==
+-----END CERTIFICATE-----
+
+QuoVadis Root CA 2
+==================
+-----BEGIN CERTIFICATE-----
+MIIFtzCCA5+gAwIBAgICBQkwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0xGTAXBgNVBAoT
+EFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJvb3QgQ0EgMjAeFw0wNjExMjQx
+ODI3MDBaFw0zMTExMjQxODIzMzNaMEUxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM
+aW1pdGVkMRswGQYDVQQDExJRdW9WYWRpcyBSb290IENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4IC
+DwAwggIKAoICAQCaGMpLlA0ALa8DKYrwD4HIrkwZhR0In6spRIXzL4GtMh6QRr+jhiYaHv5+HBg6
+XJxgFyo6dIMzMH1hVBHL7avg5tKifvVrbxi3Cgst/ek+7wrGsxDp3MJGF/hd/aTa/55JWpzmM+Yk
+lvc/ulsrHHo1wtZn/qtmUIttKGAr79dgw8eTvI02kfN/+NsRE8Scd3bBrrcCaoF6qUWD4gXmuVbB
+lDePSHFjIuwXZQeVikvfj8ZaCuWw419eaxGrDPmF60Tp+ARz8un+XJiM9XOva7R+zdRcAitMOeGy
+lZUtQofX1bOQQ7dsE/He3fbE+Ik/0XX1ksOR1YqI0JDs3G3eicJlcZaLDQP9nL9bFqyS2+r+eXyt
+66/3FsvbzSUr5R/7mp/iUcw6UwxI5g69ybR2BlLmEROFcmMDBOAENisgGQLodKcftslWZvB1Jdxn
+wQ5hYIizPtGo/KPaHbDRsSNU30R2be1B2MGyIrZTHN81Hdyhdyox5C315eXbyOD/5YDXC2Og/zOh
+D7osFRXql7PSorW+8oyWHhqPHWykYTe5hnMz15eWniN9gqRMgeKh0bpnX5UHoycR7hYQe7xFSkyy
+BNKr79X9DFHOUGoIMfmR2gyPZFwDwzqLID9ujWc9Otb+fVuIyV77zGHcizN300QyNQliBJIWENie
+J0f7OyHj+OsdWwIDAQABo4GwMIGtMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1Ud
+DgQWBBQahGK8SEwzJQTU7tD2A8QZRtGUazBuBgNVHSMEZzBlgBQahGK8SEwzJQTU7tD2A8QZRtGU
+a6FJpEcwRTELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMT
+ElF1b1ZhZGlzIFJvb3QgQ0EgMoICBQkwDQYJKoZIhvcNAQEFBQADggIBAD4KFk2fBluornFdLwUv
+Z+YTRYPENvbzwCYMDbVHZF34tHLJRqUDGCdViXh9duqWNIAXINzng/iN/Ae42l9NLmeyhP3ZRPx3
+UIHmfLTJDQtyU/h2BwdBR5YM++CCJpNVjP4iH2BlfF/nJrP3MpCYUNQ3cVX2kiF495V5+vgtJodm
+VjB3pjd4M1IQWK4/YY7yarHvGH5KWWPKjaJW1acvvFYfzznB4vsKqBUsfU16Y8Zsl0Q80m/DShcK
++JDSV6IZUaUtl0HaB0+pUNqQjZRG4T7wlP0QADj1O+hA4bRuVhogzG9Yje0uRY/W6ZM/57Es3zrW
+IozchLsib9D45MY56QSIPMO661V6bYCZJPVsAfv4l7CUW+v90m/xd2gNNWQjrLhVoQPRTUIZ3Ph1
+WVaj+ahJefivDrkRoHy3au000LYmYjgahwz46P0u05B/B5EqHdZ+XIWDmbA4CD/pXvk1B+TJYm5X
+f6dQlfe6yJvmjqIBxdZmv3lh8zwc4bmCXF2gw+nYSL0ZohEUGW6yhhtoPkg3Goi3XZZenMfvJ2II
+4pEZXNLxId26F0KCl3GBUzGpn/Z9Yr9y4aOTHcyKJloJONDO1w2AFrR4pTqHTI2KpdVGl/IsELm8
+VCLAAVBpQ570su9t+Oza8eOx79+Rj1QqCyXBJhnEUhAFZdWCEOrCMc0u
+-----END CERTIFICATE-----
+
+QuoVadis Root CA 3
+==================
+-----BEGIN CERTIFICATE-----
+MIIGnTCCBIWgAwIBAgICBcYwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0xGTAXBgNVBAoT
+EFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJvb3QgQ0EgMzAeFw0wNjExMjQx
+OTExMjNaFw0zMTExMjQxOTA2NDRaMEUxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM
+aW1pdGVkMRswGQYDVQQDExJRdW9WYWRpcyBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4IC
+DwAwggIKAoICAQDMV0IWVJzmmNPTTe7+7cefQzlKZbPoFog02w1ZkXTPkrgEQK0CSzGrvI2RaNgg
+DhoB4hp7Thdd4oq3P5kazethq8Jlph+3t723j/z9cI8LoGe+AaJZz3HmDyl2/7FWeUUrH556VOij
+KTVopAFPD6QuN+8bv+OPEKhyq1hX51SGyMnzW9os2l2ObjyjPtr7guXd8lyyBTNvijbO0BNO/79K
+DDRMpsMhvVAEVeuxu537RR5kFd5VAYwCdrXLoT9CabwvvWhDFlaJKjdhkf2mrk7AyxRllDdLkgbv
+BNDInIjbC3uBr7E9KsRlOni27tyAsdLTmZw67mtaa7ONt9XOnMK+pUsvFrGeaDsGb659n/je7Mwp
+p5ijJUMv7/FfJuGITfhebtfZFG4ZM2mnO4SJk8RTVROhUXhA+LjJou57ulJCg54U7QVSWllWp5f8
+nT8KKdjcT5EOE7zelaTfi5m+rJsziO+1ga8bxiJTyPbH7pcUsMV8eFLI8M5ud2CEpukqdiDtWAEX
+MJPpGovgc2PZapKUSU60rUqFxKMiMPwJ7Wgic6aIDFUhWMXhOp8q3crhkODZc6tsgLjoC2SToJyM
+Gf+z0gzskSaHirOi4XCPLArlzW1oUevaPwV/izLmE1xr/l9A4iLItLRkT9a6fUg+qGkM17uGcclz
+uD87nSVL2v9A6wIDAQABo4IBlTCCAZEwDwYDVR0TAQH/BAUwAwEB/zCB4QYDVR0gBIHZMIHWMIHT
+BgkrBgEEAb5YAAMwgcUwgZMGCCsGAQUFBwICMIGGGoGDQW55IHVzZSBvZiB0aGlzIENlcnRpZmlj
+YXRlIGNvbnN0aXR1dGVzIGFjY2VwdGFuY2Ugb2YgdGhlIFF1b1ZhZGlzIFJvb3QgQ0EgMyBDZXJ0
+aWZpY2F0ZSBQb2xpY3kgLyBDZXJ0aWZpY2F0aW9uIFByYWN0aWNlIFN0YXRlbWVudC4wLQYIKwYB
+BQUHAgEWIWh0dHA6Ly93d3cucXVvdmFkaXNnbG9iYWwuY29tL2NwczALBgNVHQ8EBAMCAQYwHQYD
+VR0OBBYEFPLAE+CCQz777i9nMpY1XNu4ywLQMG4GA1UdIwRnMGWAFPLAE+CCQz777i9nMpY1XNu4
+ywLQoUmkRzBFMQswCQYDVQQGEwJCTTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDEbMBkGA1UE
+AxMSUXVvVmFkaXMgUm9vdCBDQSAzggIFxjANBgkqhkiG9w0BAQUFAAOCAgEAT62gLEz6wPJv92ZV
+qyM07ucp2sNbtrCD2dDQ4iH782CnO11gUyeim/YIIirnv6By5ZwkajGxkHon24QRiSemd1o417+s
+hvzuXYO8BsbRd2sPbSQvS3pspweWyuOEn62Iix2rFo1bZhfZFvSLgNLd+LJ2w/w4E6oM3kJpK27z
+POuAJ9v1pkQNn1pVWQvVDVJIxa6f8i+AxeoyUDUSly7B4f/xI4hROJ/yZlZ25w9Rl6VSDE1JUZU2
+Pb+iSwwQHYaZTKrzchGT5Or2m9qoXadNt54CrnMAyNojA+j56hl0YgCUyyIgvpSnWbWCar6ZeXqp
+8kokUvd0/bpO5qgdAm6xDYBEwa7TIzdfu4V8K5Iu6H6li92Z4b8nby1dqnuH/grdS/yO9SbkbnBC
+bjPsMZ57k8HkyWkaPcBrTiJt7qtYTcbQQcEr6k8Sh17rRdhs9ZgC06DYVYoGmRmioHfRMJ6szHXu
+g/WwYjnPbFfiTNKRCw51KBuav/0aQ/HKd/s7j2G4aSgWQgRecCocIdiP4b0jWy10QJLZYxkNc91p
+vGJHvOB0K7Lrfb5BG7XARsWhIstfTsEokt4YutUqKLsRixeTmJlglFwjz1onl14LBQaTNx47aTbr
+qZ5hHY8y2o4M1nQ+ewkk2gF3R8Q7zTSMmfXK4SVhM7JZG+Ju1zdXtg2pEto=
+-----END CERTIFICATE-----
+
+Security Communication Root CA
+==============================
+-----BEGIN CERTIFICATE-----
+MIIDWjCCAkKgAwIBAgIBADANBgkqhkiG9w0BAQUFADBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMP
+U0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEw
+HhcNMDMwOTMwMDQyMDQ5WhcNMjMwOTMwMDQyMDQ5WjBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMP
+U0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEw
+ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCzs/5/022x7xZ8V6UMbXaKL0u/ZPtM7orw
+8yl89f/uKuDp6bpbZCKamm8sOiZpUQWZJtzVHGpxxpp9Hp3dfGzGjGdnSj74cbAZJ6kJDKaVv0uM
+DPpVmDvY6CKhS3E4eayXkmmziX7qIWgGmBSWh9JhNrxtJ1aeV+7AwFb9Ms+k2Y7CI9eNqPPYJayX
+5HA49LY6tJ07lyZDo6G8SVlyTCMwhwFY9k6+HGhWZq/NQV3Is00qVUarH9oe4kA92819uZKAnDfd
+DJZkndwi92SL32HeFZRSFaB9UslLqCHJxrHty8OVYNEP8Ktw+N/LTX7s1vqr2b1/VPKl6Xn62dZ2
+JChzAgMBAAGjPzA9MB0GA1UdDgQWBBSgc0mZaNyFW2XjmygvV5+9M7wHSDALBgNVHQ8EBAMCAQYw
+DwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAaECpqLvkT115swW1F7NgE+vGkl3g
+0dNq/vu+m22/xwVtWSDEHPC32oRYAmP6SBbvT6UL90qY8j+eG61Ha2POCEfrUj94nK9NrvjVT8+a
+mCoQQTlSxN3Zmw7vkwGusi7KaEIkQmywszo+zenaSMQVy+n5Bw+SUEmK3TGXX8npN6o7WWWXlDLJ
+s58+OmJYxUmtYg5xpTKqL8aJdkNAExNnPaJUJRDL8Try2frbSVa7pv6nQTXD4IhhyYjH3zYQIphZ
+6rBK+1YWc26sTfcioU+tHXotRSflMMFe8toTyyVCUZVHA4xsIcx0Qu1T/zOLjw9XARYvz6buyXAi
+FL39vmwLAw==
+-----END CERTIFICATE-----
+
+Sonera Class 2 Root CA
+======================
+-----BEGIN CERTIFICATE-----
+MIIDIDCCAgigAwIBAgIBHTANBgkqhkiG9w0BAQUFADA5MQswCQYDVQQGEwJGSTEPMA0GA1UEChMG
+U29uZXJhMRkwFwYDVQQDExBTb25lcmEgQ2xhc3MyIENBMB4XDTAxMDQwNjA3Mjk0MFoXDTIxMDQw
+NjA3Mjk0MFowOTELMAkGA1UEBhMCRkkxDzANBgNVBAoTBlNvbmVyYTEZMBcGA1UEAxMQU29uZXJh
+IENsYXNzMiBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJAXSjWdyvANlsdE+hY3
+/Ei9vX+ALTU74W+oZ6m/AxxNjG8yR9VBaKQTBME1DJqEQ/xcHf+Js+gXGM2RX/uJ4+q/Tl18GybT
+dXnt5oTjV+WtKcT0OijnpXuENmmz/V52vaMtmdOQTiMofRhj8VQ7Jp12W5dCsv+u8E7s3TmVToMG
+f+dJQMjFAbJUWmYdPfz56TwKnoG4cPABi+QjVHzIrviQHgCWctRUz2EjvOr7nQKV0ba5cTppCD8P
+tOFCx4j1P5iop7oc4HFx71hXgVB6XGt0Rg6DA5jDjqhu8nYybieDwnPz3BjotJPqdURrBGAgcVeH
+nfO+oJAjPYok4doh28MCAwEAAaMzMDEwDwYDVR0TAQH/BAUwAwEB/zARBgNVHQ4ECgQISqCqWITT
+XjwwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBQUAA4IBAQBazof5FnIVV0sd2ZvnoiYw7JNn39Yt
+0jSv9zilzqsWuasvfDXLrNAPtEwr/IDva4yRXzZ299uzGxnq9LIR/WFxRL8oszodv7ND6J+/3DEI
+cbCdjdY0RzKQxmUk96BKfARzjzlvF4xytb1LyHr4e4PDKE6cCepnP7JnBBvDFNr450kkkdAdavph
+Oe9r5yF1BgfYErQhIHBCcYHaPJo2vqZbDWpsmh+Re/n570K6Tk6ezAyNlNzZRZxe7EJQY670XcSx
+EtzKO6gunRRaBXW37Ndj4ro1tgQIkejanZz2ZrUYrAqmVCY0M9IbwdR/GjqOC6oybtv8TyWf2TLH
+llpwrN9M
+-----END CERTIFICATE-----
+
+XRamp Global CA Root
+====================
+-----BEGIN CERTIFICATE-----
+MIIEMDCCAxigAwIBAgIQUJRs7Bjq1ZxN1ZfvdY+grTANBgkqhkiG9w0BAQUFADCBgjELMAkGA1UE
+BhMCVVMxHjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2Vj
+dXJpdHkgU2VydmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBB
+dXRob3JpdHkwHhcNMDQxMTAxMTcxNDA0WhcNMzUwMTAxMDUzNzE5WjCBgjELMAkGA1UEBhMCVVMx
+HjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2VjdXJpdHkg
+U2VydmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBBdXRob3Jp
+dHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCYJB69FbS638eMpSe2OAtp87ZOqCwu
+IR1cRN8hXX4jdP5efrRKt6atH67gBhbim1vZZ3RrXYCPKZ2GG9mcDZhtdhAoWORlsH9KmHmf4MMx
+foArtYzAQDsRhtDLooY2YKTVMIJt2W7QDxIEM5dfT2Fa8OT5kavnHTu86M/0ay00fOJIYRyO82FE
+zG+gSqmUsE3a56k0enI4qEHMPJQRfevIpoy3hsvKMzvZPTeL+3o+hiznc9cKV6xkmxnr9A8ECIqs
+AxcZZPRaJSKNNCyy9mgdEm3Tih4U2sSPpuIjhdV6Db1q4Ons7Be7QhtnqiXtRYMh/MHJfNViPvry
+xS3T/dRlAgMBAAGjgZ8wgZwwEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1Ud
+EwEB/wQFMAMBAf8wHQYDVR0OBBYEFMZPoj0GY4QJnM5i5ASsjVy16bYbMDYGA1UdHwQvMC0wK6Ap
+oCeGJWh0dHA6Ly9jcmwueHJhbXBzZWN1cml0eS5jb20vWEdDQS5jcmwwEAYJKwYBBAGCNxUBBAMC
+AQEwDQYJKoZIhvcNAQEFBQADggEBAJEVOQMBG2f7Shz5CmBbodpNl2L5JFMn14JkTpAuw0kbK5rc
+/Kh4ZzXxHfARvbdI4xD2Dd8/0sm2qlWkSLoC295ZLhVbO50WfUfXN+pfTXYSNrsf16GBBEYgoyxt
+qZ4Bfj8pzgCT3/3JknOJiWSe5yvkHJEs0rnOfc5vMZnT5r7SHpDwCRR5XCOrTdLaIR9NmXmd4c8n
+nxCbHIgNsIpkQTG4DmyQJKSbXHGPurt+HBvbaoAPIbzp26a3QPSyi6mx5O+aGtA9aZnuqCij4Tyz
+8LIRnM98QObd50N9otg6tamN8jSZxNQQ4Qb9CYQQO+7ETPTsJ3xCwnR8gooJybQDJbw=
+-----END CERTIFICATE-----
+
+Go Daddy Class 2 CA
+===================
+-----BEGIN CERTIFICATE-----
+MIIEADCCAuigAwIBAgIBADANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMY
+VGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRp
+ZmljYXRpb24gQXV0aG9yaXR5MB4XDTA0MDYyOTE3MDYyMFoXDTM0MDYyOTE3MDYyMFowYzELMAkG
+A1UEBhMCVVMxITAfBgNVBAoTGFRoZSBHbyBEYWRkeSBHcm91cCwgSW5jLjExMC8GA1UECxMoR28g
+RGFkZHkgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASAwDQYJKoZIhvcNAQEBBQAD
+ggENADCCAQgCggEBAN6d1+pXGEmhW+vXX0iG6r7d/+TvZxz0ZWizV3GgXne77ZtJ6XCAPVYYYwhv
+2vLM0D9/AlQiVBDYsoHUwHU9S3/Hd8M+eKsaA7Ugay9qK7HFiH7Eux6wwdhFJ2+qN1j3hybX2C32
+qRe3H3I2TqYXP2WYktsqbl2i/ojgC95/5Y0V4evLOtXiEqITLdiOr18SPaAIBQi2XKVlOARFmR6j
+YGB0xUGlcmIbYsUfb18aQr4CUWWoriMYavx4A6lNf4DD+qta/KFApMoZFv6yyO9ecw3ud72a9nmY
+vLEHZ6IVDd2gWMZEewo+YihfukEHU1jPEX44dMX4/7VpkI+EdOqXG68CAQOjgcAwgb0wHQYDVR0O
+BBYEFNLEsNKR1EwRcbNhyz2h/t2oatTjMIGNBgNVHSMEgYUwgYKAFNLEsNKR1EwRcbNhyz2h/t2o
+atTjoWekZTBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMu
+MTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwG
+A1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBADJL87LKPpH8EsahB4yOd6AzBhRckB4Y9wim
+PQoZ+YeAEW5p5JYXMP80kWNyOO7MHAGjHZQopDH2esRU1/blMVgDoszOYtuURXO1v0XJJLXVggKt
+I3lpjbi2Tc7PTMozI+gciKqdi0FuFskg5YmezTvacPd+mSYgFFQlq25zheabIZ0KbIIOqPjCDPoQ
+HmyW74cNxA9hi63ugyuV+I6ShHI56yDqg+2DzZduCLzrTia2cyvk0/ZM/iZx4mERdEr/VxqHD3VI
+Ls9RaRegAhJhldXRQLIQTO7ErBBDpqWeCtWVYpoNz4iCxTIM5CufReYNnyicsbkqWletNw+vHX/b
+vZ8=
+-----END CERTIFICATE-----
+
+Starfield Class 2 CA
+====================
+-----BEGIN CERTIFICATE-----
+MIIEDzCCAvegAwIBAgIBADANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJVUzElMCMGA1UEChMc
+U3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMpU3RhcmZpZWxkIENsYXNzIDIg
+Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQwNjI5MTczOTE2WhcNMzQwNjI5MTczOTE2WjBo
+MQswCQYDVQQGEwJVUzElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAG
+A1UECxMpU3RhcmZpZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEgMA0GCSqG
+SIb3DQEBAQUAA4IBDQAwggEIAoIBAQC3Msj+6XGmBIWtDBFk385N78gDGIc/oav7PKaf8MOh2tTY
+bitTkPskpD6E8J7oX+zlJ0T1KKY/e97gKvDIr1MvnsoFAZMej2YcOadN+lq2cwQlZut3f+dZxkqZ
+JRRU6ybH838Z1TBwj6+wRir/resp7defqgSHo9T5iaU0X9tDkYI22WY8sbi5gv2cOj4QyDvvBmVm
+epsZGD3/cVE8MC5fvj13c7JdBmzDI1aaK4UmkhynArPkPw2vCHmCuDY96pzTNbO8acr1zJ3o/WSN
+F4Azbl5KXZnJHoe0nRrA1W4TNSNe35tfPe/W93bC6j67eA0cQmdrBNj41tpvi/JEoAGrAgEDo4HF
+MIHCMB0GA1UdDgQWBBS/X7fRzt0fhvRbVazc1xDCDqmI5zCBkgYDVR0jBIGKMIGHgBS/X7fRzt0f
+hvRbVazc1xDCDqmI56FspGowaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNo
+bm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBDbGFzcyAyIENlcnRpZmljYXRpb24g
+QXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAAWdP4id0ckaVaGs
+afPzWdqbAYcaT1epoXkJKtv3L7IezMdeatiDh6GX70k1PncGQVhiv45YuApnP+yz3SFmH8lU+nLM
+PUxA2IGvd56Deruix/U0F47ZEUD0/CwqTRV/p2JdLiXTAAsgGh1o+Re49L2L7ShZ3U0WixeDyLJl
+xy16paq8U4Zt3VekyvggQQto8PT7dL5WXXp59fkdheMtlb71cZBDzI0fmgAKhynpVSJYACPq4xJD
+KVtHCN2MQWplBqjlIapBtJUhlbl90TSrE9atvNziPTnNvT51cKEYWQPJIrSPnNVeKtelttQKbfi3
+QBFGmh95DmK/D5fs4C8fF5Q=
+-----END CERTIFICATE-----
+
+DigiCert Assured ID Root CA
+===========================
+-----BEGIN CERTIFICATE-----
+MIIDtzCCAp+gAwIBAgIQDOfg5RfYRv6P5WD8G/AwOTANBgkqhkiG9w0BAQUFADBlMQswCQYDVQQG
+EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQw
+IgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwHhcNMDYxMTEwMDAwMDAwWhcNMzEx
+MTEwMDAwMDAwWjBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQL
+ExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0Ew
+ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtDhXO5EOAXLGH87dg+XESpa7cJpSIqvTO
+9SA5KFhgDPiA2qkVlTJhPLWxKISKityfCgyDF3qPkKyK53lTXDGEKvYPmDI2dsze3Tyoou9q+yHy
+UmHfnyDXH+Kx2f4YZNISW1/5WBg1vEfNoTb5a3/UsDg+wRvDjDPZ2C8Y/igPs6eD1sNuRMBhNZYW
+/lmci3Zt1/GiSw0r/wty2p5g0I6QNcZ4VYcgoc/lbQrISXwxmDNsIumH0DJaoroTghHtORedmTpy
+oeb6pNnVFzF1roV9Iq4/AUaG9ih5yLHa5FcXxH4cDrC0kqZWs72yl+2qp/C3xag/lRbQ/6GW6whf
+GHdPAgMBAAGjYzBhMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRF
+66Kv9JLLgjEtUYunpyGd823IDzAfBgNVHSMEGDAWgBRF66Kv9JLLgjEtUYunpyGd823IDzANBgkq
+hkiG9w0BAQUFAAOCAQEAog683+Lt8ONyc3pklL/3cmbYMuRCdWKuh+vy1dneVrOfzM4UKLkNl2Bc
+EkxY5NM9g0lFWJc1aRqoR+pWxnmrEthngYTffwk8lOa4JiwgvT2zKIn3X/8i4peEH+ll74fg38Fn
+SbNd67IJKusm7Xi+fT8r87cmNW1fiQG2SVufAQWbqz0lwcy2f8Lxb4bG+mRo64EtlOtCt/qMHt1i
+8b5QZ7dsvfPxH2sMNgcWfzd8qVttevESRmCD1ycEvkvOl77DZypoEd+A5wwzZr8TDRRu838fYxAe
++o0bJW1sj6W3YQGx0qMmoRBxna3iw/nDmVG3KwcIzi7mULKn+gpFL6Lw8g==
+-----END CERTIFICATE-----
+
+DigiCert Global Root CA
+=======================
+-----BEGIN CERTIFICATE-----
+MIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBhMQswCQYDVQQG
+EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw
+HgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAw
+MDAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3
+dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkq
+hkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsBCSDMAZOn
+TjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97nh6Vfe63SKMI2tavegw5
+BmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt43C/dxC//AH2hdmoRBBYMql1GNXRor5H
+4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7PT19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y
+7vrTC0LUq7dBMtoM1O/4gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQAB
+o2MwYTAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbRTLtm
+8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUwDQYJKoZIhvcNAQEF
+BQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/EsrhMAtudXH/vTBH1jLuG2cenTnmCmr
+EbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIt
+tep3Sp+dWOIrWcBAI+0tKIJFPnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886
+UAb3LujEV0lsYSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk
+CAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4=
+-----END CERTIFICATE-----
+
+DigiCert High Assurance EV Root CA
+==================================
+-----BEGIN CERTIFICATE-----
+MIIDxTCCAq2gAwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBsMQswCQYDVQQG
+EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSsw
+KQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTA2MTExMDAwMDAw
+MFoXDTMxMTExMDAwMDAwMFowbDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZ
+MBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFu
+Y2UgRVYgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm+9S75S0t
+Mqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTWPNt0OKRKzE0lgvdKpVMS
+OO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEMxChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3
+MRuNs8ckRZqnrG0AFFoEt7oT61EKmEFBIk5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQ
+NAQTXKFx01p8VdteZOE3hzBWBOURtCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUe
+h10aUAsgEsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMB
+Af8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaAFLE+w2kD+L9HAdSY
+JhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3NecnzyIZgYIVyHbIUf4KmeqvxgydkAQ
+V8GK83rZEWWONfqe/EW1ntlMMUu4kehDLI6zeM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFp
+myPInngiK3BD41VHMWEZ71jFhS9OMPagMRYjyOfiZRYzy78aG6A9+MpeizGLYAiJLQwGXFK3xPkK
+mNEVX58Svnw2Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZdkGCe
+vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep+OkuE6N36B9K
+-----END CERTIFICATE-----
+
+DST Root CA X3
+==============
+-----BEGIN CERTIFICATE-----
+MIIDSjCCAjKgAwIBAgIQRK+wgNajJ7qJMDmGLvhAazANBgkqhkiG9w0BAQUFADA/MSQwIgYDVQQK
+ExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4xFzAVBgNVBAMTDkRTVCBSb290IENBIFgzMB4X
+DTAwMDkzMDIxMTIxOVoXDTIxMDkzMDE0MDExNVowPzEkMCIGA1UEChMbRGlnaXRhbCBTaWduYXR1
+cmUgVHJ1c3QgQ28uMRcwFQYDVQQDEw5EU1QgUm9vdCBDQSBYMzCCASIwDQYJKoZIhvcNAQEBBQAD
+ggEPADCCAQoCggEBAN+v6ZdQCINXtMxiZfaQguzH0yxrMMpb7NnDfcdAwRgUi+DoM3ZJKuM/IUmT
+rE4Orz5Iy2Xu/NMhD2XSKtkyj4zl93ewEnu1lcCJo6m67XMuegwGMoOifooUMM0RoOEqOLl5CjH9
+UL2AZd+3UWODyOKIYepLYYHsUmu5ouJLGiifSKOeDNoJjj4XLh7dIN9bxiqKqy69cK3FCxolkHRy
+xXtqqzTWMIn/5WgTe1QLyNau7Fqckh49ZLOMxt+/yUFw7BZy1SbsOFU5Q9D8/RhcQPGX69Wam40d
+utolucbY38EVAjqr2m7xPi71XAicPNaDaeQQmxkqtilX4+U9m5/wAl0CAwEAAaNCMEAwDwYDVR0T
+AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFMSnsaR7LHH62+FLkHX/xBVghYkQ
+MA0GCSqGSIb3DQEBBQUAA4IBAQCjGiybFwBcqR7uKGY3Or+Dxz9LwwmglSBd49lZRNI+DT69ikug
+dB/OEIKcdBodfpga3csTS7MgROSR6cz8faXbauX+5v3gTt23ADq1cEmv8uXrAvHRAosZy5Q6XkjE
+GB5YGV8eAlrwDPGxrancWYaLbumR9YbK+rlmM6pZW87ipxZzR8srzJmwN0jP41ZL9c8PDHIyh8bw
+RLtTcm1D9SZImlJnt1ir/md2cXjbDaJWFBM5JDGFoqgCWjBH4d1QB7wCCZAA62RjYJsWvIjJEubS
+fZGL+T0yjWW06XyxV3bqxbYoOb8VZRzI9neWagqNdwvYkQsEjgfbKbYK7p2CNTUQ
+-----END CERTIFICATE-----
+
+SwissSign Gold CA - G2
+======================
+-----BEGIN CERTIFICATE-----
+MIIFujCCA6KgAwIBAgIJALtAHEP1Xk+wMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkNIMRUw
+EwYDVQQKEwxTd2lzc1NpZ24gQUcxHzAdBgNVBAMTFlN3aXNzU2lnbiBHb2xkIENBIC0gRzIwHhcN
+MDYxMDI1MDgzMDM1WhcNMzYxMDI1MDgzMDM1WjBFMQswCQYDVQQGEwJDSDEVMBMGA1UEChMMU3dp
+c3NTaWduIEFHMR8wHQYDVQQDExZTd2lzc1NpZ24gR29sZCBDQSAtIEcyMIICIjANBgkqhkiG9w0B
+AQEFAAOCAg8AMIICCgKCAgEAr+TufoskDhJuqVAtFkQ7kpJcyrhdhJJCEyq8ZVeCQD5XJM1QiyUq
+t2/876LQwB8CJEoTlo8jE+YoWACjR8cGp4QjK7u9lit/VcyLwVcfDmJlD909Vopz2q5+bbqBHH5C
+jCA12UNNhPqE21Is8w4ndwtrvxEvcnifLtg+5hg3Wipy+dpikJKVyh+c6bM8K8vzARO/Ws/BtQpg
+vd21mWRTuKCWs2/iJneRjOBiEAKfNA+k1ZIzUd6+jbqEemA8atufK+ze3gE/bk3lUIbLtK/tREDF
+ylqM2tIrfKjuvqblCqoOpd8FUrdVxyJdMmqXl2MT28nbeTZ7hTpKxVKJ+STnnXepgv9VHKVxaSvR
+AiTysybUa9oEVeXBCsdtMDeQKuSeFDNeFhdVxVu1yzSJkvGdJo+hB9TGsnhQ2wwMC3wLjEHXuend
+jIj3o02yMszYF9rNt85mndT9Xv+9lz4pded+p2JYryU0pUHHPbwNUMoDAw8IWh+Vc3hiv69yFGkO
+peUDDniOJihC8AcLYiAQZzlG+qkDzAQ4embvIIO1jEpWjpEA/I5cgt6IoMPiaG59je883WX0XaxR
+7ySArqpWl2/5rX3aYT+YdzylkbYcjCbaZaIJbcHiVOO5ykxMgI93e2CaHt+28kgeDrpOVG2Y4OGi
+GqJ3UM/EY5LsRxmd6+ZrzsECAwEAAaOBrDCBqTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUw
+AwEB/zAdBgNVHQ4EFgQUWyV7lqRlUX64OfPAeGZe6Drn8O4wHwYDVR0jBBgwFoAUWyV7lqRlUX64
+OfPAeGZe6Drn8O4wRgYDVR0gBD8wPTA7BglghXQBWQECAQEwLjAsBggrBgEFBQcCARYgaHR0cDov
+L3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIBACe645R88a7A3hfm
+5djV9VSwg/S7zV4Fe0+fdWavPOhWfvxyeDgD2StiGwC5+OlgzczOUYrHUDFu4Up+GC9pWbY9ZIEr
+44OE5iKHjn3g7gKZYbge9LgriBIWhMIxkziWMaa5O1M/wySTVltpkuzFwbs4AOPsF6m43Md8AYOf
+Mke6UiI0HTJ6CVanfCU2qT1L2sCCbwq7EsiHSycR+R4tx5M/nttfJmtS2S6K8RTGRI0Vqbe/vd6m
+Gu6uLftIdxf+u+yvGPUqUfA5hJeVbG4bwyvEdGB5JbAKJ9/fXtI5z0V9QkvfsywexcZdylU6oJxp
+mo/a77KwPJ+HbBIrZXAVUjEaJM9vMSNQH4xPjyPDdEFjHFWoFN0+4FFQz/EbMFYOkrCChdiDyyJk
+vC24JdVUorgG6q2SpCSgwYa1ShNqR88uC1aVVMvOmttqtKay20EIhid392qgQmwLOM7XdVAyksLf
+KzAiSNDVQTglXaTpXZ/GlHXQRf0wl0OPkKsKx4ZzYEppLd6leNcG2mqeSz53OiATIgHQv2ieY2Br
+NU0LbbqhPcCT4H8js1WtciVORvnSFu+wZMEBnunKoGqYDs/YYPIvSbjkQuE4NRb0yG5P94FW6Lqj
+viOvrv1vA+ACOzB2+httQc8Bsem4yWb02ybzOqR08kkkW8mw0FfB+j564ZfJ
+-----END CERTIFICATE-----
+
+SwissSign Silver CA - G2
+========================
+-----BEGIN CERTIFICATE-----
+MIIFvTCCA6WgAwIBAgIITxvUL1S7L0swDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UEBhMCQ0gxFTAT
+BgNVBAoTDFN3aXNzU2lnbiBBRzEhMB8GA1UEAxMYU3dpc3NTaWduIFNpbHZlciBDQSAtIEcyMB4X
+DTA2MTAyNTA4MzI0NloXDTM2MTAyNTA4MzI0NlowRzELMAkGA1UEBhMCQ0gxFTATBgNVBAoTDFN3
+aXNzU2lnbiBBRzEhMB8GA1UEAxMYU3dpc3NTaWduIFNpbHZlciBDQSAtIEcyMIICIjANBgkqhkiG
+9w0BAQEFAAOCAg8AMIICCgKCAgEAxPGHf9N4Mfc4yfjDmUO8x/e8N+dOcbpLj6VzHVxumK4DV644
+N0MvFz0fyM5oEMF4rhkDKxD6LHmD9ui5aLlV8gREpzn5/ASLHvGiTSf5YXu6t+WiE7brYT7QbNHm
++/pe7R20nqA1W6GSy/BJkv6FCgU+5tkL4k+73JU3/JHpMjUi0R86TieFnbAVlDLaYQ1HTWBCrpJH
+6INaUFjpiou5XaHc3ZlKHzZnu0jkg7Y360g6rw9njxcH6ATK72oxh9TAtvmUcXtnZLi2kUpCe2Uu
+MGoM9ZDulebyzYLs2aFK7PayS+VFheZteJMELpyCbTapxDFkH4aDCyr0NQp4yVXPQbBH6TCfmb5h
+qAaEuSh6XzjZG6k4sIN/c8HDO0gqgg8hm7jMqDXDhBuDsz6+pJVpATqJAHgE2cn0mRmrVn5bi4Y5
+FZGkECwJMoBgs5PAKrYYC51+jUnyEEp/+dVGLxmSo5mnJqy7jDzmDrxHB9xzUfFwZC8I+bRHHTBs
+ROopN4WSaGa8gzj+ezku01DwH/teYLappvonQfGbGHLy9YR0SslnxFSuSGTfjNFusB3hB48IHpmc
+celM2KX3RxIfdNFRnobzwqIjQAtz20um53MGjMGg6cFZrEb65i/4z3GcRm25xBWNOHkDRUjvxF3X
+CO6HOSKGsg0PWEP3calILv3q1h8CAwEAAaOBrDCBqTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/
+BAUwAwEB/zAdBgNVHQ4EFgQUF6DNweRBtjpbO8tFnb0cwpj6hlgwHwYDVR0jBBgwFoAUF6DNweRB
+tjpbO8tFnb0cwpj6hlgwRgYDVR0gBD8wPTA7BglghXQBWQEDAQEwLjAsBggrBgEFBQcCARYgaHR0
+cDovL3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIBAHPGgeAn0i0P
+4JUw4ppBf1AsX19iYamGamkYDHRJ1l2E6kFSGG9YrVBWIGrGvShpWJHckRE1qTodvBqlYJ7YH39F
+kWnZfrt4csEGDyrOj4VwYaygzQu4OSlWhDJOhrs9xCrZ1x9y7v5RoSJBsXECYxqCsGKrXlcSH9/L
+3XWgwF15kIwb4FDm3jH+mHtwX6WQ2K34ArZv02DdQEsixT2tOnqfGhpHkXkzuoLcMmkDlm4fS/Bx
+/uNncqCxv1yL5PqZIseEuRuNI5c/7SXgz2W79WEE790eslpBIlqhn10s6FvJbakMDHiqYMZWjwFa
+DGi8aRl5xB9+lwW/xekkUV7U1UtT7dkjWjYDZaPBA61BMPNGG4WQr2W11bHkFlt4dR2Xem1ZqSqP
+e97Dh4kQmUlzeMg9vVE1dCrV8X5pGyq7O70luJpaPXJhkGaH7gzWTdQRdAtq/gsD/KNVV4n+Ssuu
+WxcFyPKNIzFTONItaj+CuY0IavdeQXRuwxF+B6wpYJE/OMpXEA29MC/HpeZBoNquBYeaoKRlbEwJ
+DIm6uNO5wJOKMPqN5ZprFQFOZ6raYlY+hAhm0sQ2fac+EPyI4NSA5QC9qvNOBqN6avlicuMJT+ub
+DgEj8Z+7fNzcbBGXJbLytGMU0gYqZ4yD9c7qB9iaah7s5Aq7KkzrCWA5zspi2C5u
+-----END CERTIFICATE-----
+
+SecureTrust CA
+==============
+-----BEGIN CERTIFICATE-----
+MIIDuDCCAqCgAwIBAgIQDPCOXAgWpa1Cf/DrJxhZ0DANBgkqhkiG9w0BAQUFADBIMQswCQYDVQQG
+EwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24xFzAVBgNVBAMTDlNlY3VyZVRy
+dXN0IENBMB4XDTA2MTEwNzE5MzExOFoXDTI5MTIzMTE5NDA1NVowSDELMAkGA1UEBhMCVVMxIDAe
+BgNVBAoTF1NlY3VyZVRydXN0IENvcnBvcmF0aW9uMRcwFQYDVQQDEw5TZWN1cmVUcnVzdCBDQTCC
+ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKukgeWVzfX2FI7CT8rU4niVWJxB4Q2ZQCQX
+OZEzZum+4YOvYlyJ0fwkW2Gz4BERQRwdbvC4u/jep4G6pkjGnx29vo6pQT64lO0pGtSO0gMdA+9t
+DWccV9cGrcrI9f4Or2YlSASWC12juhbDCE/RRvgUXPLIXgGZbf2IzIaowW8xQmxSPmjL8xk037uH
+GFaAJsTQ3MBv396gwpEWoGQRS0S8Hvbn+mPeZqx2pHGj7DaUaHp3pLHnDi+BeuK1cobvomuL8A/b
+01k/unK8RCSc43Oz969XL0Imnal0ugBS8kvNU3xHCzaFDmapCJcWNFfBZveA4+1wVMeT4C4oFVmH
+ursCAwEAAaOBnTCBmjATBgkrBgEEAYI3FAIEBh4EAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/
+BAUwAwEB/zAdBgNVHQ4EFgQUQjK2FvoE/f5dS3rD/fdMQB1aQ68wNAYDVR0fBC0wKzApoCegJYYj
+aHR0cDovL2NybC5zZWN1cmV0cnVzdC5jb20vU1RDQS5jcmwwEAYJKwYBBAGCNxUBBAMCAQAwDQYJ
+KoZIhvcNAQEFBQADggEBADDtT0rhWDpSclu1pqNlGKa7UTt36Z3q059c4EVlew3KW+JwULKUBRSu
+SceNQQcSc5R+DCMh/bwQf2AQWnL1mA6s7Ll/3XpvXdMc9P+IBWlCqQVxyLesJugutIxq/3HcuLHf
+mbx8IVQr5Fiiu1cprp6poxkmD5kuCLDv/WnPmRoJjeOnnyvJNjR7JLN4TJUXpAYmHrZkUjZfYGfZ
+nMUFdAvnZyPSCPyI6a6Lf+Ew9Dd+/cYy2i2eRDAwbO4H3tI0/NL/QPZL9GZGBlSm8jIKYyYwa5vR
+3ItHuuG51WLQoqD0ZwV4KWMabwTW+MZMo5qxN7SN5ShLHZ4swrhovO0C7jE=
+-----END CERTIFICATE-----
+
+Secure Global CA
+================
+-----BEGIN CERTIFICATE-----
+MIIDvDCCAqSgAwIBAgIQB1YipOjUiolN9BPI8PjqpTANBgkqhkiG9w0BAQUFADBKMQswCQYDVQQG
+EwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBH
+bG9iYWwgQ0EwHhcNMDYxMTA3MTk0MjI4WhcNMjkxMjMxMTk1MjA2WjBKMQswCQYDVQQGEwJVUzEg
+MB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwg
+Q0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvNS7YrGxVaQZx5RNoJLNP2MwhR/jx
+YDiJiQPpvepeRlMJ3Fz1Wuj3RSoC6zFh1ykzTM7HfAo3fg+6MpjhHZevj8fcyTiW89sa/FHtaMbQ
+bqR8JNGuQsiWUGMu4P51/pinX0kuleM5M2SOHqRfkNJnPLLZ/kG5VacJjnIFHovdRIWCQtBJwB1g
+8NEXLJXr9qXBkqPFwqcIYA1gBBCWeZ4WNOaptvolRTnIHmX5k/Wq8VLcmZg9pYYaDDUz+kulBAYV
+HDGA76oYa8J719rO+TMg1fW9ajMtgQT7sFzUnKPiXB3jqUJ1XnvUd+85VLrJChgbEplJL4hL/VBi
+0XPnj3pDAgMBAAGjgZ0wgZowEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1Ud
+EwEB/wQFMAMBAf8wHQYDVR0OBBYEFK9EBMJBfkiD2045AuzshHrmzsmkMDQGA1UdHwQtMCswKaAn
+oCWGI2h0dHA6Ly9jcmwuc2VjdXJldHJ1c3QuY29tL1NHQ0EuY3JsMBAGCSsGAQQBgjcVAQQDAgEA
+MA0GCSqGSIb3DQEBBQUAA4IBAQBjGghAfaReUw132HquHw0LURYD7xh8yOOvaliTFGCRsoTciE6+
+OYo68+aCiV0BN7OrJKQVDpI1WkpEXk5X+nXOH0jOZvQ8QCaSmGwb7iRGDBezUqXbpZGRzzfTb+cn
+CDpOGR86p1hcF895P4vkp9MmI50mD1hp/Ed+stCNi5O/KU9DaXR2Z0vPB4zmAve14bRDtUstFJ/5
+3CYNv6ZHdAbYiNE6KTCEztI5gGIbqMdXSbxqVVFnFUq+NQfk1XWYN3kwFNspnWzFacxHVaIw98xc
+f8LDmBxrThaA63p4ZUWiABqvDA1VZDRIuJK58bRQKfJPIx/abKwfROHdI3hRW8cW
+-----END CERTIFICATE-----
+
+COMODO Certification Authority
+==============================
+-----BEGIN CERTIFICATE-----
+MIIEHTCCAwWgAwIBAgIQToEtioJl4AsC7j41AkblPTANBgkqhkiG9w0BAQUFADCBgTELMAkGA1UE
+BhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgG
+A1UEChMRQ09NT0RPIENBIExpbWl0ZWQxJzAlBgNVBAMTHkNPTU9ETyBDZXJ0aWZpY2F0aW9uIEF1
+dGhvcml0eTAeFw0wNjEyMDEwMDAwMDBaFw0yOTEyMzEyMzU5NTlaMIGBMQswCQYDVQQGEwJHQjEb
+MBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFD
+T01PRE8gQ0EgTGltaXRlZDEnMCUGA1UEAxMeQ09NT0RPIENlcnRpZmljYXRpb24gQXV0aG9yaXR5
+MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ECLi3LjkRv3UcEbVASY06m/weaKXTuH
++7uIzg3jLz8GlvCiKVCZrts7oVewdFFxze1CkU1B/qnI2GqGd0S7WWaXUF601CxwRM/aN5VCaTww
+xHGzUvAhTaHYujl8HJ6jJJ3ygxaYqhZ8Q5sVW7euNJH+1GImGEaaP+vB+fGQV+useg2L23IwambV
+4EajcNxo2f8ESIl33rXp+2dtQem8Ob0y2WIC8bGoPW43nOIv4tOiJovGuFVDiOEjPqXSJDlqR6sA
+1KGzqSX+DT+nHbrTUcELpNqsOO9VUCQFZUaTNE8tja3G1CEZ0o7KBWFxB3NH5YoZEr0ETc5OnKVI
+rLsm9wIDAQABo4GOMIGLMB0GA1UdDgQWBBQLWOWLxkwVN6RAqTCpIb5HNlpW/zAOBgNVHQ8BAf8E
+BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zBJBgNVHR8EQjBAMD6gPKA6hjhodHRwOi8vY3JsLmNvbW9k
+b2NhLmNvbS9DT01PRE9DZXJ0aWZpY2F0aW9uQXV0aG9yaXR5LmNybDANBgkqhkiG9w0BAQUFAAOC
+AQEAPpiem/Yb6dc5t3iuHXIYSdOH5EOC6z/JqvWote9VfCFSZfnVDeFs9D6Mk3ORLgLETgdxb8CP
+OGEIqB6BCsAvIC9Bi5HcSEW88cbeunZrM8gALTFGTO3nnc+IlP8zwFboJIYmuNg4ON8qa90SzMc/
+RxdMosIGlgnW2/4/PEZB31jiVg88O8EckzXZOFKs7sjsLjBOlDW0JB9LeGna8gI4zJVSk/BwJVmc
+IGfE7vmLV2H0knZ9P4SNVbfo5azV8fUZVqZa+5Acr5Pr5RzUZ5ddBA6+C4OmF4O5MBKgxTMVBbkN
++8cFduPYSo38NBejxiEovjBFMR7HeL5YYTisO+IBZQ==
+-----END CERTIFICATE-----
+
+Network Solutions Certificate Authority
+=======================================
+-----BEGIN CERTIFICATE-----
+MIID5jCCAs6gAwIBAgIQV8szb8JcFuZHFhfjkDFo4DANBgkqhkiG9w0BAQUFADBiMQswCQYDVQQG
+EwJVUzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMuMTAwLgYDVQQDEydOZXR3b3Jr
+IFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcNMDYxMjAxMDAwMDAwWhcNMjkxMjMx
+MjM1OTU5WjBiMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMu
+MTAwLgYDVQQDEydOZXR3b3JrIFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwggEiMA0G
+CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDkvH6SMG3G2I4rC7xGzuAnlt7e+foS0zwzc7MEL7xx
+jOWftiJgPl9dzgn/ggwbmlFQGiaJ3dVhXRncEg8tCqJDXRfQNJIg6nPPOCwGJgl6cvf6UDL4wpPT
+aaIjzkGxzOTVHzbRijr4jGPiFFlp7Q3Tf2vouAPlT2rlmGNpSAW+Lv8ztumXWWn4Zxmuk2GWRBXT
+crA/vGp97Eh/jcOrqnErU2lBUzS1sLnFBgrEsEX1QV1uiUV7PTsmjHTC5dLRfbIR1PtYMiKagMnc
+/Qzpf14Dl847ABSHJ3A4qY5usyd2mFHgBeMhqxrVhSI8KbWaFsWAqPS7azCPL0YCorEMIuDTAgMB
+AAGjgZcwgZQwHQYDVR0OBBYEFCEwyfsA106Y2oeqKtCnLrFAMadMMA4GA1UdDwEB/wQEAwIBBjAP
+BgNVHRMBAf8EBTADAQH/MFIGA1UdHwRLMEkwR6BFoEOGQWh0dHA6Ly9jcmwubmV0c29sc3NsLmNv
+bS9OZXR3b3JrU29sdXRpb25zQ2VydGlmaWNhdGVBdXRob3JpdHkuY3JsMA0GCSqGSIb3DQEBBQUA
+A4IBAQC7rkvnt1frf6ott3NHhWrB5KUd5Oc86fRZZXe1eltajSU24HqXLjjAV2CDmAaDn7l2em5Q
+4LqILPxFzBiwmZVRDuwduIj/h1AcgsLj4DKAv6ALR8jDMe+ZZzKATxcheQxpXN5eNK4CtSbqUN9/
+GGUsyfJj4akH/nxxH2szJGoeBfcFaMBqEssuXmHLrijTfsK0ZpEmXzwuJF/LWA/rKOyvEZbz3Htv
+wKeI8lN3s2Berq4o2jUsbzRF0ybh3uxbTydrFny9RAQYgrOJeRcQcT16ohZO9QHNpGxlaKFJdlxD
+ydi8NmdspZS11My5vWo1ViHe2MPr+8ukYEywVaCge1ey
+-----END CERTIFICATE-----
+
+COMODO ECC Certification Authority
+==================================
+-----BEGIN CERTIFICATE-----
+MIICiTCCAg+gAwIBAgIQH0evqmIAcFBUTAGem2OZKjAKBggqhkjOPQQDAzCBhTELMAkGA1UEBhMC
+R0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UE
+ChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBB
+dXRob3JpdHkwHhcNMDgwMzA2MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0Ix
+GzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMR
+Q09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRo
+b3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQDR3svdcmCFYX7deSRFtSrYpn1PlILBs5BAH+X
+4QokPB0BBO490o0JlwzgdeT6+3eKKvUDYEs2ixYjFq0JcfRK9ChQtP6IHG4/bC8vCVlbpVsLM5ni
+wz2J+Wos77LTBumjQjBAMB0GA1UdDgQWBBR1cacZSBm8nZ3qQUfflMRId5nTeTAOBgNVHQ8BAf8E
+BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjEA7wNbeqy3eApyt4jf/7VG
+FAkK+qDmfQjGGoe9GKhzvSbKYAydzpmfz1wPMOG+FDHqAjAU9JM8SaczepBGR7NjfRObTrdvGDeA
+U/7dIOA1mjbRxwG55tzd8/8dLDoWV9mSOdY=
+-----END CERTIFICATE-----
+
+Certigna
+========
+-----BEGIN CERTIFICATE-----
+MIIDqDCCApCgAwIBAgIJAP7c4wEPyUj/MA0GCSqGSIb3DQEBBQUAMDQxCzAJBgNVBAYTAkZSMRIw
+EAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hMB4XDTA3MDYyOTE1MTMwNVoXDTI3
+MDYyOTE1MTMwNVowNDELMAkGA1UEBhMCRlIxEjAQBgNVBAoMCURoaW15b3RpczERMA8GA1UEAwwI
+Q2VydGlnbmEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDIaPHJ1tazNHUmgh7stL7q
+XOEm7RFHYeGifBZ4QCHkYJ5ayGPhxLGWkv8YbWkj4Sti993iNi+RB7lIzw7sebYs5zRLcAglozyH
+GxnygQcPOJAZ0xH+hrTy0V4eHpbNgGzOOzGTtvKg0KmVEn2lmsxryIRWijOp5yIVUxbwzBfsV1/p
+ogqYCd7jX5xv3EjjhQsVWqa6n6xI4wmy9/Qy3l40vhx4XUJbzg4ij02Q130yGLMLLGq/jj8UEYkg
+DncUtT2UCIf3JR7VsmAA7G8qKCVuKj4YYxclPz5EIBb2JsglrgVKtOdjLPOMFlN+XPsRGgjBRmKf
+Irjxwo1p3Po6WAbfAgMBAAGjgbwwgbkwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUGu3+QTmQ
+tCRZvgHyUtVF9lo53BEwZAYDVR0jBF0wW4AUGu3+QTmQtCRZvgHyUtVF9lo53BGhOKQ2MDQxCzAJ
+BgNVBAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hggkA/tzjAQ/J
+SP8wDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzANBgkqhkiG9w0BAQUFAAOCAQEA
+hQMeknH2Qq/ho2Ge6/PAD/Kl1NqV5ta+aDY9fm4fTIrv0Q8hbV6lUmPOEvjvKtpv6zf+EwLHyzs+
+ImvaYS5/1HI93TDhHkxAGYwP15zRgzB7mFncfca5DClMoTOi62c6ZYTTluLtdkVwj7Ur3vkj1klu
+PBS1xp81HlDQwY9qcEQCYsuuHWhBp6pX6FOqB9IG9tUUBguRA3UsbHK1YZWaDYu5Def131TN3ubY
+1gkIl2PlwS6wt0QmwCbAr1UwnjvVNioZBPRcHv/PLLf/0P2HQBHVESO7SMAhqaQoLf0V+LBOK/Qw
+WyH8EZE0vkHve52Xdf+XlcCWWC/qu0bXu+TZLg==
+-----END CERTIFICATE-----
+
+Cybertrust Global Root
+======================
+-----BEGIN CERTIFICATE-----
+MIIDoTCCAomgAwIBAgILBAAAAAABD4WqLUgwDQYJKoZIhvcNAQEFBQAwOzEYMBYGA1UEChMPQ3li
+ZXJ0cnVzdCwgSW5jMR8wHQYDVQQDExZDeWJlcnRydXN0IEdsb2JhbCBSb290MB4XDTA2MTIxNTA4
+MDAwMFoXDTIxMTIxNTA4MDAwMFowOzEYMBYGA1UEChMPQ3liZXJ0cnVzdCwgSW5jMR8wHQYDVQQD
+ExZDeWJlcnRydXN0IEdsb2JhbCBSb290MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA
++Mi8vRRQZhP/8NN57CPytxrHjoXxEnOmGaoQ25yiZXRadz5RfVb23CO21O1fWLE3TdVJDm71aofW
+0ozSJ8bi/zafmGWgE07GKmSb1ZASzxQG9Dvj1Ci+6A74q05IlG2OlTEQXO2iLb3VOm2yHLtgwEZL
+AfVJrn5GitB0jaEMAs7u/OePuGtm839EAL9mJRQr3RAwHQeWP032a7iPt3sMpTjr3kfb1V05/Iin
+89cqdPHoWqI7n1C6poxFNcJQZZXcY4Lv3b93TZxiyWNzFtApD0mpSPCzqrdsxacwOUBdrsTiXSZT
+8M4cIwhhqJQZugRiQOwfOHB3EgZxpzAYXSUnpQIDAQABo4GlMIGiMA4GA1UdDwEB/wQEAwIBBjAP
+BgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBS2CHsNesysIEyGVjJez6tuhS1wVzA/BgNVHR8EODA2
+MDSgMqAwhi5odHRwOi8vd3d3Mi5wdWJsaWMtdHJ1c3QuY29tL2NybC9jdC9jdHJvb3QuY3JsMB8G
+A1UdIwQYMBaAFLYIew16zKwgTIZWMl7Pq26FLXBXMA0GCSqGSIb3DQEBBQUAA4IBAQBW7wojoFRO
+lZfJ+InaRcHUowAl9B8Tq7ejhVhpwjCt2BWKLePJzYFa+HMjWqd8BfP9IjsO0QbE2zZMcwSO5bAi
+5MXzLqXZI+O4Tkogp24CJJ8iYGd7ix1yCcUxXOl5n4BHPa2hCwcUPUf/A2kaDAtE52Mlp3+yybh2
+hO0j9n0Hq0V+09+zv+mKts2oomcrUtW3ZfA5TGOgkXmTUg9U3YO7n9GPp1Nzw8v/MOx8BLjYRB+T
+X3EJIrduPuocA06dGiBh+4E37F78CkWr1+cXVdCg6mCbpvbjjFspwgZgFJ0tl0ypkxWdYcQBX0jW
+WL1WMRJOEcgh4LMRkWXbtKaIOM5V
+-----END CERTIFICATE-----
+
+ePKI Root Certification Authority
+=================================
+-----BEGIN CERTIFICATE-----
+MIIFsDCCA5igAwIBAgIQFci9ZUdcr7iXAF7kBtK8nTANBgkqhkiG9w0BAQUFADBeMQswCQYDVQQG
+EwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0ZC4xKjAoBgNVBAsMIWVQS0kg
+Um9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNDEyMjAwMjMxMjdaFw0zNDEyMjAwMjMx
+MjdaMF4xCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEq
+MCgGA1UECwwhZVBLSSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0B
+AQEFAAOCAg8AMIICCgKCAgEA4SUP7o3biDN1Z82tH306Tm2d0y8U82N0ywEhajfqhFAHSyZbCUNs
+IZ5qyNUD9WBpj8zwIuQf5/dqIjG3LBXy4P4AakP/h2XGtRrBp0xtInAhijHyl3SJCRImHJ7K2RKi
+lTza6We/CKBk49ZCt0Xvl/T29de1ShUCWH2YWEtgvM3XDZoTM1PRYfl61dd4s5oz9wCGzh1NlDiv
+qOx4UXCKXBCDUSH3ET00hl7lSM2XgYI1TBnsZfZrxQWh7kcT1rMhJ5QQCtkkO7q+RBNGMD+XPNjX
+12ruOzjjK9SXDrkb5wdJfzcq+Xd4z1TtW0ado4AOkUPB1ltfFLqfpo0kR0BZv3I4sjZsN/+Z0V0O
+WQqraffAsgRFelQArr5T9rXn4fg8ozHSqf4hUmTFpmfwdQcGlBSBVcYn5AGPF8Fqcde+S/uUWH1+
+ETOxQvdibBjWzwloPn9s9h6PYq2lY9sJpx8iQkEeb5mKPtf5P0B6ebClAZLSnT0IFaUQAS2zMnao
+lQ2zepr7BxB4EW/hj8e6DyUadCrlHJhBmd8hh+iVBmoKs2pHdmX2Os+PYhcZewoozRrSgx4hxyy/
+vv9haLdnG7t4TY3OZ+XkwY63I2binZB1NJipNiuKmpS5nezMirH4JYlcWrYvjB9teSSnUmjDhDXi
+Zo1jDiVN1Rmy5nk3pyKdVDECAwEAAaNqMGgwHQYDVR0OBBYEFB4M97Zn8uGSJglFwFU5Lnc/Qkqi
+MAwGA1UdEwQFMAMBAf8wOQYEZyoHAAQxMC8wLQIBADAJBgUrDgMCGgUAMAcGBWcqAwAABBRFsMLH
+ClZ87lt4DJX5GFPBphzYEDANBgkqhkiG9w0BAQUFAAOCAgEACbODU1kBPpVJufGBuvl2ICO1J2B0
+1GqZNF5sAFPZn/KmsSQHRGoqxqWOeBLoR9lYGxMqXnmbnwoqZ6YlPwZpVnPDimZI+ymBV3QGypzq
+KOg4ZyYr8dW1P2WT+DZdjo2NQCCHGervJ8A9tDkPJXtoUHRVnAxZfVo9QZQlUgjgRywVMRnVvwdV
+xrsStZf0X4OFunHB2WyBEXYKCrC/gpf36j36+uwtqSiUO1bd0lEursC9CBWMd1I0ltabrNMdjmEP
+NXubrjlpC2JgQCA2j6/7Nu4tCEoduL+bXPjqpRugc6bY+G7gMwRfaKonh+3ZwZCc7b3jajWvY9+r
+GNm65ulK6lCKD2GTHuItGeIwlDWSXQ62B68ZgI9HkFFLLk3dheLSClIKF5r8GrBQAuUBo2M3IUxE
+xJtRmREOc5wGj1QupyheRDmHVi03vYVElOEMSyycw5KFNGHLD7ibSkNS/jQ6fbjpKdx2qcgw+BRx
+gMYeNkh0IkFch4LoGHGLQYlE535YW6i4jRPpp2zDR+2zGp1iro2C6pSe3VkQw63d4k3jMdXH7Ojy
+sP6SHhYKGvzZ8/gntsm+HbRsZJB/9OTEW9c3rkIO3aQab3yIVMUWbuF6aC74Or8NpDyJO3inTmOD
+BCEIZ43ygknQW/2xzQ+DhNQ+IIX3Sj0rnP0qCglN6oH4EZw=
+-----END CERTIFICATE-----
+
+certSIGN ROOT CA
+================
+-----BEGIN CERTIFICATE-----
+MIIDODCCAiCgAwIBAgIGIAYFFnACMA0GCSqGSIb3DQEBBQUAMDsxCzAJBgNVBAYTAlJPMREwDwYD
+VQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBDQTAeFw0wNjA3MDQxNzIwMDRa
+Fw0zMTA3MDQxNzIwMDRaMDsxCzAJBgNVBAYTAlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UE
+CxMQY2VydFNJR04gUk9PVCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALczuX7I
+JUqOtdu0KBuqV5Do0SLTZLrTk+jUrIZhQGpgV2hUhE28alQCBf/fm5oqrl0Hj0rDKH/v+yv6efHH
+rfAQUySQi2bJqIirr1qjAOm+ukbuW3N7LBeCgV5iLKECZbO9xSsAfsT8AzNXDe3i+s5dRdY4zTW2
+ssHQnIFKquSyAVwdj1+ZxLGt24gh65AIgoDzMKND5pCCrlUoSe1b16kQOA7+j0xbm0bqQfWwCHTD
+0IgztnzXdN/chNFDDnU5oSVAKOp4yw4sLjmdjItuFhwvJoIQ4uNllAoEwF73XVv4EOLQunpL+943
+AAAaWyjj0pxzPjKHmKHJUS/X3qwzs08CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8B
+Af8EBAMCAcYwHQYDVR0OBBYEFOCMm9slSbPxfIbWskKHC9BroNnkMA0GCSqGSIb3DQEBBQUAA4IB
+AQA+0hyJLjX8+HXd5n9liPRyTMks1zJO890ZeUe9jjtbkw9QSSQTaxQGcu8J06Gh40CEyecYMnQ8
+SG4Pn0vU9x7Tk4ZkVJdjclDVVc/6IJMCopvDI5NOFlV2oHB5bc0hH88vLbwZ44gx+FkagQnIl6Z0
+x2DEW8xXjrJ1/RsCCdtZb3KTafcxQdaIOL+Hsr0Wefmq5L6IJd1hJyMctTEHBDa0GpC9oHRxUIlt
+vBTjD4au8as+x6AJzKNI0eDbZOeStc+vckNwi/nDhDwTqn6Sm1dTk/pwwpEOMfmbZ13pljheX7Nz
+TogVZ96edhBiIL5VaZVDADlN9u6wWk5JRFRYX0KD
+-----END CERTIFICATE-----
+
+GeoTrust Primary Certification Authority - G2
+=============================================
+-----BEGIN CERTIFICATE-----
+MIICrjCCAjWgAwIBAgIQPLL0SAoA4v7rJDteYD7DazAKBggqhkjOPQQDAzCBmDELMAkGA1UEBhMC
+VVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsTMChjKSAyMDA3IEdlb1RydXN0IElu
+Yy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTE2MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFyeSBD
+ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEcyMB4XDTA3MTEwNTAwMDAwMFoXDTM4MDExODIzNTk1
+OVowgZgxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAoYykg
+MjAwNyBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0BgNVBAMTLUdl
+b1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMjB2MBAGByqGSM49AgEG
+BSuBBAAiA2IABBWx6P0DFUPlrOuHNxFi79KDNlJ9RVcLSo17VDs6bl8VAsBQps8lL33KSLjHUGMc
+KiEIfJo22Av+0SbFWDEwKCXzXV2juLaltJLtbCyf691DiaI8S0iRHVDsJt/WYC69IaNCMEAwDwYD
+VR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFBVfNVdRVfslsq0DafwBo/q+
+EVXVMAoGCCqGSM49BAMDA2cAMGQCMGSWWaboCd6LuvpaiIjwH5HTRqjySkwCY/tsXzjbLkGTqQ7m
+ndwxHLKgpxgceeHHNgIwOlavmnRs9vuD4DPTCF+hnMJbn0bWtsuRBmOiBuczrD6ogRLQy7rQkgu2
+npaqBA+K
+-----END CERTIFICATE-----
+
+VeriSign Universal Root Certification Authority
+===============================================
+-----BEGIN CERTIFICATE-----
+MIIEuTCCA6GgAwIBAgIQQBrEZCGzEyEDDrvkEhrFHTANBgkqhkiG9w0BAQsFADCBvTELMAkGA1UE
+BhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBO
+ZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwOCBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVk
+IHVzZSBvbmx5MTgwNgYDVQQDEy9WZXJpU2lnbiBVbml2ZXJzYWwgUm9vdCBDZXJ0aWZpY2F0aW9u
+IEF1dGhvcml0eTAeFw0wODA0MDIwMDAwMDBaFw0zNzEyMDEyMzU5NTlaMIG9MQswCQYDVQQGEwJV
+UzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdv
+cmsxOjA4BgNVBAsTMShjKSAyMDA4IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl
+IG9ubHkxODA2BgNVBAMTL1ZlcmlTaWduIFVuaXZlcnNhbCBSb290IENlcnRpZmljYXRpb24gQXV0
+aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx2E3XrEBNNti1xWb/1hajCMj
+1mCOkdeQmIN65lgZOIzF9uVkhbSicfvtvbnazU0AtMgtc6XHaXGVHzk8skQHnOgO+k1KxCHfKWGP
+MiJhgsWHH26MfF8WIFFE0XBPV+rjHOPMee5Y2A7Cs0WTwCznmhcrewA3ekEzeOEz4vMQGn+HLL72
+9fdC4uW/h2KJXwBL38Xd5HVEMkE6HnFuacsLdUYI0crSK5XQz/u5QGtkjFdN/BMReYTtXlT2NJ8I
+AfMQJQYXStrxHXpma5hgZqTZ79IugvHw7wnqRMkVauIDbjPTrJ9VAMf2CGqUuV/c4DPxhGD5WycR
+tPwW8rtWaoAljQIDAQABo4GyMIGvMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMG0G
+CCsGAQUFBwEMBGEwX6FdoFswWTBXMFUWCWltYWdlL2dpZjAhMB8wBwYFKw4DAhoEFI/l0xqGrI2O
+a8PPgGrUSBgsexkuMCUWI2h0dHA6Ly9sb2dvLnZlcmlzaWduLmNvbS92c2xvZ28uZ2lmMB0GA1Ud
+DgQWBBS2d/ppSEefUxLVwuoHMnYH0ZcHGTANBgkqhkiG9w0BAQsFAAOCAQEASvj4sAPmLGd75JR3
+Y8xuTPl9Dg3cyLk1uXBPY/ok+myDjEedO2Pzmvl2MpWRsXe8rJq+seQxIcaBlVZaDrHC1LGmWazx
+Y8u4TB1ZkErvkBYoH1quEPuBUDgMbMzxPcP1Y+Oz4yHJJDnp/RVmRvQbEdBNc6N9Rvk97ahfYtTx
+P/jgdFcrGJ2BtMQo2pSXpXDrrB2+BxHw1dvd5Yzw1TKwg+ZX4o+/vqGqvz0dtdQ46tewXDpPaj+P
+wGZsY6rp2aQW9IHRlRQOfc2VNNnSj3BzgXucfr2YYdhFh5iQxeuGMMY1v/D/w1WIg0vvBZIGcfK4
+mJO37M2CYfE45k+XmCpajQ==
+-----END CERTIFICATE-----
+
+NetLock Arany (Class Gold) Főtanúsítvány
+========================================
+-----BEGIN CERTIFICATE-----
+MIIEFTCCAv2gAwIBAgIGSUEs5AAQMA0GCSqGSIb3DQEBCwUAMIGnMQswCQYDVQQGEwJIVTERMA8G
+A1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610
+dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzKTE1MDMGA1UEAwwsTmV0TG9jayBB
+cmFueSAoQ2xhc3MgR29sZCkgRsWRdGFuw7pzw610dsOhbnkwHhcNMDgxMjExMTUwODIxWhcNMjgx
+MjA2MTUwODIxWjCBpzELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MRUwEwYDVQQKDAxO
+ZXRMb2NrIEtmdC4xNzA1BgNVBAsMLlRhbsO6c8OtdHbDoW55a2lhZMOzayAoQ2VydGlmaWNhdGlv
+biBTZXJ2aWNlcykxNTAzBgNVBAMMLE5ldExvY2sgQXJhbnkgKENsYXNzIEdvbGQpIEbFkXRhbsO6
+c8OtdHbDoW55MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxCRec75LbRTDofTjl5Bu
+0jBFHjzuZ9lk4BqKf8owyoPjIMHj9DrTlF8afFttvzBPhCf2nx9JvMaZCpDyD/V/Q4Q3Y1GLeqVw
+/HpYzY6b7cNGbIRwXdrzAZAj/E4wqX7hJ2Pn7WQ8oLjJM2P+FpD/sLj916jAwJRDC7bVWaaeVtAk
+H3B5r9s5VA1lddkVQZQBr17s9o3x/61k/iCa11zr/qYfCGSji3ZVrR47KGAuhyXoqq8fxmRGILdw
+fzzeSNuWU7c5d+Qa4scWhHaXWy+7GRWF+GmF9ZmnqfI0p6m2pgP8b4Y9VHx2BJtr+UBdADTHLpl1
+neWIA6pN+APSQnbAGwIDAKiLo0UwQzASBgNVHRMBAf8ECDAGAQH/AgEEMA4GA1UdDwEB/wQEAwIB
+BjAdBgNVHQ4EFgQUzPpnk/C2uNClwB7zU/2MU9+D15YwDQYJKoZIhvcNAQELBQADggEBAKt/7hwW
+qZw8UQCgwBEIBaeZ5m8BiFRhbvG5GK1Krf6BQCOUL/t1fC8oS2IkgYIL9WHxHG64YTjrgfpioTta
+YtOUZcTh5m2C+C8lcLIhJsFyUR+MLMOEkMNaj7rP9KdlpeuY0fsFskZ1FSNqb4VjMIDw1Z4fKRzC
+bLBQWV2QWzuoDTDPv31/zvGdg73JRm4gpvlhUbohL3u+pRVjodSVh/GeufOJ8z2FuLjbvrW5Kfna
+NwUASZQDhETnv0Mxz3WLJdH0pmT1kvarBes96aULNmLazAZfNou2XjG4Kvte9nHfRCaexOYNkbQu
+dZWAUWpLMKawYqGT8ZvYzsRjdT9ZR7E=
+-----END CERTIFICATE-----
+
+Hongkong Post Root CA 1
+=======================
+-----BEGIN CERTIFICATE-----
+MIIDMDCCAhigAwIBAgICA+gwDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UEBhMCSEsxFjAUBgNVBAoT
+DUhvbmdrb25nIFBvc3QxIDAeBgNVBAMTF0hvbmdrb25nIFBvc3QgUm9vdCBDQSAxMB4XDTAzMDUx
+NTA1MTMxNFoXDTIzMDUxNTA0NTIyOVowRzELMAkGA1UEBhMCSEsxFjAUBgNVBAoTDUhvbmdrb25n
+IFBvc3QxIDAeBgNVBAMTF0hvbmdrb25nIFBvc3QgUm9vdCBDQSAxMIIBIjANBgkqhkiG9w0BAQEF
+AAOCAQ8AMIIBCgKCAQEArP84tulmAknjorThkPlAj3n54r15/gK97iSSHSL22oVyaf7XPwnU3ZG1
+ApzQjVrhVcNQhrkpJsLj2aDxaQMoIIBFIi1WpztUlVYiWR8o3x8gPW2iNr4joLFutbEnPzlTCeqr
+auh0ssJlXI6/fMN4hM2eFvz1Lk8gKgifd/PFHsSaUmYeSF7jEAaPIpjhZY4bXSNmO7ilMlHIhqqh
+qZ5/dpTCpmy3QfDVyAY45tQM4vM7TG1QjMSDJ8EThFk9nnV0ttgCXjqQesBCNnLsak3c78QA3xMY
+V18meMjWCnl3v/evt3a5pQuEF10Q6m/hq5URX208o1xNg1vysxmKgIsLhwIDAQABoyYwJDASBgNV
+HRMBAf8ECDAGAQH/AgEDMA4GA1UdDwEB/wQEAwIBxjANBgkqhkiG9w0BAQUFAAOCAQEADkbVPK7i
+h9legYsCmEEIjEy82tvuJxuC52pF7BaLT4Wg87JwvVqWuspube5Gi27nKi6Wsxkz67SfqLI37pio
+l7Yutmcn1KZJ/RyTZXaeQi/cImyaT/JaFTmxcdcrUehtHJjA2Sr0oYJ71clBoiMBdDhViw+5Lmei
+IAQ32pwL0xch4I+XeTRvhEgCIDMb5jREn5Fw9IBehEPCKdJsEhTkYY2sEJCehFC78JZvRZ+K88ps
+T/oROhUVRsPNH4NbLUES7VBnQRM9IauUiqpOfMGx+6fWtScvl6tu4B3i0RwsH0Ti/L6RoZz71ilT
+c4afU9hDDl3WY4JxHYB0yvbiAmvZWg==
+-----END CERTIFICATE-----
+
+SecureSign RootCA11
+===================
+-----BEGIN CERTIFICATE-----
+MIIDbTCCAlWgAwIBAgIBATANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQGEwJKUDErMCkGA1UEChMi
+SmFwYW4gQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcywgSW5jLjEcMBoGA1UEAxMTU2VjdXJlU2lnbiBS
+b290Q0ExMTAeFw0wOTA0MDgwNDU2NDdaFw0yOTA0MDgwNDU2NDdaMFgxCzAJBgNVBAYTAkpQMSsw
+KQYDVQQKEyJKYXBhbiBDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzLCBJbmMuMRwwGgYDVQQDExNTZWN1
+cmVTaWduIFJvb3RDQTExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA/XeqpRyQBTvL
+TJszi1oURaTnkBbR31fSIRCkF/3frNYfp+TbfPfs37gD2pRY/V1yfIw/XwFndBWW4wI8h9uuywGO
+wvNmxoVF9ALGOrVisq/6nL+k5tSAMJjzDbaTj6nU2DbysPyKyiyhFTOVMdrAG/LuYpmGYz+/3ZMq
+g6h2uRMft85OQoWPIucuGvKVCbIFtUROd6EgvanyTgp9UK31BQ1FT0Zx/Sg+U/sE2C3XZR1KG/rP
+O7AxmjVuyIsG0wCR8pQIZUyxNAYAeoni8McDWc/V1uinMrPmmECGxc0nEovMe863ETxiYAcjPitA
+bpSACW22s293bzUIUPsCh8U+iQIDAQABo0IwQDAdBgNVHQ4EFgQUW/hNT7KlhtQ60vFjmqC+CfZX
+t94wDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAKCh
+OBZmLqdWHyGcBvod7bkixTgm2E5P7KN/ed5GIaGHd48HCJqypMWvDzKYC3xmKbabfSVSSUOrTC4r
+bnpwrxYO4wJs+0LmGJ1F2FXI6Dvd5+H0LgscNFxsWEr7jIhQX5Ucv+2rIrVls4W6ng+4reV6G4pQ
+Oh29Dbx7VFALuUKvVaAYga1lme++5Jy/xIWrQbJUb9wlze144o4MjQlJ3WN7WmmWAiGovVJZ6X01
+y8hSyn+B/tlr0/cR7SXf+Of5pPpyl4RTDaXQMhhRdlkUbA/r7F+AjHVDg8OFmP9Mni0N5HeDk061
+lgeLKBObjBmNQSdJQO7e5iNEOdyhIta6A/I=
+-----END CERTIFICATE-----
+
+Microsec e-Szigno Root CA 2009
+==============================
+-----BEGIN CERTIFICATE-----
+MIIECjCCAvKgAwIBAgIJAMJ+QwRORz8ZMA0GCSqGSIb3DQEBCwUAMIGCMQswCQYDVQQGEwJIVTER
+MA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jv
+c2VjIGUtU3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5o
+dTAeFw0wOTA2MTYxMTMwMThaFw0yOTEyMzAxMTMwMThaMIGCMQswCQYDVQQGEwJIVTERMA8GA1UE
+BwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUt
+U3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odTCCASIw
+DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOn4j/NjrdqG2KfgQvvPkd6mJviZpWNwrZuuyjNA
+fW2WbqEORO7hE52UQlKavXWFdCyoDh2Tthi3jCyoz/tccbna7P7ofo/kLx2yqHWH2Leh5TvPmUpG
+0IMZfcChEhyVbUr02MelTTMuhTlAdX4UfIASmFDHQWe4oIBhVKZsTh/gnQ4H6cm6M+f+wFUoLAKA
+pxn1ntxVUwOXewdI/5n7N4okxFnMUBBjjqqpGrCEGob5X7uxUG6k0QrM1XF+H6cbfPVTbiJfyyvm
+1HxdrtbCxkzlBQHZ7Vf8wSN5/PrIJIOV87VqUQHQd9bpEqH5GoP7ghu5sJf0dgYzQ0mg/wu1+rUC
+AwEAAaOBgDB+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTLD8bf
+QkPMPcu1SCOhGnqmKrs0aDAfBgNVHSMEGDAWgBTLD8bfQkPMPcu1SCOhGnqmKrs0aDAbBgNVHREE
+FDASgRBpbmZvQGUtc3ppZ25vLmh1MA0GCSqGSIb3DQEBCwUAA4IBAQDJ0Q5eLtXMs3w+y/w9/w0o
+lZMEyL/azXm4Q5DwpL7v8u8hmLzU1F0G9u5C7DBsoKqpyvGvivo/C3NqPuouQH4frlRheesuCDfX
+I/OMn74dseGkddug4lQUsbocKaQY9hK6ohQU4zE1yED/t+AFdlfBHFny+L/k7SViXITwfn4fs775
+tyERzAMBVnCnEJIeGzSBHq2cGsMEPO0CYdYeBvNfOofyK/FFh+U9rNHHV4S9a67c2Pm2G2JwCz02
+yULyMtd6YebS2z3PyKnJm9zbWETXbzivf3jTo60adbocwTZ8jx5tHMN1Rq41Bab2XD0h7lbwyYIi
+LXpUq3DDfSJlgnCW
+-----END CERTIFICATE-----
+
+GlobalSign Root CA - R3
+=======================
+-----BEGIN CERTIFICATE-----
+MIIDXzCCAkegAwIBAgILBAAAAAABIVhTCKIwDQYJKoZIhvcNAQELBQAwTDEgMB4GA1UECxMXR2xv
+YmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2Jh
+bFNpZ24wHhcNMDkwMzE4MTAwMDAwWhcNMjkwMzE4MTAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxT
+aWduIFJvb3QgQ0EgLSBSMzETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2ln
+bjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMwldpB5BngiFvXAg7aEyiie/QV2EcWt
+iHL8RgJDx7KKnQRfJMsuS+FggkbhUqsMgUdwbN1k0ev1LKMPgj0MK66X17YUhhB5uzsTgHeMCOFJ
+0mpiLx9e+pZo34knlTifBtc+ycsmWQ1z3rDI6SYOgxXG71uL0gRgykmmKPZpO/bLyCiR5Z2KYVc3
+rHQU3HTgOu5yLy6c+9C7v/U9AOEGM+iCK65TpjoWc4zdQQ4gOsC0p6Hpsk+QLjJg6VfLuQSSaGjl
+OCZgdbKfd/+RFO+uIEn8rUAVSNECMWEZXriX7613t2Saer9fwRPvm2L7DWzgVGkWqQPabumDk3F2
+xmmFghcCAwEAAaNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYE
+FI/wS3+oLkUkrk1Q+mOai97i3Ru8MA0GCSqGSIb3DQEBCwUAA4IBAQBLQNvAUKr+yAzv95ZURUm7
+lgAJQayzE4aGKAczymvmdLm6AC2upArT9fHxD4q/c2dKg8dEe3jgr25sbwMpjjM5RcOO5LlXbKr8
+EpbsU8Yt5CRsuZRj+9xTaGdWPoO4zzUhw8lo/s7awlOqzJCK6fBdRoyV3XpYKBovHd7NADdBj+1E
+bddTKJd+82cEHhXXipa0095MJ6RMG3NzdvQXmcIfeg7jLQitChws/zyrVQ4PkX4268NXSb7hLi18
+YIvDQVETI53O9zJrlAGomecsMx86OyXShkDOOyyGeMlhLxS67ttVb9+E7gUJTb0o2HLO02JQZR7r
+kpeDMdmztcpHWD9f
+-----END CERTIFICATE-----
+
+Autoridad de Certificacion Firmaprofesional CIF A62634068
+=========================================================
+-----BEGIN CERTIFICATE-----
+MIIGFDCCA/ygAwIBAgIIU+w77vuySF8wDQYJKoZIhvcNAQEFBQAwUTELMAkGA1UEBhMCRVMxQjBA
+BgNVBAMMOUF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1hcHJvZmVzaW9uYWwgQ0lGIEE2
+MjYzNDA2ODAeFw0wOTA1MjAwODM4MTVaFw0zMDEyMzEwODM4MTVaMFExCzAJBgNVBAYTAkVTMUIw
+QAYDVQQDDDlBdXRvcmlkYWQgZGUgQ2VydGlmaWNhY2lvbiBGaXJtYXByb2Zlc2lvbmFsIENJRiBB
+NjI2MzQwNjgwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKlmuO6vj78aI14H9M2uDD
+Utd9thDIAl6zQyrET2qyyhxdKJp4ERppWVevtSBC5IsP5t9bpgOSL/UR5GLXMnE42QQMcas9UX4P
+B99jBVzpv5RvwSmCwLTaUbDBPLutN0pcyvFLNg4kq7/DhHf9qFD0sefGL9ItWY16Ck6WaVICqjaY
+7Pz6FIMMNx/Jkjd/14Et5cS54D40/mf0PmbR0/RAz15iNA9wBj4gGFrO93IbJWyTdBSTo3OxDqqH
+ECNZXyAFGUftaI6SEspd/NYrspI8IM/hX68gvqB2f3bl7BqGYTM+53u0P6APjqK5am+5hyZvQWyI
+plD9amML9ZMWGxmPsu2bm8mQ9QEM3xk9Dz44I8kvjwzRAv4bVdZO0I08r0+k8/6vKtMFnXkIoctX
+MbScyJCyZ/QYFpM6/EfY0XiWMR+6KwxfXZmtY4laJCB22N/9q06mIqqdXuYnin1oKaPnirjaEbsX
+LZmdEyRG98Xi2J+Of8ePdG1asuhy9azuJBCtLxTa/y2aRnFHvkLfuwHb9H/TKI8xWVvTyQKmtFLK
+bpf7Q8UIJm+K9Lv9nyiqDdVF8xM6HdjAeI9BZzwelGSuewvF6NkBiDkal4ZkQdU7hwxu+g/GvUgU
+vzlN1J5Bto+WHWOWk9mVBngxaJ43BjuAiUVhOSPHG0SjFeUc+JIwuwIDAQABo4HvMIHsMBIGA1Ud
+EwEB/wQIMAYBAf8CAQEwDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRlzeurNR4APn7VdMActHNH
+DhpkLzCBpgYDVR0gBIGeMIGbMIGYBgRVHSAAMIGPMC8GCCsGAQUFBwIBFiNodHRwOi8vd3d3LmZp
+cm1hcHJvZmVzaW9uYWwuY29tL2NwczBcBggrBgEFBQcCAjBQHk4AUABhAHMAZQBvACAAZABlACAA
+bABhACAAQgBvAG4AYQBuAG8AdgBhACAANAA3ACAAQgBhAHIAYwBlAGwAbwBuAGEAIAAwADgAMAAx
+ADcwDQYJKoZIhvcNAQEFBQADggIBABd9oPm03cXF661LJLWhAqvdpYhKsg9VSytXjDvlMd3+xDLx
+51tkljYyGOylMnfX40S2wBEqgLk9am58m9Ot/MPWo+ZkKXzR4Tgegiv/J2Wv+xYVxC5xhOW1//qk
+R71kMrv2JYSiJ0L1ILDCExARzRAVukKQKtJE4ZYm6zFIEv0q2skGz3QeqUvVhyj5eTSSPi5E6PaP
+T481PyWzOdxjKpBrIF/EUhJOlywqrJ2X3kjyo2bbwtKDlaZmp54lD+kLM5FlClrD2VQS3a/DTg4f
+Jl4N3LON7NWBcN7STyQF82xO9UxJZo3R/9ILJUFI/lGExkKvgATP0H5kSeTy36LssUzAKh3ntLFl
+osS88Zj0qnAHY7S42jtM+kAiMFsRpvAFDsYCA0irhpuF3dvd6qJ2gHN99ZwExEWN57kci57q13XR
+crHedUTnQn3iV2t93Jm8PYMo6oCTjcVMZcFwgbg4/EMxsvYDNEeyrPsiBsse3RdHHF9mudMaotoR
+saS8I8nkvof/uZS2+F0gStRf571oe2XyFR7SOqkt6dhrJKyXWERHrVkY8SFlcN7ONGCoQPHzPKTD
+KCOM/iczQ0CgFzzr6juwcqajuUpLXhZI9LK8yIySxZ2frHI2vDSANGupi5LAuBft7HZT9SQBjLMi
+6Et8Vcad+qMUu2WFbm5PEn4KPJ2V
+-----END CERTIFICATE-----
+
+Izenpe.com
+==========
+-----BEGIN CERTIFICATE-----
+MIIF8TCCA9mgAwIBAgIQALC3WhZIX7/hy/WL1xnmfTANBgkqhkiG9w0BAQsFADA4MQswCQYDVQQG
+EwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xEzARBgNVBAMMCkl6ZW5wZS5jb20wHhcNMDcxMjEz
+MTMwODI4WhcNMzcxMjEzMDgyNzI1WjA4MQswCQYDVQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMu
+QS4xEzARBgNVBAMMCkl6ZW5wZS5jb20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDJ
+03rKDx6sp4boFmVqscIbRTJxldn+EFvMr+eleQGPicPK8lVx93e+d5TzcqQsRNiekpsUOqHnJJAK
+ClaOxdgmlOHZSOEtPtoKct2jmRXagaKH9HtuJneJWK3W6wyyQXpzbm3benhB6QiIEn6HLmYRY2xU
++zydcsC8Lv/Ct90NduM61/e0aL6i9eOBbsFGb12N4E3GVFWJGjMxCrFXuaOKmMPsOzTFlUFpfnXC
+PCDFYbpRR6AgkJOhkEvzTnyFRVSa0QUmQbC1TR0zvsQDyCV8wXDbO/QJLVQnSKwv4cSsPsjLkkxT
+OTcj7NMB+eAJRE1NZMDhDVqHIrytG6P+JrUV86f8hBnp7KGItERphIPzidF0BqnMC9bC3ieFUCbK
+F7jJeodWLBoBHmy+E60QrLUk9TiRodZL2vG70t5HtfG8gfZZa88ZU+mNFctKy6lvROUbQc/hhqfK
+0GqfvEyNBjNaooXlkDWgYlwWTvDjovoDGrQscbNYLN57C9saD+veIR8GdwYDsMnvmfzAuU8Lhij+
+0rnq49qlw0dpEuDb8PYZi+17cNcC1u2HGCgsBCRMd+RIihrGO5rUD8r6ddIBQFqNeb+Lz0vPqhbB
+leStTIo+F5HUsWLlguWABKQDfo2/2n+iD5dPDNMN+9fR5XJ+HMh3/1uaD7euBUbl8agW7EekFwID
+AQABo4H2MIHzMIGwBgNVHREEgagwgaWBD2luZm9AaXplbnBlLmNvbaSBkTCBjjFHMEUGA1UECgw+
+SVpFTlBFIFMuQS4gLSBDSUYgQTAxMzM3MjYwLVJNZXJjLlZpdG9yaWEtR2FzdGVpeiBUMTA1NSBG
+NjIgUzgxQzBBBgNVBAkMOkF2ZGEgZGVsIE1lZGl0ZXJyYW5lbyBFdG9yYmlkZWEgMTQgLSAwMTAx
+MCBWaXRvcmlhLUdhc3RlaXowDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0O
+BBYEFB0cZQ6o8iV7tJHP5LGx5r1VdGwFMA0GCSqGSIb3DQEBCwUAA4ICAQB4pgwWSp9MiDrAyw6l
+Fn2fuUhfGI8NYjb2zRlrrKvV9pF9rnHzP7MOeIWblaQnIUdCSnxIOvVFfLMMjlF4rJUT3sb9fbga
+kEyrkgPH7UIBzg/YsfqikuFgba56awmqxinuaElnMIAkejEWOVt+8Rwu3WwJrfIxwYJOubv5vr8q
+hT/AQKM6WfxZSzwoJNu0FXWuDYi6LnPAvViH5ULy617uHjAimcs30cQhbIHsvm0m5hzkQiCeR7Cs
+g1lwLDXWrzY0tM07+DKo7+N4ifuNRSzanLh+QBxh5z6ikixL8s36mLYp//Pye6kfLqCTVyvehQP5
+aTfLnnhqBbTFMXiJ7HqnheG5ezzevh55hM6fcA5ZwjUukCox2eRFekGkLhObNA5me0mrZJfQRsN5
+nXJQY6aYWwa9SG3YOYNw6DXwBdGqvOPbyALqfP2C2sJbUjWumDqtujWTI6cfSN01RpiyEGjkpTHC
+ClguGYEQyVB1/OpaFs4R1+7vUIgtYf8/QnMFlEPVjjxOAToZpR9GTnfQXeWBIiGH/pR9hNiTrdZo
+Q0iy2+tzJOeRf1SktoA+naM8THLCV8Sg1Mw4J87VBp6iSNnpn86CcDaTmjvfliHjWbcM2pE38P1Z
+WrOZyGlsQyYBNWNgVYkDOnXYukrZVP/u3oDYLdE41V4tC5h9Pmzb/CaIxw==
+-----END CERTIFICATE-----
+
+Chambers of Commerce Root - 2008
+================================
+-----BEGIN CERTIFICATE-----
+MIIHTzCCBTegAwIBAgIJAKPaQn6ksa7aMA0GCSqGSIb3DQEBBQUAMIGuMQswCQYDVQQGEwJFVTFD
+MEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNv
+bS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMu
+QS4xKTAnBgNVBAMTIENoYW1iZXJzIG9mIENvbW1lcmNlIFJvb3QgLSAyMDA4MB4XDTA4MDgwMTEy
+Mjk1MFoXDTM4MDczMTEyMjk1MFowga4xCzAJBgNVBAYTAkVVMUMwQQYDVQQHEzpNYWRyaWQgKHNl
+ZSBjdXJyZW50IGFkZHJlc3MgYXQgd3d3LmNhbWVyZmlybWEuY29tL2FkZHJlc3MpMRIwEAYDVQQF
+EwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENhbWVyZmlybWEgUy5BLjEpMCcGA1UEAxMgQ2hhbWJl
+cnMgb2YgQ29tbWVyY2UgUm9vdCAtIDIwMDgwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoIC
+AQCvAMtwNyuAWko6bHiUfaN/Gh/2NdW928sNRHI+JrKQUrpjOyhYb6WzbZSm891kDFX29ufyIiKA
+XuFixrYp4YFs8r/lfTJqVKAyGVn+H4vXPWCGhSRv4xGzdz4gljUha7MI2XAuZPeEklPWDrCQiorj
+h40G072QDuKZoRuGDtqaCrsLYVAGUvGef3bsyw/QHg3PmTA9HMRFEFis1tPo1+XqxQEHd9ZR5gN/
+ikilTWh1uem8nk4ZcfUyS5xtYBkL+8ydddy/Js2Pk3g5eXNeJQ7KXOt3EgfLZEFHcpOrUMPrCXZk
+NNI5t3YRCQ12RcSprj1qr7V9ZS+UWBDsXHyvfuK2GNnQm05aSd+pZgvMPMZ4fKecHePOjlO+Bd5g
+D2vlGts/4+EhySnB8esHnFIbAURRPHsl18TlUlRdJQfKFiC4reRB7noI/plvg6aRArBsNlVq5331
+lubKgdaX8ZSD6e2wsWsSaR6s+12pxZjptFtYer49okQ6Y1nUCyXeG0+95QGezdIp1Z8XGQpvvwyQ
+0wlf2eOKNcx5Wk0ZN5K3xMGtr/R5JJqyAQuxr1yW84Ay+1w9mPGgP0revq+ULtlVmhduYJ1jbLhj
+ya6BXBg14JC7vjxPNyK5fuvPnnchpj04gftI2jE9K+OJ9dC1vX7gUMQSibMjmhAxhduub+84Mxh2
+EQIDAQABo4IBbDCCAWgwEgYDVR0TAQH/BAgwBgEB/wIBDDAdBgNVHQ4EFgQU+SSsD7K1+HnA+mCI
+G8TZTQKeFxkwgeMGA1UdIwSB2zCB2IAU+SSsD7K1+HnA+mCIG8TZTQKeFxmhgbSkgbEwga4xCzAJ
+BgNVBAYTAkVVMUMwQQYDVQQHEzpNYWRyaWQgKHNlZSBjdXJyZW50IGFkZHJlc3MgYXQgd3d3LmNh
+bWVyZmlybWEuY29tL2FkZHJlc3MpMRIwEAYDVQQFEwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENh
+bWVyZmlybWEgUy5BLjEpMCcGA1UEAxMgQ2hhbWJlcnMgb2YgQ29tbWVyY2UgUm9vdCAtIDIwMDiC
+CQCj2kJ+pLGu2jAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUH
+AgEWHGh0dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20wDQYJKoZIhvcNAQEFBQADggIBAJASryI1
+wqM58C7e6bXpeHxIvj99RZJe6dqxGfwWPJ+0W2aeaufDuV2I6A+tzyMP3iU6XsxPpcG1Lawk0lgH
+3qLPaYRgM+gQDROpI9CF5Y57pp49chNyM/WqfcZjHwj0/gF/JM8rLFQJ3uIrbZLGOU8W6jx+ekbU
+RWpGqOt1glanq6B8aBMz9p0w8G8nOSQjKpD9kCk18pPfNKXG9/jvjA9iSnyu0/VU+I22mlaHFoI6
+M6taIgj3grrqLuBHmrS1RaMFO9ncLkVAO+rcf+g769HsJtg1pDDFOqxXnrN2pSB7+R5KBWIBpih1
+YJeSDW4+TTdDDZIVnBgizVGZoCkaPF+KMjNbMMeJL0eYD6MDxvbxrN8y8NmBGuScvfaAFPDRLLmF
+9dijscilIeUcE5fuDr3fKanvNFNb0+RqE4QGtjICxFKuItLcsiFCGtpA8CnJ7AoMXOLQusxI0zcK
+zBIKinmwPQN/aUv0NCB9szTqjktk9T79syNnFQ0EuPAtwQlRPLJsFfClI9eDdOTlLsn+mCdCxqvG
+nrDQWzilm1DefhiYtUU79nm06PcaewaD+9CL2rvHvRirCG88gGtAPxkZumWK5r7VXNM21+9AUiRg
+OGcEMeyP84LG3rlV8zsxkVrctQgVrXYlCg17LofiDKYGvCYQbTed7N14jHyAxfDZd0jQ
+-----END CERTIFICATE-----
+
+Global Chambersign Root - 2008
+==============================
+-----BEGIN CERTIFICATE-----
+MIIHSTCCBTGgAwIBAgIJAMnN0+nVfSPOMA0GCSqGSIb3DQEBBQUAMIGsMQswCQYDVQQGEwJFVTFD
+MEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNv
+bS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMu
+QS4xJzAlBgNVBAMTHkdsb2JhbCBDaGFtYmVyc2lnbiBSb290IC0gMjAwODAeFw0wODA4MDExMjMx
+NDBaFw0zODA3MzExMjMxNDBaMIGsMQswCQYDVQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUg
+Y3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAGA1UEBRMJ
+QTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xJzAlBgNVBAMTHkdsb2JhbCBD
+aGFtYmVyc2lnbiBSb290IC0gMjAwODCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMDf
+VtPkOpt2RbQT2//BthmLN0EYlVJH6xedKYiONWwGMi5HYvNJBL99RDaxccy9Wglz1dmFRP+RVyXf
+XjaOcNFccUMd2drvXNL7G706tcuto8xEpw2uIRU/uXpbknXYpBI4iRmKt4DS4jJvVpyR1ogQC7N0
+ZJJ0YPP2zxhPYLIj0Mc7zmFLmY/CDNBAspjcDahOo7kKrmCgrUVSY7pmvWjg+b4aqIG7HkF4ddPB
+/gBVsIdU6CeQNR1MM62X/JcumIS/LMmjv9GYERTtY/jKmIhYF5ntRQOXfjyGHoiMvvKRhI9lNNgA
+TH23MRdaKXoKGCQwoze1eqkBfSbW+Q6OWfH9GzO1KTsXO0G2Id3UwD2ln58fQ1DJu7xsepeY7s2M
+H/ucUa6LcL0nn3HAa6x9kGbo1106DbDVwo3VyJ2dwW3Q0L9R5OP4wzg2rtandeavhENdk5IMagfe
+Ox2YItaswTXbo6Al/3K1dh3ebeksZixShNBFks4c5eUzHdwHU1SjqoI7mjcv3N2gZOnm3b2u/GSF
+HTynyQbehP9r6GsaPMWis0L7iwk+XwhSx2LE1AVxv8Rk5Pihg+g+EpuoHtQ2TS9x9o0o9oOpE9Jh
+wZG7SMA0j0GMS0zbaRL/UJScIINZc+18ofLx/d33SdNDWKBWY8o9PeU1VlnpDsogzCtLkykPAgMB
+AAGjggFqMIIBZjASBgNVHRMBAf8ECDAGAQH/AgEMMB0GA1UdDgQWBBS5CcqcHtvTbDprru1U8VuT
+BjUuXjCB4QYDVR0jBIHZMIHWgBS5CcqcHtvTbDprru1U8VuTBjUuXqGBsqSBrzCBrDELMAkGA1UE
+BhMCRVUxQzBBBgNVBAcTOk1hZHJpZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCB3d3cuY2FtZXJm
+aXJtYS5jb20vYWRkcmVzcykxEjAQBgNVBAUTCUE4Mjc0MzI4NzEbMBkGA1UEChMSQUMgQ2FtZXJm
+aXJtYSBTLkEuMScwJQYDVQQDEx5HbG9iYWwgQ2hhbWJlcnNpZ24gUm9vdCAtIDIwMDiCCQDJzdPp
+1X0jzjAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0
+dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20wDQYJKoZIhvcNAQEFBQADggIBAICIf3DekijZBZRG
+/5BXqfEv3xoNa/p8DhxJJHkn2EaqbylZUohwEurdPfWbU1Rv4WCiqAm57OtZfMY18dwY6fFn5a+6
+ReAJ3spED8IXDneRRXozX1+WLGiLwUePmJs9wOzL9dWCkoQ10b42OFZyMVtHLaoXpGNR6woBrX/s
+dZ7LoR/xfxKxueRkf2fWIyr0uDldmOghp+G9PUIadJpwr2hsUF1Jz//7Dl3mLEfXgTpZALVza2Mg
+9jFFCDkO9HB+QHBaP9BrQql0PSgvAm11cpUJjUhjxsYjV5KTXjXBjfkK9yydYhz2rXzdpjEetrHH
+foUm+qRqtdpjMNHvkzeyZi99Bffnt0uYlDXA2TopwZ2yUDMdSqlapskD7+3056huirRXhOukP9Du
+qqqHW2Pok+JrqNS4cnhrG+055F3Lm6qH1U9OAP7Zap88MQ8oAgF9mOinsKJknnn4SPIVqczmyETr
+P3iZ8ntxPjzxmKfFGBI/5rsoM0LpRQp8bfKGeS/Fghl9CYl8slR2iK7ewfPM4W7bMdaTrpmg7yVq
+c5iJWzouE4gev8CSlDQb4ye3ix5vQv/n6TebUB0tovkC7stYWDpxvGjjqsGvHCgfotwjZT+B6q6Z
+09gwzxMNTxXJhLynSC34MCN32EZLeW32jO06f2ARePTpm67VVMB0gNELQp/B
+-----END CERTIFICATE-----
+
+Go Daddy Root Certificate Authority - G2
+========================================
+-----BEGIN CERTIFICATE-----
+MIIDxTCCAq2gAwIBAgIBADANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMxEDAOBgNVBAgT
+B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoTEUdvRGFkZHkuY29tLCBJbmMu
+MTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5
+MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgYMxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6
+b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjExMC8G
+A1UEAxMoR28gRGFkZHkgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZI
+hvcNAQEBBQADggEPADCCAQoCggEBAL9xYgjx+lk09xvJGKP3gElY6SKDE6bFIEMBO4Tx5oVJnyfq
+9oQbTqC023CYxzIBsQU+B07u9PpPL1kwIuerGVZr4oAH/PMWdYA5UXvl+TW2dE6pjYIT5LY/qQOD
++qK+ihVqf94Lw7YZFAXK6sOoBJQ7RnwyDfMAZiLIjWltNowRGLfTshxgtDj6AozO091GB94KPutd
+fMh8+7ArU6SSYmlRJQVhGkSBjCypQ5Yj36w6gZoOKcUcqeldHraenjAKOc7xiID7S13MMuyFYkMl
+NAJWJwGRtDtwKj9useiciAF9n9T521NtYJ2/LOdYq7hfRvzOxBsDPAnrSTFcaUaz4EcCAwEAAaNC
+MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFDqahQcQZyi27/a9
+BUFuIMGU2g/eMA0GCSqGSIb3DQEBCwUAA4IBAQCZ21151fmXWWcDYfF+OwYxdS2hII5PZYe096ac
+vNjpL9DbWu7PdIxztDhC2gV7+AJ1uP2lsdeu9tfeE8tTEH6KRtGX+rcuKxGrkLAngPnon1rpN5+r
+5N9ss4UXnT3ZJE95kTXWXwTrgIOrmgIttRD02JDHBHNA7XIloKmf7J6raBKZV8aPEjoJpL1E/QYV
+N8Gb5DKj7Tjo2GTzLH4U/ALqn83/B2gX2yKQOC16jdFU8WnjXzPKej17CuPKf1855eJ1usV2GDPO
+LPAvTK33sefOT6jEm0pUBsV/fdUID+Ic/n4XuKxe9tQWskMJDE32p2u0mYRlynqI4uJEvlz36hz1
+-----END CERTIFICATE-----
+
+Starfield Root Certificate Authority - G2
+=========================================
+-----BEGIN CERTIFICATE-----
+MIID3TCCAsWgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBjzELMAkGA1UEBhMCVVMxEDAOBgNVBAgT
+B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9s
+b2dpZXMsIEluYy4xMjAwBgNVBAMTKVN0YXJmaWVsZCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0
+eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgY8xCzAJBgNVBAYTAlVTMRAw
+DgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQg
+VGVjaG5vbG9naWVzLCBJbmMuMTIwMAYDVQQDEylTdGFyZmllbGQgUm9vdCBDZXJ0aWZpY2F0ZSBB
+dXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3twQP89o/8ArFv
+W59I2Z154qK3A2FWGMNHttfKPTUuiUP3oWmb3ooa/RMgnLRJdzIpVv257IzdIvpy3Cdhl+72WoTs
+bhm5iSzchFvVdPtrX8WJpRBSiUZV9Lh1HOZ/5FSuS/hVclcCGfgXcVnrHigHdMWdSL5stPSksPNk
+N3mSwOxGXn/hbVNMYq/NHwtjuzqd+/x5AJhhdM8mgkBj87JyahkNmcrUDnXMN/uLicFZ8WJ/X7Nf
+ZTD4p7dNdloedl40wOiWVpmKs/B/pM293DIxfJHP4F8R+GuqSVzRmZTRouNjWwl2tVZi4Ut0HZbU
+JtQIBFnQmA4O5t78w+wfkPECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC
+AQYwHQYDVR0OBBYEFHwMMh+n2TB/xH1oo2Kooc6rB1snMA0GCSqGSIb3DQEBCwUAA4IBAQARWfol
+TwNvlJk7mh+ChTnUdgWUXuEok21iXQnCoKjUsHU48TRqneSfioYmUeYs0cYtbpUgSpIB7LiKZ3sx
+4mcujJUDJi5DnUox9g61DLu34jd/IroAow57UvtruzvE03lRTs2Q9GcHGcg8RnoNAX3FWOdt5oUw
+F5okxBDgBPfg8n/Uqgr/Qh037ZTlZFkSIHc40zI+OIF1lnP6aI+xy84fxez6nH7PfrHxBy22/L/K
+pL/QlwVKvOoYKAKQvVR4CSFx09F9HdkWsKlhPdAKACL8x3vLCWRFCztAgfd9fDL1mMpYjn0q7pBZ
+c2T5NnReJaH1ZgUufzkVqSr7UIuOhWn0
+-----END CERTIFICATE-----
+
+Starfield Services Root Certificate Authority - G2
+==================================================
+-----BEGIN CERTIFICATE-----
+MIID7zCCAtegAwIBAgIBADANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMxEDAOBgNVBAgT
+B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9s
+b2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVsZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRl
+IEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgZgxCzAJBgNV
+BAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxT
+dGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2VydmljZXMg
+Um9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC
+AQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20pOsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2
+h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm28xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4Pa
+hHQUw2eeBGg6345AWh1KTs9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLP
+LJGmpufehRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk6mFB
+rMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaNCMEAwDwYDVR0TAQH/BAUw
+AwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJxfAN+qAdcwKziIorhtSpzyEZGDMA0GCSqG
+SIb3DQEBCwUAA4IBAQBLNqaEd2ndOxmfZyMIbw5hyf2E3F/YNoHN2BtBLZ9g3ccaaNnRbobhiCPP
+E95Dz+I0swSdHynVv/heyNXBve6SbzJ08pGCL72CQnqtKrcgfU28elUSwhXqvfdqlS5sdJ/PHLTy
+xQGjhdByPq1zqwubdQxtRbeOlKyWN7Wg0I8VRw7j6IPdj/3vQQF3zCepYoUz8jcI73HPdwbeyBkd
+iEDPfUYd/x7H4c7/I9vG+o1VTqkC50cRRj70/b17KSa7qWFiNyi2LSr2EIZkyXCn0q23KXB56jza
+YyWf/Wi3MOxw+3WKt21gZ7IeyLnp2KhvAotnDU0mV3HaIPzBSlCNsSi6
+-----END CERTIFICATE-----
+
+AffirmTrust Commercial
+======================
+-----BEGIN CERTIFICATE-----
+MIIDTDCCAjSgAwIBAgIId3cGJyapsXwwDQYJKoZIhvcNAQELBQAwRDELMAkGA1UEBhMCVVMxFDAS
+BgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBDb21tZXJjaWFsMB4XDTEw
+MDEyOTE0MDYwNloXDTMwMTIzMTE0MDYwNlowRDELMAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmly
+bVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBDb21tZXJjaWFsMIIBIjANBgkqhkiG9w0BAQEF
+AAOCAQ8AMIIBCgKCAQEA9htPZwcroRX1BiLLHwGy43NFBkRJLLtJJRTWzsO3qyxPxkEylFf6Eqdb
+DuKPHx6GGaeqtS25Xw2Kwq+FNXkyLbscYjfysVtKPcrNcV/pQr6U6Mje+SJIZMblq8Yrba0F8PrV
+C8+a5fBQpIs7R6UjW3p6+DM/uO+Zl+MgwdYoic+U+7lF7eNAFxHUdPALMeIrJmqbTFeurCA+ukV6
+BfO9m2kVrn1OIGPENXY6BwLJN/3HR+7o8XYdcxXyl6S1yHp52UKqK39c/s4mT6NmgTWvRLpUHhww
+MmWd5jyTXlBOeuM61G7MGvv50jeuJCqrVwMiKA1JdX+3KNp1v47j3A55MQIDAQABo0IwQDAdBgNV
+HQ4EFgQUnZPGU4teyq8/nx4P5ZmVvCT2lI8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC
+AQYwDQYJKoZIhvcNAQELBQADggEBAFis9AQOzcAN/wr91LoWXym9e2iZWEnStB03TX8nfUYGXUPG
+hi4+c7ImfU+TqbbEKpqrIZcUsd6M06uJFdhrJNTxFq7YpFzUf1GO7RgBsZNjvbz4YYCanrHOQnDi
+qX0GJX0nof5v7LMeJNrjS1UaADs1tDvZ110w/YETifLCBivtZ8SOyUOyXGsViQK8YvxO8rUzqrJv
+0wqiUOP2O+guRMLbZjipM1ZI8W0bM40NjD9gN53Tym1+NH4Nn3J2ixufcv1SNUFFApYvHLKac0kh
+sUlHRUe072o0EclNmsxZt9YCnlpOZbWUrhvfKbAW8b8Angc6F2S1BLUjIZkKlTuXfO8=
+-----END CERTIFICATE-----
+
+AffirmTrust Networking
+======================
+-----BEGIN CERTIFICATE-----
+MIIDTDCCAjSgAwIBAgIIfE8EORzUmS0wDQYJKoZIhvcNAQEFBQAwRDELMAkGA1UEBhMCVVMxFDAS
+BgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBOZXR3b3JraW5nMB4XDTEw
+MDEyOTE0MDgyNFoXDTMwMTIzMTE0MDgyNFowRDELMAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmly
+bVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBOZXR3b3JraW5nMIIBIjANBgkqhkiG9w0BAQEF
+AAOCAQ8AMIIBCgKCAQEAtITMMxcua5Rsa2FSoOujz3mUTOWUgJnLVWREZY9nZOIG41w3SfYvm4SE
+Hi3yYJ0wTsyEheIszx6e/jarM3c1RNg1lho9Nuh6DtjVR6FqaYvZ/Ls6rnla1fTWcbuakCNrmreI
+dIcMHl+5ni36q1Mr3Lt2PpNMCAiMHqIjHNRqrSK6mQEubWXLviRmVSRLQESxG9fhwoXA3hA/Pe24
+/PHxI1Pcv2WXb9n5QHGNfb2V1M6+oF4nI979ptAmDgAp6zxG8D1gvz9Q0twmQVGeFDdCBKNwV6gb
+h+0t+nvujArjqWaJGctB+d1ENmHP4ndGyH329JKBNv3bNPFyfvMMFr20FQIDAQABo0IwQDAdBgNV
+HQ4EFgQUBx/S55zawm6iQLSwelAQUHTEyL0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC
+AQYwDQYJKoZIhvcNAQEFBQADggEBAIlXshZ6qML91tmbmzTCnLQyFE2npN/svqe++EPbkTfOtDIu
+UFUaNU52Q3Eg75N3ThVwLofDwR1t3Mu1J9QsVtFSUzpE0nPIxBsFZVpikpzuQY0x2+c06lkh1QF6
+12S4ZDnNye2v7UsDSKegmQGA3GWjNq5lWUhPgkvIZfFXHeVZLgo/bNjR9eUJtGxUAArgFU2HdW23
+WJZa3W3SAKD0m0i+wzekujbgfIeFlxoVot4uolu9rxj5kFDNcFn4J2dHy8egBzp90SxdbBk6ZrV9
+/ZFvgrG+CJPbFEfxojfHRZ48x3evZKiT3/Zpg4Jg8klCNO1aAFSFHBY2kgxc+qatv9s=
+-----END CERTIFICATE-----
+
+AffirmTrust Premium
+===================
+-----BEGIN CERTIFICATE-----
+MIIFRjCCAy6gAwIBAgIIbYwURrGmCu4wDQYJKoZIhvcNAQEMBQAwQTELMAkGA1UEBhMCVVMxFDAS
+BgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVzdCBQcmVtaXVtMB4XDTEwMDEy
+OTE0MTAzNloXDTQwMTIzMTE0MTAzNlowQTELMAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRy
+dXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVzdCBQcmVtaXVtMIICIjANBgkqhkiG9w0BAQEFAAOCAg8A
+MIICCgKCAgEAxBLfqV/+Qd3d9Z+K4/as4Tx4mrzY8H96oDMq3I0gW64tb+eT2TZwamjPjlGjhVtn
+BKAQJG9dKILBl1fYSCkTtuG+kU3fhQxTGJoeJKJPj/CihQvL9Cl/0qRY7iZNyaqoe5rZ+jjeRFcV
+5fiMyNlI4g0WJx0eyIOFJbe6qlVBzAMiSy2RjYvmia9mx+n/K+k8rNrSs8PhaJyJ+HoAVt70VZVs
++7pk3WKL3wt3MutizCaam7uqYoNMtAZ6MMgpv+0GTZe5HMQxK9VfvFMSF5yZVylmd2EhMQcuJUmd
+GPLu8ytxjLW6OQdJd/zvLpKQBY0tL3d770O/Nbua2Plzpyzy0FfuKE4mX4+QaAkvuPjcBukumj5R
+p9EixAqnOEhss/n/fauGV+O61oV4d7pD6kh/9ti+I20ev9E2bFhc8e6kGVQa9QPSdubhjL08s9NI
+S+LI+H+SqHZGnEJlPqQewQcDWkYtuJfzt9WyVSHvutxMAJf7FJUnM7/oQ0dG0giZFmA7mn7S5u04
+6uwBHjxIVkkJx0w3AJ6IDsBz4W9m6XJHMD4Q5QsDyZpCAGzFlH5hxIrff4IaC1nEWTJ3s7xgaVY5
+/bQGeyzWZDbZvUjthB9+pSKPKrhC9IK31FOQeE4tGv2Bb0TXOwF0lkLgAOIua+rF7nKsu7/+6qqo
++Nz2snmKtmcCAwEAAaNCMEAwHQYDVR0OBBYEFJ3AZ6YMItkm9UWrpmVSESfYRaxjMA8GA1UdEwEB
+/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBDAUAA4ICAQCzV00QYk465KzquByv
+MiPIs0laUZx2KI15qldGF9X1Uva3ROgIRL8YhNILgM3FEv0AVQVhh0HctSSePMTYyPtwni94loMg
+Nt58D2kTiKV1NpgIpsbfrM7jWNa3Pt668+s0QNiigfV4Py/VpfzZotReBA4Xrf5B8OWycvpEgjNC
+6C1Y91aMYj+6QrCcDFx+LmUmXFNPALJ4fqENmS2NuB2OosSw/WDQMKSOyARiqcTtNd56l+0OOF6S
+L5Nwpamcb6d9Ex1+xghIsV5n61EIJenmJWtSKZGc0jlzCFfemQa0W50QBuHCAKi4HEoCChTQwUHK
++4w1IX2COPKpVJEZNZOUbWo6xbLQu4mGk+ibyQ86p3q4ofB4Rvr8Ny/lioTz3/4E2aFooC8k4gmV
+BtWVyuEklut89pMFu+1z6S3RdTnX5yTb2E5fQ4+e0BQ5v1VwSJlXMbSc7kqYA5YwH2AG7hsj/oFg
+IxpHYoWlzBk0gG+zrBrjn/B7SK3VAdlntqlyk+otZrWyuOQ9PLLvTIzq6we/qzWaVYa8GKa1qF60
+g2xraUDTn9zxw2lrueFtCfTxqlB2Cnp9ehehVZZCmTEJ3WARjQUwfuaORtGdFNrHF+QFlozEJLUb
+zxQHskD4o55BhrwE0GuWyCqANP2/7waj3VjFhT0+j/6eKeC2uAloGRwYQw==
+-----END CERTIFICATE-----
+
+AffirmTrust Premium ECC
+=======================
+-----BEGIN CERTIFICATE-----
+MIIB/jCCAYWgAwIBAgIIdJclisc/elQwCgYIKoZIzj0EAwMwRTELMAkGA1UEBhMCVVMxFDASBgNV
+BAoMC0FmZmlybVRydXN0MSAwHgYDVQQDDBdBZmZpcm1UcnVzdCBQcmVtaXVtIEVDQzAeFw0xMDAx
+MjkxNDIwMjRaFw00MDEyMzExNDIwMjRaMEUxCzAJBgNVBAYTAlVTMRQwEgYDVQQKDAtBZmZpcm1U
+cnVzdDEgMB4GA1UEAwwXQWZmaXJtVHJ1c3QgUHJlbWl1bSBFQ0MwdjAQBgcqhkjOPQIBBgUrgQQA
+IgNiAAQNMF4bFZ0D0KF5Nbc6PJJ6yhUczWLznCZcBz3lVPqj1swS6vQUX+iOGasvLkjmrBhDeKzQ
+N8O9ss0s5kfiGuZjuD0uL3jET9v0D6RoTFVya5UdThhClXjMNzyR4ptlKymjQjBAMB0GA1UdDgQW
+BBSaryl6wBE1NSZRMADDav5A1a7WPDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAK
+BggqhkjOPQQDAwNnADBkAjAXCfOHiFBar8jAQr9HX/VsaobgxCd05DhT1wV/GzTjxi+zygk8N53X
+57hG8f2h4nECMEJZh0PUUd+60wkyWs6Iflc9nF9Ca/UHLbXwgpP5WW+uZPpY5Yse42O+tYHNbwKM
+eQ==
+-----END CERTIFICATE-----
+
+Certum Trusted Network CA
+=========================
+-----BEGIN CERTIFICATE-----
+MIIDuzCCAqOgAwIBAgIDBETAMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAlBMMSIwIAYDVQQK
+ExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlv
+biBBdXRob3JpdHkxIjAgBgNVBAMTGUNlcnR1bSBUcnVzdGVkIE5ldHdvcmsgQ0EwHhcNMDgxMDIy
+MTIwNzM3WhcNMjkxMjMxMTIwNzM3WjB+MQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBU
+ZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5
+MSIwIAYDVQQDExlDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENBMIIBIjANBgkqhkiG9w0BAQEFAAOC
+AQ8AMIIBCgKCAQEA4/t9o3K6wvDJFIf1awFO4W5AB7ptJ11/91sts1rHUV+rpDKmYYe2bg+G0jAC
+l/jXaVehGDldamR5xgFZrDwxSjh80gTSSyjoIF87B6LMTXPb865Px1bVWqeWifrzq2jUI4ZZJ88J
+J7ysbnKDHDBy3+Ci6dLhdHUZvSqeexVUBBvXQzmtVSjF4hq79MDkrjhJM8x2hZ85RdKknvISjFH4
+fOQtf/WsX+sWn7Et0brMkUJ3TCXJkDhv2/DM+44el1k+1WBO5gUo7Ul5E0u6SNsv+XLTOcr+H9g0
+cvW0QM8xAcPs3hEtF10fuFDRXhmnad4HMyjKUJX5p1TLVIZQRan5SQIDAQABo0IwQDAPBgNVHRMB
+Af8EBTADAQH/MB0GA1UdDgQWBBQIds3LB/8k9sXN7buQvOKEN0Z19zAOBgNVHQ8BAf8EBAMCAQYw
+DQYJKoZIhvcNAQEFBQADggEBAKaorSLOAT2mo/9i0Eidi15ysHhE49wcrwn9I0j6vSrEuVUEtRCj
+jSfeC4Jj0O7eDDd5QVsisrCaQVymcODU0HfLI9MA4GxWL+FpDQ3Zqr8hgVDZBqWo/5U30Kr+4rP1
+mS1FhIrlQgnXdAIv94nYmem8J9RHjboNRhx3zxSkHLmkMcScKHQDNP8zGSal6Q10tz6XxnboJ5aj
+Zt3hrvJBW8qYVoNzcOSGGtIxQbovvi0TWnZvTuhOgQ4/WwMioBK+ZlgRSssDxLQqKi2WF+A5VLxI
+03YnnZotBqbJ7DnSq9ufmgsnAjUpsUCV5/nonFWIGUbWtzT1fs45mtk48VH3Tyw=
+-----END CERTIFICATE-----
+
+TWCA Root Certification Authority
+=================================
+-----BEGIN CERTIFICATE-----
+MIIDezCCAmOgAwIBAgIBATANBgkqhkiG9w0BAQUFADBfMQswCQYDVQQGEwJUVzESMBAGA1UECgwJ
+VEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NBIFJvb3QgQ2VydGlmaWNh
+dGlvbiBBdXRob3JpdHkwHhcNMDgwODI4MDcyNDMzWhcNMzAxMjMxMTU1OTU5WjBfMQswCQYDVQQG
+EwJUVzESMBAGA1UECgwJVEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NB
+IFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK
+AoIBAQCwfnK4pAOU5qfeCTiRShFAh6d8WWQUe7UREN3+v9XAu1bihSX0NXIP+FPQQeFEAcK0HMMx
+QhZHhTMidrIKbw/lJVBPhYa+v5guEGcevhEFhgWQxFnQfHgQsIBct+HHK3XLfJ+utdGdIzdjp9xC
+oi2SBBtQwXu4PhvJVgSLL1KbralW6cH/ralYhzC2gfeXRfwZVzsrb+RH9JlF/h3x+JejiB03HFyP
+4HYlmlD4oFT/RJB2I9IyxsOrBr/8+7/zrX2SYgJbKdM1o5OaQ2RgXbL6Mv87BK9NQGr5x+PvI/1r
+y+UPizgN7gr8/g+YnzAx3WxSZfmLgb4i4RxYA7qRG4kHAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIB
+BjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqOFsmjd6LWvJPelSDGRjjCDWmujANBgkqhkiG
+9w0BAQUFAAOCAQEAPNV3PdrfibqHDAhUaiBQkr6wQT25JmSDCi/oQMCXKCeCMErJk/9q56YAf4lC
+mtYR5VPOL8zy2gXE/uJQxDqGfczafhAJO5I1KlOy/usrBdlsXebQ79NqZp4VKIV66IIArB6nCWlW
+QtNoURi+VJq/REG6Sb4gumlc7rh3zc5sH62Dlhh9DrUUOYTxKOkto557HnpyWoOzeW/vtPzQCqVY
+T0bf+215WfKEIlKuD8z7fDvnaspHYcN6+NOSBB+4IIThNlQWx0DeO4pz3N/GCUzf7Nr/1FNCocny
+Yh0igzyXxfkZYiesZSLX0zzG5Y6yU8xJzrww/nsOM5D77dIUkR8Hrw==
+-----END CERTIFICATE-----
+
+Security Communication RootCA2
+==============================
+-----BEGIN CERTIFICATE-----
+MIIDdzCCAl+gAwIBAgIBADANBgkqhkiG9w0BAQsFADBdMQswCQYDVQQGEwJKUDElMCMGA1UEChMc
+U0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UECxMeU2VjdXJpdHkgQ29tbXVuaWNh
+dGlvbiBSb290Q0EyMB4XDTA5MDUyOTA1MDAzOVoXDTI5MDUyOTA1MDAzOVowXTELMAkGA1UEBhMC
+SlAxJTAjBgNVBAoTHFNFQ09NIFRydXN0IFN5c3RlbXMgQ08uLExURC4xJzAlBgNVBAsTHlNlY3Vy
+aXR5IENvbW11bmljYXRpb24gUm9vdENBMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB
+ANAVOVKxUrO6xVmCxF1SrjpDZYBLx/KWvNs2l9amZIyoXvDjChz335c9S672XewhtUGrzbl+dp++
++T42NKA7wfYxEUV0kz1XgMX5iZnK5atq1LXaQZAQwdbWQonCv/Q4EpVMVAX3NuRFg3sUZdbcDE3R
+3n4MqzvEFb46VqZab3ZpUql6ucjrappdUtAtCms1FgkQhNBqyjoGADdH5H5XTz+L62e4iKrFvlNV
+spHEfbmwhRkGeC7bYRr6hfVKkaHnFtWOojnflLhwHyg/i/xAXmODPIMqGplrz95Zajv8bxbXH/1K
+EOtOghY6rCcMU/Gt1SSwawNQwS08Ft1ENCcadfsCAwEAAaNCMEAwHQYDVR0OBBYEFAqFqXdlBZh8
+QIH4D5csOPEK7DzPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEB
+CwUAA4IBAQBMOqNErLlFsceTfsgLCkLfZOoc7llsCLqJX2rKSpWeeo8HxdpFcoJxDjrSzG+ntKEj
+u/Ykn8sX/oymzsLS28yN/HH8AynBbF0zX2S2ZTuJbxh2ePXcokgfGT+Ok+vx+hfuzU7jBBJV1uXk
+3fs+BXziHV7Gp7yXT2g69ekuCkO2r1dcYmh8t/2jioSgrGK+KwmHNPBqAbubKVY8/gA3zyNs8U6q
+tnRGEmyR7jTV7JqR50S+kDFy1UkC9gLl9B/rfNmWVan/7Ir5mUf/NVoCqgTLiluHcSmRvaS0eg29
+mvVXIwAHIRc/SjnRBUkLp7Y3gaVdjKozXoEofKd9J+sAro03
+-----END CERTIFICATE-----
+
+EC-ACC
+======
+-----BEGIN CERTIFICATE-----
+MIIFVjCCBD6gAwIBAgIQ7is969Qh3hSoYqwE893EATANBgkqhkiG9w0BAQUFADCB8zELMAkGA1UE
+BhMCRVMxOzA5BgNVBAoTMkFnZW5jaWEgQ2F0YWxhbmEgZGUgQ2VydGlmaWNhY2lvIChOSUYgUS0w
+ODAxMTc2LUkpMSgwJgYDVQQLEx9TZXJ2ZWlzIFB1YmxpY3MgZGUgQ2VydGlmaWNhY2lvMTUwMwYD
+VQQLEyxWZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbCAoYykwMzE1MDMGA1UE
+CxMsSmVyYXJxdWlhIEVudGl0YXRzIGRlIENlcnRpZmljYWNpbyBDYXRhbGFuZXMxDzANBgNVBAMT
+BkVDLUFDQzAeFw0wMzAxMDcyMzAwMDBaFw0zMTAxMDcyMjU5NTlaMIHzMQswCQYDVQQGEwJFUzE7
+MDkGA1UEChMyQWdlbmNpYSBDYXRhbGFuYSBkZSBDZXJ0aWZpY2FjaW8gKE5JRiBRLTA4MDExNzYt
+SSkxKDAmBgNVBAsTH1NlcnZlaXMgUHVibGljcyBkZSBDZXJ0aWZpY2FjaW8xNTAzBgNVBAsTLFZl
+Z2V1IGh0dHBzOi8vd3d3LmNhdGNlcnQubmV0L3ZlcmFycmVsIChjKTAzMTUwMwYDVQQLEyxKZXJh
+cnF1aWEgRW50aXRhdHMgZGUgQ2VydGlmaWNhY2lvIENhdGFsYW5lczEPMA0GA1UEAxMGRUMtQUND
+MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsyLHT+KXQpWIR4NA9h0X84NzJB5R85iK
+w5K4/0CQBXCHYMkAqbWUZRkiFRfCQ2xmRJoNBD45b6VLeqpjt4pEndljkYRm4CgPukLjbo73FCeT
+ae6RDqNfDrHrZqJyTxIThmV6PttPB/SnCWDaOkKZx7J/sxaVHMf5NLWUhdWZXqBIoH7nF2W4onW4
+HvPlQn2v7fOKSGRdghST2MDk/7NQcvJ29rNdQlB50JQ+awwAvthrDk4q7D7SzIKiGGUzE3eeml0a
+E9jD2z3Il3rucO2n5nzbcc8tlGLfbdb1OL4/pYUKGbio2Al1QnDE6u/LDsg0qBIimAy4E5S2S+zw
+0JDnJwIDAQABo4HjMIHgMB0GA1UdEQQWMBSBEmVjX2FjY0BjYXRjZXJ0Lm5ldDAPBgNVHRMBAf8E
+BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUoMOLRKo3pUW/l4Ba0fF4opvpXY0wfwYD
+VR0gBHgwdjB0BgsrBgEEAfV4AQMBCjBlMCwGCCsGAQUFBwIBFiBodHRwczovL3d3dy5jYXRjZXJ0
+Lm5ldC92ZXJhcnJlbDA1BggrBgEFBQcCAjApGidWZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5l
+dC92ZXJhcnJlbCAwDQYJKoZIhvcNAQEFBQADggEBAKBIW4IB9k1IuDlVNZyAelOZ1Vr/sXE7zDkJ
+lF7W2u++AVtd0x7Y/X1PzaBB4DSTv8vihpw3kpBWHNzrKQXlxJ7HNd+KDM3FIUPpqojlNcAZQmNa
+Al6kSBg6hW/cnbw/nZzBh7h6YQjpdwt/cKt63dmXLGQehb+8dJahw3oS7AwaboMMPOhyRp/7SNVe
+l+axofjk70YllJyJ22k4vuxcDlbHZVHlUIiIv0LVKz3l+bqeLrPK9HOSAgu+TGbrIP65y7WZf+a2
+E/rKS03Z7lNGBjvGTq2TWoF+bCpLagVFjPIhpDGQh2xlnJ2lYJU6Un/10asIbvPuW/mIPX64b24D
+5EI=
+-----END CERTIFICATE-----
+
+Hellenic Academic and Research Institutions RootCA 2011
+=======================================================
+-----BEGIN CERTIFICATE-----
+MIIEMTCCAxmgAwIBAgIBADANBgkqhkiG9w0BAQUFADCBlTELMAkGA1UEBhMCR1IxRDBCBgNVBAoT
+O0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ2VydC4gQXV0aG9y
+aXR5MUAwPgYDVQQDEzdIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25z
+IFJvb3RDQSAyMDExMB4XDTExMTIwNjEzNDk1MloXDTMxMTIwMTEzNDk1MlowgZUxCzAJBgNVBAYT
+AkdSMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25z
+IENlcnQuIEF1dGhvcml0eTFAMD4GA1UEAxM3SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNo
+IEluc3RpdHV0aW9ucyBSb290Q0EgMjAxMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB
+AKlTAOMupvaO+mDYLZU++CwqVE7NuYRhlFhPjz2L5EPzdYmNUeTDN9KKiE15HrcS3UN4SoqS5tdI
+1Q+kOilENbgH9mgdVc04UfCMJDGFr4PJfel3r+0ae50X+bOdOFAPplp5kYCvN66m0zH7tSYJnTxa
+71HFK9+WXesyHgLacEnsbgzImjeN9/E2YEsmLIKe0HjzDQ9jpFEw4fkrJxIH2Oq9GGKYsFk3fb7u
+8yBRQlqD75O6aRXxYp2fmTmCobd0LovUxQt7L/DICto9eQqakxylKHJzkUOap9FNhYS5qXSPFEDH
+3N6sQWRstBmbAmNtJGSPRLIl6s5ddAxjMlyNh+UCAwEAAaOBiTCBhjAPBgNVHRMBAf8EBTADAQH/
+MAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQUppFC/RNhSiOeCKQp5dgTBCPuQSUwRwYDVR0eBEAwPqA8
+MAWCAy5ncjAFggMuZXUwBoIELmVkdTAGggQub3JnMAWBAy5ncjAFgQMuZXUwBoEELmVkdTAGgQQu
+b3JnMA0GCSqGSIb3DQEBBQUAA4IBAQAf73lB4XtuP7KMhjdCSk4cNx6NZrokgclPEg8hwAOXhiVt
+XdMiKahsog2p6z0GW5k6x8zDmjR/qw7IThzh+uTczQ2+vyT+bOdrwg3IBp5OjWEopmr95fZi6hg8
+TqBTnbI6nOulnJEWtk2C4AwFSKls9cz4y51JtPACpf1wA+2KIaWuE4ZJwzNzvoc7dIsXRSZMFpGD
+/md9zU1jZ/rzAxKWeAaNsWftjj++n08C9bMJL/NMh98qy5V8AcysNnq/onN694/BtZqhFLKPM58N
+7yLcZnuEvUUXBj08yrl3NI/K6s8/MT7jiOOASSXIl7WdmplNsDz4SgCbZN2fOUvRJ9e4
+-----END CERTIFICATE-----
+
+Actalis Authentication Root CA
+==============================
+-----BEGIN CERTIFICATE-----
+MIIFuzCCA6OgAwIBAgIIVwoRl0LE48wwDQYJKoZIhvcNAQELBQAwazELMAkGA1UEBhMCSVQxDjAM
+BgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8wMzM1ODUyMDk2NzEnMCUGA1UE
+AwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290IENBMB4XDTExMDkyMjExMjIwMloXDTMwMDky
+MjExMjIwMlowazELMAkGA1UEBhMCSVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlz
+IFMucC5BLi8wMzM1ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290
+IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAp8bEpSmkLO/lGMWwUKNvUTufClrJ
+wkg4CsIcoBh/kbWHuUA/3R1oHwiD1S0eiKD4j1aPbZkCkpAW1V8IbInX4ay8IMKx4INRimlNAJZa
+by/ARH6jDuSRzVju3PvHHkVH3Se5CAGfpiEd9UEtL0z9KK3giq0itFZljoZUj5NDKd45RnijMCO6
+zfB9E1fAXdKDa0hMxKufgFpbOr3JpyI/gCczWw63igxdBzcIy2zSekciRDXFzMwujt0q7bd9Zg1f
+YVEiVRvjRuPjPdA1YprbrxTIW6HMiRvhMCb8oJsfgadHHwTrozmSBp+Z07/T6k9QnBn+locePGX2
+oxgkg4YQ51Q+qDp2JE+BIcXjDwL4k5RHILv+1A7TaLndxHqEguNTVHnd25zS8gebLra8Pu2Fbe8l
+EfKXGkJh90qX6IuxEAf6ZYGyojnP9zz/GPvG8VqLWeICrHuS0E4UT1lF9gxeKF+w6D9Fz8+vm2/7
+hNN3WpVvrJSEnu68wEqPSpP4RCHiMUVhUE4Q2OM1fEwZtN4Fv6MGn8i1zeQf1xcGDXqVdFUNaBr8
+EBtiZJ1t4JWgw5QHVw0U5r0F+7if5t+L4sbnfpb2U8WANFAoWPASUHEXMLrmeGO89LKtmyuy/uE5
+jF66CyCU3nuDuP/jVo23Eek7jPKxwV2dpAtMK9myGPW1n0sCAwEAAaNjMGEwHQYDVR0OBBYEFFLY
+iDrIn3hm7YnzezhwlMkCAjbQMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUUtiIOsifeGbt
+ifN7OHCUyQICNtAwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQALe3KHwGCmSUyI
+WOYdiPcUZEim2FgKDk8TNd81HdTtBjHIgT5q1d07GjLukD0R0i70jsNjLiNmsGe+b7bAEzlgqqI0
+JZN1Ut6nna0Oh4lScWoWPBkdg/iaKWW+9D+a2fDzWochcYBNy+A4mz+7+uAwTc+G02UQGRjRlwKx
+K3JCaKygvU5a2hi/a5iB0P2avl4VSM0RFbnAKVy06Ij3Pjaut2L9HmLecHgQHEhb2rykOLpn7VU+
+Xlff1ANATIGk0k9jpwlCCRT8AKnCgHNPLsBA2RF7SOp6AsDT6ygBJlh0wcBzIm2Tlf05fbsq4/aC
+4yyXX04fkZT6/iyj2HYauE2yOE+b+h1IYHkm4vP9qdCa6HCPSXrW5b0KDtst842/6+OkfcvHlXHo
+2qN8xcL4dJIEG4aspCJTQLas/kx2z/uUMsA1n3Y/buWQbqCmJqK4LL7RK4X9p2jIugErsWx0Hbhz
+lefut8cl8ABMALJ+tguLHPPAUJ4lueAI3jZm/zel0btUZCzJJ7VLkn5l/9Mt4blOvH+kQSGQQXem
+OR/qnuOf0GZvBeyqdn6/axag67XH/JJULysRJyU3eExRarDzzFhdFPFqSBX/wge2sY0PjlxQRrM9
+vwGYT7JZVEc+NHt4bVaTLnPqZih4zR0Uv6CPLy64Lo7yFIrM6bV8+2ydDKXhlg==
+-----END CERTIFICATE-----
+
+Trustis FPS Root CA
+===================
+-----BEGIN CERTIFICATE-----
+MIIDZzCCAk+gAwIBAgIQGx+ttiD5JNM2a/fH8YygWTANBgkqhkiG9w0BAQUFADBFMQswCQYDVQQG
+EwJHQjEYMBYGA1UEChMPVHJ1c3RpcyBMaW1pdGVkMRwwGgYDVQQLExNUcnVzdGlzIEZQUyBSb290
+IENBMB4XDTAzMTIyMzEyMTQwNloXDTI0MDEyMTExMzY1NFowRTELMAkGA1UEBhMCR0IxGDAWBgNV
+BAoTD1RydXN0aXMgTGltaXRlZDEcMBoGA1UECxMTVHJ1c3RpcyBGUFMgUm9vdCBDQTCCASIwDQYJ
+KoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVQe547NdDfxIzNjpvto8A2mfRC6qc+gIMPpqdZh8mQ
+RUN+AOqGeSoDvT03mYlmt+WKVoaTnGhLaASMk5MCPjDSNzoiYYkchU59j9WvezX2fihHiTHcDnlk
+H5nSW7r+f2C/revnPDgpai/lkQtV/+xvWNUtyd5MZnGPDNcE2gfmHhjjvSkCqPoc4Vu5g6hBSLwa
+cY3nYuUtsuvffM/bq1rKMfFMIvMFE/eC+XN5DL7XSxzA0RU8k0Fk0ea+IxciAIleH2ulrG6nS4zt
+o3Lmr2NNL4XSFDWaLk6M6jKYKIahkQlBOrTh4/L68MkKokHdqeMDx4gVOxzUGpTXn2RZEm0CAwEA
+AaNTMFEwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBS6+nEleYtXQSUhhgtx67JkDoshZzAd
+BgNVHQ4EFgQUuvpxJXmLV0ElIYYLceuyZA6LIWcwDQYJKoZIhvcNAQEFBQADggEBAH5Y//01GX2c
+GE+esCu8jowU/yyg2kdbw++BLa8F6nRIW/M+TgfHbcWzk88iNVy2P3UnXwmWzaD+vkAMXBJV+JOC
+yinpXj9WV4s4NvdFGkwozZ5BuO1WTISkQMi4sKUraXAEasP41BIy+Q7DsdwyhEQsb8tGD+pmQQ9P
+8Vilpg0ND2HepZ5dfWWhPBfnqFVO76DH7cZEf1T1o+CP8HxVIo8ptoGj4W1OLBuAZ+ytIJ8MYmHV
+l/9D7S3B2l0pKoU/rGXuhg8FjZBf3+6f9L/uHfuY5H+QK4R4EA5sSVPvFVtlRkpdr7r7OnIdzfYl
+iB6XzCGcKQENZetX2fNXlrtIzYE=
+-----END CERTIFICATE-----
+
+Buypass Class 2 Root CA
+=======================
+-----BEGIN CERTIFICATE-----
+MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEdMBsGA1UECgwU
+QnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3MgQ2xhc3MgMiBSb290IENBMB4X
+DTEwMTAyNjA4MzgwM1oXDTQwMTAyNjA4MzgwM1owTjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1
+eXBhc3MgQVMtOTgzMTYzMzI3MSAwHgYDVQQDDBdCdXlwYXNzIENsYXNzIDIgUm9vdCBDQTCCAiIw
+DQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANfHXvfBB9R3+0Mh9PT1aeTuMgHbo4Yf5FkNuud1
+g1Lr6hxhFUi7HQfKjK6w3Jad6sNgkoaCKHOcVgb/S2TwDCo3SbXlzwx87vFKu3MwZfPVL4O2fuPn
+9Z6rYPnT8Z2SdIrkHJasW4DptfQxh6NR/Md+oW+OU3fUl8FVM5I+GC911K2GScuVr1QGbNgGE41b
+/+EmGVnAJLqBcXmQRFBoJJRfuLMR8SlBYaNByyM21cHxMlAQTn/0hpPshNOOvEu/XAFOBz3cFIqU
+CqTqc/sLUegTBxj6DvEr0VQVfTzh97QZQmdiXnfgolXsttlpF9U6r0TtSsWe5HonfOV116rLJeff
+awrbD02TTqigzXsu8lkBarcNuAeBfos4GzjmCleZPe4h6KP1DBbdi+w0jpwqHAAVF41og9JwnxgI
+zRFo1clrUs3ERo/ctfPYV3Me6ZQ5BL/T3jjetFPsaRyifsSP5BtwrfKi+fv3FmRmaZ9JUaLiFRhn
+Bkp/1Wy1TbMz4GHrXb7pmA8y1x1LPC5aAVKRCfLf6o3YBkBjqhHk/sM3nhRSP/TizPJhk9H9Z2vX
+Uq6/aKtAQ6BXNVN48FP4YUIHZMbXb5tMOA1jrGKvNouicwoN9SG9dKpN6nIDSdvHXx1iY8f93ZHs
+M+71bbRuMGjeyNYmsHVee7QHIJihdjK4TWxPAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYD
+VR0OBBYEFMmAd+BikoL1RpzzuvdMw964o605MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsF
+AAOCAgEAU18h9bqwOlI5LJKwbADJ784g7wbylp7ppHR/ehb8t/W2+xUbP6umwHJdELFx7rxP462s
+A20ucS6vxOOto70MEae0/0qyexAQH6dXQbLArvQsWdZHEIjzIVEpMMpghq9Gqx3tOluwlN5E40EI
+osHsHdb9T7bWR9AUC8rmyrV7d35BH16Dx7aMOZawP5aBQW9gkOLo+fsicdl9sz1Gv7SEr5AcD48S
+aq/v7h56rgJKihcrdv6sVIkkLE8/trKnToyokZf7KcZ7XC25y2a2t6hbElGFtQl+Ynhw/qlqYLYd
+DnkM/crqJIByw5c/8nerQyIKx+u2DISCLIBrQYoIwOula9+ZEsuK1V6ADJHgJgg2SMX6OBE1/yWD
+LfJ6v9r9jv6ly0UsH8SIU653DtmadsWOLB2jutXsMq7Aqqz30XpN69QH4kj3Io6wpJ9qzo6ysmD0
+oyLQI+uUWnpp3Q+/QFesa1lQ2aOZ4W7+jQF5JyMV3pKdewlNWudLSDBaGOYKbeaP4NK75t98biGC
+wWg5TbSYWGZizEqQXsP6JwSxeRV0mcy+rSDeJmAc61ZRpqPq5KM/p/9h3PFaTWwyI0PurKju7koS
+CTxdccK+efrCh2gdC/1cacwG0Jp9VJkqyTkaGa9LKkPzY11aWOIv4x3kqdbQCtCev9eBCfHJxyYN
+rJgWVqA=
+-----END CERTIFICATE-----
+
+Buypass Class 3 Root CA
+=======================
+-----BEGIN CERTIFICATE-----
+MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEdMBsGA1UECgwU
+QnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3MgQ2xhc3MgMyBSb290IENBMB4X
+DTEwMTAyNjA4Mjg1OFoXDTQwMTAyNjA4Mjg1OFowTjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1
+eXBhc3MgQVMtOTgzMTYzMzI3MSAwHgYDVQQDDBdCdXlwYXNzIENsYXNzIDMgUm9vdCBDQTCCAiIw
+DQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKXaCpUWUOOV8l6ddjEGMnqb8RB2uACatVI2zSRH
+sJ8YZLya9vrVediQYkwiL944PdbgqOkcLNt4EemOaFEVcsfzM4fkoF0LXOBXByow9c3EN3coTRiR
+5r/VUv1xLXA+58bEiuPwKAv0dpihi4dVsjoT/Lc+JzeOIuOoTyrvYLs9tznDDgFHmV0ST9tD+leh
+7fmdvhFHJlsTmKtdFoqwNxxXnUX/iJY2v7vKB3tvh2PX0DJq1l1sDPGzbjniazEuOQAnFN44wOwZ
+ZoYS6J1yFhNkUsepNxz9gjDthBgd9K5c/3ATAOux9TN6S9ZV+AWNS2mw9bMoNlwUxFFzTWsL8TQH
+2xc519woe2v1n/MuwU8XKhDzzMro6/1rqy6any2CbgTUUgGTLT2G/H783+9CHaZr77kgxve9oKeV
+/afmiSTYzIw0bOIjL9kSGiG5VZFvC5F5GQytQIgLcOJ60g7YaEi7ghM5EFjp2CoHxhLbWNvSO1UQ
+RwUVZ2J+GGOmRj8JDlQyXr8NYnon74Do29lLBlo3WiXQCBJ31G8JUJc9yB3D34xFMFbG02SrZvPA
+Xpacw8Tvw3xrizp5f7NJzz3iiZ+gMEuFuZyUJHmPfWupRWgPK9Dx2hzLabjKSWJtyNBjYt1gD1iq
+j6G8BaVmos8bdrKEZLFMOVLAMLrwjEsCsLa3AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYD
+VR0OBBYEFEe4zf/lb+74suwvTg75JbCOPGvDMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsF
+AAOCAgEAACAjQTUEkMJAYmDv4jVM1z+s4jSQuKFvdvoWFqRINyzpkMLyPPgKn9iB5btb2iUspKdV
+cSQy9sgL8rxq+JOssgfCX5/bzMiKqr5qb+FJEMwx14C7u8jYog5kV+qi9cKpMRXSIGrs/CIBKM+G
+uIAeqcwRpTzyFrNHnfzSgCHEy9BHcEGhyoMZCCxt8l13nIoUE9Q2HJLw5QY33KbmkJs4j1xrG0aG
+Q0JfPgEHU1RdZX33inOhmlRaHylDFCfChQ+1iHsaO5S3HWCntZznKWlXWpuTekMwGwPXYshApqr8
+ZORK15FTAaggiG6cX0S5y2CBNOxv033aSF/rtJC8LakcC6wc1aJoIIAE1vyxjy+7SjENSoYc6+I2
+KSb12tjE8nVhz36udmNKekBlk4f4HoCMhuWG1o8O/FMsYOgWYRqiPkN7zTlgVGr18okmAWiDSKIz
+6MkEkbIRNBE+6tBDGR8Dk5AM/1E9V/RBbuHLoL7ryWPNbczk+DaqaJ3tvV2XcEQNtg413OEMXbug
+UZTLfhbrES+jkkXITHHZvMmZUldGL1DPvTVp9D0VzgalLA8+9oG6lLvDu79leNKGef9JOxqDDPDe
+eOzI8k1MGt6CKfjBWtrt7uYnXuhF0J0cUahoq0Tj0Itq4/g7u9xN12TyUb7mqqta6THuBrxzvxNi
+Cp/HuZc=
+-----END CERTIFICATE-----
+
+T-TeleSec GlobalRoot Class 3
+============================
+-----BEGIN CERTIFICATE-----
+MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoM
+IlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBU
+cnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwHhcNMDgx
+MDAxMTAyOTU2WhcNMzMxMDAxMjM1OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lz
+dGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBD
+ZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwggEiMA0GCSqGSIb3
+DQEBAQUAA4IBDwAwggEKAoIBAQC9dZPwYiJvJK7genasfb3ZJNW4t/zN8ELg63iIVl6bmlQdTQyK
+9tPPcPRStdiTBONGhnFBSivwKixVA9ZIw+A5OO3yXDw/RLyTPWGrTs0NvvAgJ1gORH8EGoel15YU
+NpDQSXuhdfsaa3Ox+M6pCSzyU9XDFES4hqX2iys52qMzVNn6chr3IhUciJFrf2blw2qAsCTz34ZF
+iP0Zf3WHHx+xGwpzJFu5ZeAsVMhg02YXP+HMVDNzkQI6pn97djmiH5a2OK61yJN0HZ65tOVgnS9W
+0eDrXltMEnAMbEQgqxHY9Bn20pxSN+f6tsIxO0rUFJmtxxr1XV/6B7h8DR/Wgx6zAgMBAAGjQjBA
+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS1A/d2O2GCahKqGFPr
+AyGUv/7OyjANBgkqhkiG9w0BAQsFAAOCAQEAVj3vlNW92nOyWL6ukK2YJ5f+AbGwUgC4TeQbIXQb
+fsDuXmkqJa9c1h3a0nnJ85cp4IaH3gRZD/FZ1GSFS5mvJQQeyUapl96Cshtwn5z2r3Ex3XsFpSzT
+ucpH9sry9uetuUg/vBa3wW306gmv7PO15wWeph6KU1HWk4HMdJP2udqmJQV0eVp+QD6CSyYRMG7h
+P0HHRwA11fXT91Q+gT3aSWqas+8QPebrb9HIIkfLzM8BMZLZGOMivgkeGj5asuRrDFR6fUNOuIml
+e9eiPZaGzPImNC1qkp2aGtAw4l1OBLBfiyB+d8E9lYLRRpo7PHi4b6HQDWSieB4pTpPDpFQUWw==
+-----END CERTIFICATE-----
+
+D-TRUST Root Class 3 CA 2 2009
+==============================
+-----BEGIN CERTIFICATE-----
+MIIEMzCCAxugAwIBAgIDCYPzMA0GCSqGSIb3DQEBCwUAME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQK
+DAxELVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTAe
+Fw0wOTExMDUwODM1NThaFw0yOTExMDUwODM1NThaME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxE
+LVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTCCASIw
+DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOySs96R+91myP6Oi/WUEWJNTrGa9v+2wBoqOAD
+ER03UAifTUpolDWzU9GUY6cgVq/eUXjsKj3zSEhQPgrfRlWLJ23DEE0NkVJD2IfgXU42tSHKXzlA
+BF9bfsyjxiupQB7ZNoTWSPOSHjRGICTBpFGOShrvUD9pXRl/RcPHAY9RySPocq60vFYJfxLLHLGv
+KZAKyVXMD9O0Gu1HNVpK7ZxzBCHQqr0ME7UAyiZsxGsMlFqVlNpQmvH/pStmMaTJOKDfHR+4CS7z
+p+hnUquVH+BGPtikw8paxTGA6Eian5Rp/hnd2HN8gcqW3o7tszIFZYQ05ub9VxC1X3a/L7AQDcUC
+AwEAAaOCARowggEWMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFP3aFMSfMN4hvR5COfyrYyNJ
+4PGEMA4GA1UdDwEB/wQEAwIBBjCB0wYDVR0fBIHLMIHIMIGAoH6gfIZ6bGRhcDovL2RpcmVjdG9y
+eS5kLXRydXN0Lm5ldC9DTj1ELVRSVVNUJTIwUm9vdCUyMENsYXNzJTIwMyUyMENBJTIwMiUyMDIw
+MDksTz1ELVRydXN0JTIwR21iSCxDPURFP2NlcnRpZmljYXRlcmV2b2NhdGlvbmxpc3QwQ6BBoD+G
+PWh0dHA6Ly93d3cuZC10cnVzdC5uZXQvY3JsL2QtdHJ1c3Rfcm9vdF9jbGFzc18zX2NhXzJfMjAw
+OS5jcmwwDQYJKoZIhvcNAQELBQADggEBAH+X2zDI36ScfSF6gHDOFBJpiBSVYEQBrLLpME+bUMJm
+2H6NMLVwMeniacfzcNsgFYbQDfC+rAF1hM5+n02/t2A7nPPKHeJeaNijnZflQGDSNiH+0LS4F9p0
+o3/U37CYAqxva2ssJSRyoWXuJVrl5jLn8t+rSfrzkGkj2wTZ51xY/GXUl77M/C4KzCUqNQT4YJEV
+dT1B/yMfGchs64JTBKbkTCJNjYy6zltz7GRUUG3RnFX7acM2w4y8PIWmawomDeCTmGCufsYkl4ph
+X5GOZpIJhzbNi5stPvZR1FDUWSi9g/LMKHtThm3YJohw1+qRzT65ysCQblrGXnRl11z+o+I=
+-----END CERTIFICATE-----
+
+D-TRUST Root Class 3 CA 2 EV 2009
+=================================
+-----BEGIN CERTIFICATE-----
+MIIEQzCCAyugAwIBAgIDCYP0MA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQK
+DAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAw
+OTAeFw0wOTExMDUwODUwNDZaFw0yOTExMDUwODUwNDZaMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQK
+DAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAw
+OTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJnxhDRwui+3MKCOvXwEz75ivJn9gpfS
+egpnljgJ9hBOlSJzmY3aFS3nBfwZcyK3jpgAvDw9rKFs+9Z5JUut8Mxk2og+KbgPCdM03TP1YtHh
+zRnp7hhPTFiu4h7WDFsVWtg6uMQYZB7jM7K1iXdODL/ZlGsTl28So/6ZqQTMFexgaDbtCHu39b+T
+7WYxg4zGcTSHThfqr4uRjRxWQa4iN1438h3Z0S0NL2lRp75mpoo6Kr3HGrHhFPC+Oh25z1uxav60
+sUYgovseO3Dvk5h9jHOW8sXvhXCtKSb8HgQ+HKDYD8tSg2J87otTlZCpV6LqYQXY+U3EJ/pure35
+11H3a6UCAwEAAaOCASQwggEgMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNOUikxiEyoZLsyv
+cop9NteaHNxnMA4GA1UdDwEB/wQEAwIBBjCB3QYDVR0fBIHVMIHSMIGHoIGEoIGBhn9sZGFwOi8v
+ZGlyZWN0b3J5LmQtdHJ1c3QubmV0L0NOPUQtVFJVU1QlMjBSb290JTIwQ2xhc3MlMjAzJTIwQ0El
+MjAyJTIwRVYlMjAyMDA5LE89RC1UcnVzdCUyMEdtYkgsQz1ERT9jZXJ0aWZpY2F0ZXJldm9jYXRp
+b25saXN0MEagRKBChkBodHRwOi8vd3d3LmQtdHJ1c3QubmV0L2NybC9kLXRydXN0X3Jvb3RfY2xh
+c3NfM19jYV8yX2V2XzIwMDkuY3JsMA0GCSqGSIb3DQEBCwUAA4IBAQA07XtaPKSUiO8aEXUHL7P+
+PPoeUSbrh/Yp3uDx1MYkCenBz1UbtDDZzhr+BlGmFaQt77JLvyAoJUnRpjZ3NOhk31KxEcdzes05
+nsKtjHEh8lprr988TlWvsoRlFIm5d8sqMb7Po23Pb0iUMkZv53GMoKaEGTcH8gNFCSuGdXzfX2lX
+ANtu2KZyIktQ1HWYVt+3GP9DQ1CuekR78HlR10M9p9OB0/DJT7naxpeG0ILD5EJt/rDiZE4OJudA
+NCa1CInXCGNjOCd1HjPqbqjdn5lPdE2BiYBL3ZqXKVwvvoFBuYz/6n1gBp7N1z3TLqMVvKjmJuVv
+w9y4AyHqnxbxLFS1
+-----END CERTIFICATE-----
+
+CA Disig Root R2
+================
+-----BEGIN CERTIFICATE-----
+MIIFaTCCA1GgAwIBAgIJAJK4iNuwisFjMA0GCSqGSIb3DQEBCwUAMFIxCzAJBgNVBAYTAlNLMRMw
+EQYDVQQHEwpCcmF0aXNsYXZhMRMwEQYDVQQKEwpEaXNpZyBhLnMuMRkwFwYDVQQDExBDQSBEaXNp
+ZyBSb290IFIyMB4XDTEyMDcxOTA5MTUzMFoXDTQyMDcxOTA5MTUzMFowUjELMAkGA1UEBhMCU0sx
+EzARBgNVBAcTCkJyYXRpc2xhdmExEzARBgNVBAoTCkRpc2lnIGEucy4xGTAXBgNVBAMTEENBIERp
+c2lnIFJvb3QgUjIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCio8QACdaFXS1tFPbC
+w3OeNcJxVX6B+6tGUODBfEl45qt5WDza/3wcn9iXAng+a0EE6UG9vgMsRfYvZNSrXaNHPWSb6Wia
+xswbP7q+sos0Ai6YVRn8jG+qX9pMzk0DIaPY0jSTVpbLTAwAFjxfGs3Ix2ymrdMxp7zo5eFm1tL7
+A7RBZckQrg4FY8aAamkw/dLukO8NJ9+flXP04SXabBbeQTg06ov80egEFGEtQX6sx3dOy1FU+16S
+GBsEWmjGycT6txOgmLcRK7fWV8x8nhfRyyX+hk4kLlYMeE2eARKmK6cBZW58Yh2EhN/qwGu1pSqV
+g8NTEQxzHQuyRpDRQjrOQG6Vrf/GlK1ul4SOfW+eioANSW1z4nuSHsPzwfPrLgVv2RvPN3YEyLRa
+5Beny912H9AZdugsBbPWnDTYltxhh5EF5EQIM8HauQhl1K6yNg3ruji6DOWbnuuNZt2Zz9aJQfYE
+koopKW1rOhzndX0CcQ7zwOe9yxndnWCywmZgtrEE7snmhrmaZkCo5xHtgUUDi/ZnWejBBhG93c+A
+Ak9lQHhcR1DIm+YfgXvkRKhbhZri3lrVx/k6RGZL5DJUfORsnLMOPReisjQS1n6yqEm70XooQL6i
+Fh/f5DcfEXP7kAplQ6INfPgGAVUzfbANuPT1rqVCV3w2EYx7XsQDnYx5nQIDAQABo0IwQDAPBgNV
+HRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUtZn4r7CU9eMg1gqtzk5WpC5u
+Qu0wDQYJKoZIhvcNAQELBQADggIBACYGXnDnZTPIgm7ZnBc6G3pmsgH2eDtpXi/q/075KMOYKmFM
+tCQSin1tERT3nLXK5ryeJ45MGcipvXrA1zYObYVybqjGom32+nNjf7xueQgcnYqfGopTpti72TVV
+sRHFqQOzVju5hJMiXn7B9hJSi+osZ7z+Nkz1uM/Rs0mSO9MpDpkblvdhuDvEK7Z4bLQjb/D907Je
+dR+Zlais9trhxTF7+9FGs9K8Z7RiVLoJ92Owk6Ka+elSLotgEqv89WBW7xBci8QaQtyDW2QOy7W8
+1k/BfDxujRNt+3vrMNDcTa/F1balTFtxyegxvug4BkihGuLq0t4SOVga/4AOgnXmt8kHbA7v/zjx
+mHHEt38OFdAlab0inSvtBfZGR6ztwPDUO+Ls7pZbkBNOHlY667DvlruWIxG68kOGdGSVyCh13x01
+utI3gzhTODY7z2zp+WsO0PsE6E9312UBeIYMej4hYvF/Y3EMyZ9E26gnonW+boE+18DrG5gPcFw0
+sorMwIUY6256s/daoQe/qUKS82Ail+QUoQebTnbAjn39pCXHR+3/H3OszMOl6W8KjptlwlCFtaOg
+UxLMVYdh84GuEEZhvUQhuMI9dM9+JDX6HAcOmz0iyu8xL4ysEr3vQCj8KWefshNPZiTEUxnpHikV
+7+ZtsH8tZ/3zbBt1RqPlShfppNcL
+-----END CERTIFICATE-----
+
+ACCVRAIZ1
+=========
+-----BEGIN CERTIFICATE-----
+MIIH0zCCBbugAwIBAgIIXsO3pkN/pOAwDQYJKoZIhvcNAQEFBQAwQjESMBAGA1UEAwwJQUNDVlJB
+SVoxMRAwDgYDVQQLDAdQS0lBQ0NWMQ0wCwYDVQQKDARBQ0NWMQswCQYDVQQGEwJFUzAeFw0xMTA1
+MDUwOTM3MzdaFw0zMDEyMzEwOTM3MzdaMEIxEjAQBgNVBAMMCUFDQ1ZSQUlaMTEQMA4GA1UECwwH
+UEtJQUNDVjENMAsGA1UECgwEQUNDVjELMAkGA1UEBhMCRVMwggIiMA0GCSqGSIb3DQEBAQUAA4IC
+DwAwggIKAoICAQCbqau/YUqXry+XZpp0X9DZlv3P4uRm7x8fRzPCRKPfmt4ftVTdFXxpNRFvu8gM
+jmoYHtiP2Ra8EEg2XPBjs5BaXCQ316PWywlxufEBcoSwfdtNgM3802/J+Nq2DoLSRYWoG2ioPej0
+RGy9ocLLA76MPhMAhN9KSMDjIgro6TenGEyxCQ0jVn8ETdkXhBilyNpAlHPrzg5XPAOBOp0KoVdD
+aaxXbXmQeOW1tDvYvEyNKKGno6e6Ak4l0Squ7a4DIrhrIA8wKFSVf+DuzgpmndFALW4ir50awQUZ
+0m/A8p/4e7MCQvtQqR0tkw8jq8bBD5L/0KIV9VMJcRz/RROE5iZe+OCIHAr8Fraocwa48GOEAqDG
+WuzndN9wrqODJerWx5eHk6fGioozl2A3ED6XPm4pFdahD9GILBKfb6qkxkLrQaLjlUPTAYVtjrs7
+8yM2x/474KElB0iryYl0/wiPgL/AlmXz7uxLaL2diMMxs0Dx6M/2OLuc5NF/1OVYm3z61PMOm3WR
+5LpSLhl+0fXNWhn8ugb2+1KoS5kE3fj5tItQo05iifCHJPqDQsGH+tUtKSpacXpkatcnYGMN285J
+9Y0fkIkyF/hzQ7jSWpOGYdbhdQrqeWZ2iE9x6wQl1gpaepPluUsXQA+xtrn13k/c4LOsOxFwYIRK
+Q26ZIMApcQrAZQIDAQABo4ICyzCCAscwfQYIKwYBBQUHAQEEcTBvMEwGCCsGAQUFBzAChkBodHRw
+Oi8vd3d3LmFjY3YuZXMvZmlsZWFkbWluL0FyY2hpdm9zL2NlcnRpZmljYWRvcy9yYWl6YWNjdjEu
+Y3J0MB8GCCsGAQUFBzABhhNodHRwOi8vb2NzcC5hY2N2LmVzMB0GA1UdDgQWBBTSh7Tj3zcnk1X2
+VuqB5TbMjB4/vTAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNKHtOPfNyeTVfZW6oHlNsyM
+Hj+9MIIBcwYDVR0gBIIBajCCAWYwggFiBgRVHSAAMIIBWDCCASIGCCsGAQUFBwICMIIBFB6CARAA
+QQB1AHQAbwByAGkAZABhAGQAIABkAGUAIABDAGUAcgB0AGkAZgBpAGMAYQBjAGkA8wBuACAAUgBh
+AO0AegAgAGQAZQAgAGwAYQAgAEEAQwBDAFYAIAAoAEEAZwBlAG4AYwBpAGEAIABkAGUAIABUAGUA
+YwBuAG8AbABvAGcA7QBhACAAeQAgAEMAZQByAHQAaQBmAGkAYwBhAGMAaQDzAG4AIABFAGwAZQBj
+AHQAcgDzAG4AaQBjAGEALAAgAEMASQBGACAAUQA0ADYAMAAxADEANQA2AEUAKQAuACAAQwBQAFMA
+IABlAG4AIABoAHQAdABwADoALwAvAHcAdwB3AC4AYQBjAGMAdgAuAGUAczAwBggrBgEFBQcCARYk
+aHR0cDovL3d3dy5hY2N2LmVzL2xlZ2lzbGFjaW9uX2MuaHRtMFUGA1UdHwROMEwwSqBIoEaGRGh0
+dHA6Ly93d3cuYWNjdi5lcy9maWxlYWRtaW4vQXJjaGl2b3MvY2VydGlmaWNhZG9zL3JhaXphY2N2
+MV9kZXIuY3JsMA4GA1UdDwEB/wQEAwIBBjAXBgNVHREEEDAOgQxhY2N2QGFjY3YuZXMwDQYJKoZI
+hvcNAQEFBQADggIBAJcxAp/n/UNnSEQU5CmH7UwoZtCPNdpNYbdKl02125DgBS4OxnnQ8pdpD70E
+R9m+27Up2pvZrqmZ1dM8MJP1jaGo/AaNRPTKFpV8M9xii6g3+CfYCS0b78gUJyCpZET/LtZ1qmxN
+YEAZSUNUY9rizLpm5U9EelvZaoErQNV/+QEnWCzI7UiRfD+mAM/EKXMRNt6GGT6d7hmKG9Ww7Y49
+nCrADdg9ZuM8Db3VlFzi4qc1GwQA9j9ajepDvV+JHanBsMyZ4k0ACtrJJ1vnE5Bc5PUzolVt3OAJ
+TS+xJlsndQAJxGJ3KQhfnlmstn6tn1QwIgPBHnFk/vk4CpYY3QIUrCPLBhwepH2NDd4nQeit2hW3
+sCPdK6jT2iWH7ehVRE2I9DZ+hJp4rPcOVkkO1jMl1oRQQmwgEh0q1b688nCBpHBgvgW1m54ERL5h
+I6zppSSMEYCUWqKiuUnSwdzRp+0xESyeGabu4VXhwOrPDYTkF7eifKXeVSUG7szAh1xA2syVP1Xg
+Nce4hL60Xc16gwFy7ofmXx2utYXGJt/mwZrpHgJHnyqobalbz+xFd3+YJ5oyXSrjhO7FmGYvliAd
+3djDJ9ew+f7Zfc3Qn48LFFhRny+Lwzgt3uiP1o2HpPVWQxaZLPSkVrQ0uGE3ycJYgBugl6H8WY3p
+EfbRD0tVNEYqi4Y7
+-----END CERTIFICATE-----
+
+TWCA Global Root CA
+===================
+-----BEGIN CERTIFICATE-----
+MIIFQTCCAymgAwIBAgICDL4wDQYJKoZIhvcNAQELBQAwUTELMAkGA1UEBhMCVFcxEjAQBgNVBAoT
+CVRBSVdBTi1DQTEQMA4GA1UECxMHUm9vdCBDQTEcMBoGA1UEAxMTVFdDQSBHbG9iYWwgUm9vdCBD
+QTAeFw0xMjA2MjcwNjI4MzNaFw0zMDEyMzExNTU5NTlaMFExCzAJBgNVBAYTAlRXMRIwEAYDVQQK
+EwlUQUlXQU4tQ0ExEDAOBgNVBAsTB1Jvb3QgQ0ExHDAaBgNVBAMTE1RXQ0EgR2xvYmFsIFJvb3Qg
+Q0EwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCwBdvI64zEbooh745NnHEKH1Jw7W2C
+nJfF10xORUnLQEK1EjRsGcJ0pDFfhQKX7EMzClPSnIyOt7h52yvVavKOZsTuKwEHktSz0ALfUPZV
+r2YOy+BHYC8rMjk1Ujoog/h7FsYYuGLWRyWRzvAZEk2tY/XTP3VfKfChMBwqoJimFb3u/Rk28OKR
+Q4/6ytYQJ0lM793B8YVwm8rqqFpD/G2Gb3PpN0Wp8DbHzIh1HrtsBv+baz4X7GGqcXzGHaL3SekV
+tTzWoWH1EfcFbx39Eb7QMAfCKbAJTibc46KokWofwpFFiFzlmLhxpRUZyXx1EcxwdE8tmx2RRP1W
+KKD+u4ZqyPpcC1jcxkt2yKsi2XMPpfRaAok/T54igu6idFMqPVMnaR1sjjIsZAAmY2E2TqNGtz99
+sy2sbZCilaLOz9qC5wc0GZbpuCGqKX6mOL6OKUohZnkfs8O1CWfe1tQHRvMq2uYiN2DLgbYPoA/p
+yJV/v1WRBXrPPRXAb94JlAGD1zQbzECl8LibZ9WYkTunhHiVJqRaCPgrdLQABDzfuBSO6N+pjWxn
+kjMdwLfS7JLIvgm/LCkFbwJrnu+8vyq8W8BQj0FwcYeyTbcEqYSjMq+u7msXi7Kx/mzhkIyIqJdI
+zshNy/MGz19qCkKxHh53L46g5pIOBvwFItIm4TFRfTLcDwIDAQABoyMwITAOBgNVHQ8BAf8EBAMC
+AQYwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAgEAXzSBdu+WHdXltdkCY4QWwa6g
+cFGn90xHNcgL1yg9iXHZqjNB6hQbbCEAwGxCGX6faVsgQt+i0trEfJdLjbDorMjupWkEmQqSpqsn
+LhpNgb+E1HAerUf+/UqdM+DyucRFCCEK2mlpc3INvjT+lIutwx4116KD7+U4x6WFH6vPNOw/KP4M
+8VeGTslV9xzU2KV9Bnpv1d8Q34FOIWWxtuEXeZVFBs5fzNxGiWNoRI2T9GRwoD2dKAXDOXC4Ynsg
+/eTb6QihuJ49CcdP+yz4k3ZB3lLg4VfSnQO8d57+nile98FRYB/e2guyLXW3Q0iT5/Z5xoRdgFlg
+lPx4mI88k1HtQJAH32RjJMtOcQWh15QaiDLxInQirqWm2BJpTGCjAu4r7NRjkgtevi92a6O2JryP
+A9gK8kxkRr05YuWW6zRjESjMlfGt7+/cgFhI6Uu46mWs6fyAtbXIRfmswZ/ZuepiiI7E8UuDEq3m
+i4TWnsLrgxifarsbJGAzcMzs9zLzXNl5fe+epP7JI8Mk7hWSsT2RTyaGvWZzJBPqpK5jwa19hAM8
+EHiGG3njxPPyBJUgriOCxLM6AGK/5jYk4Ve6xx6QddVfP5VhK8E7zeWzaGHQRiapIVJpLesux+t3
+zqY6tQMzT3bR51xUAV3LePTJDL/PEo4XLSNolOer/qmyKwbQBM0=
+-----END CERTIFICATE-----
+
+TeliaSonera Root CA v1
+======================
+-----BEGIN CERTIFICATE-----
+MIIFODCCAyCgAwIBAgIRAJW+FqD3LkbxezmCcvqLzZYwDQYJKoZIhvcNAQEFBQAwNzEUMBIGA1UE
+CgwLVGVsaWFTb25lcmExHzAdBgNVBAMMFlRlbGlhU29uZXJhIFJvb3QgQ0EgdjEwHhcNMDcxMDE4
+MTIwMDUwWhcNMzIxMDE4MTIwMDUwWjA3MRQwEgYDVQQKDAtUZWxpYVNvbmVyYTEfMB0GA1UEAwwW
+VGVsaWFTb25lcmEgUm9vdCBDQSB2MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMK+
+6yfwIaPzaSZVfp3FVRaRXP3vIb9TgHot0pGMYzHw7CTww6XScnwQbfQ3t+XmfHnqjLWCi65ItqwA
+3GV17CpNX8GH9SBlK4GoRz6JI5UwFpB/6FcHSOcZrr9FZ7E3GwYq/t75rH2D+1665I+XZ75Ljo1k
+B1c4VWk0Nj0TSO9P4tNmHqTPGrdeNjPUtAa9GAH9d4RQAEX1jF3oI7x+/jXh7VB7qTCNGdMJjmhn
+Xb88lxhTuylixcpecsHHltTbLaC0H2kD7OriUPEMPPCs81Mt8Bz17Ww5OXOAFshSsCPN4D7c3TxH
+oLs1iuKYaIu+5b9y7tL6pe0S7fyYGKkmdtwoSxAgHNN/Fnct7W+A90m7UwW7XWjH1Mh1Fj+JWov3
+F0fUTPHSiXk+TT2YqGHeOh7S+F4D4MHJHIzTjU3TlTazN19jY5szFPAtJmtTfImMMsJu7D0hADnJ
+oWjiUIMusDor8zagrC/kb2HCUQk5PotTubtn2txTuXZZNp1D5SDgPTJghSJRt8czu90VL6R4pgd7
+gUY2BIbdeTXHlSw7sKMXNeVzH7RcWe/a6hBle3rQf5+ztCo3O3CLm1u5K7fsslESl1MpWtTwEhDc
+TwK7EpIvYtQ/aUN8Ddb8WHUBiJ1YFkveupD/RwGJBmr2X7KQarMCpgKIv7NHfirZ1fpoeDVNAgMB
+AAGjPzA9MA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1UdDgQWBBTwj1k4ALP1j5qW
+DNXr+nuqF+gTEjANBgkqhkiG9w0BAQUFAAOCAgEAvuRcYk4k9AwI//DTDGjkk0kiP0Qnb7tt3oNm
+zqjMDfz1mgbldxSR651Be5kqhOX//CHBXfDkH1e3damhXwIm/9fH907eT/j3HEbAek9ALCI18Bmx
+0GtnLLCo4MBANzX2hFxc469CeP6nyQ1Q6g2EdvZR74NTxnr/DlZJLo961gzmJ1TjTQpgcmLNkQfW
+pb/ImWvtxBnmq0wROMVvMeJuScg/doAmAyYp4Db29iBT4xdwNBedY2gea+zDTYa4EzAvXUYNR0PV
+G6pZDrlcjQZIrXSHX8f8MVRBE+LHIQ6e4B4N4cB7Q4WQxYpYxmUKeFfyxiMPAdkgS94P+5KFdSpc
+c41teyWRyu5FrgZLAMzTsVlQ2jqIOylDRl6XK1TOU2+NSueW+r9xDkKLfP0ooNBIytrEgUy7onOT
+JsjrDNYmiLbAJM+7vVvrdX3pCI6GMyx5dwlppYn8s3CQh3aP0yK7Qs69cwsgJirQmz1wHiRszYd2
+qReWt88NkvuOGKmYSdGe/mBEciG5Ge3C9THxOUiIkCR1VBatzvT4aRRkOfujuLpwQMcnHL/EVlP6
+Y2XQ8xwOFvVrhlhNGNTkDY6lnVuR3HYkUD/GKvvZt5y11ubQ2egZixVxSK236thZiNSQvxaz2ems
+WWFUyBy6ysHK4bkgTI86k4mloMy/0/Z1pHWWbVY=
+-----END CERTIFICATE-----
+
+E-Tugra Certification Authority
+===============================
+-----BEGIN CERTIFICATE-----
+MIIGSzCCBDOgAwIBAgIIamg+nFGby1MwDQYJKoZIhvcNAQELBQAwgbIxCzAJBgNVBAYTAlRSMQ8w
+DQYDVQQHDAZBbmthcmExQDA+BgNVBAoMN0UtVHXEn3JhIEVCRyBCaWxpxZ9pbSBUZWtub2xvamls
+ZXJpIHZlIEhpem1ldGxlcmkgQS7Fni4xJjAkBgNVBAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBN
+ZXJrZXppMSgwJgYDVQQDDB9FLVR1Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTEzMDMw
+NTEyMDk0OFoXDTIzMDMwMzEyMDk0OFowgbIxCzAJBgNVBAYTAlRSMQ8wDQYDVQQHDAZBbmthcmEx
+QDA+BgNVBAoMN0UtVHXEn3JhIEVCRyBCaWxpxZ9pbSBUZWtub2xvamlsZXJpIHZlIEhpem1ldGxl
+cmkgQS7Fni4xJjAkBgNVBAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBNZXJrZXppMSgwJgYDVQQD
+DB9FLVR1Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0BAQEFAAOCAg8A
+MIICCgKCAgEA4vU/kwVRHoViVF56C/UYB4Oufq9899SKa6VjQzm5S/fDxmSJPZQuVIBSOTkHS0vd
+hQd2h8y/L5VMzH2nPbxHD5hw+IyFHnSOkm0bQNGZDbt1bsipa5rAhDGvykPL6ys06I+XawGb1Q5K
+CKpbknSFQ9OArqGIW66z6l7LFpp3RMih9lRozt6Plyu6W0ACDGQXwLWTzeHxE2bODHnv0ZEoq1+g
+ElIwcxmOj+GMB6LDu0rw6h8VqO4lzKRG+Bsi77MOQ7osJLjFLFzUHPhdZL3Dk14opz8n8Y4e0ypQ
+BaNV2cvnOVPAmJ6MVGKLJrD3fY185MaeZkJVgkfnsliNZvcHfC425lAcP9tDJMW/hkd5s3kc91r0
+E+xs+D/iWR+V7kI+ua2oMoVJl0b+SzGPWsutdEcf6ZG33ygEIqDUD13ieU/qbIWGvaimzuT6w+Gz
+rt48Ue7LE3wBf4QOXVGUnhMMti6lTPk5cDZvlsouDERVxcr6XQKj39ZkjFqzAQqptQpHF//vkUAq
+jqFGOjGY5RH8zLtJVor8udBhmm9lbObDyz51Sf6Pp+KJxWfXnUYTTjF2OySznhFlhqt/7x3U+Lzn
+rFpct1pHXFXOVbQicVtbC/DP3KBhZOqp12gKY6fgDT+gr9Oq0n7vUaDmUStVkhUXU8u3Zg5mTPj5
+dUyQ5xJwx0UCAwEAAaNjMGEwHQYDVR0OBBYEFC7j27JJ0JxUeVz6Jyr+zE7S6E5UMA8GA1UdEwEB
+/wQFMAMBAf8wHwYDVR0jBBgwFoAULuPbsknQnFR5XPonKv7MTtLoTlQwDgYDVR0PAQH/BAQDAgEG
+MA0GCSqGSIb3DQEBCwUAA4ICAQAFNzr0TbdF4kV1JI+2d1LoHNgQk2Xz8lkGpD4eKexd0dCrfOAK
+kEh47U6YA5n+KGCRHTAduGN8qOY1tfrTYXbm1gdLymmasoR6d5NFFxWfJNCYExL/u6Au/U5Mh/jO
+XKqYGwXgAEZKgoClM4so3O0409/lPun++1ndYYRP0lSWE2ETPo+Aab6TR7U1Q9Jauz1c77NCR807
+VRMGsAnb/WP2OogKmW9+4c4bU2pEZiNRCHu8W1Ki/QY3OEBhj0qWuJA3+GbHeJAAFS6LrVE1Uweo
+a2iu+U48BybNCAVwzDk/dr2l02cmAYamU9JgO3xDf1WKvJUawSg5TB9D0pH0clmKuVb8P7Sd2nCc
+dlqMQ1DujjByTd//SffGqWfZbawCEeI6FiWnWAjLb1NBnEg4R2gz0dfHj9R0IdTDBZB6/86WiLEV
+KV0jq9BgoRJP3vQXzTLlyb/IQ639Lo7xr+L0mPoSHyDYwKcMhcWQ9DstliaxLL5Mq+ux0orJ23gT
+Dx4JnW2PAJ8C2sH6H3p6CcRK5ogql5+Ji/03X186zjhZhkuvcQu02PJwT58yE+Owp1fl2tpDy4Q0
+8ijE6m30Ku/Ba3ba+367hTzSU8JNvnHhRdH9I2cNE3X7z2VnIp2usAnRCf8dNL/+I5c30jn6PQ0G
+C7TbO6Orb1wdtn7os4I07QZcJA==
+-----END CERTIFICATE-----
+
+T-TeleSec GlobalRoot Class 2
+============================
+-----BEGIN CERTIFICATE-----
+MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoM
+IlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBU
+cnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwHhcNMDgx
+MDAxMTA0MDE0WhcNMzMxMDAxMjM1OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lz
+dGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBD
+ZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwggEiMA0GCSqGSIb3
+DQEBAQUAA4IBDwAwggEKAoIBAQCqX9obX+hzkeXaXPSi5kfl82hVYAUdAqSzm1nzHoqvNK38DcLZ
+SBnuaY/JIPwhqgcZ7bBcrGXHX+0CfHt8LRvWurmAwhiCFoT6ZrAIxlQjgeTNuUk/9k9uN0goOA/F
+vudocP05l03Sx5iRUKrERLMjfTlH6VJi1hKTXrcxlkIF+3anHqP1wvzpesVsqXFP6st4vGCvx970
+2cu+fjOlbpSD8DT6IavqjnKgP6TeMFvvhk1qlVtDRKgQFRzlAVfFmPHmBiiRqiDFt1MmUUOyCxGV
+WOHAD3bZwI18gfNycJ5v/hqO2V81xrJvNHy+SE/iWjnX2J14np+GPgNeGYtEotXHAgMBAAGjQjBA
+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS/WSA2AHmgoCJrjNXy
+YdK4LMuCSjANBgkqhkiG9w0BAQsFAAOCAQEAMQOiYQsfdOhyNsZt+U2e+iKo4YFWz827n+qrkRk4
+r6p8FU3ztqONpfSO9kSpp+ghla0+AGIWiPACuvxhI+YzmzB6azZie60EI4RYZeLbK4rnJVM3YlNf
+vNoBYimipidx5joifsFvHZVwIEoHNN/q/xWA5brXethbdXwFeilHfkCoMRN3zUA7tFFHei4R40cR
+3p1m0IvVVGb6g1XqfMIpiRvpb7PO4gWEyS8+eIVibslfwXhjdFjASBgMmTnrpMwatXlajRWc2BQN
+9noHV8cigwUtPJslJj0Ys6lDfMjIq2SPDqO/nBudMNva0Bkuqjzx+zOAduTNrRlPBSeOE6Fuwg==
+-----END CERTIFICATE-----
+
+Atos TrustedRoot 2011
+=====================
+-----BEGIN CERTIFICATE-----
+MIIDdzCCAl+gAwIBAgIIXDPLYixfszIwDQYJKoZIhvcNAQELBQAwPDEeMBwGA1UEAwwVQXRvcyBU
+cnVzdGVkUm9vdCAyMDExMQ0wCwYDVQQKDARBdG9zMQswCQYDVQQGEwJERTAeFw0xMTA3MDcxNDU4
+MzBaFw0zMDEyMzEyMzU5NTlaMDwxHjAcBgNVBAMMFUF0b3MgVHJ1c3RlZFJvb3QgMjAxMTENMAsG
+A1UECgwEQXRvczELMAkGA1UEBhMCREUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCV
+hTuXbyo7LjvPpvMpNb7PGKw+qtn4TaA+Gke5vJrf8v7MPkfoepbCJI419KkM/IL9bcFyYie96mvr
+54rMVD6QUM+A1JX76LWC1BTFtqlVJVfbsVD2sGBkWXppzwO3bw2+yj5vdHLqqjAqc2K+SZFhyBH+
+DgMq92og3AIVDV4VavzjgsG1xZ1kCWyjWZgHJ8cblithdHFsQ/H3NYkQ4J7sVaE3IqKHBAUsR320
+HLliKWYoyrfhk/WklAOZuXCFteZI6o1Q/NnezG8HDt0Lcp2AMBYHlT8oDv3FdU9T1nSatCQujgKR
+z3bFmx5VdJx4IbHwLfELn8LVlhgf8FQieowHAgMBAAGjfTB7MB0GA1UdDgQWBBSnpQaxLKYJYO7R
+l+lwrrw7GWzbITAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKelBrEspglg7tGX6XCuvDsZ
+bNshMBgGA1UdIAQRMA8wDQYLKwYBBAGwLQMEAQEwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEB
+CwUAA4IBAQAmdzTblEiGKkGdLD4GkGDEjKwLVLgfuXvTBznk+j57sj1O7Z8jvZfza1zv7v1Apt+h
+k6EKhqzvINB5Ab149xnYJDE0BAGmuhWawyfc2E8PzBhj/5kPDpFrdRbhIfzYJsdHt6bPWHJxfrrh
+TZVHO8mvbaG0weyJ9rQPOLXiZNwlz6bb65pcmaHFCN795trV1lpFDMS3wrUU77QR/w4VtfX128a9
+61qn8FYiqTxlVMYVqL2Gns2Dlmh6cYGJ4Qvh6hEbaAjMaZ7snkGeRDImeuKHCnE96+RapNLbxc3G
+3mB/ufNPRJLvKrcYPqcZ2Qt9sTdBQrC6YB3y/gkRsPCHe6ed
+-----END CERTIFICATE-----
+
+QuoVadis Root CA 1 G3
+=====================
+-----BEGIN CERTIFICATE-----
+MIIFYDCCA0igAwIBAgIUeFhfLq0sGUvjNwc1NBMotZbUZZMwDQYJKoZIhvcNAQELBQAwSDELMAkG
+A1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAcBgNVBAMTFVF1b1ZhZGlzIFJv
+b3QgQ0EgMSBHMzAeFw0xMjAxMTIxNzI3NDRaFw00MjAxMTIxNzI3NDRaMEgxCzAJBgNVBAYTAkJN
+MRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDEg
+RzMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCgvlAQjunybEC0BJyFuTHK3C3kEakE
+PBtVwedYMB0ktMPvhd6MLOHBPd+C5k+tR4ds7FtJwUrVu4/sh6x/gpqG7D0DmVIB0jWerNrwU8lm
+PNSsAgHaJNM7qAJGr6Qc4/hzWHa39g6QDbXwz8z6+cZM5cOGMAqNF34168Xfuw6cwI2H44g4hWf6
+Pser4BOcBRiYz5P1sZK0/CPTz9XEJ0ngnjybCKOLXSoh4Pw5qlPafX7PGglTvF0FBM+hSo+LdoIN
+ofjSxxR3W5A2B4GbPgb6Ul5jxaYA/qXpUhtStZI5cgMJYr2wYBZupt0lwgNm3fME0UDiTouG9G/l
+g6AnhF4EwfWQvTA9xO+oabw4m6SkltFi2mnAAZauy8RRNOoMqv8hjlmPSlzkYZqn0ukqeI1RPToV
+7qJZjqlc3sX5kCLliEVx3ZGZbHqfPT2YfF72vhZooF6uCyP8Wg+qInYtyaEQHeTTRCOQiJ/GKubX
+9ZqzWB4vMIkIG1SitZgj7Ah3HJVdYdHLiZxfokqRmu8hqkkWCKi9YSgxyXSthfbZxbGL0eUQMk1f
+iyA6PEkfM4VZDdvLCXVDaXP7a3F98N/ETH3Goy7IlXnLc6KOTk0k+17kBL5yG6YnLUlamXrXXAkg
+t3+UuU/xDRxeiEIbEbfnkduebPRq34wGmAOtzCjvpUfzUwIDAQABo0IwQDAPBgNVHRMBAf8EBTAD
+AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUo5fW816iEOGrRZ88F2Q87gFwnMwwDQYJKoZI
+hvcNAQELBQADggIBABj6W3X8PnrHX3fHyt/PX8MSxEBd1DKquGrX1RUVRpgjpeaQWxiZTOOtQqOC
+MTaIzen7xASWSIsBx40Bz1szBpZGZnQdT+3Btrm0DWHMY37XLneMlhwqI2hrhVd2cDMT/uFPpiN3
+GPoajOi9ZcnPP/TJF9zrx7zABC4tRi9pZsMbj/7sPtPKlL92CiUNqXsCHKnQO18LwIE6PWThv6ct
+Tr1NxNgpxiIY0MWscgKCP6o6ojoilzHdCGPDdRS5YCgtW2jgFqlmgiNR9etT2DGbe+m3nUvriBbP
++V04ikkwj+3x6xn0dxoxGE1nVGwvb2X52z3sIexe9PSLymBlVNFxZPT5pqOBMzYzcfCkeF9OrYMh
+3jRJjehZrJ3ydlo28hP0r+AJx2EqbPfgna67hkooby7utHnNkDPDs3b69fBsnQGQ+p6Q9pxyz0fa
+wx/kNSBT8lTR32GDpgLiJTjehTItXnOQUl1CxM49S+H5GYQd1aJQzEH7QRTDvdbJWqNjZgKAvQU6
+O0ec7AAmTPWIUb+oI38YB7AL7YsmoWTTYUrrXJ/es69nA7Mf3W1daWhpq1467HxpvMc7hU6eFbm0
+FU/DlXpY18ls6Wy58yljXrQs8C097Vpl4KlbQMJImYFtnh8GKjwStIsPm6Ik8KaN1nrgS7ZklmOV
+hMJKzRwuJIczYOXD
+-----END CERTIFICATE-----
+
+QuoVadis Root CA 2 G3
+=====================
+-----BEGIN CERTIFICATE-----
+MIIFYDCCA0igAwIBAgIURFc0JFuBiZs18s64KztbpybwdSgwDQYJKoZIhvcNAQELBQAwSDELMAkG
+A1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAcBgNVBAMTFVF1b1ZhZGlzIFJv
+b3QgQ0EgMiBHMzAeFw0xMjAxMTIxODU5MzJaFw00MjAxMTIxODU5MzJaMEgxCzAJBgNVBAYTAkJN
+MRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDIg
+RzMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQChriWyARjcV4g/Ruv5r+LrI3HimtFh
+ZiFfqq8nUeVuGxbULX1QsFN3vXg6YOJkApt8hpvWGo6t/x8Vf9WVHhLL5hSEBMHfNrMWn4rjyduY
+NM7YMxcoRvynyfDStNVNCXJJ+fKH46nafaF9a7I6JaltUkSs+L5u+9ymc5GQYaYDFCDy54ejiK2t
+oIz/pgslUiXnFgHVy7g1gQyjO/Dh4fxaXc6AcW34Sas+O7q414AB+6XrW7PFXmAqMaCvN+ggOp+o
+MiwMzAkd056OXbxMmO7FGmh77FOm6RQ1o9/NgJ8MSPsc9PG/Srj61YxxSscfrf5BmrODXfKEVu+l
+V0POKa2Mq1W/xPtbAd0jIaFYAI7D0GoT7RPjEiuA3GfmlbLNHiJuKvhB1PLKFAeNilUSxmn1uIZo
+L1NesNKqIcGY5jDjZ1XHm26sGahVpkUG0CM62+tlXSoREfA7T8pt9DTEceT/AFr2XK4jYIVz8eQQ
+sSWu1ZK7E8EM4DnatDlXtas1qnIhO4M15zHfeiFuuDIIfR0ykRVKYnLP43ehvNURG3YBZwjgQQvD
+6xVu+KQZ2aKrr+InUlYrAoosFCT5v0ICvybIxo/gbjh9Uy3l7ZizlWNof/k19N+IxWA1ksB8aRxh
+lRbQ694Lrz4EEEVlWFA4r0jyWbYW8jwNkALGcC4BrTwV1wIDAQABo0IwQDAPBgNVHRMBAf8EBTAD
+AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQU7edvdlq/YOxJW8ald7tyFnGbxD0wDQYJKoZI
+hvcNAQELBQADggIBAJHfgD9DCX5xwvfrs4iP4VGyvD11+ShdyLyZm3tdquXK4Qr36LLTn91nMX66
+AarHakE7kNQIXLJgapDwyM4DYvmL7ftuKtwGTTwpD4kWilhMSA/ohGHqPHKmd+RCroijQ1h5fq7K
+pVMNqT1wvSAZYaRsOPxDMuHBR//47PERIjKWnML2W2mWeyAMQ0GaW/ZZGYjeVYg3UQt4XAoeo0L9
+x52ID8DyeAIkVJOviYeIyUqAHerQbj5hLja7NQ4nlv1mNDthcnPxFlxHBlRJAHpYErAK74X9sbgz
+dWqTHBLmYF5vHX/JHyPLhGGfHoJE+V+tYlUkmlKY7VHnoX6XOuYvHxHaU4AshZ6rNRDbIl9qxV6X
+U/IyAgkwo1jwDQHVcsaxfGl7w/U2Rcxhbl5MlMVerugOXou/983g7aEOGzPuVBj+D77vfoRrQ+Nw
+mNtddbINWQeFFSM51vHfqSYP1kjHs6Yi9TM3WpVHn3u6GBVv/9YUZINJ0gpnIdsPNWNgKCLjsZWD
+zYWm3S8P52dSbrsvhXz1SnPnxT7AvSESBT/8twNJAlvIJebiVDj1eYeMHVOyToV7BjjHLPj4sHKN
+JeV3UvQDHEimUF+IIDBu8oJDqz2XhOdT+yHBTw8imoa4WSr2Rz0ZiC3oheGe7IUIarFsNMkd7Egr
+O3jtZsSOeWmD3n+M
+-----END CERTIFICATE-----
+
+QuoVadis Root CA 3 G3
+=====================
+-----BEGIN CERTIFICATE-----
+MIIFYDCCA0igAwIBAgIULvWbAiin23r/1aOp7r0DoM8Sah0wDQYJKoZIhvcNAQELBQAwSDELMAkG
+A1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAcBgNVBAMTFVF1b1ZhZGlzIFJv
+b3QgQ0EgMyBHMzAeFw0xMjAxMTIyMDI2MzJaFw00MjAxMTIyMDI2MzJaMEgxCzAJBgNVBAYTAkJN
+MRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDMg
+RzMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCzyw4QZ47qFJenMioKVjZ/aEzHs286
+IxSR/xl/pcqs7rN2nXrpixurazHb+gtTTK/FpRp5PIpM/6zfJd5O2YIyC0TeytuMrKNuFoM7pmRL
+Mon7FhY4futD4tN0SsJiCnMK3UmzV9KwCoWdcTzeo8vAMvMBOSBDGzXRU7Ox7sWTaYI+FrUoRqHe
+6okJ7UO4BUaKhvVZR74bbwEhELn9qdIoyhA5CcoTNs+cra1AdHkrAj80//ogaX3T7mH1urPnMNA3
+I4ZyYUUpSFlob3emLoG+B01vr87ERRORFHAGjx+f+IdpsQ7vw4kZ6+ocYfx6bIrc1gMLnia6Et3U
+VDmrJqMz6nWB2i3ND0/kA9HvFZcba5DFApCTZgIhsUfei5pKgLlVj7WiL8DWM2fafsSntARE60f7
+5li59wzweyuxwHApw0BiLTtIadwjPEjrewl5qW3aqDCYz4ByA4imW0aucnl8CAMhZa634RylsSqi
+Md5mBPfAdOhx3v89WcyWJhKLhZVXGqtrdQtEPREoPHtht+KPZ0/l7DxMYIBpVzgeAVuNVejH38DM
+dyM0SXV89pgR6y3e7UEuFAUCf+D+IOs15xGsIs5XPd7JMG0QA4XN8f+MFrXBsj6IbGB/kE+V9/Yt
+rQE5BwT6dYB9v0lQ7e/JxHwc64B+27bQ3RP+ydOc17KXqQIDAQABo0IwQDAPBgNVHRMBAf8EBTAD
+AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUxhfQvKjqAkPyGwaZXSuQILnXnOQwDQYJKoZI
+hvcNAQELBQADggIBADRh2Va1EodVTd2jNTFGu6QHcrxfYWLopfsLN7E8trP6KZ1/AvWkyaiTt3px
+KGmPc+FSkNrVvjrlt3ZqVoAh313m6Tqe5T72omnHKgqwGEfcIHB9UqM+WXzBusnIFUBhynLWcKzS
+t/Ac5IYp8M7vaGPQtSCKFWGafoaYtMnCdvvMujAWzKNhxnQT5WvvoxXqA/4Ti2Tk08HS6IT7SdEQ
+TXlm66r99I0xHnAUrdzeZxNMgRVhvLfZkXdxGYFgu/BYpbWcC/ePIlUnwEsBbTuZDdQdm2NnL9Du
+DcpmvJRPpq3t/O5jrFc/ZSXPsoaP0Aj/uHYUbt7lJ+yreLVTubY/6CD50qi+YUbKh4yE8/nxoGib
+Ih6BJpsQBJFxwAYf3KDTuVan45gtf4Od34wrnDKOMpTwATwiKp9Dwi7DmDkHOHv8XgBCH/MyJnmD
+hPbl8MFREsALHgQjDFSlTC9JxUrRtm5gDWv8a4uFJGS3iQ6rJUdbPM9+Sb3H6QrG2vd+DhcI00iX
+0HGS8A85PjRqHH3Y8iKuu2n0M7SmSFXRDw4m6Oy2Cy2nhTXN/VnIn9HNPlopNLk9hM6xZdRZkZFW
+dSHBd575euFgndOtBBj0fOtek49TSiIp+EgrPk2GrFt/ywaZWWDYWGWVjUTR939+J399roD1B0y2
+PpxxVJkES/1Y+Zj0
+-----END CERTIFICATE-----
+
+DigiCert Assured ID Root G2
+===========================
+-----BEGIN CERTIFICATE-----
+MIIDljCCAn6gAwIBAgIQC5McOtY5Z+pnI7/Dr5r0SzANBgkqhkiG9w0BAQsFADBlMQswCQYDVQQG
+EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQw
+IgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIwHhcNMTMwODAxMTIwMDAwWhcNMzgw
+MTE1MTIwMDAwWjBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQL
+ExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIw
+ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ5ygvUj82ckmIkzTz+GoeMVSAn61UQbVH
+35ao1K+ALbkKz3X9iaV9JPrjIgwrvJUXCzO/GU1BBpAAvQxNEP4HteccbiJVMWWXvdMX0h5i89vq
+bFCMP4QMls+3ywPgym2hFEwbid3tALBSfK+RbLE4E9HpEgjAALAcKxHad3A2m67OeYfcgnDmCXRw
+VWmvo2ifv922ebPynXApVfSr/5Vh88lAbx3RvpO704gqu52/clpWcTs/1PPRCv4o76Pu2ZmvA9OP
+YLfykqGxvYmJHzDNw6YuYjOuFgJ3RFrngQo8p0Quebg/BLxcoIfhG69Rjs3sLPr4/m3wOnyqi+Rn
+lTGNAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBTO
+w0q5mVXyuNtgv6l+vVa1lzan1jANBgkqhkiG9w0BAQsFAAOCAQEAyqVVjOPIQW5pJ6d1Ee88hjZv
+0p3GeDgdaZaikmkuOGybfQTUiaWxMTeKySHMq2zNixya1r9I0jJmwYrA8y8678Dj1JGG0VDjA9tz
+d29KOVPt3ibHtX2vK0LRdWLjSisCx1BL4GnilmwORGYQRI+tBev4eaymG+g3NJ1TyWGqolKvSnAW
+hsI6yLETcDbYz+70CjTVW0z9B5yiutkBclzzTcHdDrEcDcRjvq30FPuJ7KJBDkzMyFdA0G4Dqs0M
+jomZmWzwPDCvON9vvKO+KSAnq3T/EyJ43pdSVR6DtVQgA+6uwE9W3jfMw3+qBCe703e4YtsXfJwo
+IhNzbM8m9Yop5w==
+-----END CERTIFICATE-----
+
+DigiCert Assured ID Root G3
+===========================
+-----BEGIN CERTIFICATE-----
+MIICRjCCAc2gAwIBAgIQC6Fa+h3foLVJRK/NJKBs7DAKBggqhkjOPQQDAzBlMQswCQYDVQQGEwJV
+UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQwIgYD
+VQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1
+MTIwMDAwWjBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3
+d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwdjAQ
+BgcqhkjOPQIBBgUrgQQAIgNiAAQZ57ysRGXtzbg/WPuNsVepRC0FFfLvC/8QdJ+1YlJfZn4f5dwb
+RXkLzMZTCp2NXQLZqVneAlr2lSoOjThKiknGvMYDOAdfVdp+CW7if17QRSAPWXYQ1qAk8C3eNvJs
+KTmjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBTL0L2p4ZgF
+UaFNN6KDec6NHSrkhDAKBggqhkjOPQQDAwNnADBkAjAlpIFFAmsSS3V0T8gj43DydXLefInwz5Fy
+YZ5eEJJZVrmDxxDnOOlYJjZ91eQ0hjkCMHw2U/Aw5WJjOpnitqM7mzT6HtoQknFekROn3aRukswy
+1vUhZscv6pZjamVFkpUBtA==
+-----END CERTIFICATE-----
+
+DigiCert Global Root G2
+=======================
+-----BEGIN CERTIFICATE-----
+MIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG
+EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw
+HgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUx
+MjAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3
+dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkq
+hkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI2/Ou8jqJ
+kTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx1x7e/dfgy5SDN67sH0NO
+3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQq2EGnI/yuum06ZIya7XzV+hdG82MHauV
+BJVJ8zUtluNJbd134/tJS7SsVQepj5WztCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyM
+UNGPHgm+F6HmIcr9g+UQvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQAB
+o0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV5uNu
+5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY1Yl9PMWLSn/pvtsr
+F9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4NeF22d+mQrvHRAiGfzZ0JFrabA0U
+WTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NGFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBH
+QRFXGU7Aj64GxJUTFy8bJZ918rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/
+iyK5S9kJRaTepLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl
+MrY=
+-----END CERTIFICATE-----
+
+DigiCert Global Root G3
+=======================
+-----BEGIN CERTIFICATE-----
+MIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV
+UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD
+VQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAw
+MDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5k
+aWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0C
+AQYFK4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FGfp4tn+6O
+YwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPOZ9wj/wMco+I+o0IwQDAP
+BgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNp
+Yim8S8YwCgYIKoZIzj0EAwMDaAAwZQIxAK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y
+3maTD/HMsQmP3Wyr+mt/oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34
+VOKa5Vt8sycX
+-----END CERTIFICATE-----
+
+DigiCert Trusted Root G4
+========================
+-----BEGIN CERTIFICATE-----
+MIIFkDCCA3igAwIBAgIQBZsbV56OITLiOQe9p3d1XDANBgkqhkiG9w0BAQwFADBiMQswCQYDVQQG
+EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSEw
+HwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1
+MTIwMDAwWjBiMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3
+d3cuZGlnaWNlcnQuY29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwggIiMA0G
+CSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC/5pBzaN675F1KPDAiMGkz7MKnJS7JIT3yithZwuEp
+pz1Yq3aaza57G4QNxDAf8xukOBbrVsaXbR2rsnnyyhHS5F/WBTxSD1Ifxp4VpX6+n6lXFllVcq9o
+k3DCsrp1mWpzMpTREEQQLt+C8weE5nQ7bXHiLQwb7iDVySAdYyktzuxeTsiT+CFhmzTrBcZe7Fsa
+vOvJz82sNEBfsXpm7nfISKhmV1efVFiODCu3T6cw2Vbuyntd463JT17lNecxy9qTXtyOj4DatpGY
+QJB5w3jHtrHEtWoYOAMQjdjUN6QuBX2I9YI+EJFwq1WCQTLX2wRzKm6RAXwhTNS8rhsDdV14Ztk6
+MUSaM0C/CNdaSaTC5qmgZ92kJ7yhTzm1EVgX9yRcRo9k98FpiHaYdj1ZXUJ2h4mXaXpI8OCiEhtm
+mnTK3kse5w5jrubU75KSOp493ADkRSWJtppEGSt+wJS00mFt6zPZxd9LBADMfRyVw4/3IbKyEbe7
+f/LVjHAsQWCqsWMYRJUadmJ+9oCw++hkpjPRiQfhvbfmQ6QYuKZ3AeEPlAwhHbJUKSWJbOUOUlFH
+dL4mrLZBdd56rF+NP8m800ERElvlEFDrMcXKchYiCd98THU/Y+whX8QgUWtvsauGi0/C1kVfnSD8
+oR7FwI+isX4KJpn15GkvmB0t9dmpsh3lGwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1Ud
+DwEB/wQEAwIBhjAdBgNVHQ4EFgQU7NfjgtJxXWRM3y5nP+e6mK4cD08wDQYJKoZIhvcNAQEMBQAD
+ggIBALth2X2pbL4XxJEbw6GiAI3jZGgPVs93rnD5/ZpKmbnJeFwMDF/k5hQpVgs2SV1EY+CtnJYY
+ZhsjDT156W1r1lT40jzBQ0CuHVD1UvyQO7uYmWlrx8GnqGikJ9yd+SeuMIW59mdNOj6PWTkiU0Tr
+yF0Dyu1Qen1iIQqAyHNm0aAFYF/opbSnr6j3bTWcfFqK1qI4mfN4i/RN0iAL3gTujJtHgXINwBQy
+7zBZLq7gcfJW5GqXb5JQbZaNaHqasjYUegbyJLkJEVDXCLG4iXqEI2FCKeWjzaIgQdfRnGTZ6iah
+ixTXTBmyUEFxPT9NcCOGDErcgdLMMpSEDQgJlxxPwO5rIHQw0uA5NBCFIRUBCOhVMt5xSdkoF1BN
+5r5N0XWs0Mr7QbhDparTwwVETyw2m+L64kW4I1NsBm9nVX9GtUw/bihaeSbSpKhil9Ie4u1Ki7wb
+/UdKDd9nZn6yW0HQO+T0O/QEY+nvwlQAUaCKKsnOeMzV6ocEGLPOr0mIr/OSmbaz5mEP0oUA51Aa
+5BuVnRmhuZyxm7EAHu/QD09CbMkKvO5D+jpxpchNJqU1/YldvIViHTLSoCtU7ZpXwdv6EM8Zt4tK
+G48BtieVU+i2iW1bvGjUI+iLUaJW+fCmgKDWHrO8Dw9TdSmq6hN35N6MgSGtBxBHEa2HPQfRdbzP
+82Z+
+-----END CERTIFICATE-----
+
+COMODO RSA Certification Authority
+==================================
+-----BEGIN CERTIFICATE-----
+MIIF2DCCA8CgAwIBAgIQTKr5yttjb+Af907YWwOGnTANBgkqhkiG9w0BAQwFADCBhTELMAkGA1UE
+BhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgG
+A1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlv
+biBBdXRob3JpdHkwHhcNMTAwMTE5MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMC
+R0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UE
+ChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlvbiBB
+dXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCR6FSS0gpWsawNJN3Fz0Rn
+dJkrN6N9I3AAcbxT38T6KhKPS38QVr2fcHK3YX/JSw8Xpz3jsARh7v8Rl8f0hj4K+j5c+ZPmNHrZ
+FGvnnLOFoIJ6dq9xkNfs/Q36nGz637CC9BR++b7Epi9Pf5l/tfxnQ3K9DADWietrLNPtj5gcFKt+
+5eNu/Nio5JIk2kNrYrhV/erBvGy2i/MOjZrkm2xpmfh4SDBF1a3hDTxFYPwyllEnvGfDyi62a+pG
+x8cgoLEfZd5ICLqkTqnyg0Y3hOvozIFIQ2dOciqbXL1MGyiKXCJ7tKuY2e7gUYPDCUZObT6Z+pUX
+2nwzV0E8jVHtC7ZcryxjGt9XyD+86V3Em69FmeKjWiS0uqlWPc9vqv9JWL7wqP/0uK3pN/u6uPQL
+OvnoQ0IeidiEyxPx2bvhiWC4jChWrBQdnArncevPDt09qZahSL0896+1DSJMwBGB7FY79tOi4lu3
+sgQiUpWAk2nojkxl8ZEDLXB0AuqLZxUpaVICu9ffUGpVRr+goyhhf3DQw6KqLCGqR84onAZFdr+C
+GCe01a60y1Dma/RMhnEw6abfFobg2P9A3fvQQoh/ozM6LlweQRGBY84YcWsr7KaKtzFcOmpH4MN5
+WdYgGq/yapiqcrxXStJLnbsQ/LBMQeXtHT1eKJ2czL+zUdqnR+WEUwIDAQABo0IwQDAdBgNVHQ4E
+FgQUu69+Aj36pvE8hI6t7jiY7NkyMtQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8w
+DQYJKoZIhvcNAQEMBQADggIBAArx1UaEt65Ru2yyTUEUAJNMnMvlwFTPoCWOAvn9sKIN9SCYPBMt
+rFaisNZ+EZLpLrqeLppysb0ZRGxhNaKatBYSaVqM4dc+pBroLwP0rmEdEBsqpIt6xf4FpuHA1sj+
+nq6PK7o9mfjYcwlYRm6mnPTXJ9OV2jeDchzTc+CiR5kDOF3VSXkAKRzH7JsgHAckaVd4sjn8OoSg
+tZx8jb8uk2IntznaFxiuvTwJaP+EmzzV1gsD41eeFPfR60/IvYcjt7ZJQ3mFXLrrkguhxuhoqEwW
+sRqZCuhTLJK7oQkYdQxlqHvLI7cawiiFwxv/0Cti76R7CZGYZ4wUAc1oBmpjIXUDgIiKboHGhfKp
+pC3n9KUkEEeDys30jXlYsQab5xoq2Z0B15R97QNKyvDb6KkBPvVWmckejkk9u+UJueBPSZI9FoJA
+zMxZxuY67RIuaTxslbH9qh17f4a+Hg4yRvv7E491f0yLS0Zj/gA0QHDBw7mh3aZw4gSzQbzpgJHq
+ZJx64SIDqZxubw5lT2yHh17zbqD5daWbQOhTsiedSrnAdyGN/4fy3ryM7xfft0kL0fJuMAsaDk52
+7RH89elWsn2/x20Kk4yl0MC2Hb46TpSi125sC8KKfPog88Tk5c0NqMuRkrF8hey1FGlmDoLnzc7I
+LaZRfyHBNVOFBkpdn627G190
+-----END CERTIFICATE-----
+
+USERTrust RSA Certification Authority
+=====================================
+-----BEGIN CERTIFICATE-----
+MIIF3jCCA8agAwIBAgIQAf1tMPyjylGoG7xkDjUDLTANBgkqhkiG9w0BAQwFADCBiDELMAkGA1UE
+BhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQK
+ExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNh
+dGlvbiBBdXRob3JpdHkwHhcNMTAwMjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UE
+BhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQK
+ExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNh
+dGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCAEmUXNg7D2wiz
+0KxXDXbtzSfTTK1Qg2HiqiBNCS1kCdzOiZ/MPans9s/B3PHTsdZ7NygRK0faOca8Ohm0X6a9fZ2j
+Y0K2dvKpOyuR+OJv0OwWIJAJPuLodMkYtJHUYmTbf6MG8YgYapAiPLz+E/CHFHv25B+O1ORRxhFn
+RghRy4YUVD+8M/5+bJz/Fp0YvVGONaanZshyZ9shZrHUm3gDwFA66Mzw3LyeTP6vBZY1H1dat//O
++T23LLb2VN3I5xI6Ta5MirdcmrS3ID3KfyI0rn47aGYBROcBTkZTmzNg95S+UzeQc0PzMsNT79uq
+/nROacdrjGCT3sTHDN/hMq7MkztReJVni+49Vv4M0GkPGw/zJSZrM233bkf6c0Plfg6lZrEpfDKE
+Y1WJxA3Bk1QwGROs0303p+tdOmw1XNtB1xLaqUkL39iAigmTYo61Zs8liM2EuLE/pDkP2QKe6xJM
+lXzzawWpXhaDzLhn4ugTncxbgtNMs+1b/97lc6wjOy0AvzVVdAlJ2ElYGn+SNuZRkg7zJn0cTRe8
+yexDJtC/QV9AqURE9JnnV4eeUB9XVKg+/XRjL7FQZQnmWEIuQxpMtPAlR1n6BB6T1CZGSlCBst6+
+eLf8ZxXhyVeEHg9j1uliutZfVS7qXMYoCAQlObgOK6nyTJccBz8NUvXt7y+CDwIDAQABo0IwQDAd
+BgNVHQ4EFgQUU3m/WqorSs9UgOHYm8Cd8rIDZsswDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF
+MAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAFzUfA3P9wF9QZllDHPFUp/L+M+ZBn8b2kMVn54CVVeW
+FPFSPCeHlCjtHzoBN6J2/FNQwISbxmtOuowhT6KOVWKR82kV2LyI48SqC/3vqOlLVSoGIG1VeCkZ
+7l8wXEskEVX/JJpuXior7gtNn3/3ATiUFJVDBwn7YKnuHKsSjKCaXqeYalltiz8I+8jRRa8YFWSQ
+Eg9zKC7F4iRO/Fjs8PRF/iKz6y+O0tlFYQXBl2+odnKPi4w2r78NBc5xjeambx9spnFixdjQg3IM
+8WcRiQycE0xyNN+81XHfqnHd4blsjDwSXWXavVcStkNr/+XeTWYRUc+ZruwXtuhxkYzeSf7dNXGi
+FSeUHM9h4ya7b6NnJSFd5t0dCy5oGzuCr+yDZ4XUmFF0sbmZgIn/f3gZXHlKYC6SQK5MNyosycdi
+yA5d9zZbyuAlJQG03RoHnHcAP9Dc1ew91Pq7P8yF1m9/qS3fuQL39ZeatTXaw2ewh0qpKJ4jjv9c
+J2vhsE/zB+4ALtRZh8tSQZXq9EfX7mRBVXyNWQKV3WKdwrnuWih0hKWbt5DHDAff9Yk2dDLWKMGw
+sAvgnEzDHNb842m1R0aBL6KCq9NjRHDEjf8tM7qtj3u1cIiuPhnPQCjY/MiQu12ZIvVS5ljFH4gx
+Q+6IHdfGjjxDah2nGN59PRbxYvnKkKj9
+-----END CERTIFICATE-----
+
+USERTrust ECC Certification Authority
+=====================================
+-----BEGIN CERTIFICATE-----
+MIICjzCCAhWgAwIBAgIQXIuZxVqUxdJxVt7NiYDMJjAKBggqhkjOPQQDAzCBiDELMAkGA1UEBhMC
+VVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU
+aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlv
+biBBdXRob3JpdHkwHhcNMTAwMjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMC
+VVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU
+aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlv
+biBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQarFRaqfloI+d61SRvU8Za2EurxtW2
+0eZzca7dnNYMYf3boIkDuAUU7FfO7l0/4iGzzvfUinngo4N+LZfQYcTxmdwlkWOrfzCjtHDix6Ez
+nPO/LlxTsV+zfTJ/ijTjeXmjQjBAMB0GA1UdDgQWBBQ64QmG1M8ZwpZ2dEl23OA1xmNjmjAOBgNV
+HQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjA2Z6EWCNzklwBB
+HU6+4WMBzzuqQhFkoJ2UOQIReVx7Hfpkue4WQrO/isIJxOzksU0CMQDpKmFHjFJKS04YcPbWRNZu
+9YO6bVi9JNlWSOrvxKJGgYhqOkbRqZtNyWHa0V1Xahg=
+-----END CERTIFICATE-----
+
+GlobalSign ECC Root CA - R4
+===========================
+-----BEGIN CERTIFICATE-----
+MIIB4TCCAYegAwIBAgIRKjikHJYKBN5CsiilC+g0mAIwCgYIKoZIzj0EAwIwUDEkMCIGA1UECxMb
+R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI0MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD
+EwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoXDTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMb
+R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI0MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD
+EwpHbG9iYWxTaWduMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEuMZ5049sJQ6fLjkZHAOkrprl
+OQcJFspjsbmG+IpXwVfOQvpzofdlQv8ewQCybnMO/8ch5RikqtlxP6jUuc6MHaNCMEAwDgYDVR0P
+AQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFFSwe61FuOJAf/sKbvu+M8k8o4TV
+MAoGCCqGSM49BAMCA0gAMEUCIQDckqGgE6bPA7DmxCGXkPoUVy0D7O48027KqGx2vKLeuwIgJ6iF
+JzWbVsaj8kfSt24bAgAXqmemFZHe+pTsewv4n4Q=
+-----END CERTIFICATE-----
+
+GlobalSign ECC Root CA - R5
+===========================
+-----BEGIN CERTIFICATE-----
+MIICHjCCAaSgAwIBAgIRYFlJ4CYuu1X5CneKcflK2GwwCgYIKoZIzj0EAwMwUDEkMCIGA1UECxMb
+R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD
+EwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoXDTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMb
+R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD
+EwpHbG9iYWxTaWduMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAER0UOlvt9Xb/pOdEh+J8LttV7HpI6
+SFkc8GIxLcB6KP4ap1yztsyX50XUWPrRd21DosCHZTQKH3rd6zwzocWdTaRvQZU4f8kehOvRnkmS
+h5SHDDqFSmafnVmTTZdhBoZKo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAd
+BgNVHQ4EFgQUPeYpSJvqB8ohREom3m7e0oPQn1kwCgYIKoZIzj0EAwMDaAAwZQIxAOVpEslu28Yx
+uglB4Zf4+/2a4n0Sye18ZNPLBSWLVtmg515dTguDnFt2KaAJJiFqYgIwcdK1j1zqO+F4CYWodZI7
+yFz9SO8NdCKoCOJuxUnOxwy8p2Fp8fc74SrL+SvzZpA3
+-----END CERTIFICATE-----
+
+Staat der Nederlanden Root CA - G3
+==================================
+-----BEGIN CERTIFICATE-----
+MIIFdDCCA1ygAwIBAgIEAJiiOTANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJOTDEeMBwGA1UE
+CgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSswKQYDVQQDDCJTdGFhdCBkZXIgTmVkZXJsYW5kZW4g
+Um9vdCBDQSAtIEczMB4XDTEzMTExNDExMjg0MloXDTI4MTExMzIzMDAwMFowWjELMAkGA1UEBhMC
+TkwxHjAcBgNVBAoMFVN0YWF0IGRlciBOZWRlcmxhbmRlbjErMCkGA1UEAwwiU3RhYXQgZGVyIE5l
+ZGVybGFuZGVuIFJvb3QgQ0EgLSBHMzCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL4y
+olQPcPssXFnrbMSkUeiFKrPMSjTysF/zDsccPVMeiAho2G89rcKezIJnByeHaHE6n3WWIkYFsO2t
+x1ueKt6c/DrGlaf1F2cY5y9JCAxcz+bMNO14+1Cx3Gsy8KL+tjzk7FqXxz8ecAgwoNzFs21v0IJy
+EavSgWhZghe3eJJg+szeP4TrjTgzkApyI/o1zCZxMdFyKJLZWyNtZrVtB0LrpjPOktvA9mxjeM3K
+Tj215VKb8b475lRgsGYeCasH/lSJEULR9yS6YHgamPfJEf0WwTUaVHXvQ9Plrk7O53vDxk5hUUur
+mkVLoR9BvUhTFXFkC4az5S6+zqQbwSmEorXLCCN2QyIkHxcE1G6cxvx/K2Ya7Irl1s9N9WMJtxU5
+1nus6+N86U78dULI7ViVDAZCopz35HCz33JvWjdAidiFpNfxC95DGdRKWCyMijmev4SH8RY7Ngzp
+07TKbBlBUgmhHbBqv4LvcFEhMtwFdozL92TkA1CvjJFnq8Xy7ljY3r735zHPbMk7ccHViLVlvMDo
+FxcHErVc0qsgk7TmgoNwNsXNo42ti+yjwUOH5kPiNL6VizXtBznaqB16nzaeErAMZRKQFWDZJkBE
+41ZgpRDUajz9QdwOWke275dhdU/Z/seyHdTtXUmzqWrLZoQT1Vyg3N9udwbRcXXIV2+vD3dbAgMB
+AAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRUrfrHkleu
+yjWcLhL75LpdINyUVzANBgkqhkiG9w0BAQsFAAOCAgEAMJmdBTLIXg47mAE6iqTnB/d6+Oea31BD
+U5cqPco8R5gu4RV78ZLzYdqQJRZlwJ9UXQ4DO1t3ApyEtg2YXzTdO2PCwyiBwpwpLiniyMMB8jPq
+KqrMCQj3ZWfGzd/TtiunvczRDnBfuCPRy5FOCvTIeuXZYzbB1N/8Ipf3YF3qKS9Ysr1YvY2WTxB1
+v0h7PVGHoTx0IsL8B3+A3MSs/mrBcDCw6Y5p4ixpgZQJut3+TcCDjJRYwEYgr5wfAvg1VUkvRtTA
+8KCWAg8zxXHzniN9lLf9OtMJgwYh/WA9rjLA0u6NpvDntIJ8CsxwyXmA+P5M9zWEGYox+wrZ13+b
+8KKaa8MFSu1BYBQw0aoRQm7TIwIEC8Zl3d1Sd9qBa7Ko+gE4uZbqKmxnl4mUnrzhVNXkanjvSr0r
+mj1AfsbAddJu+2gw7OyLnflJNZoaLNmzlTnVHpL3prllL+U9bTpITAjc5CgSKL59NVzq4BZ+Extq
+1z7XnvwtdbLBFNUjA9tbbws+eC8N3jONFrdI54OagQ97wUNNVQQXOEpR1VmiiXTTn74eS9fGbbeI
+JG9gkaSChVtWQbzQRKtqE77RLFi3EjNYsjdj3BP1lB0/QFH1T/U67cjF68IeHRaVesd+QnGTbksV
+tzDfqu1XhUisHWrdOWnk4Xl4vs4Fv6EM94B7IWcnMFk=
+-----END CERTIFICATE-----
+
+Staat der Nederlanden EV Root CA
+================================
+-----BEGIN CERTIFICATE-----
+MIIFcDCCA1igAwIBAgIEAJiWjTANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJOTDEeMBwGA1UE
+CgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSkwJwYDVQQDDCBTdGFhdCBkZXIgTmVkZXJsYW5kZW4g
+RVYgUm9vdCBDQTAeFw0xMDEyMDgxMTE5MjlaFw0yMjEyMDgxMTEwMjhaMFgxCzAJBgNVBAYTAk5M
+MR4wHAYDVQQKDBVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xKTAnBgNVBAMMIFN0YWF0IGRlciBOZWRl
+cmxhbmRlbiBFViBSb290IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA48d+ifkk
+SzrSM4M1LGns3Amk41GoJSt5uAg94JG6hIXGhaTK5skuU6TJJB79VWZxXSzFYGgEt9nCUiY4iKTW
+O0Cmws0/zZiTs1QUWJZV1VD+hq2kY39ch/aO5ieSZxeSAgMs3NZmdO3dZ//BYY1jTw+bbRcwJu+r
+0h8QoPnFfxZpgQNH7R5ojXKhTbImxrpsX23Wr9GxE46prfNeaXUmGD5BKyF/7otdBwadQ8QpCiv8
+Kj6GyzyDOvnJDdrFmeK8eEEzduG/L13lpJhQDBXd4Pqcfzho0LKmeqfRMb1+ilgnQ7O6M5HTp5gV
+XJrm0w912fxBmJc+qiXbj5IusHsMX/FjqTf5m3VpTCgmJdrV8hJwRVXj33NeN/UhbJCONVrJ0yPr
+08C+eKxCKFhmpUZtcALXEPlLVPxdhkqHz3/KRawRWrUgUY0viEeXOcDPusBCAUCZSCELa6fS/ZbV
+0b5GnUngC6agIk440ME8MLxwjyx1zNDFjFE7PZQIZCZhfbnDZY8UnCHQqv0XcgOPvZuM5l5Tnrmd
+74K74bzickFbIZTTRTeU0d8JOV3nI6qaHcptqAqGhYqCvkIH1vI4gnPah1vlPNOePqc7nvQDs/nx
+fRN0Av+7oeX6AHkcpmZBiFxgV6YuCcS6/ZrPpx9Aw7vMWgpVSzs4dlG4Y4uElBbmVvMCAwEAAaNC
+MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFP6rAJCYniT8qcwa
+ivsnuL8wbqg7MA0GCSqGSIb3DQEBCwUAA4ICAQDPdyxuVr5Os7aEAJSrR8kN0nbHhp8dB9O2tLsI
+eK9p0gtJ3jPFrK3CiAJ9Brc1AsFgyb/E6JTe1NOpEyVa/m6irn0F3H3zbPB+po3u2dfOWBfoqSmu
+c0iH55vKbimhZF8ZE/euBhD/UcabTVUlT5OZEAFTdfETzsemQUHSv4ilf0X8rLiltTMMgsT7B/Zq
+5SWEXwbKwYY5EdtYzXc7LMJMD16a4/CrPmEbUCTCwPTxGfARKbalGAKb12NMcIxHowNDXLldRqAN
+b/9Zjr7dn3LDWyvfjFvO5QxGbJKyCqNMVEIYFRIYvdr8unRu/8G2oGTYqV9Vrp9canaW2HNnh/tN
+f1zuacpzEPuKqf2evTY4SUmH9A4U8OmHuD+nT3pajnnUk+S7aFKErGzp85hwVXIy+TSrK0m1zSBi
+5Dp6Z2Orltxtrpfs/J92VoguZs9btsmksNcFuuEnL5O7Jiqik7Ab846+HUCjuTaPPoIaGl6I6lD4
+WeKDRikL40Rc4ZW2aZCaFG+XroHPaO+Zmr615+F/+PoTRxZMzG0IQOeLeG9QgkRQP2YGiqtDhFZK
+DyAthg710tvSeopLzaXoTvFeJiUBWSOgftL2fiFX1ye8FVdMpEbB4IMeDExNH08GGeL5qPQ6gqGy
+eUN51q1veieQA6TqJIc/2b3Z6fJfUEkc7uzXLg==
+-----END CERTIFICATE-----
+
+IdenTrust Commercial Root CA 1
+==============================
+-----BEGIN CERTIFICATE-----
+MIIFYDCCA0igAwIBAgIQCgFCgAAAAUUjyES1AAAAAjANBgkqhkiG9w0BAQsFADBKMQswCQYDVQQG
+EwJVUzESMBAGA1UEChMJSWRlblRydXN0MScwJQYDVQQDEx5JZGVuVHJ1c3QgQ29tbWVyY2lhbCBS
+b290IENBIDEwHhcNMTQwMTE2MTgxMjIzWhcNMzQwMTE2MTgxMjIzWjBKMQswCQYDVQQGEwJVUzES
+MBAGA1UEChMJSWRlblRydXN0MScwJQYDVQQDEx5JZGVuVHJ1c3QgQ29tbWVyY2lhbCBSb290IENB
+IDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCnUBneP5k91DNG8W9RYYKyqU+PZ4ld
+hNlT3Qwo2dfw/66VQ3KZ+bVdfIrBQuExUHTRgQ18zZshq0PirK1ehm7zCYofWjK9ouuU+ehcCuz/
+mNKvcbO0U59Oh++SvL3sTzIwiEsXXlfEU8L2ApeN2WIrvyQfYo3fw7gpS0l4PJNgiCL8mdo2yMKi
+1CxUAGc1bnO/AljwpN3lsKImesrgNqUZFvX9t++uP0D1bVoE/c40yiTcdCMbXTMTEl3EASX2MN0C
+XZ/g1Ue9tOsbobtJSdifWwLziuQkkORiT0/Br4sOdBeo0XKIanoBScy0RnnGF7HamB4HWfp1IYVl
+3ZBWzvurpWCdxJ35UrCLvYf5jysjCiN2O/cz4ckA82n5S6LgTrx+kzmEB/dEcH7+B1rlsazRGMzy
+NeVJSQjKVsk9+w8YfYs7wRPCTY/JTw436R+hDmrfYi7LNQZReSzIJTj0+kuniVyc0uMNOYZKdHzV
+WYfCP04MXFL0PfdSgvHqo6z9STQaKPNBiDoT7uje/5kdX7rL6B7yuVBgwDHTc+XvvqDtMwt0viAg
+xGds8AgDelWAf0ZOlqf0Hj7h9tgJ4TNkK2PXMl6f+cB7D3hvl7yTmvmcEpB4eoCHFddydJxVdHix
+uuFucAS6T6C6aMN7/zHwcz09lCqxC0EOoP5NiGVreTO01wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMC
+AQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU7UQZwNPwBovupHu+QucmVMiONnYwDQYJKoZI
+hvcNAQELBQADggIBAA2ukDL2pkt8RHYZYR4nKM1eVO8lvOMIkPkp165oCOGUAFjvLi5+U1KMtlwH
+6oi6mYtQlNeCgN9hCQCTrQ0U5s7B8jeUeLBfnLOic7iPBZM4zY0+sLj7wM+x8uwtLRvM7Kqas6pg
+ghstO8OEPVeKlh6cdbjTMM1gCIOQ045U8U1mwF10A0Cj7oV+wh93nAbowacYXVKV7cndJZ5t+qnt
+ozo00Fl72u1Q8zW/7esUTTHHYPTa8Yec4kjixsU3+wYQ+nVZZjFHKdp2mhzpgq7vmrlR94gjmmmV
+YjzlVYA211QC//G5Xc7UI2/YRYRKW2XviQzdFKcgyxilJbQN+QHwotL0AMh0jqEqSI5l2xPE4iUX
+feu+h1sXIFRRk0pTAwvsXcoz7WL9RccvW9xYoIA55vrX/hMUpu09lEpCdNTDd1lzzY9GvlU47/ro
+kTLql1gEIt44w8y8bckzOmoKaT+gyOpyj4xjhiO9bTyWnpXgSUyqorkqG5w2gXjtw+hG4iZZRHUe
+2XWJUc0QhJ1hYMtd+ZciTY6Y5uN/9lu7rs3KSoFrXgvzUeF0K+l+J6fZmUlO+KWA2yUPHGNiiskz
+Z2s8EIPGrd6ozRaOjfAHN3Gf8qv8QfXBi+wAN10J5U6A7/qxXDgGpRtK4dw4LTzcqx+QGtVKnO7R
+cGzM7vRX+Bi6hG6H
+-----END CERTIFICATE-----
+
+IdenTrust Public Sector Root CA 1
+=================================
+-----BEGIN CERTIFICATE-----
+MIIFZjCCA06gAwIBAgIQCgFCgAAAAUUjz0Z8AAAAAjANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQG
+EwJVUzESMBAGA1UEChMJSWRlblRydXN0MSowKAYDVQQDEyFJZGVuVHJ1c3QgUHVibGljIFNlY3Rv
+ciBSb290IENBIDEwHhcNMTQwMTE2MTc1MzMyWhcNMzQwMTE2MTc1MzMyWjBNMQswCQYDVQQGEwJV
+UzESMBAGA1UEChMJSWRlblRydXN0MSowKAYDVQQDEyFJZGVuVHJ1c3QgUHVibGljIFNlY3RvciBS
+b290IENBIDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2IpT8pEiv6EdrCvsnduTy
+P4o7ekosMSqMjbCpwzFrqHd2hCa2rIFCDQjrVVi7evi8ZX3yoG2LqEfpYnYeEe4IFNGyRBb06tD6
+Hi9e28tzQa68ALBKK0CyrOE7S8ItneShm+waOh7wCLPQ5CQ1B5+ctMlSbdsHyo+1W/CD80/HLaXI
+rcuVIKQxKFdYWuSNG5qrng0M8gozOSI5Cpcu81N3uURF/YTLNiCBWS2ab21ISGHKTN9T0a9SvESf
+qy9rg3LvdYDaBjMbXcjaY8ZNzaxmMc3R3j6HEDbhuaR672BQssvKplbgN6+rNBM5Jeg5ZuSYeqoS
+mJxZZoY+rfGwyj4GD3vwEUs3oERte8uojHH01bWRNszwFcYr3lEXsZdMUD2xlVl8BX0tIdUAvwFn
+ol57plzy9yLxkA2T26pEUWbMfXYD62qoKjgZl3YNa4ph+bz27nb9cCvdKTz4Ch5bQhyLVi9VGxyh
+LrXHFub4qjySjmm2AcG1hp2JDws4lFTo6tyePSW8Uybt1as5qsVATFSrsrTZ2fjXctscvG29ZV/v
+iDUqZi/u9rNl8DONfJhBaUYPQxxp+pu10GFqzcpL2UyQRqsVWaFHVCkugyhfHMKiq3IXAAaOReyL
+4jM9f9oZRORicsPfIsbyVtTdX5Vy7W1f90gDW/3FKqD2cyOEEBsB5wIDAQABo0IwQDAOBgNVHQ8B
+Af8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU43HgntinQtnbcZFrlJPrw6PRFKMw
+DQYJKoZIhvcNAQELBQADggIBAEf63QqwEZE4rU1d9+UOl1QZgkiHVIyqZJnYWv6IAcVYpZmxI1Qj
+t2odIFflAWJBF9MJ23XLblSQdf4an4EKwt3X9wnQW3IV5B4Jaj0z8yGa5hV+rVHVDRDtfULAj+7A
+mgjVQdZcDiFpboBhDhXAuM/FSRJSzL46zNQuOAXeNf0fb7iAaJg9TaDKQGXSc3z1i9kKlT/YPyNt
+GtEqJBnZhbMX73huqVjRI9PHE+1yJX9dsXNw0H8GlwmEKYBhHfpe/3OsoOOJuBxxFcbeMX8S3OFt
+m6/n6J91eEyrRjuazr8FGF1NFTwWmhlQBJqymm9li1JfPFgEKCXAZmExfrngdbkaqIHWchezxQMx
+NRF4eKLg6TCMf4DfWN88uieW4oA0beOY02QnrEh+KHdcxiVhJfiFDGX6xDIvpZgF5PgLZxYWxoK4
+Mhn5+bl53B/N66+rDt0b20XkeucC4pVd/GnwU2lhlXV5C15V5jgclKlZM57IcXR5f1GJtshquDDI
+ajjDbp7hNxbqBWJMWxJH7ae0s1hWx0nzfxJoCTFx8G34Tkf71oXuxVhAGaQdp/lLQzfcaFpPz+vC
+ZHTetBXZ9FRUGi8c15dxVJCO2SCdUyt/q4/i6jC8UDfv8Ue1fXwsBOxonbRJRBD0ckscZOf85muQ
+3Wl9af0AVqW3rLatt8o+Ae+c
+-----END CERTIFICATE-----
+
+Entrust Root Certification Authority - G2
+=========================================
+-----BEGIN CERTIFICATE-----
+MIIEPjCCAyagAwIBAgIESlOMKDANBgkqhkiG9w0BAQsFADCBvjELMAkGA1UEBhMCVVMxFjAUBgNV
+BAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVy
+bXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ug
+b25seTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIw
+HhcNMDkwNzA3MTcyNTU0WhcNMzAxMjA3MTc1NTU0WjCBvjELMAkGA1UEBhMCVVMxFjAUBgNVBAoT
+DUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVybXMx
+OTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25s
+eTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIwggEi
+MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6hLZy254Ma+KZ6TABp3bqMriVQRrJ2mFOWHLP
+/vaCeb9zYQYKpSfYs1/TRU4cctZOMvJyig/3gxnQaoCAAEUesMfnmr8SVycco2gvCoe9amsOXmXz
+HHfV1IWNcCG0szLni6LVhjkCsbjSR87kyUnEO6fe+1R9V77w6G7CebI6C1XiUJgWMhNcL3hWwcKU
+s/Ja5CeanyTXxuzQmyWC48zCxEXFjJd6BmsqEZ+pCm5IO2/b1BEZQvePB7/1U1+cPvQXLOZprE4y
+TGJ36rfo5bs0vBmLrpxR57d+tVOxMyLlbc9wPBr64ptntoP0jaWvYkxN4FisZDQSA/i2jZRjJKRx
+AgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqciZ6
+0B7vfec7aVHUbI2fkBJmqzANBgkqhkiG9w0BAQsFAAOCAQEAeZ8dlsa2eT8ijYfThwMEYGprmi5Z
+iXMRrEPR9RP/jTkrwPK9T3CMqS/qF8QLVJ7UG5aYMzyorWKiAHarWWluBh1+xLlEjZivEtRh2woZ
+Rkfz6/djwUAFQKXSt/S1mja/qYh2iARVBCuch38aNzx+LaUa2NSJXsq9rD1s2G2v1fN2D807iDgi
+nWyTmsQ9v4IbZT+mD12q/OWyFcq1rca8PdCE6OoGcrBNOTJ4vz4RnAuknZoh8/CbCzB428Hch0P+
+vGOaysXCHMnHjf87ElgI5rY97HosTvuDls4MPGmHVHOkc8KT/1EQrBVUAdj8BbGJoX90g5pJ19xO
+e4pIb4tF9g==
+-----END CERTIFICATE-----
+
+Entrust Root Certification Authority - EC1
+==========================================
+-----BEGIN CERTIFICATE-----
+MIIC+TCCAoCgAwIBAgINAKaLeSkAAAAAUNCR+TAKBggqhkjOPQQDAzCBvzELMAkGA1UEBhMCVVMx
+FjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVn
+YWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDEyIEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXpl
+ZCB1c2Ugb25seTEzMDEGA1UEAxMqRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5
+IC0gRUMxMB4XDTEyMTIxODE1MjUzNloXDTM3MTIxODE1NTUzNlowgb8xCzAJBgNVBAYTAlVTMRYw
+FAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3QubmV0L2xlZ2Fs
+LXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxMiBFbnRydXN0LCBJbmMuIC0gZm9yIGF1dGhvcml6ZWQg
+dXNlIG9ubHkxMzAxBgNVBAMTKkVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAt
+IEVDMTB2MBAGByqGSM49AgEGBSuBBAAiA2IABIQTydC6bUF74mzQ61VfZgIaJPRbiWlH47jCffHy
+AsWfoPZb1YsGGYZPUxBtByQnoaD41UcZYUx9ypMn6nQM72+WCf5j7HBdNq1nd67JnXxVRDqiY1Ef
+9eNi1KlHBz7MIKNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYE
+FLdj5xrdjekIplWDpOBqUEFlEUJJMAoGCCqGSM49BAMDA2cAMGQCMGF52OVCR98crlOZF7ZvHH3h
+vxGU0QOIdeSNiaSKd0bebWHvAvX7td/M/k7//qnmpwIwW5nXhTcGtXsI/esni0qU+eH6p44mCOh8
+kmhtc9hvJqwhAriZtyZBWyVgrtBIGu4G
+-----END CERTIFICATE-----
+
+CFCA EV ROOT
+============
+-----BEGIN CERTIFICATE-----
+MIIFjTCCA3WgAwIBAgIEGErM1jANBgkqhkiG9w0BAQsFADBWMQswCQYDVQQGEwJDTjEwMC4GA1UE
+CgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRUwEwYDVQQDDAxDRkNB
+IEVWIFJPT1QwHhcNMTIwODA4MDMwNzAxWhcNMjkxMjMxMDMwNzAxWjBWMQswCQYDVQQGEwJDTjEw
+MC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRUwEwYDVQQD
+DAxDRkNBIEVWIFJPT1QwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDXXWvNED8fBVnV
+BU03sQ7smCuOFR36k0sXgiFxEFLXUWRwFsJVaU2OFW2fvwwbwuCjZ9YMrM8irq93VCpLTIpTUnrD
+7i7es3ElweldPe6hL6P3KjzJIx1qqx2hp/Hz7KDVRM8Vz3IvHWOX6Jn5/ZOkVIBMUtRSqy5J35DN
+uF++P96hyk0g1CXohClTt7GIH//62pCfCqktQT+x8Rgp7hZZLDRJGqgG16iI0gNyejLi6mhNbiyW
+ZXvKWfry4t3uMCz7zEasxGPrb382KzRzEpR/38wmnvFyXVBlWY9ps4deMm/DGIq1lY+wejfeWkU7
+xzbh72fROdOXW3NiGUgthxwG+3SYIElz8AXSG7Ggo7cbcNOIabla1jj0Ytwli3i/+Oh+uFzJlU9f
+py25IGvPa931DfSCt/SyZi4QKPaXWnuWFo8BGS1sbn85WAZkgwGDg8NNkt0yxoekN+kWzqotaK8K
+gWU6cMGbrU1tVMoqLUuFG7OA5nBFDWteNfB/O7ic5ARwiRIlk9oKmSJgamNgTnYGmE69g60dWIol
+hdLHZR4tjsbftsbhf4oEIRUpdPA+nJCdDC7xij5aqgwJHsfVPKPtl8MeNPo4+QgO48BdK4PRVmrJ
+tqhUUy54Mmc9gn900PvhtgVguXDbjgv5E1hvcWAQUhC5wUEJ73IfZzF4/5YFjQIDAQABo2MwYTAf
+BgNVHSMEGDAWgBTj/i39KNALtbq2osS/BqoFjJP7LzAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB
+/wQEAwIBBjAdBgNVHQ4EFgQU4/4t/SjQC7W6tqLEvwaqBYyT+y8wDQYJKoZIhvcNAQELBQADggIB
+ACXGumvrh8vegjmWPfBEp2uEcwPenStPuiB/vHiyz5ewG5zz13ku9Ui20vsXiObTej/tUxPQ4i9q
+ecsAIyjmHjdXNYmEwnZPNDatZ8POQQaIxffu2Bq41gt/UP+TqhdLjOztUmCypAbqTuv0axn96/Ua
+4CUqmtzHQTb3yHQFhDmVOdYLO6Qn+gjYXB74BGBSESgoA//vU2YApUo0FmZ8/Qmkrp5nGm9BC2sG
+E5uPhnEFtC+NiWYzKXZUmhH4J/qyP5Hgzg0b8zAarb8iXRvTvyUFTeGSGn+ZnzxEk8rUQElsgIfX
+BDrDMlI1Dlb4pd19xIsNER9Tyx6yF7Zod1rg1MvIB671Oi6ON7fQAUtDKXeMOZePglr4UeWJoBjn
+aH9dCi77o0cOPaYjesYBx4/IXr9tgFa+iiS6M+qf4TIRnvHST4D2G0CvOJ4RUHlzEhLN5mydLIhy
+PDCBBpEi6lmt2hkuIsKNuYyH4Ga8cyNfIWRjgEj1oDwYPZTISEEdQLpe/v5WOaHIz16eGWRGENoX
+kbcFgKyLmZJ956LYBws2J+dIeWCKw9cTXPhyQN9Ky8+ZAAoACxGV2lZFA4gKn2fQ1XmxqI1AbQ3C
+ekD6819kR5LLU7m7Wc5P/dAVUwHY3+vZ5nbv0CO7O6l5s9UCKc2Jo5YPSjXnTkLAdc0Hz+Ys63su
+-----END CERTIFICATE-----
+
+OISTE WISeKey Global Root GB CA
+===============================
+-----BEGIN CERTIFICATE-----
+MIIDtTCCAp2gAwIBAgIQdrEgUnTwhYdGs/gjGvbCwDANBgkqhkiG9w0BAQsFADBtMQswCQYDVQQG
+EwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUgRm91bmRhdGlvbiBFbmRvcnNl
+ZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9iYWwgUm9vdCBHQiBDQTAeFw0xNDEyMDExNTAw
+MzJaFw0zOTEyMDExNTEwMzFaMG0xCzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYD
+VQQLExlPSVNURSBGb3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEds
+b2JhbCBSb290IEdCIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2Be3HEokKtaX
+scriHvt9OO+Y9bI5mE4nuBFde9IllIiCFSZqGzG7qFshISvYD06fWvGxWuR51jIjK+FTzJlFXHtP
+rby/h0oLS5daqPZI7H17Dc0hBt+eFf1Biki3IPShehtX1F1Q/7pn2COZH8g/497/b1t3sWtuuMlk
+9+HKQUYOKXHQuSP8yYFfTvdv37+ErXNku7dCjmn21HYdfp2nuFeKUWdy19SouJVUQHMD9ur06/4o
+Qnc/nSMbsrY9gBQHTC5P99UKFg29ZkM3fiNDecNAhvVMKdqOmq0NpQSHiB6F4+lT1ZvIiwNjeOvg
+GUpuuy9rM2RYk61pv48b74JIxwIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB
+/zAdBgNVHQ4EFgQUNQ/INmNe4qPs+TtmFc5RUuORmj0wEAYJKwYBBAGCNxUBBAMCAQAwDQYJKoZI
+hvcNAQELBQADggEBAEBM+4eymYGQfp3FsLAmzYh7KzKNbrghcViXfa43FK8+5/ea4n32cZiZBKpD
+dHij40lhPnOMTZTg+XHEthYOU3gf1qKHLwI5gSk8rxWYITD+KJAAjNHhy/peyP34EEY7onhCkRd0
+VQreUGdNZtGn//3ZwLWoo4rOZvUPQ82nK1d7Y0Zqqi5S2PTt4W2tKZB4SLrhI6qjiey1q5bAtEui
+HZeeevJuQHHfaPFlTc58Bd9TZaml8LGXBHAVRgOY1NK/VLSgWH1Sb9pWJmLU2NuJMW8c8CLC02Ic
+Nc1MaRVUGpCY3useX8p3x8uOPUNpnJpY0CQ73xtAln41rYHHTnG6iBM=
+-----END CERTIFICATE-----
+
+SZAFIR ROOT CA2
+===============
+-----BEGIN CERTIFICATE-----
+MIIDcjCCAlqgAwIBAgIUPopdB+xV0jLVt+O2XwHrLdzk1uQwDQYJKoZIhvcNAQELBQAwUTELMAkG
+A1UEBhMCUEwxKDAmBgNVBAoMH0tyYWpvd2EgSXpiYSBSb3psaWN6ZW5pb3dhIFMuQS4xGDAWBgNV
+BAMMD1NaQUZJUiBST09UIENBMjAeFw0xNTEwMTkwNzQzMzBaFw0zNTEwMTkwNzQzMzBaMFExCzAJ
+BgNVBAYTAlBMMSgwJgYDVQQKDB9LcmFqb3dhIEl6YmEgUm96bGljemVuaW93YSBTLkEuMRgwFgYD
+VQQDDA9TWkFGSVIgUk9PVCBDQTIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC3vD5Q
+qEvNQLXOYeeWyrSh2gwisPq1e3YAd4wLz32ohswmUeQgPYUM1ljj5/QqGJ3a0a4m7utT3PSQ1hNK
+DJA8w/Ta0o4NkjrcsbH/ON7Dui1fgLkCvUqdGw+0w8LBZwPd3BucPbOw3gAeqDRHu5rr/gsUvTaE
+2g0gv/pby6kWIK05YO4vdbbnl5z5Pv1+TW9NL++IDWr63fE9biCloBK0TXC5ztdyO4mTp4CEHCdJ
+ckm1/zuVnsHMyAHs6A6KCpbns6aH5db5BSsNl0BwPLqsdVqc1U2dAgrSS5tmS0YHF2Wtn2yIANwi
+ieDhZNRnvDF5YTy7ykHNXGoAyDw4jlivAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0P
+AQH/BAQDAgEGMB0GA1UdDgQWBBQuFqlKGLXLzPVvUPMjX/hd56zwyDANBgkqhkiG9w0BAQsFAAOC
+AQEAtXP4A9xZWx126aMqe5Aosk3AM0+qmrHUuOQn/6mWmc5G4G18TKI4pAZw8PRBEew/R40/cof5
+O/2kbytTAOD/OblqBw7rHRz2onKQy4I9EYKL0rufKq8h5mOGnXkZ7/e7DDWQw4rtTw/1zBLZpD67
+oPwglV9PJi8RI4NOdQcPv5vRtB3pEAT+ymCPoky4rc/hkA/NrgrHXXu3UNLUYfrVFdvXn4dRVOul
+4+vJhaAlIDf7js4MNIThPIGyd05DpYhfhmehPea0XGG2Ptv+tyjFogeutcrKjSoS75ftwjCkySp6
++/NNIxuZMzSgLvWpCz/UXeHPhJ/iGcJfitYgHuNztw==
+-----END CERTIFICATE-----
+
+Certum Trusted Network CA 2
+===========================
+-----BEGIN CERTIFICATE-----
+MIIF0jCCA7qgAwIBAgIQIdbQSk8lD8kyN/yqXhKN6TANBgkqhkiG9w0BAQ0FADCBgDELMAkGA1UE
+BhMCUEwxIjAgBgNVBAoTGVVuaXpldG8gVGVjaG5vbG9naWVzIFMuQS4xJzAlBgNVBAsTHkNlcnR1
+bSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEkMCIGA1UEAxMbQ2VydHVtIFRydXN0ZWQgTmV0d29y
+ayBDQSAyMCIYDzIwMTExMDA2MDgzOTU2WhgPMjA0NjEwMDYwODM5NTZaMIGAMQswCQYDVQQGEwJQ
+TDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENl
+cnRpZmljYXRpb24gQXV0aG9yaXR5MSQwIgYDVQQDExtDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENB
+IDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC9+Xj45tWADGSdhhuWZGc/IjoedQF9
+7/tcZ4zJzFxrqZHmuULlIEub2pt7uZld2ZuAS9eEQCsn0+i6MLs+CRqnSZXvK0AkwpfHp+6bJe+o
+CgCXhVqqndwpyeI1B+twTUrWwbNWuKFBOJvR+zF/j+Bf4bE/D44WSWDXBo0Y+aomEKsq09DRZ40b
+Rr5HMNUuctHFY9rnY3lEfktjJImGLjQ/KUxSiyqnwOKRKIm5wFv5HdnnJ63/mgKXwcZQkpsCLL2p
+uTRZCr+ESv/f/rOf69me4Jgj7KZrdxYq28ytOxykh9xGc14ZYmhFV+SQgkK7QtbwYeDBoz1mo130
+GO6IyY0XRSmZMnUCMe4pJshrAua1YkV/NxVaI2iJ1D7eTiew8EAMvE0Xy02isx7QBlrd9pPPV3WZ
+9fqGGmd4s7+W/jTcvedSVuWz5XV710GRBdxdaeOVDUO5/IOWOZV7bIBaTxNyxtd9KXpEulKkKtVB
+Rgkg/iKgtlswjbyJDNXXcPiHUv3a76xRLgezTv7QCdpw75j6VuZt27VXS9zlLCUVyJ4ueE742pye
+hizKV/Ma5ciSixqClnrDvFASadgOWkaLOusm+iPJtrCBvkIApPjW/jAux9JG9uWOdf3yzLnQh1vM
+BhBgu4M1t15n3kfsmUjxpKEV/q2MYo45VU85FrmxY53/twIDAQABo0IwQDAPBgNVHRMBAf8EBTAD
+AQH/MB0GA1UdDgQWBBS2oVQ5AsOgP46KvPrU+Bym0ToO/TAOBgNVHQ8BAf8EBAMCAQYwDQYJKoZI
+hvcNAQENBQADggIBAHGlDs7k6b8/ONWJWsQCYftMxRQXLYtPU2sQF/xlhMcQSZDe28cmk4gmb3DW
+Al45oPePq5a1pRNcgRRtDoGCERuKTsZPpd1iHkTfCVn0W3cLN+mLIMb4Ck4uWBzrM9DPhmDJ2vuA
+L55MYIR4PSFk1vtBHxgP58l1cb29XN40hz5BsA72udY/CROWFC/emh1auVbONTqwX3BNXuMp8SMo
+clm2q8KMZiYcdywmdjWLKKdpoPk79SPdhRB0yZADVpHnr7pH1BKXESLjokmUbOe3lEu6LaTaM4tM
+pkT/WjzGHWTYtTHkpjx6qFcL2+1hGsvxznN3Y6SHb0xRONbkX8eftoEq5IVIeVheO/jbAoJnwTnb
+w3RLPTYe+SmTiGhbqEQZIfCn6IENLOiTNrQ3ssqwGyZ6miUfmpqAnksqP/ujmv5zMnHCnsZy4Ypo
+J/HkD7TETKVhk/iXEAcqMCWpuchxuO9ozC1+9eB+D4Kob7a6bINDd82Kkhehnlt4Fj1F4jNy3eFm
+ypnTycUm/Q1oBEauttmbjL4ZvrHG8hnjXALKLNhvSgfZyTXaQHXyxKcZb55CEJh15pWLYLztxRLX
+is7VmFxWlgPF7ncGNf/P5O4/E2Hu29othfDNrp2yGAlFw5Khchf8R7agCyzxxN5DaAhqXzvwdmP7
+zAYspsbiDrW5viSP
+-----END CERTIFICATE-----
+
+Hellenic Academic and Research Institutions RootCA 2015
+=======================================================
+-----BEGIN CERTIFICATE-----
+MIIGCzCCA/OgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBpjELMAkGA1UEBhMCR1IxDzANBgNVBAcT
+BkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0
+aW9ucyBDZXJ0LiBBdXRob3JpdHkxQDA+BgNVBAMTN0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNl
+YXJjaCBJbnN0aXR1dGlvbnMgUm9vdENBIDIwMTUwHhcNMTUwNzA3MTAxMTIxWhcNNDAwNjMwMTAx
+MTIxWjCBpjELMAkGA1UEBhMCR1IxDzANBgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMg
+QWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxQDA+BgNV
+BAMTN0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgUm9vdENBIDIw
+MTUwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDC+Kk/G4n8PDwEXT2QNrCROnk8Zlrv
+bTkBSRq0t89/TSNTt5AA4xMqKKYx8ZEA4yjsriFBzh/a/X0SWwGDD7mwX5nh8hKDgE0GPt+sr+eh
+iGsxr/CL0BgzuNtFajT0AoAkKAoCFZVedioNmToUW/bLy1O8E00BiDeUJRtCvCLYjqOWXjrZMts+
+6PAQZe104S+nfK8nNLspfZu2zwnI5dMK/IhlZXQK3HMcXM1AsRzUtoSMTFDPaI6oWa7CJ06CojXd
+FPQf/7J31Ycvqm59JCfnxssm5uX+Zwdj2EUN3TpZZTlYepKZcj2chF6IIbjV9Cz82XBST3i4vTwr
+i5WY9bPRaM8gFH5MXF/ni+X1NYEZN9cRCLdmvtNKzoNXADrDgfgXy5I2XdGj2HUb4Ysn6npIQf1F
+GQatJ5lOwXBH3bWfgVMS5bGMSF0xQxfjjMZ6Y5ZLKTBOhE5iGV48zpeQpX8B653g+IuJ3SWYPZK2
+fu/Z8VFRfS0myGlZYeCsargqNhEEelC9MoS+L9xy1dcdFkfkR2YgP/SWxa+OAXqlD3pk9Q0Yh9mu
+iNX6hME6wGkoLfINaFGq46V3xqSQDqE3izEjR8EJCOtu93ib14L8hCCZSRm2Ekax+0VVFqmjZayc
+Bw/qa9wfLgZy7IaIEuQt218FL+TwA9MmM+eAws1CoRc0CwIDAQABo0IwQDAPBgNVHRMBAf8EBTAD
+AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUcRVnyMjJvXVdctA4GGqd83EkVAswDQYJKoZI
+hvcNAQELBQADggIBAHW7bVRLqhBYRjTyYtcWNl0IXtVsyIe9tC5G8jH4fOpCtZMWVdyhDBKg2mF+
+D1hYc2Ryx+hFjtyp8iY/xnmMsVMIM4GwVhO+5lFc2JsKT0ucVlMC6U/2DWDqTUJV6HwbISHTGzrM
+d/K4kPFox/la/vot9L/J9UUbzjgQKjeKeaO04wlshYaT/4mWJ3iBj2fjRnRUjtkNaeJK9E10A/+y
+d+2VZ5fkscWrv2oj6NSU4kQoYsRL4vDY4ilrGnB+JGGTe08DMiUNRSQrlrRGar9KC/eaj8GsGsVn
+82800vpzY4zvFrCopEYq+OsS7HK07/grfoxSwIuEVPkvPuNVqNxmsdnhX9izjFk0WaSrT2y7Hxjb
+davYy5LNlDhhDgcGH0tGEPEVvo2FXDtKK4F5D7Rpn0lQl033DlZdwJVqwjbDG2jJ9SrcR5q+ss7F
+Jej6A7na+RZukYT1HCjI/CbM1xyQVqdfbzoEvM14iQuODy+jqk+iGxI9FghAD/FGTNeqewjBCvVt
+J94Cj8rDtSvK6evIIVM4pcw72Hc3MKJP2W/R8kCtQXoXxdZKNYm3QdV8hn9VTYNKpXMgwDqvkPGa
+JI7ZjnHKe7iG2rKPmT4dEw0SEe7Uq/DpFXYC5ODfqiAeW2GFZECpkJcNrVPSWh2HagCXZWK0vm9q
+p/UsQu0yrbYhnr68
+-----END CERTIFICATE-----
+
+Hellenic Academic and Research Institutions ECC RootCA 2015
+===========================================================
+-----BEGIN CERTIFICATE-----
+MIICwzCCAkqgAwIBAgIBADAKBggqhkjOPQQDAjCBqjELMAkGA1UEBhMCR1IxDzANBgNVBAcTBkF0
+aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9u
+cyBDZXJ0LiBBdXRob3JpdHkxRDBCBgNVBAMTO0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJj
+aCBJbnN0aXR1dGlvbnMgRUNDIFJvb3RDQSAyMDE1MB4XDTE1MDcwNzEwMzcxMloXDTQwMDYzMDEw
+MzcxMlowgaoxCzAJBgNVBAYTAkdSMQ8wDQYDVQQHEwZBdGhlbnMxRDBCBgNVBAoTO0hlbGxlbmlj
+IEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ2VydC4gQXV0aG9yaXR5MUQwQgYD
+VQQDEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIEVDQyBSb290
+Q0EgMjAxNTB2MBAGByqGSM49AgEGBSuBBAAiA2IABJKgQehLgoRc4vgxEZmGZE4JJS+dQS8KrjVP
+dJWyUWRrjWvmP3CV8AVER6ZyOFB2lQJajq4onvktTpnvLEhvTCUp6NFxW98dwXU3tNf6e3pCnGoK
+Vlp8aQuqgAkkbH7BRqNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0O
+BBYEFLQiC4KZJAEOnLvkDv2/+5cgk5kqMAoGCCqGSM49BAMCA2cAMGQCMGfOFmI4oqxiRaeplSTA
+GiecMjvAwNW6qef4BENThe5SId6d9SWDPp5YSy/XZxMOIQIwBeF1Ad5o7SofTUwJCA3sS61kFyjn
+dc5FZXIhF8siQQ6ME5g4mlRtm8rifOoCWCKR
+-----END CERTIFICATE-----
+
+ISRG Root X1
+============
+-----BEGIN CERTIFICATE-----
+MIIFazCCA1OgAwIBAgIRAIIQz7DSQONZRGPgu2OCiwAwDQYJKoZIhvcNAQELBQAwTzELMAkGA1UE
+BhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2VhcmNoIEdyb3VwMRUwEwYDVQQD
+EwxJU1JHIFJvb3QgWDEwHhcNMTUwNjA0MTEwNDM4WhcNMzUwNjA0MTEwNDM4WjBPMQswCQYDVQQG
+EwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMT
+DElTUkcgUm9vdCBYMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK3oJHP0FDfzm54r
+Vygch77ct984kIxuPOZXoHj3dcKi/vVqbvYATyjb3miGbESTtrFj/RQSa78f0uoxmyF+0TM8ukj1
+3Xnfs7j/EvEhmkvBioZxaUpmZmyPfjxwv60pIgbz5MDmgK7iS4+3mX6UA5/TR5d8mUgjU+g4rk8K
+b4Mu0UlXjIB0ttov0DiNewNwIRt18jA8+o+u3dpjq+sWT8KOEUt+zwvo/7V3LvSye0rgTBIlDHCN
+Aymg4VMk7BPZ7hm/ELNKjD+Jo2FR3qyHB5T0Y3HsLuJvW5iB4YlcNHlsdu87kGJ55tukmi8mxdAQ
+4Q7e2RCOFvu396j3x+UCB5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf
+1b0SHzUvKBds0pjBqAlkd25HN7rOrFleaJ1/ctaJxQZBKT5ZPt0m9STJEadao0xAH0ahmbWnOlFu
+hjuefXKnEgV4We0+UXgVCwOPjdAvBbI+e0ocS3MFEvzG6uBQE3xDk3SzynTnjh8BCNAw1FtxNrQH
+usEwMFxIt4I7mKZ9YIqioymCzLq9gwQbooMDQaHWBfEbwrbwqHyGO0aoSCqI3Haadr8faqU9GY/r
+OPNk3sgrDQoo//fb4hVC1CLQJ13hef4Y53CIrU7m2Ys6xt0nUW7/vGT1M0NPAgMBAAGjQjBAMA4G
+A1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBR5tFnme7bl5AFzgAiIyBpY
+9umbbjANBgkqhkiG9w0BAQsFAAOCAgEAVR9YqbyyqFDQDLHYGmkgJykIrGF1XIpu+ILlaS/V9lZL
+ubhzEFnTIZd+50xx+7LSYK05qAvqFyFWhfFQDlnrzuBZ6brJFe+GnY+EgPbk6ZGQ3BebYhtF8GaV
+0nxvwuo77x/Py9auJ/GpsMiu/X1+mvoiBOv/2X/qkSsisRcOj/KKNFtY2PwByVS5uCbMiogziUwt
+hDyC3+6WVwW6LLv3xLfHTjuCvjHIInNzktHCgKQ5ORAzI4JMPJ+GslWYHb4phowim57iaztXOoJw
+TdwJx4nLCgdNbOhdjsnvzqvHu7UrTkXWStAmzOVyyghqpZXjFaH3pO3JLF+l+/+sKAIuvtd7u+Nx
+e5AW0wdeRlN8NwdCjNPElpzVmbUq4JUagEiuTDkHzsxHpFKVK7q4+63SM1N95R1NbdWhscdCb+ZA
+JzVcoyi3B43njTOQ5yOf+1CceWxG1bQVs5ZufpsMljq4Ui0/1lvh+wjChP4kqKOJ2qxq4RgqsahD
+YVvTH9w7jXbyLeiNdd8XM2w9U/t7y0Ff/9yi0GE44Za4rF2LN9d11TPAmRGunUHBcnWEvgJBQl9n
+JEiU0Zsnvgc/ubhPgXRR4Xq37Z0j4r7g1SgEEzwxA57demyPxgcYxn/eR44/KJ4EBs+lVDR3veyJ
+m+kXQ99b21/+jh5Xos1AnX5iItreGCc=
+-----END CERTIFICATE-----
+
+AC RAIZ FNMT-RCM
+================
+-----BEGIN CERTIFICATE-----
+MIIFgzCCA2ugAwIBAgIPXZONMGc2yAYdGsdUhGkHMA0GCSqGSIb3DQEBCwUAMDsxCzAJBgNVBAYT
+AkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJWiBGTk1ULVJDTTAeFw0wODEw
+MjkxNTU5NTZaFw0zMDAxMDEwMDAwMDBaMDsxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJD
+TTEZMBcGA1UECwwQQUMgUkFJWiBGTk1ULVJDTTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoC
+ggIBALpxgHpMhm5/yBNtwMZ9HACXjywMI7sQmkCpGreHiPibVmr75nuOi5KOpyVdWRHbNi63URcf
+qQgfBBckWKo3Shjf5TnUV/3XwSyRAZHiItQDwFj8d0fsjz50Q7qsNI1NOHZnjrDIbzAzWHFctPVr
+btQBULgTfmxKo0nRIBnuvMApGGWn3v7v3QqQIecaZ5JCEJhfTzC8PhxFtBDXaEAUwED653cXeuYL
+j2VbPNmaUtu1vZ5Gzz3rkQUCwJaydkxNEJY7kvqcfw+Z374jNUUeAlz+taibmSXaXvMiwzn15Cou
+08YfxGyqxRxqAQVKL9LFwag0Jl1mpdICIfkYtwb1TplvqKtMUejPUBjFd8g5CSxJkjKZqLsXF3mw
+WsXmo8RZZUc1g16p6DULmbvkzSDGm0oGObVo/CK67lWMK07q87Hj/LaZmtVC+nFNCM+HHmpxffnT
+tOmlcYF7wk5HlqX2doWjKI/pgG6BU6VtX7hI+cL5NqYuSf+4lsKMB7ObiFj86xsc3i1w4peSMKGJ
+47xVqCfWS+2QrYv6YyVZLag13cqXM7zlzced0ezvXg5KkAYmY6252TUtB7p2ZSysV4999AeU14EC
+ll2jB0nVetBX+RvnU0Z1qrB5QstocQjpYL05ac70r8NWQMetUqIJ5G+GR4of6ygnXYMgrwTJbFaa
+i0b1AgMBAAGjgYMwgYAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE
+FPd9xf3E6Jobd2Sn9R2gzL+HYJptMD4GA1UdIAQ3MDUwMwYEVR0gADArMCkGCCsGAQUFBwIBFh1o
+dHRwOi8vd3d3LmNlcnQuZm5tdC5lcy9kcGNzLzANBgkqhkiG9w0BAQsFAAOCAgEAB5BK3/MjTvDD
+nFFlm5wioooMhfNzKWtN/gHiqQxjAb8EZ6WdmF/9ARP67Jpi6Yb+tmLSbkyU+8B1RXxlDPiyN8+s
+D8+Nb/kZ94/sHvJwnvDKuO+3/3Y3dlv2bojzr2IyIpMNOmqOFGYMLVN0V2Ue1bLdI4E7pWYjJ2cJ
+j+F3qkPNZVEI7VFY/uY5+ctHhKQV8Xa7pO6kO8Rf77IzlhEYt8llvhjho6Tc+hj507wTmzl6NLrT
+Qfv6MooqtyuGC2mDOL7Nii4LcK2NJpLuHvUBKwrZ1pebbuCoGRw6IYsMHkCtA+fdZn71uSANA+iW
++YJF1DngoABd15jmfZ5nc8OaKveri6E6FO80vFIOiZiaBECEHX5FaZNXzuvO+FB8TxxuBEOb+dY7
+Ixjp6o7RTUaN8Tvkasq6+yO3m/qZASlaWFot4/nUbQ4mrcFuNLwy+AwF+mWj2zs3gyLp1txyM/1d
+8iC9djwj2ij3+RvrWWTV3F9yfiD8zYm1kGdNYno/Tq0dwzn+evQoFt9B9kiABdcPUXmsEKvU7ANm
+5mqwujGSQkBqvjrTcuFqN1W8rB2Vt2lh8kORdOag0wokRqEIr9baRRmW1FMdW4R58MD3R++Lj8UG
+rp1MYp3/RgT408m2ECVAdf4WqslKYIYvuu8wd+RU4riEmViAqhOLUTpPSPaLtrM=
+-----END CERTIFICATE-----
+
+Amazon Root CA 1
+================
+-----BEGIN CERTIFICATE-----
+MIIDQTCCAimgAwIBAgITBmyfz5m/jAo54vB4ikPmljZbyjANBgkqhkiG9w0BAQsFADA5MQswCQYD
+VQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAxMB4XDTE1
+MDUyNjAwMDAwMFoXDTM4MDExNzAwMDAwMFowOTELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpv
+bjEZMBcGA1UEAxMQQW1hem9uIFJvb3QgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC
+ggEBALJ4gHHKeNXjca9HgFB0fW7Y14h29Jlo91ghYPl0hAEvrAIthtOgQ3pOsqTQNroBvo3bSMgH
+FzZM9O6II8c+6zf1tRn4SWiw3te5djgdYZ6k/oI2peVKVuRF4fn9tBb6dNqcmzU5L/qwIFAGbHrQ
+gLKm+a/sRxmPUDgH3KKHOVj4utWp+UhnMJbulHheb4mjUcAwhmahRWa6VOujw5H5SNz/0egwLX0t
+dHA114gk957EWW67c4cX8jJGKLhD+rcdqsq08p8kDi1L93FcXmn/6pUCyziKrlA4b9v7LWIbxcce
+VOF34GfID5yHI9Y/QCB/IIDEgEw+OyQmjgSubJrIqg0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB
+/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFIQYzIU07LwMlJQuCFmcx7IQTgoIMA0GCSqGSIb3
+DQEBCwUAA4IBAQCY8jdaQZChGsV2USggNiMOruYou6r4lK5IpDB/G/wkjUu0yKGX9rbxenDIU5PM
+CCjjmCXPI6T53iHTfIUJrU6adTrCC2qJeHZERxhlbI1Bjjt/msv0tadQ1wUsN+gDS63pYaACbvXy
+8MWy7Vu33PqUXHeeE6V/Uq2V8viTO96LXFvKWlJbYK8U90vvo/ufQJVtMVT8QtPHRh8jrdkPSHCa
+2XV4cdFyQzR1bldZwgJcJmApzyMZFo6IQ6XU5MsI+yMRQ+hDKXJioaldXgjUkK642M4UwtBV8ob2
+xJNDd2ZhwLnoQdeXeGADbkpyrqXRfboQnoZsG4q5WTP468SQvvG5
+-----END CERTIFICATE-----
+
+Amazon Root CA 2
+================
+-----BEGIN CERTIFICATE-----
+MIIFQTCCAymgAwIBAgITBmyf0pY1hp8KD+WGePhbJruKNzANBgkqhkiG9w0BAQwFADA5MQswCQYD
+VQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAyMB4XDTE1
+MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpv
+bjEZMBcGA1UEAxMQQW1hem9uIFJvb3QgQ0EgMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoC
+ggIBAK2Wny2cSkxKgXlRmeyKy2tgURO8TW0G/LAIjd0ZEGrHJgw12MBvIITplLGbhQPDW9tK6Mj4
+kHbZW0/jTOgGNk3Mmqw9DJArktQGGWCsN0R5hYGCrVo34A3MnaZMUnbqQ523BNFQ9lXg1dKmSYXp
+N+nKfq5clU1Imj+uIFptiJXZNLhSGkOQsL9sBbm2eLfq0OQ6PBJTYv9K8nu+NQWpEjTj82R0Yiw9
+AElaKP4yRLuH3WUnAnE72kr3H9rN9yFVkE8P7K6C4Z9r2UXTu/Bfh+08LDmG2j/e7HJV63mjrdvd
+fLC6HM783k81ds8P+HgfajZRRidhW+mez/CiVX18JYpvL7TFz4QuK/0NURBs+18bvBt+xa47mAEx
+kv8LV/SasrlX6avvDXbR8O70zoan4G7ptGmh32n2M8ZpLpcTnqWHsFcQgTfJU7O7f/aS0ZzQGPSS
+btqDT6ZjmUyl+17vIWR6IF9sZIUVyzfpYgwLKhbcAS4y2j5L9Z469hdAlO+ekQiG+r5jqFoz7Mt0
+Q5X5bGlSNscpb/xVA1wf+5+9R+vnSUeVC06JIglJ4PVhHvG/LopyboBZ/1c6+XUyo05f7O0oYtlN
+c/LMgRdg7c3r3NunysV+Ar3yVAhU/bQtCSwXVEqY0VThUWcI0u1ufm8/0i2BWSlmy5A5lREedCf+
+3euvAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSw
+DPBMMPQFWAJI/TPlUq9LhONmUjANBgkqhkiG9w0BAQwFAAOCAgEAqqiAjw54o+Ci1M3m9Zh6O+oA
+A7CXDpO8Wqj2LIxyh6mx/H9z/WNxeKWHWc8w4Q0QshNabYL1auaAn6AFC2jkR2vHat+2/XcycuUY
++gn0oJMsXdKMdYV2ZZAMA3m3MSNjrXiDCYZohMr/+c8mmpJ5581LxedhpxfL86kSk5Nrp+gvU5LE
+YFiwzAJRGFuFjWJZY7attN6a+yb3ACfAXVU3dJnJUH/jWS5E4ywl7uxMMne0nxrpS10gxdr9HIcW
+xkPo1LsmmkVwXqkLN1PiRnsn/eBG8om3zEK2yygmbtmlyTrIQRNg91CMFa6ybRoVGld45pIq2WWQ
+gj9sAq+uEjonljYE1x2igGOpm/HlurR8FLBOybEfdF849lHqm/osohHUqS0nGkWxr7JOcQ3AWEbW
+aQbLU8uz/mtBzUF+fUwPfHJ5elnNXkoOrJupmHN5fLT0zLm4BwyydFy4x2+IoZCn9Kr5v2c69BoV
+Yh63n749sSmvZ6ES8lgQGVMDMBu4Gon2nL2XA46jCfMdiyHxtN/kHNGfZQIG6lzWE7OE76KlXIx3
+KadowGuuQNKotOrN8I1LOJwZmhsoVLiJkO/KdYE+HvJkJMcYr07/R54H9jVlpNMKVv/1F2Rs76gi
+JUmTtt8AF9pYfl3uxRuw0dFfIRDH+fO6AgonB8Xx1sfT4PsJYGw=
+-----END CERTIFICATE-----
+
+Amazon Root CA 3
+================
+-----BEGIN CERTIFICATE-----
+MIIBtjCCAVugAwIBAgITBmyf1XSXNmY/Owua2eiedgPySjAKBggqhkjOPQQDAjA5MQswCQYDVQQG
+EwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAzMB4XDTE1MDUy
+NjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZ
+MBcGA1UEAxMQQW1hem9uIFJvb3QgQ0EgMzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCmXp8ZB
+f8ANm+gBG1bG8lKlui2yEujSLtf6ycXYqm0fc4E7O5hrOXwzpcVOho6AF2hiRVd9RFgdszflZwjr
+Zt6jQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSrttvXBp43
+rDCGB5Fwx5zEGbF4wDAKBggqhkjOPQQDAgNJADBGAiEA4IWSoxe3jfkrBqWTrBqYaGFy+uGh0Psc
+eGCmQ5nFuMQCIQCcAu/xlJyzlvnrxir4tiz+OpAUFteMYyRIHN8wfdVoOw==
+-----END CERTIFICATE-----
+
+Amazon Root CA 4
+================
+-----BEGIN CERTIFICATE-----
+MIIB8jCCAXigAwIBAgITBmyf18G7EEwpQ+Vxe3ssyBrBDjAKBggqhkjOPQQDAzA5MQswCQYDVQQG
+EwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSA0MB4XDTE1MDUy
+NjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZ
+MBcGA1UEAxMQQW1hem9uIFJvb3QgQ0EgNDB2MBAGByqGSM49AgEGBSuBBAAiA2IABNKrijdPo1MN
+/sGKe0uoe0ZLY7Bi9i0b2whxIdIA6GO9mif78DluXeo9pcmBqqNbIJhFXRbb/egQbeOc4OO9X4Ri
+83BkM6DLJC9wuoihKqB1+IGuYgbEgds5bimwHvouXKNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNV
+HQ8BAf8EBAMCAYYwHQYDVR0OBBYEFNPsxzplbszh2naaVvuc84ZtV+WBMAoGCCqGSM49BAMDA2gA
+MGUCMDqLIfG9fhGt0O9Yli/W651+kI0rz2ZVwyzjKKlwCkcO8DdZEv8tmZQoTipPNU0zWgIxAOp1
+AE47xDqUEpHJWEadIRNyp4iciuRMStuW1KyLa2tJElMzrdfkviT8tQp21KW8EA==
+-----END CERTIFICATE-----
+
+TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1
+=============================================
+-----BEGIN CERTIFICATE-----
+MIIEYzCCA0ugAwIBAgIBATANBgkqhkiG9w0BAQsFADCB0jELMAkGA1UEBhMCVFIxGDAWBgNVBAcT
+D0dlYnplIC0gS29jYWVsaTFCMEAGA1UEChM5VHVya2l5ZSBCaWxpbXNlbCB2ZSBUZWtub2xvamlr
+IEFyYXN0aXJtYSBLdXJ1bXUgLSBUVUJJVEFLMS0wKwYDVQQLEyRLYW11IFNlcnRpZmlrYXN5b24g
+TWVya2V6aSAtIEthbXUgU00xNjA0BgNVBAMTLVRVQklUQUsgS2FtdSBTTSBTU0wgS29rIFNlcnRp
+ZmlrYXNpIC0gU3VydW0gMTAeFw0xMzExMjUwODI1NTVaFw00MzEwMjUwODI1NTVaMIHSMQswCQYD
+VQQGEwJUUjEYMBYGA1UEBxMPR2ViemUgLSBLb2NhZWxpMUIwQAYDVQQKEzlUdXJraXllIEJpbGlt
+c2VsIHZlIFRla25vbG9qaWsgQXJhc3Rpcm1hIEt1cnVtdSAtIFRVQklUQUsxLTArBgNVBAsTJEth
+bXUgU2VydGlmaWthc3lvbiBNZXJrZXppIC0gS2FtdSBTTTE2MDQGA1UEAxMtVFVCSVRBSyBLYW11
+IFNNIFNTTCBLb2sgU2VydGlmaWthc2kgLSBTdXJ1bSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A
+MIIBCgKCAQEAr3UwM6q7a9OZLBI3hNmNe5eA027n/5tQlT6QlVZC1xl8JoSNkvoBHToP4mQ4t4y8
+6Ij5iySrLqP1N+RAjhgleYN1Hzv/bKjFxlb4tO2KRKOrbEz8HdDc72i9z+SqzvBV96I01INrN3wc
+wv61A+xXzry0tcXtAA9TNypN9E8Mg/uGz8v+jE69h/mniyFXnHrfA2eJLJ2XYacQuFWQfw4tJzh0
+3+f92k4S400VIgLI4OD8D62K18lUUMw7D8oWgITQUVbDjlZ/iSIzL+aFCr2lqBs23tPcLG07xxO9
+WSMs5uWk99gL7eqQQESolbuT1dCANLZGeA4fAJNG4e7p+exPFwIDAQABo0IwQDAdBgNVHQ4EFgQU
+ZT/HiobGPN08VFw1+DrtUgxHV8gwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJ
+KoZIhvcNAQELBQADggEBACo/4fEyjq7hmFxLXs9rHmoJ0iKpEsdeV31zVmSAhHqT5Am5EM2fKifh
+AHe+SMg1qIGf5LgsyX8OsNJLN13qudULXjS99HMpw+0mFZx+CFOKWI3QSyjfwbPfIPP54+M638yc
+lNhOT8NrF7f3cuitZjO1JVOr4PhMqZ398g26rrnZqsZr+ZO7rqu4lzwDGrpDxpa5RXI4s6ehlj2R
+e37AIVNMh+3yC1SVUZPVIqUNivGTDj5UDrDYyU7c8jEyVupk+eq1nRZmQnLzf9OxMUP8pI4X8W0j
+q5Rm+K37DwhuJi1/FwcJsoz7UMCflo3Ptv0AnVoUmr8CRPXBwp8iXqIPoeM=
+-----END CERTIFICATE-----
+
+GDCA TrustAUTH R5 ROOT
+======================
+-----BEGIN CERTIFICATE-----
+MIIFiDCCA3CgAwIBAgIIfQmX/vBH6nowDQYJKoZIhvcNAQELBQAwYjELMAkGA1UEBhMCQ04xMjAw
+BgNVBAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZIENPLixMVEQuMR8wHQYDVQQD
+DBZHRENBIFRydXN0QVVUSCBSNSBST09UMB4XDTE0MTEyNjA1MTMxNVoXDTQwMTIzMTE1NTk1OVow
+YjELMAkGA1UEBhMCQ04xMjAwBgNVBAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZ
+IENPLixMVEQuMR8wHQYDVQQDDBZHRENBIFRydXN0QVVUSCBSNSBST09UMIICIjANBgkqhkiG9w0B
+AQEFAAOCAg8AMIICCgKCAgEA2aMW8Mh0dHeb7zMNOwZ+Vfy1YI92hhJCfVZmPoiC7XJjDp6L3TQs
+AlFRwxn9WVSEyfFrs0yw6ehGXTjGoqcuEVe6ghWinI9tsJlKCvLriXBjTnnEt1u9ol2x8kECK62p
+OqPseQrsXzrj/e+APK00mxqriCZ7VqKChh/rNYmDf1+uKU49tm7srsHwJ5uu4/Ts765/94Y9cnrr
+pftZTqfrlYwiOXnhLQiPzLyRuEH3FMEjqcOtmkVEs7LXLM3GKeJQEK5cy4KOFxg2fZfmiJqwTTQJ
+9Cy5WmYqsBebnh52nUpmMUHfP/vFBu8btn4aRjb3ZGM74zkYI+dndRTVdVeSN72+ahsmUPI2JgaQ
+xXABZG12ZuGR224HwGGALrIuL4xwp9E7PLOR5G62xDtw8mySlwnNR30YwPO7ng/Wi64HtloPzgsM
+R6flPri9fcebNaBhlzpBdRfMK5Z3KpIhHtmVdiBnaM8Nvd/WHwlqmuLMc3GkL30SgLdTMEZeS1SZ
+D2fJpcjyIMGC7J0R38IC+xo70e0gmu9lZJIQDSri3nDxGGeCjGHeuLzRL5z7D9Ar7Rt2ueQ5Vfj4
+oR24qoAATILnsn8JuLwwoC8N9VKejveSswoAHQBUlwbgsQfZxw9cZX08bVlX5O2ljelAU58VS6Bx
+9hoh49pwBiFYFIeFd3mqgnkCAwEAAaNCMEAwHQYDVR0OBBYEFOLJQJ9NzuiaoXzPDj9lxSmIahlR
+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQDRSVfg
+p8xoWLoBDysZzY2wYUWsEe1jUGn4H3++Fo/9nesLqjJHdtJnJO29fDMylyrHBYZmDRd9FBUb1Ov9
+H5r2XpdptxolpAqzkT9fNqyL7FeoPueBihhXOYV0GkLH6VsTX4/5COmSdI31R9KrO9b7eGZONn35
+6ZLpBN79SWP8bfsUcZNnL0dKt7n/HipzcEYwv1ryL3ml4Y0M2fmyYzeMN2WFcGpcWwlyua1jPLHd
++PwyvzeG5LuOmCd+uh8W4XAR8gPfJWIyJyYYMoSf/wA6E7qaTfRPuBRwIrHKK5DOKcFw9C+df/KQ
+HtZa37dG/OaG+svgIHZ6uqbL9XzeYqWxi+7egmaKTjowHz+Ay60nugxe19CxVsp3cbK1daFQqUBD
+F8Io2c9Si1vIY9RCPqAzekYu9wogRlR+ak8x8YF+QnQ4ZXMn7sZ8uI7XpTrXmKGcjBBV09tL7ECQ
+8s1uV9JiDnxXk7Gnbc2dg7sq5+W2O3FYrf3RRbxake5TFW/TRQl1brqQXR4EzzffHqhmsYzmIGrv
+/EhOdJhCrylvLmrH+33RZjEizIYAfmaDDEL0vTSSwxrqT8p+ck0LcIymSLumoRT2+1hEmRSuqguT
+aaApJUqlyyvdimYHFngVV3Eb7PVHhPOeMTd61X8kreS8/f3MboPoDKi3QWwH3b08hpcv0g==
+-----END CERTIFICATE-----
+
+TrustCor RootCert CA-1
+======================
+-----BEGIN CERTIFICATE-----
+MIIEMDCCAxigAwIBAgIJANqb7HHzA7AZMA0GCSqGSIb3DQEBCwUAMIGkMQswCQYDVQQGEwJQQTEP
+MA0GA1UECAwGUGFuYW1hMRQwEgYDVQQHDAtQYW5hbWEgQ2l0eTEkMCIGA1UECgwbVHJ1c3RDb3Ig
+U3lzdGVtcyBTLiBkZSBSLkwuMScwJQYDVQQLDB5UcnVzdENvciBDZXJ0aWZpY2F0ZSBBdXRob3Jp
+dHkxHzAdBgNVBAMMFlRydXN0Q29yIFJvb3RDZXJ0IENBLTEwHhcNMTYwMjA0MTIzMjE2WhcNMjkx
+MjMxMTcyMzE2WjCBpDELMAkGA1UEBhMCUEExDzANBgNVBAgMBlBhbmFtYTEUMBIGA1UEBwwLUGFu
+YW1hIENpdHkxJDAiBgNVBAoMG1RydXN0Q29yIFN5c3RlbXMgUy4gZGUgUi5MLjEnMCUGA1UECwwe
+VHJ1c3RDb3IgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MR8wHQYDVQQDDBZUcnVzdENvciBSb290Q2Vy
+dCBDQS0xMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv463leLCJhJrMxnHQFgKq1mq
+jQCj/IDHUHuO1CAmujIS2CNUSSUQIpidRtLByZ5OGy4sDjjzGiVoHKZaBeYei0i/mJZ0PmnK6bV4
+pQa81QBeCQryJ3pS/C3Vseq0iWEk8xoT26nPUu0MJLq5nux+AHT6k61sKZKuUbS701e/s/OojZz0
+JEsq1pme9J7+wH5COucLlVPat2gOkEz7cD+PSiyU8ybdY2mplNgQTsVHCJCZGxdNuWxu72CVEY4h
+gLW9oHPY0LJ3xEXqWib7ZnZ2+AYfYW0PVcWDtxBWcgYHpfOxGgMFZA6dWorWhnAbJN7+KIor0Gqw
+/Hqi3LJ5DotlDwIDAQABo2MwYTAdBgNVHQ4EFgQU7mtJPHo/DeOxCbeKyKsZn3MzUOcwHwYDVR0j
+BBgwFoAU7mtJPHo/DeOxCbeKyKsZn3MzUOcwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC
+AYYwDQYJKoZIhvcNAQELBQADggEBACUY1JGPE+6PHh0RU9otRCkZoB5rMZ5NDp6tPVxBb5UrJKF5
+mDo4Nvu7Zp5I/5CQ7z3UuJu0h3U/IJvOcs+hVcFNZKIZBqEHMwwLKeXx6quj7LUKdJDHfXLy11yf
+ke+Ri7fc7Waiz45mO7yfOgLgJ90WmMCV1Aqk5IGadZQ1nJBfiDcGrVmVCrDRZ9MZyonnMlo2HD6C
+qFqTvsbQZJG2z9m2GM/bftJlo6bEjhcxwft+dtvTheNYsnd6djtsL1Ac59v2Z3kf9YKVmgenFK+P
+3CghZwnS1k1aHBkcjndcw5QkPTJrS37UeJSDvjdNzl/HHk484IkzlQsPpTLWPFp5LBk=
+-----END CERTIFICATE-----
+
+TrustCor RootCert CA-2
+======================
+-----BEGIN CERTIFICATE-----
+MIIGLzCCBBegAwIBAgIIJaHfyjPLWQIwDQYJKoZIhvcNAQELBQAwgaQxCzAJBgNVBAYTAlBBMQ8w
+DQYDVQQIDAZQYW5hbWExFDASBgNVBAcMC1BhbmFtYSBDaXR5MSQwIgYDVQQKDBtUcnVzdENvciBT
+eXN0ZW1zIFMuIGRlIFIuTC4xJzAlBgNVBAsMHlRydXN0Q29yIENlcnRpZmljYXRlIEF1dGhvcml0
+eTEfMB0GA1UEAwwWVHJ1c3RDb3IgUm9vdENlcnQgQ0EtMjAeFw0xNjAyMDQxMjMyMjNaFw0zNDEy
+MzExNzI2MzlaMIGkMQswCQYDVQQGEwJQQTEPMA0GA1UECAwGUGFuYW1hMRQwEgYDVQQHDAtQYW5h
+bWEgQ2l0eTEkMCIGA1UECgwbVHJ1c3RDb3IgU3lzdGVtcyBTLiBkZSBSLkwuMScwJQYDVQQLDB5U
+cnVzdENvciBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkxHzAdBgNVBAMMFlRydXN0Q29yIFJvb3RDZXJ0
+IENBLTIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCnIG7CKqJiJJWQdsg4foDSq8Gb
+ZQWU9MEKENUCrO2fk8eHyLAnK0IMPQo+QVqedd2NyuCb7GgypGmSaIwLgQ5WoD4a3SwlFIIvl9Nk
+RvRUqdw6VC0xK5mC8tkq1+9xALgxpL56JAfDQiDyitSSBBtlVkxs1Pu2YVpHI7TYabS3OtB0PAx1
+oYxOdqHp2yqlO/rOsP9+aij9JxzIsekp8VduZLTQwRVtDr4uDkbIXvRR/u8OYzo7cbrPb1nKDOOb
+XUm4TOJXsZiKQlecdu/vvdFoqNL0Cbt3Nb4lggjEFixEIFapRBF37120Hapeaz6LMvYHL1cEksr1
+/p3C6eizjkxLAjHZ5DxIgif3GIJ2SDpxsROhOdUuxTTCHWKF3wP+TfSvPd9cW436cOGlfifHhi5q
+jxLGhF5DUVCcGZt45vz27Ud+ez1m7xMTiF88oWP7+ayHNZ/zgp6kPwqcMWmLmaSISo5uZk3vFsQP
+eSghYA2FFn3XVDjxklb9tTNMg9zXEJ9L/cb4Qr26fHMC4P99zVvh1Kxhe1fVSntb1IVYJ12/+Ctg
+rKAmrhQhJ8Z3mjOAPF5GP/fDsaOGM8boXg25NSyqRsGFAnWAoOsk+xWq5Gd/bnc/9ASKL3x74xdh
+8N0JqSDIvgmk0H5Ew7IwSjiqqewYmgeCK9u4nBit2uBGF6zPXQIDAQABo2MwYTAdBgNVHQ4EFgQU
+2f4hQG6UnrybPZx9mCAZ5YwwYrIwHwYDVR0jBBgwFoAU2f4hQG6UnrybPZx9mCAZ5YwwYrIwDwYD
+VR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQELBQADggIBAJ5Fngw7tu/h
+Osh80QA9z+LqBrWyOrsGS2h60COXdKcs8AjYeVrXWoSK2BKaG9l9XE1wxaX5q+WjiYndAfrs3fnp
+kpfbsEZC89NiqpX+MWcUaViQCqoL7jcjx1BRtPV+nuN79+TMQjItSQzL/0kMmx40/W5ulop5A7Zv
+2wnL/V9lFDfhOPXzYRZY5LVtDQsEGz9QLX+zx3oaFoBg+Iof6Rsqxvm6ARppv9JYx1RXCI/hOWB3
+S6xZhBqI8d3LT3jX5+EzLfzuQfogsL7L9ziUwOHQhQ+77Sxzq+3+knYaZH9bDTMJBzN7Bj8RpFxw
+PIXAz+OQqIN3+tvmxYxoZxBnpVIt8MSZj3+/0WvitUfW2dCFmU2Umw9Lje4AWkcdEQOsQRivh7dv
+DDqPys/cA8GiCcjl/YBeyGBCARsaU1q7N6a3vLqE6R5sGtRk2tRD/pOLS/IseRYQ1JMLiI+h2IYU
+RpFHmygk71dSTlxCnKr3Sewn6EAes6aJInKc9Q0ztFijMDvd1GpUk74aTfOTlPf8hAs/hCBcNANE
+xdqtvArBAs8e5ZTZ845b2EzwnexhF7sUMlQMAimTHpKG9n/v55IFDlndmQguLvqcAFLTxWYp5KeX
+RKQOKIETNcX2b2TmQcTVL8w0RSXPQQCWPUouwpaYT05KnJe32x+SMsj/D1Fu1uwJ
+-----END CERTIFICATE-----
+
+TrustCor ECA-1
+==============
+-----BEGIN CERTIFICATE-----
+MIIEIDCCAwigAwIBAgIJAISCLF8cYtBAMA0GCSqGSIb3DQEBCwUAMIGcMQswCQYDVQQGEwJQQTEP
+MA0GA1UECAwGUGFuYW1hMRQwEgYDVQQHDAtQYW5hbWEgQ2l0eTEkMCIGA1UECgwbVHJ1c3RDb3Ig
+U3lzdGVtcyBTLiBkZSBSLkwuMScwJQYDVQQLDB5UcnVzdENvciBDZXJ0aWZpY2F0ZSBBdXRob3Jp
+dHkxFzAVBgNVBAMMDlRydXN0Q29yIEVDQS0xMB4XDTE2MDIwNDEyMzIzM1oXDTI5MTIzMTE3Mjgw
+N1owgZwxCzAJBgNVBAYTAlBBMQ8wDQYDVQQIDAZQYW5hbWExFDASBgNVBAcMC1BhbmFtYSBDaXR5
+MSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xJzAlBgNVBAsMHlRydXN0Q29y
+IENlcnRpZmljYXRlIEF1dGhvcml0eTEXMBUGA1UEAwwOVHJ1c3RDb3IgRUNBLTEwggEiMA0GCSqG
+SIb3DQEBAQUAA4IBDwAwggEKAoIBAQDPj+ARtZ+odnbb3w9U73NjKYKtR8aja+3+XzP4Q1HpGjOR
+MRegdMTUpwHmspI+ap3tDvl0mEDTPwOABoJA6LHip1GnHYMma6ve+heRK9jGrB6xnhkB1Zem6g23
+xFUfJ3zSCNV2HykVh0A53ThFEXXQmqc04L/NyFIduUd+Dbi7xgz2c1cWWn5DkR9VOsZtRASqnKmc
+p0yJF4OuowReUoCLHhIlERnXDH19MURB6tuvsBzvgdAsxZohmz3tQjtQJvLsznFhBmIhVE5/wZ0+
+fyCMgMsq2JdiyIMzkX2woloPV+g7zPIlstR8L+xNxqE6FXrntl019fZISjZFZtS6mFjBAgMBAAGj
+YzBhMB0GA1UdDgQWBBREnkj1zG1I1KBLf/5ZJC+Dl5mahjAfBgNVHSMEGDAWgBREnkj1zG1I1KBL
+f/5ZJC+Dl5mahjAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsF
+AAOCAQEABT41XBVwm8nHc2FvcivUwo/yQ10CzsSUuZQRg2dd4mdsdXa/uwyqNsatR5Nj3B5+1t4u
+/ukZMjgDfxT2AHMsWbEhBuH7rBiVDKP/mZb3Kyeb1STMHd3BOuCYRLDE5D53sXOpZCz2HAF8P11F
+hcCF5yWPldwX8zyfGm6wyuMdKulMY/okYWLW2n62HGz1Ah3UKt1VkOsqEUc8Ll50soIipX1TH0Xs
+J5F95yIW6MBoNtjG8U+ARDL54dHRHareqKucBK+tIA5kmE2la8BIWJZpTdwHjFGTot+fDz2LYLSC
+jaoITmJF4PkL0uDgPFveXHEnJcLmA4GLEFPjx1WitJ/X5g==
+-----END CERTIFICATE-----
+
+SSL.com Root Certification Authority RSA
+========================================
+-----BEGIN CERTIFICATE-----
+MIIF3TCCA8WgAwIBAgIIeyyb0xaAMpkwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UEBhMCVVMxDjAM
+BgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9TU0wgQ29ycG9yYXRpb24x
+MTAvBgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSBSU0EwHhcNMTYw
+MjEyMTczOTM5WhcNNDEwMjEyMTczOTM5WjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMx
+EDAOBgNVBAcMB0hvdXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NM
+LmNvbSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IFJTQTCCAiIwDQYJKoZIhvcNAQEBBQAD
+ggIPADCCAgoCggIBAPkP3aMrfcvQKv7sZ4Wm5y4bunfh4/WvpOz6Sl2RxFdHaxh3a3by/ZPkPQ/C
+Fp4LZsNWlJ4Xg4XOVu/yFv0AYvUiCVToZRdOQbngT0aXqhvIuG5iXmmxX9sqAn78bMrzQdjt0Oj8
+P2FI7bADFB0QDksZ4LtO7IZl/zbzXmcCC52GVWH9ejjt/uIZALdvoVBidXQ8oPrIJZK0bnoix/ge
+oeOy3ZExqysdBP+lSgQ36YWkMyv94tZVNHwZpEpox7Ko07fKoZOI68GXvIz5HdkihCR0xwQ9aqkp
+k8zruFvh/l8lqjRYyMEjVJ0bmBHDOJx+PYZspQ9AhnwC9FwCTyjLrnGfDzrIM/4RJTXq/LrFYD3Z
+fBjVsqnTdXgDciLKOsMf7yzlLqn6niy2UUb9rwPW6mBo6oUWNmuF6R7As93EJNyAKoFBbZQ+yODJ
+gUEAnl6/f8UImKIYLEJAs/lvOCdLToD0PYFH4Ih86hzOtXVcUS4cK38acijnALXRdMbX5J+tB5O2
+UzU1/Dfkw/ZdFr4hc96SCvigY2q8lpJqPvi8ZVWb3vUNiSYE/CUapiVpy8JtynziWV+XrOvvLsi8
+1xtZPCvM8hnIk2snYxnP/Okm+Mpxm3+T/jRnhE6Z6/yzeAkzcLpmpnbtG3PrGqUNxCITIJRWCk4s
+bE6x/c+cCbqiM+2HAgMBAAGjYzBhMB0GA1UdDgQWBBTdBAkHovV6fVJTEpKV7jiAJQ2mWTAPBgNV
+HRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFN0ECQei9Xp9UlMSkpXuOIAlDaZZMA4GA1UdDwEB/wQE
+AwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAIBgRlCn7Jp0cHh5wYfGVcpNxJK1ok1iOMq8bs3AD/CUr
+dIWQPXhq9LmLpZc7tRiRux6n+UBbkflVma8eEdBcHadm47GUBwwyOabqG7B52B2ccETjit3E+ZUf
+ijhDPwGFpUenPUayvOUiaPd7nNgsPgohyC0zrL/FgZkxdMF1ccW+sfAjRfSda/wZY52jvATGGAsl
+u1OJD7OAUN5F7kR/q5R4ZJjT9ijdh9hwZXT7DrkT66cPYakylszeu+1jTBi7qUD3oFRuIIhxdRjq
+erQ0cuAjJ3dctpDqhiVAq+8zD8ufgr6iIPv2tS0a5sKFsXQP+8hlAqRSAUfdSSLBv9jra6x+3uxj
+MxW3IwiPxg+NQVrdjsW5j+VFP3jbutIbQLH+cU0/4IGiul607BXgk90IH37hVZkLId6Tngr75qNJ
+vTYw/ud3sqB1l7UtgYgXZSD32pAAn8lSzDLKNXz1PQ/YK9f1JmzJBjSWFupwWRoyeXkLtoh/D1JI
+Pb9s2KJELtFOt3JY04kTlf5Eq/jXixtunLwsoFvVagCvXzfh1foQC5ichucmj87w7G6KVwuA406y
+wKBjYZC6VWg3dGq2ktufoYYitmUnDuy2n0Jg5GfCtdpBC8TTi2EbvPofkSvXRAdeuims2cXp71NI
+WuuA8ShYIc2wBlX7Jz9TkHCpBB5XJ7k=
+-----END CERTIFICATE-----
+
+SSL.com Root Certification Authority ECC
+========================================
+-----BEGIN CERTIFICATE-----
+MIICjTCCAhSgAwIBAgIIdebfy8FoW6gwCgYIKoZIzj0EAwIwfDELMAkGA1UEBhMCVVMxDjAMBgNV
+BAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9TU0wgQ29ycG9yYXRpb24xMTAv
+BgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYwMjEy
+MTgxNDAzWhcNNDEwMjEyMTgxNDAzWjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAO
+BgNVBAcMB0hvdXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NMLmNv
+bSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49AgEGBSuBBAAiA2IA
+BEVuqVDEpiM2nl8ojRfLliJkP9x6jh3MCLOicSS6jkm5BBtHllirLZXI7Z4INcgn64mMU1jrYor+
+8FsPazFSY0E7ic3s7LaNGdM0B9y7xgZ/wkWV7Mt/qCPgCemB+vNH06NjMGEwHQYDVR0OBBYEFILR
+hXMw5zUE044CkvvlpNHEIejNMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUgtGFczDnNQTT
+jgKS++Wk0cQh6M0wDgYDVR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2cAMGQCMG/n61kRpGDPYbCW
+e+0F+S8Tkdzt5fxQaxFGRrMcIQBiu77D5+jNB5n5DQtdcj7EqgIwH7y6C+IwJPt8bYBVCpk+gA0z
+5Wajs6O7pdWLjwkspl1+4vAHCGht0nxpbl/f5Wpl
+-----END CERTIFICATE-----
+
+SSL.com EV Root Certification Authority RSA R2
+==============================================
+-----BEGIN CERTIFICATE-----
+MIIF6zCCA9OgAwIBAgIIVrYpzTS8ePYwDQYJKoZIhvcNAQELBQAwgYIxCzAJBgNVBAYTAlVTMQ4w
+DAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9u
+MTcwNQYDVQQDDC5TU0wuY29tIEVWIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIy
+MB4XDTE3MDUzMTE4MTQzN1oXDTQyMDUzMDE4MTQzN1owgYIxCzAJBgNVBAYTAlVTMQ4wDAYDVQQI
+DAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMTcwNQYD
+VQQDDC5TU0wuY29tIEVWIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIyMIICIjAN
+BgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAjzZlQOHWTcDXtOlG2mvqM0fNTPl9fb69LT3w23jh
+hqXZuglXaO1XPqDQCEGD5yhBJB/jchXQARr7XnAjssufOePPxU7Gkm0mxnu7s9onnQqG6YE3Bf7w
+cXHswxzpY6IXFJ3vG2fThVUCAtZJycxa4bH3bzKfydQ7iEGonL3Lq9ttewkfokxykNorCPzPPFTO
+Zw+oz12WGQvE43LrrdF9HSfvkusQv1vrO6/PgN3B0pYEW3p+pKk8OHakYo6gOV7qd89dAFmPZiw+
+B6KjBSYRaZfqhbcPlgtLyEDhULouisv3D5oi53+aNxPN8k0TayHRwMwi8qFG9kRpnMphNQcAb9Zh
+CBHqurj26bNg5U257J8UZslXWNvNh2n4ioYSA0e/ZhN2rHd9NCSFg83XqpyQGp8hLH94t2S42Oim
+9HizVcuE0jLEeK6jj2HdzghTreyI/BXkmg3mnxp3zkyPuBQVPWKchjgGAGYS5Fl2WlPAApiiECto
+RHuOec4zSnaqW4EWG7WK2NAAe15itAnWhmMOpgWVSbooi4iTsjQc2KRVbrcc0N6ZVTsj9CLg+Slm
+JuwgUHfbSguPvuUCYHBBXtSuUDkiFCbLsjtzdFVHB3mBOagwE0TlBIqulhMlQg+5U8Sb/M3kHN48
++qvWBkofZ6aYMBzdLNvcGJVXZsb/XItW9XcCAwEAAaNjMGEwDwYDVR0TAQH/BAUwAwEB/zAfBgNV
+HSMEGDAWgBT5YLvU49U09rj1BoAlp3PbRmmonjAdBgNVHQ4EFgQU+WC71OPVNPa49QaAJadz20Zp
+qJ4wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQBWs47LCp1Jjr+kxJG7ZhcFUZh1
+++VQLHqe8RT6q9OKPv+RKY9ji9i0qVQBDb6Thi/5Sm3HXvVX+cpVHBK+Rw82xd9qt9t1wkclf7nx
+Y/hoLVUE0fKNsKTPvDxeH3jnpaAgcLAExbf3cqfeIg29MyVGjGSSJuM+LmOW2puMPfgYCdcDzH2G
+guDKBAdRUNf/ktUM79qGn5nX67evaOI5JpS6aLe/g9Pqemc9YmeuJeVy6OLk7K4S9ksrPJ/psEDz
+OFSz/bdoyNrGj1E8svuR3Bznm53htw1yj+KkxKl4+esUrMZDBcJlOSgYAsOCsp0FvmXtll9ldDz7
+CTUue5wT/RsPXcdtgTpWD8w74a8CLyKsRspGPKAcTNZEtF4uXBVmCeEmKf7GUmG6sXP/wwyc5Wxq
+lD8UykAWlYTzWamsX0xhk23RO8yilQwipmdnRC652dKKQbNmC1r7fSOl8hqw/96bg5Qu0T/fkreR
+rwU7ZcegbLHNYhLDkBvjJc40vG93drEQw/cFGsDWr3RiSBd3kmmQYRzelYB0VI8YHMPzA9C/pEN1
+hlMYegouCRw2n5H9gooiS9EOUCXdywMMF8mDAAhONU2Ki+3wApRmLER/y5UnlhetCTCstnEXbosX
+9hwJ1C07mKVx01QT2WDz9UtmT/rx7iASjbSsV7FFY6GsdqnC+w==
+-----END CERTIFICATE-----
+
+SSL.com EV Root Certification Authority ECC
+===========================================
+-----BEGIN CERTIFICATE-----
+MIIClDCCAhqgAwIBAgIILCmcWxbtBZUwCgYIKoZIzj0EAwIwfzELMAkGA1UEBhMCVVMxDjAMBgNV
+BAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9TU0wgQ29ycG9yYXRpb24xNDAy
+BgNVBAMMK1NTTC5jb20gRVYgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYw
+MjEyMTgxNTIzWhcNNDEwMjEyMTgxNTIzWjB/MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMx
+EDAOBgNVBAcMB0hvdXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjE0MDIGA1UEAwwrU1NM
+LmNvbSBFViBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49AgEGBSuB
+BAAiA2IABKoSR5CYG/vvw0AHgyBO8TCCogbR8pKGYfL2IWjKAMTH6kMAVIbc/R/fALhBYlzccBYy
+3h+Z1MzFB8gIH2EWB1E9fVwHU+M1OIzfzZ/ZLg1KthkuWnBaBu2+8KGwytAJKaNjMGEwHQYDVR0O
+BBYEFFvKXuXe0oGqzagtZFG22XKbl+ZPMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUW8pe
+5d7SgarNqC1kUbbZcpuX5k8wDgYDVR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2gAMGUCMQCK5kCJ
+N+vp1RPZytRrJPOwPYdGWBrssd9v+1a6cGvHOMzosYxPD/fxZ3YOg9AeUY8CMD32IygmTMZgh5Mm
+m7I1HrrW9zzRHM76JTymGoEVW/MSD2zuZYrJh6j5B+BimoxcSg==
+-----END CERTIFICATE-----
+
+GlobalSign Root CA - R6
+=======================
+-----BEGIN CERTIFICATE-----
+MIIFgzCCA2ugAwIBAgIORea7A4Mzw4VlSOb/RVEwDQYJKoZIhvcNAQEMBQAwTDEgMB4GA1UECxMX
+R2xvYmFsU2lnbiBSb290IENBIC0gUjYxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkds
+b2JhbFNpZ24wHhcNMTQxMjEwMDAwMDAwWhcNMzQxMjEwMDAwMDAwWjBMMSAwHgYDVQQLExdHbG9i
+YWxTaWduIFJvb3QgQ0EgLSBSNjETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFs
+U2lnbjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAJUH6HPKZvnsFMp7PPcNCPG0RQss
+grRIxutbPK6DuEGSMxSkb3/pKszGsIhrxbaJ0cay/xTOURQh7ErdG1rG1ofuTToVBu1kZguSgMpE
+3nOUTvOniX9PeGMIyBJQbUJmL025eShNUhqKGoC3GYEOfsSKvGRMIRxDaNc9PIrFsmbVkJq3MQbF
+vuJtMgamHvm566qjuL++gmNQ0PAYid/kD3n16qIfKtJwLnvnvJO7bVPiSHyMEAc4/2ayd2F+4OqM
+PKq0pPbzlUoSB239jLKJz9CgYXfIWHSw1CM69106yqLbnQneXUQtkPGBzVeS+n68UARjNN9rkxi+
+azayOeSsJDa38O+2HBNXk7besvjihbdzorg1qkXy4J02oW9UivFyVm4uiMVRQkQVlO6jxTiWm05O
+WgtH8wY2SXcwvHE35absIQh1/OZhFj931dmRl4QKbNQCTXTAFO39OfuD8l4UoQSwC+n+7o/hbguy
+CLNhZglqsQY6ZZZZwPA1/cnaKI0aEYdwgQqomnUdnjqGBQCe24DWJfncBZ4nWUx2OVvq+aWh2IMP
+0f/fMBH5hc8zSPXKbWQULHpYT9NLCEnFlWQaYw55PfWzjMpYrZxCRXluDocZXFSxZba/jJvcE+kN
+b7gu3GduyYsRtYQUigAZcIN5kZeR1BonvzceMgfYFGM8KEyvAgMBAAGjYzBhMA4GA1UdDwEB/wQE
+AwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBSubAWjkxPioufi1xzWx/B/yGdToDAfBgNV
+HSMEGDAWgBSubAWjkxPioufi1xzWx/B/yGdToDANBgkqhkiG9w0BAQwFAAOCAgEAgyXt6NH9lVLN
+nsAEoJFp5lzQhN7craJP6Ed41mWYqVuoPId8AorRbrcWc+ZfwFSY1XS+wc3iEZGtIxg93eFyRJa0
+lV7Ae46ZeBZDE1ZXs6KzO7V33EByrKPrmzU+sQghoefEQzd5Mr6155wsTLxDKZmOMNOsIeDjHfrY
+BzN2VAAiKrlNIC5waNrlU/yDXNOd8v9EDERm8tLjvUYAGm0CuiVdjaExUd1URhxN25mW7xocBFym
+Fe944Hn+Xds+qkxV/ZoVqW/hpvvfcDDpw+5CRu3CkwWJ+n1jez/QcYF8AOiYrg54NMMl+68KnyBr
+3TsTjxKM4kEaSHpzoHdpx7Zcf4LIHv5YGygrqGytXm3ABdJ7t+uA/iU3/gKbaKxCXcPu9czc8FB1
+0jZpnOZ7BN9uBmm23goJSFmH63sUYHpkqmlD75HHTOwY3WzvUy2MmeFe8nI+z1TIvWfspA9MRf/T
+uTAjB0yPEL+GltmZWrSZVxykzLsViVO6LAUP5MSeGbEYNNVMnbrt9x+vJJUEeKgDu+6B5dpffItK
+oZB0JaezPkvILFa9x8jvOOJckvB595yEunQtYQEgfn7R8k8HWV+LLUNS60YMlOH1Zkd5d9VUWx+t
+JDfLRVpOoERIyNiwmcUVhAn21klJwGW45hpxbqCo8YLoRT5s1gLXCmeDBVrJpBA=
+-----END CERTIFICATE-----
+
+OISTE WISeKey Global Root GC CA
+===============================
+-----BEGIN CERTIFICATE-----
+MIICaTCCAe+gAwIBAgIQISpWDK7aDKtARb8roi066jAKBggqhkjOPQQDAzBtMQswCQYDVQQGEwJD
+SDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUgRm91bmRhdGlvbiBFbmRvcnNlZDEo
+MCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9iYWwgUm9vdCBHQyBDQTAeFw0xNzA1MDkwOTQ4MzRa
+Fw00MjA1MDkwOTU4MzNaMG0xCzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYDVQQL
+ExlPSVNURSBGb3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEdsb2Jh
+bCBSb290IEdDIENBMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAETOlQwMYPchi82PG6s4nieUqjFqdr
+VCTbUf/q9Akkwwsin8tqJ4KBDdLArzHkdIJuyiXZjHWd8dvQmqJLIX4Wp2OQ0jnUsYd4XxiWD1Ab
+NTcPasbc2RNNpI6QN+a9WzGRo1QwUjAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAd
+BgNVHQ4EFgQUSIcUrOPDnpBgOtfKie7TrYy0UGYwEAYJKwYBBAGCNxUBBAMCAQAwCgYIKoZIzj0E
+AwMDaAAwZQIwJsdpW9zV57LnyAyMjMPdeYwbY9XJUpROTYJKcx6ygISpJcBMWm1JKWB4E+J+SOtk
+AjEA2zQgMgj/mkkCtojeFK9dbJlxjRo/i9fgojaGHAeCOnZT/cKi7e97sIBPWA9LUzm9
+-----END CERTIFICATE-----
+
+GTS Root R1
+===========
+-----BEGIN CERTIFICATE-----
+MIIFWjCCA0KgAwIBAgIQbkepxUtHDA3sM9CJuRz04TANBgkqhkiG9w0BAQwFADBHMQswCQYDVQQG
+EwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJv
+b3QgUjEwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAwMDAwWjBHMQswCQYDVQQGEwJVUzEiMCAG
+A1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjEwggIi
+MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2EQKLHuOhd5s73L+UPreVp0A8of2C+X0yBoJx
+9vaMf/vo27xqLpeXo4xL+Sv2sfnOhB2x+cWX3u+58qPpvBKJXqeqUqv4IyfLpLGcY9vXmX7wCl7r
+aKb0xlpHDU0QM+NOsROjyBhsS+z8CZDfnWQpJSMHobTSPS5g4M/SCYe7zUjwTcLCeoiKu7rPWRnW
+r4+wB7CeMfGCwcDfLqZtbBkOtdh+JhpFAz2weaSUKK0PfyblqAj+lug8aJRT7oM6iCsVlgmy4HqM
+LnXWnOunVmSPlk9orj2XwoSPwLxAwAtcvfaHszVsrBhQf4TgTM2S0yDpM7xSma8ytSmzJSq0SPly
+4cpk9+aCEI3oncKKiPo4Zor8Y/kB+Xj9e1x3+naH+uzfsQ55lVe0vSbv1gHR6xYKu44LtcXFilWr
+06zqkUspzBmkMiVOKvFlRNACzqrOSbTqn3yDsEB750Orp2yjj32JgfpMpf/VjsPOS+C12LOORc92
+wO1AK/1TD7Cn1TsNsYqiA94xrcx36m97PtbfkSIS5r762DL8EGMUUXLeXdYWk70paDPvOmbsB4om
+3xPXV2V4J95eSRQAogB/mqghtqmxlbCluQ0WEdrHbEg8QOB+DVrNVjzRlwW5y0vtOUucxD/SVRNu
+JLDWcfr0wbrM7Rv1/oFB2ACYPTrIrnqYNxgFlQIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYD
+VR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU5K8rJnEaK0gnhS9SZizv8IkTcT4wDQYJKoZIhvcNAQEM
+BQADggIBADiWCu49tJYeX++dnAsznyvgyv3SjgofQXSlfKqE1OXyHuY3UjKcC9FhHb8owbZEKTV1
+d5iyfNm9dKyKaOOpMQkpAWBz40d8U6iQSifvS9efk+eCNs6aaAyC58/UEBZvXw6ZXPYfcX3v73sv
+fuo21pdwCxXu11xWajOl40k4DLh9+42FpLFZXvRq4d2h9mREruZRgyFmxhE+885H7pwoHyXa/6xm
+ld01D1zvICxi/ZG6qcz8WpyTgYMpl0p8WnK0OdC3d8t5/Wk6kjftbjhlRn7pYL15iJdfOBL07q9b
+gsiG1eGZbYwE8na6SfZu6W0eX6DvJ4J2QPim01hcDyxC2kLGe4g0x8HYRZvBPsVhHdljUEn2NIVq
+4BjFbkerQUIpm/ZgDdIx02OYI5NaAIFItO/Nis3Jz5nu2Z6qNuFoS3FJFDYoOj0dzpqPJeaAcWEr
+tXvM+SUWgeExX6GjfhaknBZqlxi9dnKlC54dNuYvoS++cJEPqOba+MSSQGwlfnuzCdyyF62ARPBo
+pY+Udf90WuioAnwMCeKpSwughQtiue+hMZL77/ZRBIls6Kl0obsXs7X9SQ98POyDGCBDTtWTurQ0
+sR8WNh8M5mQ5Fkzc4P4dyKliPUDqysU0ArSuiYgzNdwsE3PYJ/HQcu51OyLemGhmW/HGY0dVHLql
+CFF1pkgl
+-----END CERTIFICATE-----
+
+GTS Root R2
+===========
+-----BEGIN CERTIFICATE-----
+MIIFWjCCA0KgAwIBAgIQbkepxlqz5yDFMJo/aFLybzANBgkqhkiG9w0BAQwFADBHMQswCQYDVQQG
+EwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJv
+b3QgUjIwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAwMDAwWjBHMQswCQYDVQQGEwJVUzEiMCAG
+A1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjIwggIi
+MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDO3v2m++zsFDQ8BwZabFn3GTXd98GdVarTzTuk
+k3LvCvptnfbwhYBboUhSnznFt+4orO/LdmgUud+tAWyZH8QiHZ/+cnfgLFuv5AS/T3KgGjSY6Dlo
+7JUle3ah5mm5hRm9iYz+re026nO8/4Piy33B0s5Ks40FnotJk9/BW9BuXvAuMC6C/Pq8tBcKSOWI
+m8Wba96wyrQD8Nr0kLhlZPdcTK3ofmZemde4wj7I0BOdre7kRXuJVfeKH2JShBKzwkCX44ofR5Gm
+dFrS+LFjKBC4swm4VndAoiaYecb+3yXuPuWgf9RhD1FLPD+M2uFwdNjCaKH5wQzpoeJ/u1U8dgbu
+ak7MkogwTZq9TwtImoS1mKPV+3PBV2HdKFZ1E66HjucMUQkQdYhMvI35ezzUIkgfKtzra7tEscsz
+cTJGr61K8YzodDqs5xoic4DSMPclQsciOzsSrZYuxsN2B6ogtzVJV+mSSeh2FnIxZyuWfoqjx5RW
+Ir9qS34BIbIjMt/kmkRtWVtd9QCgHJvGeJeNkP+byKq0rxFROV7Z+2et1VsRnTKaG73Vululycsl
+aVNVJ1zgyjbLiGH7HrfQy+4W+9OmTN6SpdTi3/UGVN4unUu0kzCqgc7dGtxRcw1PcOnlthYhGXmy
+5okLdWTK1au8CcEYof/UVKGFPP0UJAOyh9OktwIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYD
+VR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUu//KjiOfT5nK2+JopqUVJxce2Q4wDQYJKoZIhvcNAQEM
+BQADggIBALZp8KZ3/p7uC4Gt4cCpx/k1HUCCq+YEtN/L9x0Pg/B+E02NjO7jMyLDOfxA325BS0JT
+vhaI8dI4XsRomRyYUpOM52jtG2pzegVATX9lO9ZY8c6DR2Dj/5epnGB3GFW1fgiTz9D2PGcDFWEJ
++YF59exTpJ/JjwGLc8R3dtyDovUMSRqodt6Sm2T4syzFJ9MHwAiApJiS4wGWAqoC7o87xdFtCjMw
+c3i5T1QWvwsHoaRc5svJXISPD+AVdyx+Jn7axEvbpxZ3B7DNdehyQtaVhJ2Gg/LkkM0JR9SLA3Da
+WsYDQvTtN6LwG1BUSw7YhN4ZKJmBR64JGz9I0cNv4rBgF/XuIwKl2gBbbZCr7qLpGzvpx0QnRY5r
+n/WkhLx3+WuXrD5RRaIRpsyF7gpo8j5QOHokYh4XIDdtak23CZvJ/KRY9bb7nE4Yu5UC56Gtmwfu
+Nmsk0jmGwZODUNKBRqhfYlcsu2xkiAhu7xNUX90txGdj08+JN7+dIPT7eoOboB6BAFDC5AwiWVIQ
+7UNWhwD4FFKnHYuTjKJNRn8nxnGbJN7k2oaLDX5rIMHAnuFl2GqjpuiFizoHCBy69Y9Vmhh1fuXs
+gWbRIXOhNUQLgD1bnF5vKheW0YMjiGZt5obicDIvUiLnyOd/xCxgXS/Dr55FBcOEArf9LAhST4Ld
+o/DUhgkC
+-----END CERTIFICATE-----
+
+GTS Root R3
+===========
+-----BEGIN CERTIFICATE-----
+MIICDDCCAZGgAwIBAgIQbkepx2ypcyRAiQ8DVd2NHTAKBggqhkjOPQQDAzBHMQswCQYDVQQGEwJV
+UzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3Qg
+UjMwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAwMDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UE
+ChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjMwdjAQBgcq
+hkjOPQIBBgUrgQQAIgNiAAQfTzOHMymKoYTey8chWEGJ6ladK0uFxh1MJ7x/JlFyb+Kf1qPKzEUU
+Rout736GjOyxfi//qXGdGIRFBEFVbivqJn+7kAHjSxm65FSWRQmx1WyRRK2EE46ajA2ADDL24Cej
+QjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTB8Sa6oC2uhYHP
+0/EqEr24Cmf9vDAKBggqhkjOPQQDAwNpADBmAjEAgFukfCPAlaUs3L6JbyO5o91lAFJekazInXJ0
+glMLfalAvWhgxeG4VDvBNhcl2MG9AjEAnjWSdIUlUfUk7GRSJFClH9voy8l27OyCbvWFGFPouOOa
+KaqW04MjyaR7YbPMAuhd
+-----END CERTIFICATE-----
+
+GTS Root R4
+===========
+-----BEGIN CERTIFICATE-----
+MIICCjCCAZGgAwIBAgIQbkepyIuUtui7OyrYorLBmTAKBggqhkjOPQQDAzBHMQswCQYDVQQGEwJV
+UzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3Qg
+UjQwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAwMDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UE
+ChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjQwdjAQBgcq
+hkjOPQIBBgUrgQQAIgNiAATzdHOnaItgrkO4NcWBMHtLSZ37wWHO5t5GvWvVYRg1rkDdc/eJkTBa
+6zzuhXyiQHY7qca4R9gq55KRanPpsXI5nymfopjTX15YhmUPoYRlBtHci8nHc8iMai/lxKvRHYqj
+QjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBSATNbrdP9JNqPV
+2Py1PsVq8JQdjDAKBggqhkjOPQQDAwNnADBkAjBqUFJ0CMRw3J5QdCHojXohw0+WbhXRIjVhLfoI
+N+4Zba3bssx9BzT1YBkstTTZbyACMANxsbqjYAuG7ZoIapVon+Kz4ZNkfF6Tpt95LY2F45TPI11x
+zPKwTdb+mciUqXWi4w==
+-----END CERTIFICATE-----
+
+UCA Global G2 Root
+==================
+-----BEGIN CERTIFICATE-----
+MIIFRjCCAy6gAwIBAgIQXd+x2lqj7V2+WmUgZQOQ7zANBgkqhkiG9w0BAQsFADA9MQswCQYDVQQG
+EwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxGzAZBgNVBAMMElVDQSBHbG9iYWwgRzIgUm9vdDAeFw0x
+NjAzMTEwMDAwMDBaFw00MDEyMzEwMDAwMDBaMD0xCzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlU
+cnVzdDEbMBkGA1UEAwwSVUNBIEdsb2JhbCBHMiBSb290MIICIjANBgkqhkiG9w0BAQEFAAOCAg8A
+MIICCgKCAgEAxeYrb3zvJgUno4Ek2m/LAfmZmqkywiKHYUGRO8vDaBsGxUypK8FnFyIdK+35KYmT
+oni9kmugow2ifsqTs6bRjDXVdfkX9s9FxeV67HeToI8jrg4aA3++1NDtLnurRiNb/yzmVHqUwCoV
+8MmNsHo7JOHXaOIxPAYzRrZUEaalLyJUKlgNAQLx+hVRZ2zA+te2G3/RVogvGjqNO7uCEeBHANBS
+h6v7hn4PJGtAnTRnvI3HLYZveT6OqTwXS3+wmeOwcWDcC/Vkw85DvG1xudLeJ1uK6NjGruFZfc8o
+LTW4lVYa8bJYS7cSN8h8s+1LgOGN+jIjtm+3SJUIsUROhYw6AlQgL9+/V087OpAh18EmNVQg7Mc/
+R+zvWr9LesGtOxdQXGLYD0tK3Cv6brxzks3sx1DoQZbXqX5t2Okdj4q1uViSukqSKwxW/YDrCPBe
+KW4bHAyvj5OJrdu9o54hyokZ7N+1wxrrFv54NkzWbtA+FxyQF2smuvt6L78RHBgOLXMDj6DlNaBa
+4kx1HXHhOThTeEDMg5PXCp6dW4+K5OXgSORIskfNTip1KnvyIvbJvgmRlld6iIis7nCs+dwp4wwc
+OxJORNanTrAmyPPZGpeRaOrvjUYG0lZFWJo8DA+DuAUlwznPO6Q0ibd5Ei9Hxeepl2n8pndntd97
+8XplFeRhVmUCAwEAAaNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0O
+BBYEFIHEjMz15DD/pQwIX4wVZyF0Ad/fMA0GCSqGSIb3DQEBCwUAA4ICAQATZSL1jiutROTL/7lo
+5sOASD0Ee/ojL3rtNtqyzm325p7lX1iPyzcyochltq44PTUbPrw7tgTQvPlJ9Zv3hcU2tsu8+Mg5
+1eRfB70VVJd0ysrtT7q6ZHafgbiERUlMjW+i67HM0cOU2kTC5uLqGOiiHycFutfl1qnN3e92mI0A
+Ds0b+gO3joBYDic/UvuUospeZcnWhNq5NXHzJsBPd+aBJ9J3O5oUb3n09tDh05S60FdRvScFDcH9
+yBIw7m+NESsIndTUv4BFFJqIRNow6rSn4+7vW4LVPtateJLbXDzz2K36uGt/xDYotgIVilQsnLAX
+c47QN6MUPJiVAAwpBVueSUmxX8fjy88nZY41F7dXyDDZQVu5FLbowg+UMaeUmMxq67XhJ/UQqAHo
+jhJi6IjMtX9Gl8CbEGY4GjZGXyJoPd/JxhMnq1MGrKI8hgZlb7F+sSlEmqO6SWkoaY/X5V+tBIZk
+bxqgDMUIYs6Ao9Dz7GjevjPHF1t/gMRMTLGmhIrDO7gJzRSBuhjjVFc2/tsvfEehOjPI+Vg7RE+x
+ygKJBJYoaMVLuCaJu9YzL1DV/pqJuhgyklTGW+Cd+V7lDSKb9triyCGyYiGqhkCyLmTTX8jjfhFn
+RR8F/uOi77Oos/N9j/gMHyIfLXC0uAE0djAA5SN4p1bXUB+K+wb1whnw0A==
+-----END CERTIFICATE-----
+
+UCA Extended Validation Root
+============================
+-----BEGIN CERTIFICATE-----
+MIIFWjCCA0KgAwIBAgIQT9Irj/VkyDOeTzRYZiNwYDANBgkqhkiG9w0BAQsFADBHMQswCQYDVQQG
+EwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxJTAjBgNVBAMMHFVDQSBFeHRlbmRlZCBWYWxpZGF0aW9u
+IFJvb3QwHhcNMTUwMzEzMDAwMDAwWhcNMzgxMjMxMDAwMDAwWjBHMQswCQYDVQQGEwJDTjERMA8G
+A1UECgwIVW5pVHJ1c3QxJTAjBgNVBAMMHFVDQSBFeHRlbmRlZCBWYWxpZGF0aW9uIFJvb3QwggIi
+MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCpCQcoEwKwmeBkqh5DFnpzsZGgdT6o+uM4AHrs
+iWogD4vFsJszA1qGxliG1cGFu0/GnEBNyr7uaZa4rYEwmnySBesFK5pI0Lh2PpbIILvSsPGP2KxF
+Rv+qZ2C0d35qHzwaUnoEPQc8hQ2E0B92CvdqFN9y4zR8V05WAT558aopO2z6+I9tTcg1367r3CTu
+eUWnhbYFiN6IXSV8l2RnCdm/WhUFhvMJHuxYMjMR83dksHYf5BA1FxvyDrFspCqjc/wJHx4yGVMR
+59mzLC52LqGj3n5qiAno8geK+LLNEOfic0CTuwjRP+H8C5SzJe98ptfRr5//lpr1kXuYC3fUfugH
+0mK1lTnj8/FtDw5lhIpjVMWAtuCeS31HJqcBCF3RiJ7XwzJE+oJKCmhUfzhTA8ykADNkUVkLo4KR
+el7sFsLzKuZi2irbWWIQJUoqgQtHB0MGcIfS+pMRKXpITeuUx3BNr2fVUbGAIAEBtHoIppB/TuDv
+B0GHr2qlXov7z1CymlSvw4m6WC31MJixNnI5fkkE/SmnTHnkBVfblLkWU41Gsx2VYVdWf6/wFlth
+WG82UBEL2KwrlRYaDh8IzTY0ZRBiZtWAXxQgXy0MoHgKaNYs1+lvK9JKBZP8nm9rZ/+I8U6laUpS
+NwXqxhaN0sSZ0YIrO7o1dfdRUVjzyAfd5LQDfwIDAQABo0IwQDAdBgNVHQ4EFgQU2XQ65DA9DfcS
+3H5aBZ8eNJr34RQwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQEL
+BQADggIBADaNl8xCFWQpN5smLNb7rhVpLGsaGvdftvkHTFnq88nIua7Mui563MD1sC3AO6+fcAUR
+ap8lTwEpcOPlDOHqWnzcSbvBHiqB9RZLcpHIojG5qtr8nR/zXUACE/xOHAbKsxSQVBcZEhrxH9cM
+aVr2cXj0lH2RC47skFSOvG+hTKv8dGT9cZr4QQehzZHkPJrgmzI5c6sq1WnIeJEmMX3ixzDx/BR4
+dxIOE/TdFpS/S2d7cFOFyrC78zhNLJA5wA3CXWvp4uXViI3WLL+rG761KIcSF3Ru/H38j9CHJrAb
++7lsq+KePRXBOy5nAliRn+/4Qh8st2j1da3Ptfb/EX3C8CSlrdP6oDyp+l3cpaDvRKS+1ujl5BOW
+F3sGPjLtx7dCvHaj2GU4Kzg1USEODm8uNBNA4StnDG1KQTAYI1oyVZnJF+A83vbsea0rWBmirSwi
+GpWOvpaQXUJXxPkUAzUrHC1RVwinOt4/5Mi0A3PCwSaAuwtCH60NryZy2sy+s6ODWA2CxR9GUeOc
+GMyNm43sSet1UNWMKFnKdDTajAshqx7qG+XH/RU+wBeq+yNuJkbL+vmxcmtpzyKEC2IPrNkZAJSi
+djzULZrtBJ4tBmIQN1IchXIbJ+XMxjHsN+xjWZsLHXbMfjKaiJUINlK73nZfdklJrX+9ZSCyycEr
+dhh2n1ax
+-----END CERTIFICATE-----
+
+Certigna Root CA
+================
+-----BEGIN CERTIFICATE-----
+MIIGWzCCBEOgAwIBAgIRAMrpG4nxVQMNo+ZBbcTjpuEwDQYJKoZIhvcNAQELBQAwWjELMAkGA1UE
+BhMCRlIxEjAQBgNVBAoMCURoaW15b3RpczEcMBoGA1UECwwTMDAwMiA0ODE0NjMwODEwMDAzNjEZ
+MBcGA1UEAwwQQ2VydGlnbmEgUm9vdCBDQTAeFw0xMzEwMDEwODMyMjdaFw0zMzEwMDEwODMyMjda
+MFoxCzAJBgNVBAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxHDAaBgNVBAsMEzAwMDIgNDgxNDYz
+MDgxMDAwMzYxGTAXBgNVBAMMEENlcnRpZ25hIFJvb3QgQ0EwggIiMA0GCSqGSIb3DQEBAQUAA4IC
+DwAwggIKAoICAQDNGDllGlmx6mQWDoyUJJV8g9PFOSbcDO8WV43X2KyjQn+Cyu3NW9sOty3tRQgX
+stmzy9YXUnIo245Onoq2C/mehJpNdt4iKVzSs9IGPjA5qXSjklYcoW9MCiBtnyN6tMbaLOQdLNyz
+KNAT8kxOAkmhVECe5uUFoC2EyP+YbNDrihqECB63aCPuI9Vwzm1RaRDuoXrC0SIxwoKF0vJVdlB8
+JXrJhFwLrN1CTivngqIkicuQstDuI7pmTLtipPlTWmR7fJj6o0ieD5Wupxj0auwuA0Wv8HT4Ks16
+XdG+RCYyKfHx9WzMfgIhC59vpD++nVPiz32pLHxYGpfhPTc3GGYo0kDFUYqMwy3OU4gkWGQwFsWq
+4NYKpkDfePb1BHxpE4S80dGnBs8B92jAqFe7OmGtBIyT46388NtEbVncSVmurJqZNjBBe3YzIoej
+wpKGbvlw7q6Hh5UbxHq9MfPU0uWZ/75I7HX1eBYdpnDBfzwboZL7z8g81sWTCo/1VTp2lc5ZmIoJ
+lXcymoO6LAQ6l73UL77XbJuiyn1tJslV1c/DeVIICZkHJC1kJWumIWmbat10TWuXekG9qxf5kBdI
+jzb5LdXF2+6qhUVB+s06RbFo5jZMm5BX7CO5hwjCxAnxl4YqKE3idMDaxIzb3+KhF1nOJFl0Mdp/
+/TBt2dzhauH8XwIDAQABo4IBGjCCARYwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYw
+HQYDVR0OBBYEFBiHVuBud+4kNTxOc5of1uHieX4rMB8GA1UdIwQYMBaAFBiHVuBud+4kNTxOc5of
+1uHieX4rMEQGA1UdIAQ9MDswOQYEVR0gADAxMC8GCCsGAQUFBwIBFiNodHRwczovL3d3d3cuY2Vy
+dGlnbmEuZnIvYXV0b3JpdGVzLzBtBgNVHR8EZjBkMC+gLaArhilodHRwOi8vY3JsLmNlcnRpZ25h
+LmZyL2NlcnRpZ25hcm9vdGNhLmNybDAxoC+gLYYraHR0cDovL2NybC5kaGlteW90aXMuY29tL2Nl
+cnRpZ25hcm9vdGNhLmNybDANBgkqhkiG9w0BAQsFAAOCAgEAlLieT/DjlQgi581oQfccVdV8AOIt
+OoldaDgvUSILSo3L6btdPrtcPbEo/uRTVRPPoZAbAh1fZkYJMyjhDSSXcNMQH+pkV5a7XdrnxIxP
+TGRGHVyH41neQtGbqH6mid2PHMkwgu07nM3A6RngatgCdTer9zQoKJHyBApPNeNgJgH60BGM+RFq
+7q89w1DTj18zeTyGqHNFkIwgtnJzFyO+B2XleJINugHA64wcZr+shncBlA2c5uk5jR+mUYyZDDl3
+4bSb+hxnV29qao6pK0xXeXpXIs/NX2NGjVxZOob4Mkdio2cNGJHc+6Zr9UhhcyNZjgKnvETq9Emd
+8VRY+WCv2hikLyhF3HqgiIZd8zvn/yk1gPxkQ5Tm4xxvvq0OKmOZK8l+hfZx6AYDlf7ej0gcWtSS
+6Cvu5zHbugRqh5jnxV/vfaci9wHYTfmJ0A6aBVmknpjZbyvKcL5kwlWj9Omvw5Ip3IgWJJk8jSaY
+tlu3zM63Nwf9JtmYhST/WSMDmu2dnajkXjjO11INb9I/bbEFa0nOipFGc/T2L/Coc3cOZayhjWZS
+aX5LaAzHHjcng6WMxwLkFM1JAbBzs/3GkDpv0mztO+7skb6iQ12LAEpmJURw3kAP+HwV96LOPNde
+E4yBFxgX0b3xdxA61GU5wSesVywlVP+i2k+KYTlerj1KjL0=
+-----END CERTIFICATE-----
+
+emSign Root CA - G1
+===================
+-----BEGIN CERTIFICATE-----
+MIIDlDCCAnygAwIBAgIKMfXkYgxsWO3W2DANBgkqhkiG9w0BAQsFADBnMQswCQYDVQQGEwJJTjET
+MBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBUZWNobm9sb2dpZXMgTGltaXRl
+ZDEcMBoGA1UEAxMTZW1TaWduIFJvb3QgQ0EgLSBHMTAeFw0xODAyMTgxODMwMDBaFw00MzAyMTgx
+ODMwMDBaMGcxCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVk
+aHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMRwwGgYDVQQDExNlbVNpZ24gUm9vdCBDQSAtIEcxMIIB
+IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk0u76WaK7p1b1TST0Bsew+eeuGQzf2N4aLTN
+LnF115sgxk0pvLZoYIr3IZpWNVrzdr3YzZr/k1ZLpVkGoZM0Kd0WNHVO8oG0x5ZOrRkVUkr+PHB1
+cM2vK6sVmjM8qrOLqs1D/fXqcP/tzxE7lM5OMhbTI0Aqd7OvPAEsbO2ZLIvZTmmYsvePQbAyeGHW
+DV/D+qJAkh1cF+ZwPjXnorfCYuKrpDhMtTk1b+oDafo6VGiFbdbyL0NVHpENDtjVaqSW0RM8LHhQ
+6DqS0hdW5TUaQBw+jSztOd9C4INBdN+jzcKGYEho42kLVACL5HZpIQ15TjQIXhTCzLG3rdd8cIrH
+hQIDAQABo0IwQDAdBgNVHQ4EFgQU++8Nhp6w492pufEhF38+/PB3KxowDgYDVR0PAQH/BAQDAgEG
+MA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAFn/8oz1h31xPaOfG1vR2vjTnGs2
+vZupYeveFix0PZ7mddrXuqe8QhfnPZHr5X3dPpzxz5KsbEjMwiI/aTvFthUvozXGaCocV685743Q
+NcMYDHsAVhzNixl03r4PEuDQqqE/AjSxcM6dGNYIAwlG7mDgfrbESQRRfXBgvKqy/3lyeqYdPV8q
++Mri/Tm3R7nrft8EI6/6nAYH6ftjk4BAtcZsCjEozgyfz7MjNYBBjWzEN3uBL4ChQEKF6dk4jeih
+U80Bv2noWgbyRQuQ+q7hv53yrlc8pa6yVvSLZUDp/TGBLPQ5Cdjua6e0ph0VpZj3AYHYhX3zUVxx
+iN66zB+Afko=
+-----END CERTIFICATE-----
+
+emSign ECC Root CA - G3
+=======================
+-----BEGIN CERTIFICATE-----
+MIICTjCCAdOgAwIBAgIKPPYHqWhwDtqLhDAKBggqhkjOPQQDAzBrMQswCQYDVQQGEwJJTjETMBEG
+A1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBUZWNobm9sb2dpZXMgTGltaXRlZDEg
+MB4GA1UEAxMXZW1TaWduIEVDQyBSb290IENBIC0gRzMwHhcNMTgwMjE4MTgzMDAwWhcNNDMwMjE4
+MTgzMDAwWjBrMQswCQYDVQQGEwJJTjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11
+ZGhyYSBUZWNobm9sb2dpZXMgTGltaXRlZDEgMB4GA1UEAxMXZW1TaWduIEVDQyBSb290IENBIC0g
+RzMwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQjpQy4LRL1KPOxst3iAhKAnjlfSU2fySU0WXTsuwYc
+58Byr+iuL+FBVIcUqEqy6HyC5ltqtdyzdc6LBtCGI79G1Y4PPwT01xySfvalY8L1X44uT6EYGQIr
+MgqCZH0Wk9GjQjBAMB0GA1UdDgQWBBR8XQKEE9TMipuBzhccLikenEhjQjAOBgNVHQ8BAf8EBAMC
+AQYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNpADBmAjEAvvNhzwIQHWSVB7gYboiFBS+D
+CBeQyh+KTOgNG3qxrdWBCUfvO6wIBHxcmbHtRwfSAjEAnbpV/KlK6O3t5nYBQnvI+GDZjVGLVTv7
+jHvrZQnD+JbNR6iC8hZVdyR+EhCVBCyj
+-----END CERTIFICATE-----
+
+emSign Root CA - C1
+===================
+-----BEGIN CERTIFICATE-----
+MIIDczCCAlugAwIBAgILAK7PALrEzzL4Q7IwDQYJKoZIhvcNAQELBQAwVjELMAkGA1UEBhMCVVMx
+EzARBgNVBAsTCmVtU2lnbiBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMRwwGgYDVQQDExNlbVNp
+Z24gUm9vdCBDQSAtIEMxMB4XDTE4MDIxODE4MzAwMFoXDTQzMDIxODE4MzAwMFowVjELMAkGA1UE
+BhMCVVMxEzARBgNVBAsTCmVtU2lnbiBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMRwwGgYDVQQD
+ExNlbVNpZ24gUm9vdCBDQSAtIEMxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAz+up
+ufGZBczYKCFK83M0UYRWEPWgTywS4/oTmifQz/l5GnRfHXk5/Fv4cI7gklL35CX5VIPZHdPIWoU/
+Xse2B+4+wM6ar6xWQio5JXDWv7V7Nq2s9nPczdcdioOl+yuQFTdrHCZH3DspVpNqs8FqOp099cGX
+OFgFixwR4+S0uF2FHYP+eF8LRWgYSKVGczQ7/g/IdrvHGPMF0Ybzhe3nudkyrVWIzqa2kbBPrH4V
+I5b2P/AgNBbeCsbEBEV5f6f9vtKppa+cxSMq9zwhbL2vj07FOrLzNBL834AaSaTUqZX3noleooms
+lMuoaJuvimUnzYnu3Yy1aylwQ6BpC+S5DwIDAQABo0IwQDAdBgNVHQ4EFgQU/qHgcB4qAzlSWkK+
+XJGFehiqTbUwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQELBQAD
+ggEBAMJKVvoVIXsoounlHfv4LcQ5lkFMOycsxGwYFYDGrK9HWS8mC+M2sO87/kOXSTKZEhVb3xEp
+/6tT+LvBeA+snFOvV71ojD1pM/CjoCNjO2RnIkSt1XHLVip4kqNPEjE2NuLe/gDEo2APJ62gsIq1
+NnpSob0n9CAnYuhNlCQT5AoE6TyrLshDCUrGYQTlSTR+08TI9Q/Aqum6VF7zYytPT1DU/rl7mYw9
+wC68AivTxEDkigcxHpvOJpkT+xHqmiIMERnHXhuBUDDIlhJu58tBf5E7oke3VIAb3ADMmpDqw8NQ
+BmIMMMAVSKeoWXzhriKi4gp6D/piq1JM4fHfyr6DDUI=
+-----END CERTIFICATE-----
+
+emSign ECC Root CA - C3
+=======================
+-----BEGIN CERTIFICATE-----
+MIICKzCCAbGgAwIBAgIKe3G2gla4EnycqDAKBggqhkjOPQQDAzBaMQswCQYDVQQGEwJVUzETMBEG
+A1UECxMKZW1TaWduIFBLSTEUMBIGA1UEChMLZU11ZGhyYSBJbmMxIDAeBgNVBAMTF2VtU2lnbiBF
+Q0MgUm9vdCBDQSAtIEMzMB4XDTE4MDIxODE4MzAwMFoXDTQzMDIxODE4MzAwMFowWjELMAkGA1UE
+BhMCVVMxEzARBgNVBAsTCmVtU2lnbiBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMSAwHgYDVQQD
+ExdlbVNpZ24gRUNDIFJvb3QgQ0EgLSBDMzB2MBAGByqGSM49AgEGBSuBBAAiA2IABP2lYa57JhAd
+6bciMK4G9IGzsUJxlTm801Ljr6/58pc1kjZGDoeVjbk5Wum739D+yAdBPLtVb4OjavtisIGJAnB9
+SMVK4+kiVCJNk7tCDK93nCOmfddhEc5lx/h//vXyqaNCMEAwHQYDVR0OBBYEFPtaSNCAIEDyqOkA
+B2kZd6fmw/TPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MAoGCCqGSM49BAMDA2gA
+MGUCMQC02C8Cif22TGK6Q04ThHK1rt0c3ta13FaPWEBaLd4gTCKDypOofu4SQMfWh0/434UCMBwU
+ZOR8loMRnLDRWmFLpg9J0wD8ofzkpf9/rdcw0Md3f76BB1UwUCAU9Vc4CqgxUQ==
+-----END CERTIFICATE-----
+
+Hongkong Post Root CA 3
+=======================
+-----BEGIN CERTIFICATE-----
+MIIFzzCCA7egAwIBAgIUCBZfikyl7ADJk0DfxMauI7gcWqQwDQYJKoZIhvcNAQELBQAwbzELMAkG
+A1UEBhMCSEsxEjAQBgNVBAgTCUhvbmcgS29uZzESMBAGA1UEBxMJSG9uZyBLb25nMRYwFAYDVQQK
+Ew1Ib25na29uZyBQb3N0MSAwHgYDVQQDExdIb25na29uZyBQb3N0IFJvb3QgQ0EgMzAeFw0xNzA2
+MDMwMjI5NDZaFw00MjA2MDMwMjI5NDZaMG8xCzAJBgNVBAYTAkhLMRIwEAYDVQQIEwlIb25nIEtv
+bmcxEjAQBgNVBAcTCUhvbmcgS29uZzEWMBQGA1UEChMNSG9uZ2tvbmcgUG9zdDEgMB4GA1UEAxMX
+SG9uZ2tvbmcgUG9zdCBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCz
+iNfqzg8gTr7m1gNt7ln8wlffKWihgw4+aMdoWJwcYEuJQwy51BWy7sFOdem1p+/l6TWZ5Mwc50tf
+jTMwIDNT2aa71T4Tjukfh0mtUC1Qyhi+AViiE3CWu4mIVoBc+L0sPOFMV4i707mV78vH9toxdCim
+5lSJ9UExyuUmGs2C4HDaOym71QP1mbpV9WTRYA6ziUm4ii8F0oRFKHyPaFASePwLtVPLwpgchKOe
+sL4jpNrcyCse2m5FHomY2vkALgbpDDtw1VAliJnLzXNg99X/NWfFobxeq81KuEXryGgeDQ0URhLj
+0mRiikKYvLTGCAj4/ahMZJx2Ab0vqWwzD9g/KLg8aQFChn5pwckGyuV6RmXpwtZQQS4/t+TtbNe/
+JgERohYpSms0BpDsE9K2+2p20jzt8NYt3eEV7KObLyzJPivkaTv/ciWxNoZbx39ri1UbSsUgYT2u
+y1DhCDq+sI9jQVMwCFk8mB13umOResoQUGC/8Ne8lYePl8X+l2oBlKN8W4UdKjk60FSh0Tlxnf0h
++bV78OLgAo9uliQlLKAeLKjEiafv7ZkGL7YKTE/bosw3Gq9HhS2KX8Q0NEwA/RiTZxPRN+ZItIsG
+xVd7GYYKecsAyVKvQv83j+GjHno9UKtjBucVtT+2RTeUN7F+8kjDf8V1/peNRY8apxpyKBpADwID
+AQABo2MwYTAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAfBgNVHSMEGDAWgBQXnc0e
+i9Y5K3DTXNSguB+wAPzFYTAdBgNVHQ4EFgQUF53NHovWOStw01zUoLgfsAD8xWEwDQYJKoZIhvcN
+AQELBQADggIBAFbVe27mIgHSQpsY1Q7XZiNc4/6gx5LS6ZStS6LG7BJ8dNVI0lkUmcDrudHr9Egw
+W62nV3OZqdPlt9EuWSRY3GguLmLYauRwCy0gUCCkMpXRAJi70/33MvJJrsZ64Ee+bs7Lo3I6LWld
+y8joRTnU+kLBEUx3XZL7av9YROXrgZ6voJmtvqkBZss4HTzfQx/0TW60uhdG/H39h4F5ag0zD/ov
++BS5gLNdTaqX4fnkGMX41TiMJjz98iji7lpJiCzfeT2OnpA8vUFKOt1b9pq0zj8lMH8yfaIDlNDc
+eqFS3m6TjRgm/VWsvY+b0s+v54Ysyx8Jb6NvqYTUc79NoXQbTiNg8swOqn+knEwlqLJmOzj/2ZQw
+9nKEvmhVEA/GcywWaZMH/rFF7buiVWqw2rVKAiUnhde3t4ZEFolsgCs+l6mc1X5VTMbeRRAc6uk7
+nwNT7u56AQIWeNTowr5GdogTPyK7SBIdUgC0An4hGh6cJfTzPV4e0hz5sy229zdcxsshTrD3mUcY
+hcErulWuBurQB7Lcq9CClnXO0lD+mefPL5/ndtFhKvshuzHQqp9HpLIiyhY6UFfEW0NnxWViA0kB
+60PZ2Pierc+xYw5F9KBaLJstxabArahH9CdMOA0uG0k7UvToiIMrVCjU8jVStDKDYmlkDJGcn5fq
+dBb9HxEGmpv0
+-----END CERTIFICATE-----
+
+Entrust Root Certification Authority - G4
+=========================================
+-----BEGIN CERTIFICATE-----
+MIIGSzCCBDOgAwIBAgIRANm1Q3+vqTkPAAAAAFVlrVgwDQYJKoZIhvcNAQELBQAwgb4xCzAJBgNV
+BAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3Qu
+bmV0L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxNSBFbnRydXN0LCBJbmMuIC0gZm9yIGF1
+dGhvcml6ZWQgdXNlIG9ubHkxMjAwBgNVBAMTKUVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1
+dGhvcml0eSAtIEc0MB4XDTE1MDUyNzExMTExNloXDTM3MTIyNzExNDExNlowgb4xCzAJBgNVBAYT
+AlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3QubmV0
+L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxNSBFbnRydXN0LCBJbmMuIC0gZm9yIGF1dGhv
+cml6ZWQgdXNlIG9ubHkxMjAwBgNVBAMTKUVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhv
+cml0eSAtIEc0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsewsQu7i0TD/pZJH4i3D
+umSXbcr3DbVZwbPLqGgZ2K+EbTBwXX7zLtJTmeH+H17ZSK9dE43b/2MzTdMAArzE+NEGCJR5WIoV
+3imz/f3ET+iq4qA7ec2/a0My3dl0ELn39GjUu9CH1apLiipvKgS1sqbHoHrmSKvS0VnM1n4j5pds
+8ELl3FFLFUHtSUrJ3hCX1nbB76W1NhSXNdh4IjVS70O92yfbYVaCNNzLiGAMC1rlLAHGVK/XqsEQ
+e9IFWrhAnoanw5CGAlZSCXqc0ieCU0plUmr1POeo8pyvi73TDtTUXm6Hnmo9RR3RXRv06QqsYJn7
+ibT/mCzPfB3pAqoEmh643IhuJbNsZvc8kPNXwbMv9W3y+8qh+CmdRouzavbmZwe+LGcKKh9asj5X
+xNMhIWNlUpEbsZmOeX7m640A2Vqq6nPopIICR5b+W45UYaPrL0swsIsjdXJ8ITzI9vF01Bx7owVV
+7rtNOzK+mndmnqxpkCIHH2E6lr7lmk/MBTwoWdPBDFSoWWG9yHJM6Nyfh3+9nEg2XpWjDrk4JFX8
+dWbrAuMINClKxuMrLzOg2qOGpRKX/YAr2hRC45K9PvJdXmd0LhyIRyk0X+IyqJwlN4y6mACXi0mW
+Hv0liqzc2thddG5msP9E36EYxr5ILzeUePiVSj9/E15dWf10hkNjc0kCAwEAAaNCMEAwDwYDVR0T
+AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJ84xFYjwznooHFs6FRM5Og6sb9n
+MA0GCSqGSIb3DQEBCwUAA4ICAQAS5UKme4sPDORGpbZgQIeMJX6tuGguW8ZAdjwD+MlZ9POrYs4Q
+jbRaZIxowLByQzTSGwv2LFPSypBLhmb8qoMi9IsabyZIrHZ3CL/FmFz0Jomee8O5ZDIBf9PD3Vht
+7LGrhFV0d4QEJ1JrhkzO3bll/9bGXp+aEJlLdWr+aumXIOTkdnrG0CSqkM0gkLpHZPt/B7NTeLUK
+YvJzQ85BK4FqLoUWlFPUa19yIqtRLULVAJyZv967lDtX/Zr1hstWO1uIAeV8KEsD+UmDfLJ/fOPt
+jqF/YFOOVZ1QNBIPt5d7bIdKROf1beyAN/BYGW5KaHbwH5Lk6rWS02FREAutp9lfx1/cH6NcjKF+
+m7ee01ZvZl4HliDtC3T7Zk6LERXpgUl+b7DUUH8i119lAg2m9IUe2K4GS0qn0jFmwvjO5QimpAKW
+RGhXxNUzzxkvFMSUHHuk2fCfDrGA4tGeEWSpiBE6doLlYsKA2KSD7ZPvfC+QsDJMlhVoSFLUmQjA
+JOgc47OlIQ6SwJAfzyBfyjs4x7dtOvPmRLgOMWuIjnDrnBdSqEGULoe256YSxXXfW8AKbnuk5F6G
++TaU33fD6Q3AOfF5u0aOq0NZJ7cguyPpVkAh7DE9ZapD8j3fcEThuk0mEDuYn/PIjhs4ViFqUZPT
+kcpG2om3PVODLAgfi49T3f+sHw==
+-----END CERTIFICATE-----
+
+Microsoft ECC Root Certificate Authority 2017
+=============================================
+-----BEGIN CERTIFICATE-----
+MIICWTCCAd+gAwIBAgIQZvI9r4fei7FK6gxXMQHC7DAKBggqhkjOPQQDAzBlMQswCQYDVQQGEwJV
+UzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQgRUND
+IFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjMwNjQ1WhcNNDIwNzE4
+MjMxNjA0WjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYw
+NAYDVQQDEy1NaWNyb3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwdjAQ
+BgcqhkjOPQIBBgUrgQQAIgNiAATUvD0CQnVBEyPNgASGAlEvaqiBYgtlzPbKnR5vSmZRogPZnZH6
+thaxjG7efM3beaYvzrvOcS/lpaso7GMEZpn4+vKTEAXhgShC48Zo9OYbhGBKia/teQ87zvH2RPUB
+eMCjVDBSMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTIy5lycFIM
++Oa+sgRXKSrPQhDtNTAQBgkrBgEEAYI3FQEEAwIBADAKBggqhkjOPQQDAwNoADBlAjBY8k3qDPlf
+Xu5gKcs68tvWMoQZP3zVL8KxzJOuULsJMsbG7X7JNpQS5GiFBqIb0C8CMQCZ6Ra0DvpWSNSkMBaR
+eNtUjGUBiudQZsIxtzm6uBoiB078a1QWIP8rtedMDE2mT3M=
+-----END CERTIFICATE-----
+
+Microsoft RSA Root Certificate Authority 2017
+=============================================
+-----BEGIN CERTIFICATE-----
+MIIFqDCCA5CgAwIBAgIQHtOXCV/YtLNHcB6qvn9FszANBgkqhkiG9w0BAQwFADBlMQswCQYDVQQG
+EwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg
+UlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjI1MTIyWhcNNDIw
+NzE4MjMwMDIzWjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u
+MTYwNAYDVQQDEy1NaWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcw
+ggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKW76UM4wplZEWCpW9R2LBifOZNt9GkMml
+7Xhqb0eRaPgnZ1AzHaGm++DlQ6OEAlcBXZxIQIJTELy/xztokLaCLeX0ZdDMbRnMlfl7rEqUrQ7e
+S0MdhweSE5CAg2Q1OQT85elss7YfUJQ4ZVBcF0a5toW1HLUX6NZFndiyJrDKxHBKrmCk3bPZ7Pw7
+1VdyvD/IybLeS2v4I2wDwAW9lcfNcztmgGTjGqwu+UcF8ga2m3P1eDNbx6H7JyqhtJqRjJHTOoI+
+dkC0zVJhUXAoP8XFWvLJjEm7FFtNyP9nTUwSlq31/niol4fX/V4ggNyhSyL71Imtus5Hl0dVe49F
+yGcohJUcaDDv70ngNXtk55iwlNpNhTs+VcQor1fznhPbRiefHqJeRIOkpcrVE7NLP8TjwuaGYaRS
+MLl6IE9vDzhTyzMMEyuP1pq9KsgtsRx9S1HKR9FIJ3Jdh+vVReZIZZ2vUpC6W6IYZVcSn2i51BVr
+lMRpIpj0M+Dt+VGOQVDJNE92kKz8OMHY4Xu54+OU4UZpyw4KUGsTuqwPN1q3ErWQgR5WrlcihtnJ
+0tHXUeOrO8ZV/R4O03QK0dqq6mm4lyiPSMQH+FJDOvTKVTUssKZqwJz58oHhEmrARdlns87/I6KJ
+ClTUFLkqqNfs+avNJVgyeY+QW5g5xAgGwax/Dj0ApQIDAQABo1QwUjAOBgNVHQ8BAf8EBAMCAYYw
+DwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUCctZf4aycI8awznjwNnpv7tNsiMwEAYJKwYBBAGC
+NxUBBAMCAQAwDQYJKoZIhvcNAQEMBQADggIBAKyvPl3CEZaJjqPnktaXFbgToqZCLgLNFgVZJ8og
+6Lq46BrsTaiXVq5lQ7GPAJtSzVXNUzltYkyLDVt8LkS/gxCP81OCgMNPOsduET/m4xaRhPtthH80
+dK2Jp86519efhGSSvpWhrQlTM93uCupKUY5vVau6tZRGrox/2KJQJWVggEbbMwSubLWYdFQl3JPk
++ONVFT24bcMKpBLBaYVu32TxU5nhSnUgnZUP5NbcA/FZGOhHibJXWpS2qdgXKxdJ5XbLwVaZOjex
+/2kskZGT4d9Mozd2TaGf+G0eHdP67Pv0RR0Tbc/3WeUiJ3IrhvNXuzDtJE3cfVa7o7P4NHmJweDy
+AmH3pvwPuxwXC65B2Xy9J6P9LjrRk5Sxcx0ki69bIImtt2dmefU6xqaWM/5TkshGsRGRxpl/j8nW
+ZjEgQRCHLQzWwa80mMpkg/sTV9HB8Dx6jKXB/ZUhoHHBk2dxEuqPiAppGWSZI1b7rCoucL5mxAyE
+7+WL85MB+GqQk2dLsmijtWKP6T+MejteD+eMuMZ87zf9dOLITzNy4ZQ5bb0Sr74MTnB8G2+NszKT
+c0QWbej09+CVgI+WXTik9KveCjCHk9hNAHFiRSdLOkKEW39lt2c0Ui2cFmuqqNh7o0JMcccMyj6D
+5KbvtwEwXlGjefVwaaZBRA+GsCyRxj3qrg+E
+-----END CERTIFICATE-----
+
+e-Szigno Root CA 2017
+=====================
+-----BEGIN CERTIFICATE-----
+MIICQDCCAeWgAwIBAgIMAVRI7yH9l1kN9QQKMAoGCCqGSM49BAMCMHExCzAJBgNVBAYTAkhVMREw
+DwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUt
+MjM1ODQ0OTcxHjAcBgNVBAMMFWUtU3ppZ25vIFJvb3QgQ0EgMjAxNzAeFw0xNzA4MjIxMjA3MDZa
+Fw00MjA4MjIxMjA3MDZaMHExCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UE
+CgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxHjAcBgNVBAMMFWUtU3pp
+Z25vIFJvb3QgQ0EgMjAxNzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJbcPYrYsHtvxie+RJCx
+s1YVe45DJH0ahFnuY2iyxl6H0BVIHqiQrb1TotreOpCmYF9oMrWGQd+HWyx7xf58etqjYzBhMA8G
+A1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBSHERUI0arBeAyxr87GyZDv
+vzAEwDAfBgNVHSMEGDAWgBSHERUI0arBeAyxr87GyZDvvzAEwDAKBggqhkjOPQQDAgNJADBGAiEA
+tVfd14pVCzbhhkT61NlojbjcI4qKDdQvfepz7L9NbKgCIQDLpbQS+ue16M9+k/zzNY9vTlp8tLxO
+svxyqltZ+efcMQ==
+-----END CERTIFICATE-----
+
+certSIGN Root CA G2
+===================
+-----BEGIN CERTIFICATE-----
+MIIFRzCCAy+gAwIBAgIJEQA0tk7GNi02MA0GCSqGSIb3DQEBCwUAMEExCzAJBgNVBAYTAlJPMRQw
+EgYDVQQKEwtDRVJUU0lHTiBTQTEcMBoGA1UECxMTY2VydFNJR04gUk9PVCBDQSBHMjAeFw0xNzAy
+MDYwOTI3MzVaFw00MjAyMDYwOTI3MzVaMEExCzAJBgNVBAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lH
+TiBTQTEcMBoGA1UECxMTY2VydFNJR04gUk9PVCBDQSBHMjCCAiIwDQYJKoZIhvcNAQEBBQADggIP
+ADCCAgoCggIBAMDFdRmRfUR0dIf+DjuW3NgBFszuY5HnC2/OOwppGnzC46+CjobXXo9X69MhWf05
+N0IwvlDqtg+piNguLWkh59E3GE59kdUWX2tbAMI5Qw02hVK5U2UPHULlj88F0+7cDBrZuIt4Imfk
+abBoxTzkbFpG583H+u/E7Eu9aqSs/cwoUe+StCmrqzWaTOTECMYmzPhpn+Sc8CnTXPnGFiWeI8Mg
+wT0PPzhAsP6CRDiqWhqKa2NYOLQV07YRaXseVO6MGiKscpc/I1mbySKEwQdPzH/iV8oScLumZfNp
+dWO9lfsbl83kqK/20U6o2YpxJM02PbyWxPFsqa7lzw1uKA2wDrXKUXt4FMMgL3/7FFXhEZn91Qqh
+ngLjYl/rNUssuHLoPj1PrCy7Lobio3aP5ZMqz6WryFyNSwb/EkaseMsUBzXgqd+L6a8VTxaJW732
+jcZZroiFDsGJ6x9nxUWO/203Nit4ZoORUSs9/1F3dmKh7Gc+PoGD4FapUB8fepmrY7+EF3fxDTvf
+95xhszWYijqy7DwaNz9+j5LP2RIUZNoQAhVB/0/E6xyjyfqZ90bp4RjZsbgyLcsUDFDYg2WD7rlc
+z8sFWkz6GZdr1l0T08JcVLwyc6B49fFtHsufpaafItzRUZ6CeWRgKRM+o/1Pcmqr4tTluCRVLERL
+iohEnMqE0yo7AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1Ud
+DgQWBBSCIS1mxteg4BXrzkwJd8RgnlRuAzANBgkqhkiG9w0BAQsFAAOCAgEAYN4auOfyYILVAzOB
+ywaK8SJJ6ejqkX/GM15oGQOGO0MBzwdw5AgeZYWR5hEit/UCI46uuR59H35s5r0l1ZUa8gWmr4UC
+b6741jH/JclKyMeKqdmfS0mbEVeZkkMR3rYzpMzXjWR91M08KCy0mpbqTfXERMQlqiCA2ClV9+BB
+/AYm/7k29UMUA2Z44RGx2iBfRgB4ACGlHgAoYXhvqAEBj500mv/0OJD7uNGzcgbJceaBxXntC6Z5
+8hMLnPddDnskk7RI24Zf3lCGeOdA5jGokHZwYa+cNywRtYK3qq4kNFtyDGkNzVmf9nGvnAvRCjj5
+BiKDUyUM/FHE5r7iOZULJK2v0ZXkltd0ZGtxTgI8qoXzIKNDOXZbbFD+mpwUHmUUihW9o4JFWklW
+atKcsWMy5WHgUyIOpwpJ6st+H6jiYoD2EEVSmAYY3qXNL3+q1Ok+CHLsIwMCPKaq2LxndD0UF/tU
+Sxfj03k9bWtJySgOLnRQvwzZRjoQhsmnP+mg7H/rpXdYaXHmgwo38oZJar55CJD2AhZkPuXaTH4M
+NMn5X7azKFGnpyuqSfqNZSlO42sTp5SjLVFteAxEy9/eCG/Oo2Sr05WE1LlSVHJ7liXMvGnjSG4N
+0MedJ5qq+BOS3R7fY581qRY27Iy4g/Q9iY/NtBde17MXQRBdJ3NghVdJIgc=
+-----END CERTIFICATE-----
+
+Trustwave Global Certification Authority
+========================================
+-----BEGIN CERTIFICATE-----
+MIIF2jCCA8KgAwIBAgIMBfcOhtpJ80Y1LrqyMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJV
+UzERMA8GA1UECAwISWxsaW5vaXMxEDAOBgNVBAcMB0NoaWNhZ28xITAfBgNVBAoMGFRydXN0d2F2
+ZSBIb2xkaW5ncywgSW5jLjExMC8GA1UEAwwoVHJ1c3R3YXZlIEdsb2JhbCBDZXJ0aWZpY2F0aW9u
+IEF1dGhvcml0eTAeFw0xNzA4MjMxOTM0MTJaFw00MjA4MjMxOTM0MTJaMIGIMQswCQYDVQQGEwJV
+UzERMA8GA1UECAwISWxsaW5vaXMxEDAOBgNVBAcMB0NoaWNhZ28xITAfBgNVBAoMGFRydXN0d2F2
+ZSBIb2xkaW5ncywgSW5jLjExMC8GA1UEAwwoVHJ1c3R3YXZlIEdsb2JhbCBDZXJ0aWZpY2F0aW9u
+IEF1dGhvcml0eTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALldUShLPDeS0YLOvR29
+zd24q88KPuFd5dyqCblXAj7mY2Hf8g+CY66j96xz0XznswuvCAAJWX/NKSqIk4cXGIDtiLK0thAf
+LdZfVaITXdHG6wZWiYj+rDKd/VzDBcdu7oaJuogDnXIhhpCujwOl3J+IKMujkkkP7NAP4m1ET4Bq
+stTnoApTAbqOl5F2brz81Ws25kCI1nsvXwXoLG0R8+eyvpJETNKXpP7ScoFDB5zpET71ixpZfR9o
+WN0EACyW80OzfpgZdNmcc9kYvkHHNHnZ9GLCQ7mzJ7Aiy/k9UscwR7PJPrhq4ufogXBeQotPJqX+
+OsIgbrv4Fo7NDKm0G2x2EOFYeUY+VM6AqFcJNykbmROPDMjWLBz7BegIlT1lRtzuzWniTY+HKE40
+Cz7PFNm73bZQmq131BnW2hqIyE4bJ3XYsgjxroMwuREOzYfwhI0Vcnyh78zyiGG69Gm7DIwLdVcE
+uE4qFC49DxweMqZiNu5m4iK4BUBjECLzMx10coos9TkpoNPnG4CELcU9402x/RpvumUHO1jsQkUm
++9jaJXLE9gCxInm943xZYkqcBW89zubWR2OZxiRvchLIrH+QtAuRcOi35hYQcRfO3gZPSEF9NUqj
+ifLJS3tBEW1ntwiYTOURGa5CgNz7kAXU+FDKvuStx8KU1xad5hePrzb7AgMBAAGjQjBAMA8GA1Ud
+EwEB/wQFMAMBAf8wHQYDVR0OBBYEFJngGWcNYtt2s9o9uFvo/ULSMQ6HMA4GA1UdDwEB/wQEAwIB
+BjANBgkqhkiG9w0BAQsFAAOCAgEAmHNw4rDT7TnsTGDZqRKGFx6W0OhUKDtkLSGm+J1WE2pIPU/H
+PinbbViDVD2HfSMF1OQc3Og4ZYbFdada2zUFvXfeuyk3QAUHw5RSn8pk3fEbK9xGChACMf1KaA0H
+ZJDmHvUqoai7PF35owgLEQzxPy0QlG/+4jSHg9bP5Rs1bdID4bANqKCqRieCNqcVtgimQlRXtpla
+4gt5kNdXElE1GYhBaCXUNxeEFfsBctyV3lImIJgm4nb1J2/6ADtKYdkNy1GTKv0WBpanI5ojSP5R
+vbbEsLFUzt5sQa0WZ37b/TjNuThOssFgy50X31ieemKyJo90lZvkWx3SD92YHJtZuSPTMaCm/zjd
+zyBP6VhWOmfD0faZmZ26NraAL4hHT4a/RDqA5Dccprrql5gR0IRiR2Qequ5AvzSxnI9O4fKSTx+O
+856X3vOmeWqJcU9LJxdI/uz0UA9PSX3MReO9ekDFQdxhVicGaeVyQYHTtgGJoC86cnn+OjC/QezH
+Yj6RS8fZMXZC+fc8Y+wmjHMMfRod6qh8h6jCJ3zhM0EPz8/8AKAigJ5Kp28AsEFFtyLKaEjFQqKu
+3R3y4G5OBVixwJAWKqQ9EEC+j2Jjg6mcgn0tAumDMHzLJ8n9HmYAsC7TIS+OMxZsmO0QqAfWzJPP
+29FpHOTKyeC2nOnOcXHebD8WpHk=
+-----END CERTIFICATE-----
+
+Trustwave Global ECC P256 Certification Authority
+=================================================
+-----BEGIN CERTIFICATE-----
+MIICYDCCAgegAwIBAgIMDWpfCD8oXD5Rld9dMAoGCCqGSM49BAMCMIGRMQswCQYDVQQGEwJVUzER
+MA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0d2F2ZSBI
+b2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3YXZlIEdsb2JhbCBFQ0MgUDI1NiBDZXJ0aWZp
+Y2F0aW9uIEF1dGhvcml0eTAeFw0xNzA4MjMxOTM1MTBaFw00MjA4MjMxOTM1MTBaMIGRMQswCQYD
+VQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRy
+dXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3YXZlIEdsb2JhbCBFQ0MgUDI1
+NiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABH77bOYj
+43MyCMpg5lOcunSNGLB4kFKA3TjASh3RqMyTpJcGOMoNFWLGjgEqZZ2q3zSRLoHB5DOSMcT9CTqm
+P62jQzBBMA8GA1UdEwEB/wQFMAMBAf8wDwYDVR0PAQH/BAUDAwcGADAdBgNVHQ4EFgQUo0EGrJBt
+0UrrdaVKEJmzsaGLSvcwCgYIKoZIzj0EAwIDRwAwRAIgB+ZU2g6gWrKuEZ+Hxbb/ad4lvvigtwjz
+RM4q3wghDDcCIC0mA6AFvWvR9lz4ZcyGbbOcNEhjhAnFjXca4syc4XR7
+-----END CERTIFICATE-----
+
+Trustwave Global ECC P384 Certification Authority
+=================================================
+-----BEGIN CERTIFICATE-----
+MIICnTCCAiSgAwIBAgIMCL2Fl2yZJ6SAaEc7MAoGCCqGSM49BAMDMIGRMQswCQYDVQQGEwJVUzER
+MA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0d2F2ZSBI
+b2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3YXZlIEdsb2JhbCBFQ0MgUDM4NCBDZXJ0aWZp
+Y2F0aW9uIEF1dGhvcml0eTAeFw0xNzA4MjMxOTM2NDNaFw00MjA4MjMxOTM2NDNaMIGRMQswCQYD
+VQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRy
+dXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3YXZlIEdsb2JhbCBFQ0MgUDM4
+NCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTB2MBAGByqGSM49AgEGBSuBBAAiA2IABGvaDXU1CDFH
+Ba5FmVXxERMuSvgQMSOjfoPTfygIOiYaOs+Xgh+AtycJj9GOMMQKmw6sWASr9zZ9lCOkmwqKi6vr
+/TklZvFe/oyujUF5nQlgziip04pt89ZF1PKYhDhloKNDMEEwDwYDVR0TAQH/BAUwAwEB/zAPBgNV
+HQ8BAf8EBQMDBwYAMB0GA1UdDgQWBBRVqYSJ0sEyvRjLbKYHTsjnnb6CkDAKBggqhkjOPQQDAwNn
+ADBkAjA3AZKXRRJ+oPM+rRk6ct30UJMDEr5E0k9BpIycnR+j9sKS50gU/k6bpZFXrsY3crsCMGcl
+CrEMXu6pY5Jv5ZAL/mYiykf9ijH3g/56vxC+GCsej/YpHpRZ744hN8tRmKVuSw==
+-----END CERTIFICATE-----
+
+NAVER Global Root Certification Authority
+=========================================
+-----BEGIN CERTIFICATE-----
+MIIFojCCA4qgAwIBAgIUAZQwHqIL3fXFMyqxQ0Rx+NZQTQ0wDQYJKoZIhvcNAQEMBQAwaTELMAkG
+A1UEBhMCS1IxJjAkBgNVBAoMHU5BVkVSIEJVU0lORVNTIFBMQVRGT1JNIENvcnAuMTIwMAYDVQQD
+DClOQVZFUiBHbG9iYWwgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0xNzA4MTgwODU4
+NDJaFw0zNzA4MTgyMzU5NTlaMGkxCzAJBgNVBAYTAktSMSYwJAYDVQQKDB1OQVZFUiBCVVNJTkVT
+UyBQTEFURk9STSBDb3JwLjEyMDAGA1UEAwwpTkFWRVIgR2xvYmFsIFJvb3QgQ2VydGlmaWNhdGlv
+biBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC21PGTXLVAiQqrDZBb
+UGOukJR0F0Vy1ntlWilLp1agS7gvQnXp2XskWjFlqxcX0TM62RHcQDaH38dq6SZeWYp34+hInDEW
++j6RscrJo+KfziFTowI2MMtSAuXaMl3Dxeb57hHHi8lEHoSTGEq0n+USZGnQJoViAbbJAh2+g1G7
+XNr4rRVqmfeSVPc0W+m/6imBEtRTkZazkVrd/pBzKPswRrXKCAfHcXLJZtM0l/aM9BhK4dA9WkW2
+aacp+yPOiNgSnABIqKYPszuSjXEOdMWLyEz59JuOuDxp7W87UC9Y7cSw0BwbagzivESq2M0UXZR4
+Yb8ObtoqvC8MC3GmsxY/nOb5zJ9TNeIDoKAYv7vxvvTWjIcNQvcGufFt7QSUqP620wbGQGHfnZ3z
+VHbOUzoBppJB7ASjjw2i1QnK1sua8e9DXcCrpUHPXFNwcMmIpi3Ua2FzUCaGYQ5fG8Ir4ozVu53B
+A0K6lNpfqbDKzE0K70dpAy8i+/Eozr9dUGWokG2zdLAIx6yo0es+nPxdGoMuK8u180SdOqcXYZai
+cdNwlhVNt0xz7hlcxVs+Qf6sdWA7G2POAN3aCJBitOUt7kinaxeZVL6HSuOpXgRM6xBtVNbv8ejy
+YhbLgGvtPe31HzClrkvJE+2KAQHJuFFYwGY6sWZLxNUxAmLpdIQM201GLQIDAQABo0IwQDAdBgNV
+HQ4EFgQU0p+I36HNLL3s9TsBAZMzJ7LrYEswDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMB
+Af8wDQYJKoZIhvcNAQEMBQADggIBADLKgLOdPVQG3dLSLvCkASELZ0jKbY7gyKoNqo0hV4/GPnrK
+21HUUrPUloSlWGB/5QuOH/XcChWB5Tu2tyIvCZwTFrFsDDUIbatjcu3cvuzHV+YwIHHW1xDBE1UB
+jCpD5EHxzzp6U5LOogMFDTjfArsQLtk70pt6wKGm+LUx5vR1yblTmXVHIloUFcd4G7ad6Qz4G3bx
+hYTeodoS76TiEJd6eN4MUZeoIUCLhr0N8F5OSza7OyAfikJW4Qsav3vQIkMsRIz75Sq0bBwcupTg
+E34h5prCy8VCZLQelHsIJchxzIdFV4XTnyliIoNRlwAYl3dqmJLJfGBs32x9SuRwTMKeuB330DTH
+D8z7p/8Dvq1wkNoL3chtl1+afwkyQf3NosxabUzyqkn+Zvjp2DXrDige7kgvOtB5CTh8piKCk5XQ
+A76+AqAF3SAi428diDRgxuYKuQl1C/AH6GmWNcf7I4GOODm4RStDeKLRLBT/DShycpWbXgnbiUSY
+qqFJu3FS8r/2/yehNq+4tneI3TqkbZs0kNwUXTC/t+sX5Ie3cdCh13cV1ELX8vMxmV2b3RZtP+oG
+I/hGoiLtk/bdmuYqh7GYVPEi92tF4+KOdh2ajcQGjTa3FPOdVGm3jjzVpG2Tgbet9r1ke8LJaDmg
+kpzNNIaRkPpkUZ3+/uul9XXeifdy
+-----END CERTIFICATE-----
diff --git a/sys/lib/wiki/diff.html b/sys/lib/wiki/diff.html
index 921f3f88c7..35841133a7 100644
--- a/sys/lib/wiki/diff.html
+++ b/sys/lib/wiki/diff.html
@@ -33,7 +33,7 @@
About the server
|

diff --git a/sys/lib/wiki/edit.html b/sys/lib/wiki/edit.html
index 0f92b6cd4a..02ab8e0dfb 100644
--- a/sys/lib/wiki/edit.html
+++ b/sys/lib/wiki/edit.html
@@ -42,7 +42,7 @@
About the server
|

diff --git a/sys/lib/wiki/history.html b/sys/lib/wiki/history.html
index bfe9a18cd6..787cf5e6a0 100644
--- a/sys/lib/wiki/history.html
+++ b/sys/lib/wiki/history.html
@@ -33,7 +33,7 @@
About the server
|

diff --git a/sys/lib/wiki/oldpage.html b/sys/lib/wiki/oldpage.html
index eb17220547..ad8a3e4c4b 100644
--- a/sys/lib/wiki/oldpage.html
+++ b/sys/lib/wiki/oldpage.html
@@ -33,7 +33,7 @@
About the server
|

diff --git a/sys/lib/wiki/page.html b/sys/lib/wiki/page.html
index c3a2253a59..42d649d5fe 100644
--- a/sys/lib/wiki/page.html
+++ b/sys/lib/wiki/page.html
@@ -37,7 +37,7 @@
About the server
|

diff --git a/sys/lib/wiki/werror.html b/sys/lib/wiki/werror.html
index 26d786b609..7917824063 100644
--- a/sys/lib/wiki/werror.html
+++ b/sys/lib/wiki/werror.html
@@ -39,7 +39,7 @@
About the server
|

diff --git a/sys/lib/yaccpar b/sys/lib/yaccpar
index 79a8d4e010..25a481ca96 100644
--- a/sys/lib/yaccpar
+++ b/sys/lib/yaccpar
@@ -16,7 +16,7 @@ int yynerrs = 0; /* number of errors */
int yyerrflag = 0; /* error recovery flag */
extern int fprint(int, char*, ...);
-extern int sprint(char*, char*, ...);
+extern int snprint(char*, int, char*, ...);
char*
yytokname(int yyc)
@@ -26,7 +26,7 @@ yytokname(int yyc)
if(yyc > 0 && yyc <= sizeof(yytoknames)/sizeof(yytoknames[0]))
if(yytoknames[yyc-1])
return yytoknames[yyc-1];
- sprint(x, "<%d>", yyc);
+ snprint(x, sizeof x, "<%d>", yyc);
return x;
}
@@ -38,7 +38,7 @@ yystatname(int yys)
if(yys >= 0 && yys < sizeof(yystates)/sizeof(yystates[0]))
if(yystates[yys])
return yystates[yys];
- sprint(x, "<%d>\n", yys);
+ snprint(x, sizeof x, "<%d>\n", yys);
return x;
}
diff --git a/sys/man/1/8c b/sys/man/1/8c
index 43ab487747..1131ef960b 100644
--- a/sys/man/1/8c
+++ b/sys/man/1/8c
@@ -1,6 +1,6 @@
.TH 8C 1
.SH NAME
-0c, 5c, 6c, 8c, 9c, kc, qc, vc \- C compilers
+0c, 5c, 6c, 8c, 9c, ic, jc, kc, qc, vc \- C compilers
.SH SYNOPSIS
.B 8c
[
@@ -41,6 +41,12 @@ Intel i386, i486, Pentium, etc.
.B "9c power64
64-bit PowerPC
.TP
+.B "ic riscv
+32-bit RISC-V
+.TP
+.B "jc riscv64
+64-bit RISC-V
+.TP
.B "kc sparc
Sun (now Oracle) SPARC
.TP
@@ -62,6 +68,8 @@ Let the first letter of the compiler name be
.BR 6 ,
.BR 8 ,
.BR 9 ,
+.BR i ,
+.BR j ,
.BR k ,
.BR q ,
or
diff --git a/sys/man/1/8l b/sys/man/1/8l
index cead4e0d2f..4493920ac9 100644
--- a/sys/man/1/8l
+++ b/sys/man/1/8l
@@ -1,6 +1,6 @@
.TH 8L 1
.SH NAME
-0l, 5l, 6l, 8l, 9l, kl, ql, vl \- loaders
+0l, 5l, 6l, 8l, 9l, il, jl, kl, ql, vl \- loaders
.SH SYNOPSIS
.B 8l
[
@@ -164,6 +164,14 @@ Without this option,
.I 5l
generates arm7500 floating-point
instructions which are emulated in the kernel.
+.TP
+.B -c
+(\c
+.I il
+and
+.I jl
+only)
+don't generate compressed instructions
.br
.ne 6
.TP
diff --git a/sys/man/1/await b/sys/man/1/await
new file mode 100644
index 0000000000..f0edbeb510
--- /dev/null
+++ b/sys/man/1/await
@@ -0,0 +1,29 @@
+.TH AWAIT 1
+.SH NAME
+await - wait at most some seconds for a command to complete
+.SH SYNOPSIS
+.B await
+.I max-secs
+.I cmd
+\&...
+.SH DESCRIPTION
+Run
+.I cmd
+with any following arguments,
+with standard input from
+.BR /dev/null .
+Wait at most
+.IR max-secs ;
+if
+.I cmd
+is then still running,
+exit but leave it running.
+.PP
+Useful in start-up scripts that must not get stuck.
+.SH EXAMPLES
+.B
+await 5 auth/secstore -s p9auth -n -G factotum >/mnt/factotum/ctl
+.SH SOURCE
+.B /rc/bin/await
+.SH SEE ALSO
+.IR wait (2)
diff --git a/sys/man/1/awk b/sys/man/1/awk
index a1f81a23ef..3c30abe1a1 100644
--- a/sys/man/1/awk
+++ b/sys/man/1/awk
@@ -11,14 +11,6 @@ awk \- pattern-directed scanning and processing language
.B -d
]
[
-.BI -mf
-.I n
-]
-[
-.B -mr
-.I n
-]
-[
.B -safe
]
[
@@ -88,27 +80,6 @@ If
.BR FS
is null, the input line is split into one field per character.
.PP
-To compensate for inadequate implementation of storage management,
-the
-.B -mr
-option can be used to set the maximum size of the input record,
-and the
-.B -mf
-option to set the maximum number of fields.
-.PP
-The
-.B -safe
-option causes
-.I awk
-to run in
-``safe mode,''
-in which it is not allowed to
-run shell commands or open files
-and the environment is not made available
-in the
-.B ENVIRON
-variable.
-.PP
A pattern-action statement has the form
.IP
.IB pattern " { " action " }
diff --git a/sys/man/1/cpu b/sys/man/1/cpu
index e408683bcb..7c154b25a0 100644
--- a/sys/man/1/cpu
+++ b/sys/man/1/cpu
@@ -29,8 +29,6 @@ cpu \- connection to CPU server
.B cpu
[
.B -R
-|
-.B -O
]
.SH DESCRIPTION
.I Cpu
@@ -170,12 +168,6 @@ flag causes
to run the server (remote) side of the protocol.
It is run from service files such as
.BR /bin/service/tcp17010 .
-The
-.B -O
-flag is similar but simulates the pre-9P2000 version
-of the
-.I cpu
-protocol.
.SH FILES
The name space of the terminal side of the
.I cpu
diff --git a/sys/man/1/git b/sys/man/1/git
new file mode 100644
index 0000000000..5f1e7cef69
--- /dev/null
+++ b/sys/man/1/git
@@ -0,0 +1,654 @@
+.TH GIT 1
+.SH NAME
+git, git/conf, git/query, git/walk, git/clone, git/branch,
+git/commit, git/diff, git/init, git/log, git/merge, git/push,
+git/pull, git/rm, git/serve
+\- Manage git repositories.
+
+.SH SYNOPSIS
+.PP
+.B git/add
+[
+.B -r
+]
+.I path...
+.PP
+.B git/branch
+[
+.B -admns
+]
+[
+.B -b
+.I base
+]
+.I newbranch
+.PP
+.B git/clone
+[
+.I remote
+[
+.I local
+]
+]
+.PP
+.B git/commit
+[
+.B -re
+]
+[
+.B -m msg
+]
+[
+.I file...
+]
+.PP
+.B git/compat
+.PP
+.B git/conf
+[
+.B -r
+]
+[
+.B -f
+.I file
+]
+.I keys...
+.PP
+.B git/diff
+[
+.B -c
+.I branch
+]
+[
+.B -s
+]
+[
+.I file...
+]
+.PP
+.B git/export
+[
+.I commits...
+]
+.PP
+.B git/import
+[
+.I commits...
+]
+.PP
+.B git/init
+[
+.B -b
+]
+[
+.I dir
+]
+[
+.B -u
+.I upstream
+]
+.PP
+.B git/log
+[
+.B -c
+.I commit
+.B | -e
+.I expr
+]
+[
+.B -s
+]
+[
+.I files...
+]
+.PP
+.B git/merge
+.I theirs
+.PP
+.B git/rebase
+[
+.B -ari
+]
+[
+.B onto
+]
+.PP
+.B git/pull
+[
+.B -fq
+]
+[
+.B -u
+.I upstream
+]
+.PP
+.B git/push
+[
+.B -af
+]
+[
+.B -u
+.I upstream
+]
+[
+.B -b
+.I branch
+]
+[
+.B -r
+.I branch
+]
+.PP
+.B git/query
+[
+.B -pcr
+]
+.I query
+.PP
+.B git/revert
+[
+.B -c
+.I commit
+]
+.I file...
+.PP
+.B git/rm
+.I path...
+.PP
+.B git/serve
+[
+.B -w
+]
+[
+.B -r
+.I path
+]
+.PP
+.B git/walk
+[
+.B -qc
+]
+[
+.B -b
+.I branch
+]
+[
+.B -f
+.I filters
+]
+[
+.I [files...]
+]
+
+.SH DESCRIPTION
+.PP
+Git is a distributed version control system.
+This means that each repository contains a full copy of the history.
+This history is then synced between computers as needed.
+
+.PP
+These programs provide tools to manage and interoperate with
+repositories hosted in git.
+
+.SH CONCEPTS
+
+Git stores snapshots of the working directory.
+Files can either be in a tracked or untracked state.
+Each commit takes the current version of all tracked files and
+adds them to a new commit.
+
+This history is stored in the
+.I .git
+directory.
+This suite of
+.I git
+tools provides a file interface to the
+.I .git
+directory mounted on
+.I $repo/.git/fs.
+Modifications to the repository are done directly to the
+.I .git
+directory, and are reflected in the file system interface.
+This allows for easy scripting, without excessive complexity
+in the file API.
+
+.SH COMMANDS
+
+.PP
+.B Git/init
+is used to create a new git repository, with no code or commits.
+The repository is created in the current directory by default.
+Passing a directory name will cause the repository to be created
+there instead.
+Passing the
+.B -b
+option will cause the repository to be initialized as a bare repository.
+Passing the
+.B -u
+.I upstream
+option will cause the upstream to be configured to
+.I upstream.
+
+.PP
+.B Git/clone
+will take an existing repository, served over either the
+.I git://
+or
+.I ssh://
+protocols.
+The first argument is the repository to clone.
+The second argument, optionally, specifies the location to clone into.
+If not specified, the repository will be cloned into the last path component
+of the clone source, with the
+.I .git
+stripped off if present.
+
+.PP
+.B Git/push
+is used to push the current changes to a remote repository.
+When no arguments are provided, the remote repository is taken from
+the origin configured in
+.I .git/config,
+and only the changes on the current branch are pushed.
+When passed the
+.I -a
+option, all branches are pushed.
+When passed the
+.I -u upstream
+option, the changes are pushed to
+.I upstream
+instead of the configured origin.
+When given the
+.I -r
+option, the branch is deleted from origin, instead of updated.
+
+.PP
+.B Git/revert
+restores the named files from HEAD. When passed the -c flag, restores files from
+the named commit.
+
+.PP
+.B Git/pull
+behaves in a similar manner to git/push, however it gets changes from
+the upstream repository.
+After fetching, it checks out the changes into the working directory.
+When passed the
+.I -f
+option, the update of the working copy is suppressed.
+When passed the
+.I -q
+option, the listing of changes is silenced.
+When passed the
+.I -u upstream
+option, the changes are pulled from
+.I upstream
+instead of the configured origin.
+when passed the
+.I -b branch
+option, it only pulls changes related to
+.IR branch .
+
+.PP
+.B Git/serve
+serves repositories using the
+.I git://
+protocol over stdin.
+By default, it serves them read-only.
+The
+.I -w
+flag, it allows pushing into repositories.
+The
+.I -r
+.B path
+flag serves repositories relative to
+.BR path .
+
+.PP
+.B Git/fs
+serves a file system on $repo/.git/fs.
+For full documentation, see
+.IR gitfs (4)
+
+.PP
+.B Git/add
+adds a file to the list of tracked files. When passed the
+.I -r
+flag, the file is removed from the list of tracked files.
+The copy of the file in the repository is left untouched.
+.PP
+.B Git/rm
+is an alias for
+.IR git/add\ -r .
+
+.PP
+.B Git/commit
+creates a new commit consisting of all changes to the specified files.
+By default, an editor is opened to prepare the commit message.
+The
+.I -m
+flag supplies the commit message directly.
+The
+.I -r
+flag revises the contents of the previous commit, reusing the message.
+The
+.I -e
+flag opens an editor to finalize the commit message, regardless of
+whether or not it was specified explicitly or reused.
+To amend a commit message,
+.I -r
+can be used in conjuction with
+.I -m
+or
+.IR -e .
+
+.PP
+.B Git/branch
+is used to list or switch branches.
+When invoked with no arguments, it lists the current branch.
+To list all branches, pass the
+.I -a
+option.
+To switch between branches, pass a branch name.
+When passed the
+.I -n
+option, the branch will be created, overwriting existing branch.
+When passed the
+.I -b base
+option, the branch created is based off of
+.I base
+instead of
+.I HEAD.
+When passed the
+.I -s
+option, the branch is created but the files are not checked out.
+When passed the
+.I -d
+option, the branch is deleted.
+.PP
+When switching branches, git/branch will refuse to clobber
+modificiations.
+Passing the
+.I -m
+option will cause git9 to attempt to merge the changes between
+the branches.
+
+.PP
+.B Git/log
+shows a history of the current branch.
+When passed a list of files, only commits affecting
+those files are shown.
+The
+.I -c commit
+option logs starting from the provided commit, instead of HEAD.
+The
+.I -s
+option shows a summary of the commit, instead of the full message.
+The
+.I -e expr
+option shows commits matching the query expression provided.
+The expression is in the syntax of
+.B git/query.
+
+.PP
+.B Git/diff
+shows the differences between the currently checked out code and
+the
+.I HEAD
+commit.
+When passed the
+.I -c base
+option, the diff is computed against
+.I base
+instead of
+.I HEAD.
+When passed the
+.I -s
+option, only the file statuses are
+printed.
+
+.PP
+.B Git/export
+exports a list of commits in a format that
+.B git/import
+can apply.
+
+.PP
+.B Git/import
+imports a commit with message, author, and
+date information.
+
+.PP
+.B Git/merge
+takes two branches and merges them filewise using
+.I ape/diff3.
+The next commit made will be a merge commmit.
+
+.PP
+.B Git/rebase
+takes one branch and moves it onto another.
+On error, the remaining commits to rebase are
+saved, and can be resumed once the conflict is
+resolved using the
+.I -r
+option.
+If the rebase is to be aborted, the
+.I -a
+option will clean up the in progress rebase
+and reset the state of the branch.
+The
+.I -i
+option will open an editor to modify the todo-list before the rebase
+begins.
+
+.PP
+The following rebase commands are supported:
+.TP 10
+.B pick
+Apply the commit.
+.TP
+.B reword
+Apply the commit, then edit its commit message.
+.TP
+.B edit
+Apply the commit, then exit to allow further changes.
+.TP
+.B squash
+Fold the commit into the previous commit, then edit the combined
+commit message.
+.TP
+.B fixup
+Fold the commit into the previous commit, discarding its commit
+message.
+.TP
+.B break
+Exit to allow for manual edits or inspection before continuing.
+
+.PP
+.B Git/conf
+is a tool for querying the git configuration.
+The configuration key is provided as a dotted string. Spaces
+are accepted. For example, to find the URL of the origin
+repository, one might pass
+.I 'remote\ "origin".url'.
+When given the
+.I -r
+option, the root of the current repository is printed.
+
+.B Git/query
+takes an expression describing a commit, or set of commits,
+and resolves it to a list of commits.
+The
+.I -r
+option reverses the order of the commit list.
+With the
+.I -p
+option, instead of printing the commit hashes, the full
+path to their
+.B git/fs
+path is printed. With the
+.I -c
+option, the query must resolve to two commits. The blobs
+that have changed in the commits are printed.
+
+.PP
+.B Git/walk
+provides a tool for walking the list of tracked objects and printing their status.
+With no arguments, it prints a list of paths prefixed with the status character.
+When given the
+.I -c
+character, only the paths are printed.
+When given the
+.I -q
+option, all output is suppressed, and only the status is printed.
+When given the
+.I -f
+option, the output is filtered by status code, and only matching items are printed.
+
+.PP
+The status characters are as follows:
+.TP
+T
+Tracked, not modified since last commit.
+.TP
+M
+Modified since last commit.
+.TP
+R
+This file will be gone in the next commit.
+.TP
+A
+This file will be present in the next commit.
+
+.PP
+.B Git/compat
+spawns an rc subshell with a compatibility stub in
+.IR $path .
+This compatibility stub provides enough of the unix
+.I git
+commands to run tools like
+.I go get
+but not much more.
+
+.SH REF SYNTAX
+
+.PP
+Refs are specified with a simple query syntax.
+A bare hash always evaluates to itself.
+Ref names are resolved to their hashes.
+The
+.B a ^
+suffix operator finds the parent of a commit.
+The
+.B a b @
+suffix operator finds the common ancestor of the previous two commits.
+The
+.B a .. b
+or
+.B a : b
+operator finds all commits between
+.B a
+and
+.B b.
+Between is defined as the set of all commits which are reachable from
+.B b
+but not reachable from
+.B a.
+
+.SH PROTOCOLS
+.PP
+Git9 supports URL schemes of the format
+.BR transport://dial/repo/path .
+The transport portion specifies the protocol to use.
+If the transport portion is omitted, then the transport used is
+.BR ssh .
+The
+.I dial
+portion is either a plan 9 dial string, or a conventional
+.I host:port
+pair.
+For the ssh protocol, it may also include a
+.I user@
+prefix.
+.I repo/path
+portion is the path of the repository on the server.
+
+The supported transports are
+.B ssh://, git://, hjgit://, gits://, http://,
+and
+.BR https .
+Two of these are specific to git9:
+.I gits://
+and
+.IR hjgit:// .
+Both are the
+.I git://
+protocol, tunnelled over tls.
+.I Hjgit://
+authenticates with the server using Plan 9 authentication,
+using
+.IR tlsclient\ -a .
+Any of these protocol names may be prefixed with
+.IR git+ ,
+for copy-paste compatibility with Unix git.
+
+.SH EXAMPLES
+
+.PP
+In order to create a new repository, run
+.B git/init:
+.PP
+.EX
+git/init myrepo
+.EE
+
+.PP
+To clone an existing repository from a git server, run:
+.PP
+.EX
+git/clone git://github.com/Harvey-OS/harvey
+cd harvey
+# edit files
+git/commit foo.c
+git/push
+.EE
+
+.PP
+To set a user and email for commits, run:
+.PP
+.EX
+% mkdir $home/lib/git
+% >$home/lib/git/config echo '
+[user]
+ name = Ori Bernstein
+ email = ori@eigenstate.org'
+.EE
+
+.SH FILES
+.TP
+$repo/.git
+The full git repository.
+.TP
+$repo/.git/config
+The configuration file for a repository.
+.TP
+$home/lib/git/config
+The user-wide configuration for git.
+The contents of this file are used as fallbacks for the per-repository config.
+.TP
+/sys/lib/git/config
+The system-wide configuration for git.
+The contents of this file are used as fallbacks for the per-user config.
+
+.SH SEE ALSO
+.IR replica (1),
+.IR patch (1),
+.IR gitfs (4),
+.I diff3
+
+.SH BUGS
+.PP
+Repositories with submodules are effectively read-only.
+.PP
+There are some missing commands, features, and tools.
+.PP
+git/compat only works within a git repository.
diff --git a/sys/man/1/gzip b/sys/man/1/gzip
index f56a6a2466..84c18c4987 100644
--- a/sys/man/1/gzip
+++ b/sys/man/1/gzip
@@ -1,12 +1,12 @@
.TH GZIP 1
.SH NAME
-gzip, gunzip, bzip2, bunzip2, compress, uncompress, zip, unzip \- compress and expand data
+gzip, gunzip, bzip2, bunzip2, lzip, lunzip, compress, uncompress, zip, unzip \- compress and expand data
.SH SYNOPSIS
.B gzip
.RB [ -cvD [ 1-9 ]]
.RI [ file
.BR ... ]
-.PP
+.br
.B gunzip
.RB [ -ctTvD ]
.RI [ file
@@ -16,12 +16,22 @@ gzip, gunzip, bzip2, bunzip2, compress, uncompress, zip, unzip \- compress and e
.RB [ -cvD [ 1-9 ]]
.RI [ file
.BR ... ]
-.PP
+.br
.B bunzip2
.RB [ -cvD ]
.RI [ file
.BR ... ]
.PP
+.B lzip
+.RB [ -cvD [ 1-9 ]]
+.RI [ file
+.BR ... ]
+.br
+.B lunzip
+.RB [ -cvD ]
+.RI [ file
+.BR ... ]
+.PP
.B compress
[
.B -cv
@@ -29,7 +39,7 @@ gzip, gunzip, bzip2, bunzip2, compress, uncompress, zip, unzip \- compress and e
.I file
.B ...
]
-.PP
+.br
.B uncompress
[
.B -cv
@@ -44,7 +54,7 @@ gzip, gunzip, bzip2, bunzip2, compress, uncompress, zip, unzip \- compress and e
.IR zipfile ]
.I file
.RB [ ... ]
-.PP
+.br
.B unzip
.RB [ -cistTvD ]
.RB [ -f
@@ -86,7 +96,9 @@ are similar in interface to
and
.IR gunzip ,
but use a modified Burrows-Wheeler block sorting
-compression algorithm.
+compression algorithm,
+which often produces smaller compressed files than
+.IR gzip .
The default suffix for output files is
.BR .bz2 ,
with
@@ -99,6 +111,32 @@ recognizes the extension
as a synonym for
.BR .tbz .
.PP
+.I Lzip
+and
+.I lunzip
+are also similar in interface to
+.I gzip
+and
+.IR gunzip ,
+but use a specific LZMA (Lempel-Ziv-Markov) compression algorithm,
+which often produces smaller compressed files than
+.IR bzip2 .
+The default suffix for output files is
+.BR .lz ,
+with
+.B .tar.lz
+becoming
+.BR .tlz .
+Note that the popular
+.I xz
+compression program uses different LZMA compression algorithms
+and so files compressed by it will not be understood by
+.I lunzip
+and vice versa
+(and may not even be understood by other
+.I xz
+implementations).
+.PP
.I Compress
and
.I uncompress
@@ -130,7 +168,8 @@ None of these programs removes the original files.
If the process fails, the faulty output files are removed.
.PP
The options are:
-.TP 0.6i
+.\" .TP 0.6i
+.TP 0.3i
.B -a
Automaticialy creates directories as needed, needed for zip files
created by broken implementations which omit directories.
@@ -183,9 +222,7 @@ prints the names of files on standard error as they are compressed or decompress
.B -D
Produce debugging output.
.SH SOURCE
-.B /sys/src/cmd/gzip
-.br
-.B /sys/src/cmd/bzip2
+.B /sys/src/cmd/*zip*
.br
.B /sys/src/cmd/compress
.SH SEE ALSO
diff --git a/sys/man/1/ptrace b/sys/man/1/ptrace
new file mode 100644
index 0000000000..966892acee
--- /dev/null
+++ b/sys/man/1/ptrace
@@ -0,0 +1,225 @@
+.TH PTRACE 1
+.SH NAME
+ptrace, tron, pm \- trace processes
+.SH SYNOPSIS
+.B ptrace
+[
+.B -dgpw
+]
+.I file
+.PP
+.B tron
+[
+.B -f
+.I file
+]
+[
+.B -o
+.I ofile
+]
+.I cmd
+[
+.I arg...
+]
+.PP
+.B pm
+[
+.B -p
+.I nproc
+]
+[
+.B -r
+.I nround
+]
+[
+.B -c
+.I ncpu
+]
+[
+.B -i
+.I nio
+]
+[
+.B -s
+.I nstk
+]
+[
+.B -w
+.I sleep
+]
+.SH DESCRIPTION
+.I Ptrace
+plots and dumps generic process traces previously retrieved from
+.IR ptrace (3).
+Unlike with
+.IR trace (1)
+and
+.IR trace (3),
+the tracing and traced machines can be of different architectures,
+and tracing is designed for processes in general, and not just real-time ones.
+.PP
+Events are retrieved from
+.IR file ,
+which is a text file with trace events. Flag
+.B -d
+indicates that
+.I file
+uses the raw format provided by the
+.IR ptrace (3)
+device.
+But note that
+.I ptrace
+stops reading upon EOF, which makes it unsuitable for reading
+.IR ptrace (3)
+directly.
+.PP
+By default, the program prints events to standard output in a readable format.
+The output can be used later as input.
+.PP
+Under flag
+.B -g
+the program draws a plot that can be inspected using the mouse and
+the keyboard.
+A new window
+is used to plot the diagram if
+.B -w
+is given, otherwise, the program uses the window it runs on.
+It is advisable to use
+.B -w
+if commands causing prints are also used.
+Flag
+.B -p
+makes the program print events even when
+.B -g
+is given.
+.PP
+Typing
+.LR q
+makes the program quit.
+.PP
+In the plot, the left column shows pids and the machine they are running
+on. Red lines indicate waiting processes, green lines ready processes, and
+blue lines running processes. Traps and faults are shown below the process line
+and system calls are shown above.
+.PP
+The plot scale reflects actual time. You might have too zoom in to
+see some interesting events otherwise merged due to the scale.
+Placing the mouse near a process line updates the
+status information shown, including time.
+.PP
+Arrow keys can be used
+to zoom in (up), out (down), and to move left (left) and right (right).
+A click on the left (or right) part of the top line with the mouse
+moves left (or right).
+A sweep with mouse button 1 zooms into the time window selected.
+.PP
+The
+.LR Esc
+key restarts the plot using the original position and scale.
+.PP
+A sweep with button 2 saves the events selected in the file
+.BR ptrace.out .
+A sweep with button 3
+prints on the standard output
+the events in the rectangle selected (excluding
+processes out of the rectangle). Horizontal sweeps select the process
+where the sweep happens.
+.PP
+A click with the mouse
+button 3 plumbs the clicked event to the editor.
+The file name used is
+.B ptrace.out
+when the input uses a device format.
+.PP
+The
+.LR space
+key freezes the statistics reported when moving the mouse.
+.PP
+The
+.LR p
+key prints the events currently shown in the window. Those too small
+to be individually plotted are also printed.
+.PP
+The
+.LR s
+key saves the events shown into the file named
+.BR ptrace.out .
+.PP
+.I Tron
+is a helper to collect traces for commands. It executes
+.I cmd
+with
+.I args
+activating the trace for it (and descendant processes).
+Flag
+.B -f
+selects an alternate tracing device.
+.PP
+Flag
+.B -o
+causes
+.I tron
+to read events from the trace device and dump the output to
+.I file
+in the format used by the device. Such output file can later be used
+with
+.I ptrace
+to inspect what happen, and also to convert it to a textual format.
+The program ceases collecting events one second
+after the traced command exits.
+.PP
+.I Pm
+is a profile-me program generating a deterministic load with the given numbers
+of processes, rounds, etc.
+.SH EXAMPLE
+Capture a trace for a compilation:
+.EX
+term% troff -o tr.out mk all
+.EE
+.LP
+Print the events contained in the trace.
+.EX
+term% ptrace -d tr.out
+ 00048526953 121 06 mk Ready Ready 4 0x0
+ 00048537030 121 04 mk Run Run 3 0x0
+ ...
+.EE
+.LP
+This output can be saved and later used as input for
+.IR
+.PP
+Convert the dump to a textual format and run
+.I ptrace
+on it
+using a different window, so we can
+still use standard output for printing:
+.EX
+term% ptrace -d tr.out >tr.txt
+term% ptrace -wg tr.txt
+.EE
+.SH FILES
+.TF /sys/include/ptrace.h
+.TP
+.B /dev/ptrace
+trace event file
+.TP
+.B /sys/include/ptrace.h
+trace event data structures.
+.TP
+.B ptrace.out
+output for save command.
+.PD
+.SH SOURCE
+.B /sys/src/cmd/ptrace
+.SH SEE ALSO
+.IR proc (3),
+.IR trace (1).
+.SH BUGS
+To avoid extra interference from the tracing tools, the device
+does not block the reader, and thus the tools must poll the device.
+.PP
+To honor the plot scale, some events do not show up unless you
+zoom enough; although the picture is still accurate.
+.PP
+Should probably replace
+.IR trace (1).
diff --git a/sys/man/1/random b/sys/man/1/random
new file mode 100644
index 0000000000..c8d5bcc095
--- /dev/null
+++ b/sys/man/1/random
@@ -0,0 +1,24 @@
+.TH RANDOM 1
+.SH NAME
+random - print truly random probability or string
+.SH SYNOPSIS
+.B random
+[
+.B -s
+chars
+]
+.SH DESCRIPTION
+.I Random
+normally prints a truly random number between 0 and 1.
+Given
+.BR -s ,
+it instead prints a base-64-encoded truly random string of
+.I chars
+characters.
+.SH SOURCE
+.B /sys/src/cmd/random.c
+.SH SEE ALSO
+.IR rand (2),
+.B /dev/random
+in
+.IR cons (3)
diff --git a/sys/man/1/rc b/sys/man/1/rc
index 2dd2a1dd30..32f88753d9 100644
--- a/sys/man/1/rc
+++ b/sys/man/1/rc
@@ -233,6 +233,8 @@ The value is a single string containing the components of the named variable
separated by spaces. A variable with zero elements yields the empty string.
.HP
.BI `{ command }
+.HP
+.BI ` "split " { command }
.br
.I rc
executes the
@@ -245,6 +247,8 @@ If
.B $ifs
is not otherwise set, its value is
.BR "'\ \et\en'" .
+In the second form of the command, split is used instead of
+.BR $ifs .
.HP
.BI <{ command }
.HP
diff --git a/sys/man/2/ainc b/sys/man/2/ainc
new file mode 100644
index 0000000000..2c5f2eed00
--- /dev/null
+++ b/sys/man/2/ainc
@@ -0,0 +1,78 @@
+.TH AINC 2
+.SH NAME
+ainc, adec, cas32, cas, casp, casl, cas64, mfence \- atomic operations
+.SH SYNOPSIS
+.B #include
+.br
+.B #include
+.PP
+.nf
+.B
+int ainc(long *p)
+.PP
+.B
+int adec(long *p)
+.PP
+.B
+int cas(uint *p, int ov, int nv)
+.PP
+.B
+int casp(void **p, void *ov, void *nv)
+.PP
+.B
+int casl(ulong *p, ulong ov, ulong nv)
+.PP
+.B
+int cas32(u32int *p, u32int ov, u32int nv)
+.PP
+.B
+int cas64(u64int *p, u64int ov, u64int nv)
+.PP
+.B
+void mfence(void)
+.SH DESCRIPTION
+These functions provide access to atomic operations, useful for
+synchronization.
+.PP
+.I Ainc
+and
+.I adec
+atomically
+increment and decrement (respectively) the integer pointed to by
+.IR p ,
+and return the resulting value after the operation.
+On architectures with a weak memory model, both operations
+are implemented with a barrier to memory reordering.
+In other words, all loads and stores
+which precede the increment / decrement in program order
+will be observed before it,
+and the increment / decrement will be observed before any loads
+and stores which follow it in program order.
+.PP
+.I Cas
+performs a compare and swap on the word pointed to by
+.IR p ,
+provided that the value is still
+.I ov
+(the old value), so that the new value is
+.IR nv .
+Functions
+.IR cas32 ,
+.IR cas64 ,
+.IR casp ,
+and
+.I casul
+do the same for 32-bit values, 64-bit values, pointers, and unsigned long
+integers.
+.PP
+.I Mfence
+sets a memory fence so that all outstanding memory operations are performed
+before returning from it.
+.SH SOURCE
+.B /sys/src/libc/386/atom.s
+.br
+.B /sys/src/libc/amd64/atom.s
+.SH SEE ALSO
+.IR incref (2).
+.SH BUGS
+Some of them may not be implemented for some architectures.
diff --git a/sys/man/2/aml b/sys/man/2/aml
new file mode 100644
index 0000000000..4140c80a1d
--- /dev/null
+++ b/sys/man/2/aml
@@ -0,0 +1,287 @@
+.TH AML 2
+.SH NAME
+amltag, amlval, amlint, amllen, amlnew, amlinit, amlexit, amlload, amlwalk, amleval, amlenum, amltake, amldrop - ACPI machine language interpreter
+.SH SYNOPSIS
+.\" .ta 0.75i 1.5i 2.25i 3i 3.75i 4.5i
+.ta 0.7i +0.7i +0.7i +0.7i +0.7i +0.7i +0.7i
+.EX
+#include
+#include
+#include
+
+int amltag(void *);
+void* amlval(void *);
+uvlong amlint(void *);
+int amllen(void *);
+
+void* amlnew(char tag, int len);
+
+void amlinit(void);
+void amlexit(void);
+
+int amlload(uchar *data, int len);
+void* amlwalk(void *dot, char *name);
+int amleval(void *dot, char *fmt, ...);
+void amlenum(void *dot, char *seg, int (*proc)(void *, void *), void *arg);
+
+void amltake(void *);
+void amldrop(void *);
+
+void* amlroot;
+int amldebug;
+.EE
+.SH DESCRIPTION
+The aml library implements an interpreter for the ACPI machine language
+byte code.
+.TP
+\f5amlinit() \f5amlexit()
+The interpreter runtime state is initialized by calling
+.I amlinit
+and frees all the resources when
+.I amlexit
+is called.
+The runtime state consists of objects organized in a global
+namespace. The name object referred to by
+.I amlroot
+is the root of that namespace.
+.TP
+.BI amlload( data , len )
+.I Amlload
+populates the namespace with objects parsed from the
+definition block of
+.I len
+byte size read from
+.IR data .
+The pc kernel provides access to the ACPI tables through the
+.B /dev/acpitbls
+file (see
+.IR arch (3)
+for further details).
+.TP
+.BI amltag( p )
+Objects are dynamically allocated and typed and are passed as
+.B void*
+pointers. The type tag of an object can be determined with the
+.I amltag
+function. The following table shows the defined tags and ther
+underlying type:
+.EX
+/*
+ * b uchar* buffer amllen() returns number of bytes
+ * s char* string amllen() is strlen()
+ * n char* undefined name amllen() is strlen()
+ * i uvlong* integer
+ * p void** package amllen() is # of elements
+ * r void* region
+ * f void* field
+ * u void* bufferfield
+ * N void* name
+ * R void* reference
+ */
+.EE
+.TP
+.BI amlwalk( dot , name )
+.I Amlwalk
+takes a path string (relative to
+.IR dot )
+in
+.I name
+and returns the final name object of the walk; or
+.B nil
+if not found.
+.TP
+\f5amlenum(\fIdot\f5,\fIseg\f5,\fIproc\f5,\fIarg\f5)
+.I Amlenum
+recursively enumerates all child name objects of
+.I dot
+that have
+.I seg
+as name; or any name if
+.I seg
+is
+.BR nil ;
+calling
+.I proc
+for each one passing
+.IR dot .
+When
+.I proc
+returns zero, enumeration will continue recursively down
+for the current dot.
+.TP
+.BI amlval( p )
+.I Amlval
+returns the value of a name, reference or field object.
+Calling
+.I amlval
+on any other object yields the same object.
+.TP
+.BI amllen( p )
+.I Amllen
+is defined for variable length objects like buffers, strings and packages.
+For strings, the number of characters (not including the terminating null byte)
+is returned. For buffers, the size of the buffer in bytes is returned.
+For packages (arrays), the number of elements is returned. For any other
+object types, the return value is undefined.
+.TP
+.BI amlint( p )
+.I Amlint
+returns the integer value of an object. For strings, the string is interpreted
+as an hexadecimal number. For buffers and buffer fields, the binary value is returned.
+Integers just return their value. Any other object types yield zero.
+.TP
+.BI amlnew( tag , len )
+Integer, buffer, string and package objects can be created with the
+.I amlnew
+function. The
+.I tag
+specific definition of the
+.I len
+parameter is the same as in
+.I amllen
+(see above).
+.TP
+\f5amleval(\fIdot\f5,\fIfmt\f5,\fI...\f5)
+.I Amleval
+evaluates the name object
+.IR dot .
+For method evaluation, the
+.I fmt
+string parameter describes the arguments passed to the evaluated
+method. Each character in
+.I fmt
+represents a tag for an method argument taken from the
+variable argument list of
+.I amleval
+and passed to the method.
+The fmt tags
+.BR I ,
+.B i
+and
+.B s
+take
+.BR uvlong ,
+.B int
+and
+.B char*
+from the variable argument list and create object copies to
+be passed.
+The tags
+.BR b ,
+.B p
+and
+.B *
+take
+.B void*
+from the variable argument list and pass them as objects
+by reference (without conversion or copies).
+The last variable argument is a pointer to the result
+object location. When the last parameter is
+.B nil
+the result is discarded.
+.TP
+\f5amltake(\fIp\f5) \f5amldrop(\fIp\f5)
+Objects returned by
+.IR amlval ,
+.I amleval
+and
+.I amlnew
+are subject to garbage collection during method evaluation
+unless previously maked to be excluded from collection with
+.IR amltake .
+To remark an object for collection,
+.I amldrop
+needs be called.
+Objects stay valid as long as they are reachable from
+.IR amlroot .
+.bp
+.PP
+The aml library can be linked into userspace programs
+and the kernel which have different means of hardware access
+and memory constraints.
+.PP
+The
+.I Amlio
+data structure defines access to a hardware space.
+.EX
+
+enum {
+ MemSpace = 0x00,
+ IoSpace = 0x01,
+ PcicfgSpace = 0x02,
+ EbctlSpace = 0x03,
+ SmbusSpace = 0x04,
+ CmosSpace = 0x05,
+ PcibarSpace = 0x06,
+ IpmiSpace = 0x07,
+};
+
+typedef struct Amlio Amlio;
+struct Amlio
+{
+ int space;
+ uvlong off;
+ uvlong len;
+ void *name;
+ uchar *va;
+
+ void *aux;
+ int (*read)(Amlio *io, void *data, int len, int off);
+ int (*write)(Amlio *io, void *data, int len, int off);
+};
+
+.EE
+The
+members
+.IR space ,
+.IR off ,
+.I len
+and
+.I name
+are initialized by the interpreter and describe the I/O region
+it needs access to. For memory regions,
+.I va
+can to be set to the virtual address mapping base by the
+mapping function.
+The interpreter will call the
+.I read
+and
+.I write
+function pointers with a relative offset to the regions
+base offset.
+The
+.I aux
+pointer can be used freely by the map function to attach its own
+resources to the I/O region and allows it to free these resources
+on
+.IR amlunmapio .
+.TP
+\f5amlmapio(\fIio\f5) \f5amlunmapio(\fIio\f5)
+The interpreter calls
+.I amlmapio
+with a
+.I Amlio
+data structure that is to be filled out. When finished, the
+interpreter calls
+.I amlunmapio
+with the same data structure to allow freeing resources.
+.TP
+.BI amldelay( µs )
+.I Amldelay
+is called by the interpreter with the number of microseconds
+to sleep.
+.TP
+\f5amlalloc(\fIn\f5) \f5amlfree(\fIp\f5)
+.I Amlalloc
+and
+.I amlfree
+can be optionally defined to control dynamic memory allocation
+providing a way to limit or pool the memory allocated by acpi.
+If not provided, the library will use the functions
+defined in
+.IR malloc (2)
+for dynamic allocation.
+.SH SOURCE
+.B /sys/src/libaml
+.SH "SEE ALSO"
+.IR arch (3)
diff --git a/sys/man/2/bio b/sys/man/2/bio
index 695a011b8a..e231005100 100644
--- a/sys/man/2/bio
+++ b/sys/man/2/bio
@@ -1,6 +1,6 @@
.TH BIO 2
.SH NAME
-Bopen, Binit, Binits, Brdline, Brdstr, Bgetc, Bgetrune, Bgetd, Bungetc, Bungetrune, Bread, Bseek, Boffset, Bfildes, Blinelen, Bputc, Bputrune, Bprint, Bvprint, Bwrite, Bflush, Bterm, Bbuffered \- buffered input/output
+Bopen, Bfdopen, Binit, Binits, Brdline, Brdstr, Bgetc, Bgetrune, Bgetd, Bungetc, Bungetrune, Bread, Bseek, Boffset, Bfildes, Blinelen, Bputc, Bputrune, Bprint, Bvprint, Bwrite, Bflush, Bterm, Bbuffered \- buffered input/output
.SH SYNOPSIS
.ta \w'Biobuf* 'u
.B #include
@@ -13,6 +13,9 @@ Bopen, Binit, Binits, Brdline, Brdstr, Bgetc, Bgetrune, Bgetd, Bungetc, Bungetru
Biobuf* Bopen(char *file, int mode)
.PP
.B
+Biobuf* Bfdopen(int fd, int mode)
+.PP
+.B
int Binit(Biobuf *bp, int fd, int mode)
.PP
.B
@@ -93,6 +96,17 @@ It calls
.IR malloc (2)
to allocate a buffer.
.PP
+.I Bfdopen
+allocates a buffer for the already-open file descriptor
+.I fd
+for mode
+.B OREAD
+or
+.BR OWRITE .
+It calls
+.IR malloc (2)
+to allocate a buffer.
+.PP
.I Binit
initializes a standard size buffer, type
.IR Biobuf ,
@@ -138,7 +152,9 @@ and returns
.IR Bflush 's
return value.
If the buffer was allocated by
-.IR Bopen ,
+.I Bopen
+or
+.IR Bfdopen ,
the buffer is
.I freed
and the file is closed.
diff --git a/sys/man/2/chacha b/sys/man/2/chacha
new file mode 100644
index 0000000000..a68d0bf1b4
--- /dev/null
+++ b/sys/man/2/chacha
@@ -0,0 +1,140 @@
+.TH CHACHA 2
+.SH NAME
+setupChachastate, chacha_setblock, chacha_setiv, chacha_encrypt, chacha_encrypt2, ccpoly_encrypt, ccpoly_decrypt \- chacha encryption
+.SH SYNOPSIS
+.B #include
+.br
+.B #include
+.br
+.B #include
+.br
+.B #include
+.PP
+.B
+void setupChachastate(Chachastate *s, uchar key[], usize keylen, uchar *iv, ulong ivlen, int rounds)
+.PP
+.B
+void chacha_encrypt(uchar *data, int len, Chachastate *s)
+.PP
+.B
+void chacha_encrypt2(uchar *src, uchar *dst, int len, Chachastate *s)
+.PP
+.B
+void chacha_setblock(Chachastate *s, u64int blockno)
+.PP
+.B
+void chacha_setiv(Chachastate *s, uchar *iv);
+.PP
+.B
+void ccpoly_encrypt(uchar *dat, ulong ndat, uchar *aad, ulong naad, uchar tag[16], Chachastate *cs);
+.PP
+.B
+int ccpoly_decrypt(uchar *dat, ulong ndat, uchar *aad, ulong naad, uchar tag[16], Chachastate *cs);
+.SH DESCRIPTION
+.PP
+Chacha is D J Berstein's symmetric stream cipher, as modified by RFC7539. It uses
+keys of 256 bits (128 bits is supported here for special purposes). It has an underlying block size of 64 bytes
+(named as constant
+.BR ChachaBsize ).
+It is a potential replacement for
+.IR rc4 (2).
+.PP
+.I SetupChachastate
+takes a reference to a
+.B Chachastate
+structure, a
+.I key
+of
+.I keylen
+bytes, which should normally be
+.BR ChachaKeylen ,
+a
+.I iv
+or nonce of
+.I ivlen
+bytes (can be
+.BR ChachaIVlen =12
+or 8, set to all zeros if the
+.I iv
+argument is nil),
+and the number of
+.I rounds
+(set to the default of 20 if the argument is zero).
+With a key length of 256 bits (32 bytes), a nonce of 96 bits (12 bytes)
+and 20
+.IR rounds ,
+the function implements the Chacha20 encryption function of RFC7539.
+.PP
+.I Chacha_encrypt
+encrypts
+.I len
+bytes of
+.I buf
+in place using the
+.B Chachastate
+in
+.IR s .
+.I Len
+can be any byte length.
+Encryption and decryption are the same operation given the same starting state
+.IR s .
+.PP
+.I Chacha_encrypt2
+is similar, but encrypts
+.I len
+bytes of
+.I src
+into
+.I dst
+without modifying
+.IR src .
+.PP
+.I Chacha_setblock
+sets the Chacha block counter for the next encryption to
+.IR blockno ,
+allowing seeking in an encrypted stream.
+.PP
+.I Chacha_setiv
+sets the the initialization vector (nonce) to
+.IR iv .
+.PP
+.I Ccpoly_encrypt
+and
+.I ccpoly_decrypt
+implement authenticated encryption with associated data (AEAD)
+using Chacha cipher and Poly1305 message authentication code
+as specified in RFC7539.
+These routines require a
+.I Chachastate
+that has been setup with a new (per key unique) initialization
+vector (nonce) on each invocation. The referenced data
+.IR dat [ ndat ]
+is in-place encrypted or decrypted.
+.I Ccpoly_encrypt
+produces a 16 byte authentication
+.IR tag ,
+while
+.I ccpoly_decrypt
+verifies the
+.IR tag ,
+returning zero on success or negative on a mismatch.
+The
+.IR aad [ naad ]
+arguments refer to the additional authenticated data
+that is included in the
+.I tag
+calculation, but not encrypted.
+.SH SOURCE
+.B /sys/src/libsec
+.SH SEE ALSO
+.IR mp (2),
+.IR aes (2),
+.IR blowfish (2),
+.IR des (2),
+.IR dsa (2),
+.IR elgamal (2),
+.IR rc4 (2),
+.IR rsa (2),
+.IR sechash (2),
+.IR prime (2),
+.IR rand (2)
diff --git a/sys/man/2/ctime b/sys/man/2/ctime
index a4e074343e..814dc76318 100644
--- a/sys/man/2/ctime
+++ b/sys/man/2/ctime
@@ -121,9 +121,15 @@ GMT 0
.SH BUGS
The return values point to static data
whose content is overwritten by each call.
-.br
+.PP
Daylight Savings Time is ``normal'' in the Southern hemisphere.
-.br
+.PP
These routines are not equipped to handle non-\c
.SM ASCII
text, and are provincial anyway.
+.PP
+These interfaces are fixed, but all occurrences of
+.B long
+in the above should be manipulated as
+.BR ulong ;
+this extends the range of valid times into the year 2106.
diff --git a/sys/man/2/dynld b/sys/man/2/dynld
new file mode 100644
index 0000000000..89773339ad
--- /dev/null
+++ b/sys/man/2/dynld
@@ -0,0 +1,287 @@
+.TH DYNLD 2
+.SH NAME
+dynfindsym, dynfreeimport, dynloadfd, dynloadgen, dynobjfree, dyntabsize \- load object file dynamically
+.SH SYNOPSIS
+.B #include
+.br
+.B #include
+.br
+.B #include
+.PP
+.ta \w'\fLDynsym*** 'u
+.B
+Dynsym* dynfindsym(char *name, Dynsym *syms, int nsym)
+.PP
+.B
+Dynobj* dynloadfd(int fd, Dynsym *exports, int nexport,
+.br
+.B
+ ulong maxsize)
+.PP
+.B
+Dynobj* dynloadgen(void *file, long (*read)(void*,void*,long),
+.br
+.B
+ vlong (*seek)(void*,vlong,int), void (*err)(char*),
+.br
+.B
+ Dynsym *exports, int nexport, ulong maxsize)
+.PP
+.B
+void* dynimport(Dynobj *o, char *name, ulong sig)
+.PP
+.B
+void dynfreeimport(Dynobj *o)
+.PP
+.B
+void dynobjfree(Dynobj *o)
+.PP
+.B
+int dyntabsize(Dynsym *t)
+.PP
+.B
+extern Dynsym _exporttab[];
+.DT
+.SH DESCRIPTION
+These functions allow a process to load further code and data
+into the currently executing image.
+A dynamically-loadable file, called a
+.I module
+here, is a variant of the
+.IR a.out (10.6)
+executable format with some extra components.
+The loader for the architecture
+(see
+.IR 8l (1))
+creates a module file from component object file(s) when given the
+.B -u
+option.
+A module contains text and data sections, an import table, an export table,
+and relocation data.
+The import table lists the symbols the module needs from the loading program;
+the export table lists symbols the module provides when loaded.
+A program that loads a module provides a table of its own symbols to match
+the symbols in the module's import table.
+.PP
+A symbol entry in a symbol table names a global function or data item, and has an associated
+.I signature
+value representing the type of the corresponding function or data in the source code.
+The
+.B Dynsym
+structure defines a symbol:
+.IP
+.EX
+typedef struct {
+ ulong sig;
+ ulong addr;
+ char* name;
+} Dynsym;
+.EE
+.PP
+The structure is known to the loaders
+.IR 8l (1).
+.I Name
+is the linkage name of the function or data.
+.I Addr
+is its address, which is relative to the start of the module before loading,
+and an address in the current address space after loading.
+The signature
+.I sig
+is the value produced by the C compiler's
+.B signof
+operator applied to the type.
+Symbol tables must be sorted by
+.IR name .
+.PP
+An executable that wishes to load modules will normally be linked using the
+.B -x
+option to the appropriate loader
+.IR 8l (1).
+The resulting executable contains an export table
+.B _exporttab
+that lists all the exported symbols of the program (by default, all external symbols).
+A nil name marks the end of the table.
+See
+.IR 8l (1)
+for details.
+The table can be given to the functions below to allow a loaded module
+to access those symbols.
+.PP
+A loaded module is described by a
+.B Dynobj
+structure:
+.IP
+.EX
+typedef struct {
+ ulong size; /* total size in bytes */
+ ulong text; /* bytes of text */
+ ulong data; /* bytes of data */
+ ulong bss; /* bytes of bss */
+ uchar* base; /* start of text, data, bss */
+ int nexport;
+ Dynsym* export; /* export table */
+ int nimport;
+ Dynsym** import; /* import table */
+} Dynobj;
+.EE
+.PP
+Several fields give sizes of the module's components, as noted in comments above.
+.I Base
+gives the address at which the module has been loaded.
+All its internal
+references have been adjusted where needed to reflect its current address.
+.I Export
+points to a symbol table listing the symbols exported by the module;
+.I nexport
+gives the table's length.
+.I Import
+points to a list of symbols imported by the module;
+note that each entry actually points to an entry in a symbol table
+provided by the program that loaded the module (see below).
+.I Nimport
+gives the import table's length.
+If the import table is not required, call
+.I dynfreeimport
+on the module pointer to free it.
+.PP
+.I Dynfindysm
+looks up the entry for the given
+.I name
+in symbol table
+.I syms
+(of length
+.IR nsym ).
+It returns a pointer to the entry if found; nil otherwise.
+The symbol table must be sorted by name in ascending order.
+.PP
+.I Dyntabsize
+returns the length of symbol table
+.IR t ,
+defined to be the number of
+.B Dynsym
+values starting at
+.I t
+that have non-nil
+.I name
+fields.
+It is used to find the length of
+.BR _exporttab .
+.PP
+.I Dynloadfd
+loads a module from the file open for reading on
+.IR fd ,
+and returns the resulting module pointer on success,
+or nil on error.
+If
+.I maxsize
+is non-zero
+the size of the dynamically-loaded module's code and data
+is limited to
+.I maxsize
+bytes.
+.I Exports
+is an array of
+.I nexport
+symbols in the current program that can be imported by the current module.
+It uses
+.IR read (2)
+and
+.IR seek (2)
+to access
+.IR fd ,
+and calls
+.I werrstr
+(see
+.IR errstr (2))
+to set the error string if necessary.
+.PP
+.I Dynloadgen
+is a more general function that can load a module from an
+arbitrary source, not just an open file descriptor.
+(In particular, it can be
+called by the kernel using functions internal to the kernel
+instead of making system calls.)
+.IR Exports ,
+.I nexport
+and
+.I maxsize
+are just as for
+.IR dynloadfd .
+.I File
+is a pointer to a structure defined by the caller that represents the file
+containing the module.
+It is passed to
+.I read
+and
+.IR seek .
+.I Read
+is invoked as
+.BI (*read)( file , buf ,\ \fInbytes\fP)\fR.\fP
+.I Read
+should read
+.I nbytes
+of data from
+.I file
+into
+.I buf
+and return the number of bytes transferred.
+It should return -1 on error.
+.I Seek
+is invoked as
+.BI (*seek)( file , n ,\ \fItype\fP)
+where
+.I n
+and
+.I type
+are just as for
+.IR seek (2);
+it should seek to the requested offset in
+.IR file ,
+or return -1 on error.
+.I Dynloadgen
+returns a pointer to the loaded module on success.
+On error,
+it returns nil after calling its
+.I err
+parameter to set the error string.
+.PP
+.I Dynimport
+returns a pointer to the value of the symbol
+.I name
+in loaded module
+.IR o ,
+or
+.I nil
+if
+.I o
+does not export a symbol with the given
+.IR name .
+If
+.I sig
+is non-zero, the exported symbol's signature must equal
+.IR sig ,
+or
+.I dynimport
+again returns nil.
+For example:
+.IP
+.EX
+Dev *d;
+d = dynimport(obj, "XXXdevtab", signof(*d));
+if(d == nil)
+ error("not a dynamically-loadable driver");
+.EE
+.PP
+.I Dynobjfree
+frees the module
+.IR o .
+There is no reference counting: it is the caller's responsibility to decide whether
+a module is no longer needed.
+.SH SEE ALSO
+.IR 8l (1),
+.\".IR mach (2),
+.IR a.out (6)
+.SH DIAGNOSTICS
+Functions that return pointers return nil on error.
+.I Dynloadfd
+sets the error string and returns nil.
diff --git a/sys/man/2/exec b/sys/man/2/exec
index 5c5e79669d..926bde4bb3 100644
--- a/sys/man/2/exec
+++ b/sys/man/2/exec
@@ -198,3 +198,8 @@ typically around 409,600 bytes.
The kernel constant
.B TSTKSIZ
controls this.
+.PP
+Both functions rely upon the system's demand paging,
+which in turn expects to be able to read full pages in a single
+.I read
+operation, no matter what the underlying file server is.
diff --git a/sys/man/2/leget b/sys/man/2/leget
new file mode 100644
index 0000000000..dc8fd3a436
--- /dev/null
+++ b/sys/man/2/leget
@@ -0,0 +1,104 @@
+.TH LEGET 2
+le16get, le24get, le32get, le64get, le16put, le24put, le32put, le64put, be16get, be24get, be32get, be64get, be16put, be24put, be32put, be64put\- integer marshalling
+.SH SYNOPSIS
+.ta +\w'\fLuvlong 'u
+.PP
+.nf
+.B
+u16int le16get(uchar *t, uchar **r)
+.PP
+.nf
+.B
+u32int le24get(uchar *t, uchar **r)
+.PP
+.nf
+.B
+u32int le32get(uchar *t, uchar **r)
+.PP
+.nf
+.B
+u64int le64get(uchar *t, uchar **r)
+.PP
+.nf
+.B
+uchar* le16put(uchar *t, u16int i)
+.PP
+.nf
+.B
+uchar* le24put(uchar *t, u32int i)
+.PP
+.nf
+.B
+uchar* le32put(uchar *t, u32int i)
+.PP
+.nf
+.B
+uchar* le64put(uchar *t, u64int i)
+.PP
+.nf
+.B
+u16int be16get(uchar *t, uchar **r)
+.PP
+.nf
+.B
+u32int be24get(uchar *t, uchar **r)
+.PP
+.nf
+.B
+u32int be32get(uchar *t, uchar **r)
+.PP
+.nf
+.B
+u64int be64get(uchar *t, uchar **r)
+.PP
+.nf
+.B
+uchar* be16put(uchar *t, u16int i)
+.PP
+.nf
+.B
+uchar* be24put(uchar *t, u32int i)
+.PP
+.nf
+.B
+uchar* be32put(uchar *t, u32int i)
+.PP
+.nf
+.B
+uchar* be64put(uchar *t, u64int i)
+.PP
+.SH DESCRIPTION
+These functions marshal a 2- to 8-byte integer to
+or from little- or big-endian formats. The
+.I put
+functions return the
+pointer to the first byte after the integer. The
+.I get
+functions return the value, and if
+.B r
+is not
+.I nil
+they set
+.B *r
+to point at the first byte after the integer.
+.SH SOURCE
+.B /sys/src/libc/port/beget.c
+.br
+.B /sys/src/libc/port/leget.c
+.SH "SEE ALSO"
+.IR fcall (2),
+.IR ip (2)
+.SH BUGS
+.IR GBIT *
+and
+.IR PBIT *
+(from
+.IR fcall (2))
+provide similar functionality for little-endian integers.
+The
+.IR nhget *
+and
+.IR nhput *
+functions from
+.IR ip (2)
+provide similar functionality for big-endian integers.
diff --git a/sys/man/2/lock b/sys/man/2/lock
index 76d15b1fef..128ea313bb 100644
--- a/sys/man/2/lock
+++ b/sys/man/2/lock
@@ -282,26 +282,20 @@ this ensures that wakeups are not missed.
.SH SEE ALSO
.I rfork
in
-.IR fork (2)
+.IR fork (2),
+.IR semacquire (2)
.SH BUGS
.B Locks
-are not strictly spin locks.
-After each unsuccessful attempt,
+are not actually spin locks.
+After one unsuccessful attempt,
.I lock
calls
-.B sleep(0)
-to yield the CPU; this handles the common case
-where some other process holds the lock.
-After a thousand unsuccessful attempts,
-.I lock
-sleeps for 100ms between attempts.
-After another thousand unsuccessful attempts,
-.I lock
-sleeps for a full second between attempts.
+.I semacquire
+repeatedly (thus yielding the CPU)
+until it succeeds in acquiring a semaphore internal to the
+.BR Lock .
.B Locks
are not intended to be held for long periods of time.
-The 100ms and full second sleeps are only heuristics to
-avoid tying up the CPU when a process deadlocks.
As discussed above,
if a lock is to be held for much more than a few instructions,
the queueing lock types should be almost always be used.
diff --git a/sys/man/2/mp b/sys/man/2/mp
index 9db58d1066..c1a92cc0ae 100644
--- a/sys/man/2/mp
+++ b/sys/man/2/mp
@@ -1,6 +1,6 @@
.TH MP 2
.SH NAME
-mpsetminbits, mpnew, mpfree, mpbits, mpnorm, mpcopy, mpassign, mprand, strtomp, mpfmt,mptoa, betomp, mptobe, letomp, mptole, mptoui, uitomp, mptoi, itomp, uvtomp, mptouv, vtomp, mptov, mpdigdiv, mpadd, mpsub, mpleft, mpright, mpmul, mpexp, mpmod, mpdiv, mpcmp, mpextendedgcd, mpinvert, mpsignif, mplowbits0, mpvecdigmuladd, mpvecdigmulsub, mpvecadd, mpvecsub, mpveccmp, mpvecmul, mpmagcmp, mpmagadd, mpmagsub, crtpre, crtin, crtout, crtprefree, crtresfree \- extended precision arithmetic
+mpsetminbits, mpnew, mpfree, mpbits, mpnorm, mpcopy, mpassign, mprand, mpnrand, strtomp, mpfmt,mptoa, betomp, mptobe, letomp, mptole, mptoui, uitomp, mptoi, itomp, uvtomp, mptouv, vtomp, mptov, mpdigdiv, mpadd, mpsub, mpleft, mpright, mpmul, mpexp, mpmod, mpdiv, mpcmp, mpextendedgcd, mpinvert, mpsignif, mplowbits0, mpvecdigmuladd, mpvecdigmulsub, mpvecadd, mpvecsub, mpveccmp, mpvecmul, mpmagcmp, mpmagadd, mpmagsub, crtpre, crtin, crtout, crtprefree, crtresfree \- extended precision arithmetic
.SH SYNOPSIS
.B #include
.br
@@ -34,6 +34,9 @@ void mpassign(mpint *old, mpint *new)
mpint* mprand(int bits, void (*gen)(uchar*, int), mpint *b)
.PP
.B
+mpint* mnprand(mpint *n, void (*gen)(uchar*, int), mpint *b)
+.PP
+.B
mpint* strtomp(char *buf, char **rptr, int base, mpint *b)
.PP
.B
@@ -300,6 +303,14 @@ bit random number using the generator
takes a pointer to a string of uchar's and the number
to fill in.
.PP
+.I Mpnrand
+uses
+.I gen
+to generate a uniform random number
+.IR x ,
+.if t 0 ≤ \fIx\fR < \fIn\fR.
+.if n 0 ≤ x < n.
+.PP
.I Strtomp
and
.I mptoa
diff --git a/sys/man/2/ptrace b/sys/man/2/ptrace
new file mode 100644
index 0000000000..b2b3dd5c45
--- /dev/null
+++ b/sys/man/2/ptrace
@@ -0,0 +1,96 @@
+.TH PTRACE 2
+.SH NAME
+ptrace \- interface for the process trace device
+.SH SYNOPSIS
+.EX
+#include
+#include
+#include
+.sp
+typedef enum {
+ CHANEND,
+ CHANSND,
+ CHANRCV,
+ CHANNOP,
+ CHANNOBLK,
+} ChanOp;
+.sp
+typedef enum PTevent {
+ SAdmit = 0, /* Edf admit */
+ SRelease, /* Edf release, waiting to be scheduled */
+ SEdf, /* running under EDF */
+ SRun, /* running best effort */
+ SReady, /* runnable but not running */
+ SSleep, /* blocked */
+ SYield, /* blocked waiting for release */
+ SSlice, /* slice exhausted */
+ SDeadline, /* proc's deadline */
+ SExpel, /* Edf expel */
+ SDead, /* proc dies */
+ SInts, /* Interrupt start */
+ SInte, /* Interrupt end */
+ STrap, /* fault */
+ SUser, /* user event */
+ SName, /* used to report names for pids */
+ Nevent,
+} Tevent;
+.sp
+enum {
+ PTsize = 4 + 4 + 4 + 8 + 8,
+
+ /* STrap arg flags */
+ STrapRPF = 0x1000000000000000ULL, /* page fault (read) STrap arg */
+ STrapWPF = 0x1000000000000000ULL, /* page fault (write) STrap arg */
+ STrapSC = 0x2000000000000000ULL, /* sys call STrap arg */
+ STrapMask = 0x0FFFFFFFFFFFFFFFULL, /* bits available in arg */
+};
+.sp
+typedef struct PTraceevent PTraceevent;
+struct PTraceevent {
+ u32int pid; /* for the process */
+ u32int etype; /* Event type */
+ u32int machno; /* where the event happen */
+ vlong time; /* time stamp */
+ u64int arg; /* for this event type */
+};
+.EE
+.SH DESCRIPTION
+This include file documents the format of the
+.IR ptrace (3)
+device. The device reports trace events for processes with the
+fields documented in the
+.B PTraceevent
+structure. Events are read using little endian format for all
+values. The type of event is one of those in
+.BR PTevent .
+.PP
+Traps report also system calls made. They have set in the
+.B arg
+field the
+.B STrapRPF
+or
+.B STrapWPF
+bit if they correspond to a read or write page fault, and the
+.B STrapSC
+bit if they correspond to a system call (OR'ed with the
+system call number). For page faults, the
+.B STrapMask
+bits are set to the faulting address using the
+endianness of the faulting system.
+Otherwise the argument is the trap number.
+.PP
+The
+.B SName
+event uses the space of the argument to store up to 8 characters
+with the process name for the pid reported in the event.
+.PP
+The
+.B SSleep
+state reports as its argument both the scheduling state for the
+sleep (in the low byte) and the program counter for the kernel
+(upper bytes, shifted).
+.SH SOURCE
+.B /sys/src/9/port/devptrace.c
+.SH SEE ALSO
+.IR ptrace (3),
+.IR ptrace (1).
diff --git a/sys/man/2/read b/sys/man/2/read
index 1ae0928626..76ae571e7d 100644
--- a/sys/man/2/read
+++ b/sys/man/2/read
@@ -90,7 +90,8 @@ without interference.
.IR dup (2),
.IR open (2),
.IR pipe (2),
-.IR readv (2)
+.IR readv (2),
+.IR read (5)
.SH DIAGNOSTICS
These functions set
.IR errstr .
diff --git a/sys/man/2/sechash b/sys/man/2/sechash
index 7524881f84..f1e33af0cc 100644
--- a/sys/man/2/sechash
+++ b/sys/man/2/sechash
@@ -2,6 +2,7 @@
.SH NAME
md4, md5,
sha1, sha2_224, sha2_256, sha2_384, sha2_512,
+poly1305,
aes, hmac_x, hmac_md5,
hmac_sha1, hmac_sha2_224, hmac_sha2_256, hmac_sha2_384, hmac_sha2_512,
hmac_aes, md5pickle, md5unpickle,
@@ -57,6 +58,8 @@ DS* sha2_512(uchar *data, ulong dlen, uchar *digest, DS *state)
.Ti
DS* aes(uchar *data, ulong dlen, uchar *digest, DS *state)
.Ti
+DS* poly1305(uchar *p, ulong len, uchar *key, ulong klen, uchar *digest, DS *state)
+.Ti
DS* hmac_x(uchar *p, ulong len, uchar *key, ulong klen, uchar *digest, DS *s, DS*(*x)(uchar*, ulong, uchar*, DS*), int xlen)
.Ti
DS* hmac_md5(uchar *data, ulong dlen, uchar *key, ulong klen, uchar *digest, DS *state)
@@ -93,6 +96,7 @@ The routines
.IR sha2_384 ,
.IR sha2_512 ,
.IR aes ,
+.IR poly1305 ,
.IR hmac_md5 ,
.IR hmac_sha1 ,
.IR hmac_sha2_224 ,
@@ -151,6 +155,9 @@ These routines all call
internally, but
.I hmac_x
is not intended for general use.
+IR poly1305 ,
+is a one-time authenticator designed by D. J. Bernstein. It takes a 32-byte
+one-time key and a message and produces a 16-byte tag.
.PP
The functions
.I md5pickle
diff --git a/sys/man/2/thread b/sys/man/2/thread
index b06e31b964..6d42ac3b51 100644
--- a/sys/man/2/thread
+++ b/sys/man/2/thread
@@ -41,6 +41,8 @@ threadid,
threadpid,
threadsetgrp,
threadsetname,
+threadspawn,
+threadspawnl,
threadwaitchan,
yield \- thread and proc management
.SH SYNOPSIS
@@ -128,6 +130,8 @@ int chanprint(Channel *c, char *fmt, ...)
int chanclose(Channel *c);
int chanclosing(Channel *c);
.XX
+int threadspawnl(int fd[3], char *file, ...)
+int threadspawn(int fd[3], char *file, char *args[])
void procexecl(Channel *cpid, char *file, ...)
void procexec(Channel *cpid, char *file, char *args[])
Channel* threadwaitchan(void)
@@ -237,6 +241,7 @@ Calls that do this are
.IR procexec ,
.IR procexecl ,
.IR threadexits ,
+.IR threadspawn ,
.IR alt ,
.IR send ,
and
@@ -362,6 +367,17 @@ must exist;
.I procexec(l)
mount pipes there.
.PP
+.I Threadspawnl
+and
+.I threadspawn
+are like
+.I threadexecl
+and
+.I threadexec
+but do not replace the current thread.
+They return the pid of the invoked program on success, or
+\-1 on error.
+.PP
.I Threadwaitchan
returns a channel of pointers to
.B Waitmsg
diff --git a/sys/man/2/venti-conn b/sys/man/2/venti-conn
index 17778660fc..8b4d015d5f 100644
--- a/sys/man/2/venti-conn
+++ b/sys/man/2/venti-conn
@@ -28,9 +28,15 @@ typedef struct VtConn {
VtConn* vtconn(int infd, int outfd)
.PP
.B
+int vtreconn(VtConn *z, int infd, int outfd)
+.PP
+.B
VtConn* vtdial(char *addr)
.PP
.B
+int vtredial(VtConn *z, char *addr)
+.PP
+.B
int vtversion(VtConn *z)
.PP
.B
diff --git a/sys/man/3/arch b/sys/man/3/arch
index 123766f9d9..6a8541ac53 100644
--- a/sys/man/3/arch
+++ b/sys/man/3/arch
@@ -7,6 +7,7 @@ arch \- architecture-specific information and control
.sp 0.3v
.B /dev/archctl
.B /dev/cputype
+.B /dev/cputemp
.B /dev/ioalloc
.B /dev/iob
.B /dev/iol
@@ -20,6 +21,11 @@ Reads from
.I cputype
recover the processor type and clock rate in MHz.
Reads from
+.I cputemp
+recover one line containing per processor containing
+two fields: the processor temperature and precision
+in degrees Celsius.
+Reads from
.I archctl
yield at least data of this form:
.IP
@@ -108,9 +114,9 @@ last address, name of device.
Reads from
.I irqalloc
return the enabled interrupts, one line per
-interrupt. Each line contains three fields separated by white space:
-the trap number, the IRQ it is assigned to, and the name of
-the device using it.
+interrupt. Each line contains four fields separated by white space:
+the trap number, the IRQ it is assigned to, the type of interrupt,
+and the name of the device using it.
.PP
Reads and writes to
.IR iob ,
diff --git a/sys/man/3/gpio b/sys/man/3/gpio
new file mode 100644
index 0000000000..ad41986bee
--- /dev/null
+++ b/sys/man/3/gpio
@@ -0,0 +1,99 @@
+.TH GPIO 3
+.SH NAME
+gpio \- access to Raspberry Pi GPIO pins
+.SH SYNOPSIS
+.B bind -a #G /dev
+.PP
+.B /dev/gpio
+.fi
+.SH DESCRIPTION
+.I Gpio
+serves a single file that provides access to the GPIO pins on the
+Raspberry Pi.
+Reads from the file receive a 16-character hexadecimal string
+representing a
+.B vlong
+giving the values of up to 64 GPIO lines.
+(The processor on both the first and second generation Pis provides
+54 actual GPIO lines.)
+The proper method for sampling GPIO 27 is as follows:
+.IP
+.B read(gfd, buf, 16);
+.br
+.B buf[16] = 0;
+.br
+.B gvals = strtoull(buf, nil, 16);
+.br
+.B "pin27 = gvals & (1 << 27);"
+.PP
+Writes to
+.B gpio
+control the characteristics and output values of GPIO lines.
+The exact operation is specified by one of the following commands:
+.TP
+.BI function " pin f"
+Set the function of GPIO
+.I pin
+to
+.I f.
+The valid values for
+.I f
+are:
+.BR in ,
+.BR out ,
+.BR alt0 ,
+.BR alt1 ,
+.BR alt2 ,
+.BR alt3 ,
+.BR alt4 ,
+.BR atl5 ,
+and
+.BR pulse .
+The functions
+.B in
+and
+.B out
+set the specified GPIO line to be a general purpose input
+and output, respectively.
+The various
+.BI alt n
+functions are as specified in the Broadcom documentation and
+differ on a per-pin basis.
+The
+.B pulse
+function is somewhat specialized.
+It causes the pin to be set to an output for
+2μS and then to be set to a input.
+With the value of the line set to 0 and a pullup resistor on the
+line, this operation provides a short low pulse suitable for bit-banging
+a 1-wire interface.
+.TP
+.BI pullup " pin"
+Enables the internal pullup resistor for the specified GPIO pin.
+.TP
+.BI pulldown " pin"
+Enables the internal pulldown resistor for the specified GPIO pin.
+.TP
+.BI float " pin"
+Disables both internal pullup and pulldown resistors for the specified
+GPIO pin.
+.TP
+.BI set " pin value"
+For GPIO pins set to the output function, this command sets the output
+value for the pin.
+The
+.I value
+should be either 0 or 1.
+.SH NOTES
+All pin number references are according to the SoC documentation.
+These GPIO signal numbers do
+.I not
+match the pin numbers on the header on the Pi board.
+Reads sample the external signal values.
+As a result, the values read for output pins might not match
+the value written to them if externally they are driven harder
+than the SoC drives them.
+.SH SOURCE
+.B /sys/src/9/bcm/devgpio.c
+.br
+.B /sys/src/9/bcm/gpio.c
diff --git a/sys/man/3/i2c b/sys/man/3/i2c
new file mode 100644
index 0000000000..8f394df140
--- /dev/null
+++ b/sys/man/3/i2c
@@ -0,0 +1,85 @@
+.TH I2C 3
+.SH NAME
+i2c \- basic I2C interface
+.SH SYNOPSIS
+.B bind -a
+.BI #J n
+.B /dev
+.PP
+.BI /dev/i2c. n .ctl
+. br
+.BI /dev/i2c. n .data
+.fi
+.SH DESCRIPTION
+.I I2c
+serves a one-level directory with two files
+that give access to the target device with address
+.I n
+(given in hexadecimal)
+on the system's I2C bus.
+.I N
+is usually determined by the I2C device manufacturer.
+I2C gives address 0 special meaning as the `general call' address.
+See an I2C specification for details.
+.PP
+The control file
+.BI i2c. n .ctl
+accepts commands to set the valid address range and
+subaddressing mode for the corresponding data file.
+The following control messages can be written to it:
+.TP
+.B a10
+Force 10-bit addressing instead of 7-bit addressing.
+Otherwise 10-bit addressing is used only if the device address
+.I n
+is bigger than 255.
+.TP
+.BI size " nbytes"
+.br
+Set the logical size of the target device to
+.IR nbytes .
+(By default when opened, it is 256 bytes, enough for most small I2C devices.)
+IO requests will be kept within this limit.
+This value is also returned by
+.B Sys->stat
+as the length of the data file.
+.TP
+.BI subaddress " \fR[\fP n \fR]\fP"
+.br
+Cause subsequent reads and writes
+on the data file to use I2C subaddressing
+with
+.I n
+byte subaddresses (default: 1 byte).
+.I N
+must be no larger than 4.
+The target device must support subaddressing.
+By default, the device is not subaddressed.
+Setting
+.I n
+to zero switches off subaddressing.
+.PP
+When read,
+the control file displays the current settings.
+.PP
+The data file
+.BI i2c. n .data
+can be read or written to
+exchange data with the slave device with address
+.I n
+(where
+.I n
+is given in hexadecimal).
+Each write request transmits the given data
+to the device.
+Each read request sends a receive
+request to the device and returns the resulting data.
+If the I2C target is subaddressed, the current file offset
+is used as the subaddress;
+otherwise the file offset is ignored, and the device typically starts at 0 for each transfer request.
+Read and write requests are trimmed to the declared
+size of the device.
+.SH SOURCE
+.B /sys/src/9/bcm/devi2c.c
+.br
+.B /sys/src/9/bcm/i2c.c
diff --git a/sys/man/3/ip b/sys/man/3/ip
index 27b69ad551..4471383675 100644
--- a/sys/man/3/ip
+++ b/sys/man/3/ip
@@ -720,6 +720,9 @@ files support the following additional messages:
.TF "\fLkeepalive\fI n\fR"
.PD
.TP
+.B close
+gracefully close down this TCP connection
+.TP
.B hangup
close down this TCP connection
.TP
diff --git a/sys/man/3/ptrace b/sys/man/3/ptrace
new file mode 100644
index 0000000000..45c14e4893
--- /dev/null
+++ b/sys/man/3/ptrace
@@ -0,0 +1,48 @@
+.TH UART 3
+.SH NAME
+ptrace \- process scheduling traces
+.SH SYNOPSIS
+.nf
+.B bind -a #σ /dev
+
+.B /dev/ptrace
+.B /dev/ptracectl
+.fi
+.SH DESCRIPTION
+.PP
+The process trace device is a replacement for the trace facility in
+.IR proc (3)
+to report more information about process events.
+.PP
+The
+.B ptracectl
+admits the following requests:
+.TP
+.BI size " n
+Set the size of the buffer to
+.I n
+entries. Before issuing this request tracing is not enabled.
+.TP
+.BI trace " pid value"
+Set the trace on or off for the process with the given pid.
+.PP
+The
+.B ptrace
+file reports an integral number of events when read. To avoid
+too much interference with scheduling, it does not block readers.
+When no more events are available the read returns an EOF indication,
+but the program is expected to poll the device for further events.
+This behavior mimics what
+.IR proc (3)
+does with the trace interface.
+.SH SOURCE
+.B /sys/src/9/port/devptrace.c
+.br
+.B /sys/src/9k/port/devptrace.c
+.SH "SEE ALSO
+.IR ptrace (1),
+.IR ptrace (2).
+.SH BUGS
+If the buffer size is too small, events will be discarded.
+.PP
+The reader must poll the trace device.
diff --git a/sys/man/3/spi b/sys/man/3/spi
new file mode 100644
index 0000000000..13ba21d867
--- /dev/null
+++ b/sys/man/3/spi
@@ -0,0 +1,66 @@
+.TH SPI 3
+.SH NAME
+spi \- access to the main Raspberry Pi SPI interface
+.SH SYNOPSIS
+.B bind -a #π /dev
+.PP
+.B /dev/spictl
+.br
+.B /dev/spi0
+.br
+.B /dev/spi1
+.SH DESCRIPTION
+The Broadcom SoC on the Raspberry Pi has three SPI interfaces:
+the main SPI interface, designated SPI0, and two auxiliary SPI
+interfaces, designated SPI1 and SPI2.
+On the first generation Pis, only SPI0 was brought out to the
+header on the board.
+For the B+ and Pi2 models, SPI0 and SPI1 are available.
+The driver described in this man page only supports SPI0.
+.PP
+Reads and writes to the files
+.B spi0
+and
+.B spi1
+transfer data over the SPI bus.
+Accesses to
+.B spi0
+cause the transfers to take place with the CE0\_0 line asserted
+low.
+Similarly, transfers to
+.B spi1
+are carried out with CE1\_0 asserted low.
+.PP
+The
+.B spictl
+file is used to set various control parameters.
+It accepts the following commands:
+.TP
+.BI clock " freq"
+Set the frequency of the SPI clock.
+The clock from which the SPI clock is derived runs at 250MHz,
+and the divisor must be a multiple of 2.
+(The Broadcom documentation incorrectly says "power of 2".)
+The driver sets the divisor to the highest multiple of 2 that results
+in a clock rate that is less than or equal to the
+.I freq
+parameter in MHz.
+.TP
+.BI mode " n"
+Treats
+.I n
+as a two-bit number specifying the settings for the clock phase
+and clock polarity.
+The default value of 0 matches the polarity and phase requirements
+of most peripheral devices.
+.TP
+.B lossi
+Enable a bidirectional mode where the MOSI line is used for both
+reads and writes.
+.SH SOURCE
+.B /sys/src/9/bcm/devspi.c
+.br
+.B /sys/src/9/bcm/spi.c
+.SH BUGS
+The various SPI modes are untested and the LoSSI support is
+unimplemented.
diff --git a/sys/man/3/tls b/sys/man/3/tls
index b266d3551a..eb130532e4 100644
--- a/sys/man/3/tls
+++ b/sys/man/3/tls
@@ -17,7 +17,8 @@ tls \- TLS1 and SSL3 record layer
.fi
.SH DESCRIPTION
The TLS device implements the record layer protocols
-of Transport Layer Security version 1.0 and Secure Sockets Layer version 3.0.
+of Transport Layer Security versions 1.[0-2] and
+Secure Sockets Layer version 3.0.
It does not implement the handshake protocols, which are responsible for
mutual authentication and key exchange.
The
@@ -54,9 +55,14 @@ Initially, outgoing messages use version
format records, but incoming messages of either version are accepted.
Valid versions are
.B 0x300
-for SSLv3.0 and
+for SSLv3.0,
.B 0x301
-for TLSv1.0 (which could be known as SSLv3.01.)
+for TLSv1.0,
+.B 0x302
+for TLSv1.1,
+and
+.B 0x303
+for TLSv1.2.
This command must be issued before any other command
and before reading or writing any messages;
it may only be executed once.
@@ -265,9 +271,10 @@ Currently implemented encryption algorithms are
and
.BR 'aes_256_cbc' .
Currently implemented hashing algorithms are
-.B 'md5'
+.BR "md5" ,
+.BR "sha1" ,
and
-.BR 'sha1' .
+.BR "sha2_256" .
.SH "SEE ALSO"
.IR listen (8),
.IR dial (2),
diff --git a/sys/man/4/factotum b/sys/man/4/factotum
index a66f19a4c2..03a11c7d08 100644
--- a/sys/man/4/factotum
+++ b/sys/man/4/factotum
@@ -133,6 +133,10 @@ passwords in the clear.
.IR vnc (1)'s
challenge/response.
.TP
+.B wpapsk
+the WPA-PSK challenge/response protocol used in wireless networks
+(client side only).
+.TP
.B wep
WEP passwords for wireless ethernet cards.
.PD
@@ -322,6 +326,14 @@ attribute set to
or
.BR tls .
.PP
+.B Wpapsk
+requires a key with
+.B proto=wpapsk
+and attributes
+.B essid
+and
+.BR !password .
+.PP
.B Wep
requires a
.BR key1 ,
diff --git a/sys/man/4/gitfs b/sys/man/4/gitfs
new file mode 100644
index 0000000000..7ba097ad0c
--- /dev/null
+++ b/sys/man/4/gitfs
@@ -0,0 +1,112 @@
+.TH GITFS 4
+.SH NAME
+git/fs \- git file server
+
+.SH SYNOPSIS
+
+git/fs
+[
+.B -d
+]
+[
+.B -m
+.I mtpt
+]
+
+.SH DESCRIPTION
+
+.PP
+Git/fs serves a file system interface to a git repository in the
+current directory.
+This file system provides a read-only view into the repository contents.
+By default, it is mounted on
+.B $repo/.git/fs.
+It does not cache mutable data, so any changes to the git repository will immediately be reflected in git/fs.
+
+.PP
+Git/fs serves a few levels of hierarchy.
+The top level contains the following files and directories:
+
+.TP
+.B branch
+Exposes branches. Branches are aliases for commit objects.
+
+.TP
+.B object
+Exposes all objects in the git repository.
+Objects may be commits, trees, or blobs.
+
+.TP
+.B HEAD
+This is an alias for the current commit.
+
+.PP
+Commits are also represented as small hierarchies. They contain
+the following files:
+
+.TP
+.B author
+This is the author of the commit.
+The contents of this file are free-form text, but conventionally
+they take the form
+.B Full Name
+
+.TP
+.B hash
+The commit id of the current branch
+
+.TP
+.B msg
+The full text of the commit message.
+
+.TP
+.B parent
+The list of parent commit ids of the current commit.
+One parent is listed per line.
+
+.TP
+.B tree
+A directory containing the tree associated with the
+commit.
+The timestamp of the files contained within this
+hierarchy are the same as the date of the commit.
+
+.PP
+Trees are presented as directory listings, and blobs
+as files.
+
+.SH FILES
+.TP
+.B .git
+The git repository being expected.
+.TP
+.B .git/HEAD
+A reference to the current HEAD.
+Used to populate
+.B $repo/.git/fs/HEAD
+.TP
+.git/config
+The per-repository configuation for git tools.
+.TP
+.B $home/lib/git/config
+The global configuration for git tools.
+
+.SH SOURCE
+.TP
+.B /sys/src/cmd/git/fs.c
+
+.SH "SEE ALSO"
+.IR git (1)
+.IR hg (1)
+.IR hgfs (4)
+
+.SH BUGS
+Symlinks are only partially supported.
+Symlinks are treated as regular files when reading.
+Modifying symlinks is unsupported.
+
+.PP
+There is no way to inspect the raw objects. This is
+a feature that would be useful for debugging.
+
+
diff --git a/sys/man/4/jtagfs b/sys/man/4/jtagfs
new file mode 100644
index 0000000000..095567596f
--- /dev/null
+++ b/sys/man/4/jtagfs
@@ -0,0 +1,202 @@
+.TH JTAGFS 4
+.SH NAME
+jtagfs \- jtag kernel debugging file system
+.SH SYNOPSIS
+.B jtagfs
+[
+.B -d
+.I debugstr
+]
+[
+.B -b
+.I motherbname
+]
+[
+.B -t
+.I text
+]
+[
+.B -m
+.I mountpoint
+]
+[
+.B -s
+.I srvfile
+]
+.I jtagfile
+.SH DESCRIPTION
+.I Jjagfs
+presents in
+.BI /n/jtagfs/ctl
+a set of process files for debugging
+a kernel running on an arm over a jtag
+.I device
+in a manner similarly to
+.IR rdbfs (4)
+but without any need for the kernel collaborating.
+In debug mode an arm stops and isolates itself from the
+surroundings and can be probed and instructions injected
+at will.
+There are a number of options:
+.TP
+.B -d
+Can be used to set the debug string, see below.
+.TP
+.B -m
+and
+.B -s
+Set the mount point and srv name respectively. By default
+the mount point is
+.BI /n/jtagfs/ctl .
+.TP
+.B -b
+Motherboard kind jtagfs is going to be run against. Valid parameters
+are
+.B sheeva,
+which stands for the Feroceon Guruplug and the sheevaplug and is the default and
+.B gurudisp
+which stands for the Armada Guru Display.
+.TP
+.B -t
+The
+.B text
+file presented is just a copy of
+.I text
+(default
+.BR /arm/s9plug ).
+It can usually be ignored, since
+the debuggers open kernel
+files directly rather than
+using
+.BI /proc/ n /text\fR.
+.PP
+Kernels can be remotely debugged only when they are
+stopped and put in debug mode. This can be done
+through instruction breakpoints, vector catching (on entry
+to interrupts) or on demand using
+.B stop().
+.PP
+An acid library to use with the most common operations
+called jtag is provided to make most common operations
+simpler. In particular
+.B start(),
+.B stop()
+and
+.B waitstop()
+have jtag specific variants
+(for example
+.B sheevastart()
+)
+which disable and reenable the watchdog.
+Other than this functions and the symbol translations, this
+program can be used to debug kernels from other operating systems.
+.PP
+The function
+.B veccatch(str)
+can be used to set a vectorcatch, which stops the processor right after
+an interrupt. The string describes which interrupts to cacth.
+Each caracter represents a type of interrupt:
+.sp
+.EX
+.ta 4n +6n
+ 'R' Reset
+ 'S' SWI
+ 'P' PAbort
+ 'D' DAbort
+ 'I' Irq
+ 'F' Fiq
+.fi
+.EE
+.PP
+The function
+.B debug(str)
+can be used to set different levels of debug. Each character on
+the string represent a different software layer:
+.PP
+.EX
+.ta 6n +2n +4n +4n +4n +4n +4n
+.sp
+DFile = 'f', /* Reads, writes, flushes*/
+DPath = 'p', /* path for state transitions for tap debugging */
+DState = 's', /* state calculation and changes on tap interface */
+Dinst = 'i', /* mpsse instruction assembling debug */
+Dassln = 'a', /* print instructions before assembling */
+Dmach = 'm', /* print mpsse machine code and op results */
+Djtag = 'j', /* print jtag level operations */
+Dice = 'e', /* print icert level operations */
+Dchain = 'h', /* print icert chains */
+Dmmu = 'u', /* print MMU ops */
+Dctxt = 'c', /* dump context in and out */
+Darm = 'w', /* standard insts and so */
+Dmem = 'y', /* memory ops */
+Dfs = 'k', /* filesystem ops */
+DAll = 'A'
+.fi
+.EE
+.SH EXAMPLES
+.EX
+jtagfs /dev/eiaU*/jtag
+bind /n/jtagfs /proc/1
+term% acid -l jtag -k 1 /arm/s9plug
+/arm/s9plug:ARM plan 9 boot image
+/sys/lib/acid/port
+/sys/lib/acid/arm
+acid: reset()
+acid: sheevastop()
+ID: 0x20a023d3
+Must be 1: 1
+Manufacturer id: 0x1e9
+Part no: 0xa02
+Version: 0x2
+1: SVC/SWI Exception 0xc02e1094 no instruction
+acid: dump(0xc02e1094, 4, "Xi")
+0xc02e1094: 0x1204e0ff CMP.S $#0x100,R0
+0xc02e109c: 0xe0266003 B.NE etext+0x5fa536bc
+0xc02e10a4: 0xe20c2040 AND $#0x8,R12,R0
+0xc02e10ac: 0xe20e1080 AND $#0x1,R14,R3
+0xc02e10b4: 0xe1811002 ORR (R0<<4),R3,R3
+acid: regs()
+R0 0x5e20a2dc R1 0xf5518723 R2 0x001d1d00
+R3 0x369244e0 R4 0x2b9244fd R5 0xbbc54739
+R6 0x5e20a2dc R7 0x00000eb0 R8 0xdfd7ceb0
+R9 0x00000006 R10 0xc08c1f20 R11 0xc08c1f04
+R12 0x1d00001d R13 0xc08c1ea0 R14 0x00000000
+R15 0xc031fa8c
+acid: sheevastart()
+.EE
+.SH SOURCE
+.B /sys/src/cmd/jtag
+.br
+.B /sys/lib/acid/jtag
+.SH "SEE ALSO"
+.IR acid (1),
+.IR db (1).
+.br
+``ARM9E-S Technical Reference Manual''.
+.br
+``ARM7TDMI-S Core Technical Reference Manual".
+.br
+``Application note 205 "Writing JTAG Sequences for Arm 9 Processors".
+.br
+``Design and Implementation of an On-Chip Debug for Embedded Target Systems",
+Dominic Rath.
+.br
+``IEEE Standard 1149-1-2001 Test Access Port and Boundary Scan Architecture",
+JTag IEEE standard.
+.br
+``AN2232C-01 Command Processor for MPSSE and MCU Host Bus Emulation Modes",
+Future Technology Devices International Ltd.
+.SH BUGS
+After a while of the machine being on, the jtag will stop
+working; maybe an autentication register needs to be set.
+If this is the case
+.B cpuid()
+will return error.
+Reset always works.
+Reading and writing from memory is slow.
+The filesystems needs a lot of cleaning.
+Only the feroceon cpu and sheeva/guruplug boards are
+supported, though more can be added.
+Error report is sparse.
+Jtagfs should be rewritten using the 9p library and it would shrink
+to half.
diff --git a/sys/man/4/kfs b/sys/man/4/kfs
index 15a9514d1f..3ceb976086 100644
--- a/sys/man/4/kfs
+++ b/sys/man/4/kfs
@@ -70,7 +70,7 @@ Use
.I file
as the disk.
The default is
-.BR /dev/sdC0/fs .
+.BR /dev/sdE0/fs .
.TP
.BI "n " name
Use
@@ -113,9 +113,9 @@ and mount it on
.EE
.PP
.SH FILES
-.TF /dev/sdC0/fs
+.TF /dev/sdE0/fs
.TP
-.B /dev/sdC0/fs
+.B /dev/sdE0/fs
Default file holding blocks.
.SH SOURCE
.B /sys/src/cmd/disk/kfs
diff --git a/sys/man/5/read b/sys/man/5/read
index 4438ee984e..e454d74f72 100644
--- a/sys/man/5/read
+++ b/sys/man/5/read
@@ -48,7 +48,14 @@ reply message.
The
.I count
field in the reply indicates the number of bytes returned.
-This may be less than the requested amount.
+This may be less than the requested amount,
+if the requested amount is not all currently available.
+However, servers should try to avoid returning less data than
+requested if possible.
+In particular, merely crossing a storage block boundary is not
+sufficient reason to return a short count;
+.IR exec (2)
+in particular relies upon this property.
If the
.I offset
field is greater than or equal to the number of bytes in the file,
diff --git a/sys/man/8/fshalt b/sys/man/8/fshalt
index bd025ac207..570c5d9f8f 100644
--- a/sys/man/8/fshalt
+++ b/sys/man/8/fshalt
@@ -6,6 +6,8 @@ fshalt, reboot \- halt any local file systems and optionally reboot the system
[
.B -r
] [
+.B -R
+] [
.I new-kernel
]
.br
@@ -26,7 +28,9 @@ servers.
If given
.BR -r ,
.I fshalt
-will then reboot the machine.
+will then reboot the machine by loading a new kernel. Specifying
+.BR -R
+will bypass loading a new kernel and restart the machine.
If
.I new-kernel
is given, it will be loaded as the new kernel rather than
diff --git a/sys/man/8/iscsisrv b/sys/man/8/iscsisrv
new file mode 100644
index 0000000000..722baabe65
--- /dev/null
+++ b/sys/man/8/iscsisrv
@@ -0,0 +1,71 @@
+.TH ISCSISRV 8
+.SH NAME
+iscsisrv \- iSCSI target: provide remote access via iSCSI
+.SH SYNOPSIS
+.B ip/iscsisrv
+[
+.B -dr
+] [
+.B -l
+.I len
+] [
+.B -a
+.I dialstring
+]
+.I target
+.SH DESCRIPTION
+.I Iscsisrv
+presents the file
+.I target
+by speaking a restricted form of the iSCSI protocol.
+It defaults to communicating on file descriptors 0 and 1,
+assumed to be a network connection as passed from
+.IR listen (8)
+via
+.BR /bin/service/tcp3260 .
+If the
+.B -a
+option is supplied, it will instead listen for connections on
+the specified dialstring.
+.P
+Changes are written through to
+.I target
+unless the
+.B -r
+option is given.
+If
+.B -l
+is supplied,
+.I iscsisrv
+will claim that
+.I target
+is
+.I len
+bytes long.
+.SH EXAMPLES
+Export a target,
+.LR /dev/sdC0/iscsi-test :
+.IP
+.EX
+disk/iscsisrv /dev/sdC0/iscsi-test
+.EE
+.PP
+Export a dummy target over TCP:
+.IP
+.EX
+disk/iscsisrv -rl 10240000 -a tcp!*!3260 /dev/zero
+.EE
+.SH SOURCE
+.B /sys/src/cmd/ip/iscsisrv.c
+.SH SEE ALSO
+.IR iscsifs (4)
+.SH BUGS
+Does not authenticate incoming connections.
+.PP
+Implements only one connection per session.
+.PP
+Implements only lun 0.
+.PP
+Implements immediate execution, whether requested or not.
+.PP
+Trusts TCP, so does not implement framing (FIM) nor CRCs (digests).
diff --git a/sys/man/8/mk9660 b/sys/man/8/mk9660
index d41582dde0..d9290d9798 100644
--- a/sys/man/8/mk9660
+++ b/sys/man/8/mk9660
@@ -33,6 +33,10 @@ dump9660, mk9660 \- create an ISO-9660 CD image
.B -v
.I volume
]
+[
+.B -n
+.I now
+]
.I image
.PP
.B disk/dump9660
diff --git a/sys/man/8/nboot b/sys/man/8/nboot
new file mode 100644
index 0000000000..8103acc402
--- /dev/null
+++ b/sys/man/8/nboot
@@ -0,0 +1,188 @@
+.TH 9BOOT 8
+.SH NAME
+9bootfat, 9bootiso, 9boothyb, 9bootpxe, bootia32.efi, bootx64.efi, efiboot.fat \- PC bootloader for FAT, ISO and PXE network booting
+.SH SYNOPSIS
+Started by PC BIOS/EFI or chainloaded by partition bootsector
+.SH DESCRIPTION
+9boot is the bootloader used on PCs to start the Plan 9 kernel.
+Its task is to read and parse the
+.IR plan9.ini (8)
+configuration file, gather some basic system information like
+the amount of usable system memory, do some basic system
+initialization and load the kernel from the boot media into memory.
+
+After reading the configuration, the loader will automatically
+attempt to boot the kernel that was specified by the
+.B bootfile=
+parameter. If there is no such parameter, a key
+gets pressed on the keyboard or the kernel file was not
+found then the loader enters the interactive
+boot console.
+
+The syntax of the boot console is the same as in the
+.IR plan9.ini (8)
+file with
+.IB key = value
+pairs setting boot parameters. In addition a few command
+words are recognized that are intended for interactive use:
+.TP
+.BI clear [prefix]
+can be used to remove parameters from the configuration.
+If a
+.IR prefix
+is specified, the first parameter that matches the prefix
+is removed. If the
+.IR prefix
+argument is omitted, the whole configuration will be reset.
+.TP
+.B show
+displays the current configuration in memory.
+.TP
+.B wait
+will return to the console prompt after processing the
+configuration file preventing automatic boot.
+.TP
+.B boot
+will end the console and attempt booting the kernel.
+.SS
+There are many ways to boot a PC so
+.IR 9boot
+was split into a number of distinct programs, one for each boot
+method.
+.SH FAT BOOTING
+When booting Plan 9 from a harddisk or USB pen drive, a
+FAT16/32 partition
+.IR (9fat)
+is used to store the kernel and
+.IR plan9.ini (8)
+configuration. Due to size limitations, instead of loading
+the kernel directly, the bootsector
+.IR (pbs)
+of the FAT partition loads
+a 2nd stage bootloader
+.IR (9bootfat)
+from the root directory of the filesystem.
+.SH CD-ROM BOOTING
+Booting from CD-ROM requires only the
+.IR 9bootiso
+bootloader to be included in the ISO-9660 image under
+.BR /386/9bootiso ,
+set as a non-emulation bootblock (see
+.B -B
+in
+.IR mk9660 (8)).
+Boot parameters are read from
+.BR /cfg/plan9.ini .
+.SH ISO HYBRID BOOTING
+With the
+.I 9boothyb
+loader, an ISO image can be made into a bootable disk by
+creating a MBR and appending a bootable DOS partition containing
+.I 9boothyb
+renamed to
+.IR 9bootfat .
+The loader will read the ISO filesystem as if it were stored
+on a CD-ROM drive.
+.SH NETWORK BOOTING
+With a PXE capable BIOS and network card one can download
+.IR 9bootpxe
+and boot the kernel from a TFTP server (see
+.IR dhcpd (8)
+and
+.IR ndb (6)
+for details). Once started,
+.IR 9bootpxe
+will read the file
+.B /cfg/pxe/$ether
+or, if this file is not present,
+.B /cfg/pxe/default
+from the tftp server, where
+.B $ether
+is the MAC address of the client's network card
+in lower case hex, and uses this as its
+.IR plan9.ini (8)
+file.
+.SH EFI BOOTING
+EFI firmware looks for the files
+.I bootia32.efi
+(for 386)
+or
+.I bootx64.efi
+(for amd64)
+in the boot media and executes them.
+For local disk media, these files are located in the directory
+.B /efi/boot
+of the
+.B FAT
+formatted boot partition.
+For
+.B CD-ROM
+media, the boot partition is provided
+as a embedded
+.B FAT
+filesystem image
+.I efiboot.fat
+(see
+.B -E
+in
+.IR mk9660 (8)).
+In the network boot case, the
+.I bootia32.efi
+or
+.I bootx64.efi
+files are used as the
+.B BSP
+program instead of
+.IR 9bootpxe .
+Once started, the boot media
+.RB ( PXE ,
+.BR ISO ,
+.BR FAT )
+is discovered and
+.IR plan9.ini (8)
+configuration is read from it in the same way as
+with the BIOS-based
+.I 9boot*
+loaders. If the EFI loader was executed from a
+.B FAT
+partition, it will first search for
+.IR plan9.ini (8)
+in the same
+.B FAT
+filesystem that it was loaded from, and if not found, will search for
+.IR plan9.ini (8)
+in any other partition in an implementation-defined order. The kernel
+is always loaded from the same partition that
+.IR plan9.ini (8)
+is read from.
+.SH FILES
+.B /386/pbs
+.br
+.B /386/9bootfat
+.br
+.B /386/9bootiso
+.br
+.B /386/9boothyb
+.br
+.B /386/9bootpxe
+.br
+.B /386/bootia32.efi
+.br
+.B /386/bootx64.efi
+.br
+.B /386/efiboot.fat
+.SH SOURCE
+.BR /sys/src/boot/pc
+.br
+.BR /sys/src/boot/efi
+.br
+.SH "SEE ALSO"
+.IR plan9.ini (8),
+.IR mk9660 (8),
+.IR dhcpd (8),
+.IR ndb (6)
+.br
+.I https://uefi.org
+.SH HISTORY
+9boot first appeared in 9front (April, 2011).
+EFI support first appeared in 9front (Oct, 2014).
diff --git a/sys/man/8/realemu b/sys/man/8/realemu
new file mode 100644
index 0000000000..1b0fd3df9f
--- /dev/null
+++ b/sys/man/8/realemu
@@ -0,0 +1,108 @@
+.TH REALEMU 8
+.SH NAME
+realemu \- software emulation of /dev/realmode
+.SH SYNOPSIS
+.B aux/realemu
+[
+.B -Dpt
+] [
+.B -s
+.I srvname
+] [
+.B -m
+.I mountpoint
+]
+.SH DESCRIPTION
+.PP
+Originally, kernel provided
+.B /dev/realmode
+files with the
+.IR arch (3)
+device to access and call the
+.SM BIOS.
+.PP
+Interrupts had to be disabled and the processor was switched in the
+legacy 16-bit
+.SM realmode
+with memory protection disabled to execute
+.SM BIOS
+code.
+.PP
+This is problematic in case the
+.SM BIOS
+reprograms hardware currently
+used by the operating system or when it reenables interrupts or just
+crashes. This will freeze or reboot the machine with no way to
+recover or diagnose the problem.
+.PP
+To avoid this,
+.I realemu
+is used to emulate the execution of the
+.SM BIOS
+routines by interpreting the machine instructions and intercepting
+dangerous actions that would compromise the systems stability.
+.PP
+Running
+.I realemu
+with no arguments, it mounts itself before
+.B /dev
+and
+replaces the original
+.B /dev/realmode
+file in the current namespace.
+.PP
+Then programs like
+.IR vga (8)
+can use it to make their
+.SM BIOS
+calls.
+.PP
+The
+.B D
+flag will enable debug messages for 9P. The
+.B p
+and
+.B t
+flags
+control tracing of i/o port access and cpu instructions to
+stderr (fd 2).
+.PP
+When a
+.I srvname
+is given with the
+.B s
+argument, the default
+.I mountpoint
+is ignored and a
+.SM 9P
+channel is created in
+.B /srv
+that can be used to mount
+the filesystem from another namespace. If a
+.I mountpoint
+is given before
+the
+.I srvname
+argument then it is ignored, otherwise it will be used.
+.SH EXAMPLES
+The
+.I realemu
+process is only needed when accessing
+.B /dev/realmode.
+To invoke a subshell so that
+.I realemu
+exits normally after
+.B aux/vga
+completes:
+.IP
+.EX
+% @{rfork n; aux/realemu; aux/vga -m vesa -l $vgasize}
+.EE
+.SH SOURCE
+.B /sys/src/cmd/aux/realemu
+.SH "SEE ALSO"
+.IR vga (8),
+.IR arch (3)
+.SH HISTORY
+.I Realemu
+first appeared in 9front (April, 2011).
diff --git a/sys/man/8/smtp b/sys/man/8/smtp
index 76e41f3e99..7a46a85bda 100644
--- a/sys/man/8/smtp
+++ b/sys/man/8/smtp
@@ -70,7 +70,7 @@ This option implies
.BR -s .
.TP
.B -A
-autistic server: don't wait for an SMTP greeting banner
+avoidant server: don't wait for an SMTP greeting banner
but immediately send a
.L NOOP
command to provoke the server into responding.
diff --git a/sys/man/8/websocket b/sys/man/8/websocket
new file mode 100644
index 0000000000..2358cdb1f8
--- /dev/null
+++ b/sys/man/8/websocket
@@ -0,0 +1,51 @@
+.TH WEBSOCKET 8
+.SH NAME
+websocket \- tunnel 9P over WebSocket
+.SH SYNOPSIS
+.B websocket
+.I "magic parameters" ...
+.PP
+.B
+new WebSocket("http://server.example/magic/websocket", "9p");
+.SH DESCRIPTION
+.I Websocket
+is an
+.IR httpd (8)
+.I magic
+program that tunnels a 9P connection over a WebSocket, allowing
+JavaScript programs in a web browser to interact with Plan 9 services.
+.PP
+Currently, it always mounts the connection over
+.B /dev/
+and launches
+.IR acme ,
+which expects the
+.B /dev/draw
+provided by
+.IR 9webdraw .
+.SH SOURCE
+.B /sys/src/cmd/ip/httpd/websocket.c
+.PP
+.B https://bitbucket.org/dhoskin/weebsocket/
+.SH "SEE ALSO"
+.IR intro (5),
+.IR httpd (8)
+.PP
+.B https://bitbucket.org/dhoskin/9webdraw
+.SH BUGS
+The command
+.B /bin/acme
+is hardcoded.
+.PP
+No authentication is performed, and raw 9P is used rather than
+.IR cpu (1)'s
+protocol.
+.PP
+Rather than hardcoding 9P, plugins for different protocols could
+be chosen using the WebSocket subprotocol header.
+.PP
+Rather than running under
+.IR httpd (8),
+.I websocket
+could present a standard network connection directory in
+.BR /net/websocket .
diff --git a/sys/man/8/wpa b/sys/man/8/wpa
new file mode 100644
index 0000000000..d6f8372d29
--- /dev/null
+++ b/sys/man/8/wpa
@@ -0,0 +1,72 @@
+.TH WPA 8
+.SH NAME
+wpa \- Wi-Fi Protected Access setup
+.SH SYNOPSIS
+.B aux/wpa
+[
+.B -dp12
+] [
+.B -s
+.I essid
+]
+.I dev
+.SH DESCRIPTION
+.I Wpa
+handles the authentication and key exchange with WPA
+protected wireless networks.
+.PP
+The
+.I dev
+parameter specifies the network interface that needs
+to be setup with WPA.
+The
+.I essid
+can be set with the
+.I -s
+option. Otherwise, the previously configured essid
+on the interface will be used.
+The
+.B -p
+option will prompt and install the preshared key or
+pap/chap credentials into factotum, otherwise the key has to be
+already present in factotum or an interactive key prompter like
+auth/fgui (see
+.IR factotum (4))
+needs to provide it.
+.PP
+The authentication protocol is initiated by the
+wireless access point so
+.I wpa
+will background itself after the keyprompt and establish
+the encryption automatically as needed.
+The optional
+.B -1
+or
+.B -2
+arguments can be used to select between WPA1/TKIP
+(default) or WPA2/CCMP encryption with WPA PSK.
+.PP
+The
+.B -d
+option enables debugging and causes
+.I wpa
+to stay in foreground writing protocol messages to
+standard error.
+.SH EXAMPLES
+Setup wireless encryption:
+.EX
+% bind -a '#l1' /net
+% aux/wpa -s 9HAL -p /net/ether1
+!Adding key: proto=wpapsk essid=9HAL
+password: *****
+!
+% ip/ipconfig ether /net/ether1
+.EE
+.SH SOURCE
+.B /sys/src/cmd/aux/wpa.c
+.SH SEE ALSO
+.IR factotum (4),
+.IR ipconfig (8)
+.SH HISTORY
+.I Wpa
+first appeared in 9front (March, 2013).
diff --git a/sys/man/9/0intro b/sys/man/9/0intro
new file mode 100644
index 0000000000..66981102bf
--- /dev/null
+++ b/sys/man/9/0intro
@@ -0,0 +1,53 @@
+.TH INTRO 9
+.SH NAME
+intro \- introduction to kernel functions
+.SH DESCRIPTION
+This section of the manual
+describes the functions publicly available to the authors of
+kernel code, particularly device drivers (real and virtual).
+This section will eventually be much expanded, but this makes a start.
+.PP
+The
+.SM SYNOPSIS
+subsections do not show the header files needed for
+the standard kernel declarations.
+The primary combinations summarised below:
+.IP
+.RS
+.ta \w'\fL#include 'u
+.nf
+.B
+#include "u.h"
+.B
+#include "../port/lib.h"
+.B
+#include "mem.h"
+.B
+#include "dat.h"
+.B
+#include "fns.h"
+.B
+#include "../port/error.h"
+.PP
+.I "furthermore, added in IP code:"
+.br
+.B
+#include "../ip/ip.h"
+.PP
+.I "furthermore, in hardware device drivers:"
+.br
+.B
+#include "io.h"
+.br
+.B
+#include "ureg.h"
+.PP
+.I "furthermore, in network interfaces or ether drivers:"
+.B
+#include "../port/netif.h"
+.fi
+.RE
+.PP
+There might also be specific include files needed by
+drivers on particular platforms or to use specialised kernel interfaces.
+The easiest method is to check the source of likely-looking drivers nearby.
diff --git a/sys/man/9/NOTICE b/sys/man/9/NOTICE
new file mode 100644
index 0000000000..d76c8e307f
--- /dev/null
+++ b/sys/man/9/NOTICE
@@ -0,0 +1,2 @@
+Copyright © 1996-2005 Lucent Technologies Inc.
+Portions Copyright © 1999-2005 Vita Nuova Limited
diff --git a/sys/man/9/allocb b/sys/man/9/allocb
new file mode 100644
index 0000000000..ac1f148570
--- /dev/null
+++ b/sys/man/9/allocb
@@ -0,0 +1,312 @@
+.TH ALLOCB 9
+.SH NAME
+allocb, iallocb, freeb, freeblist, BLEN, blocklen, concatblock, copyblock, trimblock, packblock, padblock, pullblock, pullupblock, adjustblock, checkb \- data block management
+.SH SYNOPSIS
+.ta \w'\fLBlock* 'u
+.B
+Block* allocb(int size)
+.PP
+.B
+Block* iallocb(int size)
+.PP
+.B
+void freeb(Block *b)
+.PP
+.B
+void freeblist(Block *b)
+.PP
+.B
+long BLEN(Block *b)
+.PP
+.B
+int blocklen(Block *b)
+.PP
+.B
+Block* concatblock(Block *b)
+.PP
+.B
+Block* copyblock(Block *b, int n)
+.PP
+.B
+Block* trimblock(Block *b, int offset, int n)
+.PP
+.B
+Block* packblock(Block *b)
+.PP
+.B
+Block* padblock(Block *b, int n)
+.PP
+.B
+int pullblock(Block **bph, int n)
+.PP
+.B
+Block* pullupblock(Block *b, int n)
+.PP
+.B
+Block* adjustblock(Block *b, int n)
+.PP
+.B
+void checkb(Block *b, char *msg)
+.SH DESCRIPTION
+A
+.B Block
+provides a receptacle for data:
+.IP
+.EX
+.DT
+typedef
+struct Block
+{
+ Block* next;
+ Block* list;
+ uchar* rp; /* first unconsumed byte */
+ uchar* wp; /* first empty byte */
+ uchar* lim; /* 1 past the end of the buffer */
+ uchar* base; /* start of the buffer */
+ void (*free)(Block*);
+ ulong flag;
+} Block;
+.EE
+.PP
+Each
+.B Block
+has an associated buffer, located at
+.BR base ,
+and accessed via
+.B wp
+when filling the buffer, or
+.B rp
+when fetching data from it.
+Each pointer should be incremented to reflect the amount of data written or read.
+A
+.B Block
+is empty when
+.B rp
+reaches
+.BR wp .
+The pointer
+.B lim
+bounds the allocated space.
+Some operations described below accept lists of
+.BR Block s,
+which are
+chained via their
+.B next
+pointers, with a null pointer ending the list.
+.B Blocks
+are usually intended for a
+.B Queue
+(see
+.IR qio (9)),
+but can be used independently.
+.PP
+A
+.B Block
+and its buffer are normally allocated by one call to
+.IR malloc (9)
+and aligned on an 8 byte (\fLBY2V\fP) boundary.
+Some devices with particular allocation constraints
+(eg, requiring certain addresses for DMA) might allocate their own
+.B Block
+and buffer;
+.B free
+must then point to a function that can deallocate the specially allocated
+.BR Block .
+.PP
+Many
+.B Block
+operations cannot be used in interrupt handlers
+because they either
+.IR sleep (9)
+or raise an
+.IR error (9).
+Of operations that allocate blocks, only
+.IR iallocb
+is usable.
+.PP
+.I Allocb
+allocates a
+.B Block
+of at least
+.IR size
+bytes.
+The block
+is initially empty:
+.B rp
+and
+.B wp
+point to the start of the data.
+If it cannot allocate memory,
+.I allocb
+raises an
+.IR error (9);
+it cannot be used by an interrupt handler.
+.PP
+.IR Iallocb
+is similar to
+.IR allocb
+but is intended for use by interrupt handlers,
+and returns a null pointer if no memory is available.
+It also limits its allocation to a quota allocated at system initialisation to interrupt-time buffering.
+.PP
+.I Freeb
+frees a single
+.B Block
+(and its buffer).
+.PP
+.I Freeblist
+frees the whole
+list of blocks headed by
+.IR b .
+.PP
+.I BLEN
+returns the number of unread bytes in a single block
+.IR b ;
+it is implemented as a macro.
+.PP
+.I Blocklen
+returns the number of bytes of unread data in the whole list of blocks headed by
+.IR b .
+.PP
+.I Concatblock
+returns
+.I b
+if it is not a list, and otherwise
+returns a single
+.B Block
+containing all the data in the list of blocks
+.IR b ,
+which it frees.
+.PP
+.I Copyblock
+by contrast returns a single
+.B Block
+containing a copy of the first
+.I n
+bytes of data in the block list
+.IR b ,
+padding with zeroes if the list contained less than
+.I n
+bytes.
+The list
+.I b
+is unchanged.
+.PP
+.I Padblock
+can pad a single
+.B Block
+at either end, to reserve space for protocol headers or trailers.
+If
+.IR n ≥ 0 ,
+it inserts
+.I n
+bytes at the start of the block,
+setting the read pointer
+.B rp
+to point to the new space.
+If
+.IR n < 0 ,
+it adds
+.I n
+bytes at the end of the block,
+leaving the write pointer
+.B wp
+pointing at the new space.
+In both cases, it allocates a new
+.B Block
+if necessary, freeing the old, and
+it always returns a pointer to the resulting
+.BR Block .
+.PP
+.I Trimblock
+trims the list
+.I b
+to contain no more than
+.I n
+bytes starting at
+.I offset
+bytes into the data of the original list.
+It returns a new list, freeing unneeded parts of the old.
+If no data remains, it returns a null pointer.
+.PP
+.I Packblock
+examines each
+.B Block
+in the list
+.IR b ,
+reallocating any block in the list that has four times more available space than actual data.
+It returns a pointer to the revised list.
+.PP
+.I Pullblock
+discards up to
+.I n
+bytes from the start of the list headed by
+.BI * bph \f1.\f0
+Unneeded blocks are freed.
+.I Pullblock
+sets
+.BI * bph
+to point to the new list head
+and returns the number of bytes discarded (which might be less than
+.IR n ).
+It is used by transport protocols to discard ack'd data at
+the head of a retransmission queue.
+.PP
+.I Pullupblock
+rearranges the data in the list of blocks
+.I b
+to ensure that there are at least
+.I n
+bytes of contiguous data in the first block,
+and returns a pointer to the new list head.
+It frees any blocks that it empties.
+It returns a null pointer if there is not enough data in the list.
+.PP
+.I Adjustblock
+ensures that the block
+.I b
+has at least
+.I n
+bytes of data, reallocating or padding with zero if necessary.
+It returns a pointer to the new
+.BR Block .
+(If
+.I n
+is negative, it frees the block and returns a null pointer.)
+.PP
+.I Checkb
+does some consistency checking of
+the state of
+.IR b ;
+a
+.IR panic (9)
+results if things look grim.
+It is intended for internal use by the queue I/O routines (see
+.IR qio (9))
+but could be used elsewhere.
+.PP
+The only functions that can be called at interrupt level are
+.IR iallocb ,
+.IR freeb ,
+.IR freeblist ,
+.IR BLEN ,
+.IR blocklen ,
+.IR trimblock
+and
+.IR pullupblock .
+The others allocate memory and can potentially block.
+.SH SOURCE
+.B /sys/src/9/port/allocb.c
+.SH DIAGNOSTICS
+Many functions directly or indirectly can raise an
+.IR error (9),
+and callers must therefore provide for proper error recovery
+as described therein to prevent memory leaks and other bugs.
+Except for
+.IR iallocb ,
+any functions that allocate new blocks or lists
+are unsuitable for use by interrupt handlers.
+.IR Iallocb
+returns a null pointer when it runs out of memory.
+.SH SEE ALSO
+.IR qio (9)
diff --git a/sys/man/9/conf b/sys/man/9/conf
new file mode 100644
index 0000000000..dbc13d88af
--- /dev/null
+++ b/sys/man/9/conf
@@ -0,0 +1,340 @@
+.TH CONF 9
+.SH NAME
+conf \- native and hosted kernel configuration file
+.SH DESCRIPTION
+Plan 9 kernels are built for a given target
+.I platform
+using platform-specific code in directory
+.BI /sys/src/9/ platform
+and portable code in
+.BR /sys/src/9/port ,
+.B /sys/src/9/ip
+and elsewhere.
+Existing
+.I platforms
+include
+.B alphapc
+for the DEC Alpha,
+.B iPAQ
+for the Compaq iPAQ,
+.B pc
+for the Intel x86,
+and
+.B ppc
+for the IBM/Motorola PowerPC.
+Each
+.I platform
+can have several different kernels with different configurations.
+A given configuration is built in the platform's directory using the
+.IR mk (1)
+command:
+.IP
+.EX
+mk 'CONF=\fIconf\fP'
+.EE
+.PP
+where
+.I conf
+is a text file that specifies drivers, protocols and other parameters for that
+particular kernel:
+a parts list.
+The result of a successful
+.I mk
+is
+an executable or bootable file with a name determined by the
+.IR platform 's
+.BR mkfile ,
+typically
+.BI 9 conf.
+.PP
+A kernel configuration file has several sections of the form
+.IP
+.EX
+.I "label"
+.IR " item" " [ " "subitem ..." " ]"
+\& ...
+.EE
+.PP
+Each section begins with a
+.I label
+at the start of a line, which names a configuration
+category, followed by
+a list of each
+.I item
+to select from that category,
+one line per item, with white space (ie, blank or tab) at the start of the line.
+An
+.I item
+line can optionally list one or more
+.I subitems
+that must be included in the kernel to support it.
+A line that starts with a
+.L #
+is a comment.
+Empty lines are ignored.
+.PP
+.I Labels
+are chosen from the following set, listed in the order
+in which they conventionally appear in a configuration file:
+.TF etherxx
+.TP
+.B dev
+Device drivers
+.TP
+.B ip
+IP protocols (native kernels only) taken from
+.B ../ip
+.TP
+.B link
+Hardware-specific parts of device drivers.
+.TP
+.B misc
+Architecture-specific files; specific VGA and SCSI interfaces
+.TP
+.B lib
+Libraries to link with the kernel
+.TP
+.B port
+C code and declarations to include as-is in the generated configuration file
+.TP
+.B boot
+Configuration for
+.IR boot (8)
+.TP
+.B bootdir
+List of files and directories to put in the
+.B boot
+directory of
+.IR root (3).
+.PD
+.PP
+When an
+.I item
+is listed
+under a given
+.I label
+it causes a corresponding component to be included in the kernel.
+The details depend on the
+.IR label ,
+as discussed below.
+Each
+.I subitem
+represents a kernel subcomponent required by the corresponding
+.IR item .
+Both items and subitems can be either portable (platform-independent)
+or platform-specific.
+The source file for a given item or subitem
+is sought in the platform-directory
+(for platform-specific code), and
+in directories
+.BR ../port
+and
+.BR ../ip ,
+under control of the platform's
+.BR mkfile
+and
+.B ../port/portmkfile
+(which is included by
+.BR mkfile ).
+Resulting object files are left in the
+.I platform
+directory.
+.PP
+Outside the
+.B dev
+section,
+each item and subitem
+.I x
+causes the kernel image to include the code compiled from
+.IB x .c ,
+(or
+.IB x .s
+for assembly-language support),
+or
+.IB portdir / x .c ,
+where
+.I portdir
+is one of the portable directories mentioned above.
+In the
+.B dev
+section, an item
+.I x
+corresponds instead to the driver source file
+.BI dev x .c
+in the current (platform-specific)
+directory or a portable driver
+.IB portdir /dev x .c .
+Subitems are handled as in any other section.
+Typically they are auxiliary files that are needed by the associated driver.
+.PP
+For instance, in a native kernel
+the portable driver for the
+.B draw
+device uses platform-specific code from
+.BR screen.c .
+That can be represented as follows:
+.IP
+.EX
+dev
+ draw screen
+.EE
+.PP
+Each item
+.I x
+in the
+.B ip
+section
+corresponds to a protocol implementation compiled from
+.BI ../ip/ x .c .
+Any subitems
+are dealt with in the same way as in the
+.B dev
+section.
+.PP
+The
+.B link
+section provides a way for hardware-specific
+parts of drivers to link at runtime to the hardware-invariant part of a device
+drivers.
+For each item
+.IR x ,
+the kernel will call the function
+.IB x link
+during its initialisation.
+Typically that function makes itself known to the device driver by
+calling a function provided by that driver,
+passing the address of a interface-specific data structure or linkage table.
+For example,
+.B ethersmc
+is an interface-specific component:
+.IP
+.EX
+link
+ \fR...\fP
+ ethersmc
+.EE
+.PP
+and its source file
+.B ethersmc.c
+provides a function
+.B ethersmclink
+that
+calls
+.B addethercard
+in the interface-invariant part of the driver,
+.BR devether.c :
+.IP
+.EX
+void
+ethersmclink(void)
+{
+ addethercard("smc91cXX", reset);
+}
+.EE
+.PP
+The
+.B boot
+section configures
+.IR boot (8),
+the first user program run by the kernel.
+Each line in the section names a possible boot method (see
+.IR boot (8)
+for the current list).
+The first will be the default.
+Also by default,
+.B /boot
+will run
+.B /bin/termrc
+from
+.IR cpurc (8),
+with
+.B bootdisk
+set to
+.BR #S/sdC0/ .
+To change the defaults, the line (or lines) containing a
+.B boot
+label can be given some options:
+.RS
+.TP
+.B "boot cpu"
+.br
+The kernel is a cpu server: run
+.B /bin/cpurc
+not
+.B /bin/termrc
+(see
+.IR cpurc (8)).
+.TP
+.BI "boot cpu boot " disk
+Use
+.I disk
+as the default
+.BR bootdisk .
+.RE
+.PP
+The
+.B lib
+section lists the libraries to include when linking the kernel,
+in an order that satisfies any dependencies amongst them.
+Each item
+.I x
+corresponds to
+.BI /$objtype/lib x .a ,
+a target-specific library
+produced by compiling the C source code in
+.BI /sys/src/lib item,
+where
+.B objtype
+is set in the platform's
+.B mkfile
+to the target system's object type
+(eg,
+.BR 386 ,
+.BR power ,
+etc).
+.PP
+An item in the
+.B bootdir
+section
+has one of the forms:
+.IP
+.EX
+.I name
+.I "source name"
+.EE
+.PP
+where
+.I name
+and
+.I source
+are path names (often absolute path names).
+The kernel's initial root file system (see
+.IR root (3))
+will contain a file or directory with the given
+.IR name .
+The contents will come from the file
+.I name
+(which must exist) unless an explicit
+.I source
+file is given.
+.PP
+The
+.B port
+section usually contains initialisations for kernel-specific values.
+The most common one is
+.IP
+.EX
+ int cpuserver = \fIn\fP;
+.EE
+.PP
+where
+.I n
+is non-zero for cpu servers and file servers, and zero otherwise.
+.SH FILES
+.B /sys/src/9/port/mkdevc
+.br
+.B /sys/src/9/port/mkdevlist
+.br
+.B /sys/src/9/port/mkroot
+.SH SEE ALSO
+.IR mk (1)
diff --git a/sys/man/9/delay b/sys/man/9/delay
new file mode 100644
index 0000000000..8bc6710d1e
--- /dev/null
+++ b/sys/man/9/delay
@@ -0,0 +1,41 @@
+.TH DELAY 9
+.SH NAME
+delay, microdelay, addclock0link \- small delays, clock interrupts
+.SH SYNOPSIS
+.ta \w'\fLvoid 'u
+.B
+void delay(int n)
+.PP
+.B
+void microdelay(int n)
+.PP
+.B
+void addclock0link(void(*clockf)(void))
+.SH DESCRIPTION
+.I Delay
+busy waits for
+.I n
+milliseconds, forced to be at least one millisecond.
+.PP
+.I Microdelay
+is similar, but busy waits for
+.I n
+microseconds.
+.PP
+For delays on the order of clock ticks,
+.I tsleep
+(see
+.IR sleep (9))
+provides a better alternative to the busy waiting of these routines.
+.PP
+.I Addclock0link
+adds
+.I clockf
+to a list of functions to be executed at each clock interrupt on
+the first processor.
+.SH SOURCE
+.B /sys/src/9/port/portclock.c
+.br
+.B /sys/src/9/*/clock.c
+.SH SEE ALSO
+.IR sleep (9)
diff --git a/sys/man/9/devattach b/sys/man/9/devattach
new file mode 100644
index 0000000000..671afe7bc9
--- /dev/null
+++ b/sys/man/9/devattach
@@ -0,0 +1,699 @@
+.TH DEVATTACH 9
+.SH NAME
+devattach, devclone, devdir, devgen, devwalk, devdirread, devstat, devopen, devbread, devbwrite, devcreate, devremove, devwstat, devreset, devinit, devshutdown, openmode \- common device driver support
+.SH SYNOPSIS
+.nf
+.ta \w'\fLBlock* 'u +10n
+.B
+typedef int
+.B
+Devgen(Chan *c, char *name, Dirtab *tab, int ntab, int i, Dir *dp)
+.PP
+.B
+Chan* devattach(int tc, char *spec)
+.PP
+.B
+Chan* devclone(Chan *c)
+.PP
+.B
+void devdir(Chan *c, Qid qid, char *n, long length,
+.B
+ char *user, long perm, Dir *dp)
+.PP
+.B
+int devgen(Chan *c, char *name, Dirtab *tab, int ntab,
+.B
+ int i, Dir *dp)
+.PP
+.B
+Walkqid* devwalk(Chan *c, Chan *nc, char **name, int nname,
+.B
+ Dirtab *tab, int ntab, Devgen *gen)
+.PP
+.B
+void devstat(Chan *c, uchar *db, int n, Dirtab *tab,
+.B
+ int ntab, Devgen *gen)
+.PP
+.B
+long devdirread(Chan *c, char *d, long n, Dirtab *tab,
+.B
+ int ntab, Devgen *gen)
+.PP
+.B
+Chan* devopen(Chan *c, int omode, Dirtab *tab,
+.B
+ int ntab, Devgen *gen)
+.PP
+.B
+Block* devbread(Chan *c, long n, ulong offset)
+.PP
+.B
+long devbwrite(Chan *c, Block *bp, ulong offset)
+.PP
+.B
+void devcreate(Chan*, char*, int, ulong)
+.PP
+.B
+void devremove(Chan*)
+.PP
+.B
+void devwstat(Chan*, uchar*, int)
+.PP
+.B
+void devreset(void)
+.PP
+.B
+void devinit(void)
+.PP
+.B
+void devshutdown(void)
+.PP
+.B
+int openmode(ulong mode)
+.SH DESCRIPTION
+Device drivers call these functions to carry out essential tasks and default actions.
+They do most of the name space management
+for a driver that serves a simple name space
+(eg, data and control files),
+leaving the driver to concentrate on the device-specific details
+of the I/O requests.
+More complex drivers also make good use of them at the leaves
+of their name space, and to help manage the
+.B Chan
+structures correctly.
+.PP
+A device has an associated
+.IR type ,
+represented as a Unicode character (`rune') that identifies the device
+inside and outside the kernel.
+It appears as the value of the
+.B type
+field in the
+.B Dir
+resulting from a
+.IR stat (2)
+of any file provided by the device.
+A device is named outside the kernel using
+a path name starting with
+.B #
+followed by the device character
+(eg,
+.B c
+in
+.B #c
+for the console).
+Any subsequent characters before
+the next '/' or end of string is the `device specifier',
+interpreted solely by the device itself.
+.PP
+.I Devattach
+returns a new channel representing
+the root of the file tree
+corresponding to device type
+.IR tc ,
+with device specifier
+.IR spec .
+It is normally called by a driver's
+.I attach
+function (see
+.IR dev (9)).
+The
+.B qid
+for the new channel is
+.BR "(Qid){0,0,QTDIR}" ,
+suitable for a root directory for many devices, but
+a device driver is free to change it (provided the
+.B QTDIR
+bit remains in the
+.BR Qid.type ).
+.PP
+.I Devclone
+returns a new channel that is a copy of
+.IR c .
+An attempt to clone an open channel causes a
+.IR panic (9).
+.PP
+The
+.L Dir
+structure is shown below:
+.IP
+.EX
+typedef
+struct Dir
+{
+ /* system-modified data */
+ ushort type; /* server type */
+ uint dev; /* server subtype */
+ /* file data */
+ Qid qid; /* unique id from server */
+ ulong mode; /* permissions */
+ ulong atime; /* last read time */
+ ulong mtime; /* last write time */
+ vlong length; /* file length */
+ char *name; /* last element of path */
+ char *uid; /* owner name */
+ char *gid; /* group name */
+ char *muid; /* last modifier name */
+} Dir;
+.EE
+.PP
+This
+.B Dir
+structure corresponds directly to the Limbo
+.B Dir
+adt described in
+.IR stat (2).
+.PP
+Given a channel and assorted other information,
+.I devdir
+initialises a Dir structure at
+.IR dp .
+.I Devdir
+supplies the following data itself:
+.RS
+.TF length
+.TP
+.B atime
+last access time (set to current time)
+.TP
+.B mtime
+last modification time (set to kernel creation date)
+.TP
+.B gid
+group name (set to
+.IR eve (9))
+.TP
+.B length
+length in bytes (set to zero, which
+is normal for most devices)
+.RE
+.PD
+.PP
+Note that
+.I devdir
+assigns the values of
+.I name
+and
+.I user
+directly to fields of
+.BI * dp,
+and consequently those values must remain valid until the last use of
+.BI * dp.
+(Sometimes that requires the use of an auxiliary buffer, such as
+.BR up->genbuf .)
+If channel
+.I c
+corresponds to a file descriptor on which Styx is served,
+.I devdir
+sets both the flag bit
+.B QTMOUNT
+in
+.IB dp ->qid.type
+and the flag bit
+.B DMMOUNT
+in
+.IB dp ->mode
+(see
+.I export
+in
+.IR dial (2)
+and
+.I mount
+in
+.IR bind (2)).
+.PP
+A simple name space can be represented in a driver by an array of
+.B Dirtab
+structures.
+The array is typically static when the names and permissions
+are static, but can be dynamically allocated and initialised if required.
+The structure of
+.B Dirtab
+is shown below:
+.IP
+.EX
+typedef
+struct Dirtab
+{
+ char name[KNAMELEN];
+ Qid qid;
+ vlong length;
+ long perm;
+} Dirtab;
+.EE
+.PP
+The name
+.RB ` . '
+.I must
+appear as the first entry in a
+.B Dirtab
+if the default
+.I devgen
+function is used.
+On the other hand, the name
+.RB ` .. '
+must never appear in a
+.B Dirtab
+table.
+Drivers that support a directory hierarchy must walk up the hierarchy towards
+the root when their
+.I walk
+function receives
+.RB ` .. '
+as a file name component.
+The name
+.RB ` . '
+is never seen by a driver.
+.PP
+The
+.IR devdirread ,
+.IR devopen ,
+.IR devstat ,
+and
+.IR devwalk
+functions all take a
+.I gen
+function argument,
+of type
+.BR Devgen ,
+which they invoke to retrieve the items in
+a
+.B Chan
+that represents a directory.
+.I Gen
+takes a channel
+.I c
+(a directory),
+a file
+.I name
+(which is nil except during
+.IR devwalk ),
+an array of
+.B Dirtab
+structures
+.I tab
+of length
+.IR ntab ,
+and a table index
+.IR i .
+The functions calling
+.I gen
+expect it to place the
+.IR i 'th
+entry in the directory into
+.IR \f5*\fPdp .
+It should return 1
+if the call was successful,
+-1 if
+.I i
+is beyond the index of the last directory entry,
+or 0 if there is no entry at
+.IR i ,
+but there are entries beyond it.
+When
+.I i
+has the special value
+.B DEVDOTDOT
+then
+.I gen
+should set
+.IR \f5*\fPdp
+to reflect the parent of
+.IR c ;
+if
+.I c
+is a one-level device directory, then `..' is equivalent to `.'.
+Custom implementations of
+.I gen
+often ignore
+.IR devtab ,
+and instead return their own dynamically generated
+set of directory entries from some other source.
+Exceptionally, during
+.I devwalk
+a non-nil
+.I name
+is provided: it is the name being looked up, and a device-specific
+.I gen
+can short-circuit the search by returning -1 if the name does not exist,
+or filling in
+.IR \f5*\fPdp
+and returning 1 if it does exist.
+.PP
+The function
+.I devgen
+is compatible with
+.BR Devgen ;
+it returns the
+.IR i 'th
+entry in
+.IR devtab ,
+and can be used to provide a simple, static
+set of directory entries.
+.PP
+.I Devwalk
+walks channel
+.I c
+to the file in the device named by the path encoded in
+.IR name ,
+which is an array of strings of length
+.IR nname .
+It provides the interface to
+.IR walk (5)
+within the kernel, and that specification must be well understood to appreciate
+all the nuances of its interface.
+Fortunately, in nearly all device drivers, a device's
+.I walk
+function typically passes its parameters on to
+.I devwalk
+(adding the device's own
+.B Dirtab
+array as the the value of
+.IR tab ),
+and simply returning the result of
+.IR devwalk .
+.PP
+.I Devwalk
+walks
+.I c
+using the given set of names, and if the walk is successful, the
+channel
+.I nc
+will refer to the result of the walk
+(specifically,
+.IB nc ->qid
+is set to the Qid for the file).
+If
+.I nc
+is nil,
+.I devwalk
+will allocate a new channel itself, that is initially a clone of
+.IR c .
+As in
+.IR walk (5),
+.I devwalk
+can return a partial result,
+represented by
+a dynamically allocated value of the following structure:
+.IP
+.EX
+struct Walkqid
+{
+ Chan *clone;
+ int nqid;
+ Qid qid[1]; /* actually nname in length */
+};
+.EE
+.PP
+The value must be freed after use.
+For each element of
+.I name ,
+.I devwalk
+passes
+the
+.I tab
+parameter to
+.I gen
+together with the currently-sought element of
+.IR name .
+If the first element is not found,
+.I devwalk
+returns nil; otherwise, it returns a
+.B Walkqid
+value in which
+.B nqid
+elements of the array
+.B qid
+are set to the qids (see
+.IR intro (5))
+of each valid element of
+.IR name .
+If all
+.I nname
+elements were successfully traversed, then
+.B nqid
+will have the value
+.IR nname ,
+and
+.B clone
+will refer to the result of the walk,
+which is either
+.I nc
+if given, or
+the new channel allocated by
+.IR devwalk .
+Otherwise, at least one element succeeded and
+.B nqid
+is less than
+.I nname
+and
+.B clone
+is nil.
+On an error or incomplete walk,
+the error string is set to the error that stopped the walk (eg,
+.B Enonexist
+or
+.BR Enotdir ).
+.PP
+.I Devstat
+fills the array of bytes
+.I db
+with data in the format produced by
+.IR stat (5)
+that describes the file
+referenced by channel
+.IR c ,
+which must have a corresponding entry
+returned by
+.IR gen
+(ie, an entry with matching
+.BR Qid.path ).
+If
+.I c
+is a communications channel connecting a Styx server to a current mount point,
+the
+.B DMMOUNT
+bit is set in the resulting
+.BR Dir.mode ,
+and
+.B QTMOUNT
+is set in
+.BR Dir.qid.type .
+As in
+.IR stat (5),
+the length of the data written to
+.I db
+varies; if more than
+.I n
+bytes are needed,
+.I devstat
+raises the
+.IR error (9)
+.BR Ebadarg .
+Otherwise, it returns the number of bytes in
+.I db
+actually used.
+.PP
+If an entry with the desired qid is not found in the table, but
+.I c
+corresponds to a directory
+(ie,
+.B QTDIR
+is set in
+.IR c\f5->qid.type\fP ),
+it is taken to be a
+.I stat
+of a notional directory containing the files listed in
+.IR tab .
+.I Dirstat
+then builds the corresponding Dir structure:
+its
+.B Dir.name
+is taken from
+.IR c\f5->path->elem\fP ;
+the length is
+.BI DIRLEN*nelem(tab) ;
+and
+.B Dir.perm
+is 0555 (read-execute for all).
+.PP
+.I Devdirread
+calls
+.I gen
+to obtain successive
+.B Dir
+structures representing entries in the open directory
+.IR c .
+These are converted to standard format (see
+.I convD2M
+in
+.IR fcall (2))
+and placed in the buffer
+.IR b .
+It returns the number of bytes in the result.
+At most
+.I n
+bytes will be returned, in multiples of
+.BR DIRLEN .
+Because the kernel maintains the current offset in
+.IR c ,
+successive calls to
+.I devdirread
+return successive directory components.
+.PP
+.I Devopen
+is called to check and complete a request to open channel
+.I c
+for I/O according to
+.IR omode
+(the open mode of
+.IR open (2)).
+It calls
+.I gen
+to obtain successive directory entries
+which it searches
+for a Qid matching that of
+.IR c ,
+and ensures that the current user has permission to open
+.I c
+with the given mode,
+.IR omode ,
+and that the mode itself is valid
+(see
+.I openmode
+below).
+Permission is checked against the permission in the
+matching entry.
+If no matching Qid is found, it is assumed
+that the notional parent directory of the files represented in
+.I tab
+is to be opened.
+Such a directory is deemed to have mode
+0555, allowing access by any user.
+A directory can only be opened for reading
+.RB ( OREAD ).
+.I Devopen
+returns the channel
+.I c
+on success.
+Last, it sets the bit
+.B COPEN
+in
+.B Chan.flag
+to mark
+.I c
+as open.
+This convention can always be relied upon by the driver's
+.I close
+function to tell if an open succeeded.
+On the otherhand,
+if the open request was unsuccessful,
+.I devopen
+raises an appropriate
+.IR error (9)
+and does not return.
+.PP
+.I Devbread
+returns a
+.B Block
+(see
+.IR allocb (9))
+containing up to
+.I n
+bytes read,
+using
+.BI "devtab[" c "->type]->read" ,
+from
+.I c
+starting at the given
+.IR offset .
+The read pointer in the returned
+.B Block
+points to the start of the data;
+the write pointer points to the next available byte.
+.PP
+.I Devbwrite
+writes the data in
+.B Block
+.I bp
+to the file
+.I c
+at the given
+.IR offset ,
+using the write function
+.BI "devtab[" c "->type]->write" .
+It then frees the block list
+.I bp
+before
+returning the number of bytes written.
+.PP
+Most built-in devices do not allow
+.IR create ,
+.IR remove
+or
+.I wstat
+on their files.
+.IR Devcreate ,
+.I devremove
+and
+.I devwstat
+are stubs that raise an
+.IR error (9),
+.BR Eperm .
+They can be named directly in a device driver's device
+switch (the
+.B Dev
+structure in
+.BR /sys/src/9/port/portdat.h :
+see
+.IR dev (9)).
+.PP
+.IR Devreset ,
+.I devinit
+and
+.I devshutdown
+are also stubs;
+they do nothing.
+A device driver puts them in its
+.B Dev
+structure when it need take no action on device reset, initialisation, or shut down.
+.PP
+.I Openmode
+is used by a driver that does not use
+.IR devopen ,
+to check the open mode it receives in its open
+routine.
+.I Openmode
+returns mode
+.IR o ,
+the mode parameter to
+.IR open (2)
+or
+.IR sys-create ,
+shorn of
+.BR OTRUNC
+and similar options,
+and reduced to one of
+.BR OREAD ,
+.BR OWRITE
+or
+.BR ORDWR .
+In particular,
+.B OEXEC
+becomes
+.B OREAD
+within the kernel.
+.I Openmode
+raises an
+.IR error (9)
+.B Ebadarg
+instead of returning, if
+.I o
+is an invalid mode (eg, reserved bits set).
+.SH SOURCE
+.B /sys/src/9/port/dev.c
+.SH SEE ALSO
+.IR allocb (9),
+.IR eve (9),
+.IR qio (9)
diff --git a/sys/man/9/dmainit b/sys/man/9/dmainit
new file mode 100644
index 0000000000..59af145212
--- /dev/null
+++ b/sys/man/9/dmainit
@@ -0,0 +1,86 @@
+.TH DMAINIT 9
+.SH NAME
+dmainit, dmasetup, dmadone, dmaend, dmacount \- platform-specific DMA support
+.SH SYNOPSIS
+.ta \w'\fLushort 'u
+.B
+void dmainit(int chan)
+.PP
+.B
+long dmasetup(int chan, void *va, long len, int isread)
+.PP
+.B
+int dmadone(int chan)
+.PP
+.B
+void dmaend(int chan)
+.PP
+.B
+int dmacount(int chan)
+.PP
+.SH DESCRIPTION
+These functions manage DMA on a bus that uses ISA-style DMA controllers.
+They were originally devised for the x86 platform, but the same interface, and similar code,
+is used by other platforms that use similar controllers.
+They compensate as best they can for the limitations of older DMA implementations
+(eg, alignment, boundary and length restrictions).
+There are 8 DMA channels:
+0 to 3 are byte-oriented; 4 to 7 are word-oriented (16-bit words).
+.PP
+.I Dmainit
+must be called early in a driver's initialisation to prepare
+.I chan
+for use.
+Amongst other things, it allocates a page-sized buffer to help circumvent hardware
+restrictions on DMA addressing.
+.PP
+.I Dmasetup
+prepares DMA channel
+.IR chan
+for a transfer between a device configured to use it
+and the virtual address
+.IR va .
+(The transfer is started by issuing a command to the device.)
+If
+.I va
+lies outside the kernel address space,
+the transfer crosses a 64k boundary,
+or exceeds the 16 Mbyte limit imposed by some DMA controllers,
+the transfer will be split into page-sized transfers using the buffer previously allocated by
+.IR dmainit .
+If
+.I isread
+is true (non-zero), data is to be transferred from
+.I chan
+to
+.IR va ;
+if false, data is transferred from
+.I va
+to
+.IR chan .
+In all cases,
+.I dmasetup
+returns the number of bytes to be transferred.
+That value (rather than
+.IR len )
+must be given to the device in the read or write request that starts the transfer.
+.PP
+.I Dmadone
+returns true (non-zero) if
+.I chan
+is idle.
+.PP
+.I Dmaend
+must be called at the end of every DMA operation.
+It disables
+.IR chan ,
+preventing further access to the previously associated memory and,
+if a low-memory buffer was required for input, transfers its contents
+to the appropriate part of the target buffer.
+.PP
+.I Dmacount
+returns the number of bytes that were last transferred by channel
+.IR chan .
+The count is always even for word-oriented DMA channels.
+.SH SOURCE
+.B /sys/src/9/pc/dma.c
diff --git a/sys/man/9/error b/sys/man/9/error
new file mode 100644
index 0000000000..2f9fa54c6d
--- /dev/null
+++ b/sys/man/9/error
@@ -0,0 +1,168 @@
+.TH ERROR 9
+.SH NAME
+error, nexterror, poperror, waserror \- error handling functions
+.SH SYNOPSIS
+.ta \w'\fLchar* 'u
+.B
+void error(char*)
+.PP
+.B
+void nexterror(void)
+.PP
+.B
+void poperror(void)
+.PP
+.B
+int waserror(void)
+.SH DESCRIPTION
+The kernel handles error conditions using non-local gotos,
+similar to
+.IR setjmp (2),
+but using a stack of error labels to implement nested exception handling.
+This simplifies many of the internal interfaces by eliminating the need
+for returning and checking error codes at every level of the call stack,
+at the cost of requiring kernel routines to adhere to a strict discipline.
+.PP
+Each process has in its defining kernel
+.B Proc
+structure a stack of labels,
+.B NERR
+(currently 64) elements deep.
+A kernel function that must perform a clean up or recovery action on an error
+makes a stylised call to
+.IR waserror ,
+.IR nexterror
+and
+.IR poperror :
+.IP
+.EX
+.DT
+if(waserror()){
+ /* recovery action */
+ nexterror();
+}
+/* normal action */
+poperror();
+.EE
+.PP
+When called in the normal course of events,
+.I waserror
+registers an error handling block by pushing its label onto the stack,
+and returns zero.
+The return value of
+.I waserror
+should be tested as shown above.
+If non-zero (true), the calling function should perform the needed
+error recovery, ended by a call to
+.I nexterror
+to transfer control to the next location on the error stack.
+Typical recovery actions include deallocating memory, unlocking resources, and
+resetting state variables.
+.PP
+Within the recovery block,
+after handling an error condition, there must normally
+be a call to
+.I nexterror
+to transfer control to any error recovery lower down in the stack.
+The main exception is in the outermost function in a process,
+which must not call
+.I nexterror
+(there being nothing further on the stack), but calls
+.I pexit
+(see
+.IR kproc (9))
+instead,
+to terminate the process.
+.PP
+When the need to recover a particular resource has passed,
+a function that has called
+.I waserror
+must
+remove the corresponding label from the stack by calling
+.IR poperror .
+This
+must
+be done before returning from the function; otherwise, a subsequent call to
+.I error
+will return to an obsolete activation record, with unpredictable but unpleasant consequences.
+.PP
+.I Error
+copies the given error message, which is limited to
+.B ERRMAX
+bytes, into the
+.B Proc.error
+of the current process,
+enables interrupts by calling
+.I spllo
+.RI ( native
+only),
+and finally calls
+.I nexterror
+to start invoking the recovery procedures currently stacked by
+.IR waserror .
+The file
+.B /sys/src/9/port/error.h
+offer a wide selection of predefined error messages, suitable for almost any occasion.
+The message set by the most recent call to
+.I error
+can be obtained within the kernel by examining
+.B up->error
+and in an application, by using the
+.L %r
+directive of
+.IR print (2).
+.PP
+A complex function can have nested error handlers.
+A
+.I waserror
+block will follow the acquisition of a resource, releasing it
+on error before calling
+.I nexterror,
+and a
+.I poperror
+will precede its release in the normal case.
+For example:
+.IP
+.EX
+.DT
+void
+outer(Thing *t)
+{
+ qlock(t);
+ if(waserror()){ /* A */
+ qunlock(t);
+ nexterror();
+ }
+ m = mallocz(READSTR, 0);
+ if(m == nil)
+ error(Enomem);
+ if(waserror()){ /* B */
+ free(m);
+ nexterror(); /* invokes A */
+ }
+ inner(t);
+ poperror(); /* pops B */
+ free(m);
+ poperror(); /* pops A */
+ qunlock(t);
+}
+.sp 1v
+void
+inner(Thing *t)
+{
+ if(t->bad)
+ error(Egreg); /* error() call returns to B */
+ t->valid++;
+}
+.EE
+.SH SOURCE
+.B /sys/src/9/port/proc.c
+.SH CAVEATS
+The description above has many instances of
+.IR should ,
+.IR will ,
+.I must
+and
+.IR "must not" .
+.SH SEE ALSO
+.IR panic (9)
diff --git a/sys/man/9/eve b/sys/man/9/eve
new file mode 100644
index 0000000000..541566196f
--- /dev/null
+++ b/sys/man/9/eve
@@ -0,0 +1,46 @@
+.TH EVE 9
+.SH NAME
+eve, iseve \- privileged user
+.SH SYNOPSIS
+.ta \w'\fLchar* 'u
+.B
+char eve[NAMELEN] = "bootes";
+.PP
+.B
+int iseve(void)
+.SH DESCRIPTION
+.I Eve
+is a null-terminated string containing the name of the owner of
+the Plan 9 system (sometimes called the `host owner',
+see
+.IR cons (3)).
+The identity is set on a terminal to the name of the user who logs in.
+It is set on a CPU server to the
+.I authid
+obtained either from NVRAM or by a console prompt.
+The initial process created by system initialisation is given the
+.I eve
+identity.
+.PP
+.I Iseve
+returns true if the current user is
+.IR eve .
+Several drivers use
+.I iseve
+to check the caller's identity
+before granting permission to perform certain actions.
+For example, the console driver allows only the user
+.I eve
+to write a new identity into the
+.B /dev/user
+file.
+The privileges are strictly local and do not extend into the network
+(in particular, to file servers—even ones running on the local machine).
+.SH SOURCE
+.B /sys/src/9/port/auth.c
+.SH SEE ALSO
+.IR auth (2),
+.IR cap (3),
+.IR cons (3),
+.IR authsrv (6),
+.IR auth (8)
diff --git a/sys/man/9/inb b/sys/man/9/inb
new file mode 100644
index 0000000000..2dd1752892
--- /dev/null
+++ b/sys/man/9/inb
@@ -0,0 +1,83 @@
+.TH INB 9
+.SH NAME
+inb, ins, inl, outb, outs, outl, insb, inss, insl, outsb, outss, outsl \- programmed I/O
+.SH SYNOPSIS
+.ta \w'\fLushort 'u
+.B
+int inb(int port)
+.PP
+.B
+ushort ins(int port)
+.PP
+.B
+ulong inl(int port)
+.PP
+.B
+void outb(int port, int value)
+.PP
+.B
+void outs(int port, ushort value)
+.PP
+.B
+void outl(int port, ulong value)
+.PP
+.B
+void insb(int port, void *address, int count)
+.PP
+.B
+void inss(int port, void *address, int count)
+.PP
+.B
+void insl(int port, void *address, int count)
+.PP
+.B
+void outsb(int port, void *address, int count)
+.PP
+.B
+void outss(int port, void *address, int count)
+.PP
+.B
+void outsl(int port, void *address, int count)
+.SH DESCRIPTION
+The
+.I x86
+implementation provides functions to allow kernel code
+written in C to access the I/O address space.
+On several other architectures such as the PowerPC and Strongarm,
+the platform-dependent code provides similar functions to access
+devices with an I/O space interface, even when that is memory mapped, to encourage portability of device drivers.
+.PP
+.IR Inb ,
+.I ins
+and
+.I inl
+apply the corresponding hardware instruction to fetch the next byte, short or long
+from the I/O
+.IR port .
+.IR Outb ,
+.I outs
+and
+.I outl
+output a
+.I value
+to the I/O
+.IR port .
+.PP
+The remaining functions transfer
+.I count
+bytes, shorts, or longs using programmed I/O between a memory
+.I address
+and
+.IR port .
+Functions
+.BI ins x
+copy values into memory; functions
+.BI outs x
+copy values from memory.
+The
+.I count
+is in elements, not bytes.
+.SH SOURCE
+.B /sys/src/9/pc/l.s
+.SH SEE ALSO
+.IR dma (9)
diff --git a/sys/man/9/intrenable b/sys/man/9/intrenable
new file mode 100644
index 0000000000..713c1c000f
--- /dev/null
+++ b/sys/man/9/intrenable
@@ -0,0 +1,106 @@
+.TH INTRENABLE 9
+.SH NAME
+intrenable, intrdisable \- enable (disable) an interrupt handler
+.SH SYNOPSIS
+.ta \w'\fLvoid* 'u
+.B
+void intrenable(int v, void (*f)(Ureg*, void*), void* a, int tbdf, char *name)
+.PP
+.B
+void intrdisable(int v, void (*f)(Ureg*, void*), void* a, int tbdf, char *name)
+.SH DESCRIPTION
+.I Intrenable
+registers
+.I f
+to be called by the kernel's interrupt controller driver each time
+an interrupt denoted by
+.I v
+occurs, and unmasks the corresponding interrupt in the interrupt controller.
+The encoding of
+.I v
+is platform-dependent; it is often an interrupt vector number, but
+can be more complex.
+.I Tbdf
+is a platform-dependent value that might further qualify
+.IR v .
+It might for instance
+denote the type of bus, bus instance, device number and function
+(following the PCI device indexing scheme), hence its name,
+but can have platform-dependent meaning.
+.I Name
+is a string that should uniquely identify the corresponding device (eg, \f5"uart0"\fP);
+again it is usually platform-dependent.
+.I Intrenable
+supports sharing of interrupt levels when the hardware does.
+.PP
+Almost invariably
+.I f
+is a function defined in a device driver to carry out the device-specific work associated with a given interrupt.
+The pointer
+.I a
+is passed to
+.IR f ;
+typically it points to the driver's data for a given device or controller.
+It also passes
+.I f
+a
+.B Ureg*
+value that
+contains the registers saved by the interrupt handler (the
+contents are platform specific;
+see the platform's include file
+.BR "ureg.h" ).
+.PP
+.I F
+is invoked by underlying code in the kernel that is invoked directly from the hardware vectors.
+It is therefore not running in any process (see
+.IR kproc (9);
+indeed, on many platforms
+the current process pointer
+.RB ( up )
+will be nil.
+There are many restrictions on kernel functions running outside a process, but a fundamental one is that
+they must not
+.IR sleep (9),
+although they often call
+.B wakeup
+to signal the occurrence of an event associated with the interrupt.
+.IR Qio (9)
+and other manual pages note which functions are safe for
+.I f
+to call.
+.PP
+The interrupt controller driver does whatever is
+required to acknowledge or dismiss the interrupt signal in the interrupt controller,
+before calling
+.IR f ,
+for edge-triggered interrupts,
+and after calling
+.I f
+for level-triggered ones.
+.I F
+is responsible for deal with the cause of the interrupt in the device, including any
+acknowledgement required in the device, before it returns.
+.PP
+.I Intrdisable
+removes any registration previously made by
+.I intrenable
+with matching parameters, and if no other
+interrupt is active on
+.IR v ,
+it masks the interrupt in the controller.
+Device drivers that are not dynamically configured tend to call
+.I intrenable
+during reset or initialisation (see
+.IR dev (9)),
+but can call it at any appropriate time, and
+instead of calling
+.I intrdisable
+they can simply enable or disable interrupts in the device as required.
+.SH SOURCE
+.B /sys/src/9/*/trap.c
+.SH SEE ALSO
+.IR malloc (9),
+.IR qio (9),
+.IR sleep (9),
+.IR splhi (9)
diff --git a/sys/man/9/kbdputc b/sys/man/9/kbdputc
new file mode 100644
index 0000000000..47393c293a
--- /dev/null
+++ b/sys/man/9/kbdputc
@@ -0,0 +1,52 @@
+.TH KBDPUTC 9
+.SH NAME
+kbdputc, kbdq \- keyboard interface to \fIcons\fP(3)
+.SH SYNOPSIS
+.ta \w'\f5extern\ \ \f1'u
+.B
+.B
+void kbdputc(Queue *q, int c)
+.PP
+.B
+extern Queue *kbdq;
+.SH DESCRIPTION
+This is the internal interface between
+.IR cons (3)
+and the platform-dependent keyboard driver.
+Before calling any of these functions,
+the global variable
+.B kbdq
+must be initialised;
+.IR cons (3)
+does not initialise it.
+This is usually done during system initialisation by the keyboard driver's
+.I kbdinit
+or
+.I kbdenable
+function ,
+as follows:
+.IP
+.EX
+kbdq = qopen(4*1024, 0, 0, 0);
+qnoblock(kbdq, 1);
+.EE
+.PP
+.I Kbdputc
+puts a Unicode character
+.I c
+(ie, a `rune')
+on the given
+.IR q ,
+as a sequence of bytes in UTF-8 encoding
+(see
+.IR utf (6)).
+It is up to the platform's keyboard driver to map a physical keyboard character,
+or a combination of them (for instance, following
+.IR keyboard (6))
+to a given Unicode character.
+.SH SOURCE
+.B /sys/src/9/*/kbd*.c
+.SH SEE ALSO
+.IR cons (3),
+.IR utf (6),
+.IR qio (9)
diff --git a/sys/man/9/kproc b/sys/man/9/kproc
new file mode 100644
index 0000000000..bfe7ada0b4
--- /dev/null
+++ b/sys/man/9/kproc
@@ -0,0 +1,131 @@
+.TH KPROC 9
+.SH NAME
+kproc, pexit, postnote \- kernel process creation, termination and interrupt
+.SH SYNOPSIS
+.ta \w'\fLchar* 'u
+.B
+void kproc(char *name, void (*func)(void*), void *arg)
+.PP
+.B
+void pexit(char *note, int freemem)
+.PP
+.B
+void postnote(Proc *p, int dolock, char *n, int flag)
+.SH DESCRIPTION
+.I Kproc
+creates a new kernel process
+to run the function
+.IR func ,
+which is invoked as
+.BR "(*func)(arg)" .
+The string
+.I name
+is copied into the
+.B text
+field of the
+.B Proc
+structure of the new process; this value is the name of the kproc in
+the output of
+.IR ps (1).
+The process is made runnable; it
+will run when selected by the scheduler
+.IR sched (9).
+The process is created with base and current priorities set to
+.BR PriKproc .
+It shares the kernel process group and thus name space.
+.PP
+A kernel process terminates only when it calls
+.IR pexit ,
+thereby terminating itself.
+There is no mechanism for one process to force the termination of another,
+although it can send a software interrupt using
+.IR postnote .
+.I Note
+is a null string on normal termination, or
+the cause of
+If
+.I freemem
+is non-zero,
+any memory allocated by the process is discarded;
+it should normally be non-zero for any process created
+by
+.IR kproc .
+Use the following to terminate a kernel process normally:
+.IP
+.EX
+pexit("", 1);
+.EE
+.PP
+to terminate a kernel process normally.
+.PP
+.I Postnote
+sends a software interrupt to process
+.IR p ,
+causing it, if necessary, to wake from
+.IR sleep (9)
+or break out of a
+.IR rendezvous (2),
+with an
+.IR error (9)
+`interrupted'.
+Up to
+.B NNOTE
+notes can be pending at once (currently 5);
+if more than that arrive, the process is forced
+out of
+.I sleep
+and
+.IR rendezvous ,
+but the message itself is discarded.
+.I Postnote
+returns non-zero iff the note has been
+delivered successfully.
+If
+.I dolock
+is non-zero,
+.I postnote
+synchronises delivery of the note with the debugger
+and other operations of
+.IR proc (3).
+.I Flag
+is zero, or one of the following
+.TP
+.B NDebug
+Print the note message on the user's standard error.
+Furthermore, suspend the process in a
+.B Broken
+state, preserving its memory, for later debugging.
+.TP
+.B NExit
+Deliver the note quietly.
+.TP
+.B NUser
+The note comes from another process, not the system.
+.PP
+The kernel uses
+.I postnote
+to signal processes that commit grave faults,
+and to implement the note and kill functions of
+.IR proc (3).
+A device driver should use
+.I postnote
+only to tell a service process,
+previously started by the driver using
+.I kproc ,
+that it should stop;
+the note will cause that process to raise an
+.IR error (9).
+For example, a process started to read packets from a network device could
+be stopped as follows when the interface is unbound:
+.IP
+.EX
+postnote(readp, 1, "unbind", 0);
+.EE
+.PP
+where
+.I readp
+points to the appropriate
+.BR Proc .
+The text of the message is typically irrelevant.
+.SH SOURCE
+.B /sys/src/9/port/proc.c
diff --git a/sys/man/9/lib b/sys/man/9/lib
new file mode 100644
index 0000000000..398c7ca296
--- /dev/null
+++ b/sys/man/9/lib
@@ -0,0 +1,161 @@
+.TH LIB 9
+.SH NAME
+lib \- C library functions used by the kernel
+.SH SYNOPSIS
+.B
+#include "../port/lib.h"
+.SH DESCRIPTION
+A small collection of functions from the normal Plan 9 C
+library is used in the kernel.
+Only a subset is made available by declarations in
+.BR lib.h ,
+which must be included instead of the usual
+.BR .
+Here is a list of the manual pages, and the functions from them declared
+by
+.B lib.h
+for kernel use:
+.IR
+.TP
+.IR abs (2)
+.br
+.I abs
+.TP
+.IR atof (2)
+.br
+.IR atoi ,
+.IR strtol ,
+.IR strtoul ,
+.IR strtoll ,
+and
+.I strtoull
+.TP
+.IR cleanname (2)
+.br
+.I cleanname
+.TP
+.IR encode (2)
+.IR dec64
+and
+.I encodefmt
+.TP
+.IR fmtinstall (2)
+.br
+.BR Fmt ,
+.IR fmtinstall ,
+.IR fmtprint
+and
+.IR fmtstrcpy
+.TP
+.IR getbe (2)
+.IR getbe ,
+.IR putbe ,
+.IR getle ,
+and
+.I putle
+.TP
+.IR getcallerpc (2)
+.br
+.I getcallerpc
+.TP
+.IR getfields (2)
+.br
+.I getfields
+and
+.I tokenize
+(see also
+.IR parsecmd (9))
+.TP
+.IR quote (2)
+.br
+for
+.IR quotefmtinstall
+.TP
+.IR print (2)
+.br
+.IR print ,
+.IR seprint ,
+.IR snprint ,
+.IR sprint ,
+.IR vseprint
+and
+.IR vsnprint ,
+.TP
+.IR memory (2)
+.br
+.IR memccpy ,
+.IR memchr ,
+.IR memcmp ,
+.IR memmove
+and
+.IR memset
+.TP
+.IR rune (2)
+.br
+.IR chartorune ,
+.IR runetochar ,
+.IR runelen ,
+.IR utflen
+and
+.IR utfrune
+.TP
+.IR open (2)
+.br
+values
+.BR OCEXEC ,
+.BR OEXCL ,
+.BR OEXEC ,
+.BR ORCLOSE ,
+.BR ORDWR ,
+.BR OREAD ,
+.BR OTRUNC
+and
+.BR OWRITE ,
+.TP
+.IR stat (2)
+.br
+data structures
+.BR Dir
+and
+.BR Qid ,
+and values
+.B DMDIR
+etc.
+and
+.B QTDIR
+etc.
+.TP
+.IR strcat (2)
+.br
+.IR strcat ,
+.IR strchr ,
+.IR strcmp ,
+.IR strcpy ,
+.IR strecpy ,
+.IR strlen ,
+.IR strncat ,
+.IR strncmp ,
+.IR strncpy ,
+.IR strrchr
+and
+.IR strstr
+.TP
+.IR wait (2)
+.br
+data structure
+.B Waitmsg
+.PP
+.B lib.h
+also defines
+.B ERRMAX
+(the limit in bytes for error strings)
+and
+.B KNAMELEN
+(fixed-length limit in bytes for device driver file names)
+.PP
+A few other libraries such as
+.IR memdraw (2)
+and
+.IR mp (2)
+are called by specialised kernel components and drivers but they use
+the normal include file for each library.
diff --git a/sys/man/9/lock b/sys/man/9/lock
new file mode 100644
index 0000000000..4df052e9c2
--- /dev/null
+++ b/sys/man/9/lock
@@ -0,0 +1,106 @@
+.TH LOCK 9
+.SH NAME
+lock, canlock, ilock, iunlock, unlock \- spin locks
+.SH SYNOPSIS
+.ta \w'\fLvoid 'u
+.B
+void lock(Lock *l)
+.PP
+.B
+int canlock(Lock *l)
+.PP
+.B
+void unlock(Lock *l)
+.PP
+.B
+void ilock(Lock *l)
+.PP
+.B
+void iunlock(Lock *l)
+.SH DESCRIPTION
+These primitives control access to shared
+resources using spin locks.
+They in turn are used to build higher-level synchronisation mechanisms
+such as those described in
+.IR sleep (9),
+.IR qlock (9)
+and
+.IR qio (9).
+They should be used only to protect short critical sections
+that update shared data structures.
+.PP
+.I Lock
+loops repeatedly attempting acquire the spin lock
+.I l
+until it succeeds.
+.I Lock
+should not be used to lock a structure shared with an interrupt handler
+unless interrupts are disabled by
+.IR splhi (9)
+before attempting the lock;
+it is better to use
+.IR ilock ,
+below.
+.PP
+.I Canlock
+is non-blocking.
+Only one attempt is made for the lock.
+It returns non-zero if the lock was successfully acquired; 0 otherwise.
+.PP
+.I Unlock
+releases the lock
+.IR l .
+A lock must be unlocked only by the locking process.
+.PP
+When called by a process, the functions above temporarily boost its priority
+to the highest priority,
+.BR PriLock ;
+its original priority is restored at the end of the critical section by
+.IR unlock .
+On a uniprocessor, if
+.I l
+is unavailable,
+.I lock
+can reschedule unless interrupts are disabled before entering
+.I lock
+or there is no current process (eg, when executing the scheduler).
+.PP
+.I Ilock
+disables interrupts before attempting to acquire the lock.
+It should be used to lock a resource shared between a process and an interrupt handler.
+On a uniprocessor, disabling interrupts is sufficient to exclude an interrupt handler
+from the critical section,
+and on a multiprocessor the spin lock excludes an interrupt handler running on another processor.
+.I Ilock
+never reschedules the caller, nor must a caller allow itself to be rescheduled
+(eg, by calling
+.IR sleep (9))
+before releasing the lock.
+.PP
+.I Iunlock
+releases a lock previously got by
+.IR ilock .
+.SH SOURCE
+.B /sys/src/9/port/taslock.c
+.br
+.B /sys/src/9/*/l.s
+.SH SEE ALSO
+.IR qlock (9)
+.SH DIAGNOSTICS
+The lock functions
+guard against the possibility of never acquiring the lock by capping the number of lock attempts.
+If the limit is reached, a message of
+the following form is written on the console:
+.IP
+.EX
+lock loop on \fIlock-address\fP key \fIkey-value\fP pc \fIcaller-pc\fP held by pc \fIlock-pc\fP
+.EE
+.PP
+Most lock loops represent deadlocks caused by failing to unlock a resource,
+attempting to lock (eg, by recursive call) a resource already held by the process,
+inconsistent locking and unlocking of nested resources, using a spin-lock
+to guard code that reschedules, using
+.I lock
+not
+.I ilock
+to interlock with an interrupt routine, and similar blunders.
diff --git a/sys/man/9/malloc b/sys/man/9/malloc
new file mode 100644
index 0000000000..245c69eb0c
--- /dev/null
+++ b/sys/man/9/malloc
@@ -0,0 +1,193 @@
+.TH MALLOC 9
+.SH NAME
+malloc, mallocz, smalloc, realloc, calloc, free, msize, setmalloctag, setrealloctag, getmalloctag, getrealloctag, malloctopoolblock \- kernel memory allocator
+.SH SYNOPSIS
+.ta \w'\fLvoid* 'u
+.B
+void* malloc(ulong size)
+.PP
+.B
+void* mallocalign(ulong size, ulong align, long offset, ulong span)
+.PP
+.B
+void* mallocz(ulong size, int clr)
+.PP
+.B
+void* smalloc(ulong size)
+.PP
+.B
+void* realloc(void *p, ulong size)
+.PP
+.B
+void* calloc(ulong n, ulong szelem)
+.PP
+.B
+void free(void *ptr)
+.PP
+.B
+ulong msize(void *ptr)
+.PP
+.B
+void setmalloctag(void *ptr, ulong tag)
+.PP
+.B
+ulong getmalloctag(void *ptr)
+.PP
+.B
+void setrealloctag(void *ptr, ulong tag)
+.PP
+.B
+ulong getrealloctag(void *ptr)
+.PP
+.B
+void* malloctopoolblock(void*)
+.PP
+.SH DESCRIPTION
+These are kernel versions of the functions in
+.IR malloc (2).
+They allocate memory from the
+.B mainmem
+memory pool,
+which is managed by
+the allocator
+.IR pool (2),
+which in turn replenishes the pool as required by calling
+.IR xalloc (9).
+All but
+.I smalloc
+(which calls
+.IR sleep (9))
+may safely be called by interrupt handlers.
+.PP
+.I Malloc
+returns a pointer to a block of at least
+.I size
+bytes, initialised to zero.
+The block is suitably aligned for storage of any type of object.
+The call
+.B malloc(0)
+returns a valid pointer rather than null.
+.I Mallocz
+is similar, but only clears the memory if
+.I clr
+is non-zero.
+.PP
+.I Smalloc
+returns a pointer to a block of
+.I size
+bytes, initialised to zero.
+If the memory is not immediately available,
+.I smalloc
+retries every 100 milliseconds until the memory is acquired.
+.PP
+.I Mallocalign
+allocates a block of at least
+.I n
+bytes of memory respecting alignment contraints.
+If
+.I align
+is non-zero,
+the returned pointer is aligned to be equal to
+.I offset
+modulo
+.IR align .
+If
+.I span
+is non-zero,
+the
+.I n
+byte block allocated will not span a
+.IR span -byte
+boundary.
+.PP
+.I Realloc
+changes the size of the block pointed to by
+.I p
+to
+.I size
+bytes,
+if possible without moving the data,
+and returns a pointer to the block.
+The contents are unchanged up to the lesser of old and new sizes,
+and any new space allocated is initialised to zero.
+.I Realloc
+takes on special meanings when one or both arguments are zero:
+.TP
+.B "realloc(0,\ size)
+means
+.LR malloc(size) ;
+returns a pointer to the newly-allocated memory
+.TP
+.B "realloc(ptr,\ 0)
+means
+.LR free(ptr) ;
+returns null
+.TP
+.B "realloc(0,\ 0)
+no-op; returns null
+.PD
+.PP
+.I Calloc
+returns a pointer to a block of memory of at least
+.I "n*szelem"
+bytes, initialised to zero.
+New code should use
+.I mallocz
+instead.
+.PP
+The argument to
+.I free
+is a pointer to a block of memory allocated by one of the routines above, which
+is returned to the allocation pool, or a null pointer, which is ignored.
+.PP
+When a block is allocated, sometimes there is some extra unused space at the end.
+.I Msize
+grows the block to encompass this unused space and returns the new number
+of bytes that may be used.
+.PP
+The memory allocator maintains two word-sized fields
+associated with each block, the ``malloc tag'' and the ``realloc tag''.
+By convention, the malloc tag is the PC that allocated the block,
+and the realloc tag the PC that last reallocated the block.
+These may be set or examined with
+.IR setmalloctag ,
+.IR getmalloctag ,
+.IR setrealloctag ,
+and
+.IR getrealloctag .
+When allocating blocks directly with
+.I malloc
+and
+.IR realloc ,
+these tags will be set properly.
+If a custom allocator wrapper is used,
+the allocator wrapper can set the tags
+itself (usually by passing the result of
+.IR getcallerpc (2)
+to
+.IR setmalloctag )
+to provide more useful information about
+the source of allocation.
+.PP
+.I Malloctopoolblock
+takes the address of a block returned by
+.I malloc
+and returns the address of the corresponding
+block allocated by the
+.IR pool (2)
+routines.
+.SH SOURCE
+.B /sys/src/9/port/alloc.c
+.SH DIAGNOSTICS
+All functions except
+.I smalloc
+return a null pointer if space is unavailable.
+If the allocated blocks have no malloc or realloc tags,
+.I getmalloctag
+and
+.I getrealloctag
+return
+.BR ~0 .
+.SH SEE ALSO
+.IR pool (2),
+.IR xalloc (9)
diff --git a/sys/man/9/newchan b/sys/man/9/newchan
new file mode 100644
index 0000000000..7cba54f9ea
--- /dev/null
+++ b/sys/man/9/newchan
@@ -0,0 +1,225 @@
+.TH NEWCHAN 9
+.SH NAME
+newchan, chanfree, cclose, eqqid, eqchan, isdir, fdtochan, namec \- channel operations
+.SH SYNOPSIS
+.ta \w'\fLChan* 'u
+.B
+Chan* newchan(void)
+.PP
+.B
+void chanfree(Chan *c)
+.PP
+.B
+int eqqid(Qid a, Qid b)
+.PP
+.B
+int eqchan(Chan *a, Chan *b, int pathonly)
+.PP
+.B
+void isdir(Chan *c)
+.PP
+.B
+Chan* fdtochan(Fgrp *f, int fd, int mode, int chkmnt, int iref)
+.PP
+.B
+Chan* namec(char *pathname, int amode, int omode, ulong perm)
+.PP
+.B
+void cclose(Chan *c)
+.SH DESCRIPTION
+A value of type
+.B Chan
+represents a kernel channel for I/O and name space operations.
+It has the following public structure:
+.IP
+.EX
+typedef struct Chan{
+ ushort type; /* driver name */
+ ulong dev; /* instance number */
+ ushort mode; /* open mode */
+ ushort flag; /* COPEN set once opened */
+ ulong offset; /* current file offset */
+ Qid qid; /* unique id (path, vers) */
+ Path* path; /* name by which it was accessed */
+.EE
+.PP
+.I Newchan
+returns a pointer to a newly allocated channel (sleeping if necessary until memory is available).
+Device drivers do not normally call
+.IR newchan
+directly, but instead allocate channels using either
+.IR devattach ,
+when a process attaches to the device's root,
+or
+.IR devclone ,
+when an existing channel is cloned;
+see
+.IR devattach (9).
+.PP
+.I Chanfree
+frees the channel structure
+.I c
+for reuse.
+.PP
+.I Eqqid
+returns 1 if
+.B Qid
+values
+.I a
+and
+.I b
+are equal
+(ie,
+both their
+.B path
+and
+.B vers
+members are equal);
+it returns 0 otherwise.
+.PP
+.I Eqchan
+returns 1 if
+.I a
+and
+.I b
+have the same
+.BR qid ,
+.BR type
+and
+.BR dev
+members
+(ie, they represent the same file);
+it returns 0 otherwise.
+If
+.I pathonly
+is non-zero, the comparison of the two
+.B qid
+members compares only their
+.B path
+values,
+ignoring the version field
+.BR vers .
+.PP
+.I Isdir
+checks that a given channel
+.I c
+is a directory.
+If so, it returns;
+otherwise, it generates an
+.IR error (9),
+.BR Enotdir .
+.PP
+The
+.B Fgrp
+structure represents an array of open files, each
+represented by a
+.BR Chan ,
+indexed by integer file descriptors.
+A given
+.B Fgrp
+can be shared between processes.
+.PP
+.I Fdtochan
+returns a pointer to the
+.B Chan
+corresponding to file descriptor
+.I fd
+in file descriptor group
+.I f
+(almost invariably
+.BR up->fgrp ,
+the file descriptor group for the current process).
+If
+.I mode
+is a valid mode for
+.IR open (2),
+typically
+.BR OREAD ,
+.B OWRITE
+or
+.BR ORDWR ,
+it must correspond to the mode with which
+.I fd
+was originally opened; if
+.I mode
+is
+.BR -1 ,
+no check is made.
+If
+.I chkmnt
+is non-zero,
+.I c
+must not be a channel in use by the mount driver
+.IR mnt (3).
+On successful return, if
+.I iref
+is non-zero, the channel's reference count has been incremented.
+.I Fdtochan
+calls
+.IR error (9)
+if it detects invalid uses, in particular an invalid file descriptor
+.IR fd .
+.PP
+.I Namec
+looks up a
+.I pathname
+in the current name space and returns a channel.
+.I Amode
+determines the mode of look up, and must be one of the constants below:
+.TF Aaccess
+.PD
+.TP
+.B Aaccess
+Access file for information, as in the stat command or call.
+.TP
+.B Atodir
+Access file as directory (the
+.B QTDIR
+bit of its
+.B qid.type
+must be set).
+.TP
+.B Aopen
+Access for I/O.
+.TP
+.B Amount
+Access directory to be mounted upon.
+.TP
+.B Acreate
+File is to be created.
+.PP
+If
+.I amode
+is
+.B Aopen
+or
+.BR Acreate ,
+.I omode
+should be a mode suitable for
+.IR open (2);
+if
+.BR Acreate ,
+.I perm
+should be valid file permissions.
+In all other cases,
+.I omode
+and
+.I perm
+can be zero.
+.PP
+.I Cclose
+decrements the reference count on
+.IR c ;
+if no further references remain, it
+calls the corresponding device's
+.B Dev.close
+to close the channel, and frees
+.IR c .
+.SH SOURCE
+.B /sys/src/9/port/chan.c
+.SH DIAGNOSTICS
+Most functions call
+.IR error (9)
+on any sort of error.
+.SH SEE ALSO
+.IR ref (9)
diff --git a/sys/man/9/panic b/sys/man/9/panic
new file mode 100644
index 0000000000..2f98be1824
--- /dev/null
+++ b/sys/man/9/panic
@@ -0,0 +1,25 @@
+.TH PANIC 9
+.SH NAME
+panic \- abandon hope
+.SH SYNOPSIS
+.ta \w'\fLchar* 'u
+.B
+void panic(char *fmt, ...)
+.SH DESCRIPTION
+.I Panic
+writes a message to the console and
+causes the system to give up the ghost.
+It enables interrupts, dumps the kernel stack,
+and halts the current processor;
+if more than one, others will gradually come to a halt.
+Depending on configuration settings, the platform-dependent
+.I exit
+might reboot the system.
+The format
+.I fmt
+and associated arguments are the same as those for
+.IR print (9).
+.I Panic
+adds a prefix
+.L "panic: "
+and a trailing newline.
diff --git a/sys/man/9/parsecmd b/sys/man/9/parsecmd
new file mode 100644
index 0000000000..0c1ef75fe1
--- /dev/null
+++ b/sys/man/9/parsecmd
@@ -0,0 +1,107 @@
+.TH PARSECMD 9
+.SH NAME
+parsecmd, cmderror, lookupcmd \- parse device commands
+.SH SYNOPSIS
+.ta \w'\fLCmdbuf* 'u
+.B
+Cmdbuf* parsecmd(char *a, int n)
+.PP
+.B
+void cmderror(Cmdbuf *cb, char *s)
+.PP
+.B
+Cmdtab* lookupcmd(Cmdbuf *cb, Cmdtab *ctab, int nctab)
+.SH DESCRIPTION
+.I Parsecmd
+is an interface to
+.I tokenize
+(see
+.IR getfields (2)),
+that safely parses a command, with blank-separated fields, as might be
+written to a device's
+.B ctl
+file.
+The buffer
+.I a
+and count
+.I n
+can be those passed to the driver's
+.I write
+function.
+.I Parsecmd
+converts the byte array (which might not be null-terminated) to a null-terminated string,
+trimming any trailing new line,
+before invoking
+.I tokenize
+to break the string into arguments, interpreting blank and tab as field separators
+when they are not quoted
+(in the style of
+.IR rc (1)).
+It returns a pointer to a dynamically-allocated
+.B Cmdbuf
+structure,
+which holds a copy of the string as
+modified by
+.IR parsefields ,
+and the resulting fields; it is defined as follows:
+.IP
+.EX
+.ta 6n +\w'char* 'u
+typedef
+struct Cmdbuf
+{
+ char buf[128];
+ char *f[16];
+ int nf;
+} Cmdbuf;
+.EE
+.PP
+The array
+.B f
+holds the field pointers;
+.B nf
+gives the number of fields.
+.B Cmdbuf
+is allocated by
+.I smalloc
+(see
+.IR malloc (9)),
+and the caller is responsible for freeing it using
+.IR free .
+.I Cmderror
+prepends the given format with the original command,
+then calls
+.IR error (9).
+.PP
+Command strings may be turned into a (typically enumerated)
+integer with
+.IR lookupcmd .
+The catchall
+.L *
+matches any text. Unrecognized commands, or commands
+given an unacceptable number of arguments generate a
+call to
+.IR error .
+The definition is as follows
+.IP
+.EX
+.ta 6n +\w'char* 'u
+struct Cmdtab
+{
+ int index;
+ char *cmd;
+ int narg;
+};
+.EE
+.PP
+The integer
+.B index
+is the number returned on command match.
+The string
+.B cmd
+is the command name, and
+.B narg
+is 0 (indicating a varadic function) or the
+number of arguments.
+.SH SOURCE
+.B /sys/src/9/port/parse.c
diff --git a/sys/man/9/qio b/sys/man/9/qio
new file mode 100644
index 0000000000..32e9b28fdc
--- /dev/null
+++ b/sys/man/9/qio
@@ -0,0 +1,480 @@
+.TH QIO 9
+.SH NAME
+qio: qget, qdiscard, qconsume, qpass, qproduce, qcopy, qopen, qbread, qread, qbwrite, qwrite, qiwrite, qfree, qclose, qhangup, qreopen, qlen, qwindow, qcanread, qsetlimit, qnoblock, qflush, qfull \- queued I/O for devices
+.SH SYNOPSIS
+.ta \w'\fLQueue* 'u
+.B
+Queue* qopen(int limit,int msg, void (*kick)(void*),void *arg)
+.PP
+.B
+void qhangup(Queue *q, char *reason)
+.PP
+.B
+void qclose(Queue *q)
+.PP
+.B
+void qreopen(Queue *q)
+.PP
+.B
+void qfree(Queue *q)
+.PP
+.B
+long qbwrite(Queue *q, Block *b)
+.PP
+.B
+long qwrite(Queue *q, void *buf, int len)
+.PP
+.B
+int qpass(Queue *q, Block *b)
+.PP
+.B
+int qpassnolim(Queue *q, Block *b)
+.PP
+.B
+int qproduce(Queue *q, void *buf, int len)
+.PP
+.B
+int qiwrite(Queue *q, void *buf, int len)
+.PP
+.B
+Block* qbread(Queue *q, int len)
+.PP
+.B
+long qread(Queue *q, void *buf, int len)
+.PP
+.B
+Block* qcopy(Queue *q, int len, ulong offset)
+.PP
+.B
+Block* qget(Queue *q)
+.PP
+.B
+int qconsume(Queue *q, void *buf, int len)
+.PP
+.B
+int qdiscard(Queue *q, int len)
+.PP
+.B
+void qflush(Queue *q)
+.PP
+.B
+int qlen(Queue *q)
+.PP
+.B
+int qwindow(Queue *q)
+.PP
+.B
+int qcanread(Queue *q)
+.PP
+.B
+void qsetlimit(Queue *q, int limit)
+.PP
+.B
+void qnoblock(Queue *q, int nonblock)
+.PP
+.B
+int qfull(Queue *q)
+.SH DESCRIPTION
+This suite of functions provides serial data buffering for device drivers.
+Data is stored in a
+.B Queue
+structure as a sequence of variable-sized
+.BR Blocks ;
+see
+.IR allocb (9).
+.PP
+.I Qopen
+initialises and returns a pointer to a new
+.BR Queue ,
+configuring it according to the following parameters:
+.TF limit
+.PD
+.TP
+.I limit
+Set the queue limit (high water mark) in bytes.
+.TP
+.I msg
+Set message mode if non-zero; otherwise, stream mode (discussed below).
+.TP
+.I kick
+Optional flow-control function called by
+.I qbread
+to restart writers, and by
+.I qbwrite
+(also
+.IR qiwrite )
+to restart readers.
+.TP
+.I arg
+Argument to pass to
+.I kick
+.PP
+.I Qhangup
+marks
+.I q
+as `hung up'
+for the given
+.IR reason
+.RB ( Ehungup
+by default).
+Subsequent attempts to write to the queue raise an
+.IR error (9).
+.I Qhangup
+does not flush the queue: subsequent read requests are
+handled normally until the queue empties.
+.I Qread
+and the other functions then return their conventional values
+for a hungup stream: 0, -1 or a null pointer, depending on the function.
+After a few such attempts by any process, an
+.IR error (9)
+is raised (typically
+.BR Ehungup )
+on each subsequent read.
+.PP
+If queued data is left unread, and not flushed by
+.I qflush
+or
+.IR qclose ,
+the data will again be readable following a subsequent
+.IR qreopen .
+.PP
+.I Qclose
+also marks a given
+.I q
+as `hung up',
+but removes and frees any queued data Blocks.
+.I Qclose
+ignores calls when
+.I q
+is null.
+.PP
+.I Qreopen
+makes a closed or hung up queue available for use again.
+The queue's data limit is reset to the
+.I limit
+value given when the queue was first created by
+.IR qopen ,
+cancelling the effect of any previous call to
+.IR qsetlimit .
+.PP
+.I Qfree
+closes
+.I q
+with
+.I qclose
+and frees it.
+The caller must ensure that no references remain;
+these functions do not keep a reference count.
+.SS "Flow control"
+The queue I/O routines provide a flow control mechanism to coordinate producers and consumers.
+Each queue has a limit on the number of bytes queued, its `high water mark',
+initially set when the queue is created, but adjustable by
+.IR qsetlimit ,
+below.
+The low water mark is not set explicitly:
+it is always half the current queue limit.
+When the high water mark is exceeded, writes normally block until a reader drains the
+queue below its low water mark; the writer is then allowed to proceed.
+Conversely, readers normally block when the queue is empty, until a writer
+arrives with data, or the queue is closed.
+.PP
+A queue can be given a
+.I kick
+function when the queue is created by
+.IR qopen .
+The function is invoked by
+.IR qread
+and
+.IR qbread ,
+to prod an output routine when the queue falls below the low-water mark, and by
+.IR qwrite ,
+.IR qbwrite
+and
+.IR qiwrite ,
+to notify a reader that a queue is no longer empty.
+Because
+.I kick
+is called from the reading (or writing) process, or an interrupt handler, it
+must not block.
+.PP
+Interrupt handlers must not
+.IR sleep (9),
+and are therefore restricted to using only the non-blocking functions described below.
+.SS "Stream mode and message mode"
+In stream mode,
+no read will return more than one
+block
+of data, but
+a read can split a block that contains more data than requested, leaving the remainder
+in a new block at the front of the Queue.
+Writes of more than the maximum
+.B Block
+size (currently 128k bytes)
+are split into as many Blocks as required, each written separately to the queue,
+in order, but with possible flow-control between them.
+The queue is locked meanwhile, however, so that data from other writers is not intermingled.
+.PP
+In message mode, by contrast, a read will return at most
+one block's worth of data, but the remainder of a partially-read block will be discarded,
+not returned to the queue.
+If a write count exceeds the maximum
+.B Block
+size, the excess data is discarded:
+at most a single block can be queued.
+.PP
+The mode of the queue should be taken into account in the descriptions below
+of the following functions:
+.IR qwrite ,
+.IR qiwrite ,
+.IR qbread
+and
+.IR qconsume .
+No other functions are aware of the distinction.
+.SS "Write operations (flow controlled)"
+.I Qwrite
+copies
+.I len
+bytes of data from
+.I buf
+into one or more
+.B Blocks
+which it places on the
+.IR q .
+.I Qwrite
+always returns
+.IR len .
+It can implement message mode.
+.PP
+.I Qbwrite
+places the single Block
+.I b
+on the tail of
+.IR q ,
+waking any sleeping reader.
+If the queue is full, the
+writing process blocks until a reader
+has reduced the queued data to
+the low-water mark;
+if the queue is non-blocking
+(see
+.I qnoblock
+below),
+the data is discarded without notice.
+.I Qbwrite
+normally returns
+.IR len ,
+but raises an
+.IR error (9)
+if the queue is closed (see
+.I qhangup
+and
+.IR qclose ).
+The block
+.I b
+is always freed.
+Note that
+.I b
+can be empty (zero-length), to punctuate the data in a queue.
+.I Qbwrite
+cannot handle a list of Blocks;
+.I qpass
+must be used instead.
+.SS Non-blocking writes
+.PP
+.I Qproduce
+returns -1immediately if
+.I q
+is full.
+Otherwise, it queues
+.I len
+bytes of data from
+.I buf
+in a single
+.B Block
+on
+.I q
+and returns the number of bytes written.
+.PP
+.I Qpass
+attempts to place the list of Blocks headed by
+.I b
+on
+.IR q ,
+returning the number of bytes written if successful.
+If
+.I q
+was full, it
+frees the Block list
+.I b
+and returns -1.
+.PP
+.I Qpassnolim
+puts the Block list
+.I b
+on
+.I q
+regardless of flow control; it returns the number of bytes in the list
+.IR b .
+.PP
+.I Qiwrite
+is a variant of
+.I qwrite
+used exclusively by the kernel print function,
+to allow printing by interrupt handlers;
+.I qiwrite
+could be used with care by other routines, but
+.IR qproduce
+is preferable.
+.I Qiwrite
+writes the
+.I len
+bytes of data at
+.I buf
+into the
+.I q
+without regard to flow control;
+the writer never blocks.
+The queue is assumed to be open.
+.I Qiwrite
+always returns
+.IR len .
+It can implement message mode.
+.SS "Read operations (flow controlled)"
+.I Qbread
+blocks until data arrives on
+.IR q ,
+then
+returns the first
+.BR Block ;
+it limits the data returned
+to
+.I len
+bytes (in the manner depending on the mode of
+.IR q ).
+It returns a null pointer if the queue has hung up.
+.PP
+.I Qread
+reads a Block of up to
+.I len
+bytes from
+.I q
+using
+.IR qbread ,
+and copies the data in the Block into
+.IR buf ,
+then frees the Block and returns
+the number of bytes read.
+.I Qread
+returns 0 on end of file or error (hangup).
+It can implement message mode.
+.PP
+.I Qcopy
+returns a Block with a copy of data from the queue (the data remains on the queue).
+The copy begins
+.I offset
+bytes into the queue's data and proceeds until
+.I len
+bytes have been copied or no more data remains.
+The Block's read and write pointers delimit the data copied into it.
+.I Qcopy
+can be used by a reliable transport protocol to copy a packet for transmission,
+leaving the data queued for possible retransmission, if unacknowledged.
+.SS Non-blocking reads
+.PP
+.I Qconsume
+returns -1 immediately if
+.I q
+is empty.
+Otherwise, it
+copies up to
+.I len
+bytes from the first
+.B Block
+on the queue into
+.IR buf ,
+returning the number of bytes copied.
+It can implement message mode.
+.PP
+.I Qget
+returns a null pointer immediately if
+.I q
+is empty or closed.
+Otherwise, it
+returns the first
+.B Block
+on the queue.
+.SS "Discard and flush"
+.I Qdiscard
+removes the first
+.I len
+data bytes from
+.IR q ;
+it returns the number of bytes actually discarded, in case
+the queue is shorter than
+.IR len .
+If the queue drains below the low-water mark,
+.I qdiscard
+wakes any sleeping writers.
+Since it does not block,
+.I qdiscard
+can safely be called from interrupt handlers.
+It is useful in transport protocol drivers to remove data from the queue
+once acknowledged.
+.PP
+.I Qflush
+discards all data waiting on
+.IR q ,
+waking any waiting writer.
+.SS "Queue status"
+The following functions return a Queue's status.
+Note that between a call to one of these functions and another operation,
+the state can change if a driver allows concurrent access by
+either another process or an interrupt handler.
+.PP
+.I Qlen
+returns the number of bytes queued on
+.IR q .
+.PP
+.I Qwindow
+returns the number of bytes that can be written before reaching the queue's high-water mark.
+A return of 0 means that a write operation will certainly block;
+a non-zero return gives no guarantees (see
+.IR qfull ,
+below).
+.PP
+.I Qcanread
+returns 1 if any data queued is queued. A subsequent read operation will not block.
+.PP
+.I Qfull
+returns non-zero if
+.I q
+is flow-controlled and a write would block or a non-blocking write would return an error.
+(Note that the implementation allows
+.I qwindow
+to return non-zero yet
+.I qfull
+to return true.)
+.SS "Queue control"
+.I Qsetlimit
+sets the high water mark for the queue to
+.IR limit .
+Note that
+.I qopen
+saves the initial queue limit.
+If the queue is closed and reopened (by
+.IR qreopen )
+that initial limit is restored.
+.PP
+.I Qnoblock
+sets or resets non-blocking mode.
+If
+.I nonblock
+is non-zero,
+the queue becomes non-blocking, and
+data written to a queue beyond its high water mark is discarded
+by calls that would otherwise block.
+.SH SOURCE
+.B /sys/src/9/port/qio.c
+.SH SEE ALSO
+.IR allocb (9),
+.IR ref (9)
diff --git a/sys/man/9/qlock b/sys/man/9/qlock
new file mode 100644
index 0000000000..d0acf170ca
--- /dev/null
+++ b/sys/man/9/qlock
@@ -0,0 +1,105 @@
+.TH QLOCK 9
+.SH NAME
+qlock, qunlock, canqlock, rlock, runlock, wlock, wunlock \- serial synchronisation
+.SH SYNOPSIS
+.ta \w'\fLvoid 'u
+.B
+void qlock(QLock *l)
+.PP
+.B
+void qunlock(QLock *l)
+.PP
+.B
+int canqlock(QLock *l)
+.PP
+.B
+void rlock(RWlock *l)
+.PP
+.B
+void runlock(RWlock *l)
+.PP
+.B
+int canrlock(RWlock *l)
+.PP
+.B
+void wlock(RWlock *l)
+.PP
+.B
+void wunlock(RWlock *l)
+.SH DESCRIPTION
+The primitive locking functions described in
+.IR lock (9)
+guarantee mutual exclusion, but they implement spin locks,
+and should not be used if the process might
+.IR sleep (9)
+within a critical section.
+The following functions serialise access to a resource by forming an orderly
+queue of processes.
+.PP
+Each resource to be controlled is given an associated
+.B QLock
+structure; it is usually most straightforward to put the
+.B QLock
+in the structure that represents the resource.
+It must be initialised to zero before use
+(as guaranteed for global variables and for structures allocated by
+.IR malloc ).
+.PP
+On return from
+.IR qlock ,
+the process has acquired the lock
+.IR l ,
+and can assume exclusive access to the associated resource.
+If the lock is not immediately available, the requesting process is placed on a
+FIFO queue of processes that have requested the lock.
+Processes on this list are blocked in the
+.L Queueing
+state.
+.PP
+.I Qunlock
+unlocks
+.I l
+and schedules the first process queued for it (if any).
+.PP
+.I Canqlock
+is a non-blocking form of
+.IR qlock .
+It tries to obtain the lock
+.I l
+and returns true if successful, and 0 otherwise;
+it always returns immediately.
+.PP
+.B RWlock
+is a form of lock for resources that have distinct readers and writers.
+It allows concurrent readers but gives each writer exclusive access.
+A caller announces its read or write intentions by choice of lock (and unlock) function;
+the system assumes the caller will not modify a structure accessed under read lock.
+.PP
+.I Rlock
+acquires
+.I l
+for reading.
+The holder can read but agrees not to modify the resource.
+There may be several concurrent readers.
+.I Canrlock
+is non-blocking: it returns non-zero if it successfully acquired the lock immediately,
+and 0 if the resource was unavailable.
+.PP
+.I Runlock
+returns a read lock;
+the last reader out enables the first writer waiting (if any).
+.PP
+.I Wlock
+acquires a write lock.
+The holder of such a lock may assume exclusive access to the resource,
+and is allowed to modify it.
+.PP
+.I Wunlock
+returns a write lock.
+The next pending process, whether reader or writer, is scheduled.
+.SH SOURCE
+.B /sys/src/9/port/qlock.c
+.br
+.SH SEE ALSO
+.IR lock (9),
+.IR splhi (9)
diff --git a/sys/man/9/readnum b/sys/man/9/readnum
new file mode 100644
index 0000000000..05944d3bdc
--- /dev/null
+++ b/sys/man/9/readnum
@@ -0,0 +1,58 @@
+.TH READNUM 9
+.SH NAME
+readnum, readstr \- return values from read from device
+.SH SYNOPSIS
+.ta \w'\fLchar* 'u
+.B
+int readstr(ulong off, char *buf, ulong n, char *str)
+.PP
+.B
+int readnum(ulong off, char *buf, ulong n, ulong val, int size)
+.SH DESCRIPTION
+.I Readstr
+and
+.I readnum
+simplify the return of strings and numbers from device
+.I read
+routines,
+because they deal with any buffering and boundary cases.
+Several parameters to the read call are often handed on directly
+to these functions:
+the file offset, as
+.IR off ;
+the address of the user's buffer, as
+.IR buf ;
+and the number of bytes requested, as
+.IR n .
+Both functions return the number of bytes they have stored in
+.IR buf ,
+and which can often be returned directly from the device read routine.
+.PP
+.I Readstr
+satisfies a read by copying data into
+.I buf
+from the NUL-terminated string in
+.IR str .
+The data transferred is selected and limited by
+.IR off ,
+.I n
+and the length of
+.IR str .
+.PP
+.I Readnum
+converts the unsigned integer
+.I val
+to a decimal representation in
+.IR buf .
+The value is right-justified in a field of
+.IR size "-1"
+places and is followed by a blank.
+.I Size
+can be the global constant
+.L NUMSIZE
+for 32-bit integers;
+the largest
+.I size
+allowed is 64 bytes.
+.SH SOURCE
+.B /sys/src/9/port/devcons.c
diff --git a/sys/man/9/ref b/sys/man/9/ref
new file mode 100644
index 0000000000..25d0349b72
--- /dev/null
+++ b/sys/man/9/ref
@@ -0,0 +1,59 @@
+.TH REF 9
+.SH NAME
+Ref, incref, decref \- reference counts
+.SH SYNOPSIS
+.ta \w'\fLchar* 'u
+.PP
+.B
+int incref(Ref *r)
+.PP
+.B
+int decref(Ref *r)
+.SH DESCRIPTION
+A
+.B Ref
+structure holds a reference count for a data structure:
+.IP
+.EX
+typedef struct
+struct Ref
+{
+ Lock;
+ long ref;
+} Ref;
+.EE
+.PP
+The reference count proper is found in
+.BR ref ;
+the
+.B Lock
+prevents concurrent updates
+(see
+.IR lock (9)).
+.PP
+.I Incref
+atomically increments the reference count
+.IR r ,
+and returns the new count.
+.PP
+.I Decref
+atomically decrements the reference count
+.IR r ,
+and returns the new count.
+.SH EXAMPLES
+Release a structure containing a
+.B Ref
+on last use.
+.IP
+.EX
+if(decref(s) == 0)
+ free(s);
+.EE
+.SH SOURCE
+.B /sys/src/9/port/chan.c
+.SH DIAGNOSTICS
+.I Decref
+will
+.IR panic (9)
+if the count goes negative,
+revealing a reference counting bug.
diff --git a/sys/man/9/seconds b/sys/man/9/seconds
new file mode 100644
index 0000000000..7f211cb36b
--- /dev/null
+++ b/sys/man/9/seconds
@@ -0,0 +1,93 @@
+.TH SECONDS 9
+.SH NAME
+seconds, ticks, fastticks, HZ, MS2HZ, MS2TK, TK2MS, TK2SEC \- kernel times and time conversions
+.SH SYNOPSIS
+.ta \w'\fL#define 'u
+.B
+long seconds(void)
+.PP
+.B
+m->ticks
+.br
+MACHP(0)->ticks
+.PP
+.B
+vlong fastticks(uvlong *hz)
+.PP
+.EX
+#define HZ ...
+#define MS2HZ(t) ...
+#define TK2SEC(t) ...
+#define TK2MS(t) ...
+#define MS2TK(m) ...
+.EE
+.SH DESCRIPTION
+.I Seconds
+returns the system's idea of the current time as the number of seconds
+since the start of the epoch
+(00:00:00 GMT, January 1, 1970).
+.PP
+The
+.B ticks
+field of the
+.B Mach
+structure pointed to by
+.B m
+returns the number of system-dependent clock ticks on the
+given processor since system boot.
+On a multiprocessor,
+.B MACHP(0)
+is sometimes used to provide a reference time, since the tick value
+might vary slightly across processors.
+.PP
+.I Fastticks
+returns the number of ticks since boot as measured by the
+fastest clock provided by the platform.
+The frequency of the clock, in ticks per second,
+is returned through
+.IR hz ,
+unless it is nil.
+.PP
+The system clock frequencies are platform-dependent.
+Several symbolic constants and macro functions are defined by
+the file
+.B mem.h
+to convert between different time units:
+.TF TK2SEC(t)
+.PD
+.TP
+.B HZ
+The number of clock ticks per second.
+.TP
+.B MS2HZ
+Milliseconds per clock tick.
+.TP
+.BI TK2SEC( t )
+Convert
+.I t
+clock ticks to seconds and return the result (truncating not rounding).
+.TP
+.BI TK2MS( t )
+Convert
+.I t
+clock ticks to milliseconds and return the result.
+.TP
+.BI MS2TK( m )
+Convert
+.I m
+milliseconds to clock ticks and return the result (truncating).
+.PP
+The functions are often used to calculate delays for timing functions,
+for instance:
+.IP
+.EX
+if(atactlrwait(dp->cp, DHmagic, 0, MS2TK(100))){
+ ...
+}
+.EE
+.SH SOURCE
+.B /sys/src/9/*/mem.h
+.br
+.B /sys/src/9/*/clock.c
+.br
+.B /sys/src/9/port/tod.c
diff --git a/sys/man/9/sleep b/sys/man/9/sleep
new file mode 100644
index 0000000000..7c3aa445ce
--- /dev/null
+++ b/sys/man/9/sleep
@@ -0,0 +1,123 @@
+.TH SLEEP 9
+.SH NAME
+sleep, wakeup, tsleep, return0 \- process synchronisation
+.SH SYNOPSIS
+.ta \w'\fLvoid 'u
+.B
+void sleep(Rendez *r, int (*f)(void*), void *arg)
+.PP
+.B
+void wakeup(Rendez *r)
+.PP
+.B
+void tsleep(Rendez *r, int (*f)(void*), void *arg, int ms)
+.PP
+.B
+int return0(void *arg)
+.PP
+.SH DESCRIPTION
+A process running in the kernel can use these functions to
+synchronise with an interrupt handler or another kernel process.
+In particular, they are used by device drivers to wait for an event to be signalled on
+receipt of an interrupt.
+(In practice, they are most often used indirectly, through
+.IR qio (9)
+for instance.)
+.PP
+The caller of
+.I sleep
+and a caller of
+.I wakeup
+share a
+.B Rendez
+structure, to provide a rendezvous point between them
+to synchronise on an event.
+.I Sleep
+uses a condition function
+.I f
+that returns true if the event has occurred.
+.PP
+.I Sleep
+evaluates
+.IB f ( arg ).
+If true, the event has happened and
+.I sleep
+returns immediately.
+Otherwise,
+.I sleep
+blocks on the event variable
+.IR r ,
+awaiting
+.IR wakeup .
+.PP
+.I Wakeup
+is called by either a process or an interrupt handler to wake any process
+sleeping at
+.IR r ,
+signifying that the corresponding condition is true (the event has occurred).
+It has no effect if there is no sleeping process.
+.PP
+.I Tsleep
+is similar to
+.IR sleep ,
+except that if the condition
+.IB f ( arg )
+is false and the caller does sleep,
+and nothing else wakes it within
+.I ms
+millliseconds,
+the system will wake it.
+.IR Tsleep 's
+caller must check its environment to decide whether timeout or the event
+occurred.
+The timing provided by
+.I tsleep
+is imprecise, but adequate in practice for the normal use of protecting against
+lost interrupts and otherwise unresponsive devices or software.
+.PP
+.I Return0
+ignores its arguments and returns zero. It is commonly used as
+the predicate
+.I f
+in a call to
+.I tsleep
+to obtain a time delay, using a
+.B Rendez
+variable
+.B sleep
+in the
+.B Proc
+structure, for example:
+.IP
+.B tsleep(&up->sleep, return0, nil, 10);
+.PP
+Both
+.I sleep
+and
+.I tsleep
+can be interrupted by
+.IR swiproc
+(see
+.IR kproc (9)),
+causing a non-local goto through a call to
+.IR error (9).
+.SH SOURCE
+.B /sys/src/9/port/proc.c
+.SH DIAGNOSTICS
+There can be at most one process waiting on a
+.BR Rendez ,
+and if two processes collide, the system will
+.IR panic (9)
+.RB (`` "double sleep" '').
+Access to a
+.B Rendez
+must therefore be serialised by some other mechanism, usually
+.IR qlock (9).
+.SH SEE ALSO
+.IR lock (9),
+.IR qlock (9),
+.IR delay (9)
+.br
+``Process Sleep and Wakeup on a Shared-memory Multiprocessor'',
+in
+.I "Plan 9 Programmer's Manual: Volume 2".
diff --git a/sys/man/9/splhi b/sys/man/9/splhi
new file mode 100644
index 0000000000..66483850cc
--- /dev/null
+++ b/sys/man/9/splhi
@@ -0,0 +1,57 @@
+.TH SPLHI 9
+.SH NAME
+splhi, spllo, splx, islo \- enable and disable interrupts
+.SH SYNOPSIS
+.ta \w'\fLvoid 'u
+.B
+int spllo(void)
+.PP
+.B
+int splhi(void)
+.PP
+.B
+void splx(int x)
+.PP
+.B
+int islo(void)
+.SH DESCRIPTION
+These primitives enable and disable maskable interrupts on the current
+processor.
+Generally, device drivers should use
+.I ilock
+(see
+.IR lock (9)),
+.IR sleep (9),
+or the functions in
+.IR qio (9)
+to control interaction between processes and interrupt handlers.
+Those routines (but not these) provide correct synchronisation on multiprocessors.
+.PP
+.I Spllo
+enables interrupts and returns a flag representing the previous interrupt enable state.
+It must not normally be called from interrupt level.
+.PP
+.I Splhi
+disables all maskable interrupts and returns the previous interrupt enable state.
+The period during which interrupts are disabled had best be short,
+or real-time applications will suffer.
+.PP
+.I Splx
+restores the interrupt enable state
+state to
+.IR x ,
+which must be a value returned
+by a previous call to
+.I splhi
+or
+.IR spllo .
+.PP
+.I Islo
+returns true (non-zero) if interrupts are currently enabled, and 0 otherwise.
+.SH SOURCE
+.B /sys/src/9/*/l.s
+.SH SEE ALSO
+.IR lock (9),
+.IR qio (9),
+.IR sleep (9),
+.IR intrenable (9)
diff --git a/sys/man/9/uartp8250 b/sys/man/9/uartp8250
new file mode 100644
index 0000000000..2db0312ab6
--- /dev/null
+++ b/sys/man/9/uartp8250
@@ -0,0 +1,77 @@
+.TH UARTP8250 9
+.SH NAME
+uartp8250 \- portable 8250-style uarts
+.SH SYNOPSIS
+.EX
+#include "../port/uartp8250.h"
+
+typedef struct Ctlr Ctlr;
+struct Ctlr {
+ void *reg;
+ uint (*get)(void*, int);
+ void (*set)(void*, int, uint);
+ int (*itr)(Uart*, int);
+
+ int irq;
+ int tbdf;
+ int iena;
+
+ uchar sticky[8];
+
+ Lock;
+ int hasfifo;
+ int checkfifo;
+ int fena;
+};
+.EE
+.PP
+.ta \w'\fLPhysUart 'u
+.PP
+.B
+PhysUart p8250physuart;
+.PP
+.B
+void i8250interrupt(Ureg*, void*);
+.SH DESCRIPTION
+P8250 provides a portable interface for 8250-style uarts.
+All necessary functions are provided except for
+.BR get ,
+.BR set ,
+and
+.BR itr .
+These functions get or set an 8250 register or enable
+or disable the interrupt, respectively. Since the
+.B PhysUart
+structure is required for device discovery, a dummy
+version needs to be provided
+.IP
+.EX
+PhysUart myphysuart = {
+ .name = "myuart",
+ .pnp = mypnp,
+};
+.EE
+.PP
+On entry of the pnp function, the
+.B PhysUart
+can be filled out:
+.EX
+ memmove(&myphysuart, &p8250physuart, sizeof(PhysUart));
+ myphysuart.name = "myuart";
+ myphysuart.pnp = mypnp;
+.EE
+.PP
+as can the
+.B Ctlr
+structure, which is assigned to
+.BR "uart->regs" .
+.SH SOURCE
+.B /sys/src/9/port/uartp8250.h
+.br
+.B /sys/src/9/port/uartp8250.c
+.SH "SEE ALSO"
+.IR uart (3).
+.SH BUGS
+The
+.B PhysUart
+is uncomfortable to use for device discovery.
diff --git a/sys/man/9/xalloc b/sys/man/9/xalloc
new file mode 100644
index 0000000000..dc63223fc0
--- /dev/null
+++ b/sys/man/9/xalloc
@@ -0,0 +1,72 @@
+.TH XALLOC 9
+.SH NAME
+xalloc, xspanalloc, xfree \- basic memory management
+.SH SYNOPSIS
+.ta \w'\fLvoid* 'u
+.B
+void* xalloc(ulong size)
+.PP
+.B
+void* xspanalloc(ulong size, int align, ulong span)
+.PP
+.B
+void xfree(void *p)
+.SH DESCRIPTION
+.I Xalloc
+and
+.I xfree
+are primitives used by higher-level memory allocators in the kernel,
+such as
+.IR malloc (9).
+They are not intended for use directly by most kernel routines.
+The main exceptions are routines that permanently allocate large structures,
+or need the special alignment properties guaranteed by
+.IR xspanalloc .
+.PP
+.I Xalloc
+returns a pointer to a range of size bytes of memory. The memory will be zero filled and aligned on a 8 byte
+.RB ( BY2V )
+address. If the memory is not available,
+.B xalloc
+returns a null pointer.
+.PP
+.I Xspanalloc
+allocates memory given alignment and spanning constraints.
+The block returned will contain
+.I size
+bytes, aligned on a boundary that is
+.BI "0 mod" " align,"
+in such a way that the memory in the block does not
+span an address that is
+.BI "0 mod" " span."
+.I Xspanalloc
+is intended for use
+allocating hardware data structures (eg, page tables) or I/O buffers
+that must satisfy specific alignment restrictions.
+If
+.I xspanalloc
+cannot allocate memory to satisfy the given constraints, it will
+.IR panic (9).
+The technique it uses can sometimes cause memory to be wasted.
+Consequently,
+.I xspanalloc
+should be used sparingly.
+.PP
+.I Xfree
+frees the block of memory at
+.IR p ,
+which must be an address previously returned by
+.I xalloc
+(not
+.IR xspanalloc ).
+.SS Allocation status
+Some memory allocation statistics are written to the console in response to
+the debugging sequence
+.LR "control-T control-T x" .
+The output includes the total free space, the number of free holes,
+and a summary of active holes.
+Each line shows `address top size'.
+.SH SOURCE
+.B /sys/src/9/port/xalloc.c
+.SH SEE ALSO
+.IR malloc (9)
diff --git a/sys/man/9k/panic b/sys/man/9k/panic
new file mode 100644
index 0000000000..3361505216
--- /dev/null
+++ b/sys/man/9k/panic
@@ -0,0 +1,62 @@
+.TH PANIC 9k
+.SH NAME
+archreset, exit, panic, ndnr \- abandon hope
+.SH SYNOPSIS
+.ta \w'\fLchar* 'u
+.B
+void archreset(void)
+.br
+.B
+void exit(int ispanic)
+.br
+.B
+void ndnr(void)
+.br
+.B
+void panic(char *fmt, ...)
+.SH DESCRIPTION
+.PP
+.I Archreset
+reboots the machine.
+.PP
+Depending on configuration settings, the platform-dependent
+.I exit
+might reboot the system. If
+.I ispanic
+is set,
+.I panic
+is called.
+.PP
+.I Ndnr
+(no deposit, no return)
+disables all
+interrupt sources and halts the current processor.
+.PP
+.I Panic
+writes a message to the console and
+causes the system to give up the ghost.
+It disables interrupts, dumps the kernel stack,
+and halts the current processor;
+if more than one, others will gradually come to a halt.
+A subsequent
+.I panic
+on a different processor will halt that processor with
+.IR ndnr;
+a recursive
+.I panic
+will reboot the machine with
+.IR archreset.
+.PP
+The format
+.I fmt
+and associated arguments are the same as those for
+.IR print (9).
+.I Panic
+adds a prefix
+.L "panic: cpu\fIn\fP:"
+and a trailing newline.
+.SH "SEE ALSO"
+.IR panic (9)
+.SH BUGS
+Note the differences with
+.IR panic (9).
diff --git a/sys/man/9k/physalloc b/sys/man/9k/physalloc
new file mode 100644
index 0000000000..c61b12bdf2
--- /dev/null
+++ b/sys/man/9k/physalloc
@@ -0,0 +1,44 @@
+.TH PHYSALLOC 9
+.SH NAME
+physalloc, physfree, phystag, physinit, physallocdump \- kernel buddy allocator for physical addresses
+.SH SYNOPSIS
+.ta \w'\fLuintmem 'u
+.de PB
+.PP
+.ft L
+.nf
+..
+.PB
+void physinit(uintmem pa, u64int size)
+.PB
+uintmem physalloc(u64int size, int *colorp, void *tag)
+.PB
+void* phystag(uintmem pa)
+.PB
+void physfree(uintmem pa, u64int size)
+.PB
+char* seprintphysstats(char *s, char *e)
+.SH DESCRIPTION
+The kernel contains a buddy allocator to hand out large chunks of
+memory outside the kernel heap. The buddy allocator does not
+assign virtual addresses. The map is populated by one or more calls to
+.IR physinit .
+.I Physalloc
+allocates a region of the given color with the given tag. If the color
+is -1, then any memory color may be used, otherwise only memory
+of the given color will be allocated. The
+.B tag
+is user-defined. Calls to
+.I phystag
+map addresses in the allocation back to
+.BR tag .
+Allocated regions are freed with
+.IR physfree .
+Stats may be put in a buffer with
+.IR seprintstats ,
+which takes a pointer to a buffer and its end as
+.IR seprint .
+.SH SOURCE
+.B /sys/src/9k/k10/physalloc.c
+.SH "SEE ALSO"
+.IR qmalloc (9k),
diff --git a/sys/man/9k/qmalloc b/sys/man/9k/qmalloc
new file mode 100644
index 0000000000..530311fca0
--- /dev/null
+++ b/sys/man/9k/qmalloc
@@ -0,0 +1,184 @@
+.TH QMALLOC 9
+.SH NAME
+qmalloc \- quickfit malloc
+malloc, mallocz, smalloc, realloc, calloc, free, msize, setmalloctag, setrealloctag, getmalloctag, getrealloctag, mallocinit, mallocsummary \- quickfit kernel memory allocator
+.SH SYNOPSIS
+.ta \w'\fLvoid* 'u
+.B
+void* malloc(usize size)
+.PP
+.B
+void* mallocalign(usize size, usize align, long offset, usize span)
+.PP
+.B
+void* mallocz(usize size, int clr)
+.PP
+.B
+void* smalloc(usize size)
+.PP
+.B
+void* realloc(void *p, usize size)
+.PP
+.B
+void* calloc(ulong n, usize szelem)
+.PP
+.B
+void free(void *ptr)
+.PP
+.B
+ulong msize(void *ptr)
+.PP
+.B
+void setmalloctag(void *ptr, ulong tag)
+.PP
+.B
+ulong getmalloctag(void *ptr)
+.PP
+.B
+void setrealloctag(void *ptr, ulong tag)
+.PP
+.B
+ulong getrealloctag(void *ptr)
+.PP
+.B
+void mallocinit(void)
+.B
+void mallocsummary(void)
+.PP
+.SH DESCRIPTION
+These are kernel versions of the functions in
+.IR malloc (2).
+They allocate memory with Quickfit with an allocator
+from Kernighan & Ritchie.
+The allocation is currently fixed, but could call
+.IR physalloc (9k)
+in the future.
+All but
+.I smalloc
+(which calls
+.IR sleep (9))
+may safely be called by interrupt handlers.
+.PP
+.I Malloc
+returns a pointer to a block of at least
+.I size
+bytes, initialised to zero.
+The block is suitably aligned for storage of any type of object.
+The call
+.B malloc(0)
+returns a valid pointer rather than null.
+.I Mallocz
+is similar, but only clears the memory if
+.I clr
+is non-zero.
+.PP
+.I Smalloc
+returns a pointer to a block of
+.I size
+bytes, initialised to zero.
+If the memory is not immediately available,
+.I smalloc
+retries every 100 milliseconds until the memory is acquired.
+.PP
+.I Mallocalign
+allocates a block of at least
+.I n
+bytes of memory respecting alignment contraints.
+If
+.I align
+is non-zero,
+the returned pointer is aligned to be equal to
+.I offset
+modulo
+.IR align .
+If
+.I span
+is non-zero,
+the
+.I n
+byte block allocated will not span a
+.IR span -byte
+boundary.
+.PP
+.I Realloc
+changes the size of the block pointed to by
+.I p
+to
+.I size
+bytes,
+if possible without moving the data,
+and returns a pointer to the block.
+The contents are unchanged up to the lesser of old and new sizes,
+and any new space allocated is initialised to zero.
+.I Realloc
+takes on special meanings when one or both arguments are zero:
+.TP
+.B "realloc(0,\ size)
+means
+.LR malloc(size) ;
+returns a pointer to the newly-allocated memory
+.TP
+.B "realloc(ptr,\ 0)
+means
+.LR free(ptr) ;
+returns null
+.TP
+.B "realloc(0,\ 0)
+no-op; returns null
+.PD
+.PP
+.I Calloc
+returns a pointer to a block of memory of at least
+.I "n*szelem"
+bytes, initialised to zero.
+New code should use
+.I mallocz
+instead.
+.PP
+The argument to
+.I free
+is a pointer to a block of memory allocated by one of the routines above, which
+is returned to the allocation pool, or a null pointer, which is ignored.
+.PP
+When a block is allocated, sometimes there is some extra unused space at the end.
+.I Msize
+grows the block to encompass this unused space and returns the new number
+of bytes that may be used.
+.PP
+The memory allocator does not maintain ``malloc tag'' and the ``realloc tag'',
+but the functions
+.IR setmalloctag ,
+.IR getmalloctag ,
+.IR setrealloctag ,
+and
+.IR getrealloctag
+are provided for compaibility with the
+.IR pool (2)
+library.
+.PP
+.I Mallocinit
+must be called before
+.I malloc
+is used.
+.I Mallocsummary
+prints a short summary of the allocator's state on the console.
+.SH SOURCE
+.B /sys/src/9/port/qmalloc.c
+.br
+.B /sys/src/9k/port/qmalloc.c
+.SH DIAGNOSTICS
+All functions except
+.I smalloc
+return a null pointer if space is unavailable.
+.SH SEE ALSO
+.IR "The C Programming Language" ,
+2ed, Brian Kernighan and Dennis Ritchie,
+chapter 8 §7: Example—Storage Allocator.
+.br
+.I "Quickfit: An efficient algorithm"
+.I for heap storage allocation" ,
+Charles B. Weinstock and William A. Wulf.
+ACM SIGPLAN Notices, 23(10):141—144, October 1988.
+.br
+.IR pool (2),
+.IR physalloc (9k)
diff --git a/sys/man/index.html b/sys/man/index.html
index 26e92fdae2..d1853cf798 100644
--- a/sys/man/index.html
+++ b/sys/man/index.html
@@ -26,6 +26,7 @@ Plan 9 Manual Section by Section in HTML
| 6 | File formats, misc
|
| 7 | Databases
|
| 8 | System administration
+ |
| 9 | Kernel functions
Keyword search
@@ -53,6 +54,7 @@ Look up a specific man page
|