[
  {
    "path": ".gitignore",
    "content": "# PHPStorm\n.idea/\n"
  },
  {
    "path": "README.md",
    "content": "# php-whois (UNMAINTAINED)\n\nPHP class to retrieve WHOIS information.\n\n## Example of usage\n\n```php\n\n<?php\n\n$sld = 'reg.ru';\n\n$domain = new Phois\\Whois\\Whois($sld);\n\n$whois_answer = $domain->info();\n\necho $whois_answer;\n\nif ($domain->isAvailable()) {\n    echo \"Domain is available\\n\";\n} else {\n    echo \"Domain is registered\\n\";\n}\n\n```\n"
  },
  {
    "path": "composer.json",
    "content": "{\n    \"name\": \"phois/whois\",\n    \"description\": \"Whois client.\",\n    \"keywords\": [\"whois\"],\n    \"version\": \"1.0.0\",\n    \"license\": \"MIT\",\n    \"authors\": [\n        {\n            \"name\": \"David Rivera\",\n            \"email\": \"David.R.Rivera193@gmail.com\",\n            \"homepage\": \"http://www.protodx.com\",\n            \"role\": \"Systems Developer\"\n        }\n    ],\n    \"require\": {\n        \"php\": \">=5.3.2\",\n        \"ext-curl\": \"*\"\n    },\n    \"autoload\": {\n        \"psr-0\": { \"Phois\\\\Whois\": \"src\" }\n    }\n}\n"
  },
  {
    "path": "examples/usage-example.php",
    "content": "<?php\n\ninclude '../src/Phois/Whois/Whois.php';\n\n$sld = 'reg.ru';\n\n$domain = new Phois\\Whois\\Whois($sld);\n\n$whois_answer = $domain->info();\n\necho $whois_answer;\n\nif ($domain->isAvailable()) {\n    echo \"Domain is available\\n\";\n} else {\n    echo \"Domain is registered\\n\";\n}\n"
  },
  {
    "path": "src/Phois/Whois/Whois.php",
    "content": "<?php\n\nnamespace Phois\\Whois;\n\nclass Whois\n{\n    private $domain;\n\n    private $TLDs;\n\n    private $subDomain;\n\n    private $servers;\n\n    /**\n     * @param string $domain full domain name (without trailing dot)\n     */\n    public function __construct($domain)\n    {\n        $this->domain = $domain;\n        // check $domain syntax and split full domain name on subdomain and TLDs\n        if (\n            preg_match('/^([\\p{L}\\d\\-]+)\\.((?:[\\p{L}\\-]+\\.?)+)$/ui', $this->domain, $matches)\n            || preg_match('/^(xn\\-\\-[\\p{L}\\d\\-]+)\\.(xn\\-\\-(?:[a-z\\d-]+\\.?1?)+)$/ui', $this->domain, $matches)\n        ) {\n            $this->subDomain = $matches[1];\n            $this->TLDs = $matches[2];\n        } else\n            throw new \\InvalidArgumentException(\"Invalid $domain syntax\");\n        // setup whois servers array from json file\n        $this->servers = json_decode(file_get_contents( __DIR__.'/whois.servers.json' ), true);\n    }\n\n    public function info()\n    {\n        if ($this->isValid()) {\n            $whois_server = $this->servers[$this->TLDs][0];\n\n            // If TLDs have been found\n            if ($whois_server != '') {\n\n                // if whois server serve replay over HTTP protocol instead of WHOIS protocol\n                if (preg_match(\"/^https?:\\/\\//i\", $whois_server)) {\n\n                    // curl session to get whois reposnse\n                    $ch = curl_init();\n                    $url = $whois_server . $this->subDomain . '.' . $this->TLDs;\n                    curl_setopt($ch, CURLOPT_URL, $url);\n                    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 0);\n                    curl_setopt($ch, CURLOPT_TIMEOUT, 60);\n                    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);\n                    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);\n                    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);\n\n                    $data = curl_exec($ch);\n\n                    if (curl_error($ch)) {\n                        return \"Connection error!\";\n                    } else {\n                        $string = strip_tags($data);\n                    }\n                    curl_close($ch);\n\n                } else {\n\n                    // Getting whois information\n                    $fp = fsockopen($whois_server, 43);\n                    if (!$fp) {\n                        return \"Connection error!\";\n                    }\n\n                    $dom = $this->subDomain . '.' . $this->TLDs;\n                    fputs($fp, \"$dom\\r\\n\");\n\n                    // Getting string\n                    $string = '';\n\n                    // Checking whois server for .com and .net\n                    if ($this->TLDs == 'com' || $this->TLDs == 'net') {\n                        while (!feof($fp)) {\n                            $line = trim(fgets($fp, 128));\n\n                            $string .= $line;\n\n                            $lineArr = explode (\":\", $line);\n\n                            if (strtolower($lineArr[0]) == 'whois server') {\n                                $whois_server = trim($lineArr[1]);\n                            }\n                        }\n                        // Getting whois information\n                        $fp = fsockopen($whois_server, 43);\n                        if (!$fp) {\n                            return \"Connection error!\";\n                        }\n\n                        $dom = $this->subDomain . '.' . $this->TLDs;\n                        fputs($fp, \"$dom\\r\\n\");\n\n                        // Getting string\n                        $string = '';\n\n                        while (!feof($fp)) {\n                            $string .= fgets($fp, 128);\n                        }\n\n                        // Checking for other tld's\n                    } else {\n                        while (!feof($fp)) {\n                            $string .= fgets($fp, 128);\n                        }\n                    }\n                    fclose($fp);\n                }\n\n                $string_encoding = mb_detect_encoding($string, \"UTF-8, ISO-8859-1, ISO-8859-15\", true);\n                $string_utf8 = mb_convert_encoding($string, \"UTF-8\", $string_encoding);\n\n                return htmlspecialchars($string_utf8, ENT_COMPAT, \"UTF-8\", true);\n            } else {\n                return \"No whois server for this tld in list!\";\n            }\n        } else {\n            return \"Domain name isn't valid!\";\n        }\n    }\n\n    public function htmlInfo()\n    {\n        return nl2br($this->info());\n    }\n\n    /**\n     * @return string full domain name\n     */\n    public function getDomain()\n    {\n        return $this->domain;\n    }\n\n    /**\n     * @return string top level domains separated by dot\n     */\n    public function getTLDs()\n    {\n        return $this->TLDs;\n    }\n\n    /**\n     * @return string return subdomain (low level domain)\n     */\n    public function getSubDomain()\n    {\n        return $this->subDomain;\n    }\n\n    public function isAvailable()\n    {\n        $whois_string = $this->info();\n        $not_found_string = '';\n        if (isset($this->servers[$this->TLDs][1])) {\n           $not_found_string = $this->servers[$this->TLDs][1];\n        }\n\n        $whois_string2 = @preg_replace('/' . $this->domain . '/', '', $whois_string);\n        $whois_string = @preg_replace(\"/\\s+/\", ' ', $whois_string);\n\n        $array = explode (\":\", $not_found_string);\n        if ($array[0] == \"MAXCHARS\") {\n            if (strlen($whois_string2) <= $array[1]) {\n                return true;\n            } else {\n                return false;\n            }\n        } else {\n            if (preg_match(\"/\" . $not_found_string . \"/i\", $whois_string)) {\n                return true;\n            } else {\n                return false;\n            }\n        }\n    }\n\n    public function isValid()\n    {\n        if (\n            isset($this->servers[$this->TLDs][0])\n            && strlen($this->servers[$this->TLDs][0]) > 6\n        ) {\n            $tmp_domain = strtolower($this->subDomain);\n            if (\n                preg_match(\"/^[a-z0-9\\-]{3,}$/\", $tmp_domain)\n                && !preg_match(\"/^-|-$/\", $tmp_domain) //&& !preg_match(\"/--/\", $tmp_domain)\n            ) {\n                return true;\n            }\n        }\n\n        return false;\n    }\n}\n"
  },
  {
    "path": "src/Phois/Whois/whois.servers.json",
    "content": "{\n    \"abogado\": [\n        \"whois-dub.mm-registry.com\",\n        \"is available for registration\"\n    ],\n    \"ac\": [\n        \"whois.nic.ac\",\n        \"Available\"\n    ],\n    \"ac.ac\": [\n        \"whois.nic.ac\",\n        \"Available\"\n    ],\n    \"ac.at\": [\n        \"whois.nic.at\",\n        \"nothing found\"\n    ],\n    \"ac.be\": [\n        \"whois.dns.be\",\n        \"No such domain\"\n    ],\n    \"ac.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"ac.il\": [\n        \"whois.isoc.org.il\",\n        \"No data was found\"\n    ],\n    \"ac.in\": [\n        \"whois.inregistry.in\",\n        \"NOT FOUND\"\n    ],\n    \"ac.jp\": [\n        \"whois.nic.ad.jp\",\n        \"No match!!\"\n    ],\n    \"ac.ke\": [\n        \"whois.kenic.or.ke\",\n        \"Not Registered\"\n    ],\n    \"ac.kr\": [\n        \"whois.nic.or.kr\",\n        \"is not registered\"\n    ],\n    \"ac.nz\": [\n        \"whois.srs.net.nz\",\n        \"220 Available\"\n    ],\n    \"ac.th\": [\n        \"whois.thnic.net\",\n        \"No match for\"\n    ],\n    \"ac.uk\": [\n        \"whois.ja.net\",\n        \"Sorry - no\"\n    ],\n    \"ac.za\": [\n        \"whois.co.za\",\n        \"No information available\"\n    ],\n    \"academy\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"accountants\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"actor\": [\n        \"whois.unitedtld.com\",\n        \"Domain not found.\"\n    ],\n    \"ad\": [\n        \"whois.ripe.net\",\n        \"no entries found\"\n    ],\n    \"adm.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"adult\": [\n        \"whois.afilias-srs.net\",\n        \"NOT FOUND\"\n    ],\n    \"adv.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"ae\": [\n        \"whois-check.aeda.net.ae\",\n        \"---Available\"\n    ],\n    \"aero\": [\n        \"whois.aero\",\n        \"NOT FOUND\"\n    ],\n    \"af\": [\n        \"whois.netnames.net\",\n        \"No Match\"\n    ],\n    \"ag\": [\n        \"whois.nic.ag\",\n        \"NOT FOUND\"\n    ],\n    \"agency\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"agro.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"ah.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"aid.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"airforce\": [\n        \"whois.unitedtld.com\",\n        \"Domain not found.\"\n    ],\n    \"allfinanz\": [\n        \"whois.ksregistry.net\",\n        \"not found...\"\n    ],\n    \"alsace\": [\n        \"whois-alsace.nic.fr\",\n        \"Requested Domain cannot be found\"\n    ],\n    \"alt.za\": [\n        \"whois.co.za\",\n        \"No information available\"\n    ],\n    \"am\": [\n        \"whois.nic.am\",\n        \"No match\"\n    ],\n    \"am.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"android\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"apartments\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"aquarelle\": [\n        \"whois-aquarelle.nic.fr\",\n        \"Requested Domain cannot be found\"\n    ],\n    \"archi\": [\n        \"whois.ksregistry.net\",\n        \"not found...\"\n    ],\n    \"army\": [\n        \"whois.rightside.co\",\n        \"Domain not found.\"\n    ],\n    \"arq.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"art.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"arts.ro\": [\n        \"whois.rotld.ro\",\n        \"No entries found\"\n    ],\n    \"as\": [\n        \"whois.nic.as\",\n        \"Domain Not Found\"\n    ],\n    \"asia\": [\n        \"whois.nic.asia\",\n        \"NOT FOUND\"\n    ],\n    \"asn.au\": [\n        \"whois.aunic.net\",\n        \"No Data Found\"\n    ],\n    \"asso.fr\": [\n        \"whois.nic.fr\",\n        \"No entries found\"\n    ],\n    \"asso.mc\": [\n        \"whois.ripe.net\",\n        \"no entries found\"\n    ],\n    \"associates\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"at\": [\n        \"whois.nic.at\",\n        \"nothing found\"\n    ],\n    \"atm.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"attorney\": [\n        \"whois.rightside.co\",\n        \"Domain not found.\"\n    ],\n    \"au\": [\n        \"whois.audns.net.au\",\n        \"No Data Found\"\n    ],\n    \"auction\": [\n        \"whois.unitedtld.com\",\n        \"Domain not found.\"\n    ],\n    \"audio\": [\n        \"whois.uniregistry.net\",\n        \"is available for\"\n    ],\n    \"auto.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"aw\": [\n        \"whois.nic.aw\",\n        \"is free\"\n    ],\n    \"ax\": [\n        \"whois.ax\",\n        \"No records matching\"\n    ],\n    \"band\": [\n        \"whois.rightside.co\",\n        \"Domain not found.\"\n    ],\n    \"bank\": [\n        \"whois.nic.bank\",\n        \"No match for\"\n    ],\n    \"bar\": [\n        \"whois.nic.bar\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"barclaycard\": [\n        \"whois.nic.barclaycard\",\n        \"No Data Found\"\n    ],\n    \"barclays\": [\n        \"whois.nic.barclays\",\n        \"No Data Found\"\n    ],\n    \"bargains\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"bayern\": [\n        \"whois-dub.mm-registry.com\",\n        \"is available for registration\"\n    ],\n    \"bbs.tr\": [\n        \"whois.metu.edu.tr\",\n        \"No match found\"\n    ],\n    \"be\": [\n        \"whois.dns.be\",\n        \"Status: AVAILABLE\"\n    ],\n    \"beer\": [\n        \"whois-dub.mm-registry.com\",\n        \"is available for registration\"\n    ],\n    \"berlin\": [\n        \"whois.nic.berlin\",\n        \"% No match\"\n    ],\n    \"best\": [\n        \"whois.nic.best\",\n        \"Not found:\"\n    ],\n    \"bg\": [\n        \"whois.register.bg\",\n        \"does not exist in database\"\n    ],\n    \"bi\": [\n        \"whois1.nic.bi\",\n        \"Domain Status: No Object Found\"\n    ],\n    \"bike\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"bingo\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"bio\": [\n        \"whois.ksregistry.net\",\n        \"not found...\"\n    ],\n    \"bio.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"biz\": [\n        \"whois.nic.biz\",\n        \"Not found\"\n    ],\n    \"biz.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"bj\": [\n        \"whois.nic.bj\",\n        \"No records matching\"\n    ],\n    \"bj.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"black\": [\n        \"whois.afilias.net\",\n        \"NOT FOUND\"\n    ],\n    \"blackfriday\": [\n        \"whois.uniregistry.net\",\n        \"is available\"\n    ],\n    \"blue\": [\n        \"whois.afilias.net\",\n        \"NOT FOUND\"\n    ],\n    \"bmw\": [\n        \"whois.ksregistry.net\",\n        \"not found...\"\n    ],\n    \"bnpparibas\": [\n        \"whois.afilias-srs.net\",\n        \"NOT FOUND\"\n    ],\n    \"boo\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"boutique\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"br.com\": [\n        \"whois.centralnic.com\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"brussels\": [\n        \"whois.nic.brussels\",\n        \"is still available\"\n    ],\n    \"budapest\": [\n        \"whois-dub.mm-registry.com\",\n        \"is available for registration\"\n    ],\n    \"build\": [\n        \"whois.nic.build \",\n        \"No Data Found\"\n    ],\n    \"builders\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"business\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"bw\": [\n        \"whois.nic.net.bw\",\n        \"Domain Status: No Object Found\"\n    ],\n    \"by\": [\n        \"whois.cctld.by\",\n        \"no entries found\"\n    ],\n    \"bz\": [\n        \"whois.afilias-grs.info.\",\n        \"NOT FOUND\"\n    ],\n    \"bzh\": [\n        \"whois-bzh.nic.fr\",\n        \"Requested Domain cannot be found\"\n    ],\n    \"ca\": [\n        \"whois.cira.ca\",\n        \"Domain status: available\"\n    ],\n    \"cab\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"cal\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"camera\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"camp\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"cancerresearch\": [\n        \"whois.nic.cancerresearch\",\n        \"No Data Found\"\n    ],\n    \"canon\": [\n        \"whois.nic.canon\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"capetown\": [\n        \"capetown-whois.registry.net.za\",\n        \"Available\"\n    ],\n    \"capital\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"cards\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"care\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"career\": [\n        \"whois.nic.career\",\n        \"No match for\"\n    ],\n    \"careers\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"casa\": [\n        \"whois-dub.mm-registry.com\",\n        \"is available for registration\"\n    ],\n    \"cash\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"casino\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"cat\": [\n        \"whois.cat\",\n        \"NOT FOUND\"\n    ],\n    \"catering\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"cc\": [\n        \"whois.nic.cc\",\n        \"No match\"\n    ],\n    \"cd\": [\n        \"whois.cd\",\n        \"No match\"\n    ],\n    \"center\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"ceo\": [\n        \"whois.nic.ceo\",\n        \"Not found:\"\n    ],\n    \"cern\": [\n        \"whois.afilias-srs.net\",\n        \"NOT FOUND\"\n    ],\n    \"cf\": [\n        \"whois.dot.cf\",\n        \"Invalid query or domain name not known\"\n    ],\n    \"ch\": [\n        \"whois.nic.ch\",\n        \"not have an entry\"\n    ],\n    \"channel\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"chat\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"cheap\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"christmas\": [\n        \"whois.uniregistry.net\",\n        \"is available\"\n    ],\n    \"chrome\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"church\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"ci\": [\n        \"whois.nic.ci\",\n        \"not found\"\n    ],\n    \"city\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"cl\": [\n        \"whois.nic.cl\",\n        \"no existe\"\n    ],\n    \"claims\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"cleaning\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"click\": [\n        \"whois.uniregistry.net\",\n        \"is available for\"\n    ],\n    \"clinic\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"clothing\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"club\": [\n        \"whois.nic.club\",\n        \"Not found:\"\n    ],\n    \"cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"cn.com\": [\n        \"whois.centralnic.com\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"cng.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"cnt.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"co\": [\n        \"whois.nic.co\",\n        \"Not found\"\n    ],\n    \"co.ac\": [\n        \"whois.nic.ac\",\n        \"Available\"\n    ],\n    \"co.at\": [\n        \"whois.nic.at\",\n        \"nothing found\"\n    ],\n    \"co.il\": [\n        \"whois.isoc.org.il\",\n        \"No data was found\"\n    ],\n    \"co.in\": [\n        \"whois.inregistry.in\",\n        \"NOT FOUND\"\n    ],\n    \"co.jp\": [\n        \"whois.nic.ad.jp\",\n        \"No match!!\"\n    ],\n    \"co.ke\": [\n        \"whois.kenic.or.ke\",\n        \"Not Registered\"\n    ],\n    \"co.kr\": [\n        \"whois.nic.or.kr\",\n        \"is not registered\"\n    ],\n    \"co.nz\": [\n        \"whois.srs.net.nz\",\n        \"220 Available\"\n    ],\n    \"co.rs\": [\n        \"whois.rnids.rs\",\n        \"%ERROR:103\"\n    ],\n    \"co.th\": [\n        \"whois.thnic.net\",\n        \"No match for\"\n    ],\n    \"co.uk\": [\n        \"whois.nic.uk\",\n        \"No match\"\n    ],\n    \"co.ve\": [\n        \"whois.nic.ve\",\n        \"No match for\"\n    ],\n    \"co.za\": [\n        \"http:\\/\\/whois.registry.net.za\\/whois\\/whois.sh?Domain=\",\n        \"No Matches\"\n    ],\n    \"coach\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"codes\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"coffee\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"college\": [\n        \"whois.nic.college\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"cologne\": [\n        \"whois-fe1.pdt.cologne.tango.knipp.de\",\n        \"% no matching objects found\"\n    ],\n    \"com\": [\n        \"whois.crsnic.net\",\n        \"No match for\"\n    ],\n    \"com.au\": [\n        \"whois.aunic.net\",\n        \"No Data Found\"\n    ],\n    \"com.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"com.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"com.co\": [\n        \"whois.nic.co\",\n        \"Not found\"\n    ],\n    \"com.de\": [\n        \"whois.centralnic.com\",\n        \"Status: free\"\n    ],\n    \"com.ec\": [\n        \"whois.lac.net\",\n        \"No match found\"\n    ],\n    \"com.fr\": [\n        \"whois.nic.fr\",\n        \"No entries found\"\n    ],\n    \"com.gr\": [\n        \"http:\\/\\/grwhois.ics.forth.gr:800\\/plainwhois\\/plainWhois?domainName=\",\n        \"not exist\"\n    ],\n    \"com.gt\": [\n        \"http:\\/\\/www.gt\\/cgi-bin\\/whois.cgi?domain=\",\n        \"DOMINIO NO REGISTRADO\"\n    ],\n    \"com.hk\": [\n        \"whois.hkdnr.net.hk\",\n        \"The domain has not been registered\"\n    ],\n    \"com.mm\": [\n        \"whois.nic.mm\",\n        \"No domains matched\"\n    ],\n    \"com.mx\": [\n        \"whois.nic.mx\",\n        \"Object_Not_Found\"\n    ],\n    \"com.my\": [\n        \"whois.mynic.net.my\",\n        \"does not exist\"\n    ],\n    \"com.ph\": [\n        \"http:\\/\\/www2.dot.ph\\/WhoIs.asp?Domain=\",\n        \"is still available\"\n    ],\n    \"com.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"com.pt\": [\n        \"whois.dns.pt\",\n        \"no match\"\n    ],\n    \"com.ro\": [\n        \"whois.rotld.ro\",\n        \"No entries found\"\n    ],\n    \"com.ru\": [\n        \"whois.ripn.net\",\n        \"No entries found\"\n    ],\n    \"com.sg\": [\n        \"whois.nic.net.sg\",\n        \"Domain Not Found\"\n    ],\n    \"com.tr\": [\n        \"whois.metu.edu.tr\",\n        \"No match found\"\n    ],\n    \"com.tw\": [\n        \"whois.twnic.net\",\n        \"No Found\"\n    ],\n    \"com.ua\": [\n        \"whois.net.ua\",\n        \"No entries found\"\n    ],\n    \"com.ve\": [\n        \"whois.nic.ve\",\n        \"No match for\"\n    ],\n    \"community\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"company\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"computer\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"condos\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"construction\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"consulting\": [\n        \"whois.unitedtld.com\",\n        \"Domain not found.\"\n    ],\n    \"contractors\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"cooking\": [\n        \"whois-dub.mm-registry.com\",\n        \"is available for registration\"\n    ],\n    \"cool\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"coop\": [\n        \"whois.nic.coop\",\n        \"No domain records were found to match\"\n    ],\n    \"country\": [\n        \"whois-dub.mm-registry.com\",\n        \"is available for registration\"\n    ],\n    \"courses\": [\n        \"whois.aridnrs.net.au\",\n        \"No Data Found\"\n    ],\n    \"cq.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"credit\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"creditcard\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"cricket\": [\n        \"whois.nic.cricket\",\n        \"is available\"\n    ],\n    \"cruises\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"cuisinella\": [\n        \"whois.nic.cuisinella\",\n        \"No Data Found\"\n    ],\n    \"cx\": [\n        \"whois.nic.cx\",\n        \"No match for\"\n    ],\n    \"cymru\": [\n        \"whois.nic.cymru\",\n        \"This domain name has not been registered.\"\n    ],\n    \"cz\": [\n        \"whois.nic.cz\",\n        \"No entries found\"\n    ],\n    \"dad\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"dance\": [\n        \"whois.unitedtld.com\",\n        \"Domain not found.\"\n    ],\n    \"dating\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"datsun\": [\n        \"whois.nic.gmo\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"day\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"dclk\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"de\": [\n        \"whois.denic.de\",\n        \"Status: free\"\n    ],\n    \"deals\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"degree\": [\n        \"whois.rightside.co\",\n        \"Domain not found.\"\n    ],\n    \"delivery\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"democrat\": [\n        \"whois.unitedtld.com\",\n        \"Domain not found.\"\n    ],\n    \"dental\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"dentist\": [\n        \"whois.rightside.co\",\n        \"Domain not found.\"\n    ],\n    \"desi\": [\n        \"whois.ksregistry.net\",\n        \"not found...\"\n    ],\n    \"design\": [\n        \"whois.nic.design\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"dev\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"diamonds\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"diet\": [\n        \"whois.uniregistry.net\",\n        \"is available for\"\n    ],\n    \"digital\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"direct\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"directory\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"discount\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"dk\": [\n        \"whois.dk-hostmaster.dk\",\n        \"No entries found\"\n    ],\n    \"dm\": [\n        \"whois.nic.dm\",\n        \"not found...\"\n    ],\n    \"dn.ua\": [\n        \"whois.net.ua\",\n        \"No entries found\"\n    ],\n    \"docs\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"domains\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"doosan\": [\n        \"whois.nic.doosan\",\n        \"No match for\"\n    ],\n    \"durban\": [\n        \"durban-whois.registry.net.za\",\n        \"Available\"\n    ],\n    \"dvag\": [\n        \"whois.ksregistry.net\",\n        \"not found...\"\n    ],\n    \"dz\": [\n        \"whois.nic.dz\",\n        \"NO OBJECT FOUND!\"\n    ],\n    \"eat\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"ec\": [\n        \"whois.nic.ec\",\n        \"Status: Not Registered\"\n    ],\n    \"ecn.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"edu\": [\n        \"whois.internic.net\",\n        \"No match for\"\n    ],\n    \"edu.au\": [\n        \"whois.aunic.net\",\n        \"No Data Found\"\n    ],\n    \"edu.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"edu.gr\": [\n        \"http:\\/\\/grwhois.ics.forth.gr:800\\/plainwhois\\/plainWhois?domainName=\",\n        \"not exist\"\n    ],\n    \"edu.gt\": [\n        \"http:\\/\\/www.gt\\/cgi-bin\\/whois.cgi?domain=\",\n        \"DOMINIO NO REGISTRADO\"\n    ],\n    \"edu.hk\": [\n        \"whois.hkdnr.net.hk\",\n        \"The domain has not been registered\"\n    ],\n    \"edu.mm\": [\n        \"whois.nic.mm\",\n        \"No domains matched\"\n    ],\n    \"edu.mx\": [\n        \"whois.nic.mx\",\n        \"Object_Not_Found\"\n    ],\n    \"edu.my\": [\n        \"whois.mynic.net.my\",\n        \"does not exist\"\n    ],\n    \"edu.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"edu.pt\": [\n        \"whois.dns.pt\",\n        \"no match\"\n    ],\n    \"edu.rs\": [\n        \"whois.rnids.rs\",\n        \"%ERROR:103\"\n    ],\n    \"edu.sg\": [\n        \"whois.nic.net.sg\",\n        \"Domain Not Found\"\n    ],\n    \"edu.tr\": [\n        \"whois.metu.edu.tr\",\n        \"No match found\"\n    ],\n    \"edu.za\": [\n        \"whois.co.za\",\n        \"No information available\"\n    ],\n    \"education\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"ee\": [\n        \"whois.tld.ee\",\n        \"% No entries found.\"\n    ],\n    \"email\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"emerck\": [\n        \"whois.afilias-srs.net\",\n        \"NOT FOUND\"\n    ],\n    \"energy\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"eng.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"engineer\": [\n        \"whois.rightside.co\",\n        \"Domain not found.\"\n    ],\n    \"engineering\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"enterprises\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"epson\": [\n        \"whois.aridnrs.net.au\",\n        \"No Data Found\"\n    ],\n    \"equipment\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"ernet.in\": [\n        \"whois.inregistry.in\",\n        \"NOT FOUND\"\n    ],\n    \"es\": [\n        \"http:\\/\\/whois.virtualname.es\\/whois.php?domain=\",\n        \"LIBRE\"\n    ],\n    \"esp.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"esq\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"estate\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"etc.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"eti.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"eu\": [\n        \"whois.eu\",\n        \"Status: AVAILABLE\"\n    ],\n    \"eu.com\": [\n        \"whois.centralnic.com\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"eu.lv\": [\n        \"whois.biz\",\n        \"Not found\"\n    ],\n    \"eurovision\": [\n        \"whois.nic.eurovision\",\n        \"% no matching objects found\"\n    ],\n    \"eus\": [\n        \"whois.eus.coreregistry.net\",\n        \"% no matching objects found\"\n    ],\n    \"events\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"exchange\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"expert\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"exposed\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"fail\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"fans\": [\n        \"whois.nic.fans\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"farm\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"fashion\": [\n        \"whois-dub.mm-registry.com\",\n        \"is available for registration\"\n    ],\n    \"feedback\": [\n        \"whois.centralnic.com\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"fi\": [\n        \"whois.ficora.fi\",\n        \"Domain not found\"\n    ],\n    \"fin.ec\": [\n        \"whois.lac.net\",\n        \"No match found\"\n    ],\n    \"finance\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"financial\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"firm.ro\": [\n        \"whois.rotld.ro\",\n        \"No entries found\"\n    ],\n    \"firmdale\": [\n        \"whois.nic.firmdale\",\n        \"Domain Not Found\"\n    ],\n    \"fish\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"fishing\": [\n        \"whois-dub.mm-registry.com\",\n        \"is available for registration\"\n    ],\n    \"fit\": [\n        \"whois-dub.mm-registry.com\",\n        \"is available for registration\"\n    ],\n    \"fitness\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"flights\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"florist\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"flowers\": [\n        \"whois.uniregistry.net\",\n        \"is available for\"\n    ],\n    \"flsmidth\": [\n        \"whois.ksregistry.net\",\n        \"not found...\"\n    ],\n    \"fly\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"fm\": [\n        \"whois.nic.fm\",\n        \"Not Registered\"\n    ],\n    \"fm.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"fo\": [\n        \"whois.nic.fo\",\n        \"no entries found\"\n    ],\n    \"foo\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"football\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"forsale\": [\n        \"whois.unitedtld.com\",\n        \"Domain not found.\"\n    ],\n    \"fot.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"foundation\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"fr\": [\n        \"whois.nic.fr\",\n        \"No entries found\"\n    ],\n    \"frl\": [\n        \"whois.nic.frl\",\n        \"is still available\"\n    ],\n    \"frogans\": [\n        \"whois-frogans.nic.fr\",\n        \"Requested Domain cannot be found\"\n    ],\n    \"fst.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"fund\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"furniture\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"futbol\": [\n        \"whois.unitedtld.com\",\n        \"Domain not found\"\n    ],\n    \"g12.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"gal\": [\n        \"whois.gal.coreregistry.net\",\n        \"% no matching objects found\"\n    ],\n    \"gallery\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"garden\": [\n        \"whois-dub.mm-registry.com\",\n        \"is available for registration\"\n    ],\n    \"gb.com\": [\n        \"whois.centralnic.com\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"gb.net\": [\n        \"whois.centralnic.com\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"gbiz\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"gd\": [\n        \"whois.nic.gd\",\n        \"not found...\"\n    ],\n    \"gd.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"gdn\": [\n        \"whois.gdnregistry.com\",\n        \"Domain Not Found\"\n    ],\n    \"geek.nz\": [\n        \"whois.srs.net.nz\",\n        \"220 Available\"\n    ],\n    \"gen.nz\": [\n        \"whois.srs.net.nz\",\n        \"220 Available\"\n    ],\n    \"gent\": [\n        \"whois.nic.gent\",\n        \"is still available\"\n    ],\n    \"gf\": [\n        \"whois.nplus.gf\",\n        \"not found in our database\"\n    ],\n    \"gg\": [\n        \"whois.gg\",\n        \"NOT FOUND\"\n    ],\n    \"ggee\": [\n        \"whois.nic.ggee\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"gi\": [\n        \"whois2.afilias-grs.net\",\n        \"NOT FOUND\"\n    ],\n    \"gift\": [\n        \"whois.uniregistry.net\",\n        \"is available for\"\n    ],\n    \"gifts\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"gives\": [\n        \"whois.rightside.co\",\n        \"Domain not found.\"\n    ],\n    \"gl\": [\n        \"whois.nic.gl\",\n        \"Domain Status: No Object Found\"\n    ],\n    \"glass\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"gle\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"global\": [\n        \"whois.nic.global\",\n        \"NOT FOUND\"\n    ],\n    \"globo\": [\n        \"whois.gtlds.nic.br\",\n        \"No match for\"\n    ],\n    \"gmail\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"gmina.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"gmx\": [\n        \"whois-fe1.gmx.tango.knipp.de\",\n        \"% no matching objects found\"\n    ],\n    \"go.id\": [\n        \"whois.idnic.net.id\",\n        \"Not found\"\n    ],\n    \"go.jp\": [\n        \"whois.nic.ad.jp\",\n        \"No match!!\"\n    ],\n    \"go.kr\": [\n        \"whois.nic.or.kr\",\n        \"is not registered\"\n    ],\n    \"go.th\": [\n        \"whois.thnic.net\",\n        \"No match for\"\n    ],\n    \"gob.gt\": [\n        \"http:\\/\\/www.gt\\/cgi-bin\\/whois.cgi?domain=\",\n        \"DOMINIO NO REGISTRADO\"\n    ],\n    \"gob.mx\": [\n        \"whois.nic.mx\",\n        \"Object_Not_Found\"\n    ],\n    \"goldpoint\": [\n        \"whois.nic.goldpoint\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"goo\": [\n        \"whois.nic.gmo\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"goog\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"google\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"gop\": [\n        \"whois-cl01.mm-registry.com\",\n        \"is available for registration\"\n    ],\n    \"gov\": [\n        \"whois.nic.gov\",\n        \"No match for\"\n    ],\n    \"gov.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"gov.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"gov.ec\": [\n        \"whois.lac.net\",\n        \"No match found\"\n    ],\n    \"gov.gr\": [\n        \"http:\\/\\/grwhois.ics.forth.gr:800\\/plainwhois\\/plainWhois?domainName=\",\n        \"not exist\"\n    ],\n    \"gov.il\": [\n        \"whois.isoc.org.il\",\n        \"No data was found\"\n    ],\n    \"gov.in\": [\n        \"whois.inregistry.in\",\n        \"NOT FOUND\"\n    ],\n    \"gov.mm\": [\n        \"whois.nic.mm\",\n        \"No domains matched\"\n    ],\n    \"gov.mx\": [\n        \"whois.nic.mx\",\n        \"Object_Not_Found\"\n    ],\n    \"gov.my\": [\n        \"whois.mynic.net.my\",\n        \"does not exist\"\n    ],\n    \"gov.sg\": [\n        \"whois.nic.net.sg\",\n        \"Domain Not Found\"\n    ],\n    \"gov.tr\": [\n        \"whois.metu.edu.tr\",\n        \"No match found\"\n    ],\n    \"gov.za\": [\n        \"whois.co.za\",\n        \"No information available\"\n    ],\n    \"gq\": [\n        \"whois.dominio.gq\",\n        \"Invalid query or domain name not known\"\n    ],\n    \"gr\": [\n        \"http:\\/\\/grwhois.ics.forth.gr:800\\/plainwhois\\/plainWhois?domainName=\",\n        \"not exist\"\n    ],\n    \"graphics\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"gratis\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"green\": [\n        \"whois.afilias.net\",\n        \"NOT FOUND\"\n    ],\n    \"gripe\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"gs\": [\n        \"whois.nic.gs\",\n        \"No Object Found\"\n    ],\n    \"gs.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"gsm.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"guide\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"guitars\": [\n        \"whois.uniregistry.net\",\n        \"is available for\"\n    ],\n    \"guru\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"gv.ac\": [\n        \"whois.nic.ac\",\n        \"Available\"\n    ],\n    \"gv.at\": [\n        \"whois.nic.at\",\n        \"nothing found\"\n    ],\n    \"gx.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"gy\": [\n        \"whois.registry.gy\",\n        \"Domain Status: No Object Found\"\n    ],\n    \"gz.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"hamburg\": [\n        \"whois.nic.hamburg\",\n        \"% No match\"\n    ],\n    \"hangout\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"haus\": [\n        \"whois.unitedtld.com\",\n        \"Domain not found.\"\n    ],\n    \"hb.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"he.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"healthcare\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"help\": [\n        \"whois.uniregistry.net\",\n        \"is available for\"\n    ],\n    \"here\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"hi.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"hiphop\": [\n        \"whois.uniregistry.net\",\n        \"is available for\"\n    ],\n    \"hiv\": [\n        \"whois.afilias-srs.net\",\n        \"NOT FOUND\"\n    ],\n    \"hk\": [\n        \"whois.hkirc.hk\",\n        \"The domain has not been registered\"\n    ],\n    \"hk.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"hl.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"hn\": [\n        \"whois.nic.hn\",\n        \"Domain Status: No Object Found\"\n    ],\n    \"hn.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"holdings\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"holiday\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"horse\": [\n        \"whois-dub.mm-registry.com\",\n        \"is available for registration\"\n    ],\n    \"host\": [\n        \"whois.nic.host\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"hosting\": [\n        \"whois.uniregistry.net\",\n        \"is available for\"\n    ],\n    \"house\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"how\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"hr\": [\n        \"http:\\/\\/dns.hr\\/?only_mod_instance=300_612_0&clean_tpl=true&ds_domena=\",\n        \"nije registrirana\"\n    ],\n    \"ht\": [\n        \"whois.nic.ht\",\n        \"Domain Status: No Object Found\"\n    ],\n    \"hu\": [\n        \"whois.nic.hu\",\n        \"No match\"\n    ],\n    \"hu.com\": [\n        \"whois.centralnic.com\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"ibm\": [\n        \"whois.nic.ibm\",\n        \"No Data Found\"\n    ],\n    \"id\": [\n        \"whois.pandi.or.id\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"id.au\": [\n        \"whois.aunic.net\",\n        \"No Data Found\"\n    ],\n    \"ie\": [\n        \"whois.domainregistry.ie\",\n        \"% Not Registered\"\n    ],\n    \"ifm\": [\n        \"whois.nic.ifm\",\n        \"% no matching objects found\"\n    ],\n    \"il\": [\n        \"whois.isoc.org.il\",\n        \"No data was found\"\n    ],\n    \"im\": [\n        \"whois.nic.im\",\n        \"was not found\"\n    ],\n    \"immo\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"immobilien\": [\n        \"whois.unitedtld.com\",\n        \"Domain not found.\"\n    ],\n    \"in\": [\n        \"whois.inregistry.in\",\n        \"NOT FOUND\"\n    ],\n    \"in.rs\": [\n        \"whois.rnids.rs\",\n        \"%ERROR:103\"\n    ],\n    \"in.th\": [\n        \"whois.thnic.net\",\n        \"No match for\"\n    ],\n    \"ind.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"ind.gt\": [\n        \"http:\\/\\/www.gt\\/cgi-bin\\/whois.cgi?domain=\",\n        \"DOMINIO NO REGISTRADO\"\n    ],\n    \"industries\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"inf.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"infiniti\": [\n        \"whois.nic.gmo\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"info\": [\n        \"whois.afilias.net\",\n        \"NOT FOUND\"\n    ],\n    \"info.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"info.ro\": [\n        \"whois.rotld.ro\",\n        \"No entries found\"\n    ],\n    \"info.ve\": [\n        \"whois.nic.ve\",\n        \"No match for\"\n    ],\n    \"ing\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"ink\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"institute\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"insure\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"int\": [\n        \"whois.iana.org\",\n        \"but this server does not have\"\n    ],\n    \"international\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"investments\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"io\": [\n        \"whois.nic.io\",\n        \"is available\"\n    ],\n    \"iq\": [\n        \"whois.cmc.iq\",\n        \"Domain Status: No Object Found\"\n    ],\n    \"ir\": [\n        \"whois.nic.ir\",\n        \"no entries found\"\n    ],\n    \"is\": [\n        \"whois.isnic.is\",\n        \"No entries found\"\n    ],\n    \"it\": [\n        \"whois.nic.it\",\n        \"AVAILABLE\"\n    ],\n    \"iwi.nz\": [\n        \"whois.srs.net.nz\",\n        \"220 Available\"\n    ],\n    \"java\": [\n        \"whois.nic.java\",\n        \"No match for\"\n    ],\n    \"jcb\": [\n        \"whois.nic.gmo\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"je\": [\n        \"whois.je\",\n        \"NOT FOUND\"\n    ],\n    \"jl.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"jobs\": [\n        \"jobswhois.verisign-grs.com\",\n        \"No match for\"\n    ],\n    \"joburg\": [\n        \"joburg-whois.registry.net.za\",\n        \"Available\"\n    ],\n    \"jor.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"jp\": [\n        \"whois.jprs.jp\",\n        \"No match!!\"\n    ],\n    \"js.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"juegos\": [\n        \"whois.uniregistry.net\",\n        \"is available for\"\n    ],\n    \"k12.il\": [\n        \"whois.isoc.org.il\",\n        \"No data was found\"\n    ],\n    \"k12.tr\": [\n        \"whois.metu.edu.tr\",\n        \"No match found\"\n    ],\n    \"kaufen\": [\n        \"whois.unitedtld.com\",\n        \"Domain not found.\"\n    ],\n    \"kddi\": [\n        \"whois.nic.kddi\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"ke\": [\n        \"whois.kenic.or.ke\",\n        \"Domain Status: No Object Found\"\n    ],\n    \"kg\": [\n        \"whois.domain.kg\",\n        \"is available for registration\"\n    ],\n    \"kh.ua\": [\n        \"whois.net.ua\",\n        \"No entries found\"\n    ],\n    \"ki\": [\n        \"whois.nic.ki\",\n        \"Domain Status: No Object Found\"\n    ],\n    \"kiev.ua\": [\n        \"whois.net.ua\",\n        \"No entries found\"\n    ],\n    \"kim\": [\n        \"whois.afilias.net\",\n        \"NOT FOUND\"\n    ],\n    \"kitchen\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"kiwi\": [\n        \"whois.nic.kiwi\",\n        \"is available for registration\"\n    ],\n    \"kiwi.nz\": [\n        \"whois.srs.net.nz\",\n        \"220 Available\"\n    ],\n    \"koeln\": [\n        \"whois-fe1.pdt.koeln.tango.knipp.de\",\n        \"% no matching objects found\"\n    ],\n    \"kr\": [\n        \"whois.kr\",\n        \"is not registered\"\n    ],\n    \"krd\": [\n        \"whois.aridnrs.net.au\",\n        \"No Data Found\"\n    ],\n    \"ky\": [\n        \"whois.kyregistry.ky\",\n        \"is available for\"\n    ],\n    \"kyoto\": [\n        \"whois.nic.kyoto\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"kz\": [\n        \"whois.nic.kz\",\n        \"Nothing found for this query.\"\n    ],\n    \"la\": [\n        \"whois.nic.la\",\n        \"NOT FOUND\"\n    ],\n    \"lacaixa\": [\n        \"whois.nic.lacaixa\",\n        \"% no matching objects found\"\n    ],\n    \"land\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"lat\": [\n        \"whois.nic.lat\",\n        \"Object_Not_Found\"\n    ],\n    \"latrobe\": [\n        \"whois.nic.latrobe\",\n        \"No Data Found\"\n    ],\n    \"lawyer\": [\n        \"whois.rightside.co\",\n        \"Domain not found.\"\n    ],\n    \"lc\": [\n        \"whois2.afilias-grs.net\",\n        \"NOT FOUND\"\n    ],\n    \"lease\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"leclerc\": [\n        \"whois-leclerc.nic.fr\",\n        \"Requested Domain cannot be found\"\n    ],\n    \"legal\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"lel.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"lg.ua\": [\n        \"whois.net.ua\",\n        \"No entries found\"\n    ],\n    \"lgbt\": [\n        \"whois.afilias.net\",\n        \"NOT FOUND\"\n    ],\n    \"li\": [\n        \"whois.nic.li\",\n        \"do not have an entry in our database matching your query\"\n    ],\n    \"life\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"lighting\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"limited\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"limo\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"link\": [\n        \"whois.uniregistry.net\",\n        \"is available for\"\n    ],\n    \"ln.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"loans\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"london\": [\n        \"whois-lon.mm-registry.com\",\n        \"is available for registration\"\n    ],\n    \"lotte\": [\n        \"whois.nic.lotte\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"lt\": [\n        \"whois.domreg.lt\",\n        \"Status:\\t\\t\\tavailable\"\n    ],\n    \"ltd.uk\": [\n        \"whois.nic.uk\",\n        \"No match\"\n    ],\n    \"ltda\": [\n        \"whois.afilias-srs.net\",\n        \"NOT FOUND\"\n    ],\n    \"lu\": [\n        \"whois.dns.lu\",\n        \"No such domain\"\n    ],\n    \"luxe\": [\n        \"whois-dub.mm-registry.com\",\n        \"is available for registration\"\n    ],\n    \"luxury\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"lv\": [\n        \"whois.nic.lv\",\n        \"Status: free\"\n    ],\n    \"lviv.ua\": [\n        \"whois.net.ua\",\n        \"No entries found\"\n    ],\n    \"ly\": [\n        \"whois.nic.ly\",\n        \"Not found\"\n    ],\n    \"ma\": [\n        \"whois.iam.net.ma\",\n        \"Domain Status: No Object Found\"\n    ],\n    \"madrid\": [\n        \"whois.madrid.rs.corenic.net\",\n        \"% no matching objects found\"\n    ],\n    \"mail.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"maison\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"management\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"mango\": [\n        \"whois.mango.coreregistry.net\",\n        \"% no matching objects found\"\n    ],\n    \"maori.nz\": [\n        \"whois.srs.net.nz\",\n        \"220 Available\"\n    ],\n    \"market\": [\n        \"whois.rightside.co\",\n        \"Domain not found.\"\n    ],\n    \"marketing\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"md\": [\n        \"whois.nic.md\",\n        \"No match for\"\n    ],\n    \"me\": [\n        \"whois.meregistry.net\",\n        \"NOT FOUND\"\n    ],\n    \"me.uk\": [\n        \"whois.nic.uk\",\n        \"No match\"\n    ],\n    \"med.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"med.ec\": [\n        \"whois.lac.net\",\n        \"No match found\"\n    ],\n    \"media\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"media.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"melbourne\": [\n        \"whois.aridnrs.net.au\",\n        \"No Data Found\"\n    ],\n    \"meme\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"memorial\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"menu\": [\n        \"whois.nic.menu\",\n        \"No Data Found\"\n    ],\n    \"mg\": [\n        \"whois.nic.mg\",\n        \"Domain Status: No Object Found\"\n    ],\n    \"mi.th\": [\n        \"whois.thnic.net\",\n        \"No match for\"\n    ],\n    \"miami\": [\n        \"whois-dub.mm-registry.com\",\n        \"is available for registration\"\n    ],\n    \"miasta.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"mil\": [\n        \"whois.internic.net\",\n        \"No match for\"\n    ],\n    \"mil.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"mil.ec\": [\n        \"whois.lac.net\",\n        \"No match found\"\n    ],\n    \"mil.gt\": [\n        \"http:\\/\\/www.gt\\/cgi-bin\\/whois.cgi?domain=\",\n        \"DOMINIO NO REGISTRADO\"\n    ],\n    \"mil.id\": [\n        \"whois.idnic.net.id\",\n        \"Not found\"\n    ],\n    \"mil.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"mil.tr\": [\n        \"whois.metu.edu.tr\",\n        \"No match found\"\n    ],\n    \"mil.za\": [\n        \"whois.co.za\",\n        \"No information available\"\n    ],\n    \"mini\": [\n        \"whois.ksregistry.net\",\n        \"not found...\"\n    ],\n    \"mk\": [\n        \"whois.marnet.mk\",\n        \"% No entries found.\"\n    ],\n    \"ml\": [\n        \"whois.dot.ml\",\n        \"Invalid query or domain name not known\"\n    ],\n    \"mn\": [\n        \"whois.afilias-grs.info\",\n        \"NOT FOUND\"\n    ],\n    \"mo\": [\n        \"whois.monic.mo\",\n        \"No match for\"\n    ],\n    \"mo.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"mobi\": [\n        \"whois.dotmobiregistry.net\",\n        \"NOT FOUND\"\n    ],\n    \"moda\": [\n        \"whois.unitedtld.com\",\n        \"Domain not found.\"\n    ],\n    \"monash\": [\n        \"whois.nic.monash\",\n        \"No Data Found\"\n    ],\n    \"money\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"mortgage\": [\n        \"whois.rightside.co\",\n        \"Domain not found.\"\n    ],\n    \"moscow\": [\n        \"whois.nic.moscow\",\n        \"No entries found\"\n    ],\n    \"mov\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"ms\": [\n        \"whois.nic.ms\",\n        \"No Object Found\"\n    ],\n    \"msk.ru\": [\n        \"whois.nic.ru\",\n        \"No entries found\"\n    ],\n    \"mtpc\": [\n        \"whois.nic.gmo\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"mu\": [\n        \"whois.nic.mu\",\n        \"Domain Status: No Object Found\"\n    ],\n    \"muni.il\": [\n        \"whois.isoc.org.il\",\n        \"No data was found\"\n    ],\n    \"museum\": [\n        \"whois.museum\",\n        \"NOT FOUND\"\n    ],\n    \"mx\": [\n        \"whois.nic.mx\",\n        \"Object_Not_Found\"\n    ],\n    \"my\": [\n        \"whois.mynic.net.my\",\n        \"does not exist in database\"\n    ],\n    \"mz\": [\n        \"whois.nic.mz\",\n        \"Domain Status: No Object Found\"\n    ],\n    \"na\": [\n        \"whois.na-nic.com.na\",\n        \"Domain Status: No Object Found\"\n    ],\n    \"name\": [\n        \"whois.nic.name\",\n        \"No match\"\n    ],\n    \"navy\": [\n        \"whois.rightside.co\",\n        \"Domain not found.\"\n    ],\n    \"nc\": [\n        \"whois.nc\",\n        \"No entries found\"\n    ],\n    \"ne.jp\": [\n        \"whois.nic.ad.jp\",\n        \"No match!!\"\n    ],\n    \"ne.kr\": [\n        \"whois.nic.or.kr\",\n        \"is not registered\"\n    ],\n    \"net\": [\n        \"whois.crsnic.net\",\n        \"No match for\"\n    ],\n    \"net.au\": [\n        \"whois.aunic.net\",\n        \"No Data Found\"\n    ],\n    \"net.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"net.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"net.co\": [\n        \"whois.nic.co\",\n        \"Not found\"\n    ],\n    \"net.ec\": [\n        \"whois.lac.net\",\n        \"No match found\"\n    ],\n    \"net.gr\": [\n        \"http:\\/\\/grwhois.ics.forth.gr:800\\/plainwhois\\/plainWhois?domainName=\",\n        \"not exist\"\n    ],\n    \"net.gt\": [\n        \"http:\\/\\/www.gt\\/cgi-bin\\/whois.cgi?domain=\",\n        \"DOMINIO NO REGISTRADO\"\n    ],\n    \"net.hk\": [\n        \"whois.hkdnr.net.hk\",\n        \"The domain has not been registered\"\n    ],\n    \"net.il\": [\n        \"whois.isoc.org.il\",\n        \"No data was found\"\n    ],\n    \"net.in\": [\n        \"whois.inregistry.in\",\n        \"NOT FOUND\"\n    ],\n    \"net.mm\": [\n        \"whois.nic.mm\",\n        \"No domains matched\"\n    ],\n    \"net.mx\": [\n        \"whois.nic.mx\",\n        \"Object_Not_Found\"\n    ],\n    \"net.my\": [\n        \"whois.mynic.net.my\",\n        \"does not exist\"\n    ],\n    \"net.nz\": [\n        \"whois.srs.net.nz\",\n        \"220 Available\"\n    ],\n    \"net.ph\": [\n        \"http:\\/\\/www2.dot.ph\\/WhoIs.asp?Domain=\",\n        \"is still available\"\n    ],\n    \"net.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"net.ru\": [\n        \"whois.ripn.net\",\n        \"No entries found\"\n    ],\n    \"net.sg\": [\n        \"whois.nic.net.sg\",\n        \"Domain Not Found\"\n    ],\n    \"net.th\": [\n        \"whois.thnic.net\",\n        \"No match for\"\n    ],\n    \"net.tr\": [\n        \"whois.metu.edu.tr\",\n        \"No match found\"\n    ],\n    \"net.tw\": [\n        \"whois.twnic.net\",\n        \"No Found\"\n    ],\n    \"net.ua\": [\n        \"whois.net.ua\",\n        \"No entries found\"\n    ],\n    \"net.uk\": [\n        \"whois.nic.uk\",\n        \"No match\"\n    ],\n    \"net.ve\": [\n        \"whois.nic.ve\",\n        \"No match for\"\n    ],\n    \"net.za\": [\n        \"whois.co.za\",\n        \"No information available\"\n    ],\n    \"network\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"new\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"nexus\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"nf\": [\n        \"whois.nic.nf\",\n        \"Domain Status: No Object Found\"\n    ],\n    \"ng\": [\n        \"whois.nic.net.ng\",\n        \"Domain Status: No Object Found\"\n    ],\n    \"ngo\": [\n        \"whois.publicinterestregistry.net\",\n        \"NOT FOUND\"\n    ],\n    \"ngo.ph\": [\n        \"http:\\/\\/www2.dot.ph\\/WhoIs.asp?Domain=\",\n        \"is still available\"\n    ],\n    \"ngo.za\": [\n        \"whois.co.za\",\n        \"No information available\"\n    ],\n    \"nico\": [\n        \"whois.nic.nico\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"ninja\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"nissan\": [\n        \"whois.nic.gmo\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"nl\": [\n        \"whois.domain-registry.nl\",\n        \"is free\"\n    ],\n    \"nm.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"nm.kr\": [\n        \"whois.nic.or.kr\",\n        \"is not registered\"\n    ],\n    \"no\": [\n        \"whois.norid.no\",\n        \"No match\"\n    ],\n    \"no.com\": [\n        \"whois.centralnic.com\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"nom.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"nom.co\": [\n        \"whois.nic.co\",\n        \"Not found\"\n    ],\n    \"nom.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"nom.ro\": [\n        \"whois.rotld.ro\",\n        \"No entries found\"\n    ],\n    \"nom.za\": [\n        \"whois.co.za\",\n        \"No information available\"\n    ],\n    \"nra\": [\n        \"whois.afilias-srs.net\",\n        \"NOT FOUND\"\n    ],\n    \"nrw\": [\n        \"whois.nic.nrw\",\n        \"% no matching objects found\"\n    ],\n    \"nt.ro\": [\n        \"whois.rotld.ro\",\n        \"No entries found\"\n    ],\n    \"ntr.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"nu\": [\n        \"whois.nic.nu\",\n        \"not found\"\n    ],\n    \"nx.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"nz\": [\n        \"whois.srs.net.nz\",\n        \"220 Available\"\n    ],\n    \"odo.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"om\": [\n        \"whois.registry.om\",\n        \"No Data Found\"\n    ],\n    \"one\": [\n        \"whois.nic.one\",\n        \"No Data Found\"\n    ],\n    \"ong\": [\n        \"whois.publicinterestregistry.net\",\n        \"NOT FOUND\"\n    ],\n    \"onl\": [\n        \"whois.afilias-srs.net\",\n        \"NOT FOUND\"\n    ],\n    \"ooo\": [\n        \"whois.nic.ooo\",\n        \"No match for\"\n    ],\n    \"or.ac\": [\n        \"whois.nic.ac\",\n        \"Available\"\n    ],\n    \"or.at\": [\n        \"whois.nic.at\",\n        \"nothing found\"\n    ],\n    \"or.jp\": [\n        \"whois.nic.ad.jp\",\n        \"No match!!\"\n    ],\n    \"or.kr\": [\n        \"whois.nic.or.kr\",\n        \"is not registered\"\n    ],\n    \"or.th\": [\n        \"whois.thnic.net\",\n        \"No match for\"\n    ],\n    \"org\": [\n        \"whois.publicinterestregistry.net\",\n        \"NOT FOUND\"\n    ],\n    \"org.au\": [\n        \"whois.aunic.net\",\n        \"No Data Found\"\n    ],\n    \"org.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"org.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"org.ec\": [\n        \"whois.lac.net\",\n        \"No match found\"\n    ],\n    \"org.gr\": [\n        \"http:\\/\\/grwhois.ics.forth.gr:800\\/plainwhois\\/plainWhois?domainName=\",\n        \"not exist\"\n    ],\n    \"org.gt\": [\n        \"http:\\/\\/www.gt\\/cgi-bin\\/whois.cgi?domain=\",\n        \"DOMINIO NO REGISTRADO\"\n    ],\n    \"org.hk\": [\n        \"whois.hkdnr.net.hk\",\n        \"The domain has not been registered\"\n    ],\n    \"org.il\": [\n        \"whois.isoc.org.il\",\n        \"No data was found\"\n    ],\n    \"org.in\": [\n        \"whois.inregistry.in\",\n        \"NOT FOUND\"\n    ],\n    \"org.mm\": [\n        \"whois.nic.mm\",\n        \"No domains matched\"\n    ],\n    \"org.mx\": [\n        \"whois.nic.mx\",\n        \"Object_Not_Found\"\n    ],\n    \"org.my\": [\n        \"whois.mynic.net.my\",\n        \"does not exist\"\n    ],\n    \"org.nz\": [\n        \"whois.srs.net.nz\",\n        \"220 Available\"\n    ],\n    \"org.ph\": [\n        \"http:\\/\\/www2.dot.ph\\/WhoIs.asp?Domain=\",\n        \"is still available\"\n    ],\n    \"org.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"org.ro\": [\n        \"whois.rotld.ro\",\n        \"No entries found\"\n    ],\n    \"org.rs\": [\n        \"whois.rnids.rs\",\n        \"%ERROR:103\"\n    ],\n    \"org.ru\": [\n        \"whois.nic.ru\",\n        \"No entries found\"\n    ],\n    \"org.sg\": [\n        \"whois.nic.net.sg\",\n        \"Domain Not Found\"\n    ],\n    \"org.tr\": [\n        \"whois.metu.edu.tr\",\n        \"No match found\"\n    ],\n    \"org.tw\": [\n        \"whois.twnic.net\",\n        \"No Found\"\n    ],\n    \"org.ua\": [\n        \"whois.net.ua\",\n        \"No entries found\"\n    ],\n    \"org.uk\": [\n        \"whois.nic.uk\",\n        \"No match\"\n    ],\n    \"org.ve\": [\n        \"whois.nic.ve\",\n        \"No match for\"\n    ],\n    \"org.za\": [\n        \"http:\\/\\/org.za\\/cgi-bin\\/rwhois?format=full&domain=\",\n        \"Domain not registered\"\n    ],\n    \"organic\": [\n        \"whois.afilias.net\",\n        \"NOT FOUND\"\n    ],\n    \"ovh\": [\n        \"whois-ovh.nic.fr\",\n        \"Requested Domain cannot be found\"\n    ],\n    \"paris\": [\n        \"whois-paris.nic.fr\",\n        \"Requested Domain cannot be found\"\n    ],\n    \"partners\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"parts\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"pc.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"pe\": [\n        \"kero.yachay.pe\",\n        \"Status: Not Registered\"\n    ],\n    \"pf\": [\n        \"whois.registry.pf\",\n        \"Domain unknown\"\n    ],\n    \"ph\": [\n        \"http:\\/\\/www2.dot.ph\\/WhoIs.asp?Domain=\",\n        \"is still available\"\n    ],\n    \"photo\": [\n        \"whois.uniregistry.net\",\n        \"is available for\"\n    ],\n    \"photography\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"photos\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"physio\": [\n        \"whois.nic.physio\",\n        \"No Data Found\"\n    ],\n    \"pics\": [\n        \"whois.uniregistry.net\",\n        \"is available for\"\n    ],\n    \"pictures\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"pink\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"pizza\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"place\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"plc.uk\": [\n        \"whois.nic.uk\",\n        \"No match\"\n    ],\n    \"plumbing\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"pm\": [\n        \"whois.nic.pm\",\n        \"No entries found\"\n    ],\n    \"pohl\": [\n        \"whois.ksregistry.net\",\n        \"not found...\"\n    ],\n    \"poker\": [\n        \"whois.afilias.net\",\n        \"NOT FOUND\"\n    ],\n    \"porn\": [\n        \"whois.afilias-srs.net\",\n        \"NOT FOUND\"\n    ],\n    \"post\": [\n        \"whois.dotpostregistry.net\",\n        \"NOT FOUND\"\n    ],\n    \"pp.ru\": [\n        \"whois.nic.ru\",\n        \"No entries found\"\n    ],\n    \"ppg.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"pr\": [\n        \"whois.nic.pr\",\n        \"is not registered\"\n    ],\n    \"press\": [\n        \"whois.nic.press\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"presse.fr\": [\n        \"whois.nic.fr\",\n        \"No entries found\"\n    ],\n    \"priv.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"pro\": [\n        \"whois.registrypro.pro\",\n        \"NOT FOUND\"\n    ],\n    \"pro.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"prod\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"productions\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"prof\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"properties\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"property\": [\n        \"whois.uniregistry.net\",\n        \"is available for\"\n    ],\n    \"psc.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"psi.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"pt\": [\n        \"whois.dns.pt\",\n        \"no match\"\n    ],\n    \"pub\": [\n        \"whois.unitedtld.com\",\n        \"Domain not found.\"\n    ],\n    \"pw\": [\n        \"whois.nic.pw\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"qa\": [\n        \"whois.registry.qa\",\n        \"No Data Found\"\n    ],\n    \"qc.com\": [\n        \"whois.centralnic.com\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"qh.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"quebec\": [\n        \"whois.nic.quebec\",\n        \"% no matching objects found\"\n    ],\n    \"re\": [\n        \"whois.nic.re\",\n        \"No entries found\"\n    ],\n    \"re.kr\": [\n        \"whois.nic.or.kr\",\n        \"is not registered\"\n    ],\n    \"realestate.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"rec.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"rec.ro\": [\n        \"whois.rotld.ro\",\n        \"No entries found\"\n    ],\n    \"recipes\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"red\": [\n        \"whois.afilias.net\",\n        \"NOT FOUND\"\n    ],\n    \"rehab\": [\n        \"whois.rightside.co\",\n        \"Domain not found.\"\n    ],\n    \"reise\": [\n        \"whois.nic.reise\",\n        \"% No match\"\n    ],\n    \"reisen\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"reit\": [\n        \"whois.nic.reit\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"rel.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"rentals\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"repair\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"report\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"republican\": [\n        \"whois.rightside.co\",\n        \"Domain not found.\"\n    ],\n    \"res.in\": [\n        \"whois.inregistry.in\",\n        \"NOT FOUND\"\n    ],\n    \"rest\": [\n        \"whois.centralnic.com\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"restaurant\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"reviews\": [\n        \"whois.unitedtld.com\",\n        \"Domain not found.\"\n    ],\n    \"rich\": [\n        \"whois.afilias-srs.net\",\n        \"NOT FOUND\"\n    ],\n    \"rio\": [\n        \"whois.gtlds.nic.br\",\n        \"No match for\"\n    ],\n    \"rip\": [\n        \"whois.rightside.co\",\n        \"Domain not found.\"\n    ],\n    \"ro\": [\n        \"whois.rotld.ro\",\n        \"No entries found\"\n    ],\n    \"rocks\": [\n        \"whois.unitedtld.com\",\n        \"Domain not found.\"\n    ],\n    \"rodeo\": [\n        \"whois-dub.mm-registry.com\",\n        \"is available for registration\"\n    ],\n    \"rs\": [\n        \"whois.rnids.rs\",\n        \"%ERROR:103\"\n    ],\n    \"rsvp\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"ru\": [\n        \"whois.ripn.net\",\n        \"No entries found\"\n    ],\n    \"ruhr\": [\n        \"whois.nic.ruhr\",\n        \"% no matching objects found\"\n    ],\n    \"sa\": [\n        \"whois.nic.net.sa\",\n        \"No Match\"\n    ],\n    \"sa.com\": [\n        \"whois.centralnic.com\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"saarland\": [\n        \"whois.ksregistry.net\",\n        \"not found...\"\n    ],\n    \"sale\": [\n        \"whois.rightside.co\",\n        \"Domain not found.\"\n    ],\n    \"samsung\": [\n        \"whois.nic.samsung\",\n        \"No match for\"\n    ],\n    \"sarl\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"saxo\": [\n        \"whois.aridnrs.net.au\",\n        \"No Data Found\"\n    ],\n    \"sb\": [\n        \"whois.nic.net.sb\",\n        \"Domain Status: No Object Found\"\n    ],\n    \"sc\": [\n        \"wawa.eahd.or.ug\",\n        \"No entries found\"\n    ],\n    \"sc.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"sca\": [\n        \"whois.nic.sca\",\n        \"No match for\"\n    ],\n    \"scb\": [\n        \"whois.nic.scb\",\n        \"NOT FOUND\"\n    ],\n    \"schmidt\": [\n        \"whois.nic.schmidt\",\n        \"No Data Found\"\n    ],\n    \"school\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"school.nz\": [\n        \"whois.srs.net.nz\",\n        \"220 Available\"\n    ],\n    \"school.za\": [\n        \"whois.co.za\",\n        \"No information available\"\n    ],\n    \"schule\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"scot\": [\n        \"whois.scot.coreregistry.net\",\n        \"% no matching objects found\"\n    ],\n    \"se\": [\n        \"whois.iis.se\",\n        \"not found\"\n    ],\n    \"se.com\": [\n        \"whois.centralnic.com\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"se.net\": [\n        \"whois.centralnic.com\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"services\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"sexy\": [\n        \"whois.uniregistry.net\",\n        \"is available for registration\"\n    ],\n    \"sg\": [\n        \"whois.nic.net.sg\",\n        \"Domain Not Found\"\n    ],\n    \"sh\": [\n        \"whois.nic.sh\",\n        \"is available for purchase\"\n    ],\n    \"sh.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"shiksha\": [\n        \"whois.afilias.net\",\n        \"NOT FOUND\"\n    ],\n    \"shoes\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"shop.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"si\": [\n        \"whois.arnes.si\",\n        \"No entries found\"\n    ],\n    \"singles\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"sk\": [\n        \"whois.sk-nic.sk\",\n        \"Not found\"\n    ],\n    \"sklep.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"sky\": [\n        \"whois.nic.sky\",\n        \"No match for\"\n    ],\n    \"slg.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"sm\": [\n        \"whois.nic.sm\",\n        \"No entries found\"\n    ],\n    \"sn\": [\n        \"whois.nic.sn\",\n        \"NOT FOUND\"\n    ],\n    \"sn.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"so\": [\n        \"whois.nic.so\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"sochi.su\": [\n        \"whois.nic.ru\",\n        \"No entries found\"\n    ],\n    \"social\": [\n        \"whois.unitedtld.com\",\n        \"Domain not found.\"\n    ],\n    \"software\": [\n        \"whois.rightside.co\",\n        \"Domain not found.\"\n    ],\n    \"solar\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"solutions\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"sos.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"soy\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"space\": [\n        \"whois.nic.space\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"spb.ru\": [\n        \"whois.nic.ru\",\n        \"No entries found\"\n    ],\n    \"spiegel\": [\n        \"whois.ksregistry.net\",\n        \"not found...\"\n    ],\n    \"st\": [\n        \"whois.nic.st\",\n        \"No entries found\"\n    ],\n    \"store.ro\": [\n        \"whois.rotld.ro\",\n        \"No entries found\"\n    ],\n    \"study\": [\n        \"whois.nic.study\",\n        \"No Data Found\"\n    ],\n    \"style\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"su\": [\n        \"whois.ripn.net\",\n        \"No entries found\"\n    ],\n    \"sucks\": [\n        \"whois.nic.sucks\",\n        \"No Data Found\"\n    ],\n    \"supplies\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"supply\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"support\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"surf\": [\n        \"whois-dub.mm-registry.com\",\n        \"is available for registration\"\n    ],\n    \"surgery\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"sx\": [\n        \"whois.sx\",\n        \"Status: AVAILABLE\"\n    ],\n    \"sy\": [\n        \"whois.tld.sy\",\n        \"Available\"\n    ],\n    \"sydney\": [\n        \"whois.nic.sydney\",\n        \"No Data Found\"\n    ],\n    \"systems\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"taipei\": [\n        \"whois.nic.taipei\",\n        \"Not found:\"\n    ],\n    \"targi.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"tatar\": [\n        \"whois.nic.tatar\",\n        \"No entries found\"\n    ],\n    \"tattoo\": [\n        \"whois.uniregistry.net\",\n        \"is available for registration\"\n    ],\n    \"tax\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"tc\": [\n        \"whois.adamsnames.tc\",\n        \"Available\"\n    ],\n    \"technology\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"tel\": [\n        \"whois.nic.tel\",\n        \"Not found\"\n    ],\n    \"tennis\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"tf\": [\n        \"whois.nic.tf\",\n        \"No entries found\"\n    ],\n    \"th\": [\n        \"whois.thnic.co.th\",\n        \"No match for\"\n    ],\n    \"tienda\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"tips\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"tires\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"tirol\": [\n        \"whois.nic.tirol\",\n        \"% No match\"\n    ],\n    \"tj\": [\n        \"whois.nic.tj\",\n        \"No match\"\n    ],\n    \"tj.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"tk\": [\n        \"https:\\/\\/partners.nic.tk\\/cgi-bin\\/whmcs-whois.taloha?d=\",\n        \"has no matches\"\n    ],\n    \"tl\": [\n        \"whois.nic.tl\",\n        \"Domain Status: No Object Found\"\n    ],\n    \"tm\": [\n        \"whois.nic.tm\",\n        \"is available\"\n    ],\n    \"tm.fr\": [\n        \"whois.nic.fr\",\n        \"No entries found\"\n    ],\n    \"tm.mc\": [\n        \"whois.ripe.net\",\n        \"no entries found\"\n    ],\n    \"tm.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"tm.ro\": [\n        \"whois.rotld.ro\",\n        \"No entries found\"\n    ],\n    \"tm.za\": [\n        \"whois.co.za\",\n        \"No information available\"\n    ],\n    \"tmp.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"tn\": [\n        \"whois.ati.tn\",\n        \"NO OBJECT FOUND!\"\n    ],\n    \"to\": [\n        \"monarch.tonic.to\",\n        \"No match for\"\n    ],\n    \"today\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"tools\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"top\": [\n        \"whois.nic.top\",\n        \"No match\"\n    ],\n    \"toshiba\": [\n        \"whois.nic.toshiba\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"tourism.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"town\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"toys\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"training\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"travel\": [\n        \"whois.nic.travel\",\n        \"Not found\"\n    ],\n    \"travel.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"trust\": [\n        \"whois.nic.trust\",\n        \"No Data Found\"\n    ],\n    \"tt\": [\n        \"https:\\/\\/www.nic.tt\\/cgi-bin\\/search.pl?name=\",\n        \"is available\"\n    ],\n    \"tui\": [\n        \"whois.ksregistry.net\",\n        \"not found...\"\n    ],\n    \"tur.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"turystyka.pl\": [\n        \"whois.dns.pl\",\n        \"No information available\"\n    ],\n    \"tv\": [\n        \"whois.nic.tv\",\n        \"No match for\"\n    ],\n    \"tv.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"tw\": [\n        \"whois.twnic.net.tw\",\n        \"No Found\"\n    ],\n    \"tw.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"tz\": [\n        \"whois.tznic.or.tz\",\n        \"% No entries found.\"\n    ],\n    \"ua\": [\n        \"whois.net.ua\",\n        \"No entries found\"\n    ],\n    \"ug\": [\n        \"whois.co.ug\",\n        \"% No entries found.\"\n    ],\n    \"uk\": [\n        \"whois.nic.uk\",\n        \"This domain name has not been registered.\"\n    ],\n    \"uk.co\": [\n        \"whois.uk.co\",\n        \"NO MATCH\"\n    ],\n    \"uk.com\": [\n        \"whois.centralnic.com\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"uk.net\": [\n        \"whois.centralnic.com\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"university\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"uno\": [\n        \"whois.uno.nic\",\n        \"Not found\"\n    ],\n    \"uol\": [\n        \"whois.gtlds.nic.br\",\n        \"No match for\"\n    ],\n    \"us\": [\n        \"whois.nic.us\",\n        \"Not found\"\n    ],\n    \"us.com\": [\n        \"whois.centralnic.com\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"uy\": [\n        \"whois.nic.org.uy\",\n        \"No match for\"\n    ],\n    \"uy.com\": [\n        \"whois.centralnic.com\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"uz\": [\n        \"whois.cctld.uz\",\n        \"not found...\"\n    ],\n    \"vacations\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"vc\": [\n        \"whois.adamsnames.tc\",\n        \"Available\"\n    ],\n    \"ve\": [\n        \"whois.nic.ve\",\n        \"No match for\"\n    ],\n    \"vegas\": [\n        \"whois.afilias-srs.net\",\n        \"NOT FOUND\"\n    ],\n    \"ventures\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"versicherung\": [\n        \"whois.nic.versicherung\",\n        \"% No match\"\n    ],\n    \"vet\": [\n        \"whois.rightside.co\",\n        \"Domain not found.\"\n    ],\n    \"vet.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"vg\": [\n        \"whois.adamsnames.tc\",\n        \"No Object Found\"\n    ],\n    \"viajes\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"video\": [\n        \"whois.rightside.co\",\n        \"Domain not found.\"\n    ],\n    \"villas\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"vision\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"vlaanderen\": [\n        \"whois.nic.vlaanderen\",\n        \"is still available\"\n    ],\n    \"vodka\": [\n        \"whois-dub.mm-registry.com\",\n        \"is available for registration\"\n    ],\n    \"vote\": [\n        \"whois.afilias.net\",\n        \"NOT FOUND\"\n    ],\n    \"voting\": [\n        \"whois.voting.tld-box.at\",\n        \"% No match\"\n    ],\n    \"voto\": [\n        \"whois.afilias.net\",\n        \"NOT FOUND\"\n    ],\n    \"voyage\": [\n        \"whois.donuts.co\",\n        \"Domain not found\"\n    ],\n    \"vu\": [\n        \"vunic.vu\",\n        \"is not valid!\"\n    ],\n    \"wales\": [\n        \"whois.nic.wales\",\n        \"This domain name has not been registered.\"\n    ],\n    \"wang\": [\n        \"whois.gtld.knet.cn\",\n        \"No match\"\n    ],\n    \"watch\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"web.ve\": [\n        \"whois.nic.ve\",\n        \"No match for\"\n    ],\n    \"web.za\": [\n        \"whois.co.za\",\n        \"No information available\"\n    ],\n    \"website\": [\n        \"whois.nic.website\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"wed\": [\n        \"whois.nic.wed\",\n        \"Domain Status: No Object Found\"\n    ],\n    \"wedding\": [\n        \"whois-dub.mm-registry.com\",\n        \"is available for registration\"\n    ],\n    \"wf\": [\n        \"whois.nic.wf\",\n        \"No entries found\"\n    ],\n    \"whoswho\": [\n        \"whois.nic.whoswho\",\n        \"Not found:\"\n    ],\n    \"wien\": [\n        \"whois.nic.wien\",\n        \"% No match\"\n    ],\n    \"wiki\": [\n        \"whois.nic.wiki\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"wme\": [\n        \"whois.nic.wme\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"work\": [\n        \"whois-dub.mm-registry.com\",\n        \"is available for registration\"\n    ],\n    \"works\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"world\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"ws\": [\n        \"whois.website.ws\",\n        \"No match for\"\n    ],\n    \"wtc\": [\n        \"whois.nic.wtc\",\n        \"No Data Found\"\n    ],\n    \"wtf\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"www.ro\": [\n        \"whois.rotld.ro\",\n        \"No entries found\"\n    ],\n    \"xj.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"xn--1qqw23a\": [\n        \"whois.ngtld.cn\",\n        \"No match\"\n    ],\n    \"xn--3bst00m\": [\n        \"whois.gtld.knet.cn\",\n        \"No match\"\n    ],\n    \"xn--3ds443g\": [\n        \"whois.afilias-srs.net\",\n        \"NOT FOUND\"\n    ],\n    \"xn--3e0b707e\": [\n        \"whois.kr\",\n        \"Above domain name is not registered to\"\n    ],\n    \"xn--45q11c\": [\n        \"whois.nic.xn--45q11c\",\n        \"No match\"\n    ],\n    \"xn--4gbrim\": [\n        \"whois.afilias-srs.net\",\n        \"NOT FOUND\"\n    ],\n    \"xn--55qw42g\": [\n        \"whois.conac.cn\",\n        \"Not find MatchingRecord\"\n    ],\n    \"xn--55qx5d\": [\n        \"whois.ngtld.cn\",\n        \"No match\"\n    ],\n    \"xn--6frz82g\": [\n        \"whois.afilias.net\",\n        \"NOT FOUND\"\n    ],\n    \"xn--6qq986b3xl\": [\n        \"whois.gtld.knet.cn\",\n        \"No match\"\n    ],\n    \"xn--80adxhks\": [\n        \"whois.nic.xn--80adxhks\",\n        \"No entries found\"\n    ],\n    \"xn--80ao21a\": [\n        \"whois.nic.kz\",\n        \"Nothing found for this query.\"\n    ],\n    \"xn--80asehdb\": [\n        \"whois.online.rs.corenic.net\",\n        \"% no matching objects found\"\n    ],\n    \"xn--80aswg\": [\n        \"whois.site.rs.corenic.net\",\n        \"% no matching objects found\"\n    ],\n    \"xn--c1avg\": [\n        \"whois.publicinterestregistry.net\",\n        \"NOT FOUND\"\n    ],\n    \"xn--clchc0ea0b2g2a9gcd\": [\n        \"whois.sgnic.sg\",\n        \"Domain Not Found\"\n    ],\n    \"xn--czrs0t\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"xn--czru2d\": [\n        \"whois.gtld.knet.cn\",\n        \"No match\"\n    ],\n    \"xn--d1acj3b\": [\n        \"whois.nic.xn--d1acj3b\",\n        \"No entries found\"\n    ],\n    \"xn--d1alf\": [\n        \"whois.marnet.mk\",\n        \"% No entries found.\"\n    ],\n    \"xn--fiq228c5hs\": [\n        \"whois.afilias-srs.net\",\n        \"NOT FOUND\"\n    ],\n    \"xn--fiq64b\": [\n        \"whois.gtld.knet.cn\",\n        \"No match\"\n    ],\n    \"xn--fiqs8s\": [\n        \"cwhois.cnnic.cn\",\n        \"no matching record\"\n    ],\n    \"xn--fiqz9s\": [\n        \"cwhois.cnnic.cn\",\n        \"no matching record\"\n    ],\n    \"xn--flw351e\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"xn--hxt814e\": [\n        \"whois.nic.xn--hxt814e\",\n        \"No match\"\n    ],\n    \"xn--i1b6b1a6a2e\": [\n        \"whois.publicinterestregistry.net\",\n        \"NOT FOUND\"\n    ],\n    \"xn--io0a7i\": [\n        \"whois.ngtld.cn\",\n        \"No match\"\n    ],\n    \"xn--j1amh\": [\n        \"whois.dotukr.com\",\n        \"No match for\"\n    ],\n    \"xn--j6w193g\": [\n        \"whois.hkirc.hk\",\n        \"The domain has not been registered\"\n    ],\n    \"xn--kput3i\": [\n        \"whois.afilias-srs.net\",\n        \"NOT FOUND\"\n    ],\n    \"xn--lgbbat1ad8j\": [\n        \"whois.nic.dz\",\n        \"NO OBJECT FOUND!\"\n    ],\n    \"xn--mgb9awbf\": [\n        \"whois.registry.om\",\n        \"No Data Found\"\n    ],\n    \"xn--mgba3a4f16a\": [\n        \"whois.nic.ir\",\n        \"% No entries found.\"\n    ],\n    \"xn--mgbaam7a8h\": [\n        \"whois.aeda.net.ae\",\n        \"No Data Found\"\n    ],\n    \"xn--mgberp4a5d4ar\": [\n        \"whois.nic.net.sa\",\n        \"No Match\"\n    ],\n    \"xn--mgbx4cd0ab\": [\n        \"whois.mynic.my\",\n        \"does not exist in database\"\n    ],\n    \"xn--mxtq1m\": [\n        \"whois.nic.xn--mxtq1m\",\n        \"Not Found.\"\n    ],\n    \"xn--ngbc5azd\": [\n        \"whois.nic.xn--ngbc5azd\",\n        \"No Data Found\"\n    ],\n    \"xn--nqv7f\": [\n        \"whois.publicinterestregistry.net\",\n        \"NOT FOUND\"\n    ],\n    \"xn--o3cw4h\": [\n        \"whois.thnic.co.th\",\n        \"No match for\"\n    ],\n    \"xn--ogbpf8fl\": [\n        \"whois.tld.sy\",\n        \"Available\"\n    ],\n    \"xn--p1acf\": [\n        \"whois.nic.xn--p1acf\",\n        \"Domain Status: No Object Found\"\n    ],\n    \"xn--p1ai\": [\n        \"whois.ripn.net\",\n        \"No entries found\"\n    ],\n    \"xn--q9jyb4c\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"xn--qcka1pmc\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"xn--unup4y\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"xn--vermgensberater-ctb\": [\n        \"whois.ksregistry.net\",\n        \"not found...\"\n    ],\n    \"xn--vermgensberatung-pwb\": [\n        \"whois.ksregistry.net\",\n        \"not found...\"\n    ],\n    \"xn--vhquv\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"xn--wgbl6a\": [\n        \"whois.registry.qa\",\n        \"No Data Found\"\n    ],\n    \"xn--xhq521b\": [\n        \"whois.ngtld.cn\",\n        \"No match\"\n    ],\n    \"xn--yfro4i67o\": [\n        \"whois.sgnic.sg\",\n        \"Domain Not Found\"\n    ],\n    \"xn--ygbi2ammx\": [\n        \"whois.pnina.ps\",\n        \"Available\"\n    ],\n    \"xn--zfr164b\": [\n        \"whois.conac.cn\",\n        \"Not find MatchingRecord\"\n    ],\n    \"xxx\": [\n        \"whois.nic.xxx\",\n        \"NOT FOUND\"\n    ],\n    \"xyz\": [\n        \"whois.nic.xyz\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"xz.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"yn.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"yodobashi\": [\n        \"whois.nic.gmo\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"yoga\": [\n        \"whois-dub.mm-registry.com\",\n        \"is available for registration\"\n    ],\n    \"youtube\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"yt\": [\n        \"whois.nic.yt\",\n        \"No entries found\"\n    ],\n    \"za.com\": [\n        \"whois.centralnic.com\",\n        \"DOMAIN NOT FOUND\"\n    ],\n    \"za.net\": [\n        \"http:\\/\\/www.za.net\\/cgi-bin\\/whois.cgi?domain=\",\n        \"No such domain\"\n    ],\n    \"za.org\": [\n        \"http:\\/\\/www.za.net\\/cgi-bin\\/whois.cgi?domain=\",\n        \"No such domain\"\n    ],\n    \"zip\": [\n        \"domain-registry-whois.l.google.com\",\n        \"Domain not found.\"\n    ],\n    \"zj.cn\": [\n        \"whois.cnnic.net.cn\",\n        \"no matching record\"\n    ],\n    \"zlg.br\": [\n        \"whois.nic.br\",\n        \"No match for\"\n    ],\n    \"zm\": [\n        \"whois.nic.zm\",\n        \"Domain Status: No Object Found\"\n    ],\n    \"zone\": [\n        \"whois.donuts.co\",\n        \"Domain not found.\"\n    ],\n    \"zuerich\": [\n        \"whois.ksregistry.net\",\n        \"not found...\"\n    ]\n}"
  }
]