From d36c0dea64b6742b0ca345a1f18c93f12862056db29ab01c1640ca2791d10efd Mon Sep 17 00:00:00 2001 From: Thomas Renninger Date: Tue, 25 Jul 2023 15:16:43 +0000 Subject: [PATCH] Accepting request 1100382 from home:trenn:branches:systemsmanagement - Fix: ipmitool duplicates the timestamp (bsc#1213390) A Fix-time-format-for-sel-list-v.patch - Remove: Make-IANA-PEN-download-configurable (is mainline) D 0006-Make-IANA-PEN-download-configurable-fix-uninitalized.patch - Update to version 1.8.19.13.gbe11d94: * configure.ac: allow disabling registry downloads * lan: channel: Fix set alert on/off * make: use correct docdir variable provided by autotools * Do not require the IANA PEN registry file * configure.ac: fix readline static build * Update github actions for modern OSes * Update macos target name in github actions * delloem: Fix the unalign bug in arm64 * lanplus: Realloc the msg if the payload_length gets updated * fru print: Add area checksum verification * fru: Add decoder for multirec system mgmt records * Fix enterprise-numbers URL * Update issue templates OBS-URL: https://build.opensuse.org/request/show/1100382 OBS-URL: https://build.opensuse.org/package/show/systemsmanagement/ipmitool?expand=0&rev=64 --- ...wnload-configurable-fix-uninitalized.patch | 130 - Fix-time-format-for-sel-list-v.patch | 56 + _servicedata | 2 +- enterprise-numbers | 8386 ++++++++++++++--- ipmitool-1.8.19.0.g19d7878.obscpio | 3 - ipmitool-1.8.19.13.gbe11d94.obscpio | 3 + ipmitool.changes | 22 + ipmitool.obsinfo | 6 +- ipmitool.spec | 7 +- 9 files changed, 7334 insertions(+), 1281 deletions(-) delete mode 100644 0006-Make-IANA-PEN-download-configurable-fix-uninitalized.patch create mode 100644 Fix-time-format-for-sel-list-v.patch delete mode 100644 ipmitool-1.8.19.0.g19d7878.obscpio create mode 100644 ipmitool-1.8.19.13.gbe11d94.obscpio diff --git a/0006-Make-IANA-PEN-download-configurable-fix-uninitalized.patch b/0006-Make-IANA-PEN-download-configurable-fix-uninitalized.patch deleted file mode 100644 index dd18302..0000000 --- a/0006-Make-IANA-PEN-download-configurable-fix-uninitalized.patch +++ /dev/null @@ -1,130 +0,0 @@ -From 44faed961d148ded6e6a75b73a25d85bcbdd843c Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Klaus=20K=C3=A4mpf?= -Date: Wed, 23 Sep 2020 09:44:29 +0200 -Subject: [PATCH 6/6] Make IANA PEN download configurable - fix uninitalized - DOWNLOAD variable - -Currently if you do not have wget and curl requirement met, you get -this error: -[ 93s] configure: WARNING: ** Neither wget nor curl could be found. -[ 93s] configure: WARNING: ** IANA PEN database will not be installed by `make install` ! -[ 93s] configure: WARNING: ** Download is: -[ 93s] configure: WARNING: -... -[ 104s] configure: error: conditional "DOWNLOAD" was never defined. -[ 104s] Usually this means the macro was only invoked conditionally. -[ 104s] error: Bad exit status from /var/tmp/rpm-tmp.TYnvu5 (%build) - -Internet download is restricted in most build environments. -So there must be a knob to enable/disable IANA PEN database download. -For security reasons and as a good manner for open source tools, the internet -download is by default set to off. - -This patch initializes all needed variables and also introduces to make the -IANA PEN internet download configurable. - -./configure -then has this additional feature: - - --enable-iana-download Download IANA PEN database [default=no] - -Depending on whether it has explicitly been enabled this additional output -is shown after build env is successfully set up via ./configure: - - Download IANA PEN database : yes - IANA PEN database URL : http://www.iana.org/assignments/enterprise-numbers - -The URL is unfortunately hardcoded in the message. I couldn't find a quick -way to show the IANA_PEN_URL variable there, so if this is ever changed (it is -not configurable right now, but maybe with a follow up patch in the future), -it has to be changed in the help string as well. ---- - Makefile.am | 5 ++--- - configure.ac | 39 ++++++++++++++++++++++++++------------- - 2 files changed, 28 insertions(+), 16 deletions(-) - -diff --git a/Makefile.am b/Makefile.am -index ce3267f00bc8..05fa209e90bc 100644 ---- a/Makefile.am -+++ b/Makefile.am -@@ -41,7 +41,6 @@ MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure configure-stamp \ - $(distdir).tar.gz $(distdir).tar.bz2 - - SUBDIRS = lib src include doc contrib control --IANA_PEN = http://www.iana.org/assignments/enterprise-numbers - - dist-hook: - cp control/ipmitool.spec $(distdir) -@@ -53,8 +52,8 @@ if DOWNLOAD - - enterprise-numbers: - @echo Downloading IANA PEN database... -- @$(DOWNLOAD) "$(IANA_PEN)" > tmpfile.$$PPID || {\ -- echo "FAILED to download the IANA PEN database"; \ -+ @$(DOWNLOAD) "$(IANA_PEN_URL)" > tmpfile.$$PPID || {\ -+ echo "FAILED to download the IANA PEN database from $(IANA_PEN_URL)"; \ - rm tmpfile.$$PPID; \ - false; \ - } -diff --git a/configure.ac b/configure.ac -index b421192daef7..c7a20cad1dc3 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -56,23 +56,34 @@ if test "x$exec_prefix" = "xNONE"; then - exec_prefix="$prefix" - fi - --if test "x$WGET" = "x"; then -- if test "x$CURL" = "x"; then -- AC_MSG_WARN([** Neither wget nor curl could be found.]) -- AC_MSG_WARN([** IANA PEN database will not be installed by `make install` !]) -+xiana_pen_url="http://www.iana.org/assignments/enterprise-numbers" -+AC_SUBST(IANA_PEN_URL, xiana_pen_url) -+ -+AC_ARG_ENABLE([iana-download], -+ [AC_HELP_STRING([--enable-iana-download], -+ [Download IANA PEN database [default=no]])], -+ [xenable_iana_download=$enableval], -+ [xenable_iana_download=no]) -+if test "x$xenable_iana_download" = "xyes"; then -+ if test "x$WGET" = "x"; then -+ if test "x$CURL" = "x"; then -+ AC_MSG_WARN([** Neither wget nor curl could be found.]) -+ AC_MSG_WARN([** IANA PEN database will not be installed by `make install` !]) -+ xenable_iana_download="no" -+ else -+ DOWNLOAD="$CURL -#" -+ fi - else -- DOWNLOAD="$CURL --location --progress-bar" -- AM_CONDITIONAL([DOWNLOAD], [true]) -+ DOWNLOAD="$WGET -c -nd -O -" - fi -+fi -+if test "x$xenable_iana_download" = "xyes"; then -+ AM_CONDITIONAL([DOWNLOAD], [true]) -+ AC_SUBST(DOWNLOAD, $DOWNLOAD) - else -- DOWNLOAD="$WGET -c -nd -O -" -- AM_CONDITIONAL([DOWNLOAD], [true]) -+ AM_CONDITIONAL([DOWNLOAD], [false]) - fi - --AC_MSG_WARN([** Download is:]) --AC_MSG_WARN($DOWNLOAD) --AC_SUBST(DOWNLOAD, $DOWNLOAD) -- - dnl - dnl set default option values - dnl -@@ -773,4 +784,6 @@ AC_MSG_RESULT([Extra tools]) - AC_MSG_RESULT([ ipmievd : yes]) - AC_MSG_RESULT([ ipmishell : $xenable_ipmishell]) - AC_MSG_RESULT([]) -- -+AC_MSG_RESULT([ Download IANA PEN database : $xenable_iana_download]) -+AC_MSG_RESULT([ IANA PEN database URL : $xiana_pen_url]) -+AC_MSG_RESULT([]) --- -2.26.0 - diff --git a/Fix-time-format-for-sel-list-v.patch b/Fix-time-format-for-sel-list-v.patch new file mode 100644 index 0000000..57d1b87 --- /dev/null +++ b/Fix-time-format-for-sel-list-v.patch @@ -0,0 +1,56 @@ +From: Thomas Renninger +Subject: Fix time format for sel list -v +References: bsc#1213390 +Patch-Mainline: +Git-commit: d34a56908da3d85c4ddce1be1aab90941177b13b +Git-repo: git@github.com:watologo1/ipmitool.git.git + +The time for sel entries gets wrongly formatted: + +SEL Record ID : 3135 + Record Type : 02 + Timestamp : 18.07.2023 18.07.2023 + Generator ID : 0044 + +This patch fixes this: + +SEL Record ID : 3135 + Record Type : 02 + Timestamp : 18.07.2023 11:26:24 CEST + Generator ID : 0044 + +The first hunk for: +`sel list -v` +The snd hunk for: +`sel get ID` + + +Signed-off-by: +diff --git a/lib/ipmi_sel.c b/lib/ipmi_sel.c +index 31c0eea..7d6d01f 100644 +--- a/lib/ipmi_sel.c ++++ b/lib/ipmi_sel.c +@@ -2043,11 +2043,9 @@ ipmi_sel_print_std_entry_verbose(struct ipmi_intf * intf, struct sel_event_recor + { + printf(" Timestamp : "); + if (evt->record_type < 0xc0) +- printf("%s %s", ipmi_timestamp_date(evt->sel_type.standard_type.timestamp), +- ipmi_timestamp_time(evt->sel_type.standard_type.timestamp)); ++ printf("%s", ipmi_timestamp_numeric(evt->sel_type.standard_type.timestamp)); + else +- printf("%s %s", ipmi_timestamp_date(evt->sel_type.oem_ts_type.timestamp), +- ipmi_timestamp_time(evt->sel_type.oem_ts_type.timestamp)); ++ printf("%s", ipmi_timestamp_numeric(evt->sel_type.oem_ts_type.timestamp)); + printf("\n"); + } + +@@ -2133,8 +2131,7 @@ ipmi_sel_print_extended_entry_verbose(struct ipmi_intf * intf, struct sel_event_ + if (evt->record_type < 0xe0) + { + printf(" Timestamp : "); +- printf("%s %s\n", ipmi_timestamp_date(evt->sel_type.standard_type.timestamp), +- ipmi_timestamp_time(evt->sel_type.standard_type.timestamp)); ++ printf("%s\n", ipmi_timestamp_numeric(evt->sel_type.standard_type.timestamp)); + } + + diff --git a/_servicedata b/_servicedata index 0d75d8d..1066aad 100644 --- a/_servicedata +++ b/_servicedata @@ -1,4 +1,4 @@ https://github.com/ipmitool/ipmitool.git - 19d78782d795d0cf4ceefe655f616210c9143e62 \ No newline at end of file + be11d948f89b10be094e28d8a0a5e8fb532c7b60 \ No newline at end of file diff --git a/enterprise-numbers b/enterprise-numbers index 68293d7..055a2cf 100644 --- a/enterprise-numbers +++ b/enterprise-numbers @@ -1,18 +1,18 @@ PRIVATE ENTERPRISE NUMBERS -(last updated 2022-09-06) +(last updated 2023-07-21) SMI Network Management Private Enterprise Codes: Prefix: iso.org.dod.internet.private.enterprise (1.3.6.1.4.1) -This file is http://www.iana.org/assignments/enterprise-numbers +This file is https://www.iana.org/assignments/enterprise-numbers.txt Decimal | Organization | | Contact | | | Email -| | | | +| | | | 0 Reserved Internet Assigned Numbers Authority @@ -391,8 +391,8 @@ Decimal ---none--- 94 Nokia - Eleven Wu - eleven.wu&nokia-sbell.com + Juha Hopsu + juha.hopsu&nokia.com 95 Rockwell Automation, Inc. (formerly 'Allen-Bradley Company') Amir S. Ansari @@ -539,7 +539,7 @@ Decimal eepak=Taneja%Eng%Banyan&Thing.banyan.com 131 Sintrom Datanet Limited - + ---none--- ---none--- 132 Bell Canada @@ -567,7 +567,7 @@ Decimal paulod&cs.su.oz.au 138 Luxcom - + ---none--- ---none--- 139 Artel @@ -824,7 +824,7 @@ Decimal 202 SMC Lance Sprung - ---none--- + smcorg&meantinc.com 203 Crescendo Communication, Inc. Prem Jain @@ -943,7 +943,7 @@ Decimal detlef.rothe&ts.fujitsu.com 232 Compaq - + ---none--- ---none--- 233 NetManage, Inc. @@ -1647,7 +1647,7 @@ Decimal socrates!bm5ld15&bagout.BELL-ATL.COM 408 Advanced Multiuser Technologies Corporation - + ---none--- ---none--- 409 Mitsubishi Electric Corporation @@ -1667,7 +1667,7 @@ Decimal Raymond_Williams&tivoli.com 413 Klever Computers, Inc.Tom Su - + ---none--- kci&netcom.com 414 Amdahl Corporation @@ -1847,7 +1847,7 @@ Decimal rosenthal&mcc.com 458 Stratus Computer - + ---none--- ---none--- 459 Quotron @@ -1915,7 +1915,7 @@ Decimal corrigan&ManageOperations.net 475 Wandel and Goltermann Technologies - + ---none--- walter&wg.com 476 Vertiv (formerly 'Emerson Computer Power') @@ -1939,7 +1939,7 @@ Decimal lott&imagen.com 481 Network ExpressTom Jarema - + ---none--- ITOH&MSEN.COM 482 LANcity Corporation @@ -2799,7 +2799,7 @@ Decimal e03353&esitx.esi.org 696 Unassigned - + ---none--- ---none--- 697 MultiPort Corporation @@ -3639,7 +3639,7 @@ Decimal +09 2324 5672 906 Inotech Inc.Eric Jacobs - + ---none--- ejacobs&inotech.com 907 Controlled Power Co. @@ -4010,9 +4010,9 @@ Decimal Ross Wakelin r.wakelin&march.co.uk 999 - Hong Technology, Inc. - Walt Milnor - brent&oceania.com + EasyNet, Inc. + Nancy M Robinson + easynet&companycontacts.net 1000 Internet Assigned Numbers Authority Authority @@ -4166,7 +4166,7 @@ Decimal Hai Dotu +3223.7053.11 1038 - SAGEMCOM SAS + SAGEMCOM SAS COZZI Didier didier.cozzi&sagemcom.com 1039 @@ -4251,7 +4251,7 @@ Decimal wil&syndesis.com 1059 Isis Distributed Systems, Inc. - + ---none--- ---none--- 1060 Priority Call Management @@ -5036,7 +5036,7 @@ Decimal 1255 Applied Communications Inc, Al Doney - /s=doneya/o=apcom/p=apcom.oma/admd=telemail/c=us/@sprint.com + /s=doneya/o=apcom/p=apcom.oma/admd=telemail/c=us/&sprint.com 1256 Transaction Technology, Inc. Bill Naylor @@ -5843,7 +5843,7 @@ Decimal amir&terayon.com 1457 CyberGuard CorporationDavid Rhein - + ---none--- David.Rhein&mail.cybg.com 1458 AMCC @@ -6016,7 +6016,7 @@ Decimal 1500 ATI Australia Pty Limited Peter Choquenot - pchoq@@jolt.mpx.com.au + pchoq&&jolt.mpx.com.au 1501 The Aerospace Corporation Michael Erlinger @@ -6555,8 +6555,8 @@ Decimal ghavami&telcores.com 1635 Mercedes-Benz AG - Dr. Martin Bosch - Martin.Bosch&Stgt.Mercedes-Benz.com + Philipp Weber + philipp.wp.weber&mercedes-benz.com 1636 HOB GmbH & Co. KG - HOB Germany Richard Wunderlich @@ -6983,7 +6983,7 @@ Decimal gmf&odi.com 1742 Unassigned - + ---none--- ---none--- 1743 Zenith Data Systems (ZDS) @@ -7295,7 +7295,7 @@ Decimal breeus&csti.fr 1820 LEROY MERLINRIGAULT Alain - + ---none--- lmreseau&calva.net 1821 Total Entertainment Network @@ -7403,7 +7403,7 @@ Decimal thomas.mattern&bundestag.de 1847 Joint Research Centre - + ---none--- rui.meneses&jrc.it 1848 FaxSav @@ -8163,8 +8163,8 @@ Decimal robert.metcalf&quantum.com 2037 Ernst and Young LLP - Neil Forrester - neil.forrester&ey.com + Marcus Oh + marcus.oh&ey.com 2038 Teleware Oy Thomas Aschan @@ -8236,7 +8236,7 @@ Decimal 2055 GILLAM-SATEL J. MATHIEU - gillam @ interpac.be + gillam & interpac.be 2056 MOEBIUS SYSTEMS MICHAEL CLARK @@ -8327,8 +8327,8 @@ Decimal mandep&commit.nl 2078 Virtual Access Ltd - Tommy Loughlin - Tommy.Loughlin&VirtualAccess.com + Gerry Keogh + gerry.keogh&VirtualAccess.com 2079 JDS FITEL Inc. Dr A.G.Self @@ -8350,7 +8350,7 @@ Decimal Frank Drake fdrake&orange.us 2084 - GS Yuasa Infrastructure Systems Co.,Ltd. + GS Yuasa International Ltd. Toshiyuki Miyamoto toshiyuki.miyamoto&jp.gs-yuasa.com 2085 @@ -8761,6 +8761,14 @@ Decimal Vina Technologies Bob Luxenberg bobl&vina-tech.com +2187 + Reserved + RFC-pti-pen-registration-10 + ---none--- +2188 + Reserved + RFC-pti-pen-registration-10 + ---none--- 2189 Deutsches Klimarechenzentrum GmbH Lutz Brunke @@ -9255,8 +9263,8 @@ Decimal karant&ias.csusb.edu 2312 Red Hat - Nikos Mavrogiannopoulos - nmav&redhat.com + Richard Monk + rmonk&redhat.com 2313 Legal & General Assurance Society Ltd. Steve Reid @@ -9987,8 +9995,8 @@ Decimal jonathan&jcp.co.uk 2495 Internet Systems Consortium, Inc. - David W. Hankins - David_Hankins&isc.org + Ray Bellis + ray&isc.org 2496 LightSpeed International, Inc. David Turvene @@ -12424,7 +12432,7 @@ Decimal 3104 Thales Deutschland GmbH Bernhard Nowara - Bernhard.Nowara&thalesgroup.com + Bernhard.Nowara&thalesgroup.com 3105 Vodafone Sweden Per Assarsson @@ -12472,7 +12480,7 @@ Decimal 3116 NICE CTI Systems UK Ltd. Eric Roger - eric.roger_at_nice.com@ANTISPAM + eric.roger_at_nice.com&ANTISPAM 3117 E*TRADE Group Inc. Alan Cima @@ -12912,7 +12920,7 @@ Decimal 3226 France Connexion Ingenierie Thibault Dangreaux - Thibault.Dangreaux@.com + Thibault.Dangreaux&.com 3227 NetLeader, Inc. Shane Thomas @@ -13298,9 +13306,9 @@ Decimal Roger Greene roger&ipswitch.com 3323 - Tadiran Microwave Networks - Kevin Nguyen - Kevinn&Microwavenetworks.com + Microwave Networks Incorporated + Robert Gulde + robertgµwavenetworks.com 3324 Call Technologies, Inc. Justin Anderson @@ -14057,6 +14065,10 @@ Decimal Portal Software, Inc. Majid Mohazzab majid&corp.portal.com +3513 + Reserved + RFC-pti-pen-registration-10 + ---none--- 3514 VStream Incorporated Charlie Wanek @@ -14159,7 +14171,7 @@ Decimal tag55&dial.pipex.com 3539 Unassigned - + ---none--- ---none--- 3540 Conelly International, Inc. @@ -16527,8 +16539,8 @@ Decimal bbroccolo&mdsroc.com 4131 Tridium - Robert Adams - RAdams&tridium.net + Bill Smith + bsmith&tridium.com 4132 Connecticut Hospital Association Wing-Yan Leung @@ -16602,9 +16614,9 @@ Decimal Bob Page bob.page&accrue.com 4150 - Northwestern Mutual Life Insurance Company - Matthew Andrews - mattandrews&northwesternmutual.com + Northwestern Mutual + Chris Eaton + chriseaton&northwesternmutual.com 4151 iMPath Networks Inc. Hussein Said @@ -16657,6 +16669,10 @@ Decimal Quarry Technologies Mark Duffy mduffy&quarrytech.com +4164 + Reserved + RFC-pti-pen-registration-10 + ---none--- 4165 SE Electronics Jasper Rijnsburger @@ -17510,8 +17526,8 @@ Decimal David Hoerl dfh&home.com 4378 - - + ---none--- + ---none--- ---none--- 4379 Alien Internet Services @@ -17826,7 +17842,7 @@ Decimal Neal Dillman ndillman&allweatherinc.com 4457 - O ROCK Outerwear + O ROCK Outerwear B. Maddigan bmaddigan&yahoo.com 4458 @@ -18257,6 +18273,10 @@ Decimal Diverse Networks, Inc. Harold E. Austin, Jr.haustin&diversenet.com +4565 + Reserved + RFC-pti-pen-registration-10 + ---none--- 4566 Cedelbank Paul Rees @@ -18393,6 +18413,10 @@ Decimal MIMSOFT Miroslav Jergus mimsoft&pobox.sk +4600 + Reserved + RFC-pti-pen-registration-10 + ---none--- 4601 Cybertime Informatik GmbH Rico Pajarola @@ -19641,6 +19665,10 @@ Decimal HolisticMeta, LLC (formerly 'One World Information System') Roy Roebuck royroebuck&holisticmeta.com +4913 + Reserved + RFC-pti-pen-registration-10 + ---none--- 4914 hole-in-the.net Joe Warren-Meeks @@ -19712,7 +19740,7 @@ Decimal 4931 Standard & Poor's Corp. Martin Niederer - martin_niederer@standardand poors.com + martin_niederer&standardand poors.com 4932 Foglight Software Michael Tsou @@ -19844,7 +19872,7 @@ Decimal 4964 W.B. Love Enterprises Inc. Walter L. Shaw Jr. - waltlove@ix. netcom. com + waltlove&ix. netcom. com 4965 Greenwich Mean Time Alec Bray @@ -19981,6 +20009,10 @@ Decimal Cadant Inc. Yung Nguyen ynguyen&cadant.com +4999 + Reserved + RFC-pti-pen-registration-10 + ---none--- 5000 Personal Business Matias Guerrero @@ -20377,6 +20409,10 @@ Decimal OPUSWAVE Networks, Inc. Abid Inam ainam&opuswave.com +5099 + Reserved + RFC-pti-pen-registration-10 + ---none--- 5100 Tricast Multimedia Jesse Whitehorn @@ -20553,6 +20589,10 @@ Decimal Cereva Networks Inc. Beth Miaoulis beth_miaoulis&cereva.com +5144 + Reserved + RFC-pti-pen-registration-10 + ---none--- 5145 ICT electronics SA Joan-Lluis Montore Parera @@ -20706,8 +20746,8 @@ Decimal Miles Whitener mbw&i-theta.com 5183 - - + ---none--- + ---none--- ---none--- 5184 C&N Touristic AG @@ -20718,8 +20758,8 @@ Decimal Jinsoo Yoo jsyoo&sungmi.co.kr 5186 - - + ---none--- + ---none--- ---none--- 5187 Bytware, Inc. @@ -20777,6 +20817,10 @@ Decimal EnFlex Corp. John W. Markham jmarkham&enflex.net +5201 + Reserved + RFC-pti-pen-registration-10 + ---none--- 5202 Aalto University (formerly 'Helsinki University of Technology') Niko Suominen @@ -22701,6 +22745,10 @@ Decimal Synergon Ltd. Laszlo Vadaszi www.synergon.hu +5683 + Reserved + RFC-pti-pen-registration-10 + ---none--- 5684 Metro Optix, Inc. Beecher Adams @@ -23068,11 +23116,15 @@ Decimal 5775 Advanced Technology Solutions International Pete Ellis - pete.ellis@.atsi-uk.com + pete.ellis&.atsi-uk.com 5776 Express Scripts, Inc. Tony Strand astrand&express-scripts.com +5777 + Reserved + RFC-pti-pen-registration-10 + ---none--- 5778 Universidad Autonoma de Madrid Javier Martinez Rodriguez @@ -24664,7 +24716,7 @@ Decimal 6175 Pines of Woodedge Karen M. Wingate - @kwingate&synchronet.com + &kwingate&synchronet.com 6176 VIPCom Wolfgang Socher @@ -25001,6 +25053,10 @@ Decimal Sohonet Limited Jon Ferguy jon.ferguy&sohonet.co.uk +6260 + Reserved + RFC-pti-pen-registration-10 + ---none--- 6261 MAKU Informationstechnik GmbH Marco Rohleder @@ -26015,8 +26071,8 @@ Decimal shlomi&whale-com.com 6514 Innovative Systems, L.L.C. - Gene Vold - genev&innovsys.com + Shane Warren + shanew&innovsys.com 6515 Zvolve Systems, Inc. Tsani Jones @@ -26143,8 +26199,8 @@ Decimal ssc&thinkit.ch 6546 ITOCHU Techno-Solutions Corporation - Hidemune Inayoshi - hidemune.inayoshi&ctc-g.co.jp + Tomokazu Ono + tomokazu.ono&ctc-g.co.jp 6547 Network Management Solutions, Inc. Dave LaDue @@ -26433,6 +26489,10 @@ Decimal Sonus Networks, Inc. Information Security infosec&sonusnet.com +6619 + Reserved + RFC-pti-pen-registration-10 + ---none--- 6620 Global Telemann System Inc. David Kim @@ -26444,7 +26504,7 @@ Decimal 6622 secondomillennio sauro - sauro@secondomillennio + sauro&secondomillennio 6623 servizi2000 sauro @@ -26592,7 +26652,7 @@ Decimal 6659 Alisa Lleshi - @alisa_style&hotmail.com + &alisa_style&hotmail.com 6660 keraladotcom tomichen @@ -26912,7 +26972,7 @@ Decimal 6739 Spring Yellow 91474794437 - @springyellow&operamail.com + &springyellow&operamail.com 6740 Cal Poly State University Dan Malone @@ -27474,8 +27534,8 @@ Decimal Jay Sauls jays&digimine.com 6880 - - + ---none--- + ---none--- ---none--- 6881 Kal @@ -28170,9 +28230,9 @@ Decimal Laurence Brockman l.brockman&videon.ca 7054 - Mazu Networks, Inc. - Robert Nazzal - rob&mazunetworks.com + Riverbed Technology (formerly 'Mazu Networks, Inc.') + Mari Kotlov + mkotlov&riverbed.com 7055 Cox Communications, Inc. Martin M. Cade @@ -28690,8 +28750,8 @@ Decimal Jacob Shaw jshaw&sps.lane.edu 7184 - - + ---none--- + ---none--- ---none--- 7185 Latitude Communications @@ -28932,7 +28992,7 @@ Decimal 7244 Quanta Computer Inc. Strong Chen - @strong.chen&quantatw.com + &strong.chen&quantatw.com 7245 Northern Districts In-Line Hockey Club Lucas James @@ -29010,8 +29070,8 @@ Decimal Joshua Litt president&littpro.com 7264 - - + ---none--- + ---none--- ---none--- 7265 Interactive Portal, Inc. @@ -29568,11 +29628,11 @@ Decimal 7403 Biomed Translations Ltd. David John Williams - @biomed-translations&t-online.de + &biomed-translations&t-online.de 7404 D.J. Williams Editorial Ltd.David John Williams - @biomed-translations&t-online.de + &biomed-translations&t-online.de 7405 IPS d.o.o. Dusan Banko @@ -29696,7 +29756,7 @@ Decimal 7435 T.K COMPANY Tomio Katsui - kat4k@ginga,net + kat4k&ginga,net 7436 Oxir Internet Solutions Alex Kovshov @@ -29822,9 +29882,9 @@ Decimal B.Eckstein be&cli.de 7467 - TTi Systems + IVU Traffic Technologies AG B.Eckstein - be&cli.de + eck&ivu.de 7468 Mixbaal Diego Barajas @@ -30688,7 +30748,7 @@ Decimal 7683 Air Liquide Electronics Bob Irwin - @ bob.irwin&airliquide.com + & bob.irwin&airliquide.com 7684 NexTone Communications Rakendu Devdhar @@ -30851,7 +30911,7 @@ Decimal darren&benham.net 7724 Unassigned - + ---none--- ---none--- 7725 Hark Tower Systems @@ -30974,7 +31034,7 @@ Decimal Giovanni Iamonte iamonte&infosquare.com 7755 - Disney Technology Solutions and Services + The Walt Disney Company Ian Funk ian.funk&disney.com 7756 @@ -31224,7 +31284,7 @@ Decimal 7817 Chiphead Consulting, Inc. Wayne A. Hogue II - chiphead&chiphead.net@ + chiphead&chiphead.net& 7818 Rohit Communications Pte. Ltd. Santhosh Kumar Pilakkat @@ -31504,7 +31564,7 @@ Decimal 7887 nCUBE, Corp. Dave Spurbeck - dspurbeck@.ncube.com + dspurbeck&.ncube.com 7888 Iamba Technologies Ltd. Yuval Ben-Haim @@ -31584,7 +31644,7 @@ Decimal 7907 Alliance Race Car Builders Kevin T. Anderson - @bloomquis&45.com + &bloomquis&45.com 7908 TelSoft Solutions, Inc Omer Azmon @@ -32304,7 +32364,7 @@ Decimal 8087 TierNext Glen Lewis - glen@tiernext©com + glen&tiernext©com 8088 DCSI Jim Rowan @@ -33632,7 +33692,7 @@ Decimal 8419 Rockwell Collins Benjamin Haan - Benjamin.Haan&rockwellcollins.com + Benjamin.Haan&collins.com 8420 Digi-Sign Certification Services Limited Jennifer Chung @@ -34564,10 +34624,10 @@ Decimal 8652 Uppsala University Pål Axelsson - Pal.Axelsson&its.uu.se + Pal.Axelsson&its.uu.se 8653 unassigned - + ---none--- ---none--- 8654 INTRINsec @@ -35511,7 +35571,7 @@ Decimal lsmadja&webgsm.com 8889 virtual solution AG - Dr. Raoul-Thomas Herborg + Dr. Raoul-Thomas Herborg raoul.herborg&virtual-solution.com 8890 Broadcast Technology Limited @@ -36016,7 +36076,7 @@ Decimal 9015 World Streaming Network, Inc. Fred Crable - fcrable@ worldstreaming.net + fcrable& worldstreaming.net 9016 FreeRein Corporation John Chu @@ -36087,8 +36147,8 @@ Decimal a.north&ivstel.com 9033 Elion Enterprises Ltd - Klemens Kasemaa - klemens.kasemaa&elion.ee + Klemens Kasemaa + klemens.kasemaa&elion.ee 9034 Jabber.com Constantin Nickonov @@ -40323,7 +40383,7 @@ Decimal xutian&mail.transfar.com 10092 Unassigned - + ---none--- (Removed 2002-05-02) 10093 unamite GmbH @@ -41807,8 +41867,8 @@ Decimal tbeyhan&atek.net.tr 10463 DEVK Versicherungen - Peter Hein - ldapadmin&devk.de + Claas Vieler + sysadmhv&devk.de 10464 elata plc Rod French @@ -42707,7 +42767,7 @@ Decimal iana&olympus.net 10688 Unassigned - + ---none--- (Removed 2002-06-18) 10689 Ahaza Systems @@ -43759,8 +43819,8 @@ Decimal susan&netrake.com 10951 NetUSE AG - Kai Voigt - kv&netuse.de + Roland Kaltefleiter + rk&netuse.de 10952 NetZero Inc. Thod Nguyen @@ -45347,8 +45407,8 @@ Decimal sob&academ.com 11348 Airbus - Juan Lopez - juan.lopez&airbus.aeromatra.com + Valentin KRETZSCHMAR + valentin.kretzschmar&airbus.com 11349 at rete ag Stefan Gallati @@ -45792,7 +45852,7 @@ Decimal 11459 Data Track Technology PLC David Johnstone - dtj&dtrack.com + diana&dewlands.com 11460 datafront Rick Kilcoyne @@ -45978,8 +46038,8 @@ Decimal Cynthia Mills mills&network-1.com 11506 - - + ---none--- + ---none--- Unassigned (Removed 2002-05-02) 11507 ProBusiness @@ -46633,6 +46693,406 @@ Decimal Milhouse Technologies USA Arnell Milhouse arnell_milhouse&usa.com +11670 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11671 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11672 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11673 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11674 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11675 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11676 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11677 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11678 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11679 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11680 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11681 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11682 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11683 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11684 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11685 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11686 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11687 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11688 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11689 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11690 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11691 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11692 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11693 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11694 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11695 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11696 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11697 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11698 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11699 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11700 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11701 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11702 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11703 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11704 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11705 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11706 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11707 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11708 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11709 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11710 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11711 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11712 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11713 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11714 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11715 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11716 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11717 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11718 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11719 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11720 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11721 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11722 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11723 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11724 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11725 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11726 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11727 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11728 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11729 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11730 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11731 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11732 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11733 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11734 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11735 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11736 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11737 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11738 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11739 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11740 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11741 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11742 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11743 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11744 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11745 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11746 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11747 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11748 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11749 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11750 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11751 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11752 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11753 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11754 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11755 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11756 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11757 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11758 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11759 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11760 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11761 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11762 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11763 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11764 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11765 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11766 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11767 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11768 + Reserved + RFC-pti-pen-registration-10 + ---none--- +11769 + Reserved + RFC-pti-pen-registration-10 + ---none--- 11770 China Sanjiang Space Group Jianxing Liu @@ -47647,7 +48107,7 @@ Decimal tld&brecis.com 12023 Unassigned - + ---none--- ---none--- 12024 Miraesys Co., Ltd @@ -48078,9 +48538,9 @@ Decimal Alfred Iacovella aiacovella&sciquest.com 12131 - Siegfried Holding AG - Thomas Jakob - ic&siegfried.ch + Siegfried AG + Sven Ahrens + accounts.io&siegfried.ch 12132 Simutronics Corporation Jim Miller @@ -48855,8 +49315,8 @@ Decimal keller&dlrg.de 12325 Fraunhofer FOKUS - Hartmut Brandt - brandt&fokus.gmd.de + Björn Riemer + iana-pen&fokus.fraunhofer.de 12326 Hermes Precisa Australia Mario Veronese @@ -53262,7 +53722,7 @@ Decimal Wojciech Zabolotny wzab&acn.waw.pl 13427 - Artesyn Embedded Technologies + Artesyn Embedded Technologies Colin Cameron colin.cameron&artesyn.com 13428 @@ -53644,7 +54104,7 @@ Decimal 13522 Account Synchronization Project Kervin Pierre - kervin @blueprint-tech.com + kervin &blueprint-tech.com 13523 Australian Industry Group Phil Ware @@ -54162,7 +54622,7 @@ Decimal Sven Gerlach sven.gerlach&rexkramer.de 13652 - + ---none--- G.E. de Jong g.e.dejong&student.utwente.nl 13653 @@ -54198,9 +54658,9 @@ Decimal William Duncan william.duncan&mail1.monmouth.army.mil 13661 - The University of Manchester (formerly 'UMIST') - Rachid Chalabi - r.chalabi&manchester.ac.uk + The University of Manchester + Andy Moore + andy.moore&manchester.ac.uk 13662 Universidad de Palermo Alejandro Popovsky @@ -55022,9 +55482,9 @@ Decimal Charlie LE HOANGAN charlie.lehoangan&acetiming.com 13867 - Adfinis SyGroup AG - Daniel Aubry - info&adfinis-sygroup.ch + Adfinis AG + Michael Hofer + info&adfinis.com 13868 Bahrain Credit Adel Darwish @@ -55607,8 +56067,8 @@ Decimal system&net-safe.co.kr 14013 Tata Consultancy Services - B.Narendra Kishore - bn.kishore&tcs.com + Tarun Kumar Goswami + tarun.goswami&tcs.com 14014 TP EmiTel Sp. z o.o. Janusz Baluka @@ -56912,7 +57372,7 @@ Decimal 14339 Hioptel Mark Duan - misoso@963net + misoso&963net 14340 LinuxTek, Inc. Sharif Alexandre @@ -56964,7 +57424,7 @@ Decimal 14352 Penn State University Eric Reischer - emr&engr.de.psu.edu + emr150&psu.edu 14353 Alessandro Bertela Alessandro Bertela @@ -58838,9 +59298,9 @@ Decimal Alain Cocconi cocconi&net-outremer.nc 14821 - Stibo - Jorgen Bjerg - jbje&stibo.com + Stibo Complete A/S + Palle Jacobsen + paja&stibo.com 14822 FaJo.de Falk John @@ -58861,6 +59321,10 @@ Decimal Adage Networks Jaswant Pujari jpujari&adagenetworks.com +14827 + Reserved + RFC-pti-pen-registration-10 + ---none--- 14828 Sonorys Technology GmbH Günther Niedoba @@ -58954,7 +59418,7 @@ Decimal Muhammad Usman umuhammad&arcsolutions.com 14851 - Storage Networking Industry Association + Storage Networking Industry Association Arnold Jones td&snia.org 14852 @@ -59451,8 +59915,8 @@ Decimal marko.veelma&data.ee 14975 BRy Tecnologia S.A. - Marcelo Luiz Brocardo - brocardo&bry.com.br + Carlos Francisco Tatara + tatara&bry.com.br 14976 softmillennium Mark Braksator @@ -60054,7 +60518,7 @@ Decimal Martyn Smith martyn.smith&vectura.com 15126 - + ---none--- Andreas Damm oidadmin&dwl.co.uk 15127 @@ -60399,12 +60863,12 @@ Decimal rj&ncia.net 15212 ITAU - Dionísio Ghelardi - dionisio.ghelardi&itau.com.br + Internet Itau + rgdomit&itau-unibanco.com.br 15213 ITAUSA - Tarcisio L. Hespanhol - tarcisio.hespanhol&itau.com.br + Internet Itau + rgdomit&itau-unibanco.com.br 15214 Global Network Operations Ltd. Andy Coates @@ -61138,9 +61602,9 @@ Decimal Peter Boevink peter.boevink&alfa-ariss.com 15397 - Netintact AB - Tobias Rundström - tobias&netintact.se + Sandvine Corporation + Kenneth Johansson + snmp-support&sandvine.com 15398 IC3S AG Steffen Weinreich @@ -61552,7 +62016,7 @@ Decimal 15500 eWings Technologies, Inc. Max Chan - max@.ewingstech.com + max&.ewingstech.com 15501 M&C Laboratory Inc. Takashi Okada @@ -62344,7 +62808,7 @@ Decimal 15698 NLoci Luke Renn - luke@terminaltechnologies + luke&terminaltechnologies 15699 Renesys Corporation James Cowie @@ -63619,8 +64083,8 @@ Decimal rob&simmey.com 16017 CEW Co Ltd - Jun Yamada - jun&cew.co.jp + takamichi takahasi + takamichi&cew.co.jp 16018 punker.org Max Malkov @@ -64262,9 +64726,9 @@ Decimal Daniel Rooth daniel.rooth&westermo.com 16178 - WellPoint Health Networks - Timothy R. Robnett - timothy.robnett&wellpoint.com + Elevance Health, Inc. + Kyle P. Johnson + kyle.johnson&elevancehealth.com 16179 WAN Norway Sten Daniel Sørsdal @@ -64768,7 +65232,7 @@ Decimal 16304 EADS Dirk Kronenfeld - dirk.kronenfeld&airbus.com + dirk.kronenfeld&airbus.com 16305 KIBS AD Skopje Marin Piperkoski @@ -65784,7 +66248,7 @@ Decimal 16558 Jiangsu Yitong High-tech Co.,Ltd. chenxiaoxing - chenxiaoxing&yitong-group.com + chenxiaoxing&yitong-group.com 16559 ALOC Bonnier A/S Yasaman Nazardad @@ -66175,8 +66639,8 @@ Decimal jkleensang&lunargravity.net 16656 m3production - Pierre-Henri Boinnard - ph.boinnard&m3production.fr + Pierre Boinnard + pierre.boinnard&m3production.fr 16657 ING Direct itdatacomsupport&ingdirect.com @@ -66236,7 +66700,7 @@ Decimal 16671 American Physical Society Paul Dlug - paul@ap + paul&ap 16672 AirFlow Networks Harry Bims @@ -66402,9 +66866,9 @@ Decimal Sven Andresen sven.andresen&ilb.de 16713 - FH-Rosenheim - Ohliger - ohliger&fh-rosenheim.de + Ohliger Christoph + Ohliger Christoph + christoph.ohliger&th-rosenheim.de 16714 Gossamer Group, LLC Skip Walker @@ -66506,9 +66970,9 @@ Decimal Lifeng Zhao lifeng&intervideo.com 16739 - CompanyName - ContactName - ContactEmail + Reserved + RFC-pti-pen-registration-10 + ---none--- 16740 3C Limited Forrest Wang @@ -68822,9 +69286,9 @@ Decimal Philippe Hebert philippe&massiveego.com 17318 - Media5 Corporation (formerly 'M5T Centre d'Excellence en Telecom Inc.') - Christian Beaulieu - cbeaulieu&media5corp.com + Media5 Corporation / M5 Technologies (formerly 'M5T Centre d'Excellence en Telecom Inc.') + Jerome Lagasse + iana&media5corp.com 17319 JC Computing James Anderton @@ -70384,7 +70848,7 @@ Decimal 17708 sysmango.com Allen Lebo - bostch&sysmango.com + allen.lebo&sysmango.com 17709 Shanghai Telecommnunications Technological Research Institute xue lihong @@ -70974,9 +71438,9 @@ Decimal Derek Suzuki dsuzuki&ziprealty.com 17856 - NetNumber, Inc. - Robert H. Walter - rwalter&netnumber.com + Titan.ium Platform, LLC + David Jackson + djackson&titaniumplatform.com 17857 Tiscali France Jerome Fleury @@ -71164,7 +71628,7 @@ Decimal 17903 Grouse Media Mike Barnes - mike&grouse.net.au + mike&grousemedia.com 17904 boros consulting gmbh Stefan Boros @@ -71758,9 +72222,9 @@ Decimal Wilhelm Heucke-Scheller rfsmail&rfsystems.de 18052 - FachschaftsvertreterInnenversammlung - Chris Recktenwald - iana-contact&faveve.uni-stuttgart.de + stuvus Studierendenvertretung Universität Stuttgart + Sven Feyerabend + referent-it&stuvus.uni-stuttgart.de 18053 citecs GmbH Chris Recktenwald @@ -72366,7 +72830,7 @@ Decimal Niels Farver NielsF&tcelectronic.com 18204 - HPD Software, LLC (formerly 'Computer And Software Enterprises, Inc.') + Lendscape, LLC (formerly 'HPD Software, LLC' and 'Computer And Software Enterprises, Inc.') Dave Oksner admin-oid&hpdsoftware.us 18205 @@ -72464,7 +72928,7 @@ Decimal 18228 University Of Stuttgart Michael Stegmüller - Michael.Stegmueller&tik.uni-stuttgart.de + Michael.Stegmueller&tik.uni-stuttgart.de 18229 Sonitrol Security Systems of Hartford, Inc. Marc Swanson @@ -72658,8 +73122,8 @@ Decimal Nick Gorham nick&lurcher.org 18277 - - + ---none--- + ---none--- ---none--- 18278 Columbus Metropolitan Library @@ -73254,8 +73718,8 @@ Decimal Bernd Boom bernd.boom&comco.de 18426 - - + ---none--- + ---none--- ---none--- 18427 Patrick Näf @@ -73278,8 +73742,8 @@ Decimal Robert Ferk robert.ferk&kages.at 18432 - - + ---none--- + ---none--- ---none--- 18433 deny all @@ -73302,8 +73766,8 @@ Decimal Adriaan de Jong pccom&ch.tudelft.nl 18438 - - + ---none--- + ---none--- ---none--- 18439 Composite Software, Inc. @@ -73476,7 +73940,7 @@ Decimal 18481 Trustworx GmbH Kai Danielmeier - kai.danielmeier&trustworx.de + kai.danielmeier&trustworx.de 18482 ARCWave Inc. Sanjay Ravindra @@ -73819,8 +74283,8 @@ Decimal denis.amelynck&hogent.be 18567 Epic Systems Corporation - Daniel Pum - dpum&epicsystems.com + Epic Hostmaster + hostmaster&epic.com 18568 Service Availability Forum Bill Swortwood @@ -74606,8 +75070,8 @@ Decimal Patrick Hannah phannah&thenetwerk.net 18764 - - + ---none--- + ---none--- ---none--- 18765 Comtel Electronics GmbH @@ -74898,9 +75362,9 @@ Decimal Rick Owens oidmaster&fvcc.edu 18837 - Spectracom Corporation - Kevin Golder - kgolder&spectracomcorp.com + Safran Trusted 4D Inc. + Ryan Johnson + Ryan.Johnson&nav-timing.safrangroup.com 18838 AEAT Jose M Perez @@ -76852,7 +77316,7 @@ Decimal 19325 Eroski S. Coop. Javi Dieguez - javi_dieguez&eroski.es + javi_dieguez&eroski.es 19326 Tancsics Mihaly SzSzK Gergely Polonkai @@ -79470,8 +79934,8 @@ Decimal Pascal GUINET pascal.guinet&inpes.sante.fr 19980 - - + ---none--- + ---none--- ---none--- 19981 Venetica @@ -79754,9 +80218,9 @@ Decimal Jarrad Winter jwinter&westernunited.com 20051 - GlobalSkyVault - John Antypas - johnantypas&globalskyvault.com + Unassigned + Returned 2023-03-02 + no-reply&iana.org 20052 Intesa Sanpaolo S.p.A. Massimo Beltramo @@ -80827,8 +81291,8 @@ Decimal volec&dresden.frilo.de 20319 University of California, San Francisco, Information Technology Services - William Gayle - wgayle&its.ucsf.edu + Tom Chen + it.networkteam&ucsf.edu 20320 CAE Inc Louis Labelle @@ -81014,9 +81478,9 @@ Decimal Tal Schoenfeld tals&malamcom.co.il 20366 - DBI Technologies + DBI Technologies Darcy Buskermolen - darcy&dbitech.ca + darcy&dbitech.ca 20367 Univates Marcone Theisen @@ -81958,9 +82422,9 @@ Decimal Richard Washer rcwasher&tjhsst.edu 20602 - Xaraya Development Group - Carl P. Corliss - ccorliss&schwabfoundation.org + Tranquillo Development + Carl Corliss + carl&corliss.name 20603 Softhouse Informatica Ltda. Jefferson Dumes @@ -82479,8 +82943,8 @@ Decimal larry&truetel.com 20732 BlueScope Steel Limited - Jori Jaatinen - jori.jaatinen&bluescopesteel.com + BlueScope Head of IAM + Domains&bluescope.com 20733 JA Davey John Davey @@ -85540,7 +86004,7 @@ Decimal 21497 Tuxeo sprl Philippe Frycia - pfrycia&tuxeo.com + philippe&frycia.be 21498 Daemonspace Inc. LI Dong @@ -87306,7 +87770,7 @@ Decimal Lukasz Grochal hostmaster+iana&rmf.pl 21939 - Hitachi Energy + Hitachi Energy EDS500 Janis Kruse janis.kruse&hitachienergy.com 21940 @@ -88286,9 +88750,9 @@ Decimal Brad Cervenak snmp&cylant.com 22184 - 21st Century Software Inc. - John Antypas - ja&s21.com + Unassigned + Returned 2023-03-02 + no-reply&iana.org 22185 eScholar LLC Stuart Colvin @@ -88440,7 +88904,7 @@ Decimal 22222 ProaXial Jean-Claude CHRISTOPHE - jch&proaxial.com + jch&gericos.com 22223 IntelliCal LLC Jason Klemow @@ -90835,8 +91299,8 @@ Decimal hirata&dats.co.jp 22821 Saab AB - Björn Borgström - bjorn.borgstrom&saabgroup.com + Andreas Lundgren + andreas.lundgren&saabgroup.com 22822 MobiComp Computação Móvel S.A. João Paulo Ribeiro @@ -90919,7 +91383,7 @@ Decimal info&ebis.info 22842 Scientific Games International GmbH - Johannes Strasser + Kornic Djordje sysgrp&scigames.at 22843 ANWB B.V. @@ -90983,8 +91447,8 @@ Decimal snmp&reflexsecurity.com 22858 financial.com AG - Christoph Maser - cm&financial.com + Alexis Eisenhofer + ops&financial.com 22859 Techaya Inc. David Stern @@ -91435,8 +91899,8 @@ Decimal celkaim&dental-on-line.fr 22971 A.P. Moller - Maersk A/S - Jakob Ingemann - grpitaimng&maersk.com + Harvey Khela + harvinder.khela&maersk.com 22972 Wilibox Kestutis Barkauskas @@ -92138,9 +92602,9 @@ Decimal Cyril GIRONDE cyril.gironde&hoya.fr 23147 - VIMESA, VIDEO MEDIOS S.A. - Ramón Femenía - rfemenia&vimesa.es + VIMESA + Antonio Fabregues + gestion&vimesa.es 23148 Dr. Peter Koch EDV Dienstleistungen Dr. Peter Koch @@ -92978,9 +93442,9 @@ Decimal Mathieu ALORENT mathieu&alorent.com 23357 - Seaglass + Twenty Four Nine Development Ltd Ruben Arakelyan - ruben&arakelyan.uk + ruben&tfnd.uk 23358 Typhon SARL Jules Vo-Dinh @@ -93366,9 +93830,9 @@ Decimal Hubert Iwaniuk neotyk&kung-foo.kicks-ass.net 23454 - EFit partners + BeByte srl Patrick Vander Linden - patrick.vanderlinden&efit-partners.com + pvdlinden&bebyte.be 23455 Exceptional Software Strategies, Inc. Kevin Miller @@ -94499,8 +94963,8 @@ Decimal jakub&icewarp.com 23737 Ulm University of Applied Sciences - Thomas Gloeckler - gloeckler&hs-ulm.de + Jürgen Sonntag + juergen.sonntag&thu.de 23738 AWR Solution Network Alessandro Magalhaes @@ -95322,9 +95786,9 @@ Decimal Juan Pablo Baserga juanpablo.baserga&cyclelogic.com 23943 - Cendres & Métaux SA + Cendres+Métaux Holding SA Hans Lerch - webmaster&cmsa.ch + webmaster&cm-group.ch 23944 DENIC eG Jürgen Geinitz @@ -95563,8 +96027,8 @@ Decimal jaroman&diezcisneros.com 24003 Cellcom - Eran Falk - eranfa&cellcom.co.il + Moti Morhayim + motimo&cellcom.co.il 24004 Onus Petro Services Ramchander Rao @@ -95798,9 +96262,9 @@ Decimal Jisheng Lv ljs&amtium.com 24062 - Korenix Technology Co., Ltd. - Uwai Chen - uwai&korenix.com + Beijer Electronics Corp. + Steven Yang + steven.yang&beijerelectronics.com 24063 NetComm Wireless Ltd (formerly 'Call Direct Cellular Solutions Pty. Ltd') Mike Cornelius @@ -96112,7 +96576,7 @@ Decimal 24140 VoiceObjects AG Stefan Besling - SBesling @voiceobjects.com + SBesling &voiceobjects.com 24141 T-2, d.o.o. Matevz Turk @@ -96260,7 +96724,7 @@ Decimal 24177 Tivit S.A. Gustavo Torres - gustavo.torres&tivit.com.br + gustavo.torres&tivit.com.br 24178 Stillwater Medical Center Authority Mark Reed @@ -99203,8 +99667,8 @@ Decimal abnasuh&aselsan.com.tr 24913 Cook Group Incorporated - Ted Hickman - thickman&cookgroupinc.com + Kyle Hopkins + kyle.hopkins&cookgroup.com 24914 WSOFT, Lda. Eduardo Rodrigues @@ -99514,7 +99978,7 @@ Decimal Systems Administration helpdesk&bluestem.co.uk 24991 - CardContact Software & System Consulting + CardContact Systems GmbH Andreas Schwier andreas.schwier&cardcontact.de 24992 @@ -101708,7 +102172,7 @@ Decimal 25539 Osaka University OID Administrator - oid-admin&cmc.osaka-u.ac.jp + oid-admin&ml.office.osaka-u.ac.jp 25540 NetToolWorks, Inc. Eric Eicke @@ -102231,8 +102695,8 @@ Decimal aleksandar.petrovic&marinerpartners.com 25670 California State University, Fullerton - Sean Atkinson - satkinson&fullerton.edu + Chuck Yang + cyang&fullerton.edu 25671 EC Hugbunadur Ehf Asgeir Halldorsson @@ -102962,9 +103426,9 @@ Decimal Steven Britton snmp&cityc.co.uk 25853 - Rubin Rt. - Zoltan Kakuk - kakci&rubin.hu + Rubin Informatikai ZRt. + Csaba Parádi + titkarsag&rubin.hu 25854 Multisoft Ltd. Peter Perenyi @@ -104779,8 +105243,8 @@ Decimal alauridsen&opportunity.dk 26307 Skyguide - swiss air navigation services ltd. - Patrick Flach - patrick.flach&skyguide.ch + Stefan M. Strasser + stefan.strasser&skyguide.ch 26308 Saab TransponderTech AB Henrik Toorvald @@ -106627,8 +107091,8 @@ Decimal roberto.cremasco&comune.rimini.it 26769 Raytheon Technologies Corporation - Rand Parent - rand.parent&rtx.com + Dean DeFreitas + pki&raytheon.com 26770 Virtutility Ltd Philip Hart @@ -107316,7 +107780,7 @@ Decimal 26941 Johnstone Associates David Johnstone - dtj&dtrack.com + diana&dewlands.com 26942 AIM Professional Systems Ltd David Wood @@ -107450,9 +107914,9 @@ Decimal Graham Wooden graham&g-rock.net 26975 - CompanyName - ContactName - ContactEmail + Reserved + RFC-pti-pen-registration-10 + ---none--- 26976 NexG Co., Ltd. Jae Hak, Lee @@ -108211,7 +108675,7 @@ Decimal nikk.eh&cnet.com 27165 Universidade Tecnológica Federal do Paraná (UTFPR) - Thiago Herek + Thiago Herek therek&utfpr.edu.br 27166 Checchia.NET IT Consulting @@ -109207,8 +109671,8 @@ Decimal valdemar&labs2.se 27414 Stadt Chemnitz - Klemens Lindenthal - klemens.lindenthal&stadt-chemnitz.de + Uwe Barth + it-iana&stadt-chemnitz.de 27415 SiRF Technology, Inc. Riju Kallivalappil @@ -109655,8 +110119,8 @@ Decimal dave.phillips&oln-afmc.af.mil 27526 Kanazawa University - Tomohiko Imachi - jimu&imc.kanazawa-u.ac.jp + KAINS Administration + admin&kains.kanazawa-u.ac.jp 27527 ABB Ltd Natalie Eliasson @@ -112774,7 +113238,7 @@ Decimal Wawan Indarto wawan&fti.uii.ac.id 28306 - Foerderverein Buergernetz Ulm/Neu-Ulm e.V. + Foerderverein Internet Ulm/Neu-Ulm e.V. Martin Becker martin.becker&bn-ulm.de 28307 @@ -113383,8 +113847,8 @@ Decimal m.bessey&ntta.com 28458 Nokia Networks (formerly 'Nokia Siemens Networks') - Eleven Wu - eleven.wu&nokia-sbell.com + Juha Hopsu + juha.hopsu&nokia.com 28459 Rogue Engineering Inc. Tim Kirk or Mark Walsh @@ -114118,9 +114582,9 @@ Decimal Michael Reynolds michael.reynolds&sosdg.org 28642 - Proveedor de Certificados PROCERT, C. A. + Proveedor de Certificados PROCERT ITFB, C. A. Oscar Lovera - oscar.lovera&procert.net + oscar.lovera&procert.net.ve 28643 SUEIIDISS Gustavo Perez @@ -114375,8 +114839,8 @@ Decimal snmp_admin&furuno.co.jp 28706 Airservices Australia - Michael Bachmann - michael.bachmann&airservicesaustralia.com + Cyber admin + cyber&airservicesaustralia.com 28707 National Cancer Center Naoyuki Satoh @@ -116462,9 +116926,9 @@ Decimal Stuart Mackintosh stuartm&criticall.co.uk 29228 - Distributed Medical Sverige AB + Distributed Medical AB Björn Lundmark - bjorn.lundmark&distributedmedical.se + bjorn&distributedmedical.com 29229 OutServ, Inc. Anthony Quinn @@ -116654,9 +117118,9 @@ Decimal Caleb Callaway caleb&autometrix.com 29276 - Wizards Internet Limited - Martin Poole - mpoole&wizards-internet.co.uk + Exim Internet Mailer + Bernard Quatermass + bernardq&exim.org 29277 BookieStreet, Ltd. Andy Chantrill @@ -118023,8 +118487,8 @@ Decimal ikonv&sytech.ru 29618 Region Syddanmark - Carsten Friis - carsten.friis®ionsyddanmark.dk + Michael Lykkegaard Laursen + mll&rsyd.dk 29619 Johannes Oechsle LAN-Party Netzwerkausruester Johannes Oechsle @@ -118402,8 +118866,8 @@ Decimal Martin Menhart mmsp&m-sys.at 29713 - LTECH - WangJun + LTech Information Technology Co. LTD. + Wang Jun wangjun<ech.cc 29714 Kyocera Communication Systems Co.Ltd @@ -120110,9 +120574,9 @@ Decimal Schossleitner Robert robert.schossleitner&ams-engineering.com 30140 - Advantech B+B SmartWorx s.r.o. (formerly 'Conel s.r.o.') - Tomas Paukrt - tomas_paukrt&advantech-bb.com + Advantech Czech s.r.o. + Radomír Svoboda + petr.hanus&advantech.cz 30141 Landesbetrieb Daten und Information Rheinland-Pfalz Holger Weil @@ -121538,7 +122002,7 @@ Decimal Miljan Djakonovic miljan.djakonovic&e-smartsys.com 30497 - Beijing EaseSea Interman Technology Co., + Beijing EaseSea Interman Technology Co., Xiaoqiang Ye yexq&eastseagroup.com 30498 @@ -122855,8 +123319,8 @@ Decimal noc¢racomm.net 30826 SmartOptics AS - Dirk Lutz - d.lutz&smartoptics.com + Göran + goran.hillebrink&smartoptics.com 30827 RIZ-Transmitters Co. (formerly 'RIZ ODASILJACI d.d.') Zvonimir Lucić @@ -124538,9 +125002,9 @@ Decimal Peter Peng peter.penghai&163.com 31247 - DigiSSL + pingdash AB Pontus Engblom - pontus.engblom&digissl.eu + pontus&pingdash.se 31248 Field Solutions, LLC Jeff Sussna @@ -124587,8 +125051,8 @@ Decimal jcy&3onedata.com.cn 31259 Sisnetinfo CO., ltd. - Joo-Yeop Kim - nwanda&sisnetinfo.co.kr + TAEHO, KANG + admin&sisnetinfo.co.kr 31260 Phebus Jonathan Phebus @@ -124596,7 +125060,7 @@ Decimal 31261 Placid Sky Consulting Herman Slagman - hslagman&xs4all.nl + herman&placidsky.nl 31262 HOLA S.A. Alberto Crespo @@ -124767,7 +125231,7 @@ Decimal admin&helloweb.eu 31304 Andes Servicio de Certificación Digital (SCD) S.A. - Sandra Cecilia Restrepo Martínez + Sandra Cecilia Restrepo Martínez sandra.restrepo&andesscd.com.co 31305 Sure Tech (HK) Limited @@ -124919,8 +125383,8 @@ Decimal markus.miller&innosystec.de 31342 S-Terra CSP - Dmitri Sokolov - ds&s-terra.com + Anton Voeykov + it&s-terra.ru 31343 Festo AG & Co. KG Matthias Daum @@ -125686,9 +126150,9 @@ Decimal Jim Walker ops&scansafe.com 31534 - Adfinis SyGroup AG (formerly 'SyGroup GmbH') - Daniel Aubry - info&adfinis-sygroup.ch + Adfinis AG + Michael Hofer + info&adfinis.com 31535 Parkeon Thierry Machicoane @@ -126054,9 +126518,9 @@ Decimal Ville Walveranta vwal&astronfortis.com 31626 - Lee-Dickens Ltd - Simon Andrews - simona&lee-dickens.co.uk + Lee-Dickens + Andy Needham + andy.needham&lee-dickens.co.uk 31627 Preferred Voice, Inc. Bern Bareis @@ -126631,7 +127095,7 @@ Decimal ito-unix&kvb.de 31770 Bachmann GmbH - Horst Haun + Wilhem Wehrle info&bachmann.com 31771 eGenix.com Software, Skills and Services GmbH @@ -126794,7 +127258,7 @@ Decimal Dr. Iavor Antonov Iavor.Antonov&cinterion.com 31811 - IKOR Products GmbH + IKOR Products GmbH Henry Reckewitz support&ikor.de 31812 @@ -127019,7 +127483,7 @@ Decimal rscott&stbernard.com 31867 Unassigned - + ---none--- ---none--- 31868 The Village Group, Inc. @@ -128618,9 +129082,9 @@ Decimal Bartosz Dendor b.dendor&ppc-ag.de 32267 - IST Austria - Core-IT - coreit&ist.ac.at + Institute of Science and Technology Austria + Core IT + coreit&ista.ac.at 32268 Hobby Lobby Stores, Inc. John Sargent @@ -128751,8 +129215,8 @@ Decimal greg&coatesoft.com 32300 Alcorn McBride Inc. - Joy Burke - joy&alcorn.com + Hunter Olson + hunter&alcorn.com 32301 Siemens IT Solutions and Services Frank Wagner @@ -131350,7 +131814,7 @@ Decimal Bill Holder bill.holder&sunwater.com.au 32950 - Meucci Solutions + Meucci Solutions Lieven De Bontridder lieven.de.bontridder&meucci-solutions.com 32951 @@ -131367,8 +131831,8 @@ Decimal ps&yat.de 32954 Italiaonline S.p.A. - Mantovani Alberto - alberto.mantovani&italiaonline.it + Massimo Meregalli + massimo.meregalli&italiaonline.it 32955 Hrvatske sume d.o.o Ratko Pacadi @@ -131503,7 +131967,7 @@ Decimal kelvin.carman&barrowa.com 32988 Dott. Giulimondi Gabriele - Gabriele Giulimondi + Gabriele Giulimondi gabriele&giulimondi.it 32989 in-volv @@ -131763,8 +132227,8 @@ Decimal sai&dhyanit.com 33053 Vialis bv. - Eelco van Dam - eelco.van.dam&vialis.nl + Ferry de Bruin + ferry.de.bruin&vialis.nl 33054 iPLON GmbH The Infranet Company Thomas Kurz @@ -131854,9 +132318,9 @@ Decimal Jens Thomas info&linux-systeme-thomas.de 33076 - SHAROPS SASU (formerly 'SCORE42 SAS') + SHAROPS SASU RAKOTOMALALA Renaud - renaud.rakotomalala&sharops.eu + iana&iopsthecloud.com 33077 InformSvyazStroi, Ltd. Aleksei Miheev @@ -132074,7 +132538,7 @@ Decimal Ryan Perkowski ryanp&virtualinstruments.com 33131 - Drexel University + Drexel University Paul Keenan pen-mgr&drexel.edu 33132 @@ -133007,7 +133471,7 @@ Decimal scott.goodwin&duffandphelps.com 33364 ginkgotek - huo ju + huo ju huoju&ginkgotek.com 33365 Edelbluth Engineering @@ -133150,7 +133614,7 @@ Decimal Dr. Sherif Hazem Nour el-din snoureldin&mcit.gov.eg 33400 - Anywire Corporation + Anywire Corporation Makoto Yamashita yamashita&anywire.jp 33401 @@ -133794,7 +134258,7 @@ Decimal Alexander Senturin avsenturin&tula.arbitr.ru 33561 - Express Gifts ltd + Express Gifts ltd Andrew Gerrard hostmaster&findel.co.uk 33562 @@ -134323,7 +134787,7 @@ Decimal info&meona.de 33693 SMALS - Monitoring Office + Monitoring Office supervision&smals.be 33694 Knexus Research Corporation @@ -134490,7 +134954,7 @@ Decimal Davide Chini oid&chini.info 33735 - Buzzlogic Inc. + Buzzlogic Inc. Robert B. Carleton bcarleton&buzzlogic.com 33736 @@ -134755,7 +135219,7 @@ Decimal mohelpdesk&carfax.com 33801 Colorquick, LLC - Philip Panelli + Philip Panelli ppanelli&crwgraphics.com 33802 Xensor Systems Incorporated @@ -134846,7 +135310,7 @@ Decimal Holger Paschke support&comspace.de 33824 - Spirent Communications of Rockville, Inc. + Spirent Communications of Rockville, Inc. Ntinos Solos ksolos&spirentcom.com 33825 @@ -134858,7 +135322,7 @@ Decimal Ben Xu benx&sjtu.org 33827 - Dan Hirsch + Dan Hirsch Dan Hirsch thequux&gmail.com 33828 @@ -134907,7 +135371,7 @@ Decimal abertuqui&voxline.com.br 33839 CONFESOL - Márcio André + Márcio André marcio&confesol.com.br 33840 LEDZGO @@ -135014,7 +135478,7 @@ Decimal Uditha Atukorala info&aholdings.biz 33866 - Lionic Corp. + Lionic Corp. Roger Chien roger.chien&lionic.com 33867 @@ -135370,7 +135834,7 @@ Decimal Damir Tejic dtejic&isb.bj.edu.cn 33955 - Better Place + Better Place Emek Sadot emek.sadot&betterplace.com 33956 @@ -135414,7 +135878,7 @@ Decimal Grzegorz Szczyglowski grzegorz.szczyglowski&gmail.com 33966 - FUNAI ELECTRIC CO., LTD. + FUNAI ELECTRIC CO., LTD. Masahiro Matsuo matuo&funai.co.jp 33967 @@ -135439,7 +135903,7 @@ Decimal gao_jianmin&vanceinfo.com 33972 RFPA - ROUSSELET Michel + ROUSSELET Michel rfpa&rfpa.com 33973 Net Entertainment NE AB @@ -135462,7 +135926,7 @@ Decimal Dan Granville dan&blipcreative.com 33978 - YAGI ANTENNA INC. + YAGI ANTENNA INC. mimura makoto mimura.makoto&yagi.h-kokusai.com 33979 @@ -136058,7 +136522,7 @@ Decimal Francisco J. Guzman javier_guzman&ieee.org 34127 - Allgemeiner Deutscher Fahrrad-Club Landesverband Nordrhein-Westfalen e.V. + Allgemeiner Deutscher Fahrrad-Club Landesverband Nordrhein-Westfalen e.V. Jan Bartels penregistration&adfc-nrw.de 34128 @@ -136566,7 +137030,7 @@ Decimal Benito Galan bgalan&viafirma.com 34254 - Savannah Networks LLC + Savannah Networks LLC Scott Cudney snmp&savannah-networks.com 34255 @@ -136731,7 +137195,7 @@ Decimal markus.heinze&c-cron.de 34295 Dalian Gigatec Electronics Co.,Ltd - Dalian guokun + Dalian guokun guo_kun1977&126.com 34296 Dalian Maritime University @@ -136854,9 +137318,9 @@ Decimal Herman Young hyoung&investec.co.za 34326 - Nokia - Eleven Wu - eleven.wu&nokia-sbell.com + Nokia + Juha Hopsu + juha.hopsu&nokia.com 34327 Farmacia Valentini Pablo Juan Valentini @@ -137094,7 +137558,7 @@ Decimal QingDa Yu qingda.yu&hingesoftware.com 34386 - Intelligent Mechatronic Systems Inc. + Intelligent Mechatronic Systems Inc. David Campbell dcampbell&intellimec.com 34387 @@ -137195,8 +137659,8 @@ Decimal mmm&foss.kharkov.ua 34411 Playtech Estonia OÜ - Kristjan Bek - kristjan.bek&playtech.com + Valdo Kanemägi + infra.system&playtech.com 34412 Mutina Technology S.r.l. Stefano Torri @@ -137380,7 +137844,7 @@ Decimal 34457 Rex Wheeler Rex Wheeler - rex&fuzzy.com + rex&fuzzytiger.com 34458 K.S.Transplaneta Ltd Karsten Siebert @@ -137422,8 +137886,8 @@ Decimal Jeffrey Hsu jeffrey&repotec.com 34468 - Open Source Solution Technology Corporation - Kentaro Nomura + OSSTech Corporation + SATOH Fumiyasu info&osstech.co.jp 34469 LOGIT CORPORATION @@ -137510,9 +137974,9 @@ Decimal Raimund Geiger raimund.geiger&nikon.ch 34490 - Teliwave Pte Ltd - Kok Yew Meng - noc&teliwave.com + B3Networks + Ong Kok Choong + okchoong&b3networks.com 34491 Almaz-Antey Telecom Dmitry Grishin @@ -137638,7 +138102,7 @@ Decimal Arshad Patel awp&comlinkinc.com 34522 - Pinnacle Wireless + Pinnacle Wireless Doug Ehlers dehlers&idsmindshare.com 34523 @@ -137783,7 +138247,7 @@ Decimal seguridad_calidad&lista.mju.es 34558 Unassigned - + ---none--- ---none--- 34559 Maschinenfabrik Reinhausen GmbH @@ -137906,7 +138370,7 @@ Decimal Fan Aihua fanah&iata.org 34589 - Adnovate + Adnovate Joris Jansen jjansen&adnovate.com 34590 @@ -137930,7 +138394,7 @@ Decimal Immanuel Jeyaraj ijeyaraj&gopportunity.net 34595 - Xteam Network(Beijing) Co.,Ltd + Xteam Network(Beijing) Co.,Ltd zhaohai zhaohai&18mail.cn 34596 @@ -138154,7 +138618,7 @@ Decimal He Hin Hoong hhhoong&p2cache.com 34651 - agama co,ltd + agama co,ltd luo yaojun luoyaojun&sina.com 34652 @@ -138174,7 +138638,7 @@ Decimal Berthold Boeser info&ib-boeser.de 34656 - ATS, Applicazione Tecnologie Speciali + ATS, Applicazione Tecnologie Speciali Campo Marilina marilina.campo&atsmed.it 34657 @@ -138606,7 +139070,7 @@ Decimal David Moss dmoss&peoplepowerco.com 34764 - ProStructure Consulting + ProStructure Consulting Micah McNelly micah&prostructure.com 34765 @@ -138802,7 +139266,7 @@ Decimal Alex Dick alex.dick&mirifice.com 34813 - Multilink + Multilink Jon Ciccozzi jciccozzi&multilinkone.com 34814 @@ -138934,8 +139398,8 @@ Decimal Mohammed Azirar m.azirar&fstt.ac.ma 34846 - SERTRES del Norte - Daniel Rios + SERTRES del Norte + Daniel Rios juanvelez&logistecsoftware.com 34847 Spacetime Studios, LLC @@ -139367,7 +139831,7 @@ Decimal robert&3cs.ch 34954 Novtis do Brasil S/A - Ricardo Barbosa Matsuno + Ricardo Barbosa Matsuno ricardo.matsuno&novtis.com.br 34955 Roland Gruber Softwareentwicklung @@ -139498,7 +139962,7 @@ Decimal Jon Hassen jonh&bookmans.com 34987 - OneWire + OneWire Greg Varga greg.varga&onewire.ca 34988 @@ -139563,7 +140027,7 @@ Decimal coolfish&dcux.com 35003 ADP ESI - Jean-Edouard Babin + Jean-Edouard Babin ipc.network&europe.adp.com 35004 Bahia Software SL @@ -139862,7 +140326,7 @@ Decimal Mohammad Ali Khavari mkhavari&gracenote.com 35078 - i-fabrik GmbH + i-fabrik GmbH Nico Wagner nico.wagner&ifabrik.de 35079 @@ -139955,7 +140419,7 @@ Decimal andy&btl.com.hk 35101 SHENZHEN SHENXUN INFORMATION TECHNOLOGY DEVELOPMENT CO.,LID - RenDong Lee + RenDong Lee SilentWoolf&hotmail.com 35102 Guangdong Huada Integrated Technology Co.,ltd. @@ -140142,7 +140606,7 @@ Decimal Einstein Lin elin&wishfi.com 35148 - Technological Educational Institute of Piraeus + Technological Educational Institute of Piraeus Christina Avgerinou noc&teipir.gr 35149 @@ -140174,7 +140638,7 @@ Decimal Eitaro Washio info&ip3.co.jp 35156 - Unbit + Unbit Roberto De Ioris info&unbit.it 35157 @@ -140211,7 +140675,7 @@ Decimal m.seaman&black-earth.co.uk 35165 Barid Al Maghrib - Dr. Ahmed KADA + Dr. Ahmed KADA kada&poste.ma 35166 E2E Networks Private Limited @@ -140551,7 +141015,7 @@ Decimal pedepompignan&altamys.com 35250 Simply-Info - Sebastien DAMAY + Sebastien DAMAY simply-info&damay.eu 35251 AWIND Inc @@ -140606,7 +141070,7 @@ Decimal Nathan Ward nward&braintrust.co.nz 35264 - TetraStorm Technologies + TetraStorm Technologies Ragesh Krishna oid.admin&tetrastorm.com 35265 @@ -140635,7 +141099,7 @@ Decimal cavatina&samji.com 35271 micallef.fr - David Micallef + David Micallef david&micallef.fr 35272 DEBID @@ -140691,7 +141155,7 @@ Decimal kihyeon.kim&gmail.com 35285 Ministry of Administration and Interior - General Directorate for IT & C - Marian Augustin Răducu + Marian Augustin Răducu marian.raducu&mai.gov.ro 35286 Johanniter-Unfall-Hilfe e. V. - Landesverband Baden-Wuerttemberg @@ -140750,7 +141214,7 @@ Decimal Steve Ortiz steve&uvg.edu.gt 35300 - REGISTRO NACIONAL DE IDENTIFICACIÓN Y ESTADO CIVIL + REGISTRO NACIONAL DE IDENTIFICACIÓN Y ESTADO CIVIL Ricardo Saavedra Mavila iana&pkiep.reniec.gob.pe 35301 @@ -140870,7 +141334,7 @@ Decimal David Tenney dtenney&swalter.com 35330 - RRsat Global Communications Network + RRsat Global Communications Network Oded shor oded&rrsat.com 35331 @@ -140878,7 +141342,7 @@ Decimal Lineu Paiva lineu&farn.br 35332 - Alticast Corp. + Alticast Corp. Younggi Hong nari&alticast.com 35333 @@ -141506,9 +141970,9 @@ Decimal Steven Charles Dake sdake&redhat.com 35489 - IRZ AUTOMATION TECHNOLOGIES LTD (formerly 'Radiofid Ltd') - Dmitry Koroban - iana&radiofid.ru + RADIOFID SYSTEMS COMPANY LIMITED + Volkov Georgii + iana&radiofid.ru; gvolkov&radiofid.ru 35490 AGEPS - APHP Martin Hilka @@ -141786,8 +142250,8 @@ Decimal Alex Sobral de Freitas projetos&itin.com.br 35559 - Shanda Interactive Entertainment Limited - Ke Ze Zhou + Shanda Interactive Entertainment Limited + Ke Ze Zhou zhoukeze&snda.com 35560 Dnspod @@ -141878,8 +142342,8 @@ Decimal Thomas Andrews iana-admin&grok.co.za 35582 - mTrust, s. r. o. - Ing. Vladimír Popík + mTrust, s. r. o. + Ing. Vladimír Popík vladimir.popik&mtrust.sk 35583 Drizzle @@ -142275,7 +142739,7 @@ Decimal mina.naguib&adgear.com 35681 Zenith System Solutions - Vikram Dhaddha + Vikram Dhaddha vikramd&zenithss.com 35682 Technical University of Liberec @@ -142382,7 +142846,7 @@ Decimal Steffen Löb pki&sup-sahlmann.com 35708 - BOUYGUES CONSTRUCTION + BOUYGUES CONSTRUCTION Bruce GARNIER B.GARNIER&bouygues-construction.com 35709 @@ -142710,7 +143174,7 @@ Decimal Gustavo Randich grandich&despegar.com 35790 - ClearCorp + ClearCorp Joan E. Jorden joan&clearcorp.biz 35791 @@ -142838,9 +143302,9 @@ Decimal Leonardo Centoventotto assistenza&fbcomputers.com 35822 - V-Internet Operations, Inc. - Shinji SATO - sato&vio.co.jp + Panasonic Net Solutions Co.,Ltd + 佐藤 晋司 (Sato Shinji) + sato.shinji002&jp.panasonic.com 35823 HANGZHOU RICH INFO-TECH CO.,LTD Wenbin Liao @@ -143610,7 +144074,7 @@ Decimal David Baden badend&rfa.org 36015 - SavillTech + SavillTech John Savill john&savilltech.com 36016 @@ -144115,7 +144579,7 @@ Decimal christian.trautsch&funkwerk-itk.com 36141 Ubiquoss - Gyunam Cho + Gyunam Cho earl&ubiquoss.com 36142 ASTREA LA INFOPISTA JURIDICA SL @@ -144150,7 +144614,7 @@ Decimal Rick Chen rick_chen&argox.com 36150 - ShenZhen MingWah AoHan High Technology Corporation Ltd. + ShenZhen MingWah AoHan High Technology Corporation Ltd. lixiang lixiang26&tom.com 36151 @@ -144622,7 +145086,7 @@ Decimal Torsten Franke mail&torstenf.de 36268 - ComAbility + ComAbility Oleg Pogorelik oleg&comability.com 36269 @@ -145202,7 +145666,7 @@ Decimal Gennadiy Mogulyan mgv&stalenergo.ru 36413 - LUMIPLAN SAS + LUMIPLAN SAS Didier FAUCHER didier.faucher&lumiplan.com 36414 @@ -145435,7 +145899,7 @@ Decimal satoshi.fushimi&sofdela.info 36471 Beijing SureKAM Technology Co., Ltd. - size Liu + size Liu liusize_yuexia&hotmail.com 36472 Ilait @@ -145518,7 +145982,7 @@ Decimal Steve La sla&csulb.edu 36492 - JUNet (Jordanian Network Universities) + JUNet (Jordanian Network Universities) Anwar Al-Yousef anwar&junet.edu.jo 36493 @@ -145870,7 +146334,7 @@ Decimal Akos Solymos akos.solymos&erstebank.hu 36580 - DVG Deutsche Vertriebsgesellschaft für Publikationen und Filme mbH + DVG Deutsche Vertriebsgesellschaft für Publikationen und Filme mbH Markus Nass nass&dvg-ff.com 36581 @@ -145942,9 +146406,9 @@ Decimal Dominique Laigle dlaigle&gmail.com 36598 - SELEX Systems Integration Inc - Dustin Lewis - lewis&selex-si-us.com + Indra Air Traffic Inc. + Kevin Sivits + ksivits&indraairtraffic.com 36599 Bremer Landesbank Oliver Merdes @@ -145970,7 +146434,7 @@ Decimal Charlie Allom hostmaster&mediaserviceprovider.com 36605 - Hannover Rückversicherung AG + Hannover Rückversicherung AG Hans-Juergen Kreutzer hans-juergen.kreutzer&hannover-re.com 36606 @@ -146396,7 +146860,7 @@ Decimal 36711 Micromodje Industries Yasamin Gharib - yasamin.gharib62&gmail.com + yasamin.gharib62&gmail.com 36712 The Cell Daniel Bradshaw @@ -146662,7 +147126,7 @@ Decimal Jonathan Petersson jpetersson&sedoss.com 36778 - Leap Power + Leap Power Haluk Aral haral&leap-power.com 36779 @@ -146790,7 +147254,7 @@ Decimal Golubtsov Aleksey cis2admin&iteranet.com 36810 - 237 Solutions Pty Ltd + 237 Solutions Pty Ltd Mike Lee mike&237solutions.com.au 36811 @@ -146910,7 +147374,7 @@ Decimal Giancarlo Stoppani giancarlo.stoppani&connectinformatica.it 36840 - Peter Kutting IT-Services + Peter Kutting IT-Services Yuna Kamzelak Morgenstern kamzelak&kutting-its.de 36841 @@ -147063,8 +147527,8 @@ Decimal netadmin&sundale.org.au 36878 Insta Group Ltd. - Minna Forsberg - minna.forsberg&insta.fi + Miia Onkalo + miia.onkalo&insta.fi 36879 New Mexico Consortium Andree Jacobson @@ -147678,7 +148142,7 @@ Decimal Vince McMullin vincem&mektekdev.com 37032 - RR Donnelley Europe Sp. z o.o. + RR Donnelley Europe Sp. z o.o. Krzysztof Bar krzysztof.bar&rrd.com 37033 @@ -147762,7 +148226,7 @@ Decimal Makoto Dei support&andone.co.jp 37053 - MMR Network Management Science & Technology Co., Ltd + MMR Network Management Science & Technology Co., Ltd HaoQing Shi mr_shq&163.com 37054 @@ -147827,8 +148291,8 @@ Decimal ghein&azcoppersoft.com 37069 Broadband Antenna Tracking Systems - Del Smyser - dsmyser&batswireless.com + Tim Foster + tfoster&batswireless.com 37070 RadioOpt GmbH Ernesto Zimmermann @@ -147878,7 +148342,7 @@ Decimal Jessie Rourke iana-admin&wickedtrickster.com 37082 - Ministry of Finance + Ministry of Finance Keyura Chainapong, Prinya Pridiyanon kyura898&mof.go.th 37083 @@ -147930,7 +148394,7 @@ Decimal Myles Eftos myles&madpilot.com.au 37095 - GH-Informatik GmbH. + GH-Informatik GmbH. Helmut Ghirardini helmut.ghirardini&ghi.co.at 37096 @@ -148031,7 +148495,7 @@ Decimal bjoern.abt&object.ch 37120 Velocent Systems Inc. - Randy Johnson + Randy Johnson rwj&velocent.com 37121 Eiritu Equipment Technology Co.,Ltd @@ -148178,7 +148642,7 @@ Decimal Jimmy Sun jimmy&blue-link.cn 37157 - NetentSec Inc. + NetentSec Inc. ZhongYuan Guo zhongyuan_guo&netentsec.com 37158 @@ -148510,7 +148974,7 @@ Decimal Murad BASDAG basdagm&mkm.com.tr 37240 - Joerg Riesmeier + J. Riesmeier Joerg Riesmeier iana-pen&riesmeier.de 37241 @@ -148626,7 +149090,7 @@ Decimal Stefan Pees registration&gira.de 37269 - Rosa-Luxemburg-Stiftung Gesellschaftsanalyse und politische Bildung e. V. + Rosa-Luxemburg-Stiftung Gesellschaftsanalyse und politische Bildung e. V. Olaf Barz support&rosalux.de 37270 @@ -148763,7 +149227,7 @@ Decimal iana&fad-net.de 37303 Ignesco Software - Craig Harrison + Charlotte Harrison iana-ldap&ignesco.co.uk 37304 Stonegate Instruments Ltd @@ -149262,9 +149726,9 @@ Decimal Adam Szastok a.szastok&ente.com.pl 37428 - Bürkert Werke GmbH - Marius Hein - info&netways.de + Bürkert Werke GmbH & Co. KG + Dr. Udo Gais + licences.eu&burkert.com 37429 Grand Canyon University Gary Crites @@ -149798,7 +150262,7 @@ Decimal Yongjie Zhang eddy.jhang&gmail.com 37562 - Hangzhou Yuwan Technology Co., Ltd. + Hangzhou Yuwan Technology Co., Ltd. Shuyun Guo support&itmone.com 37563 @@ -149998,7 +150462,7 @@ Decimal Ivan Yu. Malinin miu&tsinet.ru 37612 - Kassenärztliche Vereinigung Niedersachsen + Kassenärztliche Vereinigung Niedersachsen Christian Strassburg christian.strassburg&kvn.de 37613 @@ -150139,7 +150603,7 @@ Decimal ldraht&wvhcs.org 37647 Ministry of Interior - UAE (Governmental Entity) - Major General Matar Salem Bin Msaeed Al Neyadi – ICT Director / Dr. Haider Khalid A.A. Al-Ameed – Senior ICT Advisor + Major General Matar Salem Bin Msaeed Al Neyadi – ICT Director / Dr. Haider Khalid A.A. Al-Ameed – Senior ICT Advisor hkameed&adpolice.gov.ae 37648 Kalmia Technology Co, LLC @@ -150203,7 +150667,7 @@ Decimal fred&ablerex.com.tw 37663 nGen - Niagara Interactive Media Generator - Thomas Madej + Thomas Madej tmadej&ngen-niagara.com 37664 Zone de Police Midi @@ -150295,8 +150759,8 @@ Decimal notify&online-marketing-solutions.com 37686 Lookout Mobile Security, Inc. - Ryan Dooley - ryan.dooley&mylookout.com + Brian Martin + brian.martin&lookout.com 37687 Bethesda Memorial Hospital Leslie Durham @@ -150772,7 +151236,7 @@ Decimal 37805 Team Simoco Ltd. Customer Services - customer.service&simocowirelesssolutions.com + customer.service&simocowireless.com 37806 North Power Coporation (EVN NPC) Trung Huu Truong @@ -150911,7 +151375,7 @@ Decimal daniel.alzate&onesystemsa.com 37840 Veda Advantage - Jason Pell + Jason Pell jason.Pell&vedaadvantage.com 37841 Flughafen Zürich AG @@ -151246,7 +151710,7 @@ Decimal Freysteinn Alfredsson freysteinn&freysteinn.com 37924 - NokianTyres LLC + NokianTyres LLC Alexandr Sizov Aleksandr.Sizov&nokiantyres.com 37925 @@ -151550,7 +152014,7 @@ Decimal Morten Rolland mortenro&transpacket.com 38000 - DELEC Audio- und Videotechnik GmbH + DELEC Audio- und Videotechnik GmbH Georg Klug Georg.Klug&delec.de 38001 @@ -151646,7 +152110,7 @@ Decimal Stefan Horst stefan&ultrachaos.de 38024 - Logic Soft sas + Logic Soft sas Paolo Tarantola paolo&logicsoft.it 38025 @@ -151963,8 +152427,8 @@ Decimal csabi&sze.hu 38103 Dataport AöR - Bärbel Boeckmann-Mrasek - baerbel.boeckmann-mrasek&dataport.de + Sascha Graf + sascha.graf&dataport.de 38104 ProFIX Co. Oleksii Shcherbatiuk @@ -152406,9 +152870,9 @@ Decimal Alexander Mashtakov amashtakov&accent.md 38214 - Vlatacom - Momčilo Majić - momcilo.majic&vlatacom.com + Vlatacom Institute + Zoran Crnobrnja + ict-team&vlatacom.com 38215 Hochschule Hamm-Lippstadt - University of Applied Sciences Michael Steuter @@ -152431,7 +152895,7 @@ Decimal nazrul&therapservices.net 38220 Private Unitary Enterprise on Rendering Services "Greenwall Systems" (formerly 'IZAO Greenwall Systems') - Mikhail Kuznetsov + Mikhail Kuznetsov info&greenwall.by 38221 IP Gorshkov Yuri Valerevich @@ -152734,7 +153198,7 @@ Decimal Xinkai Wang xkwang&pbicn.com 38296 - Multi Sinergi Infrastruktur, PT + Multi Sinergi Infrastruktur, PT Trijaya Danisaputra trijaya_danisaputra&multisinergi.co.id 38297 @@ -153015,7 +153479,7 @@ Decimal abidin.vejseli&bkw.ch 38366 Joint-Stock Bank "Master-Bank" - Aleksey Jastrebcev + Aleksey Jastrebcev snmpmaster&masterbank.ru 38367 KIS Information Services GmbH @@ -153247,8 +153711,8 @@ Decimal thomas.fillips&pbeakk.de 38424 BalTstamp - Vincentas Vitkauskas - vincentas.vitkauskas&gmail.com + Sandra Kocetkova + sandra.kocetkova&baltstamp.lt 38425 Private University College of Education of the Diocese of Linz Wolfgang Uebermasser @@ -153290,9 +153754,9 @@ Decimal Bruno Bonfils bbonfils&opencsi.com 38435 - IQantum GmbH + IQgroup Daniel Abegglen - info&iqantum.ch + iana&iqgroup.ch 38436 ReiniNET Patrick Reinhart @@ -153862,7 +154326,7 @@ Decimal George Zoulias support&PerfectaAviation.com 38578 - New York City Transit Authority + New York City Transit Authority David Papis David.Papis&nyct.com 38579 @@ -153914,7 +154378,7 @@ Decimal Hassan Afshar iana&irib.ir 38591 - Indusface Telecom Private Limited + Indusface Telecom Private Limited Carol John Paul Mendonca carol&indusfacetelecom.com 38592 @@ -153938,11 +154402,11 @@ Decimal Daniel Filipe G. Farinha netadmin&usj.edu.mo 38597 - Sunfest + Sunfest Chinnaswamy Subramanian Kannan kannan&sunfest.in 38598 - Sunfest + Sunfest Chinnaswamy Subramanian Kannan kannan&sunfest.in 38599 @@ -154326,7 +154790,7 @@ Decimal Matthew Von-Maszewski matthewv&matthewv.com 38694 - Alabama One Health Record (ALOHR) + Alabama One Health Record (ALOHR) Himabindu Bolisetty bindu&careevolution.com 38695 @@ -154414,7 +154878,7 @@ Decimal pan he smart_p01&jlau.edu.cn 38716 - Orbotech + Orbotech Shay Bar even sys-rnd&orbotech.com 38717 @@ -154530,7 +154994,7 @@ Decimal T. Wootton tim_wootton&yahoo.com 38745 - UNO System + UNO System Kim, Kyoung-hyun kkh&uno-system.com 38746 @@ -154766,7 +155230,7 @@ Decimal Kang, DuckMoon dmkang&woori-net.com 38804 - SEVEN PRINCIPLES AG + SEVEN PRINCIPLES AG Klaus Dudda klaus.dudda&7p-group.com 38805 @@ -155343,7 +155807,7 @@ Decimal riendeau.sylvain&ireq.ca 38948 Fortior Solutions (formerly 'SureID Inc.', formerly 'Eid Passport, Inc.') - Dave Byrum + Dave Byrum dbyrum&fortiorsolutions.com 38949 Astronics AES @@ -155946,7 +156410,7 @@ Decimal Gareth Adams gareth&kyanmedia.com 39099 - RSA SaaS + RSA SaaS Steven Howe steven.howe&rsa.com 39100 @@ -156026,7 +156490,7 @@ Decimal jacques Dalbera jdalbera&amadeus.com 39119 - dm-drogerie markt GmbH + Co. KG + dm-drogerie markt GmbH + Co. KG Marco Aliberti marco.aliberti&dm-drogeriemarkt.de 39120 @@ -156070,7 +156534,7 @@ Decimal Thor Sigurdsson thor&belgingur.is 39130 - Century Software (M) Sdn Bhd + Century Software (M) Sdn Bhd Mark Rees mark¢urysoftware.com.my 39131 @@ -156143,7 +156607,7 @@ Decimal thorsten.eisinger&intratop.de 39148 Agjencia Kombetare e Shoqerise se Informacionit - Fisnik Kruja + Fisnik Kruja fisnik.kruja&akshi.gov.al 39149 broadAngle, LLC @@ -156491,7 +156955,7 @@ Decimal mitroko&gmail.com 39235 Exelis Inc. - Paul Lafferty + Paul Lafferty paul.lafferty&exelisinc.com 39236 TriFractal Studios (formerly 'Sacred Point Studios') @@ -156506,7 +156970,7 @@ Decimal Michael Henrichs mhenrichs&velocidata.com 39239 - LittleJackal + LittleJackal Paul Kiela iana&littlejackal.com 39240 @@ -157742,7 +158206,7 @@ Decimal Jackie Cheeks jcheeks&wakemed.org 39548 - Beijing TopShine Technology Co., Ltd. + Beijing TopShine Technology Co., Ltd. dengji hua dengjihua&topshinetech.com 39549 @@ -157966,7 +158430,7 @@ Decimal Mario Teichmann-Denschlag Mario.Teichmann-Denschlag&dttec.de 39604 - Accuenergy (CANADA) Inc. + Accuenergy (CANADA) Inc. Zhi Zhao george.zhao&accuenergy.com 39605 @@ -158046,7 +158510,7 @@ Decimal Markus Zinner mzinner&pcs.com 39624 - herold&schönsteiner networks UG haftungsbeschränkt + herold&schönsteiner networks UG haftungsbeschränkt Fabian Kreuzkam fabian.kreuzkam&herold-schoensteiner.de 39625 @@ -158090,7 +158554,7 @@ Decimal Pun Lam phl&highgrand.com.cn 39635 - Beijing ZhongChuang Telecom Test Co.,LTD + Beijing ZhongChuang Telecom Test Co.,LTD Huiling Shen happyshlshl&126.com 39636 @@ -158114,7 +158578,7 @@ Decimal Michael Schloh von Bennewitz michael&schloh.com 39641 - SPICE DIGITAL LIMITED + SPICE DIGITAL LIMITED Gurpreet Singh Gondara gurpreet.singh&spicedigital.in 39642 @@ -158154,7 +158618,7 @@ Decimal Kerrod Fuller iana.administrator&aemo.com.au 39651 - ComTecT + ComTecT Werner Saathoff saathoff&comtect.de 39652 @@ -158546,7 +159010,7 @@ Decimal Luca Lo Iacono support&intesyn.it 39749 - Kassenärztliche Vereinigung Brandenburg + Kassenärztliche Vereinigung Brandenburg Stefan Mrosek stefan.mrosek&kvbb.de 39750 @@ -158595,7 +159059,7 @@ Decimal yanagihara.kousaku&new-cosmos.co.jp 39761 Galiam Capital, LLC - Austin B. Calvert + Austin B. Calvert austin.calvert&galiam.com 39762 Radio Mobile Access, Inc @@ -158622,7 +159086,7 @@ Decimal David Bruce david.bruce&tomtom.com 39768 - UAB Technologiju ir inovaciju centras + UAB Technologiju ir inovaciju centras Aleksandras Jevsejevas aleksandras.jevsejevas&etic.lt 39769 @@ -158783,7 +159247,7 @@ Decimal natalieg&edgewaterwireless.com 39808 SHINE SYSTEM - Heo,wonsuck + Heo,wonsuck activedesk&zenois.com 39809 Lonely Planet @@ -159138,7 +159602,7 @@ Decimal Dave Blankenship blanked&ccf.org 39897 - Ryder System, Inc. + Ryder System, Inc. Sumanth Gangaraboina enterpriseitsecurity&ryder.com 39898 @@ -159226,7 +159690,7 @@ Decimal G.K. Meier snmp.engineers&cardiocore.com 39919 - hybris GmbH + hybris GmbH Joachim Kraftmayer joachim.kraftmayer&hybris.com 39920 @@ -159438,8 +159902,8 @@ Decimal wuminhua wuminhua&skyee.com.cn 39972 - TUV RHEINLAND IBERICA SA - Enrique Mora + TUV RHEINLAND IBERICA SA + Enrique Mora enrique.mora&es.tuv.com 39973 Janmedia Interactive Sp. z o.o. @@ -159606,7 +160070,7 @@ Decimal Juha Nyholm oid-admin&lintloaf.net 40014 - Progress Rail Services Inspection & Information Systems + Progress Rail Services Inspection & Information Systems Steven Kirby skirby&progressrail.com 40015 @@ -159823,7 +160287,7 @@ Decimal akochetkov&lintech.ru 40068 The Venus Project - Roxanne Meadows + Roxanne Meadows admin&thevenusproject.com 40069 enprovia Software Engineering s. r. o. @@ -159910,7 +160374,7 @@ Decimal Vijay Sharma vijay.sharma&netambit.in 40090 - Netline Communications Technologies Ltd + Netline Communications Technologies Ltd Harel Bahaloul harel&netline.co.il 40091 @@ -160234,7 +160698,7 @@ Decimal Stephen Liang kuochuan&npnetworks.com 40171 - HF. Radio Communication Technology Co., Ltd + HF. Radio Communication Technology Co., Ltd Paky.Du paky.pc.du&radiotech.cn 40172 @@ -160462,7 +160926,7 @@ Decimal Daniel Mahoney dmahoney&d1tv.net 40228 - Valley ComputerWorks, Inc. DBA Paragus Strategic I.T. + Valley ComputerWorks, Inc. DBA Paragus Strategic I.T. Delcie Bean dbean¶gusit.com 40229 @@ -160519,7 +160983,7 @@ Decimal andy.lan&ogdentec.com 40242 GNS Science - Robert Pearce + Robert Pearce r.pearce&gns.cri.nz 40243 3U HOLDING AG @@ -161126,7 +161590,7 @@ Decimal Garry L. Hurley Jr. garry.hurley.jr&gmail.com 40394 - Optogan Group + Optogan Group Dima Fedorov dimajf&optogan.com 40395 @@ -161602,7 +162066,7 @@ Decimal Hamid Saeed hamid.saeed&virgin.net 40513 - weifang mingji technology co., LTD + weifang mingji technology co., LTD Jiayulin jiayl&mingjitech.com 40514 @@ -161622,8 +162086,8 @@ Decimal Li Min lim&herotel.cn 40518 - Foresight - Yariv Hazony + Foresight + Yariv Hazony yariv&foresight-air.com 40519 sprd.net AG @@ -162246,17 +162710,17 @@ Decimal Sergey S. Kovalev sysadmin&unigine.com 40674 - SAIT (formerly 'SAIT Zenitel') + SAIT (Securitas) Koen Verdijck - koen.verdijck&sait.net + koen.verdijck&securitas.be 40675 geiger BDT GmbH Maximilian Barth barth&geiger-bdt.de 40676 - Microsemi Corporation - Ming-Hoe Kiu - ming-hoe.kiuµsemi.com + Microchip Technology Inc. + G. Richard Newell + richard.newellµchip.com 40677 RKF Engineering Solutions, LLC Brian Sipos @@ -162282,7 +162746,7 @@ Decimal Bill Thanis differential.karma&gmail.com 40683 - Open Grid Europe GmbH + Open Grid Europe GmbH Holger Kayser pen-admin&open-grid-europe.com 40684 @@ -162290,7 +162754,7 @@ Decimal Boris Livshutz it&appdynamics.com 40685 - Kafinated Kode, Inc + Kafinated Kode, Inc Rishi Pidva rishi&kafinatedkode.com 40686 @@ -162342,7 +162806,7 @@ Decimal Mikko Junnila mikko.junnila&almamanu.fi 40698 - TeliSwitch Solutions + TeliSwitch Solutions Shaike Zalitzky shaikez&teliswitch.com 40699 @@ -162427,8 +162891,8 @@ Decimal praveen&relysys.co.in 40719 The Lubrizol Corporation - Phil Evans - phil.evans&lubrizol.com + Frank Kraft + frank.kraft&lubrizol.com 40720 Texas Department of Public Safety William Berry @@ -162479,8 +162943,8 @@ Decimal thomas.bhatia&elephanttalk.com 40732 IEEE 2030.5 Working Group - Bob Heile - BHEILE&IEEE.ORG + Robby Simpson + robby.simpson&ieee.org 40733 Sabzfaam ICT Ahmadreza Khaleghi @@ -162679,7 +163143,7 @@ Decimal rogerc&cynaptica.net 40782 Dyne System Co., Ltd - Do Woong Park + Do Woong Park adams&dynesys.co.kr 40783 icoMetrix @@ -162806,7 +163270,7 @@ Decimal Jann Heider info&agenturadmin.de 40814 - Garden City Hospital + Garden City Hospital Linda Bell LBell&gchosp.org 40815 @@ -162914,7 +163378,7 @@ Decimal Andy Ruddock admin&rainydayz.org 40841 - n-Systems GmbH & Co. KG + n-Systems GmbH & Co. KG Bernhard Grün bernhard.gruen&n-systems.de 40842 @@ -163103,7 +163567,7 @@ Decimal idm.admin&minden.edeka.de 40888 Universitaetsklinikum Tuebingen - Oliver Warda + Oliver Warda oliver.warda&med.uni-tuebingen.de 40889 Global Invacom Ltd @@ -163334,12 +163798,12 @@ Decimal Leonardo Pignataro leonardop&oaks.com.br 40946 - Yuriy Moskovets - Yuriy Moskovets + Yurii Moskovets + Yurii Moskovets kontact&moskovets.com 40947 Metromatics Pty Ltd - Damien Cahill + Damien Cahill dcahill&metromatics.com.au 40948 BiTMICRO Networks, Inc. @@ -163503,7 +163967,7 @@ Decimal iana&qswks.com 40988 Justin Obernier - Justin Obernier + Justin Obernier justin.obernier&gmail.com 40989 GLsun Science and Tech Co.Ltd @@ -164119,7 +164583,7 @@ Decimal tgoldsmith&sehealth.org 41142 Instant Solutions LTDA - Pedro Howat Rodrigues + Pedro Howat Rodrigues pedro&instant.com.br 41143 Goodloe Consulting Group, LLC @@ -164506,7 +164970,7 @@ Decimal Shane Spinuzzi shane&shanespinuzzi.com 41239 - Charles County Goverment + Charles County Goverment Matthew Goddard goddardm&charlescountymd.gov 41240 @@ -164564,7 +165028,7 @@ Decimal 41253 Millry Telephone Co Gene Brown - geneb&millry.net + gene&millry.com 41254 Wroclaw School of Applied Informatics "Horyzont" Jarek Szablowski @@ -164719,7 +165183,7 @@ Decimal kurt.bernhardt&leo-pharma.com 41292 LSU Health System - John Mire + John Mire Shv-IT-Security&lsuhsc.edu 41293 Taylor Innovations, LLC @@ -164886,7 +165350,7 @@ Decimal John Xie xie&greatele.com 41334 - Feldhaus - Uhlenbrock Sicherheit &Technik GmbH + Feldhaus - Uhlenbrock Sicherheit &Technik GmbH Franz Josef Feldhaus feldhaus&feldhaus-uhlenbrock.de 41335 @@ -164990,9 +165454,9 @@ Decimal Assil Chehade ach&triax.dk 41360 - Prodrive B.V. - Krzysztof Olejarczyk - krzysztof.olejarczyk&prodrive.nl + Prodrive Technologies Group B.V. + Information Technology + iana-pen-inquiries&prodrive-technologies.com 41361 KYOS SARL Martino Dell'Ambrogio @@ -165143,7 +165607,7 @@ Decimal joachim.meier&arag.de 41398 Micaela Gasper LMT - Micaela Gasper + Micaela Gasper micaelagasper&gmail.com 41399 Groupe Dynamite Inc. @@ -165211,7 +165675,7 @@ Decimal supervision&systeme-u.fr 41415 Lucile Packard Children's Hospital at Stanford - Sreedhar Madullapalli + Sreedhar Madullapalli Smadullapalli&lpch.org 41416 Futura Retail Solution AG @@ -165266,9 +165730,9 @@ Decimal Thomas Obowa tobowa&otpco.com 41429 - Incoax Networks Europe AB - Anders Holmström - anders&incoax.com + InCoax Networks AB + Thomas Svensson + thomas.svensson&incoax.com 41430 New Zealand Ministry of Business, Innovation and Employment Tony Murray @@ -165502,7 +165966,7 @@ Decimal Evgeny Kuryshev mail-root&ostrovok.ru 41488 - City of Naperville + City of Naperville Brian Groth grothb&naperville.il.us 41489 @@ -165511,7 +165975,7 @@ Decimal arjan&hakwerk-it.nl 41490 SUNGSAM CO., Ltd. - JUNGIN BYUN + JUNGIN BYUN jibyun&sungsam.co.kr 41491 KDDI Web Communications Inc. @@ -165666,7 +166130,7 @@ Decimal William Steiner bills&bravanet.org 41529 - Zenerji, LLC + Zenerji, LLC Young H. Etheridge yhe&yheville.net 41530 @@ -165676,7 +166140,7 @@ Decimal 41531 Basic., INC. Akira Ohta - ohta&basic.co.jp + postmaster&basic.co.jp 41532 Quick2Wire Limited Romilly Cocking @@ -166286,7 +166750,7 @@ Decimal Peter Jones peter.jones&nebula-media.co.uk 41684 - Pyzuka + Pyzuka Jeroen Dekkers iana&pyzuka.nl 41685 @@ -166314,7 +166778,7 @@ Decimal Tibor Fábi tfabi&dension.com 41691 - Horizon Forest Products, LLP + Horizon Forest Products, LLP Jimmy Dixon jimmy.dixon&horizonforest.com 41692 @@ -166568,7 +167032,7 @@ Decimal 41754 Daniel Sage Daniel Sage - hi&dansage.co + iana&mail.dsage.org 41755 Lastline, Inc. Ludovico Cavedon @@ -166803,7 +167267,7 @@ Decimal labs&rouis.net 41813 Anhui comhigher tech co.,ltd - Sun Xinya + Sun Xinya xinyasun&tsinghua.edu.cn 41814 Hubei University Of Automotive Technology @@ -167170,7 +167634,7 @@ Decimal Ricardo Matos ricardo.matos&impala.pt 41905 - Great-West Life + Great-West Life Ronald Hewson ron.hewson&investorsgroup.com 41906 @@ -167542,7 +168006,7 @@ Decimal William Lewis bill.lewis&silversky.com 41998 - Bumicom Telecommunicatie B.V. + Bumicom Telecommunicatie B.V. Arnoud Mulder arnoud.mulder&bumicom.nl 41999 @@ -167591,8 +168055,8 @@ Decimal aki&riava.net 42010 Luxul Corporation - Clark Roundy - croundy&luxul.com + Dan Haab + dhaab&luxul.com 42011 ISAAC Software Solutions B.V. Martijn Grendelman @@ -167826,7 +168290,7 @@ Decimal Pascal Drecker pascal.drecker&ubm.de 42069 - The Comptroller General’s Department + The Comptroller General’s Department Ms. Rattanaporn Ussavanuphap ratanaus&cgd.go.th 42070 @@ -167866,7 +168330,7 @@ Decimal Michael Dahlberg dahlberg&recursoft.org 42079 - Army Emergency Relief + Army Emergency Relief Julius Asante julius.asante.ctr&aerhq.org 42080 @@ -167878,7 +168342,7 @@ Decimal Mateusz Kijowski m.kijowski&travailprive.eu 42082 - Travis Perkins PLC + Travis Perkins PLC Craig Butler craig.butler&travisperkins.co.uk 42083 @@ -168271,7 +168735,7 @@ Decimal webmaster&sonoraquest.com 42180 Kantonsspital Winterthur - Matthias Spühler + Matthias Spühler matthias.spuehler&ksw.ch 42181 Wavecom - Soluções Rádio S.A. @@ -168390,12 +168854,12 @@ Decimal Charles Read charles&charlesread.com 42210 - Beenius d.o.o. + Beenius d.o.o. Miha Cerar miha.cerar&beenius.tv 42211 SHENZHEN HUAXUNARK TECHNOLOGY Co. Ltd. - Sun Rongjun + Sun Rongjun zhangming&huaxunchina.cn 42212 CareCenter Software GmbH @@ -168432,7 +168896,7 @@ Decimal 42220 TELEDATA IT-Lösungen GmbH Roman Gross - support&teledata-nahdran.de + support&teledata-it.de 42221 Syl Research Limited Adrian John @@ -168674,7 +169138,7 @@ Decimal Dan Peleg dan.peleg&satexpander.com 42281 - InfoBridge Solutions + InfoBridge Solutions Naimish Dayah naimish&infobridge.co.uk 42282 @@ -169006,7 +169470,7 @@ Decimal ludwig schubert ludwig.schubert&dematis.com 42364 - Optoscape Optical Electronic Tech.Co.,Ltd + Optoscape Optical Electronic Tech.Co.,Ltd maiyuan yuan.mai&optoscape.com 42365 @@ -169098,7 +169562,7 @@ Decimal Dylan Harris mail&dylanharris.org 42387 - CompuTEK Industries + Da Planet Security Da Planet Security support&dapla.net 42388 @@ -169174,7 +169638,7 @@ Decimal Scott Menor scott&roambotics.com 42406 - SATO Corporation + SATO Corporation Konosuke Haraguchi hara2772&pn.sato.co.jp 42407 @@ -169675,8 +170139,8 @@ Decimal remy.jobin&ssq.ca 42531 Security Industry Association - Joseph Gittens - jgittens&securityindustry.org + Edison Shen + eshen&securityindustry.org 42532 Holysee Vatican Library Mr.Gabriele Giulimondi @@ -169883,7 +170347,7 @@ Decimal jp&interlink.com.ua 42583 DPII TELECOM & SERVICES - DELANCRAY Claire Isabelle + DELANCRAY Claire Isabelle cidelancray&dpii-telecom.com 42584 ROWA Group Holding GmbH @@ -170043,11 +170507,11 @@ Decimal francois.kaljee&hernic.co.za 42623 Open Compute Project - Amber Graner - amber&opencompute.org + Bijan Nowroozi + admin&opencompute.org 42624 Whatever s.a. - Sylvain Munaut + Sylvain Munaut netadm&whatever-company.com 42625 Technology Toolbox LLC @@ -170066,7 +170530,7 @@ Decimal Damon LIU rd&digihdtech.com 42629 - WaveNT Co.,Ltd. + WaveNT Co.,Ltd. Sung-Ho Yoon yoonsh&wavenettech.com 42630 @@ -170315,8 +170779,8 @@ Decimal iana&ngeniux.com 42691 Australia and New Zealand Banking Group Limited - Clint Cooper - clint.cooper&anz.com + Svyatoslav Pidgorny + sp&anz.com 42692 Philotech Hartwig Dirscherl @@ -170347,7 +170811,7 @@ Decimal attila.nagy&qualitis.hu 42699 Dorwin Enterprises - John Dorwin + John Dorwin jdorwin&gmail.com 42700 ESP Credit Management @@ -170514,7 +170978,7 @@ Decimal Dennis Katz dennis.katz&maerdngaming.com 42741 - Nanjing Dong Xun Information Technology Co., Ltd. + Nanjing Dong Xun Information Technology Co., Ltd. Steven Mao maofeng&dongxuntech.com 42742 @@ -170590,7 +171054,7 @@ Decimal Dhr. Martin Spaans registratie&practicom.net 42760 - PHOENIX PHARMA + PHOENIX PHARMA Zoran Vojnovic webmaster&phoenix.ba 42761 @@ -170806,7 +171270,7 @@ Decimal Sebastian Klimczak sebastian.klimczak&pse.pl 42814 - Inveo + Inveo Slawomir Darmofal sdarmofal&inveo.com.pl 42815 @@ -170818,7 +171282,7 @@ Decimal Alexander Demertash alexander&hacenter.com.ua 42817 - IBM Platform Firmware Division + IBM Platform Firmware Division Jayashankar Padath jayashankar.padath&in.ibm.com 42818 @@ -170878,7 +171342,7 @@ Decimal Ian Weller ian&ianweller.org 42832 - Tata Institute Fundamental Research + Tata Institute Fundamental Research Sagar Mungse msagar&tifr.res.in 42833 @@ -170935,7 +171399,7 @@ Decimal k-sakamoto&tsh-world.co.jp 42846 Corhoma SRL - Jorge Blasi + Jorge Blasi corhoma&gmail.com 42847 2H Offshore Engineering Ltd @@ -170994,7 +171458,7 @@ Decimal Alexandr Khrabrov info&asul.kz 42861 - Ophylink Communication Technology Co., Ltd. + Ophylink Communication Technology Co., Ltd. Linlin Qiu linlin.qiu&ophylink.com 42862 @@ -171090,7 +171554,7 @@ Decimal Fred Brown fredb&andersonmorgan.ca 42885 - S P I R I T - informačné systémy, a.s. + S P I R I T - informačné systémy, a.s. Lubomir Bak bak&spirit.sk 42886 @@ -172263,7 +172727,7 @@ Decimal info&positronaudio.com 43178 Main Line HealthCare - Kim Martino + Kim Martino martinok&mlhs.org 43179 Lendy LLC @@ -172326,7 +172790,7 @@ Decimal Rico Wang rico.wang&grgatm.com 43194 - ABB Oy + ABB Oy Mika J Kärnä mika.j.karna&fi.abb.com 43195 @@ -172350,7 +172814,7 @@ Decimal Jernej Zajc oidmaster&rubisco.com 43200 - CLAAS KGaA mbH + CLAAS KGaA mbH Ralph Hoeltmann iana&claas.com 43201 @@ -172550,7 +173014,7 @@ Decimal Thorsten Mayr thorstenpm&gmail.com 43250 - "Group of companies "POWER ENGINEERING" Ltd + "Group of companies "POWER ENGINEERING" Ltd Evgeniy Petrov e.petrov&e-pwr.ru 43251 @@ -172858,7 +173322,7 @@ Decimal Todd Wallace it-services&triplecanopy.com 43327 - Toronto Public Library + Toronto Public Library Ian Stegman istegman&torontopubliclibrary.ca 43328 @@ -173042,7 +173506,7 @@ Decimal Craig Honegger craig.honegger&embedded-access.com 43373 - Associação dos Registradores Imobiliários de São Paulo + Associação dos Registradores Imobiliários de São Paulo walter de oliveira walter&arisp.com.br 43374 @@ -173098,7 +173562,7 @@ Decimal Göktuğ ÇAKMAK info&expkits.com 43387 - city of Sioux City, IA + city of Sioux City, IA Daniel Middleton dmiddleton&sioux-city.org 43388 @@ -173258,7 +173722,7 @@ Decimal Eugeniu Ceglov eceglov&noction.com 43427 - Altus Sistemas de Automação S.A + Altus Sistemas de Automação S.A Rafael Morello rd&altus.com.br 43428 @@ -173267,7 +173731,7 @@ Decimal bdecout&hewlett.org 43429 Strata Information Technology, Inc - Keith Stark + Keith Stark keith&stratait.com 43430 Systems Definition, Inc. @@ -173474,7 +173938,7 @@ Decimal Alanna Marquis info&caninecreche.co.za 43481 - Innovaatik OÜ + Innovaatik OÜ Jargo Kõster jargo&inno.ee 43482 @@ -173506,7 +173970,7 @@ Decimal Markus Burgstaller markus.burgstaller&schletter.de 43489 - GOOD FIRST GROUP . + GOOD FIRST GROUP . HongDe 59295152&qq.com 43490 @@ -173659,8 +174123,8 @@ Decimal lerik&signal.no 43527 Presidio Networked Solutions - Robert Shade - rshade&presidio.com + Brendan Bowden + bbowden&presidio.com 43528 SHODEN CORPORATION Yoshito Yagi @@ -173687,7 +174151,7 @@ Decimal yafeng.shan&gmail.com 43534 Alstom Grid - Zhi Shi + Zhi Shi zhi.shi&alstom.com 43535 Luxottica North America Distribution LLC @@ -173894,7 +174358,7 @@ Decimal Axel Goettmann agoettmann&samson.de 43586 - SVS TELEKOMÜNİKASYON HİZ. TİC. SAN. A.Ş. + SVS TELEKOMÜNİKASYON HİZ. TİC. SAN. A.Ş. Muhammet Fatih OKUTAN fatih.okutan&svstelekom.com.tr 43587 @@ -173934,7 +174398,7 @@ Decimal Julian Bourne julian&britesc.com 43596 - Carnegie Fitness + Carnegie Fitness Clark Chiu clark&carnegie-fitness.com 43597 @@ -174339,7 +174803,7 @@ Decimal sergey.mudrak&beeper.ru 43697 JSC Tyumen Electricity sale company - Ivan Toporkov + Ivan Toporkov Ivan&elektro-32.ru 43698 Joint Electronic Teller Services Ltd. @@ -174410,7 +174874,7 @@ Decimal Jose E. Delgado infra&megasoft.com.ve 43715 - Data Infrastructure Technologies Ltd. + Data Infrastructure Technologies Ltd. Chris Ianculovici crs5tx&gmail.com 43716 @@ -174599,7 +175063,7 @@ Decimal support&ourschool.co.nz 43762 PlazaLotusGroup - Pavel Chikovani + Pavel Chikovani admin&plazalotus.com 43763 ChinaFilm Global (Beijing) Technology limited @@ -174926,7 +175390,7 @@ Decimal Jason Hitt isapps&altertrading.com 43844 - GuangDong Big Banian Info Tech Co., Ltd. + GuangDong Big Banian Info Tech Co., Ltd. Jack Peng bigbanian&gd3n.com 43845 @@ -175070,7 +175534,7 @@ Decimal Wanbin.Gan 563572071&qq.com 43880 - FRAKO Kondensatoren- und Anlagenbau GmbH + FRAKO Kondensatoren- und Anlagenbau GmbH Andreas Kreker kreker&frako.de 43881 @@ -175166,7 +175630,7 @@ Decimal Stefan Kaufmann portal&lions.de 43904 - BitronikLab + BitronikLab Milovan Čolić bitroniklab&gmail.com 43905 @@ -175187,8 +175651,8 @@ Decimal Frank&hawkingtech.com 43909 Association PauLLA - Simon RECHER - president&paulla.asso.fr + Président PauLLA + iana&paulla.asso.fr 43910 Pravala Inc. Jakub Schmidtke @@ -175198,7 +175662,7 @@ Decimal Ross Vincent ross.vincent&thureon.com 43912 - FUJI FURUKAWA ENGINEERING & CONSTRUCTION Co.Ltd. + FUJI FURUKAWA ENGINEERING & CONSTRUCTION Co.Ltd. Satoshi Nagai nagai-satoshi&ffec.co.jp 43913 @@ -175314,9 +175778,9 @@ Decimal Fabian Sauer fabian.sauer&wisag.de 43941 - Event Store LLP - James Nugent - james&geteventstore.com + Event Store Ltd + James Geall + iana&eventstore.com 43942 Luma Pictures Brent Hensarling @@ -175642,7 +176106,7 @@ Decimal Stephen Hansen shansen&advpubtech.com 44023 - Karther Ingeniería + Karther Ingeniería Carlos D. Medina info&karther.es 44024 @@ -176584,7 +177048,7 @@ Decimal 44258 Hello World Ltd Eric Yan - eric&hlwd.uk + eric&helloworld.ltd.uk 44259 Xstream Flow (Pty) Ltd Andrew van Tonder @@ -176982,7 +177446,7 @@ Decimal Jereme Corrado hostmaster&birchbox.com 44358 - Nashat Y Gabrail, MD Inc + Nashat Y Gabrail, MD Inc Shelly Rentsch skr1105&aol.com 44359 @@ -177015,7 +177479,7 @@ Decimal zkstevens&hotmail.com 44366 Essex Oncology of North Jersey PA - Denise Johnstone + Denise Johnstone dj&essexoncology.com 44367 Highland Solutions @@ -177050,7 +177514,7 @@ Decimal Amy Carlton acarlton&neho.org 44375 - Eastern Long Island Hematology Oncology + Eastern Long Island Hematology Oncology Wayne Burgess wburgess&optonline.net 44376 @@ -177058,7 +177522,7 @@ Decimal Chris Dillon noc&opusonewinery.com 44377 - Hudson Hematology Oncology + Hudson Hematology Oncology Barry Downer barry24361838&yahoo.com 44378 @@ -177275,7 +177739,7 @@ Decimal network.support&agf.com 44431 Panhandle Cancer Center - Christi Richardson/Regina Parker + Christi Richardson/Regina Parker chr&malamud1.comcastbiz.net 44432 CanDeal @@ -177510,7 +177974,7 @@ Decimal Sybren Apiecionek ca&olifluous.com 44490 - Beward R&D Co., Ltd + Beward R&D Co., Ltd Oleg Beketov beketov&beward.ru 44491 @@ -177550,7 +178014,7 @@ Decimal LISA GROSS lgross&bccet.com 44500 - CHRONOTRACK SYSTEMS CORP. + CHRONOTRACK SYSTEMS CORP. Robert Lyons blyons&chronotrack.com 44501 @@ -178063,8 +178527,8 @@ Decimal lanagan&ni.com 44628 Canva, Inc. - Josh Graham - josh&canva.com + OID Admin + oid-admin&canva.com 44629 Australian Department of Infrastructure and Regional Development Jon Harrison @@ -178155,8 +178619,8 @@ Decimal lfry&hocnova.com 44651 University of Detroit Jesuit High School and Academy - Montana Arble - montana.arble&uofdjesuit.org + Information Technology + webadmin&uofdjesuit.org 44652 LaMarche Mfg. Company Pat DeLacluyse @@ -178382,8 +178846,8 @@ Decimal Herman Lee hlee&saitechnology.com 44708 - Crews Banking corporation - Matt Opalach + Crews Banking corporation + Matt Opalach Mopalach&crewsbankcorp.com 44709 Xolphin B.V. @@ -178474,7 +178938,7 @@ Decimal Tomasz Biczyński tomasz.biczynski&elkomtech.com.pl 44731 - Palestine Monetary Authority + Palestine Monetary Authority Hani Amer smart&pma.ps 44732 @@ -178694,7 +179158,7 @@ Decimal Florian Wöhrl admin&is2.de 44786 - Stadtwerke Jena GmbH + Stadtwerke Jena GmbH Bjoern Wever dv&stadtwerke-jena.de 44787 @@ -178798,7 +179262,7 @@ Decimal K. Shahanawaz Khan kskhan&funambolo.co.in 44812 - JSC "Institute of Automation of Energy Systems" + JSC "Institute of Automation of Energy Systems" Alexey Petrov alexey&iaes.ru 44813 @@ -178902,7 +179366,7 @@ Decimal Mohd Khalemi khalemi&absecmy.com 44838 - chinasoft-tokyo corporation + chinasoft-tokyo corporation xu kebin xukebin&chinasoft-tokyo.co.jp 44839 @@ -178958,7 +179422,7 @@ Decimal Michael McConnell michael&winkstreaming.com 44852 - Energy Communications Management Exchange, sub-division of Future DOS Research & Development Inc. + Energy Communications Management Exchange, sub-division of Future DOS Research & Development Inc. Avygdor Moise info&ecmx.org 44853 @@ -179055,14 +179519,14 @@ Decimal hostmaster&reykjavik.is 44876 Hrvatska poštanska banka, dioničko društvo - Marijan Žužić + Marijan Žužić marijan.zuzic&hpb.hr 44877 IMMA Inc. Svyatoslav Noskov snoskov&imma.ru 44878 - Datcent Technology Co.,Ltd. + Datcent Technology Co.,Ltd. ShuQiang Li lishuqiang&datcent.com 44879 @@ -179398,7 +179862,7 @@ Decimal Jake Hinkelman internalit&valleymedicalcenter.com 44962 - Foreman Instrumentation And Controls + Foreman Instrumentation And Controls Kevin Kirmse kdkirmse&syntemp.com 44963 @@ -179566,7 +180030,7 @@ Decimal Gage Hainer ghainer&egagllc.com 45004 - SMARTRAC N.V. + SMARTRAC N.V. Sidnei Moreira iana-pen&smartrac-group.com 45005 @@ -179574,7 +180038,7 @@ Decimal James Wazorick jwazorick&maincompanies.com 45006 - Wuestenrot poistovna, a.s. + Wuestenrot poistovna, a.s. Ladislav Schramm uit&wuestenrot.sk 45007 @@ -179811,7 +180275,7 @@ Decimal komixhui&hk.chinamobile.com 45065 Insyde - Y.C. Lin + Y.C. Lin yc.lin&insyde.com 45066 SIP Cantabria S.L. @@ -179846,8 +180310,8 @@ Decimal Brent Glasgow oid&pacseafood.com 45074 - TTSSB corp - Balaji Sunder Rajan + TTSSB corp + Balaji Sunder Rajan bsfrc_2000&yahoo.com 45075 Electron Jungle, LLC @@ -180166,7 +180630,7 @@ Decimal Robert Bastian robert.bastian&drillinginfo.com 45154 - ELES, d.o.o., sistemski operater prenosnega elektroenergetskega omrezja + ELES, d.o.o., sistemski operater prenosnega elektroenergetskega omrezja Tomaz Rus tomaz.rus&eles.si 45155 @@ -180270,9 +180734,9 @@ Decimal Karel Hladik hladik&jablotron.cz 45180 - Rolls-Royce Marine - Oscar Endre Edvardsen - oscar.edvardsen&rolls-royce.com + Kongsberg Maritime AS + Einar Rasmussen + einar.rasmussen&km.kongsberg.com 45181 AVSystem Danilo Mitera @@ -180554,7 +181018,7 @@ Decimal Vadim Rybalko vadim&habr.ee 45251 - axelIT Üzletfejlesztési Kft. + axelIT Üzletfejlesztési Kft. Rózsahegyi Zsolt info&axelit.hu 45252 @@ -181174,7 +181638,7 @@ Decimal Ryan Hairyes rhairyes&lee.k12.nc.us 45406 - BetEasy Pty Ltd + BetEasy Pty Ltd Jaiwardhan Puri jaiwardhanp&beteasy.com.au 45407 @@ -181334,7 +181798,7 @@ Decimal Mike O'Dowd modowd&kuantic.com 45446 - Ministerio Publico de la Acusación + Ministerio Publico de la Acusación Ing. Alejandro Azario aazario&mpa.santafe.gov.ar 45447 @@ -181383,8 +181847,8 @@ Decimal patrik.stacher&tg.ch 45458 VKBit Betrieb GmbH - Matthias Fischer - matthias.fischer&vkb.de + Juri Zirnsak + postmaster&vkb.de 45459 Lonix Oy Jarmo Mitjonen @@ -181406,7 +181870,7 @@ Decimal David Roskams ict.infra.pen&just.fgov.be 45464 - Verband Christlicher Pfadfinderinnen und Pfadfinder in Württemberg + Verband Christlicher Pfadfinderinnen und Pfadfinder in Württemberg Frederik Held frederik.held&wuerttemberg.vcp.de 45465 @@ -181655,7 +182119,7 @@ Decimal Dovalle&ubiqam.com 45526 Snapper Services - David Stamp + David Stamp david.stamp&snapper.co.nz 45527 Diehl AKO Stiftung & Co. KG @@ -181758,7 +182222,7 @@ Decimal CE NOYELLE cenoyelle&vippinterstis.com 45552 - Unisys + Unisys Abhineet Pandey abhineet.pandey&in.unisys.com 45553 @@ -181891,7 +182355,7 @@ Decimal Barskiy_AA&rirt.ru 45585 Space Imaging Middle East (SIME) - Spandan Kar + Spandan Kar spandan&dsi.co.ae 45586 Mythic Network @@ -182014,7 +182478,7 @@ Decimal Gubanov Dmitry koloskovm&mail.citynet.ru 45616 - Healthcare Information and Management System Society (HIMSS) + Healthcare Information and Management System Society (HIMSS) Richard Delort rdelort&himss.org 45617 @@ -182230,8 +182694,8 @@ Decimal Anthony de Broise anthony&cbrsystems.co.uk 45670 - tcc construction - tim clapp + tcc construction + tim clapp timclapp700&gmail.com 45671 Nick Sverdel @@ -182359,7 +182823,7 @@ Decimal jrmaycock&integracore.com 45702 China Transinfo Technology - Wang Gang + Wang Gang wanggang02&chinatransinfo.com 45703 Gemeindewerke Ga.-Pa. @@ -182490,7 +182954,7 @@ Decimal Milan Cizek milan.cizek&mail.starnet.cz 45735 - easyset + easyset Jin Young Kim skyblue&easyset.co.kr 45736 @@ -182763,7 +183227,7 @@ Decimal luke.liu&ubeeinteractive.com 45803 netcruz inc. - Yong Soo Park + Yong Soo Park yspark&netcruz.co.kr 45804 ERICA @@ -182830,7 +183294,7 @@ Decimal Sven Anders pen-contact17&sven.anders.hamburg 45820 - PROFIPRINT spol. s r.o. + PROFIPRINT spol. s r.o. David Makovský makovsky&profiprint.cz 45821 @@ -183342,7 +183806,7 @@ Decimal Murat Aksoy sistemyonetimi&kartal.bel.tr 45948 - FitnessFirst Germany + FitnessFirst Germany Rene Henzinger rene.henzinger&fitnessfirst.de 45949 @@ -183818,7 +184282,7 @@ Decimal Tomi Varhe tsv&diametertech.com 46067 - Union College - Computer Science Department + Union College - Computer Science Department Tom Yanuklis yanuklit&union.edu 46068 @@ -184126,7 +184590,7 @@ Decimal Lim Qi Kang qikang.lim&lazada.com 46144 - Schmidt & Co., (H.K.) Ltd. Taiwan Branch + Schmidt & Co., (H.K.) Ltd. Taiwan Branch James hsu jameshsu&schmidtelectronics.com 46145 @@ -184510,12 +184974,12 @@ Decimal Michał Marschall m.marschall&invinets.com 46240 - Polish Border Guard (Border Guard Headquarters) + Polish Border Guard (Border Guard Headquarters) Piotr PIETRZAK Piotr.Pietrzak&strazgraniczna.pl 46241 - Bionic Fuel Knowledge Partners Inc. - Ulrich Riemann + Bionic Fuel Knowledge Partners Inc. + Ulrich Riemann ubr&bionicmail.de 46242 Netonix @@ -184670,7 +185134,7 @@ Decimal Thomas Hellström rel&xed.se 46280 - Enterprise Computing + Enterprise Computing Francisco Moreira moreira&enterprisecomputing.com 46281 @@ -184758,9 +185222,9 @@ Decimal Kelly Mieszkalski info&carragroup.org 46302 - Urmet Sistemi S.p.A. + Sistemi di Telecomunicazione Srl Giannini Alessandro - alessandro.giannini&urmetsistemi.it + alessandro.giannini&sistemiditlc.it 46303 ITSUDE Ralf Schmitz @@ -184768,7 +185232,7 @@ Decimal 46304 GSMA Wayne Cutler - wcutler&gsma.com + wcutler&gsma.com 46305 OSDE Seguridad de la Información @@ -184850,7 +185314,7 @@ Decimal Nicholas Lloyd nlloyd&haysys.co.uk 46325 - Firstwan Delivery Network Services + Firstwan Delivery Network Services Jean-François ESPERET jfesperet&firstwan.fr 46326 @@ -184938,9 +185402,9 @@ Decimal BJ Vail bjvail&sbcglobal.net 46347 - Ovapro + innato Lee Choon Siong - choonsiong.lee&gmail.com + domain&innato.io 46348 Providence Health & Services Bill Stites @@ -184950,7 +185414,7 @@ Decimal Max Mizikar maxmzkr&deepfield.net 46350 - NorCERT - Norwegian Computer Emergency Response Team + NorCERT - Norwegian Computer Emergency Response Team Tor Inge Skaar tor.inge.skaar&nsm.stat.no 46351 @@ -185079,7 +185543,7 @@ Decimal polacik.p&gmail.com 46382 Berolina-autolacke - Michael Degner + Michael Degner security&netelco.de 46383 Ministry Division, Church of England @@ -185107,8 +185571,8 @@ Decimal office&taygeta.com 46389 VESTA - Luke Young - Luke.Young&airbus-dscomm.com + LUKE YOUNG + luke.young&motorolasolutions.com 46390 Clarke Technical Services, Inc. Carlos Clarke @@ -185186,7 +185650,7 @@ Decimal Daniel Kozłowski daniel.kozlowski&plk-sa.pl 46409 - BSP Consulting spol. s r.o. + BSP Consulting spol. s r.o. Martin Rublík martin.rublik&bspc.sk 46410 @@ -185338,7 +185802,7 @@ Decimal Benjamin ROZIERE benjamin.roziere&rdalambic.com 46447 - Embedict + Embedict Yiğit YÜCE ygtyce&gmail.com 46448 @@ -185542,7 +186006,7 @@ Decimal DANIEL PECHMANN daniel&issbrasil.com 46498 - Jiangsu Sinolte Wireless Technology Co., Ltd. + Jiangsu Sinolte Wireless Technology Co., Ltd. rulinwan rulinwan&sinolte.net 46499 @@ -185554,8 +186018,8 @@ Decimal Richard Omi romi&trukai.com.pg 46501 - Didactum® Ltd. Deutschland (formerly 'Vutlan sro') - Roger Oeltjendiers + Didactum® Security GmbH (formerly Didactum® Ltd. Deutschland ) + Andrea Oeltjendiers roe&didactum.com 46502 TASS @@ -185718,7 +186182,7 @@ Decimal Rob Dukette robd&senecadata.com 46542 - Mountain Blue Cancer Care Center + Mountain Blue Cancer Care Center Amy Holleran amy.holleran&mountainbluecare.org 46543 @@ -186198,7 +186662,7 @@ Decimal Maurizio Riva IT&bucherer.com 46662 - Pointek + Pointek Yagiz Yildirim yagiz.yildirim&pointek.com.tr 46663 @@ -186447,8 +186911,8 @@ Decimal djg&uecu.coop 46724 Ferrograph Limited - Jeff Ferrier - jeff.ferrier&ferrograph.com + Ed Agar + Ed.agar&ferrograph.com 46725 Swift MT Kevin Lentle @@ -186506,8 +186970,8 @@ Decimal Adrian Beeler info&beeler-it-services.ch 46739 - RONIT. N.THAKOR - RONIT. N.THAKOR + RONIT. N.THAKOR + RONIT. N.THAKOR ronitnthakor&gmail.com 46740 Zendesk, Inc @@ -186538,7 +187002,7 @@ Decimal Lucas Rockwell lur2015&med.cornell.edu 46747 - The Christ Hospital Hem Onc + The Christ Hospital Hem Onc Regina Lampe RN BSN OCN regina.lampe&thechristhospital.com 46748 @@ -186590,7 +187054,7 @@ Decimal CoverMyMeds admins&covermymeds.com 46760 - Teksush.com + ISub Softwares Shubhra Prakash Nandi email2shubhra&gmail.com 46761 @@ -186742,7 +187206,7 @@ Decimal Azamat Musakhanov info&yt.uz 46798 - RBS Services (Switzerland) Ltd + RBS Services (Switzerland) Ltd Andrew Church andrew.church&rbs-services.com 46799 @@ -186774,8 +187238,8 @@ Decimal Jerel Sukarangsan jsukarangsan&oncologyconsultants.com 46806 - Mid Florida Hematology Oncology - Harish Gowda + Mid Florida Hematology Oncology + Harish Gowda hgowda&mfhoc.com 46807 Motiv Telecom Group @@ -187106,7 +187570,7 @@ Decimal Guillaume Simon hosting&krds.com 46889 - Gravity Academy Engineering + Gravity Academy Engineering grant haywood mrgranthaywood&gmail.com 46890 @@ -187158,8 +187622,8 @@ Decimal Lars Wilhelmsen lars&sral.org 46902 - Keegan Moodley Ltd - Keegan Moodley + Keegan Moodley Ltd + Keegan Moodley keeganmoodley96&gmail.com 46903 DE-CIX Management GmbH @@ -187222,7 +187686,7 @@ Decimal Robert Christian Strasser pki&pc-tiptop.de 46918 - GRUPO REVENGA + GRUPO REVENGA FRANCISCO JOSÉ ELENO PARDO elias.molinedo&revenga.com 46919 @@ -187303,7 +187767,7 @@ Decimal jld&acm.org 46938 Frederick Oncology Hematology Associates - Naycherie Alvira + Naycherie Alvira manager&fredonc.com 46939 Sentinel Technologies @@ -187358,7 +187822,7 @@ Decimal 王武 (Wang Wu) cfanwang_001&126.com 46952 - SecureAuth Corporation + SecureAuth Corporation Michael Franke dev_mgmt&secureauth.com 46953 @@ -187906,8 +188370,8 @@ Decimal Peter Húbek info&pro-hosting.sk 47089 - Ramp Holdings, Inc. - Giovanni Marzot + Ramp Holdings, Inc. + Giovanni Marzot gmarzot&ramp.com 47090 Exdev @@ -188055,7 +188519,7 @@ Decimal d.capella&ideas-srl.com 47126 earthTV network GmbH - Anja Krüger + Anja Krüger accounting&earthtv.com 47127 Yoti Ltd @@ -188090,7 +188554,7 @@ Decimal TARUN SHARMA tarun&frogcellsat.com 47135 - MotionLED Technology Ltd. + MotionLED Technology Ltd. Wilfred Wong wilfred&motionledtechnology.com 47136 @@ -188526,7 +188990,7 @@ Decimal Christian Gillen ianaadmin&steelcase.com 47244 - Roku Inc. + Roku Inc. Gary Ellison gfe&roku.com 47245 @@ -188618,7 +189082,7 @@ Decimal AmirAli Pasdar pasdar&prochista.ir 47267 - OpenSwitch + OpenSwitch Frank Reichstein frank.reichstein&hpe.com 47268 @@ -188674,7 +189138,7 @@ Decimal Ronald Kneusel ron&imagentechnologies.com 47281 - Auloce S.A. + ESPUBLICO SERVICIOS PARA LA ADMINISTRACION SA (ESFIRMA) Fernando Palacio fpalacio&espublico.com 47282 @@ -188871,7 +189335,7 @@ Decimal it&stancke.com 47330 Murrelektronik GmbH - Bernd Waser + Jörg Hinze licenses.rnd&murrelektronik.de 47331 Pro:Atria Ltd. @@ -188979,8 +189443,8 @@ Decimal michael.cress&cress.us 47357 Technology Concepts & Design, Inc. - Terry Spotts - t_spotts&tcdi.com + Joey Adams + jea&tcdi.com 47358 HenzHome Services Tobias Henz @@ -189434,7 +189898,7 @@ Decimal Stefan Carlsson s.carlsson&cgi.com 47471 - Apogey Ltd + Apogey Ltd Voloshin Vladimir Alekseevich 516965&mail.ru 47472 @@ -189450,7 +189914,7 @@ Decimal IT Department admin&sonn.at 47475 - ShenZhen Smart Imaging Healthcare Co.,Ltd. + ShenZhen Smart Imaging Healthcare Co.,Ltd. ShenWen Quan(male) shenwen.quan&zying.com.cn 47476 @@ -189562,8 +190026,8 @@ Decimal Andrew Hamilton itsupport&hved.org 47503 - Ralph Lauren Center for Cancer Care - Lisa Pfail + Ralph Lauren Center for Cancer Care + Lisa Pfail lpfail&ralphlaurencenter.org 47504 Zellkraftwerk GmbH @@ -189667,7 +190131,7 @@ Decimal armando.hdez&softhum.com 47529 NATIONAL BANK OF GREECE - Michael Ontrias + Michael Ontrias ibank_Business_Analysis&nbg.gr 47530 Softwaretechnik Ges.m.b.H. @@ -189822,9 +190286,9 @@ Decimal IT Abteilung urgent&seifert-logistics.com 47568 - Pantel International - Matthew MacDonald - mmacdonald&pantelintl.com + InterTalk Critical Information Systems + Kevin Brown + kbrown&intertalksystems.com 47569 FIAMM SoNick S.A. Todeschini Marco @@ -190118,7 +190582,7 @@ Decimal Willi Gruenewald hostmaster&gruenewald-clan.de 47642 - Istituto Clinico Città Studi + Istituto Clinico Città Studi Dario Pezzi dario.pezzi&ic-cittastudi.it 47643 @@ -190222,7 +190686,7 @@ Decimal Calle Dybedahl calle.dybedahl&init.se 47668 - Agência para a Modernização Administrativa, I.P. (AMA) + Agência para a Modernização Administrativa, I.P. (AMA) Rui Martinho rui.martinho&ama.pt 47669 @@ -190251,7 +190715,7 @@ Decimal stefan.soriga&upb.ro 47675 IHI Charging Systems International Sp A - Gavino Fraghì + Gavino Fraghì it&ihi-csi.de 47676 Social Native @@ -190294,7 +190758,7 @@ Decimal Michael Skriver msk&simuone.com 47686 - Switzerland Global Enterprise + Switzerland Global Enterprise IT-Team it-team&s-ge.com 47687 @@ -190338,7 +190802,7 @@ Decimal William Ott william.ott&medicustek.com 47697 - Nanjing Tian Hua Zhong An Communication Technology CO.LTD + Nanjing Tian Hua Zhong An Communication Technology CO.LTD E Wang wange&chinathza.com 47698 @@ -190630,7 +191094,7 @@ Decimal Andy Lilly it&armourcomms.com 47770 - ESG BIRO DE SERVICOS S/S LIMITADA - ME + ESG BIRO DE SERVICOS S/S LIMITADA - ME Eugênio Neves da Rocha eugenio&esg.eng.br 47771 @@ -190807,7 +191271,7 @@ Decimal dimitrios.koutrouvis&luetze.de 47814 ChinaUnicom - zhanglunyong + zhanglunyong zhanglunyong&chinaunicom.cn 47815 Stora Enso Skog AB @@ -191122,7 +191586,7 @@ Decimal Tetsuo Saito saito_tetsuo&cosmic-eng.co.jp 47893 - NEW SUNRISE CO.,LTD. + NEW SUNRISE CO.,LTD. zhu jian zhujian778&163.com 47894 @@ -191520,7 +191984,7 @@ Decimal 47992 Gettysburg Cancer Center Bansari Mandalia - bamandalia&gettysburgoncology.com + bamandalia&gettysburgoncology.com 47993 Brazen Technologies Jason Southern @@ -191570,7 +192034,7 @@ Decimal Francisco Luiz Zanini francisco&digifort.com.br 48005 - ZyCast Technology Inc. + ZyCast Technology Inc. Shelly Chang shelly_chang&zycast.com.tw 48006 @@ -191611,7 +192075,7 @@ Decimal francesco.pinta&scaiconnect.it 48015 IT Gården i Landskrona AB - Magnus Nilsson + Magnus Nilsson magnus.nilsson&itgarden.se 48016 MELASZ @@ -191664,10 +192128,10 @@ Decimal 48028 VS Web Labs VANGALA SURESH - 640067&gmail.com + 640067&gmail.com 48029 High-Galaxy,HGANS - Zhuoyao Wang + Zhuoyao Wang wang.zy&high-Galaxy.com 48030 Pesticide Software @@ -191726,9 +192190,9 @@ Decimal Douglass Coombs douglass_coombs&denso-diam.com 48044 - Tri-Valley Oncology + Tri-Valley Oncology Yvette Hamilton - yhamilton&tvoha.com + yhamilton&tvoha.com 48045 Inpro Telecom S.A. de C.V. Enrique RIvera Florentino @@ -191787,7 +192251,7 @@ Decimal jeremiah.williamson&setrac.org 48059 Karlsruhe Institute of Technology (KIT) - Patrick von der Hagen + Patrick von der Hagen patrick.hagen&kit.edu 48060 SecureMe2 @@ -192018,8 +192482,8 @@ Decimal Darius Grigarevičius d.grigarevicius&silainiupoliklinika.lt 48117 - Scheidt & Bachmann GmbH - Julian Dickreiter + Scheidt & Bachmann GmbH + Julian Dickreiter dickreiter.julian&scheidt-bachmann.de 48118 Pyro Telecom Solutions Pvt Ltd @@ -192204,7 +192668,7 @@ Decimal 48163 abahlali Adrian Riaan - adrianriaan458&gmail.com + adrianriaan458&gmail.com 48164 my-PV GmbH Dr. Gerhard Rimpler @@ -192314,7 +192778,7 @@ Decimal Marcel Meyer iana-pen&mcccxxxvii.net 48191 - Praten + Praten Andrew Okri andrew.okri&praten.co.uk 48192 @@ -192700,7 +193164,7 @@ Decimal 48287 中电和瑞科技有限公司 (China Electronics Harvest Technology Co., Ltd.) 林志伟 (Lin Zhiwei) - linzw&cechr.com.cn + linzw&cechr.com.cn 48288 Health-net 2020 GmbH Arno Krzywon @@ -192983,7 +193447,7 @@ Decimal ian.vonessen&mellanskog.se 48358 Hobbylook - Ahmad Tubaishat + Ahmad Tubaishat Ahmadtubishat&live.com 48359 Infosec (T) LTD @@ -193082,9 +193546,9 @@ Decimal Fernando Brunelli Costa fernando&casetecnologia.com.br 48383 - McKinsey & Company - Tyson Grassing - tyson_grassing&external.mckinsey.com + McKinsey & Company, Inc. + Scott Stephenson + Scott_Stephenson&mckinsey.com 48384 STAPRO SLOVENSKO s.r.o. Adrian Petrik @@ -193290,7 +193754,7 @@ Decimal Christian Brenner chr.bre&outlook.com 48435 - Wuxi Neihua Network Technology Co.,(NHN) + Wuxi Neihua Network Technology Co.,(NHN) Alan Song songrr&leihua.com 48436 @@ -193320,7 +193784,7 @@ Decimal 48442 Frankonia Handels GmbH & Co. KG Simon Gottschlich - sgottschlich&frankonia.de + sgottschlich&frankonia.de 48443 Verticali LLC Andrey Zhelezin @@ -193382,8 +193846,8 @@ Decimal Samohan Kumar kaxpvtltd&gmail.com 48458 - Otsuka America Pharmaceutical, Inc. - David Sullivan + Otsuka America Pharmaceutical, Inc. + David Sullivan david.sullivan&otsuka-us.com 48459 Condast GmbH @@ -193462,7 +193926,7 @@ Decimal Justin Capella justin.capella&nuix.com 48478 - Hainan Goodstart Network Technology Co. Ltd. + Hainan Goodstart Network Technology Co. Ltd. gong ze gongze&goodstart.com.cn 48479 @@ -193479,8 +193943,8 @@ Decimal daniel.ahlberg&fev.se 48482 Linaro Ltd - Dave Pigott - dave.pigott&linaro.org + Luca Di Stefano + luca.distefano&linaro.org 48483 RecordSure Ltd. Jacint Toth @@ -193814,7 +194278,7 @@ Decimal Mario Neubert mn&neubert-it.de 48566 - Guangzhou Shirui Electronics Co., Ltd. + Guangzhou Shirui Electronics Co., Ltd. ChenWeilin chenweilin&cvte.com 48567 @@ -193922,7 +194386,7 @@ Decimal Arnaud Tardy oid&capetrust.com 48593 - ECRA SRL + ECRA SRL Troisi Pasquale marketing&ecranet.com 48594 @@ -193946,7 +194410,7 @@ Decimal Support support&netguardians.ch 48599 - Zodiac Telecommunications South Africa + Zodiac Telecommunications South Africa Keegan Moodley zodiac&highveldmail.co.za 48600 @@ -194004,7 +194468,7 @@ Decimal 48613 DTV Innovations, LLC Benitius Handjojo - bhandjojo&dtvinnovations.com + bhandjojo&dtvinnovations.com 48614 Infraxis AG Jonathan Taylor @@ -194050,7 +194514,7 @@ Decimal Johnson Earls johnson.earls.pen&gmail.com 48625 - Setra Group AB + Setra Group AB Mikael Nylén Mikael.Nylen&setragroup.com 48626 @@ -194292,7 +194756,7 @@ Decimal 48685 IXI Technology Bryan Ly - bryanly&ixitech.com + bryanly&ixitech.com 48686 Pittel+Brausewetter Holding GmbH Marvin Kirowitz @@ -194311,7 +194775,7 @@ Decimal klaus-dieter.wank&honeywell.com 48690 Teltonika - Darius Jokšas + Darius Jokšas darius.joksas&teltonika.lt 48691 OPNT B.V. @@ -194383,8 +194847,8 @@ Decimal edv&haewa.de 48708 Rolls-Royce Control Systems - Simon Daniel - simon.daniel&rolls-royce.com + Matthew Bennion + matthew.bennion&rolls-royce.com 48709 DevTeam SRL Mauricio Ghiorzi @@ -194602,9 +195066,9 @@ Decimal Pavel Zakharov support&clouddc.ru 48763 - VoltDB - Stefano Santoro - ssantoro&voltdb.com + Volt Active Data + Ruth Morgenstein + iana&voltactivedata.com 48764 HeartVista, Inc. Juan Santos @@ -194638,7 +195102,7 @@ Decimal Roman Cinkais roman.cinkais&dieboldnixdorf.com 48772 - SSP ZhilComResurs + SSP ZhilComResurs Yuri Gunbin yuri_gunbin&zhcr.ru 48773 @@ -194720,7 +195184,7 @@ Decimal 48792 SCC Technology GmbH Rene Rimach - rene.rimbach&scc-technology.de + rene.rimbach&scc-technology.de 48793 morgiij, inc. Clay Hutcherson @@ -194954,7 +195418,7 @@ Decimal Sylvain Girouard sylvain38&bell.net 48851 - Flaxen Consulting + Flaxen Consulting Michael P. Gerlek mpg&flaxen.com 48852 @@ -194978,7 +195442,7 @@ Decimal Mark Schroeder mds&princeton.edu 48857 - Hawaii Cancer Care + Hawaii Cancer Care Phia Magill phia.magill&hawaiicancercare.com 48858 @@ -195174,9 +195638,9 @@ Decimal Michael Lindström michael&falan.se 48906 - EVRY Sweden AB - Anders Wadell - anders.wadell&evry.com + ConiferSoft AB + Björn Spets + bjorn.spets&conifersoft.com 48907 Ter Hell & Co. GmbH Martin Kroll @@ -195188,7 +195652,7 @@ Decimal 48909 SDEL Contrôle Commande Valentin Brehier - support.rd&sdelcc.com + support.rd&sdelcc.com 48910 Rheinische Fachhochschule Köln gGmbH Philipp Thomas @@ -195326,7 +195790,7 @@ Decimal Russell Simpson russell.simpson&etronic.co 48944 - Lietuvos vyriausiojo archyvaro tarnyba + Lietuvos vyriausiojo archyvaro tarnyba Vaidotas Ramonas v.ramonas&archyvai.lt 48945 @@ -195354,7 +195818,7 @@ Decimal Mike Hu ops&logdna.com 48951 - UNION TANK Eckstein GmbH & Co. KG + UNION TANK Eckstein GmbH & Co. KG IT-Technik pki&uta.com 48952 @@ -195518,7 +195982,7 @@ Decimal Dr. Burkhard Mars burkhard.mars&aequitas-software.de 48992 - AEF e.V. + AEF e.V. AEF PKI Administrator jh.woelker&aef-online.org 48993 @@ -195550,7 +196014,7 @@ Decimal Enn Maripuu enn.maripuu&telia.com 49000 - "Zheldorconsulting", Ltd. + "Zheldorconsulting", Ltd. Zakharov Marat software&ocv.ru 49001 @@ -195694,9 +196158,9 @@ Decimal Casey Allard it&searad.com 49036 - EM Group - Markus Greiner - markus.greiner&emmos.de + LUSINI + Kilian Gumpp + security&lusini.com 49037 BrByte Luiz Fernando Souza Softov @@ -195750,9 +196214,9 @@ Decimal CJ Oster iana-pen&cjoster.com 49050 - PRINT SOLUTION - Naveen Sharma - print24solution&gmail.com + PRINT SOLUTION + Naveen Sharma + print24solution&gmail.com 49051 IKEM AD Stefan Kirchev @@ -195830,7 +196294,7 @@ Decimal Kevin Wyer kevin.wyer&bbcag.ch 49070 - TELEFONICA DE ESPAÑA SAU + TELEFONICA DE ESPAÑA SAU Guillermo Gavilan Montenegro guillermo.gavilanmontenegro&telefonica.com 49071 @@ -195986,7 +196450,7 @@ Decimal Mikael Jönsson jnm&gustafsborg.se 49109 - Rörvik Skog + Rörvik Skog Linus Swanberg linus.swanberg&rtimber.se 49110 @@ -196046,8 +196510,8 @@ Decimal Yuri Rabover yuri.rabover&turbonomic.com 49124 - Hematology Oncology Associates Of Brooklyn - Tammi Ramos + Hematology Oncology Associates Of Brooklyn + Tammi Ramos Tramos&brooklynoncology.com 49125 Xoriah Solutions Inc. @@ -196094,7 +196558,7 @@ Decimal Osintsev Sergey sergey&carbonsoft.ru 49136 - ALGcom + ALGcom Lissandro Gerhardt lissandro&algcom.com.br 49137 @@ -196218,7 +196682,7 @@ Decimal Manuel Amutio mamutio&kirale.com 49167 - Terpotiz - Privat + Andreas Terpotiz Andreas Terpotiz andreas&terpotiz.net 49168 @@ -196299,8 +196763,8 @@ Decimal raymond.tuleweit&quasar-edv.de 49187 Wausau Supply Co - Nate Wheeler - nate.wheeler&wausausupply.com + System Admin + sysadmin&wausausupply.com 49188 O3cv Ricardo Vieira @@ -196526,7 +196990,7 @@ Decimal Alan Martins admins&dailymotion.com 49244 - Söderenergi AB + Söderenergi AB Sylwe Wedholm sylwe.wedholm&soderenergi.se 49245 @@ -196543,8 +197007,8 @@ Decimal lsellers&genesiscancercenter.com 49248 Leipziger Versorgungs- und Verkehrsgesellschaft mbH - Michael Pilz - michael.pilz&l.de + Anke Peter + anke.peter&l.de 49249 GBSD Technologies, Inc. (GBSDTech) Michael Powers @@ -196574,7 +197038,7 @@ Decimal Christoph Rust christoph.rust&econ-solutions.de 49256 - Weatherford International + Weatherford International Lawrence Baumle larry.baumle&weatherford.com 49257 @@ -196608,7 +197072,7 @@ Decimal 49264 Benelec Pty Ltd Grant Pinkney - service&benelec.com.au + service&benelec.com.au 49265 Kivu GmbH DI Jan van Oort @@ -196686,7 +197150,7 @@ Decimal Kevin Gammon iana&cuofco.org 49284 - LankaClear (Pvt) Ltd. + LankaClear (Pvt) Ltd. Duleep Liyanage duleep.liyanage&lankaclear.com 49285 @@ -196968,7 +197432,7 @@ Decimal 49354 ARGYROU MINAS ARGYROU MINAS - minasargyrou&outlook.com + info&argyrouminas.eu 49355 Fiskarhedens Trävaru AB Ulf Gustavsson @@ -196978,7 +197442,7 @@ Decimal Mike Kelly mkelly&dqe.com 49357 - Hoptroff London Limited + Hoptroff London Limited Lasse Johnsen admin&hoptroff.com 49358 @@ -197275,7 +197739,7 @@ Decimal seonho.kim&outlook.com 49431 UNION PAPELERA MERCHANTING, S.L. - DAVID RIBALTA + DAVID RIBALTA dribalta&unionpapelera.es 49432 RAMSAY Générale de Santé @@ -197342,7 +197806,7 @@ Decimal eui-jin jeon itahm2014&gmail.com 49448 - Sprylogic Technologies Ltd. + Sprylogic Technologies Ltd. Mukhtar Khan mukhtar.khan&sprylogic.com 49449 @@ -197370,7 +197834,7 @@ Decimal Steven Griffiths servernet1997&hotmail.com 49455 - Oncology and Hematology Associates of South Texas, P.A. + Oncology and Hematology Associates of South Texas, P.A. Veronica Procasky vprocasky&aol.com 49456 @@ -197763,7 +198227,7 @@ Decimal oid-master&snowflakesoftware.com 49553 Radis Ltd - Mikhail Golovenko + Mikhail Golovenko miha-gol&mail.ru 49554 PEO C3T - PM Tactical Network @@ -197780,13 +198244,13 @@ Decimal 49557 CONDAT S.A.S. DANIEL ESCORIZA SANTIAGO IT. DPT LECTA GROUP - daniel.escoriza&lecta.com + daniel.escoriza&lecta.com 49558 TechCERT Harshana Porawagama harshana&techcert.lk 49559 - Cancer Care Specialists + Cancer Care Specialists Brett Slizeski brett.slizeski&ccsreno.com 49560 @@ -197860,11 +198324,11 @@ Decimal 49577 GlobalCom Praneet Rai - praneet&globalcom.in + praneet&rai.email 49578 OON GlobalCom Private Limited Praneet Rai - praneet&globalcom.in + praneet&rai.email 49579 TCOM L.P. Matt Fields @@ -197944,7 +198408,7 @@ Decimal 49598 LANKA NAP INC Ruben Rajah - admin&lankanap.com + admin&lankanap.com 49599 Bridgeworks Ltd Steven Hayter @@ -198286,7 +198750,7 @@ Decimal Andrew Fullford net-coord&iphotonix.com 49684 - Infinit Group + Infinit Group Glenn Lim glenn&infinit.com.sg 49685 @@ -198486,9 +198950,9 @@ Decimal LUIS OSORIO luis.osorio&smartmove.pt 49734 - Ekeryds trävaruaffär AB - Leif Nilsson - Ekerydstra&gmail.com + Ekeryds trävaruaffär AB + Leif Nilsson + Ekerydstra&gmail.com 49735 Hwang Group Hwang Hyun Chang @@ -198567,7 +199031,7 @@ Decimal mvg&interactivenw.com 49754 Hydro-Quebec - DPT (Direction Principale Telecom) - El Hassan Aouzah + El Hassan Aouzah Aouzah.ElHassan&hydro.qc.ca 49755 Université Paris Sciences et Lettres @@ -198642,7 +199106,7 @@ Decimal gal zolkover Gal&zolkover.com 49773 - SCHOELLERSHAMMER GmbH & Co.KG + SCHOELLERSHAMMER GmbH Günter Wirtz gwirtz&schoellershammer.de 49774 @@ -198727,8 +199191,8 @@ Decimal henrik.martensson&piskog.com 49794 M2MSOFT - Pierre BINGUY - pierre.binguy&m2msoft.com + Bruno BOSQUED + sales&m2msoft.com 49795 Navitel Wojciech Mordec @@ -198787,7 +199251,7 @@ Decimal ryan&rubica.com 49809 Fitivision Technology Inc. - Lisa Chen + Lisa Chen fitiadmin&fitivision.com 49810 Panalpina World Transport (Holding) Ltd. @@ -198887,7 +199351,7 @@ Decimal scheney&sierra-view.com 49834 Sioui Microsolutions - Pierre Sioui, Ing. + Pierre Sioui, Ing. pierre&sioui.com 49835 Barava, LLC @@ -198966,7 +199430,7 @@ Decimal Thommy Mikkelsen thommy.mikkelsen&atea.no 49854 - BITMARCK TECHNIK GMBH + BITMARCK TECHNIK GMBH Frank Wagenbach frank.wagenbach&bitmarck.de 49855 @@ -199135,8 +199599,8 @@ Decimal zhaobin_0516&163.com 49896 Fireglass - Danny Rehelis - danny&fire.glass + Danny Rehelis + danny&fire.glass 49897 TrueVolve Technologies Steyn Geldenhuys @@ -199446,7 +199910,7 @@ Decimal Steve Buzonas sbuzonas&fancyguy.com 49974 - Vlinder Software + Vlinder Software Ronald Landheer-Cieslak rlc&vlinder.ca 49975 @@ -199575,7 +200039,7 @@ Decimal iana-oid&uha.fr 50006 Chongqing Ambition Science&Technologies Co.,Ltd. - Waine + Waine nornet&sina.cn 50007 Lahti University of Applied Sciences @@ -200158,7 +200622,7 @@ Decimal PEN Administrator pen.administrator&flugatlas.com 50152 - NEOCHROM-TRADE, ltd + NEOCHROM-TRADE, ltd Oleksii Serikov ceo&neochrom.trade 50153 @@ -200606,8 +201070,8 @@ Decimal Nicola Tuveri nic.tuv&gmail.com 50264 - PINTU PASWAN - PINTU + PINTU PASWAN + PINTU pk2479073&gmail.com 50265 SAS TRANSPORT NOEL @@ -200930,7 +201394,7 @@ Decimal Ida Prejer ida.prejer&haradskog.se 50345 - Panopta + Panopta Jason Abate jason&panopta.com 50346 @@ -201234,7 +201698,7 @@ Decimal East Xiao xiaodong&earthledger.com 50421 - SEIKO ELECTRIC CO.,LTD + SEIKO ELECTRIC CO.,LTD Hideo Harada hideo-harada&seiko-denki.co.jp 50422 @@ -201766,7 +202230,7 @@ Decimal Zlatko Krastev zkrastev&primark.ie 50554 - DigiCAP Co.,Ltd. + DigiCAP Co.,Ltd. SungHeun Oh shoh&digicaps.com 50555 @@ -201834,7 +202298,7 @@ Decimal Richard Wang admin&wotrus.com 50571 - Erste Group IT International + Erste Group IT International Martin Rublik martin.rublik&erstegroup.com 50572 @@ -201970,7 +202434,7 @@ Decimal Stanislav Poroshin sp&ss7.io 50605 - ChinaNetCenter-Xiamen R&D center + ChinaNetCenter-Xiamen R&D center Qiu Nianting qiunt&wangsu.com 50606 @@ -202206,7 +202670,7 @@ Decimal Richard Wallman richard.wallman&bossolutions.co.uk 50664 - Internalog LLC + Internalog LLC Vladimir Plotnikov mail&internalog.ru 50665 @@ -202407,7 +202871,7 @@ Decimal jungmo.koo&kt.com 50714 Jones Lang LaSalle IP, Inc. - Perry Harris + Mahmood Ali CertManager&am.jll.com 50715 Bluink Ltd @@ -202487,7 +202951,7 @@ Decimal sven.treiber&bluebyte-it.de 50734 HHGL Limited - Jason Hampton + Jason Hampton Jason.Hampton&homebase.co.uk 50735 Vricon Systems @@ -202506,7 +202970,7 @@ Decimal Ivan Kotiv zlojkota&gmail.com 50739 - lmu + lmu david planner david.planner&iaag.geo.uni-muenchen.de 50740 @@ -202603,7 +203067,7 @@ Decimal cert&m-p.de 50763 Loca Images - Stéphane Ténier + Stéphane Ténier stephane&loca-images.com 50764 Genuinous @@ -202647,8 +203111,8 @@ Decimal jcours&numifinancial.com 50774 Lessbroken Internet Services - Fox Wilson - fwilson&lessbroken.org + Tris Emmy Wilson + tris&tris.fyi 50775 MeSign Technology Limited Richard Wang @@ -202676,7 +203140,7 @@ Decimal 50781 Gradient Technologies, LLC Tom Mia - operations&gradientsoftware.com + operations&gradientsoftware.com 50782 Cumulus Systems, Inc. Jed Krohnfeldt @@ -202740,7 +203204,7 @@ Decimal 50797 Salzgitter AG Efstratios Daskalopoulos - security&telcat.de + security&salzgitter-digital.de 50798 Aporeto Inc. Antoine Mercadal @@ -202911,7 +203375,7 @@ Decimal sean.kim&skylabteam.com 50840 Intercoax Co., Ltd - Sang-Gwan Lee + Sang-Gwan Lee sglee&intercoax.com 50841 Qcera, Inc. @@ -202962,16 +203426,16 @@ Decimal Yusuke Hasegawa yuusuke.hasegawa&mb.lecip.co.jp 50853 - BERTIN IT + Flandrin IT Erwan LE DISEZ - erwan.ledisez&bertin.fr + it&chapsvision.com 50854 Communics Systemhaus GmbH Gerrit Kaemper oid&communics.de 50855 Block Center for Integrative Cancer Treatment - Shana Ocasio + Shana Ocasio gmoore&flatiron.com 50856 Pacific Battleship Center @@ -203226,7 +203690,7 @@ Decimal Bernd Wißler bernd.wissler&kbr.de 50919 - KONICA MINOLTA, INC. + KONICA MINOLTA, INC. Shinya Kaku shinya.kaku&konicaminolta.com 50920 @@ -203419,7 +203883,7 @@ Decimal cangoualvin&gmail.com 50967 China Electronics Technology Instruments CO.,LTD The 40th &41st Institute of CETC - Dong Jigang + Dong Jigang nc.dept6&ei41.com 50968 Virtuozzo @@ -203534,9 +203998,9 @@ Decimal Narasimhan Jayasri admin&qntmnet.com 50996 - Wolford AG + Wolford AG Steven Billen - postmaster&wolford.com + postmaster&wolford.com 50997 Optellum Ltd Nicholas Dowson @@ -203834,7 +204298,7 @@ Decimal Willy Wierichs anfrage&epss.de 51071 - Fio banka, a.s. + Fio banka, a.s. Marek Seemann sit&fio.cz 51072 @@ -204034,7 +204498,7 @@ Decimal Andrew Levien andy&levien.co 51121 - Barne-, ungdoms- og familiedirektoratet + Barne-, ungdoms- og familiedirektoratet Jo Jachlin jo.jachlin&bufetat.no 51122 @@ -204106,7 +204570,7 @@ Decimal Robert Chmieliński admin&aiut.com 51139 - Controlled Electronic Management Systems + Controlled Electronic Management Systems Ian Schofield ian.schofield&jci.com 51140 @@ -204322,7 +204786,7 @@ Decimal Thanakorn Sukhonthaphong thanakorn.sukhonthaphong&dtac.co.th 51193 - 北京平治东方科技股份有限公司(peace-east Networks Ltd.) + 北京平治东方科技股份有限公司(peace-east Networks Ltd.) Haixin Jiang jianghaixin&pzdf.com 51194 @@ -204331,8 +204795,8 @@ Decimal penmaster&head.cfa.harvard.edu 51195 IT.NRW - Ulrich Hilmer - ulrich.hilmer&it.nrw.de + Holger Jungmann + holger.jungmann&it.nrw.de 51196 CAF S.A. - Construcciones y Auxiliar de Ferrocarriles S.A. Ruben Alvarez @@ -204396,7 +204860,7 @@ Decimal 51211 Iveco S.p.A Stefano Firenze - ICT-INFODOMINI&cnhind.com + ICT-INFODOMINI&cnhind.com 51212 iboss, Inc. Christopher Park @@ -204494,7 +204958,7 @@ Decimal Tomasz Baranowski oidmaster&masterpress.com 51236 - NUX Technologies + NUX Technologies Matias Lambert matias.lambert&nux.tech 51237 @@ -204603,7 +205067,7 @@ Decimal playonlie&gmail.com 51263 Julita Åkeri AB - Henrik Johansson + Henrik Johansson info&julitaakeri.se 51264 Norrhälsinge Skogsägarförening @@ -204923,16 +205387,16 @@ Decimal it-infrastruktur&deutsche-familienversicherung.de 51343 Brotherhood and Sisterhood Graphic Design and Fashion - Ayanda Nkwanyana + Ayanda Nkwanyana asnkwanyana908&gmail.com 51344 SINENSIA IT SOLUTIONS Carlos Arranz madrid&sinensia.com 51345 - IBT Interfaces + IBT Interfaces Nils Köhler - nils.koehler&ibt-interfaces.de + nils.koehler&ibt-interfaces.de 51346 da young telecommunication young-bok, sung @@ -205110,7 +205574,7 @@ Decimal Tisko Sonntag tisko.sonntag&foc-fo.de 51390 - | Mobiltrust Bilisim Sanayi ve Ticaret A.S. + | Mobiltrust Bilisim Sanayi ve Ticaret A.S. Levent Topaktas levent&mobiltrust.com 51391 @@ -205282,7 +205746,7 @@ Decimal Martin Adamsson martin.adamsson&vaultit.org 51433 - V-Partei³ + V-Partei³ Karlheinz Späth karlheinz.spaeth&gmail.com 51434 @@ -205423,8 +205887,8 @@ Decimal christoffer.andersson&chrisse.se 51468 Vertis Solutions - Jose Gregorio Gutiérrez - jose.gutierrez&vertis-solutions.com + Jose Gregorio Gutiérrez + jose.gutierrez&vertis-solutions.com 51469 CARDIOLOGY ASSOCIATES, INC. NANCY GRUNE @@ -205602,7 +206066,7 @@ Decimal Scott Parkis iana-pen&greenbriarequity.com 51513 - SYSETM INFORMATION PARTNER + SYSETM INFORMATION PARTNER Tomomi Gotou t.goto&s-i-p.jp 51514 @@ -205626,13 +206090,13 @@ Decimal Frédéric Menut frederic.menut&actemium.com 51519 - Commsignia, Inc. + Commsignia, Inc. Andras Takacs andras.takacs&commsignia.com 51520 - Bahnflow AB + Karabro AB Oskar Borgqvist - kontakta&bahnflow.se + kontakta&karabro.se 51521 ISOutsource Paul Youngberg @@ -205682,7 +206146,7 @@ Decimal Andre Liechti andre.liechti&sysco.swiss 51533 - SkyData Communications + SkyData Communications James McCartney jtmiii&skd.com 51534 @@ -205818,9 +206282,9 @@ Decimal Aleksander Mroczek amba&mm.pl 51567 - Plusnet GmbH & Co. KG + Plusnet GmbH Carsten Reuter - carsten.reuter&qsc.de + carsten.reuter&plusnet.de 51568 Buck Institute Kevin Casey @@ -206166,7 +206630,7 @@ Decimal Matthew Dunbar oid&northwestern.com 51654 - Convergence Systems Limited + Convergence Systems Limited Albert Lai albertlai&convergence.com.hk 51655 @@ -206379,7 +206843,7 @@ Decimal gkidd&anditi.com 51707 South Sound Oncology Services, PC - Deb Ellifritt + Deb Ellifritt debe&siccwa.com 51708 Gatema a.s. @@ -206522,8 +206986,8 @@ Decimal Leaoa Tolo cloud.services&concepts.co.nz 51743 - Corporación Font S. A. - Fernan Font + Corporación Font S. A. + Fernan Font fernan.font&font-tecnologia.com 51744 cyberways GmbH @@ -206666,7 +207130,7 @@ Decimal Su Qiuxia mobitech&mobi-antenna.com 51779 - Shenzhen Borynet Co.,Ltd + Shenzhen Borynet Co.,Ltd Wang Yan wangyan&borynet.com 51780 @@ -206718,7 +207182,7 @@ Decimal Rick Rodriguez cs-it-services&corsearch.org 51792 - Björnsholms Åkeri AB + Björnsholms Åkeri AB Torbjörn Eriksson Bjornsholms&hotmail.com 51793 @@ -206796,7 +207260,7 @@ Decimal 51811 ATSC 3.0 Security Authority (formerly 'Pearl TV') Ron Wheeler - ron&a3sa.com + ron&a3sa.com 51812 Shenzhen Kstar Science & Technology Co.,Ltd Jay Jiang @@ -207002,7 +207466,7 @@ Decimal Christopher Collins pen&ecsim.com.au 51863 - serv.it Gesellschaft für IT Services mbH + serv.it Gesellschaft für IT Services mbH Sebastian Rhode, Thorsten Meyer infra-server&servit.de 51864 @@ -207226,8 +207690,8 @@ Decimal Aley Elin aelin&arccn.ru 51919 - Universidad de Oriente - Eloy Olivero + Universidad de Oriente + Eloy Olivero albertohung&gmail.com 51920 link22 AB @@ -207399,7 +207863,7 @@ Decimal admin&accidentaldevelopment.com 51962 AD QUALITE - YVES DUVAL + YVES DUVAL yves.duval&ad-qualite.com 51963 Transacciones y Transferencias, S.A. @@ -207522,9 +207986,9 @@ Decimal Stefan Knodt service.itz&zhdk.ch 51993 - GKD Paderborn - Alfred Schröder - alfred.schroeder&gkdpb.de + GKD Paderborn / OWL-IT / Lernstatt Paderborn + Volker Hellmuth + vhellmu1&lspb.de 51994 Indian Institute of Science, Bangalore SANOOD ULLATTUTHODIYIL @@ -207595,8 +208059,8 @@ Decimal jcapozzi&wcsi.org 52011 Stolon - Lacoste Damien - bureau&stolon.fr + Stolon President + iana&stolon.fr 52012 Rodmyre Technology Brian Rodmyre @@ -207643,7 +208107,7 @@ Decimal Dbhalla&spacydesign.de 52023 Yeraz - Quintard Jérôme + Quintard Jérôme jquintard&yeraz.fr 52024 T-Mobile USA @@ -207906,7 +208370,7 @@ Decimal Isaiah Grindstaff grindstaffi&sheriff.cc 52089 - Servicio de Administración de Rentas + Servicio de Administración de Rentas de Honduras OSMAN RENE MORENO RAMOS omoreno&sar.gob.hn 52090 @@ -208190,7 +208654,7 @@ Decimal ming yi yiming1925&126.com 52160 - Raft Technology + Raft Technology Elad Segalis elad&raft-tech.com 52161 @@ -208247,8 +208711,8 @@ Decimal andreas.haetscher&geobasis-bb.de 52174 WM Systems LLC. - Gabor Monok - gabor.monok&m2mserver.com + Mihaly Krizsan + mihaly.krizsan&wmsystems.hu 52175 TPS B.V. TPS Support @@ -208279,7 +208743,7 @@ Decimal contact&simspace.com 52182 Brokhults Åkeri AB - Kenneth Johansson + Kenneth Johansson kennethbrokhult&gmail.com 52183 Benchmark Invest SPRL @@ -208350,7 +208814,7 @@ Decimal Leo Snowareski Filho leosfilho&gmail.com 52200 - Chuo System Corporation + Chuo System Corporation Ryota Kawashima kawashima_ryota&chuosystem.co.jp 52201 @@ -208922,8 +209386,8 @@ Decimal Neal Andrews tech&highlandcentre.org 52343 - Rohtash kumar - Rohtash kumar + Rohtash kumar + Rohtash kumar rohtashgandhi34&gmail.com 52344 PriVerify Corp. @@ -209150,7 +209614,7 @@ Decimal Attila Jankó attila.janko&cellum.com 52400 - Wimark Systems + Wimark Systems Pavel Gonchukov info&wimark.com 52401 @@ -209158,7 +209622,7 @@ Decimal Dan Barger dan.barger&thesource2000.com 52402 - Stromnetz Graz GmbH & Co KG + Stromnetz Graz GmbH & Co KG Harald Gruber ha.gruber&stromnetz-graz.at 52403 @@ -209270,7 +209734,7 @@ Decimal Chow Si Hao chowsihao&spgroup.com.sg 52430 - AppVision + AppVision Kris Hefner khefner&appvision.net 52431 @@ -209290,9 +209754,9 @@ Decimal Chandramohan Swaminathan chandramohan.swaminathan&wlt.com 52435 - First Data Corporation - Britt Gray c/o Global Cyber Security Services - PKI.Services&firstdata.com + Fiserv Corporation + Fiserv Global Cyber Security Services + PKI.Services&fiserv.com 52436 Family Footcare Specialist, Inc. Melissa Chew @@ -209387,7 +209851,7 @@ Decimal p.lutz&sercos.de 52459 NanoTemper Technologies GmbH - Matthias Fleschütz + Matthias Fleschütz it&nanotempertech.com 52460 Urząd Dozoru Technicznego @@ -210002,7 +210466,7 @@ Decimal Suryo Bintoro suryo.bintoro&trg.co.id 52613 - Hetrogenous communications Pvt ltd + Hetrogenous communications Pvt ltd Anush Gopalan anush&hetrogenous.com 52614 @@ -210359,7 +210823,7 @@ Decimal aurelien.grimal&tech-tips.fr 52702 Appstractor Corporation (UK) Ltd - Rafi Ozick + Rafi Ozick techcontact&privatise.com 52703 InstaSafe Technologies Private Limited @@ -210446,9 +210910,9 @@ Decimal RnD RP rnd&austin-hughes.com 52724 - dalx - dalx support - dalx&dalx.net + leqs + leqs support + iana&leqs.com 52725 Paper Machinery Corporation Robert W. Baumgartner @@ -210630,8 +211094,8 @@ Decimal Meysam Farsi m.farsi&karasystems.ir 52770 - Caroline A. Rivera Olmo - Caroline A. Rivera Olmo + Caroline A. Rivera Olmo + Caroline A. Rivera Olmo carolmo.hemaonco&gmail.com 52771 dslz.biz @@ -210872,13 +211336,13 @@ Decimal 52830 Tanner Ryan Tanner Ryan - tanner&0xt.ca + tanner&txryan.com 52831 IneControl Omar Poch omar&inecoiec.com.ar 52832 - Westfield Cardiology + Westfield Cardiology Alla Kanevsky fwccardiology&gmail.com 52833 @@ -210935,8 +211399,8 @@ Decimal nic.dade&mistsys.com 52846 Chunghwa System Integration Co., Ltd. - Joseph Lu - josephlu&ch-si.com.tw + Richard Cheng + richard.cheng&ch-si.com.tw 52847 Van Walt Limited Vincent van Walt @@ -210990,7 +211454,7 @@ Decimal IT Registration itregistration&thompsoncreek.com 52860 - Global Commercial Technologies + Global Commercial Technologies Dmitriy Paunin dmitriy&coins.ph 52861 @@ -211018,7 +211482,7 @@ Decimal Qianfeng Tang tangqianfeng&gmail.com 52867 - Dundee Foot and Ankle Center + Dundee Foot and Ankle Center Paul Potach ppotach05&gmail.com 52868 @@ -211099,7 +211563,7 @@ Decimal integrated.hca&gmail.com 52887 MALTA INFORMATIQUE - David DELFORGE-TROLLIET + David DELFORGE-TROLLIET david.delforge&malta-informatique.fr 52888 HSB Affärsstöd AB @@ -211127,7 +211591,7 @@ Decimal liubing&inspur.com 52894 chez14 - Christianto + Qiang Christianto chez14&publik.christianto.net 52895 China Academy of Information and Communications Technology @@ -211392,7 +211856,7 @@ Decimal 52960 AssistRx Christopher Parker - Christopher.Parker&AssistRx.com + Christopher.Parker&AssistRx.com 52961 Cohen & Company Michael Tylicki @@ -211475,7 +211939,7 @@ Decimal iana&co-nss.co.jp 52981 CPON TECHNOLOGIES HONGKONG CO LIMITED - Richard Wang + Richard Wang richard.wang&cpontech.com 52982 PNP SECURE INC. @@ -211534,7 +211998,7 @@ Decimal Zane England zane&yarnlab.io 52996 - Andreas Nilsson Skog AB + Andreas Nilsson Skog AB Andreas Nilsson anskogab&telia.com 52997 @@ -211546,7 +212010,7 @@ Decimal Information Security infosecurity&enwl.co.uk 52999 - InStride Capital Foot and Ankle + InStride Capital Foot and Ankle Emily Peters emilyp&capitalfootnc.com 53000 @@ -211594,8 +212058,8 @@ Decimal Kenneth Skoog ke1.skog&telia.com 53011 - JH skogsentreprenad AB - Johan hammarström + JH skogsentreprenad AB + Johan hammarström firmajh&gmail.com 53012 Pine Rest @@ -211767,7 +212231,7 @@ Decimal admin&vaultid.com.br 53054 T Lindmark skog AB - Robert Lindmark + Robert Lindmark robertlindmark1&gmail.com 53055 BCNexxt B.V. @@ -211818,9 +212282,9 @@ Decimal Edward Olufelo atlantaropheka&gmail.com 53067 - KAMALA Gupta - KAMALA Gupta - devendragupta235&gmail.com + KAMALA Gupta + KAMALA Gupta + devendragupta235&gmail.com 53068 Funkwerk Magyarország Kft. Miklós Mets @@ -211866,7 +212330,7 @@ Decimal Joel Lord infrastructure&advancedinfomanagement.com 53079 - Huuuge Games Sp. z o.o. + Huuuge Games Sp. z o.o. Marcin Januszewski marcin.januszewski&huuugegames.com 53080 @@ -211958,7 +212422,7 @@ Decimal Johan Söderholm Johan.soderholm&cgi.com 53102 - SUMIT + SUMIT Tomislav Papac tomislav.papac&sum.ba 53103 @@ -212135,8 +212599,8 @@ Decimal ashwaniðosit.com 53146 Frachtwerk GmbH - Björn Heller - bjoern.heller&frachtwerk.de + Friedrich Ellmer + admin&frachtwerk.de 53147 fortop projects BV Roelof van der Wal @@ -212154,7 +212618,7 @@ Decimal Yury Talakan' oid-admin&drsk.ru 53151 - Beijing Zhongchuangwei Nanjing Quantum Communication Technology Co., Ltd. + Beijing Zhongchuangwei Nanjing Quantum Communication Technology Co., Ltd. chuanyu.jiang 1501614847&qq.com 53152 @@ -212686,9 +213150,9 @@ Decimal Mike Hyslop mike.hyslop&theaccesspoint.co.uk 53284 - Selecture Incorporated + Selecture Incorporated Frank Blateri - frankselecture&aol.com + frankselecture&aol.com 53285 Shenzhen Baitong Putian Technology Co.,Ltd. Guojun Chang @@ -212730,7 +213194,7 @@ Decimal Niels Poppe info+iana&openhosting.nl 53295 - Dantherm Cooling, Inc. + Dantherm Cooling, Inc. Rick Schmidt rick.schmidt&danthermcooling.com 53296 @@ -212880,7 +213344,7 @@ Decimal 53332 TECNAIR S.p.A. Alessandro Rettani - alessandro.rettani&tecnair.com + alessandro.rettani&eu.panasonic.com 53333 Xchange Christopher Garrison @@ -213211,7 +213675,7 @@ Decimal randerson&shomg.net 53415 A-Kyrey Systems, Inc - Alfredo Barrios Villanueva + Alfredo Barrios Villanueva alfbarrios2010&gmail.com 53416 certree.com @@ -213414,8 +213878,8 @@ Decimal Claudio Anastasio claudio.anastasio&tnotice.com 53466 - Buddha Global Conferencing & Registry Services. - ABHAY AANAND (ABHAY KUMAR SINGH) + Buddha Global Conferencing & Registry Services. + ABHAY AANAND (ABHAY KUMAR SINGH) biharabhay&gmail.com 53467 JIP InfoBridge Co.,Ltd. @@ -213535,7 +213999,7 @@ Decimal domains&sims1.com 53496 OPTIMUS TELECOM - Mikis de Bonneval + Mikis de Bonneval commerce&optimustelecom.fr 53497 KosmosKosmos @@ -213571,16 +214035,16 @@ Decimal infrastructure&stephens.edu 53505 TELERYS COMMUNICATION - Michaël PAULON - admin&telerys.com + Olivier Gaudet + noc&telerys.com 53506 Kaman Inc. Reza Roohi reza&kaman.ir 53507 - First Data Education Loans - Brian Roma c/o Global Cyber Security Services - brianroma&gmail.com + Fiserv Education Loans + Fiserv Global Cyber Security Services Education Loans + pki.services&fiserv.com 53508 Rhein-Neckar-Zeitung GmbH Stefan Hauck @@ -213590,7 +214054,7 @@ Decimal Todd Povilaitis todd.povilaitis&outlook.com 53510 - Zharfpouyan Toos + Zharfpouyan Toos Mohsen Vahabzadeh info&zharfpouyan.net 53511 @@ -213662,9 +214126,9 @@ Decimal Adrian Waters ajpw&iinet.net.au 53528 - Viridian Group + Viridian Group Craig Monahan - Craig.Monahan&viridiangroup.co.uk + Craig.Monahan&viridiangroup.co.uk 53529 Town of Los Gatos Chris Gjerde @@ -213723,7 +214187,7 @@ Decimal ggreen&myntex.ca 53543 Knorr Bremse Services GmbH - Stefan Hafner + Stefan Hafner stefan.hafner&knorr-bremse.com 53544 XTRONIC GmbH @@ -213998,7 +214462,7 @@ Decimal François Van Der Biest psc&georchestra.org 53612 - Infinicomm Solutions + Infinicomm Solutions Biju Nair biju.nair&infinicomm.io 53613 @@ -214074,7 +214538,7 @@ Decimal Thomas Tansy tom&sunspec.org 53631 - Vertrics microSistemas S.R.L. + Vertrics microSistemas S.R.L. Nicolás Giussani ventas&vertrics.com 53632 @@ -214451,7 +214915,7 @@ Decimal joel&dubiner.com 53725 Montajes Y Proyectos Electrotécnicos, S.L. - Luis Alvarez + Luis Alvarez lalvarez&mype.com 53726 Cognicase Management Consulting S.L. @@ -214515,7 +214979,7 @@ Decimal admins&siamed.ru 53741 Banque de Commerce et de Placements SA - Jean-Christophe Valiere + Vojin COLAK-ANTIC netsec&bcp-bank.com 53742 Deutsche Gesellschaft für Internationale Zusammenarbeit (GIZ) GmbH @@ -214636,7 +215100,7 @@ Decimal 53771 Centro De Hematologia Y Oncologia Medica Integral Ruth Calcano - rnco76&gmail.com + rnco76&gmail.com 53772 Agence Technique de la Charente Yann Bogdanovic @@ -214911,7 +215375,7 @@ Decimal matthew.johnson&intouch.org 53840 Aehoo Networks - Tadeu R. P. + Tadeu R. P. falhas&aehoo.net 53841 ENA Energi AB @@ -215059,7 +215523,7 @@ Decimal hanumantha&adtl.co.in 53877 DP World London Gateway - Matthew Tweedie + Matthew Tweedie LGITInfrastructureEngineersTeam&londongateway.com 53878 OpenEmail IO @@ -215230,7 +215694,7 @@ Decimal Raphael Xiong Raphael&odot.cn 53920 - Taikang Insurance Group + Taikang Insurance Group Lin Zhang zhanglin78&taikanglife.com 53921 @@ -215286,7 +215750,7 @@ Decimal Yuri Korzhenevsky yura.nevsky&gmail.com 53934 - Marius Pedersen a.s. + Marius Pedersen a.s. Radek Vopěnka radek.vopenka&mainstream.cz 53935 @@ -215294,8 +215758,8 @@ Decimal Brent Ditri brent.ditri1&navy.mil 53936 - PXiSE Energy Solutions, LLC - Sergiy Bondar + PXiSE Energy Solutions, LLC + Sergiy Bondar sergiy.bondar&pxise.com 53937 Precision Practice Management @@ -215582,7 +216046,7 @@ Decimal System Department iana&skalio.com 54008 - Datora Mobile Telecomunicacoes SA + Datora Mobile Telecomunicacoes SA Samy Uziel samy.uziel&datora.net 54009 @@ -215850,9 +216314,9 @@ Decimal Weslley Almeida noc&univox.com.br 54075 - Data-Linc Group + Data-Linc Group Dilip Karna - dkarna&data-linc.net + dkarna&data-linc.net 54076 ENEDIS Esteban Pereira @@ -215878,8 +216342,8 @@ Decimal Adrian Nöthlich adrian.noethlich&piratenpartei-bw.de 54082 - Ani's creation - Aniket Meena + Ani's creation + Aniket Meena Aniketmeena300&gmail.com 54083 ENHEXA s.r.o. @@ -215978,7 +216442,7 @@ Decimal Jay Jones wirehead&wireheadmechanist.com 54107 - Advanced Cardio Diagnostic PLLC + Advanced Cardio Diagnostic PLLC ANHELINA SHTEERMAN lina&acdmed.net 54108 @@ -215990,7 +216454,7 @@ Decimal Daniel IVarsson daniel.ivarsson&jamtkraft.se 54110 - Azienda Regionale per l'Innovazione e per gli Acquisti S.P.A. (ARIA S.p.A.) + Azienda Regionale per l'Innovazione e per gli Acquisti S.P.A. (ARIA S.p.A.) Luigi Bongiorni luigi.bongiorni&lispa.it 54111 @@ -216202,7 +216666,7 @@ Decimal Tan Shuang Maan tansm&tcam.com.sg 54163 - Infomedia Technologies Corp.,Ltd + Infomedia Technologies Corp.,Ltd Hongjiang Chen chenhongjiang&infomedia.com.cn 54164 @@ -216678,7 +217142,7 @@ Decimal Silviu Sirbu silviu&vartos.io 54282 - Fuuzio Group + Fuuzio Group AiDAN MOUNTFORD AIDAN.MOUNTFORD&FUUZIO.COM.AU 54283 @@ -216767,7 +217231,7 @@ Decimal at-pki&adbsafegate.com 54304 Permian Women's Center, P.A. - Roxann Castillo + Roxann Castillo pwc405&gmail.com 54305 iMed Software Inc. @@ -216802,7 +217266,7 @@ Decimal Guillaume ASTIER guillaume.astier&naval-group.com 54313 - Personal + Personal Fer MenLop fmenendezlop&gmail.com 54314 @@ -217042,9 +217506,9 @@ Decimal Muhammad Wahaj Khan muhammad.wahaj.khan&codegic.com 54373 - Brehm Praezisionstechnik GmbH & Co. KG + Brehm Praezisionstechnik GmbH & Co. KG Celosmitarbeiter - Johann Grubek - c.mitarbeiter&brehm-praezision.de + c.mitarbeiter&brehm-praezision.de 54374 VR-Yhtymä Oy Merja Alastalo @@ -217080,7 +217544,7 @@ Decimal 54382 Virgin Mobile UK SAIP Arjen Smit - asmit&libertyglobal.com + asmit&libertyglobal.com 54383 LAWtrust Third Party Services Katekani Hlabathi @@ -217098,7 +217562,7 @@ Decimal Eddie Draaisma eddie.draaisma&delem.com 54387 - VANCL - IT s.r.o. + VANCL - IT s.r.o. Martin Vancl info&vancl-it.cz 54388 @@ -217350,9 +217814,9 @@ Decimal Tim Sproule tim&cannabisdispensary.ca 54450 - Geedge (Hainan) Information Technology Co., Ltd. - XIANG XIN - xiangxin&zdjizhi.com + Geedge Networks + Chao Zheng + zhengchao&geedgenetworks.com 54451 Icon Industrial Engineering Dmitry Komolov @@ -217364,7 +217828,7 @@ Decimal 54453 Ministry of Interior of Republika Srpska Divna Lovrić-Bojanić - ikt&mup.vladars.net + ikt&mup.vladars.net 54454 Zurtax Yury Ulyanov @@ -217479,8 +217943,8 @@ Decimal cfortunato&cloudvirga.com 54482 Virtium LLC - Chuck Brackman - chuck.brackman&virtium.com + Greg Picard + greg.picard&virtium.com 54483 Infrastruktura TK, OOO (limited liability company) Dmitriy Shvetsov @@ -217878,7 +218342,7 @@ Decimal Craig Galloway info&wilmoreelectronics.com 54582 - AH-KOMP + AH-KOMP Adam Hrazdil adamhkomp&gmail.com 54583 @@ -218086,7 +218550,7 @@ Decimal Jeffrey Skelton iana&iii.com 54634 - Informatyka Bogusławski spółka z ograniczoną odpowiedzialnością sp. k. + Informatyka Bogusławski spółka z ograniczoną odpowiedzialnością sp. k. Administrator OID administrator-oid&ib.pl 54635 @@ -218286,7 +218750,7 @@ Decimal Szymon Skoczyński szymon.skoczynski&mvb.pl 54684 - Valen Power + Valen Power Stephen Daries stephen&valen.com.au 54685 @@ -218362,7 +218826,7 @@ Decimal Bradley Kreider bkreider&anaconda.com 54703 - Djmemjy Enterprise + Djmemjy Enterprise Matthew Kennedy mattkennedy_12&yahoo.com 54704 @@ -218530,7 +218994,7 @@ Decimal jason wu weifeng.wu&7x-networks.com 54745 - Careerforce + Careerforce Mark Lyons mark.lyons&concepts.co.nz 54746 @@ -218579,7 +219043,7 @@ Decimal vsidyakov&signaltec.ru 54757 Ahgora Sistemas - Ricardo Antonio Pralon Santos + Ricardo Antonio Pralon Santos ricardo.pralon&ahgora.com.br 54758 Schattenportal @@ -218602,7 +219066,7 @@ Decimal Silvan Gebhardt factory&openfactory.ch 54763 - Nous Technologies + Nous Technologies Luis Cordova luis.cordova&noustrack.com 54764 @@ -218639,7 +219103,7 @@ Decimal aiaoyang&outlook.com 54772 Nuratech Networks LLC - Mukunda Haveri S + Mukunda Haveri S mukunda.haveri&gmail.com 54773 Papierfabrik Niederauer Mühle GmbH @@ -219016,7 +219480,7 @@ Decimal 54866 Image Ingegration Inc Cullen Jennings - fluffy&iii.ca + fluffy&iii.ca 54867 Morgan Properties John Shelton @@ -219039,7 +219503,7 @@ Decimal clint-fundamental&outlook.com 54872 Laumer Vertriebs- und Verwaltungs GmbH - Benjamin Zettl + Benjamin Zettl benjamin.zettl&laumer.de 54873 Aggregate Solutions LLC @@ -219079,8 +219543,8 @@ Decimal ITInfrastructure&shine.com.au 54882 Fiserv GIOLabs - Brian Roma - brianroma&gmail.com + Fiserv Global Cyber Security Services GIOLabs + pki.services&fiserv.com 54883 Keewin display Co. Ltd Chaoyang Li @@ -219214,16 +219678,16 @@ Decimal Hiroyasu Watanabe watanabe&glodia.jp 54916 - IDEMIA Identity & Security France - Philippe Rolland - philippe.rolland&idemia.com + IDEMIA France + Benoit MOUROUX + benoit.mouroux&idemia.com 54917 Northern Health & Social Care Trust Kevin Duffin ICT.DataCentreTeam&northerntrust.hscni.net 54918 Solnet S.A - Liliana Correa + Liliana Correa liliana.correa&solnet.com.py 54919 Chengdu Dongfangshengxing Electronics Co.,Ltd @@ -219231,10 +219695,10 @@ Decimal flhcd&163.com 54920 Cancer Center Middle Georgia - Tina Parham - cparham&ccmgeorgia.com + Tina Parham + cparham&ccmgeorgia.com 54921 - Cohesion Data Corp. + Cohesion Data Corp. Ella Lien ella.lien&cohesiondata.com 54922 @@ -219484,7 +219948,7 @@ Decimal 54983 Henan Raytonne Trading Company QI Yanjie - contact&raytonne.com + support&raytonne.com 54984 Boliden AB Mathias Ignberg @@ -219519,7 +219983,7 @@ Decimal z.klares&dirak.com 54992 Swisscom Health AG - Federico Marmori + Federico Marmori Federico.Marmori&swisscom.com 54993 Du thu @@ -219726,7 +220190,7 @@ Decimal Clemens Gruber iana&pqgruber.com 55044 - Japan Communications Inc. + Japan Communications Inc. William Hamlin whamlin&j-com.co.jp 55045 @@ -220146,7 +220610,7 @@ Decimal Raimund Pließnig pki&die-mompfdies.at 55149 - IoT Advanced Control + IoT Advanced Control Juan Olivieri juanpabloolivieri&gmail.com 55150 @@ -220466,7 +220930,7 @@ Decimal Gary Kam garykam&chinatelecomglobal.com 55229 - Information Center, Shanghai Municipal Education Commission + Information Center, Shanghai Municipal Education Commission Qi Feng its&cloud.sh.edu.cn 55230 @@ -220815,7 +221279,7 @@ Decimal oidmaster&auerswald.de 55316 ROBERT DANIEL BUONOCORE - ROBERT DANIEL BUONOCORE + ROBERT DANIEL BUONOCORE Tynas5210&gmail.com 55317 Lely Holding BV @@ -220846,9 +221310,9 @@ Decimal Cheyin Liao y20w&yinyin.info 55324 - Anapaya Systems - Samuel Hitz - hitz&anapaya.net + SCION Association + Matthias Frei + matzf&scion.org 55325 Komprise Kumar Goswami @@ -220950,7 +221414,7 @@ Decimal Barriquand Paul paul.barriquand&sipartech.com 55350 - Siemens Healthcare GmbH (SHS CS SLM SRS RSO) + Siemens Healthcare GmbH (SHS CS SLM SRS RSO) Klaus Reinelt asd.team&siemens-healthineers.com 55351 @@ -221202,7 +221666,7 @@ Decimal Takenori Sato tsato&edgematrix.com 55413 - SCC Data Systems + SCC Data Systems Bill Mitchell sccdatasystems&gmail.com 55414 @@ -221294,7 +221758,7 @@ Decimal Will Bell will&aetheros.com 55436 - Solax Power Network Technology(Zhejiang) + Solax Power Network Technology(Zhejiang) GuoHuawei guohuawei&solaxpower.com 55437 @@ -221314,7 +221778,7 @@ Decimal Aleksandrs Frolovs Aleksandrs.Frolovs&squalio.com 55441 - Radius Elnet + Radius Elnet Søren Steenslev sstee&radiuselnet.dk 55442 @@ -221343,8 +221807,8 @@ Decimal root&dimensions11.net 55448 NETROX SYSTEMS s.r.o. - Milan Kundrat - info&netrox-systems.sk + Milan Kundrát + info&netrox.sk 55449 MangoTelecom Nikita Mashko @@ -221370,7 +221834,7 @@ Decimal Robertas Matusa info&elgama.eu 55455 - dualstack GmbH + dualstack AG Stefan Marti contact&dualstack.ch 55456 @@ -221431,7 +221895,7 @@ Decimal bayudwiyansatria&gmail.com 55470 Premier Trailer Leasing - IT + IT it_tickets&premier-us.net 55471 Etung Technology Co.,Ltd @@ -221492,13 +221956,13 @@ Decimal 55485 Sierra Automated Systems & Engineering Corp Edward Fritz - ed&sasaudio.com + ed&sasaudio.com 55486 JSC "GIS" Dmitrii Iazykov iazykov.dmitrii&globinform.ru 55487 - CookieDen Online + CookieDen Online Chirag Shah Chirag.Shah&CookieDen.online 55488 @@ -221551,8 +222015,8 @@ Decimal it_infra&piloteurope.com 55500 Guangdong OPPO Mobile Telecommunications Corp.,Ltd. - Zhai Zhaoxuan - zhaizhaoxuan&oppo.com + ChunLiang Zeng + zengchunliang&oppo.com 55501 Digital Sense Hosting Pty Ltd Noel Kelly @@ -221566,7 +222030,7 @@ Decimal Marnix Janse marnix.janse&greycortex.com 55504 - UT Southwestern Medical Center + UT Southwestern Medical Center Nicole Rios Nicole.Rios&UTSouthwestern.edu 55505 @@ -221816,7 +222280,7 @@ Decimal 55566 Beijing tongtech co., LTD yong hu - tongoid&tongtech.com + tongoid&tongtech.com 55567 Cadwork Jean-Sebastien Paquet @@ -221931,8 +222395,8 @@ Decimal iana&cynthia.re 55595 Measures for Justice - Stephen Byrne - stephen.byrne&measuresforjustice.org + Ryan Belair + ryan.belair&measuresforjustice.org 55596 5G Property Solutions Brian Kinsey @@ -221950,7 +222414,7 @@ Decimal David Simal Gonzalez david.simal&originpath.com 55600 - Thales - Secure Communications & Information Systems + Thales - Secure Communications & Information Systems Christopher Stinson Christopher.Stinson&uk.thalesgroup.com 55601 @@ -222042,7 +222506,7 @@ Decimal Alain WILMOUTH ibo&2crsi.com 55623 - University of Birmingham School of Computer Science + University of Birmingham School of Computer Science Ian Batten i.g.batten&bham.ac.uk 55624 @@ -222186,7 +222650,7 @@ Decimal Jin Zhang research&zd-tech.com.cn 55659 - Zaji Consultant + Zaji Consultant Michael Schmidt Sailsman78&protonmail.com 55660 @@ -222310,9 +222774,9 @@ Decimal Bo Peng bopeng&testin.cn 55690 - Musgrave maintenance + Musgrave maintenance Glynn Delport - delport. g.a@Gmail. com + delport. g.a&Gmail. com 55691 Nolmë Informatique Vincent Duvernet @@ -222403,7 +222867,7 @@ Decimal evgenij.rudenko&a-bank.com.ua 55713 KNS Inc - Wang Hyunho + Wang Hyunho hhwang&kns-kr.com 55714 VRBANK @@ -222548,7 +223012,7 @@ Decimal 55749 TXOne Networks Inc. Justin Jan - justin_jan&txone-networks.com + justin_jan&txone.com 55750 Kadfire Limited Kadfire Networks Team @@ -222746,7 +223210,7 @@ Decimal Artem Fedoseev afedoseev&ocn.group 55799 - E Squared + E Squared Andre Mostert andrem&enterprise360.me 55800 @@ -222795,7 +223259,7 @@ Decimal klaus.steger&vitesco.com 55811 JSC "MIR UPAKOVKI" - Denisov Igor + Denisov Igor igor&netx.ru 55812 Laboratories of Molecular Anthropology and Microbiome Research @@ -222926,7 +223390,7 @@ Decimal Bas Hendrix B.Hendriks&axxicon.com 55844 - Nebig Verpakkingen B.V. + Nebig Verpakkingen B.V. Michel Coolen m.coolen&nebig.com 55845 @@ -222983,7 +223447,7 @@ Decimal myrkul.000&gmail.com 55858 ALL D.S. SECURITY SOLUTIONS LTD - Sharon Weiss + Sharon Weiss info&alldss.com 55859 Mini-Circuits @@ -223038,7 +223502,7 @@ Decimal Éric LE CORRE offre.ged&arkea.com 55872 - ProLabs + ProLabs Sergiu Rotenstein sergiu.rotenstein&prolabs.com 55873 @@ -223198,11 +223662,11 @@ Decimal Philip McGuire phil&propercode.org 55912 - Associação Nacional dos Registradores de Pessoas Naturais + Operador Nacional do Registro Civil de Pessoas Naturais Luis Carlos Vendramin Junior ac®istrocivil.org.br 55913 - Pinnacle Oncology + Pinnacle Oncology Thomas Landers tlanders&flatiron.com 55914 @@ -223350,7 +223814,7 @@ Decimal Agata Olszewska agata.olszewska&alvo.pl 55950 - Keydok LLC + Keydok LLC Xavier Lamicq Zorrilla xavier.lamicq&keydok.com 55951 @@ -223374,7 +223838,7 @@ Decimal Bochen JI jibochen&asterfusion.com 55956 - iret Gesellschaft zur Entwicklung elektronischer Steuerungen mbH + iret Gesellschaft zur Entwicklung elektronischer Steuerungen mbH Thomas Goß edvservice&iret.de 55957 @@ -223475,7 +223939,7 @@ Decimal abonilla&hoyosintegrity.com 55981 IIB Education Private Limited - Mr. Shyam Soni + Prof. Shyam Soni admin&iibedu.com 55982 Wenzhou Yeeka Lock Technology Co.,Ltd. @@ -223579,7 +224043,7 @@ Decimal casey&wrble.com 56007 Festival D'été de Québec - Alain Martel + Alain Martel amartel&feq.ca 56008 AKRA Kotschenreuther GmbH @@ -223598,13 +224062,13 @@ Decimal Komov Sergey svkomov&rt-dc.ru 56012 - JItendra Singh - Jitendra Singh + JItendra Singh + Jitendra Singh jitendrasarsa&gmail.com 56013 Aqua Broadcast Ltd. Pavel Valousek - engineering&aquabroadcast.com + info&aquabroadcast.co.uk 56014 Los Angeles Jewish Home for the Aging Hadi Sabet @@ -223844,7 +224308,7 @@ Decimal 56073 Beijing VRV Software Corporation Limited BXY VRV - gaokui&vrvmail.com.cn + gaokui&vrvmail.com.cn 56074 Knightfall Systems LLC Duncan Forsythe @@ -223884,7 +224348,7 @@ Decimal 56083 Facebook Connectivity - Joule Neal Poole - iana-assign&fb.com + iana-assign&fb.com 56084 Liphatech INC Liphatech Administrator @@ -224030,8 +224494,8 @@ Decimal CHRISTIAN LABOY claboy&hollywoodfl.org 56120 - PLASP Child Care Services - Brad Hodgins + PLASP Child Care Services + Brad Hodgins bradhodgins&plasp.com 56121 Busch's INc. @@ -224238,9 +224702,9 @@ Decimal Tayfun Erkorkmaz tayfun.erkorkmaz&samm.com 56172 - Stadt Lauf - Lukas Grams - edv&lauf.de + Unassigned + Returned 2023-07-03 + no-reply&iana.org 56173 A.J. Steenkist Stephan van Der Sterren @@ -224347,8 +224811,8 @@ Decimal leos&darkfate.net 56199 NetCom Sicherheitstechnik GmbH - Tobias Klein - tobias.klein&netcom.eu + Max Truxa + iana-contact&netcom.eu 56200 Speech-Soft Solutions Myron Hayden @@ -224370,7 +224834,7 @@ Decimal Craig Wood craigw&alloys.com.au 56205 - South-West jiaotong unversity richsun coorperation .inc + South-West jiaotong unversity richsun coorperation .inc Gang Cai 1274644197&qq.com 56206 @@ -224902,7 +225366,7 @@ Decimal Peyton Duncan pduncan&hackucf.org 56338 - Carolina Glaucoma And Vision Center + Carolina Glaucoma And Vision Center Michael Chapin michael.chapin&prismahealth.org 56339 @@ -224970,7 +225434,7 @@ Decimal Lawrence Chan system&thoughtfarmer.com 56355 - Baelim + Baelim Priyanshi Chaudhari priyac821&gmail.com 56356 @@ -225102,9 +225566,9 @@ Decimal IANA Administrator iana&dfinity.org 56388 - Thales Austria GmbH - HAMMER Johannes - johannes.hammer&thalesgroup.com + GTS Ground Transport Systems Austria GmbH + HAMMER Johannes + johannes.hammer&urbanandmainlines.com 56389 The Munshi Group Sumit Munshi @@ -225146,9 +225610,9 @@ Decimal Julian Stitz julian.stitz&solutio.de 56399 - johanssons åkeri i bygdeträsk ab - lars johansson - johanssons.akeri&bygdsiljum.se + johanssons åkeri i bygdeträsk ab + lars johansson + johanssons.akeri&bygdsiljum.se 56400 YOURWiFi, s.r.o. Martin Tesar @@ -225158,7 +225622,7 @@ Decimal Danic Gagne dgagne&cegepstfe.ca 56402 - Ministry of Justice + Ministry of Justice Matthew White matthew.white1&justice.gov.uk 56403 @@ -225386,7 +225850,7 @@ Decimal Todd Daugherty todd&milford.se 56459 - Personal Alliance Company + Personal Alliance Company Lester R. Cox Lesterrcox&gmail.com 56460 @@ -225439,8 +225903,8 @@ Decimal jgomez&phicus.es 56472 Central Bank of Jordan - Ahmed Elayyan - ahmad.elayyan&cbj.gov.jo + Ala' F. Wrikat + alaa.wreikat&cbj.gov.jo 56473 Police & Crime Commissioner for West Mercia Andrew Withers @@ -225486,7 +225950,7 @@ Decimal Francis Antonio Reyes Pineda freyes&novosit.com 56484 - Aniruddha Telemetry systems + Aniruddha Telemetry systems Amit Ashok amit.ashok&aniruddhagps.com 56485 @@ -225496,7 +225960,7 @@ Decimal 56486 BattleCrate Ltd Alan Doherty - alan&battlecrate.io + alan&serverflex.io 56487 IERUS Technologies, Inc. Chris Davis @@ -225572,7 +226036,7 @@ Decimal 56505 Premier Suburban Medical Group, PLLC Wendy Filipowski - psmg&premiersuburban.com + psmg&premiersuburban.com 56506 Project Antrea Project Antrea Maintainers @@ -225590,7 +226054,7 @@ Decimal Markus Jochim admin&bildungs.cafe 56510 - ShenZhen SureCall COMM Tech Co., Ltd + ShenZhen SureCall COMM Tech Co., Ltd LI RUIZHEN liruizhen&cellphone-mate.net 56511 @@ -225647,7 +226111,7 @@ Decimal muhammad.nafees&aksa-sds.com 56524 Magellan Midstream Partners - PKI Administrator + PKI Administrator magellanpki&magellanlp.com 56525 EBE Elektro-Bau-Elemente GmbH @@ -225682,7 +226146,7 @@ Decimal Peter Kormendi hostmaster&nalresearch.com 56533 - Dowslake Technologies + Dowslake Technologies LahaJo contact&dowslakemicro.net 56534 @@ -225919,8 +226383,8 @@ Decimal frolov&nports.ru 56592 Moog Defense and Space - Dean Rosales - drosales&moog.com + Kent Carver + kcarver&moog.com 56593 Niedersaechsisches Justizministerium (Ministry of Justice, State of Lower Saxony) Technisches Betriebszentrum (Technical Operations Center) @@ -226022,7 +226486,7 @@ Decimal Kevin Day kevin&disastrophy.com 56618 - Bank of Taiwan Los Angeles Branch + Bank of Taiwan Los Angeles Branch Pao Lo Yang it&botla.us 56619 @@ -226216,7 +226680,7 @@ Decimal 56666 Flaxseed Labs Greg Geering - greg.geering&flaxseedlabs.com + greg.geering&flaxseed.co.nz 56667 shenzhen FranklinWH Technology .,LTD Elsa zhong @@ -226718,9 +227182,9 @@ Decimal Daniel Saumur dsaumur&avenir.global 56792 - 101 Systems + Xyberdata Keshwarsingh Nadan - kn&101.systems + kn&xyberdata.com 56793 Ferdinand Kittinger GmbH Benedikt Kittinger @@ -226959,7 +227423,7 @@ Decimal vectone&omnitouch.com.au 56852 The Molson Brothers / Frères Molson - Patricia Dell'Elce + Patricia Dell'Elce Patricia.Dell'Elce&MOLSONCOORS.COM 56853 Lodige Systems GmbH @@ -226992,7 +227456,7 @@ Decimal 56860 Stefan Kania Stefan Kania - stefan&kania-online.de + stefan&kania-online.de 56861 Community First Health Plans Roger Gaza @@ -227014,7 +227478,7 @@ Decimal Bahram Ghandchi bahram.ghandchi&thirdline.org 56866 - Trelabra + Trelabra Toni Siljander toni.siljander&atea.fi 56867 @@ -227027,8 +227491,8 @@ Decimal michael.peters&westpress.de 56869 ITC - Israel Internet - Ray Bitton - rayb&it-c.co.il + Avshalom Aharoni + avshaloma&it-c.co.il 56870 GAU RD "CIT" Farid Asvarov @@ -227107,7 +227571,7 @@ Decimal root&seratech.nl 56889 Autentia S.A. - Gustavo Mendoza + Gustavo Mendoza gmendoza&autentia.cl 56890 TubNet @@ -227258,7 +227722,7 @@ Decimal Xavier Perseguers xavier&causal.ch 56927 - Dr. Welsch Security + Dr. Welsch - IT Services Dr. Dominic Welsch pen&welsch-security.de 56928 @@ -227426,7 +227890,7 @@ Decimal Ryan McClure rmcclure&clearblade.com 56969 - HOWLab + HOWLab Alberto Mur López amur&unizar.es 56970 @@ -227558,7 +228022,7 @@ Decimal Cyril FERUGLIO cyril.feruglio&kubapay.com 57002 - Alan N. Swartz MD + Alan N. Swartz MD Amber Salablanca asalablanca¶gonmedical.org 57003 @@ -227751,8 +228215,8 @@ Decimal rodrigo.caldas&ownerview.org 57050 CommScope Inc of North Carolina - Alexander Medvinsky - sasha.medvinsky&commscope.com + Nicol So + nicol.so&commscope.com 57051 Comsignal LTD Lepikhin Aleksey Pavlovich @@ -227810,9 +228274,9 @@ Decimal Boris Krečar oid-management-team&lanaco.com 57065 - Eads innovative technologies LLC + Eads innovative technologies LLC Dylan Eads - Eadsd91&gmail.com + Eadsd91&gmail.com 57066 Northland Pioneer College Isaac Hutton @@ -228066,7 +228530,7 @@ Decimal Scott Murphy info&plowtech.net 57129 - Excel Technical Projects + Excel Technical Projects Mohamed Kamel ElSayed Salama mohamed.kamel&excelsystems-eg.com 57130 @@ -228215,7 +228679,7 @@ Decimal mark.mcneilly&caseddimensions.com 57166 MECAFOR - Eric PAILLOT + Eric PAILLOT mecafor&mecafor.eu 57167 Matrix AI @@ -228226,9 +228690,9 @@ Decimal Andrii Nazarchuk it&telecard.com.ua 57169 - Kotoi-Xie Consultancy - Haochen Xie - hx&kxc.io + Kotoi-Xie Consultancy, Inc. + Haochen Kotoi-Xie + hx&kxc.inc 57170 OKB Alpha, LTD Oleg Shestakov @@ -228426,9 +228890,9 @@ Decimal Anthony Della Rossa sw-licenses&dmtllc.org 57219 - SOFOGGYC2C LLC /FOGCENTRAL ENC a + SOFOGGYC2C LLC Adrian Aguilar - ag_ge_lar426&icloud.com + sofoggyc2cllc&gmail.com 57220 RMT LTD Maxim Evdolyuk @@ -228466,7 +228930,7 @@ Decimal Dział Informatyki postmaster&wat.edu.pl 57229 - GreenPole Power Solutions India Private Limited + GreenPole Power Solutions India Private Limited Madhu Babu mbabu&greenpole-ps.com 57230 @@ -228606,9 +229070,9 @@ Decimal Ian Gibbs support&attono.net 57264 - Sigstore - Dan Lorenc - lorenc.d&gmail.com + Sigstore a series of LF Projects LLC + Bob Callaway + tac&sigstore.dev 57265 Intelligent Wave Inc. Masaki Tsuji @@ -228642,7 +229106,7 @@ Decimal Karsten Schmidt karsten.schmidt&highstreet-technologies.com 57273 - highstreet technologies GmbH + highstreet technologies GmbH Karsten Schmidt karsten.schmidt&highstreet-technologies.com 57274 @@ -228903,8 +229367,8 @@ Decimal ISB&bdbos.bund.de 57338 Leibniz-Institute for Psychology - Lars-Dominik Braun - ldb&leibniz-psychology.org + Peter Weiland + pw&leibniz-psychology.org 57339 PREMIUM SA MIKEL ABEZIA @@ -228990,7 +229454,7 @@ Decimal IT Department it&sonce.com 57360 - Universidade Federal da Bahia + Universidade Federal da Bahia Fernando Lacerda fernando.lacerda&ufba.br 57361 @@ -229203,8 +229667,8 @@ Decimal michael&geeven.de 57413 Debgrasam Architectural association - Folarin Adewale Simeon - efolarin134&gmail.com + Folarin Adewale Simeon + efolarin134&gmail.com 57414 The Rust Belt Rebellion Brad Chesney @@ -229215,7 +229679,7 @@ Decimal amaryana&bukitasam.co.id 57416 WDI Wise Device Inc. - Shane Archibald + Shane Archibald itcommunications&wdidevice.com 57417 Roxanne Hall, nėe Otto @@ -229356,7 +229820,7 @@ Decimal 57451 HealthSmart Care Management Solutions, LP LaToya Johnson - latoya.johnson&healthsmart.com + latoya.johnson&healthsmart.com 57452 Ludowici Roof Tile IT @@ -229411,8 +229875,8 @@ Decimal l.kreuzer&martin.info 57465 CloudQuant, LLC - C. Alex. North-Keys - erlkonig&talisman.org + Ryan Bermel + devops&cloudquant.com 57466 ILOVEPDF Juan Eduardo Eguiguren @@ -229631,7 +230095,7 @@ Decimal r.haelg&fust.ch 57520 Aulss8.veneto.it - Roberto Walczer + Roberto Walczer roberto.walczer&aulss8.veneto.it 57521 Ditusz Kft @@ -229696,7 +230160,7 @@ Decimal 57536 Chongqing 321 Thermal Insulation Products Co., Ltd. Yu Sea - sea&321jr.com + sea&321jr.com 57537 EverQuote, Inc. IANA PEN Admin @@ -230014,7 +230478,7 @@ Decimal Jose Antonio Santiso Martinez jasantiso&3gmg.com 57616 - Umpi S.r.l. + Umpi S.r.l. Giovanni Agarri giovanniagarri&umpi.it 57617 @@ -230054,7 +230518,7 @@ Decimal Kevin Fine kevin&lunarenergy.com 57626 - PBS El Salvador + PBS El Salvador Carlos Molina info.sv&grouppbs.com 57627 @@ -230076,7 +230540,7 @@ Decimal 57631 Ellis Medicine Cancer Center Sue Hendricks - hendrickss&ellismedicine.org + hendrickss&ellismedicine.org 57632 Panthera Dental Inc. Michel Labonte @@ -230194,7 +230658,7 @@ Decimal Alan Lee alan&relixnetworks.com 57661 - Silverwolf + Silverwolf ralph stone ralph.stone&gmail.com 57662 @@ -230319,7 +230783,7 @@ Decimal aroberti&sbscharter.org 57692 Datamart - Mauricio Thibaut + Mauricio Thibaut mthibaut&datamart.cl 57693 REMI @@ -230378,7 +230842,7 @@ Decimal Emmanuel Lécharny emmanuel.lecharny&busit.com 57707 - Ultra Electronics - Forensic Technology + Ultra Electronics - Forensic Technology IT Manager It_subs&ultra-ft.com 57708 @@ -230546,7 +231010,7 @@ Decimal Daniel Jolly djolly&fuze.com 57749 - Nuphoton Technologies Inc + Nuphoton Technologies Inc Emilmon Alias emilmon&nuphoton.com 57750 @@ -230566,7 +231030,7 @@ Decimal John Stark sysadmin&therapixel.com 57754 - DATRAK Digitális Adattranzakciós Központ Kft. + DATRAK Digitális Adattranzakciós Központ Kft. Balaton Alexandra ugyfelszolgalat.SZKR&datrak.hu 57755 @@ -230726,7 +231190,7 @@ Decimal Michael David michael.david&cwlp.com 57794 - Open Access Technology International, Inc. + Open Access Technology International, Inc. Contracts Administration Contracts&oati.net 57795 @@ -230735,7 +231199,7 @@ Decimal michael.wilson&n2.net.nz 57796 Kingsley E. Agbeyegbe, MD, PC - Kingsley Agbeyegbe + Kingsley Agbeyegbe kingsley.agbeyegbe&gmail.com 57797 WebCode Kft. @@ -230890,7 +231354,7 @@ Decimal Theo Hardendood theo.hardendood&metisit.com 57835 - Trafic Technologie Système + Trafic Technologie Système Pierre Olivier Billy po.billy&ttsys.fr 57836 @@ -231110,7 +231574,7 @@ Decimal Tamás Prajczer info&geox.hu 57890 - MIT-SOFT, UAB + MIT-SOFT, UAB Antanas Mitasiunas antanas.mitasiunas&mitsoft.lt 57891 @@ -231162,7 +231626,7 @@ Decimal Paul Delamere paul.delamere&iceland.co.uk 57903 - Airvine scientific inc. + Airvine scientific inc. Allen Lee alee&airvine.com 57904 @@ -231483,11 +231947,11 @@ Decimal C.HEPBRON&ALFIERICARDIOLOGY.COM 57983 Linka Cloud - Philippe-Adrien Nousse + Philippe-Adrien Nousse philippe.adrien.nousse&gmail.com 57984 simplequantum.com - Corban Petersoncordova + Corban Petersoncordova corban&simplequantum.com 57985 Hybrid DSP Systems B.V. @@ -231782,7 +232246,7 @@ Decimal AOEMF Contact aoemf-contact&kyndryl.com 58058 - LEERANG + LEERANG Songi, Lee iequalto&naver.com 58059 @@ -231934,7 +232398,7 @@ Decimal Auraud Moulana auraud&hiweb.ir 58096 - National Authority for Digital Certification + National Authority for Digital Certification Fatima Saad Saeed Farah fatima.saeed&nadc.gov.sd 58097 @@ -232190,7 +232654,7 @@ Decimal Ethan Garrett infrastructure&addisonlee.com 58160 - Adportas Media GROUP S. A. + Adportas Media GROUP S. A. Igor Bohme ibohme&adportas.cl 58161 @@ -232430,7 +232894,7 @@ Decimal Harm Scheltens harm.scheltens&gridnv.nl 58220 - Université Jean Moulin Lyon 3 + Université Jean Moulin Lyon 3 Frederic Jacquot frederic.jacquot&univ-lyon3.fr 58221 @@ -232762,7 +233226,7 @@ Decimal Michael Tseng info&lanaotek.com 58303 - North Canyon Medical Center + North Canyon Medical Center Jeff Quinton jeff.quinton&northcanyon.org 58304 @@ -232898,9 +233362,9 @@ Decimal Johnson, Temo - Tekkgear (Pacific US) temojohnson&tekkgear.com 58337 - Rumble, Inc + runZero, Inc HD Moore - hello&rumble.run + support&runzero.com 58338 Alauda Wenbo @@ -233062,9 +233526,9 @@ Decimal Antonio Royo a.royo&uvax.es 58378 - Delta Electronics (Shanghai) Co., Ltd. Hangzhou Design Center - jeff zhou - jeff.zhou&deltaww.com + Delta Electronics Inc. + Obi Wang + obi.wang&deltaww.com 58379 International Data Spaces Association e.V. Sebastian Steinbuss @@ -233262,7 +233726,7 @@ Decimal Kurt VonEhr kurt.vonehr&getcruise.com 58428 - Adwia Pharmaceuticals + Adwia Pharmaceuticals ITD it&adwia.com 58429 @@ -233459,7 +233923,7 @@ Decimal admin&alphaassurances.com 58477 Zone de Police de Huy - Martinez Gabriel + Martinez Gabriel steven.cabu&uptime-ict.be 58478 Toshiba Quantum Technology @@ -233792,7 +234256,7 @@ Decimal 58560 Odessa Missionary Fund Jared Cheesman - humantraffickingspecialist&gmail.com + humantraffickingspecialist&gmail.com 58561 De Greef's Wagen-, Carrosserie- en Machinebouw B.V Paul Sprang @@ -233906,7 +234370,7 @@ Decimal Daniel Alonso López Grandal dlopez&arteixotelecom.com 58589 - TrueConf + TrueConf Aleksandr Kuznetsov kuznetsov&trueconf.com 58590 @@ -233918,11 +234382,11 @@ Decimal David Waller david.waller&mail.house.gov 58592 - Keller Rohrback + Keller Rohrback Casey Allard itnotify&kellerrohrback.com 58593 - Keller Rohrback + Keller Rohrback Casey Allard itnotify&kellerrohrback.com 58594 @@ -234058,9 +234522,9 @@ Decimal Sebastian Nuñez sebastian.nunez&asse.com.uy 58627 - JaggedXY Inc. + JaggedXY Inc. Greg Burdett - greg.burdett&jaggedxy.com + greg.burdett&jaggedxy.com 58628 Glasgow Clyde College Graeme MacCormick @@ -234146,7 +234610,7 @@ Decimal Deepak Kumar deepak.kumar&motional.com 58649 - ZIONCOM (Shenzhen) Technology Ltd. + ZIONCOM (Shenzhen) Technology Ltd. Wang Xing wangxing&carystudio.com 58650 @@ -234184,7 +234648,7 @@ Decimal 58658 CjyDev Abbie R Gantt - admin&tnn.cc + cjydev&net.tnn.cc 58659 Devin Nakamura Devin Nakamura @@ -234232,7 +234696,7 @@ Decimal 58670 Kiss Kornel Kiss Kornel - kornel&kisskornel.com + kornel&c8tv.co.hu 58671 Common Fate Chris Norman @@ -234246,7 +234710,7 @@ Decimal Alexander Becker alexander.becker&sertrix.de 58674 - Coto CICSA + Coto CICSA Fernando Ayail seguridadinfo&coto.com.ar 58675 @@ -234274,7 +234738,7 @@ Decimal Szymon Kowalczyk pkit&mjpws.pl 58681 - Integrale IT + Integrale IT Szymon Janczak ldap&integraleit.pl 58682 @@ -234338,8 +234802,8 @@ Decimal David Timber david&snart.me 58697 - 共同カイテック株式会社 (Kyodo Kaitech Co., Ltd.) - 市野正樹 (Masaki Ichino) + Kyodo KY-TEC Corporation + Masaki Ichino ichino&ky-tec.co.jp 58698 Bogon Flux Metrology @@ -234630,7 +235094,7 @@ Decimal Jérémie ANDRÉI 5mpwki&lu6.fr 58770 - kplola + kplola kevin KANGNI mail&kplola.fr 58771 @@ -234906,7 +235370,7 @@ Decimal Yanqin Wu wuyanqin&greatwall.com.cn 58839 - MicroNOC Inc. + MicroNOC Inc. Isaac Yen isaacny&MicronocInc.com 58840 @@ -234926,7 +235390,7 @@ Decimal Darren Boss darren.boss&alliancecan.ca 58844 - Alpha ESS Co., Ltd. + Alpha ESS Co., Ltd. Jester Li jester.li&alpha-ess.com 58845 @@ -234992,7 +235456,7 @@ Decimal 58860 Vector Technologies, LLC Sergey Gusakov - sgusakov&vector-t.ru + sgusakov&vectortechnologies.ru 58861 Shaanxi Gangsion Electronic Technology Co., Ltd chaikeran @@ -235058,7 +235522,7 @@ Decimal Aaron Shaffer aaron&shafferconsulting.com 58877 - Elbe Flugzeugwerke GmbH + Elbe Flugzeugwerke GmbH Bernd Zimmermann bernd.zimmermann&efw.aero 58878 @@ -235219,7 +235683,7 @@ Decimal mphillips&boomerbenefits.com 58917 pki-lexa.adds - lannion axel + lannion axel loukoli&hotmail.fr 58918 Aguas da Regiao Metropolitania de Maputo @@ -235230,8 +235694,8 @@ Decimal David Watson david.watson&spiritsuper.com.au 58920 - BRINDISI TRUCKING LLC - Jason Brindisi + BRINDISI TRUCKING LLC + Jason Brindisi brindisi.trucking&gmail.com 58921 Collini Dienstleistungs GmbH @@ -235270,13 +235734,13 @@ Decimal Nicholas Sharples admin&true-frontier.com 58930 - Hangzhou Normaedelta Networks & Services Ltd. + Hangzhou Normaedelta Networks & Services Ltd. Tao Hui taohui&n6delta.com 58931 TP Skogstjänst AB David Nyren - david.nyren&tpskogstjanst.se + david.nyren&tpskogstjanst.se 58932 Verve Industrial Protection Josh Heling @@ -235342,7 +235806,7 @@ Decimal Daniel Knappe it&spreenauten.com 58948 - “PIXIETECH” LLC + “PIXIETECH” LLC Andrey Khegay support&pixietech.uz 58949 @@ -235354,9 +235818,9 @@ Decimal Néstor Reyes Avaria nreyes&ecertla.com 58951 - Ho2 - heather orawsky - heathero112182&protonmail.com + Unassigned + Returned 2023-03-20 + ---none--- 58952 Central States Manufacturing, Inc. Andrew Healey @@ -235443,7 +235907,7 @@ Decimal deepakjohn1213&gmail.com 58973 dwap - Bertrand DUBOIS + Bertrand DUBOIS bert_dub&dwap.fr 58974 Attensys.io GmbH @@ -235572,7 +236036,7 @@ Decimal 59005 TEWS Elektronik GmbH & Co. KG André Tews - PEN-IANA&tewsworks.com + PEN-IANA&tewsworks.com 59006 Prodec Networks Ltd. Michael Dance @@ -235719,7 +236183,7 @@ Decimal iana.sverige&swarco.com 59042 Eneida - arthur autuori + arthur autuori aautuori&eneida.io 59043 Tigo CA @@ -235798,7 +236262,7 @@ Decimal Max Belov max&ukrgrafit.com.ua 59062 - e-Governance infrastructure implementation agency (EKENG) + e-Governance infrastructure implementation agency (EKENG) Gevorg Bakhshyan gevorg.bakhshyan&ekeng.am 59063 @@ -235822,7 +236286,7 @@ Decimal James Caffery JCaffery&girdsystems.com 59068 - Gxmicro + Gxmicro Martin Zhang huan.zhang&gxmicro.cn 59069 @@ -236190,7 +236654,7 @@ Decimal Andy Kim andykim17&rocketibt.co.kr 59160 - AM Uggerud Holdings + AM Uggerud Holdings Michael J Uggerud amuggholdings&gmail.com 59161 @@ -236214,8 +236678,8 @@ Decimal Henning Svane hsv&energy.dk 59166 - Olivance PTY LTD - Ahmed Tayeh + Olivance PTY LTD + Ahmed Tayeh Atayeh&olivance.com 59167 innogy Česká republika @@ -236250,7 +236714,7 @@ Decimal Chad Haxton HostingNotify&prim.com 59175 - Azdio + Azdio Youri Kalinov youri.kalinov&azdio.com 59176 @@ -236303,7 +236767,7 @@ Decimal clasich&cvmusa.com 59188 Skogslogistik AB - Christian Jönsson + Christian Jönsson christian.skogslogistik&gmail.com 59189 Emil Frey IT Solutions AG @@ -236331,7 +236795,7 @@ Decimal engineering&raycowylie.com 59195 Asociacion de Bancos Multiples de la República Dominicana - Rosanna Ruiz + Rosanna Ruiz tecnologia&aba.org.do 59196 Lead Control Inc. @@ -236754,7 +237218,7 @@ Decimal Lynn Grant lgrant&nevacross.com 59301 - LEGEND + LEGEND wang zan wangzan1&legendcf.com 59302 @@ -236762,7 +237226,7 @@ Decimal IT System Operations itso&gpec.pl 59303 - INBRES, LLC + INBRES, LLC Leonid Orlov info&inbres.ru 59304 @@ -236953,6 +237417,5646 @@ Decimal ITMIM CA Authority Habib Abbasov hebib.atilla&gmail.com +59351 + AS G4S Eesti + Dmitri Sabunov + dmitri.sabunov&ee.g4s.com +59352 + Evangelische Schulgemeinschaft Erzgebirge e.V. + Wolfram Günther + it&ege-annaberg.de +59353 + Quantum Meta Holding Corporation + Adam Glynn + support.iana.pen&quantummeta.us +59354 + Telecom Italia Sparkle S.p.A. + Marco Bruti + marco.bruti&tisparkle.com +59355 + Inevitable IT Solutions + Dennis Brands + dbrands79&gmail.com +59356 + Redback Technologies + Jarrod Giese + jarrod.giese&redbacktech.com +59357 + GlobalTill, Inc. + Michael MacKinnon + mike&ops.globaltill.com +59358 + Beijing Zhongzhi Huida Technology Co., Ltd + ying.tang + 309074162&163.com +59359 + Adscanner d.o.o. + Ivan Pek Tasner + itasner&adscanner.tv +59360 + Axians RSC + Pepijn Stulemeijer + pepijn.stulemeijer&axians.com +59361 + China UnionPay Merchant Services Co., Ltd (ChinaUMS) + Xin Zheng + xinzheng1&chinaums.com +59362 + Think2Future S.r.l. + Massimiliano Calandrelli + massimiliano.calandrelli&think2future.it +59363 + Shandong Broadcasting and Television Info-Com Co.,Ltd + wei xiao + xw&sdtv.cn +59364 + The Dennis Group + Calen Coggeshall-Burr + ITAdmin&dennisgroup.com +59365 + Arihant Info Systems + Rajesh Kumar Sethi + arihantinfoghy&gmail.com +59366 + Loongson Technology Corporation Limited + Chao Li + lichao&loongson.cn +59367 + Energieversorgung Gera GmbH + Michael Barz + it.account&egg-gera.de +59368 + CIG Grande Couronne + Daniel LEVEL + pole.projet&cigversailles.fr +59369 + APA-IT Informationstechnologie GmbH + Jose Tojo + iamop&apa.at +59370 + RAGTECH + Ricardo Tavares da Silva + rsilva&ragtech.com.br +59371 + fidar electronics co. + saman nikzad + s.nikzad&fidarelectronics.com +59372 + Tigo Technology Center + TTC Cloud Delivery Team + ttc-cloud-delivery&millicom.com +59373 + Redbyte + Sean Reid + penquiries&redbyte.net +59374 + rostech.at + Administrator + admin&rostech.at +59375 + Centre Eugène Marquis + David BARATTE + d.baratte&rennes.unicancer.fr +59376 + Datapod (Australia) Pty Ltd + Anthony Cheung + anthony.cheung&datapod.com.au +59377 + Ahoku Electronic Company + Christine Lee + christine.lee&ahoku.com +59378 + euroNAS GmbH + Tvrtko Fritz + support&euronas.com +59379 + GOLDBECK GmbH + Mike Eichner + mike.eichner&goldbeck.de +59380 + Authing + Mathew Chan + mathew.chan&authing.cn +59381 + Projekt Pomorskie e-Zdrowie + Alicja Pęśko + ezdrowie&pomorskie.eu +59382 + Lazzate Cia. Ltda. + Medardo Silva + gerald.moreno&lazzatecorp.com +59383 + Silicon Curtain + Charles McCauley + Chuck.McCauley&SiliconCurtain.net +59384 + Fiinu Bank Ltd + Timo J. Rinne + timo.rinne&fiinu.com +59385 + Marqeta + John Kim + network&marqeta.com +59386 + Bulat Co., Limited + Crystal Huang + sales&bulat.com.cn +59387 + Tondo Solutions + Ferdinand Silva + info&tondosolutions.com +59388 + Eren DOGAN + Eren Dogan + eren_dogan&yahoo.com +59389 + Docbyte NV + Tom De Cubber + qtsp&docbyte.com +59390 + Holu Hou Energy, LLC + Romano Pauli + romano.pauli&holuhou.com +59391 + Solutions Heptaèdre Inc. + Eric Martel + eric.martel&SolutionsHeptaedre.com +59392 + Da Who + Randall Vogsland + acer&dawho.com +59393 + VNPT Net3 + Tiến Hưng Nguyễn + nguyentienhung&vnpt.vn +59394 + Trustnhope + Trustnhope + shjhwoo&trustnhope.com +59395 + sonnen Australia Pty Ltd + Leonid Kukarin + l.kukarin&sonnen.com.au +59396 + NADDOD + Qin Long + long.qin&naddod.com +59397 + Johnson County Kansas Government + Christopher Foltz + inetadmin&jocogov.org +59398 + GSW Gemeinschaftsstadtwerke GmbH + Sebastian Moecklinghoff + it&gsw-kamen.de +59399 + TeaTime VertriebsgmbH + Michael Haider + it-admin&teatime-austria.com +59400 + VertiSoft Corp + Donald French + dhfrench&vertisoft.com +59401 + dMux Sistemas + Maurício Mauad Menegaz Filho + mmauad&gmail.com +59402 + Wi-Tek + Alun Wang + luke&wireless-tek.com +59403 + CALM Oy + Tommi Grönlund + tommi.gronlund&calm.fi +59404 + Berolina Metallspritztechnik Wesnigk GmbH + Benjamin Neuse + administrator&metallspritztechnik.de +59405 + INDEX EDUCATION + Romain Bonomini + rbonomini&index-education.fr +59406 + Citel S.R.L. + Carelli Giuseppe + g.carelli&citel.it +59407 + Polynoia + Peter Rindfuss + peter.rindfuss&gmail.com +59408 + Wink Stanzwerkzeuge GmbH & Co. KG + Thomas Neuwinger + thomas.neuwinger&wink.de +59409 + Ministerio de Salud + Jhon Poveda + jpoveda&minsalud.gov.co +59410 + ZECO Energy + Jag Makam + admin&zecoenergy.com.au +59411 + PLATH Signal Products GmbH & Co. KG + Steffan Klimkiewicz + Steffan.Klimkiewicz&plath-signalproducts.com +59412 + 广州中维安特电子科技有限公司 (Guangzhou Zhongweiant Electronic Technology Co., Ltd.) + 陈英华 (yinghua chen) + 821908722&qq.com +59413 + SIS GmbH + Michael Salewski + timo.kuehn&sis.ag +59414 + Energieversorgung Sylt GmbH + Oliver Otto + o.otto&stadtwerke-husum.de +59415 + Stadtwerke Husum GmbH + Oliver Otto + o.otto&stadtwerke-husum.de +59416 + Transport BORIE + Hervé BRUN + transport.borie&orange.fr +59417 + Natwest Group Plc + Michele Proctor + michele.proctor&natwest.com +59418 + Nash twins + Josh Nash + jjnash77&gmail.com +59419 + Tarkett + Aaron Mack + aaron.mack&tarkett.com +59420 + Altice Dominicana + Nicolas Vidal + nvidal&altice.com.do +59421 + Altice Dominicana + Nicolas Vidal + nvidal&altice.com.do +59422 + Mountain Brook Schools + Jason C Falconer + falconerj&mtnbrook.k12.al.us +59423 + Xiamen Kehua Digital Energy Tech Co., Ltd. + Jianfu Li + lijianfu&kehua.com +59424 + SALZ Automation GmbH + Thomas Holm + thomas.holm&salz-automation.com +59425 + eSIX + Kinson Chan + marketing&esix.co +59426 + Galgus + Jesús Fernández Manzano + jesus.manzano&galgus.net +59427 + Cyber Insight + Maksim Zaikin + Max.V.Zaikin&gmail.com +59428 + Spoon Technologies + Network Operations + support&spoontech.biz +59429 + Specialised Assistance School for Youth + David Beaumont + drb&sasy.sa.edu.au +59430 + Fisher & Paykel Healthcare + Philip Rowe + philip.rowe&fphcare.co.nz +59431 + ALFA + WAEL Mustafa + alfacosmatics&gmail.com +59432 + Heinrich Peters + Heinrich Peters + iana&heinrich-peters.de +59433 + Gemeente Veendam + Bert Starke + bert.starke&gridnv.nl +59434 + Gemeente Pekela + Bert Starke + bert.starke&gridnv.nl +59435 + Afeer + Bert Starke + bert.starke&gridnv.nl +59436 + Gemeente Oldambt + Bert Starke + bert.starke&gridnv.nl +59437 + BCOM Networks Limited + Alex Woo + ae&bcom-net.com +59438 + CyberInx Limited + Cardiff Office + CardiffOffice&cyberinx.co.uk +59439 + Hellenic Mediterranean University (HMU) + Charampos Tsatsarakis + babis&hmu.gr +59440 + Fanvil + Tony Zhu + haibo.zhu&fanvil.com +59441 + Nextera Video, Inc + J. Deame + drdme&comcast.net +59442 + Kino Polska TV S.A. + Nikolay Stoyanov + it&kinopolska.pl +59443 + RELIEF VALIDATION LIMITED + ASM ASHRAFUZZAMAN + asm.ashraf&reliefvalidation.com.bd +59444 + Washington Office of the Secretary of State + Samuel Anderson + ciso&sos.wa.gov +59445 + S COP GmbH + Andreas Habedank + andreas.habedank&s-cop.bayern +59446 + Shenyang FCH Software Co.,Ltd + Jiazhengfeng + jiazhengfeng&fchsoft.com +59447 + Meadowfield Associates Ltd + Dean Scott + deanscott_48&yahoo.co.uk +59448 + ENet Network Security Research Group (ENSR) + Christopher M Blake + enet&net.tnn.cc +59449 + VINFAST TRADING AND PRODUCTION JOINT STOCK COMPANY + Trần Việt Đức + v.ductv12&vinfast.vn +59450 + Dumont Automation + Tiago Rosolen + contact&dumontautomation.com +59451 + QuantumIOT + Michael Walti + mwalti&quantumiot.com +59452 + Dama11 + Juergen Key + jkey&arcor.de +59453 + Perth Airport Pty Ltd + Damien Derby + damien.derby&perthairport.com.au +59454 + iWay AG + Andy Horvath + snmp&as8758.net +59455 + Gemeente Westerwolde + Bert Starke + bert.starke&gridnv.nl +59456 + RWLP + Bert Starke + bert.starke&gridnv.nl +59457 + Tasteful Selections + Dane Witham + dane.witham&tastefulselections.com +59458 + ENSA Strasbourg + Severine GUTIERREZ + informatique&strasbourg.archi.fr +59459 + Ceson Skog AB + Anders Carlsson + anders&cesonskog.se +59460 + Triton Digital a.s. + Miloš Sedláček + milos.sedlacek&triton.eu +59461 + London Borough of Enfield + Mark Aylwin + LBEServerInfrastructure&enfield.gov.uk +59462 + iDenfy + Domantas Ciulde + info&idenfy.com +59463 + Polmlek Sp. z o.o. + Mateusz Szczodruch + serwis.it&grupapolmlek.com +59464 + ICTKholdings + DoKyung Yeo + dkyeo&ictk.com +59465 + dtriger INC. + youjun yao + 413019541&qq.com +59466 + Mohsin Ansari MD FAAP PC + Saba Khan + sabamohsin&hotmail.com +59467 + Evolynx + François Robeyn + francois.robeyn&evolynx.eu +59468 + VANTIS II SOFTWARE,LDA + Ricardo Lacerda + ricardo.lacerda&vantis.pt +59469 + Sigilence Technologies + Remi Saurel + it&sigilence.com +59470 + magniX + John Troup + support&magnix.aero +59471 + Eberl Internationale Spedition GmbH & Co. KG + Bernhard Genghammer + it&spedition-eberl.de +59472 + Algar Telecom S/A + Cesar Augusto Carvalho Vieira + carvalho&algartelecom.com.br +59473 + China Society of Automotive Engineers (CSAE) + Jie Zhang + zjdazhuang&gmail.com +59474 + JSC KUCHUKSULPHATE + Pavel Nedoshivkin + npg&kuchuk.ru +59475 + АО «НТЦ ЕЭС Информационные комплексы» (JSC "NTC UES Information complexes") + Савилова Зоя (Savilova Zoya) + ic&ic.ntcees.ru +59476 + La Compagnie du Logement + Service Informatique + contact.pki&cie-logement.fr +59477 + Racklive + Joel Wineland + joel&racklive.com +59478 + Liljestig + Dan Liljestig + dan&liljestig.com +59479 + JORA Holding GmbH & Co. KG + Sven Uttinger + Sven.Uttinger&jora-holding.com +59480 + Analytical Instrumentation Services + Daniel Kasdan + Dankasdan&aisanalytical.com +59481 + Trustoic PKI Consulting + Gareth Hind + gareth&trustoic.com +59482 + Rady Children’s Hospital - San Diego + Parham Gholami + 3DPrintLab&rchsd.org +59483 + IUT de Bordeaux + Jordane Pluchon + jordane.pluchon&u-bordeaux.fr +59484 + Nafiux + Ignacio Ocampo Millan + ignacio.ocampo&nafiux.com +59485 + Invenco Group Ltd + James Pullen + james.pullen&invenco.com +59486 + TANLA PLATFORMS LIMITED + Pavan Kumar Kuchibhatla + pavankumar.k&tanla.com +59487 + JOHANN BUNTE Bauunternehmung SE & Co. KG + Henning Hanekamp + HanekampH&johann-bunte.de +59488 + arkona technologies GmbH + Rainer Sturm + r.sturm&arkona-technologies.de +59489 + aiMotive + Gergely Juhasz + gergely.juhasz&aimotive.com +59490 + OpenDrives + STEVEN MCLANE + s.mclane&opendrives.com +59491 + Joint Genome Institute + Georg Rath + gbrath&lbl.gov +59492 + imvaria inc. + Don Bigler + dbigler&imvaria.com +59493 + CRAG Consultants + Jane Waight + jw&chg.me.uk +59494 + Preston Meyer Group + Georg Meyer + dev&pmgroup.ch +59495 + Lion Elastomers Geismar + Eric Sawa + eric.sawa&lionelastomers.com +59496 + Shenzhen Phoenix Telecom Technology Co.,Ltd + xiang cheng + chengxiang&phoenixcompany.cn +59497 + MPEON Co, Ltd. + Shin, Seongho. + ssh&mpeon.com +59498 + PT Juke Solusi Teknologi + Iwan Setiawan + ncss.juke&gmail.com +59499 + Juke Solutions Labs + Zharfan Nugroho + master.jukelabs&gmail.com +59500 + Innofriends GmbH + Markus Fischbacher + info&innofriends.world +59501 + Billund Aquaculture + Morten Bojer + license&billundaquaculture.com +59502 + Get-Random + Johan Åkerström + jakerstrom&gmail.com +59503 + Docentric d.o.o. + Matija Vrtačnik + admin&docentric.com +59504 + Mobtaker Ofoq + mohammad habibi + hsmo&mobtakerofoq.ir +59505 + Devuan + Andreas Messer + andi&bastelmap.de +59506 + Medical West Hospital + Scott Rogers + scott.rogers&uabmw.org +59507 + Nippy Networks + Ed Wildgoose + support&nippynetworks.com +59508 + Banco Central de Reserva de El Salvador + José Elías Alvarado + elias.alvarado&bcr.gob.sv +59509 + Beijing Guanglida Technology Co.,Ltd + Sam Wang + 402341951&qq.com +59510 + MasterCom Technology Services India Pvt Ltd + Sreenivasa Nagappa + sreenivasa.n&mastercom.co.in +59511 + concept610 + jean claude sageaux + jeanclaude.sageaux&free.fr +59512 + True Blue Sphere + Anderson Manly + anderson&truebluesphere.com +59513 + Summit Rock Advisors + Anthony Tsang + anthony.tsang&summit-rock.com +59514 + Coder Enterprises + Mark Ottaway + mark.ottaway&coderenterprises.co.uk +59515 + DANAM Systems + TAEKMYUNG, WOO + wootm&danam.co.kr +59516 + Autel New Energy Co., Ltd + Yuxing Zou + zouyuxing&autel.com +59517 + Stor Services Limited + Yiorgos Adamopoulos + iana-pen&storfund.com +59518 + Salisbury NHS Foundation Trust + Jon Arnold + apprnz.infra&nhs.net +59519 + SBK Telecom + Manuel Deschambault + manuel&sbktelecom.com +59520 + REDX TECHNOLOGY AUSTRALIA PTY LTD + Adam Wang + redxtechau&gmail.com +59521 + Shawarren.net + Jamie Shaw + jamie&shawarren.net +59522 + Shabodi Corp + Harpreet Geekee + hgeekee&shabodi.com +59523 + Bigtera + HM.Yang + info&bigtera.com +59524 + Kuko Home LAB + Bostjan Kukovicic + bostjan&e-kuko.eu +59525 + A4 Elite Engineering + Alberto Valez Maya + alberto.valez&a4ee.tech +59526 + Hangzhou LUXAR Technologies Co.Ltd. + Xiaohui Zhou + zhouxiaohui&luxartech.cn +59527 + Miltenyi Biotec B.V. & Co. KG + Dr. Uwe Engeland + U.Engeland&miltenyi.com +59528 + Logansport Memorial Hospital Cancer Care Center + Paul Soderlund + psoderlund&logansportmemorial.org +59529 + Unitas Global + Mike Simkins + mike.simkins&unitasglobal.com +59530 + SSOSEC + Suri Madhira + ms&ssosec.com +59531 + Hunan RongTeng Networks Technology Co., Ltd. + Tong Long + support&rtnetworks.com.cn +59532 + MAURER SE + Denis Härtinger, Kai Schittko + helpdesk&maurer.eu +59533 + FamNet.at + Stefan Reisinger + mail&famnet.at +59534 + American Cardiology, LLC + Tonya Saulsbury + tsaulsbury&amcareclinic.com +59535 + 3ntropy Technologies + Mariano Chingotto + mchingotto&3ntropy.net +59536 + ZIMA TARASHE TOOS IT AND TELECOM COMPANY + MOHSEN ATTARI + M.ATTARY&MSGROUP.IR +59537 + TsingYao Technology Limited + JunQing Gu + op&tsingyao.net +59538 + KliqSpot + Arulselvan Radhakrishnan + arulselvan&espinait.com +59539 + cryptMail.io + Christian Ermel + ce&cryptmail.io +59540 + Integración Digital Ingeniería + Software development team + integracion&integraciondigital.es +59541 + FCWSistemas - TI + Frederico C Wilhelms + fredcw&gmail.com +59542 + Liea Tecnologia Ltda + Alberto Ferrira da Silva + alberto&liea.com.br +59543 + Alberto Silva + Alberto Ferreira da Silva + alberto.silva&lieax.com.br +59544 + Xronex Corporation + Mohamad Hazizi + admin&mohamadhazizi.com +59545 + Sierra County + Jeremy Miller + crussell&sierracounty.ca.gov +59546 + Lightmatter, Inc. + IT Administrator + pen&lightmatter.co +59547 + 2WAY + Richard van Eijs + richard.van.eijs&2-way.nl +59548 + Survalent + Rick Hayden + rickhayden&survalent.com +59549 + Elettronica GmbH + Dejan Stankovic + it_elt&elettronica.de +59550 + PM Group GmbH + Manuel Waldner + it&pmgroup.de +59551 + TASSTA GMBH + Jana Gebauer + mcx&tassta.com +59552 + Jayketek Solutions + Jacob Boily + j.boily&jayketeksolutions.com +59553 + JMCME LLC + Jacob Cooke + jacobmcooke&jmcme.org +59554 + Cleaning901.com + Ebony Leake + Karmellebony&gmail.com +59555 + 山东英特力光通信开发有限公司 (Shandong Intelli Optical Communication Development Co., Ltd.) + 王飞 (Wang Fei) + wangfeicat126&126.com +59556 + TRANSPORT SOPYBOIS + Marie SENTENAC + sopybois31&gmail.com +59557 + Transports Ligneul + Jérôme Ligneul + transportsligneul&wanadoo.fr +59558 + karev.ch + Ivan Karev + ivan&karev.ch +59559 + MeshPlusPlus, Inc. + Danny Gardner + danny&meshplusplus.com +59560 + CA VESOUL + Quentin AIRAULT + quentin.airault&vesoul.fr +59561 + LABITI + jean-marc pigeon + Virtualisation&iti.ca +59562 + Beatrice Community Hospital and Health Center + Ken huber + kahuber&bchhc.org +59563 + Diputación Provincial de Albacete + Alejandro J Delgado-Gomez + a.delgado&dipualba.es +59564 + Landratsamt Boeblingen + Patrick Strohm + p.strohm&lrabb.de +59565 + VDL Groep B.V. + Ron Peeters + r.peeters&vdl.nl +59566 + T-COM LLC + Aleksandr Burnatsev + asburnatsev&rosatom.ru +59567 + PACCAR Inc. + Koen Savenije + Koen.savenije&paccar.com +59568 + Ekip Telekom + Özgür Özdurhan + o.ozdurhan&ekiptelekom.com +59569 + Beijing Shengshi Gongying Communication Technology Co., Ltd + Han Lu + 30857203&qq.com +59570 + LMN Software Corp + John Day + John&lmnsoftwarecorp.com +59571 + Sibopt, LLC + Igor V. Breus + sales.itl&outlook.com +59572 + Exonetik + Jerome Marchand + jerome.marchand&exonetik.com +59573 + Jan F. Orth + Jan F. Orth + janforth&me.com +59574 + Solution 2000 + Richard Simard + richard.simard&groupesti.com +59575 + CMX Group + Nor Azizan Morban + cmxgroup&cmxcorp.group +59576 + CYMERTEK + Jason Freedman + iana&cymertek.com +59577 + Telecommunicatiebedrijf Suriname ( TELESUR ) + Wendell Weigle + wendell.weigle&telesur.sr +59578 + CYBERSECURITY.KR + donggeun lee + loon&cybersecurity.kr +59579 + Valence Group, Inc. + Terence Caravan + smp.valence&gmail.com +59580 + Skylane Optics + Patrick Beard + Patrick.beard&skylaneoptics.com +59581 + BotGuard OÜ + Denis Prochko + d.prochko&botguard.net +59582 + Shengli Technologies Co., Ltd + guhuanfeng + gu.huanfeng&shenglisoft.com +59583 + Ptavvs.Net + John Hall + ptavvsnet&gmail.com +59584 + MoeYork + Luo Yu + luoyu&york.moe +59585 + Luminar Technologies, Inc. + Adolfo L. Floer + adolfo.floer&luminartech.com +59586 + MAHESH CHANDRA + MAHESH CHANDRA + VIRUGEET74&GMAIL.COM +59587 + Magnolia Bank + Clint Phelps + network&magnoliabank.com +59588 + Laboratoire Méthodes Formelles + Dietmar Berwanger + dietmar.berwanger&lmf.cnrs.fr +59589 + Canopy Growth + Chris Rodgers + chris.rodgers&canopygrowth.com +59590 + NPO RTT LLC + Eugeny Zavizion + npo_rtt&hotmail.com +59591 + Logeo Seine + Denoix Kevin + kevin.denoix&logeo.fr +59592 + Take 2 Identity, Inc. + Bertold Kolics + bkolics&443id.com +59593 + Alereon, Inc + Andrew Kephart + it&alereon.com +59594 + Yunnan Nantian Electronics Information Corp.,Ltd. + Wu Hao + wuh&nantian.com.cn +59595 + Busse Design+Engineering GmbH + Roland Zmija + it-support&busse-design.com +59596 + Palantir Technologies + Eric Anderson + eanderson&palantir.com +59597 + Municipality of Central Huron + Cecil Coxen + it¢ralhuron.com +59598 + Elektrotechnik Nagel + Stefan Nagel + oid&as211635.net +59599 + James Law + James law + iana-pen&jameslaw.co.uk +59600 + Polestar Performance AB + Anders Runesson + cryptography.support&polestar.com +59601 + Hope Community Resources + Anthony Patarini + apatarini&hopealaska.org +59602 + Comprehensive Blood & Cancer Center + Karla Kim + kkim&cbccusa.com +59603 + Century Yuasa Batteries + Alexey Lobanov + alexey.lobanov&cyb.com.au +59604 + Statens geotekniska institut + Hans Jonsson + sgi&sgi.se +59605 + Andrea Perfetti + Andrea Perfetti + andrea&andreaperfetti.it +59606 + FAREVA + Julien Ricard + jricard.corporate&fareva.com +59607 + Tygerclan + Ben Tyger + ben.tyger&tygerclan.net +59608 + «HYTex» Limited Liability company («HYTex» LLC) + Sergey Mikhaylov + sm&hytex.ru +59609 + Gelarm LLC + Aleksandr Solomakha + info&gelarm.ru +59610 + Best Secret + Michael Szekely + cts-infrastructure&bestsecret.com +59611 + ITENERUM + Damian Cikowski + iana&itenerum.com +59612 + Stoll Berne + Matthew Clover + mclover&stollberne.com +59613 + Katzkin Leather + Paul Marcelonis + pmarcelonis&allsafeit.com +59614 + Miramar Consulting + Oscar Javier Perez + oscar.perez&miramar.consulting +59615 + General Electric (GE) HealthCare + Hasan Palaz + Hasan.Palaz&ge.com +59616 + Jonathan Foreman + Jonathan Foreman + svt540&gmail.com +59617 + Mulliken LLC + Joshua Mulliken + joshua&mulliken.net +59618 + FEV Europe GmbH + Ulrich Zimmer + zimmer_u&fev.com +59619 + Kühn Controls AG + Raúl R. Steimbach + raul.steimbach&kuehn-controls.de +59620 + Zhengzhou GEP Ecotech Co,. Ltd + Harris Yang + vip&hitoy.org +59621 + Aaron N Martin LLC + Aaron N Martin + aaron.n.martin&martindom.com +59622 + World Mobile Group Limited + Ed Guy + edguy&eguy.org +59623 + LeoNet Dariusz Leonarski + Dariusz Leonarski + dariusz&leonarski.pl +59624 + SRS Distribution Inc. + Rick Brewer + rick.brewer&srsdistribution.com +59625 + Country-Wide Insurance Company + Jayson Harrington + networksupport&cwico.com +59626 + ShenZhen Ubix Technology Co., Ltd + Yanli Zhang + zhangyanli&ubix.cn +59627 + WRP srl + Roberto Pagano + wrp&wrp.it +59628 + Confidence Management Ltd + Braydn Genik + bgenik&fwsgroup.com +59629 + Grand River Hospital + Rob Parnell + rob.parnell&grhosp.on.ca +59630 + TCNEWCO + Marcus Oh + marcus.oh&ey.com +59631 + Aoife Róisín Finch + Aoife Róisín Finch + aoife.iana&finch.ink +59632 + KLS CONSTRUCCIONES + Daryl Trujillo + sistemas&klsconstrucciones.com +59633 + Joanand Kuharajasekaram + Joanand Kuharajasekaram + joanandk&joanand.ch +59634 + CenturionSign.eu + Mr. Simon Weidner + info¢urion.ovh +59635 + Kinemetrics + Christina Nunez + cn&kmi.com +59636 + Antenna Hungaria ZRt. + Zsolt Cser + cserz&ahrt.hu +59637 + Stichting NTR + Michel van der Zijden + netwerkbeheer&ntr.nl +59638 + Viking Global Investors + Nate Carta + ncarta&vikingglobal.com +59639 + GLORY Technology Limited Inc + Hong Xuheng + 9509238&163.com +59640 + zyxyhb info + bill lee + leebilly007&163.com +59641 + Nexpoint + Boyd Gosserand + netadmin&nexpoint.com +59642 + IMBEL - Industria de Material Belico do Brasil + Luiz Renault Leite Rodrigues + renault.fmce&imbel.gov.br +59643 + Symbiat Ltd + Derek Russell + info&symbiat.co.uk +59644 + URMAZI Networks INC. + David Lin + david.lin&urmazi.com +59645 + Global IT Consultancy + Kathryn Barney + office&synapse-it.com +59646 + SHENZHEN TENDA TECHNOLOGY CO;LTD + chenhongxiang + chenhongxiang&tenda.cn +59647 + PCI-SIG + Amanda Cruz + administration&pcisig.com +59648 + HRL Laboratories + Joseph Prokop + neteng&hrl.com +59649 + Coop Pank AS + Martin Paljak + martin.paljak&cooppank.ee +59650 + Neatframe LTD + Ivar Johnsrud + ivar&neat.no +59651 + Prometic Bioproduction Inc. + Yann Bourgault + y.bourgault&prometic.com +59652 + Division of Planning and Finance - National Electronic Authentication Centre + Khang Nguyen + kenshine0212&gmail.com +59653 + Enerkem + Enerkem IT + enerkem.it&enerkem.com +59654 + North Carolina State Highway Patrol - VIPER + D. Tucker Sizemore + tucker.sizemore&ncdps.gov +59655 + ISIhr, inc. + Adam Schildmeyer + aschildmeyer&stratus.hr +59656 + CATCH Power + Jason de Jong + jason&catchpower.com.au +59657 + CRIFST (China Research Institute of Film Science & Technology) + Zhang Xin + zhangxin&crifst.ac.cn +59658 + Nucleo S.A - Personal Paraguay + Nestor Cardozo + Nestor.Cardozo&personal.com.py +59659 + Storkship - Navegação, Trânsitos e Logística, SA + Iria Soares + iria.soares&horizon-view.pt +59660 + uit + huang wenhua + disandai&126.com +59661 + Germinet Sdn Bhd + Marn Chia + marn&germinet.com +59662 + Informacinės visuomenės plėtros komitetas + Sertifikatu Administratorius + cert&ivpk.lt +59663 + TRT-VERİM + Kaan Bayazıt + omerkaan.bayazit&trt.net.tr +59664 + Alpine Quantum Technologies GmbH + AQT Admin + oidadmin&aqt.eu +59665 + Sandhiguna + Gilang Mentari Hamidy + gilang&sandhiguna.com +59666 + Conseil National des Barreaux + Samuel Renard + s.renard-ext&cnb.avocat.fr +59667 + Fondation Campus Biotech Geneva + Benoit Dubuis + it&fcbg.ch +59668 + Mosaic Smart Data Limited + Nick Chadwick + nick&mosaicsmartdata.com +59669 + COMMON NET S.r.l. + Emanuele Altomare + emanuele&common-net.org +59670 + Sandoz AG + Rohit Babar + rohit.babar&novartis.com +59671 + STRATUM LABS S.A. + Agustín Matías Rodríguez + agustin.rodriguez&stratum-labs.com +59672 + DefProc Engineering + Patrick Fenner + contact&defproc.co.uk +59673 + Verisys Corporation + Ben Greene + it_operations+ianaoid&verisys.com +59674 + COROS Wearables, Inc. + Wangxiaohu + wangxiaohu&coros.com +59675 + Aquila Technology, LLC + Phil Tull + webmaster&aquilatech.com +59676 + Granaasen + Ole Peder Granaasen + granaasen&gmail.com +59677 + Skyview Group + Boyd Gosserand + netadmin&skyviewgroup.com +59678 + CDO LTD + Dan Oberg + iana.admin&cdo.xyz +59679 + ThreatKey, Inc. + Carlos Beltran + engineering&threatkey.com +59680 + Amoeso + Brandon Pan + brandon.pan&amoeso.com.tw +59681 + junchenghe + junchenghe + 598497820&qq.com +59682 + linki + Nikita Ivanov + nikita&linki.systems +59683 + Idelco + Dries Coppens + support.be&axians.com +59684 + Matthias Fulz + Matthias Fulz + mfulz&olznet.de +59685 + PK-PACS + G.W. Habraken + gw&taglio.com +59686 + UNIVERSITY HOSPITAL + Dorothy Seiler + Dorothy.Seiler&lhsc.on.ca +59687 + WOODSTOCK HOSPITAL + Dorothy Seiler + Dorothy.Seiler&lhsc.on.ca +59688 + ALEXANDRA HOSPITAL + Dorothy Seiler + Dorothy.Seiler&lhsc.on.ca +59689 + Four Counties Health Services + Dorothy Seiler + Dorothy.Seiler&lhsc.on.ca +59690 + LISTOWEL MEMORIAL HOSPITAL + Dorothy Seiler + Dorothy.Seiler&lhsc.on.ca +59691 + St. Joseph’s Health Care London + Dorothy Seiler + Dorothy.Seiler&lhsc.on.ca +59692 + South Huron Hospital + Dorothy Seiler + Dorothy.Seiler&lhsc.on.ca +59693 + St Thomas Elgin General Hospital + Dorothy Seiler + Dorothy.Seiler&lhsc.on.ca +59694 + Strathroy Middlesex General Hospital + Dorothy Seiler + Dorothy.Seiler&lhsc.on.ca +59695 + Tillsonburg District Memorial Hospital + Dorothy Seiler + Dorothy.Seiler&lhsc.on.ca +59696 + Wingham and district hospital + Dorothy Seiler + Dorothy.Seiler&lhsc.on.ca +59697 + Victoria Hospital + Dorothy Seiler + Dorothy.Seiler&lhsc.on.ca +59698 + Fisher College + Fisher IS + fisheris&fisher.edu +59699 + TeamSystem S.p.A. + Marco Scognamiglio + msc&bit4id.com +59700 + Calandrilli L Dotson + Calandrilli L Dotson + calandrillid&gmail.com +59701 + Mustola Timber Oy + Raine Koskinen + raine.koskinen&mustolatimber.fi +59702 + Anhui Shengjiaruiduo Electronic Technology Co., Ltd. + Pengcheng Zhu + 373747464&qq.com +59703 + IPVideo Corporation + Ken Blume + ipv_admin&ipvideocorp.com +59704 + Thomas Mack + Thomas Mack + toking&toking.de +59705 + Coeur dAlene Tribe + Network Admin + networkadmin&cdatribe-nsn.gov +59706 + Elk Valley Mining Corporation + Kevin Gould + kevin.gould&teck.com +59707 + Studio Wromo Marketplace + Iulian Ghepes + info.wromo&gmail.com +59708 + Thomas Bella + Thomas Bella + thomas&bella.network +59709 + Behnam Saki + Behnam Saki + behnam.saki2004&gmail.com +59710 + Sysdex AG + Gunnar Greiter + gunnar.greiter&sysdex.ch +59711 + Maricopa Community College District + Julie Morgenthal + julie.morgenthal&domail.maricopa.edu +59712 + Peter Zgraggen + Peter Zgraggen + peter&zgraggen.net +59713 + Iconoclasta Digital Endeavours + PKI Development Authority + developer&iconoclasta.co +59714 + Autodoc SE + Autodoc + it_de&autodoc.eu +59715 + Devialet + Alexandre ESSE + alexandre.esse&devialet.com +59716 + Hangzhou Asia Infrastructure Tech. Co., Ltd + Sunny Liu + sunny&aitc.net +59717 + Anhui Wantong Posts and Telecommunications Co.,Ltd. + Wang Jianguo + wangjianguo&ahwt.com.cn +59718 + Interconnect Services B.V. + Lars Hacken + l.hacken&interconnect.nl +59719 + Chengde TsingYao Network Technology Service Co., Ltd + JunQing Gu + tsnet&tsingyao.com +59720 + DotEvolve + Mohd Sadiq + mohd.sadiq&DotEvolve.co.in +59721 + SpecCityStroy + Maxim + msofronov&bk.ru +59722 + Jamui Hunt + Akshay Kumar + jamuihunt&gmail.com +59723 + nWise AB + Fredrik Andreasson + fredrik.andreasson&nwise.se +59724 + Schwester Euthymia Stiftung + Carsten Giehoff + hotline&ses-stiftung.de +59725 + Servicio de Administración de Rentas + Osman Moreno + omoreno&sar.gob.hn +59726 + Eric Wegert + Eric Wegert + eric.wegert&mailbyshuttle.net +59727 + iFD GmbH + Paul Scholz + paul.scholz&ifd-gmbh.com +59728 + City of Kamloops + Marco Lussetti + mlussetti&kamloops.ca +59729 + Max banka a.s. + IT infrastructure team + itinfrastructure&maxbanka.eu +59730 + DATATOM + Jonas Sun + sun.zhuofeng&datatom.com +59731 + opendoor + Thomas Constans + thomas&opendoor.fr +59732 + Skyhigh Security LLC + Skyhigh Security Customer Service Department + support&skyhighsecurity.com +59733 + Les Marches d'Aliments Naturels Tau + Andy Munungu + amunungu&marchestau.com +59734 + Ekopak + Vincent Devolder + vincent.devolder&profunctional.be +59735 + Antti Backman + Antti Backman + anttidantti&gmail.com +59736 + Lake Travis ISD + Dustin Zahradnik + zahradnikd<isdschools.org +59737 + Sunit Govind + Sunit Govind + govindsunit008&gmail.com +59738 + Jamtkraft AB + Torbjorn Widmark + torbjorn.widmark&jamtkraft.se +59739 + MindFuture ApS + Thomas Steen Rasmussen + oid&mindfuture.com +59740 + Ibrahim Issa Ali + Ibrahim Issa Ali + www.ibrahimmaiga2&gmail.com +59741 + BlueCoral Technologies + Matthew Yao + matthew.yao&bluecoraltech.com +59742 + STD + Marcelo Lopes Corrêa + marcelo&std.com.br +59743 + Catinfor + Catiano Carvalho + geral&catinfor.ao +59744 + krakn + Mickael Delannay + mickael&mykraken.fr +59745 + EYYES GmbH + Julian Eder + julian.eder&eyyes.com +59746 + Prokyber + Aleksei Karavaev + alexok997&gmail.com +59747 + Robert Cato + Robert Cato + saiwolf&swmnu.net +59748 + Teknotel Elektronik Müh. San. ve Tic. Ltd. Şti + Can Özçiftci + can.ozciftci&teknotel.com.tr +59749 + Deutsche Akkreditierungsstelle GmbH (DAkkS) + Susanne Kuch + susanne.kuch&dakks.de +59750 + Milwaukee Tool + Jason Kindler + jason.kindler&milwaukeetool.com +59751 + KREN(Korean Education Network) + ahn jin bum + kren&snu.ac.kr +59752 + Vanguard Packaging, LLC + Eric Steen + esteen&vanguardpkg.com +59753 + ZeroBase Energy, LLC + Sean Greenslade + sgreenslade&zerobaseenergy.com +59754 + SecTrail + Baris Solak + baris.solak&bntpro.com +59755 + Shahar nissinboim + Shahar Nis + Shaharnis&gmail.com +59756 + Department of Health and Social Care + Patrick Clover + patrick.clover&dhsc.gov.uk +59757 + Cybereason Inc. + Omri Manor + procurement&cybereason.com +59758 + DRK RDMH + Iwan Bingula + edv&rdmh.de +59759 + UNITEL, S.A. + Walter Ernesto + walter.ernesto&unitel.co.ao +59760 + Scientific and Technical Center of Unified Power System (https://www.ntcees.ru) + Eliseev Dmitrii + eliseev_d&ntcees.ru +59761 + NNIT Group A/S + Brian Lund Jensen (BLJE) + corp-it&nnit.com +59762 + CTM + scott wahlstrom + swahlstrom&kpmg.com +59763 + Harry-Brot GmbH + Roman Lang + roman.lang&harry.de +59764 + CLOUDETEER GmbH + Florian Stamer + fst&cloudeteer.de +59765 + Pridnestrovskiy Sberbank CJSC + Vitaliy Velikodniy + vitaliy&prisbank.com +59766 + Duxbury Networking + Tobie van Schalkwyk + tobie&duxnet.co.za +59767 + BITFIN Software Ltda. + Israel Aece + israel.aece&bitfin.com.br +59768 + Mertech LLC + Nikolov Dmitriy + nda9109&yandex.ru +59769 + Maryland State Retirement Agency + Brad Taylor + btaylor&sra.state.md.us +59770 + RENAL MEDICAL ASSOCIATES, LLC + andrew baddoo, md + renalmedical&gmail.com +59771 + Gergely Risko + Gergely Risko + gergely.risko&gmail.com +59772 + Nesecure Telecom PVT LTD + Shripad Rayewar + shripad&nesecure.net +59773 + RADTONICS AB + David Bridge + david.bridge&radtonics.com +59774 + Teyf Pardazan Spadana (TPS) Co. + Molood Mousavizadeh + m.mousavizade&teyfpardazan.ir +59775 + AB Gyllsjö Träindustri + Christofer Ohlsson + it&gyllsjo.se +59776 + Webloom S.r.l. + Paolo Conti + paolo.conti&webloom.it +59777 + Martin Johansson + Martin Johansson + it-avdelningen&tidaholm.se +59778 + Tiến Trần + Tiến Trần + tien.trantan&hcmut.edu.vn +59779 + INBOH DOOEL Skopje + Aleksandar Zorbovski + a.zorbovski&inbox.com.mk +59780 + PFALZKOM GmbH + Patrick Wageck + patrick.wageck&pfalzkom.de +59781 + The Dixon Group, INC. + Michael Bishop + mbishop&dixonvalve.com +59782 + Shenzhen Keliheng Electronics Co., Ltd + Handsome + rdhs&szklh.com +59783 + Lyons National Bank + Todd Juffs + tjuffs&bankwithlnb.com +59784 + Pluto Health + Seung Park + seung&pluto.health +59785 + Keisuke Tasaka + Keisuke Tasaka + hoge22hoge&gmail.com +59786 + Nema + Haukur Thor Bragason + htb&nema.fo +59787 + Papers AG + Alessandro De Carli + a.decarli&papers.ch +59788 + LOGOTEC Jerzy Dryndos + Slawomir Kulikow + kulikow&logotec.pl +59789 + ShenZhen PowerQak Newener Co.,Ltd + Shaojie Tang + tangsj&poweroak.net +59790 + Serrala Group GmbH + Sven Schmidt + it-global&serrala.com +59791 + Beijing Yahong Century Technology Co., Ltd + Xiaodan He + hexiaodan&act-telecom.com +59792 + Stirlitz Media + Grzegorz Podsiadlo + greg&stirlitzmedia.com +59793 + IPKO Telecommunications LLC + Faton Kurteshi + faton.kurteshi&ipko.com +59794 + ISS AG + Ulrich Bießenberger + ulrich.biessenberger&iss-ag.com +59795 + Carsten Goetzinger + Carsten Goetzinger + carsten.goetzinger&gmail.com +59796 + CardConnect + Jason Hane + jhane&cardconnect.com +59797 + NextBillion.AI + Liu Kai + kai&nextbillion.ai +59798 + RJM Energia + Felipe dos Santos + fss007&gmail.com +59799 + Slican sp. z o.o. + Czesław Noga + c.noga&slican.pl +59800 + Ville d'Esch-sur-Alzette + Gregory Sottiaux + Gregory.Sottiaux&villeesch.lu +59801 + IFSULDEMINAS + Marcio Prado + marcio.prado&ifsuldeminas.edu.br +59802 + Total Quality Logistics + Michael Domer + mdomer&tql.com +59803 + Beijing Yahong Century Technology Co., Ltd + Xiaodan He + hexiaodan&act-telecom.com +59804 + LOV Telecomunicaciones SAS + José Galán + josegalan&lov.com.co +59805 + Paul Mairinger + Paul Mairinger + mairingerpaul&gmail.com +59806 + Firmafy Soluciones Tecnológicas SL + Wenceslao Criado Báez + wence.criado&firmafy.com +59807 + Technix d.o.o. + Ziga Terdic + technix&siol.net +59808 + MiWire Aps + Jesper Rhode Andersen + jesper&miwire.net +59809 + Starchild Systems + Ambre Bertucci + ambre&starchild.systems +59810 + MailRoutingService + Jeremy Liteky + jeremy&mailroutingservice.com +59811 + Wuxi Gongbi Quanshu Network Co., Ltd. + Department of Technology and Site Operation + siteoperator&qiuwen.org +59812 + Nexus Pharmaceuticals + Bart Sudol + bsudol&nexuspharma.net +59813 + Levy Kaufmann-Kohler + Pascale Bergstrom + administrateur&lk-k.com +59814 + Alpsnet + Pierre Martin + it&alpsnet.io +59815 + Innomentarium + Angelos Fylakis + angelos.fylakis&innomentarium.fi +59816 + Konekto IT Solution + Predrag Rajicic + admin&konekto.rs +59817 + VotingWorks + Ben Adida + ben&voting.works +59818 + SnatchDreams + Paul P Joby + paulpjoby&snatchdreams.net +59819 + HR Duo + Sean McLaughlin + sean.mclaughlin&hrduo.com +59820 + CEMA Ltd + Ravi Manian + rmanian&cemaltd.co.uk +59821 + Neways Technologies BV + Dennis Engbers + dennis.engbers&newayselectronics.com +59822 + Versorgungsbetriebe Hann. Münden GmbH + Jan Däumichen + daeumichen&versorgungsbetriebe.de +59823 + Michael Hyde + Michael Hyde + me&michaelhyde.net +59824 + crifst + zhangxin + zhangxin&crifst.ac.cn +59825 + DAS Environmental Expert GmbH + Henrik Grossmann + iana-pen&das-ee.com +59826 + AIA New Zealand + Lukaz Sobko + lukaz-aia&comadot.net +59827 + Efficture AB + Thomas Svensson + thomas.svensson&efficture.com +59828 + Payment Alliance International + Michael Jung + mike.jung&gopai.com +59829 + AO "Nacional'naja nerudnaja kompanija" + Alexey Imenkov + nnk.it&nnk.ru +59830 + Mapo + James Tsang + it&mapo.io +59831 + CSSSPNQL + Vincent Tapin + vtapin&cssspnql.com +59832 + Ideamatrix + John Thompson + iana-pen&ideamatrix.co.uk +59833 + Asha Enterprises + MITCHELL BUSSARD + mitchell.bussard&gmail.com +59834 + BTS LABS + Anıl Ülgen + anil.ulgen&btslabs.ai +59835 + LAYER8 DEFENSE TECHNOLOGIES + Aaron Reilly + AARON&L8DT.COM +59836 + Cellcomm Solutions Limited + Prakash Mlavil Rajan + prakash&cellcommsolutions.com +59837 + David Emmett + David Emmett + licensing&emmett.id.au +59838 + Medical Intertrade d.o.o. + Antonio Matijašec + informatika&medical-intertrade.hr +59839 + Fabio Bettiol + Fabio Bettiol + informaticapro&coceder.org +59840 + Asociación de Autoridades Ancestrales Territoriales Nasa Çxhãçxha + Juan Diego Yasno + sistemas.asocabildos&tierradentro.co +59841 + Wojskowy Instytut Medyczny - PIB + Piotr Murawski + informatyka&wim.mil.pl +59842 + QuestNet + Jan Quest + admin&questnet.eu +59843 + Tortuga AgTech + Michael Witkowski + mike.witkowski&tortugaagtech.com +59844 + Thibaud + Thibaud Couchet + contact&thibaudcouchet.fr +59845 + Orlando L. Antonio + Orlando L. Antonio + lando.antonio2&gmail.com +59846 + Bechtle Nürnberg Cloud + Philipp Butterhof + philipp.butterhof&bechtle.com +59847 + Creativagenten + Hubertus Buchinger + hb&creativagenten.de +59848 + Michael Hörauf Maschinenfabrik GmbH & Co. KG + IT-Abteilung HÖRAUF + it&hoerauf.com +59849 + Profideo + Alban Duval + aduval+iana&profideo.com +59850 + Golem Factory GmbH + Przemyslaw Rekucki + admin&golem.network +59851 + Healthy IT, Inc. + Scott Sanford + scott&myhealthyit.com +59852 + TBK Bank, SSB DBA TriumphX + Jeremy Korell + jkorell&tbcap.com +59853 + Grey Bruce Health Services + Jamie Page + jpage&gbhs.on.ca +59854 + Karkinos Healthcare Private Limited + Raja Sekhar Kommu + rajs&karkinos.in +59855 + CCSMEC + LanGao + gaolan&ccsmec.com +59856 + SILAE + Gabriel GIL + ext.gabriel.gil&silae.fr +59857 + TSImaging Healthcare + Rex Chen + rdservice&tsimaging.net +59858 + Swenetters + Philip Sarmiento + gupez&live.se +59859 + Ziosoft, Inc. + Shusuke Chino + itsupport&zio.co.jp +59860 + David Andrew Brende + David Brende + brendedavid&gmail.com +59861 + Zweken + Amin Bahreini + aminn&engineer.com +59862 + The Downstairs Attic + Peter Van Hemert + hunterkiller2011&gmail.com +59863 + Hotell Edström AB + Andreas Dahlberg + andreas.dahlberg&bjurtrask.se +59864 + HDS, Inc + HDS IT Department + it_dept&hdsdrivers.com +59865 + NSW Rural Fire Service + Stephen Mason + servicedesk&rfs.nsw.gov.au +59866 + Centralne Operacije + Dzenan Muftic + dzenan.muftic&ceop.ba +59867 + JP BH Pošta d.o.o. + Haris Kozica + haris.kozica&posta.ba +59868 + Buska + Ken Buska + kbuska&gmail.com +59869 + HELIOS TECH + ARTURO SALAS FLORES + asalas.rwc&gmail.com +59870 + Smitty van Bodegom + Smitty van Bodegom + oid-contact&iter.ca +59871 + mikepiety.com + Michael R Piety + mrp&mikepiety.com +59872 + Frontier Developments Plc + Josh Purcell + JPurcell&Frontier.co.uk +59873 + Republic of Turkey General Directorate of Highways + Yalçın Özer + yozer2&kgm.gov.tr +59874 + Thueringer Rechnungshof + S. Baerwolf + stephan.baerwolf&trh.thueringen.de +59875 + ClinFlows + Jean-François Burr + cto&clinflows.com +59876 + AlmaLinux OS Foundation + Jonathan Wright + cloud-infra&almalinux.org +59877 + Cornelis Networks, Inc. + Gunnar K. Gunnarsson + gunnar.k.gunnarsson&cornelisnetworks.com +59878 + Powertech + Winston Lee + winston&power-tech.com.tw +59879 + Almonte General Hospital + Jamie Page + jpage&gbhs.on.ca +59880 + Orillia Soldiers Memorial Hospital + Jamie Page + jpage&gbhs.on.ca +59881 + Hanover and District Hospital + Jamie Page + jpage&gbhs.on.ca +59882 + Muskoka Algonquin Healthcare + Jamie Page + jpage&gbhs.on.ca +59883 + South Bruce Grey Health Centre + Jamie Page + jpage&gbhs.on.ca +59884 + William Smith + William Smith + macdaddy2smooth&gmail.com +59885 + KNS IT + Christian Tintrop + christian.tintrop&kns-it.de +59886 + Mediabox EIRL + Michael Epstein Jiménez + mepstein&mediabox.cl +59887 + Microsoft Mixed Reality + Mike Poulson + mpoulsonµsoft.com +59888 + DIAMOND ENERGY CONTROL SYSTEMS PTY LTD + Zohair Hassan + zhassan&diamond-energy.com +59889 + Mark Keating + Mark Keating + mark&the-keatings.com +59890 + Argotech Co., Ltd. + Shinichi Tokita + iana&argotech.jp +59891 + Baltic Institute of Advanced Technology + Robertas Urbutis + security&bpti.eu +59892 + Denomas Denetim Otomasyon + Tolga Karatas + tolga.karatas&denomas.com +59893 + ZhangZexin + ZhangZexin + zhangzexin&usr.cn +59894 + LBS Westdeutsche Landesbausparkasse + Tim Lissel + tim.lissel&lbswest.de +59895 + DOXIO + Mohamed LAIRECHE + mohamed.laireche&doxio.com +59896 + NTS LLC + Vladimir Zinchenko + info&mwnts.ru +59897 + Anothermouse + Peter Edmond + iana_oid&anothermouse.com +59898 + xnybre.net + Daniel Kalør + iana&xnybre.net +59899 + Sebastian Sams + Sebastian Sams + iana-contact&a-sams.at +59900 + Starter Teck + Dee Deans + Info&starterteck.com +59901 + Bizland + Juan Manuel Lens + juan.lens&bizland.tech +59902 + Haroldo Banzoli Filho + Haroldo Banzoli Filho + engepaengenharia&gmail.com +59903 + Jinan USR IOT Technology Limited + Junwu Cao + xiaojun9922&163.com +59904 + S.C. Global Top Systems s.r.l. + VASILIU Bogdan + meteo.consultancy&gmail.com +59905 + Certutil + Tiago Zacchello + pki&certutil.com.br +59906 + Universiti Sultan Zainal Abidin (UniSZA) + Nik Mohd Imran + nik&unisza.edu.my +59907 + Alex Wilson + Alex Wilson + alex&cooperi.net +59908 + Truesec, Inc + Tim Davis + tim.davis&truesec.com +59909 + Hub One SA + GAMOT Cédric + iana&hubone.fr +59910 + RedMatter Solutions + Kiek Choeung + kiek.choeung&redmattersolutions.com +59911 + 3Ti + Gilles Tremblay + info&3ti.ca +59912 + OCELLOTT ENGENHARIA LTDA + Luiz Claudio Sampaio Ramos + sampaio&ocellott.com +59913 + Magic Trucking LLC + Dovirs S Williams + dovirs&gmail.com +59914 + Rexel Developpement SAS + Pablo Anon + pablo.anon&rexel.com +59915 + Carlos Roque + Carlos Roque + carlos.roque&tutanota.com +59916 + Schwarzer Milan + Philipp Lieb + philipp.lieb&schwarzer-milan.eu +59917 + Philipp Lieb + Philipp Lieb + philipplieb8&gmail.com +59918 + West Linn-Wilsonville School District + Khanh Duong + duongk&wlwv.k12.or.us +59919 + Thomas Katholnig + Thomas Katholnig + iana&katholnig.net +59920 + IndigoCare + Dennis Busselen + dennis.busselen&indigocare.com +59921 + California Coast Physicians, Inc. + Elvia Rhoades + erhoades&californiacoastphysicians.org +59922 + KIDZ Medical Services + Emilie Martinez + ContactUs&kidzmedical.com +59923 + Shenzhen Megarevo Technology Co., Ltd. + Guo Sheng Long + guoshenglong&megarevo.com.cn +59924 + Keith Lee Hong Sun + Keith Lee Hong Sun + keith.lee&global.ntt +59925 + NOC Network & IT-Services e.U. + Jan-Erik Helge Redl + jan.redl&noc.eu +59926 + SchoolsFirst Federal Credit Union + Brennen Wheelock + bwheelock&schoolsfirstfcu.org +59927 + Alkaloid AD + Dame Malov + dmalov&alkaloid.com.mk +59928 + EVERON ENERGY SYSTEMS PVT. LTD. + AJAY SABHARWAL + MKTG&EVERON.IN +59929 + Deloitte China + Felix Li + felixli&deloitte.com.cn +59930 + b2e.cloud + Michael Newiger + michael.newiger&b2e.cloud +59931 + Fachhochschule Nordwestschweiz + Patrick Zumstein + it-infrastructure.services&fhnw.ch +59932 + Xuan Khai Tran + Xuan Khai Tran + xktran&gmail.com +59933 + Firscom + eungoo seo + dev&firscom.co.kr +59934 + Jiansong Yang + Jiansong Yang + snmp&yangjiansong.com +59935 + Matthew Grant + Matthew Grant + matt&mattgrant.net.nz +59936 + BaseBit + Laisky Cai + iana-bbt&laisky.com +59937 + Nij Smellinghe + Robin Kluit + systeembeheer&nijsmellinghe.nl +59938 + IDeTRUST GmbH + Albertus Pretorius + a.pretorius&toennjes.com +59939 + BMK Group GmbH & Co. KG + Stefan Paintner + stefan.paintner&bmk-electronics.de +59940 + Sussex Community NHS Foundation Trust + Paul Shipperley + paul.shipperley&nhs.net +59941 + Alexey Saidov + Alexey Saidov + Alex8712a&mail.ru +59942 + MyAVR.ru + Kotitsyn Vladimir + workpage&mail.ru +59943 + Legacy Medical Management LLC + Barrett Pollard + barrett.pollard&legacyllc.org +59944 + Third Helix Technology Inc + Barrett Pollard + barrettp&thirdhelix.com +59945 + P&K Equipment Inc + Barrett Pollard + bpollard&pkequipment.com +59946 + Identiv + Barnaby Flint + bflint&identiv.com +59947 + Viettel Telecom + Vu Xuan Duong + duongvx&viettel.com.vn +59948 + Institut für Mathematik der Universität Würzburg + Florian Möller + fmoeller&mathematik.uni-wuerzburg.de +59949 + Kentox Consulting + Kenneth Swärd + kenneth.sward&kentox.se +59950 + ziwig + Omar Mrani + omrani&ziwig.com +59951 + Thibaut Mouly + Mouly Thibaut + thibaut&d-mouly.fr +59952 + Ubiq Systems Pty Ltd + Kenneth Acason + admin&ubiqsystems.com +59953 + Graphiant Inc. + Mosaddaq Turabi + mosaddaq&graphiant.com +59954 + Laisky + Laisky Cai + iana&laisky.com +59955 + Sofinet LLC + Vitaliy Siver + vsiver&sofinet.ru +59956 + Overon + Mario Manzano + mario.manzano&overon.es +59957 + United Airlines Inc + Patrick Sexton + patrick.sexton&united.com +59958 + Bäckebrons Sågverk Aktiebolag + Stefan Gillberg + it&backebronssagverk.se +59959 + Onslow County Public Schools + David Sanbeg + david.sanbeg&onslow.k12.nc.us +59960 + Balungstrands Sågverk AB + Stefen Gillberg + admin&balung.se +59961 + Kemmler Baustoffe GmbH + Cihan Gueler + cihan.gueler&kemmler.de +59962 + Mjölby-Svartådalen energi + Cecilia Hogla + cecilia.hogla&tekniskaverken.se +59963 + Georg Luthardt-Gumbrecht + Georg Luthardt-Gumbrecht + admin+pen&familie-gumbrecht.de +59964 + École professionnelle artisanale et industrielle de Fribourg + Jérôme Frossard + jerome.frossard&edufr.ch +59965 + My Creative Space + Wojciech Weglinski + administrator&mycreativespace.pl +59966 + Matthews Swartz + Matthews Swartz + swartzm.za&gmail.com +59967 + BW-Spielbanken GmbH und Co KG + Joerg Schittenhelm + j.schittenhelm&bw-spielbanken.de +59968 + ProEsys srl + Massimo Marini + m.marini&proesystech.com +59969 + Sycai Medical + Javier García + j.garcia&sycaitechnologies.com +59970 + Quantum Xchange, Inc. + Quantum Xchange, Inc. + support&quantumxc.com +59971 + Kcrypt Lab + Kirill A. Korinsky + k&kcry.pt +59972 + Mana Monitoring + Zoltan Milaskey + zoltan&manamonitoring.com +59973 + CASS France + Roland Despinoy + roland.despinoy&cass.fr +59974 + CCC S.A. + Rafal Wisniewski + rafal.wisniewski&ccc.eu +59975 + Architectural Bureau А1 + Ildar Abubakirov + ildar&arbura.one +59976 + Sofia Markusfeld + Sofia Markusfeld + s.markusfeld9544&student.leedsbeckett.ac.uk +59977 + Airbus Helicopters + Gay Jonathan + jonathan.gay&airbus.com +59978 + Lindenmeyr International Ltd + Pamela Woodall + pwoodall&lindenmeyrinternational.com +59979 + Benegon Enterprises LLC + David Bender + dbender&benegon.com +59980 + Cellium Technologies + Michael Brutman + michaelb&cellium.net +59981 + MedSoft + Racila Florin + florin.racila&med-soft.ro +59982 + Hydes Corporation + Harrison Hydes + Harrison.Hydes&hydes.co.nz +59983 + VDM Metals GmbH + Philipp Verbnik (Marketing department) + philipp.verbnik&acerinox.com +59984 + TEHTRIS + Lucas Jiang + team_isp_nexus&tehtris.com +59985 + Max-Planck-Institute for Infection Biology + Ralf Traeger + traeger&mpiib-berlin.mpg.de +59986 + Central Texas Cancer Centers + Elizabeth Cruz + lcruz¢raltexascancercenters.com +59987 + Tsuda University Keisan Center + Akio Katagiri + infoadmin&tsuda.ac.jp +59988 + Henan Kunlun Technologies Co., Ltd. + Ali Mao + maoaliwy&126.com +59989 + Kembeddo + Krzysztof Olejarczyk + owner&kembeddo.pl +59990 + Bastionic B.V. + Ernst Lawende + ernstl&bastion365.nl +59991 + Dalton Johnson III + Dalton Johnson iii + dm343702nv&gmail.com +59992 + Christopher Kay + Christopher Kay + Christopher.Kay&uk.thalesgroup.com +59993 + Reinhard Vielhaber + Reinhard Vielhaber + snmp_enterprise&rvis.de +59994 + SAVINO SOLUTION S.P.A. - SOCIETA BENEFIT + Nicola Savino + nicola.savino&savinosolution.com +59995 + Billy Yudani + Billy Yudani + billy.yudani&gmail.com +59996 + Niket Labs + Niket Sharma + niket67&gmail.com +59997 + Technische Universität Bergakademie Freiberg + Dr. Andreas Kluge + ServiceDesk&tu-freiberg.de +59998 + ACIS Technology + Alex Moskalenko + pen&acis.ru +59999 + Gonzo Org. + Marc Pearson + gonzo&g0nz0.me.uk +60000 + Feuerwehr Gundelfingen + Daniel Andris + daniel.andris&feuerwehr-gundelfingen.org +60001 + GPSPATRON + Maksim Barodzka + mb&gpspatron.com +60002 + vNET Hosting + Donald Cowan + info&vnethosting.us +60003 + Zyell Solutions Corporation + Pedro Ting + pedro.ting&zyxel.com.tw +60004 + TecTake GmbH + Steffen Dürr + helpdesk&tectake.de +60005 + Yourizon + Richard Timmermans + richard.timmermans&yourizon.nl +60006 + AP Informatica + Salvatore Canciello + info&apinformaticasrl.it +60007 + SWEEN SAS + Tristan Pateloup + tristan&sween.fr +60008 + Federal Defenders of New York, Inc. + James Ward + NYS_Admin&fd.org +60009 + Zorus, Inc + Francarlos Fernandez + FFernandez&ZorusTech.com +60010 + joerk GmbH + Enrico Gusek + info&joerk-plattform.de +60011 + Fiserv Payment System + Fiserv Global Cyber Security Services Payment System + PKI.Services&fiserv.com +60012 + International Human Rights Commission + Wareesali Taibani Sayyed + wareesali7500&janparichay.gov.in +60013 + ACN OCI-GSUITE + Rhett Lee Martinez + rhett.lee.martinez&accenture.com +60014 + Chongqing Telecom + Luo Kun + cqtsac&chinatelecom.cn +60015 + AMPHITECH + JULIEN WEHRBACH + webmaster&hitech.fr +60016 + City Storage Systems + Onha Choe + onha.choe&cloudkitchens.com +60017 + Les Neiges d'Antan + Andrea Cavalli + iana.org&ridesoft.it +60018 + MaitriseTechnologique + Frédéric MONGE + fmonge&maitrise-technologique.com +60019 + FANUC America Corporation + FAC Admin + fac.admin&fanucamerica.com +60020 + Astoria IT Consulting + Oleg Schatoff + oleg&astoria-it.com +60021 + Nordic Wood Supply + Magnus Olovsson + magnus.olovsson&nordicwood.se +60022 + Fotios Loukos + Fotios Loukos + fotisl&gmail.com +60023 + Transalpine Deutsche Oelleitungs GmbH + Gottschlich, Frank + frank.gottschlich&tal-oil.com +60024 + Nasqueron + Sébastien Santoro + dereckson&espace-win.org +60025 + VAIO Corporation + OID Admin + oid-admin&vaio.com +60026 + Alabaster City Schools + Anthony Kingston + acsit&acsboe.org +60027 + LEEGOOD AUTOMATIC SYSTEMS. INC. + KAIHUNG HSIAO + kai_hsiao&leegood.com.tw +60028 + Neil Farr + Neil Farr + nfarr&acquiredigital.com +60029 + Digital Check Corp + Kevin Jennings + KJennings&DigitalCheck.com +60030 + NonpareilTech + Timothy Conner + info&nonpareiltech.com +60031 + JEFFREY WILLIAM LUNSFORD + JEFFREY WILLIAM LUNSFORD + admin&clearing.live +60032 + Sikorsky Financial Credit Union + Scott Posey + sposey&sikorskyfcu.org +60033 + Whiterabbit AI Inc + Daniel Cardoza + daniel&whiterabbit.ai +60034 + ZTD Training + Elton Hsu + info&ztdtraining.com +60035 + Wolfspyre Labs + Wolf Noble + iana&wolfspaw.com +60036 + FoamyCastle + Aaron Anthony Sollman + dev&foamycastle.com +60037 + bonprix Handelsgesellschaft mbH + IT-Operation + it-operation&bonprix.net +60038 + Hitachi Energy Automation & Communication + Janis Kruse + janis.kruse&hitachienergy.com +60039 + Andrews Property Group + Tom McCabe + tmccabe&andrewsonline.co.uk +60040 + Nine Consulting + Marjan Pataca + marjan&nine-consulting.hr +60041 + Procontrol Electronics Ltd. + Attila Kovacs + KAttila&procontrol.hu +60042 + Tems Security Services GmbH + Michael MEixner + michael.meixner&tems-security.at +60043 + Admiral Sportwetten GmbH + Emil Huber + emil.huber&admiral.at +60044 + Chris Dauksza + Chris Dauksza + chrisdauksza&gmail.com +60045 + GSB – Sonderabfall-Entsorgung Bayern GmbH + Heribert See + Heribert.See&gsb-mbh.de +60046 + Anger Clan + Bjørn Anger + bjoern&anger-clan.de +60047 + GENERAL BROADCAST + Guilain ACHARD + gachard&general-broadcast.com +60048 + NSLComm + Vadim Kotchergin + vadim&beetlesat.com +60049 + European Union Agency for the Space Programme + Aitor Alvarez Rodriguez + pki&euspa.europa.eu +60050 + WyreStorm Technologies Corp. + Nicholas Meers + nick.meers&wyrestorm.com +60051 + Cirrus Link Solutions + Chad Kienle + chad.kienle&cirrus-link.com +60052 + Matt Melling + Matt Melling + mattmelling&fastmail.com +60053 + APP SOLUTIONS + Olivier CLEF + oc&appsolutions.fr +60054 + Tecnosul + Daniel Brito + daniel.brito&grupotecnosul.com +60055 + Pert Telecom Solutions Pvt Ltd + Mitesh Vageriya + mv&pertsol.com +60056 + Amensolar Ess Co., Ltd. + Eric Fu + amensolaress&gmail.com +60057 + Thales UK Ltd + Robin Barker + coref.admin&uk.thalesgroup.com +60058 + Assumption College Kilmore + ICT Department + ict.dept&assumption.vic.edu.au +60059 + Lapplands + Marcus Fagervall + marcus.fagervall&lapplands.se +60060 + Consometers + Cyril Lugan + iana.org&cyril.lu +60061 + Bayerische Versorgungskammer + Sioukri oglou, Sioukri + sSioukri&versorgungskammer.de +60062 + Francis Augusto Medeiros-Logeay + Francis Augusto Medeiros-Logeay + r_f&med-lo.eu +60063 + Mosaic Primary Care Network + Jarrett Blachly + Jarrett.Blachly&mosaicpcn.ca +60064 + Goldilocks Tech Solution Pvt. Ltd. + Sarju Garg + sarju&goldilocks-tech.com +60065 + Hone Group, Inc + Neilson Smith + neilson.smith&honeus.com +60066 + Capella Controls + Ariel Garcia + ariel.garcia&capellacontrols.com +60067 + Sudipto Kumar barmon + Sudipto Kumar barmon + Sudiptokajol02&gmail.com +60068 + Karlborgs Elkontroll AB + Alexander Schmidt + alex&karlborgselkontroll.se +60069 + LeXtudio Inc. + Yang Li + support&lextudio.com +60070 + Mälby Gård AB, 556499-7525 + Rickard Lennartsson + Rickard&malbygard.se +60071 + Wiregrass Electric Cooperative + Clayton Howell + chowell&wiregrass.coop +60072 + Hologic + Nick Moscone + Nick.Moscone&hologic.com +60073 + Accu-Precision Tool and Gauge + Andrew Mueller + andrew.mueller&accu-precision.com +60074 + Caddell Construction + Heather Marchand + heather.marchand&caddell.com +60075 + Morpheus Space GmbH + Thomas Hartmann + neo&morpheus-space.com +60076 + Teleproject Srl + Diego Bianchi + dbianchi&teleproject.it +60077 + Stadt Kassel - Amt für Schule und Bildung + Markus Schulz + server-ksan&kassel.de +60078 + BEYOND THE SCOPE + Honorio Marín García + honorio&permisso.io +60079 + Pathagility + Mark McCuin + info&pathagility.com +60080 + Nice Threads, LLC + Tim Nash + tim&nicethreadsllc.com +60081 + Jonno Sanderson-Smith + Jonno Sanderson-Smith + jonnoss&gmail.com +60082 + Square Enix + Yasmin Kauser + yasmin.kauser&comms-care.com +60083 + Spt Arrow Net + Aleksandr Buryak + aburyak&zntr.ru +60084 + Alteryx Extensibility + Alteryx Extensibility Team + devex&alteryx.com +60085 + PGUM Srl + Jochen Platzgummer + jochen.platzgummer&pgum.eu +60086 + Northwest Hills Surgical Hospital + Gordon Pedley + gordon.pedley&scasurgery.com +60087 + Grifon + Grifon Admin + iana&grifon.fr +60088 + Opelousas General Health System + Jesse Folds + ITLeadership&opelousasgeneral.com +60089 + Stiftung Auffangeinrichtung BVG + Christian Nobbe + iana&aeis.ch +60090 + Lopi elektronika sp. z o.o. + Bartosz Ostrowski + bo&lopi-elektronika.pl +60091 + EntryPoint Networks, Inc + Devyn Herrick + dherrick&entpnt.com +60092 + Treasure Valley Hospital + Rachel Schaffner + Rachel.Schaffner&scasurgery.com +60093 + PAYAM KHOSHBAKHT + PAYAM KHOSHBAKHT + evqhcm&gmail.com +60094 + La France insoumise + Salomé Cheysson + site&lafranceinsoumise.fr +60095 + CEC Huada Electronic Design Co., Ltd. + Xinyu Wei + weixy&hed.com.cn +60096 + Wealden District Council + IT Helpdesk + ithelpdesk&wealden.gov.uk +60097 + OESSE + Niccolò Carnelos + ict&oesse.com +60098 + strudelline.net + James Andariese + iana-pen-admin&strudelline.net +60099 + Amazon Web Services Inc + Michael Nearing + nearinm&amazon.com +60100 + UNpkl + Yogesh Nagarkar + yogesh&yeshog.com +60101 + Synapse Product Development + Ian Johnson + ian.johnson&synapse.com +60102 + Luogu + Soha Jin + soha&luogu.org +60103 + AustroControl + Thomas Brunner + thomas.brunner&austrocontrol.at +60104 + Western Sydney Airport + Scott Dowd + cybersecurity&wsaco.com.au +60105 + Xinjiang Yingsheng Information Technology Co., Ltd + GaoHu + 12396218&qq.com +60106 + Beijing Dayu Technology Co.,Ltd + Wang Xinpu + wangxinpu&dayudpu.com +60107 + Select Medical + Brandon Burger + ldap.admins&selectmedical.com +60108 + Rocky Enterprise Software Foundation + Neil Hanlon + infrastructure&rockylinux.org +60109 + Arising Technology Systems Pty Limited + Ralph Holland + ralph&arising.com.au +60110 + Junnikkala Oy + Kalle Junnikkala + kalle.junnikkala&junnikkala.com +60111 + Brickdoc HK Holding LTD + Ding Li + ding&pleisto.com +60112 + ASTELCO Systems GmbH + Michael Ruder + reg+pen&astelco.gmbh +60113 + Aires LLC + Mrinal Prasad + sysadmin&aires.com +60114 + Beijing YiShengChuangQi Technology Co., Ltd + LingLing Liu + 1613903985&qq.com +60115 + eCert + Praneet Rai + praneet&rai.email +60116 + eCert Corp. + Praneet Rai + corporate&rca.nogc.ca +60117 + Nane OON GlobalCom Corporation + Praneet Rai + corporate&rca.nogc.ca +60118 + INSERCOMHAI INTERNET SERVICE & COMMUNICATION LTDA + Neptune Duval + ADM&insercomhai.org +60119 + Tiuxo + Brian Clemens + brian&tiuxo.com +60120 + Konvekta AG + Samuel Hübl + des&konvekta.com +60121 + Surgical Hospital of Oklahoma, LLC + Tanisha Peterson + tpeterson&surgicalhospitalok.com +60122 + INFOGRID d.o.o. + Goran Petrović + admin&infogrid.hr +60123 + hefraTEC GmbH + Ha-Er Frank + info&hefratec.de +60124 + Larraby Electrónica y Comunicación, S.L. + Óscar Rived + oscar&larraby.com +60125 + RL Online Media + Rasmus Lauridsen + mail&rl-online-media.dk +60126 + AMAG Group AG + Jonas Stalder + jonas.stalder&amag.ch +60127 + AMAG Corporate Services AG + Jonas Stalder + jonas.stalder&amag.ch +60128 + Astelcom + Jérôme BEAREL + iana&astelcom.fr +60129 + NCube Hosting Consultants + Carl Staub + carl.staub&ncubehost.com +60130 + Plutometry Corporation + Guilherme Santos + hostmaster&plutometry.com +60131 + AGL Energy Limited + Isaac Rosado + irosado&agl.com.au +60132 + Surahammars Bruks AB + Jörgen Andersson + teknik&smdab.se +60133 + Septimiu Fabian Mare + Septimiu Fabian Mare + septimiu&me.com +60134 + Nexim Security Solutions + Septimiu Fabian Mare + septimiu&neximsecurity.com +60135 + Briggs & Stratton + Mark Ciszek + ciszek.mark&basco.com +60136 + Agima + Egor Braguntsov + e.braguntsov&agima.ru +60137 + Proba + Administrator + info+iana&proba.com +60138 + Granby Consulting LLC + Mike Granby + mikeg&mikeg.net +60139 + IETHCOM Information Technology Co., Ltd. + Pei Hao + simonhao&iethcom.com +60140 + NIFT (Pvt) ltd. + Imran Ashraf + imran.ashraf&nift.pk +60141 + Scott Corio + Scott Corio + scott.corio&gmail.com +60142 + 3A Systems, LLC + Valery Kharseko + vharseko&3a-systems.ru +60143 + Forney ISD + Joshua Herron + jeherron&forneyisd.net +60144 + Swift Navigation Incorporated + Jason Mobarak + jason&swift-nav.com +60145 + P1 Security + BONAMY Rémi + rby&p1sec.com +60146 + Vladimir Kleusov + Vladimir Kleusov + kleusov&gmail.com +60147 + logturm + Tobias Dittmann + hello&ditsche.dev +60148 + 北京兰云科技有限公司 (Beijing Lanyun Technology Co., Ltd.) + 北京兰云科技有限公司 (Beijing Lanyun Technology Co., Ltd.) + info&lanysec.com +60149 + Gireve + Rives Jean-Marc + jean-marc.rives&gireve.com +60150 + Elite Tile & Services + Richard Heatherington + masterjourneyman&elitetile.net +60151 + Kesseböhmer Holding KG + Christian Riedel + c.riedel&kesseboehmer.de +60152 + VentureOne + Septimiu Fabian Mare + septimiu.mare&tii.ae +60153 + IVM Zrt + Róbert Almás + robert.almas&ivm-micrologistics.com +60154 + Amantya Technologies Private Limited + Ankur Bharadwaj + ankur.bharadwaj&amantyatech.com +60155 + IHI Terrasun Solutions + Lyonell Keplar + lkeplar&ihiterrasun.com +60156 + ASSOCIATION VIGIK + Pascal MARIN + pascal.marin&laposte.fr +60157 + G2 Ops Inc + Cody Gifford + cody.gifford&g2-ops.com +60158 + GiffTech Inc. + Cody Gifford + codygifford&gifftechinc.com +60159 + Dimitris Maroulidis + Dimitris Maroulidis + security&dimitrismaroulidis.com +60160 + 深圳市菲菱科思通信技术股份有限公司 (Shenzhen Phoenix Telecom technology Co.,Ltd) + 汪精武 (Wang Jingwu) + jingwu.wang&phoenixcompany.cn +60161 + Guangzhou Sanjing Electric Co., Ltd. + Ziqing Li + ziqing.li&saj-electric.com +60162 + Mantis Software Company + Mantis System Admin + sistem&mantis.com.tr +60163 + Beijing Aodun Software Co., Ltd. + Zhao Feilong + zhaofeilong&aodun.com.cn +60164 + RBS LLC + Tatiana Prokofeva + rbs_tech&satel.org +60165 + Shenzhen Hi-Net technology Company Limited + Graeme Song + graeme&szhi-net.com +60166 + GBITIS Limited + Gary Burns + gary.burns&gbitis.com +60167 + Bona Electronic Solutions + Laurence Fourie + laurence&basixgroup.co.za +60168 + RRX Industries, Inc. + Randolph Sommerfeld + iana&rrx.ca +60169 + Curvalux Ltd. + Niv Magen + niv.magen&curvalux.com +60170 + Tritech Group limited + David Rogers + David.Rogers&tritechgroup.co.uk +60171 + Medx Connect Pty Ltd + Dalibor Frtunik + dalibor.frtunik&sorsix.com +60172 + John M. Barnwell, M.D., PLLC + Heidi Simonato + jbarnwell01&gmail.com +60173 + POLYWELL COMPUTERS INC. + JENNY LIN + jennylin&polywell.com +60174 + Insight Operations + Dan Tembe + dtembe&insightops.com +60175 + Shenzhen Growatt New Energy Co., Ltd. + Rongsen Li + rongsen.li&growatt.com +60176 + Technological Ray GmbH + Daniel Eisenschmidt + daniel.eisenschmidt&hotmail.de +60177 + Stanisław Skowron + Stanisław Skowron + ss181292&wp.pl +60178 + Vade + Florian Coulmier + florian.coulmier&vadesecure.com +60179 + EIZO Rugged Solutions Inc. + Christopher Fadeley + chris.fadeley&eizo.com +60180 + Owen Sound Medical Imaging + Jamie Page + jpage&gbhs.on.ca +60181 + cloudtech GmbH + Michael Newiger + office&cloudtech.global +60182 + THEMIS + Alain COCCONI + a.cocconi&themis.nc +60183 + Michael Hill International Limited + Chris Sword + chris.sword&michaelhill.com.au +60184 + PACIFIC PEERING + Alain COCCONI + cocconi&pacific-peering.com +60185 + Staffwerke GmbH + Lucie Nabet + iana&staffwerke.de +60186 + lugges + Lukas Adrian Kron + l.kron&lugges.eu +60187 + Guangzhou Yuhong Technology Co.,Ltd. + He Jinliang + hejl&gzyhtech.com +60188 + Foqus Technologies + Parisa Saat + parisa.saat&foqus.technology +60189 + Kreisverwaltung Recklinghausen + Ludger Berse + it-support&kreis-re.de +60190 + SER Interact Digital AG + Tae-Hoon Kwon + sch-icsave&sergroup.com +60191 + Shanghai BICFANTAS Technology Co., Ltd. + Jacky Hua + jacky.hua&bicfantas.com +60192 + William Bissett + William Bissett + williebissett4&gmail.com +60193 + wuthost + Walder Fyote + walderf&mailbox.org +60194 + Education and Research Library of Pilsen Region + Stanislav Teplik + teplik.stanislav&svkpk.cz +60195 + Bischof + Klein SE & Co KG + Gowshan Santhirapalan + gowshan.santhirapalan&bk-international.com +60196 + TimeTell B.V. + Daniel Knippers + daniel.knippers&timetell.nl +60197 + ECAN + YIN ZHANG + admin&ecan-tech.com +60198 + redhax + Freddy Grande + Freddy.Grande&redhax.com +60199 + Winckworth Sherwood LLP + Dan Wright + dwright&wslaw.co.uk +60200 + A.R.T.I.S. + Constantinos Papadamou + constantinos&justartis.com +60201 + vexo d.o.o. + Blaž Bregar + blaz&vexo.si +60202 + Global Infrastructure + Jean Lubatti + jean.lubatti&worldline.com +60203 + FLEXO + Grzegorz Kosicki + grzegorz.kosicki&flex-net.com.pl +60204 + ekotip ID s.r.o + Petr Ledvina + ledvina&ekotip.cz +60205 + Spenego Software, LLC + MUHAMMAD MUQUIT + directors&spenego.com +60206 + PortByte Technologies + Salvatore Cahyo + salva&dsgroupmedia.com +60207 + FirstFire Productions + Doug Leece + dleece&firstfiretech.ca +60208 + IP Techniek B.V. + Joost van de Weijer + joost&iptechniek.nl +60209 + Ucampus + Jose Miguel Garrido + sys&ucampus.cl +60210 + Expeto Wireless + Terje Strand + support&expeto.io +60211 + Codify Pty Ltd + David Connors + david&codify.com +60212 + SOUTHWEST WYOMING WIRELESS CONNECT LLC + NEAL RAYMOND VREELAND + admin&swwwc.org +60213 + MsgQ Technologies Services Private Limited + SIVA KUMAR KALAMRAJU + sivakumar&msgq.in +60214 + QuiltMC + Ambre Bertucci + ambre&quiltmc.org +60215 + ML Network DV-Systeme, Netzwerk & Kommunikation GmbH + Patrick Terlisten + p.terlisten&mlnetwork.de +60216 + Joe's + José Alisson Valério + joe.alisson&gmail.com +60217 + Cytracom, LLC + Jonathan Buchanan + jbuchanan&cytracom.com +60218 + LI AO + LI AO + liaomd&work2.liao.media +60219 + Adam Turner + Adam Turner + standingrockllc&gmail.com +60220 + US DEPARTMENT OF SPECIAL PROJECTS AND UNIFIED RESPONSE SERVICES (US-SPURS) + US SPURS OFFICE OF INFORMATION TECHNOLOGY + admin&spurs.gov +60221 + Efo AB + Tom Honig + tom.honig&bricco.se +60222 + Shenzhen Lancho Technology Co., Ltd. + Chang Feng + changf&lanchotech.com +60223 + cunova GmbH + Alexander Wolfshohl + a.wolfshohl.extern&sysback.de +60224 + National Information Technology Development Agency + Ahmed Mustapha Yahuza + amustapha&nitda.gov.ng +60225 + Oscar Alonso Toledo + Oscar Alonso Toledo + oscar&alonsotoledo.nom.es +60226 + AlphaESS + Bryant Zhu + bryant.zhu&alpha-ess.com +60227 + Data Action Pty Ltd + Ian Bedson + ibedson&da.com.au +60228 + MicroMade + Grzegorz Jaruszewski + jgregµmade.pl +60229 + Supercloud (Beijing) Technology Co., LTD + Tangwentao + petertang77&outlook.com +60230 + DFW Oil & Energy, LLC + Andrew McCullough + it.support&dfwoilenergy.com +60231 + cyonex GmbH + Fred Tate + f.tate&cy1x.net +60232 + Steven Garcia + Steven Garcia + garcia.steven.t.inet+iana&gmail.com +60233 + State Library of Queensland + Mark E. Thompson + Mark.Thompson&slq.qld.gov.au +60234 + AZ Technology Pte Ltd + Jackie Cheng + jackie.chengbing&azt.com.sg +60235 + Dubois & Dépraz S.A. + Matthias Linder + it&dubois-depraz.ch +60236 + TNC Consultant Group + Paul Co + paul.co&tncgrp.com +60237 + GhangorCloud + Shakuntala Addepally + shakuntala&ghangorcloud.com +60238 + Bürkert Werke GmbH & Co. KG + Dr. Udo Gais + licences.eu&burkert.com +60239 + Yardmasters Lawn Care Services LLC + Christopher Spivey + Christopher&cscoolingllc.com +60240 + Yurii Kolosov + Yurii Kolosov + yuriy&kyf.com.ua +60241 + cesium.cz + Matyáš Vohralík + it&cesium.cz +60242 + Mesto Dubnica nad Váhom + Dusan Misovec + spravait&dubnica.eu +60243 + Libre IT + Hugo Thunnissen + iana&libre-it.nl +60244 + USGS Hawaiian Volcano Observatory + Thomas-Jon Hoomanawanui + thoomanawanui&usgs.gov +60245 + AITIA International Zrt + Laszlo Kovacs + lkovacs&aitia.ai +60246 + Andy Lo-A-Foe + Andy Lo-A-Foe + andy.loafoe&gmail.com +60247 + Luxor Technology Corp + Eddie Wang + eddie&luxor.tech +60248 + AmNetwork + AmNetwork ICT CTO + administrator&amnetwork.it +60249 + Agatel Ltd + Rayhan Madeni + ray&agatel.co.uk +60250 + Swissgrid + Monica Zimmermann + monica.zimmermann&swissgrid.ch +60251 + VuNet Systems Private Limited + Bharat Joshi + info&vunetsystems.com +60252 + Quantum Optics Jena GmbH + Lorenz Josten + l.josten&qo-jena.com +60253 + Rene Baumgarten + Rene Baumgarten + zan1&gmx.de +60254 + ALL Tecnologias + Allexander Caneschi + allexander&alltecnologias.com.br +60255 + Pfeifer Holding GmbH + IT department + pki&pfeifergroup.com +60256 + Think Freely Consulting + Neil Horman + nhorman&think-freely.org +60257 + LITA S.r.l. + Andrea Lisa + andrea.lisa&lita.eu +60258 + STATE ENTERPRISE “AIR TRAFFIC SERVICES AUTHORITY” (BULATSA) + Emil Kostadinov + administrator&bulatsa.com +60259 + AUTMES s.r.o. + IT Department + it&autmes.cz +60260 + Maker Systems + Sjef van Gool + info&maker.systems +60261 + Methinks software SL + Carlos Crespo + systems&methinks.es +60262 + Stella Freyju + Stella Freyju + admin&freyju.me +60263 + Raiys GmbH + Prof. Dr. med. Stephan Schmitz + info&raiys.de +60264 + Fuzzylabs private limited + Sumayya Muradalisha Arab + ameerali&fuzzylabs.in +60265 + Lucifer Rigby + Shaun Rigby + shaunjeffreyrigby&gmail.com +60266 + Siemens Energy AG - Control + Dr. Junghans, Helge + helge.junghans&siemens-energy.com +60267 + CEPTRO.br - Centro de Estudos e Pesquisas em Tecnologia de Redes e Operações + Henrique de Moraes Holschuh + henrique&nic.br +60268 + DIVVAD Dawid Banaszewski + Dawid Banaszewski + kontakt&divvad.pl +60269 + HIMIKO sp. z o.o. + Michał Półrolniczak + iana&himiko.pl +60270 + Instnt Inc. + Justin Kamerman + justin&instnt.org +60271 + LifeWorks NW + Lora Kerr + Lora.Kerr&lifeworksnw.org +60272 + Turtleweb IT Training + Chris Quintero Dominguez + chris&quinterodominguez.co.uk +60273 + Joshua Hershey + Joshua Hershey + JMHershey125&gmail.com +60274 + Rugby Australia Ltd + IT Support + itsupport&rugby.com.au +60275 + ADOP SHENZHEN TECHNOLOGY CO.,LIMITED + Shaohui Wang + wsh&adop.cn +60276 + ACS International Schools + Simon MacDonald + smacdonald2&acs-schools.com +60277 + Yengeek + Andrew Yen + andrew.yen¥geek.net +60278 + Universidad Pontificia Comillas + Pedro Pérez Celis + cio&comillas.edu +60279 + S.A.F.E. e.V. + Matthias Grote + matthias.grote&safe-ev.de +60280 + Seminole State College of Florida + Steven Donaway + donaways&seminolestate.edu +60281 + Imaqliq Service LLC + Andrey Barokho + baa&imaqliq.com +60282 + AHMC Healthcare + Alan Leghart + iana-pen&ahmchealth.com +60283 + BEIJING FIBRLINK COMMUNICATIONS CO.,LTD. + Liwei Fu + fuliwei&sgitg.sgcc.com.cn +60284 + CloudSky + Roy Wang + roy.wang&icloudsky.com +60285 + OMS Ireneusz Smoczkiewicz + Ireneusz Smoczkiewicz + ismoczkiewicz&gmail.com +60286 + Tusker Direct + Andy Sabapathee + andy.sabapathee&tuskerdirect.com +60287 + Damarcus Jones + Damarcus Jones + Djonessr80&gmail.com +60288 + Linuxito + Santiago Ruipérez + sruiperez&linuxito.es +60289 + Nihon Kohden Center of Expertise + Victor Boyd + victor_boyd&nihonkohden.com +60290 + TheThingsTalking Technology Co.,Ltd + Van He + 330406357&qq.com +60291 + ISCTE – Instituto Universitário de Lisboa + João Oliveira + diretor.siic&iscte-iul.pt +60292 + Star Comunicaciones S.L. + Manuel Ángel García + manuel&starcomunicaciones.es +60293 + Flywire Corporation + Barbara Cousins + iana-pen&flywire.com +60294 + Fujian Radio and Television Network Group(福建广电网络集团) + Cai Huixia + 466020522&qq.com +60295 + WuXi High Information Security Technology Co.,Ltd + Gao Qi + marketing&hinfose.com +60296 + DANAM Aerospace R&D Center S/W + Minseong, KIM + mcastle&danam.co.kr +60297 + Provincie Groningen + Daniel Kleve + bti&provinciegroningen.nl +60298 + Greater Manchester Mental Health NHS Foundation Trust + Infrastructure Alerts + InfrastructureAlerts&gmmh.nhs.uk +60299 + ev-lution-technology + Tom Tiberio + tommyteeabc&gmail.com +60300 + ev-lution-technologie + Tom Tiberio + tommyteeabc&gmail.com +60301 + ev-lution-charge + Tom Tiberio + tommyteeabc&gmail.com +60302 + ev-lution-charger + Tom Tiberio + tommyteeabc&gmail.com +60303 + ev-lution-chargeur + Tom Tiberio + tommyteeabc&gmail.com +60304 + Metaverse Multiverse + Alexander Matthew Estrada + admin&metaversemultiverse.net +60305 + Tendaworld + Chris Daniels + mail&tenda.world +60306 + Christopher Spivey + Christopher M Spivey + spivey575&gmail.com +60307 + Entrack AS + Tore Taugl + tore.taugl&entrack.no +60308 + Alder Holdings LLC + Collin Campbell + collin.campbell&alder.com +60309 + RayCorp + Ray Whitfield + raylwhitfield&gmail.com +60310 + $coindogg + Ronny Armstrong + ronny.armstrong86&gmail.com +60311 + XPOINT NETWORK COMPANY LIMITED + Ivan Mak + ivan.mak&xpointnetwork.com +60312 + winhong + Qi Zhang + zhangqi&winhong.com +60313 + STUPINSKIY ELECTROTECHNICHESKIY ZAVOD Limited Liability Company (STEZ LLC) + Toivonen Denis + dtoivonen&stezelectro.ru +60314 + LBDS + Technical Contact + lbds-io&protonmail.com +60315 + JET Services Marketing + Zeljko Baralic + zeljko.baralic&jet-services.com +60316 + ATEXO + MALHOMME Laurent + crypto&atexo.com +60317 + Cascade Raider Holdings + Darryl Hon + itsupport&raiderhansen.com +60318 + Will Buik + Will Buik + pen_admin&miats.com +60319 + Yarra City Council + Ross Witherby + netadmin&yarracity.vic.gov.au +60320 + Leids Universitair Medisch Centrum (LUMC) + Tim van Someren + t.van_someren&lumc.nl +60321 + meando + Anders Dovblad + adovblad&hotmail.com +60322 + Chutima Connect Co., Ltd. + Nonvapon Rojanavasu + r.nonvapon&chutima.com +60323 + EIM doo Belgrade + Nenad Vranesevic + nenad.vranesevic&eim.rs +60324 + Kotivity + Tito Alai + mail&kotivity.com +60325 + RTBF-STG + Jérôme DE SMEDT + hostmaster&rtbf-stg.be +60326 + Presidenza del Consiglio dei Ministri - DIS-UCSe + Gen. C.A. Piero Burla + certificazione&alfa.gov.it +60327 + Herbert AhSam-Kreiter + Herbert AhSam-Kreiter + info&ahsam-kreiter.net +60328 + Servizi e Tecnologie Informatiche Srl + Franco Marchesini + franco.marchesini&gmail.com +60329 + Marcus Alessandro Pavan Francisco + Marcus Alessandro Pavan Francisco + pavan.marcus&outlook.com +60330 + hssystem + Shenggen Chen + shenggen.chen&hssystem.cn +60331 + ACMOSS + Mariama DIEDHIOU + mariama.diedhiou&interieur.gouv.fr +60332 + RLS Consulting Services + Robert Lee Saganich + robert.saganich&rlsconsultingservices.com +60333 + Borders Online Ltd + Marty Lee + marty&bordersonline.net +60334 + Eugenio Tampieri + Eugenio Tampieri + eugenio+iana&tampieri.me +60335 + Jefferson County Board of Education + Bradley Arnold + barnold&jefcoed.com +60336 + PicassoMD, Inc. + Sean Carpenter + netops&picassomd.com +60337 + rapixus + Wang Ying-Tsung + chris&rapixus.com +60338 + Farpointe Data, Inc. + Kirk Bierach + kirk.bierach&farpointedata.com +60339 + IngeniArs S.r.l. + IngeniArs Administration + administration&ingeniars.com +60340 + parsasharif + rezaei parsasharif + rezaie.h568&gmail.com +60341 + JWIPC TECHNOLOGY CO., LTD. + David Wang + wanghl&jwele.com.cn +60342 + Ultimate Fitness Group LLC + John Staab + jstaab&orangetheory.com +60343 + The P.A. People Pty Ltd + Sam Dodds + info&papeople.com.au +60344 + Bravas Tecnologia + Ricardo Vasconcellos + ricardo&bravas.ind.br +60345 + Open industrial PKI + Andreas Philipp + andreas.philipp&trust-point.com +60346 + Voelkl Sports GmbH + Christian Wieland + it-einkauf&voelkl.de +60347 + Lutech SpA + Danilo Lozza + d.lozza&lutech.it +60348 + Aretiico + Alastair Taylor + alastair&aretii.co +60349 + Barbaros Catkan + Barbaros Catkan + bcatkan&gmail.com +60350 + Settels Savenije Group of Companies + Alex Goris + alex&ag-its.nl +60351 + ITSEC RND MICHAŁ LESZCZYŃSKI + Michał Leszczyński + michal.leszczynski&itsecrnd.com +60352 + SPB Exchange + Kaltashkin Eugene + e.kaltashkin&spbexchange.ru +60353 + Kato Electric Industry CO.,LTD + Takehisa Nakagawa + nakagawa-t&kdk-katoudenki.co.jp +60354 + CHSLD Domaine Saint-Dominique + Support TI + supportti&domaine-saint-dominique.com +60355 + Shanghai UDH Technologies Co.. Ltd. + Qian Chen + cqian&udh.com.cn +60356 + Tom van Brienen + Tom van Brienen + pen-tom&tvbhosting.nl +60357 + BMI + Yin LIU + yin.liu&bmisolution.com +60358 + Machine Specialties + Owen Jacobs + oid-admin&machspec.com +60359 + YTL Communications Sdn Bhd + Joseph Lee + joseph.lee&ytlcomms.my +60360 + Europractice + John Chandler + john.chandler&stfc.ac.uk +60361 + Innopay Zrt. + Márk Kolovics + mark.kolovics&innopay.hu +60362 + Shenzhen Dazoo Technology Co., Ltd. + Mark Wang + mark.wang&idazoo.com +60363 + Nuuday A/S + Jens Galsgaard + jega&nuuday.dk +60364 + Arx Research, Inc. + Charles Cameron Robertson + cameron&arx.org +60365 + Infobezpeka LLC + Olexiy Podchashynsky + on&infobezpeka.com +60366 + Stakhanovets + Sergii Shamshyn + sergey&stakhanovets.ru +60367 + CRI Computer Rework & Installations AB + Lars Åkesson + Lars.Akesson&cri.se +60368 + Lago Networks Oy + Jussi Jarvi + registry&lago.fi +60369 + DNSFau + Evan Afentoulis + evn67&hotmail.com +60370 + Rheinmetall BAE Systems Land + Dave Crawford + rbslimt&rbsl.com +60371 + Magics Security Agency + Nick Bosters + contact&nederland-mail.nl +60372 + Logic sh.p.k. + Armando Vrushi + avrushi&logicshpk.al +60373 + Foxleys Consultancy Limited + Iain Segall + Iain.segall&foxleysconsultancy.co.uk +60374 + Medidata Solutions + Samir Jain + samir.jain&3ds.com +60375 + Kibc technology + Dennis Sim + Denis-sim&yandex.ru +60376 + A.M. Residential & Commercial Contractors + Adam Maxwell + AMContractor&yahoo.com +60377 + METER Solutions Kft. + Csaba Pesti + jerry&met3r.com +60378 + Turing Medical + Max Bertolero + max.bertolero&turingmedical.com +60379 + RTK-TECHNOLOGIES, LLC + Alexander Novozhenin + snmp&rtk-t.ru +60380 + best Systeme GmbH + Scharel Clemens + oid-admin&best.de +60381 + Zitel + Meysam Heydarlou + cto&zi-tel.com +60382 + Svante Technologies Inc + Svante Technologies Inc + web_admin&svanteinc.com +60383 + Frederickson Graphics Inc. + Syby Abraham + syby&mmpbc.ca +60384 + Ellevio AB + Joakim Bengtzon + joakim.bengtzon&ellevio.se +60385 + Svenska Kraftnät + Hannes Johnsson + Hannes.johnsson&svk.se +60386 + Yabarana Inc. + Alejandro Imass + aimass&yabarana.com +60387 + zhaochuninhefei + Zhao Chun + zhaochuninhefei&gmail.com +60388 + Protect Power Systems Limited + Valentin Kornev + v.kornev&upsprotect.kz +60389 + Parry Labs + Jon Wahlmann + jon.wahlmann&parrylabs.com +60390 + OUTREMER TELECOM + PERSEGOL DELPHINE + d.persegol&outremer-telecom.fr +60391 + ANALOG WAY SAS + Daniel BOUQUET + daniel.bouquet&analogway.com +60392 + Andrei-Alexandru Bleorțu + Andrei-Alexandru Bleorțu + me&andrei-z.com +60393 + Servicios Tecnológicos Integrales S.A. + Federico Nartallo + fnartallo&stisa.com.ar +60394 + 电科网安 (CETC) + 余婷婷 (Yu Tingting) + yu.tingting07312&westone.com.cn +60395 + ProjectPKI + Charles Hamby + Charles.hamby&projectpki.com +60396 + SOCIETE REUNIONNAISE DU RADIOTELEPHONE + PERSEGOL DELPHINE + delphine.persegol&srr.fr +60397 + SAIC General Motors Corporation Limited + Xiaodong Pang + xiaodong_pang&saic-gm.com +60398 + NÄTRAÄLVENS virkesförsäljningsförening u.p.a. + Håkan Thelin + hakan.thelin&natraalven.se +60399 + 深圳市道通合创数字能源有限公司 (Shenzhen Daotong Hechuang Digital Energy Co., Ltd.) + 瞿松松 (Qu Songsong) + qusongsong&autel.com +60400 + HTS Group Limited + Blair Marshall + bmarshall&htsgroup.co.nz +60401 + Micas Networks Inc. + Peng Tian + patrick.tian&micasnetworks.com +60402 + VOGL electronic GmbH + Matthias Breithaupt + m.breithaupt&vogl-electronic.com +60403 + Subspace Dynamics, LLC + David Holl, Jr. + dholl&subspacedynamics.com +60404 + Shanghai Onstar Telematics Corporation Limited + Weiwei Ji + weiwei.ji&shanghaionstar.com +60405 + Ricardo Vega + Ricardo Vega + rickyvega7766&icloud.com +60406 + Guangdong Huaiji Weifa Hydro-electric Power Company Limited + lihuiping + lihuiping&clp.com.cn +60407 + Houthoff + Arjan Bekkema + systeembeheer1&houthoff.com +60408 + AadiRi + Abhirup Sarkar + miles2gooo&gmail.com +60409 + Kraftwerke Oberhasli AG + Daniel Abegglen + it-support&kwo.ch +60410 + CJSC Bank of Asia + Seitek Kurmanov + bankasia&bankasia.kg +60411 + EGK Entsorgungsgesellschaft Krefeld GmbH & Co. KG + Andreas Ruegenberg + edv&egk.de +60412 + Centro regional de Servicios Avanzados + Ángel Martínez + angel.martinez&csa.es +60413 + Stephan Emich + Stephan Emich + noreply&emich.systems +60414 + crynet.one + Kilian Kreibich + info&crynet.one +60415 + Saint Gregory Heart and Vascular Center + Sarkis Kiramijyan, MD + aharutyunyan&stgregoryheart.com +60416 + Fidelis MGU + Anuj Bajaria + IT_infrastructure&fidelismgu.com +60417 + Cromix, LLC + Alexey Kolpakov + mvno&cromix.ru +60418 + LURE IT, LLC + Vladimir Korablev + info&lureit.ru +60419 + Strawnet + Steven Strawbridge + sdstraw&outlook.com +60420 + 山源科技 (Shanyuan Technologies) + 李晓鹏 (Leo Li) + 1540076809&qq.com +60421 + Peng Lihao + Peng Lihao + penleehow&gmail.com +60422 + hisource Technology Development Co., Ltd. + Peng Lihao + penleehow&gmail.com +60423 + KABEG Management + Gerald Regenfelder + gerald.regenfelder&kabeg.at +60424 + Nordic RCC A/S + Thomas Bille Joensen + tbj&nordic-rcc.net +60425 + MIU Labs + Isaac Amezaga i Saumell + iamezaga&miulabs.com +60426 + Namaste Informatics, LLC + Gay Dolin + gdolin&NamasteInformatics.com +60427 + Projecthive + Branislav Zeljak + it-support&z-iq.de +60428 + SAFY.io + Imane BOUIJ + contact&safy.io +60429 + Kymata Srl + Miki Ferrari + tecnico&kymata.it +60430 + Stockholm Exergi AB + Jimmy Renström + jimmy.renstrom&stockholmexergi.se +60431 + Medsquare + Damien JEANDEL + d.jeandel&medsquare.com +60432 + Paul Morrison + Paul Morrison + pauliewog&gmail.com +60433 + Universitätsklinikum des Saarlandes + ZIK - Server und Storage + san-server&uks.eu +60434 + WITHNETWORKS + Tony Kang + sykang&withnetworks.com +60435 + Huang Liuyong + Huang Liuyong + huangliuy&gmail.com +60436 + EUROIMMUN Medizinische Labordiagnostika AG + Andreas Lingk + a.lingk&euroimmun.de +60437 + RapidCloud + Tom van Brienen + pen-reg&rapidcloud.eu +60438 + Genesis Systems + Brandon Mennear + brandon&buygenesis.com +60439 + RioVIDEO Ltd + Matthew Compton + matthew.compton&riovideo.co.uk +60440 + Rob Harman + Rob Harman + rob&robharman.me +60441 + Helios Power Solutions + Gemmar Jhan Contayoso + jcontayoso&heliosps.com.au +60442 + Jonas Marklén + Jonas Marklén + txc&txc.se +60443 + Feeney Technologies, LLC + Kiern Feeney + kiern&feen.tech +60444 + Nordic Semiconductor ASA + Stig Bjørlykke + stig.bjorlykke&nordicsemi.no +60445 + SI.pl + Jacek Kowalski + iana&si.pl +60446 + Trout Software + Romain Doumenc + support&trout.software +60447 + Delta Surge Inc. + Jaswant Dhaliwal + icacorp&aol.com +60448 + Universitäts-Segel-Club Dortmund e. V. + Timo Schrappe + t.schrappe&usc-dortmund.de +60449 + Codium + Timo Schrappe + hello&codium.de +60450 + Clarity Security Corporation + Alexis Moyse + alexis&claritysecurity.io +60451 + Extract Systems + William Parr + william_parr&extractsystems.com +60452 + Fortyfive South Pty Ltd + Michael Shirtcliff + mshirtcliff&45south.com.au +60453 + dieEntwickler Elektronik GmbH + Robert Schedlberger + robert.schedlberger&dieentwickler.at +60454 + Complex LTD. + Sergey Smirnov + newitservices&yandex.ru +60455 + Oracle Health Applications and Infrastructure + Vartan Chukhadarian + vartan.chukhadarian&cerner.com +60456 + WE Europe B.V. + Roy Pellegrom + itsd&wefashion.com +60457 + Vail School District + Mark Breen + breenm&vailschooldistrict.org +60458 + Anitha. A + Anitha. A + anithaannadurai410&gmail.com +60459 + Fortis Security + Brendan + b.mcfarland&fortissecurity.com.au +60460 + Dynamic Shell + Mirjana Mikec + mirjana.mikec&dynshell.com +60461 + Tim Nowaczyk + Tim Nowaczyk + zimage&gmail.com +60462 + Renante Blanco Baniaga + Renante Blanco Baniaga + admin&renzbaniaga1-7xsd.wbx.ai +60463 + SoCal United Food & Commercial Workers Unions and Food Employers Joint Benefit Funds Administration, LLC + Brian Miller + BMiller&scufcwfunds.com +60464 + QLS Consulting + W. E. Summerville + w.summerville&qlsconsulting.com +60465 + Encompass HSCNI + Encompass Support + encompass&telefonicatech.uk +60466 + Australis M2M Pty Ltd + Patrick Paffard + patrickpaffard&australism2m.com.au +60467 + Lukas Hrabal + Lukas Hrabal + lukas.hrabal&lukinno.ml +60468 + AB Borlänge Energi + Mats Rusback + mats.rusback&borlange-energi.se +60469 + Landatel Comunicaciones S.L. + Manuel Arroyo + manuel&landatel.com +60470 + Data General + Manuel Arroyo + manuel&rroyo.es +60471 + Gigant LTD. + Sergei Smirnov + dsfinks&mail.ru +60472 + Fengrunda Technology Co.,Ltd. + Changqing Gao + product&poetech.net +60473 + Zhengdao Quantum + Lance Zhang + lingsongzhang&zdlz.top +60474 + EXO + Diego Luis Szychowski + diegos&exo.com.ar +60475 + State Service of Special Communication and Information Security + Aykhan Aghazada + ayxan&gov.az +60476 + Antara Teknik LLC + Mehmet Adalier + madalier&antarateknik.com +60477 + PicnicHealth + Akash Krishnan + akash&picnichealth.com +60478 + Airtime Network, Inc. + Charles Robertson + cameron&airtime.network +60479 + Elona Health GmbH + Leon Hillebrandt + leon&elona.health +60480 + National Tsing Hua University Tech Society + National Tsing Hua University Tech Society + mis&nthu.dev +60481 + Alvaka + Chris Cartwright + ccartwright&alvaka.net +60482 + Rebellions Inc. + Jinwook Oh + j.oh&rebellions.ai +60483 + GraphDefined GmbH + Achim Friedland + achim.friedland&graphdefined.com +60484 + AEPONYX + Louis Forest + lforest&aeponyx.com +60485 + E-LINTER + Ken + ken.cui&e-linter.com +60486 + DTE S.A. + Guillermo Crocetti + guillermocrocetti&dtesa.com.py +60487 + Nikolay TODOROW + Nikolay TODOROW + n.todorow&ibsg-online.de +60488 + Empower Energy + Michael Jensen + admin&empowerenergy.com.au +60489 + Akkutron Handels GmbH + Christian Tran + christian.tran&akkutron.at +60490 + Armtel + Irina Kazymova + i.kazymova&armtel.com +60491 + Calnex Solutions + Alan Potter + iana-admin&calnexsol.com +60492 + Ticketmaster + Greg Bowyer + greg.bowyer&ticketmaster.com +60493 + Ing. Alfredo Revenaz + Alfredo Revenaz + pr&revenaz.it +60494 + DMYTRO LOBASHEVSKYY + DMYTRO LOBASHEVSKYY + 0deadc0deh&gmail.com +60495 + Screen INFOmatch B.V. + Arno de waal + ict&screeninfomatch.com +60496 + SIMUR Europe SL + Victor Escudero Rubio + vescudero&simur.es +60497 + Centro de Gerenciamento Técnico do SISCEAB (CGTEC) + Tiago Porto Barbosa Cap Eng + portotpb&fab.mil.br +60498 + Engity GmbH + Gregor Noczinski + contact&engity.com +60499 + decarbon1ze GmbH + Marie-Carole Girbal + marie-carole.girbal&decarbon1ze.com +60500 + Mucse + Jun Yao + yaojun&mucse.com +60501 + Zheng Cui + Zheng Cui + woolenhy&163.com +60502 + Knosys + Nic Passmore + npassmore&knosys.it +60503 + Life Science Compute Cluster, University of Vienna + Thomas Rattei + contact.lisc&univie.ac.at +60504 + TRIZ Networks corp. + sungwoo baek + sw.baek&triznetworks.com +60505 + South East Coast Ambulance Service NHS Foundation Trust + Jason Tree + itmarketing&secamb.nhs.uk +60506 + Alexander Edward Blake + Alex Blake + alex&blake.dk +60507 + TX Australia Pty Ltd + David Kilpatrick + dkilpatrick&txaustralia.com.au +60508 + Telenor Maritime AS + Trond Retterholt + trond.retterholt&telenormaritime.com +60509 + brainelectronics + Jonas Scharpf + jonas&brainelectronics.de +60510 + Spedition Hamann + Julian Hamann + hamann.julian&spedition-hamann.de +60511 + Erwin Renz Metallwarenfabrik GmbH & Co. KG + Bastian Haas + administrator&renzgroup.de +60512 + INFOSKILLS TECHNOLOGY PVT LTD + SONU KUMAR + admin&infoskillstechnology.com +60513 + 4M SOFTWARE SRL + MIRKO CALVIGIONI + info&4msoftware.it +60514 + Glendale Community College + Susan Bedker + Susan.Bedker&gccaz.edu +60515 + Fortress Power, LLC. + William Gathright + software_admin&fortresspower.com +60516 + Asheville Podiatry Associates + Debra Wright + henry1wright&charter.net +60517 + David Johnstone + David Johnstone + diana&dewlands.com +60518 + Tongxin Microelectronics Co.,LTD. + Yong Qin + qinyong&tsinghuaic.com +60519 + Cloudwyze, Inc. + Mark Doner + mark.doner&cloudwyze.com +60520 + My Serial, DEV. + ALAA BIN S B + Admiral&MySerial.DEV +60521 + Hyperian Energy Inc. + Eric Gilmore + eric&hyperian.com +60522 + TSODUM + Konstantin Strulev + info&smartdcim.ru +60523 + Moonlightmusicians + Philip W Johnson + Phil&Moonlightmusicians.com +60524 + Actual Broadband + Joshua Pool + admin&actualbroadband.com +60525 + Zsolt Turza + Zsolt Turza + turzazsolt&gmail.com +60526 + Wewins Wireless Co., Ltd + Yuanchen Chen + chenyc&we-wins.com +60527 + Radio-Télévision Belge de la Communauté Française + Jérôme DE SMEDT + hostmaster&rtbf.be +60528 + Entidad Nacional de Acreditación (ENAC) + Jose luis Miguel + jlmiguel&enac.es +60529 + Alois Müller GmbH + Matthias Botlik + Matthias.Botlik&alois-mueller.com +60530 + Feliks Westhoff + Feliks Westhoff + quickness_backside621&simplelogin.com +60531 + Teciatric Informatics Private Limited + Mathew Kochekkan Jacob + mathewkj&teciatric.net +60532 + Test Setup - Thomas Nielsen + Thomas Nielsen + thomas&tnit.dk +60533 + Henrik Norrman + Henrik Norrman + henrik&b6.se +60534 + Meidensha Corporation + Ryo Koshiya + koshiya-r&mb.meidensha.co.jp +60535 + thyssenkrupp Components Technology Hungary Kft. + Peter Dome + peter.dome&thyssenkrupp-automotive.com +60536 + UAB "iSense Technologies" + Algirdas Adamauskas + a.adamauskas&isense.lt +60537 + Nebius + Igor Znamenskii + iznam&nebius.com +60538 + EDR Credit Services + Robert van der Heijden + Ict&edrcreditservices.nl +60539 + Paper Excellence + Cory MacCharles + siteinfra&paperexcellence.com +60540 + Poulson Forensics LLC + Mike Poulson + mike&poulsonforensics.com +60541 + WJEC CBAC Ltd + IT Security Manager + security&wjec.co.uk +60542 + Virgin Media + OSS Team + OSSEntMonitorandAutomate&virginmedia.co.uk +60543 + Salman M. Khan- Belia Esparza- Shary Gardens Pediatrics- Donna Childrens Clinic + Belia Esparza + sharygardenspfnc&gmail.com +60544 + Belia Esparza- Shary Gardens Pediatrics + SHARON GARCIA + donnachildrensclinic&gmail.com +60545 + Clevon AS + Raul Tambre + raul.tambre&clevon.com +60546 + Verbio Technologies, S.L. + IT Department + infrastructure&verbio.com +60547 + Blue Ridge Bankshares, Inc. + Ryan A. Blake + oid&mybrb.bank +60548 + Wombkeepers Obstetrics and Gynecology + Ann Marie Pusterla + annmarie.pusterla&oneoakmedical.com +60549 + Piglet Engineering + Pete Ryland + pdr&piglet.ch +60550 + Heaven Palace + Rimvydas Zilinskas + rimvydas.zilinskas&gmail.com +60551 + Cardolite Corporation + Timothy Stonis + tim&cardolite.com +60552 + TSN Systems GmbH + Abraham van der Linde + abraham&tsn.systems +60553 + Courtiers + Courtiers + itsupport&courtiers.co.uk +60554 + Unite Logistics AB + Jan-Stefan.Karlsson + jan-stefan.karlsson&vsv.se +60555 + Joachim Raber + Joachim Raber + joachim&tereas.eu +60556 + Beaver Medical LLC + Julie Christensen + jchristensen&beaverclinic.net +60557 + kalytta.net + Philipp Kalytta + kontakt&kalytta.net +60558 + City of Yellowknife + IT Department + it&yellowknife.ca +60559 + Tigo Energy + Steve Brozic + steve.brozic&tigoenergy.com +60560 + GMO BRAND SECURITY Inc. + Mitsuaki Nakagawa + oid-contact&brightsconsulting.com +60561 + labcmd + Cory James Thompson + cornelius&labcmd.com +60562 + IPCOM + Yurii Remez + service&ipcom.ua +60563 + Binghamton University + Timothy Cortesi - Director of Innovation / Research Computing Support + tcortesi&binghamton.edu +60564 + Crutchfield Corporation + Paul Fitzsimmons + esg&crutchfield.com +60565 + Maricopa County Recorder's Office + George Tohannie + gtohannie&risc.maricopa.gov +60566 + McKenzie A Pepper + McKenzie A Pepper + mckenzie.a.pepper&gmail.com +60567 + PointEng + choi jinyoung + cjy.ups&gmail.com +60568 + Premier Surgical Associates + Kevin Burris + kburris&premiersurgical.com +60569 + Mevspace Sp. z o.o. + Adam Ochmański + adam.ochmanski&mevspace.com +60570 + Pairpoint + Mohammad Tahir + Mohammad&pairpoint.io +60571 + STL Systems AG + Martin Beck + m.beck&stl.systems +60572 + Alex Nagy + Alex Nagy + anagy&precisengineering.com +60573 + Flickswitch pty ltd + Jeremy de Agrela + jeremy&flickswitch.co.za +60574 + SÜSS MicroTec SE + SUSS MicroTec NOC + noc&suss.com +60575 + SD 27 Cariboo Chilcotin + IT Department + itdepartment&sd27.bc.ca +60576 + Stichting Open Electronics Lab + Eric Herman + eric.herman&gmail.com +60577 + pritac consulting gmbh + Markus Oesch + markus.oesch&pritac.de +60578 + Groupe Mooland + Justin DUVAL + informatique&mooland.fr +60579 + SourceFactory.at e.U. + Mario Klug + office&sourcefactory.at +60580 + Sandy Mossgrave + Sandy Mossgrave + sandym&ucsc.edu +60581 + Techartworks Pty Ltd + Mitul Bhatnagar + mitul.bhatnagar&gmail.com +60582 + Shanghai ICWiser Communication Technology Co., Ltd. + Eric Qiu + jmqiu&icwiser.com +60583 + Microdata Software + Pedro D. Sanchez + tecµdata.es +60584 + Origin Energy Limited + Will Yeates + will.yeates&originenergy.com.au +60585 + Alrahman LLC + Belia Esparza + sharygardenspfnc&gmail.com +60586 + Inpixon + David Westgate + admin&inpixon.com +60587 + Southeast Mississippi Rural Health Initiative, Inc + Brian Howard + oid&semrhi.com +60588 + Impulse Ltd + Mike Chaldin + chaldin&mail.ru +60589 + Stadt Wesseling + Oliver Schmitt + it-service&wesseling.de +60590 + ALTEN Technology USA Inc. + Andy Bolom + andy.bolom&alten.com +60591 + Shenzhen Yunlian Gongchuang Cloud Services Co., LTD + Hao Hu + huhao&szylgc.net +60592 + Shenzhen Toputel Technology Co.,Ltd + deqiao wei + wadetech&sina.cn +60593 + Europlacer + Nathaniel Cleland + nathaniel.cleland&europlacer.co.uk +60594 + Wismut GmbH + Leiter RZ + lizenz&wismut.de +60595 + Sinyalizasyon Elektronik İnş. San. Tic. Ltd. Şti + İlhami KIVRAK + ilhami.kivrak&sinyalizasyon.com.tr +60596 + INNOGENCE TECHNOLOGY + Jiuling Zhang + czlh&inno-gence.com +60597 + Astra Wireless Technology + Dmitry Gustelev + d.gustelev&astrawireless.net +60598 + Universitätsklinikum Jena + Martin Hirschelmann + iana&med.uni-jena.de +60599 + TUALCOM + Bora MUTLUER + bora.mutluer&tualcom.com.tr +60600 + Malmö Stad + Jesper Henning + systemdrift&malmo.se +60601 + Central Bank of Nigeria + Abubakar Sadiq Babah + asbabah&cbn.gov.ng +60602 + PEP + PEP Support + support&pep.cs.ru.nl +60603 + FTS + Fernando MT + ftsolucoes&outlook.com +60604 + Growatt New Energy Australia Pty Ltd + rex wang + rex.wang&growatt.com +60605 + Phitech + Hugo Hatzig + h.hatzig&phitech.fr +60606 + EXACT Technology + Andi Gerl + andi.gerl&exacttechnology.com +60607 + The University of Connecticut Foundation, Inc. + Daniel Nevelos + dnevelos&foundation.uconn.edu +60608 + InduXray Co., Ltd. + ChingHao, Hsieh + induxray.tw&gmail.com +60609 + Hyperconn Pte. Ltd + Paul Hu + paul.h&hyconext.com +60610 + hyxipower + Chao Hao + hao_chao&hyxipower.com +60611 + NOX Nachtexpress Austria GmbH + Daniel Schatz + daniel.schatz&nox-nachtexpress.at +60612 + Topazdom Technologies Limited + David Nzagha + nzaghad&topazdom.com +60613 + Meggitt Ltd + Hugh Smithson + hugh.smithson&meggitt.com +60614 + Ascension St. Vincent's Women's Health + Kendall Triplett + kendall.chambliss&ascension.org +60615 + Aerospace Data Security GmbH + Niels Born + admin&aerospace-datasecurity.de +60616 + China Telecom Cloud + Hu Peng + hup4&chinatelecom.cn +60617 + Tina Bilisim Teknolojileri Yazilim Sanayi ve Ticaret Ltd. Sti. + Emine Sule Celik + esulecelik&tina.com.tr +60618 + IPLAN + Maxi Tofani + mtofani&iplan.com.ar +60619 + Callie Jones + Callie Jones + Jonescallie&hotmail.com +60620 + motech + SEPTA MUHAMMAD RIVALDY + septamr&motech.id +60621 + Queensland Department of Environment and Science + Matt Jolly + Matthew.Jolly&des.qld.gov.au +60622 + CERN_COMK LD1 + Britton Jennings + bj5989&yahoo.com +60623 + TekLnk + Edward Moss + admin&teklnk.com +60624 + Enetrics LLC + Robby Simpson + robby.simpson&enetrics.com +60625 + Botimageai + Hans Johnson + hjohnson&botimageai.com +60626 + LEX COMPUTECH CO.,LTD. + Gary Lin + gary_lin&lex.com.tw +60627 + Internet Domain Name System Beijing Engineering Research Center Ltd. + SUN Guonian + sunguonian&zdns.cn +60628 + ASAP Holding GmbH + Athanasios Dolapsoglou + athanasios.dolapsoglou&asap.de +60629 + Peter Schumann + Peter Schumann + shoubpabeuhbeurtnw&tcwlm.com +60630 + Zsolt Sárkány + Zsolt Sárkány + zsolt.sarkany&gmail.com +60631 + Dycipher + Joshua Pelino + joshpelino&dycipher.com +60632 + MASCOM WIRELESS + Onkagetse Bonnie Itiseng + onkagetsebonnie.itiseng&mascom.bw +60633 + Trenkwalder Group + Nermin Music + domains&trenkwalder.com +60634 + Ringit Connect + Aliji Emmanuel + emmanuel&ringitconnect.com +60635 + Orchard and Vineyard Supply + Aaron Mendoza + Helpdesk&ovs.com +60636 + Web Sharp Studios, Inc. + Scott Weeden + iana-pen&fronts.cloud +60637 + Wavesys Global + Ruchi Jha + r.jha&wavesysglobal.com +60638 + Dorsch Holding GmbH + Maik Martin + it-hotline&dorsch.de +60639 + MediReva B.V. + Karsten Meijers + ict&medireva.nl +60640 + Cubetex Technologies Inc + Mykhaylo Melnyk + office&cubetex.com +60641 + Microdrive + Yura Kilin + engineerµ-drive.ru +60642 + Refactor Software Inc. + Michael Brown + mikeb&360replays.com +60643 + Geneverse Energy Inc. + Anson Liang + anson&geneverse.com +60644 + RFC IT + Terry Hoebe + terry.hoebe&rfcit.nl +60645 + House of Travel + HOT CIO + soa&hot.co.nz +60646 + Mark Olsson + Mark Olsson + mark&markolsson.se +60647 + Hoymiles Power Electronics Inc. + Silver Fu + silver.fu&hoymiles.com +60648 + Passengera s.r.o. + Eldar Iosip + iana&passengera.com +60649 + BORDEAUX SCIENCES AGRO + Foury Jacques + dsi&agro-bordeaux.fr +60650 + Afni, Inc. + David Brooks + davidbrooks&afni.com +60651 + XPerience Technologies + Alexey Borodin + sales&xperiencetech.com +60652 + LibreNMS + Tony Murray + murraytony&gmail.com +60653 + TDJ Australia Pty Ltd + Aaron Were + awere&tdj.com.au +60654 + Trenton Systems + Svet Stoyanov + sstoyanov&trentonsystems.com +60655 + The Center For Manual Medicine + Seth Harrison + sharrison&ctrmm.com +60656 + Partners Telecom Colombia + Hector Giovanny Guerrero Zabala + hector.guerrero&wom.co +60657 + Andrew Williams + Andrew Williams + andy&you.havebroken.it +60658 + HFR Networks + Bryan Cho + bryan.cho&hfrnetworks.com +60659 + Stephen Spicknall + Stephen Spicknall + steve&totalconnectionmobile.com +60660 + IT unlimited AG + Jakob Döring + jakob.doering&itunlimited.de +60661 + Nectus + Andrey Melnikov + support&nectus5.com +60662 + Shenzhen Dingyan Technology Co. LTD + Yuwei Song + weisongyu1987&163.com +60663 + Era-platform + Peter Bukashin + tbotc&yandex.ru +60664 + F+ tech + Ilya Khomyakov + i.khomyakov&fplustech.ru +60665 + Aveanna Healthcare, LLC. + Remy Bell + IANA-Contact&aveanna.com +60666 + UCLA Information Security Office + Roozbeh Kavian + rkavian&it.ucla.edu +60667 + Tongyuan + James Zhuang + james.zhuang&tongyuantec.com +60668 + Australian Government Department of Finance + Scott Havelberg + scott.havelberg&finance.gov.au +60669 + InfiniPHY Ltd + Alexandru Panoviciu + apanovic&infiniphy.com +60670 + Dyness Digital Energy Technology Co., LTD + Xue Zhenyu + shawn.xue&dyness-tech.com +60671 + Center For Disability Services New York + Amos Potter + cfdsnetworksupport&cfdsny.org +60672 + FLEUBA SRL + Fernando Fariña + fernando.o.farina&gmail.com +60673 + ChintPower + Yang Liven + askazero0624&sina.com +60674 + Thomas Brown + Thomas Brown + thomas&w4xzr.xyz +60675 + Shenzhen Senergy Technology Co., Ltd. + Kevin Chang + KevinChang&apd.com.tw +60676 + Kingdom of Talossa + Danihel Txechescu + technology&talossa.com +60677 + Moolex + Rahul Chaturvedi + rahul&moolex.com +60678 + Zen Exim Pvt. Ltd. + Deepak Chandrayan + deepak&zengroup.co.in +60679 + KT Corporation + Seulki Jeon + seulki.jeon&kt.com +60680 + "TC Profenergy" LLC + Aleksandr Vysotskii + atomic&profenergy.ru +60681 + Vivek Bhoj + Vivek Bhoj + vivek.bhoj&gmail.com +60682 + Kingfisher Clinic, PLLC + Kristen McCann + kingfisher.f.clinic&gmail.com +60683 + EnuxMail + Daniel Adinew + daniel.adinew&gmail.com +60684 + Justketchup + David Graham + oid&justketchup.com +60685 + Shelly Group + Deomid Ryabkov + d.ryabkov&allterco.com +60686 + Think Force + Ji Jingzhou + ji.jingzhou&think-force.com +60687 + Shanghai Yunzhou Information and Technology Ltd. + Chen Yu + software&zstack.io +60688 + Gowone Industry (Ganzhou) Co., Ltd + Liping Chen + lepin&gowone.com +60689 + Faraday Development Center + Alexander Smirnov + alexander.smirnov&faradaydc.com +60690 + Odek Technologies + Morne van Rensburg + mornevr&odek.co.za +60691 + Cabalier Intelligent Software + Sean McCarthy + smccarthy&cabalier.es +60692 + Health Plan Services, Inc + Dan Cutler + dan.cutler&wipro.com +60693 + Levi Keehn + Levi Keehn + lkeehn&fender.com +60694 + MEBAY + dai kun + yxy&mebay.cn +60695 + iPresso S.A. + DevOps Team + admin&encja.com +60696 + SlashID + Giovanni Gola + giovanni&slashid.dev +60697 + Mike Chancey + Mike Chancey + mchancey&jhmhospital.com +60698 + Verisure Sàrl + Jorge Lopez + jorge.lopezh&verisure.com +60699 + Zhuzhou CRRC Times Electric Co., Ltd. + Ren Yi + renyi&csrzic.com +60700 + Transport for Greater Manchester + Jason Higgins + dcsops&tfgm.com +60701 + ED Elektronische Dienste GmbH + Juergen Heidel + heidel&it-favour.de +60702 + Chance Meador + Chance Meador + chancemeador&gmail.com +60703 + CTech Bilişim Teknolojileri San. ve Tic. AS + Emre Albayrak + licence_all&ctech.com.tr +60704 + FIRMATECH, INC + Paula Castillo + pcastillo&firmatech.io +60705 + Jessica Canas + Jessica Canas + Jcanasvalladares2&icloud.com +60706 + Keys Federal Credit Union + Ondrej Patrovic + ondrej.patrovic&keysfcu.org +60707 + Granite School District + Ryan Cooley + rcooley&graniteschools.org +60708 + Ivan Stepanov + Ivan Stepanov + ivan&stepanov.one +60709 + Anhui Xike Electronic Technology Co., Ltd. + Zhang Kuan + zhangkuan&cnonas.com +60710 + StarCharge + Billy Huang + qianquan.huang&wbstar.com +60711 + ZEKO.ME + Djordje Zekovic + dj&zeko.me +60712 + Highland Health Systems + Brandon Thrift + bthrift&hhsal.org +60713 + Mestobo + Robert Lichtenberger + r.lichtenberger&gmail.com +60714 + Panda Automatic + Maria Velichko + support&ipanda.pro +60715 + Cboe Global Markets + OIDAdmin + OID.Admin&cboe.com +60716 + Christian Wurm + Christian Wurm + info&wurm.biz +60717 + Stadler Rail AG + Christoph Kling + christoph.kling&stadlerrail.com +60718 + Interfase S.A. + Infraestructura + infraestructura&interfase.uy +60719 + Aapeli Vuorinen + Aapeli Vuorinen + iana-pen&aapelivuorinen.com +60720 + Schule Moehlin + Stefan Ries + informatik&moehlin.ch +60721 + Dohsnow Enterprises + Dylan Eden + dylan&dohsnow.com +60722 + Kantonsspital Baselland + Philipp Gerschwiler + philipp.gerschwiler&ksbl.ch +60723 + Zuidberg B.V. + Jan Wouter ten Napel + alex&ag-its.nl +60724 + Torus Inc + Trenton Bond + trent&torus.co +60725 + VAD Industrial Communication Technology Co., Ltd + Xie Gang + xiegang&vadsys.net +60726 + LeLu Berlin GmbH + Thomas Meier-Bading + info&bea-to-email.de +60727 + Dipl.-Ing. Martin Danjes GmbH + Frank Waermer + waermer&danjes.de +60728 + Galldris + Mahdi Chowdhury + it&galldris.co.uk +60729 + Krei.se + Richard Wachler + iana&krei.se +60730 + Georg Roth Stiftung & Co. Lebensmittelfilialbetrieb KG + Erik Schmeling + e.schmeling&norma-online.de +60731 + RationalCore LLC + Guillermo Simanavicius + simanavicius&rationalcore.com +60732 + Sigenergy + Coy + liuhongliang&sigenpower.com +60733 + Hanwha solutions, SW development center + Youngwoong Lee + youngwoong.lee&qcells.com +60734 + Callisto Inc. + OSAKI Keishiro + keishiro&callisto-ai.com +60735 + Procono, S.A. + Juan Francisco Fernández Terán + fernandezteran&ptvtelecom.com +60736 + Curtis Vaughn Thompson © The Edinburgh Originale -O.E. ™ + Curtis Thompson + original-edinburgh&outlook.com +60737 + Mennonite Benevolent Society + Adaptive Technical Inc. + certmgr&beadaptive.ca +60738 + Meredith-Webb Printing Co + Rick James + MWIT&meredithwebb.com +60739 + Smart Gauge + Luiz Mariano Bertissolo Júnior + smartgauge.eng&gmail.com +60740 + Eugen Wintersberger + Eugen Wintersberger + eugen.wintersberger&posteo.de +60741 + Optictimes + Alan Zhang + alanzhang&optictimes.com +60742 + Savino Digital Trust Sl + Nicola Savino + conservazione&savinosolution.com +60743 + rcp + Department Bodegraven + agroenewegen&unica.nl +60744 + Federale Overheidsdienst Beleid en Ondersteuning - Service Public Fédéral Stratégie et Appui + David Mampaey + david.mampaey&bosa.fgov.be +60745 + Kontron Europe + Christian Hofmann + christian.hofmann&kontron.com +60746 + ESY SUNHOME CO.,LTD + CHUQIAO ZHAO + MARKETING&ESYSUNHOME.COM +60747 + 63 Network + Douelas Isera + oid&63.network +60748 + Senior:InnenEinrichtungen der Hansestadt Lübeck + Daniel von Walsleben + walsleben&aph-luebeck.de +60749 + Inverso GmbH + Juri Zirnsak + admins&inverso.de +60750 + HEMATOLOGY ONCOLOGY ASSOCIATES OF THE PALM BEACHES + Sue Santiago + ssantiago&hoapb.com +60751 + 3forge + Kimberly Tsao + kimberly.tsao&3forge.com +60752 + Michael Duggan + Michael Duggan + md5i&md5i.com +60753 + Parliament of Western Australia + Healey Merritt + hmerritt&parliament.wa.gov.au +60754 + Müller Frauenfeld AG + WAGNER AG + TM-System&wagner.ch +60755 + E&B Information communications. Co., Ltd. + Hansuk Baek + hansuk100&enbtele.co.kr +60756 + Hemag Nova AG + Hemag Nova IT Services + iana.it&hemagnova.ch +60757 + Authentic Vision GmbH + Infrastructure Administrator + admin&authenticvision.com +60758 + Airborn, Inc + Nathan Groover + groovern&airborn.com +60759 + Manuel Zelt + Manuel Zelt + manuel.zelt&naiers.de +60760 + Group Administrators, Ltd. + Anthony Willard + awillard&groupadministrators.com End of Document \ No newline at end of file diff --git a/ipmitool-1.8.19.0.g19d7878.obscpio b/ipmitool-1.8.19.0.g19d7878.obscpio deleted file mode 100644 index 4c57858..0000000 --- a/ipmitool-1.8.19.0.g19d7878.obscpio +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e87775b05b2aa4cbd6e964e3644fc6dfb0f18a3353d074c127d10aa8de68aba6 -size 3038220 diff --git a/ipmitool-1.8.19.13.gbe11d94.obscpio b/ipmitool-1.8.19.13.gbe11d94.obscpio new file mode 100644 index 0000000..141d6fd --- /dev/null +++ b/ipmitool-1.8.19.13.gbe11d94.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5d808662a00879916023483108e2c5c438e3af321895c92d85e1af23156ed28 +size 3046412 diff --git a/ipmitool.changes b/ipmitool.changes index ae351b1..9bafcc6 100644 --- a/ipmitool.changes +++ b/ipmitool.changes @@ -1,3 +1,25 @@ +------------------------------------------------------------------- +Mon Jul 24 10:38:53 UTC 2023 - trenn@suse.de + +- Fix: ipmitool duplicates the timestamp (bsc#1213390) +A Fix-time-format-for-sel-list-v.patch +- Remove: Make-IANA-PEN-download-configurable (is mainline) +D 0006-Make-IANA-PEN-download-configurable-fix-uninitalized.patch +- Update to version 1.8.19.13.gbe11d94: + * configure.ac: allow disabling registry downloads + * lan: channel: Fix set alert on/off + * make: use correct docdir variable provided by autotools + * Do not require the IANA PEN registry file + * configure.ac: fix readline static build + * Update github actions for modern OSes + * Update macos target name in github actions + * delloem: Fix the unalign bug in arm64 + * lanplus: Realloc the msg if the payload_length gets updated + * fru print: Add area checksum verification + * fru: Add decoder for multirec system mgmt records + * Fix enterprise-numbers URL + * Update issue templates + ------------------------------------------------------------------- Wed Sep 07 03:06:48 UTC 2022 - trenn@suse.de diff --git a/ipmitool.obsinfo b/ipmitool.obsinfo index 7b35561..76ce944 100644 --- a/ipmitool.obsinfo +++ b/ipmitool.obsinfo @@ -1,4 +1,4 @@ name: ipmitool -version: 1.8.19.0.g19d7878 -mtime: 1662057751 -commit: 19d78782d795d0cf4ceefe655f616210c9143e62 +version: 1.8.19.13.gbe11d94 +mtime: 1673520680 +commit: be11d948f89b10be094e28d8a0a5e8fb532c7b60 diff --git a/ipmitool.spec b/ipmitool.spec index 257de55..a6616b4 100644 --- a/ipmitool.spec +++ b/ipmitool.spec @@ -17,7 +17,7 @@ Name: ipmitool -Version: 1.8.19.0.g19d7878 +Version: 1.8.19.13.gbe11d94 Release: 0 Summary: Utility for IPMI Control License: BSD-3-Clause @@ -32,7 +32,7 @@ Patch2: 0002-Fix-file-permissions.patch Patch3: 0003-Cleanup-and-compiler-issues-only-no-functional-chang.patch Patch4: 0004-Adjust-SUSE-paths.patch Patch5: 0005-HPM-x-compatibility-message-is-DEBUG-only.patch -Patch6: 0006-Make-IANA-PEN-download-configurable-fix-uninitalized.patch +Patch6: Fix-time-format-for-sel-list-v.patch BuildRequires: libtool BuildRequires: openssl-devel BuildRequires: readline-devel @@ -79,7 +79,8 @@ autoreconf -fiv # file-security: enables more security checks on files %configure \ --enable-file-security \ - --enable-intf-usb + --enable-intf-usb \ + --enable-registry-download=no make %{?_smp_mflags} %install