diff --git a/README.md b/README.md index 009cc64..28c9cae 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # RDAP Bootstrap Server The Registration Data Access Protocol (RDAP) defines a bootstrapping process in -[RFC 7484](https://tools.ietf.org/html/rfc7484). A bootstrap server aids clients by reading the +[RFC 9224](https://tools.ietf.org/html/rfc9224). A bootstrap server aids clients by reading the [bootstrapping information published by IANA](https://data.iana.org/rdap/) and using it to send HTTP redirects to RDAP queries. Clients utilizing a bootstrap server will not need to conduct their own bootstrapping. @@ -33,6 +33,10 @@ IANA files. - [A built-in timer to download IANA files](https://github.com/arineng/rdap_bootstrap_server/issues/1). - A new [rdap_bootstrap_checker](./scripts/rdap_bootstrap_checker.sh) script to check the correctness of an RDAP Bootstrap service as per [RFC 7484](https://tools.ietf.org/html/rfc7484). +* 2.0.2 + - Updated the `default_bootstrap.json` file for the domain entry. + - Updated the default bootstrap files to the latest IANA files. + - Upgraded Gradle, Spring Boot, and JUnit. This server is written as a Java servlet and should run in any Java Servlet 3.0 container or higher, as a Spring Boot application, or as a Docker container. It should build against Java 11 or higher. @@ -234,35 +238,20 @@ The default bootstrap file is consulted when all the other bootstrap files have ```json { "version": "1.0", - "publication": "2020-08-21T11:51:00-0400", + "publication": "2024-07-02T12:15:00-0400", "services": [ [ [ "ip", "autnum", - "nameserver" - ], - [ - "https://rdap.arin.net/registry/", - "http://rdap.arin.net/registry/" - ] - ], - [ - [ + "domain", + "nameserver", "entity" ], [ "https://rdap.arin.net/registry/", "http://rdap.arin.net/registry/" ] - ], - [ - [ - "domain" - ], - [ - "https://rdap.afilias.net/rdap/info/" - ] ] ] } diff --git a/build.gradle b/build.gradle index 5a02e08..dd2c439 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ plugins { - id 'org.springframework.boot' version '2.3.3.RELEASE' - id 'io.spring.dependency-management' version '1.0.10.RELEASE' + id 'org.springframework.boot' version '2.7.18' + id 'io.spring.dependency-management' version '1.1.4' id 'java-library' id 'war' id 'maven-publish' @@ -25,6 +25,10 @@ repositories { maven { url 'https://repo.maven.apache.org/maven2' } } +ext { + logbackVersion = '1.2.13' +} + dependencies { implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.springframework.boot:spring-boot-starter-actuator' @@ -34,11 +38,11 @@ dependencies { providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat' - testImplementation group: 'junit', name: 'junit', version: '4.8.2' + testImplementation group: 'junit', name: 'junit', version: '4.13.2' } -bootJar { - mainClassName = 'net.arin.rdap_bootstrap.spring.RdapBootstrapApp' +springBoot { + mainClass = 'net.arin.rdap_bootstrap.spring.RdapBootstrapApp' } bootRun { diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 8bf2c4c..0cd6ada 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https://services.gradle.org/distributions/gradle-6.6-all.zip +distributionUrl=https://services.gradle.org/distributions/gradle-8.8-all.zip diff --git a/src/main/resources/as_bootstrap.json b/src/main/resources/as_bootstrap.json index 4ad8ba0..e4704e3 100644 --- a/src/main/resources/as_bootstrap.json +++ b/src/main/resources/as_bootstrap.json @@ -1,6 +1,6 @@ { "description": "RDAP bootstrap file for Autonomous System Number allocations", - "publication": "2020-11-02T19:00:03Z", + "publication": "2024-04-10T20:00:01Z", "services": [ [ [ @@ -39,7 +39,17 @@ "139578-140601", "140602-141625", "141626-142649", - "142650-143673" + "142650-143673", + "143674-144697", + "144698-145721", + "145722-146745", + "146746-147769", + "147770-148793", + "148794-149817", + "149818-150841", + "150842-151865", + "151866-152889", + "152890-153913" ], [ "https://rdap.apnic.net/" @@ -85,7 +95,8 @@ "397213-398236", "398237-399260", "399261-400284", - "400285-401308" + "400285-401308", + "401309-402332" ], [ "https://rdap.arin.net/registry/", @@ -145,7 +156,10 @@ "209308-210331", "210332-211355", "211356-212379", - "212380-213403" + "212380-213403", + "213404-214427", + "214428-215451", + "215452-216475" ], [ "https://rdap.db.ripe.net/" @@ -167,7 +181,9 @@ "268701-269724", "269725-270748", "270749-271772", - "271773-272796" + "271773-272796", + "272797-273820", + "273821-274844" ], [ "https://rdap.lacnic.net/rdap/" diff --git a/src/main/resources/default_bootstrap.json b/src/main/resources/default_bootstrap.json index 25fa522..c7bd9ce 100644 --- a/src/main/resources/default_bootstrap.json +++ b/src/main/resources/default_bootstrap.json @@ -1,34 +1,19 @@ { "version": "1.0", - "publication": "2020-08-21T11:51:00-0400", + "publication": "2024-07-02T12:15:00-0400", "services": [ [ [ "ip", "autnum", - "nameserver" - ], - [ - "https://rdap.arin.net/registry/", - "http://rdap.arin.net/registry/" - ] - ], - [ - [ + "domain", + "nameserver", "entity" ], [ "https://rdap.arin.net/registry/", "http://rdap.arin.net/registry/" ] - ], - [ - [ - "domain" - ], - [ - "https://rdap.afilias.net/rdap/info/" - ] ] ] } \ No newline at end of file diff --git a/src/main/resources/domain_bootstrap.json b/src/main/resources/domain_bootstrap.json index 4a6acd7..ccdc2ce 100644 --- a/src/main/resources/domain_bootstrap.json +++ b/src/main/resources/domain_bootstrap.json @@ -1,130 +1,126 @@ { "description": "RDAP bootstrap file for Domain Name System registrations", - "publication": "2020-11-04T22:00:04Z", + "publication": "2024-06-20T18:00:02Z", "services": [ [ [ - "nowruz", - "pars", - "shia", - "tci", - "xn--mgbt3dhd" + "kg" ], [ - "https://api.rdap.agitsys.net/" + "http://rdap.cctld.kg/" ] ], [ [ - "xn--p1acf" + "music" ], [ - "https://api.rdap.nic.xn--p1acf/" + "http://rdap.centralnic.com/music/" ] ], [ [ - "moscow" + "cpa" ], [ - "https://flexireg.net/moscow/rdap/" + "http://rdap.nic.cpa/" ] ], [ [ - "xn--80adxhks" + "merckmsd" ], [ - "https://flexireg.net/xn--80adxhks/rdap/" + "http://rdap.nic.merckmsd/" ] ], [ [ - "samsung", - "xn--cg4bki" + "msd" ], [ - "https://nic.samsung:8443/rdap/" + "http://rdap.nic.msd/" ] ], [ [ - "xin" + "tattoo" ], [ - "https://rdap.aceregistry.net/rdap/xin/" + "http://rdap.nic.tattoo/" ] ], [ [ - "abarth" + "nowruz" ], [ - "https://rdap.afilias-srs.net/rdap/abarth/" + "https://api.rdap.nic.nowruz/" ] ], [ [ - "abbott" + "pars" ], [ - "https://rdap.afilias-srs.net/rdap/abbott/" + "https://api.rdap.nic.pars/" ] ], [ [ - "abbvie" + "shia" ], [ - "https://rdap.afilias-srs.net/rdap/abbvie/" + "https://api.rdap.nic.shia/" ] ], [ [ - "agakhan" + "tci" ], [ - "https://rdap.afilias-srs.net/rdap/agakhan/" + "https://api.rdap.nic.tci/" ] ], [ [ - "akdn" + "xn--mgbt3dhd" ], [ - "https://rdap.afilias-srs.net/rdap/akdn/" + "https://api.rdap.nic.xn--mgbt3dhd/" ] ], [ [ - "alfaromeo" + "xn--p1acf" ], [ - "https://rdap.afilias-srs.net/rdap/alfaromeo/" + "https://api.rdap.nic.xn--p1acf/" ] ], [ [ - "alibaba" + "moscow" ], [ - "https://rdap.afilias-srs.net/rdap/alibaba/" + "https://flexireg.net/moscow/rdap/" ] ], [ [ - "alipay" + "xn--80adxhks" ], [ - "https://rdap.afilias-srs.net/rdap/alipay/" + "https://flexireg.net/xn--80adxhks/rdap/" ] ], [ [ - "allstate" + "samsung", + "xn--cg4bki" ], [ - "https://rdap.afilias-srs.net/rdap/allstate/" + "https://nic.samsung:8443/rdap/" ] ], [ @@ -137,402 +133,386 @@ ], [ [ - "apple" - ], - [ - "https://rdap.afilias-srs.net/rdap/apple/" - ] - ], - [ - [ - "asia" - ], - [ - "https://rdap.afilias-srs.net/rdap/asia/" - ] - ], - [ - [ - "audi" + "shaw" ], [ - "https://rdap.afilias-srs.net/rdap/audi/" + "https://rdap.afilias-srs.net/rdap/shaw/" ] ], [ [ - "autos" + "tvs" ], [ - "https://rdap.afilias-srs.net/rdap/autos/" + "https://rdap.afilias-srs.net/rdap/tvs/" ] ], [ [ - "avianca" + "ca" ], [ - "https://rdap.afilias-srs.net/rdap/avianca/" + "https://rdap.ca.fury.ca/rdap/" ] ], [ [ - "bcg" + "uz" ], [ - "https://rdap.afilias-srs.net/rdap/bcg/" + "https://rdap.cctld.uz/" ] ], [ [ - "beats" + "allfinanz" ], [ - "https://rdap.afilias-srs.net/rdap/beats/" + "https://rdap.centralnic.com/allfinanz/" ] ], [ [ - "bestbuy" + "art" ], [ - "https://rdap.afilias-srs.net/rdap/bestbuy/" + "https://rdap.centralnic.com/art/" ] ], [ [ - "blockbuster" + "audio" ], [ - "https://rdap.afilias-srs.net/rdap/blockbuster/" + "https://rdap.centralnic.com/audio/" ] ], [ [ - "bnpparibas" + "auto" ], [ - "https://rdap.afilias-srs.net/rdap/bnpparibas/" + "https://rdap.centralnic.com/auto/" ] ], [ [ - "boats" + "autos" ], [ - "https://rdap.afilias-srs.net/rdap/boats/" + "https://rdap.centralnic.com/autos/" ] ], [ [ - "boehringer" + "baby" ], [ - "https://rdap.afilias-srs.net/rdap/boehringer/" + "https://rdap.centralnic.com/baby/" ] ], [ [ - "bugatti" + "basketball" ], [ - "https://rdap.afilias-srs.net/rdap/bugatti/" + "https://rdap.centralnic.com/basketball/" ] ], [ [ - "case" + "beauty" ], [ - "https://rdap.afilias-srs.net/rdap/case/" + "https://rdap.centralnic.com/beauty/" ] ], [ [ - "caseih" + "best" ], [ - "https://rdap.afilias-srs.net/rdap/caseih/" + "https://rdap.centralnic.com/best/" ] ], [ [ - "cbs" + "blog" ], [ - "https://rdap.afilias-srs.net/rdap/cbs/" + "https://rdap.centralnic.com/blog/" ] ], [ [ - "ceb" + "bmw" ], [ - "https://rdap.afilias-srs.net/rdap/ceb/" + "https://rdap.centralnic.com/bmw/" ] ], [ [ - "cern" + "boats" ], [ - "https://rdap.afilias-srs.net/rdap/cern/" + "https://rdap.centralnic.com/boats/" ] ], [ [ - "cipriani" + "bond" ], [ - "https://rdap.afilias-srs.net/rdap/cipriani/" + "https://rdap.centralnic.com/bond/" ] ], [ [ - "clinique" + "box" ], [ - "https://rdap.afilias-srs.net/rdap/clinique/" + "https://rdap.centralnic.com/box/" ] ], [ [ - "creditunion" + "build" ], [ - "https://rdap.afilias-srs.net/rdap/creditunion/" + "https://rdap.centralnic.com/build/" ] ], [ [ - "cruise" + "cam" ], [ - "https://rdap.afilias-srs.net/rdap/cruise/" + "https://rdap.centralnic.com/cam/" ] ], [ [ - "dabur" + "car" ], [ - "https://rdap.afilias-srs.net/rdap/dabur/" + "https://rdap.centralnic.com/car/" ] ], [ [ - "data" + "cars" ], [ - "https://rdap.afilias-srs.net/rdap/data/" + "https://rdap.centralnic.com/cars/" ] ], [ [ - "delta" + "case" ], [ - "https://rdap.afilias-srs.net/rdap/delta/" + "https://rdap.centralnic.com/case/" ] ], [ [ - "dish" + "ceo" ], [ - "https://rdap.afilias-srs.net/rdap/dish/" + "https://rdap.centralnic.com/ceo/" ] ], [ [ - "dot" + "cfd" ], [ - "https://rdap.afilias-srs.net/rdap/dot/" + "https://rdap.centralnic.com/cfd/" ] ], [ [ - "dtv" + "christmas" ], [ - "https://rdap.afilias-srs.net/rdap/dtv/" + "https://rdap.centralnic.com/christmas/" ] ], [ [ - "dunlop" + "college" ], [ - "https://rdap.afilias-srs.net/rdap/dunlop/" + "https://rdap.centralnic.com/college/" ] ], [ [ - "dvr" + "cyou" ], [ - "https://rdap.afilias-srs.net/rdap/dvr/" + "https://rdap.centralnic.com/cyou/" ] ], [ [ - "eco" + "dealer" ], [ - "https://rdap.afilias-srs.net/rdap/eco/" + "https://rdap.centralnic.com/dealer/" ] ], [ [ - "edeka" + "deloitte" ], [ - "https://rdap.afilias-srs.net/rdap/edeka/" + "https://rdap.centralnic.com/deloitte/" ] ], [ [ - "emerck" + "dhl" ], [ - "https://rdap.afilias-srs.net/rdap/emerck/" + "https://rdap.centralnic.com/dhl/" ] ], [ [ - "extraspace" + "diet" ], [ - "https://rdap.afilias-srs.net/rdap/extraspace/" + "https://rdap.centralnic.com/diet/" ] ], [ [ - "fage" + "dvag" ], [ - "https://rdap.afilias-srs.net/rdap/fage/" + "https://rdap.centralnic.com/dvag/" ] ], [ [ - "fedex" + "fans" ], [ - "https://rdap.afilias-srs.net/rdap/fedex/" + "https://rdap.centralnic.com/fans/" ] ], [ [ - "ferrari" + "feedback" ], [ - "https://rdap.afilias-srs.net/rdap/ferrari/" + "https://rdap.centralnic.com/feedback/" ] ], [ [ - "fiat" + "flowers" ], [ - "https://rdap.afilias-srs.net/rdap/fiat/" + "https://rdap.centralnic.com/flowers/" ] ], [ [ - "fido" + "fm" ], [ - "https://rdap.afilias-srs.net/rdap/fido/" + "https://rdap.centralnic.com/fm/" ] ], [ [ - "frogans" + "fo" ], [ - "https://rdap.afilias-srs.net/rdap/frogans/" + "https://rdap.centralnic.com/fo/" ] ], [ [ - "gallup" + "forum" ], [ - "https://rdap.afilias-srs.net/rdap/gallup/" + "https://rdap.centralnic.com/forum/" ] ], [ [ - "global" + "fresenius" ], [ - "https://rdap.afilias-srs.net/rdap/global/" + "https://rdap.centralnic.com/fresenius/" ] ], [ [ - "godaddy" + "frl" ], [ - "https://rdap.afilias-srs.net/rdap/godaddy/" + "https://rdap.centralnic.com/frl/" ] ], [ [ - "goodyear" + "fun" ], [ - "https://rdap.afilias-srs.net/rdap/goodyear/" + "https://rdap.centralnic.com/fun/" ] ], [ [ - "hdfc" + "game" ], [ - "https://rdap.afilias-srs.net/rdap/hdfc/" + "https://rdap.centralnic.com/game/" ] ], [ [ - "hdfcbank" + "gd" ], [ - "https://rdap.afilias-srs.net/rdap/hdfcbank/" + "https://rdap.centralnic.com/gd/" ] ], [ [ - "helsinki" + "gent" ], [ - "https://rdap.afilias-srs.net/rdap/helsinki/" + "https://rdap.centralnic.com/gent/" ] ], [ [ - "hermes" + "guitars" ], [ - "https://rdap.afilias-srs.net/rdap/hermes/" + "https://rdap.centralnic.com/guitars/" ] ], [ [ - "hkt" + "hair" ], [ - "https://rdap.afilias-srs.net/rdap/hkt/" + "https://rdap.centralnic.com/hair/" ] ], [ [ - "homedepot" + "help" ], [ - "https://rdap.afilias-srs.net/rdap/homedepot/" + "https://rdap.centralnic.com/help/" ] ], [ @@ -540,6135 +520,4684 @@ "homes" ], [ - "https://rdap.afilias-srs.net/rdap/homes/" - ] - ], - [ - [ - "hughes" - ], - [ - "https://rdap.afilias-srs.net/rdap/hughes/" - ] - ], - [ - [ - "icbc" - ], - [ - "https://rdap.afilias-srs.net/rdap/icbc/" - ] - ], - [ - [ - "imamat" - ], - [ - "https://rdap.afilias-srs.net/rdap/imamat/" - ] - ], - [ - [ - "ismaili" - ], - [ - "https://rdap.afilias-srs.net/rdap/ismaili/" + "https://rdap.centralnic.com/homes/" ] ], [ [ - "ist" + "host" ], [ - "https://rdap.afilias-srs.net/rdap/ist/" + "https://rdap.centralnic.com/host/" ] ], [ [ - "istanbul" + "hosting" ], [ - "https://rdap.afilias-srs.net/rdap/istanbul/" + "https://rdap.centralnic.com/hosting/" ] ], [ [ - "itv" + "icu" ], [ - "https://rdap.afilias-srs.net/rdap/itv/" + "https://rdap.centralnic.com/icu/" ] ], [ [ - "iveco" + "inc" ], [ - "https://rdap.afilias-srs.net/rdap/iveco/" + "https://rdap.centralnic.com/inc/" ] ], [ [ - "jcp" + "kfh" ], [ - "https://rdap.afilias-srs.net/rdap/jcp/" + "https://rdap.centralnic.com/kfh/" ] ], [ [ - "jeep" + "kpn" ], [ - "https://rdap.afilias-srs.net/rdap/jeep/" + "https://rdap.centralnic.com/kpn/" ] ], [ [ - "jio" + "kred" ], [ - "https://rdap.afilias-srs.net/rdap/jio/" + "https://rdap.centralnic.com/kred/" ] ], [ [ - "jll" + "lat" ], [ - "https://rdap.afilias-srs.net/rdap/jll/" + "https://rdap.centralnic.com/lat/" ] ], [ [ - "kosher" + "lidl" ], [ - "https://rdap.afilias-srs.net/rdap/kosher/" + "https://rdap.centralnic.com/lidl/" ] ], [ [ - "lamborghini" + "llp" ], [ - "https://rdap.afilias-srs.net/rdap/lamborghini/" + "https://rdap.centralnic.com/llp/" ] ], [ [ - "lamer" + "lol" ], [ - "https://rdap.afilias-srs.net/rdap/lamer/" + "https://rdap.centralnic.com/lol/" ] ], [ [ - "lancia" + "london" ], [ - "https://rdap.afilias-srs.net/rdap/lancia/" + "https://rdap.centralnic.com/london/" ] ], [ [ - "lasalle" + "lpl" ], [ - "https://rdap.afilias-srs.net/rdap/lasalle/" + "https://rdap.centralnic.com/lpl/" ] ], [ [ - "latino" + "lplfinancial" ], [ - "https://rdap.afilias-srs.net/rdap/latino/" + "https://rdap.centralnic.com/lplfinancial/" ] ], [ [ - "lds" + "luxury" ], [ - "https://rdap.afilias-srs.net/rdap/lds/" + "https://rdap.centralnic.com/luxury/" ] ], [ [ - "locker" + "makeup" ], [ - "https://rdap.afilias-srs.net/rdap/locker/" + "https://rdap.centralnic.com/makeup/" ] ], [ [ - "ltda" + "mini" ], [ - "https://rdap.afilias-srs.net/rdap/ltda/" + "https://rdap.centralnic.com/mini/" ] ], [ [ - "marriott" + "mom" ], [ - "https://rdap.afilias-srs.net/rdap/marriott/" + "https://rdap.centralnic.com/mom/" ] ], [ [ - "maserati" + "monster" ], [ - "https://rdap.afilias-srs.net/rdap/maserati/" + "https://rdap.centralnic.com/monster/" ] ], [ [ - "mckinsey" + "motorcycles" ], [ - "https://rdap.afilias-srs.net/rdap/mckinsey/" + "https://rdap.centralnic.com/motorcycles/" ] ], [ [ - "mit" + "nokia" ], [ - "https://rdap.afilias-srs.net/rdap/mit/" + "https://rdap.centralnic.com/nokia/" ] ], [ [ - "mobile" + "online" ], [ - "https://rdap.afilias-srs.net/rdap/mobile/" + "https://rdap.centralnic.com/online/" ] ], [ [ - "mormon" + "ooo" ], [ - "https://rdap.afilias-srs.net/rdap/mormon/" + "https://rdap.centralnic.com/ooo/" ] ], [ [ - "motorcycles" + "pics" ], [ - "https://rdap.afilias-srs.net/rdap/motorcycles/" + "https://rdap.centralnic.com/pics/" ] ], [ [ - "newholland" + "pid" ], [ - "https://rdap.afilias-srs.net/rdap/newholland/" + "https://rdap.centralnic.com/pid/" ] ], [ [ - "nokia" + "pohl" ], [ - "https://rdap.afilias-srs.net/rdap/nokia/" + "https://rdap.centralnic.com/pohl/" ] ], [ [ - "nowtv" + "press" ], [ - "https://rdap.afilias-srs.net/rdap/nowtv/" + "https://rdap.centralnic.com/press/" ] ], [ [ - "nra" + "protection" ], [ - "https://rdap.afilias-srs.net/rdap/nra/" + "https://rdap.centralnic.com/protection/" ] ], [ [ - "ollo" + "pw" ], [ - "https://rdap.afilias-srs.net/rdap/ollo/" + "https://rdap.centralnic.com/pw/" ] ], [ [ - "onl" + "qpon" ], [ - "https://rdap.afilias-srs.net/rdap/onl/" + "https://rdap.centralnic.com/qpon/" ] ], [ [ - "origins" + "quest" ], [ - "https://rdap.afilias-srs.net/rdap/origins/" + "https://rdap.centralnic.com/quest/" ] ], [ [ - "ott" + "reit" ], [ - "https://rdap.afilias-srs.net/rdap/ott/" + "https://rdap.centralnic.com/reit/" ] ], [ [ - "pccw" + "rent" ], [ - "https://rdap.afilias-srs.net/rdap/pccw/" + "https://rdap.centralnic.com/rent/" ] ], [ [ - "phone" + "rugby" ], [ - "https://rdap.afilias-srs.net/rdap/phone/" + "https://rdap.centralnic.com/rugby/" ] ], [ [ - "pnc" + "ruhr" ], [ - "https://rdap.afilias-srs.net/rdap/pnc/" + "https://rdap.centralnic.com/ruhr/" ] ], [ [ - "post" + "saarland" ], [ - "https://rdap.afilias-srs.net/rdap/post/" + "https://rdap.centralnic.com/saarland/" ] ], [ [ - "progressive" + "sbs" ], [ - "https://rdap.afilias-srs.net/rdap/progressive/" + "https://rdap.centralnic.com/sbs/" ] ], [ [ - "pwc" + "schwarz" ], [ - "https://rdap.afilias-srs.net/rdap/pwc/" + "https://rdap.centralnic.com/schwarz/" ] ], [ [ - "redstone" + "security" ], [ - "https://rdap.afilias-srs.net/rdap/redstone/" + "https://rdap.centralnic.com/security/" ] ], [ [ - "redumbrella" + "sfr" ], [ - "https://rdap.afilias-srs.net/rdap/redumbrella/" + "https://rdap.centralnic.com/sfr/" ] ], [ [ - "reliance" + "site" ], [ - "https://rdap.afilias-srs.net/rdap/reliance/" + "https://rdap.centralnic.com/site/" ] ], [ [ - "rich" + "skin" ], [ - "https://rdap.afilias-srs.net/rdap/rich/" + "https://rdap.centralnic.com/skin/" ] ], [ [ - "richardli" + "smart" ], [ - "https://rdap.afilias-srs.net/rdap/richardli/" + "https://rdap.centralnic.com/smart/" ] ], [ [ - "ril" + "space" ], [ - "https://rdap.afilias-srs.net/rdap/ril/" + "https://rdap.centralnic.com/space/" ] ], [ [ - "rogers" + "stc" ], [ - "https://rdap.afilias-srs.net/rdap/rogers/" + "https://rdap.centralnic.com/stc/" ] ], [ [ - "sbi" + "stcgroup" ], [ - "https://rdap.afilias-srs.net/rdap/sbi/" + "https://rdap.centralnic.com/stcgroup/" ] ], [ [ - "schaeffler" + "storage" ], [ - "https://rdap.afilias-srs.net/rdap/schaeffler/" + "https://rdap.centralnic.com/storage/" ] ], [ [ - "scholarships" + "store" ], [ - "https://rdap.afilias-srs.net/rdap/scholarships/" + "https://rdap.centralnic.com/store/" ] ], [ [ - "sew" + "tech" ], [ - "https://rdap.afilias-srs.net/rdap/sew/" + "https://rdap.centralnic.com/tech/" ] ], [ [ - "shaw" + "theatre" ], [ - "https://rdap.afilias-srs.net/rdap/shaw/" + "https://rdap.centralnic.com/theatre/" ] ], [ [ - "showtime" + "tickets" ], [ - "https://rdap.afilias-srs.net/rdap/showtime/" + "https://rdap.centralnic.com/tickets/" ] ], [ [ - "shriram" + "tui" ], [ - "https://rdap.afilias-srs.net/rdap/shriram/" + "https://rdap.centralnic.com/tui/" ] ], [ [ - "sina" + "uno" ], [ - "https://rdap.afilias-srs.net/rdap/sina/" + "https://rdap.centralnic.com/uno/" ] ], [ [ - "sling" + "vg" ], [ - "https://rdap.afilias-srs.net/rdap/sling/" + "https://rdap.centralnic.com/vg/" ] ], [ [ - "srl" + "viva" ], [ - "https://rdap.afilias-srs.net/rdap/srl/" + "https://rdap.centralnic.com/viva/" ] ], [ [ - "stada" + "website" ], [ - "https://rdap.afilias-srs.net/rdap/stada/" + "https://rdap.centralnic.com/website/" ] ], [ [ - "star" + "wme" ], [ - "https://rdap.afilias-srs.net/rdap/star/" + "https://rdap.centralnic.com/wme/" ] ], [ [ - "statebank" + "xn--4gbrim" ], [ - "https://rdap.afilias-srs.net/rdap/statebank/" + "https://rdap.centralnic.com/xn--4gbrim/" ] ], [ [ - "stockholm" + "xn--ngbe9e0a" ], [ - "https://rdap.afilias-srs.net/rdap/stockholm/" + "https://rdap.centralnic.com/xn--ngbe9e0a/" ] ], [ [ - "temasek" + "xn--vermgensberater-ctb" ], [ - "https://rdap.afilias-srs.net/rdap/temasek/" + "https://rdap.centralnic.com/xn--vermgensberater-ctb/" ] ], [ [ - "thd" + "xn--vermgensberatung-pwb" ], [ - "https://rdap.afilias-srs.net/rdap/thd/" + "https://rdap.centralnic.com/xn--vermgensberatung-pwb/" ] ], [ [ - "travelers" + "xyz" ], [ - "https://rdap.afilias-srs.net/rdap/travelers/" + "https://rdap.centralnic.com/xyz/" ] ], [ [ - "travelersinsurance" + "yachts" ], [ - "https://rdap.afilias-srs.net/rdap/travelersinsurance/" + "https://rdap.centralnic.com/yachts/" ] ], [ [ - "trv" + "zuerich" ], [ - "https://rdap.afilias-srs.net/rdap/trv/" + "https://rdap.centralnic.com/zuerich/" ] ], [ [ - "tvs" + "xn--55qw42g", + "xn--zfr164b" ], [ - "https://rdap.afilias-srs.net/rdap/tvs/" + "https://rdap.conac.cn/" ] ], [ [ - "ups" + "crown" ], [ - "https://rdap.afilias-srs.net/rdap/ups/" + "https://rdap.crown.fury.ca/rdap/" ] ], [ [ - "vegas" + "xn--5tzm5g" ], [ - "https://rdap.afilias-srs.net/rdap/vegas/" + "https://rdap.donuts.co/rdap/" ] ], [ [ - "vig" + "eco" ], [ - "https://rdap.afilias-srs.net/rdap/vig/" + "https://rdap.eco.fury.ca/rdap/" ] ], [ [ - "viking" + "fi" ], [ - "https://rdap.afilias-srs.net/rdap/viking/" + "https://rdap.fi/rdap/rdap/" ] ], [ [ - "volkswagen" - ], - [ - "https://rdap.afilias-srs.net/rdap/volkswagen/" - ] - ], - [ - [ - "weibo" - ], - [ - "https://rdap.afilias-srs.net/rdap/weibo/" - ] - ], - [ - [ - "wolterskluwer" - ], - [ - "https://rdap.afilias-srs.net/rdap/wolterskluwer/" - ] - ], - [ - [ - "xn--3oq18vl8pn36a" - ], - [ - "https://rdap.afilias-srs.net/rdap/xn--3oq18vl8pn36a/" - ] - ], - [ - [ - "xn--4gbrim" - ], - [ - "https://rdap.afilias-srs.net/rdap/xn--4gbrim/" - ] - ], - [ - [ - "xn--9krt00a" - ], - [ - "https://rdap.afilias-srs.net/rdap/xn--9krt00a/" - ] - ], - [ - [ - "xn--b4w605ferd" - ], - [ - "https://rdap.afilias-srs.net/rdap/xn--b4w605ferd/" - ] - ], - [ - [ - "xn--fzys8d69uvgm" - ], - [ - "https://rdap.afilias-srs.net/rdap/xn--fzys8d69uvgm/" - ] - ], - [ - [ - "xn--jlq61u9w7b" - ], - [ - "https://rdap.afilias-srs.net/rdap/xn--jlq61u9w7b/" - ] - ], - [ - [ - "yachts" - ], - [ - "https://rdap.afilias-srs.net/rdap/yachts/" - ] - ], - [ - [ - "zara" - ], - [ - "https://rdap.afilias-srs.net/rdap/zara/" - ] - ], - [ - [ - "archi" - ], - [ - "https://rdap.afilias.net/rdap/archi/" - ] - ], - [ - [ - "bet" - ], - [ - "https://rdap.afilias.net/rdap/bet/" - ] - ], - [ - [ - "bio" - ], - [ - "https://rdap.afilias.net/rdap/bio/" - ] - ], - [ - [ - "black" - ], - [ - "https://rdap.afilias.net/rdap/black/" - ] - ], - [ - [ - "blue" - ], - [ - "https://rdap.afilias.net/rdap/blue/" - ] - ], - [ - [ - "green" - ], - [ - "https://rdap.afilias.net/rdap/green/" - ] - ], - [ - [ - "info" - ], - [ - "https://rdap.afilias.net/rdap/info/" - ] - ], - [ - [ - "kim" - ], - [ - "https://rdap.afilias.net/rdap/kim/" - ] - ], - [ - [ - "lgbt" - ], - [ - "https://rdap.afilias.net/rdap/lgbt/" - ] - ], - [ - [ - "llc" - ], - [ - "https://rdap.afilias.net/rdap/llc/" - ] - ], - [ - [ - "lotto" - ], - [ - "https://rdap.afilias.net/rdap/lotto/" - ] - ], - [ - [ - "mobi" - ], - [ - "https://rdap.afilias.net/rdap/mobi/" - ] - ], - [ - [ - "organic" - ], - [ - "https://rdap.afilias.net/rdap/organic/" - ] - ], - [ - [ - "pet" - ], - [ - "https://rdap.afilias.net/rdap/pet/" - ] - ], - [ - [ - "pink" - ], - [ - "https://rdap.afilias.net/rdap/pink/" - ] - ], - [ - [ - "poker" - ], - [ - "https://rdap.afilias.net/rdap/poker/" - ] - ], - [ - [ - "pro" - ], - [ - "https://rdap.afilias.net/rdap/pro/" - ] - ], - [ - [ - "promo" - ], - [ - "https://rdap.afilias.net/rdap/promo/" - ] - ], - [ - [ - "red" - ], - [ - "https://rdap.afilias.net/rdap/red/" - ] - ], - [ - [ - "shiksha" - ], - [ - "https://rdap.afilias.net/rdap/shiksha/" - ] - ], - [ - [ - "ski" - ], - [ - "https://rdap.afilias.net/rdap/ski/" - ] - ], - [ - [ - "vote" - ], - [ - "https://rdap.afilias.net/rdap/vote/" - ] - ], - [ - [ - "voto" - ], - [ - "https://rdap.afilias.net/rdap/voto/" - ] - ], - [ - [ - "xn--5tzm5g" - ], - [ - "https://rdap.afilias.net/rdap/xn--5tzm5g/" - ] - ], - [ - [ - "xn--6frz82g" - ], - [ - "https://rdap.afilias.net/rdap/xn--6frz82g/" - ] - ], - [ - [ - "ca" - ], - [ - "https://rdap.ca.fury.ca/rdap/" - ] - ], - [ - [ - "adac" - ], - [ - "https://rdap.centralnic.com/adac/" - ] - ], - [ - [ - "allfinanz" - ], - [ - "https://rdap.centralnic.com/allfinanz/" - ] - ], - [ - [ - "art" - ], - [ - "https://rdap.centralnic.com/art/" - ] - ], - [ - [ - "baby" - ], - [ - "https://rdap.centralnic.com/baby/" - ] - ], - [ - [ - "bar" - ], - [ - "https://rdap.centralnic.com/bar/" - ] - ], - [ - [ - "basketball" - ], - [ - "https://rdap.centralnic.com/basketball/" - ] - ], - [ - [ - "best" - ], - [ - "https://rdap.centralnic.com/best/" - ] - ], - [ - [ - "blog" - ], - [ - "https://rdap.centralnic.com/blog/" - ] - ], - [ - [ - "bmw" - ], - [ - "https://rdap.centralnic.com/bmw/" - ] - ], - [ - [ - "bond" - ], - [ - "https://rdap.centralnic.com/bond/" - ] - ], - [ - [ - "cam" - ], - [ - "https://rdap.centralnic.com/cam/" - ] - ], - [ - [ - "ceo" - ], - [ - "https://rdap.centralnic.com/ceo/" - ] - ], - [ - [ - "college" - ], - [ - "https://rdap.centralnic.com/college/" - ] - ], - [ - [ - "coop" - ], - [ - "https://rdap.centralnic.com/coop/" - ] - ], - [ - [ - "cyou" - ], - [ - "https://rdap.centralnic.com/cyou/" - ] - ], - [ - [ - "deloitte" - ], - [ - "https://rdap.centralnic.com/deloitte/" - ] - ], - [ - [ - "desi" - ], - [ - "https://rdap.centralnic.com/desi/" - ] - ], - [ - [ - "design" - ], - [ - "https://rdap.centralnic.com/design/" - ] - ], - [ - [ - "dhl" - ], - [ - "https://rdap.centralnic.com/dhl/" - ] - ], - [ - [ - "dvag" - ], - [ - "https://rdap.centralnic.com/dvag/" - ] - ], - [ - [ - "etisalat" - ], - [ - "https://rdap.centralnic.com/etisalat/" - ] - ], - [ - [ - "fans" - ], - [ - "https://rdap.centralnic.com/fans/" - ] - ], - [ - [ - "feedback" - ], - [ - "https://rdap.centralnic.com/feedback/" - ] - ], - [ - [ - "fo" - ], - [ - "https://rdap.centralnic.com/fo/" - ] - ], - [ - [ - "forum" - ], - [ - "https://rdap.centralnic.com/forum/" - ] - ], - [ - [ - "fresenius" - ], - [ - "https://rdap.centralnic.com/fresenius/" - ] - ], - [ - [ - "frl" - ], - [ - "https://rdap.centralnic.com/frl/" - ] - ], - [ - [ - "fun" - ], - [ - "https://rdap.centralnic.com/fun/" - ] - ], - [ - [ - "gay" - ], - [ - "https://rdap.centralnic.com/gay/" - ] - ], - [ - [ - "gd" - ], - [ - "https://rdap.centralnic.com/gd/" - ] - ], - [ - [ - "gent" - ], - [ - "https://rdap.centralnic.com/gent/" - ] - ], - [ - [ - "hair" - ], - [ - "https://rdap.centralnic.com/hair/" - ] - ], - [ - [ - "host" - ], - [ - "https://rdap.centralnic.com/host/" - ] - ], - [ - [ - "icu" - ], - [ - "https://rdap.centralnic.com/icu/" - ] - ], - [ - [ - "ink" - ], - [ - "https://rdap.centralnic.com/ink/" - ] - ], - [ - [ - "kfh" - ], - [ - "https://rdap.centralnic.com/kfh/" - ] - ], - [ - [ - "kpn" - ], - [ - "https://rdap.centralnic.com/kpn/" - ] - ], - [ - [ - "kred" - ], - [ - "https://rdap.centralnic.com/kred/" - ] - ], - [ - [ - "lidl" - ], - [ - "https://rdap.centralnic.com/lidl/" - ] - ], - [ - [ - "love" - ], - [ - "https://rdap.centralnic.com/love/" - ] - ], - [ - [ - "lpl" - ], - [ - "https://rdap.centralnic.com/lpl/" - ] - ], - [ - [ - "lplfinancial" - ], - [ - "https://rdap.centralnic.com/lplfinancial/" - ] - ], - [ - [ - "makeup" - ], - [ - "https://rdap.centralnic.com/makeup/" - ] - ], - [ - [ - "mini" - ], - [ - "https://rdap.centralnic.com/mini/" - ] - ], - [ - [ - "monster" - ], - [ - "https://rdap.centralnic.com/monster/" - ] - ], - [ - [ - "observer" - ], - [ - "https://rdap.centralnic.com/observer/" - ] - ], - [ - [ - "online" - ], - [ - "https://rdap.centralnic.com/online/" - ] - ], - [ - [ - "ooo" - ], - [ - "https://rdap.centralnic.com/ooo/" - ] - ], - [ - [ - "pid" - ], - [ - "https://rdap.centralnic.com/pid/" - ] - ], - [ - [ - "pohl" - ], - [ - "https://rdap.centralnic.com/pohl/" - ] - ], - [ - [ - "press" - ], - [ - "https://rdap.centralnic.com/press/" - ] - ], - [ - [ - "protection" - ], - [ - "https://rdap.centralnic.com/protection/" - ] - ], - [ - [ - "pw" - ], - [ - "https://rdap.centralnic.com/pw/" - ] - ], - [ - [ - "realty" - ], - [ - "https://rdap.centralnic.com/realty/" - ] - ], - [ - [ - "reit" - ], - [ - "https://rdap.centralnic.com/reit/" - ] - ], - [ - [ - "rent" - ], - [ - "https://rdap.centralnic.com/rent/" - ] - ], - [ - [ - "rest" - ], - [ - "https://rdap.centralnic.com/rest/" - ] - ], - [ - [ - "rugby" - ], - [ - "https://rdap.centralnic.com/rugby/" - ] - ], - [ - [ - "saarland" - ], - [ - "https://rdap.centralnic.com/saarland/" - ] - ], - [ - [ - "schwarz" - ], - [ - "https://rdap.centralnic.com/schwarz/" - ] - ], - [ - [ - "security" - ], - [ - "https://rdap.centralnic.com/security/" - ] - ], - [ - [ - "sfr" - ], - [ - "https://rdap.centralnic.com/sfr/" - ] - ], - [ - [ - "site" - ], - [ - "https://rdap.centralnic.com/site/" - ] - ], - [ - [ - "skin" - ], - [ - "https://rdap.centralnic.com/skin/" - ] - ], - [ - [ - "smart" - ], - [ - "https://rdap.centralnic.com/smart/" - ] - ], - [ - [ - "space" - ], - [ - "https://rdap.centralnic.com/space/" - ] - ], - [ - [ - "stc" - ], - [ - "https://rdap.centralnic.com/stc/" - ] - ], - [ - [ - "stcgroup" - ], - [ - "https://rdap.centralnic.com/stcgroup/" - ] - ], - [ - [ - "storage" - ], - [ - "https://rdap.centralnic.com/storage/" - ] - ], - [ - [ - "store" - ], - [ - "https://rdap.centralnic.com/store/" - ] - ], - [ - [ - "tech" - ], - [ - "https://rdap.centralnic.com/tech/" - ] - ], - [ - [ - "theatre" - ], - [ - "https://rdap.centralnic.com/theatre/" - ] - ], - [ - [ - "tickets" - ], - [ - "https://rdap.centralnic.com/tickets/" - ] - ], - [ - [ - "tui" - ], - [ - "https://rdap.centralnic.com/tui/" - ] - ], - [ - [ - "uno" - ], - [ - "https://rdap.centralnic.com/uno/" - ] - ], - [ - [ - "vg" - ], - [ - "https://rdap.centralnic.com/vg/" - ] - ], - [ - [ - "viva" - ], - [ - "https://rdap.centralnic.com/viva/" - ] - ], - [ - [ - "website" - ], - [ - "https://rdap.centralnic.com/website/" - ] - ], - [ - [ - "wiki" - ], - [ - "https://rdap.centralnic.com/wiki/" - ] - ], - [ - [ - "wme" - ], - [ - "https://rdap.centralnic.com/wme/" - ] - ], - [ - [ - "xn--mgbaakc7dvf" - ], - [ - "https://rdap.centralnic.com/xn--mgbaakc7dvf/" - ] - ], - [ - [ - "xn--ngbe9e0a" - ], - [ - "https://rdap.centralnic.com/xn--ngbe9e0a/" - ] - ], - [ - [ - "xn--vermgensberater-ctb" - ], - [ - "https://rdap.centralnic.com/xn--vermgensberater-ctb/" - ] - ], - [ - [ - "xn--vermgensberatung-pwb" - ], - [ - "https://rdap.centralnic.com/xn--vermgensberatung-pwb/" - ] - ], - [ - [ - "xyz" - ], - [ - "https://rdap.centralnic.com/xyz/" - ] - ], - [ - [ - "zuerich" - ], - [ - "https://rdap.centralnic.com/zuerich/" - ] - ], - [ - [ - "xn--55qw42g", - "xn--zfr164b" - ], - [ - "https://rdap.conac.cn/" - ] - ], - [ - [ - "academy", - "accountants", - "actor", - "agency", - "airforce", - "apartments", - "army", - "associates", - "attorney", - "auction", - "band", - "bargains", - "bike", - "bingo", - "boutique", - "builders", - "business", - "cab", - "cafe", - "camera", - "camp", - "capital", - "cards", - "care", - "careers", - "cash", - "casino", - "catering", - "center", - "charity", - "chat", - "cheap", - "church", - "city", - "claims", - "cleaning", - "clinic", - "clothing", - "coach", - "codes", - "coffee", - "community", - "company", - "computer", - "condos", - "construction", - "consulting", - "contact", - "contractors", - "cool", - "coupons", - "credit", - "creditcard", - "cruises", - "dance", - "dating", - "deals", - "degree", - "delivery", - "democrat", - "dental", - "dentist", - "diamonds", - "digital", - "direct", - "directory", - "discount", - "doctor", - "dog", - "domains", - "education", - "email", - "energy", - "engineer", - "engineering", - "enterprises", - "equipment", - "estate", - "events", - "exchange", - "expert", - "exposed", - "express", - "fail", - "family", - "fan", - "farm", - "finance", - "financial", - "fish", - "fitness", - "flights", - "florist", - "football", - "forsale", - "foundation", - "fund", - "furniture", - "futbol", - "fyi", - "gallery", - "games", - "gifts", - "gives", - "glass", - "gmbh", - "gold", - "golf", - "graphics", - "gratis", - "gripe", - "group", - "guide", - "guru", - "haus", - "healthcare", - "hockey", - "holdings", - "holiday", - "hospital", - "house", - "immo", - "immobilien", - "industries", - "institute", - "insure", - "international", - "investments", - "irish", - "jetzt", - "jewelry", - "kaufen", - "kitchen", - "land", - "lawyer", - "lease", - "legal", - "life", - "lighting", - "limited", - "limo", - "live", - "loans", - "ltd", - "maison", - "management", - "market", - "marketing", - "mba", - "media", - "memorial", - "moda", - "money", - "mortgage", - "movie", - "navy", - "network", - "news", - "ninja", - "partners", - "parts", - "photography", - "photos", - "pictures", - "pizza", - "place", - "plumbing", - "plus", - "productions", - "properties", - "pub", - "recipes", - "rehab", - "reise", - "reisen", - "rentals", - "repair", - "report", - "republican", - "restaurant", - "reviews", - "rip", - "rocks", - "run", - "sale", - "salon", - "sarl", - "school", - "schule", - "services", - "shoes", - "shopping", - "show", - "singles", - "soccer", - "social", - "software", - "solar", - "solutions", - "studio", - "style", - "supplies", - "supply", - "support", - "surgery", - "systems", - "tax", - "taxi", - "team", - "technology", - "tennis", - "theater", - "tienda", - "tips", - "tires", - "today", - "tools", - "tours", - "town", - "toys", - "training", - "university", - "vacations", - "ventures", - "vet", - "viajes", - "video", - "villas", - "vin", - "vision", - "voyage", - "watch", - "wine", - "works", - "world", - "wtf", - "xn--czrs0t", - "xn--fjq720a", - "xn--unup4y", - "xn--vhquv", - "zone" - ], - [ - "https://rdap.donuts.co/rdap/" - ] - ], - [ - [ - "bridgestone", - "brother", - "canon", - "datsun", - "dnp", - "epson", - "firestone", - "fujitsu", - "ggee", - "gmo", - "goldpoint", - "goo", - "hisamitsu", - "hitachi", - "honda", - "hyundai", - "infiniti", - "jcb", - "kddi", - "kia", - "komatsu", - "kyoto", - "lexus", - "lixil", - "lotte", - "mitsubishi", - "nagoya", - "nec", - "nhk", - "nico", - "nissan", - "okinawa", - "otsuka", - "panasonic", - "pioneer", - "playstation", - "ricoh", - "ryukyu", - "sharp", - "shop", - "softbank", - "sony", - "suzuki", - "tokyo", - "toray", - "toshiba", - "toyota", - "yodobashi", - "yokohama" - ], - [ - "https://rdap.gmoregistry.net/rdap/" - ] - ], - [ - [ - "bom", - "final", - "globo", - "natura", - "rio", - "uol" - ], - [ - "https://rdap.gtlds.nic.br/" - ] - ], - [ - [ - "is" - ], - [ - "https://rdap.isnic.is/rdap/" - ] - ], - [ - [ - "kiwi" - ], - [ - "https://rdap.kiwi.fury.ca/rdap/" - ] - ], - [ - [ - "mls" - ], - [ - "https://rdap.mls.fury.ca/rdap/" - ] - ], - [ - [ - "aaa" - ], - [ - "https://rdap.nic.aaa/" - ] - ], - [ - [ - "able" - ], - [ - "https://rdap.nic.able/" - ] - ], - [ - [ - "abudhabi" - ], - [ - "https://rdap.nic.abudhabi/" - ] - ], - [ - [ - "accountant" - ], - [ - "https://rdap.nic.accountant/" - ] - ], - [ - [ - "aco" - ], - [ - "https://rdap.nic.aco/" - ] - ], - [ - [ - "aetna" - ], - [ - "https://rdap.nic.aetna/" - ] - ], - [ - [ - "afl" - ], - [ - "https://rdap.nic.afl/" - ] - ], - [ - [ - "aig" - ], - [ - "https://rdap.nic.aig/" - ] - ], - [ - [ - "alsace" - ], - [ - "https://rdap.nic.alsace/" - ] - ], - [ - [ - "alstom" - ], - [ - "https://rdap.nic.alstom/" - ] - ], - [ - [ - "americanexpress" - ], - [ - "https://rdap.nic.americanexpress/" - ] - ], - [ - [ - "amex" - ], - [ - "https://rdap.nic.amex/" - ] - ], - [ - [ - "amica" - ], - [ - "https://rdap.nic.amica/" - ] - ], - [ - [ - "amsterdam" - ], - [ - "https://rdap.nic.amsterdam/" - ] - ], - [ - [ - "analytics" - ], - [ - "https://rdap.nic.analytics/" - ] - ], - [ - [ - "anz" - ], - [ - "https://rdap.nic.anz/" - ] - ], - [ - [ - "aquarelle" - ], - [ - "https://rdap.nic.aquarelle/" - ] - ], - [ - [ - "ar" - ], - [ - "https://rdap.nic.ar/" - ] - ], - [ - [ - "arab" - ], - [ - "https://rdap.nic.arab/" - ] - ], - [ - [ - "aramco" - ], - [ - "https://rdap.nic.aramco/" - ] - ], - [ - [ - "athleta" - ], - [ - "https://rdap.nic.athleta/" - ] - ], - [ - [ - "auspost" - ], - [ - "https://rdap.nic.auspost/" - ] - ], - [ - [ - "axa" - ], - [ - "https://rdap.nic.axa/" - ] - ], - [ - [ - "banamex" - ], - [ - "https://rdap.nic.banamex/" - ] - ], - [ - [ - "bananarepublic" - ], - [ - "https://rdap.nic.bananarepublic/" - ] - ], - [ - [ - "bank" - ], - [ - "https://rdap.nic.bank/" - ] - ], - [ - [ - "barcelona" - ], - [ - "https://rdap.nic.barcelona/" - ] - ], - [ - [ - "barclaycard" - ], - [ - "https://rdap.nic.barclaycard/" - ] - ], - [ - [ - "barclays" - ], - [ - "https://rdap.nic.barclays/" - ] - ], - [ - [ - "baseball" - ], - [ - "https://rdap.nic.baseball/" - ] - ], - [ - [ - "bauhaus" - ], - [ - "https://rdap.nic.bauhaus/" - ] - ], - [ - [ - "bcn" - ], - [ - "https://rdap.nic.bcn/" - ] - ], - [ - [ - "berlin" - ], - [ - "https://rdap.nic.berlin/v1/" - ] - ], - [ - [ - "bible" - ], - [ - "https://rdap.nic.bible/" - ] - ], - [ - [ - "bid" - ], - [ - "https://rdap.nic.bid/" - ] - ], - [ - [ - "biz" - ], - [ - "https://rdap.nic.biz/" - ] - ], - [ - [ - "booking" - ], - [ - "https://rdap.nic.booking/" - ] - ], - [ - [ - "bostik" - ], - [ - "https://rdap.nic.bostik/" - ] - ], - [ - [ - "box" - ], - [ - "https://rdap.nic.box/" - ] - ], - [ - [ - "brussels" - ], - [ - "https://rdap.nic.brussels/" - ] - ], - [ - [ - "build" - ], - [ - "https://rdap.nic.build/" - ] - ], - [ - [ - "buzz" - ], - [ - "https://rdap.nic.buzz/" - ] - ], - [ - [ - "bzh" - ], - [ - "https://rdap.nic.bzh/" - ] - ], - [ - [ - "calvinklein" - ], - [ - "https://rdap.nic.calvinklein/" - ] - ], - [ - [ - "cancerresearch" - ], - [ - "https://rdap.nic.cancerresearch/" - ] - ], - [ - [ - "caravan" - ], - [ - "https://rdap.nic.caravan/" - ] - ], - [ - [ - "cat" - ], - [ - "https://rdap.nic.cat/" - ] - ], - [ - [ - "catholic" - ], - [ - "https://rdap.nic.catholic/" - ] - ], - [ - [ - "cba" - ], - [ - "https://rdap.nic.cba/" - ] - ], - [ - [ - "cbn" - ], - [ - "https://rdap.nic.cbn/" - ] - ], - [ - [ - "cbre" - ], - [ - "https://rdap.nic.cbre/" - ] - ], - [ - [ - "chase" - ], - [ - "https://rdap.nic.chase/" - ] - ], - [ - [ - "chintai" - ], - [ - "https://rdap.nic.chintai/" - ] - ], - [ - [ - "cisco" - ], - [ - "https://rdap.nic.cisco/" - ] - ], - [ - [ - "citadel" - ], - [ - "https://rdap.nic.citadel/" - ] - ], - [ - [ - "citi" - ], - [ - "https://rdap.nic.citi/" - ] - ], - [ - [ - "cloud" - ], - [ - "https://rdap.nic.cloud/" - ] - ], - [ - [ - "club" - ], - [ - "https://rdap.nic.club/" - ] - ], - [ - [ - "commbank" - ], - [ - "https://rdap.nic.commbank/" - ] - ], - [ - [ - "compare" - ], - [ - "https://rdap.nic.compare/" - ] - ], - [ - [ - "corsica" - ], - [ - "https://rdap.nic.corsica/" - ] - ], - [ - [ - "coupon" - ], - [ - "https://rdap.nic.coupon/" - ] - ], - [ - [ - "courses" - ], - [ - "https://rdap.nic.courses/" - ] - ], - [ - [ - "cr" - ], - [ - "https://rdap.nic.cr/" - ] - ], - [ - [ - "cricket" - ], - [ - "https://rdap.nic.cricket/" - ] - ], - [ - [ - "cuisinella" - ], - [ - "https://rdap.nic.cuisinella/" - ] - ], - [ - [ - "cz" - ], - [ - "https://rdap.nic.cz/" - ] - ], - [ - [ - "date" - ], - [ - "https://rdap.nic.date/" - ] - ], - [ - [ - "dealer" - ], - [ - "https://rdap.nic.dealer/" - ] - ], - [ - [ - "dell" - ], - [ - "https://rdap.nic.dell/" - ] - ], - [ - [ - "discover" - ], - [ - "https://rdap.nic.discover/" - ] - ], - [ - [ - "download" - ], - [ - "https://rdap.nic.download/" - ] - ], - [ - [ - "dubai" - ], - [ - "https://rdap.nic.dubai/" - ] - ], - [ - [ - "dupont" - ], - [ - "https://rdap.nic.dupont/" - ] - ], - [ - [ - "earth" + "bridgestone", + "brother", + "canon", + "datsun", + "dnp", + "epson", + "firestone", + "fujitsu", + "ggee", + "gmo", + "goldpoint", + "goo", + "hisamitsu", + "hitachi", + "honda", + "hyundai", + "infiniti", + "jcb", + "kddi", + "kia", + "komatsu", + "kyoto", + "lexus", + "lotte", + "mitsubishi", + "nagoya", + "nec", + "nhk", + "nico", + "nissan", + "okinawa", + "otsuka", + "panasonic", + "playstation", + "ricoh", + "ryukyu", + "sharp", + "shop", + "softbank", + "sony", + "suzuki", + "tokyo", + "toray", + "toshiba", + "toyota", + "yodobashi", + "yokohama" ], [ - "https://rdap.nic.earth/" + "https://rdap.gmoregistry.net/rdap/" ] ], [ [ - "erni" + "bom", + "final", + "globo", + "rio", + "uol" ], [ - "https://rdap.nic.erni/" + "https://rdap.gtlds.nic.br/" ] ], [ [ - "eurovision" + "ua" ], [ - "https://rdap.nic.eurovision/" + "https://rdap.hostmaster.ua/" ] ], [ [ - "eus" + "int" ], [ - "https://rdap.nic.eus/" + "https://rdap.iana.org/" ] ], [ [ - "faith" + "abb", + "abbott", + "academy", + "accenture", + "accountants", + "actor", + "aeg", + "aero", + "agakhan", + "agency", + "airforce", + "akdn", + "alibaba", + "alipay", + "allstate", + "aol", + "apartments", + "apple", + "archi", + "army", + "arte", + "asda", + "asia", + "associates", + "attorney", + "auction", + "audi", + "band", + "barclaycard", + "barclays", + "barefoot", + "bargains", + "bbt", + "bcg", + "beats", + "bestbuy", + "bet", + "bike", + "bingo", + "bio", + "black", + "blockbuster", + "bloomberg", + "blue", + "bm", + "bms", + "bnpparibas", + "boehringer", + "bofa", + "bosch", + "boutique", + "bradesco", + "broker", + "builders", + "business", + "cab", + "cafe", + "camera", + "camp", + "capital", + "cards", + "care", + "careers", + "cash", + "casino", + "catering", + "center", + "cern", + "cfa", + "chanel", + "chat", + "cheap", + "church", + "cipriani", + "citadel", + "city", + "claims", + "cleaning", + "clinic", + "clinique", + "clothing", + "clubmed", + "coach", + "codes", + "coffee", + "community", + "company", + "computer", + "condos", + "construction", + "consulting", + "contact", + "contractors", + "cool", + "coupons", + "credit", + "creditcard", + "crs", + "cruise", + "cruises", + "dabur", + "dance", + "data", + "dating", + "deals", + "degree", + "delivery", + "delta", + "democrat", + "dental", + "dentist", + "diamonds", + "digital", + "direct", + "directory", + "discount", + "dish", + "doctor", + "dog", + "domains", + "dot", + "dtv", + "dunlop", + "dvr", + "edeka", + "education", + "email", + "emerck", + "energy", + "engineer", + "engineering", + "enterprises", + "equipment", + "ericsson", + "estate", + "events", + "exchange", + "expert", + "exposed", + "express", + "extraspace", + "fage", + "fail", + "family", + "fan", + "farm", + "fedex", + "ferrari", + "fidelity", + "fido", + "finance", + "financial", + "fish", + "fitness", + "flights", + "florist", + "football", + "forex", + "forsale", + "frogans", + "fund", + "furniture", + "futbol", + "fyi", + "gallery", + "gallo", + "gallup", + "games", + "genting", + "george", + "gifts", + "glass", + "global", + "gmbh", + "gold", + "golf", + "goodyear", + "graphics", + "gratis", + "green", + "gripe", + "grocery", + "group", + "guide", + "guru", + "haus", + "hdfc", + "hdfcbank", + "healthcare", + "helsinki", + "hermes", + "hkt", + "hockey", + "holdings", + "holiday", + "homedepot", + "hospital", + "house", + "hughes", + "ice", + "imamat", + "immo", + "immobilien", + "industries", + "info", + "institute", + "insure", + "international", + "investments", + "irish", + "ismaili", + "ist", + "istanbul", + "itv", + "jaguar", + "java", + "jeep", + "jetzt", + "jewelry", + "jio", + "jll", + "juniper", + "kaufen", + "kerryhotels", + "kerrylogistics", + "kerryproperties", + "kids", + "kim", + "kitchen", + "kosher", + "kuokgroup", + "lamborghini", + "lamer", + "land", + "landrover", + "lasalle", + "latino", + "lawyer", + "lds", + "lease", + "lefrak", + "legal", + "lgbt", + "life", + "lighting", + "limited", + "limo", + "lipsy", + "live", + "llc", + "loans", + "locker", + "lotto", + "ltd", + "ltda", + "lundbeck", + "maif", + "maison", + "management", + "market", + "marketing", + "markets", + "marriott", + "mba", + "mckinsey", + "media", + "memorial", + "mit", + "mobi", + "mobile", + "moda", + "money", + "mormon", + "mortgage", + "movie", + "nab", + "navy", + "network", + "news", + "next", + "nextdirect", + "nikon", + "ninja", + "nowtv", + "nra", + "obi", + "ollo", + "onl", + "oracle", + "orange", + "organic", + "origins", + "ott", + "partners", + "parts", + "pccw", + "pet", + "phone", + "photography", + "photos", + "pictet", + "pictures", + "pink", + "pizza", + "place", + "plumbing", + "plus", + "pnc", + "poker", + "post", + "pro", + "productions", + "progressive", + "promo", + "properties", + "pub", + "pwc", + "recipes", + "red", + "redumbrella", + "rehab", + "reise", + "reisen", + "reliance", + "rentals", + "repair", + "report", + "republican", + "restaurant", + "reviews", + "rexroth", + "rich", + "richardli", + "ril", + "rip", + "rocks", + "rogers", + "run", + "sale", + "salon", + "samsclub", + "sanofi", + "sarl", + "saxo", + "sbi", + "scholarships", + "school", + "schule", + "services", + "sew", + "shangrila", + "shiksha", + "shoes", + "shopping", + "show", + "sina", + "singles", + "ski", + "sling", + "soccer", + "social", + "software", + "solar", + "solutions", + "spa", + "srl", + "stada", + "star", + "statebank", + "stockholm", + "studio", + "style", + "supplies", + "supply", + "support", + "surgery", + "systems", + "taobao", + "tatamotors", + "tax", + "taxi", + "team", + "technology", + "temasek", + "tennis", + "thd", + "theater", + "tiaa", + "tienda", + "tips", + "tires", + "tmall", + "today", + "tools", + "tours", + "town", + "toys", + "trading", + "training", + "travel", + "travelers", + "travelersinsurance", + "trv", + "ubank", + "ubs", + "university", + "ups", + "vacations", + "vanguard", + "vegas", + "ventures", + "vet", + "viajes", + "video", + "vig", + "viking", + "villas", + "vin", + "vision", + "volvo", + "vote", + "voto", + "voyage", + "walmart", + "watch", + "watches", + "weibo", + "weir", + "wine", + "wolterskluwer", + "works", + "world", + "wtf", + "xin", + "xn--6frz82g", + "xn--9krt00a", + "xn--b4w605ferd", + "xn--czrs0t", + "xn--fjq720a", + "xn--fzys8d69uvgm", + "xn--unup4y", + "xn--vhquv", + "zara", + "zone" ], [ - "https://rdap.nic.faith/" + "https://rdap.identitydigital.services/rdap/" ] ], [ [ - "farmers" + "is" ], [ - "https://rdap.nic.farmers/" + "https://rdap.isnic.is/rdap/" ] ], [ [ - "ferrero" + "kiwi" ], [ - "https://rdap.nic.ferrero/" + "https://rdap.kiwi.fury.ca/rdap/" ] ], [ [ - "film" + "lb" ], [ - "https://rdap.nic.film/" + "https://rdap.lbdr.org.lb/" ] ], [ [ - "firmdale" + "mls" ], [ - "https://rdap.nic.firmdale/" + "https://rdap.mls.fury.ca/rdap/" ] ], [ [ - "flickr" + "aaa" ], [ - "https://rdap.nic.flickr/" + "https://rdap.nic.aaa/" ] ], [ [ - "flir" + "able" ], [ - "https://rdap.nic.flir/" + "https://rdap.nic.able/" ] ], [ [ - "ford" + "abogado" ], [ - "https://rdap.nic.ford/" + "https://rdap.nic.abogado/" ] ], [ [ - "fox" + "abudhabi" ], [ - "https://rdap.nic.fox/" + "https://rdap.nic.abudhabi/" ] ], [ [ - "frontier" + "accountant" ], [ - "https://rdap.nic.frontier/" + "https://rdap.nic.accountant/" ] ], [ [ - "ftr" + "aco" ], [ - "https://rdap.nic.ftr/" + "https://rdap.nic.aco/" ] ], [ [ - "gal" + "adult" ], [ - "https://rdap.nic.gal/" + "https://rdap.nic.adult/" ] ], [ [ - "gap" + "aetna" ], [ - "https://rdap.nic.gap/" + "https://rdap.nic.aetna/" ] ], [ [ - "gea" + "afl" ], [ - "https://rdap.nic.gea/" + "https://rdap.nic.afl/" ] ], [ [ - "giving" + "africa" ], [ - "https://rdap.nic.giving/" + "https://rdap.nic.africa/rdap/" ] ], [ [ - "gmx" + "aig" ], [ - "https://rdap.nic.gmx/" + "https://rdap.nic.aig/" ] ], [ [ - "grainger" + "alsace" ], [ - "https://rdap.nic.grainger/" + "https://rdap.nic.alsace/" ] ], [ [ - "gucci" + "alstom" ], [ - "https://rdap.nic.gucci/" + "https://rdap.nic.alstom/" ] ], [ [ - "hamburg" + "americanexpress" ], [ - "https://rdap.nic.hamburg/v1/" + "https://rdap.nic.americanexpress/" ] ], [ [ - "hbo" + "amex" ], [ - "https://rdap.nic.hbo/" + "https://rdap.nic.amex/" ] ], [ [ - "health" + "amica" ], [ - "https://rdap.nic.health/" + "https://rdap.nic.amica/" ] ], [ [ - "homegoods" + "amsterdam" ], [ - "https://rdap.nic.homegoods/" + "https://rdap.nic.amsterdam/" ] ], [ [ - "homesense" + "analytics" ], [ - "https://rdap.nic.homesense/" + "https://rdap.nic.analytics/" ] ], [ [ - "hoteles" + "anz" ], [ - "https://rdap.nic.hoteles/" + "https://rdap.nic.anz/" ] ], [ [ - "hotels" + "aquarelle" ], [ - "https://rdap.nic.hotels/" + "https://rdap.nic.aquarelle/" ] ], [ [ - "hsbc" + "ar" ], [ - "https://rdap.nic.hsbc/" + "https://rdap.nic.ar/" ] ], [ [ - "hyatt" + "arab" ], [ - "https://rdap.nic.hyatt/" + "https://rdap.nic.arab/" ] ], [ [ - "ibm" + "aramco" ], [ - "https://rdap.nic.ibm/" + "https://rdap.nic.aramco/" ] ], [ [ - "ieee" + "athleta" ], [ - "https://rdap.nic.ieee/" + "https://rdap.nic.athleta/" ] ], [ [ - "ifm" + "auspost" ], [ - "https://rdap.nic.ifm/" + "https://rdap.nic.auspost/" ] ], [ [ - "ikano" + "axa" ], [ - "https://rdap.nic.ikano/v1/" + "https://rdap.nic.axa/" ] ], [ [ - "insurance" + "banamex" ], [ - "https://rdap.nic.insurance/" + "https://rdap.nic.banamex/" ] ], [ [ - "intuit" + "bank" ], [ - "https://rdap.nic.intuit/" + "https://rdap.nic.bank/" ] ], [ [ - "ipiranga" + "barcelona" ], [ - "https://rdap.nic.ipiranga/" + "https://rdap.nic.barcelona/" ] ], [ [ - "itau" + "baseball" ], [ - "https://rdap.nic.itau/" + "https://rdap.nic.baseball/" ] ], [ [ - "jmp" + "bauhaus" ], [ - "https://rdap.nic.jmp/" + "https://rdap.nic.bauhaus/" ] ], [ [ - "jnj" + "bayern" ], [ - "https://rdap.nic.jnj/" + "https://rdap.nic.bayern/" ] ], [ [ - "jpmorgan" + "bcn" ], [ - "https://rdap.nic.jpmorgan/" + "https://rdap.nic.bcn/" ] ], [ [ - "jprs" + "beer" ], [ - "https://rdap.nic.jprs/rdap/" + "https://rdap.nic.beer/" ] ], [ [ - "kinder" + "berlin" ], [ - "https://rdap.nic.kinder/" + "https://rdap.nic.berlin/v1/" ] ], [ [ - "kpmg" + "bible" ], [ - "https://rdap.nic.kpmg/" + "https://rdap.nic.bible/" ] ], [ [ - "krd" + "bid" ], [ - "https://rdap.nic.krd/" + "https://rdap.nic.bid/" ] ], [ [ - "lacaixa" + "biz" ], [ - "https://rdap.nic.lacaixa/" + "https://rdap.nic.biz/" ] ], [ [ - "lancaster" + "blackfriday" ], [ - "https://rdap.nic.lancaster/" + "https://rdap.nic.blackfriday/" ] ], [ [ - "lanxess" + "booking" ], [ - "https://rdap.nic.lanxess/" + "https://rdap.nic.booking/" ] ], [ [ - "lat" + "bostik" ], [ - "https://rdap.nic.lat/" + "https://rdap.nic.bostik/" ] ], [ [ - "latrobe" + "boston" ], [ - "https://rdap.nic.latrobe/" + "https://rdap.nic.boston/" ] ], [ [ - "leclerc" + "brussels" ], [ - "https://rdap.nic.leclerc/" + "https://rdap.nic.brussels/" ] ], [ [ - "lifeinsurance" + "buzz" ], [ - "https://rdap.nic.lifeinsurance/" + "https://rdap.nic.buzz/" ] ], [ [ - "lilly" + "bzh" ], [ - "https://rdap.nic.lilly/" + "https://rdap.nic.bzh/" ] ], [ [ - "lincoln" + "calvinklein" ], [ - "https://rdap.nic.lincoln/" + "https://rdap.nic.calvinklein/" ] ], [ [ - "loan" + "capetown" ], [ - "https://rdap.nic.loan/" + "https://rdap.nic.capetown/rdap/" ] ], [ [ - "loft" + "caravan" ], [ - "https://rdap.nic.loft/" + "https://rdap.nic.caravan/" ] ], [ [ - "luxury" + "casa" ], [ - "https://rdap.nic.luxury/" + "https://rdap.nic.casa/" ] ], [ [ - "madrid" + "cat" ], [ - "https://rdap.nic.madrid/" + "https://rdap.nic.cat/" ] ], [ [ - "man" + "catholic" ], [ - "https://rdap.nic.man/" + "https://rdap.nic.catholic/" ] ], [ [ - "mango" + "cba" ], [ - "https://rdap.nic.mango/" + "https://rdap.nic.cba/" ] ], [ [ - "marshalls" + "cbn" ], [ - "https://rdap.nic.marshalls/" + "https://rdap.nic.cbn/" ] ], [ [ - "mattel" + "cbre" ], [ - "https://rdap.nic.mattel/" + "https://rdap.nic.cbre/" ] ], [ [ - "melbourne" + "chase" ], [ - "https://rdap.nic.melbourne/" + "https://rdap.nic.chase/" ] ], [ [ - "men" + "chintai" ], [ - "https://rdap.nic.men/" + "https://rdap.nic.chintai/" ] ], [ [ - "menu" + "cisco" ], [ - "https://rdap.nic.menu/" + "https://rdap.nic.cisco/" ] ], [ [ - "mint" + "citi" ], [ - "https://rdap.nic.mint/" + "https://rdap.nic.citi/" ] ], [ [ - "mlb" + "club" ], [ - "https://rdap.nic.mlb/" + "https://rdap.nic.club/" ] ], [ [ - "mma" + "commbank" ], [ - "https://rdap.nic.mma/" + "https://rdap.nic.commbank/" ] ], [ [ - "moe" + "compare" ], [ - "https://rdap.nic.moe/" + "https://rdap.nic.compare/" ] ], [ [ - "monash" + "cooking" ], [ - "https://rdap.nic.monash/" + "https://rdap.nic.cooking/" ] ], [ [ - "moto" + "corsica" ], [ - "https://rdap.nic.moto/" + "https://rdap.nic.corsica/" ] ], [ [ - "mtn" + "coupon" ], [ - "https://rdap.nic.mtn/" + "https://rdap.nic.coupon/" ] ], [ [ - "museum" + "courses" ], [ - "https://rdap.nic.museum/" + "https://rdap.nic.courses/" ] ], [ [ - "mutual" + "cr" ], [ - "https://rdap.nic.mutual/" + "https://rdap.nic.cr/" ] ], [ [ - "nba" + "cricket" ], [ - "https://rdap.nic.nba/" + "https://rdap.nic.cricket/" ] ], [ [ - "netbank" + "cuisinella" ], [ - "https://rdap.nic.netbank/" + "https://rdap.nic.cuisinella/" ] ], [ [ - "netflix" + "cv" ], [ - "https://rdap.nic.netflix/" + "https://rdap.nic.cv/" ] ], [ [ - "neustar" + "cx" ], [ - "https://rdap.nic.neustar/" + "https://rdap.nic.cx/" ] ], [ [ - "nfl" + "cz" ], [ - "https://rdap.nic.nfl/" + "https://rdap.nic.cz/" ] ], [ [ - "nike" + "date" ], [ - "https://rdap.nic.nike/" + "https://rdap.nic.date/" ] ], [ [ - "northwesternmutual" + "dds" ], [ - "https://rdap.nic.northwesternmutual/" + "https://rdap.nic.dds/" ] ], [ [ - "nrw" + "dell" ], [ - "https://rdap.nic.nrw/" + "https://rdap.nic.dell/" ] ], [ [ - "ntt" + "design" ], [ - "https://rdap.nic.ntt/rdap/" + "https://rdap.nic.design/" ] ], [ [ - "nyc" + "discover" ], [ - "https://rdap.nic.nyc/" + "https://rdap.nic.discover/" ] ], [ [ - "office" + "download" ], [ - "https://rdap.nic.office/" + "https://rdap.nic.download/" ] ], [ [ - "olayan" + "dubai" ], [ - "https://rdap.nic.olayan/" + "https://rdap.nic.dubai/" ] ], [ [ - "olayangroup" + "dupont" ], [ - "https://rdap.nic.olayangroup/" + "https://rdap.nic.dupont/" ] ], [ [ - "oldnavy" + "durban" ], [ - "https://rdap.nic.oldnavy/" + "https://rdap.nic.durban/rdap/" ] ], [ [ - "one" + "earth" ], [ - "https://rdap.nic.one/" + "https://rdap.nic.earth/" ] ], [ [ - "open" + "erni" ], [ - "https://rdap.nic.open/" + "https://rdap.nic.erni/" ] ], [ [ - "osaka" + "eurovision" ], [ - "https://rdap.nic.osaka/" + "https://rdap.nic.eurovision/" ] ], [ [ - "ovh" + "eus" ], [ - "https://rdap.nic.ovh/" + "https://rdap.nic.eus/" ] ], [ [ - "paris" + "faith" ], [ - "https://rdap.nic.paris/" + "https://rdap.nic.faith/" ] ], [ [ - "party" + "farmers" ], [ - "https://rdap.nic.party/" + "https://rdap.nic.farmers/" ] ], [ [ - "passagens" + "fashion" ], [ - "https://rdap.nic.passagens/" + "https://rdap.nic.fashion/" ] ], [ [ - "pfizer" + "ferrero" ], [ - "https://rdap.nic.pfizer/" + "https://rdap.nic.ferrero/" ] ], [ [ - "pharmacy" + "film" ], [ - "https://rdap.nic.pharmacy/" + "https://rdap.nic.film/" ] ], [ [ - "philips" + "firmdale" ], [ - "https://rdap.nic.philips/" + "https://rdap.nic.firmdale/" ] ], [ [ - "physio" + "fishing" ], [ - "https://rdap.nic.physio/" + "https://rdap.nic.fishing/" ] ], [ [ - "ping" + "fit" ], [ - "https://rdap.nic.ping/" + "https://rdap.nic.fit/" ] ], [ [ - "politie" + "flickr" ], [ - "https://rdap.nic.politie/" + "https://rdap.nic.flickr/" ] ], [ [ - "pramerica" + "flir" ], [ - "https://rdap.nic.pramerica/" + "https://rdap.nic.flir/" ] ], [ [ - "praxi" + "ford" ], [ - "https://rdap.nic.praxi/" + "https://rdap.nic.ford/" ] ], [ [ - "pru" + "fox" ], [ - "https://rdap.nic.pru/" + "https://rdap.nic.fox/" ] ], [ [ - "prudential" + "fr" ], [ - "https://rdap.nic.prudential/" + "https://rdap.nic.fr/" ] ], [ [ - "qpon" + "frontier" ], [ - "https://rdap.nic.qpon/" + "https://rdap.nic.frontier/" ] ], [ [ - "quebec" + "ftr" ], [ - "https://rdap.nic.quebec/" + "https://rdap.nic.ftr/" ] ], [ [ - "quest" + "gal" ], [ - "https://rdap.nic.quest/" + "https://rdap.nic.gal/" ] ], [ [ - "qvc" + "gap" ], [ - "https://rdap.nic.qvc/" + "https://rdap.nic.gap/" ] ], [ [ - "racing" + "garden" ], [ - "https://rdap.nic.racing/" + "https://rdap.nic.garden/" ] ], [ [ - "radio" + "gay" ], [ - "https://rdap.nic.radio/" + "https://rdap.nic.gay/" ] ], [ [ - "review" + "gdn" ], [ - "https://rdap.nic.review/" + "https://rdap.nic.gdn/" ] ], [ [ - "rmit" + "gea" ], [ - "https://rdap.nic.rmit/" + "https://rdap.nic.gea/" ] ], [ [ - "rocher" + "gmx" ], [ - "https://rdap.nic.rocher/" + "https://rdap.nic.gmx/" ] ], [ [ - "ruhr" + "godaddy" ], [ - "https://rdap.nic.ruhr/" + "https://rdap.nic.godaddy/" ] ], [ [ - "safety" + "grainger" ], [ - "https://rdap.nic.safety/" + "https://rdap.nic.grainger/" ] ], [ [ - "sakura" + "gs" ], [ - "https://rdap.nic.sakura/rdap/" + "https://rdap.nic.gs/" ] ], [ [ - "sandvik" + "hamburg" ], [ - "https://rdap.nic.sandvik/" + "https://rdap.nic.hamburg/v1/" ] ], [ [ - "sandvikcoromant" + "hbo" ], [ - "https://rdap.nic.sandvikcoromant/" + "https://rdap.nic.hbo/" ] ], [ [ - "sap" + "health" ], [ - "https://rdap.nic.sap/" + "https://rdap.nic.health/" ] ], [ [ - "sas" + "homegoods" ], [ - "https://rdap.nic.sas/" + "https://rdap.nic.homegoods/" ] ], [ [ - "saxo" + "homesense" ], [ - "https://rdap.nic.saxo/" + "https://rdap.nic.homesense/" ] ], [ [ - "scb" + "horse" ], [ - "https://rdap.nic.scb/" + "https://rdap.nic.horse/" ] ], [ [ - "schmidt" + "hotels" ], [ - "https://rdap.nic.schmidt/" + "https://rdap.nic.hotels/" ] ], [ [ - "science" + "hsbc" ], [ - "https://rdap.nic.science/" + "https://rdap.nic.hsbc/" ] ], [ [ - "scot" + "hyatt" ], [ - "https://rdap.nic.scot/" + "https://rdap.nic.hyatt/" ] ], [ [ - "seat" + "ibm" ], [ - "https://rdap.nic.seat/" + "https://rdap.nic.ibm/" ] ], [ [ - "seek" + "ifm" ], [ - "https://rdap.nic.seek/" + "https://rdap.nic.ifm/" ] ], [ [ - "select" + "ikano" ], [ - "https://rdap.nic.select/" + "https://rdap.nic.ikano/v1/" ] ], [ [ - "seven" + "ink" ], [ - "https://rdap.nic.seven/" + "https://rdap.nic.ink/" ] ], [ [ - "skype" + "insurance" ], [ - "https://rdap.nic.skype/" + "https://rdap.nic.insurance/" ] ], [ [ - "sncf" + "intuit" ], [ - "https://rdap.nic.sncf/" + "https://rdap.nic.intuit/" ] ], [ [ - "song" + "ipiranga" ], [ - "https://rdap.nic.song/" + "https://rdap.nic.ipiranga/" ] ], [ [ - "sport" + "itau" ], [ - "https://rdap.nic.sport/" + "https://rdap.nic.itau/" ] ], [ [ - "staples" + "jmp" ], [ - "https://rdap.nic.staples/" + "https://rdap.nic.jmp/" ] ], [ [ - "statefarm" + "jnj" ], [ - "https://rdap.nic.statefarm/" + "https://rdap.nic.jnj/" ] ], [ [ - "stream" + "joburg" ], [ - "https://rdap.nic.stream/" + "https://rdap.nic.joburg/rdap/" ] ], [ [ - "study" + "jpmorgan" ], [ - "https://rdap.nic.study/" + "https://rdap.nic.jpmorgan/" ] ], [ [ - "sucks" + "jprs" ], [ - "https://rdap.nic.sucks/" + "https://rdap.nic.jprs/rdap/" ] ], [ [ - "swiftcover" + "kpmg" ], [ - "https://rdap.nic.swiftcover/" + "https://rdap.nic.kpmg/" ] ], [ [ - "swiss" + "krd" ], [ - "https://rdap.nic.swiss/" + "https://rdap.nic.krd/" ] ], [ [ - "sydney" + "lacaixa" ], [ - "https://rdap.nic.sydney/" + "https://rdap.nic.lacaixa/" ] ], [ [ - "tab" + "lancaster" ], [ - "https://rdap.nic.tab/" + "https://rdap.nic.lancaster/" ] ], [ [ - "taipei" + "lanxess" ], [ - "https://rdap.nic.taipei/" + "https://rdap.nic.lanxess/" ] ], [ [ - "taobao" + "latrobe" ], [ - "https://rdap.nic.taobao/" + "https://rdap.nic.latrobe/" ] ], [ [ - "target" + "law" ], [ - "https://rdap.nic.target/" + "https://rdap.nic.law/" ] ], [ [ - "tdk" + "leclerc" ], [ - "https://rdap.nic.tdk/" + "https://rdap.nic.leclerc/" ] ], [ [ - "tel" + "lifeinsurance" ], [ - "https://rdap.nic.tel/" + "https://rdap.nic.lifeinsurance/" ] ], [ [ - "teva" + "lilly" ], [ - "https://rdap.nic.teva/" + "https://rdap.nic.lilly/" ] ], [ [ - "tjmaxx" + "lincoln" ], [ - "https://rdap.nic.tjmaxx/" + "https://rdap.nic.lincoln/" ] ], [ [ - "tjx" + "loan" ], [ - "https://rdap.nic.tjx/" + "https://rdap.nic.loan/" ] ], [ [ - "tkmaxx" + "luxe" ], [ - "https://rdap.nic.tkmaxx/" + "https://rdap.nic.luxe/" ] ], [ [ - "tmall" + "madrid" ], [ - "https://rdap.nic.tmall/" + "https://rdap.nic.madrid/" ] ], [ [ - "total" + "man" ], [ - "https://rdap.nic.total/" + "https://rdap.nic.man/" ] ], [ [ - "trade" + "mango" ], [ - "https://rdap.nic.trade/" + "https://rdap.nic.mango/" ] ], [ [ - "travel" + "marshalls" ], [ - "https://rdap.nic.travel/" + "https://rdap.nic.marshalls/" ] ], [ [ - "trust" + "mattel" ], [ - "https://rdap.nic.trust/" + "https://rdap.nic.mattel/" ] ], [ [ - "tube" + "melbourne" ], [ - "https://rdap.nic.tube/" + "https://rdap.nic.melbourne/" ] ], [ [ - "versicherung" + "men" ], [ - "https://rdap.nic.versicherung/v1/" + "https://rdap.nic.men/" ] ], [ [ - "vivo" + "menu" ], [ - "https://rdap.nic.vivo/" + "https://rdap.nic.menu/" ] ], [ [ - "vlaanderen" + "miami" ], [ - "https://rdap.nic.vlaanderen/" + "https://rdap.nic.miami/" ] ], [ [ - "voting" + "mint" ], [ - "https://rdap.nic.voting/v1/" + "https://rdap.nic.mint/" ] ], [ [ - "vuelos" + "mlb" ], [ - "https://rdap.nic.vuelos/" + "https://rdap.nic.mlb/" ] ], [ [ - "walter" + "mma" ], [ - "https://rdap.nic.walter/" + "https://rdap.nic.mma/" ] ], [ [ - "watches" + "moe" ], [ - "https://rdap.nic.watches/" + "https://rdap.nic.moe/" ] ], [ [ - "weather" + "monash" ], [ - "https://rdap.nic.weather/" + "https://rdap.nic.monash/" ] ], [ [ - "weatherchannel" + "moto" ], [ - "https://rdap.nic.weatherchannel/" + "https://rdap.nic.moto/" ] ], [ [ - "webcam" + "ms" ], [ - "https://rdap.nic.webcam/" + "https://rdap.nic.ms/" ] ], [ [ - "whoswho" + "museum" ], [ - "https://rdap.nic.whoswho/" + "https://rdap.nic.museum/" ] ], [ [ - "williamhill" + "nba" ], [ - "https://rdap.nic.williamhill/" + "https://rdap.nic.nba/" ] ], [ [ - "win" + "netbank" ], [ - "https://rdap.nic.win/" + "https://rdap.nic.netbank/" ] ], [ [ - "winners" + "netflix" ], [ - "https://rdap.nic.winners/" + "https://rdap.nic.netflix/" ] ], [ [ - "woodside" + "neustar" ], [ - "https://rdap.nic.woodside/" + "https://rdap.nic.neustar/" ] ], [ [ - "wtc" + "nf" ], [ - "https://rdap.nic.wtc/" + "https://rdap.nic.nf/" ] ], [ [ - "xn--1ck2e1b" + "nfl" ], [ - "https://rdap.nic.xn--1ck2e1b/" + "https://rdap.nic.nfl/" ] ], [ [ - "xn--80aqecdr1a" + "nike" ], [ - "https://rdap.nic.xn--80aqecdr1a/" + "https://rdap.nic.nike/" ] ], [ [ - "xn--80asehdb" + "nrw" ], [ - "https://rdap.nic.xn--80asehdb/" + "https://rdap.nic.nrw/" ] ], [ [ - "xn--80aswg" + "ntt" ], [ - "https://rdap.nic.xn--80aswg/" + "https://rdap.nic.ntt/rdap/" ] ], [ [ - "xn--bck1b9a5dre4c" + "nyc" ], [ - "https://rdap.nic.xn--bck1b9a5dre4c/" + "https://rdap.nic.nyc/" ] ], [ [ - "xn--cck2b3b" + "office" ], [ - "https://rdap.nic.xn--cck2b3b/" + "https://rdap.nic.office/" ] ], [ [ - "xn--eckvdtc9d" + "olayan" ], [ - "https://rdap.nic.xn--eckvdtc9d/" + "https://rdap.nic.olayan/" ] ], [ [ - "xn--fct429k" + "olayangroup" ], [ - "https://rdap.nic.xn--fct429k/" + "https://rdap.nic.olayangroup/" ] ], [ [ - "xn--g2xx48c" + "one" ], [ - "https://rdap.nic.xn--g2xx48c/" + "https://rdap.nic.one/" ] ], [ [ - "xn--gckr3f0f" + "open" ], [ - "https://rdap.nic.xn--gckr3f0f/" + "https://rdap.nic.open/" ] ], [ [ - "xn--gk3at1e" + "osaka" ], [ - "https://rdap.nic.xn--gk3at1e/" + "https://rdap.nic.osaka/" ] ], [ [ - "xn--jvr189m" + "ovh" ], [ - "https://rdap.nic.xn--jvr189m/" + "https://rdap.nic.ovh/" ] ], [ [ - "xn--kcrx77d1x4a" + "paris" ], [ - "https://rdap.nic.xn--kcrx77d1x4a/" + "https://rdap.nic.paris/" ] ], [ [ - "xn--mgba3a3ejt" + "party" ], [ - "https://rdap.nic.xn--mgba3a3ejt/" + "https://rdap.nic.party/" ] ], [ [ - "xn--mgba7c0bbn0a" + "pfizer" ], [ - "https://rdap.nic.xn--mgba7c0bbn0a/" + "https://rdap.nic.pfizer/" ] ], [ [ - "xn--mgbab2bd" + "philips" ], [ - "https://rdap.nic.xn--mgbab2bd/" + "https://rdap.nic.philips/" ] ], [ [ - "xn--mgbca7dzdo" + "photo" ], [ - "https://rdap.nic.xn--mgbca7dzdo/" + "https://rdap.nic.photo/" ] ], [ [ - "xn--mgbi4ecexp" + "physio" ], [ - "https://rdap.nic.xn--mgbi4ecexp/" + "https://rdap.nic.physio/" ] ], [ [ - "xn--ngbc5azd" + "ping" ], [ - "https://rdap.nic.xn--ngbc5azd/" + "https://rdap.nic.ping/" ] ], [ [ - "xn--ngbrx" + "pm" ], [ - "https://rdap.nic.xn--ngbrx/" + "https://rdap.nic.pm/" ] ], [ [ - "xn--rovu88b" + "politie" ], [ - "https://rdap.nic.xn--rovu88b/" + "https://rdap.nic.politie/" ] ], [ [ - "xn--tiq49xqyj" + "porn" ], [ - "https://rdap.nic.xn--tiq49xqyj/" + "https://rdap.nic.porn/" ] ], [ [ - "yandex" + "pramerica" ], [ - "https://rdap.nic.yandex/" + "https://rdap.nic.pramerica/" ] ], [ [ - "zero" + "praxi" ], [ - "https://rdap.nic.zero/" + "https://rdap.nic.praxi/" ] ], [ [ - "abogado" + "pru" ], [ - "https://rdap.nominet.uk/abogado/" + "https://rdap.nic.pru/" ] ], [ [ - "amazon" + "prudential" ], [ - "https://rdap.nominet.uk/amazon/" + "https://rdap.nic.prudential/" ] ], [ [ - "audible" + "quebec" ], [ - "https://rdap.nominet.uk/audible/" + "https://rdap.nic.quebec/" ] ], [ [ - "author" + "racing" ], [ - "https://rdap.nominet.uk/author/" + "https://rdap.nic.racing/" ] ], [ [ - "aws" + "radio" ], [ - "https://rdap.nominet.uk/aws/" + "https://rdap.nic.radio/" ] ], [ [ - "bayern" + "re" ], [ - "https://rdap.nominet.uk/bayern/" + "https://rdap.nic.re/" ] ], [ [ - "bbc" + "review" ], [ - "https://rdap.nominet.uk/bbc/" + "https://rdap.nic.review/" ] ], [ [ - "beer" + "rodeo" ], [ - "https://rdap.nominet.uk/beer/" + "https://rdap.nic.rodeo/" ] ], [ [ - "bentley" + "safety" ], [ - "https://rdap.nominet.uk/bentley/" + "https://rdap.nic.safety/" ] ], [ [ - "book" + "sakura" ], [ - "https://rdap.nominet.uk/book/" + "https://rdap.nic.sakura/rdap/" ] ], [ [ - "boston" + "sandvik" ], [ - "https://rdap.nominet.uk/boston/" + "https://rdap.nic.sandvik/" ] ], [ [ - "bot" + "sandvikcoromant" ], [ - "https://rdap.nominet.uk/bot/" + "https://rdap.nic.sandvikcoromant/" ] ], [ [ - "bradesco" + "sap" ], [ - "https://rdap.nominet.uk/bradesco/" + "https://rdap.nic.sap/" ] ], [ [ - "broadway" + "sas" ], [ - "https://rdap.nominet.uk/broadway/" + "https://rdap.nic.sas/" ] ], [ [ - "budapest" + "scb" ], [ - "https://rdap.nominet.uk/budapest/" + "https://rdap.nic.scb/" ] ], [ [ - "buy" + "schaeffler" ], [ - "https://rdap.nominet.uk/buy/" + "https://rdap.nic.schaeffler/" ] ], [ [ - "call" + "schmidt" ], [ - "https://rdap.nominet.uk/call/" + "https://rdap.nic.schmidt/" ] ], [ [ - "casa" + "science" ], [ - "https://rdap.nominet.uk/casa/" + "https://rdap.nic.science/" ] ], [ [ - "circle" + "scot" ], [ - "https://rdap.nominet.uk/circle/" + "https://rdap.nic.scot/" ] ], [ [ - "comcast" + "sd" ], [ - "https://rdap.nominet.uk/comcast/" + "https://rdap.nic.sd/" ] ], [ [ - "cooking" + "seat" ], [ - "https://rdap.nominet.uk/cooking/" + "https://rdap.nic.seat/" ] ], [ [ - "cymru" + "seek" ], [ - "https://rdap.nominet.uk/cymru/" + "https://rdap.nic.seek/" ] ], [ [ - "dds" + "select" ], [ - "https://rdap.nominet.uk/dds/" + "https://rdap.nic.select/" ] ], [ [ - "deal" + "seven" ], [ - "https://rdap.nominet.uk/deal/" + "https://rdap.nic.seven/" ] ], [ [ - "fashion" + "sex" ], [ - "https://rdap.nominet.uk/fashion/" + "https://rdap.nic.sex/" ] ], [ [ - "fast" + "skype" ], [ - "https://rdap.nominet.uk/fast/" + "https://rdap.nic.skype/" ] ], [ [ - "fire" + "sncf" ], [ - "https://rdap.nominet.uk/fire/" + "https://rdap.nic.sncf/" ] ], [ [ - "fishing" + "song" ], [ - "https://rdap.nominet.uk/fishing/" + "https://rdap.nic.song/" ] ], [ [ - "fit" + "sport" ], [ - "https://rdap.nominet.uk/fit/" + "https://rdap.nic.sport/" ] ], [ [ - "free" + "ss" ], [ - "https://rdap.nominet.uk/free/" + "https://rdap.nic.ss/" ] ], [ [ - "garden" + "staples" ], [ - "https://rdap.nominet.uk/garden/" + "https://rdap.nic.staples/" ] ], [ [ - "gop" + "statefarm" ], [ - "https://rdap.nominet.uk/gop/" + "https://rdap.nic.statefarm/" ] ], [ [ - "got" + "stream" ], [ - "https://rdap.nominet.uk/got/" + "https://rdap.nic.stream/" ] ], [ [ - "horse" + "study" ], [ - "https://rdap.nominet.uk/horse/" + "https://rdap.nic.study/" ] ], [ [ - "hot" + "sucks" ], [ - "https://rdap.nominet.uk/hot/" + "https://rdap.nic.sucks/" ] ], [ [ - "imdb" + "surf" ], [ - "https://rdap.nominet.uk/imdb/" + "https://rdap.nic.surf/" ] ], [ [ - "jot" + "swiss" ], [ - "https://rdap.nominet.uk/jot/" + "https://rdap.nic.swiss/" ] ], [ [ - "joy" + "sydney" ], [ - "https://rdap.nominet.uk/joy/" + "https://rdap.nic.sydney/" ] ], [ [ - "kindle" + "tab" ], [ - "https://rdap.nominet.uk/kindle/" + "https://rdap.nic.tab/" ] ], [ [ - "law" + "taipei" ], [ - "https://rdap.nominet.uk/law/" + "https://rdap.nic.taipei/" ] ], [ [ - "like" + "target" ], [ - "https://rdap.nominet.uk/like/" + "https://rdap.nic.target/" ] ], [ [ - "locus" + "tdk" ], [ - "https://rdap.nominet.uk/locus/" + "https://rdap.nic.tdk/" ] ], [ [ - "london" + "tel" ], [ - "https://rdap.nominet.uk/london/" + "https://rdap.nic.tel/" ] ], [ [ - "luxe" + "teva" ], [ - "https://rdap.nominet.uk/luxe/" + "https://rdap.nic.teva/" ] ], [ [ - "miami" + "tf" ], [ - "https://rdap.nominet.uk/miami/" + "https://rdap.nic.tf/" ] ], [ [ - "moi" + "tjmaxx" ], [ - "https://rdap.nominet.uk/moi/" + "https://rdap.nic.tjmaxx/" ] ], [ [ - "now" + "tjx" ], [ - "https://rdap.nominet.uk/now/" + "https://rdap.nic.tjx/" ] ], [ [ - "pay" + "tkmaxx" ], [ - "https://rdap.nominet.uk/pay/" + "https://rdap.nic.tkmaxx/" ] ], [ [ - "pin" + "total" ], [ - "https://rdap.nominet.uk/pin/" + "https://rdap.nic.total/" ] ], [ [ - "prime" + "trade" ], [ - "https://rdap.nominet.uk/prime/" + "https://rdap.nic.trade/" ] ], [ [ - "read" + "tube" ], [ - "https://rdap.nominet.uk/read/" + "https://rdap.nic.tube/" ] ], [ [ - "rodeo" + "tv" ], [ - "https://rdap.nominet.uk/rodeo/" + "https://rdap.nic.tv/" ] ], [ [ - "room" + "versicherung" ], [ - "https://rdap.nominet.uk/room/" + "https://rdap.nic.versicherung/v1/" ] ], [ [ - "safe" + "vi" ], [ - "https://rdap.nominet.uk/safe/" + "https://rdap.nic.vi/" ] ], [ [ - "save" + "vip" ], [ - "https://rdap.nominet.uk/save/" + "https://rdap.nic.vip/" ] ], [ [ - "secure" + "vivo" ], [ - "https://rdap.nominet.uk/secure/" + "https://rdap.nic.vivo/" ] ], [ [ - "silk" + "vlaanderen" ], [ - "https://rdap.nominet.uk/silk/" + "https://rdap.nic.vlaanderen/" ] ], [ [ - "smile" + "vodka" ], [ - "https://rdap.nominet.uk/smile/" + "https://rdap.nic.vodka/" ] ], [ [ - "spot" + "voting" ], [ - "https://rdap.nominet.uk/spot/" + "https://rdap.nic.voting/" ] ], [ [ - "surf" + "walter" ], [ - "https://rdap.nominet.uk/surf/" + "https://rdap.nic.walter/" ] ], [ [ - "talk" + "weather" ], [ - "https://rdap.nominet.uk/talk/" + "https://rdap.nic.weather/" ] ], [ [ - "tunes" + "weatherchannel" ], [ - "https://rdap.nominet.uk/tunes/" + "https://rdap.nic.weatherchannel/" ] ], [ [ - "tushu" + "webcam" ], [ - "https://rdap.nominet.uk/tushu/" + "https://rdap.nic.webcam/" ] ], [ [ - "vip" + "wedding" ], [ - "https://rdap.nominet.uk/vip/" + "https://rdap.nic.wedding/" ] ], [ [ - "virgin" + "wf" ], [ - "https://rdap.nominet.uk/virgin/" + "https://rdap.nic.wf/" ] ], [ [ - "vodka" + "whoswho" ], [ - "https://rdap.nominet.uk/vodka/" + "https://rdap.nic.whoswho/" ] ], [ [ - "wales" + "wiki" ], [ - "https://rdap.nominet.uk/wales/" + "https://rdap.nic.wiki/" ] ], [ [ - "wanggou" + "williamhill" ], [ - "https://rdap.nominet.uk/wanggou/" + "https://rdap.nic.williamhill/" ] ], [ [ - "wed" + "win" ], [ - "https://rdap.nominet.uk/wed/" + "https://rdap.nic.win/" ] ], [ [ - "wedding" + "winners" ], [ - "https://rdap.nominet.uk/wedding/" + "https://rdap.nic.winners/" ] ], [ [ - "work" + "woodside" ], [ - "https://rdap.nominet.uk/work/" + "https://rdap.nic.woodside/" ] ], [ [ - "wow" + "work" ], [ - "https://rdap.nominet.uk/wow/" + "https://rdap.nic.work/" ] ], [ [ - "xfinity" + "wtc" ], [ - "https://rdap.nominet.uk/xfinity/" + "https://rdap.nic.wtc/" ] ], [ [ - "xn--cckwcxetd" + "xerox" ], [ - "https://rdap.nominet.uk/xn--cckwcxetd/" + "https://rdap.nic.xerox/" ] ], [ [ - "xn--jlq480n2rg" + "xn--1ck2e1b" ], [ - "https://rdap.nominet.uk/xn--jlq480n2rg/" + "https://rdap.nic.xn--1ck2e1b/" ] ], [ [ - "yamaxun" + "xn--80aqecdr1a" ], [ - "https://rdap.nominet.uk/yamaxun/" + "https://rdap.nic.xn--80aqecdr1a/" ] ], [ [ - "yoga" + "xn--80asehdb" ], [ - "https://rdap.nominet.uk/yoga/" + "https://rdap.nic.xn--80asehdb/" ] ], [ [ - "you" + "xn--80aswg" ], [ - "https://rdap.nominet.uk/you/" + "https://rdap.nic.xn--80aswg/" ] ], [ [ - "zappos" + "xn--bck1b9a5dre4c" ], [ - "https://rdap.nominet.uk/zappos/" + "https://rdap.nic.xn--bck1b9a5dre4c/" ] ], [ [ - "no" + "xn--cck2b3b" ], [ - "https://rdap.norid.no/" + "https://rdap.nic.xn--cck2b3b/" ] ], [ [ - "id" + "xn--eckvdtc9d" ], [ - "https://rdap.pandi.id/rdap/" + "https://rdap.nic.xn--eckvdtc9d/" ] ], [ [ - "ngo" + "xn--fct429k" ], [ - "https://rdap.publicinterestregistry.net/rdap/ngo/" + "https://rdap.nic.xn--fct429k/" ] ], [ [ - "ong" + "xn--g2xx48c" ], [ - "https://rdap.publicinterestregistry.net/rdap/ong/" + "https://rdap.nic.xn--g2xx48c/" ] ], [ [ - "org" + "xn--gckr3f0f" ], [ - "https://rdap.publicinterestregistry.net/rdap/org/" + "https://rdap.nic.xn--gckr3f0f/" ] ], [ [ - "xn--c1avg" + "xn--gk3at1e" ], [ - "https://rdap.publicinterestregistry.net/rdap/xn--c1avg/" + "https://rdap.nic.xn--gk3at1e/" ] ], [ [ - "xn--i1b6b1a6a2e" + "xn--jvr189m" ], [ - "https://rdap.publicinterestregistry.net/rdap/xn--i1b6b1a6a2e/" + "https://rdap.nic.xn--jvr189m/" ] ], [ [ - "xn--nqv7f" + "xn--kcrx77d1x4a" ], [ - "https://rdap.publicinterestregistry.net/rdap/xn--nqv7f/" + "https://rdap.nic.xn--kcrx77d1x4a/" ] ], [ [ - "xn--nqv7fs00ema" + "xn--mgba3a3ejt" ], [ - "https://rdap.publicinterestregistry.net/rdap/xn--nqv7fs00ema/" + "https://rdap.nic.xn--mgba3a3ejt/" ] ], [ [ - "br" + "xn--mgba7c0bbn0a" ], [ - "https://rdap.registro.br/" + "https://rdap.nic.xn--mgba7c0bbn0a/" ] ], [ [ - "africa", - "capetown", - "durban", - "joburg" + "xn--mgbab2bd" ], [ - "https://rdap.registry.net.za/rdap/" + "https://rdap.nic.xn--mgbab2bd/" ] ], [ [ - "xn--kput3i" + "xn--mgbca7dzdo" ], [ - "https://rdap.registrysystem.net/rdap/xn--kput3i/" + "https://rdap.nic.xn--mgbca7dzdo/" ] ], [ [ - "cologne", - "koeln", - "tirol", - "wien" + "xn--mgbi4ecexp" ], [ - "https://rdap.ryce-rsp.com/rdap/" + "https://rdap.nic.xn--mgbi4ecexp/" ] ], [ [ - "anquan", - "shouji", - "xihuan", - "xn--vuq861b", - "yun" + "xn--ngbc5azd" ], [ - "https://rdap.teleinfo.cn/" + "https://rdap.nic.xn--ngbc5azd/" ] ], [ [ - "xn--3ds443g" + "xn--ngbrx" ], [ - "https://rdap.teleinfo.cn/xn--3ds443g/" + "https://rdap.nic.xn--ngbrx/" ] ], [ [ - "xn--fiq228c5hs" + "xn--rovu88b" ], [ - "https://rdap.teleinfo.cn/xn--fiq228c5hs/" + "https://rdap.nic.xn--rovu88b/" ] ], [ [ - "xn--nyqy26a" + "xn--tiq49xqyj" ], [ - "https://rdap.teleinfo.cn/xn--nyqy26a/" + "https://rdap.nic.xn--tiq49xqyj/" ] ], [ [ - "xn--rhqv96g" + "xxx" ], [ - "https://rdap.teleinfo.cn/xn--rhqv96g/" + "https://rdap.nic.xxx/" ] ], [ [ - "xn--mxtq1m" + "yandex" ], [ - "https://rdap.twnic.tw/rdap/" + "https://rdap.nic.yandex/" ] ], [ [ - "com" + "yoga" ], [ - "https://rdap.verisign.com/com/v1/" + "https://rdap.nic.yoga/" ] ], [ [ - "net" + "yt" ], [ - "https://rdap.verisign.com/net/v1/" + "https://rdap.nic.yt/" ] ], [ [ - "xn--45q11c" + "zero" ], [ - "https://rdap.zdnsgtld.com/XN--45Q11C/" + "https://rdap.nic.zero/" ] ], [ [ - "xn--efvy88h" + "zm" ], [ - "https://rdap.zdnsgtld.com/XN--EFVY88H/" + "https://rdap.nic.zm/" ] ], [ [ - "baidu" + "abbvie" ], [ - "https://rdap.zdnsgtld.com/baidu/" + "https://rdap.nominet.uk/abbvie/" ] ], [ [ - "citic" + "amazon" ], [ - "https://rdap.zdnsgtld.com/citic/" + "https://rdap.nominet.uk/amazon/" ] ], [ [ - "ren" + "audible" ], [ - "https://rdap.zdnsgtld.com/ren/" + "https://rdap.nominet.uk/audible/" ] ], [ [ - "sohu" + "author" ], [ - "https://rdap.zdnsgtld.com/sohu/" + "https://rdap.nominet.uk/author/" ] ], [ [ - "top" + "aws" ], [ - "https://rdap.zdnsgtld.com/top/" + "https://rdap.nominet.uk/aws/" ] ], [ [ - "unicom" + "azure" ], [ - "https://rdap.zdnsgtld.com/unicom/" + "https://rdap.nominet.uk/azure/" ] ], [ [ - "wang" + "bbc" ], [ - "https://rdap.zdnsgtld.com/wang/" + "https://rdap.nominet.uk/bbc/" ] ], [ [ - "xn--30rr7y" + "bbva" ], [ - "https://rdap.zdnsgtld.com/xn--30rr7y/" + "https://rdap.nominet.uk/bbva/" ] ], [ [ - "xn--3bst00m" + "bentley" ], [ - "https://rdap.zdnsgtld.com/xn--3bst00m/" + "https://rdap.nominet.uk/bentley/" ] ], [ [ - "xn--6qq986b3xl" + "bing" ], [ - "https://rdap.zdnsgtld.com/xn--6qq986b3xl/" + "https://rdap.nominet.uk/bing/" ] ], [ [ - "xn--8y0a063a" + "book" ], [ - "https://rdap.zdnsgtld.com/xn--8y0a063a/" + "https://rdap.nominet.uk/book/" ] ], [ [ - "xn--9et52u" + "bot" ], [ - "https://rdap.zdnsgtld.com/xn--9et52u/" + "https://rdap.nominet.uk/bot/" ] ], [ [ - "xn--czr694b" + "broadway" ], [ - "https://rdap.zdnsgtld.com/xn--czr694b/" + "https://rdap.nominet.uk/broadway/" ] ], [ [ - "xn--czru2d" + "buy" ], [ - "https://rdap.zdnsgtld.com/xn--czru2d/" + "https://rdap.nominet.uk/buy/" ] ], [ [ - "xn--fiq64b" + "call" ], [ - "https://rdap.zdnsgtld.com/xn--fiq64b/" + "https://rdap.nominet.uk/call/" ] ], [ [ - "xn--hxt814e" + "career" ], [ - "https://rdap.zdnsgtld.com/xn--hxt814e/" + "https://rdap.nominet.uk/career/" ] ], [ [ - "xn--imr513n" + "circle" ], [ - "https://rdap.zdnsgtld.com/xn--imr513n/" + "https://rdap.nominet.uk/circle/" ] ], [ [ - "xn--otu796d" + "cymru" ], [ - "https://rdap.zdnsgtld.com/xn--otu796d/" + "https://rdap.nominet.uk/cymru/" ] ], [ [ - "xn--ses554g" + "deal" ], [ - "https://rdap.zdnsgtld.com/xn--ses554g/" + "https://rdap.nominet.uk/deal/" ] ], [ [ - "aarp" + "desi" ], [ - "https://tld-rdap.verisign.com/aarp/v1/" + "https://rdap.nominet.uk/desi/" ] ], [ [ - "abb" + "fairwinds" ], [ - "https://tld-rdap.verisign.com/abb/v1/" + "https://rdap.nominet.uk/fairwinds/" ] ], [ [ - "abc" + "fast" ], [ - "https://tld-rdap.verisign.com/abc/v1/" + "https://rdap.nominet.uk/fast/" ] ], [ [ - "accenture" + "fire" ], [ - "https://tld-rdap.verisign.com/accenture/v1/" + "https://rdap.nominet.uk/fire/" ] ], [ [ - "aeg" + "free" ], [ - "https://tld-rdap.verisign.com/aeg/v1/" + "https://rdap.nominet.uk/free/" ] ], [ [ - "afamilycompany" + "gop" ], [ - "https://tld-rdap.verisign.com/afamilycompany/v1/" + "https://rdap.nominet.uk/gop/" ] ], [ [ - "airbus" + "got" ], [ - "https://tld-rdap.verisign.com/airbus/v1/" + "https://rdap.nominet.uk/got/" ] ], [ [ - "airtel" + "gucci" ], [ - "https://tld-rdap.verisign.com/airtel/v1/" + "https://rdap.nominet.uk/gucci/" ] ], [ [ - "americanfamily" + "hot" ], [ - "https://tld-rdap.verisign.com/americanfamily/v1/" + "https://rdap.nominet.uk/hot/" ] ], [ [ - "amfam" + "hotmail" ], [ - "https://tld-rdap.verisign.com/amfam/v1/" + "https://rdap.nominet.uk/hotmail/" ] ], [ [ - "aol" + "ieee" ], [ - "https://tld-rdap.verisign.com/aol/v1/" + "https://rdap.nominet.uk/ieee/" ] ], [ [ - "arte" + "imdb" ], [ - "https://tld-rdap.verisign.com/arte/v1/" + "https://rdap.nominet.uk/imdb/" ] ], [ [ - "asda" + "jobs" ], [ - "https://tld-rdap.verisign.com/asda/v1/" + "https://rdap.nominet.uk/jobs/" ] ], [ [ - "azure" + "jot" ], [ - "https://tld-rdap.verisign.com/azure/v1/" + "https://rdap.nominet.uk/jot/" ] ], [ [ - "barefoot" + "joy" ], [ - "https://tld-rdap.verisign.com/barefoot/v1/" + "https://rdap.nominet.uk/joy/" ] ], [ [ - "bbt" + "kindle" ], [ - "https://tld-rdap.verisign.com/bbt/v1/" + "https://rdap.nominet.uk/kindle/" ] ], [ [ - "bbva" + "like" ], [ - "https://tld-rdap.verisign.com/bbva/v1/" + "https://rdap.nominet.uk/like/" ] ], [ [ - "bharti" + "locus" ], [ - "https://tld-rdap.verisign.com/bharti/v1/" + "https://rdap.nominet.uk/locus/" ] ], [ [ - "bing" + "med" ], [ - "https://tld-rdap.verisign.com/bing/v1/" + "https://rdap.nominet.uk/med/" ] ], [ [ - "bloomberg" + "microsoft" ], [ - "https://tld-rdap.verisign.com/bloomberg/v1/" + "https://rdap.nominet.uk/microsoft/" ] ], [ [ - "bms" + "moi" ], [ - "https://tld-rdap.verisign.com/bms/v1/" + "https://rdap.nominet.uk/moi/" ] ], [ [ - "bofa" + "mtn" ], [ - "https://tld-rdap.verisign.com/bofa/v1/" + "https://rdap.nominet.uk/mtn/" ] ], [ [ - "bosch" + "now" ], [ - "https://tld-rdap.verisign.com/bosch/v1/" + "https://rdap.nominet.uk/now/" ] ], [ [ - "broker" + "pay" ], [ - "https://tld-rdap.verisign.com/broker/v1/" + "https://rdap.nominet.uk/pay/" ] ], [ [ - "capitalone" + "pharmacy" ], [ - "https://tld-rdap.verisign.com/capitalone/v1/" + "https://rdap.nominet.uk/pharmacy/" ] ], [ [ - "career" + "pin" ], [ - "https://tld-rdap.verisign.com/career/v1/" + "https://rdap.nominet.uk/pin/" ] ], [ [ - "cc" + "pioneer" ], [ - "https://tld-rdap.verisign.com/cc/v1/" + "https://rdap.nominet.uk/pioneer/" ] ], [ [ - "cfa" + "pn" ], [ - "https://tld-rdap.verisign.com/cfa/v1/" + "https://rdap.nominet.uk/pn/" ] ], [ [ - "cfd" + "prime" ], [ - "https://tld-rdap.verisign.com/cfd/v1/" + "https://rdap.nominet.uk/prime/" ] ], [ [ - "chanel" + "read" ], [ - "https://tld-rdap.verisign.com/chanel/v1/" + "https://rdap.nominet.uk/read/" ] ], [ [ - "cityeats" + "realestate" ], [ - "https://tld-rdap.verisign.com/cityeats/v1/" + "https://rdap.nominet.uk/realestate/" ] ], [ [ - "clubmed" + "realtor" ], [ - "https://tld-rdap.verisign.com/clubmed/v1/" + "https://rdap.nominet.uk/realtor/" ] ], [ [ - "comsec" + "room" ], [ - "https://tld-rdap.verisign.com/comsec/v1/" + "https://rdap.nominet.uk/room/" ] ], [ [ - "cookingchannel" + "safe" ], [ - "https://tld-rdap.verisign.com/cookingchannel/v1/" + "https://rdap.nominet.uk/safe/" ] ], [ [ - "crown" + "save" ], [ - "https://tld-rdap.verisign.com/crown/v1/" + "https://rdap.nominet.uk/save/" ] ], [ [ - "crs" + "secure" ], [ - "https://tld-rdap.verisign.com/crs/v1/" + "https://rdap.nominet.uk/secure/" ] ], [ [ - "csc" + "silk" ], [ - "https://tld-rdap.verisign.com/csc/v1/" + "https://rdap.nominet.uk/silk/" ] ], [ [ - "diy" + "sky" ], [ - "https://tld-rdap.verisign.com/diy/v1/" + "https://rdap.nominet.uk/sky/" ] ], [ [ - "duck" + "smile" ], [ - "https://tld-rdap.verisign.com/duck/v1/" + "https://rdap.nominet.uk/smile/" ] ], [ [ - "ericsson" + "spot" ], [ - "https://tld-rdap.verisign.com/ericsson/v1/" + "https://rdap.nominet.uk/spot/" ] ], [ [ - "fairwinds" + "talk" ], [ - "https://tld-rdap.verisign.com/fairwinds/v1/" + "https://rdap.nominet.uk/talk/" ] ], [ [ - "fidelity" + "tunes" ], [ - "https://tld-rdap.verisign.com/fidelity/v1/" + "https://rdap.nominet.uk/tunes/" ] ], [ [ - "food" + "tushu" ], [ - "https://tld-rdap.verisign.com/food/v1/" + "https://rdap.nominet.uk/tushu/" ] ], [ [ - "foodnetwork" + "uk" ], [ - "https://tld-rdap.verisign.com/foodnetwork/v1/" + "https://rdap.nominet.uk/uk/" ] ], [ [ - "forex" + "virgin" ], [ - "https://tld-rdap.verisign.com/forex/v1/" + "https://rdap.nominet.uk/virgin/" ] ], [ [ - "frontdoor" + "wales" ], [ - "https://tld-rdap.verisign.com/frontdoor/v1/" + "https://rdap.nominet.uk/wales/" ] ], [ [ - "fujixerox" + "wanggou" ], [ - "https://tld-rdap.verisign.com/fujixerox/v1/" + "https://rdap.nominet.uk/wanggou/" ] ], [ [ - "gallo" + "wed" ], [ - "https://tld-rdap.verisign.com/gallo/v1/" + "https://rdap.nominet.uk/wed/" ] ], [ [ - "genting" + "windows" ], [ - "https://tld-rdap.verisign.com/genting/v1/" + "https://rdap.nominet.uk/windows/" ] ], [ [ - "george" + "wow" ], [ - "https://tld-rdap.verisign.com/george/v1/" + "https://rdap.nominet.uk/wow/" ] ], [ [ - "glade" + "xbox" ], [ - "https://tld-rdap.verisign.com/glade/v1/" + "https://rdap.nominet.uk/xbox/" ] ], [ [ - "grocery" + "xn--cckwcxetd" ], [ - "https://tld-rdap.verisign.com/grocery/v1/" + "https://rdap.nominet.uk/xn--cckwcxetd/" ] ], [ [ - "guardian" + "xn--jlq480n2rg" ], [ - "https://tld-rdap.verisign.com/guardian/v1/" + "https://rdap.nominet.uk/xn--jlq480n2rg/" ] ], [ [ - "hgtv" + "yamaxun" ], [ - "https://tld-rdap.verisign.com/hgtv/v1/" + "https://rdap.nominet.uk/yamaxun/" ] ], [ [ - "hotmail" + "you" ], [ - "https://tld-rdap.verisign.com/hotmail/v1/" + "https://rdap.nominet.uk/you/" ] ], [ [ - "ice" + "zappos" ], [ - "https://tld-rdap.verisign.com/ice/v1/" + "https://rdap.nominet.uk/zappos/" ] ], [ [ - "jaguar" + "no" ], [ - "https://tld-rdap.verisign.com/jaguar/v1/" + "https://rdap.norid.no/" ] ], [ [ - "java" + "id" ], [ - "https://tld-rdap.verisign.com/java/v1/" + "https://rdap.pandi.id/rdap/" ] ], [ [ - "jobs" + "charity", + "foundation", + "gives", + "giving", + "ngo", + "ong", + "org", + "xn--c1avg", + "xn--i1b6b1a6a2e", + "xn--nqv7f", + "xn--nqv7fs00ema" ], [ - "https://tld-rdap.verisign.com/jobs/v1/" + "https://rdap.publicinterestregistry.org/rdap/" ] ], [ [ - "juniper" + "si" ], [ - "https://tld-rdap.verisign.com/juniper/v1/" + "https://rdap.register.si/" ] ], [ [ - "kerryhotels" + "br" ], [ - "https://tld-rdap.verisign.com/kerryhotels/v1/" + "https://rdap.registro.br/" ] ], [ [ - "kerrylogistics" + "bar", + "rest" ], [ - "https://tld-rdap.verisign.com/kerrylogistics/v1/" + "https://rdap.registry.bar/rdap/" ] ], [ [ - "kerryproperties" + "observer", + "realty" ], [ - "https://tld-rdap.verisign.com/kerryproperties/v1/" + "https://rdap.registry.click/rdap/" ] ], [ [ - "kuokgroup" + "cloud" ], [ - "https://tld-rdap.verisign.com/kuokgroup/v1/" + "https://rdap.registry.cloud/rdap/" ] ], [ [ - "landrover" + "coop", + "creditunion" ], [ - "https://tld-rdap.verisign.com/landrover/v1/" + "https://rdap.registry.coop/rdap/" ] ], [ [ - "lefrak" + "ec" ], [ - "https://tld-rdap.verisign.com/lefrak/v1/" + "https://rdap.registry.ec/" ] ], [ [ - "lego" + "hiphop" ], [ - "https://tld-rdap.verisign.com/lego/v1/" + "https://rdap.registry.hiphop/rdap/" ] ], [ [ - "lifestyle" + "love" ], [ - "https://tld-rdap.verisign.com/lifestyle/v1/" + "https://rdap.registry.love/rdap/" ] ], [ [ - "linde" + "cologne", + "koeln", + "tirol", + "wien" ], [ - "https://tld-rdap.verisign.com/linde/v1/" + "https://rdap.ryce-rsp.com/rdap/" ] ], [ [ - "lipsy" + "nl" ], [ - "https://tld-rdap.verisign.com/lipsy/v1/" + "https://rdap.sidn.nl/" ] ], [ [ - "living" + "anquan", + "shouji", + "xihuan", + "xn--vuq861b", + "yun" ], [ - "https://tld-rdap.verisign.com/living/v1/" + "https://rdap.teleinfo.cn/" ] ], [ [ - "lundbeck" + "xn--3ds443g" ], [ - "https://tld-rdap.verisign.com/lundbeck/v1/" + "https://rdap.teleinfo.cn/xn--3ds443g/" ] ], [ [ - "lupin" + "xn--fiq228c5hs" ], [ - "https://tld-rdap.verisign.com/lupin/v1/" + "https://rdap.teleinfo.cn/xn--fiq228c5hs/" ] ], [ [ - "macys" + "xn--kput3i" ], [ - "https://tld-rdap.verisign.com/macys/v1/" + "https://rdap.teleinfo.cn/xn--kput3i/" ] ], [ [ - "maif" + "xn--nyqy26a" ], [ - "https://tld-rdap.verisign.com/maif/v1/" + "https://rdap.teleinfo.cn/xn--nyqy26a/" ] ], [ [ - "markets" + "xn--rhqv96g" ], [ - "https://tld-rdap.verisign.com/markets/v1/" + "https://rdap.teleinfo.cn/xn--rhqv96g/" ] ], [ [ - "med" + "xn--mxtq1m" ], [ - "https://tld-rdap.verisign.com/med/v1/" + "https://rdap.twnic.tw/rdap/" ] ], [ [ - "merckmsd" + "com" ], [ - "https://tld-rdap.verisign.com/merckmsd/v1/" + "https://rdap.verisign.com/com/v1/" ] ], [ [ - "microsoft" + "net" ], [ - "https://tld-rdap.verisign.com/microsoft/v1/" + "https://rdap.verisign.com/net/v1/" ] ], [ [ - "msd" + "ai" ], [ - "https://tld-rdap.verisign.com/msd/v1/" + "https://rdap.whois.ai/" ] ], [ [ - "nab" + "xn--45q11c" ], [ - "https://tld-rdap.verisign.com/nab/v1/" + "https://rdap.zdnsgtld.com/XN--45Q11C/" ] ], [ [ - "name" + "xn--efvy88h" ], [ - "https://tld-rdap.verisign.com/name/v1/" + "https://rdap.zdnsgtld.com/XN--EFVY88H/" ] ], [ [ - "nationwide" + "baidu" ], [ - "https://tld-rdap.verisign.com/nationwide/v1/" + "https://rdap.zdnsgtld.com/baidu/" ] ], [ [ - "next" + "citic" ], [ - "https://tld-rdap.verisign.com/next/v1/" + "https://rdap.zdnsgtld.com/citic/" ] ], [ [ - "nextdirect" + "icbc" ], [ - "https://tld-rdap.verisign.com/nextdirect/v1/" + "https://rdap.zdnsgtld.com/icbc/" ] ], [ [ - "nikon" + "redstone" ], [ - "https://tld-rdap.verisign.com/nikon/v1/" + "https://rdap.zdnsgtld.com/redstone/" ] ], [ [ - "nissay" + "ren" ], [ - "https://tld-rdap.verisign.com/nissay/v1/" + "https://rdap.zdnsgtld.com/ren/" ] ], [ [ - "norton" + "sohu" ], [ - "https://tld-rdap.verisign.com/norton/v1/" + "https://rdap.zdnsgtld.com/sohu/" ] ], [ [ - "obi" + "top" ], [ - "https://tld-rdap.verisign.com/obi/v1/" + "https://rdap.zdnsgtld.com/top/" ] ], [ [ - "off" + "unicom" ], [ - "https://tld-rdap.verisign.com/off/v1/" + "https://rdap.zdnsgtld.com/unicom/" ] ], [ [ - "omega" + "wang" ], [ - "https://tld-rdap.verisign.com/omega/v1/" + "https://rdap.zdnsgtld.com/wang/" ] ], [ [ - "onyourside" + "xn--30rr7y" ], [ - "https://tld-rdap.verisign.com/onyourside/v1/" + "https://rdap.zdnsgtld.com/xn--30rr7y/" ] ], [ [ - "oracle" + "xn--3bst00m" ], [ - "https://tld-rdap.verisign.com/oracle/v1/" + "https://rdap.zdnsgtld.com/xn--3bst00m/" ] ], [ [ - "orange" + "xn--6qq986b3xl" ], [ - "https://tld-rdap.verisign.com/orange/v1/" + "https://rdap.zdnsgtld.com/xn--6qq986b3xl/" ] ], [ [ - "pictet" + "xn--8y0a063a" ], [ - "https://tld-rdap.verisign.com/pictet/v1/" + "https://rdap.zdnsgtld.com/xn--8y0a063a/" ] ], [ [ - "raid" + "xn--9et52u" ], [ - "https://tld-rdap.verisign.com/raid/v1/" + "https://rdap.zdnsgtld.com/xn--9et52u/" ] ], [ [ - "realestate" + "xn--czr694b" ], [ - "https://tld-rdap.verisign.com/realestate/v1/" + "https://rdap.zdnsgtld.com/xn--czr694b/" ] ], [ [ - "realtor" + "xn--czru2d" ], [ - "https://tld-rdap.verisign.com/realtor/v1/" + "https://rdap.zdnsgtld.com/xn--czru2d/" ] ], [ [ - "rexroth" + "xn--fiq64b" ], [ - "https://tld-rdap.verisign.com/rexroth/v1/" + "https://rdap.zdnsgtld.com/xn--fiq64b/" ] ], [ [ - "rwe" + "xn--hxt814e" ], [ - "https://tld-rdap.verisign.com/rwe/v1/" + "https://rdap.zdnsgtld.com/xn--hxt814e/" ] ], [ [ - "samsclub" + "xn--imr513n" ], [ - "https://tld-rdap.verisign.com/samsclub/v1/" + "https://rdap.zdnsgtld.com/xn--imr513n/" ] ], [ [ - "sanofi" + "xn--otu796d" ], [ - "https://tld-rdap.verisign.com/sanofi/v1/" + "https://rdap.zdnsgtld.com/xn--otu796d/" ] ], [ [ - "sbs" + "xn--ses554g" ], [ - "https://tld-rdap.verisign.com/sbs/v1/" + "https://rdap.zdnsgtld.com/xn--ses554g/" ] ], [ [ - "sca" + "xn--1qqw23a", + "xn--55qx5d", + "xn--io0a7i", + "xn--xhq521b" ], [ - "https://tld-rdap.verisign.com/sca/v1/" + "https://restwhois.ngtld.cn/" ] ], [ [ - "scjohnson" + "aarp" ], [ - "https://tld-rdap.verisign.com/scjohnson/v1/" + "https://tld-rdap.verisign.com/aarp/v1/" ] ], [ [ - "sener" + "abc" ], [ - "https://tld-rdap.verisign.com/sener/v1/" + "https://tld-rdap.verisign.com/abc/v1/" ] ], [ [ - "ses" + "airbus" ], [ - "https://tld-rdap.verisign.com/ses/v1/" + "https://tld-rdap.verisign.com/airbus/v1/" ] ], [ [ - "shangrila" + "airtel" ], [ - "https://tld-rdap.verisign.com/shangrila/v1/" + "https://tld-rdap.verisign.com/airtel/v1/" ] ], [ [ - "shell" + "americanfamily" ], [ - "https://tld-rdap.verisign.com/shell/v1/" + "https://tld-rdap.verisign.com/americanfamily/v1/" ] ], [ [ - "sky" + "amfam" ], [ - "https://tld-rdap.verisign.com/sky/v1/" + "https://tld-rdap.verisign.com/amfam/v1/" ] ], [ [ - "spreadbetting" + "bharti" ], [ - "https://tld-rdap.verisign.com/spreadbetting/v1/" + "https://tld-rdap.verisign.com/bharti/v1/" ] ], [ [ - "swatch" + "capitalone" ], [ - "https://tld-rdap.verisign.com/swatch/v1/" + "https://tld-rdap.verisign.com/capitalone/v1/" ] ], [ [ - "tatamotors" + "cc" ], [ - "https://tld-rdap.verisign.com/tatamotors/v1/" + "https://tld-rdap.verisign.com/cc/v1/" ] ], [ [ - "tiaa" + "comsec" ], [ - "https://tld-rdap.verisign.com/tiaa/v1/" + "https://tld-rdap.verisign.com/comsec/v1/" ] ], [ [ - "tiffany" + "diy" ], [ - "https://tld-rdap.verisign.com/tiffany/v1/" + "https://tld-rdap.verisign.com/diy/v1/" ] ], [ [ - "trading" + "food" ], [ - "https://tld-rdap.verisign.com/trading/v1/" + "https://tld-rdap.verisign.com/food/v1/" ] ], [ [ - "travelchannel" + "lego" ], [ - "https://tld-rdap.verisign.com/travelchannel/v1/" + "https://tld-rdap.verisign.com/lego/v1/" ] ], [ [ - "tv" + "lifestyle" ], [ - "https://tld-rdap.verisign.com/tv/v1/" + "https://tld-rdap.verisign.com/lifestyle/v1/" ] ], [ [ - "ubank" + "living" ], [ - "https://tld-rdap.verisign.com/ubank/v1/" + "https://tld-rdap.verisign.com/living/v1/" ] ], [ [ - "ubs" + "name" ], [ - "https://tld-rdap.verisign.com/ubs/v1/" + "https://tld-rdap.verisign.com/name/v1/" ] ], [ [ - "vana" + "nissay" ], [ - "https://tld-rdap.verisign.com/vana/v1/" + "https://tld-rdap.verisign.com/nissay/v1/" ] ], [ [ - "vanguard" + "norton" ], [ - "https://tld-rdap.verisign.com/vanguard/v1/" + "https://tld-rdap.verisign.com/norton/v1/" ] ], [ [ - "verisign" + "omega" ], [ - "https://tld-rdap.verisign.com/verisign/v1/" + "https://tld-rdap.verisign.com/omega/v1/" ] ], [ [ - "visa" + "rwe" ], [ - "https://tld-rdap.verisign.com/visa/v1/" + "https://tld-rdap.verisign.com/rwe/v1/" ] ], [ [ - "volvo" + "sener" ], [ - "https://tld-rdap.verisign.com/volvo/v1/" + "https://tld-rdap.verisign.com/sener/v1/" ] ], [ [ - "walmart" + "shell" ], [ - "https://tld-rdap.verisign.com/walmart/v1/" + "https://tld-rdap.verisign.com/shell/v1/" ] ], [ [ - "weber" + "swatch" ], [ - "https://tld-rdap.verisign.com/weber/v1/" + "https://tld-rdap.verisign.com/swatch/v1/" ] ], [ [ - "weir" + "vana" ], [ - "https://tld-rdap.verisign.com/weir/v1/" + "https://tld-rdap.verisign.com/vana/v1/" ] ], [ [ - "windows" + "verisign" ], [ - "https://tld-rdap.verisign.com/windows/v1/" + "https://tld-rdap.verisign.com/verisign/v1/" ] ], [ [ - "xbox" + "visa" ], [ - "https://tld-rdap.verisign.com/xbox/v1/" + "https://tld-rdap.verisign.com/visa/v1/" ] ], [ [ - "xerox" + "weber" ], [ - "https://tld-rdap.verisign.com/xerox/v1/" + "https://tld-rdap.verisign.com/weber/v1/" ] ], [ @@ -6799,14 +5328,6 @@ "https://whois.kyregistry.ky/rdap/" ] ], - [ - [ - "inc" - ], - [ - "https://whois.nic.inc/rdap/" - ] - ], [ [ "mtr" @@ -6831,17 +5352,6 @@ "https://whois.nic.xn--d1acj3b/rdap/" ] ], - [ - [ - "adult", - "porn", - "sex", - "xxx" - ], - [ - "https://whois.registrar.adult/rdap/" - ] - ], [ [ "tz" @@ -6852,32 +5362,15 @@ ], [ [ - "audio", - "auto", - "blackfriday", - "car", - "cars", - "christmas", "click", "country", - "diet", - "flowers", - "game", "gift", - "guitars", - "help", - "hiphop", "hiv", - "hosting", "juegos", "link", - "lol", - "mom", - "photo", - "pics", "property", "sexy", - "tattoo" + "trust" ], [ "https://whois.uniregistry.net/rdap/" diff --git a/src/test/java/net/arin/rdap_bootstrap/service/DefaultBootstrapTest.java b/src/test/java/net/arin/rdap_bootstrap/service/DefaultBootstrapTest.java index 41ce5e6..b177476 100644 --- a/src/test/java/net/arin/rdap_bootstrap/service/DefaultBootstrapTest.java +++ b/src/test/java/net/arin/rdap_bootstrap/service/DefaultBootstrapTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2013-2020 American Registry for Internet Numbers (ARIN) + * Copyright (C) 2013-2024 American Registry for Internet Numbers (ARIN) * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -21,7 +21,7 @@ import static junit.framework.Assert.assertEquals; import static net.arin.rdap_bootstrap.service.TestConstants.ARIN_HTTP; -import static net.arin.rdap_bootstrap.service.TestConstants.INFO_HTTPS; +import static net.arin.rdap_bootstrap.service.TestConstants.ARIN_HTTPS; public class DefaultBootstrapTest { @@ -32,6 +32,6 @@ public void testAllocations() throws Exception d.loadData( new ResourceFiles() ); assertEquals( ARIN_HTTP, d.getServiceUrls( Type.AUTNUM ).getHttpUrl() ); - assertEquals( INFO_HTTPS, d.getServiceUrls( Type.DOMAIN ).getHttpsUrl() ); + assertEquals( ARIN_HTTPS, d.getServiceUrls( Type.DOMAIN ).getHttpsUrl() ); } } diff --git a/src/test/java/net/arin/rdap_bootstrap/service/TestConstants.java b/src/test/java/net/arin/rdap_bootstrap/service/TestConstants.java index 8e901cf..8567797 100644 --- a/src/test/java/net/arin/rdap_bootstrap/service/TestConstants.java +++ b/src/test/java/net/arin/rdap_bootstrap/service/TestConstants.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2020 American Registry for Internet Numbers (ARIN) + * Copyright (C) 2020-2024 American Registry for Internet Numbers (ARIN) * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -33,7 +33,7 @@ public class TestConstants public final static String RIPE_HTTP = "http://rdap.db.ripe.net"; public final static String RIPE_HTTPS = "https://rdap.db.ripe.net"; - public static final String INFO_HTTPS = "https://rdap.afilias.net/rdap/info"; + public static final String INFO_HTTPS = "https://rdap.identitydigital.services/rdap"; public static final String EXAMPLE_HTTP = "http://example.com"; public static final String EXAMPLE_HTTPS = "https://example.com";